styles.css 231 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251122521225312254122551225612257122581225912260122611226212263122641226512266122671226812269122701227112272122731227412275122761227712278122791228012281122821228312284122851228612287122881228912290122911229212293122941229512296122971229812299123001230112302123031230412305123061230712308123091231012311123121231312314123151231612317123181231912320123211232212323123241232512326123271232812329123301233112332123331233412335123361233712338123391234012341123421234312344123451234612347123481234912350123511235212353123541235512356123571235812359123601236112362123631236412365123661236712368123691237012371123721237312374123751237612377123781237912380123811238212383123841238512386123871238812389123901239112392123931239412395123961239712398123991240012401124021240312404124051240612407124081240912410124111241212413124141241512416124171241812419124201242112422124231242412425124261242712428124291243012431124321243312434124351243612437124381243912440124411244212443124441244512446124471244812449124501245112452124531245412455124561245712458124591246012461124621246312464124651246612467124681246912470124711247212473124741247512476124771247812479124801248112482124831248412485124861248712488124891249012491124921249312494124951249612497124981249912500125011250212503125041250512506125071250812509125101251112512125131251412515125161251712518125191252012521125221252312524125251252612527125281252912530125311253212533125341253512536125371253812539125401254112542125431254412545125461254712548125491255012551125521255312554125551255612557125581255912560125611256212563125641256512566125671256812569125701257112572125731257412575125761257712578125791258012581125821258312584125851258612587125881258912590125911259212593125941259512596125971259812599126001260112602126031260412605126061260712608126091261012611126121261312614126151261612617126181261912620126211262212623126241262512626126271262812629126301263112632126331263412635126361263712638126391264012641126421264312644126451264612647126481264912650126511265212653126541265512656126571265812659126601266112662126631266412665126661266712668126691267012671126721267312674126751267612677126781267912680126811268212683126841268512686126871268812689126901269112692126931269412695126961269712698126991270012701127021270312704127051270612707127081270912710127111271212713127141271512716127171271812719127201272112722127231272412725127261272712728127291273012731127321273312734127351273612737127381273912740127411274212743127441274512746127471274812749127501275112752127531275412755127561275712758127591276012761127621276312764127651276612767127681276912770127711277212773127741277512776127771277812779127801278112782127831278412785127861278712788127891279012791127921279312794127951279612797127981279912800128011280212803128041280512806128071280812809128101281112812128131281412815128161281712818128191282012821128221282312824128251282612827128281282912830128311283212833128341283512836128371283812839128401284112842128431284412845128461284712848128491285012851128521285312854128551285612857128581285912860128611286212863128641286512866128671286812869128701287112872128731287412875128761287712878128791288012881128821288312884128851288612887128881288912890128911289212893128941289512896128971289812899129001290112902129031290412905129061290712908129091291012911129121291312914129151291612917129181291912920129211292212923129241292512926129271292812929129301293112932129331293412935129361293712938129391294012941129421294312944129451294612947129481294912950129511295212953129541295512956129571295812959129601296112962129631296412965129661296712968129691297012971129721297312974129751297612977129781297912980129811298212983129841298512986129871298812989129901299112992129931299412995129961299712998129991300013001130021300313004130051300613007130081300913010130111301213013130141301513016130171301813019130201302113022130231302413025130261302713028130291303013031130321303313034130351303613037130381303913040130411304213043130441304513046130471304813049130501305113052130531305413055130561305713058130591306013061130621306313064130651306613067130681306913070130711307213073130741307513076130771307813079130801308113082130831308413085130861308713088130891309013091130921309313094130951309613097130981309913100131011310213103131041310513106131071310813109131101311113112131131311413115131161311713118131191312013121131221312313124131251312613127131281312913130131311313213133131341313513136131371313813139131401314113142131431314413145131461314713148131491315013151131521315313154131551315613157131581315913160131611316213163131641316513166
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:3230px;
  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. #u220578_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u220578 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u220578 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u220578_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u220579_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. #u220579 {
  73. border-width:0px;
  74. position:absolute;
  75. left:29px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u220579 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u220579_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u220580 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u220581_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. #u220581 {
  121. border-width:0px;
  122. position:absolute;
  123. left:309px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u220581 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u220581_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u220582 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u220583_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u220583 {
  159. border-width:0px;
  160. position:absolute;
  161. left:372px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u220583 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u220583_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u220584_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u220584 {
  189. border-width:0px;
  190. position:absolute;
  191. left:378px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u220584 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u220584_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u220585 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u220586_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u220586 {
  227. border-width:0px;
  228. position:absolute;
  229. left:323px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u220586 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u220586_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u220587_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u220587 {
  257. border-width:0px;
  258. position:absolute;
  259. left:339px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u220587 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u220587_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u220588_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u220588 {
  287. border-width:0px;
  288. position:absolute;
  289. left:330px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u220588 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u220588_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u220589_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u220589 {
  317. border-width:0px;
  318. position:absolute;
  319. left:347px;
  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. #u220589 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u220589_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u220590_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u220590 {
  351. border-width:0px;
  352. position:absolute;
  353. left:29px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u220590 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u220590_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u220591_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. #u220591 {
  393. border-width:0px;
  394. position:absolute;
  395. left:29px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u220591 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u220591_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u220592 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u220593_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u220593 {
  431. border-width:0px;
  432. position:absolute;
  433. left:69px;
  434. top:792px;
  435. width:24px;
  436. height:24px;
  437. display:flex;
  438. font-size:8px;
  439. }
  440. #u220593 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u220593_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u220594_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. #u220594 {
  472. border-width:0px;
  473. position:absolute;
  474. left:69px;
  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. #u220594 .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. #u220594_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u220595 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u220596_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u220596 {
  513. border-width:0px;
  514. position:absolute;
  515. left:339px;
  516. top:794px;
  517. width:24px;
  518. height:24px;
  519. display:flex;
  520. font-size:8px;
  521. }
  522. #u220596 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u220596_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u220597_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. #u220597 {
  554. border-width:0px;
  555. position:absolute;
  556. left:339px;
  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. #u220597 .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. #u220597_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u220598_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. #u220598 {
  594. border-width:0px;
  595. position:absolute;
  596. left:29px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u220598 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u220598_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u220599 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u220600_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u220600 {
  632. border-width:0px;
  633. position:absolute;
  634. left:251px;
  635. top:792px;
  636. width:24px;
  637. height:24px;
  638. display:flex;
  639. font-size:8px;
  640. }
  641. #u220600 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u220600_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u220601_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. #u220601 {
  673. border-width:0px;
  674. position:absolute;
  675. left:245px;
  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. #u220601 .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. #u220601_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u220602 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u220603_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u220603 {
  714. border-width:0px;
  715. position:absolute;
  716. left:157px;
  717. top:792px;
  718. width:24px;
  719. height:24px;
  720. display:flex;
  721. font-size:8px;
  722. }
  723. #u220603 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u220603_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u220604_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. #u220604 {
  755. border-width:0px;
  756. position:absolute;
  757. left:151px;
  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. #u220604 .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. #u220604_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u220605_div {
  780. border-width:0px;
  781. position:absolute;
  782. left:0px;
  783. top:0px;
  784. width:375px;
  785. height:732px;
  786. background:inherit;
  787. background-color:rgba(242, 242, 242, 0.996078431372549);
  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. #u220605 {
  798. border-width:0px;
  799. position:absolute;
  800. left:29px;
  801. top:107px;
  802. width:375px;
  803. height:732px;
  804. display:flex;
  805. }
  806. #u220605 .text {
  807. position:absolute;
  808. align-self:center;
  809. padding:2px 2px 2px 2px;
  810. box-sizing:border-box;
  811. width:100%;
  812. }
  813. #u220605_text {
  814. border-width:0px;
  815. word-wrap:break-word;
  816. text-transform:none;
  817. visibility:hidden;
  818. }
  819. #u220606_div {
  820. border-width:0px;
  821. position:absolute;
  822. left:0px;
  823. top:0px;
  824. width:375px;
  825. height:125px;
  826. background:inherit;
  827. background-color:rgba(255, 255, 255, 1);
  828. border:none;
  829. border-left:0px;
  830. border-top:0px;
  831. border-right:0px;
  832. border-radius:0px;
  833. border-bottom-right-radius:0px;
  834. border-bottom-left-radius:0px;
  835. -moz-box-shadow:none;
  836. -webkit-box-shadow:none;
  837. box-shadow:none;
  838. }
  839. #u220606 {
  840. border-width:0px;
  841. position:absolute;
  842. left:29px;
  843. top:108px;
  844. width:375px;
  845. height:125px;
  846. display:flex;
  847. }
  848. #u220606 .text {
  849. position:absolute;
  850. align-self:center;
  851. padding:2px 2px 2px 2px;
  852. box-sizing:border-box;
  853. width:100%;
  854. }
  855. #u220606_text {
  856. border-width:0px;
  857. word-wrap:break-word;
  858. text-transform:none;
  859. visibility:hidden;
  860. }
  861. #u220607_div {
  862. border-width:0px;
  863. position:absolute;
  864. left:0px;
  865. top:0px;
  866. width:43px;
  867. height:20px;
  868. background:inherit;
  869. background-color:rgba(255, 255, 255, 0);
  870. border:none;
  871. border-radius:0px;
  872. -moz-box-shadow:none;
  873. -webkit-box-shadow:none;
  874. box-shadow:none;
  875. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  876. font-weight:400;
  877. font-style:normal;
  878. color:#0089FE;
  879. }
  880. #u220607 {
  881. border-width:0px;
  882. position:absolute;
  883. left:342px;
  884. top:124px;
  885. width:43px;
  886. height:20px;
  887. display:flex;
  888. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  889. font-weight:400;
  890. font-style:normal;
  891. color:#0089FE;
  892. }
  893. #u220607 .text {
  894. position:absolute;
  895. align-self:flex-start;
  896. padding:0px 0px 0px 0px;
  897. box-sizing:border-box;
  898. width:100%;
  899. }
  900. #u220607_text {
  901. border-width:0px;
  902. white-space:nowrap;
  903. text-transform:none;
  904. }
  905. #u220608_div {
  906. border-width:0px;
  907. position:absolute;
  908. left:0px;
  909. top:0px;
  910. width:180px;
  911. height:30px;
  912. background:inherit;
  913. background-color:rgba(255, 255, 255, 0);
  914. border:none;
  915. border-left:0px;
  916. border-top:0px;
  917. border-right:0px;
  918. border-radius:0px;
  919. border-bottom-right-radius:0px;
  920. border-bottom-left-radius:0px;
  921. -moz-box-shadow:none;
  922. -webkit-box-shadow:none;
  923. box-shadow:none;
  924. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  925. font-weight:500;
  926. font-style:normal;
  927. font-size:14px;
  928. line-height:30px;
  929. }
  930. #u220608 {
  931. border-width:0px;
  932. position:absolute;
  933. left:42px;
  934. top:118px;
  935. width:180px;
  936. height:30px;
  937. display:flex;
  938. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  939. font-weight:500;
  940. font-style:normal;
  941. font-size:14px;
  942. line-height:30px;
  943. }
  944. #u220608 .text {
  945. position:absolute;
  946. align-self:flex-start;
  947. padding:0px 0px 0px 0px;
  948. box-sizing:border-box;
  949. width:100%;
  950. }
  951. #u220608_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u220609_div {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:167px;
  962. height:75px;
  963. background:inherit;
  964. background-color:rgba(255, 255, 255, 0);
  965. border:none;
  966. border-left:0px;
  967. border-top:0px;
  968. border-right:0px;
  969. border-radius:0px;
  970. border-bottom-right-radius:0px;
  971. border-bottom-left-radius:0px;
  972. -moz-box-shadow:none;
  973. -webkit-box-shadow:none;
  974. box-shadow:none;
  975. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  976. font-weight:400;
  977. font-style:normal;
  978. font-size:12px;
  979. line-height:25px;
  980. }
  981. #u220609 {
  982. border-width:0px;
  983. position:absolute;
  984. left:42px;
  985. top:148px;
  986. width:167px;
  987. height:75px;
  988. display:flex;
  989. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  990. font-weight:400;
  991. font-style:normal;
  992. font-size:12px;
  993. line-height:25px;
  994. }
  995. #u220609 .text {
  996. position:absolute;
  997. align-self:flex-start;
  998. padding:0px 0px 0px 0px;
  999. box-sizing:border-box;
  1000. width:100%;
  1001. }
  1002. #u220609_text {
  1003. border-width:0px;
  1004. white-space:nowrap;
  1005. text-transform:none;
  1006. }
  1007. #u220610_div {
  1008. border-width:0px;
  1009. position:absolute;
  1010. left:0px;
  1011. top:0px;
  1012. width:375px;
  1013. height:41px;
  1014. background:inherit;
  1015. background-color:rgba(255, 255, 255, 1);
  1016. box-sizing:border-box;
  1017. border-width:1px;
  1018. border-style:solid;
  1019. border-color:rgba(215, 215, 215, 1);
  1020. border-left:0px;
  1021. border-top:0px;
  1022. border-right:0px;
  1023. border-radius:0px;
  1024. border-bottom-right-radius:0px;
  1025. border-bottom-left-radius:0px;
  1026. -moz-box-shadow:none;
  1027. -webkit-box-shadow:none;
  1028. box-shadow:none;
  1029. }
  1030. #u220610 {
  1031. border-width:0px;
  1032. position:absolute;
  1033. left:29px;
  1034. top:67px;
  1035. width:375px;
  1036. height:41px;
  1037. display:flex;
  1038. }
  1039. #u220610 .text {
  1040. position:absolute;
  1041. align-self:center;
  1042. padding:2px 2px 2px 2px;
  1043. box-sizing:border-box;
  1044. width:100%;
  1045. }
  1046. #u220610_text {
  1047. border-width:0px;
  1048. word-wrap:break-word;
  1049. text-transform:none;
  1050. visibility:hidden;
  1051. }
  1052. #u220611 {
  1053. border-width:0px;
  1054. position:absolute;
  1055. left:0px;
  1056. top:0px;
  1057. width:0px;
  1058. height:0px;
  1059. }
  1060. #u220612_div {
  1061. border-width:0px;
  1062. position:absolute;
  1063. left:0px;
  1064. top:0px;
  1065. width:88px;
  1066. height:32px;
  1067. background:inherit;
  1068. background-color:rgba(255, 255, 255, 1);
  1069. box-sizing:border-box;
  1070. border-width:1px;
  1071. border-style:solid;
  1072. border-color:rgba(242, 242, 242, 1);
  1073. border-radius:33px;
  1074. -moz-box-shadow:none;
  1075. -webkit-box-shadow:none;
  1076. box-shadow:none;
  1077. }
  1078. #u220612 {
  1079. border-width:0px;
  1080. position:absolute;
  1081. left:309px;
  1082. top:71px;
  1083. width:88px;
  1084. height:32px;
  1085. display:flex;
  1086. }
  1087. #u220612 .text {
  1088. position:absolute;
  1089. align-self:center;
  1090. padding:2px 2px 2px 2px;
  1091. box-sizing:border-box;
  1092. width:100%;
  1093. }
  1094. #u220612_text {
  1095. border-width:0px;
  1096. word-wrap:break-word;
  1097. text-transform:none;
  1098. visibility:hidden;
  1099. }
  1100. #u220613 {
  1101. border-width:0px;
  1102. position:absolute;
  1103. left:0px;
  1104. top:0px;
  1105. width:0px;
  1106. height:0px;
  1107. }
  1108. #u220614_img {
  1109. border-width:0px;
  1110. position:absolute;
  1111. left:0px;
  1112. top:0px;
  1113. width:18px;
  1114. height:18px;
  1115. }
  1116. #u220614 {
  1117. border-width:0px;
  1118. position:absolute;
  1119. left:372px;
  1120. top:78px;
  1121. width:18px;
  1122. height:18px;
  1123. display:flex;
  1124. }
  1125. #u220614 .text {
  1126. position:absolute;
  1127. align-self:center;
  1128. padding:2px 2px 2px 2px;
  1129. box-sizing:border-box;
  1130. width:100%;
  1131. }
  1132. #u220614_text {
  1133. border-width:0px;
  1134. word-wrap:break-word;
  1135. text-transform:none;
  1136. visibility:hidden;
  1137. }
  1138. #u220615_img {
  1139. border-width:0px;
  1140. position:absolute;
  1141. left:0px;
  1142. top:0px;
  1143. width:6px;
  1144. height:6px;
  1145. }
  1146. #u220615 {
  1147. border-width:0px;
  1148. position:absolute;
  1149. left:378px;
  1150. top:84px;
  1151. width:6px;
  1152. height:6px;
  1153. display:flex;
  1154. }
  1155. #u220615 .text {
  1156. position:absolute;
  1157. align-self:center;
  1158. padding:2px 2px 2px 2px;
  1159. box-sizing:border-box;
  1160. width:100%;
  1161. }
  1162. #u220615_text {
  1163. border-width:0px;
  1164. word-wrap:break-word;
  1165. text-transform:none;
  1166. visibility:hidden;
  1167. }
  1168. #u220616 {
  1169. border-width:0px;
  1170. position:absolute;
  1171. left:0px;
  1172. top:0px;
  1173. width:0px;
  1174. height:0px;
  1175. }
  1176. #u220617_img {
  1177. border-width:0px;
  1178. position:absolute;
  1179. left:0px;
  1180. top:0px;
  1181. width:5px;
  1182. height:5px;
  1183. }
  1184. #u220617 {
  1185. border-width:0px;
  1186. position:absolute;
  1187. left:323px;
  1188. top:85px;
  1189. width:5px;
  1190. height:5px;
  1191. display:flex;
  1192. }
  1193. #u220617 .text {
  1194. position:absolute;
  1195. align-self:center;
  1196. padding:2px 2px 2px 2px;
  1197. box-sizing:border-box;
  1198. width:100%;
  1199. }
  1200. #u220617_text {
  1201. border-width:0px;
  1202. word-wrap:break-word;
  1203. text-transform:none;
  1204. visibility:hidden;
  1205. }
  1206. #u220618_img {
  1207. border-width:0px;
  1208. position:absolute;
  1209. left:0px;
  1210. top:0px;
  1211. width:5px;
  1212. height:5px;
  1213. }
  1214. #u220618 {
  1215. border-width:0px;
  1216. position:absolute;
  1217. left:339px;
  1218. top:85px;
  1219. width:5px;
  1220. height:5px;
  1221. display:flex;
  1222. }
  1223. #u220618 .text {
  1224. position:absolute;
  1225. align-self:center;
  1226. padding:2px 2px 2px 2px;
  1227. box-sizing:border-box;
  1228. width:100%;
  1229. }
  1230. #u220618_text {
  1231. border-width:0px;
  1232. word-wrap:break-word;
  1233. text-transform:none;
  1234. visibility:hidden;
  1235. }
  1236. #u220619_img {
  1237. border-width:0px;
  1238. position:absolute;
  1239. left:0px;
  1240. top:0px;
  1241. width:7px;
  1242. height:7px;
  1243. }
  1244. #u220619 {
  1245. border-width:0px;
  1246. position:absolute;
  1247. left:330px;
  1248. top:84px;
  1249. width:7px;
  1250. height:7px;
  1251. display:flex;
  1252. }
  1253. #u220619 .text {
  1254. position:absolute;
  1255. align-self:center;
  1256. padding:2px 2px 2px 2px;
  1257. box-sizing:border-box;
  1258. width:100%;
  1259. }
  1260. #u220619_text {
  1261. border-width:0px;
  1262. word-wrap:break-word;
  1263. text-transform:none;
  1264. visibility:hidden;
  1265. }
  1266. #u220620_img {
  1267. border-width:0px;
  1268. position:absolute;
  1269. left:0px;
  1270. top:0px;
  1271. width:19px;
  1272. height:2px;
  1273. }
  1274. #u220620 {
  1275. border-width:0px;
  1276. position:absolute;
  1277. left:347px;
  1278. top:87px;
  1279. width:18px;
  1280. height:1px;
  1281. display:flex;
  1282. -webkit-transform:rotate(90deg);
  1283. -moz-transform:rotate(90deg);
  1284. -ms-transform:rotate(90deg);
  1285. transform:rotate(90deg);
  1286. }
  1287. #u220620 .text {
  1288. position:absolute;
  1289. align-self:center;
  1290. padding:2px 2px 2px 2px;
  1291. box-sizing:border-box;
  1292. width:100%;
  1293. }
  1294. #u220620_text {
  1295. border-width:0px;
  1296. word-wrap:break-word;
  1297. text-transform:none;
  1298. visibility:hidden;
  1299. }
  1300. #u220621_div {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:0px;
  1304. top:0px;
  1305. width:12px;
  1306. height:12px;
  1307. background:inherit;
  1308. background-color:rgba(255, 255, 255, 0);
  1309. box-sizing:border-box;
  1310. border-width:2px;
  1311. border-style:solid;
  1312. border-color:rgba(51, 51, 51, 1);
  1313. border-right:0px;
  1314. border-bottom:0px;
  1315. border-radius:0px;
  1316. border-top-right-radius:0px;
  1317. border-bottom-left-radius:0px;
  1318. -moz-box-shadow:none;
  1319. -webkit-box-shadow:none;
  1320. box-shadow:none;
  1321. }
  1322. #u220621 {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:44px;
  1326. top:81px;
  1327. width:12px;
  1328. height:12px;
  1329. display:flex;
  1330. -webkit-transform:rotate(315deg);
  1331. -moz-transform:rotate(315deg);
  1332. -ms-transform:rotate(315deg);
  1333. transform:rotate(315deg);
  1334. }
  1335. #u220621 .text {
  1336. position:absolute;
  1337. align-self:center;
  1338. padding:2px 2px 2px 2px;
  1339. box-sizing:border-box;
  1340. width:100%;
  1341. }
  1342. #u220621_text {
  1343. border-width:0px;
  1344. word-wrap:break-word;
  1345. text-transform:none;
  1346. visibility:hidden;
  1347. }
  1348. #u220622_div {
  1349. border-width:0px;
  1350. position:absolute;
  1351. left:0px;
  1352. top:0px;
  1353. width:73px;
  1354. height:25px;
  1355. background:inherit;
  1356. background-color:rgba(255, 255, 255, 0);
  1357. border:none;
  1358. border-radius:0px;
  1359. -moz-box-shadow:none;
  1360. -webkit-box-shadow:none;
  1361. box-shadow:none;
  1362. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1363. font-weight:400;
  1364. font-style:normal;
  1365. font-size:18px;
  1366. }
  1367. #u220622 {
  1368. border-width:0px;
  1369. position:absolute;
  1370. left:64px;
  1371. top:75px;
  1372. width:73px;
  1373. height:25px;
  1374. display:flex;
  1375. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1376. font-weight:400;
  1377. font-style:normal;
  1378. font-size:18px;
  1379. }
  1380. #u220622 .text {
  1381. position:absolute;
  1382. align-self:flex-start;
  1383. padding:0px 0px 0px 0px;
  1384. box-sizing:border-box;
  1385. width:100%;
  1386. }
  1387. #u220622_text {
  1388. border-width:0px;
  1389. white-space:nowrap;
  1390. text-transform:none;
  1391. }
  1392. #u220623 {
  1393. border-width:0px;
  1394. position:absolute;
  1395. left:0px;
  1396. top:0px;
  1397. width:0px;
  1398. height:0px;
  1399. }
  1400. #u220624_div {
  1401. border-width:0px;
  1402. position:absolute;
  1403. left:0px;
  1404. top:0px;
  1405. width:375px;
  1406. height:180px;
  1407. background:inherit;
  1408. background-color:rgba(255, 255, 255, 1);
  1409. border:none;
  1410. border-top:0px;
  1411. border-bottom:0px;
  1412. border-radius:0px;
  1413. border-top-left-radius:0px;
  1414. border-top-right-radius:0px;
  1415. border-bottom-right-radius:0px;
  1416. border-bottom-left-radius:0px;
  1417. -moz-box-shadow:none;
  1418. -webkit-box-shadow:none;
  1419. box-shadow:none;
  1420. }
  1421. #u220624 {
  1422. border-width:0px;
  1423. position:absolute;
  1424. left:29px;
  1425. top:234px;
  1426. width:375px;
  1427. height:180px;
  1428. display:flex;
  1429. }
  1430. #u220624 .text {
  1431. position:absolute;
  1432. align-self:center;
  1433. padding:2px 2px 2px 2px;
  1434. box-sizing:border-box;
  1435. width:100%;
  1436. }
  1437. #u220624_text {
  1438. border-width:0px;
  1439. word-wrap:break-word;
  1440. text-transform:none;
  1441. visibility:hidden;
  1442. }
  1443. #u220625_div {
  1444. border-width:0px;
  1445. position:absolute;
  1446. left:0px;
  1447. top:0px;
  1448. width:150px;
  1449. height:150px;
  1450. background:inherit;
  1451. background-color:rgba(255, 255, 255, 0);
  1452. border:none;
  1453. border-left:0px;
  1454. border-top:0px;
  1455. border-right:0px;
  1456. border-radius:0px;
  1457. border-bottom-right-radius:0px;
  1458. border-bottom-left-radius:0px;
  1459. -moz-box-shadow:none;
  1460. -webkit-box-shadow:none;
  1461. box-shadow:none;
  1462. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1463. font-weight:400;
  1464. font-style:normal;
  1465. font-size:12px;
  1466. line-height:25px;
  1467. }
  1468. #u220625 {
  1469. border-width:0px;
  1470. position:absolute;
  1471. left:53px;
  1472. top:248px;
  1473. width:150px;
  1474. height:150px;
  1475. display:flex;
  1476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1477. font-weight:400;
  1478. font-style:normal;
  1479. font-size:12px;
  1480. line-height:25px;
  1481. }
  1482. #u220625 .text {
  1483. position:absolute;
  1484. align-self:flex-start;
  1485. padding:0px 0px 0px 0px;
  1486. box-sizing:border-box;
  1487. width:100%;
  1488. }
  1489. #u220625_text {
  1490. border-width:0px;
  1491. white-space:nowrap;
  1492. text-transform:none;
  1493. }
  1494. #u220626 {
  1495. border-width:0px;
  1496. position:absolute;
  1497. left:0px;
  1498. top:0px;
  1499. width:0px;
  1500. height:0px;
  1501. }
  1502. #u220627_div {
  1503. border-width:0px;
  1504. position:absolute;
  1505. left:0px;
  1506. top:0px;
  1507. width:375px;
  1508. height:355px;
  1509. background:inherit;
  1510. background-color:rgba(255, 255, 255, 1);
  1511. border:none;
  1512. border-left:0px;
  1513. border-right:0px;
  1514. border-radius:0px;
  1515. border-top-left-radius:0px;
  1516. border-top-right-radius:0px;
  1517. border-bottom-right-radius:0px;
  1518. border-bottom-left-radius:0px;
  1519. -moz-box-shadow:none;
  1520. -webkit-box-shadow:none;
  1521. box-shadow:none;
  1522. }
  1523. #u220627 {
  1524. border-width:0px;
  1525. position:absolute;
  1526. left:29px;
  1527. top:424px;
  1528. width:375px;
  1529. height:355px;
  1530. display:flex;
  1531. }
  1532. #u220627 .text {
  1533. position:absolute;
  1534. align-self:center;
  1535. padding:2px 2px 2px 2px;
  1536. box-sizing:border-box;
  1537. width:100%;
  1538. }
  1539. #u220627_text {
  1540. border-width:0px;
  1541. word-wrap:break-word;
  1542. text-transform:none;
  1543. visibility:hidden;
  1544. }
  1545. #u220628_div {
  1546. border-width:0px;
  1547. position:absolute;
  1548. left:0px;
  1549. top:0px;
  1550. width:57px;
  1551. height:30px;
  1552. background:inherit;
  1553. background-color:rgba(255, 255, 255, 0);
  1554. border:none;
  1555. border-left:0px;
  1556. border-top:0px;
  1557. border-right:0px;
  1558. border-radius:0px;
  1559. border-bottom-right-radius:0px;
  1560. border-bottom-left-radius:0px;
  1561. -moz-box-shadow:none;
  1562. -webkit-box-shadow:none;
  1563. box-shadow:none;
  1564. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1565. font-weight:400;
  1566. font-style:normal;
  1567. font-size:14px;
  1568. line-height:30px;
  1569. }
  1570. #u220628 {
  1571. border-width:0px;
  1572. position:absolute;
  1573. left:53px;
  1574. top:434px;
  1575. width:57px;
  1576. height:30px;
  1577. display:flex;
  1578. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1579. font-weight:400;
  1580. font-style:normal;
  1581. font-size:14px;
  1582. line-height:30px;
  1583. }
  1584. #u220628 .text {
  1585. position:absolute;
  1586. align-self:flex-start;
  1587. padding:0px 0px 0px 0px;
  1588. box-sizing:border-box;
  1589. width:100%;
  1590. }
  1591. #u220628_text {
  1592. border-width:0px;
  1593. white-space:nowrap;
  1594. text-transform:none;
  1595. }
  1596. #u220629_div {
  1597. border-width:0px;
  1598. position:absolute;
  1599. left:0px;
  1600. top:0px;
  1601. width:97px;
  1602. height:30px;
  1603. background:inherit;
  1604. background-color:rgba(255, 255, 255, 0);
  1605. border:none;
  1606. border-left:0px;
  1607. border-top:0px;
  1608. border-right:0px;
  1609. border-radius:0px;
  1610. border-bottom-right-radius:0px;
  1611. border-bottom-left-radius:0px;
  1612. -moz-box-shadow:none;
  1613. -webkit-box-shadow:none;
  1614. box-shadow:none;
  1615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1616. font-weight:400;
  1617. font-style:normal;
  1618. font-size:12px;
  1619. color:#0089FE;
  1620. line-height:30px;
  1621. }
  1622. #u220629 {
  1623. border-width:0px;
  1624. position:absolute;
  1625. left:68px;
  1626. top:470px;
  1627. width:97px;
  1628. height:30px;
  1629. display:flex;
  1630. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1631. font-weight:400;
  1632. font-style:normal;
  1633. font-size:12px;
  1634. color:#0089FE;
  1635. line-height:30px;
  1636. }
  1637. #u220629 .text {
  1638. position:absolute;
  1639. align-self:flex-start;
  1640. padding:0px 0px 0px 0px;
  1641. box-sizing:border-box;
  1642. width:100%;
  1643. }
  1644. #u220629_text {
  1645. border-width:0px;
  1646. white-space:nowrap;
  1647. text-transform:none;
  1648. }
  1649. #u220630 {
  1650. border-width:0px;
  1651. position:absolute;
  1652. left:0px;
  1653. top:0px;
  1654. width:0px;
  1655. height:0px;
  1656. }
  1657. #u220631_div {
  1658. border-width:0px;
  1659. position:absolute;
  1660. left:0px;
  1661. top:0px;
  1662. width:375px;
  1663. height:60px;
  1664. background:inherit;
  1665. background-color:rgba(255, 255, 255, 1);
  1666. box-sizing:border-box;
  1667. border-width:1px;
  1668. border-style:solid;
  1669. border-color:rgba(242, 242, 242, 1);
  1670. border-radius:20px;
  1671. border-top-left-radius:0px;
  1672. border-top-right-radius:0px;
  1673. -moz-box-shadow:none;
  1674. -webkit-box-shadow:none;
  1675. box-shadow:none;
  1676. }
  1677. #u220631 {
  1678. border-width:0px;
  1679. position:absolute;
  1680. left:29px;
  1681. top:779px;
  1682. width:375px;
  1683. height:60px;
  1684. display:flex;
  1685. }
  1686. #u220631 .text {
  1687. position:absolute;
  1688. align-self:center;
  1689. padding:2px 2px 2px 2px;
  1690. box-sizing:border-box;
  1691. width:100%;
  1692. }
  1693. #u220631_text {
  1694. border-width:0px;
  1695. word-wrap:break-word;
  1696. text-transform:none;
  1697. visibility:hidden;
  1698. }
  1699. #u220632_div {
  1700. border-width:0px;
  1701. position:absolute;
  1702. left:0px;
  1703. top:0px;
  1704. width:342px;
  1705. height:40px;
  1706. background:inherit;
  1707. background-color:rgba(255, 255, 255, 1);
  1708. box-sizing:border-box;
  1709. border-width:1px;
  1710. border-style:solid;
  1711. border-color:rgba(121, 121, 121, 1);
  1712. border-radius:63px;
  1713. -moz-box-shadow:none;
  1714. -webkit-box-shadow:none;
  1715. box-shadow:none;
  1716. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1717. font-weight:400;
  1718. font-style:normal;
  1719. font-size:14px;
  1720. color:#555555;
  1721. }
  1722. #u220632 {
  1723. border-width:0px;
  1724. position:absolute;
  1725. left:48px;
  1726. top:789px;
  1727. width:342px;
  1728. height:40px;
  1729. display:flex;
  1730. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1731. font-weight:400;
  1732. font-style:normal;
  1733. font-size:14px;
  1734. color:#555555;
  1735. }
  1736. #u220632 .text {
  1737. position:absolute;
  1738. align-self:center;
  1739. padding:2px 2px 2px 2px;
  1740. box-sizing:border-box;
  1741. width:100%;
  1742. }
  1743. #u220632_text {
  1744. border-width:0px;
  1745. word-wrap:break-word;
  1746. text-transform:none;
  1747. }
  1748. #u220634_img {
  1749. border-width:0px;
  1750. position:absolute;
  1751. left:0px;
  1752. top:0px;
  1753. width:433px;
  1754. height:865px;
  1755. }
  1756. #u220634 {
  1757. border-width:0px;
  1758. position:absolute;
  1759. left:465px;
  1760. top:0px;
  1761. width:433px;
  1762. height:865px;
  1763. display:flex;
  1764. }
  1765. #u220634 .text {
  1766. position:absolute;
  1767. align-self:center;
  1768. padding:2px 2px 2px 2px;
  1769. box-sizing:border-box;
  1770. width:100%;
  1771. }
  1772. #u220634_text {
  1773. border-width:0px;
  1774. word-wrap:break-word;
  1775. text-transform:none;
  1776. visibility:hidden;
  1777. }
  1778. #u220635_div {
  1779. border-width:0px;
  1780. position:absolute;
  1781. left:0px;
  1782. top:0px;
  1783. width:375px;
  1784. height:40px;
  1785. background:inherit;
  1786. background-color:rgba(255, 255, 255, 1);
  1787. box-sizing:border-box;
  1788. border-width:1px;
  1789. border-style:solid;
  1790. border-color:rgba(215, 215, 215, 1);
  1791. border-left:0px;
  1792. border-top:0px;
  1793. border-right:0px;
  1794. border-radius:0px;
  1795. border-bottom-right-radius:0px;
  1796. border-bottom-left-radius:0px;
  1797. -moz-box-shadow:none;
  1798. -webkit-box-shadow:none;
  1799. box-shadow:none;
  1800. }
  1801. #u220635 {
  1802. border-width:0px;
  1803. position:absolute;
  1804. left:494px;
  1805. top:67px;
  1806. width:375px;
  1807. height:40px;
  1808. display:flex;
  1809. }
  1810. #u220635 .text {
  1811. position:absolute;
  1812. align-self:center;
  1813. padding:2px 2px 2px 2px;
  1814. box-sizing:border-box;
  1815. width:100%;
  1816. }
  1817. #u220635_text {
  1818. border-width:0px;
  1819. word-wrap:break-word;
  1820. text-transform:none;
  1821. visibility:hidden;
  1822. }
  1823. #u220636 {
  1824. border-width:0px;
  1825. position:absolute;
  1826. left:0px;
  1827. top:0px;
  1828. width:0px;
  1829. height:0px;
  1830. }
  1831. #u220637_div {
  1832. border-width:0px;
  1833. position:absolute;
  1834. left:0px;
  1835. top:0px;
  1836. width:88px;
  1837. height:32px;
  1838. background:inherit;
  1839. background-color:rgba(255, 255, 255, 1);
  1840. box-sizing:border-box;
  1841. border-width:1px;
  1842. border-style:solid;
  1843. border-color:rgba(242, 242, 242, 1);
  1844. border-radius:33px;
  1845. -moz-box-shadow:none;
  1846. -webkit-box-shadow:none;
  1847. box-shadow:none;
  1848. }
  1849. #u220637 {
  1850. border-width:0px;
  1851. position:absolute;
  1852. left:774px;
  1853. top:71px;
  1854. width:88px;
  1855. height:32px;
  1856. display:flex;
  1857. }
  1858. #u220637 .text {
  1859. position:absolute;
  1860. align-self:center;
  1861. padding:2px 2px 2px 2px;
  1862. box-sizing:border-box;
  1863. width:100%;
  1864. }
  1865. #u220637_text {
  1866. border-width:0px;
  1867. word-wrap:break-word;
  1868. text-transform:none;
  1869. visibility:hidden;
  1870. }
  1871. #u220638 {
  1872. border-width:0px;
  1873. position:absolute;
  1874. left:0px;
  1875. top:0px;
  1876. width:0px;
  1877. height:0px;
  1878. }
  1879. #u220639_img {
  1880. border-width:0px;
  1881. position:absolute;
  1882. left:0px;
  1883. top:0px;
  1884. width:18px;
  1885. height:18px;
  1886. }
  1887. #u220639 {
  1888. border-width:0px;
  1889. position:absolute;
  1890. left:837px;
  1891. top:78px;
  1892. width:18px;
  1893. height:18px;
  1894. display:flex;
  1895. }
  1896. #u220639 .text {
  1897. position:absolute;
  1898. align-self:center;
  1899. padding:2px 2px 2px 2px;
  1900. box-sizing:border-box;
  1901. width:100%;
  1902. }
  1903. #u220639_text {
  1904. border-width:0px;
  1905. word-wrap:break-word;
  1906. text-transform:none;
  1907. visibility:hidden;
  1908. }
  1909. #u220640_img {
  1910. border-width:0px;
  1911. position:absolute;
  1912. left:0px;
  1913. top:0px;
  1914. width:6px;
  1915. height:6px;
  1916. }
  1917. #u220640 {
  1918. border-width:0px;
  1919. position:absolute;
  1920. left:843px;
  1921. top:84px;
  1922. width:6px;
  1923. height:6px;
  1924. display:flex;
  1925. }
  1926. #u220640 .text {
  1927. position:absolute;
  1928. align-self:center;
  1929. padding:2px 2px 2px 2px;
  1930. box-sizing:border-box;
  1931. width:100%;
  1932. }
  1933. #u220640_text {
  1934. border-width:0px;
  1935. word-wrap:break-word;
  1936. text-transform:none;
  1937. visibility:hidden;
  1938. }
  1939. #u220641 {
  1940. border-width:0px;
  1941. position:absolute;
  1942. left:0px;
  1943. top:0px;
  1944. width:0px;
  1945. height:0px;
  1946. }
  1947. #u220642_img {
  1948. border-width:0px;
  1949. position:absolute;
  1950. left:0px;
  1951. top:0px;
  1952. width:5px;
  1953. height:5px;
  1954. }
  1955. #u220642 {
  1956. border-width:0px;
  1957. position:absolute;
  1958. left:788px;
  1959. top:85px;
  1960. width:5px;
  1961. height:5px;
  1962. display:flex;
  1963. }
  1964. #u220642 .text {
  1965. position:absolute;
  1966. align-self:center;
  1967. padding:2px 2px 2px 2px;
  1968. box-sizing:border-box;
  1969. width:100%;
  1970. }
  1971. #u220642_text {
  1972. border-width:0px;
  1973. word-wrap:break-word;
  1974. text-transform:none;
  1975. visibility:hidden;
  1976. }
  1977. #u220643_img {
  1978. border-width:0px;
  1979. position:absolute;
  1980. left:0px;
  1981. top:0px;
  1982. width:5px;
  1983. height:5px;
  1984. }
  1985. #u220643 {
  1986. border-width:0px;
  1987. position:absolute;
  1988. left:804px;
  1989. top:85px;
  1990. width:5px;
  1991. height:5px;
  1992. display:flex;
  1993. }
  1994. #u220643 .text {
  1995. position:absolute;
  1996. align-self:center;
  1997. padding:2px 2px 2px 2px;
  1998. box-sizing:border-box;
  1999. width:100%;
  2000. }
  2001. #u220643_text {
  2002. border-width:0px;
  2003. word-wrap:break-word;
  2004. text-transform:none;
  2005. visibility:hidden;
  2006. }
  2007. #u220644_img {
  2008. border-width:0px;
  2009. position:absolute;
  2010. left:0px;
  2011. top:0px;
  2012. width:7px;
  2013. height:7px;
  2014. }
  2015. #u220644 {
  2016. border-width:0px;
  2017. position:absolute;
  2018. left:795px;
  2019. top:84px;
  2020. width:7px;
  2021. height:7px;
  2022. display:flex;
  2023. }
  2024. #u220644 .text {
  2025. position:absolute;
  2026. align-self:center;
  2027. padding:2px 2px 2px 2px;
  2028. box-sizing:border-box;
  2029. width:100%;
  2030. }
  2031. #u220644_text {
  2032. border-width:0px;
  2033. word-wrap:break-word;
  2034. text-transform:none;
  2035. visibility:hidden;
  2036. }
  2037. #u220645_img {
  2038. border-width:0px;
  2039. position:absolute;
  2040. left:0px;
  2041. top:0px;
  2042. width:19px;
  2043. height:2px;
  2044. }
  2045. #u220645 {
  2046. border-width:0px;
  2047. position:absolute;
  2048. left:812px;
  2049. top:87px;
  2050. width:18px;
  2051. height:1px;
  2052. display:flex;
  2053. -webkit-transform:rotate(90deg);
  2054. -moz-transform:rotate(90deg);
  2055. -ms-transform:rotate(90deg);
  2056. transform:rotate(90deg);
  2057. }
  2058. #u220645 .text {
  2059. position:absolute;
  2060. align-self:center;
  2061. padding:2px 2px 2px 2px;
  2062. box-sizing:border-box;
  2063. width:100%;
  2064. }
  2065. #u220645_text {
  2066. border-width:0px;
  2067. word-wrap:break-word;
  2068. text-transform:none;
  2069. visibility:hidden;
  2070. }
  2071. #u220646_img {
  2072. border-width:0px;
  2073. position:absolute;
  2074. left:0px;
  2075. top:0px;
  2076. width:375px;
  2077. height:44px;
  2078. }
  2079. #u220646 {
  2080. border-width:0px;
  2081. position:absolute;
  2082. left:494px;
  2083. top:24px;
  2084. width:375px;
  2085. height:44px;
  2086. display:flex;
  2087. }
  2088. #u220646 .text {
  2089. position:absolute;
  2090. align-self:center;
  2091. padding:2px 2px 2px 2px;
  2092. box-sizing:border-box;
  2093. width:100%;
  2094. }
  2095. #u220646_text {
  2096. border-width:0px;
  2097. word-wrap:break-word;
  2098. text-transform:none;
  2099. visibility:hidden;
  2100. }
  2101. #u220647_div {
  2102. border-width:0px;
  2103. position:absolute;
  2104. left:0px;
  2105. top:0px;
  2106. width:375px;
  2107. height:50px;
  2108. background:inherit;
  2109. background-color:rgba(255, 255, 255, 1);
  2110. box-sizing:border-box;
  2111. border-width:1px;
  2112. border-style:solid;
  2113. border-color:rgba(242, 242, 242, 1);
  2114. border-radius:26px;
  2115. border-top-left-radius:0px;
  2116. border-top-right-radius:0px;
  2117. -moz-box-shadow:none;
  2118. -webkit-box-shadow:none;
  2119. box-shadow:none;
  2120. }
  2121. #u220647 {
  2122. border-width:0px;
  2123. position:absolute;
  2124. left:494px;
  2125. top:788px;
  2126. width:375px;
  2127. height:50px;
  2128. display:flex;
  2129. }
  2130. #u220647 .text {
  2131. position:absolute;
  2132. align-self:center;
  2133. padding:2px 2px 2px 2px;
  2134. box-sizing:border-box;
  2135. width:100%;
  2136. }
  2137. #u220647_text {
  2138. border-width:0px;
  2139. word-wrap:break-word;
  2140. text-transform:none;
  2141. visibility:hidden;
  2142. }
  2143. #u220648 {
  2144. border-width:0px;
  2145. position:absolute;
  2146. left:0px;
  2147. top:0px;
  2148. width:0px;
  2149. height:0px;
  2150. }
  2151. #u220649_img {
  2152. border-width:0px;
  2153. position:absolute;
  2154. left:0px;
  2155. top:0px;
  2156. width:24px;
  2157. height:24px;
  2158. }
  2159. #u220649 {
  2160. border-width:0px;
  2161. position:absolute;
  2162. left:534px;
  2163. top:792px;
  2164. width:24px;
  2165. height:24px;
  2166. display:flex;
  2167. font-size:8px;
  2168. }
  2169. #u220649 .text {
  2170. position:absolute;
  2171. align-self:center;
  2172. padding:2px 2px 2px 2px;
  2173. box-sizing:border-box;
  2174. width:100%;
  2175. }
  2176. #u220649_text {
  2177. border-width:0px;
  2178. word-wrap:break-word;
  2179. text-transform:none;
  2180. }
  2181. #u220650_div {
  2182. border-width:0px;
  2183. position:absolute;
  2184. left:0px;
  2185. top:0px;
  2186. width:25px;
  2187. height:17px;
  2188. background:inherit;
  2189. background-color:rgba(255, 255, 255, 0);
  2190. border:none;
  2191. border-radius:0px;
  2192. -moz-box-shadow:none;
  2193. -webkit-box-shadow:none;
  2194. box-shadow:none;
  2195. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2196. font-weight:400;
  2197. font-style:normal;
  2198. font-size:12px;
  2199. }
  2200. #u220650 {
  2201. border-width:0px;
  2202. position:absolute;
  2203. left:534px;
  2204. top:817px;
  2205. width:25px;
  2206. height:17px;
  2207. display:flex;
  2208. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2209. font-weight:400;
  2210. font-style:normal;
  2211. font-size:12px;
  2212. }
  2213. #u220650 .text {
  2214. position:absolute;
  2215. align-self:flex-start;
  2216. padding:0px 0px 0px 0px;
  2217. box-sizing:border-box;
  2218. width:100%;
  2219. }
  2220. #u220650_text {
  2221. border-width:0px;
  2222. white-space:nowrap;
  2223. text-transform:none;
  2224. }
  2225. #u220651 {
  2226. border-width:0px;
  2227. position:absolute;
  2228. left:0px;
  2229. top:0px;
  2230. width:0px;
  2231. height:0px;
  2232. }
  2233. #u220652_img {
  2234. border-width:0px;
  2235. position:absolute;
  2236. left:0px;
  2237. top:0px;
  2238. width:24px;
  2239. height:24px;
  2240. }
  2241. #u220652 {
  2242. border-width:0px;
  2243. position:absolute;
  2244. left:804px;
  2245. top:794px;
  2246. width:24px;
  2247. height:24px;
  2248. display:flex;
  2249. font-size:8px;
  2250. }
  2251. #u220652 .text {
  2252. position:absolute;
  2253. align-self:center;
  2254. padding:2px 2px 2px 2px;
  2255. box-sizing:border-box;
  2256. width:100%;
  2257. }
  2258. #u220652_text {
  2259. border-width:0px;
  2260. word-wrap:break-word;
  2261. text-transform:none;
  2262. }
  2263. #u220653_div {
  2264. border-width:0px;
  2265. position:absolute;
  2266. left:0px;
  2267. top:0px;
  2268. width:25px;
  2269. height:17px;
  2270. background:inherit;
  2271. background-color:rgba(255, 255, 255, 0);
  2272. border:none;
  2273. border-radius:0px;
  2274. -moz-box-shadow:none;
  2275. -webkit-box-shadow:none;
  2276. box-shadow:none;
  2277. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2278. font-weight:400;
  2279. font-style:normal;
  2280. font-size:12px;
  2281. }
  2282. #u220653 {
  2283. border-width:0px;
  2284. position:absolute;
  2285. left:804px;
  2286. top:819px;
  2287. width:25px;
  2288. height:17px;
  2289. display:flex;
  2290. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2291. font-weight:400;
  2292. font-style:normal;
  2293. font-size:12px;
  2294. }
  2295. #u220653 .text {
  2296. position:absolute;
  2297. align-self:flex-start;
  2298. padding:0px 0px 0px 0px;
  2299. box-sizing:border-box;
  2300. width:100%;
  2301. }
  2302. #u220653_text {
  2303. border-width:0px;
  2304. white-space:nowrap;
  2305. text-transform:none;
  2306. }
  2307. #u220654_div {
  2308. border-width:0px;
  2309. position:absolute;
  2310. left:0px;
  2311. top:0px;
  2312. width:375px;
  2313. height:681px;
  2314. background:inherit;
  2315. background-color:rgba(242, 242, 242, 0.462745098039216);
  2316. border:none;
  2317. border-radius:0px;
  2318. -moz-box-shadow:none;
  2319. -webkit-box-shadow:none;
  2320. box-shadow:none;
  2321. }
  2322. #u220654 {
  2323. border-width:0px;
  2324. position:absolute;
  2325. left:494px;
  2326. top:107px;
  2327. width:375px;
  2328. height:681px;
  2329. display:flex;
  2330. }
  2331. #u220654 .text {
  2332. position:absolute;
  2333. align-self:center;
  2334. padding:2px 2px 2px 2px;
  2335. box-sizing:border-box;
  2336. width:100%;
  2337. }
  2338. #u220654_text {
  2339. border-width:0px;
  2340. word-wrap:break-word;
  2341. text-transform:none;
  2342. visibility:hidden;
  2343. }
  2344. #u220655 {
  2345. border-width:0px;
  2346. position:absolute;
  2347. left:0px;
  2348. top:0px;
  2349. width:0px;
  2350. height:0px;
  2351. }
  2352. #u220656_img {
  2353. border-width:0px;
  2354. position:absolute;
  2355. left:0px;
  2356. top:0px;
  2357. width:24px;
  2358. height:24px;
  2359. }
  2360. #u220656 {
  2361. border-width:0px;
  2362. position:absolute;
  2363. left:716px;
  2364. top:792px;
  2365. width:24px;
  2366. height:24px;
  2367. display:flex;
  2368. font-size:8px;
  2369. }
  2370. #u220656 .text {
  2371. position:absolute;
  2372. align-self:center;
  2373. padding:2px 2px 2px 2px;
  2374. box-sizing:border-box;
  2375. width:100%;
  2376. }
  2377. #u220656_text {
  2378. border-width:0px;
  2379. word-wrap:break-word;
  2380. text-transform:none;
  2381. }
  2382. #u220657_div {
  2383. border-width:0px;
  2384. position:absolute;
  2385. left:0px;
  2386. top:0px;
  2387. width:37px;
  2388. height:17px;
  2389. background:inherit;
  2390. background-color:rgba(255, 255, 255, 0);
  2391. border:none;
  2392. border-radius:0px;
  2393. -moz-box-shadow:none;
  2394. -webkit-box-shadow:none;
  2395. box-shadow:none;
  2396. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2397. font-weight:400;
  2398. font-style:normal;
  2399. font-size:12px;
  2400. }
  2401. #u220657 {
  2402. border-width:0px;
  2403. position:absolute;
  2404. left:710px;
  2405. top:817px;
  2406. width:37px;
  2407. height:17px;
  2408. display:flex;
  2409. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2410. font-weight:400;
  2411. font-style:normal;
  2412. font-size:12px;
  2413. }
  2414. #u220657 .text {
  2415. position:absolute;
  2416. align-self:flex-start;
  2417. padding:0px 0px 0px 0px;
  2418. box-sizing:border-box;
  2419. width:100%;
  2420. }
  2421. #u220657_text {
  2422. border-width:0px;
  2423. white-space:nowrap;
  2424. text-transform:none;
  2425. }
  2426. #u220658 {
  2427. border-width:0px;
  2428. position:absolute;
  2429. left:0px;
  2430. top:0px;
  2431. width:0px;
  2432. height:0px;
  2433. }
  2434. #u220659_img {
  2435. border-width:0px;
  2436. position:absolute;
  2437. left:0px;
  2438. top:0px;
  2439. width:24px;
  2440. height:24px;
  2441. }
  2442. #u220659 {
  2443. border-width:0px;
  2444. position:absolute;
  2445. left:622px;
  2446. top:792px;
  2447. width:24px;
  2448. height:24px;
  2449. display:flex;
  2450. font-size:8px;
  2451. }
  2452. #u220659 .text {
  2453. position:absolute;
  2454. align-self:center;
  2455. padding:2px 2px 2px 2px;
  2456. box-sizing:border-box;
  2457. width:100%;
  2458. }
  2459. #u220659_text {
  2460. border-width:0px;
  2461. word-wrap:break-word;
  2462. text-transform:none;
  2463. }
  2464. #u220660_div {
  2465. border-width:0px;
  2466. position:absolute;
  2467. left:0px;
  2468. top:0px;
  2469. width:37px;
  2470. height:17px;
  2471. background:inherit;
  2472. background-color:rgba(255, 255, 255, 0);
  2473. border:none;
  2474. border-radius:0px;
  2475. -moz-box-shadow:none;
  2476. -webkit-box-shadow:none;
  2477. box-shadow:none;
  2478. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2479. font-weight:400;
  2480. font-style:normal;
  2481. font-size:12px;
  2482. }
  2483. #u220660 {
  2484. border-width:0px;
  2485. position:absolute;
  2486. left:616px;
  2487. top:817px;
  2488. width:37px;
  2489. height:17px;
  2490. display:flex;
  2491. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2492. font-weight:400;
  2493. font-style:normal;
  2494. font-size:12px;
  2495. }
  2496. #u220660 .text {
  2497. position:absolute;
  2498. align-self:flex-start;
  2499. padding:0px 0px 0px 0px;
  2500. box-sizing:border-box;
  2501. width:100%;
  2502. }
  2503. #u220660_text {
  2504. border-width:0px;
  2505. white-space:nowrap;
  2506. text-transform:none;
  2507. }
  2508. #u220661_div {
  2509. border-width:0px;
  2510. position:absolute;
  2511. left:0px;
  2512. top:0px;
  2513. width:375px;
  2514. height:732px;
  2515. background:inherit;
  2516. background-color:rgba(242, 242, 242, 0.996078431372549);
  2517. border:none;
  2518. border-top:0px;
  2519. border-radius:28px;
  2520. border-top-left-radius:0px;
  2521. border-top-right-radius:0px;
  2522. -moz-box-shadow:none;
  2523. -webkit-box-shadow:none;
  2524. box-shadow:none;
  2525. }
  2526. #u220661 {
  2527. border-width:0px;
  2528. position:absolute;
  2529. left:494px;
  2530. top:107px;
  2531. width:375px;
  2532. height:732px;
  2533. display:flex;
  2534. }
  2535. #u220661 .text {
  2536. position:absolute;
  2537. align-self:center;
  2538. padding:2px 2px 2px 2px;
  2539. box-sizing:border-box;
  2540. width:100%;
  2541. }
  2542. #u220661_text {
  2543. border-width:0px;
  2544. word-wrap:break-word;
  2545. text-transform:none;
  2546. visibility:hidden;
  2547. }
  2548. #u220662_div {
  2549. border-width:0px;
  2550. position:absolute;
  2551. left:0px;
  2552. top:0px;
  2553. width:375px;
  2554. height:125px;
  2555. background:inherit;
  2556. background-color:rgba(255, 255, 255, 1);
  2557. border:none;
  2558. border-left:0px;
  2559. border-top:0px;
  2560. border-right:0px;
  2561. border-radius:0px;
  2562. border-bottom-right-radius:0px;
  2563. border-bottom-left-radius:0px;
  2564. -moz-box-shadow:none;
  2565. -webkit-box-shadow:none;
  2566. box-shadow:none;
  2567. }
  2568. #u220662 {
  2569. border-width:0px;
  2570. position:absolute;
  2571. left:494px;
  2572. top:108px;
  2573. width:375px;
  2574. height:125px;
  2575. display:flex;
  2576. }
  2577. #u220662 .text {
  2578. position:absolute;
  2579. align-self:center;
  2580. padding:2px 2px 2px 2px;
  2581. box-sizing:border-box;
  2582. width:100%;
  2583. }
  2584. #u220662_text {
  2585. border-width:0px;
  2586. word-wrap:break-word;
  2587. text-transform:none;
  2588. visibility:hidden;
  2589. }
  2590. #u220663_div {
  2591. border-width:0px;
  2592. position:absolute;
  2593. left:0px;
  2594. top:0px;
  2595. width:43px;
  2596. height:20px;
  2597. background:inherit;
  2598. background-color:rgba(255, 255, 255, 0);
  2599. border:none;
  2600. border-radius:0px;
  2601. -moz-box-shadow:none;
  2602. -webkit-box-shadow:none;
  2603. box-shadow:none;
  2604. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2605. font-weight:400;
  2606. font-style:normal;
  2607. color:#0089FE;
  2608. }
  2609. #u220663 {
  2610. border-width:0px;
  2611. position:absolute;
  2612. left:807px;
  2613. top:124px;
  2614. width:43px;
  2615. height:20px;
  2616. display:flex;
  2617. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2618. font-weight:400;
  2619. font-style:normal;
  2620. color:#0089FE;
  2621. }
  2622. #u220663 .text {
  2623. position:absolute;
  2624. align-self:flex-start;
  2625. padding:0px 0px 0px 0px;
  2626. box-sizing:border-box;
  2627. width:100%;
  2628. }
  2629. #u220663_text {
  2630. border-width:0px;
  2631. white-space:nowrap;
  2632. text-transform:none;
  2633. }
  2634. #u220664_div {
  2635. border-width:0px;
  2636. position:absolute;
  2637. left:0px;
  2638. top:0px;
  2639. width:124px;
  2640. height:30px;
  2641. background:inherit;
  2642. background-color:rgba(255, 255, 255, 0);
  2643. border:none;
  2644. border-left:0px;
  2645. border-top:0px;
  2646. border-right:0px;
  2647. border-radius:0px;
  2648. border-bottom-right-radius:0px;
  2649. border-bottom-left-radius:0px;
  2650. -moz-box-shadow:none;
  2651. -webkit-box-shadow:none;
  2652. box-shadow:none;
  2653. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2654. font-weight:500;
  2655. font-style:normal;
  2656. font-size:14px;
  2657. line-height:30px;
  2658. }
  2659. #u220664 {
  2660. border-width:0px;
  2661. position:absolute;
  2662. left:507px;
  2663. top:118px;
  2664. width:124px;
  2665. height:30px;
  2666. display:flex;
  2667. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2668. font-weight:500;
  2669. font-style:normal;
  2670. font-size:14px;
  2671. line-height:30px;
  2672. }
  2673. #u220664 .text {
  2674. position:absolute;
  2675. align-self:flex-start;
  2676. padding:0px 0px 0px 0px;
  2677. box-sizing:border-box;
  2678. width:100%;
  2679. }
  2680. #u220664_text {
  2681. border-width:0px;
  2682. white-space:nowrap;
  2683. text-transform:none;
  2684. }
  2685. #u220665_div {
  2686. border-width:0px;
  2687. position:absolute;
  2688. left:0px;
  2689. top:0px;
  2690. width:167px;
  2691. height:75px;
  2692. background:inherit;
  2693. background-color:rgba(255, 255, 255, 0);
  2694. border:none;
  2695. border-left:0px;
  2696. border-top:0px;
  2697. border-right:0px;
  2698. border-radius:0px;
  2699. border-bottom-right-radius:0px;
  2700. border-bottom-left-radius:0px;
  2701. -moz-box-shadow:none;
  2702. -webkit-box-shadow:none;
  2703. box-shadow:none;
  2704. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2705. font-weight:400;
  2706. font-style:normal;
  2707. font-size:12px;
  2708. line-height:25px;
  2709. }
  2710. #u220665 {
  2711. border-width:0px;
  2712. position:absolute;
  2713. left:507px;
  2714. top:148px;
  2715. width:167px;
  2716. height:75px;
  2717. display:flex;
  2718. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2719. font-weight:400;
  2720. font-style:normal;
  2721. font-size:12px;
  2722. line-height:25px;
  2723. }
  2724. #u220665 .text {
  2725. position:absolute;
  2726. align-self:flex-start;
  2727. padding:0px 0px 0px 0px;
  2728. box-sizing:border-box;
  2729. width:100%;
  2730. }
  2731. #u220665_text {
  2732. border-width:0px;
  2733. white-space:nowrap;
  2734. text-transform:none;
  2735. }
  2736. #u220666_div {
  2737. border-width:0px;
  2738. position:absolute;
  2739. left:0px;
  2740. top:0px;
  2741. width:375px;
  2742. height:41px;
  2743. background:inherit;
  2744. background-color:rgba(255, 255, 255, 1);
  2745. box-sizing:border-box;
  2746. border-width:1px;
  2747. border-style:solid;
  2748. border-color:rgba(215, 215, 215, 1);
  2749. border-left:0px;
  2750. border-top:0px;
  2751. border-right:0px;
  2752. border-radius:0px;
  2753. border-bottom-right-radius:0px;
  2754. border-bottom-left-radius:0px;
  2755. -moz-box-shadow:none;
  2756. -webkit-box-shadow:none;
  2757. box-shadow:none;
  2758. }
  2759. #u220666 {
  2760. border-width:0px;
  2761. position:absolute;
  2762. left:494px;
  2763. top:67px;
  2764. width:375px;
  2765. height:41px;
  2766. display:flex;
  2767. }
  2768. #u220666 .text {
  2769. position:absolute;
  2770. align-self:center;
  2771. padding:2px 2px 2px 2px;
  2772. box-sizing:border-box;
  2773. width:100%;
  2774. }
  2775. #u220666_text {
  2776. border-width:0px;
  2777. word-wrap:break-word;
  2778. text-transform:none;
  2779. visibility:hidden;
  2780. }
  2781. #u220667 {
  2782. border-width:0px;
  2783. position:absolute;
  2784. left:0px;
  2785. top:0px;
  2786. width:0px;
  2787. height:0px;
  2788. }
  2789. #u220668_div {
  2790. border-width:0px;
  2791. position:absolute;
  2792. left:0px;
  2793. top:0px;
  2794. width:88px;
  2795. height:32px;
  2796. background:inherit;
  2797. background-color:rgba(255, 255, 255, 1);
  2798. box-sizing:border-box;
  2799. border-width:1px;
  2800. border-style:solid;
  2801. border-color:rgba(242, 242, 242, 1);
  2802. border-radius:33px;
  2803. -moz-box-shadow:none;
  2804. -webkit-box-shadow:none;
  2805. box-shadow:none;
  2806. }
  2807. #u220668 {
  2808. border-width:0px;
  2809. position:absolute;
  2810. left:774px;
  2811. top:71px;
  2812. width:88px;
  2813. height:32px;
  2814. display:flex;
  2815. }
  2816. #u220668 .text {
  2817. position:absolute;
  2818. align-self:center;
  2819. padding:2px 2px 2px 2px;
  2820. box-sizing:border-box;
  2821. width:100%;
  2822. }
  2823. #u220668_text {
  2824. border-width:0px;
  2825. word-wrap:break-word;
  2826. text-transform:none;
  2827. visibility:hidden;
  2828. }
  2829. #u220669 {
  2830. border-width:0px;
  2831. position:absolute;
  2832. left:0px;
  2833. top:0px;
  2834. width:0px;
  2835. height:0px;
  2836. }
  2837. #u220670_img {
  2838. border-width:0px;
  2839. position:absolute;
  2840. left:0px;
  2841. top:0px;
  2842. width:18px;
  2843. height:18px;
  2844. }
  2845. #u220670 {
  2846. border-width:0px;
  2847. position:absolute;
  2848. left:837px;
  2849. top:78px;
  2850. width:18px;
  2851. height:18px;
  2852. display:flex;
  2853. }
  2854. #u220670 .text {
  2855. position:absolute;
  2856. align-self:center;
  2857. padding:2px 2px 2px 2px;
  2858. box-sizing:border-box;
  2859. width:100%;
  2860. }
  2861. #u220670_text {
  2862. border-width:0px;
  2863. word-wrap:break-word;
  2864. text-transform:none;
  2865. visibility:hidden;
  2866. }
  2867. #u220671_img {
  2868. border-width:0px;
  2869. position:absolute;
  2870. left:0px;
  2871. top:0px;
  2872. width:6px;
  2873. height:6px;
  2874. }
  2875. #u220671 {
  2876. border-width:0px;
  2877. position:absolute;
  2878. left:843px;
  2879. top:84px;
  2880. width:6px;
  2881. height:6px;
  2882. display:flex;
  2883. }
  2884. #u220671 .text {
  2885. position:absolute;
  2886. align-self:center;
  2887. padding:2px 2px 2px 2px;
  2888. box-sizing:border-box;
  2889. width:100%;
  2890. }
  2891. #u220671_text {
  2892. border-width:0px;
  2893. word-wrap:break-word;
  2894. text-transform:none;
  2895. visibility:hidden;
  2896. }
  2897. #u220672 {
  2898. border-width:0px;
  2899. position:absolute;
  2900. left:0px;
  2901. top:0px;
  2902. width:0px;
  2903. height:0px;
  2904. }
  2905. #u220673_img {
  2906. border-width:0px;
  2907. position:absolute;
  2908. left:0px;
  2909. top:0px;
  2910. width:5px;
  2911. height:5px;
  2912. }
  2913. #u220673 {
  2914. border-width:0px;
  2915. position:absolute;
  2916. left:788px;
  2917. top:85px;
  2918. width:5px;
  2919. height:5px;
  2920. display:flex;
  2921. }
  2922. #u220673 .text {
  2923. position:absolute;
  2924. align-self:center;
  2925. padding:2px 2px 2px 2px;
  2926. box-sizing:border-box;
  2927. width:100%;
  2928. }
  2929. #u220673_text {
  2930. border-width:0px;
  2931. word-wrap:break-word;
  2932. text-transform:none;
  2933. visibility:hidden;
  2934. }
  2935. #u220674_img {
  2936. border-width:0px;
  2937. position:absolute;
  2938. left:0px;
  2939. top:0px;
  2940. width:5px;
  2941. height:5px;
  2942. }
  2943. #u220674 {
  2944. border-width:0px;
  2945. position:absolute;
  2946. left:804px;
  2947. top:85px;
  2948. width:5px;
  2949. height:5px;
  2950. display:flex;
  2951. }
  2952. #u220674 .text {
  2953. position:absolute;
  2954. align-self:center;
  2955. padding:2px 2px 2px 2px;
  2956. box-sizing:border-box;
  2957. width:100%;
  2958. }
  2959. #u220674_text {
  2960. border-width:0px;
  2961. word-wrap:break-word;
  2962. text-transform:none;
  2963. visibility:hidden;
  2964. }
  2965. #u220675_img {
  2966. border-width:0px;
  2967. position:absolute;
  2968. left:0px;
  2969. top:0px;
  2970. width:7px;
  2971. height:7px;
  2972. }
  2973. #u220675 {
  2974. border-width:0px;
  2975. position:absolute;
  2976. left:795px;
  2977. top:84px;
  2978. width:7px;
  2979. height:7px;
  2980. display:flex;
  2981. }
  2982. #u220675 .text {
  2983. position:absolute;
  2984. align-self:center;
  2985. padding:2px 2px 2px 2px;
  2986. box-sizing:border-box;
  2987. width:100%;
  2988. }
  2989. #u220675_text {
  2990. border-width:0px;
  2991. word-wrap:break-word;
  2992. text-transform:none;
  2993. visibility:hidden;
  2994. }
  2995. #u220676_img {
  2996. border-width:0px;
  2997. position:absolute;
  2998. left:0px;
  2999. top:0px;
  3000. width:19px;
  3001. height:2px;
  3002. }
  3003. #u220676 {
  3004. border-width:0px;
  3005. position:absolute;
  3006. left:812px;
  3007. top:87px;
  3008. width:18px;
  3009. height:1px;
  3010. display:flex;
  3011. -webkit-transform:rotate(90deg);
  3012. -moz-transform:rotate(90deg);
  3013. -ms-transform:rotate(90deg);
  3014. transform:rotate(90deg);
  3015. }
  3016. #u220676 .text {
  3017. position:absolute;
  3018. align-self:center;
  3019. padding:2px 2px 2px 2px;
  3020. box-sizing:border-box;
  3021. width:100%;
  3022. }
  3023. #u220676_text {
  3024. border-width:0px;
  3025. word-wrap:break-word;
  3026. text-transform:none;
  3027. visibility:hidden;
  3028. }
  3029. #u220677_div {
  3030. border-width:0px;
  3031. position:absolute;
  3032. left:0px;
  3033. top:0px;
  3034. width:12px;
  3035. height:12px;
  3036. background:inherit;
  3037. background-color:rgba(255, 255, 255, 0);
  3038. box-sizing:border-box;
  3039. border-width:2px;
  3040. border-style:solid;
  3041. border-color:rgba(51, 51, 51, 1);
  3042. border-right:0px;
  3043. border-bottom:0px;
  3044. border-radius:0px;
  3045. border-top-right-radius:0px;
  3046. border-bottom-left-radius:0px;
  3047. -moz-box-shadow:none;
  3048. -webkit-box-shadow:none;
  3049. box-shadow:none;
  3050. }
  3051. #u220677 {
  3052. border-width:0px;
  3053. position:absolute;
  3054. left:509px;
  3055. top:81px;
  3056. width:12px;
  3057. height:12px;
  3058. display:flex;
  3059. -webkit-transform:rotate(315deg);
  3060. -moz-transform:rotate(315deg);
  3061. -ms-transform:rotate(315deg);
  3062. transform:rotate(315deg);
  3063. }
  3064. #u220677 .text {
  3065. position:absolute;
  3066. align-self:center;
  3067. padding:2px 2px 2px 2px;
  3068. box-sizing:border-box;
  3069. width:100%;
  3070. }
  3071. #u220677_text {
  3072. border-width:0px;
  3073. word-wrap:break-word;
  3074. text-transform:none;
  3075. visibility:hidden;
  3076. }
  3077. #u220678_div {
  3078. border-width:0px;
  3079. position:absolute;
  3080. left:0px;
  3081. top:0px;
  3082. width:73px;
  3083. height:25px;
  3084. background:inherit;
  3085. background-color:rgba(255, 255, 255, 0);
  3086. border:none;
  3087. border-radius:0px;
  3088. -moz-box-shadow:none;
  3089. -webkit-box-shadow:none;
  3090. box-shadow:none;
  3091. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3092. font-weight:400;
  3093. font-style:normal;
  3094. font-size:18px;
  3095. }
  3096. #u220678 {
  3097. border-width:0px;
  3098. position:absolute;
  3099. left:529px;
  3100. top:75px;
  3101. width:73px;
  3102. height:25px;
  3103. display:flex;
  3104. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3105. font-weight:400;
  3106. font-style:normal;
  3107. font-size:18px;
  3108. }
  3109. #u220678 .text {
  3110. position:absolute;
  3111. align-self:flex-start;
  3112. padding:0px 0px 0px 0px;
  3113. box-sizing:border-box;
  3114. width:100%;
  3115. }
  3116. #u220678_text {
  3117. border-width:0px;
  3118. white-space:nowrap;
  3119. text-transform:none;
  3120. }
  3121. #u220679 {
  3122. border-width:0px;
  3123. position:absolute;
  3124. left:0px;
  3125. top:0px;
  3126. width:0px;
  3127. height:0px;
  3128. }
  3129. #u220680_div {
  3130. border-width:0px;
  3131. position:absolute;
  3132. left:0px;
  3133. top:0px;
  3134. width:375px;
  3135. height:356px;
  3136. background:inherit;
  3137. background-color:rgba(255, 255, 255, 1);
  3138. border:none;
  3139. border-left:0px;
  3140. border-right:0px;
  3141. border-radius:0px;
  3142. border-top-left-radius:0px;
  3143. border-top-right-radius:0px;
  3144. border-bottom-right-radius:0px;
  3145. border-bottom-left-radius:0px;
  3146. -moz-box-shadow:none;
  3147. -webkit-box-shadow:none;
  3148. box-shadow:none;
  3149. }
  3150. #u220680 {
  3151. border-width:0px;
  3152. position:absolute;
  3153. left:494px;
  3154. top:423px;
  3155. width:375px;
  3156. height:356px;
  3157. display:flex;
  3158. }
  3159. #u220680 .text {
  3160. position:absolute;
  3161. align-self:center;
  3162. padding:2px 2px 2px 2px;
  3163. box-sizing:border-box;
  3164. width:100%;
  3165. }
  3166. #u220680_text {
  3167. border-width:0px;
  3168. word-wrap:break-word;
  3169. text-transform:none;
  3170. visibility:hidden;
  3171. }
  3172. #u220681_div {
  3173. border-width:0px;
  3174. position:absolute;
  3175. left:0px;
  3176. top:0px;
  3177. width:57px;
  3178. height:30px;
  3179. background:inherit;
  3180. background-color:rgba(255, 255, 255, 0);
  3181. border:none;
  3182. border-left:0px;
  3183. border-top:0px;
  3184. border-right:0px;
  3185. border-radius:0px;
  3186. border-bottom-right-radius:0px;
  3187. border-bottom-left-radius:0px;
  3188. -moz-box-shadow:none;
  3189. -webkit-box-shadow:none;
  3190. box-shadow:none;
  3191. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3192. font-weight:400;
  3193. font-style:normal;
  3194. font-size:14px;
  3195. line-height:30px;
  3196. }
  3197. #u220681 {
  3198. border-width:0px;
  3199. position:absolute;
  3200. left:518px;
  3201. top:433px;
  3202. width:57px;
  3203. height:30px;
  3204. display:flex;
  3205. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3206. font-weight:400;
  3207. font-style:normal;
  3208. font-size:14px;
  3209. line-height:30px;
  3210. }
  3211. #u220681 .text {
  3212. position:absolute;
  3213. align-self:flex-start;
  3214. padding:0px 0px 0px 0px;
  3215. box-sizing:border-box;
  3216. width:100%;
  3217. }
  3218. #u220681_text {
  3219. border-width:0px;
  3220. white-space:nowrap;
  3221. text-transform:none;
  3222. }
  3223. #u220682_div {
  3224. border-width:0px;
  3225. position:absolute;
  3226. left:0px;
  3227. top:0px;
  3228. width:181px;
  3229. height:30px;
  3230. background:inherit;
  3231. background-color:rgba(255, 255, 255, 0);
  3232. border:none;
  3233. border-left:0px;
  3234. border-top:0px;
  3235. border-right:0px;
  3236. border-radius:0px;
  3237. border-bottom-right-radius:0px;
  3238. border-bottom-left-radius:0px;
  3239. -moz-box-shadow:none;
  3240. -webkit-box-shadow:none;
  3241. box-shadow:none;
  3242. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3243. font-weight:400;
  3244. font-style:normal;
  3245. font-size:12px;
  3246. line-height:30px;
  3247. }
  3248. #u220682 {
  3249. border-width:0px;
  3250. position:absolute;
  3251. left:518px;
  3252. top:463px;
  3253. width:181px;
  3254. height:30px;
  3255. display:flex;
  3256. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3257. font-weight:400;
  3258. font-style:normal;
  3259. font-size:12px;
  3260. line-height:30px;
  3261. }
  3262. #u220682 .text {
  3263. position:absolute;
  3264. align-self:flex-start;
  3265. padding:0px 0px 0px 0px;
  3266. box-sizing:border-box;
  3267. width:100%;
  3268. }
  3269. #u220682_text {
  3270. border-width:0px;
  3271. white-space:nowrap;
  3272. text-transform:none;
  3273. }
  3274. #u220683_div {
  3275. border-width:0px;
  3276. position:absolute;
  3277. left:0px;
  3278. top:0px;
  3279. width:167px;
  3280. height:30px;
  3281. background:inherit;
  3282. background-color:rgba(255, 255, 255, 0);
  3283. border:none;
  3284. border-left:0px;
  3285. border-top:0px;
  3286. border-right:0px;
  3287. border-radius:0px;
  3288. border-bottom-right-radius:0px;
  3289. border-bottom-left-radius:0px;
  3290. -moz-box-shadow:none;
  3291. -webkit-box-shadow:none;
  3292. box-shadow:none;
  3293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3294. font-weight:400;
  3295. font-style:normal;
  3296. font-size:12px;
  3297. line-height:30px;
  3298. }
  3299. #u220683 {
  3300. border-width:0px;
  3301. position:absolute;
  3302. left:518px;
  3303. top:493px;
  3304. width:167px;
  3305. height:30px;
  3306. display:flex;
  3307. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3308. font-weight:400;
  3309. font-style:normal;
  3310. font-size:12px;
  3311. line-height:30px;
  3312. }
  3313. #u220683 .text {
  3314. position:absolute;
  3315. align-self:flex-start;
  3316. padding:0px 0px 0px 0px;
  3317. box-sizing:border-box;
  3318. width:100%;
  3319. }
  3320. #u220683_text {
  3321. border-width:0px;
  3322. white-space:nowrap;
  3323. text-transform:none;
  3324. }
  3325. #u220684_img {
  3326. border-width:0px;
  3327. position:absolute;
  3328. left:0px;
  3329. top:0px;
  3330. width:375px;
  3331. height:252px;
  3332. }
  3333. #u220684 {
  3334. border-width:0px;
  3335. position:absolute;
  3336. left:494px;
  3337. top:527px;
  3338. width:375px;
  3339. height:252px;
  3340. display:flex;
  3341. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3342. font-weight:400;
  3343. font-style:normal;
  3344. }
  3345. #u220684 .text {
  3346. position:absolute;
  3347. align-self:center;
  3348. padding:2px 2px 2px 2px;
  3349. box-sizing:border-box;
  3350. width:100%;
  3351. }
  3352. #u220684_text {
  3353. border-width:0px;
  3354. word-wrap:break-word;
  3355. text-transform:none;
  3356. }
  3357. #u220685_div {
  3358. border-width:0px;
  3359. position:absolute;
  3360. left:0px;
  3361. top:0px;
  3362. width:85px;
  3363. height:30px;
  3364. background:inherit;
  3365. background-color:rgba(255, 255, 255, 0);
  3366. border:none;
  3367. border-left:0px;
  3368. border-top:0px;
  3369. border-right:0px;
  3370. border-radius:0px;
  3371. border-bottom-right-radius:0px;
  3372. border-bottom-left-radius:0px;
  3373. -moz-box-shadow:none;
  3374. -webkit-box-shadow:none;
  3375. box-shadow:none;
  3376. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3377. font-weight:400;
  3378. font-style:normal;
  3379. font-size:12px;
  3380. color:#0089FE;
  3381. line-height:30px;
  3382. }
  3383. #u220685 {
  3384. border-width:0px;
  3385. position:absolute;
  3386. left:770px;
  3387. top:433px;
  3388. width:85px;
  3389. height:30px;
  3390. display:flex;
  3391. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3392. font-weight:400;
  3393. font-style:normal;
  3394. font-size:12px;
  3395. color:#0089FE;
  3396. line-height:30px;
  3397. }
  3398. #u220685 .text {
  3399. position:absolute;
  3400. align-self:flex-start;
  3401. padding:0px 0px 0px 0px;
  3402. box-sizing:border-box;
  3403. width:100%;
  3404. }
  3405. #u220685_text {
  3406. border-width:0px;
  3407. white-space:nowrap;
  3408. text-transform:none;
  3409. }
  3410. #u220687_img {
  3411. border-width:0px;
  3412. position:absolute;
  3413. left:0px;
  3414. top:0px;
  3415. width:433px;
  3416. height:865px;
  3417. }
  3418. #u220687 {
  3419. border-width:0px;
  3420. position:absolute;
  3421. left:933px;
  3422. top:0px;
  3423. width:433px;
  3424. height:865px;
  3425. display:flex;
  3426. }
  3427. #u220687 .text {
  3428. position:absolute;
  3429. align-self:center;
  3430. padding:2px 2px 2px 2px;
  3431. box-sizing:border-box;
  3432. width:100%;
  3433. }
  3434. #u220687_text {
  3435. border-width:0px;
  3436. word-wrap:break-word;
  3437. text-transform:none;
  3438. visibility:hidden;
  3439. }
  3440. #u220688_div {
  3441. border-width:0px;
  3442. position:absolute;
  3443. left:0px;
  3444. top:0px;
  3445. width:375px;
  3446. height:40px;
  3447. background:inherit;
  3448. background-color:rgba(255, 255, 255, 1);
  3449. box-sizing:border-box;
  3450. border-width:1px;
  3451. border-style:solid;
  3452. border-color:rgba(215, 215, 215, 1);
  3453. border-left:0px;
  3454. border-top:0px;
  3455. border-right:0px;
  3456. border-radius:0px;
  3457. border-bottom-right-radius:0px;
  3458. border-bottom-left-radius:0px;
  3459. -moz-box-shadow:none;
  3460. -webkit-box-shadow:none;
  3461. box-shadow:none;
  3462. }
  3463. #u220688 {
  3464. border-width:0px;
  3465. position:absolute;
  3466. left:962px;
  3467. top:67px;
  3468. width:375px;
  3469. height:40px;
  3470. display:flex;
  3471. }
  3472. #u220688 .text {
  3473. position:absolute;
  3474. align-self:center;
  3475. padding:2px 2px 2px 2px;
  3476. box-sizing:border-box;
  3477. width:100%;
  3478. }
  3479. #u220688_text {
  3480. border-width:0px;
  3481. word-wrap:break-word;
  3482. text-transform:none;
  3483. visibility:hidden;
  3484. }
  3485. #u220689 {
  3486. border-width:0px;
  3487. position:absolute;
  3488. left:0px;
  3489. top:0px;
  3490. width:0px;
  3491. height:0px;
  3492. }
  3493. #u220690_div {
  3494. border-width:0px;
  3495. position:absolute;
  3496. left:0px;
  3497. top:0px;
  3498. width:88px;
  3499. height:32px;
  3500. background:inherit;
  3501. background-color:rgba(255, 255, 255, 1);
  3502. box-sizing:border-box;
  3503. border-width:1px;
  3504. border-style:solid;
  3505. border-color:rgba(242, 242, 242, 1);
  3506. border-radius:33px;
  3507. -moz-box-shadow:none;
  3508. -webkit-box-shadow:none;
  3509. box-shadow:none;
  3510. }
  3511. #u220690 {
  3512. border-width:0px;
  3513. position:absolute;
  3514. left:1242px;
  3515. top:71px;
  3516. width:88px;
  3517. height:32px;
  3518. display:flex;
  3519. }
  3520. #u220690 .text {
  3521. position:absolute;
  3522. align-self:center;
  3523. padding:2px 2px 2px 2px;
  3524. box-sizing:border-box;
  3525. width:100%;
  3526. }
  3527. #u220690_text {
  3528. border-width:0px;
  3529. word-wrap:break-word;
  3530. text-transform:none;
  3531. visibility:hidden;
  3532. }
  3533. #u220691 {
  3534. border-width:0px;
  3535. position:absolute;
  3536. left:0px;
  3537. top:0px;
  3538. width:0px;
  3539. height:0px;
  3540. }
  3541. #u220692_img {
  3542. border-width:0px;
  3543. position:absolute;
  3544. left:0px;
  3545. top:0px;
  3546. width:18px;
  3547. height:18px;
  3548. }
  3549. #u220692 {
  3550. border-width:0px;
  3551. position:absolute;
  3552. left:1305px;
  3553. top:78px;
  3554. width:18px;
  3555. height:18px;
  3556. display:flex;
  3557. }
  3558. #u220692 .text {
  3559. position:absolute;
  3560. align-self:center;
  3561. padding:2px 2px 2px 2px;
  3562. box-sizing:border-box;
  3563. width:100%;
  3564. }
  3565. #u220692_text {
  3566. border-width:0px;
  3567. word-wrap:break-word;
  3568. text-transform:none;
  3569. visibility:hidden;
  3570. }
  3571. #u220693_img {
  3572. border-width:0px;
  3573. position:absolute;
  3574. left:0px;
  3575. top:0px;
  3576. width:6px;
  3577. height:6px;
  3578. }
  3579. #u220693 {
  3580. border-width:0px;
  3581. position:absolute;
  3582. left:1311px;
  3583. top:84px;
  3584. width:6px;
  3585. height:6px;
  3586. display:flex;
  3587. }
  3588. #u220693 .text {
  3589. position:absolute;
  3590. align-self:center;
  3591. padding:2px 2px 2px 2px;
  3592. box-sizing:border-box;
  3593. width:100%;
  3594. }
  3595. #u220693_text {
  3596. border-width:0px;
  3597. word-wrap:break-word;
  3598. text-transform:none;
  3599. visibility:hidden;
  3600. }
  3601. #u220694 {
  3602. border-width:0px;
  3603. position:absolute;
  3604. left:0px;
  3605. top:0px;
  3606. width:0px;
  3607. height:0px;
  3608. }
  3609. #u220695_img {
  3610. border-width:0px;
  3611. position:absolute;
  3612. left:0px;
  3613. top:0px;
  3614. width:5px;
  3615. height:5px;
  3616. }
  3617. #u220695 {
  3618. border-width:0px;
  3619. position:absolute;
  3620. left:1256px;
  3621. top:85px;
  3622. width:5px;
  3623. height:5px;
  3624. display:flex;
  3625. }
  3626. #u220695 .text {
  3627. position:absolute;
  3628. align-self:center;
  3629. padding:2px 2px 2px 2px;
  3630. box-sizing:border-box;
  3631. width:100%;
  3632. }
  3633. #u220695_text {
  3634. border-width:0px;
  3635. word-wrap:break-word;
  3636. text-transform:none;
  3637. visibility:hidden;
  3638. }
  3639. #u220696_img {
  3640. border-width:0px;
  3641. position:absolute;
  3642. left:0px;
  3643. top:0px;
  3644. width:5px;
  3645. height:5px;
  3646. }
  3647. #u220696 {
  3648. border-width:0px;
  3649. position:absolute;
  3650. left:1272px;
  3651. top:85px;
  3652. width:5px;
  3653. height:5px;
  3654. display:flex;
  3655. }
  3656. #u220696 .text {
  3657. position:absolute;
  3658. align-self:center;
  3659. padding:2px 2px 2px 2px;
  3660. box-sizing:border-box;
  3661. width:100%;
  3662. }
  3663. #u220696_text {
  3664. border-width:0px;
  3665. word-wrap:break-word;
  3666. text-transform:none;
  3667. visibility:hidden;
  3668. }
  3669. #u220697_img {
  3670. border-width:0px;
  3671. position:absolute;
  3672. left:0px;
  3673. top:0px;
  3674. width:7px;
  3675. height:7px;
  3676. }
  3677. #u220697 {
  3678. border-width:0px;
  3679. position:absolute;
  3680. left:1263px;
  3681. top:84px;
  3682. width:7px;
  3683. height:7px;
  3684. display:flex;
  3685. }
  3686. #u220697 .text {
  3687. position:absolute;
  3688. align-self:center;
  3689. padding:2px 2px 2px 2px;
  3690. box-sizing:border-box;
  3691. width:100%;
  3692. }
  3693. #u220697_text {
  3694. border-width:0px;
  3695. word-wrap:break-word;
  3696. text-transform:none;
  3697. visibility:hidden;
  3698. }
  3699. #u220698_img {
  3700. border-width:0px;
  3701. position:absolute;
  3702. left:0px;
  3703. top:0px;
  3704. width:19px;
  3705. height:2px;
  3706. }
  3707. #u220698 {
  3708. border-width:0px;
  3709. position:absolute;
  3710. left:1280px;
  3711. top:87px;
  3712. width:18px;
  3713. height:1px;
  3714. display:flex;
  3715. -webkit-transform:rotate(90deg);
  3716. -moz-transform:rotate(90deg);
  3717. -ms-transform:rotate(90deg);
  3718. transform:rotate(90deg);
  3719. }
  3720. #u220698 .text {
  3721. position:absolute;
  3722. align-self:center;
  3723. padding:2px 2px 2px 2px;
  3724. box-sizing:border-box;
  3725. width:100%;
  3726. }
  3727. #u220698_text {
  3728. border-width:0px;
  3729. word-wrap:break-word;
  3730. text-transform:none;
  3731. visibility:hidden;
  3732. }
  3733. #u220699_img {
  3734. border-width:0px;
  3735. position:absolute;
  3736. left:0px;
  3737. top:0px;
  3738. width:375px;
  3739. height:44px;
  3740. }
  3741. #u220699 {
  3742. border-width:0px;
  3743. position:absolute;
  3744. left:962px;
  3745. top:24px;
  3746. width:375px;
  3747. height:44px;
  3748. display:flex;
  3749. }
  3750. #u220699 .text {
  3751. position:absolute;
  3752. align-self:center;
  3753. padding:2px 2px 2px 2px;
  3754. box-sizing:border-box;
  3755. width:100%;
  3756. }
  3757. #u220699_text {
  3758. border-width:0px;
  3759. word-wrap:break-word;
  3760. text-transform:none;
  3761. visibility:hidden;
  3762. }
  3763. #u220700_div {
  3764. border-width:0px;
  3765. position:absolute;
  3766. left:0px;
  3767. top:0px;
  3768. width:375px;
  3769. height:50px;
  3770. background:inherit;
  3771. background-color:rgba(255, 255, 255, 1);
  3772. box-sizing:border-box;
  3773. border-width:1px;
  3774. border-style:solid;
  3775. border-color:rgba(242, 242, 242, 1);
  3776. border-radius:26px;
  3777. border-top-left-radius:0px;
  3778. border-top-right-radius:0px;
  3779. -moz-box-shadow:none;
  3780. -webkit-box-shadow:none;
  3781. box-shadow:none;
  3782. }
  3783. #u220700 {
  3784. border-width:0px;
  3785. position:absolute;
  3786. left:962px;
  3787. top:788px;
  3788. width:375px;
  3789. height:50px;
  3790. display:flex;
  3791. }
  3792. #u220700 .text {
  3793. position:absolute;
  3794. align-self:center;
  3795. padding:2px 2px 2px 2px;
  3796. box-sizing:border-box;
  3797. width:100%;
  3798. }
  3799. #u220700_text {
  3800. border-width:0px;
  3801. word-wrap:break-word;
  3802. text-transform:none;
  3803. visibility:hidden;
  3804. }
  3805. #u220701 {
  3806. border-width:0px;
  3807. position:absolute;
  3808. left:0px;
  3809. top:0px;
  3810. width:0px;
  3811. height:0px;
  3812. }
  3813. #u220702_img {
  3814. border-width:0px;
  3815. position:absolute;
  3816. left:0px;
  3817. top:0px;
  3818. width:24px;
  3819. height:24px;
  3820. }
  3821. #u220702 {
  3822. border-width:0px;
  3823. position:absolute;
  3824. left:1002px;
  3825. top:792px;
  3826. width:24px;
  3827. height:24px;
  3828. display:flex;
  3829. font-size:8px;
  3830. }
  3831. #u220702 .text {
  3832. position:absolute;
  3833. align-self:center;
  3834. padding:2px 2px 2px 2px;
  3835. box-sizing:border-box;
  3836. width:100%;
  3837. }
  3838. #u220702_text {
  3839. border-width:0px;
  3840. word-wrap:break-word;
  3841. text-transform:none;
  3842. }
  3843. #u220703_div {
  3844. border-width:0px;
  3845. position:absolute;
  3846. left:0px;
  3847. top:0px;
  3848. width:25px;
  3849. height:17px;
  3850. background:inherit;
  3851. background-color:rgba(255, 255, 255, 0);
  3852. border:none;
  3853. border-radius:0px;
  3854. -moz-box-shadow:none;
  3855. -webkit-box-shadow:none;
  3856. box-shadow:none;
  3857. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3858. font-weight:400;
  3859. font-style:normal;
  3860. font-size:12px;
  3861. }
  3862. #u220703 {
  3863. border-width:0px;
  3864. position:absolute;
  3865. left:1002px;
  3866. top:817px;
  3867. width:25px;
  3868. height:17px;
  3869. display:flex;
  3870. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3871. font-weight:400;
  3872. font-style:normal;
  3873. font-size:12px;
  3874. }
  3875. #u220703 .text {
  3876. position:absolute;
  3877. align-self:flex-start;
  3878. padding:0px 0px 0px 0px;
  3879. box-sizing:border-box;
  3880. width:100%;
  3881. }
  3882. #u220703_text {
  3883. border-width:0px;
  3884. white-space:nowrap;
  3885. text-transform:none;
  3886. }
  3887. #u220704 {
  3888. border-width:0px;
  3889. position:absolute;
  3890. left:0px;
  3891. top:0px;
  3892. width:0px;
  3893. height:0px;
  3894. }
  3895. #u220705_img {
  3896. border-width:0px;
  3897. position:absolute;
  3898. left:0px;
  3899. top:0px;
  3900. width:24px;
  3901. height:24px;
  3902. }
  3903. #u220705 {
  3904. border-width:0px;
  3905. position:absolute;
  3906. left:1272px;
  3907. top:794px;
  3908. width:24px;
  3909. height:24px;
  3910. display:flex;
  3911. font-size:8px;
  3912. }
  3913. #u220705 .text {
  3914. position:absolute;
  3915. align-self:center;
  3916. padding:2px 2px 2px 2px;
  3917. box-sizing:border-box;
  3918. width:100%;
  3919. }
  3920. #u220705_text {
  3921. border-width:0px;
  3922. word-wrap:break-word;
  3923. text-transform:none;
  3924. }
  3925. #u220706_div {
  3926. border-width:0px;
  3927. position:absolute;
  3928. left:0px;
  3929. top:0px;
  3930. width:25px;
  3931. height:17px;
  3932. background:inherit;
  3933. background-color:rgba(255, 255, 255, 0);
  3934. border:none;
  3935. border-radius:0px;
  3936. -moz-box-shadow:none;
  3937. -webkit-box-shadow:none;
  3938. box-shadow:none;
  3939. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3940. font-weight:400;
  3941. font-style:normal;
  3942. font-size:12px;
  3943. }
  3944. #u220706 {
  3945. border-width:0px;
  3946. position:absolute;
  3947. left:1272px;
  3948. top:819px;
  3949. width:25px;
  3950. height:17px;
  3951. display:flex;
  3952. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3953. font-weight:400;
  3954. font-style:normal;
  3955. font-size:12px;
  3956. }
  3957. #u220706 .text {
  3958. position:absolute;
  3959. align-self:flex-start;
  3960. padding:0px 0px 0px 0px;
  3961. box-sizing:border-box;
  3962. width:100%;
  3963. }
  3964. #u220706_text {
  3965. border-width:0px;
  3966. white-space:nowrap;
  3967. text-transform:none;
  3968. }
  3969. #u220707_div {
  3970. border-width:0px;
  3971. position:absolute;
  3972. left:0px;
  3973. top:0px;
  3974. width:375px;
  3975. height:681px;
  3976. background:inherit;
  3977. background-color:rgba(242, 242, 242, 0.462745098039216);
  3978. border:none;
  3979. border-radius:0px;
  3980. -moz-box-shadow:none;
  3981. -webkit-box-shadow:none;
  3982. box-shadow:none;
  3983. }
  3984. #u220707 {
  3985. border-width:0px;
  3986. position:absolute;
  3987. left:962px;
  3988. top:107px;
  3989. width:375px;
  3990. height:681px;
  3991. display:flex;
  3992. }
  3993. #u220707 .text {
  3994. position:absolute;
  3995. align-self:center;
  3996. padding:2px 2px 2px 2px;
  3997. box-sizing:border-box;
  3998. width:100%;
  3999. }
  4000. #u220707_text {
  4001. border-width:0px;
  4002. word-wrap:break-word;
  4003. text-transform:none;
  4004. visibility:hidden;
  4005. }
  4006. #u220708 {
  4007. border-width:0px;
  4008. position:absolute;
  4009. left:0px;
  4010. top:0px;
  4011. width:0px;
  4012. height:0px;
  4013. }
  4014. #u220709_img {
  4015. border-width:0px;
  4016. position:absolute;
  4017. left:0px;
  4018. top:0px;
  4019. width:24px;
  4020. height:24px;
  4021. }
  4022. #u220709 {
  4023. border-width:0px;
  4024. position:absolute;
  4025. left:1184px;
  4026. top:792px;
  4027. width:24px;
  4028. height:24px;
  4029. display:flex;
  4030. font-size:8px;
  4031. }
  4032. #u220709 .text {
  4033. position:absolute;
  4034. align-self:center;
  4035. padding:2px 2px 2px 2px;
  4036. box-sizing:border-box;
  4037. width:100%;
  4038. }
  4039. #u220709_text {
  4040. border-width:0px;
  4041. word-wrap:break-word;
  4042. text-transform:none;
  4043. }
  4044. #u220710_div {
  4045. border-width:0px;
  4046. position:absolute;
  4047. left:0px;
  4048. top:0px;
  4049. width:37px;
  4050. height:17px;
  4051. background:inherit;
  4052. background-color:rgba(255, 255, 255, 0);
  4053. border:none;
  4054. border-radius:0px;
  4055. -moz-box-shadow:none;
  4056. -webkit-box-shadow:none;
  4057. box-shadow:none;
  4058. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4059. font-weight:400;
  4060. font-style:normal;
  4061. font-size:12px;
  4062. }
  4063. #u220710 {
  4064. border-width:0px;
  4065. position:absolute;
  4066. left:1178px;
  4067. top:817px;
  4068. width:37px;
  4069. height:17px;
  4070. display:flex;
  4071. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4072. font-weight:400;
  4073. font-style:normal;
  4074. font-size:12px;
  4075. }
  4076. #u220710 .text {
  4077. position:absolute;
  4078. align-self:flex-start;
  4079. padding:0px 0px 0px 0px;
  4080. box-sizing:border-box;
  4081. width:100%;
  4082. }
  4083. #u220710_text {
  4084. border-width:0px;
  4085. white-space:nowrap;
  4086. text-transform:none;
  4087. }
  4088. #u220711 {
  4089. border-width:0px;
  4090. position:absolute;
  4091. left:0px;
  4092. top:0px;
  4093. width:0px;
  4094. height:0px;
  4095. }
  4096. #u220712_img {
  4097. border-width:0px;
  4098. position:absolute;
  4099. left:0px;
  4100. top:0px;
  4101. width:24px;
  4102. height:24px;
  4103. }
  4104. #u220712 {
  4105. border-width:0px;
  4106. position:absolute;
  4107. left:1090px;
  4108. top:792px;
  4109. width:24px;
  4110. height:24px;
  4111. display:flex;
  4112. font-size:8px;
  4113. }
  4114. #u220712 .text {
  4115. position:absolute;
  4116. align-self:center;
  4117. padding:2px 2px 2px 2px;
  4118. box-sizing:border-box;
  4119. width:100%;
  4120. }
  4121. #u220712_text {
  4122. border-width:0px;
  4123. word-wrap:break-word;
  4124. text-transform:none;
  4125. }
  4126. #u220713_div {
  4127. border-width:0px;
  4128. position:absolute;
  4129. left:0px;
  4130. top:0px;
  4131. width:37px;
  4132. height:17px;
  4133. background:inherit;
  4134. background-color:rgba(255, 255, 255, 0);
  4135. border:none;
  4136. border-radius:0px;
  4137. -moz-box-shadow:none;
  4138. -webkit-box-shadow:none;
  4139. box-shadow:none;
  4140. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4141. font-weight:400;
  4142. font-style:normal;
  4143. font-size:12px;
  4144. }
  4145. #u220713 {
  4146. border-width:0px;
  4147. position:absolute;
  4148. left:1084px;
  4149. top:817px;
  4150. width:37px;
  4151. height:17px;
  4152. display:flex;
  4153. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4154. font-weight:400;
  4155. font-style:normal;
  4156. font-size:12px;
  4157. }
  4158. #u220713 .text {
  4159. position:absolute;
  4160. align-self:flex-start;
  4161. padding:0px 0px 0px 0px;
  4162. box-sizing:border-box;
  4163. width:100%;
  4164. }
  4165. #u220713_text {
  4166. border-width:0px;
  4167. white-space:nowrap;
  4168. text-transform:none;
  4169. }
  4170. #u220714_div {
  4171. border-width:0px;
  4172. position:absolute;
  4173. left:0px;
  4174. top:0px;
  4175. width:375px;
  4176. height:732px;
  4177. background:inherit;
  4178. background-color:rgba(242, 242, 242, 0.996078431372549);
  4179. border:none;
  4180. border-top:0px;
  4181. border-radius:28px;
  4182. border-top-left-radius:0px;
  4183. border-top-right-radius:0px;
  4184. -moz-box-shadow:none;
  4185. -webkit-box-shadow:none;
  4186. box-shadow:none;
  4187. }
  4188. #u220714 {
  4189. border-width:0px;
  4190. position:absolute;
  4191. left:962px;
  4192. top:107px;
  4193. width:375px;
  4194. height:732px;
  4195. display:flex;
  4196. }
  4197. #u220714 .text {
  4198. position:absolute;
  4199. align-self:center;
  4200. padding:2px 2px 2px 2px;
  4201. box-sizing:border-box;
  4202. width:100%;
  4203. }
  4204. #u220714_text {
  4205. border-width:0px;
  4206. word-wrap:break-word;
  4207. text-transform:none;
  4208. visibility:hidden;
  4209. }
  4210. #u220715_div {
  4211. border-width:0px;
  4212. position:absolute;
  4213. left:0px;
  4214. top:0px;
  4215. width:375px;
  4216. height:125px;
  4217. background:inherit;
  4218. background-color:rgba(255, 255, 255, 1);
  4219. border:none;
  4220. border-left:0px;
  4221. border-top:0px;
  4222. border-right:0px;
  4223. border-radius:0px;
  4224. border-bottom-right-radius:0px;
  4225. border-bottom-left-radius:0px;
  4226. -moz-box-shadow:none;
  4227. -webkit-box-shadow:none;
  4228. box-shadow:none;
  4229. }
  4230. #u220715 {
  4231. border-width:0px;
  4232. position:absolute;
  4233. left:962px;
  4234. top:108px;
  4235. width:375px;
  4236. height:125px;
  4237. display:flex;
  4238. }
  4239. #u220715 .text {
  4240. position:absolute;
  4241. align-self:center;
  4242. padding:2px 2px 2px 2px;
  4243. box-sizing:border-box;
  4244. width:100%;
  4245. }
  4246. #u220715_text {
  4247. border-width:0px;
  4248. word-wrap:break-word;
  4249. text-transform:none;
  4250. visibility:hidden;
  4251. }
  4252. #u220716_div {
  4253. border-width:0px;
  4254. position:absolute;
  4255. left:0px;
  4256. top:0px;
  4257. width:43px;
  4258. height:20px;
  4259. background:inherit;
  4260. background-color:rgba(255, 255, 255, 0);
  4261. border:none;
  4262. border-radius:0px;
  4263. -moz-box-shadow:none;
  4264. -webkit-box-shadow:none;
  4265. box-shadow:none;
  4266. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4267. font-weight:400;
  4268. font-style:normal;
  4269. color:#0089FE;
  4270. }
  4271. #u220716 {
  4272. border-width:0px;
  4273. position:absolute;
  4274. left:1275px;
  4275. top:124px;
  4276. width:43px;
  4277. height:20px;
  4278. display:flex;
  4279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4280. font-weight:400;
  4281. font-style:normal;
  4282. color:#0089FE;
  4283. }
  4284. #u220716 .text {
  4285. position:absolute;
  4286. align-self:flex-start;
  4287. padding:0px 0px 0px 0px;
  4288. box-sizing:border-box;
  4289. width:100%;
  4290. }
  4291. #u220716_text {
  4292. border-width:0px;
  4293. white-space:nowrap;
  4294. text-transform:none;
  4295. }
  4296. #u220717_div {
  4297. border-width:0px;
  4298. position:absolute;
  4299. left:0px;
  4300. top:0px;
  4301. width:124px;
  4302. height:30px;
  4303. background:inherit;
  4304. background-color:rgba(255, 255, 255, 0);
  4305. border:none;
  4306. border-left:0px;
  4307. border-top:0px;
  4308. border-right:0px;
  4309. border-radius:0px;
  4310. border-bottom-right-radius:0px;
  4311. border-bottom-left-radius:0px;
  4312. -moz-box-shadow:none;
  4313. -webkit-box-shadow:none;
  4314. box-shadow:none;
  4315. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4316. font-weight:500;
  4317. font-style:normal;
  4318. font-size:14px;
  4319. line-height:30px;
  4320. }
  4321. #u220717 {
  4322. border-width:0px;
  4323. position:absolute;
  4324. left:975px;
  4325. top:118px;
  4326. width:124px;
  4327. height:30px;
  4328. display:flex;
  4329. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4330. font-weight:500;
  4331. font-style:normal;
  4332. font-size:14px;
  4333. line-height:30px;
  4334. }
  4335. #u220717 .text {
  4336. position:absolute;
  4337. align-self:flex-start;
  4338. padding:0px 0px 0px 0px;
  4339. box-sizing:border-box;
  4340. width:100%;
  4341. }
  4342. #u220717_text {
  4343. border-width:0px;
  4344. white-space:nowrap;
  4345. text-transform:none;
  4346. }
  4347. #u220718_div {
  4348. border-width:0px;
  4349. position:absolute;
  4350. left:0px;
  4351. top:0px;
  4352. width:167px;
  4353. height:75px;
  4354. background:inherit;
  4355. background-color:rgba(255, 255, 255, 0);
  4356. border:none;
  4357. border-left:0px;
  4358. border-top:0px;
  4359. border-right:0px;
  4360. border-radius:0px;
  4361. border-bottom-right-radius:0px;
  4362. border-bottom-left-radius:0px;
  4363. -moz-box-shadow:none;
  4364. -webkit-box-shadow:none;
  4365. box-shadow:none;
  4366. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4367. font-weight:400;
  4368. font-style:normal;
  4369. font-size:12px;
  4370. line-height:25px;
  4371. }
  4372. #u220718 {
  4373. border-width:0px;
  4374. position:absolute;
  4375. left:975px;
  4376. top:148px;
  4377. width:167px;
  4378. height:75px;
  4379. display:flex;
  4380. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4381. font-weight:400;
  4382. font-style:normal;
  4383. font-size:12px;
  4384. line-height:25px;
  4385. }
  4386. #u220718 .text {
  4387. position:absolute;
  4388. align-self:flex-start;
  4389. padding:0px 0px 0px 0px;
  4390. box-sizing:border-box;
  4391. width:100%;
  4392. }
  4393. #u220718_text {
  4394. border-width:0px;
  4395. white-space:nowrap;
  4396. text-transform:none;
  4397. }
  4398. #u220719_div {
  4399. border-width:0px;
  4400. position:absolute;
  4401. left:0px;
  4402. top:0px;
  4403. width:375px;
  4404. height:41px;
  4405. background:inherit;
  4406. background-color:rgba(255, 255, 255, 1);
  4407. box-sizing:border-box;
  4408. border-width:1px;
  4409. border-style:solid;
  4410. border-color:rgba(215, 215, 215, 1);
  4411. border-left:0px;
  4412. border-top:0px;
  4413. border-right:0px;
  4414. border-radius:0px;
  4415. border-bottom-right-radius:0px;
  4416. border-bottom-left-radius:0px;
  4417. -moz-box-shadow:none;
  4418. -webkit-box-shadow:none;
  4419. box-shadow:none;
  4420. }
  4421. #u220719 {
  4422. border-width:0px;
  4423. position:absolute;
  4424. left:962px;
  4425. top:67px;
  4426. width:375px;
  4427. height:41px;
  4428. display:flex;
  4429. }
  4430. #u220719 .text {
  4431. position:absolute;
  4432. align-self:center;
  4433. padding:2px 2px 2px 2px;
  4434. box-sizing:border-box;
  4435. width:100%;
  4436. }
  4437. #u220719_text {
  4438. border-width:0px;
  4439. word-wrap:break-word;
  4440. text-transform:none;
  4441. visibility:hidden;
  4442. }
  4443. #u220720 {
  4444. border-width:0px;
  4445. position:absolute;
  4446. left:0px;
  4447. top:0px;
  4448. width:0px;
  4449. height:0px;
  4450. }
  4451. #u220721_div {
  4452. border-width:0px;
  4453. position:absolute;
  4454. left:0px;
  4455. top:0px;
  4456. width:88px;
  4457. height:32px;
  4458. background:inherit;
  4459. background-color:rgba(255, 255, 255, 1);
  4460. box-sizing:border-box;
  4461. border-width:1px;
  4462. border-style:solid;
  4463. border-color:rgba(242, 242, 242, 1);
  4464. border-radius:33px;
  4465. -moz-box-shadow:none;
  4466. -webkit-box-shadow:none;
  4467. box-shadow:none;
  4468. }
  4469. #u220721 {
  4470. border-width:0px;
  4471. position:absolute;
  4472. left:1242px;
  4473. top:71px;
  4474. width:88px;
  4475. height:32px;
  4476. display:flex;
  4477. }
  4478. #u220721 .text {
  4479. position:absolute;
  4480. align-self:center;
  4481. padding:2px 2px 2px 2px;
  4482. box-sizing:border-box;
  4483. width:100%;
  4484. }
  4485. #u220721_text {
  4486. border-width:0px;
  4487. word-wrap:break-word;
  4488. text-transform:none;
  4489. visibility:hidden;
  4490. }
  4491. #u220722 {
  4492. border-width:0px;
  4493. position:absolute;
  4494. left:0px;
  4495. top:0px;
  4496. width:0px;
  4497. height:0px;
  4498. }
  4499. #u220723_img {
  4500. border-width:0px;
  4501. position:absolute;
  4502. left:0px;
  4503. top:0px;
  4504. width:18px;
  4505. height:18px;
  4506. }
  4507. #u220723 {
  4508. border-width:0px;
  4509. position:absolute;
  4510. left:1305px;
  4511. top:78px;
  4512. width:18px;
  4513. height:18px;
  4514. display:flex;
  4515. }
  4516. #u220723 .text {
  4517. position:absolute;
  4518. align-self:center;
  4519. padding:2px 2px 2px 2px;
  4520. box-sizing:border-box;
  4521. width:100%;
  4522. }
  4523. #u220723_text {
  4524. border-width:0px;
  4525. word-wrap:break-word;
  4526. text-transform:none;
  4527. visibility:hidden;
  4528. }
  4529. #u220724_img {
  4530. border-width:0px;
  4531. position:absolute;
  4532. left:0px;
  4533. top:0px;
  4534. width:6px;
  4535. height:6px;
  4536. }
  4537. #u220724 {
  4538. border-width:0px;
  4539. position:absolute;
  4540. left:1311px;
  4541. top:84px;
  4542. width:6px;
  4543. height:6px;
  4544. display:flex;
  4545. }
  4546. #u220724 .text {
  4547. position:absolute;
  4548. align-self:center;
  4549. padding:2px 2px 2px 2px;
  4550. box-sizing:border-box;
  4551. width:100%;
  4552. }
  4553. #u220724_text {
  4554. border-width:0px;
  4555. word-wrap:break-word;
  4556. text-transform:none;
  4557. visibility:hidden;
  4558. }
  4559. #u220725 {
  4560. border-width:0px;
  4561. position:absolute;
  4562. left:0px;
  4563. top:0px;
  4564. width:0px;
  4565. height:0px;
  4566. }
  4567. #u220726_img {
  4568. border-width:0px;
  4569. position:absolute;
  4570. left:0px;
  4571. top:0px;
  4572. width:5px;
  4573. height:5px;
  4574. }
  4575. #u220726 {
  4576. border-width:0px;
  4577. position:absolute;
  4578. left:1256px;
  4579. top:85px;
  4580. width:5px;
  4581. height:5px;
  4582. display:flex;
  4583. }
  4584. #u220726 .text {
  4585. position:absolute;
  4586. align-self:center;
  4587. padding:2px 2px 2px 2px;
  4588. box-sizing:border-box;
  4589. width:100%;
  4590. }
  4591. #u220726_text {
  4592. border-width:0px;
  4593. word-wrap:break-word;
  4594. text-transform:none;
  4595. visibility:hidden;
  4596. }
  4597. #u220727_img {
  4598. border-width:0px;
  4599. position:absolute;
  4600. left:0px;
  4601. top:0px;
  4602. width:5px;
  4603. height:5px;
  4604. }
  4605. #u220727 {
  4606. border-width:0px;
  4607. position:absolute;
  4608. left:1272px;
  4609. top:85px;
  4610. width:5px;
  4611. height:5px;
  4612. display:flex;
  4613. }
  4614. #u220727 .text {
  4615. position:absolute;
  4616. align-self:center;
  4617. padding:2px 2px 2px 2px;
  4618. box-sizing:border-box;
  4619. width:100%;
  4620. }
  4621. #u220727_text {
  4622. border-width:0px;
  4623. word-wrap:break-word;
  4624. text-transform:none;
  4625. visibility:hidden;
  4626. }
  4627. #u220728_img {
  4628. border-width:0px;
  4629. position:absolute;
  4630. left:0px;
  4631. top:0px;
  4632. width:7px;
  4633. height:7px;
  4634. }
  4635. #u220728 {
  4636. border-width:0px;
  4637. position:absolute;
  4638. left:1263px;
  4639. top:84px;
  4640. width:7px;
  4641. height:7px;
  4642. display:flex;
  4643. }
  4644. #u220728 .text {
  4645. position:absolute;
  4646. align-self:center;
  4647. padding:2px 2px 2px 2px;
  4648. box-sizing:border-box;
  4649. width:100%;
  4650. }
  4651. #u220728_text {
  4652. border-width:0px;
  4653. word-wrap:break-word;
  4654. text-transform:none;
  4655. visibility:hidden;
  4656. }
  4657. #u220729_img {
  4658. border-width:0px;
  4659. position:absolute;
  4660. left:0px;
  4661. top:0px;
  4662. width:19px;
  4663. height:2px;
  4664. }
  4665. #u220729 {
  4666. border-width:0px;
  4667. position:absolute;
  4668. left:1280px;
  4669. top:87px;
  4670. width:18px;
  4671. height:1px;
  4672. display:flex;
  4673. -webkit-transform:rotate(90deg);
  4674. -moz-transform:rotate(90deg);
  4675. -ms-transform:rotate(90deg);
  4676. transform:rotate(90deg);
  4677. }
  4678. #u220729 .text {
  4679. position:absolute;
  4680. align-self:center;
  4681. padding:2px 2px 2px 2px;
  4682. box-sizing:border-box;
  4683. width:100%;
  4684. }
  4685. #u220729_text {
  4686. border-width:0px;
  4687. word-wrap:break-word;
  4688. text-transform:none;
  4689. visibility:hidden;
  4690. }
  4691. #u220730_div {
  4692. border-width:0px;
  4693. position:absolute;
  4694. left:0px;
  4695. top:0px;
  4696. width:12px;
  4697. height:12px;
  4698. background:inherit;
  4699. background-color:rgba(255, 255, 255, 0);
  4700. box-sizing:border-box;
  4701. border-width:2px;
  4702. border-style:solid;
  4703. border-color:rgba(51, 51, 51, 1);
  4704. border-right:0px;
  4705. border-bottom:0px;
  4706. border-radius:0px;
  4707. border-top-right-radius:0px;
  4708. border-bottom-left-radius:0px;
  4709. -moz-box-shadow:none;
  4710. -webkit-box-shadow:none;
  4711. box-shadow:none;
  4712. }
  4713. #u220730 {
  4714. border-width:0px;
  4715. position:absolute;
  4716. left:977px;
  4717. top:81px;
  4718. width:12px;
  4719. height:12px;
  4720. display:flex;
  4721. -webkit-transform:rotate(315deg);
  4722. -moz-transform:rotate(315deg);
  4723. -ms-transform:rotate(315deg);
  4724. transform:rotate(315deg);
  4725. }
  4726. #u220730 .text {
  4727. position:absolute;
  4728. align-self:center;
  4729. padding:2px 2px 2px 2px;
  4730. box-sizing:border-box;
  4731. width:100%;
  4732. }
  4733. #u220730_text {
  4734. border-width:0px;
  4735. word-wrap:break-word;
  4736. text-transform:none;
  4737. visibility:hidden;
  4738. }
  4739. #u220731_div {
  4740. border-width:0px;
  4741. position:absolute;
  4742. left:0px;
  4743. top:0px;
  4744. width:73px;
  4745. height:25px;
  4746. background:inherit;
  4747. background-color:rgba(255, 255, 255, 0);
  4748. border:none;
  4749. border-radius:0px;
  4750. -moz-box-shadow:none;
  4751. -webkit-box-shadow:none;
  4752. box-shadow:none;
  4753. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4754. font-weight:400;
  4755. font-style:normal;
  4756. font-size:18px;
  4757. }
  4758. #u220731 {
  4759. border-width:0px;
  4760. position:absolute;
  4761. left:997px;
  4762. top:75px;
  4763. width:73px;
  4764. height:25px;
  4765. display:flex;
  4766. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4767. font-weight:400;
  4768. font-style:normal;
  4769. font-size:18px;
  4770. }
  4771. #u220731 .text {
  4772. position:absolute;
  4773. align-self:flex-start;
  4774. padding:0px 0px 0px 0px;
  4775. box-sizing:border-box;
  4776. width:100%;
  4777. }
  4778. #u220731_text {
  4779. border-width:0px;
  4780. white-space:nowrap;
  4781. text-transform:none;
  4782. }
  4783. #u220733_img {
  4784. border-width:0px;
  4785. position:absolute;
  4786. left:0px;
  4787. top:0px;
  4788. width:433px;
  4789. height:865px;
  4790. }
  4791. #u220733 {
  4792. border-width:0px;
  4793. position:absolute;
  4794. left:2322px;
  4795. top:0px;
  4796. width:433px;
  4797. height:865px;
  4798. display:flex;
  4799. }
  4800. #u220733 .text {
  4801. position:absolute;
  4802. align-self:center;
  4803. padding:2px 2px 2px 2px;
  4804. box-sizing:border-box;
  4805. width:100%;
  4806. }
  4807. #u220733_text {
  4808. border-width:0px;
  4809. word-wrap:break-word;
  4810. text-transform:none;
  4811. visibility:hidden;
  4812. }
  4813. #u220734_div {
  4814. border-width:0px;
  4815. position:absolute;
  4816. left:0px;
  4817. top:0px;
  4818. width:375px;
  4819. height:40px;
  4820. background:inherit;
  4821. background-color:rgba(255, 255, 255, 1);
  4822. box-sizing:border-box;
  4823. border-width:1px;
  4824. border-style:solid;
  4825. border-color:rgba(215, 215, 215, 1);
  4826. border-left:0px;
  4827. border-top:0px;
  4828. border-right:0px;
  4829. border-radius:0px;
  4830. border-bottom-right-radius:0px;
  4831. border-bottom-left-radius:0px;
  4832. -moz-box-shadow:none;
  4833. -webkit-box-shadow:none;
  4834. box-shadow:none;
  4835. }
  4836. #u220734 {
  4837. border-width:0px;
  4838. position:absolute;
  4839. left:2351px;
  4840. top:67px;
  4841. width:375px;
  4842. height:40px;
  4843. display:flex;
  4844. }
  4845. #u220734 .text {
  4846. position:absolute;
  4847. align-self:center;
  4848. padding:2px 2px 2px 2px;
  4849. box-sizing:border-box;
  4850. width:100%;
  4851. }
  4852. #u220734_text {
  4853. border-width:0px;
  4854. word-wrap:break-word;
  4855. text-transform:none;
  4856. visibility:hidden;
  4857. }
  4858. #u220735 {
  4859. border-width:0px;
  4860. position:absolute;
  4861. left:0px;
  4862. top:0px;
  4863. width:0px;
  4864. height:0px;
  4865. }
  4866. #u220736_div {
  4867. border-width:0px;
  4868. position:absolute;
  4869. left:0px;
  4870. top:0px;
  4871. width:88px;
  4872. height:32px;
  4873. background:inherit;
  4874. background-color:rgba(255, 255, 255, 1);
  4875. box-sizing:border-box;
  4876. border-width:1px;
  4877. border-style:solid;
  4878. border-color:rgba(242, 242, 242, 1);
  4879. border-radius:33px;
  4880. -moz-box-shadow:none;
  4881. -webkit-box-shadow:none;
  4882. box-shadow:none;
  4883. }
  4884. #u220736 {
  4885. border-width:0px;
  4886. position:absolute;
  4887. left:2631px;
  4888. top:71px;
  4889. width:88px;
  4890. height:32px;
  4891. display:flex;
  4892. }
  4893. #u220736 .text {
  4894. position:absolute;
  4895. align-self:center;
  4896. padding:2px 2px 2px 2px;
  4897. box-sizing:border-box;
  4898. width:100%;
  4899. }
  4900. #u220736_text {
  4901. border-width:0px;
  4902. word-wrap:break-word;
  4903. text-transform:none;
  4904. visibility:hidden;
  4905. }
  4906. #u220737 {
  4907. border-width:0px;
  4908. position:absolute;
  4909. left:0px;
  4910. top:0px;
  4911. width:0px;
  4912. height:0px;
  4913. }
  4914. #u220738_img {
  4915. border-width:0px;
  4916. position:absolute;
  4917. left:0px;
  4918. top:0px;
  4919. width:18px;
  4920. height:18px;
  4921. }
  4922. #u220738 {
  4923. border-width:0px;
  4924. position:absolute;
  4925. left:2694px;
  4926. top:78px;
  4927. width:18px;
  4928. height:18px;
  4929. display:flex;
  4930. }
  4931. #u220738 .text {
  4932. position:absolute;
  4933. align-self:center;
  4934. padding:2px 2px 2px 2px;
  4935. box-sizing:border-box;
  4936. width:100%;
  4937. }
  4938. #u220738_text {
  4939. border-width:0px;
  4940. word-wrap:break-word;
  4941. text-transform:none;
  4942. visibility:hidden;
  4943. }
  4944. #u220739_img {
  4945. border-width:0px;
  4946. position:absolute;
  4947. left:0px;
  4948. top:0px;
  4949. width:6px;
  4950. height:6px;
  4951. }
  4952. #u220739 {
  4953. border-width:0px;
  4954. position:absolute;
  4955. left:2700px;
  4956. top:84px;
  4957. width:6px;
  4958. height:6px;
  4959. display:flex;
  4960. }
  4961. #u220739 .text {
  4962. position:absolute;
  4963. align-self:center;
  4964. padding:2px 2px 2px 2px;
  4965. box-sizing:border-box;
  4966. width:100%;
  4967. }
  4968. #u220739_text {
  4969. border-width:0px;
  4970. word-wrap:break-word;
  4971. text-transform:none;
  4972. visibility:hidden;
  4973. }
  4974. #u220740 {
  4975. border-width:0px;
  4976. position:absolute;
  4977. left:0px;
  4978. top:0px;
  4979. width:0px;
  4980. height:0px;
  4981. }
  4982. #u220741_img {
  4983. border-width:0px;
  4984. position:absolute;
  4985. left:0px;
  4986. top:0px;
  4987. width:5px;
  4988. height:5px;
  4989. }
  4990. #u220741 {
  4991. border-width:0px;
  4992. position:absolute;
  4993. left:2645px;
  4994. top:85px;
  4995. width:5px;
  4996. height:5px;
  4997. display:flex;
  4998. }
  4999. #u220741 .text {
  5000. position:absolute;
  5001. align-self:center;
  5002. padding:2px 2px 2px 2px;
  5003. box-sizing:border-box;
  5004. width:100%;
  5005. }
  5006. #u220741_text {
  5007. border-width:0px;
  5008. word-wrap:break-word;
  5009. text-transform:none;
  5010. visibility:hidden;
  5011. }
  5012. #u220742_img {
  5013. border-width:0px;
  5014. position:absolute;
  5015. left:0px;
  5016. top:0px;
  5017. width:5px;
  5018. height:5px;
  5019. }
  5020. #u220742 {
  5021. border-width:0px;
  5022. position:absolute;
  5023. left:2661px;
  5024. top:85px;
  5025. width:5px;
  5026. height:5px;
  5027. display:flex;
  5028. }
  5029. #u220742 .text {
  5030. position:absolute;
  5031. align-self:center;
  5032. padding:2px 2px 2px 2px;
  5033. box-sizing:border-box;
  5034. width:100%;
  5035. }
  5036. #u220742_text {
  5037. border-width:0px;
  5038. word-wrap:break-word;
  5039. text-transform:none;
  5040. visibility:hidden;
  5041. }
  5042. #u220743_img {
  5043. border-width:0px;
  5044. position:absolute;
  5045. left:0px;
  5046. top:0px;
  5047. width:7px;
  5048. height:7px;
  5049. }
  5050. #u220743 {
  5051. border-width:0px;
  5052. position:absolute;
  5053. left:2652px;
  5054. top:84px;
  5055. width:7px;
  5056. height:7px;
  5057. display:flex;
  5058. }
  5059. #u220743 .text {
  5060. position:absolute;
  5061. align-self:center;
  5062. padding:2px 2px 2px 2px;
  5063. box-sizing:border-box;
  5064. width:100%;
  5065. }
  5066. #u220743_text {
  5067. border-width:0px;
  5068. word-wrap:break-word;
  5069. text-transform:none;
  5070. visibility:hidden;
  5071. }
  5072. #u220744_img {
  5073. border-width:0px;
  5074. position:absolute;
  5075. left:0px;
  5076. top:0px;
  5077. width:19px;
  5078. height:2px;
  5079. }
  5080. #u220744 {
  5081. border-width:0px;
  5082. position:absolute;
  5083. left:2669px;
  5084. top:87px;
  5085. width:18px;
  5086. height:1px;
  5087. display:flex;
  5088. -webkit-transform:rotate(90deg);
  5089. -moz-transform:rotate(90deg);
  5090. -ms-transform:rotate(90deg);
  5091. transform:rotate(90deg);
  5092. }
  5093. #u220744 .text {
  5094. position:absolute;
  5095. align-self:center;
  5096. padding:2px 2px 2px 2px;
  5097. box-sizing:border-box;
  5098. width:100%;
  5099. }
  5100. #u220744_text {
  5101. border-width:0px;
  5102. word-wrap:break-word;
  5103. text-transform:none;
  5104. visibility:hidden;
  5105. }
  5106. #u220745_img {
  5107. border-width:0px;
  5108. position:absolute;
  5109. left:0px;
  5110. top:0px;
  5111. width:375px;
  5112. height:44px;
  5113. }
  5114. #u220745 {
  5115. border-width:0px;
  5116. position:absolute;
  5117. left:2351px;
  5118. top:24px;
  5119. width:375px;
  5120. height:44px;
  5121. display:flex;
  5122. }
  5123. #u220745 .text {
  5124. position:absolute;
  5125. align-self:center;
  5126. padding:2px 2px 2px 2px;
  5127. box-sizing:border-box;
  5128. width:100%;
  5129. }
  5130. #u220745_text {
  5131. border-width:0px;
  5132. word-wrap:break-word;
  5133. text-transform:none;
  5134. visibility:hidden;
  5135. }
  5136. #u220746_div {
  5137. border-width:0px;
  5138. position:absolute;
  5139. left:0px;
  5140. top:0px;
  5141. width:375px;
  5142. height:50px;
  5143. background:inherit;
  5144. background-color:rgba(255, 255, 255, 1);
  5145. box-sizing:border-box;
  5146. border-width:1px;
  5147. border-style:solid;
  5148. border-color:rgba(242, 242, 242, 1);
  5149. border-radius:26px;
  5150. border-top-left-radius:0px;
  5151. border-top-right-radius:0px;
  5152. -moz-box-shadow:none;
  5153. -webkit-box-shadow:none;
  5154. box-shadow:none;
  5155. }
  5156. #u220746 {
  5157. border-width:0px;
  5158. position:absolute;
  5159. left:2351px;
  5160. top:788px;
  5161. width:375px;
  5162. height:50px;
  5163. display:flex;
  5164. }
  5165. #u220746 .text {
  5166. position:absolute;
  5167. align-self:center;
  5168. padding:2px 2px 2px 2px;
  5169. box-sizing:border-box;
  5170. width:100%;
  5171. }
  5172. #u220746_text {
  5173. border-width:0px;
  5174. word-wrap:break-word;
  5175. text-transform:none;
  5176. visibility:hidden;
  5177. }
  5178. #u220747 {
  5179. border-width:0px;
  5180. position:absolute;
  5181. left:0px;
  5182. top:0px;
  5183. width:0px;
  5184. height:0px;
  5185. }
  5186. #u220748_img {
  5187. border-width:0px;
  5188. position:absolute;
  5189. left:0px;
  5190. top:0px;
  5191. width:24px;
  5192. height:24px;
  5193. }
  5194. #u220748 {
  5195. border-width:0px;
  5196. position:absolute;
  5197. left:2391px;
  5198. top:792px;
  5199. width:24px;
  5200. height:24px;
  5201. display:flex;
  5202. font-size:8px;
  5203. }
  5204. #u220748 .text {
  5205. position:absolute;
  5206. align-self:center;
  5207. padding:2px 2px 2px 2px;
  5208. box-sizing:border-box;
  5209. width:100%;
  5210. }
  5211. #u220748_text {
  5212. border-width:0px;
  5213. word-wrap:break-word;
  5214. text-transform:none;
  5215. }
  5216. #u220749_div {
  5217. border-width:0px;
  5218. position:absolute;
  5219. left:0px;
  5220. top:0px;
  5221. width:25px;
  5222. height:17px;
  5223. background:inherit;
  5224. background-color:rgba(255, 255, 255, 0);
  5225. border:none;
  5226. border-radius:0px;
  5227. -moz-box-shadow:none;
  5228. -webkit-box-shadow:none;
  5229. box-shadow:none;
  5230. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5231. font-weight:400;
  5232. font-style:normal;
  5233. font-size:12px;
  5234. }
  5235. #u220749 {
  5236. border-width:0px;
  5237. position:absolute;
  5238. left:2391px;
  5239. top:817px;
  5240. width:25px;
  5241. height:17px;
  5242. display:flex;
  5243. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5244. font-weight:400;
  5245. font-style:normal;
  5246. font-size:12px;
  5247. }
  5248. #u220749 .text {
  5249. position:absolute;
  5250. align-self:flex-start;
  5251. padding:0px 0px 0px 0px;
  5252. box-sizing:border-box;
  5253. width:100%;
  5254. }
  5255. #u220749_text {
  5256. border-width:0px;
  5257. white-space:nowrap;
  5258. text-transform:none;
  5259. }
  5260. #u220750 {
  5261. border-width:0px;
  5262. position:absolute;
  5263. left:0px;
  5264. top:0px;
  5265. width:0px;
  5266. height:0px;
  5267. }
  5268. #u220751_img {
  5269. border-width:0px;
  5270. position:absolute;
  5271. left:0px;
  5272. top:0px;
  5273. width:24px;
  5274. height:24px;
  5275. }
  5276. #u220751 {
  5277. border-width:0px;
  5278. position:absolute;
  5279. left:2661px;
  5280. top:794px;
  5281. width:24px;
  5282. height:24px;
  5283. display:flex;
  5284. font-size:8px;
  5285. }
  5286. #u220751 .text {
  5287. position:absolute;
  5288. align-self:center;
  5289. padding:2px 2px 2px 2px;
  5290. box-sizing:border-box;
  5291. width:100%;
  5292. }
  5293. #u220751_text {
  5294. border-width:0px;
  5295. word-wrap:break-word;
  5296. text-transform:none;
  5297. }
  5298. #u220752_div {
  5299. border-width:0px;
  5300. position:absolute;
  5301. left:0px;
  5302. top:0px;
  5303. width:25px;
  5304. height:17px;
  5305. background:inherit;
  5306. background-color:rgba(255, 255, 255, 0);
  5307. border:none;
  5308. border-radius:0px;
  5309. -moz-box-shadow:none;
  5310. -webkit-box-shadow:none;
  5311. box-shadow:none;
  5312. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5313. font-weight:400;
  5314. font-style:normal;
  5315. font-size:12px;
  5316. }
  5317. #u220752 {
  5318. border-width:0px;
  5319. position:absolute;
  5320. left:2661px;
  5321. top:819px;
  5322. width:25px;
  5323. height:17px;
  5324. display:flex;
  5325. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5326. font-weight:400;
  5327. font-style:normal;
  5328. font-size:12px;
  5329. }
  5330. #u220752 .text {
  5331. position:absolute;
  5332. align-self:flex-start;
  5333. padding:0px 0px 0px 0px;
  5334. box-sizing:border-box;
  5335. width:100%;
  5336. }
  5337. #u220752_text {
  5338. border-width:0px;
  5339. white-space:nowrap;
  5340. text-transform:none;
  5341. }
  5342. #u220753_div {
  5343. border-width:0px;
  5344. position:absolute;
  5345. left:0px;
  5346. top:0px;
  5347. width:375px;
  5348. height:681px;
  5349. background:inherit;
  5350. background-color:rgba(242, 242, 242, 0.462745098039216);
  5351. border:none;
  5352. border-radius:0px;
  5353. -moz-box-shadow:none;
  5354. -webkit-box-shadow:none;
  5355. box-shadow:none;
  5356. }
  5357. #u220753 {
  5358. border-width:0px;
  5359. position:absolute;
  5360. left:2351px;
  5361. top:107px;
  5362. width:375px;
  5363. height:681px;
  5364. display:flex;
  5365. }
  5366. #u220753 .text {
  5367. position:absolute;
  5368. align-self:center;
  5369. padding:2px 2px 2px 2px;
  5370. box-sizing:border-box;
  5371. width:100%;
  5372. }
  5373. #u220753_text {
  5374. border-width:0px;
  5375. word-wrap:break-word;
  5376. text-transform:none;
  5377. visibility:hidden;
  5378. }
  5379. #u220754 {
  5380. border-width:0px;
  5381. position:absolute;
  5382. left:0px;
  5383. top:0px;
  5384. width:0px;
  5385. height:0px;
  5386. }
  5387. #u220755_img {
  5388. border-width:0px;
  5389. position:absolute;
  5390. left:0px;
  5391. top:0px;
  5392. width:24px;
  5393. height:24px;
  5394. }
  5395. #u220755 {
  5396. border-width:0px;
  5397. position:absolute;
  5398. left:2573px;
  5399. top:792px;
  5400. width:24px;
  5401. height:24px;
  5402. display:flex;
  5403. font-size:8px;
  5404. }
  5405. #u220755 .text {
  5406. position:absolute;
  5407. align-self:center;
  5408. padding:2px 2px 2px 2px;
  5409. box-sizing:border-box;
  5410. width:100%;
  5411. }
  5412. #u220755_text {
  5413. border-width:0px;
  5414. word-wrap:break-word;
  5415. text-transform:none;
  5416. }
  5417. #u220756_div {
  5418. border-width:0px;
  5419. position:absolute;
  5420. left:0px;
  5421. top:0px;
  5422. width:37px;
  5423. height:17px;
  5424. background:inherit;
  5425. background-color:rgba(255, 255, 255, 0);
  5426. border:none;
  5427. border-radius:0px;
  5428. -moz-box-shadow:none;
  5429. -webkit-box-shadow:none;
  5430. box-shadow:none;
  5431. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5432. font-weight:400;
  5433. font-style:normal;
  5434. font-size:12px;
  5435. }
  5436. #u220756 {
  5437. border-width:0px;
  5438. position:absolute;
  5439. left:2567px;
  5440. top:817px;
  5441. width:37px;
  5442. height:17px;
  5443. display:flex;
  5444. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5445. font-weight:400;
  5446. font-style:normal;
  5447. font-size:12px;
  5448. }
  5449. #u220756 .text {
  5450. position:absolute;
  5451. align-self:flex-start;
  5452. padding:0px 0px 0px 0px;
  5453. box-sizing:border-box;
  5454. width:100%;
  5455. }
  5456. #u220756_text {
  5457. border-width:0px;
  5458. white-space:nowrap;
  5459. text-transform:none;
  5460. }
  5461. #u220757 {
  5462. border-width:0px;
  5463. position:absolute;
  5464. left:0px;
  5465. top:0px;
  5466. width:0px;
  5467. height:0px;
  5468. }
  5469. #u220758_img {
  5470. border-width:0px;
  5471. position:absolute;
  5472. left:0px;
  5473. top:0px;
  5474. width:24px;
  5475. height:24px;
  5476. }
  5477. #u220758 {
  5478. border-width:0px;
  5479. position:absolute;
  5480. left:2479px;
  5481. top:792px;
  5482. width:24px;
  5483. height:24px;
  5484. display:flex;
  5485. font-size:8px;
  5486. }
  5487. #u220758 .text {
  5488. position:absolute;
  5489. align-self:center;
  5490. padding:2px 2px 2px 2px;
  5491. box-sizing:border-box;
  5492. width:100%;
  5493. }
  5494. #u220758_text {
  5495. border-width:0px;
  5496. word-wrap:break-word;
  5497. text-transform:none;
  5498. }
  5499. #u220759_div {
  5500. border-width:0px;
  5501. position:absolute;
  5502. left:0px;
  5503. top:0px;
  5504. width:37px;
  5505. height:17px;
  5506. background:inherit;
  5507. background-color:rgba(255, 255, 255, 0);
  5508. border:none;
  5509. border-radius:0px;
  5510. -moz-box-shadow:none;
  5511. -webkit-box-shadow:none;
  5512. box-shadow:none;
  5513. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5514. font-weight:400;
  5515. font-style:normal;
  5516. font-size:12px;
  5517. }
  5518. #u220759 {
  5519. border-width:0px;
  5520. position:absolute;
  5521. left:2473px;
  5522. top:817px;
  5523. width:37px;
  5524. height:17px;
  5525. display:flex;
  5526. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5527. font-weight:400;
  5528. font-style:normal;
  5529. font-size:12px;
  5530. }
  5531. #u220759 .text {
  5532. position:absolute;
  5533. align-self:flex-start;
  5534. padding:0px 0px 0px 0px;
  5535. box-sizing:border-box;
  5536. width:100%;
  5537. }
  5538. #u220759_text {
  5539. border-width:0px;
  5540. white-space:nowrap;
  5541. text-transform:none;
  5542. }
  5543. #u220760_div {
  5544. border-width:0px;
  5545. position:absolute;
  5546. left:0px;
  5547. top:0px;
  5548. width:375px;
  5549. height:732px;
  5550. background:inherit;
  5551. background-color:rgba(242, 242, 242, 0.996078431372549);
  5552. border:none;
  5553. border-top:0px;
  5554. border-radius:28px;
  5555. border-top-left-radius:0px;
  5556. border-top-right-radius:0px;
  5557. -moz-box-shadow:none;
  5558. -webkit-box-shadow:none;
  5559. box-shadow:none;
  5560. }
  5561. #u220760 {
  5562. border-width:0px;
  5563. position:absolute;
  5564. left:2351px;
  5565. top:107px;
  5566. width:375px;
  5567. height:732px;
  5568. display:flex;
  5569. }
  5570. #u220760 .text {
  5571. position:absolute;
  5572. align-self:center;
  5573. padding:2px 2px 2px 2px;
  5574. box-sizing:border-box;
  5575. width:100%;
  5576. }
  5577. #u220760_text {
  5578. border-width:0px;
  5579. word-wrap:break-word;
  5580. text-transform:none;
  5581. visibility:hidden;
  5582. }
  5583. #u220761_div {
  5584. border-width:0px;
  5585. position:absolute;
  5586. left:0px;
  5587. top:0px;
  5588. width:375px;
  5589. height:125px;
  5590. background:inherit;
  5591. background-color:rgba(255, 255, 255, 1);
  5592. border:none;
  5593. border-left:0px;
  5594. border-top:0px;
  5595. border-right:0px;
  5596. border-radius:0px;
  5597. border-bottom-right-radius:0px;
  5598. border-bottom-left-radius:0px;
  5599. -moz-box-shadow:none;
  5600. -webkit-box-shadow:none;
  5601. box-shadow:none;
  5602. }
  5603. #u220761 {
  5604. border-width:0px;
  5605. position:absolute;
  5606. left:2351px;
  5607. top:108px;
  5608. width:375px;
  5609. height:125px;
  5610. display:flex;
  5611. }
  5612. #u220761 .text {
  5613. position:absolute;
  5614. align-self:center;
  5615. padding:2px 2px 2px 2px;
  5616. box-sizing:border-box;
  5617. width:100%;
  5618. }
  5619. #u220761_text {
  5620. border-width:0px;
  5621. word-wrap:break-word;
  5622. text-transform:none;
  5623. visibility:hidden;
  5624. }
  5625. #u220762_div {
  5626. border-width:0px;
  5627. position:absolute;
  5628. left:0px;
  5629. top:0px;
  5630. width:124px;
  5631. height:30px;
  5632. background:inherit;
  5633. background-color:rgba(255, 255, 255, 0);
  5634. border:none;
  5635. border-left:0px;
  5636. border-top:0px;
  5637. border-right:0px;
  5638. border-radius:0px;
  5639. border-bottom-right-radius:0px;
  5640. border-bottom-left-radius:0px;
  5641. -moz-box-shadow:none;
  5642. -webkit-box-shadow:none;
  5643. box-shadow:none;
  5644. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5645. font-weight:500;
  5646. font-style:normal;
  5647. font-size:14px;
  5648. line-height:30px;
  5649. }
  5650. #u220762 {
  5651. border-width:0px;
  5652. position:absolute;
  5653. left:2364px;
  5654. top:118px;
  5655. width:124px;
  5656. height:30px;
  5657. display:flex;
  5658. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5659. font-weight:500;
  5660. font-style:normal;
  5661. font-size:14px;
  5662. line-height:30px;
  5663. }
  5664. #u220762 .text {
  5665. position:absolute;
  5666. align-self:flex-start;
  5667. padding:0px 0px 0px 0px;
  5668. box-sizing:border-box;
  5669. width:100%;
  5670. }
  5671. #u220762_text {
  5672. border-width:0px;
  5673. white-space:nowrap;
  5674. text-transform:none;
  5675. }
  5676. #u220763_div {
  5677. border-width:0px;
  5678. position:absolute;
  5679. left:0px;
  5680. top:0px;
  5681. width:167px;
  5682. height:75px;
  5683. background:inherit;
  5684. background-color:rgba(255, 255, 255, 0);
  5685. border:none;
  5686. border-left:0px;
  5687. border-top:0px;
  5688. border-right:0px;
  5689. border-radius:0px;
  5690. border-bottom-right-radius:0px;
  5691. border-bottom-left-radius:0px;
  5692. -moz-box-shadow:none;
  5693. -webkit-box-shadow:none;
  5694. box-shadow:none;
  5695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5696. font-weight:400;
  5697. font-style:normal;
  5698. font-size:12px;
  5699. line-height:25px;
  5700. }
  5701. #u220763 {
  5702. border-width:0px;
  5703. position:absolute;
  5704. left:2364px;
  5705. top:148px;
  5706. width:167px;
  5707. height:75px;
  5708. display:flex;
  5709. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5710. font-weight:400;
  5711. font-style:normal;
  5712. font-size:12px;
  5713. line-height:25px;
  5714. }
  5715. #u220763 .text {
  5716. position:absolute;
  5717. align-self:flex-start;
  5718. padding:0px 0px 0px 0px;
  5719. box-sizing:border-box;
  5720. width:100%;
  5721. }
  5722. #u220763_text {
  5723. border-width:0px;
  5724. white-space:nowrap;
  5725. text-transform:none;
  5726. }
  5727. #u220764_div {
  5728. border-width:0px;
  5729. position:absolute;
  5730. left:0px;
  5731. top:0px;
  5732. width:375px;
  5733. height:41px;
  5734. background:inherit;
  5735. background-color:rgba(255, 255, 255, 1);
  5736. box-sizing:border-box;
  5737. border-width:1px;
  5738. border-style:solid;
  5739. border-color:rgba(215, 215, 215, 1);
  5740. border-left:0px;
  5741. border-top:0px;
  5742. border-right:0px;
  5743. border-radius:0px;
  5744. border-bottom-right-radius:0px;
  5745. border-bottom-left-radius:0px;
  5746. -moz-box-shadow:none;
  5747. -webkit-box-shadow:none;
  5748. box-shadow:none;
  5749. }
  5750. #u220764 {
  5751. border-width:0px;
  5752. position:absolute;
  5753. left:2351px;
  5754. top:67px;
  5755. width:375px;
  5756. height:41px;
  5757. display:flex;
  5758. }
  5759. #u220764 .text {
  5760. position:absolute;
  5761. align-self:center;
  5762. padding:2px 2px 2px 2px;
  5763. box-sizing:border-box;
  5764. width:100%;
  5765. }
  5766. #u220764_text {
  5767. border-width:0px;
  5768. word-wrap:break-word;
  5769. text-transform:none;
  5770. visibility:hidden;
  5771. }
  5772. #u220765 {
  5773. border-width:0px;
  5774. position:absolute;
  5775. left:0px;
  5776. top:0px;
  5777. width:0px;
  5778. height:0px;
  5779. }
  5780. #u220766_div {
  5781. border-width:0px;
  5782. position:absolute;
  5783. left:0px;
  5784. top:0px;
  5785. width:88px;
  5786. height:32px;
  5787. background:inherit;
  5788. background-color:rgba(255, 255, 255, 1);
  5789. box-sizing:border-box;
  5790. border-width:1px;
  5791. border-style:solid;
  5792. border-color:rgba(242, 242, 242, 1);
  5793. border-radius:33px;
  5794. -moz-box-shadow:none;
  5795. -webkit-box-shadow:none;
  5796. box-shadow:none;
  5797. }
  5798. #u220766 {
  5799. border-width:0px;
  5800. position:absolute;
  5801. left:2631px;
  5802. top:71px;
  5803. width:88px;
  5804. height:32px;
  5805. display:flex;
  5806. }
  5807. #u220766 .text {
  5808. position:absolute;
  5809. align-self:center;
  5810. padding:2px 2px 2px 2px;
  5811. box-sizing:border-box;
  5812. width:100%;
  5813. }
  5814. #u220766_text {
  5815. border-width:0px;
  5816. word-wrap:break-word;
  5817. text-transform:none;
  5818. visibility:hidden;
  5819. }
  5820. #u220767 {
  5821. border-width:0px;
  5822. position:absolute;
  5823. left:0px;
  5824. top:0px;
  5825. width:0px;
  5826. height:0px;
  5827. }
  5828. #u220768_img {
  5829. border-width:0px;
  5830. position:absolute;
  5831. left:0px;
  5832. top:0px;
  5833. width:18px;
  5834. height:18px;
  5835. }
  5836. #u220768 {
  5837. border-width:0px;
  5838. position:absolute;
  5839. left:2694px;
  5840. top:78px;
  5841. width:18px;
  5842. height:18px;
  5843. display:flex;
  5844. }
  5845. #u220768 .text {
  5846. position:absolute;
  5847. align-self:center;
  5848. padding:2px 2px 2px 2px;
  5849. box-sizing:border-box;
  5850. width:100%;
  5851. }
  5852. #u220768_text {
  5853. border-width:0px;
  5854. word-wrap:break-word;
  5855. text-transform:none;
  5856. visibility:hidden;
  5857. }
  5858. #u220769_img {
  5859. border-width:0px;
  5860. position:absolute;
  5861. left:0px;
  5862. top:0px;
  5863. width:6px;
  5864. height:6px;
  5865. }
  5866. #u220769 {
  5867. border-width:0px;
  5868. position:absolute;
  5869. left:2700px;
  5870. top:84px;
  5871. width:6px;
  5872. height:6px;
  5873. display:flex;
  5874. }
  5875. #u220769 .text {
  5876. position:absolute;
  5877. align-self:center;
  5878. padding:2px 2px 2px 2px;
  5879. box-sizing:border-box;
  5880. width:100%;
  5881. }
  5882. #u220769_text {
  5883. border-width:0px;
  5884. word-wrap:break-word;
  5885. text-transform:none;
  5886. visibility:hidden;
  5887. }
  5888. #u220770 {
  5889. border-width:0px;
  5890. position:absolute;
  5891. left:0px;
  5892. top:0px;
  5893. width:0px;
  5894. height:0px;
  5895. }
  5896. #u220771_img {
  5897. border-width:0px;
  5898. position:absolute;
  5899. left:0px;
  5900. top:0px;
  5901. width:5px;
  5902. height:5px;
  5903. }
  5904. #u220771 {
  5905. border-width:0px;
  5906. position:absolute;
  5907. left:2645px;
  5908. top:85px;
  5909. width:5px;
  5910. height:5px;
  5911. display:flex;
  5912. }
  5913. #u220771 .text {
  5914. position:absolute;
  5915. align-self:center;
  5916. padding:2px 2px 2px 2px;
  5917. box-sizing:border-box;
  5918. width:100%;
  5919. }
  5920. #u220771_text {
  5921. border-width:0px;
  5922. word-wrap:break-word;
  5923. text-transform:none;
  5924. visibility:hidden;
  5925. }
  5926. #u220772_img {
  5927. border-width:0px;
  5928. position:absolute;
  5929. left:0px;
  5930. top:0px;
  5931. width:5px;
  5932. height:5px;
  5933. }
  5934. #u220772 {
  5935. border-width:0px;
  5936. position:absolute;
  5937. left:2661px;
  5938. top:85px;
  5939. width:5px;
  5940. height:5px;
  5941. display:flex;
  5942. }
  5943. #u220772 .text {
  5944. position:absolute;
  5945. align-self:center;
  5946. padding:2px 2px 2px 2px;
  5947. box-sizing:border-box;
  5948. width:100%;
  5949. }
  5950. #u220772_text {
  5951. border-width:0px;
  5952. word-wrap:break-word;
  5953. text-transform:none;
  5954. visibility:hidden;
  5955. }
  5956. #u220773_img {
  5957. border-width:0px;
  5958. position:absolute;
  5959. left:0px;
  5960. top:0px;
  5961. width:7px;
  5962. height:7px;
  5963. }
  5964. #u220773 {
  5965. border-width:0px;
  5966. position:absolute;
  5967. left:2652px;
  5968. top:84px;
  5969. width:7px;
  5970. height:7px;
  5971. display:flex;
  5972. }
  5973. #u220773 .text {
  5974. position:absolute;
  5975. align-self:center;
  5976. padding:2px 2px 2px 2px;
  5977. box-sizing:border-box;
  5978. width:100%;
  5979. }
  5980. #u220773_text {
  5981. border-width:0px;
  5982. word-wrap:break-word;
  5983. text-transform:none;
  5984. visibility:hidden;
  5985. }
  5986. #u220774_img {
  5987. border-width:0px;
  5988. position:absolute;
  5989. left:0px;
  5990. top:0px;
  5991. width:19px;
  5992. height:2px;
  5993. }
  5994. #u220774 {
  5995. border-width:0px;
  5996. position:absolute;
  5997. left:2669px;
  5998. top:87px;
  5999. width:18px;
  6000. height:1px;
  6001. display:flex;
  6002. -webkit-transform:rotate(90deg);
  6003. -moz-transform:rotate(90deg);
  6004. -ms-transform:rotate(90deg);
  6005. transform:rotate(90deg);
  6006. }
  6007. #u220774 .text {
  6008. position:absolute;
  6009. align-self:center;
  6010. padding:2px 2px 2px 2px;
  6011. box-sizing:border-box;
  6012. width:100%;
  6013. }
  6014. #u220774_text {
  6015. border-width:0px;
  6016. word-wrap:break-word;
  6017. text-transform:none;
  6018. visibility:hidden;
  6019. }
  6020. #u220775_div {
  6021. border-width:0px;
  6022. position:absolute;
  6023. left:0px;
  6024. top:0px;
  6025. width:12px;
  6026. height:12px;
  6027. background:inherit;
  6028. background-color:rgba(255, 255, 255, 0);
  6029. box-sizing:border-box;
  6030. border-width:2px;
  6031. border-style:solid;
  6032. border-color:rgba(51, 51, 51, 1);
  6033. border-right:0px;
  6034. border-bottom:0px;
  6035. border-radius:0px;
  6036. border-top-right-radius:0px;
  6037. border-bottom-left-radius:0px;
  6038. -moz-box-shadow:none;
  6039. -webkit-box-shadow:none;
  6040. box-shadow:none;
  6041. }
  6042. #u220775 {
  6043. border-width:0px;
  6044. position:absolute;
  6045. left:2366px;
  6046. top:81px;
  6047. width:12px;
  6048. height:12px;
  6049. display:flex;
  6050. -webkit-transform:rotate(315deg);
  6051. -moz-transform:rotate(315deg);
  6052. -ms-transform:rotate(315deg);
  6053. transform:rotate(315deg);
  6054. }
  6055. #u220775 .text {
  6056. position:absolute;
  6057. align-self:center;
  6058. padding:2px 2px 2px 2px;
  6059. box-sizing:border-box;
  6060. width:100%;
  6061. }
  6062. #u220775_text {
  6063. border-width:0px;
  6064. word-wrap:break-word;
  6065. text-transform:none;
  6066. visibility:hidden;
  6067. }
  6068. #u220776_div {
  6069. border-width:0px;
  6070. position:absolute;
  6071. left:0px;
  6072. top:0px;
  6073. width:73px;
  6074. height:25px;
  6075. background:inherit;
  6076. background-color:rgba(255, 255, 255, 0);
  6077. border:none;
  6078. border-radius:0px;
  6079. -moz-box-shadow:none;
  6080. -webkit-box-shadow:none;
  6081. box-shadow:none;
  6082. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6083. font-weight:400;
  6084. font-style:normal;
  6085. font-size:18px;
  6086. }
  6087. #u220776 {
  6088. border-width:0px;
  6089. position:absolute;
  6090. left:2386px;
  6091. top:75px;
  6092. width:73px;
  6093. height:25px;
  6094. display:flex;
  6095. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6096. font-weight:400;
  6097. font-style:normal;
  6098. font-size:18px;
  6099. }
  6100. #u220776 .text {
  6101. position:absolute;
  6102. align-self:flex-start;
  6103. padding:0px 0px 0px 0px;
  6104. box-sizing:border-box;
  6105. width:100%;
  6106. }
  6107. #u220776_text {
  6108. border-width:0px;
  6109. white-space:nowrap;
  6110. text-transform:none;
  6111. }
  6112. #u220777_div {
  6113. border-width:0px;
  6114. position:absolute;
  6115. left:0px;
  6116. top:0px;
  6117. width:43px;
  6118. height:20px;
  6119. background:inherit;
  6120. background-color:rgba(255, 255, 255, 0);
  6121. border:none;
  6122. border-radius:0px;
  6123. -moz-box-shadow:none;
  6124. -webkit-box-shadow:none;
  6125. box-shadow:none;
  6126. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6127. font-weight:400;
  6128. font-style:normal;
  6129. color:#0089FE;
  6130. }
  6131. #u220777 {
  6132. border-width:0px;
  6133. position:absolute;
  6134. left:2669px;
  6135. top:123px;
  6136. width:43px;
  6137. height:20px;
  6138. display:flex;
  6139. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6140. font-weight:400;
  6141. font-style:normal;
  6142. color:#0089FE;
  6143. }
  6144. #u220777 .text {
  6145. position:absolute;
  6146. align-self:flex-start;
  6147. padding:0px 0px 0px 0px;
  6148. box-sizing:border-box;
  6149. width:100%;
  6150. }
  6151. #u220777_text {
  6152. border-width:0px;
  6153. white-space:nowrap;
  6154. text-transform:none;
  6155. }
  6156. #u220778 {
  6157. border-width:0px;
  6158. position:absolute;
  6159. left:0px;
  6160. top:0px;
  6161. width:0px;
  6162. height:0px;
  6163. }
  6164. #u220779_div {
  6165. border-width:0px;
  6166. position:absolute;
  6167. left:0px;
  6168. top:0px;
  6169. width:375px;
  6170. height:190px;
  6171. background:inherit;
  6172. background-color:rgba(255, 255, 255, 1);
  6173. border:none;
  6174. border-left:0px;
  6175. border-right:0px;
  6176. border-radius:0px;
  6177. border-top-left-radius:0px;
  6178. border-top-right-radius:0px;
  6179. border-bottom-right-radius:0px;
  6180. border-bottom-left-radius:0px;
  6181. -moz-box-shadow:none;
  6182. -webkit-box-shadow:none;
  6183. box-shadow:none;
  6184. }
  6185. #u220779 {
  6186. border-width:0px;
  6187. position:absolute;
  6188. left:2351px;
  6189. top:424px;
  6190. width:375px;
  6191. height:190px;
  6192. display:flex;
  6193. }
  6194. #u220779 .text {
  6195. position:absolute;
  6196. align-self:center;
  6197. padding:2px 2px 2px 2px;
  6198. box-sizing:border-box;
  6199. width:100%;
  6200. }
  6201. #u220779_text {
  6202. border-width:0px;
  6203. word-wrap:break-word;
  6204. text-transform:none;
  6205. visibility:hidden;
  6206. }
  6207. #u220780_div {
  6208. border-width:0px;
  6209. position:absolute;
  6210. left:0px;
  6211. top:0px;
  6212. width:57px;
  6213. height:30px;
  6214. background:inherit;
  6215. background-color:rgba(255, 255, 255, 0);
  6216. border:none;
  6217. border-left:0px;
  6218. border-top:0px;
  6219. border-right:0px;
  6220. border-radius:0px;
  6221. border-bottom-right-radius:0px;
  6222. border-bottom-left-radius:0px;
  6223. -moz-box-shadow:none;
  6224. -webkit-box-shadow:none;
  6225. box-shadow:none;
  6226. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6227. font-weight:400;
  6228. font-style:normal;
  6229. font-size:14px;
  6230. line-height:30px;
  6231. }
  6232. #u220780 {
  6233. border-width:0px;
  6234. position:absolute;
  6235. left:2375px;
  6236. top:434px;
  6237. width:57px;
  6238. height:30px;
  6239. display:flex;
  6240. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6241. font-weight:400;
  6242. font-style:normal;
  6243. font-size:14px;
  6244. line-height:30px;
  6245. }
  6246. #u220780 .text {
  6247. position:absolute;
  6248. align-self:flex-start;
  6249. padding:0px 0px 0px 0px;
  6250. box-sizing:border-box;
  6251. width:100%;
  6252. }
  6253. #u220780_text {
  6254. border-width:0px;
  6255. white-space:nowrap;
  6256. text-transform:none;
  6257. }
  6258. #u220781_div {
  6259. border-width:0px;
  6260. position:absolute;
  6261. left:0px;
  6262. top:0px;
  6263. width:181px;
  6264. height:30px;
  6265. background:inherit;
  6266. background-color:rgba(255, 255, 255, 0);
  6267. border:none;
  6268. border-left:0px;
  6269. border-top:0px;
  6270. border-right:0px;
  6271. border-radius:0px;
  6272. border-bottom-right-radius:0px;
  6273. border-bottom-left-radius:0px;
  6274. -moz-box-shadow:none;
  6275. -webkit-box-shadow:none;
  6276. box-shadow:none;
  6277. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6278. font-weight:400;
  6279. font-style:normal;
  6280. font-size:12px;
  6281. line-height:30px;
  6282. }
  6283. #u220781 {
  6284. border-width:0px;
  6285. position:absolute;
  6286. left:2375px;
  6287. top:464px;
  6288. width:181px;
  6289. height:30px;
  6290. display:flex;
  6291. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6292. font-weight:400;
  6293. font-style:normal;
  6294. font-size:12px;
  6295. line-height:30px;
  6296. }
  6297. #u220781 .text {
  6298. position:absolute;
  6299. align-self:flex-start;
  6300. padding:0px 0px 0px 0px;
  6301. box-sizing:border-box;
  6302. width:100%;
  6303. }
  6304. #u220781_text {
  6305. border-width:0px;
  6306. white-space:nowrap;
  6307. text-transform:none;
  6308. }
  6309. #u220782_div {
  6310. border-width:0px;
  6311. position:absolute;
  6312. left:0px;
  6313. top:0px;
  6314. width:167px;
  6315. height:30px;
  6316. background:inherit;
  6317. background-color:rgba(255, 255, 255, 0);
  6318. border:none;
  6319. border-left:0px;
  6320. border-top:0px;
  6321. border-right:0px;
  6322. border-radius:0px;
  6323. border-bottom-right-radius:0px;
  6324. border-bottom-left-radius:0px;
  6325. -moz-box-shadow:none;
  6326. -webkit-box-shadow:none;
  6327. box-shadow:none;
  6328. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6329. font-weight:400;
  6330. font-style:normal;
  6331. font-size:12px;
  6332. line-height:30px;
  6333. }
  6334. #u220782 {
  6335. border-width:0px;
  6336. position:absolute;
  6337. left:2375px;
  6338. top:494px;
  6339. width:167px;
  6340. height:30px;
  6341. display:flex;
  6342. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6343. font-weight:400;
  6344. font-style:normal;
  6345. font-size:12px;
  6346. line-height:30px;
  6347. }
  6348. #u220782 .text {
  6349. position:absolute;
  6350. align-self:flex-start;
  6351. padding:0px 0px 0px 0px;
  6352. box-sizing:border-box;
  6353. width:100%;
  6354. }
  6355. #u220782_text {
  6356. border-width:0px;
  6357. white-space:nowrap;
  6358. text-transform:none;
  6359. }
  6360. #u220783_div {
  6361. border-width:0px;
  6362. position:absolute;
  6363. left:0px;
  6364. top:0px;
  6365. width:167px;
  6366. height:30px;
  6367. background:inherit;
  6368. background-color:rgba(255, 255, 255, 0);
  6369. border:none;
  6370. border-left:0px;
  6371. border-top:0px;
  6372. border-right:0px;
  6373. border-radius:0px;
  6374. border-bottom-right-radius:0px;
  6375. border-bottom-left-radius:0px;
  6376. -moz-box-shadow:none;
  6377. -webkit-box-shadow:none;
  6378. box-shadow:none;
  6379. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6380. font-weight:400;
  6381. font-style:normal;
  6382. font-size:12px;
  6383. line-height:30px;
  6384. }
  6385. #u220783 {
  6386. border-width:0px;
  6387. position:absolute;
  6388. left:2375px;
  6389. top:524px;
  6390. width:167px;
  6391. height:30px;
  6392. display:flex;
  6393. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6394. font-weight:400;
  6395. font-style:normal;
  6396. font-size:12px;
  6397. line-height:30px;
  6398. }
  6399. #u220783 .text {
  6400. position:absolute;
  6401. align-self:flex-start;
  6402. padding:0px 0px 0px 0px;
  6403. box-sizing:border-box;
  6404. width:100%;
  6405. }
  6406. #u220783_text {
  6407. border-width:0px;
  6408. white-space:nowrap;
  6409. text-transform:none;
  6410. }
  6411. #u220784_div {
  6412. border-width:0px;
  6413. position:absolute;
  6414. left:0px;
  6415. top:0px;
  6416. width:167px;
  6417. height:30px;
  6418. background:inherit;
  6419. background-color:rgba(255, 255, 255, 0);
  6420. border:none;
  6421. border-left:0px;
  6422. border-top:0px;
  6423. border-right:0px;
  6424. border-radius:0px;
  6425. border-bottom-right-radius:0px;
  6426. border-bottom-left-radius:0px;
  6427. -moz-box-shadow:none;
  6428. -webkit-box-shadow:none;
  6429. box-shadow:none;
  6430. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6431. font-weight:400;
  6432. font-style:normal;
  6433. font-size:12px;
  6434. line-height:30px;
  6435. }
  6436. #u220784 {
  6437. border-width:0px;
  6438. position:absolute;
  6439. left:2375px;
  6440. top:554px;
  6441. width:167px;
  6442. height:30px;
  6443. display:flex;
  6444. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6445. font-weight:400;
  6446. font-style:normal;
  6447. font-size:12px;
  6448. line-height:30px;
  6449. }
  6450. #u220784 .text {
  6451. position:absolute;
  6452. align-self:flex-start;
  6453. padding:0px 0px 0px 0px;
  6454. box-sizing:border-box;
  6455. width:100%;
  6456. }
  6457. #u220784_text {
  6458. border-width:0px;
  6459. white-space:nowrap;
  6460. text-transform:none;
  6461. }
  6462. #u220786_img {
  6463. border-width:0px;
  6464. position:absolute;
  6465. left:0px;
  6466. top:0px;
  6467. width:433px;
  6468. height:865px;
  6469. }
  6470. #u220786 {
  6471. border-width:0px;
  6472. position:absolute;
  6473. left:2797px;
  6474. top:0px;
  6475. width:433px;
  6476. height:865px;
  6477. display:flex;
  6478. }
  6479. #u220786 .text {
  6480. position:absolute;
  6481. align-self:center;
  6482. padding:2px 2px 2px 2px;
  6483. box-sizing:border-box;
  6484. width:100%;
  6485. }
  6486. #u220786_text {
  6487. border-width:0px;
  6488. word-wrap:break-word;
  6489. text-transform:none;
  6490. visibility:hidden;
  6491. }
  6492. #u220787_div {
  6493. border-width:0px;
  6494. position:absolute;
  6495. left:0px;
  6496. top:0px;
  6497. width:375px;
  6498. height:40px;
  6499. background:inherit;
  6500. background-color:rgba(255, 255, 255, 1);
  6501. box-sizing:border-box;
  6502. border-width:1px;
  6503. border-style:solid;
  6504. border-color:rgba(215, 215, 215, 1);
  6505. border-left:0px;
  6506. border-top:0px;
  6507. border-right:0px;
  6508. border-radius:0px;
  6509. border-bottom-right-radius:0px;
  6510. border-bottom-left-radius:0px;
  6511. -moz-box-shadow:none;
  6512. -webkit-box-shadow:none;
  6513. box-shadow:none;
  6514. }
  6515. #u220787 {
  6516. border-width:0px;
  6517. position:absolute;
  6518. left:2826px;
  6519. top:67px;
  6520. width:375px;
  6521. height:40px;
  6522. display:flex;
  6523. }
  6524. #u220787 .text {
  6525. position:absolute;
  6526. align-self:center;
  6527. padding:2px 2px 2px 2px;
  6528. box-sizing:border-box;
  6529. width:100%;
  6530. }
  6531. #u220787_text {
  6532. border-width:0px;
  6533. word-wrap:break-word;
  6534. text-transform:none;
  6535. visibility:hidden;
  6536. }
  6537. #u220788 {
  6538. border-width:0px;
  6539. position:absolute;
  6540. left:0px;
  6541. top:0px;
  6542. width:0px;
  6543. height:0px;
  6544. }
  6545. #u220789_div {
  6546. border-width:0px;
  6547. position:absolute;
  6548. left:0px;
  6549. top:0px;
  6550. width:88px;
  6551. height:32px;
  6552. background:inherit;
  6553. background-color:rgba(255, 255, 255, 1);
  6554. box-sizing:border-box;
  6555. border-width:1px;
  6556. border-style:solid;
  6557. border-color:rgba(242, 242, 242, 1);
  6558. border-radius:33px;
  6559. -moz-box-shadow:none;
  6560. -webkit-box-shadow:none;
  6561. box-shadow:none;
  6562. }
  6563. #u220789 {
  6564. border-width:0px;
  6565. position:absolute;
  6566. left:3106px;
  6567. top:71px;
  6568. width:88px;
  6569. height:32px;
  6570. display:flex;
  6571. }
  6572. #u220789 .text {
  6573. position:absolute;
  6574. align-self:center;
  6575. padding:2px 2px 2px 2px;
  6576. box-sizing:border-box;
  6577. width:100%;
  6578. }
  6579. #u220789_text {
  6580. border-width:0px;
  6581. word-wrap:break-word;
  6582. text-transform:none;
  6583. visibility:hidden;
  6584. }
  6585. #u220790 {
  6586. border-width:0px;
  6587. position:absolute;
  6588. left:0px;
  6589. top:0px;
  6590. width:0px;
  6591. height:0px;
  6592. }
  6593. #u220791_img {
  6594. border-width:0px;
  6595. position:absolute;
  6596. left:0px;
  6597. top:0px;
  6598. width:18px;
  6599. height:18px;
  6600. }
  6601. #u220791 {
  6602. border-width:0px;
  6603. position:absolute;
  6604. left:3169px;
  6605. top:78px;
  6606. width:18px;
  6607. height:18px;
  6608. display:flex;
  6609. }
  6610. #u220791 .text {
  6611. position:absolute;
  6612. align-self:center;
  6613. padding:2px 2px 2px 2px;
  6614. box-sizing:border-box;
  6615. width:100%;
  6616. }
  6617. #u220791_text {
  6618. border-width:0px;
  6619. word-wrap:break-word;
  6620. text-transform:none;
  6621. visibility:hidden;
  6622. }
  6623. #u220792_img {
  6624. border-width:0px;
  6625. position:absolute;
  6626. left:0px;
  6627. top:0px;
  6628. width:6px;
  6629. height:6px;
  6630. }
  6631. #u220792 {
  6632. border-width:0px;
  6633. position:absolute;
  6634. left:3175px;
  6635. top:84px;
  6636. width:6px;
  6637. height:6px;
  6638. display:flex;
  6639. }
  6640. #u220792 .text {
  6641. position:absolute;
  6642. align-self:center;
  6643. padding:2px 2px 2px 2px;
  6644. box-sizing:border-box;
  6645. width:100%;
  6646. }
  6647. #u220792_text {
  6648. border-width:0px;
  6649. word-wrap:break-word;
  6650. text-transform:none;
  6651. visibility:hidden;
  6652. }
  6653. #u220793 {
  6654. border-width:0px;
  6655. position:absolute;
  6656. left:0px;
  6657. top:0px;
  6658. width:0px;
  6659. height:0px;
  6660. }
  6661. #u220794_img {
  6662. border-width:0px;
  6663. position:absolute;
  6664. left:0px;
  6665. top:0px;
  6666. width:5px;
  6667. height:5px;
  6668. }
  6669. #u220794 {
  6670. border-width:0px;
  6671. position:absolute;
  6672. left:3120px;
  6673. top:85px;
  6674. width:5px;
  6675. height:5px;
  6676. display:flex;
  6677. }
  6678. #u220794 .text {
  6679. position:absolute;
  6680. align-self:center;
  6681. padding:2px 2px 2px 2px;
  6682. box-sizing:border-box;
  6683. width:100%;
  6684. }
  6685. #u220794_text {
  6686. border-width:0px;
  6687. word-wrap:break-word;
  6688. text-transform:none;
  6689. visibility:hidden;
  6690. }
  6691. #u220795_img {
  6692. border-width:0px;
  6693. position:absolute;
  6694. left:0px;
  6695. top:0px;
  6696. width:5px;
  6697. height:5px;
  6698. }
  6699. #u220795 {
  6700. border-width:0px;
  6701. position:absolute;
  6702. left:3136px;
  6703. top:85px;
  6704. width:5px;
  6705. height:5px;
  6706. display:flex;
  6707. }
  6708. #u220795 .text {
  6709. position:absolute;
  6710. align-self:center;
  6711. padding:2px 2px 2px 2px;
  6712. box-sizing:border-box;
  6713. width:100%;
  6714. }
  6715. #u220795_text {
  6716. border-width:0px;
  6717. word-wrap:break-word;
  6718. text-transform:none;
  6719. visibility:hidden;
  6720. }
  6721. #u220796_img {
  6722. border-width:0px;
  6723. position:absolute;
  6724. left:0px;
  6725. top:0px;
  6726. width:7px;
  6727. height:7px;
  6728. }
  6729. #u220796 {
  6730. border-width:0px;
  6731. position:absolute;
  6732. left:3127px;
  6733. top:84px;
  6734. width:7px;
  6735. height:7px;
  6736. display:flex;
  6737. }
  6738. #u220796 .text {
  6739. position:absolute;
  6740. align-self:center;
  6741. padding:2px 2px 2px 2px;
  6742. box-sizing:border-box;
  6743. width:100%;
  6744. }
  6745. #u220796_text {
  6746. border-width:0px;
  6747. word-wrap:break-word;
  6748. text-transform:none;
  6749. visibility:hidden;
  6750. }
  6751. #u220797_img {
  6752. border-width:0px;
  6753. position:absolute;
  6754. left:0px;
  6755. top:0px;
  6756. width:19px;
  6757. height:2px;
  6758. }
  6759. #u220797 {
  6760. border-width:0px;
  6761. position:absolute;
  6762. left:3144px;
  6763. top:87px;
  6764. width:18px;
  6765. height:1px;
  6766. display:flex;
  6767. -webkit-transform:rotate(90deg);
  6768. -moz-transform:rotate(90deg);
  6769. -ms-transform:rotate(90deg);
  6770. transform:rotate(90deg);
  6771. }
  6772. #u220797 .text {
  6773. position:absolute;
  6774. align-self:center;
  6775. padding:2px 2px 2px 2px;
  6776. box-sizing:border-box;
  6777. width:100%;
  6778. }
  6779. #u220797_text {
  6780. border-width:0px;
  6781. word-wrap:break-word;
  6782. text-transform:none;
  6783. visibility:hidden;
  6784. }
  6785. #u220798_img {
  6786. border-width:0px;
  6787. position:absolute;
  6788. left:0px;
  6789. top:0px;
  6790. width:375px;
  6791. height:44px;
  6792. }
  6793. #u220798 {
  6794. border-width:0px;
  6795. position:absolute;
  6796. left:2826px;
  6797. top:24px;
  6798. width:375px;
  6799. height:44px;
  6800. display:flex;
  6801. }
  6802. #u220798 .text {
  6803. position:absolute;
  6804. align-self:center;
  6805. padding:2px 2px 2px 2px;
  6806. box-sizing:border-box;
  6807. width:100%;
  6808. }
  6809. #u220798_text {
  6810. border-width:0px;
  6811. word-wrap:break-word;
  6812. text-transform:none;
  6813. visibility:hidden;
  6814. }
  6815. #u220799_div {
  6816. border-width:0px;
  6817. position:absolute;
  6818. left:0px;
  6819. top:0px;
  6820. width:375px;
  6821. height:50px;
  6822. background:inherit;
  6823. background-color:rgba(255, 255, 255, 1);
  6824. box-sizing:border-box;
  6825. border-width:1px;
  6826. border-style:solid;
  6827. border-color:rgba(242, 242, 242, 1);
  6828. border-radius:26px;
  6829. border-top-left-radius:0px;
  6830. border-top-right-radius:0px;
  6831. -moz-box-shadow:none;
  6832. -webkit-box-shadow:none;
  6833. box-shadow:none;
  6834. }
  6835. #u220799 {
  6836. border-width:0px;
  6837. position:absolute;
  6838. left:2826px;
  6839. top:788px;
  6840. width:375px;
  6841. height:50px;
  6842. display:flex;
  6843. }
  6844. #u220799 .text {
  6845. position:absolute;
  6846. align-self:center;
  6847. padding:2px 2px 2px 2px;
  6848. box-sizing:border-box;
  6849. width:100%;
  6850. }
  6851. #u220799_text {
  6852. border-width:0px;
  6853. word-wrap:break-word;
  6854. text-transform:none;
  6855. visibility:hidden;
  6856. }
  6857. #u220800 {
  6858. border-width:0px;
  6859. position:absolute;
  6860. left:0px;
  6861. top:0px;
  6862. width:0px;
  6863. height:0px;
  6864. }
  6865. #u220801_img {
  6866. border-width:0px;
  6867. position:absolute;
  6868. left:0px;
  6869. top:0px;
  6870. width:24px;
  6871. height:24px;
  6872. }
  6873. #u220801 {
  6874. border-width:0px;
  6875. position:absolute;
  6876. left:2866px;
  6877. top:792px;
  6878. width:24px;
  6879. height:24px;
  6880. display:flex;
  6881. font-size:8px;
  6882. }
  6883. #u220801 .text {
  6884. position:absolute;
  6885. align-self:center;
  6886. padding:2px 2px 2px 2px;
  6887. box-sizing:border-box;
  6888. width:100%;
  6889. }
  6890. #u220801_text {
  6891. border-width:0px;
  6892. word-wrap:break-word;
  6893. text-transform:none;
  6894. }
  6895. #u220802_div {
  6896. border-width:0px;
  6897. position:absolute;
  6898. left:0px;
  6899. top:0px;
  6900. width:25px;
  6901. height:17px;
  6902. background:inherit;
  6903. background-color:rgba(255, 255, 255, 0);
  6904. border:none;
  6905. border-radius:0px;
  6906. -moz-box-shadow:none;
  6907. -webkit-box-shadow:none;
  6908. box-shadow:none;
  6909. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6910. font-weight:400;
  6911. font-style:normal;
  6912. font-size:12px;
  6913. }
  6914. #u220802 {
  6915. border-width:0px;
  6916. position:absolute;
  6917. left:2866px;
  6918. top:817px;
  6919. width:25px;
  6920. height:17px;
  6921. display:flex;
  6922. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6923. font-weight:400;
  6924. font-style:normal;
  6925. font-size:12px;
  6926. }
  6927. #u220802 .text {
  6928. position:absolute;
  6929. align-self:flex-start;
  6930. padding:0px 0px 0px 0px;
  6931. box-sizing:border-box;
  6932. width:100%;
  6933. }
  6934. #u220802_text {
  6935. border-width:0px;
  6936. white-space:nowrap;
  6937. text-transform:none;
  6938. }
  6939. #u220803 {
  6940. border-width:0px;
  6941. position:absolute;
  6942. left:0px;
  6943. top:0px;
  6944. width:0px;
  6945. height:0px;
  6946. }
  6947. #u220804_img {
  6948. border-width:0px;
  6949. position:absolute;
  6950. left:0px;
  6951. top:0px;
  6952. width:24px;
  6953. height:24px;
  6954. }
  6955. #u220804 {
  6956. border-width:0px;
  6957. position:absolute;
  6958. left:3136px;
  6959. top:794px;
  6960. width:24px;
  6961. height:24px;
  6962. display:flex;
  6963. font-size:8px;
  6964. }
  6965. #u220804 .text {
  6966. position:absolute;
  6967. align-self:center;
  6968. padding:2px 2px 2px 2px;
  6969. box-sizing:border-box;
  6970. width:100%;
  6971. }
  6972. #u220804_text {
  6973. border-width:0px;
  6974. word-wrap:break-word;
  6975. text-transform:none;
  6976. }
  6977. #u220805_div {
  6978. border-width:0px;
  6979. position:absolute;
  6980. left:0px;
  6981. top:0px;
  6982. width:25px;
  6983. height:17px;
  6984. background:inherit;
  6985. background-color:rgba(255, 255, 255, 0);
  6986. border:none;
  6987. border-radius:0px;
  6988. -moz-box-shadow:none;
  6989. -webkit-box-shadow:none;
  6990. box-shadow:none;
  6991. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6992. font-weight:400;
  6993. font-style:normal;
  6994. font-size:12px;
  6995. }
  6996. #u220805 {
  6997. border-width:0px;
  6998. position:absolute;
  6999. left:3136px;
  7000. top:819px;
  7001. width:25px;
  7002. height:17px;
  7003. display:flex;
  7004. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7005. font-weight:400;
  7006. font-style:normal;
  7007. font-size:12px;
  7008. }
  7009. #u220805 .text {
  7010. position:absolute;
  7011. align-self:flex-start;
  7012. padding:0px 0px 0px 0px;
  7013. box-sizing:border-box;
  7014. width:100%;
  7015. }
  7016. #u220805_text {
  7017. border-width:0px;
  7018. white-space:nowrap;
  7019. text-transform:none;
  7020. }
  7021. #u220806_div {
  7022. border-width:0px;
  7023. position:absolute;
  7024. left:0px;
  7025. top:0px;
  7026. width:375px;
  7027. height:681px;
  7028. background:inherit;
  7029. background-color:rgba(242, 242, 242, 0.462745098039216);
  7030. border:none;
  7031. border-radius:0px;
  7032. -moz-box-shadow:none;
  7033. -webkit-box-shadow:none;
  7034. box-shadow:none;
  7035. }
  7036. #u220806 {
  7037. border-width:0px;
  7038. position:absolute;
  7039. left:2826px;
  7040. top:107px;
  7041. width:375px;
  7042. height:681px;
  7043. display:flex;
  7044. }
  7045. #u220806 .text {
  7046. position:absolute;
  7047. align-self:center;
  7048. padding:2px 2px 2px 2px;
  7049. box-sizing:border-box;
  7050. width:100%;
  7051. }
  7052. #u220806_text {
  7053. border-width:0px;
  7054. word-wrap:break-word;
  7055. text-transform:none;
  7056. visibility:hidden;
  7057. }
  7058. #u220807 {
  7059. border-width:0px;
  7060. position:absolute;
  7061. left:0px;
  7062. top:0px;
  7063. width:0px;
  7064. height:0px;
  7065. }
  7066. #u220808_img {
  7067. border-width:0px;
  7068. position:absolute;
  7069. left:0px;
  7070. top:0px;
  7071. width:24px;
  7072. height:24px;
  7073. }
  7074. #u220808 {
  7075. border-width:0px;
  7076. position:absolute;
  7077. left:3048px;
  7078. top:792px;
  7079. width:24px;
  7080. height:24px;
  7081. display:flex;
  7082. font-size:8px;
  7083. }
  7084. #u220808 .text {
  7085. position:absolute;
  7086. align-self:center;
  7087. padding:2px 2px 2px 2px;
  7088. box-sizing:border-box;
  7089. width:100%;
  7090. }
  7091. #u220808_text {
  7092. border-width:0px;
  7093. word-wrap:break-word;
  7094. text-transform:none;
  7095. }
  7096. #u220809_div {
  7097. border-width:0px;
  7098. position:absolute;
  7099. left:0px;
  7100. top:0px;
  7101. width:37px;
  7102. height:17px;
  7103. background:inherit;
  7104. background-color:rgba(255, 255, 255, 0);
  7105. border:none;
  7106. border-radius:0px;
  7107. -moz-box-shadow:none;
  7108. -webkit-box-shadow:none;
  7109. box-shadow:none;
  7110. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7111. font-weight:400;
  7112. font-style:normal;
  7113. font-size:12px;
  7114. }
  7115. #u220809 {
  7116. border-width:0px;
  7117. position:absolute;
  7118. left:3042px;
  7119. top:817px;
  7120. width:37px;
  7121. height:17px;
  7122. display:flex;
  7123. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7124. font-weight:400;
  7125. font-style:normal;
  7126. font-size:12px;
  7127. }
  7128. #u220809 .text {
  7129. position:absolute;
  7130. align-self:flex-start;
  7131. padding:0px 0px 0px 0px;
  7132. box-sizing:border-box;
  7133. width:100%;
  7134. }
  7135. #u220809_text {
  7136. border-width:0px;
  7137. white-space:nowrap;
  7138. text-transform:none;
  7139. }
  7140. #u220810 {
  7141. border-width:0px;
  7142. position:absolute;
  7143. left:0px;
  7144. top:0px;
  7145. width:0px;
  7146. height:0px;
  7147. }
  7148. #u220811_img {
  7149. border-width:0px;
  7150. position:absolute;
  7151. left:0px;
  7152. top:0px;
  7153. width:24px;
  7154. height:24px;
  7155. }
  7156. #u220811 {
  7157. border-width:0px;
  7158. position:absolute;
  7159. left:2954px;
  7160. top:792px;
  7161. width:24px;
  7162. height:24px;
  7163. display:flex;
  7164. font-size:8px;
  7165. }
  7166. #u220811 .text {
  7167. position:absolute;
  7168. align-self:center;
  7169. padding:2px 2px 2px 2px;
  7170. box-sizing:border-box;
  7171. width:100%;
  7172. }
  7173. #u220811_text {
  7174. border-width:0px;
  7175. word-wrap:break-word;
  7176. text-transform:none;
  7177. }
  7178. #u220812_div {
  7179. border-width:0px;
  7180. position:absolute;
  7181. left:0px;
  7182. top:0px;
  7183. width:37px;
  7184. height:17px;
  7185. background:inherit;
  7186. background-color:rgba(255, 255, 255, 0);
  7187. border:none;
  7188. border-radius:0px;
  7189. -moz-box-shadow:none;
  7190. -webkit-box-shadow:none;
  7191. box-shadow:none;
  7192. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7193. font-weight:400;
  7194. font-style:normal;
  7195. font-size:12px;
  7196. }
  7197. #u220812 {
  7198. border-width:0px;
  7199. position:absolute;
  7200. left:2948px;
  7201. top:817px;
  7202. width:37px;
  7203. height:17px;
  7204. display:flex;
  7205. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7206. font-weight:400;
  7207. font-style:normal;
  7208. font-size:12px;
  7209. }
  7210. #u220812 .text {
  7211. position:absolute;
  7212. align-self:flex-start;
  7213. padding:0px 0px 0px 0px;
  7214. box-sizing:border-box;
  7215. width:100%;
  7216. }
  7217. #u220812_text {
  7218. border-width:0px;
  7219. white-space:nowrap;
  7220. text-transform:none;
  7221. }
  7222. #u220813_div {
  7223. border-width:0px;
  7224. position:absolute;
  7225. left:0px;
  7226. top:0px;
  7227. width:375px;
  7228. height:732px;
  7229. background:inherit;
  7230. background-color:rgba(242, 242, 242, 0.996078431372549);
  7231. border:none;
  7232. border-top:0px;
  7233. border-radius:28px;
  7234. border-top-left-radius:0px;
  7235. border-top-right-radius:0px;
  7236. -moz-box-shadow:none;
  7237. -webkit-box-shadow:none;
  7238. box-shadow:none;
  7239. }
  7240. #u220813 {
  7241. border-width:0px;
  7242. position:absolute;
  7243. left:2826px;
  7244. top:107px;
  7245. width:375px;
  7246. height:732px;
  7247. display:flex;
  7248. }
  7249. #u220813 .text {
  7250. position:absolute;
  7251. align-self:center;
  7252. padding:2px 2px 2px 2px;
  7253. box-sizing:border-box;
  7254. width:100%;
  7255. }
  7256. #u220813_text {
  7257. border-width:0px;
  7258. word-wrap:break-word;
  7259. text-transform:none;
  7260. visibility:hidden;
  7261. }
  7262. #u220814_div {
  7263. border-width:0px;
  7264. position:absolute;
  7265. left:0px;
  7266. top:0px;
  7267. width:375px;
  7268. height:125px;
  7269. background:inherit;
  7270. background-color:rgba(255, 255, 255, 1);
  7271. border:none;
  7272. border-left:0px;
  7273. border-top:0px;
  7274. border-right:0px;
  7275. border-radius:0px;
  7276. border-bottom-right-radius:0px;
  7277. border-bottom-left-radius:0px;
  7278. -moz-box-shadow:none;
  7279. -webkit-box-shadow:none;
  7280. box-shadow:none;
  7281. }
  7282. #u220814 {
  7283. border-width:0px;
  7284. position:absolute;
  7285. left:2826px;
  7286. top:108px;
  7287. width:375px;
  7288. height:125px;
  7289. display:flex;
  7290. }
  7291. #u220814 .text {
  7292. position:absolute;
  7293. align-self:center;
  7294. padding:2px 2px 2px 2px;
  7295. box-sizing:border-box;
  7296. width:100%;
  7297. }
  7298. #u220814_text {
  7299. border-width:0px;
  7300. word-wrap:break-word;
  7301. text-transform:none;
  7302. visibility:hidden;
  7303. }
  7304. #u220815_div {
  7305. border-width:0px;
  7306. position:absolute;
  7307. left:0px;
  7308. top:0px;
  7309. width:124px;
  7310. height:30px;
  7311. background:inherit;
  7312. background-color:rgba(255, 255, 255, 0);
  7313. border:none;
  7314. border-left:0px;
  7315. border-top:0px;
  7316. border-right:0px;
  7317. border-radius:0px;
  7318. border-bottom-right-radius:0px;
  7319. border-bottom-left-radius:0px;
  7320. -moz-box-shadow:none;
  7321. -webkit-box-shadow:none;
  7322. box-shadow:none;
  7323. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7324. font-weight:500;
  7325. font-style:normal;
  7326. font-size:14px;
  7327. line-height:30px;
  7328. }
  7329. #u220815 {
  7330. border-width:0px;
  7331. position:absolute;
  7332. left:2839px;
  7333. top:118px;
  7334. width:124px;
  7335. height:30px;
  7336. display:flex;
  7337. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7338. font-weight:500;
  7339. font-style:normal;
  7340. font-size:14px;
  7341. line-height:30px;
  7342. }
  7343. #u220815 .text {
  7344. position:absolute;
  7345. align-self:flex-start;
  7346. padding:0px 0px 0px 0px;
  7347. box-sizing:border-box;
  7348. width:100%;
  7349. }
  7350. #u220815_text {
  7351. border-width:0px;
  7352. white-space:nowrap;
  7353. text-transform:none;
  7354. }
  7355. #u220816_div {
  7356. border-width:0px;
  7357. position:absolute;
  7358. left:0px;
  7359. top:0px;
  7360. width:167px;
  7361. height:75px;
  7362. background:inherit;
  7363. background-color:rgba(255, 255, 255, 0);
  7364. border:none;
  7365. border-left:0px;
  7366. border-top:0px;
  7367. border-right:0px;
  7368. border-radius:0px;
  7369. border-bottom-right-radius:0px;
  7370. border-bottom-left-radius:0px;
  7371. -moz-box-shadow:none;
  7372. -webkit-box-shadow:none;
  7373. box-shadow:none;
  7374. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7375. font-weight:400;
  7376. font-style:normal;
  7377. font-size:12px;
  7378. line-height:25px;
  7379. }
  7380. #u220816 {
  7381. border-width:0px;
  7382. position:absolute;
  7383. left:2839px;
  7384. top:148px;
  7385. width:167px;
  7386. height:75px;
  7387. display:flex;
  7388. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7389. font-weight:400;
  7390. font-style:normal;
  7391. font-size:12px;
  7392. line-height:25px;
  7393. }
  7394. #u220816 .text {
  7395. position:absolute;
  7396. align-self:flex-start;
  7397. padding:0px 0px 0px 0px;
  7398. box-sizing:border-box;
  7399. width:100%;
  7400. }
  7401. #u220816_text {
  7402. border-width:0px;
  7403. white-space:nowrap;
  7404. text-transform:none;
  7405. }
  7406. #u220817_div {
  7407. border-width:0px;
  7408. position:absolute;
  7409. left:0px;
  7410. top:0px;
  7411. width:375px;
  7412. height:41px;
  7413. background:inherit;
  7414. background-color:rgba(255, 255, 255, 1);
  7415. box-sizing:border-box;
  7416. border-width:1px;
  7417. border-style:solid;
  7418. border-color:rgba(215, 215, 215, 1);
  7419. border-left:0px;
  7420. border-top:0px;
  7421. border-right:0px;
  7422. border-radius:0px;
  7423. border-bottom-right-radius:0px;
  7424. border-bottom-left-radius:0px;
  7425. -moz-box-shadow:none;
  7426. -webkit-box-shadow:none;
  7427. box-shadow:none;
  7428. }
  7429. #u220817 {
  7430. border-width:0px;
  7431. position:absolute;
  7432. left:2826px;
  7433. top:67px;
  7434. width:375px;
  7435. height:41px;
  7436. display:flex;
  7437. }
  7438. #u220817 .text {
  7439. position:absolute;
  7440. align-self:center;
  7441. padding:2px 2px 2px 2px;
  7442. box-sizing:border-box;
  7443. width:100%;
  7444. }
  7445. #u220817_text {
  7446. border-width:0px;
  7447. word-wrap:break-word;
  7448. text-transform:none;
  7449. visibility:hidden;
  7450. }
  7451. #u220818 {
  7452. border-width:0px;
  7453. position:absolute;
  7454. left:0px;
  7455. top:0px;
  7456. width:0px;
  7457. height:0px;
  7458. }
  7459. #u220819_div {
  7460. border-width:0px;
  7461. position:absolute;
  7462. left:0px;
  7463. top:0px;
  7464. width:88px;
  7465. height:32px;
  7466. background:inherit;
  7467. background-color:rgba(255, 255, 255, 1);
  7468. box-sizing:border-box;
  7469. border-width:1px;
  7470. border-style:solid;
  7471. border-color:rgba(242, 242, 242, 1);
  7472. border-radius:33px;
  7473. -moz-box-shadow:none;
  7474. -webkit-box-shadow:none;
  7475. box-shadow:none;
  7476. }
  7477. #u220819 {
  7478. border-width:0px;
  7479. position:absolute;
  7480. left:3106px;
  7481. top:71px;
  7482. width:88px;
  7483. height:32px;
  7484. display:flex;
  7485. }
  7486. #u220819 .text {
  7487. position:absolute;
  7488. align-self:center;
  7489. padding:2px 2px 2px 2px;
  7490. box-sizing:border-box;
  7491. width:100%;
  7492. }
  7493. #u220819_text {
  7494. border-width:0px;
  7495. word-wrap:break-word;
  7496. text-transform:none;
  7497. visibility:hidden;
  7498. }
  7499. #u220820 {
  7500. border-width:0px;
  7501. position:absolute;
  7502. left:0px;
  7503. top:0px;
  7504. width:0px;
  7505. height:0px;
  7506. }
  7507. #u220821_img {
  7508. border-width:0px;
  7509. position:absolute;
  7510. left:0px;
  7511. top:0px;
  7512. width:18px;
  7513. height:18px;
  7514. }
  7515. #u220821 {
  7516. border-width:0px;
  7517. position:absolute;
  7518. left:3169px;
  7519. top:78px;
  7520. width:18px;
  7521. height:18px;
  7522. display:flex;
  7523. }
  7524. #u220821 .text {
  7525. position:absolute;
  7526. align-self:center;
  7527. padding:2px 2px 2px 2px;
  7528. box-sizing:border-box;
  7529. width:100%;
  7530. }
  7531. #u220821_text {
  7532. border-width:0px;
  7533. word-wrap:break-word;
  7534. text-transform:none;
  7535. visibility:hidden;
  7536. }
  7537. #u220822_img {
  7538. border-width:0px;
  7539. position:absolute;
  7540. left:0px;
  7541. top:0px;
  7542. width:6px;
  7543. height:6px;
  7544. }
  7545. #u220822 {
  7546. border-width:0px;
  7547. position:absolute;
  7548. left:3175px;
  7549. top:84px;
  7550. width:6px;
  7551. height:6px;
  7552. display:flex;
  7553. }
  7554. #u220822 .text {
  7555. position:absolute;
  7556. align-self:center;
  7557. padding:2px 2px 2px 2px;
  7558. box-sizing:border-box;
  7559. width:100%;
  7560. }
  7561. #u220822_text {
  7562. border-width:0px;
  7563. word-wrap:break-word;
  7564. text-transform:none;
  7565. visibility:hidden;
  7566. }
  7567. #u220823 {
  7568. border-width:0px;
  7569. position:absolute;
  7570. left:0px;
  7571. top:0px;
  7572. width:0px;
  7573. height:0px;
  7574. }
  7575. #u220824_img {
  7576. border-width:0px;
  7577. position:absolute;
  7578. left:0px;
  7579. top:0px;
  7580. width:5px;
  7581. height:5px;
  7582. }
  7583. #u220824 {
  7584. border-width:0px;
  7585. position:absolute;
  7586. left:3120px;
  7587. top:85px;
  7588. width:5px;
  7589. height:5px;
  7590. display:flex;
  7591. }
  7592. #u220824 .text {
  7593. position:absolute;
  7594. align-self:center;
  7595. padding:2px 2px 2px 2px;
  7596. box-sizing:border-box;
  7597. width:100%;
  7598. }
  7599. #u220824_text {
  7600. border-width:0px;
  7601. word-wrap:break-word;
  7602. text-transform:none;
  7603. visibility:hidden;
  7604. }
  7605. #u220825_img {
  7606. border-width:0px;
  7607. position:absolute;
  7608. left:0px;
  7609. top:0px;
  7610. width:5px;
  7611. height:5px;
  7612. }
  7613. #u220825 {
  7614. border-width:0px;
  7615. position:absolute;
  7616. left:3136px;
  7617. top:85px;
  7618. width:5px;
  7619. height:5px;
  7620. display:flex;
  7621. }
  7622. #u220825 .text {
  7623. position:absolute;
  7624. align-self:center;
  7625. padding:2px 2px 2px 2px;
  7626. box-sizing:border-box;
  7627. width:100%;
  7628. }
  7629. #u220825_text {
  7630. border-width:0px;
  7631. word-wrap:break-word;
  7632. text-transform:none;
  7633. visibility:hidden;
  7634. }
  7635. #u220826_img {
  7636. border-width:0px;
  7637. position:absolute;
  7638. left:0px;
  7639. top:0px;
  7640. width:7px;
  7641. height:7px;
  7642. }
  7643. #u220826 {
  7644. border-width:0px;
  7645. position:absolute;
  7646. left:3127px;
  7647. top:84px;
  7648. width:7px;
  7649. height:7px;
  7650. display:flex;
  7651. }
  7652. #u220826 .text {
  7653. position:absolute;
  7654. align-self:center;
  7655. padding:2px 2px 2px 2px;
  7656. box-sizing:border-box;
  7657. width:100%;
  7658. }
  7659. #u220826_text {
  7660. border-width:0px;
  7661. word-wrap:break-word;
  7662. text-transform:none;
  7663. visibility:hidden;
  7664. }
  7665. #u220827_img {
  7666. border-width:0px;
  7667. position:absolute;
  7668. left:0px;
  7669. top:0px;
  7670. width:19px;
  7671. height:2px;
  7672. }
  7673. #u220827 {
  7674. border-width:0px;
  7675. position:absolute;
  7676. left:3144px;
  7677. top:87px;
  7678. width:18px;
  7679. height:1px;
  7680. display:flex;
  7681. -webkit-transform:rotate(90deg);
  7682. -moz-transform:rotate(90deg);
  7683. -ms-transform:rotate(90deg);
  7684. transform:rotate(90deg);
  7685. }
  7686. #u220827 .text {
  7687. position:absolute;
  7688. align-self:center;
  7689. padding:2px 2px 2px 2px;
  7690. box-sizing:border-box;
  7691. width:100%;
  7692. }
  7693. #u220827_text {
  7694. border-width:0px;
  7695. word-wrap:break-word;
  7696. text-transform:none;
  7697. visibility:hidden;
  7698. }
  7699. #u220828_div {
  7700. border-width:0px;
  7701. position:absolute;
  7702. left:0px;
  7703. top:0px;
  7704. width:12px;
  7705. height:12px;
  7706. background:inherit;
  7707. background-color:rgba(255, 255, 255, 0);
  7708. box-sizing:border-box;
  7709. border-width:2px;
  7710. border-style:solid;
  7711. border-color:rgba(51, 51, 51, 1);
  7712. border-right:0px;
  7713. border-bottom:0px;
  7714. border-radius:0px;
  7715. border-top-right-radius:0px;
  7716. border-bottom-left-radius:0px;
  7717. -moz-box-shadow:none;
  7718. -webkit-box-shadow:none;
  7719. box-shadow:none;
  7720. }
  7721. #u220828 {
  7722. border-width:0px;
  7723. position:absolute;
  7724. left:2841px;
  7725. top:81px;
  7726. width:12px;
  7727. height:12px;
  7728. display:flex;
  7729. -webkit-transform:rotate(315deg);
  7730. -moz-transform:rotate(315deg);
  7731. -ms-transform:rotate(315deg);
  7732. transform:rotate(315deg);
  7733. }
  7734. #u220828 .text {
  7735. position:absolute;
  7736. align-self:center;
  7737. padding:2px 2px 2px 2px;
  7738. box-sizing:border-box;
  7739. width:100%;
  7740. }
  7741. #u220828_text {
  7742. border-width:0px;
  7743. word-wrap:break-word;
  7744. text-transform:none;
  7745. visibility:hidden;
  7746. }
  7747. #u220829_div {
  7748. border-width:0px;
  7749. position:absolute;
  7750. left:0px;
  7751. top:0px;
  7752. width:73px;
  7753. height:25px;
  7754. background:inherit;
  7755. background-color:rgba(255, 255, 255, 0);
  7756. border:none;
  7757. border-radius:0px;
  7758. -moz-box-shadow:none;
  7759. -webkit-box-shadow:none;
  7760. box-shadow:none;
  7761. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7762. font-weight:400;
  7763. font-style:normal;
  7764. font-size:18px;
  7765. }
  7766. #u220829 {
  7767. border-width:0px;
  7768. position:absolute;
  7769. left:2861px;
  7770. top:75px;
  7771. width:73px;
  7772. height:25px;
  7773. display:flex;
  7774. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7775. font-weight:400;
  7776. font-style:normal;
  7777. font-size:18px;
  7778. }
  7779. #u220829 .text {
  7780. position:absolute;
  7781. align-self:flex-start;
  7782. padding:0px 0px 0px 0px;
  7783. box-sizing:border-box;
  7784. width:100%;
  7785. }
  7786. #u220829_text {
  7787. border-width:0px;
  7788. white-space:nowrap;
  7789. text-transform:none;
  7790. }
  7791. #u220830_div {
  7792. border-width:0px;
  7793. position:absolute;
  7794. left:0px;
  7795. top:0px;
  7796. width:43px;
  7797. height:20px;
  7798. background:inherit;
  7799. background-color:rgba(255, 255, 255, 0);
  7800. border:none;
  7801. border-radius:0px;
  7802. -moz-box-shadow:none;
  7803. -webkit-box-shadow:none;
  7804. box-shadow:none;
  7805. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7806. font-weight:400;
  7807. font-style:normal;
  7808. color:#0089FE;
  7809. }
  7810. #u220830 {
  7811. border-width:0px;
  7812. position:absolute;
  7813. left:3144px;
  7814. top:123px;
  7815. width:43px;
  7816. height:20px;
  7817. display:flex;
  7818. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7819. font-weight:400;
  7820. font-style:normal;
  7821. color:#0089FE;
  7822. }
  7823. #u220830 .text {
  7824. position:absolute;
  7825. align-self:flex-start;
  7826. padding:0px 0px 0px 0px;
  7827. box-sizing:border-box;
  7828. width:100%;
  7829. }
  7830. #u220830_text {
  7831. border-width:0px;
  7832. white-space:nowrap;
  7833. text-transform:none;
  7834. }
  7835. #u220831 {
  7836. border-width:0px;
  7837. position:absolute;
  7838. left:0px;
  7839. top:0px;
  7840. width:0px;
  7841. height:0px;
  7842. }
  7843. #u220832_div {
  7844. border-width:0px;
  7845. position:absolute;
  7846. left:0px;
  7847. top:0px;
  7848. width:375px;
  7849. height:110px;
  7850. background:inherit;
  7851. background-color:rgba(255, 255, 255, 1);
  7852. border:none;
  7853. border-left:0px;
  7854. border-top:0px;
  7855. border-right:0px;
  7856. border-radius:0px;
  7857. border-bottom-right-radius:0px;
  7858. border-bottom-left-radius:0px;
  7859. -moz-box-shadow:none;
  7860. -webkit-box-shadow:none;
  7861. box-shadow:none;
  7862. }
  7863. #u220832 {
  7864. border-width:0px;
  7865. position:absolute;
  7866. left:2826px;
  7867. top:424px;
  7868. width:375px;
  7869. height:110px;
  7870. display:flex;
  7871. }
  7872. #u220832 .text {
  7873. position:absolute;
  7874. align-self:center;
  7875. padding:2px 2px 2px 2px;
  7876. box-sizing:border-box;
  7877. width:100%;
  7878. }
  7879. #u220832_text {
  7880. border-width:0px;
  7881. word-wrap:break-word;
  7882. text-transform:none;
  7883. visibility:hidden;
  7884. }
  7885. #u220833_div {
  7886. border-width:0px;
  7887. position:absolute;
  7888. left:0px;
  7889. top:0px;
  7890. width:167px;
  7891. height:30px;
  7892. background:inherit;
  7893. background-color:rgba(255, 255, 255, 0);
  7894. border:none;
  7895. border-left:0px;
  7896. border-top:0px;
  7897. border-right:0px;
  7898. border-radius:0px;
  7899. border-bottom-right-radius:0px;
  7900. border-bottom-left-radius:0px;
  7901. -moz-box-shadow:none;
  7902. -webkit-box-shadow:none;
  7903. box-shadow:none;
  7904. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7905. font-weight:400;
  7906. font-style:normal;
  7907. font-size:12px;
  7908. line-height:30px;
  7909. }
  7910. #u220833 {
  7911. border-width:0px;
  7912. position:absolute;
  7913. left:2839px;
  7914. top:434px;
  7915. width:167px;
  7916. height:30px;
  7917. display:flex;
  7918. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7919. font-weight:400;
  7920. font-style:normal;
  7921. font-size:12px;
  7922. line-height:30px;
  7923. }
  7924. #u220833 .text {
  7925. position:absolute;
  7926. align-self:flex-start;
  7927. padding:0px 0px 0px 0px;
  7928. box-sizing:border-box;
  7929. width:100%;
  7930. }
  7931. #u220833_text {
  7932. border-width:0px;
  7933. white-space:nowrap;
  7934. text-transform:none;
  7935. }
  7936. #u220834_div {
  7937. border-width:0px;
  7938. position:absolute;
  7939. left:0px;
  7940. top:0px;
  7941. width:186px;
  7942. height:30px;
  7943. background:inherit;
  7944. background-color:rgba(255, 255, 255, 0);
  7945. border:none;
  7946. border-left:0px;
  7947. border-top:0px;
  7948. border-right:0px;
  7949. border-radius:0px;
  7950. border-bottom-right-radius:0px;
  7951. border-bottom-left-radius:0px;
  7952. -moz-box-shadow:none;
  7953. -webkit-box-shadow:none;
  7954. box-shadow:none;
  7955. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7956. font-weight:400;
  7957. font-style:normal;
  7958. font-size:12px;
  7959. line-height:30px;
  7960. }
  7961. #u220834 {
  7962. border-width:0px;
  7963. position:absolute;
  7964. left:2839px;
  7965. top:464px;
  7966. width:186px;
  7967. height:30px;
  7968. display:flex;
  7969. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7970. font-weight:400;
  7971. font-style:normal;
  7972. font-size:12px;
  7973. line-height:30px;
  7974. }
  7975. #u220834 .text {
  7976. position:absolute;
  7977. align-self:flex-start;
  7978. padding:0px 0px 0px 0px;
  7979. box-sizing:border-box;
  7980. width:100%;
  7981. }
  7982. #u220834_text {
  7983. border-width:0px;
  7984. white-space:nowrap;
  7985. text-transform:none;
  7986. }
  7987. #u220835_div {
  7988. border-width:0px;
  7989. position:absolute;
  7990. left:0px;
  7991. top:0px;
  7992. width:133px;
  7993. height:30px;
  7994. background:inherit;
  7995. background-color:rgba(255, 255, 255, 0);
  7996. border:none;
  7997. border-left:0px;
  7998. border-top:0px;
  7999. border-right:0px;
  8000. border-radius:0px;
  8001. border-bottom-right-radius:0px;
  8002. border-bottom-left-radius:0px;
  8003. -moz-box-shadow:none;
  8004. -webkit-box-shadow:none;
  8005. box-shadow:none;
  8006. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8007. font-weight:400;
  8008. font-style:normal;
  8009. font-size:12px;
  8010. line-height:30px;
  8011. }
  8012. #u220835 {
  8013. border-width:0px;
  8014. position:absolute;
  8015. left:2839px;
  8016. top:494px;
  8017. width:133px;
  8018. height:30px;
  8019. display:flex;
  8020. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8021. font-weight:400;
  8022. font-style:normal;
  8023. font-size:12px;
  8024. line-height:30px;
  8025. }
  8026. #u220835 .text {
  8027. position:absolute;
  8028. align-self:flex-start;
  8029. padding:0px 0px 0px 0px;
  8030. box-sizing:border-box;
  8031. width:100%;
  8032. }
  8033. #u220835_text {
  8034. border-width:0px;
  8035. white-space:nowrap;
  8036. text-transform:none;
  8037. }
  8038. #u220836 {
  8039. border-width:0px;
  8040. position:absolute;
  8041. left:0px;
  8042. top:0px;
  8043. width:0px;
  8044. height:0px;
  8045. }
  8046. #u220837_div {
  8047. border-width:0px;
  8048. position:absolute;
  8049. left:0px;
  8050. top:0px;
  8051. width:375px;
  8052. height:60px;
  8053. background:inherit;
  8054. background-color:rgba(255, 255, 255, 1);
  8055. box-sizing:border-box;
  8056. border-width:1px;
  8057. border-style:solid;
  8058. border-color:rgba(242, 242, 242, 1);
  8059. border-radius:20px;
  8060. border-top-left-radius:0px;
  8061. border-top-right-radius:0px;
  8062. -moz-box-shadow:none;
  8063. -webkit-box-shadow:none;
  8064. box-shadow:none;
  8065. }
  8066. #u220837 {
  8067. border-width:0px;
  8068. position:absolute;
  8069. left:494px;
  8070. top:779px;
  8071. width:375px;
  8072. height:60px;
  8073. display:flex;
  8074. }
  8075. #u220837 .text {
  8076. position:absolute;
  8077. align-self:center;
  8078. padding:2px 2px 2px 2px;
  8079. box-sizing:border-box;
  8080. width:100%;
  8081. }
  8082. #u220837_text {
  8083. border-width:0px;
  8084. word-wrap:break-word;
  8085. text-transform:none;
  8086. visibility:hidden;
  8087. }
  8088. #u220838_div {
  8089. border-width:0px;
  8090. position:absolute;
  8091. left:0px;
  8092. top:0px;
  8093. width:342px;
  8094. height:40px;
  8095. background:inherit;
  8096. background-color:rgba(255, 255, 255, 1);
  8097. box-sizing:border-box;
  8098. border-width:1px;
  8099. border-style:solid;
  8100. border-color:rgba(121, 121, 121, 1);
  8101. border-radius:63px;
  8102. -moz-box-shadow:none;
  8103. -webkit-box-shadow:none;
  8104. box-shadow:none;
  8105. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8106. font-weight:400;
  8107. font-style:normal;
  8108. font-size:14px;
  8109. color:#555555;
  8110. }
  8111. #u220838 {
  8112. border-width:0px;
  8113. position:absolute;
  8114. left:513px;
  8115. top:789px;
  8116. width:342px;
  8117. height:40px;
  8118. display:flex;
  8119. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8120. font-weight:400;
  8121. font-style:normal;
  8122. font-size:14px;
  8123. color:#555555;
  8124. }
  8125. #u220838 .text {
  8126. position:absolute;
  8127. align-self:center;
  8128. padding:2px 2px 2px 2px;
  8129. box-sizing:border-box;
  8130. width:100%;
  8131. }
  8132. #u220838_text {
  8133. border-width:0px;
  8134. word-wrap:break-word;
  8135. text-transform:none;
  8136. }
  8137. #u220839 {
  8138. border-width:0px;
  8139. position:absolute;
  8140. left:0px;
  8141. top:0px;
  8142. width:0px;
  8143. height:0px;
  8144. }
  8145. #u220840_div {
  8146. border-width:0px;
  8147. position:absolute;
  8148. left:0px;
  8149. top:0px;
  8150. width:240px;
  8151. height:122px;
  8152. background:inherit;
  8153. background-color:rgba(255, 255, 255, 1);
  8154. border:none;
  8155. border-radius:4px;
  8156. -moz-box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  8157. -webkit-box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  8158. box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  8159. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8160. font-weight:400;
  8161. font-style:normal;
  8162. font-size:12px;
  8163. color:#FFFFFF;
  8164. }
  8165. #u220840 {
  8166. border-width:0px;
  8167. position:absolute;
  8168. left:93px;
  8169. top:527px;
  8170. width:240px;
  8171. height:122px;
  8172. display:flex;
  8173. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8174. font-weight:400;
  8175. font-style:normal;
  8176. font-size:12px;
  8177. color:#FFFFFF;
  8178. }
  8179. #u220840 .text {
  8180. position:absolute;
  8181. align-self:center;
  8182. padding:8px 15px 8px 15px;
  8183. box-sizing:border-box;
  8184. width:100%;
  8185. }
  8186. #u220840_text {
  8187. border-width:0px;
  8188. word-wrap:break-word;
  8189. text-transform:none;
  8190. visibility:hidden;
  8191. }
  8192. #u220841_div {
  8193. border-width:0px;
  8194. position:absolute;
  8195. left:0px;
  8196. top:0px;
  8197. width:183px;
  8198. height:35px;
  8199. background:inherit;
  8200. background-color:rgba(51, 153, 255, 0);
  8201. border:none;
  8202. border-radius:0px;
  8203. -moz-box-shadow:none;
  8204. -webkit-box-shadow:none;
  8205. box-shadow:none;
  8206. font-family:'.PingFangSC-Regular', '.PingFang SC', sans-serif;
  8207. font-weight:400;
  8208. font-style:normal;
  8209. font-size:16px;
  8210. }
  8211. #u220841 {
  8212. border-width:0px;
  8213. position:absolute;
  8214. left:122px;
  8215. top:552px;
  8216. width:183px;
  8217. height:35px;
  8218. display:flex;
  8219. font-family:'.PingFangSC-Regular', '.PingFang SC', sans-serif;
  8220. font-weight:400;
  8221. font-style:normal;
  8222. font-size:16px;
  8223. }
  8224. #u220841 .text {
  8225. position:absolute;
  8226. align-self:center;
  8227. padding:8px 15px 8px 20px;
  8228. box-sizing:border-box;
  8229. width:100%;
  8230. }
  8231. #u220841_text {
  8232. border-width:0px;
  8233. white-space:nowrap;
  8234. text-transform:none;
  8235. }
  8236. #u220842_img {
  8237. border-width:0px;
  8238. position:absolute;
  8239. left:0px;
  8240. top:0px;
  8241. width:120px;
  8242. height:38px;
  8243. }
  8244. #u220842 {
  8245. border-width:0px;
  8246. position:absolute;
  8247. left:93px;
  8248. top:611px;
  8249. width:120px;
  8250. height:38px;
  8251. display:flex;
  8252. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8253. font-weight:400;
  8254. font-style:normal;
  8255. font-size:12px;
  8256. }
  8257. #u220842 .text {
  8258. position:absolute;
  8259. align-self:center;
  8260. padding:8px 0px 8px 0px;
  8261. box-sizing:border-box;
  8262. width:100%;
  8263. }
  8264. #u220842_text {
  8265. border-width:0px;
  8266. word-wrap:break-word;
  8267. text-transform:none;
  8268. }
  8269. #u220843_img {
  8270. border-width:0px;
  8271. position:absolute;
  8272. left:0px;
  8273. top:0px;
  8274. width:121px;
  8275. height:38px;
  8276. }
  8277. #u220843 {
  8278. border-width:0px;
  8279. position:absolute;
  8280. left:212px;
  8281. top:611px;
  8282. width:121px;
  8283. height:38px;
  8284. display:flex;
  8285. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8286. font-weight:400;
  8287. font-style:normal;
  8288. font-size:12px;
  8289. color:#1890FF;
  8290. }
  8291. #u220843 .text {
  8292. position:absolute;
  8293. align-self:center;
  8294. padding:8px 0px 8px 0px;
  8295. box-sizing:border-box;
  8296. width:100%;
  8297. }
  8298. #u220843_text {
  8299. border-width:0px;
  8300. word-wrap:break-word;
  8301. text-transform:none;
  8302. }
  8303. #u220844 {
  8304. border-width:0px;
  8305. position:absolute;
  8306. left:0px;
  8307. top:0px;
  8308. width:0px;
  8309. height:0px;
  8310. }
  8311. #u220845_div {
  8312. border-width:0px;
  8313. position:absolute;
  8314. left:0px;
  8315. top:0px;
  8316. width:240px;
  8317. height:122px;
  8318. background:inherit;
  8319. background-color:rgba(255, 255, 255, 1);
  8320. border:none;
  8321. border-radius:4px;
  8322. -moz-box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  8323. -webkit-box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  8324. box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  8325. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8326. font-weight:400;
  8327. font-style:normal;
  8328. font-size:12px;
  8329. color:#FFFFFF;
  8330. }
  8331. #u220845 {
  8332. border-width:0px;
  8333. position:absolute;
  8334. left:562px;
  8335. top:569px;
  8336. width:240px;
  8337. height:122px;
  8338. display:flex;
  8339. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8340. font-weight:400;
  8341. font-style:normal;
  8342. font-size:12px;
  8343. color:#FFFFFF;
  8344. }
  8345. #u220845 .text {
  8346. position:absolute;
  8347. align-self:center;
  8348. padding:8px 15px 8px 15px;
  8349. box-sizing:border-box;
  8350. width:100%;
  8351. }
  8352. #u220845_text {
  8353. border-width:0px;
  8354. word-wrap:break-word;
  8355. text-transform:none;
  8356. visibility:hidden;
  8357. }
  8358. #u220846_div {
  8359. border-width:0px;
  8360. position:absolute;
  8361. left:0px;
  8362. top:0px;
  8363. width:183px;
  8364. height:35px;
  8365. background:inherit;
  8366. background-color:rgba(51, 153, 255, 0);
  8367. border:none;
  8368. border-radius:0px;
  8369. -moz-box-shadow:none;
  8370. -webkit-box-shadow:none;
  8371. box-shadow:none;
  8372. font-family:'.PingFangSC-Regular', '.PingFang SC', sans-serif;
  8373. font-weight:400;
  8374. font-style:normal;
  8375. font-size:16px;
  8376. }
  8377. #u220846 {
  8378. border-width:0px;
  8379. position:absolute;
  8380. left:591px;
  8381. top:594px;
  8382. width:183px;
  8383. height:35px;
  8384. display:flex;
  8385. font-family:'.PingFangSC-Regular', '.PingFang SC', sans-serif;
  8386. font-weight:400;
  8387. font-style:normal;
  8388. font-size:16px;
  8389. }
  8390. #u220846 .text {
  8391. position:absolute;
  8392. align-self:center;
  8393. padding:8px 15px 8px 20px;
  8394. box-sizing:border-box;
  8395. width:100%;
  8396. }
  8397. #u220846_text {
  8398. border-width:0px;
  8399. white-space:nowrap;
  8400. text-transform:none;
  8401. }
  8402. #u220847_img {
  8403. border-width:0px;
  8404. position:absolute;
  8405. left:0px;
  8406. top:0px;
  8407. width:120px;
  8408. height:38px;
  8409. }
  8410. #u220847 {
  8411. border-width:0px;
  8412. position:absolute;
  8413. left:562px;
  8414. top:653px;
  8415. width:120px;
  8416. height:38px;
  8417. display:flex;
  8418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8419. font-weight:400;
  8420. font-style:normal;
  8421. font-size:12px;
  8422. }
  8423. #u220847 .text {
  8424. position:absolute;
  8425. align-self:center;
  8426. padding:8px 0px 8px 0px;
  8427. box-sizing:border-box;
  8428. width:100%;
  8429. }
  8430. #u220847_text {
  8431. border-width:0px;
  8432. word-wrap:break-word;
  8433. text-transform:none;
  8434. }
  8435. #u220848_img {
  8436. border-width:0px;
  8437. position:absolute;
  8438. left:0px;
  8439. top:0px;
  8440. width:121px;
  8441. height:38px;
  8442. }
  8443. #u220848 {
  8444. border-width:0px;
  8445. position:absolute;
  8446. left:681px;
  8447. top:653px;
  8448. width:121px;
  8449. height:38px;
  8450. display:flex;
  8451. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8452. font-weight:400;
  8453. font-style:normal;
  8454. font-size:12px;
  8455. color:#1890FF;
  8456. }
  8457. #u220848 .text {
  8458. position:absolute;
  8459. align-self:center;
  8460. padding:8px 0px 8px 0px;
  8461. box-sizing:border-box;
  8462. width:100%;
  8463. }
  8464. #u220848_text {
  8465. border-width:0px;
  8466. word-wrap:break-word;
  8467. text-transform:none;
  8468. }
  8469. #u220849 {
  8470. border-width:0px;
  8471. position:absolute;
  8472. left:0px;
  8473. top:0px;
  8474. width:0px;
  8475. height:0px;
  8476. }
  8477. #u220850_div {
  8478. border-width:0px;
  8479. position:absolute;
  8480. left:0px;
  8481. top:0px;
  8482. width:375px;
  8483. height:180px;
  8484. background:inherit;
  8485. background-color:rgba(255, 255, 255, 1);
  8486. border:none;
  8487. border-top:0px;
  8488. border-bottom:0px;
  8489. border-radius:0px;
  8490. border-top-left-radius:0px;
  8491. border-top-right-radius:0px;
  8492. border-bottom-right-radius:0px;
  8493. border-bottom-left-radius:0px;
  8494. -moz-box-shadow:none;
  8495. -webkit-box-shadow:none;
  8496. box-shadow:none;
  8497. }
  8498. #u220850 {
  8499. border-width:0px;
  8500. position:absolute;
  8501. left:494px;
  8502. top:234px;
  8503. width:375px;
  8504. height:180px;
  8505. display:flex;
  8506. }
  8507. #u220850 .text {
  8508. position:absolute;
  8509. align-self:center;
  8510. padding:2px 2px 2px 2px;
  8511. box-sizing:border-box;
  8512. width:100%;
  8513. }
  8514. #u220850_text {
  8515. border-width:0px;
  8516. word-wrap:break-word;
  8517. text-transform:none;
  8518. visibility:hidden;
  8519. }
  8520. #u220851_div {
  8521. border-width:0px;
  8522. position:absolute;
  8523. left:0px;
  8524. top:0px;
  8525. width:150px;
  8526. height:150px;
  8527. background:inherit;
  8528. background-color:rgba(255, 255, 255, 0);
  8529. border:none;
  8530. border-left:0px;
  8531. border-top:0px;
  8532. border-right:0px;
  8533. border-radius:0px;
  8534. border-bottom-right-radius:0px;
  8535. border-bottom-left-radius:0px;
  8536. -moz-box-shadow:none;
  8537. -webkit-box-shadow:none;
  8538. box-shadow:none;
  8539. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8540. font-weight:400;
  8541. font-style:normal;
  8542. font-size:12px;
  8543. line-height:25px;
  8544. }
  8545. #u220851 {
  8546. border-width:0px;
  8547. position:absolute;
  8548. left:518px;
  8549. top:248px;
  8550. width:150px;
  8551. height:150px;
  8552. display:flex;
  8553. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8554. font-weight:400;
  8555. font-style:normal;
  8556. font-size:12px;
  8557. line-height:25px;
  8558. }
  8559. #u220851 .text {
  8560. position:absolute;
  8561. align-self:flex-start;
  8562. padding:0px 0px 0px 0px;
  8563. box-sizing:border-box;
  8564. width:100%;
  8565. }
  8566. #u220851_text {
  8567. border-width:0px;
  8568. white-space:nowrap;
  8569. text-transform:none;
  8570. }
  8571. #u220852 {
  8572. border-width:0px;
  8573. position:absolute;
  8574. left:0px;
  8575. top:0px;
  8576. width:0px;
  8577. height:0px;
  8578. }
  8579. #u220853_div {
  8580. border-width:0px;
  8581. position:absolute;
  8582. left:0px;
  8583. top:0px;
  8584. width:375px;
  8585. height:356px;
  8586. background:inherit;
  8587. background-color:rgba(255, 255, 255, 1);
  8588. border:none;
  8589. border-left:0px;
  8590. border-right:0px;
  8591. border-radius:0px;
  8592. border-top-left-radius:0px;
  8593. border-top-right-radius:0px;
  8594. border-bottom-right-radius:0px;
  8595. border-bottom-left-radius:0px;
  8596. -moz-box-shadow:none;
  8597. -webkit-box-shadow:none;
  8598. box-shadow:none;
  8599. }
  8600. #u220853 {
  8601. border-width:0px;
  8602. position:absolute;
  8603. left:962px;
  8604. top:423px;
  8605. width:375px;
  8606. height:356px;
  8607. display:flex;
  8608. }
  8609. #u220853 .text {
  8610. position:absolute;
  8611. align-self:center;
  8612. padding:2px 2px 2px 2px;
  8613. box-sizing:border-box;
  8614. width:100%;
  8615. }
  8616. #u220853_text {
  8617. border-width:0px;
  8618. word-wrap:break-word;
  8619. text-transform:none;
  8620. visibility:hidden;
  8621. }
  8622. #u220854_div {
  8623. border-width:0px;
  8624. position:absolute;
  8625. left:0px;
  8626. top:0px;
  8627. width:57px;
  8628. height:30px;
  8629. background:inherit;
  8630. background-color:rgba(255, 255, 255, 0);
  8631. border:none;
  8632. border-left:0px;
  8633. border-top:0px;
  8634. border-right:0px;
  8635. border-radius:0px;
  8636. border-bottom-right-radius:0px;
  8637. border-bottom-left-radius:0px;
  8638. -moz-box-shadow:none;
  8639. -webkit-box-shadow:none;
  8640. box-shadow:none;
  8641. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8642. font-weight:400;
  8643. font-style:normal;
  8644. font-size:14px;
  8645. line-height:30px;
  8646. }
  8647. #u220854 {
  8648. border-width:0px;
  8649. position:absolute;
  8650. left:986px;
  8651. top:433px;
  8652. width:57px;
  8653. height:30px;
  8654. display:flex;
  8655. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8656. font-weight:400;
  8657. font-style:normal;
  8658. font-size:14px;
  8659. line-height:30px;
  8660. }
  8661. #u220854 .text {
  8662. position:absolute;
  8663. align-self:flex-start;
  8664. padding:0px 0px 0px 0px;
  8665. box-sizing:border-box;
  8666. width:100%;
  8667. }
  8668. #u220854_text {
  8669. border-width:0px;
  8670. white-space:nowrap;
  8671. text-transform:none;
  8672. }
  8673. #u220855_div {
  8674. border-width:0px;
  8675. position:absolute;
  8676. left:0px;
  8677. top:0px;
  8678. width:181px;
  8679. height:30px;
  8680. background:inherit;
  8681. background-color:rgba(255, 255, 255, 0);
  8682. border:none;
  8683. border-left:0px;
  8684. border-top:0px;
  8685. border-right:0px;
  8686. border-radius:0px;
  8687. border-bottom-right-radius:0px;
  8688. border-bottom-left-radius:0px;
  8689. -moz-box-shadow:none;
  8690. -webkit-box-shadow:none;
  8691. box-shadow:none;
  8692. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8693. font-weight:400;
  8694. font-style:normal;
  8695. font-size:12px;
  8696. line-height:30px;
  8697. }
  8698. #u220855 {
  8699. border-width:0px;
  8700. position:absolute;
  8701. left:986px;
  8702. top:463px;
  8703. width:181px;
  8704. height:30px;
  8705. display:flex;
  8706. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8707. font-weight:400;
  8708. font-style:normal;
  8709. font-size:12px;
  8710. line-height:30px;
  8711. }
  8712. #u220855 .text {
  8713. position:absolute;
  8714. align-self:flex-start;
  8715. padding:0px 0px 0px 0px;
  8716. box-sizing:border-box;
  8717. width:100%;
  8718. }
  8719. #u220855_text {
  8720. border-width:0px;
  8721. white-space:nowrap;
  8722. text-transform:none;
  8723. }
  8724. #u220856_div {
  8725. border-width:0px;
  8726. position:absolute;
  8727. left:0px;
  8728. top:0px;
  8729. width:167px;
  8730. height:30px;
  8731. background:inherit;
  8732. background-color:rgba(255, 255, 255, 0);
  8733. border:none;
  8734. border-left:0px;
  8735. border-top:0px;
  8736. border-right:0px;
  8737. border-radius:0px;
  8738. border-bottom-right-radius:0px;
  8739. border-bottom-left-radius:0px;
  8740. -moz-box-shadow:none;
  8741. -webkit-box-shadow:none;
  8742. box-shadow:none;
  8743. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8744. font-weight:400;
  8745. font-style:normal;
  8746. font-size:12px;
  8747. line-height:30px;
  8748. }
  8749. #u220856 {
  8750. border-width:0px;
  8751. position:absolute;
  8752. left:986px;
  8753. top:493px;
  8754. width:167px;
  8755. height:30px;
  8756. display:flex;
  8757. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8758. font-weight:400;
  8759. font-style:normal;
  8760. font-size:12px;
  8761. line-height:30px;
  8762. }
  8763. #u220856 .text {
  8764. position:absolute;
  8765. align-self:flex-start;
  8766. padding:0px 0px 0px 0px;
  8767. box-sizing:border-box;
  8768. width:100%;
  8769. }
  8770. #u220856_text {
  8771. border-width:0px;
  8772. white-space:nowrap;
  8773. text-transform:none;
  8774. }
  8775. #u220857_img {
  8776. border-width:0px;
  8777. position:absolute;
  8778. left:0px;
  8779. top:0px;
  8780. width:375px;
  8781. height:215px;
  8782. }
  8783. #u220857 {
  8784. border-width:0px;
  8785. position:absolute;
  8786. left:962px;
  8787. top:564px;
  8788. width:375px;
  8789. height:215px;
  8790. display:flex;
  8791. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8792. font-weight:400;
  8793. font-style:normal;
  8794. }
  8795. #u220857 .text {
  8796. position:absolute;
  8797. align-self:center;
  8798. padding:2px 2px 2px 2px;
  8799. box-sizing:border-box;
  8800. width:100%;
  8801. }
  8802. #u220857_text {
  8803. border-width:0px;
  8804. word-wrap:break-word;
  8805. text-transform:none;
  8806. }
  8807. #u220858_div {
  8808. border-width:0px;
  8809. position:absolute;
  8810. left:0px;
  8811. top:0px;
  8812. width:167px;
  8813. height:30px;
  8814. background:inherit;
  8815. background-color:rgba(255, 255, 255, 0);
  8816. border:none;
  8817. border-left:0px;
  8818. border-top:0px;
  8819. border-right:0px;
  8820. border-radius:0px;
  8821. border-bottom-right-radius:0px;
  8822. border-bottom-left-radius:0px;
  8823. -moz-box-shadow:none;
  8824. -webkit-box-shadow:none;
  8825. box-shadow:none;
  8826. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8827. font-weight:400;
  8828. font-style:normal;
  8829. font-size:12px;
  8830. line-height:30px;
  8831. }
  8832. #u220858 {
  8833. border-width:0px;
  8834. position:absolute;
  8835. left:986px;
  8836. top:523px;
  8837. width:167px;
  8838. height:30px;
  8839. display:flex;
  8840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8841. font-weight:400;
  8842. font-style:normal;
  8843. font-size:12px;
  8844. line-height:30px;
  8845. }
  8846. #u220858 .text {
  8847. position:absolute;
  8848. align-self:flex-start;
  8849. padding:0px 0px 0px 0px;
  8850. box-sizing:border-box;
  8851. width:100%;
  8852. }
  8853. #u220858_text {
  8854. border-width:0px;
  8855. white-space:nowrap;
  8856. text-transform:none;
  8857. }
  8858. #u220859_div {
  8859. border-width:0px;
  8860. position:absolute;
  8861. left:0px;
  8862. top:0px;
  8863. width:133px;
  8864. height:30px;
  8865. background:inherit;
  8866. background-color:rgba(255, 255, 255, 0);
  8867. border:none;
  8868. border-left:0px;
  8869. border-top:0px;
  8870. border-right:0px;
  8871. border-radius:0px;
  8872. border-bottom-right-radius:0px;
  8873. border-bottom-left-radius:0px;
  8874. -moz-box-shadow:none;
  8875. -webkit-box-shadow:none;
  8876. box-shadow:none;
  8877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8878. font-weight:400;
  8879. font-style:normal;
  8880. font-size:12px;
  8881. color:#0089FE;
  8882. line-height:30px;
  8883. }
  8884. #u220859 {
  8885. border-width:0px;
  8886. position:absolute;
  8887. left:1190px;
  8888. top:433px;
  8889. width:133px;
  8890. height:30px;
  8891. display:flex;
  8892. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8893. font-weight:400;
  8894. font-style:normal;
  8895. font-size:12px;
  8896. color:#0089FE;
  8897. line-height:30px;
  8898. }
  8899. #u220859 .text {
  8900. position:absolute;
  8901. align-self:flex-start;
  8902. padding:0px 0px 0px 0px;
  8903. box-sizing:border-box;
  8904. width:100%;
  8905. }
  8906. #u220859_text {
  8907. border-width:0px;
  8908. white-space:nowrap;
  8909. text-transform:none;
  8910. }
  8911. #u220860 {
  8912. border-width:0px;
  8913. position:absolute;
  8914. left:0px;
  8915. top:0px;
  8916. width:0px;
  8917. height:0px;
  8918. }
  8919. #u220861_div {
  8920. border-width:0px;
  8921. position:absolute;
  8922. left:0px;
  8923. top:0px;
  8924. width:375px;
  8925. height:180px;
  8926. background:inherit;
  8927. background-color:rgba(255, 255, 255, 1);
  8928. border:none;
  8929. border-top:0px;
  8930. border-bottom:0px;
  8931. border-radius:0px;
  8932. border-top-left-radius:0px;
  8933. border-top-right-radius:0px;
  8934. border-bottom-right-radius:0px;
  8935. border-bottom-left-radius:0px;
  8936. -moz-box-shadow:none;
  8937. -webkit-box-shadow:none;
  8938. box-shadow:none;
  8939. }
  8940. #u220861 {
  8941. border-width:0px;
  8942. position:absolute;
  8943. left:962px;
  8944. top:234px;
  8945. width:375px;
  8946. height:180px;
  8947. display:flex;
  8948. }
  8949. #u220861 .text {
  8950. position:absolute;
  8951. align-self:center;
  8952. padding:2px 2px 2px 2px;
  8953. box-sizing:border-box;
  8954. width:100%;
  8955. }
  8956. #u220861_text {
  8957. border-width:0px;
  8958. word-wrap:break-word;
  8959. text-transform:none;
  8960. visibility:hidden;
  8961. }
  8962. #u220862_div {
  8963. border-width:0px;
  8964. position:absolute;
  8965. left:0px;
  8966. top:0px;
  8967. width:150px;
  8968. height:150px;
  8969. background:inherit;
  8970. background-color:rgba(255, 255, 255, 0);
  8971. border:none;
  8972. border-left:0px;
  8973. border-top:0px;
  8974. border-right:0px;
  8975. border-radius:0px;
  8976. border-bottom-right-radius:0px;
  8977. border-bottom-left-radius:0px;
  8978. -moz-box-shadow:none;
  8979. -webkit-box-shadow:none;
  8980. box-shadow:none;
  8981. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8982. font-weight:400;
  8983. font-style:normal;
  8984. font-size:12px;
  8985. line-height:25px;
  8986. }
  8987. #u220862 {
  8988. border-width:0px;
  8989. position:absolute;
  8990. left:986px;
  8991. top:248px;
  8992. width:150px;
  8993. height:150px;
  8994. display:flex;
  8995. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8996. font-weight:400;
  8997. font-style:normal;
  8998. font-size:12px;
  8999. line-height:25px;
  9000. }
  9001. #u220862 .text {
  9002. position:absolute;
  9003. align-self:flex-start;
  9004. padding:0px 0px 0px 0px;
  9005. box-sizing:border-box;
  9006. width:100%;
  9007. }
  9008. #u220862_text {
  9009. border-width:0px;
  9010. white-space:nowrap;
  9011. text-transform:none;
  9012. }
  9013. #u220863 {
  9014. border-width:0px;
  9015. position:absolute;
  9016. left:0px;
  9017. top:0px;
  9018. width:0px;
  9019. height:0px;
  9020. }
  9021. #u220864_div {
  9022. border-width:0px;
  9023. position:absolute;
  9024. left:0px;
  9025. top:0px;
  9026. width:375px;
  9027. height:60px;
  9028. background:inherit;
  9029. background-color:rgba(255, 255, 255, 1);
  9030. box-sizing:border-box;
  9031. border-width:1px;
  9032. border-style:solid;
  9033. border-color:rgba(242, 242, 242, 1);
  9034. border-radius:20px;
  9035. border-top-left-radius:0px;
  9036. border-top-right-radius:0px;
  9037. -moz-box-shadow:none;
  9038. -webkit-box-shadow:none;
  9039. box-shadow:none;
  9040. }
  9041. #u220864 {
  9042. border-width:0px;
  9043. position:absolute;
  9044. left:962px;
  9045. top:779px;
  9046. width:375px;
  9047. height:60px;
  9048. display:flex;
  9049. }
  9050. #u220864 .text {
  9051. position:absolute;
  9052. align-self:center;
  9053. padding:2px 2px 2px 2px;
  9054. box-sizing:border-box;
  9055. width:100%;
  9056. }
  9057. #u220864_text {
  9058. border-width:0px;
  9059. word-wrap:break-word;
  9060. text-transform:none;
  9061. visibility:hidden;
  9062. }
  9063. #u220865_div {
  9064. border-width:0px;
  9065. position:absolute;
  9066. left:0px;
  9067. top:0px;
  9068. width:342px;
  9069. height:40px;
  9070. background:inherit;
  9071. background-color:rgba(255, 255, 255, 1);
  9072. box-sizing:border-box;
  9073. border-width:1px;
  9074. border-style:solid;
  9075. border-color:rgba(121, 121, 121, 1);
  9076. border-radius:63px;
  9077. -moz-box-shadow:none;
  9078. -webkit-box-shadow:none;
  9079. box-shadow:none;
  9080. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9081. font-weight:400;
  9082. font-style:normal;
  9083. font-size:14px;
  9084. color:#555555;
  9085. }
  9086. #u220865 {
  9087. border-width:0px;
  9088. position:absolute;
  9089. left:981px;
  9090. top:789px;
  9091. width:342px;
  9092. height:40px;
  9093. display:flex;
  9094. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9095. font-weight:400;
  9096. font-style:normal;
  9097. font-size:14px;
  9098. color:#555555;
  9099. }
  9100. #u220865 .text {
  9101. position:absolute;
  9102. align-self:center;
  9103. padding:2px 2px 2px 2px;
  9104. box-sizing:border-box;
  9105. width:100%;
  9106. }
  9107. #u220865_text {
  9108. border-width:0px;
  9109. word-wrap:break-word;
  9110. text-transform:none;
  9111. }
  9112. #u220867_img {
  9113. border-width:0px;
  9114. position:absolute;
  9115. left:0px;
  9116. top:0px;
  9117. width:433px;
  9118. height:865px;
  9119. }
  9120. #u220867 {
  9121. border-width:0px;
  9122. position:absolute;
  9123. left:1396px;
  9124. top:0px;
  9125. width:433px;
  9126. height:865px;
  9127. display:flex;
  9128. }
  9129. #u220867 .text {
  9130. position:absolute;
  9131. align-self:center;
  9132. padding:2px 2px 2px 2px;
  9133. box-sizing:border-box;
  9134. width:100%;
  9135. }
  9136. #u220867_text {
  9137. border-width:0px;
  9138. word-wrap:break-word;
  9139. text-transform:none;
  9140. visibility:hidden;
  9141. }
  9142. #u220868_div {
  9143. border-width:0px;
  9144. position:absolute;
  9145. left:0px;
  9146. top:0px;
  9147. width:375px;
  9148. height:40px;
  9149. background:inherit;
  9150. background-color:rgba(255, 255, 255, 1);
  9151. box-sizing:border-box;
  9152. border-width:1px;
  9153. border-style:solid;
  9154. border-color:rgba(215, 215, 215, 1);
  9155. border-left:0px;
  9156. border-top:0px;
  9157. border-right:0px;
  9158. border-radius:0px;
  9159. border-bottom-right-radius:0px;
  9160. border-bottom-left-radius:0px;
  9161. -moz-box-shadow:none;
  9162. -webkit-box-shadow:none;
  9163. box-shadow:none;
  9164. }
  9165. #u220868 {
  9166. border-width:0px;
  9167. position:absolute;
  9168. left:1425px;
  9169. top:67px;
  9170. width:375px;
  9171. height:40px;
  9172. display:flex;
  9173. }
  9174. #u220868 .text {
  9175. position:absolute;
  9176. align-self:center;
  9177. padding:2px 2px 2px 2px;
  9178. box-sizing:border-box;
  9179. width:100%;
  9180. }
  9181. #u220868_text {
  9182. border-width:0px;
  9183. word-wrap:break-word;
  9184. text-transform:none;
  9185. visibility:hidden;
  9186. }
  9187. #u220869 {
  9188. border-width:0px;
  9189. position:absolute;
  9190. left:0px;
  9191. top:0px;
  9192. width:0px;
  9193. height:0px;
  9194. }
  9195. #u220870_div {
  9196. border-width:0px;
  9197. position:absolute;
  9198. left:0px;
  9199. top:0px;
  9200. width:88px;
  9201. height:32px;
  9202. background:inherit;
  9203. background-color:rgba(255, 255, 255, 1);
  9204. box-sizing:border-box;
  9205. border-width:1px;
  9206. border-style:solid;
  9207. border-color:rgba(242, 242, 242, 1);
  9208. border-radius:33px;
  9209. -moz-box-shadow:none;
  9210. -webkit-box-shadow:none;
  9211. box-shadow:none;
  9212. }
  9213. #u220870 {
  9214. border-width:0px;
  9215. position:absolute;
  9216. left:1705px;
  9217. top:71px;
  9218. width:88px;
  9219. height:32px;
  9220. display:flex;
  9221. }
  9222. #u220870 .text {
  9223. position:absolute;
  9224. align-self:center;
  9225. padding:2px 2px 2px 2px;
  9226. box-sizing:border-box;
  9227. width:100%;
  9228. }
  9229. #u220870_text {
  9230. border-width:0px;
  9231. word-wrap:break-word;
  9232. text-transform:none;
  9233. visibility:hidden;
  9234. }
  9235. #u220871 {
  9236. border-width:0px;
  9237. position:absolute;
  9238. left:0px;
  9239. top:0px;
  9240. width:0px;
  9241. height:0px;
  9242. }
  9243. #u220872_img {
  9244. border-width:0px;
  9245. position:absolute;
  9246. left:0px;
  9247. top:0px;
  9248. width:18px;
  9249. height:18px;
  9250. }
  9251. #u220872 {
  9252. border-width:0px;
  9253. position:absolute;
  9254. left:1768px;
  9255. top:78px;
  9256. width:18px;
  9257. height:18px;
  9258. display:flex;
  9259. }
  9260. #u220872 .text {
  9261. position:absolute;
  9262. align-self:center;
  9263. padding:2px 2px 2px 2px;
  9264. box-sizing:border-box;
  9265. width:100%;
  9266. }
  9267. #u220872_text {
  9268. border-width:0px;
  9269. word-wrap:break-word;
  9270. text-transform:none;
  9271. visibility:hidden;
  9272. }
  9273. #u220873_img {
  9274. border-width:0px;
  9275. position:absolute;
  9276. left:0px;
  9277. top:0px;
  9278. width:6px;
  9279. height:6px;
  9280. }
  9281. #u220873 {
  9282. border-width:0px;
  9283. position:absolute;
  9284. left:1774px;
  9285. top:84px;
  9286. width:6px;
  9287. height:6px;
  9288. display:flex;
  9289. }
  9290. #u220873 .text {
  9291. position:absolute;
  9292. align-self:center;
  9293. padding:2px 2px 2px 2px;
  9294. box-sizing:border-box;
  9295. width:100%;
  9296. }
  9297. #u220873_text {
  9298. border-width:0px;
  9299. word-wrap:break-word;
  9300. text-transform:none;
  9301. visibility:hidden;
  9302. }
  9303. #u220874 {
  9304. border-width:0px;
  9305. position:absolute;
  9306. left:0px;
  9307. top:0px;
  9308. width:0px;
  9309. height:0px;
  9310. }
  9311. #u220875_img {
  9312. border-width:0px;
  9313. position:absolute;
  9314. left:0px;
  9315. top:0px;
  9316. width:5px;
  9317. height:5px;
  9318. }
  9319. #u220875 {
  9320. border-width:0px;
  9321. position:absolute;
  9322. left:1719px;
  9323. top:85px;
  9324. width:5px;
  9325. height:5px;
  9326. display:flex;
  9327. }
  9328. #u220875 .text {
  9329. position:absolute;
  9330. align-self:center;
  9331. padding:2px 2px 2px 2px;
  9332. box-sizing:border-box;
  9333. width:100%;
  9334. }
  9335. #u220875_text {
  9336. border-width:0px;
  9337. word-wrap:break-word;
  9338. text-transform:none;
  9339. visibility:hidden;
  9340. }
  9341. #u220876_img {
  9342. border-width:0px;
  9343. position:absolute;
  9344. left:0px;
  9345. top:0px;
  9346. width:5px;
  9347. height:5px;
  9348. }
  9349. #u220876 {
  9350. border-width:0px;
  9351. position:absolute;
  9352. left:1735px;
  9353. top:85px;
  9354. width:5px;
  9355. height:5px;
  9356. display:flex;
  9357. }
  9358. #u220876 .text {
  9359. position:absolute;
  9360. align-self:center;
  9361. padding:2px 2px 2px 2px;
  9362. box-sizing:border-box;
  9363. width:100%;
  9364. }
  9365. #u220876_text {
  9366. border-width:0px;
  9367. word-wrap:break-word;
  9368. text-transform:none;
  9369. visibility:hidden;
  9370. }
  9371. #u220877_img {
  9372. border-width:0px;
  9373. position:absolute;
  9374. left:0px;
  9375. top:0px;
  9376. width:7px;
  9377. height:7px;
  9378. }
  9379. #u220877 {
  9380. border-width:0px;
  9381. position:absolute;
  9382. left:1726px;
  9383. top:84px;
  9384. width:7px;
  9385. height:7px;
  9386. display:flex;
  9387. }
  9388. #u220877 .text {
  9389. position:absolute;
  9390. align-self:center;
  9391. padding:2px 2px 2px 2px;
  9392. box-sizing:border-box;
  9393. width:100%;
  9394. }
  9395. #u220877_text {
  9396. border-width:0px;
  9397. word-wrap:break-word;
  9398. text-transform:none;
  9399. visibility:hidden;
  9400. }
  9401. #u220878_img {
  9402. border-width:0px;
  9403. position:absolute;
  9404. left:0px;
  9405. top:0px;
  9406. width:19px;
  9407. height:2px;
  9408. }
  9409. #u220878 {
  9410. border-width:0px;
  9411. position:absolute;
  9412. left:1743px;
  9413. top:87px;
  9414. width:18px;
  9415. height:1px;
  9416. display:flex;
  9417. -webkit-transform:rotate(90deg);
  9418. -moz-transform:rotate(90deg);
  9419. -ms-transform:rotate(90deg);
  9420. transform:rotate(90deg);
  9421. }
  9422. #u220878 .text {
  9423. position:absolute;
  9424. align-self:center;
  9425. padding:2px 2px 2px 2px;
  9426. box-sizing:border-box;
  9427. width:100%;
  9428. }
  9429. #u220878_text {
  9430. border-width:0px;
  9431. word-wrap:break-word;
  9432. text-transform:none;
  9433. visibility:hidden;
  9434. }
  9435. #u220879_img {
  9436. border-width:0px;
  9437. position:absolute;
  9438. left:0px;
  9439. top:0px;
  9440. width:375px;
  9441. height:44px;
  9442. }
  9443. #u220879 {
  9444. border-width:0px;
  9445. position:absolute;
  9446. left:1425px;
  9447. top:24px;
  9448. width:375px;
  9449. height:44px;
  9450. display:flex;
  9451. }
  9452. #u220879 .text {
  9453. position:absolute;
  9454. align-self:center;
  9455. padding:2px 2px 2px 2px;
  9456. box-sizing:border-box;
  9457. width:100%;
  9458. }
  9459. #u220879_text {
  9460. border-width:0px;
  9461. word-wrap:break-word;
  9462. text-transform:none;
  9463. visibility:hidden;
  9464. }
  9465. #u220880_div {
  9466. border-width:0px;
  9467. position:absolute;
  9468. left:0px;
  9469. top:0px;
  9470. width:375px;
  9471. height:50px;
  9472. background:inherit;
  9473. background-color:rgba(255, 255, 255, 1);
  9474. box-sizing:border-box;
  9475. border-width:1px;
  9476. border-style:solid;
  9477. border-color:rgba(242, 242, 242, 1);
  9478. border-radius:26px;
  9479. border-top-left-radius:0px;
  9480. border-top-right-radius:0px;
  9481. -moz-box-shadow:none;
  9482. -webkit-box-shadow:none;
  9483. box-shadow:none;
  9484. }
  9485. #u220880 {
  9486. border-width:0px;
  9487. position:absolute;
  9488. left:1425px;
  9489. top:788px;
  9490. width:375px;
  9491. height:50px;
  9492. display:flex;
  9493. }
  9494. #u220880 .text {
  9495. position:absolute;
  9496. align-self:center;
  9497. padding:2px 2px 2px 2px;
  9498. box-sizing:border-box;
  9499. width:100%;
  9500. }
  9501. #u220880_text {
  9502. border-width:0px;
  9503. word-wrap:break-word;
  9504. text-transform:none;
  9505. visibility:hidden;
  9506. }
  9507. #u220881 {
  9508. border-width:0px;
  9509. position:absolute;
  9510. left:0px;
  9511. top:0px;
  9512. width:0px;
  9513. height:0px;
  9514. }
  9515. #u220882_img {
  9516. border-width:0px;
  9517. position:absolute;
  9518. left:0px;
  9519. top:0px;
  9520. width:24px;
  9521. height:24px;
  9522. }
  9523. #u220882 {
  9524. border-width:0px;
  9525. position:absolute;
  9526. left:1465px;
  9527. top:792px;
  9528. width:24px;
  9529. height:24px;
  9530. display:flex;
  9531. font-size:8px;
  9532. }
  9533. #u220882 .text {
  9534. position:absolute;
  9535. align-self:center;
  9536. padding:2px 2px 2px 2px;
  9537. box-sizing:border-box;
  9538. width:100%;
  9539. }
  9540. #u220882_text {
  9541. border-width:0px;
  9542. word-wrap:break-word;
  9543. text-transform:none;
  9544. }
  9545. #u220883_div {
  9546. border-width:0px;
  9547. position:absolute;
  9548. left:0px;
  9549. top:0px;
  9550. width:25px;
  9551. height:17px;
  9552. background:inherit;
  9553. background-color:rgba(255, 255, 255, 0);
  9554. border:none;
  9555. border-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. }
  9564. #u220883 {
  9565. border-width:0px;
  9566. position:absolute;
  9567. left:1465px;
  9568. top:817px;
  9569. width:25px;
  9570. height:17px;
  9571. display:flex;
  9572. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9573. font-weight:400;
  9574. font-style:normal;
  9575. font-size:12px;
  9576. }
  9577. #u220883 .text {
  9578. position:absolute;
  9579. align-self:flex-start;
  9580. padding:0px 0px 0px 0px;
  9581. box-sizing:border-box;
  9582. width:100%;
  9583. }
  9584. #u220883_text {
  9585. border-width:0px;
  9586. white-space:nowrap;
  9587. text-transform:none;
  9588. }
  9589. #u220884 {
  9590. border-width:0px;
  9591. position:absolute;
  9592. left:0px;
  9593. top:0px;
  9594. width:0px;
  9595. height:0px;
  9596. }
  9597. #u220885_img {
  9598. border-width:0px;
  9599. position:absolute;
  9600. left:0px;
  9601. top:0px;
  9602. width:24px;
  9603. height:24px;
  9604. }
  9605. #u220885 {
  9606. border-width:0px;
  9607. position:absolute;
  9608. left:1735px;
  9609. top:794px;
  9610. width:24px;
  9611. height:24px;
  9612. display:flex;
  9613. font-size:8px;
  9614. }
  9615. #u220885 .text {
  9616. position:absolute;
  9617. align-self:center;
  9618. padding:2px 2px 2px 2px;
  9619. box-sizing:border-box;
  9620. width:100%;
  9621. }
  9622. #u220885_text {
  9623. border-width:0px;
  9624. word-wrap:break-word;
  9625. text-transform:none;
  9626. }
  9627. #u220886_div {
  9628. border-width:0px;
  9629. position:absolute;
  9630. left:0px;
  9631. top:0px;
  9632. width:25px;
  9633. height:17px;
  9634. background:inherit;
  9635. background-color:rgba(255, 255, 255, 0);
  9636. border:none;
  9637. border-radius:0px;
  9638. -moz-box-shadow:none;
  9639. -webkit-box-shadow:none;
  9640. box-shadow:none;
  9641. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9642. font-weight:400;
  9643. font-style:normal;
  9644. font-size:12px;
  9645. }
  9646. #u220886 {
  9647. border-width:0px;
  9648. position:absolute;
  9649. left:1735px;
  9650. top:819px;
  9651. width:25px;
  9652. height:17px;
  9653. display:flex;
  9654. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9655. font-weight:400;
  9656. font-style:normal;
  9657. font-size:12px;
  9658. }
  9659. #u220886 .text {
  9660. position:absolute;
  9661. align-self:flex-start;
  9662. padding:0px 0px 0px 0px;
  9663. box-sizing:border-box;
  9664. width:100%;
  9665. }
  9666. #u220886_text {
  9667. border-width:0px;
  9668. white-space:nowrap;
  9669. text-transform:none;
  9670. }
  9671. #u220887_div {
  9672. border-width:0px;
  9673. position:absolute;
  9674. left:0px;
  9675. top:0px;
  9676. width:375px;
  9677. height:681px;
  9678. background:inherit;
  9679. background-color:rgba(242, 242, 242, 0.462745098039216);
  9680. border:none;
  9681. border-radius:0px;
  9682. -moz-box-shadow:none;
  9683. -webkit-box-shadow:none;
  9684. box-shadow:none;
  9685. }
  9686. #u220887 {
  9687. border-width:0px;
  9688. position:absolute;
  9689. left:1425px;
  9690. top:107px;
  9691. width:375px;
  9692. height:681px;
  9693. display:flex;
  9694. }
  9695. #u220887 .text {
  9696. position:absolute;
  9697. align-self:center;
  9698. padding:2px 2px 2px 2px;
  9699. box-sizing:border-box;
  9700. width:100%;
  9701. }
  9702. #u220887_text {
  9703. border-width:0px;
  9704. word-wrap:break-word;
  9705. text-transform:none;
  9706. visibility:hidden;
  9707. }
  9708. #u220888 {
  9709. border-width:0px;
  9710. position:absolute;
  9711. left:0px;
  9712. top:0px;
  9713. width:0px;
  9714. height:0px;
  9715. }
  9716. #u220889_img {
  9717. border-width:0px;
  9718. position:absolute;
  9719. left:0px;
  9720. top:0px;
  9721. width:24px;
  9722. height:24px;
  9723. }
  9724. #u220889 {
  9725. border-width:0px;
  9726. position:absolute;
  9727. left:1647px;
  9728. top:792px;
  9729. width:24px;
  9730. height:24px;
  9731. display:flex;
  9732. font-size:8px;
  9733. }
  9734. #u220889 .text {
  9735. position:absolute;
  9736. align-self:center;
  9737. padding:2px 2px 2px 2px;
  9738. box-sizing:border-box;
  9739. width:100%;
  9740. }
  9741. #u220889_text {
  9742. border-width:0px;
  9743. word-wrap:break-word;
  9744. text-transform:none;
  9745. }
  9746. #u220890_div {
  9747. border-width:0px;
  9748. position:absolute;
  9749. left:0px;
  9750. top:0px;
  9751. width:37px;
  9752. height:17px;
  9753. background:inherit;
  9754. background-color:rgba(255, 255, 255, 0);
  9755. border:none;
  9756. border-radius:0px;
  9757. -moz-box-shadow:none;
  9758. -webkit-box-shadow:none;
  9759. box-shadow:none;
  9760. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9761. font-weight:400;
  9762. font-style:normal;
  9763. font-size:12px;
  9764. }
  9765. #u220890 {
  9766. border-width:0px;
  9767. position:absolute;
  9768. left:1641px;
  9769. top:817px;
  9770. width:37px;
  9771. height:17px;
  9772. display:flex;
  9773. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9774. font-weight:400;
  9775. font-style:normal;
  9776. font-size:12px;
  9777. }
  9778. #u220890 .text {
  9779. position:absolute;
  9780. align-self:flex-start;
  9781. padding:0px 0px 0px 0px;
  9782. box-sizing:border-box;
  9783. width:100%;
  9784. }
  9785. #u220890_text {
  9786. border-width:0px;
  9787. white-space:nowrap;
  9788. text-transform:none;
  9789. }
  9790. #u220891 {
  9791. border-width:0px;
  9792. position:absolute;
  9793. left:0px;
  9794. top:0px;
  9795. width:0px;
  9796. height:0px;
  9797. }
  9798. #u220892_img {
  9799. border-width:0px;
  9800. position:absolute;
  9801. left:0px;
  9802. top:0px;
  9803. width:24px;
  9804. height:24px;
  9805. }
  9806. #u220892 {
  9807. border-width:0px;
  9808. position:absolute;
  9809. left:1553px;
  9810. top:792px;
  9811. width:24px;
  9812. height:24px;
  9813. display:flex;
  9814. font-size:8px;
  9815. }
  9816. #u220892 .text {
  9817. position:absolute;
  9818. align-self:center;
  9819. padding:2px 2px 2px 2px;
  9820. box-sizing:border-box;
  9821. width:100%;
  9822. }
  9823. #u220892_text {
  9824. border-width:0px;
  9825. word-wrap:break-word;
  9826. text-transform:none;
  9827. }
  9828. #u220893_div {
  9829. border-width:0px;
  9830. position:absolute;
  9831. left:0px;
  9832. top:0px;
  9833. width:37px;
  9834. height:17px;
  9835. background:inherit;
  9836. background-color:rgba(255, 255, 255, 0);
  9837. border:none;
  9838. border-radius:0px;
  9839. -moz-box-shadow:none;
  9840. -webkit-box-shadow:none;
  9841. box-shadow:none;
  9842. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9843. font-weight:400;
  9844. font-style:normal;
  9845. font-size:12px;
  9846. }
  9847. #u220893 {
  9848. border-width:0px;
  9849. position:absolute;
  9850. left:1547px;
  9851. top:817px;
  9852. width:37px;
  9853. height:17px;
  9854. display:flex;
  9855. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9856. font-weight:400;
  9857. font-style:normal;
  9858. font-size:12px;
  9859. }
  9860. #u220893 .text {
  9861. position:absolute;
  9862. align-self:flex-start;
  9863. padding:0px 0px 0px 0px;
  9864. box-sizing:border-box;
  9865. width:100%;
  9866. }
  9867. #u220893_text {
  9868. border-width:0px;
  9869. white-space:nowrap;
  9870. text-transform:none;
  9871. }
  9872. #u220894_div {
  9873. border-width:0px;
  9874. position:absolute;
  9875. left:0px;
  9876. top:0px;
  9877. width:375px;
  9878. height:732px;
  9879. background:inherit;
  9880. background-color:rgba(242, 242, 242, 0.996078431372549);
  9881. border:none;
  9882. border-top:0px;
  9883. border-radius:28px;
  9884. border-top-left-radius:0px;
  9885. border-top-right-radius:0px;
  9886. -moz-box-shadow:none;
  9887. -webkit-box-shadow:none;
  9888. box-shadow:none;
  9889. }
  9890. #u220894 {
  9891. border-width:0px;
  9892. position:absolute;
  9893. left:1425px;
  9894. top:107px;
  9895. width:375px;
  9896. height:732px;
  9897. display:flex;
  9898. }
  9899. #u220894 .text {
  9900. position:absolute;
  9901. align-self:center;
  9902. padding:2px 2px 2px 2px;
  9903. box-sizing:border-box;
  9904. width:100%;
  9905. }
  9906. #u220894_text {
  9907. border-width:0px;
  9908. word-wrap:break-word;
  9909. text-transform:none;
  9910. visibility:hidden;
  9911. }
  9912. #u220895_div {
  9913. border-width:0px;
  9914. position:absolute;
  9915. left:0px;
  9916. top:0px;
  9917. width:375px;
  9918. height:125px;
  9919. background:inherit;
  9920. background-color:rgba(255, 255, 255, 1);
  9921. border:none;
  9922. border-left:0px;
  9923. border-top:0px;
  9924. border-right:0px;
  9925. border-radius:0px;
  9926. border-bottom-right-radius:0px;
  9927. border-bottom-left-radius:0px;
  9928. -moz-box-shadow:none;
  9929. -webkit-box-shadow:none;
  9930. box-shadow:none;
  9931. }
  9932. #u220895 {
  9933. border-width:0px;
  9934. position:absolute;
  9935. left:1425px;
  9936. top:108px;
  9937. width:375px;
  9938. height:125px;
  9939. display:flex;
  9940. }
  9941. #u220895 .text {
  9942. position:absolute;
  9943. align-self:center;
  9944. padding:2px 2px 2px 2px;
  9945. box-sizing:border-box;
  9946. width:100%;
  9947. }
  9948. #u220895_text {
  9949. border-width:0px;
  9950. word-wrap:break-word;
  9951. text-transform:none;
  9952. visibility:hidden;
  9953. }
  9954. #u220896_div {
  9955. border-width:0px;
  9956. position:absolute;
  9957. left:0px;
  9958. top:0px;
  9959. width:43px;
  9960. height:20px;
  9961. background:inherit;
  9962. background-color:rgba(255, 255, 255, 0);
  9963. border:none;
  9964. border-radius:0px;
  9965. -moz-box-shadow:none;
  9966. -webkit-box-shadow:none;
  9967. box-shadow:none;
  9968. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9969. font-weight:400;
  9970. font-style:normal;
  9971. color:#0089FE;
  9972. }
  9973. #u220896 {
  9974. border-width:0px;
  9975. position:absolute;
  9976. left:1738px;
  9977. top:124px;
  9978. width:43px;
  9979. height:20px;
  9980. display:flex;
  9981. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9982. font-weight:400;
  9983. font-style:normal;
  9984. color:#0089FE;
  9985. }
  9986. #u220896 .text {
  9987. position:absolute;
  9988. align-self:flex-start;
  9989. padding:0px 0px 0px 0px;
  9990. box-sizing:border-box;
  9991. width:100%;
  9992. }
  9993. #u220896_text {
  9994. border-width:0px;
  9995. white-space:nowrap;
  9996. text-transform:none;
  9997. }
  9998. #u220897_div {
  9999. border-width:0px;
  10000. position:absolute;
  10001. left:0px;
  10002. top:0px;
  10003. width:124px;
  10004. height:30px;
  10005. background:inherit;
  10006. background-color:rgba(255, 255, 255, 0);
  10007. border:none;
  10008. border-left:0px;
  10009. border-top:0px;
  10010. border-right:0px;
  10011. border-radius:0px;
  10012. border-bottom-right-radius:0px;
  10013. border-bottom-left-radius:0px;
  10014. -moz-box-shadow:none;
  10015. -webkit-box-shadow:none;
  10016. box-shadow:none;
  10017. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10018. font-weight:500;
  10019. font-style:normal;
  10020. font-size:14px;
  10021. line-height:30px;
  10022. }
  10023. #u220897 {
  10024. border-width:0px;
  10025. position:absolute;
  10026. left:1438px;
  10027. top:118px;
  10028. width:124px;
  10029. height:30px;
  10030. display:flex;
  10031. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10032. font-weight:500;
  10033. font-style:normal;
  10034. font-size:14px;
  10035. line-height:30px;
  10036. }
  10037. #u220897 .text {
  10038. position:absolute;
  10039. align-self:flex-start;
  10040. padding:0px 0px 0px 0px;
  10041. box-sizing:border-box;
  10042. width:100%;
  10043. }
  10044. #u220897_text {
  10045. border-width:0px;
  10046. white-space:nowrap;
  10047. text-transform:none;
  10048. }
  10049. #u220898_div {
  10050. border-width:0px;
  10051. position:absolute;
  10052. left:0px;
  10053. top:0px;
  10054. width:167px;
  10055. height:75px;
  10056. background:inherit;
  10057. background-color:rgba(255, 255, 255, 0);
  10058. border:none;
  10059. border-left:0px;
  10060. border-top:0px;
  10061. border-right:0px;
  10062. border-radius:0px;
  10063. border-bottom-right-radius:0px;
  10064. border-bottom-left-radius:0px;
  10065. -moz-box-shadow:none;
  10066. -webkit-box-shadow:none;
  10067. box-shadow:none;
  10068. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10069. font-weight:400;
  10070. font-style:normal;
  10071. font-size:12px;
  10072. line-height:25px;
  10073. }
  10074. #u220898 {
  10075. border-width:0px;
  10076. position:absolute;
  10077. left:1438px;
  10078. top:148px;
  10079. width:167px;
  10080. height:75px;
  10081. display:flex;
  10082. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10083. font-weight:400;
  10084. font-style:normal;
  10085. font-size:12px;
  10086. line-height:25px;
  10087. }
  10088. #u220898 .text {
  10089. position:absolute;
  10090. align-self:flex-start;
  10091. padding:0px 0px 0px 0px;
  10092. box-sizing:border-box;
  10093. width:100%;
  10094. }
  10095. #u220898_text {
  10096. border-width:0px;
  10097. white-space:nowrap;
  10098. text-transform:none;
  10099. }
  10100. #u220899_div {
  10101. border-width:0px;
  10102. position:absolute;
  10103. left:0px;
  10104. top:0px;
  10105. width:375px;
  10106. height:41px;
  10107. background:inherit;
  10108. background-color:rgba(255, 255, 255, 1);
  10109. box-sizing:border-box;
  10110. border-width:1px;
  10111. border-style:solid;
  10112. border-color:rgba(215, 215, 215, 1);
  10113. border-left:0px;
  10114. border-top:0px;
  10115. border-right:0px;
  10116. border-radius:0px;
  10117. border-bottom-right-radius:0px;
  10118. border-bottom-left-radius:0px;
  10119. -moz-box-shadow:none;
  10120. -webkit-box-shadow:none;
  10121. box-shadow:none;
  10122. }
  10123. #u220899 {
  10124. border-width:0px;
  10125. position:absolute;
  10126. left:1425px;
  10127. top:67px;
  10128. width:375px;
  10129. height:41px;
  10130. display:flex;
  10131. }
  10132. #u220899 .text {
  10133. position:absolute;
  10134. align-self:center;
  10135. padding:2px 2px 2px 2px;
  10136. box-sizing:border-box;
  10137. width:100%;
  10138. }
  10139. #u220899_text {
  10140. border-width:0px;
  10141. word-wrap:break-word;
  10142. text-transform:none;
  10143. visibility:hidden;
  10144. }
  10145. #u220900 {
  10146. border-width:0px;
  10147. position:absolute;
  10148. left:0px;
  10149. top:0px;
  10150. width:0px;
  10151. height:0px;
  10152. }
  10153. #u220901_div {
  10154. border-width:0px;
  10155. position:absolute;
  10156. left:0px;
  10157. top:0px;
  10158. width:88px;
  10159. height:32px;
  10160. background:inherit;
  10161. background-color:rgba(255, 255, 255, 1);
  10162. box-sizing:border-box;
  10163. border-width:1px;
  10164. border-style:solid;
  10165. border-color:rgba(242, 242, 242, 1);
  10166. border-radius:33px;
  10167. -moz-box-shadow:none;
  10168. -webkit-box-shadow:none;
  10169. box-shadow:none;
  10170. }
  10171. #u220901 {
  10172. border-width:0px;
  10173. position:absolute;
  10174. left:1705px;
  10175. top:71px;
  10176. width:88px;
  10177. height:32px;
  10178. display:flex;
  10179. }
  10180. #u220901 .text {
  10181. position:absolute;
  10182. align-self:center;
  10183. padding:2px 2px 2px 2px;
  10184. box-sizing:border-box;
  10185. width:100%;
  10186. }
  10187. #u220901_text {
  10188. border-width:0px;
  10189. word-wrap:break-word;
  10190. text-transform:none;
  10191. visibility:hidden;
  10192. }
  10193. #u220902 {
  10194. border-width:0px;
  10195. position:absolute;
  10196. left:0px;
  10197. top:0px;
  10198. width:0px;
  10199. height:0px;
  10200. }
  10201. #u220903_img {
  10202. border-width:0px;
  10203. position:absolute;
  10204. left:0px;
  10205. top:0px;
  10206. width:18px;
  10207. height:18px;
  10208. }
  10209. #u220903 {
  10210. border-width:0px;
  10211. position:absolute;
  10212. left:1768px;
  10213. top:78px;
  10214. width:18px;
  10215. height:18px;
  10216. display:flex;
  10217. }
  10218. #u220903 .text {
  10219. position:absolute;
  10220. align-self:center;
  10221. padding:2px 2px 2px 2px;
  10222. box-sizing:border-box;
  10223. width:100%;
  10224. }
  10225. #u220903_text {
  10226. border-width:0px;
  10227. word-wrap:break-word;
  10228. text-transform:none;
  10229. visibility:hidden;
  10230. }
  10231. #u220904_img {
  10232. border-width:0px;
  10233. position:absolute;
  10234. left:0px;
  10235. top:0px;
  10236. width:6px;
  10237. height:6px;
  10238. }
  10239. #u220904 {
  10240. border-width:0px;
  10241. position:absolute;
  10242. left:1774px;
  10243. top:84px;
  10244. width:6px;
  10245. height:6px;
  10246. display:flex;
  10247. }
  10248. #u220904 .text {
  10249. position:absolute;
  10250. align-self:center;
  10251. padding:2px 2px 2px 2px;
  10252. box-sizing:border-box;
  10253. width:100%;
  10254. }
  10255. #u220904_text {
  10256. border-width:0px;
  10257. word-wrap:break-word;
  10258. text-transform:none;
  10259. visibility:hidden;
  10260. }
  10261. #u220905 {
  10262. border-width:0px;
  10263. position:absolute;
  10264. left:0px;
  10265. top:0px;
  10266. width:0px;
  10267. height:0px;
  10268. }
  10269. #u220906_img {
  10270. border-width:0px;
  10271. position:absolute;
  10272. left:0px;
  10273. top:0px;
  10274. width:5px;
  10275. height:5px;
  10276. }
  10277. #u220906 {
  10278. border-width:0px;
  10279. position:absolute;
  10280. left:1719px;
  10281. top:85px;
  10282. width:5px;
  10283. height:5px;
  10284. display:flex;
  10285. }
  10286. #u220906 .text {
  10287. position:absolute;
  10288. align-self:center;
  10289. padding:2px 2px 2px 2px;
  10290. box-sizing:border-box;
  10291. width:100%;
  10292. }
  10293. #u220906_text {
  10294. border-width:0px;
  10295. word-wrap:break-word;
  10296. text-transform:none;
  10297. visibility:hidden;
  10298. }
  10299. #u220907_img {
  10300. border-width:0px;
  10301. position:absolute;
  10302. left:0px;
  10303. top:0px;
  10304. width:5px;
  10305. height:5px;
  10306. }
  10307. #u220907 {
  10308. border-width:0px;
  10309. position:absolute;
  10310. left:1735px;
  10311. top:85px;
  10312. width:5px;
  10313. height:5px;
  10314. display:flex;
  10315. }
  10316. #u220907 .text {
  10317. position:absolute;
  10318. align-self:center;
  10319. padding:2px 2px 2px 2px;
  10320. box-sizing:border-box;
  10321. width:100%;
  10322. }
  10323. #u220907_text {
  10324. border-width:0px;
  10325. word-wrap:break-word;
  10326. text-transform:none;
  10327. visibility:hidden;
  10328. }
  10329. #u220908_img {
  10330. border-width:0px;
  10331. position:absolute;
  10332. left:0px;
  10333. top:0px;
  10334. width:7px;
  10335. height:7px;
  10336. }
  10337. #u220908 {
  10338. border-width:0px;
  10339. position:absolute;
  10340. left:1726px;
  10341. top:84px;
  10342. width:7px;
  10343. height:7px;
  10344. display:flex;
  10345. }
  10346. #u220908 .text {
  10347. position:absolute;
  10348. align-self:center;
  10349. padding:2px 2px 2px 2px;
  10350. box-sizing:border-box;
  10351. width:100%;
  10352. }
  10353. #u220908_text {
  10354. border-width:0px;
  10355. word-wrap:break-word;
  10356. text-transform:none;
  10357. visibility:hidden;
  10358. }
  10359. #u220909_img {
  10360. border-width:0px;
  10361. position:absolute;
  10362. left:0px;
  10363. top:0px;
  10364. width:19px;
  10365. height:2px;
  10366. }
  10367. #u220909 {
  10368. border-width:0px;
  10369. position:absolute;
  10370. left:1743px;
  10371. top:87px;
  10372. width:18px;
  10373. height:1px;
  10374. display:flex;
  10375. -webkit-transform:rotate(90deg);
  10376. -moz-transform:rotate(90deg);
  10377. -ms-transform:rotate(90deg);
  10378. transform:rotate(90deg);
  10379. }
  10380. #u220909 .text {
  10381. position:absolute;
  10382. align-self:center;
  10383. padding:2px 2px 2px 2px;
  10384. box-sizing:border-box;
  10385. width:100%;
  10386. }
  10387. #u220909_text {
  10388. border-width:0px;
  10389. word-wrap:break-word;
  10390. text-transform:none;
  10391. visibility:hidden;
  10392. }
  10393. #u220910_div {
  10394. border-width:0px;
  10395. position:absolute;
  10396. left:0px;
  10397. top:0px;
  10398. width:12px;
  10399. height:12px;
  10400. background:inherit;
  10401. background-color:rgba(255, 255, 255, 0);
  10402. box-sizing:border-box;
  10403. border-width:2px;
  10404. border-style:solid;
  10405. border-color:rgba(51, 51, 51, 1);
  10406. border-right:0px;
  10407. border-bottom:0px;
  10408. border-radius:0px;
  10409. border-top-right-radius:0px;
  10410. border-bottom-left-radius:0px;
  10411. -moz-box-shadow:none;
  10412. -webkit-box-shadow:none;
  10413. box-shadow:none;
  10414. }
  10415. #u220910 {
  10416. border-width:0px;
  10417. position:absolute;
  10418. left:1440px;
  10419. top:81px;
  10420. width:12px;
  10421. height:12px;
  10422. display:flex;
  10423. -webkit-transform:rotate(315deg);
  10424. -moz-transform:rotate(315deg);
  10425. -ms-transform:rotate(315deg);
  10426. transform:rotate(315deg);
  10427. }
  10428. #u220910 .text {
  10429. position:absolute;
  10430. align-self:center;
  10431. padding:2px 2px 2px 2px;
  10432. box-sizing:border-box;
  10433. width:100%;
  10434. }
  10435. #u220910_text {
  10436. border-width:0px;
  10437. word-wrap:break-word;
  10438. text-transform:none;
  10439. visibility:hidden;
  10440. }
  10441. #u220911_div {
  10442. border-width:0px;
  10443. position:absolute;
  10444. left:0px;
  10445. top:0px;
  10446. width:73px;
  10447. height:25px;
  10448. background:inherit;
  10449. background-color:rgba(255, 255, 255, 0);
  10450. border:none;
  10451. border-radius:0px;
  10452. -moz-box-shadow:none;
  10453. -webkit-box-shadow:none;
  10454. box-shadow:none;
  10455. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10456. font-weight:400;
  10457. font-style:normal;
  10458. font-size:18px;
  10459. }
  10460. #u220911 {
  10461. border-width:0px;
  10462. position:absolute;
  10463. left:1460px;
  10464. top:75px;
  10465. width:73px;
  10466. height:25px;
  10467. display:flex;
  10468. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10469. font-weight:400;
  10470. font-style:normal;
  10471. font-size:18px;
  10472. }
  10473. #u220911 .text {
  10474. position:absolute;
  10475. align-self:flex-start;
  10476. padding:0px 0px 0px 0px;
  10477. box-sizing:border-box;
  10478. width:100%;
  10479. }
  10480. #u220911_text {
  10481. border-width:0px;
  10482. white-space:nowrap;
  10483. text-transform:none;
  10484. }
  10485. #u220912 {
  10486. border-width:0px;
  10487. position:absolute;
  10488. left:0px;
  10489. top:0px;
  10490. width:0px;
  10491. height:0px;
  10492. }
  10493. #u220913_div {
  10494. border-width:0px;
  10495. position:absolute;
  10496. left:0px;
  10497. top:0px;
  10498. width:375px;
  10499. height:356px;
  10500. background:inherit;
  10501. background-color:rgba(255, 255, 255, 1);
  10502. border:none;
  10503. border-left:0px;
  10504. border-right:0px;
  10505. border-radius:0px;
  10506. border-top-left-radius:0px;
  10507. border-top-right-radius:0px;
  10508. border-bottom-right-radius:0px;
  10509. border-bottom-left-radius:0px;
  10510. -moz-box-shadow:none;
  10511. -webkit-box-shadow:none;
  10512. box-shadow:none;
  10513. }
  10514. #u220913 {
  10515. border-width:0px;
  10516. position:absolute;
  10517. left:1425px;
  10518. top:423px;
  10519. width:375px;
  10520. height:356px;
  10521. display:flex;
  10522. }
  10523. #u220913 .text {
  10524. position:absolute;
  10525. align-self:center;
  10526. padding:2px 2px 2px 2px;
  10527. box-sizing:border-box;
  10528. width:100%;
  10529. }
  10530. #u220913_text {
  10531. border-width:0px;
  10532. word-wrap:break-word;
  10533. text-transform:none;
  10534. visibility:hidden;
  10535. }
  10536. #u220914_div {
  10537. border-width:0px;
  10538. position:absolute;
  10539. left:0px;
  10540. top:0px;
  10541. width:57px;
  10542. height:30px;
  10543. background:inherit;
  10544. background-color:rgba(255, 255, 255, 0);
  10545. border:none;
  10546. border-left:0px;
  10547. border-top:0px;
  10548. border-right:0px;
  10549. border-radius:0px;
  10550. border-bottom-right-radius:0px;
  10551. border-bottom-left-radius:0px;
  10552. -moz-box-shadow:none;
  10553. -webkit-box-shadow:none;
  10554. box-shadow:none;
  10555. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10556. font-weight:400;
  10557. font-style:normal;
  10558. font-size:14px;
  10559. line-height:30px;
  10560. }
  10561. #u220914 {
  10562. border-width:0px;
  10563. position:absolute;
  10564. left:1449px;
  10565. top:433px;
  10566. width:57px;
  10567. height:30px;
  10568. display:flex;
  10569. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10570. font-weight:400;
  10571. font-style:normal;
  10572. font-size:14px;
  10573. line-height:30px;
  10574. }
  10575. #u220914 .text {
  10576. position:absolute;
  10577. align-self:flex-start;
  10578. padding:0px 0px 0px 0px;
  10579. box-sizing:border-box;
  10580. width:100%;
  10581. }
  10582. #u220914_text {
  10583. border-width:0px;
  10584. white-space:nowrap;
  10585. text-transform:none;
  10586. }
  10587. #u220915_div {
  10588. border-width:0px;
  10589. position:absolute;
  10590. left:0px;
  10591. top:0px;
  10592. width:181px;
  10593. height:30px;
  10594. background:inherit;
  10595. background-color:rgba(255, 255, 255, 0);
  10596. border:none;
  10597. border-left:0px;
  10598. border-top:0px;
  10599. border-right:0px;
  10600. border-radius:0px;
  10601. border-bottom-right-radius:0px;
  10602. border-bottom-left-radius:0px;
  10603. -moz-box-shadow:none;
  10604. -webkit-box-shadow:none;
  10605. box-shadow:none;
  10606. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10607. font-weight:400;
  10608. font-style:normal;
  10609. font-size:12px;
  10610. line-height:30px;
  10611. }
  10612. #u220915 {
  10613. border-width:0px;
  10614. position:absolute;
  10615. left:1449px;
  10616. top:463px;
  10617. width:181px;
  10618. height:30px;
  10619. display:flex;
  10620. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10621. font-weight:400;
  10622. font-style:normal;
  10623. font-size:12px;
  10624. line-height:30px;
  10625. }
  10626. #u220915 .text {
  10627. position:absolute;
  10628. align-self:flex-start;
  10629. padding:0px 0px 0px 0px;
  10630. box-sizing:border-box;
  10631. width:100%;
  10632. }
  10633. #u220915_text {
  10634. border-width:0px;
  10635. white-space:nowrap;
  10636. text-transform:none;
  10637. }
  10638. #u220916_div {
  10639. border-width:0px;
  10640. position:absolute;
  10641. left:0px;
  10642. top:0px;
  10643. width:167px;
  10644. height:30px;
  10645. background:inherit;
  10646. background-color:rgba(255, 255, 255, 0);
  10647. border:none;
  10648. border-left:0px;
  10649. border-top:0px;
  10650. border-right:0px;
  10651. border-radius:0px;
  10652. border-bottom-right-radius:0px;
  10653. border-bottom-left-radius:0px;
  10654. -moz-box-shadow:none;
  10655. -webkit-box-shadow:none;
  10656. box-shadow:none;
  10657. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10658. font-weight:400;
  10659. font-style:normal;
  10660. font-size:12px;
  10661. line-height:30px;
  10662. }
  10663. #u220916 {
  10664. border-width:0px;
  10665. position:absolute;
  10666. left:1449px;
  10667. top:493px;
  10668. width:167px;
  10669. height:30px;
  10670. display:flex;
  10671. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10672. font-weight:400;
  10673. font-style:normal;
  10674. font-size:12px;
  10675. line-height:30px;
  10676. }
  10677. #u220916 .text {
  10678. position:absolute;
  10679. align-self:flex-start;
  10680. padding:0px 0px 0px 0px;
  10681. box-sizing:border-box;
  10682. width:100%;
  10683. }
  10684. #u220916_text {
  10685. border-width:0px;
  10686. white-space:nowrap;
  10687. text-transform:none;
  10688. }
  10689. #u220917_img {
  10690. border-width:0px;
  10691. position:absolute;
  10692. left:0px;
  10693. top:0px;
  10694. width:375px;
  10695. height:275px;
  10696. }
  10697. #u220917 {
  10698. border-width:0px;
  10699. position:absolute;
  10700. left:1425px;
  10701. top:564px;
  10702. width:375px;
  10703. height:275px;
  10704. display:flex;
  10705. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10706. font-weight:400;
  10707. font-style:normal;
  10708. }
  10709. #u220917 .text {
  10710. position:absolute;
  10711. align-self:center;
  10712. padding:2px 2px 2px 2px;
  10713. box-sizing:border-box;
  10714. width:100%;
  10715. }
  10716. #u220917_text {
  10717. border-width:0px;
  10718. word-wrap:break-word;
  10719. text-transform:none;
  10720. }
  10721. #u220918_div {
  10722. border-width:0px;
  10723. position:absolute;
  10724. left:0px;
  10725. top:0px;
  10726. width:167px;
  10727. height:30px;
  10728. background:inherit;
  10729. background-color:rgba(255, 255, 255, 0);
  10730. border:none;
  10731. border-left:0px;
  10732. border-top:0px;
  10733. border-right:0px;
  10734. border-radius:0px;
  10735. border-bottom-right-radius:0px;
  10736. border-bottom-left-radius:0px;
  10737. -moz-box-shadow:none;
  10738. -webkit-box-shadow:none;
  10739. box-shadow:none;
  10740. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10741. font-weight:400;
  10742. font-style:normal;
  10743. font-size:12px;
  10744. line-height:30px;
  10745. }
  10746. #u220918 {
  10747. border-width:0px;
  10748. position:absolute;
  10749. left:1449px;
  10750. top:523px;
  10751. width:167px;
  10752. height:30px;
  10753. display:flex;
  10754. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10755. font-weight:400;
  10756. font-style:normal;
  10757. font-size:12px;
  10758. line-height:30px;
  10759. }
  10760. #u220918 .text {
  10761. position:absolute;
  10762. align-self:flex-start;
  10763. padding:0px 0px 0px 0px;
  10764. box-sizing:border-box;
  10765. width:100%;
  10766. }
  10767. #u220918_text {
  10768. border-width:0px;
  10769. white-space:nowrap;
  10770. text-transform:none;
  10771. }
  10772. #u220919_div {
  10773. border-width:0px;
  10774. position:absolute;
  10775. left:0px;
  10776. top:0px;
  10777. width:92px;
  10778. height:30px;
  10779. background:inherit;
  10780. background-color:rgba(255, 255, 255, 0);
  10781. border:none;
  10782. border-left:0px;
  10783. border-top:0px;
  10784. border-right:0px;
  10785. border-radius:0px;
  10786. border-bottom-right-radius:0px;
  10787. border-bottom-left-radius:0px;
  10788. -moz-box-shadow:none;
  10789. -webkit-box-shadow:none;
  10790. box-shadow:none;
  10791. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10792. font-weight:400;
  10793. font-style:normal;
  10794. font-size:12px;
  10795. color:#0089FE;
  10796. line-height:30px;
  10797. }
  10798. #u220919 {
  10799. border-width:0px;
  10800. position:absolute;
  10801. left:1694px;
  10802. top:433px;
  10803. width:92px;
  10804. height:30px;
  10805. display:flex;
  10806. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10807. font-weight:400;
  10808. font-style:normal;
  10809. font-size:12px;
  10810. color:#0089FE;
  10811. line-height:30px;
  10812. }
  10813. #u220919 .text {
  10814. position:absolute;
  10815. align-self:flex-start;
  10816. padding:0px 0px 0px 0px;
  10817. box-sizing:border-box;
  10818. width:100%;
  10819. }
  10820. #u220919_text {
  10821. border-width:0px;
  10822. white-space:nowrap;
  10823. text-transform:none;
  10824. }
  10825. #u220920 {
  10826. border-width:0px;
  10827. position:absolute;
  10828. left:0px;
  10829. top:0px;
  10830. width:0px;
  10831. height:0px;
  10832. }
  10833. #u220921_div {
  10834. border-width:0px;
  10835. position:absolute;
  10836. left:0px;
  10837. top:0px;
  10838. width:375px;
  10839. height:180px;
  10840. background:inherit;
  10841. background-color:rgba(255, 255, 255, 1);
  10842. border:none;
  10843. border-top:0px;
  10844. border-bottom:0px;
  10845. border-radius:0px;
  10846. border-top-left-radius:0px;
  10847. border-top-right-radius:0px;
  10848. border-bottom-right-radius:0px;
  10849. border-bottom-left-radius:0px;
  10850. -moz-box-shadow:none;
  10851. -webkit-box-shadow:none;
  10852. box-shadow:none;
  10853. }
  10854. #u220921 {
  10855. border-width:0px;
  10856. position:absolute;
  10857. left:1425px;
  10858. top:234px;
  10859. width:375px;
  10860. height:180px;
  10861. display:flex;
  10862. }
  10863. #u220921 .text {
  10864. position:absolute;
  10865. align-self:center;
  10866. padding:2px 2px 2px 2px;
  10867. box-sizing:border-box;
  10868. width:100%;
  10869. }
  10870. #u220921_text {
  10871. border-width:0px;
  10872. word-wrap:break-word;
  10873. text-transform:none;
  10874. visibility:hidden;
  10875. }
  10876. #u220922_div {
  10877. border-width:0px;
  10878. position:absolute;
  10879. left:0px;
  10880. top:0px;
  10881. width:150px;
  10882. height:150px;
  10883. background:inherit;
  10884. background-color:rgba(255, 255, 255, 0);
  10885. border:none;
  10886. border-left:0px;
  10887. border-top:0px;
  10888. border-right:0px;
  10889. border-radius:0px;
  10890. border-bottom-right-radius:0px;
  10891. border-bottom-left-radius:0px;
  10892. -moz-box-shadow:none;
  10893. -webkit-box-shadow:none;
  10894. box-shadow:none;
  10895. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10896. font-weight:400;
  10897. font-style:normal;
  10898. font-size:12px;
  10899. line-height:25px;
  10900. }
  10901. #u220922 {
  10902. border-width:0px;
  10903. position:absolute;
  10904. left:1449px;
  10905. top:248px;
  10906. width:150px;
  10907. height:150px;
  10908. display:flex;
  10909. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10910. font-weight:400;
  10911. font-style:normal;
  10912. font-size:12px;
  10913. line-height:25px;
  10914. }
  10915. #u220922 .text {
  10916. position:absolute;
  10917. align-self:flex-start;
  10918. padding:0px 0px 0px 0px;
  10919. box-sizing:border-box;
  10920. width:100%;
  10921. }
  10922. #u220922_text {
  10923. border-width:0px;
  10924. white-space:nowrap;
  10925. text-transform:none;
  10926. }
  10927. #u220924_img {
  10928. border-width:0px;
  10929. position:absolute;
  10930. left:0px;
  10931. top:0px;
  10932. width:433px;
  10933. height:865px;
  10934. }
  10935. #u220924 {
  10936. border-width:0px;
  10937. position:absolute;
  10938. left:1859px;
  10939. top:0px;
  10940. width:433px;
  10941. height:865px;
  10942. display:flex;
  10943. }
  10944. #u220924 .text {
  10945. position:absolute;
  10946. align-self:center;
  10947. padding:2px 2px 2px 2px;
  10948. box-sizing:border-box;
  10949. width:100%;
  10950. }
  10951. #u220924_text {
  10952. border-width:0px;
  10953. word-wrap:break-word;
  10954. text-transform:none;
  10955. visibility:hidden;
  10956. }
  10957. #u220925_div {
  10958. border-width:0px;
  10959. position:absolute;
  10960. left:0px;
  10961. top:0px;
  10962. width:375px;
  10963. height:40px;
  10964. background:inherit;
  10965. background-color:rgba(255, 255, 255, 1);
  10966. box-sizing:border-box;
  10967. border-width:1px;
  10968. border-style:solid;
  10969. border-color:rgba(215, 215, 215, 1);
  10970. border-left:0px;
  10971. border-top:0px;
  10972. border-right:0px;
  10973. border-radius:0px;
  10974. border-bottom-right-radius:0px;
  10975. border-bottom-left-radius:0px;
  10976. -moz-box-shadow:none;
  10977. -webkit-box-shadow:none;
  10978. box-shadow:none;
  10979. }
  10980. #u220925 {
  10981. border-width:0px;
  10982. position:absolute;
  10983. left:1888px;
  10984. top:67px;
  10985. width:375px;
  10986. height:40px;
  10987. display:flex;
  10988. }
  10989. #u220925 .text {
  10990. position:absolute;
  10991. align-self:center;
  10992. padding:2px 2px 2px 2px;
  10993. box-sizing:border-box;
  10994. width:100%;
  10995. }
  10996. #u220925_text {
  10997. border-width:0px;
  10998. word-wrap:break-word;
  10999. text-transform:none;
  11000. visibility:hidden;
  11001. }
  11002. #u220926 {
  11003. border-width:0px;
  11004. position:absolute;
  11005. left:0px;
  11006. top:0px;
  11007. width:0px;
  11008. height:0px;
  11009. }
  11010. #u220927_div {
  11011. border-width:0px;
  11012. position:absolute;
  11013. left:0px;
  11014. top:0px;
  11015. width:88px;
  11016. height:32px;
  11017. background:inherit;
  11018. background-color:rgba(255, 255, 255, 1);
  11019. box-sizing:border-box;
  11020. border-width:1px;
  11021. border-style:solid;
  11022. border-color:rgba(242, 242, 242, 1);
  11023. border-radius:33px;
  11024. -moz-box-shadow:none;
  11025. -webkit-box-shadow:none;
  11026. box-shadow:none;
  11027. }
  11028. #u220927 {
  11029. border-width:0px;
  11030. position:absolute;
  11031. left:2168px;
  11032. top:71px;
  11033. width:88px;
  11034. height:32px;
  11035. display:flex;
  11036. }
  11037. #u220927 .text {
  11038. position:absolute;
  11039. align-self:center;
  11040. padding:2px 2px 2px 2px;
  11041. box-sizing:border-box;
  11042. width:100%;
  11043. }
  11044. #u220927_text {
  11045. border-width:0px;
  11046. word-wrap:break-word;
  11047. text-transform:none;
  11048. visibility:hidden;
  11049. }
  11050. #u220928 {
  11051. border-width:0px;
  11052. position:absolute;
  11053. left:0px;
  11054. top:0px;
  11055. width:0px;
  11056. height:0px;
  11057. }
  11058. #u220929_img {
  11059. border-width:0px;
  11060. position:absolute;
  11061. left:0px;
  11062. top:0px;
  11063. width:18px;
  11064. height:18px;
  11065. }
  11066. #u220929 {
  11067. border-width:0px;
  11068. position:absolute;
  11069. left:2231px;
  11070. top:78px;
  11071. width:18px;
  11072. height:18px;
  11073. display:flex;
  11074. }
  11075. #u220929 .text {
  11076. position:absolute;
  11077. align-self:center;
  11078. padding:2px 2px 2px 2px;
  11079. box-sizing:border-box;
  11080. width:100%;
  11081. }
  11082. #u220929_text {
  11083. border-width:0px;
  11084. word-wrap:break-word;
  11085. text-transform:none;
  11086. visibility:hidden;
  11087. }
  11088. #u220930_img {
  11089. border-width:0px;
  11090. position:absolute;
  11091. left:0px;
  11092. top:0px;
  11093. width:6px;
  11094. height:6px;
  11095. }
  11096. #u220930 {
  11097. border-width:0px;
  11098. position:absolute;
  11099. left:2237px;
  11100. top:84px;
  11101. width:6px;
  11102. height:6px;
  11103. display:flex;
  11104. }
  11105. #u220930 .text {
  11106. position:absolute;
  11107. align-self:center;
  11108. padding:2px 2px 2px 2px;
  11109. box-sizing:border-box;
  11110. width:100%;
  11111. }
  11112. #u220930_text {
  11113. border-width:0px;
  11114. word-wrap:break-word;
  11115. text-transform:none;
  11116. visibility:hidden;
  11117. }
  11118. #u220931 {
  11119. border-width:0px;
  11120. position:absolute;
  11121. left:0px;
  11122. top:0px;
  11123. width:0px;
  11124. height:0px;
  11125. }
  11126. #u220932_img {
  11127. border-width:0px;
  11128. position:absolute;
  11129. left:0px;
  11130. top:0px;
  11131. width:5px;
  11132. height:5px;
  11133. }
  11134. #u220932 {
  11135. border-width:0px;
  11136. position:absolute;
  11137. left:2182px;
  11138. top:85px;
  11139. width:5px;
  11140. height:5px;
  11141. display:flex;
  11142. }
  11143. #u220932 .text {
  11144. position:absolute;
  11145. align-self:center;
  11146. padding:2px 2px 2px 2px;
  11147. box-sizing:border-box;
  11148. width:100%;
  11149. }
  11150. #u220932_text {
  11151. border-width:0px;
  11152. word-wrap:break-word;
  11153. text-transform:none;
  11154. visibility:hidden;
  11155. }
  11156. #u220933_img {
  11157. border-width:0px;
  11158. position:absolute;
  11159. left:0px;
  11160. top:0px;
  11161. width:5px;
  11162. height:5px;
  11163. }
  11164. #u220933 {
  11165. border-width:0px;
  11166. position:absolute;
  11167. left:2198px;
  11168. top:85px;
  11169. width:5px;
  11170. height:5px;
  11171. display:flex;
  11172. }
  11173. #u220933 .text {
  11174. position:absolute;
  11175. align-self:center;
  11176. padding:2px 2px 2px 2px;
  11177. box-sizing:border-box;
  11178. width:100%;
  11179. }
  11180. #u220933_text {
  11181. border-width:0px;
  11182. word-wrap:break-word;
  11183. text-transform:none;
  11184. visibility:hidden;
  11185. }
  11186. #u220934_img {
  11187. border-width:0px;
  11188. position:absolute;
  11189. left:0px;
  11190. top:0px;
  11191. width:7px;
  11192. height:7px;
  11193. }
  11194. #u220934 {
  11195. border-width:0px;
  11196. position:absolute;
  11197. left:2189px;
  11198. top:84px;
  11199. width:7px;
  11200. height:7px;
  11201. display:flex;
  11202. }
  11203. #u220934 .text {
  11204. position:absolute;
  11205. align-self:center;
  11206. padding:2px 2px 2px 2px;
  11207. box-sizing:border-box;
  11208. width:100%;
  11209. }
  11210. #u220934_text {
  11211. border-width:0px;
  11212. word-wrap:break-word;
  11213. text-transform:none;
  11214. visibility:hidden;
  11215. }
  11216. #u220935_img {
  11217. border-width:0px;
  11218. position:absolute;
  11219. left:0px;
  11220. top:0px;
  11221. width:19px;
  11222. height:2px;
  11223. }
  11224. #u220935 {
  11225. border-width:0px;
  11226. position:absolute;
  11227. left:2206px;
  11228. top:87px;
  11229. width:18px;
  11230. height:1px;
  11231. display:flex;
  11232. -webkit-transform:rotate(90deg);
  11233. -moz-transform:rotate(90deg);
  11234. -ms-transform:rotate(90deg);
  11235. transform:rotate(90deg);
  11236. }
  11237. #u220935 .text {
  11238. position:absolute;
  11239. align-self:center;
  11240. padding:2px 2px 2px 2px;
  11241. box-sizing:border-box;
  11242. width:100%;
  11243. }
  11244. #u220935_text {
  11245. border-width:0px;
  11246. word-wrap:break-word;
  11247. text-transform:none;
  11248. visibility:hidden;
  11249. }
  11250. #u220936_img {
  11251. border-width:0px;
  11252. position:absolute;
  11253. left:0px;
  11254. top:0px;
  11255. width:375px;
  11256. height:44px;
  11257. }
  11258. #u220936 {
  11259. border-width:0px;
  11260. position:absolute;
  11261. left:1888px;
  11262. top:24px;
  11263. width:375px;
  11264. height:44px;
  11265. display:flex;
  11266. }
  11267. #u220936 .text {
  11268. position:absolute;
  11269. align-self:center;
  11270. padding:2px 2px 2px 2px;
  11271. box-sizing:border-box;
  11272. width:100%;
  11273. }
  11274. #u220936_text {
  11275. border-width:0px;
  11276. word-wrap:break-word;
  11277. text-transform:none;
  11278. visibility:hidden;
  11279. }
  11280. #u220937_div {
  11281. border-width:0px;
  11282. position:absolute;
  11283. left:0px;
  11284. top:0px;
  11285. width:375px;
  11286. height:50px;
  11287. background:inherit;
  11288. background-color:rgba(255, 255, 255, 1);
  11289. box-sizing:border-box;
  11290. border-width:1px;
  11291. border-style:solid;
  11292. border-color:rgba(242, 242, 242, 1);
  11293. border-radius:26px;
  11294. border-top-left-radius:0px;
  11295. border-top-right-radius:0px;
  11296. -moz-box-shadow:none;
  11297. -webkit-box-shadow:none;
  11298. box-shadow:none;
  11299. }
  11300. #u220937 {
  11301. border-width:0px;
  11302. position:absolute;
  11303. left:1888px;
  11304. top:788px;
  11305. width:375px;
  11306. height:50px;
  11307. display:flex;
  11308. }
  11309. #u220937 .text {
  11310. position:absolute;
  11311. align-self:center;
  11312. padding:2px 2px 2px 2px;
  11313. box-sizing:border-box;
  11314. width:100%;
  11315. }
  11316. #u220937_text {
  11317. border-width:0px;
  11318. word-wrap:break-word;
  11319. text-transform:none;
  11320. visibility:hidden;
  11321. }
  11322. #u220938 {
  11323. border-width:0px;
  11324. position:absolute;
  11325. left:0px;
  11326. top:0px;
  11327. width:0px;
  11328. height:0px;
  11329. }
  11330. #u220939_img {
  11331. border-width:0px;
  11332. position:absolute;
  11333. left:0px;
  11334. top:0px;
  11335. width:24px;
  11336. height:24px;
  11337. }
  11338. #u220939 {
  11339. border-width:0px;
  11340. position:absolute;
  11341. left:1928px;
  11342. top:792px;
  11343. width:24px;
  11344. height:24px;
  11345. display:flex;
  11346. font-size:8px;
  11347. }
  11348. #u220939 .text {
  11349. position:absolute;
  11350. align-self:center;
  11351. padding:2px 2px 2px 2px;
  11352. box-sizing:border-box;
  11353. width:100%;
  11354. }
  11355. #u220939_text {
  11356. border-width:0px;
  11357. word-wrap:break-word;
  11358. text-transform:none;
  11359. }
  11360. #u220940_div {
  11361. border-width:0px;
  11362. position:absolute;
  11363. left:0px;
  11364. top:0px;
  11365. width:25px;
  11366. height:17px;
  11367. background:inherit;
  11368. background-color:rgba(255, 255, 255, 0);
  11369. border:none;
  11370. border-radius:0px;
  11371. -moz-box-shadow:none;
  11372. -webkit-box-shadow:none;
  11373. box-shadow:none;
  11374. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11375. font-weight:400;
  11376. font-style:normal;
  11377. font-size:12px;
  11378. }
  11379. #u220940 {
  11380. border-width:0px;
  11381. position:absolute;
  11382. left:1928px;
  11383. top:817px;
  11384. width:25px;
  11385. height:17px;
  11386. display:flex;
  11387. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11388. font-weight:400;
  11389. font-style:normal;
  11390. font-size:12px;
  11391. }
  11392. #u220940 .text {
  11393. position:absolute;
  11394. align-self:flex-start;
  11395. padding:0px 0px 0px 0px;
  11396. box-sizing:border-box;
  11397. width:100%;
  11398. }
  11399. #u220940_text {
  11400. border-width:0px;
  11401. white-space:nowrap;
  11402. text-transform:none;
  11403. }
  11404. #u220941 {
  11405. border-width:0px;
  11406. position:absolute;
  11407. left:0px;
  11408. top:0px;
  11409. width:0px;
  11410. height:0px;
  11411. }
  11412. #u220942_img {
  11413. border-width:0px;
  11414. position:absolute;
  11415. left:0px;
  11416. top:0px;
  11417. width:24px;
  11418. height:24px;
  11419. }
  11420. #u220942 {
  11421. border-width:0px;
  11422. position:absolute;
  11423. left:2198px;
  11424. top:794px;
  11425. width:24px;
  11426. height:24px;
  11427. display:flex;
  11428. font-size:8px;
  11429. }
  11430. #u220942 .text {
  11431. position:absolute;
  11432. align-self:center;
  11433. padding:2px 2px 2px 2px;
  11434. box-sizing:border-box;
  11435. width:100%;
  11436. }
  11437. #u220942_text {
  11438. border-width:0px;
  11439. word-wrap:break-word;
  11440. text-transform:none;
  11441. }
  11442. #u220943_div {
  11443. border-width:0px;
  11444. position:absolute;
  11445. left:0px;
  11446. top:0px;
  11447. width:25px;
  11448. height:17px;
  11449. background:inherit;
  11450. background-color:rgba(255, 255, 255, 0);
  11451. border:none;
  11452. border-radius:0px;
  11453. -moz-box-shadow:none;
  11454. -webkit-box-shadow:none;
  11455. box-shadow:none;
  11456. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11457. font-weight:400;
  11458. font-style:normal;
  11459. font-size:12px;
  11460. }
  11461. #u220943 {
  11462. border-width:0px;
  11463. position:absolute;
  11464. left:2198px;
  11465. top:819px;
  11466. width:25px;
  11467. height:17px;
  11468. display:flex;
  11469. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11470. font-weight:400;
  11471. font-style:normal;
  11472. font-size:12px;
  11473. }
  11474. #u220943 .text {
  11475. position:absolute;
  11476. align-self:flex-start;
  11477. padding:0px 0px 0px 0px;
  11478. box-sizing:border-box;
  11479. width:100%;
  11480. }
  11481. #u220943_text {
  11482. border-width:0px;
  11483. white-space:nowrap;
  11484. text-transform:none;
  11485. }
  11486. #u220944_div {
  11487. border-width:0px;
  11488. position:absolute;
  11489. left:0px;
  11490. top:0px;
  11491. width:375px;
  11492. height:681px;
  11493. background:inherit;
  11494. background-color:rgba(242, 242, 242, 0.462745098039216);
  11495. border:none;
  11496. border-radius:0px;
  11497. -moz-box-shadow:none;
  11498. -webkit-box-shadow:none;
  11499. box-shadow:none;
  11500. }
  11501. #u220944 {
  11502. border-width:0px;
  11503. position:absolute;
  11504. left:1888px;
  11505. top:107px;
  11506. width:375px;
  11507. height:681px;
  11508. display:flex;
  11509. }
  11510. #u220944 .text {
  11511. position:absolute;
  11512. align-self:center;
  11513. padding:2px 2px 2px 2px;
  11514. box-sizing:border-box;
  11515. width:100%;
  11516. }
  11517. #u220944_text {
  11518. border-width:0px;
  11519. word-wrap:break-word;
  11520. text-transform:none;
  11521. visibility:hidden;
  11522. }
  11523. #u220945 {
  11524. border-width:0px;
  11525. position:absolute;
  11526. left:0px;
  11527. top:0px;
  11528. width:0px;
  11529. height:0px;
  11530. }
  11531. #u220946_img {
  11532. border-width:0px;
  11533. position:absolute;
  11534. left:0px;
  11535. top:0px;
  11536. width:24px;
  11537. height:24px;
  11538. }
  11539. #u220946 {
  11540. border-width:0px;
  11541. position:absolute;
  11542. left:2110px;
  11543. top:792px;
  11544. width:24px;
  11545. height:24px;
  11546. display:flex;
  11547. font-size:8px;
  11548. }
  11549. #u220946 .text {
  11550. position:absolute;
  11551. align-self:center;
  11552. padding:2px 2px 2px 2px;
  11553. box-sizing:border-box;
  11554. width:100%;
  11555. }
  11556. #u220946_text {
  11557. border-width:0px;
  11558. word-wrap:break-word;
  11559. text-transform:none;
  11560. }
  11561. #u220947_div {
  11562. border-width:0px;
  11563. position:absolute;
  11564. left:0px;
  11565. top:0px;
  11566. width:37px;
  11567. height:17px;
  11568. background:inherit;
  11569. background-color:rgba(255, 255, 255, 0);
  11570. border:none;
  11571. border-radius:0px;
  11572. -moz-box-shadow:none;
  11573. -webkit-box-shadow:none;
  11574. box-shadow:none;
  11575. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11576. font-weight:400;
  11577. font-style:normal;
  11578. font-size:12px;
  11579. }
  11580. #u220947 {
  11581. border-width:0px;
  11582. position:absolute;
  11583. left:2104px;
  11584. top:817px;
  11585. width:37px;
  11586. height:17px;
  11587. display:flex;
  11588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11589. font-weight:400;
  11590. font-style:normal;
  11591. font-size:12px;
  11592. }
  11593. #u220947 .text {
  11594. position:absolute;
  11595. align-self:flex-start;
  11596. padding:0px 0px 0px 0px;
  11597. box-sizing:border-box;
  11598. width:100%;
  11599. }
  11600. #u220947_text {
  11601. border-width:0px;
  11602. white-space:nowrap;
  11603. text-transform:none;
  11604. }
  11605. #u220948 {
  11606. border-width:0px;
  11607. position:absolute;
  11608. left:0px;
  11609. top:0px;
  11610. width:0px;
  11611. height:0px;
  11612. }
  11613. #u220949_img {
  11614. border-width:0px;
  11615. position:absolute;
  11616. left:0px;
  11617. top:0px;
  11618. width:24px;
  11619. height:24px;
  11620. }
  11621. #u220949 {
  11622. border-width:0px;
  11623. position:absolute;
  11624. left:2016px;
  11625. top:792px;
  11626. width:24px;
  11627. height:24px;
  11628. display:flex;
  11629. font-size:8px;
  11630. }
  11631. #u220949 .text {
  11632. position:absolute;
  11633. align-self:center;
  11634. padding:2px 2px 2px 2px;
  11635. box-sizing:border-box;
  11636. width:100%;
  11637. }
  11638. #u220949_text {
  11639. border-width:0px;
  11640. word-wrap:break-word;
  11641. text-transform:none;
  11642. }
  11643. #u220950_div {
  11644. border-width:0px;
  11645. position:absolute;
  11646. left:0px;
  11647. top:0px;
  11648. width:37px;
  11649. height:17px;
  11650. background:inherit;
  11651. background-color:rgba(255, 255, 255, 0);
  11652. border:none;
  11653. border-radius:0px;
  11654. -moz-box-shadow:none;
  11655. -webkit-box-shadow:none;
  11656. box-shadow:none;
  11657. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11658. font-weight:400;
  11659. font-style:normal;
  11660. font-size:12px;
  11661. }
  11662. #u220950 {
  11663. border-width:0px;
  11664. position:absolute;
  11665. left:2010px;
  11666. top:817px;
  11667. width:37px;
  11668. height:17px;
  11669. display:flex;
  11670. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11671. font-weight:400;
  11672. font-style:normal;
  11673. font-size:12px;
  11674. }
  11675. #u220950 .text {
  11676. position:absolute;
  11677. align-self:flex-start;
  11678. padding:0px 0px 0px 0px;
  11679. box-sizing:border-box;
  11680. width:100%;
  11681. }
  11682. #u220950_text {
  11683. border-width:0px;
  11684. white-space:nowrap;
  11685. text-transform:none;
  11686. }
  11687. #u220951_div {
  11688. border-width:0px;
  11689. position:absolute;
  11690. left:0px;
  11691. top:0px;
  11692. width:375px;
  11693. height:732px;
  11694. background:inherit;
  11695. background-color:rgba(242, 242, 242, 0.996078431372549);
  11696. border:none;
  11697. border-top:0px;
  11698. border-radius:28px;
  11699. border-top-left-radius:0px;
  11700. border-top-right-radius:0px;
  11701. -moz-box-shadow:none;
  11702. -webkit-box-shadow:none;
  11703. box-shadow:none;
  11704. }
  11705. #u220951 {
  11706. border-width:0px;
  11707. position:absolute;
  11708. left:1888px;
  11709. top:107px;
  11710. width:375px;
  11711. height:732px;
  11712. display:flex;
  11713. }
  11714. #u220951 .text {
  11715. position:absolute;
  11716. align-self:center;
  11717. padding:2px 2px 2px 2px;
  11718. box-sizing:border-box;
  11719. width:100%;
  11720. }
  11721. #u220951_text {
  11722. border-width:0px;
  11723. word-wrap:break-word;
  11724. text-transform:none;
  11725. visibility:hidden;
  11726. }
  11727. #u220952_div {
  11728. border-width:0px;
  11729. position:absolute;
  11730. left:0px;
  11731. top:0px;
  11732. width:375px;
  11733. height:125px;
  11734. background:inherit;
  11735. background-color:rgba(255, 255, 255, 1);
  11736. border:none;
  11737. border-left:0px;
  11738. border-top:0px;
  11739. border-right:0px;
  11740. border-radius:0px;
  11741. border-bottom-right-radius:0px;
  11742. border-bottom-left-radius:0px;
  11743. -moz-box-shadow:none;
  11744. -webkit-box-shadow:none;
  11745. box-shadow:none;
  11746. }
  11747. #u220952 {
  11748. border-width:0px;
  11749. position:absolute;
  11750. left:1888px;
  11751. top:108px;
  11752. width:375px;
  11753. height:125px;
  11754. display:flex;
  11755. }
  11756. #u220952 .text {
  11757. position:absolute;
  11758. align-self:center;
  11759. padding:2px 2px 2px 2px;
  11760. box-sizing:border-box;
  11761. width:100%;
  11762. }
  11763. #u220952_text {
  11764. border-width:0px;
  11765. word-wrap:break-word;
  11766. text-transform:none;
  11767. visibility:hidden;
  11768. }
  11769. #u220953_div {
  11770. border-width:0px;
  11771. position:absolute;
  11772. left:0px;
  11773. top:0px;
  11774. width:43px;
  11775. height:20px;
  11776. background:inherit;
  11777. background-color:rgba(255, 255, 255, 0);
  11778. border:none;
  11779. border-radius:0px;
  11780. -moz-box-shadow:none;
  11781. -webkit-box-shadow:none;
  11782. box-shadow:none;
  11783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11784. font-weight:400;
  11785. font-style:normal;
  11786. color:#0089FE;
  11787. }
  11788. #u220953 {
  11789. border-width:0px;
  11790. position:absolute;
  11791. left:2201px;
  11792. top:124px;
  11793. width:43px;
  11794. height:20px;
  11795. display:flex;
  11796. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11797. font-weight:400;
  11798. font-style:normal;
  11799. color:#0089FE;
  11800. }
  11801. #u220953 .text {
  11802. position:absolute;
  11803. align-self:flex-start;
  11804. padding:0px 0px 0px 0px;
  11805. box-sizing:border-box;
  11806. width:100%;
  11807. }
  11808. #u220953_text {
  11809. border-width:0px;
  11810. white-space:nowrap;
  11811. text-transform:none;
  11812. }
  11813. #u220954_div {
  11814. border-width:0px;
  11815. position:absolute;
  11816. left:0px;
  11817. top:0px;
  11818. width:124px;
  11819. height:30px;
  11820. background:inherit;
  11821. background-color:rgba(255, 255, 255, 0);
  11822. border:none;
  11823. border-left:0px;
  11824. border-top:0px;
  11825. border-right:0px;
  11826. border-radius:0px;
  11827. border-bottom-right-radius:0px;
  11828. border-bottom-left-radius:0px;
  11829. -moz-box-shadow:none;
  11830. -webkit-box-shadow:none;
  11831. box-shadow:none;
  11832. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11833. font-weight:500;
  11834. font-style:normal;
  11835. font-size:14px;
  11836. line-height:30px;
  11837. }
  11838. #u220954 {
  11839. border-width:0px;
  11840. position:absolute;
  11841. left:1901px;
  11842. top:118px;
  11843. width:124px;
  11844. height:30px;
  11845. display:flex;
  11846. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11847. font-weight:500;
  11848. font-style:normal;
  11849. font-size:14px;
  11850. line-height:30px;
  11851. }
  11852. #u220954 .text {
  11853. position:absolute;
  11854. align-self:flex-start;
  11855. padding:0px 0px 0px 0px;
  11856. box-sizing:border-box;
  11857. width:100%;
  11858. }
  11859. #u220954_text {
  11860. border-width:0px;
  11861. white-space:nowrap;
  11862. text-transform:none;
  11863. }
  11864. #u220955_div {
  11865. border-width:0px;
  11866. position:absolute;
  11867. left:0px;
  11868. top:0px;
  11869. width:167px;
  11870. height:75px;
  11871. background:inherit;
  11872. background-color:rgba(255, 255, 255, 0);
  11873. border:none;
  11874. border-left:0px;
  11875. border-top:0px;
  11876. border-right:0px;
  11877. border-radius:0px;
  11878. border-bottom-right-radius:0px;
  11879. border-bottom-left-radius:0px;
  11880. -moz-box-shadow:none;
  11881. -webkit-box-shadow:none;
  11882. box-shadow:none;
  11883. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11884. font-weight:400;
  11885. font-style:normal;
  11886. font-size:12px;
  11887. line-height:25px;
  11888. }
  11889. #u220955 {
  11890. border-width:0px;
  11891. position:absolute;
  11892. left:1901px;
  11893. top:148px;
  11894. width:167px;
  11895. height:75px;
  11896. display:flex;
  11897. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11898. font-weight:400;
  11899. font-style:normal;
  11900. font-size:12px;
  11901. line-height:25px;
  11902. }
  11903. #u220955 .text {
  11904. position:absolute;
  11905. align-self:flex-start;
  11906. padding:0px 0px 0px 0px;
  11907. box-sizing:border-box;
  11908. width:100%;
  11909. }
  11910. #u220955_text {
  11911. border-width:0px;
  11912. white-space:nowrap;
  11913. text-transform:none;
  11914. }
  11915. #u220956_div {
  11916. border-width:0px;
  11917. position:absolute;
  11918. left:0px;
  11919. top:0px;
  11920. width:375px;
  11921. height:41px;
  11922. background:inherit;
  11923. background-color:rgba(255, 255, 255, 1);
  11924. box-sizing:border-box;
  11925. border-width:1px;
  11926. border-style:solid;
  11927. border-color:rgba(215, 215, 215, 1);
  11928. border-left:0px;
  11929. border-top:0px;
  11930. border-right:0px;
  11931. border-radius:0px;
  11932. border-bottom-right-radius:0px;
  11933. border-bottom-left-radius:0px;
  11934. -moz-box-shadow:none;
  11935. -webkit-box-shadow:none;
  11936. box-shadow:none;
  11937. }
  11938. #u220956 {
  11939. border-width:0px;
  11940. position:absolute;
  11941. left:1888px;
  11942. top:67px;
  11943. width:375px;
  11944. height:41px;
  11945. display:flex;
  11946. }
  11947. #u220956 .text {
  11948. position:absolute;
  11949. align-self:center;
  11950. padding:2px 2px 2px 2px;
  11951. box-sizing:border-box;
  11952. width:100%;
  11953. }
  11954. #u220956_text {
  11955. border-width:0px;
  11956. word-wrap:break-word;
  11957. text-transform:none;
  11958. visibility:hidden;
  11959. }
  11960. #u220957 {
  11961. border-width:0px;
  11962. position:absolute;
  11963. left:0px;
  11964. top:0px;
  11965. width:0px;
  11966. height:0px;
  11967. }
  11968. #u220958_div {
  11969. border-width:0px;
  11970. position:absolute;
  11971. left:0px;
  11972. top:0px;
  11973. width:88px;
  11974. height:32px;
  11975. background:inherit;
  11976. background-color:rgba(255, 255, 255, 1);
  11977. box-sizing:border-box;
  11978. border-width:1px;
  11979. border-style:solid;
  11980. border-color:rgba(242, 242, 242, 1);
  11981. border-radius:33px;
  11982. -moz-box-shadow:none;
  11983. -webkit-box-shadow:none;
  11984. box-shadow:none;
  11985. }
  11986. #u220958 {
  11987. border-width:0px;
  11988. position:absolute;
  11989. left:2168px;
  11990. top:71px;
  11991. width:88px;
  11992. height:32px;
  11993. display:flex;
  11994. }
  11995. #u220958 .text {
  11996. position:absolute;
  11997. align-self:center;
  11998. padding:2px 2px 2px 2px;
  11999. box-sizing:border-box;
  12000. width:100%;
  12001. }
  12002. #u220958_text {
  12003. border-width:0px;
  12004. word-wrap:break-word;
  12005. text-transform:none;
  12006. visibility:hidden;
  12007. }
  12008. #u220959 {
  12009. border-width:0px;
  12010. position:absolute;
  12011. left:0px;
  12012. top:0px;
  12013. width:0px;
  12014. height:0px;
  12015. }
  12016. #u220960_img {
  12017. border-width:0px;
  12018. position:absolute;
  12019. left:0px;
  12020. top:0px;
  12021. width:18px;
  12022. height:18px;
  12023. }
  12024. #u220960 {
  12025. border-width:0px;
  12026. position:absolute;
  12027. left:2231px;
  12028. top:78px;
  12029. width:18px;
  12030. height:18px;
  12031. display:flex;
  12032. }
  12033. #u220960 .text {
  12034. position:absolute;
  12035. align-self:center;
  12036. padding:2px 2px 2px 2px;
  12037. box-sizing:border-box;
  12038. width:100%;
  12039. }
  12040. #u220960_text {
  12041. border-width:0px;
  12042. word-wrap:break-word;
  12043. text-transform:none;
  12044. visibility:hidden;
  12045. }
  12046. #u220961_img {
  12047. border-width:0px;
  12048. position:absolute;
  12049. left:0px;
  12050. top:0px;
  12051. width:6px;
  12052. height:6px;
  12053. }
  12054. #u220961 {
  12055. border-width:0px;
  12056. position:absolute;
  12057. left:2237px;
  12058. top:84px;
  12059. width:6px;
  12060. height:6px;
  12061. display:flex;
  12062. }
  12063. #u220961 .text {
  12064. position:absolute;
  12065. align-self:center;
  12066. padding:2px 2px 2px 2px;
  12067. box-sizing:border-box;
  12068. width:100%;
  12069. }
  12070. #u220961_text {
  12071. border-width:0px;
  12072. word-wrap:break-word;
  12073. text-transform:none;
  12074. visibility:hidden;
  12075. }
  12076. #u220962 {
  12077. border-width:0px;
  12078. position:absolute;
  12079. left:0px;
  12080. top:0px;
  12081. width:0px;
  12082. height:0px;
  12083. }
  12084. #u220963_img {
  12085. border-width:0px;
  12086. position:absolute;
  12087. left:0px;
  12088. top:0px;
  12089. width:5px;
  12090. height:5px;
  12091. }
  12092. #u220963 {
  12093. border-width:0px;
  12094. position:absolute;
  12095. left:2182px;
  12096. top:85px;
  12097. width:5px;
  12098. height:5px;
  12099. display:flex;
  12100. }
  12101. #u220963 .text {
  12102. position:absolute;
  12103. align-self:center;
  12104. padding:2px 2px 2px 2px;
  12105. box-sizing:border-box;
  12106. width:100%;
  12107. }
  12108. #u220963_text {
  12109. border-width:0px;
  12110. word-wrap:break-word;
  12111. text-transform:none;
  12112. visibility:hidden;
  12113. }
  12114. #u220964_img {
  12115. border-width:0px;
  12116. position:absolute;
  12117. left:0px;
  12118. top:0px;
  12119. width:5px;
  12120. height:5px;
  12121. }
  12122. #u220964 {
  12123. border-width:0px;
  12124. position:absolute;
  12125. left:2198px;
  12126. top:85px;
  12127. width:5px;
  12128. height:5px;
  12129. display:flex;
  12130. }
  12131. #u220964 .text {
  12132. position:absolute;
  12133. align-self:center;
  12134. padding:2px 2px 2px 2px;
  12135. box-sizing:border-box;
  12136. width:100%;
  12137. }
  12138. #u220964_text {
  12139. border-width:0px;
  12140. word-wrap:break-word;
  12141. text-transform:none;
  12142. visibility:hidden;
  12143. }
  12144. #u220965_img {
  12145. border-width:0px;
  12146. position:absolute;
  12147. left:0px;
  12148. top:0px;
  12149. width:7px;
  12150. height:7px;
  12151. }
  12152. #u220965 {
  12153. border-width:0px;
  12154. position:absolute;
  12155. left:2189px;
  12156. top:84px;
  12157. width:7px;
  12158. height:7px;
  12159. display:flex;
  12160. }
  12161. #u220965 .text {
  12162. position:absolute;
  12163. align-self:center;
  12164. padding:2px 2px 2px 2px;
  12165. box-sizing:border-box;
  12166. width:100%;
  12167. }
  12168. #u220965_text {
  12169. border-width:0px;
  12170. word-wrap:break-word;
  12171. text-transform:none;
  12172. visibility:hidden;
  12173. }
  12174. #u220966_img {
  12175. border-width:0px;
  12176. position:absolute;
  12177. left:0px;
  12178. top:0px;
  12179. width:19px;
  12180. height:2px;
  12181. }
  12182. #u220966 {
  12183. border-width:0px;
  12184. position:absolute;
  12185. left:2206px;
  12186. top:87px;
  12187. width:18px;
  12188. height:1px;
  12189. display:flex;
  12190. -webkit-transform:rotate(90deg);
  12191. -moz-transform:rotate(90deg);
  12192. -ms-transform:rotate(90deg);
  12193. transform:rotate(90deg);
  12194. }
  12195. #u220966 .text {
  12196. position:absolute;
  12197. align-self:center;
  12198. padding:2px 2px 2px 2px;
  12199. box-sizing:border-box;
  12200. width:100%;
  12201. }
  12202. #u220966_text {
  12203. border-width:0px;
  12204. word-wrap:break-word;
  12205. text-transform:none;
  12206. visibility:hidden;
  12207. }
  12208. #u220967_div {
  12209. border-width:0px;
  12210. position:absolute;
  12211. left:0px;
  12212. top:0px;
  12213. width:12px;
  12214. height:12px;
  12215. background:inherit;
  12216. background-color:rgba(255, 255, 255, 0);
  12217. box-sizing:border-box;
  12218. border-width:2px;
  12219. border-style:solid;
  12220. border-color:rgba(51, 51, 51, 1);
  12221. border-right:0px;
  12222. border-bottom:0px;
  12223. border-radius:0px;
  12224. border-top-right-radius:0px;
  12225. border-bottom-left-radius:0px;
  12226. -moz-box-shadow:none;
  12227. -webkit-box-shadow:none;
  12228. box-shadow:none;
  12229. }
  12230. #u220967 {
  12231. border-width:0px;
  12232. position:absolute;
  12233. left:1903px;
  12234. top:81px;
  12235. width:12px;
  12236. height:12px;
  12237. display:flex;
  12238. -webkit-transform:rotate(315deg);
  12239. -moz-transform:rotate(315deg);
  12240. -ms-transform:rotate(315deg);
  12241. transform:rotate(315deg);
  12242. }
  12243. #u220967 .text {
  12244. position:absolute;
  12245. align-self:center;
  12246. padding:2px 2px 2px 2px;
  12247. box-sizing:border-box;
  12248. width:100%;
  12249. }
  12250. #u220967_text {
  12251. border-width:0px;
  12252. word-wrap:break-word;
  12253. text-transform:none;
  12254. visibility:hidden;
  12255. }
  12256. #u220968_div {
  12257. border-width:0px;
  12258. position:absolute;
  12259. left:0px;
  12260. top:0px;
  12261. width:73px;
  12262. height:25px;
  12263. background:inherit;
  12264. background-color:rgba(255, 255, 255, 0);
  12265. border:none;
  12266. border-radius:0px;
  12267. -moz-box-shadow:none;
  12268. -webkit-box-shadow:none;
  12269. box-shadow:none;
  12270. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12271. font-weight:400;
  12272. font-style:normal;
  12273. font-size:18px;
  12274. }
  12275. #u220968 {
  12276. border-width:0px;
  12277. position:absolute;
  12278. left:1923px;
  12279. top:75px;
  12280. width:73px;
  12281. height:25px;
  12282. display:flex;
  12283. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12284. font-weight:400;
  12285. font-style:normal;
  12286. font-size:18px;
  12287. }
  12288. #u220968 .text {
  12289. position:absolute;
  12290. align-self:flex-start;
  12291. padding:0px 0px 0px 0px;
  12292. box-sizing:border-box;
  12293. width:100%;
  12294. }
  12295. #u220968_text {
  12296. border-width:0px;
  12297. white-space:nowrap;
  12298. text-transform:none;
  12299. }
  12300. #u220969 {
  12301. border-width:0px;
  12302. position:absolute;
  12303. left:0px;
  12304. top:0px;
  12305. width:0px;
  12306. height:0px;
  12307. }
  12308. #u220970_div {
  12309. border-width:0px;
  12310. position:absolute;
  12311. left:0px;
  12312. top:0px;
  12313. width:375px;
  12314. height:356px;
  12315. background:inherit;
  12316. background-color:rgba(255, 255, 255, 1);
  12317. border:none;
  12318. border-left:0px;
  12319. border-right:0px;
  12320. border-radius:0px;
  12321. border-top-left-radius:0px;
  12322. border-top-right-radius:0px;
  12323. border-bottom-right-radius:0px;
  12324. border-bottom-left-radius:0px;
  12325. -moz-box-shadow:none;
  12326. -webkit-box-shadow:none;
  12327. box-shadow:none;
  12328. }
  12329. #u220970 {
  12330. border-width:0px;
  12331. position:absolute;
  12332. left:1888px;
  12333. top:423px;
  12334. width:375px;
  12335. height:356px;
  12336. display:flex;
  12337. }
  12338. #u220970 .text {
  12339. position:absolute;
  12340. align-self:center;
  12341. padding:2px 2px 2px 2px;
  12342. box-sizing:border-box;
  12343. width:100%;
  12344. }
  12345. #u220970_text {
  12346. border-width:0px;
  12347. word-wrap:break-word;
  12348. text-transform:none;
  12349. visibility:hidden;
  12350. }
  12351. #u220971_div {
  12352. border-width:0px;
  12353. position:absolute;
  12354. left:0px;
  12355. top:0px;
  12356. width:57px;
  12357. height:30px;
  12358. background:inherit;
  12359. background-color:rgba(255, 255, 255, 0);
  12360. border:none;
  12361. border-left:0px;
  12362. border-top:0px;
  12363. border-right:0px;
  12364. border-radius:0px;
  12365. border-bottom-right-radius:0px;
  12366. border-bottom-left-radius:0px;
  12367. -moz-box-shadow:none;
  12368. -webkit-box-shadow:none;
  12369. box-shadow:none;
  12370. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12371. font-weight:400;
  12372. font-style:normal;
  12373. font-size:14px;
  12374. line-height:30px;
  12375. }
  12376. #u220971 {
  12377. border-width:0px;
  12378. position:absolute;
  12379. left:1912px;
  12380. top:433px;
  12381. width:57px;
  12382. height:30px;
  12383. display:flex;
  12384. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12385. font-weight:400;
  12386. font-style:normal;
  12387. font-size:14px;
  12388. line-height:30px;
  12389. }
  12390. #u220971 .text {
  12391. position:absolute;
  12392. align-self:flex-start;
  12393. padding:0px 0px 0px 0px;
  12394. box-sizing:border-box;
  12395. width:100%;
  12396. }
  12397. #u220971_text {
  12398. border-width:0px;
  12399. white-space:nowrap;
  12400. text-transform:none;
  12401. }
  12402. #u220972_div {
  12403. border-width:0px;
  12404. position:absolute;
  12405. left:0px;
  12406. top:0px;
  12407. width:181px;
  12408. height:30px;
  12409. background:inherit;
  12410. background-color:rgba(255, 255, 255, 0);
  12411. border:none;
  12412. border-left:0px;
  12413. border-top:0px;
  12414. border-right:0px;
  12415. border-radius:0px;
  12416. border-bottom-right-radius:0px;
  12417. border-bottom-left-radius:0px;
  12418. -moz-box-shadow:none;
  12419. -webkit-box-shadow:none;
  12420. box-shadow:none;
  12421. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12422. font-weight:400;
  12423. font-style:normal;
  12424. font-size:12px;
  12425. line-height:30px;
  12426. }
  12427. #u220972 {
  12428. border-width:0px;
  12429. position:absolute;
  12430. left:1912px;
  12431. top:463px;
  12432. width:181px;
  12433. height:30px;
  12434. display:flex;
  12435. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12436. font-weight:400;
  12437. font-style:normal;
  12438. font-size:12px;
  12439. line-height:30px;
  12440. }
  12441. #u220972 .text {
  12442. position:absolute;
  12443. align-self:flex-start;
  12444. padding:0px 0px 0px 0px;
  12445. box-sizing:border-box;
  12446. width:100%;
  12447. }
  12448. #u220972_text {
  12449. border-width:0px;
  12450. white-space:nowrap;
  12451. text-transform:none;
  12452. }
  12453. #u220973_div {
  12454. border-width:0px;
  12455. position:absolute;
  12456. left:0px;
  12457. top:0px;
  12458. width:167px;
  12459. height:30px;
  12460. background:inherit;
  12461. background-color:rgba(255, 255, 255, 0);
  12462. border:none;
  12463. border-left:0px;
  12464. border-top:0px;
  12465. border-right:0px;
  12466. border-radius:0px;
  12467. border-bottom-right-radius:0px;
  12468. border-bottom-left-radius:0px;
  12469. -moz-box-shadow:none;
  12470. -webkit-box-shadow:none;
  12471. box-shadow:none;
  12472. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12473. font-weight:400;
  12474. font-style:normal;
  12475. font-size:12px;
  12476. line-height:30px;
  12477. }
  12478. #u220973 {
  12479. border-width:0px;
  12480. position:absolute;
  12481. left:1912px;
  12482. top:493px;
  12483. width:167px;
  12484. height:30px;
  12485. display:flex;
  12486. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12487. font-weight:400;
  12488. font-style:normal;
  12489. font-size:12px;
  12490. line-height:30px;
  12491. }
  12492. #u220973 .text {
  12493. position:absolute;
  12494. align-self:flex-start;
  12495. padding:0px 0px 0px 0px;
  12496. box-sizing:border-box;
  12497. width:100%;
  12498. }
  12499. #u220973_text {
  12500. border-width:0px;
  12501. white-space:nowrap;
  12502. text-transform:none;
  12503. }
  12504. #u220974_img {
  12505. border-width:0px;
  12506. position:absolute;
  12507. left:0px;
  12508. top:0px;
  12509. width:375px;
  12510. height:275px;
  12511. }
  12512. #u220974 {
  12513. border-width:0px;
  12514. position:absolute;
  12515. left:1888px;
  12516. top:564px;
  12517. width:375px;
  12518. height:275px;
  12519. display:flex;
  12520. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12521. font-weight:400;
  12522. font-style:normal;
  12523. }
  12524. #u220974 .text {
  12525. position:absolute;
  12526. align-self:center;
  12527. padding:2px 2px 2px 2px;
  12528. box-sizing:border-box;
  12529. width:100%;
  12530. }
  12531. #u220974_text {
  12532. border-width:0px;
  12533. word-wrap:break-word;
  12534. text-transform:none;
  12535. }
  12536. #u220975_div {
  12537. border-width:0px;
  12538. position:absolute;
  12539. left:0px;
  12540. top:0px;
  12541. width:167px;
  12542. height:30px;
  12543. background:inherit;
  12544. background-color:rgba(255, 255, 255, 0);
  12545. border:none;
  12546. border-left:0px;
  12547. border-top:0px;
  12548. border-right:0px;
  12549. border-radius:0px;
  12550. border-bottom-right-radius:0px;
  12551. border-bottom-left-radius:0px;
  12552. -moz-box-shadow:none;
  12553. -webkit-box-shadow:none;
  12554. box-shadow:none;
  12555. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12556. font-weight:400;
  12557. font-style:normal;
  12558. font-size:12px;
  12559. line-height:30px;
  12560. }
  12561. #u220975 {
  12562. border-width:0px;
  12563. position:absolute;
  12564. left:1912px;
  12565. top:523px;
  12566. width:167px;
  12567. height:30px;
  12568. display:flex;
  12569. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12570. font-weight:400;
  12571. font-style:normal;
  12572. font-size:12px;
  12573. line-height:30px;
  12574. }
  12575. #u220975 .text {
  12576. position:absolute;
  12577. align-self:flex-start;
  12578. padding:0px 0px 0px 0px;
  12579. box-sizing:border-box;
  12580. width:100%;
  12581. }
  12582. #u220975_text {
  12583. border-width:0px;
  12584. white-space:nowrap;
  12585. text-transform:none;
  12586. }
  12587. #u220976_div {
  12588. border-width:0px;
  12589. position:absolute;
  12590. left:0px;
  12591. top:0px;
  12592. width:92px;
  12593. height:30px;
  12594. background:inherit;
  12595. background-color:rgba(255, 255, 255, 0);
  12596. border:none;
  12597. border-left:0px;
  12598. border-top:0px;
  12599. border-right:0px;
  12600. border-radius:0px;
  12601. border-bottom-right-radius:0px;
  12602. border-bottom-left-radius:0px;
  12603. -moz-box-shadow:none;
  12604. -webkit-box-shadow:none;
  12605. box-shadow:none;
  12606. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12607. font-weight:400;
  12608. font-style:normal;
  12609. font-size:12px;
  12610. color:#0089FE;
  12611. line-height:30px;
  12612. }
  12613. #u220976 {
  12614. border-width:0px;
  12615. position:absolute;
  12616. left:2157px;
  12617. top:433px;
  12618. width:92px;
  12619. height:30px;
  12620. display:flex;
  12621. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12622. font-weight:400;
  12623. font-style:normal;
  12624. font-size:12px;
  12625. color:#0089FE;
  12626. line-height:30px;
  12627. }
  12628. #u220976 .text {
  12629. position:absolute;
  12630. align-self:flex-start;
  12631. padding:0px 0px 0px 0px;
  12632. box-sizing:border-box;
  12633. width:100%;
  12634. }
  12635. #u220976_text {
  12636. border-width:0px;
  12637. white-space:nowrap;
  12638. text-transform:none;
  12639. }
  12640. #u220977 {
  12641. border-width:0px;
  12642. position:absolute;
  12643. left:0px;
  12644. top:0px;
  12645. width:0px;
  12646. height:0px;
  12647. }
  12648. #u220978_div {
  12649. border-width:0px;
  12650. position:absolute;
  12651. left:0px;
  12652. top:0px;
  12653. width:375px;
  12654. height:180px;
  12655. background:inherit;
  12656. background-color:rgba(255, 255, 255, 1);
  12657. border:none;
  12658. border-top:0px;
  12659. border-bottom:0px;
  12660. border-radius:0px;
  12661. border-top-left-radius:0px;
  12662. border-top-right-radius:0px;
  12663. border-bottom-right-radius:0px;
  12664. border-bottom-left-radius:0px;
  12665. -moz-box-shadow:none;
  12666. -webkit-box-shadow:none;
  12667. box-shadow:none;
  12668. }
  12669. #u220978 {
  12670. border-width:0px;
  12671. position:absolute;
  12672. left:1888px;
  12673. top:234px;
  12674. width:375px;
  12675. height:180px;
  12676. display:flex;
  12677. }
  12678. #u220978 .text {
  12679. position:absolute;
  12680. align-self:center;
  12681. padding:2px 2px 2px 2px;
  12682. box-sizing:border-box;
  12683. width:100%;
  12684. }
  12685. #u220978_text {
  12686. border-width:0px;
  12687. word-wrap:break-word;
  12688. text-transform:none;
  12689. visibility:hidden;
  12690. }
  12691. #u220979_div {
  12692. border-width:0px;
  12693. position:absolute;
  12694. left:0px;
  12695. top:0px;
  12696. width:150px;
  12697. height:150px;
  12698. background:inherit;
  12699. background-color:rgba(255, 255, 255, 0);
  12700. border:none;
  12701. border-left:0px;
  12702. border-top:0px;
  12703. border-right:0px;
  12704. border-radius:0px;
  12705. border-bottom-right-radius:0px;
  12706. border-bottom-left-radius:0px;
  12707. -moz-box-shadow:none;
  12708. -webkit-box-shadow:none;
  12709. box-shadow:none;
  12710. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12711. font-weight:400;
  12712. font-style:normal;
  12713. font-size:12px;
  12714. line-height:25px;
  12715. }
  12716. #u220979 {
  12717. border-width:0px;
  12718. position:absolute;
  12719. left:1912px;
  12720. top:248px;
  12721. width:150px;
  12722. height:150px;
  12723. display:flex;
  12724. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12725. font-weight:400;
  12726. font-style:normal;
  12727. font-size:12px;
  12728. line-height:25px;
  12729. }
  12730. #u220979 .text {
  12731. position:absolute;
  12732. align-self:flex-start;
  12733. padding:0px 0px 0px 0px;
  12734. box-sizing:border-box;
  12735. width:100%;
  12736. }
  12737. #u220979_text {
  12738. border-width:0px;
  12739. white-space:nowrap;
  12740. text-transform:none;
  12741. }
  12742. #u220980_div {
  12743. border-width:0px;
  12744. position:absolute;
  12745. left:0px;
  12746. top:0px;
  12747. width:73px;
  12748. height:25px;
  12749. background:inherit;
  12750. background-color:rgba(255, 255, 255, 0);
  12751. border:none;
  12752. border-left:0px;
  12753. border-top:0px;
  12754. border-right:0px;
  12755. border-radius:0px;
  12756. border-bottom-right-radius:0px;
  12757. border-bottom-left-radius:0px;
  12758. -moz-box-shadow:none;
  12759. -webkit-box-shadow:none;
  12760. box-shadow:none;
  12761. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12762. font-weight:400;
  12763. font-style:normal;
  12764. font-size:12px;
  12765. color:#D9001B;
  12766. line-height:25px;
  12767. }
  12768. #u220980 {
  12769. border-width:0px;
  12770. position:absolute;
  12771. left:2171px;
  12772. top:146px;
  12773. width:73px;
  12774. height:25px;
  12775. display:flex;
  12776. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12777. font-weight:400;
  12778. font-style:normal;
  12779. font-size:12px;
  12780. color:#D9001B;
  12781. line-height:25px;
  12782. }
  12783. #u220980 .text {
  12784. position:absolute;
  12785. align-self:flex-start;
  12786. padding:0px 0px 0px 0px;
  12787. box-sizing:border-box;
  12788. width:100%;
  12789. }
  12790. #u220980_text {
  12791. border-width:0px;
  12792. white-space:nowrap;
  12793. text-transform:none;
  12794. }
  12795. #u220981 {
  12796. border-width:0px;
  12797. position:absolute;
  12798. left:0px;
  12799. top:0px;
  12800. width:0px;
  12801. height:0px;
  12802. }
  12803. #u220982_div {
  12804. border-width:0px;
  12805. position:absolute;
  12806. left:0px;
  12807. top:0px;
  12808. width:375px;
  12809. height:180px;
  12810. background:inherit;
  12811. background-color:rgba(255, 255, 255, 1);
  12812. border:none;
  12813. border-top:0px;
  12814. border-bottom:0px;
  12815. border-radius:0px;
  12816. border-top-left-radius:0px;
  12817. border-top-right-radius:0px;
  12818. border-bottom-right-radius:0px;
  12819. border-bottom-left-radius:0px;
  12820. -moz-box-shadow:none;
  12821. -webkit-box-shadow:none;
  12822. box-shadow:none;
  12823. }
  12824. #u220982 {
  12825. border-width:0px;
  12826. position:absolute;
  12827. left:2351px;
  12828. top:234px;
  12829. width:375px;
  12830. height:180px;
  12831. display:flex;
  12832. }
  12833. #u220982 .text {
  12834. position:absolute;
  12835. align-self:center;
  12836. padding:2px 2px 2px 2px;
  12837. box-sizing:border-box;
  12838. width:100%;
  12839. }
  12840. #u220982_text {
  12841. border-width:0px;
  12842. word-wrap:break-word;
  12843. text-transform:none;
  12844. visibility:hidden;
  12845. }
  12846. #u220983_div {
  12847. border-width:0px;
  12848. position:absolute;
  12849. left:0px;
  12850. top:0px;
  12851. width:150px;
  12852. height:150px;
  12853. background:inherit;
  12854. background-color:rgba(255, 255, 255, 0);
  12855. border:none;
  12856. border-left:0px;
  12857. border-top:0px;
  12858. border-right:0px;
  12859. border-radius:0px;
  12860. border-bottom-right-radius:0px;
  12861. border-bottom-left-radius:0px;
  12862. -moz-box-shadow:none;
  12863. -webkit-box-shadow:none;
  12864. box-shadow:none;
  12865. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12866. font-weight:400;
  12867. font-style:normal;
  12868. font-size:12px;
  12869. line-height:25px;
  12870. }
  12871. #u220983 {
  12872. border-width:0px;
  12873. position:absolute;
  12874. left:2375px;
  12875. top:248px;
  12876. width:150px;
  12877. height:150px;
  12878. display:flex;
  12879. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12880. font-weight:400;
  12881. font-style:normal;
  12882. font-size:12px;
  12883. line-height:25px;
  12884. }
  12885. #u220983 .text {
  12886. position:absolute;
  12887. align-self:flex-start;
  12888. padding:0px 0px 0px 0px;
  12889. box-sizing:border-box;
  12890. width:100%;
  12891. }
  12892. #u220983_text {
  12893. border-width:0px;
  12894. white-space:nowrap;
  12895. text-transform:none;
  12896. }
  12897. #u220984 {
  12898. border-width:0px;
  12899. position:absolute;
  12900. left:0px;
  12901. top:0px;
  12902. width:0px;
  12903. height:0px;
  12904. }
  12905. #u220985_div {
  12906. border-width:0px;
  12907. position:absolute;
  12908. left:0px;
  12909. top:0px;
  12910. width:375px;
  12911. height:180px;
  12912. background:inherit;
  12913. background-color:rgba(255, 255, 255, 1);
  12914. border:none;
  12915. border-top:0px;
  12916. border-bottom:0px;
  12917. border-radius:0px;
  12918. border-top-left-radius:0px;
  12919. border-top-right-radius:0px;
  12920. border-bottom-right-radius:0px;
  12921. border-bottom-left-radius:0px;
  12922. -moz-box-shadow:none;
  12923. -webkit-box-shadow:none;
  12924. box-shadow:none;
  12925. }
  12926. #u220985 {
  12927. border-width:0px;
  12928. position:absolute;
  12929. left:2826px;
  12930. top:234px;
  12931. width:375px;
  12932. height:180px;
  12933. display:flex;
  12934. }
  12935. #u220985 .text {
  12936. position:absolute;
  12937. align-self:center;
  12938. padding:2px 2px 2px 2px;
  12939. box-sizing:border-box;
  12940. width:100%;
  12941. }
  12942. #u220985_text {
  12943. border-width:0px;
  12944. word-wrap:break-word;
  12945. text-transform:none;
  12946. visibility:hidden;
  12947. }
  12948. #u220986_div {
  12949. border-width:0px;
  12950. position:absolute;
  12951. left:0px;
  12952. top:0px;
  12953. width:150px;
  12954. height:150px;
  12955. background:inherit;
  12956. background-color:rgba(255, 255, 255, 0);
  12957. border:none;
  12958. border-left:0px;
  12959. border-top:0px;
  12960. border-right:0px;
  12961. border-radius:0px;
  12962. border-bottom-right-radius:0px;
  12963. border-bottom-left-radius:0px;
  12964. -moz-box-shadow:none;
  12965. -webkit-box-shadow:none;
  12966. box-shadow:none;
  12967. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12968. font-weight:400;
  12969. font-style:normal;
  12970. font-size:12px;
  12971. line-height:25px;
  12972. }
  12973. #u220986 {
  12974. border-width:0px;
  12975. position:absolute;
  12976. left:2850px;
  12977. top:248px;
  12978. width:150px;
  12979. height:150px;
  12980. display:flex;
  12981. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12982. font-weight:400;
  12983. font-style:normal;
  12984. font-size:12px;
  12985. line-height:25px;
  12986. }
  12987. #u220986 .text {
  12988. position:absolute;
  12989. align-self:flex-start;
  12990. padding:0px 0px 0px 0px;
  12991. box-sizing:border-box;
  12992. width:100%;
  12993. }
  12994. #u220986_text {
  12995. border-width:0px;
  12996. white-space:nowrap;
  12997. text-transform:none;
  12998. }
  12999. #u220987 {
  13000. border-width:0px;
  13001. position:absolute;
  13002. left:0px;
  13003. top:0px;
  13004. width:0px;
  13005. height:0px;
  13006. }
  13007. #u220988_div {
  13008. border-width:0px;
  13009. position:absolute;
  13010. left:0px;
  13011. top:0px;
  13012. width:375px;
  13013. height:40px;
  13014. background:inherit;
  13015. background-color:rgba(255, 255, 128, 0.0980392156862745);
  13016. border:none;
  13017. border-radius:0px;
  13018. -moz-box-shadow:none;
  13019. -webkit-box-shadow:none;
  13020. box-shadow:none;
  13021. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13022. font-weight:400;
  13023. font-style:normal;
  13024. font-size:14px;
  13025. color:#F59A23;
  13026. }
  13027. #u220988 {
  13028. border-width:0px;
  13029. position:absolute;
  13030. left:1888px;
  13031. top:799px;
  13032. width:375px;
  13033. height:40px;
  13034. display:flex;
  13035. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13036. font-weight:400;
  13037. font-style:normal;
  13038. font-size:14px;
  13039. color:#F59A23;
  13040. }
  13041. #u220988 .text {
  13042. position:absolute;
  13043. align-self:center;
  13044. padding:2px 2px 2px 2px;
  13045. box-sizing:border-box;
  13046. width:100%;
  13047. }
  13048. #u220988_text {
  13049. border-width:0px;
  13050. word-wrap:break-word;
  13051. text-transform:none;
  13052. }
  13053. #u220989_img {
  13054. border-width:0px;
  13055. position:absolute;
  13056. left:0px;
  13057. top:0px;
  13058. width:15px;
  13059. height:15px;
  13060. }
  13061. #u220989 {
  13062. border-width:0px;
  13063. position:absolute;
  13064. left:2208px;
  13065. top:811px;
  13066. width:15px;
  13067. height:15px;
  13068. display:flex;
  13069. }
  13070. #u220989 .text {
  13071. position:absolute;
  13072. align-self:center;
  13073. padding:2px 2px 2px 2px;
  13074. box-sizing:border-box;
  13075. width:100%;
  13076. }
  13077. #u220989_text {
  13078. border-width:0px;
  13079. word-wrap:break-word;
  13080. text-transform:none;
  13081. visibility:hidden;
  13082. }
  13083. #u220990 {
  13084. border-width:0px;
  13085. position:absolute;
  13086. left:0px;
  13087. top:0px;
  13088. width:0px;
  13089. height:0px;
  13090. }
  13091. #u220991_div {
  13092. border-width:0px;
  13093. position:absolute;
  13094. left:0px;
  13095. top:0px;
  13096. width:375px;
  13097. height:40px;
  13098. background:inherit;
  13099. background-color:rgba(255, 255, 128, 0.0980392156862745);
  13100. border:none;
  13101. border-radius:0px;
  13102. -moz-box-shadow:none;
  13103. -webkit-box-shadow:none;
  13104. box-shadow:none;
  13105. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13106. font-weight:400;
  13107. font-style:normal;
  13108. font-size:14px;
  13109. color:#F59A23;
  13110. }
  13111. #u220991 {
  13112. border-width:0px;
  13113. position:absolute;
  13114. left:1425px;
  13115. top:799px;
  13116. width:375px;
  13117. height:40px;
  13118. display:flex;
  13119. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  13120. font-weight:400;
  13121. font-style:normal;
  13122. font-size:14px;
  13123. color:#F59A23;
  13124. }
  13125. #u220991 .text {
  13126. position:absolute;
  13127. align-self:center;
  13128. padding:2px 2px 2px 2px;
  13129. box-sizing:border-box;
  13130. width:100%;
  13131. }
  13132. #u220991_text {
  13133. border-width:0px;
  13134. word-wrap:break-word;
  13135. text-transform:none;
  13136. }
  13137. #u220992_img {
  13138. border-width:0px;
  13139. position:absolute;
  13140. left:0px;
  13141. top:0px;
  13142. width:15px;
  13143. height:15px;
  13144. }
  13145. #u220992 {
  13146. border-width:0px;
  13147. position:absolute;
  13148. left:1745px;
  13149. top:811px;
  13150. width:15px;
  13151. height:15px;
  13152. display:flex;
  13153. }
  13154. #u220992 .text {
  13155. position:absolute;
  13156. align-self:center;
  13157. padding:2px 2px 2px 2px;
  13158. box-sizing:border-box;
  13159. width:100%;
  13160. }
  13161. #u220992_text {
  13162. border-width:0px;
  13163. word-wrap:break-word;
  13164. text-transform:none;
  13165. visibility:hidden;
  13166. }