styles.css 137 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1831px;
  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. #u199333_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u199333 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u199333 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u199333_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u199334_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. #u199334 {
  73. border-width:0px;
  74. position:absolute;
  75. left:29px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u199334 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u199334_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u199335 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u199336_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. #u199336 {
  121. border-width:0px;
  122. position:absolute;
  123. left:309px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u199336 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u199336_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u199337 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u199338_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u199338 {
  159. border-width:0px;
  160. position:absolute;
  161. left:372px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u199338 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u199338_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u199339_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u199339 {
  189. border-width:0px;
  190. position:absolute;
  191. left:378px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u199339 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u199339_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u199340 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u199341_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u199341 {
  227. border-width:0px;
  228. position:absolute;
  229. left:323px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u199341 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u199341_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u199342_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u199342 {
  257. border-width:0px;
  258. position:absolute;
  259. left:339px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u199342 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u199342_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u199343_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u199343 {
  287. border-width:0px;
  288. position:absolute;
  289. left:330px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u199343 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u199343_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u199344_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u199344 {
  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. #u199344 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u199344_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u199345_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u199345 {
  351. border-width:0px;
  352. position:absolute;
  353. left:29px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u199345 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u199345_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u199346_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. #u199346 {
  393. border-width:0px;
  394. position:absolute;
  395. left:29px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u199346 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u199346_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u199347 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u199348_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u199348 {
  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. #u199348 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u199348_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u199349_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. #u199349 {
  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. #u199349 .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. #u199349_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u199350 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u199351_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u199351 {
  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. #u199351 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u199351_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u199352_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. #u199352 {
  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. #u199352 .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. #u199352_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u199353_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. #u199353 {
  594. border-width:0px;
  595. position:absolute;
  596. left:29px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u199353 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u199353_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u199354 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u199355_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u199355 {
  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. #u199355 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u199355_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u199356_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. #u199356 {
  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. #u199356 .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. #u199356_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u199357 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u199358_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u199358 {
  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. #u199358 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u199358_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u199359_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. #u199359 {
  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. #u199359 .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. #u199359_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u199360_div {
  780. border-width:0px;
  781. position:absolute;
  782. left:0px;
  783. top:0px;
  784. width:375px;
  785. height:40px;
  786. background:inherit;
  787. background-color:rgba(255, 255, 255, 1);
  788. box-sizing:border-box;
  789. border-width:1px;
  790. border-style:solid;
  791. border-color:rgba(215, 215, 215, 1);
  792. border-left:0px;
  793. border-top:0px;
  794. border-right:0px;
  795. border-radius:0px;
  796. border-bottom-right-radius:0px;
  797. border-bottom-left-radius:0px;
  798. -moz-box-shadow:none;
  799. -webkit-box-shadow:none;
  800. box-shadow:none;
  801. }
  802. #u199360 {
  803. border-width:0px;
  804. position:absolute;
  805. left:29px;
  806. top:67px;
  807. width:375px;
  808. height:40px;
  809. display:flex;
  810. }
  811. #u199360 .text {
  812. position:absolute;
  813. align-self:center;
  814. padding:2px 2px 2px 2px;
  815. box-sizing:border-box;
  816. width:100%;
  817. }
  818. #u199360_text {
  819. border-width:0px;
  820. word-wrap:break-word;
  821. text-transform:none;
  822. visibility:hidden;
  823. }
  824. #u199361_img {
  825. border-width:0px;
  826. position:absolute;
  827. left:0px;
  828. top:0px;
  829. width:375px;
  830. height:44px;
  831. }
  832. #u199361 {
  833. border-width:0px;
  834. position:absolute;
  835. left:29px;
  836. top:24px;
  837. width:375px;
  838. height:44px;
  839. display:flex;
  840. }
  841. #u199361 .text {
  842. position:absolute;
  843. align-self:center;
  844. padding:2px 2px 2px 2px;
  845. box-sizing:border-box;
  846. width:100%;
  847. }
  848. #u199361_text {
  849. border-width:0px;
  850. word-wrap:break-word;
  851. text-transform:none;
  852. visibility:hidden;
  853. }
  854. #u199362 {
  855. border-width:0px;
  856. position:absolute;
  857. left:0px;
  858. top:0px;
  859. width:0px;
  860. height:0px;
  861. }
  862. #u199363_div {
  863. border-width:0px;
  864. position:absolute;
  865. left:0px;
  866. top:0px;
  867. width:88px;
  868. height:32px;
  869. background:inherit;
  870. background-color:rgba(255, 255, 255, 1);
  871. box-sizing:border-box;
  872. border-width:1px;
  873. border-style:solid;
  874. border-color:rgba(242, 242, 242, 1);
  875. border-radius:33px;
  876. -moz-box-shadow:none;
  877. -webkit-box-shadow:none;
  878. box-shadow:none;
  879. }
  880. #u199363 {
  881. border-width:0px;
  882. position:absolute;
  883. left:309px;
  884. top:71px;
  885. width:88px;
  886. height:32px;
  887. display:flex;
  888. }
  889. #u199363 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u199363_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u199364 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u199365_img {
  911. border-width:0px;
  912. position:absolute;
  913. left:0px;
  914. top:0px;
  915. width:18px;
  916. height:18px;
  917. }
  918. #u199365 {
  919. border-width:0px;
  920. position:absolute;
  921. left:372px;
  922. top:78px;
  923. width:18px;
  924. height:18px;
  925. display:flex;
  926. }
  927. #u199365 .text {
  928. position:absolute;
  929. align-self:center;
  930. padding:2px 2px 2px 2px;
  931. box-sizing:border-box;
  932. width:100%;
  933. }
  934. #u199365_text {
  935. border-width:0px;
  936. word-wrap:break-word;
  937. text-transform:none;
  938. visibility:hidden;
  939. }
  940. #u199366_img {
  941. border-width:0px;
  942. position:absolute;
  943. left:0px;
  944. top:0px;
  945. width:6px;
  946. height:6px;
  947. }
  948. #u199366 {
  949. border-width:0px;
  950. position:absolute;
  951. left:378px;
  952. top:84px;
  953. width:6px;
  954. height:6px;
  955. display:flex;
  956. }
  957. #u199366 .text {
  958. position:absolute;
  959. align-self:center;
  960. padding:2px 2px 2px 2px;
  961. box-sizing:border-box;
  962. width:100%;
  963. }
  964. #u199366_text {
  965. border-width:0px;
  966. word-wrap:break-word;
  967. text-transform:none;
  968. visibility:hidden;
  969. }
  970. #u199367 {
  971. border-width:0px;
  972. position:absolute;
  973. left:0px;
  974. top:0px;
  975. width:0px;
  976. height:0px;
  977. }
  978. #u199368_img {
  979. border-width:0px;
  980. position:absolute;
  981. left:0px;
  982. top:0px;
  983. width:5px;
  984. height:5px;
  985. }
  986. #u199368 {
  987. border-width:0px;
  988. position:absolute;
  989. left:323px;
  990. top:85px;
  991. width:5px;
  992. height:5px;
  993. display:flex;
  994. }
  995. #u199368 .text {
  996. position:absolute;
  997. align-self:center;
  998. padding:2px 2px 2px 2px;
  999. box-sizing:border-box;
  1000. width:100%;
  1001. }
  1002. #u199368_text {
  1003. border-width:0px;
  1004. word-wrap:break-word;
  1005. text-transform:none;
  1006. visibility:hidden;
  1007. }
  1008. #u199369_img {
  1009. border-width:0px;
  1010. position:absolute;
  1011. left:0px;
  1012. top:0px;
  1013. width:5px;
  1014. height:5px;
  1015. }
  1016. #u199369 {
  1017. border-width:0px;
  1018. position:absolute;
  1019. left:339px;
  1020. top:85px;
  1021. width:5px;
  1022. height:5px;
  1023. display:flex;
  1024. }
  1025. #u199369 .text {
  1026. position:absolute;
  1027. align-self:center;
  1028. padding:2px 2px 2px 2px;
  1029. box-sizing:border-box;
  1030. width:100%;
  1031. }
  1032. #u199369_text {
  1033. border-width:0px;
  1034. word-wrap:break-word;
  1035. text-transform:none;
  1036. visibility:hidden;
  1037. }
  1038. #u199370_img {
  1039. border-width:0px;
  1040. position:absolute;
  1041. left:0px;
  1042. top:0px;
  1043. width:7px;
  1044. height:7px;
  1045. }
  1046. #u199370 {
  1047. border-width:0px;
  1048. position:absolute;
  1049. left:330px;
  1050. top:84px;
  1051. width:7px;
  1052. height:7px;
  1053. display:flex;
  1054. }
  1055. #u199370 .text {
  1056. position:absolute;
  1057. align-self:center;
  1058. padding:2px 2px 2px 2px;
  1059. box-sizing:border-box;
  1060. width:100%;
  1061. }
  1062. #u199370_text {
  1063. border-width:0px;
  1064. word-wrap:break-word;
  1065. text-transform:none;
  1066. visibility:hidden;
  1067. }
  1068. #u199371_img {
  1069. border-width:0px;
  1070. position:absolute;
  1071. left:0px;
  1072. top:0px;
  1073. width:19px;
  1074. height:2px;
  1075. }
  1076. #u199371 {
  1077. border-width:0px;
  1078. position:absolute;
  1079. left:347px;
  1080. top:87px;
  1081. width:18px;
  1082. height:1px;
  1083. display:flex;
  1084. -webkit-transform:rotate(90deg);
  1085. -moz-transform:rotate(90deg);
  1086. -ms-transform:rotate(90deg);
  1087. transform:rotate(90deg);
  1088. }
  1089. #u199371 .text {
  1090. position:absolute;
  1091. align-self:center;
  1092. padding:2px 2px 2px 2px;
  1093. box-sizing:border-box;
  1094. width:100%;
  1095. }
  1096. #u199371_text {
  1097. border-width:0px;
  1098. word-wrap:break-word;
  1099. text-transform:none;
  1100. visibility:hidden;
  1101. }
  1102. #u199372_div {
  1103. border-width:0px;
  1104. position:absolute;
  1105. left:0px;
  1106. top:0px;
  1107. width:65px;
  1108. height:22px;
  1109. background:inherit;
  1110. background-color:rgba(255, 255, 255, 0);
  1111. border:none;
  1112. border-radius:0px;
  1113. -moz-box-shadow:none;
  1114. -webkit-box-shadow:none;
  1115. box-shadow:none;
  1116. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1117. font-weight:400;
  1118. font-style:normal;
  1119. font-size:16px;
  1120. color:#000000;
  1121. }
  1122. #u199372 {
  1123. border-width:0px;
  1124. position:absolute;
  1125. left:186px;
  1126. top:78px;
  1127. width:65px;
  1128. height:22px;
  1129. display:flex;
  1130. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1131. font-weight:400;
  1132. font-style:normal;
  1133. font-size:16px;
  1134. color:#000000;
  1135. }
  1136. #u199372 .text {
  1137. position:absolute;
  1138. align-self:flex-start;
  1139. padding:0px 0px 0px 0px;
  1140. box-sizing:border-box;
  1141. width:100%;
  1142. }
  1143. #u199372_text {
  1144. border-width:0px;
  1145. white-space:nowrap;
  1146. text-transform:none;
  1147. }
  1148. #u199373_div {
  1149. border-width:0px;
  1150. position:absolute;
  1151. left:0px;
  1152. top:0px;
  1153. width:12px;
  1154. height:12px;
  1155. background:inherit;
  1156. background-color:rgba(255, 255, 255, 0);
  1157. box-sizing:border-box;
  1158. border-width:2px;
  1159. border-style:solid;
  1160. border-color:rgba(51, 51, 51, 1);
  1161. border-right:0px;
  1162. border-bottom:0px;
  1163. border-radius:0px;
  1164. border-top-right-radius:0px;
  1165. border-bottom-left-radius:0px;
  1166. -moz-box-shadow:none;
  1167. -webkit-box-shadow:none;
  1168. box-shadow:none;
  1169. }
  1170. #u199373 {
  1171. border-width:0px;
  1172. position:absolute;
  1173. left:44px;
  1174. top:81px;
  1175. width:12px;
  1176. height:12px;
  1177. display:flex;
  1178. -webkit-transform:rotate(315deg);
  1179. -moz-transform:rotate(315deg);
  1180. -ms-transform:rotate(315deg);
  1181. transform:rotate(315deg);
  1182. }
  1183. #u199373 .text {
  1184. position:absolute;
  1185. align-self:center;
  1186. padding:2px 2px 2px 2px;
  1187. box-sizing:border-box;
  1188. width:100%;
  1189. }
  1190. #u199373_text {
  1191. border-width:0px;
  1192. word-wrap:break-word;
  1193. text-transform:none;
  1194. visibility:hidden;
  1195. }
  1196. #u199374_img {
  1197. border-width:0px;
  1198. position:absolute;
  1199. left:0px;
  1200. top:0px;
  1201. width:23px;
  1202. height:23px;
  1203. }
  1204. #u199374 {
  1205. border-width:0px;
  1206. position:absolute;
  1207. left:71px;
  1208. top:76px;
  1209. width:23px;
  1210. height:23px;
  1211. display:flex;
  1212. }
  1213. #u199374 .text {
  1214. position:absolute;
  1215. align-self:center;
  1216. padding:2px 2px 2px 2px;
  1217. box-sizing:border-box;
  1218. width:100%;
  1219. }
  1220. #u199374_text {
  1221. border-width:0px;
  1222. word-wrap:break-word;
  1223. text-transform:none;
  1224. visibility:hidden;
  1225. }
  1226. #u199375_div {
  1227. border-width:0px;
  1228. position:absolute;
  1229. left:0px;
  1230. top:0px;
  1231. width:375px;
  1232. height:1516px;
  1233. background:inherit;
  1234. background-color:rgba(242, 242, 242, 0.996078431372549);
  1235. border:none;
  1236. border-top:0px;
  1237. border-radius:23px;
  1238. border-top-left-radius:0px;
  1239. border-top-right-radius:0px;
  1240. -moz-box-shadow:none;
  1241. -webkit-box-shadow:none;
  1242. box-shadow:none;
  1243. }
  1244. #u199375 {
  1245. border-width:0px;
  1246. position:absolute;
  1247. left:29px;
  1248. top:107px;
  1249. width:375px;
  1250. height:1516px;
  1251. display:flex;
  1252. }
  1253. #u199375 .text {
  1254. position:absolute;
  1255. align-self:center;
  1256. padding:2px 2px 2px 2px;
  1257. box-sizing:border-box;
  1258. width:100%;
  1259. }
  1260. #u199375_text {
  1261. border-width:0px;
  1262. word-wrap:break-word;
  1263. text-transform:none;
  1264. visibility:hidden;
  1265. }
  1266. #u199376 {
  1267. border-width:0px;
  1268. position:absolute;
  1269. left:0px;
  1270. top:0px;
  1271. width:0px;
  1272. height:0px;
  1273. }
  1274. #u199377_div {
  1275. border-width:0px;
  1276. position:absolute;
  1277. left:0px;
  1278. top:0px;
  1279. width:375px;
  1280. height:254px;
  1281. background:inherit;
  1282. background-color:rgba(255, 255, 255, 1);
  1283. border:none;
  1284. border-radius:0px;
  1285. -moz-box-shadow:none;
  1286. -webkit-box-shadow:none;
  1287. box-shadow:none;
  1288. }
  1289. #u199377 {
  1290. border-width:0px;
  1291. position:absolute;
  1292. left:29px;
  1293. top:488px;
  1294. width:375px;
  1295. height:254px;
  1296. display:flex;
  1297. }
  1298. #u199377 .text {
  1299. position:absolute;
  1300. align-self:center;
  1301. padding:2px 2px 2px 2px;
  1302. box-sizing:border-box;
  1303. width:100%;
  1304. }
  1305. #u199377_text {
  1306. border-width:0px;
  1307. word-wrap:break-word;
  1308. text-transform:none;
  1309. visibility:hidden;
  1310. }
  1311. #u199378_div {
  1312. border-width:0px;
  1313. position:absolute;
  1314. left:0px;
  1315. top:0px;
  1316. width:95px;
  1317. height:35px;
  1318. background:inherit;
  1319. background-color:rgba(255, 255, 255, 0);
  1320. border:none;
  1321. border-top:0px;
  1322. border-right:0px;
  1323. border-bottom:0px;
  1324. border-radius:0px;
  1325. border-top-left-radius:0px;
  1326. border-bottom-left-radius:0px;
  1327. -moz-box-shadow:none;
  1328. -webkit-box-shadow:none;
  1329. box-shadow:none;
  1330. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1331. font-weight:400;
  1332. font-style:normal;
  1333. font-size:14px;
  1334. line-height:25px;
  1335. }
  1336. #u199378 {
  1337. border-width:0px;
  1338. position:absolute;
  1339. left:44px;
  1340. top:498px;
  1341. width:95px;
  1342. height:35px;
  1343. display:flex;
  1344. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1345. font-weight:400;
  1346. font-style:normal;
  1347. font-size:14px;
  1348. line-height:25px;
  1349. }
  1350. #u199378 .text {
  1351. position:absolute;
  1352. align-self:center;
  1353. padding:5px 10px 5px 0px;
  1354. box-sizing:border-box;
  1355. width:100%;
  1356. }
  1357. #u199378_text {
  1358. border-width:0px;
  1359. white-space:nowrap;
  1360. text-transform:none;
  1361. }
  1362. #u199379_div {
  1363. border-width:0px;
  1364. position:absolute;
  1365. left:0px;
  1366. top:0px;
  1367. width:358px;
  1368. height:190px;
  1369. background:inherit;
  1370. background-color:rgba(255, 255, 255, 0);
  1371. border:none;
  1372. border-top:0px;
  1373. border-right:0px;
  1374. border-bottom:0px;
  1375. border-radius:0px;
  1376. border-top-left-radius:0px;
  1377. border-bottom-left-radius:0px;
  1378. -moz-box-shadow:none;
  1379. -webkit-box-shadow:none;
  1380. box-shadow:none;
  1381. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1382. font-weight:400;
  1383. font-style:normal;
  1384. font-size:12px;
  1385. line-height:30px;
  1386. }
  1387. #u199379 {
  1388. border-width:0px;
  1389. position:absolute;
  1390. left:44px;
  1391. top:537px;
  1392. width:358px;
  1393. height:190px;
  1394. display:flex;
  1395. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1396. font-weight:400;
  1397. font-style:normal;
  1398. font-size:12px;
  1399. line-height:30px;
  1400. }
  1401. #u199379 .text {
  1402. position:absolute;
  1403. align-self:flex-start;
  1404. padding:5px 10px 5px 0px;
  1405. box-sizing:border-box;
  1406. width:100%;
  1407. }
  1408. #u199379_text {
  1409. border-width:0px;
  1410. word-wrap:break-word;
  1411. text-transform:none;
  1412. }
  1413. #u199380_div {
  1414. border-width:0px;
  1415. position:absolute;
  1416. left:0px;
  1417. top:0px;
  1418. width:10px;
  1419. height:10px;
  1420. background:inherit;
  1421. background-color:rgba(255, 255, 255, 0);
  1422. box-sizing:border-box;
  1423. border-width:2px;
  1424. border-style:solid;
  1425. border-color:rgba(51, 51, 51, 1);
  1426. border-right:0px;
  1427. border-bottom:0px;
  1428. border-radius:0px;
  1429. border-top-right-radius:0px;
  1430. border-bottom-left-radius:0px;
  1431. -moz-box-shadow:none;
  1432. -webkit-box-shadow:none;
  1433. box-shadow:none;
  1434. }
  1435. #u199380 {
  1436. border-width:0px;
  1437. position:absolute;
  1438. left:378px;
  1439. top:508px;
  1440. width:10px;
  1441. height:10px;
  1442. display:flex;
  1443. -webkit-transform:rotate(45deg);
  1444. -moz-transform:rotate(45deg);
  1445. -ms-transform:rotate(45deg);
  1446. transform:rotate(45deg);
  1447. }
  1448. #u199380 .text {
  1449. position:absolute;
  1450. align-self:center;
  1451. padding:2px 2px 2px 2px;
  1452. box-sizing:border-box;
  1453. width:100%;
  1454. }
  1455. #u199380_text {
  1456. border-width:0px;
  1457. word-wrap:break-word;
  1458. text-transform:none;
  1459. visibility:hidden;
  1460. }
  1461. #u199381 {
  1462. border-width:0px;
  1463. position:absolute;
  1464. left:0px;
  1465. top:0px;
  1466. width:0px;
  1467. height:0px;
  1468. }
  1469. #u199382_div {
  1470. border-width:0px;
  1471. position:absolute;
  1472. left:0px;
  1473. top:0px;
  1474. width:375px;
  1475. height:380px;
  1476. background:inherit;
  1477. background-color:rgba(255, 255, 255, 1);
  1478. border:none;
  1479. border-radius:0px;
  1480. -moz-box-shadow:none;
  1481. -webkit-box-shadow:none;
  1482. box-shadow:none;
  1483. }
  1484. #u199382 {
  1485. border-width:0px;
  1486. position:absolute;
  1487. left:29px;
  1488. top:107px;
  1489. width:375px;
  1490. height:380px;
  1491. display:flex;
  1492. }
  1493. #u199382 .text {
  1494. position:absolute;
  1495. align-self:center;
  1496. padding:2px 2px 2px 2px;
  1497. box-sizing:border-box;
  1498. width:100%;
  1499. }
  1500. #u199382_text {
  1501. border-width:0px;
  1502. word-wrap:break-word;
  1503. text-transform:none;
  1504. visibility:hidden;
  1505. }
  1506. #u199383_div {
  1507. border-width:0px;
  1508. position:absolute;
  1509. left:0px;
  1510. top:0px;
  1511. width:353px;
  1512. height:160px;
  1513. background:inherit;
  1514. background-color:rgba(255, 255, 255, 0);
  1515. border:none;
  1516. border-top:0px;
  1517. border-right:0px;
  1518. border-bottom:0px;
  1519. border-radius:0px;
  1520. border-top-left-radius:0px;
  1521. border-bottom-left-radius:0px;
  1522. -moz-box-shadow:none;
  1523. -webkit-box-shadow:none;
  1524. box-shadow:none;
  1525. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1526. font-weight:400;
  1527. font-style:normal;
  1528. line-height:30px;
  1529. }
  1530. #u199383 {
  1531. border-width:0px;
  1532. position:absolute;
  1533. left:42px;
  1534. top:117px;
  1535. width:353px;
  1536. height:160px;
  1537. display:flex;
  1538. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1539. font-weight:400;
  1540. font-style:normal;
  1541. line-height:30px;
  1542. }
  1543. #u199383 .text {
  1544. position:absolute;
  1545. align-self:flex-start;
  1546. padding:5px 10px 5px 0px;
  1547. box-sizing:border-box;
  1548. width:100%;
  1549. }
  1550. #u199383_text {
  1551. border-width:0px;
  1552. word-wrap:break-word;
  1553. text-transform:none;
  1554. }
  1555. #u199384_div {
  1556. border-width:0px;
  1557. position:absolute;
  1558. left:0px;
  1559. top:0px;
  1560. width:353px;
  1561. height:190px;
  1562. background:inherit;
  1563. background-color:rgba(255, 255, 255, 0);
  1564. border:none;
  1565. border-top:0px;
  1566. border-right:0px;
  1567. border-bottom:0px;
  1568. border-radius:0px;
  1569. border-top-left-radius:0px;
  1570. border-bottom-left-radius:0px;
  1571. -moz-box-shadow:none;
  1572. -webkit-box-shadow:none;
  1573. box-shadow:none;
  1574. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1575. font-weight:400;
  1576. font-style:normal;
  1577. font-size:12px;
  1578. line-height:30px;
  1579. }
  1580. #u199384 {
  1581. border-width:0px;
  1582. position:absolute;
  1583. left:42px;
  1584. top:292px;
  1585. width:353px;
  1586. height:190px;
  1587. display:flex;
  1588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1589. font-weight:400;
  1590. font-style:normal;
  1591. font-size:12px;
  1592. line-height:30px;
  1593. }
  1594. #u199384 .text {
  1595. position:absolute;
  1596. align-self:flex-start;
  1597. padding:5px 10px 5px 0px;
  1598. box-sizing:border-box;
  1599. width:100%;
  1600. }
  1601. #u199384_text {
  1602. border-width:0px;
  1603. word-wrap:break-word;
  1604. text-transform:none;
  1605. }
  1606. #u199385_img {
  1607. border-width:0px;
  1608. position:absolute;
  1609. left:0px;
  1610. top:0px;
  1611. width:350px;
  1612. height:2px;
  1613. }
  1614. #u199385 {
  1615. border-width:0px;
  1616. position:absolute;
  1617. left:42px;
  1618. top:283px;
  1619. width:349px;
  1620. height:1px;
  1621. display:flex;
  1622. }
  1623. #u199385 .text {
  1624. position:absolute;
  1625. align-self:center;
  1626. padding:2px 2px 2px 2px;
  1627. box-sizing:border-box;
  1628. width:100%;
  1629. }
  1630. #u199385_text {
  1631. border-width:0px;
  1632. word-wrap:break-word;
  1633. text-transform:none;
  1634. visibility:hidden;
  1635. }
  1636. #u199386_div {
  1637. border-width:0px;
  1638. position:absolute;
  1639. left:0px;
  1640. top:0px;
  1641. width:10px;
  1642. height:10px;
  1643. background:inherit;
  1644. background-color:rgba(255, 255, 255, 0);
  1645. box-sizing:border-box;
  1646. border-width:2px;
  1647. border-style:solid;
  1648. border-color:rgba(51, 51, 51, 1);
  1649. border-right:0px;
  1650. border-bottom:0px;
  1651. border-radius:0px;
  1652. border-top-right-radius:0px;
  1653. border-bottom-left-radius:0px;
  1654. -moz-box-shadow:none;
  1655. -webkit-box-shadow:none;
  1656. box-shadow:none;
  1657. }
  1658. #u199386 {
  1659. border-width:0px;
  1660. position:absolute;
  1661. left:378px;
  1662. top:129px;
  1663. width:10px;
  1664. height:10px;
  1665. display:flex;
  1666. -webkit-transform:rotate(45deg);
  1667. -moz-transform:rotate(45deg);
  1668. -ms-transform:rotate(45deg);
  1669. transform:rotate(45deg);
  1670. }
  1671. #u199386 .text {
  1672. position:absolute;
  1673. align-self:center;
  1674. padding:2px 2px 2px 2px;
  1675. box-sizing:border-box;
  1676. width:100%;
  1677. }
  1678. #u199386_text {
  1679. border-width:0px;
  1680. word-wrap:break-word;
  1681. text-transform:none;
  1682. visibility:hidden;
  1683. }
  1684. #u199387 {
  1685. border-width:0px;
  1686. position:absolute;
  1687. left:0px;
  1688. top:0px;
  1689. width:0px;
  1690. height:0px;
  1691. }
  1692. #u199388_div {
  1693. border-width:0px;
  1694. position:absolute;
  1695. left:0px;
  1696. top:0px;
  1697. width:375px;
  1698. height:690px;
  1699. background:inherit;
  1700. background-color:rgba(255, 255, 255, 1);
  1701. border:none;
  1702. border-radius:0px;
  1703. -moz-box-shadow:none;
  1704. -webkit-box-shadow:none;
  1705. box-shadow:none;
  1706. }
  1707. #u199388 {
  1708. border-width:0px;
  1709. position:absolute;
  1710. left:29px;
  1711. top:743px;
  1712. width:375px;
  1713. height:690px;
  1714. display:flex;
  1715. }
  1716. #u199388 .text {
  1717. position:absolute;
  1718. align-self:center;
  1719. padding:2px 2px 2px 2px;
  1720. box-sizing:border-box;
  1721. width:100%;
  1722. }
  1723. #u199388_text {
  1724. border-width:0px;
  1725. word-wrap:break-word;
  1726. text-transform:none;
  1727. visibility:hidden;
  1728. }
  1729. #u199389_div {
  1730. border-width:0px;
  1731. position:absolute;
  1732. left:0px;
  1733. top:0px;
  1734. width:95px;
  1735. height:35px;
  1736. background:inherit;
  1737. background-color:rgba(255, 255, 255, 0);
  1738. border:none;
  1739. border-top:0px;
  1740. border-right:0px;
  1741. border-bottom:0px;
  1742. border-radius:0px;
  1743. border-top-left-radius:0px;
  1744. border-bottom-left-radius:0px;
  1745. -moz-box-shadow:none;
  1746. -webkit-box-shadow:none;
  1747. box-shadow:none;
  1748. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1749. font-weight:400;
  1750. font-style:normal;
  1751. font-size:14px;
  1752. line-height:25px;
  1753. }
  1754. #u199389 {
  1755. border-width:0px;
  1756. position:absolute;
  1757. left:44px;
  1758. top:753px;
  1759. width:95px;
  1760. height:35px;
  1761. display:flex;
  1762. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1763. font-weight:400;
  1764. font-style:normal;
  1765. font-size:14px;
  1766. line-height:25px;
  1767. }
  1768. #u199389 .text {
  1769. position:absolute;
  1770. align-self:center;
  1771. padding:5px 10px 5px 0px;
  1772. box-sizing:border-box;
  1773. width:100%;
  1774. }
  1775. #u199389_text {
  1776. border-width:0px;
  1777. white-space:nowrap;
  1778. text-transform:none;
  1779. }
  1780. #u199390_div {
  1781. border-width:0px;
  1782. position:absolute;
  1783. left:0px;
  1784. top:0px;
  1785. width:358px;
  1786. height:310px;
  1787. background:inherit;
  1788. background-color:rgba(255, 255, 255, 0);
  1789. border:none;
  1790. border-top:0px;
  1791. border-right:0px;
  1792. border-bottom:0px;
  1793. border-radius:0px;
  1794. border-top-left-radius:0px;
  1795. border-bottom-left-radius:0px;
  1796. -moz-box-shadow:none;
  1797. -webkit-box-shadow:none;
  1798. box-shadow:none;
  1799. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1800. font-weight:400;
  1801. font-style:normal;
  1802. font-size:12px;
  1803. line-height:30px;
  1804. }
  1805. #u199390 {
  1806. border-width:0px;
  1807. position:absolute;
  1808. left:44px;
  1809. top:792px;
  1810. width:358px;
  1811. height:310px;
  1812. display:flex;
  1813. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1814. font-weight:400;
  1815. font-style:normal;
  1816. font-size:12px;
  1817. line-height:30px;
  1818. }
  1819. #u199390 .text {
  1820. position:absolute;
  1821. align-self:flex-start;
  1822. padding:5px 10px 5px 0px;
  1823. box-sizing:border-box;
  1824. width:100%;
  1825. }
  1826. #u199390_text {
  1827. border-width:0px;
  1828. word-wrap:break-word;
  1829. text-transform:none;
  1830. }
  1831. #u199391_div {
  1832. border-width:0px;
  1833. position:absolute;
  1834. left:0px;
  1835. top:0px;
  1836. width:10px;
  1837. height:10px;
  1838. background:inherit;
  1839. background-color:rgba(255, 255, 255, 0);
  1840. box-sizing:border-box;
  1841. border-width:2px;
  1842. border-style:solid;
  1843. border-color:rgba(51, 51, 51, 1);
  1844. border-right:0px;
  1845. border-bottom:0px;
  1846. border-radius:0px;
  1847. border-top-right-radius:0px;
  1848. border-bottom-left-radius:0px;
  1849. -moz-box-shadow:none;
  1850. -webkit-box-shadow:none;
  1851. box-shadow:none;
  1852. }
  1853. #u199391 {
  1854. border-width:0px;
  1855. position:absolute;
  1856. left:378px;
  1857. top:763px;
  1858. width:10px;
  1859. height:10px;
  1860. display:flex;
  1861. -webkit-transform:rotate(45deg);
  1862. -moz-transform:rotate(45deg);
  1863. -ms-transform:rotate(45deg);
  1864. transform:rotate(45deg);
  1865. }
  1866. #u199391 .text {
  1867. position:absolute;
  1868. align-self:center;
  1869. padding:2px 2px 2px 2px;
  1870. box-sizing:border-box;
  1871. width:100%;
  1872. }
  1873. #u199391_text {
  1874. border-width:0px;
  1875. word-wrap:break-word;
  1876. text-transform:none;
  1877. visibility:hidden;
  1878. }
  1879. #u199392_img {
  1880. border-width:0px;
  1881. position:absolute;
  1882. left:0px;
  1883. top:0px;
  1884. width:348px;
  1885. height:2px;
  1886. }
  1887. #u199392 {
  1888. border-width:0px;
  1889. position:absolute;
  1890. left:44px;
  1891. top:1101px;
  1892. width:347px;
  1893. height:1px;
  1894. display:flex;
  1895. }
  1896. #u199392 .text {
  1897. position:absolute;
  1898. align-self:center;
  1899. padding:2px 2px 2px 2px;
  1900. box-sizing:border-box;
  1901. width:100%;
  1902. }
  1903. #u199392_text {
  1904. border-width:0px;
  1905. word-wrap:break-word;
  1906. text-transform:none;
  1907. visibility:hidden;
  1908. }
  1909. #u199393_div {
  1910. border-width:0px;
  1911. position:absolute;
  1912. left:0px;
  1913. top:0px;
  1914. width:358px;
  1915. height:310px;
  1916. background:inherit;
  1917. background-color:rgba(255, 255, 255, 0);
  1918. border:none;
  1919. border-top:0px;
  1920. border-right:0px;
  1921. border-bottom:0px;
  1922. border-radius:0px;
  1923. border-top-left-radius:0px;
  1924. border-bottom-left-radius:0px;
  1925. -moz-box-shadow:none;
  1926. -webkit-box-shadow:none;
  1927. box-shadow:none;
  1928. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1929. font-weight:400;
  1930. font-style:normal;
  1931. font-size:12px;
  1932. line-height:30px;
  1933. }
  1934. #u199393 {
  1935. border-width:0px;
  1936. position:absolute;
  1937. left:44px;
  1938. top:1112px;
  1939. width:358px;
  1940. height:310px;
  1941. display:flex;
  1942. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1943. font-weight:400;
  1944. font-style:normal;
  1945. font-size:12px;
  1946. line-height:30px;
  1947. }
  1948. #u199393 .text {
  1949. position:absolute;
  1950. align-self:flex-start;
  1951. padding:5px 10px 5px 0px;
  1952. box-sizing:border-box;
  1953. width:100%;
  1954. }
  1955. #u199393_text {
  1956. border-width:0px;
  1957. word-wrap:break-word;
  1958. text-transform:none;
  1959. }
  1960. #u199394 {
  1961. border-width:0px;
  1962. position:absolute;
  1963. left:0px;
  1964. top:0px;
  1965. width:0px;
  1966. height:0px;
  1967. }
  1968. #u199395_div {
  1969. border-width:0px;
  1970. position:absolute;
  1971. left:0px;
  1972. top:0px;
  1973. width:375px;
  1974. height:160px;
  1975. background:inherit;
  1976. background-color:rgba(255, 255, 255, 1);
  1977. border:none;
  1978. border-radius:0px;
  1979. -moz-box-shadow:none;
  1980. -webkit-box-shadow:none;
  1981. box-shadow:none;
  1982. }
  1983. #u199395 {
  1984. border-width:0px;
  1985. position:absolute;
  1986. left:29px;
  1987. top:1434px;
  1988. width:375px;
  1989. height:160px;
  1990. display:flex;
  1991. }
  1992. #u199395 .text {
  1993. position:absolute;
  1994. align-self:center;
  1995. padding:2px 2px 2px 2px;
  1996. box-sizing:border-box;
  1997. width:100%;
  1998. }
  1999. #u199395_text {
  2000. border-width:0px;
  2001. word-wrap:break-word;
  2002. text-transform:none;
  2003. visibility:hidden;
  2004. }
  2005. #u199396_div {
  2006. border-width:0px;
  2007. position:absolute;
  2008. left:0px;
  2009. top:0px;
  2010. width:67px;
  2011. height:35px;
  2012. background:inherit;
  2013. background-color:rgba(255, 255, 255, 0);
  2014. border:none;
  2015. border-top:0px;
  2016. border-right:0px;
  2017. border-bottom:0px;
  2018. border-radius:0px;
  2019. border-top-left-radius:0px;
  2020. border-bottom-left-radius:0px;
  2021. -moz-box-shadow:none;
  2022. -webkit-box-shadow:none;
  2023. box-shadow:none;
  2024. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2025. font-weight:400;
  2026. font-style:normal;
  2027. font-size:14px;
  2028. line-height:25px;
  2029. }
  2030. #u199396 {
  2031. border-width:0px;
  2032. position:absolute;
  2033. left:44px;
  2034. top:1444px;
  2035. width:67px;
  2036. height:35px;
  2037. display:flex;
  2038. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2039. font-weight:400;
  2040. font-style:normal;
  2041. font-size:14px;
  2042. line-height:25px;
  2043. }
  2044. #u199396 .text {
  2045. position:absolute;
  2046. align-self:center;
  2047. padding:5px 10px 5px 0px;
  2048. box-sizing:border-box;
  2049. width:100%;
  2050. }
  2051. #u199396_text {
  2052. border-width:0px;
  2053. white-space:nowrap;
  2054. text-transform:none;
  2055. }
  2056. #u199397_div {
  2057. border-width:0px;
  2058. position:absolute;
  2059. left:0px;
  2060. top:0px;
  2061. width:358px;
  2062. height:100px;
  2063. background:inherit;
  2064. background-color:rgba(255, 255, 255, 0);
  2065. border:none;
  2066. border-top:0px;
  2067. border-right:0px;
  2068. border-bottom:0px;
  2069. border-radius:0px;
  2070. border-top-left-radius:0px;
  2071. border-bottom-left-radius:0px;
  2072. -moz-box-shadow:none;
  2073. -webkit-box-shadow:none;
  2074. box-shadow:none;
  2075. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2076. font-weight:400;
  2077. font-style:normal;
  2078. font-size:12px;
  2079. line-height:30px;
  2080. }
  2081. #u199397 {
  2082. border-width:0px;
  2083. position:absolute;
  2084. left:44px;
  2085. top:1483px;
  2086. width:358px;
  2087. height:100px;
  2088. display:flex;
  2089. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2090. font-weight:400;
  2091. font-style:normal;
  2092. font-size:12px;
  2093. line-height:30px;
  2094. }
  2095. #u199397 .text {
  2096. position:absolute;
  2097. align-self:flex-start;
  2098. padding:5px 10px 5px 0px;
  2099. box-sizing:border-box;
  2100. width:100%;
  2101. }
  2102. #u199397_text {
  2103. border-width:0px;
  2104. word-wrap:break-word;
  2105. text-transform:none;
  2106. }
  2107. #u199398_div {
  2108. border-width:0px;
  2109. position:absolute;
  2110. left:0px;
  2111. top:0px;
  2112. width:10px;
  2113. height:10px;
  2114. background:inherit;
  2115. background-color:rgba(255, 255, 255, 0);
  2116. box-sizing:border-box;
  2117. border-width:2px;
  2118. border-style:solid;
  2119. border-color:rgba(51, 51, 51, 1);
  2120. border-right:0px;
  2121. border-bottom:0px;
  2122. border-radius:0px;
  2123. border-top-right-radius:0px;
  2124. border-bottom-left-radius:0px;
  2125. -moz-box-shadow:none;
  2126. -webkit-box-shadow:none;
  2127. box-shadow:none;
  2128. }
  2129. #u199398 {
  2130. border-width:0px;
  2131. position:absolute;
  2132. left:378px;
  2133. top:1454px;
  2134. width:10px;
  2135. height:10px;
  2136. display:flex;
  2137. -webkit-transform:rotate(45deg);
  2138. -moz-transform:rotate(45deg);
  2139. -ms-transform:rotate(45deg);
  2140. transform:rotate(45deg);
  2141. }
  2142. #u199398 .text {
  2143. position:absolute;
  2144. align-self:center;
  2145. padding:2px 2px 2px 2px;
  2146. box-sizing:border-box;
  2147. width:100%;
  2148. }
  2149. #u199398_text {
  2150. border-width:0px;
  2151. word-wrap:break-word;
  2152. text-transform:none;
  2153. visibility:hidden;
  2154. }
  2155. #u199400_img {
  2156. border-width:0px;
  2157. position:absolute;
  2158. left:0px;
  2159. top:0px;
  2160. width:433px;
  2161. height:865px;
  2162. }
  2163. #u199400 {
  2164. border-width:0px;
  2165. position:absolute;
  2166. left:465px;
  2167. top:0px;
  2168. width:433px;
  2169. height:865px;
  2170. display:flex;
  2171. }
  2172. #u199400 .text {
  2173. position:absolute;
  2174. align-self:center;
  2175. padding:2px 2px 2px 2px;
  2176. box-sizing:border-box;
  2177. width:100%;
  2178. }
  2179. #u199400_text {
  2180. border-width:0px;
  2181. word-wrap:break-word;
  2182. text-transform:none;
  2183. visibility:hidden;
  2184. }
  2185. #u199401_div {
  2186. border-width:0px;
  2187. position:absolute;
  2188. left:0px;
  2189. top:0px;
  2190. width:375px;
  2191. height:40px;
  2192. background:inherit;
  2193. background-color:rgba(255, 255, 255, 1);
  2194. box-sizing:border-box;
  2195. border-width:1px;
  2196. border-style:solid;
  2197. border-color:rgba(215, 215, 215, 1);
  2198. border-left:0px;
  2199. border-top:0px;
  2200. border-right:0px;
  2201. border-radius:0px;
  2202. border-bottom-right-radius:0px;
  2203. border-bottom-left-radius:0px;
  2204. -moz-box-shadow:none;
  2205. -webkit-box-shadow:none;
  2206. box-shadow:none;
  2207. }
  2208. #u199401 {
  2209. border-width:0px;
  2210. position:absolute;
  2211. left:494px;
  2212. top:67px;
  2213. width:375px;
  2214. height:40px;
  2215. display:flex;
  2216. }
  2217. #u199401 .text {
  2218. position:absolute;
  2219. align-self:center;
  2220. padding:2px 2px 2px 2px;
  2221. box-sizing:border-box;
  2222. width:100%;
  2223. }
  2224. #u199401_text {
  2225. border-width:0px;
  2226. word-wrap:break-word;
  2227. text-transform:none;
  2228. visibility:hidden;
  2229. }
  2230. #u199402 {
  2231. border-width:0px;
  2232. position:absolute;
  2233. left:0px;
  2234. top:0px;
  2235. width:0px;
  2236. height:0px;
  2237. }
  2238. #u199403_div {
  2239. border-width:0px;
  2240. position:absolute;
  2241. left:0px;
  2242. top:0px;
  2243. width:88px;
  2244. height:32px;
  2245. background:inherit;
  2246. background-color:rgba(255, 255, 255, 1);
  2247. box-sizing:border-box;
  2248. border-width:1px;
  2249. border-style:solid;
  2250. border-color:rgba(242, 242, 242, 1);
  2251. border-radius:33px;
  2252. -moz-box-shadow:none;
  2253. -webkit-box-shadow:none;
  2254. box-shadow:none;
  2255. }
  2256. #u199403 {
  2257. border-width:0px;
  2258. position:absolute;
  2259. left:774px;
  2260. top:71px;
  2261. width:88px;
  2262. height:32px;
  2263. display:flex;
  2264. }
  2265. #u199403 .text {
  2266. position:absolute;
  2267. align-self:center;
  2268. padding:2px 2px 2px 2px;
  2269. box-sizing:border-box;
  2270. width:100%;
  2271. }
  2272. #u199403_text {
  2273. border-width:0px;
  2274. word-wrap:break-word;
  2275. text-transform:none;
  2276. visibility:hidden;
  2277. }
  2278. #u199404 {
  2279. border-width:0px;
  2280. position:absolute;
  2281. left:0px;
  2282. top:0px;
  2283. width:0px;
  2284. height:0px;
  2285. }
  2286. #u199405_img {
  2287. border-width:0px;
  2288. position:absolute;
  2289. left:0px;
  2290. top:0px;
  2291. width:18px;
  2292. height:18px;
  2293. }
  2294. #u199405 {
  2295. border-width:0px;
  2296. position:absolute;
  2297. left:837px;
  2298. top:78px;
  2299. width:18px;
  2300. height:18px;
  2301. display:flex;
  2302. }
  2303. #u199405 .text {
  2304. position:absolute;
  2305. align-self:center;
  2306. padding:2px 2px 2px 2px;
  2307. box-sizing:border-box;
  2308. width:100%;
  2309. }
  2310. #u199405_text {
  2311. border-width:0px;
  2312. word-wrap:break-word;
  2313. text-transform:none;
  2314. visibility:hidden;
  2315. }
  2316. #u199406_img {
  2317. border-width:0px;
  2318. position:absolute;
  2319. left:0px;
  2320. top:0px;
  2321. width:6px;
  2322. height:6px;
  2323. }
  2324. #u199406 {
  2325. border-width:0px;
  2326. position:absolute;
  2327. left:843px;
  2328. top:84px;
  2329. width:6px;
  2330. height:6px;
  2331. display:flex;
  2332. }
  2333. #u199406 .text {
  2334. position:absolute;
  2335. align-self:center;
  2336. padding:2px 2px 2px 2px;
  2337. box-sizing:border-box;
  2338. width:100%;
  2339. }
  2340. #u199406_text {
  2341. border-width:0px;
  2342. word-wrap:break-word;
  2343. text-transform:none;
  2344. visibility:hidden;
  2345. }
  2346. #u199407 {
  2347. border-width:0px;
  2348. position:absolute;
  2349. left:0px;
  2350. top:0px;
  2351. width:0px;
  2352. height:0px;
  2353. }
  2354. #u199408_img {
  2355. border-width:0px;
  2356. position:absolute;
  2357. left:0px;
  2358. top:0px;
  2359. width:5px;
  2360. height:5px;
  2361. }
  2362. #u199408 {
  2363. border-width:0px;
  2364. position:absolute;
  2365. left:788px;
  2366. top:85px;
  2367. width:5px;
  2368. height:5px;
  2369. display:flex;
  2370. }
  2371. #u199408 .text {
  2372. position:absolute;
  2373. align-self:center;
  2374. padding:2px 2px 2px 2px;
  2375. box-sizing:border-box;
  2376. width:100%;
  2377. }
  2378. #u199408_text {
  2379. border-width:0px;
  2380. word-wrap:break-word;
  2381. text-transform:none;
  2382. visibility:hidden;
  2383. }
  2384. #u199409_img {
  2385. border-width:0px;
  2386. position:absolute;
  2387. left:0px;
  2388. top:0px;
  2389. width:5px;
  2390. height:5px;
  2391. }
  2392. #u199409 {
  2393. border-width:0px;
  2394. position:absolute;
  2395. left:804px;
  2396. top:85px;
  2397. width:5px;
  2398. height:5px;
  2399. display:flex;
  2400. }
  2401. #u199409 .text {
  2402. position:absolute;
  2403. align-self:center;
  2404. padding:2px 2px 2px 2px;
  2405. box-sizing:border-box;
  2406. width:100%;
  2407. }
  2408. #u199409_text {
  2409. border-width:0px;
  2410. word-wrap:break-word;
  2411. text-transform:none;
  2412. visibility:hidden;
  2413. }
  2414. #u199410_img {
  2415. border-width:0px;
  2416. position:absolute;
  2417. left:0px;
  2418. top:0px;
  2419. width:7px;
  2420. height:7px;
  2421. }
  2422. #u199410 {
  2423. border-width:0px;
  2424. position:absolute;
  2425. left:795px;
  2426. top:84px;
  2427. width:7px;
  2428. height:7px;
  2429. display:flex;
  2430. }
  2431. #u199410 .text {
  2432. position:absolute;
  2433. align-self:center;
  2434. padding:2px 2px 2px 2px;
  2435. box-sizing:border-box;
  2436. width:100%;
  2437. }
  2438. #u199410_text {
  2439. border-width:0px;
  2440. word-wrap:break-word;
  2441. text-transform:none;
  2442. visibility:hidden;
  2443. }
  2444. #u199411_img {
  2445. border-width:0px;
  2446. position:absolute;
  2447. left:0px;
  2448. top:0px;
  2449. width:19px;
  2450. height:2px;
  2451. }
  2452. #u199411 {
  2453. border-width:0px;
  2454. position:absolute;
  2455. left:812px;
  2456. top:87px;
  2457. width:18px;
  2458. height:1px;
  2459. display:flex;
  2460. -webkit-transform:rotate(90deg);
  2461. -moz-transform:rotate(90deg);
  2462. -ms-transform:rotate(90deg);
  2463. transform:rotate(90deg);
  2464. }
  2465. #u199411 .text {
  2466. position:absolute;
  2467. align-self:center;
  2468. padding:2px 2px 2px 2px;
  2469. box-sizing:border-box;
  2470. width:100%;
  2471. }
  2472. #u199411_text {
  2473. border-width:0px;
  2474. word-wrap:break-word;
  2475. text-transform:none;
  2476. visibility:hidden;
  2477. }
  2478. #u199412_img {
  2479. border-width:0px;
  2480. position:absolute;
  2481. left:0px;
  2482. top:0px;
  2483. width:375px;
  2484. height:44px;
  2485. }
  2486. #u199412 {
  2487. border-width:0px;
  2488. position:absolute;
  2489. left:494px;
  2490. top:24px;
  2491. width:375px;
  2492. height:44px;
  2493. display:flex;
  2494. }
  2495. #u199412 .text {
  2496. position:absolute;
  2497. align-self:center;
  2498. padding:2px 2px 2px 2px;
  2499. box-sizing:border-box;
  2500. width:100%;
  2501. }
  2502. #u199412_text {
  2503. border-width:0px;
  2504. word-wrap:break-word;
  2505. text-transform:none;
  2506. visibility:hidden;
  2507. }
  2508. #u199413_div {
  2509. border-width:0px;
  2510. position:absolute;
  2511. left:0px;
  2512. top:0px;
  2513. width:375px;
  2514. height:50px;
  2515. background:inherit;
  2516. background-color:rgba(255, 255, 255, 1);
  2517. box-sizing:border-box;
  2518. border-width:1px;
  2519. border-style:solid;
  2520. border-color:rgba(242, 242, 242, 1);
  2521. border-radius:26px;
  2522. border-top-left-radius:0px;
  2523. border-top-right-radius:0px;
  2524. -moz-box-shadow:none;
  2525. -webkit-box-shadow:none;
  2526. box-shadow:none;
  2527. }
  2528. #u199413 {
  2529. border-width:0px;
  2530. position:absolute;
  2531. left:494px;
  2532. top:788px;
  2533. width:375px;
  2534. height:50px;
  2535. display:flex;
  2536. }
  2537. #u199413 .text {
  2538. position:absolute;
  2539. align-self:center;
  2540. padding:2px 2px 2px 2px;
  2541. box-sizing:border-box;
  2542. width:100%;
  2543. }
  2544. #u199413_text {
  2545. border-width:0px;
  2546. word-wrap:break-word;
  2547. text-transform:none;
  2548. visibility:hidden;
  2549. }
  2550. #u199414 {
  2551. border-width:0px;
  2552. position:absolute;
  2553. left:0px;
  2554. top:0px;
  2555. width:0px;
  2556. height:0px;
  2557. }
  2558. #u199415_img {
  2559. border-width:0px;
  2560. position:absolute;
  2561. left:0px;
  2562. top:0px;
  2563. width:24px;
  2564. height:24px;
  2565. }
  2566. #u199415 {
  2567. border-width:0px;
  2568. position:absolute;
  2569. left:534px;
  2570. top:792px;
  2571. width:24px;
  2572. height:24px;
  2573. display:flex;
  2574. font-size:8px;
  2575. }
  2576. #u199415 .text {
  2577. position:absolute;
  2578. align-self:center;
  2579. padding:2px 2px 2px 2px;
  2580. box-sizing:border-box;
  2581. width:100%;
  2582. }
  2583. #u199415_text {
  2584. border-width:0px;
  2585. word-wrap:break-word;
  2586. text-transform:none;
  2587. }
  2588. #u199416_div {
  2589. border-width:0px;
  2590. position:absolute;
  2591. left:0px;
  2592. top:0px;
  2593. width:25px;
  2594. height:17px;
  2595. background:inherit;
  2596. background-color:rgba(255, 255, 255, 0);
  2597. border:none;
  2598. border-radius:0px;
  2599. -moz-box-shadow:none;
  2600. -webkit-box-shadow:none;
  2601. box-shadow:none;
  2602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2603. font-weight:400;
  2604. font-style:normal;
  2605. font-size:12px;
  2606. }
  2607. #u199416 {
  2608. border-width:0px;
  2609. position:absolute;
  2610. left:534px;
  2611. top:817px;
  2612. width:25px;
  2613. height:17px;
  2614. display:flex;
  2615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2616. font-weight:400;
  2617. font-style:normal;
  2618. font-size:12px;
  2619. }
  2620. #u199416 .text {
  2621. position:absolute;
  2622. align-self:flex-start;
  2623. padding:0px 0px 0px 0px;
  2624. box-sizing:border-box;
  2625. width:100%;
  2626. }
  2627. #u199416_text {
  2628. border-width:0px;
  2629. white-space:nowrap;
  2630. text-transform:none;
  2631. }
  2632. #u199417 {
  2633. border-width:0px;
  2634. position:absolute;
  2635. left:0px;
  2636. top:0px;
  2637. width:0px;
  2638. height:0px;
  2639. }
  2640. #u199418_img {
  2641. border-width:0px;
  2642. position:absolute;
  2643. left:0px;
  2644. top:0px;
  2645. width:24px;
  2646. height:24px;
  2647. }
  2648. #u199418 {
  2649. border-width:0px;
  2650. position:absolute;
  2651. left:804px;
  2652. top:794px;
  2653. width:24px;
  2654. height:24px;
  2655. display:flex;
  2656. font-size:8px;
  2657. }
  2658. #u199418 .text {
  2659. position:absolute;
  2660. align-self:center;
  2661. padding:2px 2px 2px 2px;
  2662. box-sizing:border-box;
  2663. width:100%;
  2664. }
  2665. #u199418_text {
  2666. border-width:0px;
  2667. word-wrap:break-word;
  2668. text-transform:none;
  2669. }
  2670. #u199419_div {
  2671. border-width:0px;
  2672. position:absolute;
  2673. left:0px;
  2674. top:0px;
  2675. width:25px;
  2676. height:17px;
  2677. background:inherit;
  2678. background-color:rgba(255, 255, 255, 0);
  2679. border:none;
  2680. border-radius:0px;
  2681. -moz-box-shadow:none;
  2682. -webkit-box-shadow:none;
  2683. box-shadow:none;
  2684. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2685. font-weight:400;
  2686. font-style:normal;
  2687. font-size:12px;
  2688. }
  2689. #u199419 {
  2690. border-width:0px;
  2691. position:absolute;
  2692. left:804px;
  2693. top:819px;
  2694. width:25px;
  2695. height:17px;
  2696. display:flex;
  2697. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2698. font-weight:400;
  2699. font-style:normal;
  2700. font-size:12px;
  2701. }
  2702. #u199419 .text {
  2703. position:absolute;
  2704. align-self:flex-start;
  2705. padding:0px 0px 0px 0px;
  2706. box-sizing:border-box;
  2707. width:100%;
  2708. }
  2709. #u199419_text {
  2710. border-width:0px;
  2711. white-space:nowrap;
  2712. text-transform:none;
  2713. }
  2714. #u199420_div {
  2715. border-width:0px;
  2716. position:absolute;
  2717. left:0px;
  2718. top:0px;
  2719. width:375px;
  2720. height:681px;
  2721. background:inherit;
  2722. background-color:rgba(242, 242, 242, 0.462745098039216);
  2723. border:none;
  2724. border-radius:0px;
  2725. -moz-box-shadow:none;
  2726. -webkit-box-shadow:none;
  2727. box-shadow:none;
  2728. }
  2729. #u199420 {
  2730. border-width:0px;
  2731. position:absolute;
  2732. left:494px;
  2733. top:107px;
  2734. width:375px;
  2735. height:681px;
  2736. display:flex;
  2737. }
  2738. #u199420 .text {
  2739. position:absolute;
  2740. align-self:center;
  2741. padding:2px 2px 2px 2px;
  2742. box-sizing:border-box;
  2743. width:100%;
  2744. }
  2745. #u199420_text {
  2746. border-width:0px;
  2747. word-wrap:break-word;
  2748. text-transform:none;
  2749. visibility:hidden;
  2750. }
  2751. #u199421 {
  2752. border-width:0px;
  2753. position:absolute;
  2754. left:0px;
  2755. top:0px;
  2756. width:0px;
  2757. height:0px;
  2758. }
  2759. #u199422_img {
  2760. border-width:0px;
  2761. position:absolute;
  2762. left:0px;
  2763. top:0px;
  2764. width:24px;
  2765. height:24px;
  2766. }
  2767. #u199422 {
  2768. border-width:0px;
  2769. position:absolute;
  2770. left:716px;
  2771. top:792px;
  2772. width:24px;
  2773. height:24px;
  2774. display:flex;
  2775. font-size:8px;
  2776. }
  2777. #u199422 .text {
  2778. position:absolute;
  2779. align-self:center;
  2780. padding:2px 2px 2px 2px;
  2781. box-sizing:border-box;
  2782. width:100%;
  2783. }
  2784. #u199422_text {
  2785. border-width:0px;
  2786. word-wrap:break-word;
  2787. text-transform:none;
  2788. }
  2789. #u199423_div {
  2790. border-width:0px;
  2791. position:absolute;
  2792. left:0px;
  2793. top:0px;
  2794. width:37px;
  2795. height:17px;
  2796. background:inherit;
  2797. background-color:rgba(255, 255, 255, 0);
  2798. border:none;
  2799. border-radius:0px;
  2800. -moz-box-shadow:none;
  2801. -webkit-box-shadow:none;
  2802. box-shadow:none;
  2803. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2804. font-weight:400;
  2805. font-style:normal;
  2806. font-size:12px;
  2807. }
  2808. #u199423 {
  2809. border-width:0px;
  2810. position:absolute;
  2811. left:710px;
  2812. top:817px;
  2813. width:37px;
  2814. height:17px;
  2815. display:flex;
  2816. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2817. font-weight:400;
  2818. font-style:normal;
  2819. font-size:12px;
  2820. }
  2821. #u199423 .text {
  2822. position:absolute;
  2823. align-self:flex-start;
  2824. padding:0px 0px 0px 0px;
  2825. box-sizing:border-box;
  2826. width:100%;
  2827. }
  2828. #u199423_text {
  2829. border-width:0px;
  2830. white-space:nowrap;
  2831. text-transform:none;
  2832. }
  2833. #u199424 {
  2834. border-width:0px;
  2835. position:absolute;
  2836. left:0px;
  2837. top:0px;
  2838. width:0px;
  2839. height:0px;
  2840. }
  2841. #u199425_img {
  2842. border-width:0px;
  2843. position:absolute;
  2844. left:0px;
  2845. top:0px;
  2846. width:24px;
  2847. height:24px;
  2848. }
  2849. #u199425 {
  2850. border-width:0px;
  2851. position:absolute;
  2852. left:622px;
  2853. top:792px;
  2854. width:24px;
  2855. height:24px;
  2856. display:flex;
  2857. font-size:8px;
  2858. }
  2859. #u199425 .text {
  2860. position:absolute;
  2861. align-self:center;
  2862. padding:2px 2px 2px 2px;
  2863. box-sizing:border-box;
  2864. width:100%;
  2865. }
  2866. #u199425_text {
  2867. border-width:0px;
  2868. word-wrap:break-word;
  2869. text-transform:none;
  2870. }
  2871. #u199426_div {
  2872. border-width:0px;
  2873. position:absolute;
  2874. left:0px;
  2875. top:0px;
  2876. width:37px;
  2877. height:17px;
  2878. background:inherit;
  2879. background-color:rgba(255, 255, 255, 0);
  2880. border:none;
  2881. border-radius:0px;
  2882. -moz-box-shadow:none;
  2883. -webkit-box-shadow:none;
  2884. box-shadow:none;
  2885. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2886. font-weight:400;
  2887. font-style:normal;
  2888. font-size:12px;
  2889. }
  2890. #u199426 {
  2891. border-width:0px;
  2892. position:absolute;
  2893. left:616px;
  2894. top:817px;
  2895. width:37px;
  2896. height:17px;
  2897. display:flex;
  2898. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2899. font-weight:400;
  2900. font-style:normal;
  2901. font-size:12px;
  2902. }
  2903. #u199426 .text {
  2904. position:absolute;
  2905. align-self:flex-start;
  2906. padding:0px 0px 0px 0px;
  2907. box-sizing:border-box;
  2908. width:100%;
  2909. }
  2910. #u199426_text {
  2911. border-width:0px;
  2912. white-space:nowrap;
  2913. text-transform:none;
  2914. }
  2915. #u199427_div {
  2916. border-width:0px;
  2917. position:absolute;
  2918. left:0px;
  2919. top:0px;
  2920. width:375px;
  2921. height:40px;
  2922. background:inherit;
  2923. background-color:rgba(255, 255, 255, 1);
  2924. box-sizing:border-box;
  2925. border-width:1px;
  2926. border-style:solid;
  2927. border-color:rgba(215, 215, 215, 1);
  2928. border-left:0px;
  2929. border-top:0px;
  2930. border-right:0px;
  2931. border-radius:0px;
  2932. border-bottom-right-radius:0px;
  2933. border-bottom-left-radius:0px;
  2934. -moz-box-shadow:none;
  2935. -webkit-box-shadow:none;
  2936. box-shadow:none;
  2937. }
  2938. #u199427 {
  2939. border-width:0px;
  2940. position:absolute;
  2941. left:494px;
  2942. top:67px;
  2943. width:375px;
  2944. height:40px;
  2945. display:flex;
  2946. }
  2947. #u199427 .text {
  2948. position:absolute;
  2949. align-self:center;
  2950. padding:2px 2px 2px 2px;
  2951. box-sizing:border-box;
  2952. width:100%;
  2953. }
  2954. #u199427_text {
  2955. border-width:0px;
  2956. word-wrap:break-word;
  2957. text-transform:none;
  2958. visibility:hidden;
  2959. }
  2960. #u199428_img {
  2961. border-width:0px;
  2962. position:absolute;
  2963. left:0px;
  2964. top:0px;
  2965. width:375px;
  2966. height:44px;
  2967. }
  2968. #u199428 {
  2969. border-width:0px;
  2970. position:absolute;
  2971. left:494px;
  2972. top:24px;
  2973. width:375px;
  2974. height:44px;
  2975. display:flex;
  2976. }
  2977. #u199428 .text {
  2978. position:absolute;
  2979. align-self:center;
  2980. padding:2px 2px 2px 2px;
  2981. box-sizing:border-box;
  2982. width:100%;
  2983. }
  2984. #u199428_text {
  2985. border-width:0px;
  2986. word-wrap:break-word;
  2987. text-transform:none;
  2988. visibility:hidden;
  2989. }
  2990. #u199429 {
  2991. border-width:0px;
  2992. position:absolute;
  2993. left:0px;
  2994. top:0px;
  2995. width:0px;
  2996. height:0px;
  2997. }
  2998. #u199430_div {
  2999. border-width:0px;
  3000. position:absolute;
  3001. left:0px;
  3002. top:0px;
  3003. width:88px;
  3004. height:32px;
  3005. background:inherit;
  3006. background-color:rgba(255, 255, 255, 1);
  3007. box-sizing:border-box;
  3008. border-width:1px;
  3009. border-style:solid;
  3010. border-color:rgba(242, 242, 242, 1);
  3011. border-radius:33px;
  3012. -moz-box-shadow:none;
  3013. -webkit-box-shadow:none;
  3014. box-shadow:none;
  3015. }
  3016. #u199430 {
  3017. border-width:0px;
  3018. position:absolute;
  3019. left:774px;
  3020. top:71px;
  3021. width:88px;
  3022. height:32px;
  3023. display:flex;
  3024. }
  3025. #u199430 .text {
  3026. position:absolute;
  3027. align-self:center;
  3028. padding:2px 2px 2px 2px;
  3029. box-sizing:border-box;
  3030. width:100%;
  3031. }
  3032. #u199430_text {
  3033. border-width:0px;
  3034. word-wrap:break-word;
  3035. text-transform:none;
  3036. visibility:hidden;
  3037. }
  3038. #u199431 {
  3039. border-width:0px;
  3040. position:absolute;
  3041. left:0px;
  3042. top:0px;
  3043. width:0px;
  3044. height:0px;
  3045. }
  3046. #u199432_img {
  3047. border-width:0px;
  3048. position:absolute;
  3049. left:0px;
  3050. top:0px;
  3051. width:18px;
  3052. height:18px;
  3053. }
  3054. #u199432 {
  3055. border-width:0px;
  3056. position:absolute;
  3057. left:837px;
  3058. top:78px;
  3059. width:18px;
  3060. height:18px;
  3061. display:flex;
  3062. }
  3063. #u199432 .text {
  3064. position:absolute;
  3065. align-self:center;
  3066. padding:2px 2px 2px 2px;
  3067. box-sizing:border-box;
  3068. width:100%;
  3069. }
  3070. #u199432_text {
  3071. border-width:0px;
  3072. word-wrap:break-word;
  3073. text-transform:none;
  3074. visibility:hidden;
  3075. }
  3076. #u199433_img {
  3077. border-width:0px;
  3078. position:absolute;
  3079. left:0px;
  3080. top:0px;
  3081. width:6px;
  3082. height:6px;
  3083. }
  3084. #u199433 {
  3085. border-width:0px;
  3086. position:absolute;
  3087. left:843px;
  3088. top:84px;
  3089. width:6px;
  3090. height:6px;
  3091. display:flex;
  3092. }
  3093. #u199433 .text {
  3094. position:absolute;
  3095. align-self:center;
  3096. padding:2px 2px 2px 2px;
  3097. box-sizing:border-box;
  3098. width:100%;
  3099. }
  3100. #u199433_text {
  3101. border-width:0px;
  3102. word-wrap:break-word;
  3103. text-transform:none;
  3104. visibility:hidden;
  3105. }
  3106. #u199434 {
  3107. border-width:0px;
  3108. position:absolute;
  3109. left:0px;
  3110. top:0px;
  3111. width:0px;
  3112. height:0px;
  3113. }
  3114. #u199435_img {
  3115. border-width:0px;
  3116. position:absolute;
  3117. left:0px;
  3118. top:0px;
  3119. width:5px;
  3120. height:5px;
  3121. }
  3122. #u199435 {
  3123. border-width:0px;
  3124. position:absolute;
  3125. left:788px;
  3126. top:85px;
  3127. width:5px;
  3128. height:5px;
  3129. display:flex;
  3130. }
  3131. #u199435 .text {
  3132. position:absolute;
  3133. align-self:center;
  3134. padding:2px 2px 2px 2px;
  3135. box-sizing:border-box;
  3136. width:100%;
  3137. }
  3138. #u199435_text {
  3139. border-width:0px;
  3140. word-wrap:break-word;
  3141. text-transform:none;
  3142. visibility:hidden;
  3143. }
  3144. #u199436_img {
  3145. border-width:0px;
  3146. position:absolute;
  3147. left:0px;
  3148. top:0px;
  3149. width:5px;
  3150. height:5px;
  3151. }
  3152. #u199436 {
  3153. border-width:0px;
  3154. position:absolute;
  3155. left:804px;
  3156. top:85px;
  3157. width:5px;
  3158. height:5px;
  3159. display:flex;
  3160. }
  3161. #u199436 .text {
  3162. position:absolute;
  3163. align-self:center;
  3164. padding:2px 2px 2px 2px;
  3165. box-sizing:border-box;
  3166. width:100%;
  3167. }
  3168. #u199436_text {
  3169. border-width:0px;
  3170. word-wrap:break-word;
  3171. text-transform:none;
  3172. visibility:hidden;
  3173. }
  3174. #u199437_img {
  3175. border-width:0px;
  3176. position:absolute;
  3177. left:0px;
  3178. top:0px;
  3179. width:7px;
  3180. height:7px;
  3181. }
  3182. #u199437 {
  3183. border-width:0px;
  3184. position:absolute;
  3185. left:795px;
  3186. top:84px;
  3187. width:7px;
  3188. height:7px;
  3189. display:flex;
  3190. }
  3191. #u199437 .text {
  3192. position:absolute;
  3193. align-self:center;
  3194. padding:2px 2px 2px 2px;
  3195. box-sizing:border-box;
  3196. width:100%;
  3197. }
  3198. #u199437_text {
  3199. border-width:0px;
  3200. word-wrap:break-word;
  3201. text-transform:none;
  3202. visibility:hidden;
  3203. }
  3204. #u199438_img {
  3205. border-width:0px;
  3206. position:absolute;
  3207. left:0px;
  3208. top:0px;
  3209. width:19px;
  3210. height:2px;
  3211. }
  3212. #u199438 {
  3213. border-width:0px;
  3214. position:absolute;
  3215. left:812px;
  3216. top:87px;
  3217. width:18px;
  3218. height:1px;
  3219. display:flex;
  3220. -webkit-transform:rotate(90deg);
  3221. -moz-transform:rotate(90deg);
  3222. -ms-transform:rotate(90deg);
  3223. transform:rotate(90deg);
  3224. }
  3225. #u199438 .text {
  3226. position:absolute;
  3227. align-self:center;
  3228. padding:2px 2px 2px 2px;
  3229. box-sizing:border-box;
  3230. width:100%;
  3231. }
  3232. #u199438_text {
  3233. border-width:0px;
  3234. word-wrap:break-word;
  3235. text-transform:none;
  3236. visibility:hidden;
  3237. }
  3238. #u199439_div {
  3239. border-width:0px;
  3240. position:absolute;
  3241. left:0px;
  3242. top:0px;
  3243. width:65px;
  3244. height:22px;
  3245. background:inherit;
  3246. background-color:rgba(255, 255, 255, 0);
  3247. border:none;
  3248. border-radius:0px;
  3249. -moz-box-shadow:none;
  3250. -webkit-box-shadow:none;
  3251. box-shadow:none;
  3252. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3253. font-weight:400;
  3254. font-style:normal;
  3255. font-size:16px;
  3256. color:#000000;
  3257. }
  3258. #u199439 {
  3259. border-width:0px;
  3260. position:absolute;
  3261. left:651px;
  3262. top:78px;
  3263. width:65px;
  3264. height:22px;
  3265. display:flex;
  3266. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3267. font-weight:400;
  3268. font-style:normal;
  3269. font-size:16px;
  3270. color:#000000;
  3271. }
  3272. #u199439 .text {
  3273. position:absolute;
  3274. align-self:flex-start;
  3275. padding:0px 0px 0px 0px;
  3276. box-sizing:border-box;
  3277. width:100%;
  3278. }
  3279. #u199439_text {
  3280. border-width:0px;
  3281. white-space:nowrap;
  3282. text-transform:none;
  3283. }
  3284. #u199440_div {
  3285. border-width:0px;
  3286. position:absolute;
  3287. left:0px;
  3288. top:0px;
  3289. width:12px;
  3290. height:12px;
  3291. background:inherit;
  3292. background-color:rgba(255, 255, 255, 0);
  3293. box-sizing:border-box;
  3294. border-width:2px;
  3295. border-style:solid;
  3296. border-color:rgba(51, 51, 51, 1);
  3297. border-right:0px;
  3298. border-bottom:0px;
  3299. border-radius:0px;
  3300. border-top-right-radius:0px;
  3301. border-bottom-left-radius:0px;
  3302. -moz-box-shadow:none;
  3303. -webkit-box-shadow:none;
  3304. box-shadow:none;
  3305. }
  3306. #u199440 {
  3307. border-width:0px;
  3308. position:absolute;
  3309. left:509px;
  3310. top:81px;
  3311. width:12px;
  3312. height:12px;
  3313. display:flex;
  3314. -webkit-transform:rotate(315deg);
  3315. -moz-transform:rotate(315deg);
  3316. -ms-transform:rotate(315deg);
  3317. transform:rotate(315deg);
  3318. }
  3319. #u199440 .text {
  3320. position:absolute;
  3321. align-self:center;
  3322. padding:2px 2px 2px 2px;
  3323. box-sizing:border-box;
  3324. width:100%;
  3325. }
  3326. #u199440_text {
  3327. border-width:0px;
  3328. word-wrap:break-word;
  3329. text-transform:none;
  3330. visibility:hidden;
  3331. }
  3332. #u199441_img {
  3333. border-width:0px;
  3334. position:absolute;
  3335. left:0px;
  3336. top:0px;
  3337. width:23px;
  3338. height:23px;
  3339. }
  3340. #u199441 {
  3341. border-width:0px;
  3342. position:absolute;
  3343. left:536px;
  3344. top:76px;
  3345. width:23px;
  3346. height:23px;
  3347. display:flex;
  3348. }
  3349. #u199441 .text {
  3350. position:absolute;
  3351. align-self:center;
  3352. padding:2px 2px 2px 2px;
  3353. box-sizing:border-box;
  3354. width:100%;
  3355. }
  3356. #u199441_text {
  3357. border-width:0px;
  3358. word-wrap:break-word;
  3359. text-transform:none;
  3360. visibility:hidden;
  3361. }
  3362. #u199442_div {
  3363. border-width:0px;
  3364. position:absolute;
  3365. left:0px;
  3366. top:0px;
  3367. width:375px;
  3368. height:1354px;
  3369. background:inherit;
  3370. background-color:rgba(242, 242, 242, 0.996078431372549);
  3371. border:none;
  3372. border-top:0px;
  3373. border-radius:23px;
  3374. border-top-left-radius:0px;
  3375. border-top-right-radius:0px;
  3376. -moz-box-shadow:none;
  3377. -webkit-box-shadow:none;
  3378. box-shadow:none;
  3379. }
  3380. #u199442 {
  3381. border-width:0px;
  3382. position:absolute;
  3383. left:494px;
  3384. top:107px;
  3385. width:375px;
  3386. height:1354px;
  3387. display:flex;
  3388. }
  3389. #u199442 .text {
  3390. position:absolute;
  3391. align-self:center;
  3392. padding:2px 2px 2px 2px;
  3393. box-sizing:border-box;
  3394. width:100%;
  3395. }
  3396. #u199442_text {
  3397. border-width:0px;
  3398. word-wrap:break-word;
  3399. text-transform:none;
  3400. visibility:hidden;
  3401. }
  3402. #u199443 {
  3403. border-width:0px;
  3404. position:absolute;
  3405. left:0px;
  3406. top:0px;
  3407. width:0px;
  3408. height:0px;
  3409. }
  3410. #u199444_div {
  3411. border-width:0px;
  3412. position:absolute;
  3413. left:0px;
  3414. top:0px;
  3415. width:375px;
  3416. height:254px;
  3417. background:inherit;
  3418. background-color:rgba(255, 255, 255, 1);
  3419. border:none;
  3420. border-radius:0px;
  3421. -moz-box-shadow:none;
  3422. -webkit-box-shadow:none;
  3423. box-shadow:none;
  3424. }
  3425. #u199444 {
  3426. border-width:0px;
  3427. position:absolute;
  3428. left:494px;
  3429. top:488px;
  3430. width:375px;
  3431. height:254px;
  3432. display:flex;
  3433. }
  3434. #u199444 .text {
  3435. position:absolute;
  3436. align-self:center;
  3437. padding:2px 2px 2px 2px;
  3438. box-sizing:border-box;
  3439. width:100%;
  3440. }
  3441. #u199444_text {
  3442. border-width:0px;
  3443. word-wrap:break-word;
  3444. text-transform:none;
  3445. visibility:hidden;
  3446. }
  3447. #u199445_div {
  3448. border-width:0px;
  3449. position:absolute;
  3450. left:0px;
  3451. top:0px;
  3452. width:95px;
  3453. height:35px;
  3454. background:inherit;
  3455. background-color:rgba(255, 255, 255, 0);
  3456. border:none;
  3457. border-top:0px;
  3458. border-right:0px;
  3459. border-bottom:0px;
  3460. border-radius:0px;
  3461. border-top-left-radius:0px;
  3462. border-bottom-left-radius:0px;
  3463. -moz-box-shadow:none;
  3464. -webkit-box-shadow:none;
  3465. box-shadow:none;
  3466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3467. font-weight:400;
  3468. font-style:normal;
  3469. font-size:14px;
  3470. line-height:25px;
  3471. }
  3472. #u199445 {
  3473. border-width:0px;
  3474. position:absolute;
  3475. left:509px;
  3476. top:498px;
  3477. width:95px;
  3478. height:35px;
  3479. display:flex;
  3480. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3481. font-weight:400;
  3482. font-style:normal;
  3483. font-size:14px;
  3484. line-height:25px;
  3485. }
  3486. #u199445 .text {
  3487. position:absolute;
  3488. align-self:center;
  3489. padding:5px 10px 5px 0px;
  3490. box-sizing:border-box;
  3491. width:100%;
  3492. }
  3493. #u199445_text {
  3494. border-width:0px;
  3495. white-space:nowrap;
  3496. text-transform:none;
  3497. }
  3498. #u199446_div {
  3499. border-width:0px;
  3500. position:absolute;
  3501. left:0px;
  3502. top:0px;
  3503. width:358px;
  3504. height:190px;
  3505. background:inherit;
  3506. background-color:rgba(255, 255, 255, 0);
  3507. border:none;
  3508. border-top:0px;
  3509. border-right:0px;
  3510. border-bottom:0px;
  3511. border-radius:0px;
  3512. border-top-left-radius:0px;
  3513. border-bottom-left-radius:0px;
  3514. -moz-box-shadow:none;
  3515. -webkit-box-shadow:none;
  3516. box-shadow:none;
  3517. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3518. font-weight:400;
  3519. font-style:normal;
  3520. font-size:12px;
  3521. line-height:30px;
  3522. }
  3523. #u199446 {
  3524. border-width:0px;
  3525. position:absolute;
  3526. left:509px;
  3527. top:537px;
  3528. width:358px;
  3529. height:190px;
  3530. display:flex;
  3531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3532. font-weight:400;
  3533. font-style:normal;
  3534. font-size:12px;
  3535. line-height:30px;
  3536. }
  3537. #u199446 .text {
  3538. position:absolute;
  3539. align-self:flex-start;
  3540. padding:5px 10px 5px 0px;
  3541. box-sizing:border-box;
  3542. width:100%;
  3543. }
  3544. #u199446_text {
  3545. border-width:0px;
  3546. word-wrap:break-word;
  3547. text-transform:none;
  3548. }
  3549. #u199447_div {
  3550. border-width:0px;
  3551. position:absolute;
  3552. left:0px;
  3553. top:0px;
  3554. width:10px;
  3555. height:10px;
  3556. background:inherit;
  3557. background-color:rgba(255, 255, 255, 0);
  3558. box-sizing:border-box;
  3559. border-width:2px;
  3560. border-style:solid;
  3561. border-color:rgba(51, 51, 51, 1);
  3562. border-right:0px;
  3563. border-bottom:0px;
  3564. border-radius:0px;
  3565. border-top-right-radius:0px;
  3566. border-bottom-left-radius:0px;
  3567. -moz-box-shadow:none;
  3568. -webkit-box-shadow:none;
  3569. box-shadow:none;
  3570. }
  3571. #u199447 {
  3572. border-width:0px;
  3573. position:absolute;
  3574. left:843px;
  3575. top:508px;
  3576. width:10px;
  3577. height:10px;
  3578. display:flex;
  3579. -webkit-transform:rotate(45deg);
  3580. -moz-transform:rotate(45deg);
  3581. -ms-transform:rotate(45deg);
  3582. transform:rotate(45deg);
  3583. }
  3584. #u199447 .text {
  3585. position:absolute;
  3586. align-self:center;
  3587. padding:2px 2px 2px 2px;
  3588. box-sizing:border-box;
  3589. width:100%;
  3590. }
  3591. #u199447_text {
  3592. border-width:0px;
  3593. word-wrap:break-word;
  3594. text-transform:none;
  3595. visibility:hidden;
  3596. }
  3597. #u199448 {
  3598. border-width:0px;
  3599. position:absolute;
  3600. left:0px;
  3601. top:0px;
  3602. width:0px;
  3603. height:0px;
  3604. }
  3605. #u199449_div {
  3606. border-width:0px;
  3607. position:absolute;
  3608. left:0px;
  3609. top:0px;
  3610. width:375px;
  3611. height:380px;
  3612. background:inherit;
  3613. background-color:rgba(255, 255, 255, 1);
  3614. border:none;
  3615. border-radius:0px;
  3616. -moz-box-shadow:none;
  3617. -webkit-box-shadow:none;
  3618. box-shadow:none;
  3619. }
  3620. #u199449 {
  3621. border-width:0px;
  3622. position:absolute;
  3623. left:494px;
  3624. top:107px;
  3625. width:375px;
  3626. height:380px;
  3627. display:flex;
  3628. }
  3629. #u199449 .text {
  3630. position:absolute;
  3631. align-self:center;
  3632. padding:2px 2px 2px 2px;
  3633. box-sizing:border-box;
  3634. width:100%;
  3635. }
  3636. #u199449_text {
  3637. border-width:0px;
  3638. word-wrap:break-word;
  3639. text-transform:none;
  3640. visibility:hidden;
  3641. }
  3642. #u199450_div {
  3643. border-width:0px;
  3644. position:absolute;
  3645. left:0px;
  3646. top:0px;
  3647. width:353px;
  3648. height:160px;
  3649. background:inherit;
  3650. background-color:rgba(255, 255, 255, 0);
  3651. border:none;
  3652. border-top:0px;
  3653. border-right:0px;
  3654. border-bottom:0px;
  3655. border-radius:0px;
  3656. border-top-left-radius:0px;
  3657. border-bottom-left-radius:0px;
  3658. -moz-box-shadow:none;
  3659. -webkit-box-shadow:none;
  3660. box-shadow:none;
  3661. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3662. font-weight:400;
  3663. font-style:normal;
  3664. line-height:30px;
  3665. }
  3666. #u199450 {
  3667. border-width:0px;
  3668. position:absolute;
  3669. left:507px;
  3670. top:117px;
  3671. width:353px;
  3672. height:160px;
  3673. display:flex;
  3674. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3675. font-weight:400;
  3676. font-style:normal;
  3677. line-height:30px;
  3678. }
  3679. #u199450 .text {
  3680. position:absolute;
  3681. align-self:flex-start;
  3682. padding:5px 10px 5px 0px;
  3683. box-sizing:border-box;
  3684. width:100%;
  3685. }
  3686. #u199450_text {
  3687. border-width:0px;
  3688. word-wrap:break-word;
  3689. text-transform:none;
  3690. }
  3691. #u199451_div {
  3692. border-width:0px;
  3693. position:absolute;
  3694. left:0px;
  3695. top:0px;
  3696. width:353px;
  3697. height:190px;
  3698. background:inherit;
  3699. background-color:rgba(255, 255, 255, 0);
  3700. border:none;
  3701. border-top:0px;
  3702. border-right:0px;
  3703. border-bottom:0px;
  3704. border-radius:0px;
  3705. border-top-left-radius:0px;
  3706. border-bottom-left-radius:0px;
  3707. -moz-box-shadow:none;
  3708. -webkit-box-shadow:none;
  3709. box-shadow:none;
  3710. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3711. font-weight:400;
  3712. font-style:normal;
  3713. font-size:12px;
  3714. line-height:30px;
  3715. }
  3716. #u199451 {
  3717. border-width:0px;
  3718. position:absolute;
  3719. left:507px;
  3720. top:292px;
  3721. width:353px;
  3722. height:190px;
  3723. display:flex;
  3724. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3725. font-weight:400;
  3726. font-style:normal;
  3727. font-size:12px;
  3728. line-height:30px;
  3729. }
  3730. #u199451 .text {
  3731. position:absolute;
  3732. align-self:flex-start;
  3733. padding:5px 10px 5px 0px;
  3734. box-sizing:border-box;
  3735. width:100%;
  3736. }
  3737. #u199451_text {
  3738. border-width:0px;
  3739. word-wrap:break-word;
  3740. text-transform:none;
  3741. }
  3742. #u199452_img {
  3743. border-width:0px;
  3744. position:absolute;
  3745. left:0px;
  3746. top:0px;
  3747. width:350px;
  3748. height:2px;
  3749. }
  3750. #u199452 {
  3751. border-width:0px;
  3752. position:absolute;
  3753. left:507px;
  3754. top:283px;
  3755. width:349px;
  3756. height:1px;
  3757. display:flex;
  3758. }
  3759. #u199452 .text {
  3760. position:absolute;
  3761. align-self:center;
  3762. padding:2px 2px 2px 2px;
  3763. box-sizing:border-box;
  3764. width:100%;
  3765. }
  3766. #u199452_text {
  3767. border-width:0px;
  3768. word-wrap:break-word;
  3769. text-transform:none;
  3770. visibility:hidden;
  3771. }
  3772. #u199453_div {
  3773. border-width:0px;
  3774. position:absolute;
  3775. left:0px;
  3776. top:0px;
  3777. width:10px;
  3778. height:10px;
  3779. background:inherit;
  3780. background-color:rgba(255, 255, 255, 0);
  3781. box-sizing:border-box;
  3782. border-width:2px;
  3783. border-style:solid;
  3784. border-color:rgba(51, 51, 51, 1);
  3785. border-right:0px;
  3786. border-bottom:0px;
  3787. border-radius:0px;
  3788. border-top-right-radius:0px;
  3789. border-bottom-left-radius:0px;
  3790. -moz-box-shadow:none;
  3791. -webkit-box-shadow:none;
  3792. box-shadow:none;
  3793. }
  3794. #u199453 {
  3795. border-width:0px;
  3796. position:absolute;
  3797. left:843px;
  3798. top:129px;
  3799. width:10px;
  3800. height:10px;
  3801. display:flex;
  3802. -webkit-transform:rotate(45deg);
  3803. -moz-transform:rotate(45deg);
  3804. -ms-transform:rotate(45deg);
  3805. transform:rotate(45deg);
  3806. }
  3807. #u199453 .text {
  3808. position:absolute;
  3809. align-self:center;
  3810. padding:2px 2px 2px 2px;
  3811. box-sizing:border-box;
  3812. width:100%;
  3813. }
  3814. #u199453_text {
  3815. border-width:0px;
  3816. word-wrap:break-word;
  3817. text-transform:none;
  3818. visibility:hidden;
  3819. }
  3820. #u199454 {
  3821. border-width:0px;
  3822. position:absolute;
  3823. left:0px;
  3824. top:0px;
  3825. width:0px;
  3826. height:0px;
  3827. }
  3828. #u199455_div {
  3829. border-width:0px;
  3830. position:absolute;
  3831. left:0px;
  3832. top:0px;
  3833. width:375px;
  3834. height:690px;
  3835. background:inherit;
  3836. background-color:rgba(255, 255, 255, 1);
  3837. border:none;
  3838. border-radius:0px;
  3839. -moz-box-shadow:none;
  3840. -webkit-box-shadow:none;
  3841. box-shadow:none;
  3842. }
  3843. #u199455 {
  3844. border-width:0px;
  3845. position:absolute;
  3846. left:494px;
  3847. top:743px;
  3848. width:375px;
  3849. height:690px;
  3850. display:flex;
  3851. }
  3852. #u199455 .text {
  3853. position:absolute;
  3854. align-self:center;
  3855. padding:2px 2px 2px 2px;
  3856. box-sizing:border-box;
  3857. width:100%;
  3858. }
  3859. #u199455_text {
  3860. border-width:0px;
  3861. word-wrap:break-word;
  3862. text-transform:none;
  3863. visibility:hidden;
  3864. }
  3865. #u199456_div {
  3866. border-width:0px;
  3867. position:absolute;
  3868. left:0px;
  3869. top:0px;
  3870. width:95px;
  3871. height:35px;
  3872. background:inherit;
  3873. background-color:rgba(255, 255, 255, 0);
  3874. border:none;
  3875. border-top:0px;
  3876. border-right:0px;
  3877. border-bottom:0px;
  3878. border-radius:0px;
  3879. border-top-left-radius:0px;
  3880. border-bottom-left-radius:0px;
  3881. -moz-box-shadow:none;
  3882. -webkit-box-shadow:none;
  3883. box-shadow:none;
  3884. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3885. font-weight:400;
  3886. font-style:normal;
  3887. font-size:14px;
  3888. line-height:25px;
  3889. }
  3890. #u199456 {
  3891. border-width:0px;
  3892. position:absolute;
  3893. left:509px;
  3894. top:753px;
  3895. width:95px;
  3896. height:35px;
  3897. display:flex;
  3898. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3899. font-weight:400;
  3900. font-style:normal;
  3901. font-size:14px;
  3902. line-height:25px;
  3903. }
  3904. #u199456 .text {
  3905. position:absolute;
  3906. align-self:center;
  3907. padding:5px 10px 5px 0px;
  3908. box-sizing:border-box;
  3909. width:100%;
  3910. }
  3911. #u199456_text {
  3912. border-width:0px;
  3913. white-space:nowrap;
  3914. text-transform:none;
  3915. }
  3916. #u199457_div {
  3917. border-width:0px;
  3918. position:absolute;
  3919. left:0px;
  3920. top:0px;
  3921. width:358px;
  3922. height:310px;
  3923. background:inherit;
  3924. background-color:rgba(255, 255, 255, 0);
  3925. border:none;
  3926. border-top:0px;
  3927. border-right:0px;
  3928. border-bottom:0px;
  3929. border-radius:0px;
  3930. border-top-left-radius:0px;
  3931. border-bottom-left-radius:0px;
  3932. -moz-box-shadow:none;
  3933. -webkit-box-shadow:none;
  3934. box-shadow:none;
  3935. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3936. font-weight:400;
  3937. font-style:normal;
  3938. font-size:12px;
  3939. line-height:30px;
  3940. }
  3941. #u199457 {
  3942. border-width:0px;
  3943. position:absolute;
  3944. left:509px;
  3945. top:792px;
  3946. width:358px;
  3947. height:310px;
  3948. display:flex;
  3949. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3950. font-weight:400;
  3951. font-style:normal;
  3952. font-size:12px;
  3953. line-height:30px;
  3954. }
  3955. #u199457 .text {
  3956. position:absolute;
  3957. align-self:flex-start;
  3958. padding:5px 10px 5px 0px;
  3959. box-sizing:border-box;
  3960. width:100%;
  3961. }
  3962. #u199457_text {
  3963. border-width:0px;
  3964. word-wrap:break-word;
  3965. text-transform:none;
  3966. }
  3967. #u199458_div {
  3968. border-width:0px;
  3969. position:absolute;
  3970. left:0px;
  3971. top:0px;
  3972. width:10px;
  3973. height:10px;
  3974. background:inherit;
  3975. background-color:rgba(255, 255, 255, 0);
  3976. box-sizing:border-box;
  3977. border-width:2px;
  3978. border-style:solid;
  3979. border-color:rgba(51, 51, 51, 1);
  3980. border-right:0px;
  3981. border-bottom:0px;
  3982. border-radius:0px;
  3983. border-top-right-radius:0px;
  3984. border-bottom-left-radius:0px;
  3985. -moz-box-shadow:none;
  3986. -webkit-box-shadow:none;
  3987. box-shadow:none;
  3988. }
  3989. #u199458 {
  3990. border-width:0px;
  3991. position:absolute;
  3992. left:843px;
  3993. top:763px;
  3994. width:10px;
  3995. height:10px;
  3996. display:flex;
  3997. -webkit-transform:rotate(45deg);
  3998. -moz-transform:rotate(45deg);
  3999. -ms-transform:rotate(45deg);
  4000. transform:rotate(45deg);
  4001. }
  4002. #u199458 .text {
  4003. position:absolute;
  4004. align-self:center;
  4005. padding:2px 2px 2px 2px;
  4006. box-sizing:border-box;
  4007. width:100%;
  4008. }
  4009. #u199458_text {
  4010. border-width:0px;
  4011. word-wrap:break-word;
  4012. text-transform:none;
  4013. visibility:hidden;
  4014. }
  4015. #u199459_img {
  4016. border-width:0px;
  4017. position:absolute;
  4018. left:0px;
  4019. top:0px;
  4020. width:348px;
  4021. height:2px;
  4022. }
  4023. #u199459 {
  4024. border-width:0px;
  4025. position:absolute;
  4026. left:509px;
  4027. top:1101px;
  4028. width:347px;
  4029. height:1px;
  4030. display:flex;
  4031. }
  4032. #u199459 .text {
  4033. position:absolute;
  4034. align-self:center;
  4035. padding:2px 2px 2px 2px;
  4036. box-sizing:border-box;
  4037. width:100%;
  4038. }
  4039. #u199459_text {
  4040. border-width:0px;
  4041. word-wrap:break-word;
  4042. text-transform:none;
  4043. visibility:hidden;
  4044. }
  4045. #u199460_div {
  4046. border-width:0px;
  4047. position:absolute;
  4048. left:0px;
  4049. top:0px;
  4050. width:358px;
  4051. height:310px;
  4052. background:inherit;
  4053. background-color:rgba(255, 255, 255, 0);
  4054. border:none;
  4055. border-top:0px;
  4056. border-right:0px;
  4057. border-bottom:0px;
  4058. border-radius:0px;
  4059. border-top-left-radius:0px;
  4060. border-bottom-left-radius:0px;
  4061. -moz-box-shadow:none;
  4062. -webkit-box-shadow:none;
  4063. box-shadow:none;
  4064. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4065. font-weight:400;
  4066. font-style:normal;
  4067. font-size:12px;
  4068. line-height:30px;
  4069. }
  4070. #u199460 {
  4071. border-width:0px;
  4072. position:absolute;
  4073. left:509px;
  4074. top:1112px;
  4075. width:358px;
  4076. height:310px;
  4077. display:flex;
  4078. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4079. font-weight:400;
  4080. font-style:normal;
  4081. font-size:12px;
  4082. line-height:30px;
  4083. }
  4084. #u199460 .text {
  4085. position:absolute;
  4086. align-self:flex-start;
  4087. padding:5px 10px 5px 0px;
  4088. box-sizing:border-box;
  4089. width:100%;
  4090. }
  4091. #u199460_text {
  4092. border-width:0px;
  4093. word-wrap:break-word;
  4094. text-transform:none;
  4095. }
  4096. #u199462_img {
  4097. border-width:0px;
  4098. position:absolute;
  4099. left:0px;
  4100. top:0px;
  4101. width:433px;
  4102. height:865px;
  4103. }
  4104. #u199462 {
  4105. border-width:0px;
  4106. position:absolute;
  4107. left:932px;
  4108. top:0px;
  4109. width:433px;
  4110. height:865px;
  4111. display:flex;
  4112. }
  4113. #u199462 .text {
  4114. position:absolute;
  4115. align-self:center;
  4116. padding:2px 2px 2px 2px;
  4117. box-sizing:border-box;
  4118. width:100%;
  4119. }
  4120. #u199462_text {
  4121. border-width:0px;
  4122. word-wrap:break-word;
  4123. text-transform:none;
  4124. visibility:hidden;
  4125. }
  4126. #u199463_div {
  4127. border-width:0px;
  4128. position:absolute;
  4129. left:0px;
  4130. top:0px;
  4131. width:375px;
  4132. height:40px;
  4133. background:inherit;
  4134. background-color:rgba(255, 255, 255, 1);
  4135. box-sizing:border-box;
  4136. border-width:1px;
  4137. border-style:solid;
  4138. border-color:rgba(215, 215, 215, 1);
  4139. border-left:0px;
  4140. border-top:0px;
  4141. border-right:0px;
  4142. border-radius:0px;
  4143. border-bottom-right-radius:0px;
  4144. border-bottom-left-radius:0px;
  4145. -moz-box-shadow:none;
  4146. -webkit-box-shadow:none;
  4147. box-shadow:none;
  4148. }
  4149. #u199463 {
  4150. border-width:0px;
  4151. position:absolute;
  4152. left:961px;
  4153. top:67px;
  4154. width:375px;
  4155. height:40px;
  4156. display:flex;
  4157. }
  4158. #u199463 .text {
  4159. position:absolute;
  4160. align-self:center;
  4161. padding:2px 2px 2px 2px;
  4162. box-sizing:border-box;
  4163. width:100%;
  4164. }
  4165. #u199463_text {
  4166. border-width:0px;
  4167. word-wrap:break-word;
  4168. text-transform:none;
  4169. visibility:hidden;
  4170. }
  4171. #u199464 {
  4172. border-width:0px;
  4173. position:absolute;
  4174. left:0px;
  4175. top:0px;
  4176. width:0px;
  4177. height:0px;
  4178. }
  4179. #u199465_div {
  4180. border-width:0px;
  4181. position:absolute;
  4182. left:0px;
  4183. top:0px;
  4184. width:88px;
  4185. height:32px;
  4186. background:inherit;
  4187. background-color:rgba(255, 255, 255, 1);
  4188. box-sizing:border-box;
  4189. border-width:1px;
  4190. border-style:solid;
  4191. border-color:rgba(242, 242, 242, 1);
  4192. border-radius:33px;
  4193. -moz-box-shadow:none;
  4194. -webkit-box-shadow:none;
  4195. box-shadow:none;
  4196. }
  4197. #u199465 {
  4198. border-width:0px;
  4199. position:absolute;
  4200. left:1241px;
  4201. top:71px;
  4202. width:88px;
  4203. height:32px;
  4204. display:flex;
  4205. }
  4206. #u199465 .text {
  4207. position:absolute;
  4208. align-self:center;
  4209. padding:2px 2px 2px 2px;
  4210. box-sizing:border-box;
  4211. width:100%;
  4212. }
  4213. #u199465_text {
  4214. border-width:0px;
  4215. word-wrap:break-word;
  4216. text-transform:none;
  4217. visibility:hidden;
  4218. }
  4219. #u199466 {
  4220. border-width:0px;
  4221. position:absolute;
  4222. left:0px;
  4223. top:0px;
  4224. width:0px;
  4225. height:0px;
  4226. }
  4227. #u199467_img {
  4228. border-width:0px;
  4229. position:absolute;
  4230. left:0px;
  4231. top:0px;
  4232. width:18px;
  4233. height:18px;
  4234. }
  4235. #u199467 {
  4236. border-width:0px;
  4237. position:absolute;
  4238. left:1304px;
  4239. top:78px;
  4240. width:18px;
  4241. height:18px;
  4242. display:flex;
  4243. }
  4244. #u199467 .text {
  4245. position:absolute;
  4246. align-self:center;
  4247. padding:2px 2px 2px 2px;
  4248. box-sizing:border-box;
  4249. width:100%;
  4250. }
  4251. #u199467_text {
  4252. border-width:0px;
  4253. word-wrap:break-word;
  4254. text-transform:none;
  4255. visibility:hidden;
  4256. }
  4257. #u199468_img {
  4258. border-width:0px;
  4259. position:absolute;
  4260. left:0px;
  4261. top:0px;
  4262. width:6px;
  4263. height:6px;
  4264. }
  4265. #u199468 {
  4266. border-width:0px;
  4267. position:absolute;
  4268. left:1310px;
  4269. top:84px;
  4270. width:6px;
  4271. height:6px;
  4272. display:flex;
  4273. }
  4274. #u199468 .text {
  4275. position:absolute;
  4276. align-self:center;
  4277. padding:2px 2px 2px 2px;
  4278. box-sizing:border-box;
  4279. width:100%;
  4280. }
  4281. #u199468_text {
  4282. border-width:0px;
  4283. word-wrap:break-word;
  4284. text-transform:none;
  4285. visibility:hidden;
  4286. }
  4287. #u199469 {
  4288. border-width:0px;
  4289. position:absolute;
  4290. left:0px;
  4291. top:0px;
  4292. width:0px;
  4293. height:0px;
  4294. }
  4295. #u199470_img {
  4296. border-width:0px;
  4297. position:absolute;
  4298. left:0px;
  4299. top:0px;
  4300. width:5px;
  4301. height:5px;
  4302. }
  4303. #u199470 {
  4304. border-width:0px;
  4305. position:absolute;
  4306. left:1255px;
  4307. top:85px;
  4308. width:5px;
  4309. height:5px;
  4310. display:flex;
  4311. }
  4312. #u199470 .text {
  4313. position:absolute;
  4314. align-self:center;
  4315. padding:2px 2px 2px 2px;
  4316. box-sizing:border-box;
  4317. width:100%;
  4318. }
  4319. #u199470_text {
  4320. border-width:0px;
  4321. word-wrap:break-word;
  4322. text-transform:none;
  4323. visibility:hidden;
  4324. }
  4325. #u199471_img {
  4326. border-width:0px;
  4327. position:absolute;
  4328. left:0px;
  4329. top:0px;
  4330. width:5px;
  4331. height:5px;
  4332. }
  4333. #u199471 {
  4334. border-width:0px;
  4335. position:absolute;
  4336. left:1271px;
  4337. top:85px;
  4338. width:5px;
  4339. height:5px;
  4340. display:flex;
  4341. }
  4342. #u199471 .text {
  4343. position:absolute;
  4344. align-self:center;
  4345. padding:2px 2px 2px 2px;
  4346. box-sizing:border-box;
  4347. width:100%;
  4348. }
  4349. #u199471_text {
  4350. border-width:0px;
  4351. word-wrap:break-word;
  4352. text-transform:none;
  4353. visibility:hidden;
  4354. }
  4355. #u199472_img {
  4356. border-width:0px;
  4357. position:absolute;
  4358. left:0px;
  4359. top:0px;
  4360. width:7px;
  4361. height:7px;
  4362. }
  4363. #u199472 {
  4364. border-width:0px;
  4365. position:absolute;
  4366. left:1262px;
  4367. top:84px;
  4368. width:7px;
  4369. height:7px;
  4370. display:flex;
  4371. }
  4372. #u199472 .text {
  4373. position:absolute;
  4374. align-self:center;
  4375. padding:2px 2px 2px 2px;
  4376. box-sizing:border-box;
  4377. width:100%;
  4378. }
  4379. #u199472_text {
  4380. border-width:0px;
  4381. word-wrap:break-word;
  4382. text-transform:none;
  4383. visibility:hidden;
  4384. }
  4385. #u199473_img {
  4386. border-width:0px;
  4387. position:absolute;
  4388. left:0px;
  4389. top:0px;
  4390. width:19px;
  4391. height:2px;
  4392. }
  4393. #u199473 {
  4394. border-width:0px;
  4395. position:absolute;
  4396. left:1279px;
  4397. top:87px;
  4398. width:18px;
  4399. height:1px;
  4400. display:flex;
  4401. -webkit-transform:rotate(90deg);
  4402. -moz-transform:rotate(90deg);
  4403. -ms-transform:rotate(90deg);
  4404. transform:rotate(90deg);
  4405. }
  4406. #u199473 .text {
  4407. position:absolute;
  4408. align-self:center;
  4409. padding:2px 2px 2px 2px;
  4410. box-sizing:border-box;
  4411. width:100%;
  4412. }
  4413. #u199473_text {
  4414. border-width:0px;
  4415. word-wrap:break-word;
  4416. text-transform:none;
  4417. visibility:hidden;
  4418. }
  4419. #u199474_img {
  4420. border-width:0px;
  4421. position:absolute;
  4422. left:0px;
  4423. top:0px;
  4424. width:375px;
  4425. height:44px;
  4426. }
  4427. #u199474 {
  4428. border-width:0px;
  4429. position:absolute;
  4430. left:961px;
  4431. top:24px;
  4432. width:375px;
  4433. height:44px;
  4434. display:flex;
  4435. }
  4436. #u199474 .text {
  4437. position:absolute;
  4438. align-self:center;
  4439. padding:2px 2px 2px 2px;
  4440. box-sizing:border-box;
  4441. width:100%;
  4442. }
  4443. #u199474_text {
  4444. border-width:0px;
  4445. word-wrap:break-word;
  4446. text-transform:none;
  4447. visibility:hidden;
  4448. }
  4449. #u199475_div {
  4450. border-width:0px;
  4451. position:absolute;
  4452. left:0px;
  4453. top:0px;
  4454. width:375px;
  4455. height:50px;
  4456. background:inherit;
  4457. background-color:rgba(255, 255, 255, 1);
  4458. box-sizing:border-box;
  4459. border-width:1px;
  4460. border-style:solid;
  4461. border-color:rgba(242, 242, 242, 1);
  4462. border-radius:26px;
  4463. border-top-left-radius:0px;
  4464. border-top-right-radius:0px;
  4465. -moz-box-shadow:none;
  4466. -webkit-box-shadow:none;
  4467. box-shadow:none;
  4468. }
  4469. #u199475 {
  4470. border-width:0px;
  4471. position:absolute;
  4472. left:961px;
  4473. top:788px;
  4474. width:375px;
  4475. height:50px;
  4476. display:flex;
  4477. }
  4478. #u199475 .text {
  4479. position:absolute;
  4480. align-self:center;
  4481. padding:2px 2px 2px 2px;
  4482. box-sizing:border-box;
  4483. width:100%;
  4484. }
  4485. #u199475_text {
  4486. border-width:0px;
  4487. word-wrap:break-word;
  4488. text-transform:none;
  4489. visibility:hidden;
  4490. }
  4491. #u199476 {
  4492. border-width:0px;
  4493. position:absolute;
  4494. left:0px;
  4495. top:0px;
  4496. width:0px;
  4497. height:0px;
  4498. }
  4499. #u199477_img {
  4500. border-width:0px;
  4501. position:absolute;
  4502. left:0px;
  4503. top:0px;
  4504. width:24px;
  4505. height:24px;
  4506. }
  4507. #u199477 {
  4508. border-width:0px;
  4509. position:absolute;
  4510. left:1001px;
  4511. top:792px;
  4512. width:24px;
  4513. height:24px;
  4514. display:flex;
  4515. font-size:8px;
  4516. }
  4517. #u199477 .text {
  4518. position:absolute;
  4519. align-self:center;
  4520. padding:2px 2px 2px 2px;
  4521. box-sizing:border-box;
  4522. width:100%;
  4523. }
  4524. #u199477_text {
  4525. border-width:0px;
  4526. word-wrap:break-word;
  4527. text-transform:none;
  4528. }
  4529. #u199478_div {
  4530. border-width:0px;
  4531. position:absolute;
  4532. left:0px;
  4533. top:0px;
  4534. width:25px;
  4535. height:17px;
  4536. background:inherit;
  4537. background-color:rgba(255, 255, 255, 0);
  4538. border:none;
  4539. border-radius:0px;
  4540. -moz-box-shadow:none;
  4541. -webkit-box-shadow:none;
  4542. box-shadow:none;
  4543. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4544. font-weight:400;
  4545. font-style:normal;
  4546. font-size:12px;
  4547. }
  4548. #u199478 {
  4549. border-width:0px;
  4550. position:absolute;
  4551. left:1001px;
  4552. top:817px;
  4553. width:25px;
  4554. height:17px;
  4555. display:flex;
  4556. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4557. font-weight:400;
  4558. font-style:normal;
  4559. font-size:12px;
  4560. }
  4561. #u199478 .text {
  4562. position:absolute;
  4563. align-self:flex-start;
  4564. padding:0px 0px 0px 0px;
  4565. box-sizing:border-box;
  4566. width:100%;
  4567. }
  4568. #u199478_text {
  4569. border-width:0px;
  4570. white-space:nowrap;
  4571. text-transform:none;
  4572. }
  4573. #u199479 {
  4574. border-width:0px;
  4575. position:absolute;
  4576. left:0px;
  4577. top:0px;
  4578. width:0px;
  4579. height:0px;
  4580. }
  4581. #u199480_img {
  4582. border-width:0px;
  4583. position:absolute;
  4584. left:0px;
  4585. top:0px;
  4586. width:24px;
  4587. height:24px;
  4588. }
  4589. #u199480 {
  4590. border-width:0px;
  4591. position:absolute;
  4592. left:1271px;
  4593. top:794px;
  4594. width:24px;
  4595. height:24px;
  4596. display:flex;
  4597. font-size:8px;
  4598. }
  4599. #u199480 .text {
  4600. position:absolute;
  4601. align-self:center;
  4602. padding:2px 2px 2px 2px;
  4603. box-sizing:border-box;
  4604. width:100%;
  4605. }
  4606. #u199480_text {
  4607. border-width:0px;
  4608. word-wrap:break-word;
  4609. text-transform:none;
  4610. }
  4611. #u199481_div {
  4612. border-width:0px;
  4613. position:absolute;
  4614. left:0px;
  4615. top:0px;
  4616. width:25px;
  4617. height:17px;
  4618. background:inherit;
  4619. background-color:rgba(255, 255, 255, 0);
  4620. border:none;
  4621. border-radius:0px;
  4622. -moz-box-shadow:none;
  4623. -webkit-box-shadow:none;
  4624. box-shadow:none;
  4625. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4626. font-weight:400;
  4627. font-style:normal;
  4628. font-size:12px;
  4629. }
  4630. #u199481 {
  4631. border-width:0px;
  4632. position:absolute;
  4633. left:1271px;
  4634. top:819px;
  4635. width:25px;
  4636. height:17px;
  4637. display:flex;
  4638. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4639. font-weight:400;
  4640. font-style:normal;
  4641. font-size:12px;
  4642. }
  4643. #u199481 .text {
  4644. position:absolute;
  4645. align-self:flex-start;
  4646. padding:0px 0px 0px 0px;
  4647. box-sizing:border-box;
  4648. width:100%;
  4649. }
  4650. #u199481_text {
  4651. border-width:0px;
  4652. white-space:nowrap;
  4653. text-transform:none;
  4654. }
  4655. #u199482_div {
  4656. border-width:0px;
  4657. position:absolute;
  4658. left:0px;
  4659. top:0px;
  4660. width:375px;
  4661. height:681px;
  4662. background:inherit;
  4663. background-color:rgba(242, 242, 242, 0.462745098039216);
  4664. border:none;
  4665. border-radius:0px;
  4666. -moz-box-shadow:none;
  4667. -webkit-box-shadow:none;
  4668. box-shadow:none;
  4669. }
  4670. #u199482 {
  4671. border-width:0px;
  4672. position:absolute;
  4673. left:961px;
  4674. top:107px;
  4675. width:375px;
  4676. height:681px;
  4677. display:flex;
  4678. }
  4679. #u199482 .text {
  4680. position:absolute;
  4681. align-self:center;
  4682. padding:2px 2px 2px 2px;
  4683. box-sizing:border-box;
  4684. width:100%;
  4685. }
  4686. #u199482_text {
  4687. border-width:0px;
  4688. word-wrap:break-word;
  4689. text-transform:none;
  4690. visibility:hidden;
  4691. }
  4692. #u199483 {
  4693. border-width:0px;
  4694. position:absolute;
  4695. left:0px;
  4696. top:0px;
  4697. width:0px;
  4698. height:0px;
  4699. }
  4700. #u199484_img {
  4701. border-width:0px;
  4702. position:absolute;
  4703. left:0px;
  4704. top:0px;
  4705. width:24px;
  4706. height:24px;
  4707. }
  4708. #u199484 {
  4709. border-width:0px;
  4710. position:absolute;
  4711. left:1183px;
  4712. top:792px;
  4713. width:24px;
  4714. height:24px;
  4715. display:flex;
  4716. font-size:8px;
  4717. }
  4718. #u199484 .text {
  4719. position:absolute;
  4720. align-self:center;
  4721. padding:2px 2px 2px 2px;
  4722. box-sizing:border-box;
  4723. width:100%;
  4724. }
  4725. #u199484_text {
  4726. border-width:0px;
  4727. word-wrap:break-word;
  4728. text-transform:none;
  4729. }
  4730. #u199485_div {
  4731. border-width:0px;
  4732. position:absolute;
  4733. left:0px;
  4734. top:0px;
  4735. width:37px;
  4736. height:17px;
  4737. background:inherit;
  4738. background-color:rgba(255, 255, 255, 0);
  4739. border:none;
  4740. border-radius:0px;
  4741. -moz-box-shadow:none;
  4742. -webkit-box-shadow:none;
  4743. box-shadow:none;
  4744. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4745. font-weight:400;
  4746. font-style:normal;
  4747. font-size:12px;
  4748. }
  4749. #u199485 {
  4750. border-width:0px;
  4751. position:absolute;
  4752. left:1177px;
  4753. top:817px;
  4754. width:37px;
  4755. height:17px;
  4756. display:flex;
  4757. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4758. font-weight:400;
  4759. font-style:normal;
  4760. font-size:12px;
  4761. }
  4762. #u199485 .text {
  4763. position:absolute;
  4764. align-self:flex-start;
  4765. padding:0px 0px 0px 0px;
  4766. box-sizing:border-box;
  4767. width:100%;
  4768. }
  4769. #u199485_text {
  4770. border-width:0px;
  4771. white-space:nowrap;
  4772. text-transform:none;
  4773. }
  4774. #u199486 {
  4775. border-width:0px;
  4776. position:absolute;
  4777. left:0px;
  4778. top:0px;
  4779. width:0px;
  4780. height:0px;
  4781. }
  4782. #u199487_img {
  4783. border-width:0px;
  4784. position:absolute;
  4785. left:0px;
  4786. top:0px;
  4787. width:24px;
  4788. height:24px;
  4789. }
  4790. #u199487 {
  4791. border-width:0px;
  4792. position:absolute;
  4793. left:1089px;
  4794. top:792px;
  4795. width:24px;
  4796. height:24px;
  4797. display:flex;
  4798. font-size:8px;
  4799. }
  4800. #u199487 .text {
  4801. position:absolute;
  4802. align-self:center;
  4803. padding:2px 2px 2px 2px;
  4804. box-sizing:border-box;
  4805. width:100%;
  4806. }
  4807. #u199487_text {
  4808. border-width:0px;
  4809. word-wrap:break-word;
  4810. text-transform:none;
  4811. }
  4812. #u199488_div {
  4813. border-width:0px;
  4814. position:absolute;
  4815. left:0px;
  4816. top:0px;
  4817. width:37px;
  4818. height:17px;
  4819. background:inherit;
  4820. background-color:rgba(255, 255, 255, 0);
  4821. border:none;
  4822. border-radius:0px;
  4823. -moz-box-shadow:none;
  4824. -webkit-box-shadow:none;
  4825. box-shadow:none;
  4826. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4827. font-weight:400;
  4828. font-style:normal;
  4829. font-size:12px;
  4830. }
  4831. #u199488 {
  4832. border-width:0px;
  4833. position:absolute;
  4834. left:1083px;
  4835. top:817px;
  4836. width:37px;
  4837. height:17px;
  4838. display:flex;
  4839. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4840. font-weight:400;
  4841. font-style:normal;
  4842. font-size:12px;
  4843. }
  4844. #u199488 .text {
  4845. position:absolute;
  4846. align-self:flex-start;
  4847. padding:0px 0px 0px 0px;
  4848. box-sizing:border-box;
  4849. width:100%;
  4850. }
  4851. #u199488_text {
  4852. border-width:0px;
  4853. white-space:nowrap;
  4854. text-transform:none;
  4855. }
  4856. #u199489_div {
  4857. border-width:0px;
  4858. position:absolute;
  4859. left:0px;
  4860. top:0px;
  4861. width:375px;
  4862. height:40px;
  4863. background:inherit;
  4864. background-color:rgba(255, 255, 255, 1);
  4865. box-sizing:border-box;
  4866. border-width:1px;
  4867. border-style:solid;
  4868. border-color:rgba(215, 215, 215, 1);
  4869. border-left:0px;
  4870. border-top:0px;
  4871. border-right:0px;
  4872. border-radius:0px;
  4873. border-bottom-right-radius:0px;
  4874. border-bottom-left-radius:0px;
  4875. -moz-box-shadow:none;
  4876. -webkit-box-shadow:none;
  4877. box-shadow:none;
  4878. }
  4879. #u199489 {
  4880. border-width:0px;
  4881. position:absolute;
  4882. left:961px;
  4883. top:67px;
  4884. width:375px;
  4885. height:40px;
  4886. display:flex;
  4887. }
  4888. #u199489 .text {
  4889. position:absolute;
  4890. align-self:center;
  4891. padding:2px 2px 2px 2px;
  4892. box-sizing:border-box;
  4893. width:100%;
  4894. }
  4895. #u199489_text {
  4896. border-width:0px;
  4897. word-wrap:break-word;
  4898. text-transform:none;
  4899. visibility:hidden;
  4900. }
  4901. #u199490_img {
  4902. border-width:0px;
  4903. position:absolute;
  4904. left:0px;
  4905. top:0px;
  4906. width:375px;
  4907. height:44px;
  4908. }
  4909. #u199490 {
  4910. border-width:0px;
  4911. position:absolute;
  4912. left:961px;
  4913. top:24px;
  4914. width:375px;
  4915. height:44px;
  4916. display:flex;
  4917. }
  4918. #u199490 .text {
  4919. position:absolute;
  4920. align-self:center;
  4921. padding:2px 2px 2px 2px;
  4922. box-sizing:border-box;
  4923. width:100%;
  4924. }
  4925. #u199490_text {
  4926. border-width:0px;
  4927. word-wrap:break-word;
  4928. text-transform:none;
  4929. visibility:hidden;
  4930. }
  4931. #u199491 {
  4932. border-width:0px;
  4933. position:absolute;
  4934. left:0px;
  4935. top:0px;
  4936. width:0px;
  4937. height:0px;
  4938. }
  4939. #u199492_div {
  4940. border-width:0px;
  4941. position:absolute;
  4942. left:0px;
  4943. top:0px;
  4944. width:88px;
  4945. height:32px;
  4946. background:inherit;
  4947. background-color:rgba(255, 255, 255, 1);
  4948. box-sizing:border-box;
  4949. border-width:1px;
  4950. border-style:solid;
  4951. border-color:rgba(242, 242, 242, 1);
  4952. border-radius:33px;
  4953. -moz-box-shadow:none;
  4954. -webkit-box-shadow:none;
  4955. box-shadow:none;
  4956. }
  4957. #u199492 {
  4958. border-width:0px;
  4959. position:absolute;
  4960. left:1241px;
  4961. top:71px;
  4962. width:88px;
  4963. height:32px;
  4964. display:flex;
  4965. }
  4966. #u199492 .text {
  4967. position:absolute;
  4968. align-self:center;
  4969. padding:2px 2px 2px 2px;
  4970. box-sizing:border-box;
  4971. width:100%;
  4972. }
  4973. #u199492_text {
  4974. border-width:0px;
  4975. word-wrap:break-word;
  4976. text-transform:none;
  4977. visibility:hidden;
  4978. }
  4979. #u199493 {
  4980. border-width:0px;
  4981. position:absolute;
  4982. left:0px;
  4983. top:0px;
  4984. width:0px;
  4985. height:0px;
  4986. }
  4987. #u199494_img {
  4988. border-width:0px;
  4989. position:absolute;
  4990. left:0px;
  4991. top:0px;
  4992. width:18px;
  4993. height:18px;
  4994. }
  4995. #u199494 {
  4996. border-width:0px;
  4997. position:absolute;
  4998. left:1304px;
  4999. top:78px;
  5000. width:18px;
  5001. height:18px;
  5002. display:flex;
  5003. }
  5004. #u199494 .text {
  5005. position:absolute;
  5006. align-self:center;
  5007. padding:2px 2px 2px 2px;
  5008. box-sizing:border-box;
  5009. width:100%;
  5010. }
  5011. #u199494_text {
  5012. border-width:0px;
  5013. word-wrap:break-word;
  5014. text-transform:none;
  5015. visibility:hidden;
  5016. }
  5017. #u199495_img {
  5018. border-width:0px;
  5019. position:absolute;
  5020. left:0px;
  5021. top:0px;
  5022. width:6px;
  5023. height:6px;
  5024. }
  5025. #u199495 {
  5026. border-width:0px;
  5027. position:absolute;
  5028. left:1310px;
  5029. top:84px;
  5030. width:6px;
  5031. height:6px;
  5032. display:flex;
  5033. }
  5034. #u199495 .text {
  5035. position:absolute;
  5036. align-self:center;
  5037. padding:2px 2px 2px 2px;
  5038. box-sizing:border-box;
  5039. width:100%;
  5040. }
  5041. #u199495_text {
  5042. border-width:0px;
  5043. word-wrap:break-word;
  5044. text-transform:none;
  5045. visibility:hidden;
  5046. }
  5047. #u199496 {
  5048. border-width:0px;
  5049. position:absolute;
  5050. left:0px;
  5051. top:0px;
  5052. width:0px;
  5053. height:0px;
  5054. }
  5055. #u199497_img {
  5056. border-width:0px;
  5057. position:absolute;
  5058. left:0px;
  5059. top:0px;
  5060. width:5px;
  5061. height:5px;
  5062. }
  5063. #u199497 {
  5064. border-width:0px;
  5065. position:absolute;
  5066. left:1255px;
  5067. top:85px;
  5068. width:5px;
  5069. height:5px;
  5070. display:flex;
  5071. }
  5072. #u199497 .text {
  5073. position:absolute;
  5074. align-self:center;
  5075. padding:2px 2px 2px 2px;
  5076. box-sizing:border-box;
  5077. width:100%;
  5078. }
  5079. #u199497_text {
  5080. border-width:0px;
  5081. word-wrap:break-word;
  5082. text-transform:none;
  5083. visibility:hidden;
  5084. }
  5085. #u199498_img {
  5086. border-width:0px;
  5087. position:absolute;
  5088. left:0px;
  5089. top:0px;
  5090. width:5px;
  5091. height:5px;
  5092. }
  5093. #u199498 {
  5094. border-width:0px;
  5095. position:absolute;
  5096. left:1271px;
  5097. top:85px;
  5098. width:5px;
  5099. height:5px;
  5100. display:flex;
  5101. }
  5102. #u199498 .text {
  5103. position:absolute;
  5104. align-self:center;
  5105. padding:2px 2px 2px 2px;
  5106. box-sizing:border-box;
  5107. width:100%;
  5108. }
  5109. #u199498_text {
  5110. border-width:0px;
  5111. word-wrap:break-word;
  5112. text-transform:none;
  5113. visibility:hidden;
  5114. }
  5115. #u199499_img {
  5116. border-width:0px;
  5117. position:absolute;
  5118. left:0px;
  5119. top:0px;
  5120. width:7px;
  5121. height:7px;
  5122. }
  5123. #u199499 {
  5124. border-width:0px;
  5125. position:absolute;
  5126. left:1262px;
  5127. top:84px;
  5128. width:7px;
  5129. height:7px;
  5130. display:flex;
  5131. }
  5132. #u199499 .text {
  5133. position:absolute;
  5134. align-self:center;
  5135. padding:2px 2px 2px 2px;
  5136. box-sizing:border-box;
  5137. width:100%;
  5138. }
  5139. #u199499_text {
  5140. border-width:0px;
  5141. word-wrap:break-word;
  5142. text-transform:none;
  5143. visibility:hidden;
  5144. }
  5145. #u199500_img {
  5146. border-width:0px;
  5147. position:absolute;
  5148. left:0px;
  5149. top:0px;
  5150. width:19px;
  5151. height:2px;
  5152. }
  5153. #u199500 {
  5154. border-width:0px;
  5155. position:absolute;
  5156. left:1279px;
  5157. top:87px;
  5158. width:18px;
  5159. height:1px;
  5160. display:flex;
  5161. -webkit-transform:rotate(90deg);
  5162. -moz-transform:rotate(90deg);
  5163. -ms-transform:rotate(90deg);
  5164. transform:rotate(90deg);
  5165. }
  5166. #u199500 .text {
  5167. position:absolute;
  5168. align-self:center;
  5169. padding:2px 2px 2px 2px;
  5170. box-sizing:border-box;
  5171. width:100%;
  5172. }
  5173. #u199500_text {
  5174. border-width:0px;
  5175. word-wrap:break-word;
  5176. text-transform:none;
  5177. visibility:hidden;
  5178. }
  5179. #u199501_div {
  5180. border-width:0px;
  5181. position:absolute;
  5182. left:0px;
  5183. top:0px;
  5184. width:65px;
  5185. height:22px;
  5186. background:inherit;
  5187. background-color:rgba(255, 255, 255, 0);
  5188. border:none;
  5189. border-radius:0px;
  5190. -moz-box-shadow:none;
  5191. -webkit-box-shadow:none;
  5192. box-shadow:none;
  5193. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5194. font-weight:400;
  5195. font-style:normal;
  5196. font-size:16px;
  5197. color:#000000;
  5198. }
  5199. #u199501 {
  5200. border-width:0px;
  5201. position:absolute;
  5202. left:1118px;
  5203. top:78px;
  5204. width:65px;
  5205. height:22px;
  5206. display:flex;
  5207. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5208. font-weight:400;
  5209. font-style:normal;
  5210. font-size:16px;
  5211. color:#000000;
  5212. }
  5213. #u199501 .text {
  5214. position:absolute;
  5215. align-self:flex-start;
  5216. padding:0px 0px 0px 0px;
  5217. box-sizing:border-box;
  5218. width:100%;
  5219. }
  5220. #u199501_text {
  5221. border-width:0px;
  5222. white-space:nowrap;
  5223. text-transform:none;
  5224. }
  5225. #u199502_div {
  5226. border-width:0px;
  5227. position:absolute;
  5228. left:0px;
  5229. top:0px;
  5230. width:12px;
  5231. height:12px;
  5232. background:inherit;
  5233. background-color:rgba(255, 255, 255, 0);
  5234. box-sizing:border-box;
  5235. border-width:2px;
  5236. border-style:solid;
  5237. border-color:rgba(51, 51, 51, 1);
  5238. border-right:0px;
  5239. border-bottom:0px;
  5240. border-radius:0px;
  5241. border-top-right-radius:0px;
  5242. border-bottom-left-radius:0px;
  5243. -moz-box-shadow:none;
  5244. -webkit-box-shadow:none;
  5245. box-shadow:none;
  5246. }
  5247. #u199502 {
  5248. border-width:0px;
  5249. position:absolute;
  5250. left:976px;
  5251. top:81px;
  5252. width:12px;
  5253. height:12px;
  5254. display:flex;
  5255. -webkit-transform:rotate(315deg);
  5256. -moz-transform:rotate(315deg);
  5257. -ms-transform:rotate(315deg);
  5258. transform:rotate(315deg);
  5259. }
  5260. #u199502 .text {
  5261. position:absolute;
  5262. align-self:center;
  5263. padding:2px 2px 2px 2px;
  5264. box-sizing:border-box;
  5265. width:100%;
  5266. }
  5267. #u199502_text {
  5268. border-width:0px;
  5269. word-wrap:break-word;
  5270. text-transform:none;
  5271. visibility:hidden;
  5272. }
  5273. #u199503_img {
  5274. border-width:0px;
  5275. position:absolute;
  5276. left:0px;
  5277. top:0px;
  5278. width:23px;
  5279. height:23px;
  5280. }
  5281. #u199503 {
  5282. border-width:0px;
  5283. position:absolute;
  5284. left:1003px;
  5285. top:76px;
  5286. width:23px;
  5287. height:23px;
  5288. display:flex;
  5289. }
  5290. #u199503 .text {
  5291. position:absolute;
  5292. align-self:center;
  5293. padding:2px 2px 2px 2px;
  5294. box-sizing:border-box;
  5295. width:100%;
  5296. }
  5297. #u199503_text {
  5298. border-width:0px;
  5299. word-wrap:break-word;
  5300. text-transform:none;
  5301. visibility:hidden;
  5302. }
  5303. #u199504_div {
  5304. border-width:0px;
  5305. position:absolute;
  5306. left:0px;
  5307. top:0px;
  5308. width:375px;
  5309. height:1213px;
  5310. background:inherit;
  5311. background-color:rgba(242, 242, 242, 0.996078431372549);
  5312. border:none;
  5313. border-top:0px;
  5314. border-radius:23px;
  5315. border-top-left-radius:0px;
  5316. border-top-right-radius:0px;
  5317. -moz-box-shadow:none;
  5318. -webkit-box-shadow:none;
  5319. box-shadow:none;
  5320. }
  5321. #u199504 {
  5322. border-width:0px;
  5323. position:absolute;
  5324. left:961px;
  5325. top:107px;
  5326. width:375px;
  5327. height:1213px;
  5328. display:flex;
  5329. }
  5330. #u199504 .text {
  5331. position:absolute;
  5332. align-self:center;
  5333. padding:2px 2px 2px 2px;
  5334. box-sizing:border-box;
  5335. width:100%;
  5336. }
  5337. #u199504_text {
  5338. border-width:0px;
  5339. word-wrap:break-word;
  5340. text-transform:none;
  5341. visibility:hidden;
  5342. }
  5343. #u199505 {
  5344. border-width:0px;
  5345. position:absolute;
  5346. left:0px;
  5347. top:0px;
  5348. width:0px;
  5349. height:0px;
  5350. }
  5351. #u199506_div {
  5352. border-width:0px;
  5353. position:absolute;
  5354. left:0px;
  5355. top:0px;
  5356. width:375px;
  5357. height:254px;
  5358. background:inherit;
  5359. background-color:rgba(255, 255, 255, 1);
  5360. border:none;
  5361. border-radius:0px;
  5362. -moz-box-shadow:none;
  5363. -webkit-box-shadow:none;
  5364. box-shadow:none;
  5365. }
  5366. #u199506 {
  5367. border-width:0px;
  5368. position:absolute;
  5369. left:961px;
  5370. top:488px;
  5371. width:375px;
  5372. height:254px;
  5373. display:flex;
  5374. }
  5375. #u199506 .text {
  5376. position:absolute;
  5377. align-self:center;
  5378. padding:2px 2px 2px 2px;
  5379. box-sizing:border-box;
  5380. width:100%;
  5381. }
  5382. #u199506_text {
  5383. border-width:0px;
  5384. word-wrap:break-word;
  5385. text-transform:none;
  5386. visibility:hidden;
  5387. }
  5388. #u199507_div {
  5389. border-width:0px;
  5390. position:absolute;
  5391. left:0px;
  5392. top:0px;
  5393. width:95px;
  5394. height:35px;
  5395. background:inherit;
  5396. background-color:rgba(255, 255, 255, 0);
  5397. border:none;
  5398. border-top:0px;
  5399. border-right:0px;
  5400. border-bottom:0px;
  5401. border-radius:0px;
  5402. border-top-left-radius:0px;
  5403. border-bottom-left-radius:0px;
  5404. -moz-box-shadow:none;
  5405. -webkit-box-shadow:none;
  5406. box-shadow:none;
  5407. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5408. font-weight:400;
  5409. font-style:normal;
  5410. font-size:14px;
  5411. line-height:25px;
  5412. }
  5413. #u199507 {
  5414. border-width:0px;
  5415. position:absolute;
  5416. left:976px;
  5417. top:498px;
  5418. width:95px;
  5419. height:35px;
  5420. display:flex;
  5421. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5422. font-weight:400;
  5423. font-style:normal;
  5424. font-size:14px;
  5425. line-height:25px;
  5426. }
  5427. #u199507 .text {
  5428. position:absolute;
  5429. align-self:center;
  5430. padding:5px 10px 5px 0px;
  5431. box-sizing:border-box;
  5432. width:100%;
  5433. }
  5434. #u199507_text {
  5435. border-width:0px;
  5436. white-space:nowrap;
  5437. text-transform:none;
  5438. }
  5439. #u199508_div {
  5440. border-width:0px;
  5441. position:absolute;
  5442. left:0px;
  5443. top:0px;
  5444. width:358px;
  5445. height:190px;
  5446. background:inherit;
  5447. background-color:rgba(255, 255, 255, 0);
  5448. border:none;
  5449. border-top:0px;
  5450. border-right:0px;
  5451. border-bottom:0px;
  5452. border-radius:0px;
  5453. border-top-left-radius:0px;
  5454. border-bottom-left-radius:0px;
  5455. -moz-box-shadow:none;
  5456. -webkit-box-shadow:none;
  5457. box-shadow:none;
  5458. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5459. font-weight:400;
  5460. font-style:normal;
  5461. font-size:12px;
  5462. line-height:30px;
  5463. }
  5464. #u199508 {
  5465. border-width:0px;
  5466. position:absolute;
  5467. left:976px;
  5468. top:537px;
  5469. width:358px;
  5470. height:190px;
  5471. display:flex;
  5472. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5473. font-weight:400;
  5474. font-style:normal;
  5475. font-size:12px;
  5476. line-height:30px;
  5477. }
  5478. #u199508 .text {
  5479. position:absolute;
  5480. align-self:flex-start;
  5481. padding:5px 10px 5px 0px;
  5482. box-sizing:border-box;
  5483. width:100%;
  5484. }
  5485. #u199508_text {
  5486. border-width:0px;
  5487. word-wrap:break-word;
  5488. text-transform:none;
  5489. }
  5490. #u199509_div {
  5491. border-width:0px;
  5492. position:absolute;
  5493. left:0px;
  5494. top:0px;
  5495. width:10px;
  5496. height:10px;
  5497. background:inherit;
  5498. background-color:rgba(255, 255, 255, 0);
  5499. box-sizing:border-box;
  5500. border-width:2px;
  5501. border-style:solid;
  5502. border-color:rgba(51, 51, 51, 1);
  5503. border-right:0px;
  5504. border-bottom:0px;
  5505. border-radius:0px;
  5506. border-top-right-radius:0px;
  5507. border-bottom-left-radius:0px;
  5508. -moz-box-shadow:none;
  5509. -webkit-box-shadow:none;
  5510. box-shadow:none;
  5511. }
  5512. #u199509 {
  5513. border-width:0px;
  5514. position:absolute;
  5515. left:1310px;
  5516. top:508px;
  5517. width:10px;
  5518. height:10px;
  5519. display:flex;
  5520. -webkit-transform:rotate(45deg);
  5521. -moz-transform:rotate(45deg);
  5522. -ms-transform:rotate(45deg);
  5523. transform:rotate(45deg);
  5524. }
  5525. #u199509 .text {
  5526. position:absolute;
  5527. align-self:center;
  5528. padding:2px 2px 2px 2px;
  5529. box-sizing:border-box;
  5530. width:100%;
  5531. }
  5532. #u199509_text {
  5533. border-width:0px;
  5534. word-wrap:break-word;
  5535. text-transform:none;
  5536. visibility:hidden;
  5537. }
  5538. #u199510 {
  5539. border-width:0px;
  5540. position:absolute;
  5541. left:0px;
  5542. top:0px;
  5543. width:0px;
  5544. height:0px;
  5545. }
  5546. #u199511_div {
  5547. border-width:0px;
  5548. position:absolute;
  5549. left:0px;
  5550. top:0px;
  5551. width:375px;
  5552. height:380px;
  5553. background:inherit;
  5554. background-color:rgba(255, 255, 255, 1);
  5555. border:none;
  5556. border-radius:0px;
  5557. -moz-box-shadow:none;
  5558. -webkit-box-shadow:none;
  5559. box-shadow:none;
  5560. }
  5561. #u199511 {
  5562. border-width:0px;
  5563. position:absolute;
  5564. left:961px;
  5565. top:107px;
  5566. width:375px;
  5567. height:380px;
  5568. display:flex;
  5569. }
  5570. #u199511 .text {
  5571. position:absolute;
  5572. align-self:center;
  5573. padding:2px 2px 2px 2px;
  5574. box-sizing:border-box;
  5575. width:100%;
  5576. }
  5577. #u199511_text {
  5578. border-width:0px;
  5579. word-wrap:break-word;
  5580. text-transform:none;
  5581. visibility:hidden;
  5582. }
  5583. #u199512_div {
  5584. border-width:0px;
  5585. position:absolute;
  5586. left:0px;
  5587. top:0px;
  5588. width:353px;
  5589. height:160px;
  5590. background:inherit;
  5591. background-color:rgba(255, 255, 255, 0);
  5592. border:none;
  5593. border-top:0px;
  5594. border-right:0px;
  5595. border-bottom:0px;
  5596. border-radius:0px;
  5597. border-top-left-radius:0px;
  5598. border-bottom-left-radius:0px;
  5599. -moz-box-shadow:none;
  5600. -webkit-box-shadow:none;
  5601. box-shadow:none;
  5602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5603. font-weight:400;
  5604. font-style:normal;
  5605. line-height:30px;
  5606. }
  5607. #u199512 {
  5608. border-width:0px;
  5609. position:absolute;
  5610. left:974px;
  5611. top:117px;
  5612. width:353px;
  5613. height:160px;
  5614. display:flex;
  5615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5616. font-weight:400;
  5617. font-style:normal;
  5618. line-height:30px;
  5619. }
  5620. #u199512 .text {
  5621. position:absolute;
  5622. align-self:flex-start;
  5623. padding:5px 10px 5px 0px;
  5624. box-sizing:border-box;
  5625. width:100%;
  5626. }
  5627. #u199512_text {
  5628. border-width:0px;
  5629. word-wrap:break-word;
  5630. text-transform:none;
  5631. }
  5632. #u199513_div {
  5633. border-width:0px;
  5634. position:absolute;
  5635. left:0px;
  5636. top:0px;
  5637. width:353px;
  5638. height:190px;
  5639. background:inherit;
  5640. background-color:rgba(255, 255, 255, 0);
  5641. border:none;
  5642. border-top:0px;
  5643. border-right:0px;
  5644. border-bottom:0px;
  5645. border-radius:0px;
  5646. border-top-left-radius:0px;
  5647. border-bottom-left-radius:0px;
  5648. -moz-box-shadow:none;
  5649. -webkit-box-shadow:none;
  5650. box-shadow:none;
  5651. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5652. font-weight:400;
  5653. font-style:normal;
  5654. font-size:12px;
  5655. line-height:30px;
  5656. }
  5657. #u199513 {
  5658. border-width:0px;
  5659. position:absolute;
  5660. left:974px;
  5661. top:292px;
  5662. width:353px;
  5663. height:190px;
  5664. display:flex;
  5665. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5666. font-weight:400;
  5667. font-style:normal;
  5668. font-size:12px;
  5669. line-height:30px;
  5670. }
  5671. #u199513 .text {
  5672. position:absolute;
  5673. align-self:flex-start;
  5674. padding:5px 10px 5px 0px;
  5675. box-sizing:border-box;
  5676. width:100%;
  5677. }
  5678. #u199513_text {
  5679. border-width:0px;
  5680. word-wrap:break-word;
  5681. text-transform:none;
  5682. }
  5683. #u199514_img {
  5684. border-width:0px;
  5685. position:absolute;
  5686. left:0px;
  5687. top:0px;
  5688. width:350px;
  5689. height:2px;
  5690. }
  5691. #u199514 {
  5692. border-width:0px;
  5693. position:absolute;
  5694. left:974px;
  5695. top:283px;
  5696. width:349px;
  5697. height:1px;
  5698. display:flex;
  5699. }
  5700. #u199514 .text {
  5701. position:absolute;
  5702. align-self:center;
  5703. padding:2px 2px 2px 2px;
  5704. box-sizing:border-box;
  5705. width:100%;
  5706. }
  5707. #u199514_text {
  5708. border-width:0px;
  5709. word-wrap:break-word;
  5710. text-transform:none;
  5711. visibility:hidden;
  5712. }
  5713. #u199515_div {
  5714. border-width:0px;
  5715. position:absolute;
  5716. left:0px;
  5717. top:0px;
  5718. width:10px;
  5719. height:10px;
  5720. background:inherit;
  5721. background-color:rgba(255, 255, 255, 0);
  5722. box-sizing:border-box;
  5723. border-width:2px;
  5724. border-style:solid;
  5725. border-color:rgba(51, 51, 51, 1);
  5726. border-right:0px;
  5727. border-bottom:0px;
  5728. border-radius:0px;
  5729. border-top-right-radius:0px;
  5730. border-bottom-left-radius:0px;
  5731. -moz-box-shadow:none;
  5732. -webkit-box-shadow:none;
  5733. box-shadow:none;
  5734. }
  5735. #u199515 {
  5736. border-width:0px;
  5737. position:absolute;
  5738. left:1310px;
  5739. top:129px;
  5740. width:10px;
  5741. height:10px;
  5742. display:flex;
  5743. -webkit-transform:rotate(45deg);
  5744. -moz-transform:rotate(45deg);
  5745. -ms-transform:rotate(45deg);
  5746. transform:rotate(45deg);
  5747. }
  5748. #u199515 .text {
  5749. position:absolute;
  5750. align-self:center;
  5751. padding:2px 2px 2px 2px;
  5752. box-sizing:border-box;
  5753. width:100%;
  5754. }
  5755. #u199515_text {
  5756. border-width:0px;
  5757. word-wrap:break-word;
  5758. text-transform:none;
  5759. visibility:hidden;
  5760. }
  5761. #u199516 {
  5762. border-width:0px;
  5763. position:absolute;
  5764. left:0px;
  5765. top:0px;
  5766. width:0px;
  5767. height:0px;
  5768. }
  5769. #u199517_div {
  5770. border-width:0px;
  5771. position:absolute;
  5772. left:0px;
  5773. top:0px;
  5774. width:375px;
  5775. height:540px;
  5776. background:inherit;
  5777. background-color:rgba(255, 255, 255, 1);
  5778. border:none;
  5779. border-radius:0px;
  5780. -moz-box-shadow:none;
  5781. -webkit-box-shadow:none;
  5782. box-shadow:none;
  5783. }
  5784. #u199517 {
  5785. border-width:0px;
  5786. position:absolute;
  5787. left:961px;
  5788. top:743px;
  5789. width:375px;
  5790. height:540px;
  5791. display:flex;
  5792. }
  5793. #u199517 .text {
  5794. position:absolute;
  5795. align-self:center;
  5796. padding:2px 2px 2px 2px;
  5797. box-sizing:border-box;
  5798. width:100%;
  5799. }
  5800. #u199517_text {
  5801. border-width:0px;
  5802. word-wrap:break-word;
  5803. text-transform:none;
  5804. visibility:hidden;
  5805. }
  5806. #u199518_div {
  5807. border-width:0px;
  5808. position:absolute;
  5809. left:0px;
  5810. top:0px;
  5811. width:95px;
  5812. height:35px;
  5813. background:inherit;
  5814. background-color:rgba(255, 255, 255, 0);
  5815. border:none;
  5816. border-top:0px;
  5817. border-right:0px;
  5818. border-bottom:0px;
  5819. border-radius:0px;
  5820. border-top-left-radius:0px;
  5821. border-bottom-left-radius:0px;
  5822. -moz-box-shadow:none;
  5823. -webkit-box-shadow:none;
  5824. box-shadow:none;
  5825. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5826. font-weight:400;
  5827. font-style:normal;
  5828. font-size:14px;
  5829. line-height:25px;
  5830. }
  5831. #u199518 {
  5832. border-width:0px;
  5833. position:absolute;
  5834. left:976px;
  5835. top:753px;
  5836. width:95px;
  5837. height:35px;
  5838. display:flex;
  5839. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5840. font-weight:400;
  5841. font-style:normal;
  5842. font-size:14px;
  5843. line-height:25px;
  5844. }
  5845. #u199518 .text {
  5846. position:absolute;
  5847. align-self:center;
  5848. padding:5px 10px 5px 0px;
  5849. box-sizing:border-box;
  5850. width:100%;
  5851. }
  5852. #u199518_text {
  5853. border-width:0px;
  5854. white-space:nowrap;
  5855. text-transform:none;
  5856. }
  5857. #u199519_div {
  5858. border-width:0px;
  5859. position:absolute;
  5860. left:0px;
  5861. top:0px;
  5862. width:358px;
  5863. height:310px;
  5864. background:inherit;
  5865. background-color:rgba(255, 255, 255, 0);
  5866. border:none;
  5867. border-top:0px;
  5868. border-right:0px;
  5869. border-bottom:0px;
  5870. border-radius:0px;
  5871. border-top-left-radius:0px;
  5872. border-bottom-left-radius:0px;
  5873. -moz-box-shadow:none;
  5874. -webkit-box-shadow:none;
  5875. box-shadow:none;
  5876. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5877. font-weight:400;
  5878. font-style:normal;
  5879. font-size:12px;
  5880. line-height:30px;
  5881. }
  5882. #u199519 {
  5883. border-width:0px;
  5884. position:absolute;
  5885. left:976px;
  5886. top:792px;
  5887. width:358px;
  5888. height:310px;
  5889. display:flex;
  5890. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5891. font-weight:400;
  5892. font-style:normal;
  5893. font-size:12px;
  5894. line-height:30px;
  5895. }
  5896. #u199519 .text {
  5897. position:absolute;
  5898. align-self:flex-start;
  5899. padding:5px 10px 5px 0px;
  5900. box-sizing:border-box;
  5901. width:100%;
  5902. }
  5903. #u199519_text {
  5904. border-width:0px;
  5905. word-wrap:break-word;
  5906. text-transform:none;
  5907. }
  5908. #u199520_div {
  5909. border-width:0px;
  5910. position:absolute;
  5911. left:0px;
  5912. top:0px;
  5913. width:10px;
  5914. height:10px;
  5915. background:inherit;
  5916. background-color:rgba(255, 255, 255, 0);
  5917. box-sizing:border-box;
  5918. border-width:2px;
  5919. border-style:solid;
  5920. border-color:rgba(51, 51, 51, 1);
  5921. border-right:0px;
  5922. border-bottom:0px;
  5923. border-radius:0px;
  5924. border-top-right-radius:0px;
  5925. border-bottom-left-radius:0px;
  5926. -moz-box-shadow:none;
  5927. -webkit-box-shadow:none;
  5928. box-shadow:none;
  5929. }
  5930. #u199520 {
  5931. border-width:0px;
  5932. position:absolute;
  5933. left:1310px;
  5934. top:763px;
  5935. width:10px;
  5936. height:10px;
  5937. display:flex;
  5938. -webkit-transform:rotate(45deg);
  5939. -moz-transform:rotate(45deg);
  5940. -ms-transform:rotate(45deg);
  5941. transform:rotate(45deg);
  5942. }
  5943. #u199520 .text {
  5944. position:absolute;
  5945. align-self:center;
  5946. padding:2px 2px 2px 2px;
  5947. box-sizing:border-box;
  5948. width:100%;
  5949. }
  5950. #u199520_text {
  5951. border-width:0px;
  5952. word-wrap:break-word;
  5953. text-transform:none;
  5954. visibility:hidden;
  5955. }
  5956. #u199521_img {
  5957. border-width:0px;
  5958. position:absolute;
  5959. left:0px;
  5960. top:0px;
  5961. width:348px;
  5962. height:2px;
  5963. }
  5964. #u199521 {
  5965. border-width:0px;
  5966. position:absolute;
  5967. left:976px;
  5968. top:1101px;
  5969. width:347px;
  5970. height:1px;
  5971. display:flex;
  5972. }
  5973. #u199521 .text {
  5974. position:absolute;
  5975. align-self:center;
  5976. padding:2px 2px 2px 2px;
  5977. box-sizing:border-box;
  5978. width:100%;
  5979. }
  5980. #u199521_text {
  5981. border-width:0px;
  5982. word-wrap:break-word;
  5983. text-transform:none;
  5984. visibility:hidden;
  5985. }
  5986. #u199522_div {
  5987. border-width:0px;
  5988. position:absolute;
  5989. left:0px;
  5990. top:0px;
  5991. width:358px;
  5992. height:160px;
  5993. background:inherit;
  5994. background-color:rgba(255, 255, 255, 0);
  5995. border:none;
  5996. border-top:0px;
  5997. border-right:0px;
  5998. border-bottom:0px;
  5999. border-radius:0px;
  6000. border-top-left-radius:0px;
  6001. border-bottom-left-radius:0px;
  6002. -moz-box-shadow:none;
  6003. -webkit-box-shadow:none;
  6004. box-shadow:none;
  6005. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6006. font-weight:400;
  6007. font-style:normal;
  6008. font-size:12px;
  6009. line-height:30px;
  6010. }
  6011. #u199522 {
  6012. border-width:0px;
  6013. position:absolute;
  6014. left:976px;
  6015. top:1112px;
  6016. width:358px;
  6017. height:160px;
  6018. display:flex;
  6019. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6020. font-weight:400;
  6021. font-style:normal;
  6022. font-size:12px;
  6023. line-height:30px;
  6024. }
  6025. #u199522 .text {
  6026. position:absolute;
  6027. align-self:flex-start;
  6028. padding:5px 10px 5px 0px;
  6029. box-sizing:border-box;
  6030. width:100%;
  6031. }
  6032. #u199522_text {
  6033. border-width:0px;
  6034. word-wrap:break-word;
  6035. text-transform:none;
  6036. }
  6037. #u199524_img {
  6038. border-width:0px;
  6039. position:absolute;
  6040. left:0px;
  6041. top:0px;
  6042. width:433px;
  6043. height:865px;
  6044. }
  6045. #u199524 {
  6046. border-width:0px;
  6047. position:absolute;
  6048. left:1398px;
  6049. top:0px;
  6050. width:433px;
  6051. height:865px;
  6052. display:flex;
  6053. }
  6054. #u199524 .text {
  6055. position:absolute;
  6056. align-self:center;
  6057. padding:2px 2px 2px 2px;
  6058. box-sizing:border-box;
  6059. width:100%;
  6060. }
  6061. #u199524_text {
  6062. border-width:0px;
  6063. word-wrap:break-word;
  6064. text-transform:none;
  6065. visibility:hidden;
  6066. }
  6067. #u199525_div {
  6068. border-width:0px;
  6069. position:absolute;
  6070. left:0px;
  6071. top:0px;
  6072. width:375px;
  6073. height:40px;
  6074. background:inherit;
  6075. background-color:rgba(255, 255, 255, 1);
  6076. box-sizing:border-box;
  6077. border-width:1px;
  6078. border-style:solid;
  6079. border-color:rgba(215, 215, 215, 1);
  6080. border-left:0px;
  6081. border-top:0px;
  6082. border-right:0px;
  6083. border-radius:0px;
  6084. border-bottom-right-radius:0px;
  6085. border-bottom-left-radius:0px;
  6086. -moz-box-shadow:none;
  6087. -webkit-box-shadow:none;
  6088. box-shadow:none;
  6089. }
  6090. #u199525 {
  6091. border-width:0px;
  6092. position:absolute;
  6093. left:1427px;
  6094. top:67px;
  6095. width:375px;
  6096. height:40px;
  6097. display:flex;
  6098. }
  6099. #u199525 .text {
  6100. position:absolute;
  6101. align-self:center;
  6102. padding:2px 2px 2px 2px;
  6103. box-sizing:border-box;
  6104. width:100%;
  6105. }
  6106. #u199525_text {
  6107. border-width:0px;
  6108. word-wrap:break-word;
  6109. text-transform:none;
  6110. visibility:hidden;
  6111. }
  6112. #u199526 {
  6113. border-width:0px;
  6114. position:absolute;
  6115. left:0px;
  6116. top:0px;
  6117. width:0px;
  6118. height:0px;
  6119. }
  6120. #u199527_div {
  6121. border-width:0px;
  6122. position:absolute;
  6123. left:0px;
  6124. top:0px;
  6125. width:88px;
  6126. height:32px;
  6127. background:inherit;
  6128. background-color:rgba(255, 255, 255, 1);
  6129. box-sizing:border-box;
  6130. border-width:1px;
  6131. border-style:solid;
  6132. border-color:rgba(242, 242, 242, 1);
  6133. border-radius:33px;
  6134. -moz-box-shadow:none;
  6135. -webkit-box-shadow:none;
  6136. box-shadow:none;
  6137. }
  6138. #u199527 {
  6139. border-width:0px;
  6140. position:absolute;
  6141. left:1707px;
  6142. top:71px;
  6143. width:88px;
  6144. height:32px;
  6145. display:flex;
  6146. }
  6147. #u199527 .text {
  6148. position:absolute;
  6149. align-self:center;
  6150. padding:2px 2px 2px 2px;
  6151. box-sizing:border-box;
  6152. width:100%;
  6153. }
  6154. #u199527_text {
  6155. border-width:0px;
  6156. word-wrap:break-word;
  6157. text-transform:none;
  6158. visibility:hidden;
  6159. }
  6160. #u199528 {
  6161. border-width:0px;
  6162. position:absolute;
  6163. left:0px;
  6164. top:0px;
  6165. width:0px;
  6166. height:0px;
  6167. }
  6168. #u199529_img {
  6169. border-width:0px;
  6170. position:absolute;
  6171. left:0px;
  6172. top:0px;
  6173. width:18px;
  6174. height:18px;
  6175. }
  6176. #u199529 {
  6177. border-width:0px;
  6178. position:absolute;
  6179. left:1770px;
  6180. top:78px;
  6181. width:18px;
  6182. height:18px;
  6183. display:flex;
  6184. }
  6185. #u199529 .text {
  6186. position:absolute;
  6187. align-self:center;
  6188. padding:2px 2px 2px 2px;
  6189. box-sizing:border-box;
  6190. width:100%;
  6191. }
  6192. #u199529_text {
  6193. border-width:0px;
  6194. word-wrap:break-word;
  6195. text-transform:none;
  6196. visibility:hidden;
  6197. }
  6198. #u199530_img {
  6199. border-width:0px;
  6200. position:absolute;
  6201. left:0px;
  6202. top:0px;
  6203. width:6px;
  6204. height:6px;
  6205. }
  6206. #u199530 {
  6207. border-width:0px;
  6208. position:absolute;
  6209. left:1776px;
  6210. top:84px;
  6211. width:6px;
  6212. height:6px;
  6213. display:flex;
  6214. }
  6215. #u199530 .text {
  6216. position:absolute;
  6217. align-self:center;
  6218. padding:2px 2px 2px 2px;
  6219. box-sizing:border-box;
  6220. width:100%;
  6221. }
  6222. #u199530_text {
  6223. border-width:0px;
  6224. word-wrap:break-word;
  6225. text-transform:none;
  6226. visibility:hidden;
  6227. }
  6228. #u199531 {
  6229. border-width:0px;
  6230. position:absolute;
  6231. left:0px;
  6232. top:0px;
  6233. width:0px;
  6234. height:0px;
  6235. }
  6236. #u199532_img {
  6237. border-width:0px;
  6238. position:absolute;
  6239. left:0px;
  6240. top:0px;
  6241. width:5px;
  6242. height:5px;
  6243. }
  6244. #u199532 {
  6245. border-width:0px;
  6246. position:absolute;
  6247. left:1721px;
  6248. top:85px;
  6249. width:5px;
  6250. height:5px;
  6251. display:flex;
  6252. }
  6253. #u199532 .text {
  6254. position:absolute;
  6255. align-self:center;
  6256. padding:2px 2px 2px 2px;
  6257. box-sizing:border-box;
  6258. width:100%;
  6259. }
  6260. #u199532_text {
  6261. border-width:0px;
  6262. word-wrap:break-word;
  6263. text-transform:none;
  6264. visibility:hidden;
  6265. }
  6266. #u199533_img {
  6267. border-width:0px;
  6268. position:absolute;
  6269. left:0px;
  6270. top:0px;
  6271. width:5px;
  6272. height:5px;
  6273. }
  6274. #u199533 {
  6275. border-width:0px;
  6276. position:absolute;
  6277. left:1737px;
  6278. top:85px;
  6279. width:5px;
  6280. height:5px;
  6281. display:flex;
  6282. }
  6283. #u199533 .text {
  6284. position:absolute;
  6285. align-self:center;
  6286. padding:2px 2px 2px 2px;
  6287. box-sizing:border-box;
  6288. width:100%;
  6289. }
  6290. #u199533_text {
  6291. border-width:0px;
  6292. word-wrap:break-word;
  6293. text-transform:none;
  6294. visibility:hidden;
  6295. }
  6296. #u199534_img {
  6297. border-width:0px;
  6298. position:absolute;
  6299. left:0px;
  6300. top:0px;
  6301. width:7px;
  6302. height:7px;
  6303. }
  6304. #u199534 {
  6305. border-width:0px;
  6306. position:absolute;
  6307. left:1728px;
  6308. top:84px;
  6309. width:7px;
  6310. height:7px;
  6311. display:flex;
  6312. }
  6313. #u199534 .text {
  6314. position:absolute;
  6315. align-self:center;
  6316. padding:2px 2px 2px 2px;
  6317. box-sizing:border-box;
  6318. width:100%;
  6319. }
  6320. #u199534_text {
  6321. border-width:0px;
  6322. word-wrap:break-word;
  6323. text-transform:none;
  6324. visibility:hidden;
  6325. }
  6326. #u199535_img {
  6327. border-width:0px;
  6328. position:absolute;
  6329. left:0px;
  6330. top:0px;
  6331. width:19px;
  6332. height:2px;
  6333. }
  6334. #u199535 {
  6335. border-width:0px;
  6336. position:absolute;
  6337. left:1745px;
  6338. top:87px;
  6339. width:18px;
  6340. height:1px;
  6341. display:flex;
  6342. -webkit-transform:rotate(90deg);
  6343. -moz-transform:rotate(90deg);
  6344. -ms-transform:rotate(90deg);
  6345. transform:rotate(90deg);
  6346. }
  6347. #u199535 .text {
  6348. position:absolute;
  6349. align-self:center;
  6350. padding:2px 2px 2px 2px;
  6351. box-sizing:border-box;
  6352. width:100%;
  6353. }
  6354. #u199535_text {
  6355. border-width:0px;
  6356. word-wrap:break-word;
  6357. text-transform:none;
  6358. visibility:hidden;
  6359. }
  6360. #u199536_img {
  6361. border-width:0px;
  6362. position:absolute;
  6363. left:0px;
  6364. top:0px;
  6365. width:375px;
  6366. height:44px;
  6367. }
  6368. #u199536 {
  6369. border-width:0px;
  6370. position:absolute;
  6371. left:1427px;
  6372. top:24px;
  6373. width:375px;
  6374. height:44px;
  6375. display:flex;
  6376. }
  6377. #u199536 .text {
  6378. position:absolute;
  6379. align-self:center;
  6380. padding:2px 2px 2px 2px;
  6381. box-sizing:border-box;
  6382. width:100%;
  6383. }
  6384. #u199536_text {
  6385. border-width:0px;
  6386. word-wrap:break-word;
  6387. text-transform:none;
  6388. visibility:hidden;
  6389. }
  6390. #u199537_div {
  6391. border-width:0px;
  6392. position:absolute;
  6393. left:0px;
  6394. top:0px;
  6395. width:375px;
  6396. height:50px;
  6397. background:inherit;
  6398. background-color:rgba(255, 255, 255, 1);
  6399. box-sizing:border-box;
  6400. border-width:1px;
  6401. border-style:solid;
  6402. border-color:rgba(242, 242, 242, 1);
  6403. border-radius:26px;
  6404. border-top-left-radius:0px;
  6405. border-top-right-radius:0px;
  6406. -moz-box-shadow:none;
  6407. -webkit-box-shadow:none;
  6408. box-shadow:none;
  6409. }
  6410. #u199537 {
  6411. border-width:0px;
  6412. position:absolute;
  6413. left:1427px;
  6414. top:788px;
  6415. width:375px;
  6416. height:50px;
  6417. display:flex;
  6418. }
  6419. #u199537 .text {
  6420. position:absolute;
  6421. align-self:center;
  6422. padding:2px 2px 2px 2px;
  6423. box-sizing:border-box;
  6424. width:100%;
  6425. }
  6426. #u199537_text {
  6427. border-width:0px;
  6428. word-wrap:break-word;
  6429. text-transform:none;
  6430. visibility:hidden;
  6431. }
  6432. #u199538 {
  6433. border-width:0px;
  6434. position:absolute;
  6435. left:0px;
  6436. top:0px;
  6437. width:0px;
  6438. height:0px;
  6439. }
  6440. #u199539_img {
  6441. border-width:0px;
  6442. position:absolute;
  6443. left:0px;
  6444. top:0px;
  6445. width:24px;
  6446. height:24px;
  6447. }
  6448. #u199539 {
  6449. border-width:0px;
  6450. position:absolute;
  6451. left:1467px;
  6452. top:792px;
  6453. width:24px;
  6454. height:24px;
  6455. display:flex;
  6456. font-size:8px;
  6457. }
  6458. #u199539 .text {
  6459. position:absolute;
  6460. align-self:center;
  6461. padding:2px 2px 2px 2px;
  6462. box-sizing:border-box;
  6463. width:100%;
  6464. }
  6465. #u199539_text {
  6466. border-width:0px;
  6467. word-wrap:break-word;
  6468. text-transform:none;
  6469. }
  6470. #u199540_div {
  6471. border-width:0px;
  6472. position:absolute;
  6473. left:0px;
  6474. top:0px;
  6475. width:25px;
  6476. height:17px;
  6477. background:inherit;
  6478. background-color:rgba(255, 255, 255, 0);
  6479. border:none;
  6480. border-radius:0px;
  6481. -moz-box-shadow:none;
  6482. -webkit-box-shadow:none;
  6483. box-shadow:none;
  6484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6485. font-weight:400;
  6486. font-style:normal;
  6487. font-size:12px;
  6488. }
  6489. #u199540 {
  6490. border-width:0px;
  6491. position:absolute;
  6492. left:1467px;
  6493. top:817px;
  6494. width:25px;
  6495. height:17px;
  6496. display:flex;
  6497. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6498. font-weight:400;
  6499. font-style:normal;
  6500. font-size:12px;
  6501. }
  6502. #u199540 .text {
  6503. position:absolute;
  6504. align-self:flex-start;
  6505. padding:0px 0px 0px 0px;
  6506. box-sizing:border-box;
  6507. width:100%;
  6508. }
  6509. #u199540_text {
  6510. border-width:0px;
  6511. white-space:nowrap;
  6512. text-transform:none;
  6513. }
  6514. #u199541 {
  6515. border-width:0px;
  6516. position:absolute;
  6517. left:0px;
  6518. top:0px;
  6519. width:0px;
  6520. height:0px;
  6521. }
  6522. #u199542_img {
  6523. border-width:0px;
  6524. position:absolute;
  6525. left:0px;
  6526. top:0px;
  6527. width:24px;
  6528. height:24px;
  6529. }
  6530. #u199542 {
  6531. border-width:0px;
  6532. position:absolute;
  6533. left:1737px;
  6534. top:794px;
  6535. width:24px;
  6536. height:24px;
  6537. display:flex;
  6538. font-size:8px;
  6539. }
  6540. #u199542 .text {
  6541. position:absolute;
  6542. align-self:center;
  6543. padding:2px 2px 2px 2px;
  6544. box-sizing:border-box;
  6545. width:100%;
  6546. }
  6547. #u199542_text {
  6548. border-width:0px;
  6549. word-wrap:break-word;
  6550. text-transform:none;
  6551. }
  6552. #u199543_div {
  6553. border-width:0px;
  6554. position:absolute;
  6555. left:0px;
  6556. top:0px;
  6557. width:25px;
  6558. height:17px;
  6559. background:inherit;
  6560. background-color:rgba(255, 255, 255, 0);
  6561. border:none;
  6562. border-radius:0px;
  6563. -moz-box-shadow:none;
  6564. -webkit-box-shadow:none;
  6565. box-shadow:none;
  6566. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6567. font-weight:400;
  6568. font-style:normal;
  6569. font-size:12px;
  6570. }
  6571. #u199543 {
  6572. border-width:0px;
  6573. position:absolute;
  6574. left:1737px;
  6575. top:819px;
  6576. width:25px;
  6577. height:17px;
  6578. display:flex;
  6579. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6580. font-weight:400;
  6581. font-style:normal;
  6582. font-size:12px;
  6583. }
  6584. #u199543 .text {
  6585. position:absolute;
  6586. align-self:flex-start;
  6587. padding:0px 0px 0px 0px;
  6588. box-sizing:border-box;
  6589. width:100%;
  6590. }
  6591. #u199543_text {
  6592. border-width:0px;
  6593. white-space:nowrap;
  6594. text-transform:none;
  6595. }
  6596. #u199544_div {
  6597. border-width:0px;
  6598. position:absolute;
  6599. left:0px;
  6600. top:0px;
  6601. width:375px;
  6602. height:681px;
  6603. background:inherit;
  6604. background-color:rgba(242, 242, 242, 0.462745098039216);
  6605. border:none;
  6606. border-radius:0px;
  6607. -moz-box-shadow:none;
  6608. -webkit-box-shadow:none;
  6609. box-shadow:none;
  6610. }
  6611. #u199544 {
  6612. border-width:0px;
  6613. position:absolute;
  6614. left:1427px;
  6615. top:107px;
  6616. width:375px;
  6617. height:681px;
  6618. display:flex;
  6619. }
  6620. #u199544 .text {
  6621. position:absolute;
  6622. align-self:center;
  6623. padding:2px 2px 2px 2px;
  6624. box-sizing:border-box;
  6625. width:100%;
  6626. }
  6627. #u199544_text {
  6628. border-width:0px;
  6629. word-wrap:break-word;
  6630. text-transform:none;
  6631. visibility:hidden;
  6632. }
  6633. #u199545 {
  6634. border-width:0px;
  6635. position:absolute;
  6636. left:0px;
  6637. top:0px;
  6638. width:0px;
  6639. height:0px;
  6640. }
  6641. #u199546_img {
  6642. border-width:0px;
  6643. position:absolute;
  6644. left:0px;
  6645. top:0px;
  6646. width:24px;
  6647. height:24px;
  6648. }
  6649. #u199546 {
  6650. border-width:0px;
  6651. position:absolute;
  6652. left:1649px;
  6653. top:792px;
  6654. width:24px;
  6655. height:24px;
  6656. display:flex;
  6657. font-size:8px;
  6658. }
  6659. #u199546 .text {
  6660. position:absolute;
  6661. align-self:center;
  6662. padding:2px 2px 2px 2px;
  6663. box-sizing:border-box;
  6664. width:100%;
  6665. }
  6666. #u199546_text {
  6667. border-width:0px;
  6668. word-wrap:break-word;
  6669. text-transform:none;
  6670. }
  6671. #u199547_div {
  6672. border-width:0px;
  6673. position:absolute;
  6674. left:0px;
  6675. top:0px;
  6676. width:37px;
  6677. height:17px;
  6678. background:inherit;
  6679. background-color:rgba(255, 255, 255, 0);
  6680. border:none;
  6681. border-radius:0px;
  6682. -moz-box-shadow:none;
  6683. -webkit-box-shadow:none;
  6684. box-shadow:none;
  6685. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6686. font-weight:400;
  6687. font-style:normal;
  6688. font-size:12px;
  6689. }
  6690. #u199547 {
  6691. border-width:0px;
  6692. position:absolute;
  6693. left:1643px;
  6694. top:817px;
  6695. width:37px;
  6696. height:17px;
  6697. display:flex;
  6698. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6699. font-weight:400;
  6700. font-style:normal;
  6701. font-size:12px;
  6702. }
  6703. #u199547 .text {
  6704. position:absolute;
  6705. align-self:flex-start;
  6706. padding:0px 0px 0px 0px;
  6707. box-sizing:border-box;
  6708. width:100%;
  6709. }
  6710. #u199547_text {
  6711. border-width:0px;
  6712. white-space:nowrap;
  6713. text-transform:none;
  6714. }
  6715. #u199548 {
  6716. border-width:0px;
  6717. position:absolute;
  6718. left:0px;
  6719. top:0px;
  6720. width:0px;
  6721. height:0px;
  6722. }
  6723. #u199549_img {
  6724. border-width:0px;
  6725. position:absolute;
  6726. left:0px;
  6727. top:0px;
  6728. width:24px;
  6729. height:24px;
  6730. }
  6731. #u199549 {
  6732. border-width:0px;
  6733. position:absolute;
  6734. left:1555px;
  6735. top:792px;
  6736. width:24px;
  6737. height:24px;
  6738. display:flex;
  6739. font-size:8px;
  6740. }
  6741. #u199549 .text {
  6742. position:absolute;
  6743. align-self:center;
  6744. padding:2px 2px 2px 2px;
  6745. box-sizing:border-box;
  6746. width:100%;
  6747. }
  6748. #u199549_text {
  6749. border-width:0px;
  6750. word-wrap:break-word;
  6751. text-transform:none;
  6752. }
  6753. #u199550_div {
  6754. border-width:0px;
  6755. position:absolute;
  6756. left:0px;
  6757. top:0px;
  6758. width:37px;
  6759. height:17px;
  6760. background:inherit;
  6761. background-color:rgba(255, 255, 255, 0);
  6762. border:none;
  6763. border-radius:0px;
  6764. -moz-box-shadow:none;
  6765. -webkit-box-shadow:none;
  6766. box-shadow:none;
  6767. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6768. font-weight:400;
  6769. font-style:normal;
  6770. font-size:12px;
  6771. }
  6772. #u199550 {
  6773. border-width:0px;
  6774. position:absolute;
  6775. left:1549px;
  6776. top:817px;
  6777. width:37px;
  6778. height:17px;
  6779. display:flex;
  6780. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6781. font-weight:400;
  6782. font-style:normal;
  6783. font-size:12px;
  6784. }
  6785. #u199550 .text {
  6786. position:absolute;
  6787. align-self:flex-start;
  6788. padding:0px 0px 0px 0px;
  6789. box-sizing:border-box;
  6790. width:100%;
  6791. }
  6792. #u199550_text {
  6793. border-width:0px;
  6794. white-space:nowrap;
  6795. text-transform:none;
  6796. }
  6797. #u199551_div {
  6798. border-width:0px;
  6799. position:absolute;
  6800. left:0px;
  6801. top:0px;
  6802. width:375px;
  6803. height:40px;
  6804. background:inherit;
  6805. background-color:rgba(255, 255, 255, 1);
  6806. box-sizing:border-box;
  6807. border-width:1px;
  6808. border-style:solid;
  6809. border-color:rgba(215, 215, 215, 1);
  6810. border-left:0px;
  6811. border-top:0px;
  6812. border-right:0px;
  6813. border-radius:0px;
  6814. border-bottom-right-radius:0px;
  6815. border-bottom-left-radius:0px;
  6816. -moz-box-shadow:none;
  6817. -webkit-box-shadow:none;
  6818. box-shadow:none;
  6819. }
  6820. #u199551 {
  6821. border-width:0px;
  6822. position:absolute;
  6823. left:1427px;
  6824. top:67px;
  6825. width:375px;
  6826. height:40px;
  6827. display:flex;
  6828. }
  6829. #u199551 .text {
  6830. position:absolute;
  6831. align-self:center;
  6832. padding:2px 2px 2px 2px;
  6833. box-sizing:border-box;
  6834. width:100%;
  6835. }
  6836. #u199551_text {
  6837. border-width:0px;
  6838. word-wrap:break-word;
  6839. text-transform:none;
  6840. visibility:hidden;
  6841. }
  6842. #u199552_img {
  6843. border-width:0px;
  6844. position:absolute;
  6845. left:0px;
  6846. top:0px;
  6847. width:375px;
  6848. height:44px;
  6849. }
  6850. #u199552 {
  6851. border-width:0px;
  6852. position:absolute;
  6853. left:1427px;
  6854. top:24px;
  6855. width:375px;
  6856. height:44px;
  6857. display:flex;
  6858. }
  6859. #u199552 .text {
  6860. position:absolute;
  6861. align-self:center;
  6862. padding:2px 2px 2px 2px;
  6863. box-sizing:border-box;
  6864. width:100%;
  6865. }
  6866. #u199552_text {
  6867. border-width:0px;
  6868. word-wrap:break-word;
  6869. text-transform:none;
  6870. visibility:hidden;
  6871. }
  6872. #u199553 {
  6873. border-width:0px;
  6874. position:absolute;
  6875. left:0px;
  6876. top:0px;
  6877. width:0px;
  6878. height:0px;
  6879. }
  6880. #u199554_div {
  6881. border-width:0px;
  6882. position:absolute;
  6883. left:0px;
  6884. top:0px;
  6885. width:88px;
  6886. height:32px;
  6887. background:inherit;
  6888. background-color:rgba(255, 255, 255, 1);
  6889. box-sizing:border-box;
  6890. border-width:1px;
  6891. border-style:solid;
  6892. border-color:rgba(242, 242, 242, 1);
  6893. border-radius:33px;
  6894. -moz-box-shadow:none;
  6895. -webkit-box-shadow:none;
  6896. box-shadow:none;
  6897. }
  6898. #u199554 {
  6899. border-width:0px;
  6900. position:absolute;
  6901. left:1707px;
  6902. top:71px;
  6903. width:88px;
  6904. height:32px;
  6905. display:flex;
  6906. }
  6907. #u199554 .text {
  6908. position:absolute;
  6909. align-self:center;
  6910. padding:2px 2px 2px 2px;
  6911. box-sizing:border-box;
  6912. width:100%;
  6913. }
  6914. #u199554_text {
  6915. border-width:0px;
  6916. word-wrap:break-word;
  6917. text-transform:none;
  6918. visibility:hidden;
  6919. }
  6920. #u199555 {
  6921. border-width:0px;
  6922. position:absolute;
  6923. left:0px;
  6924. top:0px;
  6925. width:0px;
  6926. height:0px;
  6927. }
  6928. #u199556_img {
  6929. border-width:0px;
  6930. position:absolute;
  6931. left:0px;
  6932. top:0px;
  6933. width:18px;
  6934. height:18px;
  6935. }
  6936. #u199556 {
  6937. border-width:0px;
  6938. position:absolute;
  6939. left:1770px;
  6940. top:78px;
  6941. width:18px;
  6942. height:18px;
  6943. display:flex;
  6944. }
  6945. #u199556 .text {
  6946. position:absolute;
  6947. align-self:center;
  6948. padding:2px 2px 2px 2px;
  6949. box-sizing:border-box;
  6950. width:100%;
  6951. }
  6952. #u199556_text {
  6953. border-width:0px;
  6954. word-wrap:break-word;
  6955. text-transform:none;
  6956. visibility:hidden;
  6957. }
  6958. #u199557_img {
  6959. border-width:0px;
  6960. position:absolute;
  6961. left:0px;
  6962. top:0px;
  6963. width:6px;
  6964. height:6px;
  6965. }
  6966. #u199557 {
  6967. border-width:0px;
  6968. position:absolute;
  6969. left:1776px;
  6970. top:84px;
  6971. width:6px;
  6972. height:6px;
  6973. display:flex;
  6974. }
  6975. #u199557 .text {
  6976. position:absolute;
  6977. align-self:center;
  6978. padding:2px 2px 2px 2px;
  6979. box-sizing:border-box;
  6980. width:100%;
  6981. }
  6982. #u199557_text {
  6983. border-width:0px;
  6984. word-wrap:break-word;
  6985. text-transform:none;
  6986. visibility:hidden;
  6987. }
  6988. #u199558 {
  6989. border-width:0px;
  6990. position:absolute;
  6991. left:0px;
  6992. top:0px;
  6993. width:0px;
  6994. height:0px;
  6995. }
  6996. #u199559_img {
  6997. border-width:0px;
  6998. position:absolute;
  6999. left:0px;
  7000. top:0px;
  7001. width:5px;
  7002. height:5px;
  7003. }
  7004. #u199559 {
  7005. border-width:0px;
  7006. position:absolute;
  7007. left:1721px;
  7008. top:85px;
  7009. width:5px;
  7010. height:5px;
  7011. display:flex;
  7012. }
  7013. #u199559 .text {
  7014. position:absolute;
  7015. align-self:center;
  7016. padding:2px 2px 2px 2px;
  7017. box-sizing:border-box;
  7018. width:100%;
  7019. }
  7020. #u199559_text {
  7021. border-width:0px;
  7022. word-wrap:break-word;
  7023. text-transform:none;
  7024. visibility:hidden;
  7025. }
  7026. #u199560_img {
  7027. border-width:0px;
  7028. position:absolute;
  7029. left:0px;
  7030. top:0px;
  7031. width:5px;
  7032. height:5px;
  7033. }
  7034. #u199560 {
  7035. border-width:0px;
  7036. position:absolute;
  7037. left:1737px;
  7038. top:85px;
  7039. width:5px;
  7040. height:5px;
  7041. display:flex;
  7042. }
  7043. #u199560 .text {
  7044. position:absolute;
  7045. align-self:center;
  7046. padding:2px 2px 2px 2px;
  7047. box-sizing:border-box;
  7048. width:100%;
  7049. }
  7050. #u199560_text {
  7051. border-width:0px;
  7052. word-wrap:break-word;
  7053. text-transform:none;
  7054. visibility:hidden;
  7055. }
  7056. #u199561_img {
  7057. border-width:0px;
  7058. position:absolute;
  7059. left:0px;
  7060. top:0px;
  7061. width:7px;
  7062. height:7px;
  7063. }
  7064. #u199561 {
  7065. border-width:0px;
  7066. position:absolute;
  7067. left:1728px;
  7068. top:84px;
  7069. width:7px;
  7070. height:7px;
  7071. display:flex;
  7072. }
  7073. #u199561 .text {
  7074. position:absolute;
  7075. align-self:center;
  7076. padding:2px 2px 2px 2px;
  7077. box-sizing:border-box;
  7078. width:100%;
  7079. }
  7080. #u199561_text {
  7081. border-width:0px;
  7082. word-wrap:break-word;
  7083. text-transform:none;
  7084. visibility:hidden;
  7085. }
  7086. #u199562_img {
  7087. border-width:0px;
  7088. position:absolute;
  7089. left:0px;
  7090. top:0px;
  7091. width:19px;
  7092. height:2px;
  7093. }
  7094. #u199562 {
  7095. border-width:0px;
  7096. position:absolute;
  7097. left:1745px;
  7098. top:87px;
  7099. width:18px;
  7100. height:1px;
  7101. display:flex;
  7102. -webkit-transform:rotate(90deg);
  7103. -moz-transform:rotate(90deg);
  7104. -ms-transform:rotate(90deg);
  7105. transform:rotate(90deg);
  7106. }
  7107. #u199562 .text {
  7108. position:absolute;
  7109. align-self:center;
  7110. padding:2px 2px 2px 2px;
  7111. box-sizing:border-box;
  7112. width:100%;
  7113. }
  7114. #u199562_text {
  7115. border-width:0px;
  7116. word-wrap:break-word;
  7117. text-transform:none;
  7118. visibility:hidden;
  7119. }
  7120. #u199563_div {
  7121. border-width:0px;
  7122. position:absolute;
  7123. left:0px;
  7124. top:0px;
  7125. width:65px;
  7126. height:22px;
  7127. background:inherit;
  7128. background-color:rgba(255, 255, 255, 0);
  7129. border:none;
  7130. border-radius:0px;
  7131. -moz-box-shadow:none;
  7132. -webkit-box-shadow:none;
  7133. box-shadow:none;
  7134. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7135. font-weight:400;
  7136. font-style:normal;
  7137. font-size:16px;
  7138. color:#000000;
  7139. }
  7140. #u199563 {
  7141. border-width:0px;
  7142. position:absolute;
  7143. left:1584px;
  7144. top:78px;
  7145. width:65px;
  7146. height:22px;
  7147. display:flex;
  7148. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7149. font-weight:400;
  7150. font-style:normal;
  7151. font-size:16px;
  7152. color:#000000;
  7153. }
  7154. #u199563 .text {
  7155. position:absolute;
  7156. align-self:flex-start;
  7157. padding:0px 0px 0px 0px;
  7158. box-sizing:border-box;
  7159. width:100%;
  7160. }
  7161. #u199563_text {
  7162. border-width:0px;
  7163. white-space:nowrap;
  7164. text-transform:none;
  7165. }
  7166. #u199564_div {
  7167. border-width:0px;
  7168. position:absolute;
  7169. left:0px;
  7170. top:0px;
  7171. width:12px;
  7172. height:12px;
  7173. background:inherit;
  7174. background-color:rgba(255, 255, 255, 0);
  7175. box-sizing:border-box;
  7176. border-width:2px;
  7177. border-style:solid;
  7178. border-color:rgba(51, 51, 51, 1);
  7179. border-right:0px;
  7180. border-bottom:0px;
  7181. border-radius:0px;
  7182. border-top-right-radius:0px;
  7183. border-bottom-left-radius:0px;
  7184. -moz-box-shadow:none;
  7185. -webkit-box-shadow:none;
  7186. box-shadow:none;
  7187. }
  7188. #u199564 {
  7189. border-width:0px;
  7190. position:absolute;
  7191. left:1442px;
  7192. top:81px;
  7193. width:12px;
  7194. height:12px;
  7195. display:flex;
  7196. -webkit-transform:rotate(315deg);
  7197. -moz-transform:rotate(315deg);
  7198. -ms-transform:rotate(315deg);
  7199. transform:rotate(315deg);
  7200. }
  7201. #u199564 .text {
  7202. position:absolute;
  7203. align-self:center;
  7204. padding:2px 2px 2px 2px;
  7205. box-sizing:border-box;
  7206. width:100%;
  7207. }
  7208. #u199564_text {
  7209. border-width:0px;
  7210. word-wrap:break-word;
  7211. text-transform:none;
  7212. visibility:hidden;
  7213. }
  7214. #u199565_img {
  7215. border-width:0px;
  7216. position:absolute;
  7217. left:0px;
  7218. top:0px;
  7219. width:23px;
  7220. height:23px;
  7221. }
  7222. #u199565 {
  7223. border-width:0px;
  7224. position:absolute;
  7225. left:1469px;
  7226. top:76px;
  7227. width:23px;
  7228. height:23px;
  7229. display:flex;
  7230. }
  7231. #u199565 .text {
  7232. position:absolute;
  7233. align-self:center;
  7234. padding:2px 2px 2px 2px;
  7235. box-sizing:border-box;
  7236. width:100%;
  7237. }
  7238. #u199565_text {
  7239. border-width:0px;
  7240. word-wrap:break-word;
  7241. text-transform:none;
  7242. visibility:hidden;
  7243. }
  7244. #u199566_div {
  7245. border-width:0px;
  7246. position:absolute;
  7247. left:0px;
  7248. top:0px;
  7249. width:375px;
  7250. height:731px;
  7251. background:inherit;
  7252. background-color:rgba(242, 242, 242, 0.996078431372549);
  7253. border:none;
  7254. border-top:0px;
  7255. border-radius:23px;
  7256. border-top-left-radius:0px;
  7257. border-top-right-radius:0px;
  7258. -moz-box-shadow:none;
  7259. -webkit-box-shadow:none;
  7260. box-shadow:none;
  7261. }
  7262. #u199566 {
  7263. border-width:0px;
  7264. position:absolute;
  7265. left:1427px;
  7266. top:107px;
  7267. width:375px;
  7268. height:731px;
  7269. display:flex;
  7270. }
  7271. #u199566 .text {
  7272. position:absolute;
  7273. align-self:center;
  7274. padding:2px 2px 2px 2px;
  7275. box-sizing:border-box;
  7276. width:100%;
  7277. }
  7278. #u199566_text {
  7279. border-width:0px;
  7280. word-wrap:break-word;
  7281. text-transform:none;
  7282. visibility:hidden;
  7283. }
  7284. #u199567 {
  7285. border-width:0px;
  7286. position:absolute;
  7287. left:0px;
  7288. top:0px;
  7289. width:0px;
  7290. height:0px;
  7291. }
  7292. #u199568_div {
  7293. border-width:0px;
  7294. position:absolute;
  7295. left:0px;
  7296. top:0px;
  7297. width:375px;
  7298. height:254px;
  7299. background:inherit;
  7300. background-color:rgba(255, 255, 255, 1);
  7301. border:none;
  7302. border-radius:0px;
  7303. -moz-box-shadow:none;
  7304. -webkit-box-shadow:none;
  7305. box-shadow:none;
  7306. }
  7307. #u199568 {
  7308. border-width:0px;
  7309. position:absolute;
  7310. left:1427px;
  7311. top:488px;
  7312. width:375px;
  7313. height:254px;
  7314. display:flex;
  7315. }
  7316. #u199568 .text {
  7317. position:absolute;
  7318. align-self:center;
  7319. padding:2px 2px 2px 2px;
  7320. box-sizing:border-box;
  7321. width:100%;
  7322. }
  7323. #u199568_text {
  7324. border-width:0px;
  7325. word-wrap:break-word;
  7326. text-transform:none;
  7327. visibility:hidden;
  7328. }
  7329. #u199569_div {
  7330. border-width:0px;
  7331. position:absolute;
  7332. left:0px;
  7333. top:0px;
  7334. width:95px;
  7335. height:35px;
  7336. background:inherit;
  7337. background-color:rgba(255, 255, 255, 0);
  7338. border:none;
  7339. border-top:0px;
  7340. border-right:0px;
  7341. border-bottom:0px;
  7342. border-radius:0px;
  7343. border-top-left-radius:0px;
  7344. border-bottom-left-radius:0px;
  7345. -moz-box-shadow:none;
  7346. -webkit-box-shadow:none;
  7347. box-shadow:none;
  7348. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7349. font-weight:400;
  7350. font-style:normal;
  7351. font-size:14px;
  7352. line-height:25px;
  7353. }
  7354. #u199569 {
  7355. border-width:0px;
  7356. position:absolute;
  7357. left:1442px;
  7358. top:498px;
  7359. width:95px;
  7360. height:35px;
  7361. display:flex;
  7362. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7363. font-weight:400;
  7364. font-style:normal;
  7365. font-size:14px;
  7366. line-height:25px;
  7367. }
  7368. #u199569 .text {
  7369. position:absolute;
  7370. align-self:center;
  7371. padding:5px 10px 5px 0px;
  7372. box-sizing:border-box;
  7373. width:100%;
  7374. }
  7375. #u199569_text {
  7376. border-width:0px;
  7377. white-space:nowrap;
  7378. text-transform:none;
  7379. }
  7380. #u199570_div {
  7381. border-width:0px;
  7382. position:absolute;
  7383. left:0px;
  7384. top:0px;
  7385. width:358px;
  7386. height:190px;
  7387. background:inherit;
  7388. background-color:rgba(255, 255, 255, 0);
  7389. border:none;
  7390. border-top:0px;
  7391. border-right:0px;
  7392. border-bottom:0px;
  7393. border-radius:0px;
  7394. border-top-left-radius:0px;
  7395. border-bottom-left-radius:0px;
  7396. -moz-box-shadow:none;
  7397. -webkit-box-shadow:none;
  7398. box-shadow:none;
  7399. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7400. font-weight:400;
  7401. font-style:normal;
  7402. font-size:12px;
  7403. line-height:30px;
  7404. }
  7405. #u199570 {
  7406. border-width:0px;
  7407. position:absolute;
  7408. left:1442px;
  7409. top:537px;
  7410. width:358px;
  7411. height:190px;
  7412. display:flex;
  7413. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7414. font-weight:400;
  7415. font-style:normal;
  7416. font-size:12px;
  7417. line-height:30px;
  7418. }
  7419. #u199570 .text {
  7420. position:absolute;
  7421. align-self:flex-start;
  7422. padding:5px 10px 5px 0px;
  7423. box-sizing:border-box;
  7424. width:100%;
  7425. }
  7426. #u199570_text {
  7427. border-width:0px;
  7428. word-wrap:break-word;
  7429. text-transform:none;
  7430. }
  7431. #u199571_div {
  7432. border-width:0px;
  7433. position:absolute;
  7434. left:0px;
  7435. top:0px;
  7436. width:10px;
  7437. height:10px;
  7438. background:inherit;
  7439. background-color:rgba(255, 255, 255, 0);
  7440. box-sizing:border-box;
  7441. border-width:2px;
  7442. border-style:solid;
  7443. border-color:rgba(51, 51, 51, 1);
  7444. border-right:0px;
  7445. border-bottom:0px;
  7446. border-radius:0px;
  7447. border-top-right-radius:0px;
  7448. border-bottom-left-radius:0px;
  7449. -moz-box-shadow:none;
  7450. -webkit-box-shadow:none;
  7451. box-shadow:none;
  7452. }
  7453. #u199571 {
  7454. border-width:0px;
  7455. position:absolute;
  7456. left:1776px;
  7457. top:508px;
  7458. width:10px;
  7459. height:10px;
  7460. display:flex;
  7461. -webkit-transform:rotate(45deg);
  7462. -moz-transform:rotate(45deg);
  7463. -ms-transform:rotate(45deg);
  7464. transform:rotate(45deg);
  7465. }
  7466. #u199571 .text {
  7467. position:absolute;
  7468. align-self:center;
  7469. padding:2px 2px 2px 2px;
  7470. box-sizing:border-box;
  7471. width:100%;
  7472. }
  7473. #u199571_text {
  7474. border-width:0px;
  7475. word-wrap:break-word;
  7476. text-transform:none;
  7477. visibility:hidden;
  7478. }
  7479. #u199572 {
  7480. border-width:0px;
  7481. position:absolute;
  7482. left:0px;
  7483. top:0px;
  7484. width:0px;
  7485. height:0px;
  7486. }
  7487. #u199573_div {
  7488. border-width:0px;
  7489. position:absolute;
  7490. left:0px;
  7491. top:0px;
  7492. width:375px;
  7493. height:380px;
  7494. background:inherit;
  7495. background-color:rgba(255, 255, 255, 1);
  7496. border:none;
  7497. border-radius:0px;
  7498. -moz-box-shadow:none;
  7499. -webkit-box-shadow:none;
  7500. box-shadow:none;
  7501. }
  7502. #u199573 {
  7503. border-width:0px;
  7504. position:absolute;
  7505. left:1427px;
  7506. top:107px;
  7507. width:375px;
  7508. height:380px;
  7509. display:flex;
  7510. }
  7511. #u199573 .text {
  7512. position:absolute;
  7513. align-self:center;
  7514. padding:2px 2px 2px 2px;
  7515. box-sizing:border-box;
  7516. width:100%;
  7517. }
  7518. #u199573_text {
  7519. border-width:0px;
  7520. word-wrap:break-word;
  7521. text-transform:none;
  7522. visibility:hidden;
  7523. }
  7524. #u199574_div {
  7525. border-width:0px;
  7526. position:absolute;
  7527. left:0px;
  7528. top:0px;
  7529. width:353px;
  7530. height:160px;
  7531. background:inherit;
  7532. background-color:rgba(255, 255, 255, 0);
  7533. border:none;
  7534. border-top:0px;
  7535. border-right:0px;
  7536. border-bottom:0px;
  7537. border-radius:0px;
  7538. border-top-left-radius:0px;
  7539. border-bottom-left-radius:0px;
  7540. -moz-box-shadow:none;
  7541. -webkit-box-shadow:none;
  7542. box-shadow:none;
  7543. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7544. font-weight:400;
  7545. font-style:normal;
  7546. line-height:30px;
  7547. }
  7548. #u199574 {
  7549. border-width:0px;
  7550. position:absolute;
  7551. left:1440px;
  7552. top:117px;
  7553. width:353px;
  7554. height:160px;
  7555. display:flex;
  7556. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7557. font-weight:400;
  7558. font-style:normal;
  7559. line-height:30px;
  7560. }
  7561. #u199574 .text {
  7562. position:absolute;
  7563. align-self:flex-start;
  7564. padding:5px 10px 5px 0px;
  7565. box-sizing:border-box;
  7566. width:100%;
  7567. }
  7568. #u199574_text {
  7569. border-width:0px;
  7570. word-wrap:break-word;
  7571. text-transform:none;
  7572. }
  7573. #u199575_div {
  7574. border-width:0px;
  7575. position:absolute;
  7576. left:0px;
  7577. top:0px;
  7578. width:353px;
  7579. height:190px;
  7580. background:inherit;
  7581. background-color:rgba(255, 255, 255, 0);
  7582. border:none;
  7583. border-top:0px;
  7584. border-right:0px;
  7585. border-bottom:0px;
  7586. border-radius:0px;
  7587. border-top-left-radius:0px;
  7588. border-bottom-left-radius:0px;
  7589. -moz-box-shadow:none;
  7590. -webkit-box-shadow:none;
  7591. box-shadow:none;
  7592. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7593. font-weight:400;
  7594. font-style:normal;
  7595. font-size:12px;
  7596. line-height:30px;
  7597. }
  7598. #u199575 {
  7599. border-width:0px;
  7600. position:absolute;
  7601. left:1440px;
  7602. top:292px;
  7603. width:353px;
  7604. height:190px;
  7605. display:flex;
  7606. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7607. font-weight:400;
  7608. font-style:normal;
  7609. font-size:12px;
  7610. line-height:30px;
  7611. }
  7612. #u199575 .text {
  7613. position:absolute;
  7614. align-self:flex-start;
  7615. padding:5px 10px 5px 0px;
  7616. box-sizing:border-box;
  7617. width:100%;
  7618. }
  7619. #u199575_text {
  7620. border-width:0px;
  7621. word-wrap:break-word;
  7622. text-transform:none;
  7623. }
  7624. #u199576_img {
  7625. border-width:0px;
  7626. position:absolute;
  7627. left:0px;
  7628. top:0px;
  7629. width:350px;
  7630. height:2px;
  7631. }
  7632. #u199576 {
  7633. border-width:0px;
  7634. position:absolute;
  7635. left:1440px;
  7636. top:283px;
  7637. width:349px;
  7638. height:1px;
  7639. display:flex;
  7640. }
  7641. #u199576 .text {
  7642. position:absolute;
  7643. align-self:center;
  7644. padding:2px 2px 2px 2px;
  7645. box-sizing:border-box;
  7646. width:100%;
  7647. }
  7648. #u199576_text {
  7649. border-width:0px;
  7650. word-wrap:break-word;
  7651. text-transform:none;
  7652. visibility:hidden;
  7653. }
  7654. #u199577_div {
  7655. border-width:0px;
  7656. position:absolute;
  7657. left:0px;
  7658. top:0px;
  7659. width:10px;
  7660. height:10px;
  7661. background:inherit;
  7662. background-color:rgba(255, 255, 255, 0);
  7663. box-sizing:border-box;
  7664. border-width:2px;
  7665. border-style:solid;
  7666. border-color:rgba(51, 51, 51, 1);
  7667. border-right:0px;
  7668. border-bottom:0px;
  7669. border-radius:0px;
  7670. border-top-right-radius:0px;
  7671. border-bottom-left-radius:0px;
  7672. -moz-box-shadow:none;
  7673. -webkit-box-shadow:none;
  7674. box-shadow:none;
  7675. }
  7676. #u199577 {
  7677. border-width:0px;
  7678. position:absolute;
  7679. left:1776px;
  7680. top:129px;
  7681. width:10px;
  7682. height:10px;
  7683. display:flex;
  7684. -webkit-transform:rotate(45deg);
  7685. -moz-transform:rotate(45deg);
  7686. -ms-transform:rotate(45deg);
  7687. transform:rotate(45deg);
  7688. }
  7689. #u199577 .text {
  7690. position:absolute;
  7691. align-self:center;
  7692. padding:2px 2px 2px 2px;
  7693. box-sizing:border-box;
  7694. width:100%;
  7695. }
  7696. #u199577_text {
  7697. border-width:0px;
  7698. word-wrap:break-word;
  7699. text-transform:none;
  7700. visibility:hidden;
  7701. }
  7702. #u199578_div {
  7703. border-width:0px;
  7704. position:absolute;
  7705. left:0px;
  7706. top:0px;
  7707. width:37px;
  7708. height:17px;
  7709. background:inherit;
  7710. background-color:rgba(255, 255, 255, 0);
  7711. border:none;
  7712. border-radius:0px;
  7713. -moz-box-shadow:none;
  7714. -webkit-box-shadow:none;
  7715. box-shadow:none;
  7716. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7717. font-weight:400;
  7718. font-style:normal;
  7719. font-size:12px;
  7720. color:#1890FF;
  7721. }
  7722. #u199578 {
  7723. border-width:0px;
  7724. position:absolute;
  7725. left:330px;
  7726. top:124px;
  7727. width:37px;
  7728. height:17px;
  7729. display:flex;
  7730. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7731. font-weight:400;
  7732. font-style:normal;
  7733. font-size:12px;
  7734. color:#1890FF;
  7735. }
  7736. #u199578 .text {
  7737. position:absolute;
  7738. align-self:flex-start;
  7739. padding:0px 0px 0px 0px;
  7740. box-sizing:border-box;
  7741. width:100%;
  7742. }
  7743. #u199578_text {
  7744. border-width:0px;
  7745. white-space:nowrap;
  7746. text-transform:none;
  7747. }
  7748. #u199579_div {
  7749. border-width:0px;
  7750. position:absolute;
  7751. left:0px;
  7752. top:0px;
  7753. width:37px;
  7754. height:17px;
  7755. background:inherit;
  7756. background-color:rgba(255, 255, 255, 0);
  7757. border:none;
  7758. border-radius:0px;
  7759. -moz-box-shadow:none;
  7760. -webkit-box-shadow:none;
  7761. box-shadow:none;
  7762. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7763. font-weight:400;
  7764. font-style:normal;
  7765. font-size:12px;
  7766. color:#1890FF;
  7767. }
  7768. #u199579 {
  7769. border-width:0px;
  7770. position:absolute;
  7771. left:795px;
  7772. top:124px;
  7773. width:37px;
  7774. height:17px;
  7775. display:flex;
  7776. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7777. font-weight:400;
  7778. font-style:normal;
  7779. font-size:12px;
  7780. color:#1890FF;
  7781. }
  7782. #u199579 .text {
  7783. position:absolute;
  7784. align-self:flex-start;
  7785. padding:0px 0px 0px 0px;
  7786. box-sizing:border-box;
  7787. width:100%;
  7788. }
  7789. #u199579_text {
  7790. border-width:0px;
  7791. white-space:nowrap;
  7792. text-transform:none;
  7793. }
  7794. #u199580_div {
  7795. border-width:0px;
  7796. position:absolute;
  7797. left:0px;
  7798. top:0px;
  7799. width:37px;
  7800. height:17px;
  7801. background:inherit;
  7802. background-color:rgba(255, 255, 255, 0);
  7803. border:none;
  7804. border-radius:0px;
  7805. -moz-box-shadow:none;
  7806. -webkit-box-shadow:none;
  7807. box-shadow:none;
  7808. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7809. font-weight:400;
  7810. font-style:normal;
  7811. font-size:12px;
  7812. color:#AAAAAA;
  7813. }
  7814. #u199580 {
  7815. border-width:0px;
  7816. position:absolute;
  7817. left:1262px;
  7818. top:124px;
  7819. width:37px;
  7820. height:17px;
  7821. display:flex;
  7822. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7823. font-weight:400;
  7824. font-style:normal;
  7825. font-size:12px;
  7826. color:#AAAAAA;
  7827. }
  7828. #u199580 .text {
  7829. position:absolute;
  7830. align-self:flex-start;
  7831. padding:0px 0px 0px 0px;
  7832. box-sizing:border-box;
  7833. width:100%;
  7834. }
  7835. #u199580_text {
  7836. border-width:0px;
  7837. white-space:nowrap;
  7838. text-transform:none;
  7839. }
  7840. #u199581_div {
  7841. border-width:0px;
  7842. position:absolute;
  7843. left:0px;
  7844. top:0px;
  7845. width:37px;
  7846. height:17px;
  7847. background:inherit;
  7848. background-color:rgba(255, 255, 255, 0);
  7849. border:none;
  7850. border-radius:0px;
  7851. -moz-box-shadow:none;
  7852. -webkit-box-shadow:none;
  7853. box-shadow:none;
  7854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7855. font-weight:400;
  7856. font-style:normal;
  7857. font-size:12px;
  7858. color:#F59A23;
  7859. }
  7860. #u199581 {
  7861. border-width:0px;
  7862. position:absolute;
  7863. left:1728px;
  7864. top:126px;
  7865. width:37px;
  7866. height:17px;
  7867. display:flex;
  7868. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7869. font-weight:400;
  7870. font-style:normal;
  7871. font-size:12px;
  7872. color:#F59A23;
  7873. }
  7874. #u199581 .text {
  7875. position:absolute;
  7876. align-self:flex-start;
  7877. padding:0px 0px 0px 0px;
  7878. box-sizing:border-box;
  7879. width:100%;
  7880. }
  7881. #u199581_text {
  7882. border-width:0px;
  7883. white-space:nowrap;
  7884. text-transform:none;
  7885. }