styles.css 122 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1600px;
  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. #u800_div {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1480px;
  25. height:1200px;
  26. background:inherit;
  27. background-color:rgba(242, 242, 242, 1);
  28. border:none;
  29. border-radius:0px;
  30. -moz-box-shadow:none;
  31. -webkit-box-shadow:none;
  32. box-shadow:none;
  33. }
  34. #u800 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u800 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u800_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u801_div {
  57. border-width:0px;
  58. position:absolute;
  59. left:0px;
  60. top:0px;
  61. width:129px;
  62. height:22px;
  63. background:inherit;
  64. background-color:rgba(255, 255, 255, 0);
  65. border:none;
  66. border-radius:0px;
  67. -moz-box-shadow:none;
  68. -webkit-box-shadow:none;
  69. box-shadow:none;
  70. font-size:16px;
  71. color:#FFFFFF;
  72. }
  73. #u801 {
  74. border-width:0px;
  75. position:absolute;
  76. left:49px;
  77. top:14px;
  78. width:129px;
  79. height:22px;
  80. display:flex;
  81. font-size:16px;
  82. color:#FFFFFF;
  83. }
  84. #u801 .text {
  85. position:absolute;
  86. align-self:flex-start;
  87. padding:0px 0px 0px 0px;
  88. box-sizing:border-box;
  89. width:100%;
  90. }
  91. #u801_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u802_div {
  97. border-width:0px;
  98. position:absolute;
  99. left:0px;
  100. top:0px;
  101. width:1600px;
  102. height:50px;
  103. background:inherit;
  104. background-color:rgba(30, 42, 68, 1);
  105. border:none;
  106. border-radius:0px;
  107. -moz-box-shadow:none;
  108. -webkit-box-shadow:none;
  109. box-shadow:none;
  110. color:#AFB3B6;
  111. }
  112. #u802 {
  113. border-width:0px;
  114. position:absolute;
  115. left:0px;
  116. top:0px;
  117. width:1600px;
  118. height:50px;
  119. display:flex;
  120. color:#AFB3B6;
  121. }
  122. #u802 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u802_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u803 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u804_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u804 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u804 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u804_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u805_div {
  173. border-width:0px;
  174. position:absolute;
  175. left:0px;
  176. top:0px;
  177. width:161px;
  178. height:22px;
  179. background:inherit;
  180. background-color:rgba(255, 255, 255, 0);
  181. border:none;
  182. border-radius:0px;
  183. -moz-box-shadow:none;
  184. -webkit-box-shadow:none;
  185. box-shadow:none;
  186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  187. font-weight:400;
  188. font-style:normal;
  189. font-size:16px;
  190. color:#FFFFFF;
  191. }
  192. #u805 {
  193. border-width:0px;
  194. position:absolute;
  195. left:62px;
  196. top:14px;
  197. width:161px;
  198. height:22px;
  199. display:flex;
  200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  201. font-weight:400;
  202. font-style:normal;
  203. font-size:16px;
  204. color:#FFFFFF;
  205. }
  206. #u805 .text {
  207. position:absolute;
  208. align-self:flex-start;
  209. padding:0px 0px 0px 0px;
  210. box-sizing:border-box;
  211. width:100%;
  212. }
  213. #u805_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u806_div {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:120px;
  224. height:1200px;
  225. background:inherit;
  226. background-color:rgba(30, 42, 68, 1);
  227. border:none;
  228. border-radius:0px;
  229. -moz-box-shadow:none;
  230. -webkit-box-shadow:none;
  231. box-shadow:none;
  232. color:#AFB3B6;
  233. }
  234. #u806 {
  235. border-width:0px;
  236. position:absolute;
  237. left:0px;
  238. top:47px;
  239. width:120px;
  240. height:1200px;
  241. display:flex;
  242. color:#AFB3B6;
  243. }
  244. #u806 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u806_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u807 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u808_input {
  266. position:absolute;
  267. left:0px;
  268. top:0px;
  269. width:214px;
  270. height:27px;
  271. padding:2px 2px 2px 2px;
  272. font-family:'ArialMT', 'Arial', sans-serif;
  273. font-weight:400;
  274. font-style:normal;
  275. font-size:14px;
  276. letter-spacing:normal;
  277. color:#FFFFFF;
  278. vertical-align:none;
  279. text-align:left;
  280. text-transform:none;
  281. background-color:transparent;
  282. border-color:transparent;
  283. }
  284. #u808_input.disabled {
  285. position:absolute;
  286. left:0px;
  287. top:0px;
  288. width:214px;
  289. height:27px;
  290. padding:2px 2px 2px 2px;
  291. font-family:'ArialMT', 'Arial', sans-serif;
  292. font-weight:400;
  293. font-style:normal;
  294. font-size:14px;
  295. letter-spacing:normal;
  296. color:#FFFFFF;
  297. vertical-align:none;
  298. text-align:left;
  299. text-transform:none;
  300. background-color:transparent;
  301. border-color:transparent;
  302. }
  303. #u808_div {
  304. border-width:0px;
  305. position:absolute;
  306. left:0px;
  307. top:0px;
  308. width:214px;
  309. height:27px;
  310. background:inherit;
  311. background-color:rgba(255, 255, 255, 0);
  312. border:none;
  313. border-radius:0px;
  314. -moz-box-shadow:none;
  315. -webkit-box-shadow:none;
  316. box-shadow:none;
  317. font-size:14px;
  318. color:#FFFFFF;
  319. }
  320. #u808 {
  321. border-width:0px;
  322. position:absolute;
  323. left:1089px;
  324. top:10px;
  325. width:214px;
  326. height:27px;
  327. display:flex;
  328. font-size:14px;
  329. color:#FFFFFF;
  330. }
  331. #u808 .text {
  332. position:absolute;
  333. align-self:flex-start;
  334. padding:2px 2px 2px 2px;
  335. box-sizing:border-box;
  336. width:100%;
  337. }
  338. #u808_div.disabled {
  339. border-width:0px;
  340. position:absolute;
  341. left:0px;
  342. top:0px;
  343. width:214px;
  344. height:27px;
  345. background:inherit;
  346. background-color:rgba(240, 240, 240, 1);
  347. border:none;
  348. border-radius:0px;
  349. -moz-box-shadow:none;
  350. -webkit-box-shadow:none;
  351. box-shadow:none;
  352. font-size:14px;
  353. color:#FFFFFF;
  354. }
  355. #u808.disabled {
  356. }
  357. .u808_input_option {
  358. font-size:14px;
  359. }
  360. #u809_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u809 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u809 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u809_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u810_div {
  391. border-width:0px;
  392. position:absolute;
  393. left:0px;
  394. top:0px;
  395. width:100px;
  396. height:24px;
  397. background:inherit;
  398. background-color:rgba(242, 242, 242, 0.2);
  399. border:none;
  400. border-radius:25px;
  401. -moz-box-shadow:none;
  402. -webkit-box-shadow:none;
  403. box-shadow:none;
  404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  405. font-weight:400;
  406. font-style:normal;
  407. color:#FFFFFF;
  408. text-align:center;
  409. }
  410. #u810 {
  411. border-width:0px;
  412. position:absolute;
  413. left:1350px;
  414. top:12px;
  415. width:100px;
  416. height:24px;
  417. display:flex;
  418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  419. font-weight:400;
  420. font-style:normal;
  421. color:#FFFFFF;
  422. text-align:center;
  423. }
  424. #u810 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u810_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u811_div {
  437. border-width:0px;
  438. position:absolute;
  439. left:0px;
  440. top:0px;
  441. width:120px;
  442. height:24px;
  443. background:inherit;
  444. background-color:rgba(242, 242, 242, 0.2);
  445. border:none;
  446. border-radius:25px;
  447. -moz-box-shadow:none;
  448. -webkit-box-shadow:none;
  449. box-shadow:none;
  450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  451. font-weight:400;
  452. font-style:normal;
  453. color:#FFFFFF;
  454. text-align:center;
  455. }
  456. #u811 {
  457. border-width:0px;
  458. position:absolute;
  459. left:1460px;
  460. top:12px;
  461. width:120px;
  462. height:24px;
  463. display:flex;
  464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  465. font-weight:400;
  466. font-style:normal;
  467. color:#FFFFFF;
  468. text-align:center;
  469. }
  470. #u811 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u811_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u812 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u813_div {
  491. border-width:0px;
  492. position:absolute;
  493. left:0px;
  494. top:0px;
  495. width:33px;
  496. height:22px;
  497. background:inherit;
  498. background-color:rgba(255, 255, 255, 0);
  499. border:none;
  500. border-radius:0px;
  501. -moz-box-shadow:none;
  502. -webkit-box-shadow:none;
  503. box-shadow:none;
  504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  505. font-weight:400;
  506. font-style:normal;
  507. font-size:16px;
  508. color:#FFFFFF;
  509. }
  510. #u813 {
  511. border-width:0px;
  512. position:absolute;
  513. left:39px;
  514. top:71px;
  515. width:33px;
  516. height:22px;
  517. display:flex;
  518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  519. font-weight:400;
  520. font-style:normal;
  521. font-size:16px;
  522. color:#FFFFFF;
  523. }
  524. #u813 .text {
  525. position:absolute;
  526. align-self:flex-start;
  527. padding:0px 0px 0px 0px;
  528. box-sizing:border-box;
  529. width:100%;
  530. }
  531. #u813_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u814_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u814 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u814 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u814_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u815 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u816_div {
  575. border-width:0px;
  576. position:absolute;
  577. left:0px;
  578. top:0px;
  579. width:33px;
  580. height:22px;
  581. background:inherit;
  582. background-color:rgba(255, 255, 255, 0);
  583. border:none;
  584. border-radius:0px;
  585. -moz-box-shadow:none;
  586. -webkit-box-shadow:none;
  587. box-shadow:none;
  588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  589. font-weight:400;
  590. font-style:normal;
  591. font-size:16px;
  592. color:#FFFFFF;
  593. }
  594. #u816 {
  595. border-width:0px;
  596. position:absolute;
  597. left:39px;
  598. top:147px;
  599. width:33px;
  600. height:22px;
  601. display:flex;
  602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  603. font-weight:400;
  604. font-style:normal;
  605. font-size:16px;
  606. color:#FFFFFF;
  607. }
  608. #u816 .text {
  609. position:absolute;
  610. align-self:flex-start;
  611. padding:0px 0px 0px 0px;
  612. box-sizing:border-box;
  613. width:100%;
  614. }
  615. #u816_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u817_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u817 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u817 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u817_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u818 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u819_div {
  659. border-width:0px;
  660. position:absolute;
  661. left:0px;
  662. top:0px;
  663. width:33px;
  664. height:22px;
  665. background:inherit;
  666. background-color:rgba(255, 255, 255, 0);
  667. border:none;
  668. border-radius:0px;
  669. -moz-box-shadow:none;
  670. -webkit-box-shadow:none;
  671. box-shadow:none;
  672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  673. font-weight:400;
  674. font-style:normal;
  675. font-size:16px;
  676. color:#FFFFFF;
  677. }
  678. #u819 {
  679. border-width:0px;
  680. position:absolute;
  681. left:39px;
  682. top:439px;
  683. width:33px;
  684. height:22px;
  685. display:flex;
  686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  687. font-weight:400;
  688. font-style:normal;
  689. font-size:16px;
  690. color:#FFFFFF;
  691. }
  692. #u819 .text {
  693. position:absolute;
  694. align-self:flex-start;
  695. padding:0px 0px 0px 0px;
  696. box-sizing:border-box;
  697. width:100%;
  698. }
  699. #u819_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u820_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u820 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:443px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u820 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u820_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u821 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u822_div {
  743. border-width:0px;
  744. position:absolute;
  745. left:0px;
  746. top:0px;
  747. width:49px;
  748. height:22px;
  749. background:inherit;
  750. background-color:rgba(255, 255, 255, 0);
  751. border:none;
  752. border-radius:0px;
  753. -moz-box-shadow:none;
  754. -webkit-box-shadow:none;
  755. box-shadow:none;
  756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  757. font-weight:400;
  758. font-style:normal;
  759. font-size:16px;
  760. color:#FFFFFF;
  761. }
  762. #u822 {
  763. border-width:0px;
  764. position:absolute;
  765. left:39px;
  766. top:109px;
  767. width:49px;
  768. height:22px;
  769. display:flex;
  770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  771. font-weight:400;
  772. font-style:normal;
  773. font-size:16px;
  774. color:#FFFFFF;
  775. }
  776. #u822 .text {
  777. position:absolute;
  778. align-self:flex-start;
  779. padding:0px 0px 0px 0px;
  780. box-sizing:border-box;
  781. width:100%;
  782. }
  783. #u822_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u823_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u823 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u823 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u823_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u824 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u825_div {
  827. border-width:0px;
  828. position:absolute;
  829. left:0px;
  830. top:0px;
  831. width:33px;
  832. height:22px;
  833. background:inherit;
  834. background-color:rgba(255, 255, 255, 0);
  835. border:none;
  836. border-radius:0px;
  837. -moz-box-shadow:none;
  838. -webkit-box-shadow:none;
  839. box-shadow:none;
  840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  841. font-weight:400;
  842. font-style:normal;
  843. font-size:16px;
  844. color:#FFFFFF;
  845. }
  846. #u825 {
  847. border-width:0px;
  848. position:absolute;
  849. left:39px;
  850. top:481px;
  851. width:33px;
  852. height:22px;
  853. display:flex;
  854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  855. font-weight:400;
  856. font-style:normal;
  857. font-size:16px;
  858. color:#FFFFFF;
  859. }
  860. #u825 .text {
  861. position:absolute;
  862. align-self:flex-start;
  863. padding:0px 0px 0px 0px;
  864. box-sizing:border-box;
  865. width:100%;
  866. }
  867. #u825_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u826_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u826 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:485px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u826 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u826_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u827 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u828_div {
  911. border-width:0px;
  912. position:absolute;
  913. left:0px;
  914. top:0px;
  915. width:33px;
  916. height:22px;
  917. background:inherit;
  918. background-color:rgba(255, 255, 255, 0);
  919. border:none;
  920. border-radius:0px;
  921. -moz-box-shadow:none;
  922. -webkit-box-shadow:none;
  923. box-shadow:none;
  924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  925. font-weight:400;
  926. font-style:normal;
  927. font-size:16px;
  928. color:#FFFFFF;
  929. }
  930. #u828 {
  931. border-width:0px;
  932. position:absolute;
  933. left:39px;
  934. top:355px;
  935. width:33px;
  936. height:22px;
  937. display:flex;
  938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  939. font-weight:400;
  940. font-style:normal;
  941. font-size:16px;
  942. color:#FFFFFF;
  943. }
  944. #u828 .text {
  945. position:absolute;
  946. align-self:flex-start;
  947. padding:0px 0px 0px 0px;
  948. box-sizing:border-box;
  949. width:100%;
  950. }
  951. #u828_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u829_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u829 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:359px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u829 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u829_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u830 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u831_div {
  995. border-width:0px;
  996. position:absolute;
  997. left:0px;
  998. top:0px;
  999. width:33px;
  1000. height:22px;
  1001. background:inherit;
  1002. background-color:rgba(255, 255, 255, 0);
  1003. border:none;
  1004. border-radius:0px;
  1005. -moz-box-shadow:none;
  1006. -webkit-box-shadow:none;
  1007. box-shadow:none;
  1008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1009. font-weight:400;
  1010. font-style:normal;
  1011. font-size:16px;
  1012. color:#FFFFFF;
  1013. }
  1014. #u831 {
  1015. border-width:0px;
  1016. position:absolute;
  1017. left:39px;
  1018. top:189px;
  1019. width:33px;
  1020. height:22px;
  1021. display:flex;
  1022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1023. font-weight:400;
  1024. font-style:normal;
  1025. font-size:16px;
  1026. color:#FFFFFF;
  1027. }
  1028. #u831 .text {
  1029. position:absolute;
  1030. align-self:flex-start;
  1031. padding:0px 0px 0px 0px;
  1032. box-sizing:border-box;
  1033. width:100%;
  1034. }
  1035. #u831_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u832_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u832 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u832 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u832_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u833 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u834_div {
  1079. border-width:0px;
  1080. position:absolute;
  1081. left:0px;
  1082. top:0px;
  1083. width:33px;
  1084. height:22px;
  1085. background:inherit;
  1086. background-color:rgba(255, 255, 255, 0);
  1087. border:none;
  1088. border-radius:0px;
  1089. -moz-box-shadow:none;
  1090. -webkit-box-shadow:none;
  1091. box-shadow:none;
  1092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1093. font-weight:400;
  1094. font-style:normal;
  1095. font-size:16px;
  1096. color:#FFFFFF;
  1097. }
  1098. #u834 {
  1099. border-width:0px;
  1100. position:absolute;
  1101. left:39px;
  1102. top:397px;
  1103. width:33px;
  1104. height:22px;
  1105. display:flex;
  1106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1107. font-weight:400;
  1108. font-style:normal;
  1109. font-size:16px;
  1110. color:#FFFFFF;
  1111. }
  1112. #u834 .text {
  1113. position:absolute;
  1114. align-self:flex-start;
  1115. padding:0px 0px 0px 0px;
  1116. box-sizing:border-box;
  1117. width:100%;
  1118. }
  1119. #u834_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u835_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u835 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:401px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u835 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u835_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u836 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u837_div {
  1163. border-width:0px;
  1164. position:absolute;
  1165. left:0px;
  1166. top:0px;
  1167. width:33px;
  1168. height:22px;
  1169. background:inherit;
  1170. background-color:rgba(255, 255, 255, 0);
  1171. border:none;
  1172. border-radius:0px;
  1173. -moz-box-shadow:none;
  1174. -webkit-box-shadow:none;
  1175. box-shadow:none;
  1176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1177. font-weight:400;
  1178. font-style:normal;
  1179. font-size:16px;
  1180. color:#FFFFFF;
  1181. }
  1182. #u837 {
  1183. border-width:0px;
  1184. position:absolute;
  1185. left:39px;
  1186. top:523px;
  1187. width:33px;
  1188. height:22px;
  1189. display:flex;
  1190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1191. font-weight:400;
  1192. font-style:normal;
  1193. font-size:16px;
  1194. color:#FFFFFF;
  1195. }
  1196. #u837 .text {
  1197. position:absolute;
  1198. align-self:flex-start;
  1199. padding:0px 0px 0px 0px;
  1200. box-sizing:border-box;
  1201. width:100%;
  1202. }
  1203. #u837_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u838_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u838 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:527px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u838 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u838_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u839 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u840_div {
  1247. border-width:0px;
  1248. position:absolute;
  1249. left:0px;
  1250. top:0px;
  1251. width:33px;
  1252. height:22px;
  1253. background:inherit;
  1254. background-color:rgba(255, 255, 255, 0);
  1255. border:none;
  1256. border-radius:0px;
  1257. -moz-box-shadow:none;
  1258. -webkit-box-shadow:none;
  1259. box-shadow:none;
  1260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1261. font-weight:400;
  1262. font-style:normal;
  1263. font-size:16px;
  1264. color:#FFFFFF;
  1265. }
  1266. #u840 {
  1267. border-width:0px;
  1268. position:absolute;
  1269. left:39px;
  1270. top:231px;
  1271. width:33px;
  1272. height:22px;
  1273. display:flex;
  1274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1275. font-weight:400;
  1276. font-style:normal;
  1277. font-size:16px;
  1278. color:#FFFFFF;
  1279. }
  1280. #u840 .text {
  1281. position:absolute;
  1282. align-self:flex-start;
  1283. padding:0px 0px 0px 0px;
  1284. box-sizing:border-box;
  1285. width:100%;
  1286. }
  1287. #u840_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u841_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u841 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:235px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u841 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u841_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u842_div {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:0px;
  1326. top:0px;
  1327. width:29px;
  1328. height:20px;
  1329. background:inherit;
  1330. background-color:rgba(255, 255, 255, 0);
  1331. border:none;
  1332. border-radius:25px;
  1333. -moz-box-shadow:none;
  1334. -webkit-box-shadow:none;
  1335. box-shadow:none;
  1336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1337. font-weight:400;
  1338. font-style:normal;
  1339. color:#FFFFFF;
  1340. }
  1341. #u842 {
  1342. border-width:0px;
  1343. position:absolute;
  1344. left:52px;
  1345. top:1145px;
  1346. width:29px;
  1347. height:20px;
  1348. display:flex;
  1349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1350. font-weight:400;
  1351. font-style:normal;
  1352. color:#FFFFFF;
  1353. }
  1354. #u842 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u842_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u843_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u843 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u843 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u843_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u844_div {
  1397. border-width:0px;
  1398. position:absolute;
  1399. left:0px;
  1400. top:0px;
  1401. width:29px;
  1402. height:20px;
  1403. background:inherit;
  1404. background-color:rgba(255, 255, 255, 0);
  1405. border:none;
  1406. border-radius:25px;
  1407. -moz-box-shadow:none;
  1408. -webkit-box-shadow:none;
  1409. box-shadow:none;
  1410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1411. font-weight:400;
  1412. font-style:normal;
  1413. color:#FFFFFF;
  1414. }
  1415. #u844 {
  1416. border-width:0px;
  1417. position:absolute;
  1418. left:52px;
  1419. top:1187px;
  1420. width:29px;
  1421. height:20px;
  1422. display:flex;
  1423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1424. font-weight:400;
  1425. font-style:normal;
  1426. color:#FFFFFF;
  1427. }
  1428. #u844 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u844_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u845_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u845 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u845 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u845_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u846 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u847_div {
  1479. border-width:0px;
  1480. position:absolute;
  1481. left:0px;
  1482. top:0px;
  1483. width:33px;
  1484. height:22px;
  1485. background:inherit;
  1486. background-color:rgba(255, 255, 255, 0);
  1487. border:none;
  1488. border-radius:0px;
  1489. -moz-box-shadow:none;
  1490. -webkit-box-shadow:none;
  1491. box-shadow:none;
  1492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1493. font-weight:400;
  1494. font-style:normal;
  1495. font-size:16px;
  1496. color:#FFFFFF;
  1497. }
  1498. #u847 {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:39px;
  1502. top:273px;
  1503. width:33px;
  1504. height:22px;
  1505. display:flex;
  1506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1507. font-weight:400;
  1508. font-style:normal;
  1509. font-size:16px;
  1510. color:#FFFFFF;
  1511. }
  1512. #u847 .text {
  1513. position:absolute;
  1514. align-self:flex-start;
  1515. padding:0px 0px 0px 0px;
  1516. box-sizing:border-box;
  1517. width:100%;
  1518. }
  1519. #u847_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u848_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u848 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:277px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u848 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u848_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u849 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u850_div {
  1563. border-width:0px;
  1564. position:absolute;
  1565. left:0px;
  1566. top:0px;
  1567. width:33px;
  1568. height:22px;
  1569. background:inherit;
  1570. background-color:rgba(255, 255, 255, 0);
  1571. border:none;
  1572. border-radius:0px;
  1573. -moz-box-shadow:none;
  1574. -webkit-box-shadow:none;
  1575. box-shadow:none;
  1576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1577. font-weight:400;
  1578. font-style:normal;
  1579. font-size:16px;
  1580. color:#FFFFFF;
  1581. }
  1582. #u850 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:39px;
  1586. top:565px;
  1587. width:33px;
  1588. height:22px;
  1589. display:flex;
  1590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1591. font-weight:400;
  1592. font-style:normal;
  1593. font-size:16px;
  1594. color:#FFFFFF;
  1595. }
  1596. #u850 .text {
  1597. position:absolute;
  1598. align-self:flex-start;
  1599. padding:0px 0px 0px 0px;
  1600. box-sizing:border-box;
  1601. width:100%;
  1602. }
  1603. #u850_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u851_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u851 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:569px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u851 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u851_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u852 {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:0px;
  1644. height:0px;
  1645. }
  1646. #u853_div {
  1647. border-width:0px;
  1648. position:absolute;
  1649. left:0px;
  1650. top:0px;
  1651. width:33px;
  1652. height:22px;
  1653. background:inherit;
  1654. background-color:rgba(255, 255, 255, 0);
  1655. border:none;
  1656. border-radius:0px;
  1657. -moz-box-shadow:none;
  1658. -webkit-box-shadow:none;
  1659. box-shadow:none;
  1660. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1661. font-weight:400;
  1662. font-style:normal;
  1663. font-size:16px;
  1664. color:#FFFFFF;
  1665. }
  1666. #u853 {
  1667. border-width:0px;
  1668. position:absolute;
  1669. left:39px;
  1670. top:315px;
  1671. width:33px;
  1672. height:22px;
  1673. display:flex;
  1674. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1675. font-weight:400;
  1676. font-style:normal;
  1677. font-size:16px;
  1678. color:#FFFFFF;
  1679. }
  1680. #u853 .text {
  1681. position:absolute;
  1682. align-self:flex-start;
  1683. padding:0px 0px 0px 0px;
  1684. box-sizing:border-box;
  1685. width:100%;
  1686. }
  1687. #u853_text {
  1688. border-width:0px;
  1689. white-space:nowrap;
  1690. text-transform:none;
  1691. }
  1692. #u854_img {
  1693. border-width:0px;
  1694. position:absolute;
  1695. left:0px;
  1696. top:0px;
  1697. width:14px;
  1698. height:14px;
  1699. }
  1700. #u854 {
  1701. border-width:0px;
  1702. position:absolute;
  1703. left:20px;
  1704. top:319px;
  1705. width:14px;
  1706. height:14px;
  1707. display:flex;
  1708. }
  1709. #u854 .text {
  1710. position:absolute;
  1711. align-self:center;
  1712. padding:2px 2px 2px 2px;
  1713. box-sizing:border-box;
  1714. width:100%;
  1715. }
  1716. #u854_text {
  1717. border-width:0px;
  1718. word-wrap:break-word;
  1719. text-transform:none;
  1720. visibility:hidden;
  1721. }
  1722. #u855_div {
  1723. border-width:0px;
  1724. position:absolute;
  1725. left:0px;
  1726. top:0px;
  1727. width:1480px;
  1728. height:1200px;
  1729. background:inherit;
  1730. background-color:rgba(242, 242, 242, 1);
  1731. border:none;
  1732. border-radius:0px;
  1733. -moz-box-shadow:none;
  1734. -webkit-box-shadow:none;
  1735. box-shadow:none;
  1736. font-size:28px;
  1737. }
  1738. #u855 {
  1739. border-width:0px;
  1740. position:absolute;
  1741. left:120px;
  1742. top:50px;
  1743. width:1480px;
  1744. height:1200px;
  1745. display:flex;
  1746. font-size:28px;
  1747. }
  1748. #u855 .text {
  1749. position:absolute;
  1750. align-self:center;
  1751. padding:2px 2px 2px 2px;
  1752. box-sizing:border-box;
  1753. width:100%;
  1754. }
  1755. #u855_text {
  1756. border-width:0px;
  1757. word-wrap:break-word;
  1758. text-transform:none;
  1759. visibility:hidden;
  1760. }
  1761. #u856_div {
  1762. border-width:0px;
  1763. position:absolute;
  1764. left:0px;
  1765. top:0px;
  1766. width:480px;
  1767. height:240px;
  1768. background:inherit;
  1769. background-color:rgba(255, 255, 255, 1);
  1770. border:none;
  1771. border-radius:4px;
  1772. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  1773. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  1774. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  1775. }
  1776. #u856 {
  1777. border-width:0px;
  1778. position:absolute;
  1779. left:145px;
  1780. top:146px;
  1781. width:480px;
  1782. height:240px;
  1783. display:flex;
  1784. }
  1785. #u856 .text {
  1786. position:absolute;
  1787. align-self:center;
  1788. padding:2px 2px 2px 2px;
  1789. box-sizing:border-box;
  1790. width:100%;
  1791. }
  1792. #u856_text {
  1793. border-width:0px;
  1794. word-wrap:break-word;
  1795. text-transform:none;
  1796. visibility:hidden;
  1797. }
  1798. #u857 {
  1799. border-width:0px;
  1800. position:absolute;
  1801. left:0px;
  1802. top:0px;
  1803. width:0px;
  1804. height:0px;
  1805. }
  1806. #u858_div {
  1807. border-width:0px;
  1808. position:absolute;
  1809. left:0px;
  1810. top:0px;
  1811. width:33px;
  1812. height:22px;
  1813. background:inherit;
  1814. background-color:rgba(255, 255, 255, 0);
  1815. border:none;
  1816. border-radius:0px;
  1817. -moz-box-shadow:none;
  1818. -webkit-box-shadow:none;
  1819. box-shadow:none;
  1820. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1821. font-weight:400;
  1822. font-style:normal;
  1823. font-size:16px;
  1824. color:#298FFF;
  1825. }
  1826. #u858 {
  1827. border-width:0px;
  1828. position:absolute;
  1829. left:39px;
  1830. top:71px;
  1831. width:33px;
  1832. height:22px;
  1833. display:flex;
  1834. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1835. font-weight:400;
  1836. font-style:normal;
  1837. font-size:16px;
  1838. color:#298FFF;
  1839. }
  1840. #u858 .text {
  1841. position:absolute;
  1842. align-self:flex-start;
  1843. padding:0px 0px 0px 0px;
  1844. box-sizing:border-box;
  1845. width:100%;
  1846. }
  1847. #u858_text {
  1848. border-width:0px;
  1849. white-space:nowrap;
  1850. text-transform:none;
  1851. }
  1852. #u859_img {
  1853. border-width:0px;
  1854. position:absolute;
  1855. left:0px;
  1856. top:0px;
  1857. width:14px;
  1858. height:14px;
  1859. }
  1860. #u859 {
  1861. border-width:0px;
  1862. position:absolute;
  1863. left:20px;
  1864. top:75px;
  1865. width:14px;
  1866. height:14px;
  1867. display:flex;
  1868. }
  1869. #u859 .text {
  1870. position:absolute;
  1871. align-self:center;
  1872. padding:2px 2px 2px 2px;
  1873. box-sizing:border-box;
  1874. width:100%;
  1875. }
  1876. #u859_text {
  1877. border-width:0px;
  1878. word-wrap:break-word;
  1879. text-transform:none;
  1880. visibility:hidden;
  1881. }
  1882. #u860_div {
  1883. border-width:0px;
  1884. position:absolute;
  1885. left:0px;
  1886. top:0px;
  1887. width:147px;
  1888. height:120px;
  1889. background:inherit;
  1890. background-color:rgba(255, 255, 255, 0);
  1891. border:none;
  1892. border-radius:0px;
  1893. -moz-box-shadow:none;
  1894. -webkit-box-shadow:none;
  1895. box-shadow:none;
  1896. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1897. font-weight:400;
  1898. font-style:normal;
  1899. font-size:18px;
  1900. line-height:40px;
  1901. }
  1902. #u860 {
  1903. border-width:0px;
  1904. position:absolute;
  1905. left:404px;
  1906. top:206px;
  1907. width:147px;
  1908. height:120px;
  1909. display:flex;
  1910. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1911. font-weight:400;
  1912. font-style:normal;
  1913. font-size:18px;
  1914. line-height:40px;
  1915. }
  1916. #u860 .text {
  1917. position:absolute;
  1918. align-self:flex-start;
  1919. padding:0px 0px 0px 0px;
  1920. box-sizing:border-box;
  1921. width:100%;
  1922. }
  1923. #u860_text {
  1924. border-width:0px;
  1925. word-wrap:break-word;
  1926. text-transform:none;
  1927. }
  1928. #u861 {
  1929. border-width:0px;
  1930. position:absolute;
  1931. left:0px;
  1932. top:0px;
  1933. width:0px;
  1934. height:0px;
  1935. }
  1936. #u862_img {
  1937. border-width:0px;
  1938. position:absolute;
  1939. left:0px;
  1940. top:0px;
  1941. width:161px;
  1942. height:161px;
  1943. }
  1944. #u862 {
  1945. border-width:0px;
  1946. position:absolute;
  1947. left:199px;
  1948. top:185px;
  1949. width:161px;
  1950. height:161px;
  1951. display:flex;
  1952. }
  1953. #u862 .text {
  1954. position:absolute;
  1955. align-self:center;
  1956. padding:2px 2px 2px 2px;
  1957. box-sizing:border-box;
  1958. width:100%;
  1959. }
  1960. #u862_text {
  1961. border-width:0px;
  1962. word-wrap:break-word;
  1963. text-transform:none;
  1964. visibility:hidden;
  1965. }
  1966. #u863 {
  1967. border-width:0px;
  1968. position:absolute;
  1969. left:0px;
  1970. top:0px;
  1971. width:0px;
  1972. height:0px;
  1973. }
  1974. #u864_div {
  1975. border-width:0px;
  1976. position:absolute;
  1977. left:0px;
  1978. top:0px;
  1979. width:78px;
  1980. height:27px;
  1981. background:inherit;
  1982. background-color:rgba(255, 255, 255, 0);
  1983. border:none;
  1984. border-radius:0px;
  1985. -moz-box-shadow:none;
  1986. -webkit-box-shadow:none;
  1987. box-shadow:none;
  1988. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1989. font-weight:500;
  1990. font-style:normal;
  1991. font-size:18px;
  1992. }
  1993. #u864 {
  1994. border-width:0px;
  1995. position:absolute;
  1996. left:240px;
  1997. top:277px;
  1998. width:78px;
  1999. height:27px;
  2000. display:flex;
  2001. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2002. font-weight:500;
  2003. font-style:normal;
  2004. font-size:18px;
  2005. }
  2006. #u864 .text {
  2007. position:absolute;
  2008. align-self:flex-start;
  2009. padding:0px 0px 0px 0px;
  2010. box-sizing:border-box;
  2011. width:100%;
  2012. }
  2013. #u864_text {
  2014. border-width:0px;
  2015. word-wrap:break-word;
  2016. text-transform:none;
  2017. }
  2018. #u865_div {
  2019. border-width:0px;
  2020. position:absolute;
  2021. left:0px;
  2022. top:0px;
  2023. width:50px;
  2024. height:57px;
  2025. background:inherit;
  2026. background-color:rgba(255, 255, 255, 0);
  2027. border:none;
  2028. border-radius:0px;
  2029. -moz-box-shadow:none;
  2030. -webkit-box-shadow:none;
  2031. box-shadow:none;
  2032. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2033. font-weight:500;
  2034. font-style:normal;
  2035. font-size:38px;
  2036. }
  2037. #u865 {
  2038. border-width:0px;
  2039. position:absolute;
  2040. left:254px;
  2041. top:227px;
  2042. width:50px;
  2043. height:57px;
  2044. display:flex;
  2045. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2046. font-weight:500;
  2047. font-style:normal;
  2048. font-size:38px;
  2049. }
  2050. #u865 .text {
  2051. position:absolute;
  2052. align-self:flex-start;
  2053. padding:0px 0px 0px 0px;
  2054. box-sizing:border-box;
  2055. width:100%;
  2056. }
  2057. #u865_text {
  2058. border-width:0px;
  2059. word-wrap:break-word;
  2060. text-transform:none;
  2061. }
  2062. #u866_div {
  2063. border-width:0px;
  2064. position:absolute;
  2065. left:0px;
  2066. top:0px;
  2067. width:474px;
  2068. height:240px;
  2069. background:inherit;
  2070. background-color:rgba(255, 255, 255, 1);
  2071. border:none;
  2072. border-radius:4px;
  2073. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  2074. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  2075. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  2076. }
  2077. #u866 {
  2078. border-width:0px;
  2079. position:absolute;
  2080. left:645px;
  2081. top:146px;
  2082. width:474px;
  2083. height:240px;
  2084. display:flex;
  2085. }
  2086. #u866 .text {
  2087. position:absolute;
  2088. align-self:center;
  2089. padding:2px 2px 2px 2px;
  2090. box-sizing:border-box;
  2091. width:100%;
  2092. }
  2093. #u866_text {
  2094. border-width:0px;
  2095. word-wrap:break-word;
  2096. text-transform:none;
  2097. visibility:hidden;
  2098. }
  2099. #u867_div {
  2100. border-width:0px;
  2101. position:absolute;
  2102. left:0px;
  2103. top:0px;
  2104. width:109px;
  2105. height:25px;
  2106. background:inherit;
  2107. background-color:rgba(255, 255, 255, 0);
  2108. border:none;
  2109. border-radius:0px;
  2110. -moz-box-shadow:none;
  2111. -webkit-box-shadow:none;
  2112. box-shadow:none;
  2113. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2114. font-weight:400;
  2115. font-style:normal;
  2116. font-size:18px;
  2117. }
  2118. #u867 {
  2119. border-width:0px;
  2120. position:absolute;
  2121. left:671px;
  2122. top:165px;
  2123. width:109px;
  2124. height:25px;
  2125. display:flex;
  2126. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2127. font-weight:400;
  2128. font-style:normal;
  2129. font-size:18px;
  2130. }
  2131. #u867 .text {
  2132. position:absolute;
  2133. align-self:flex-start;
  2134. padding:0px 0px 0px 0px;
  2135. box-sizing:border-box;
  2136. width:100%;
  2137. }
  2138. #u867_text {
  2139. border-width:0px;
  2140. white-space:nowrap;
  2141. text-transform:none;
  2142. }
  2143. #u868_div {
  2144. border-width:0px;
  2145. position:absolute;
  2146. left:0px;
  2147. top:0px;
  2148. width:9px;
  2149. height:25px;
  2150. background:inherit;
  2151. background-color:rgba(255, 255, 255, 0);
  2152. border:none;
  2153. border-radius:0px;
  2154. -moz-box-shadow:none;
  2155. -webkit-box-shadow:none;
  2156. box-shadow:none;
  2157. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2158. font-weight:500;
  2159. font-style:normal;
  2160. font-size:18px;
  2161. }
  2162. #u868 {
  2163. border-width:0px;
  2164. position:absolute;
  2165. left:671px;
  2166. top:212px;
  2167. width:9px;
  2168. height:25px;
  2169. display:flex;
  2170. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2171. font-weight:500;
  2172. font-style:normal;
  2173. font-size:18px;
  2174. }
  2175. #u868 .text {
  2176. position:absolute;
  2177. align-self:flex-start;
  2178. padding:0px 0px 0px 0px;
  2179. box-sizing:border-box;
  2180. width:100%;
  2181. }
  2182. #u868_text {
  2183. border-width:0px;
  2184. word-wrap:break-word;
  2185. text-transform:none;
  2186. }
  2187. #u869_div {
  2188. border-width:0px;
  2189. position:absolute;
  2190. left:0px;
  2191. top:0px;
  2192. width:59px;
  2193. height:25px;
  2194. background:inherit;
  2195. background-color:rgba(255, 255, 255, 0);
  2196. border:none;
  2197. border-radius:0px;
  2198. -moz-box-shadow:none;
  2199. -webkit-box-shadow:none;
  2200. box-shadow:none;
  2201. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2202. font-weight:500;
  2203. font-style:normal;
  2204. font-size:18px;
  2205. }
  2206. #u869 {
  2207. border-width:0px;
  2208. position:absolute;
  2209. left:698px;
  2210. top:212px;
  2211. width:59px;
  2212. height:25px;
  2213. display:flex;
  2214. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2215. font-weight:500;
  2216. font-style:normal;
  2217. font-size:18px;
  2218. }
  2219. #u869 .text {
  2220. position:absolute;
  2221. align-self:flex-start;
  2222. padding:0px 0px 0px 0px;
  2223. box-sizing:border-box;
  2224. width:100%;
  2225. }
  2226. #u869_text {
  2227. border-width:0px;
  2228. word-wrap:break-word;
  2229. text-transform:none;
  2230. }
  2231. #u870_div {
  2232. border-width:0px;
  2233. position:absolute;
  2234. left:0px;
  2235. top:0px;
  2236. width:13px;
  2237. height:25px;
  2238. background:inherit;
  2239. background-color:rgba(255, 255, 255, 0);
  2240. border:none;
  2241. border-radius:0px;
  2242. -moz-box-shadow:none;
  2243. -webkit-box-shadow:none;
  2244. box-shadow:none;
  2245. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2246. font-weight:500;
  2247. font-style:normal;
  2248. font-size:18px;
  2249. }
  2250. #u870 {
  2251. border-width:0px;
  2252. position:absolute;
  2253. left:671px;
  2254. top:252px;
  2255. width:13px;
  2256. height:25px;
  2257. display:flex;
  2258. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2259. font-weight:500;
  2260. font-style:normal;
  2261. font-size:18px;
  2262. }
  2263. #u870 .text {
  2264. position:absolute;
  2265. align-self:flex-start;
  2266. padding:0px 0px 0px 0px;
  2267. box-sizing:border-box;
  2268. width:100%;
  2269. }
  2270. #u870_text {
  2271. border-width:0px;
  2272. word-wrap:break-word;
  2273. text-transform:none;
  2274. }
  2275. #u871_div {
  2276. border-width:0px;
  2277. position:absolute;
  2278. left:0px;
  2279. top:0px;
  2280. width:59px;
  2281. height:25px;
  2282. background:inherit;
  2283. background-color:rgba(255, 255, 255, 0);
  2284. border:none;
  2285. border-radius:0px;
  2286. -moz-box-shadow:none;
  2287. -webkit-box-shadow:none;
  2288. box-shadow:none;
  2289. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2290. font-weight:500;
  2291. font-style:normal;
  2292. font-size:18px;
  2293. }
  2294. #u871 {
  2295. border-width:0px;
  2296. position:absolute;
  2297. left:698px;
  2298. top:252px;
  2299. width:59px;
  2300. height:25px;
  2301. display:flex;
  2302. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2303. font-weight:500;
  2304. font-style:normal;
  2305. font-size:18px;
  2306. }
  2307. #u871 .text {
  2308. position:absolute;
  2309. align-self:flex-start;
  2310. padding:0px 0px 0px 0px;
  2311. box-sizing:border-box;
  2312. width:100%;
  2313. }
  2314. #u871_text {
  2315. border-width:0px;
  2316. word-wrap:break-word;
  2317. text-transform:none;
  2318. }
  2319. #u872_div {
  2320. border-width:0px;
  2321. position:absolute;
  2322. left:0px;
  2323. top:0px;
  2324. width:13px;
  2325. height:25px;
  2326. background:inherit;
  2327. background-color:rgba(255, 255, 255, 0);
  2328. border:none;
  2329. border-radius:0px;
  2330. -moz-box-shadow:none;
  2331. -webkit-box-shadow:none;
  2332. box-shadow:none;
  2333. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2334. font-weight:500;
  2335. font-style:normal;
  2336. font-size:18px;
  2337. }
  2338. #u872 {
  2339. border-width:0px;
  2340. position:absolute;
  2341. left:671px;
  2342. top:292px;
  2343. width:13px;
  2344. height:25px;
  2345. display:flex;
  2346. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2347. font-weight:500;
  2348. font-style:normal;
  2349. font-size:18px;
  2350. }
  2351. #u872 .text {
  2352. position:absolute;
  2353. align-self:flex-start;
  2354. padding:0px 0px 0px 0px;
  2355. box-sizing:border-box;
  2356. width:100%;
  2357. }
  2358. #u872_text {
  2359. border-width:0px;
  2360. word-wrap:break-word;
  2361. text-transform:none;
  2362. }
  2363. #u873_div {
  2364. border-width:0px;
  2365. position:absolute;
  2366. left:0px;
  2367. top:0px;
  2368. width:59px;
  2369. height:25px;
  2370. background:inherit;
  2371. background-color:rgba(255, 255, 255, 0);
  2372. border:none;
  2373. border-radius:0px;
  2374. -moz-box-shadow:none;
  2375. -webkit-box-shadow:none;
  2376. box-shadow:none;
  2377. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2378. font-weight:500;
  2379. font-style:normal;
  2380. font-size:18px;
  2381. }
  2382. #u873 {
  2383. border-width:0px;
  2384. position:absolute;
  2385. left:698px;
  2386. top:292px;
  2387. width:59px;
  2388. height:25px;
  2389. display:flex;
  2390. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2391. font-weight:500;
  2392. font-style:normal;
  2393. font-size:18px;
  2394. }
  2395. #u873 .text {
  2396. position:absolute;
  2397. align-self:flex-start;
  2398. padding:0px 0px 0px 0px;
  2399. box-sizing:border-box;
  2400. width:100%;
  2401. }
  2402. #u873_text {
  2403. border-width:0px;
  2404. word-wrap:break-word;
  2405. text-transform:none;
  2406. }
  2407. #u874_div {
  2408. border-width:0px;
  2409. position:absolute;
  2410. left:0px;
  2411. top:0px;
  2412. width:429px;
  2413. height:400px;
  2414. background:inherit;
  2415. background-color:rgba(255, 255, 255, 1);
  2416. border:none;
  2417. border-radius:4px;
  2418. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  2419. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  2420. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  2421. }
  2422. #u874 {
  2423. border-width:0px;
  2424. position:absolute;
  2425. left:1141px;
  2426. top:146px;
  2427. width:429px;
  2428. height:400px;
  2429. display:flex;
  2430. }
  2431. #u874 .text {
  2432. position:absolute;
  2433. align-self:center;
  2434. padding:2px 2px 2px 2px;
  2435. box-sizing:border-box;
  2436. width:100%;
  2437. }
  2438. #u874_text {
  2439. border-width:0px;
  2440. word-wrap:break-word;
  2441. text-transform:none;
  2442. visibility:hidden;
  2443. }
  2444. #u875_div {
  2445. border-width:0px;
  2446. position:absolute;
  2447. left:0px;
  2448. top:0px;
  2449. width:109px;
  2450. height:25px;
  2451. background:inherit;
  2452. background-color:rgba(255, 255, 255, 0);
  2453. border:none;
  2454. border-radius:0px;
  2455. -moz-box-shadow:none;
  2456. -webkit-box-shadow:none;
  2457. box-shadow:none;
  2458. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2459. font-weight:400;
  2460. font-style:normal;
  2461. font-size:18px;
  2462. }
  2463. #u875 {
  2464. border-width:0px;
  2465. position:absolute;
  2466. left:1167px;
  2467. top:166px;
  2468. width:109px;
  2469. height:25px;
  2470. display:flex;
  2471. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2472. font-weight:400;
  2473. font-style:normal;
  2474. font-size:18px;
  2475. }
  2476. #u875 .text {
  2477. position:absolute;
  2478. align-self:flex-start;
  2479. padding:0px 0px 0px 0px;
  2480. box-sizing:border-box;
  2481. width:100%;
  2482. }
  2483. #u875_text {
  2484. border-width:0px;
  2485. white-space:nowrap;
  2486. text-transform:none;
  2487. }
  2488. #u876_div {
  2489. border-width:0px;
  2490. position:absolute;
  2491. left:0px;
  2492. top:0px;
  2493. width:368px;
  2494. height:280px;
  2495. background:inherit;
  2496. background-color:rgba(255, 255, 255, 0);
  2497. border:none;
  2498. border-radius:0px;
  2499. -moz-box-shadow:none;
  2500. -webkit-box-shadow:none;
  2501. box-shadow:none;
  2502. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2503. font-weight:400;
  2504. font-style:normal;
  2505. font-size:18px;
  2506. line-height:40px;
  2507. }
  2508. #u876 {
  2509. border-width:0px;
  2510. position:absolute;
  2511. left:1156px;
  2512. top:204px;
  2513. width:368px;
  2514. height:280px;
  2515. display:flex;
  2516. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2517. font-weight:400;
  2518. font-style:normal;
  2519. font-size:18px;
  2520. line-height:40px;
  2521. }
  2522. #u876 .text {
  2523. position:absolute;
  2524. align-self:flex-start;
  2525. padding:0px 0px 0px 0px;
  2526. box-sizing:border-box;
  2527. width:100%;
  2528. }
  2529. #u876_text {
  2530. border-width:0px;
  2531. word-wrap:break-word;
  2532. text-transform:none;
  2533. }
  2534. #u877_input {
  2535. position:absolute;
  2536. left:0px;
  2537. top:0px;
  2538. width:260px;
  2539. height:80px;
  2540. padding:2px 2px 2px 2px;
  2541. font-family:'ArialMT', 'Arial', sans-serif;
  2542. font-weight:400;
  2543. font-style:normal;
  2544. font-size:28px;
  2545. letter-spacing:normal;
  2546. color:#000000;
  2547. vertical-align:none;
  2548. text-align:left;
  2549. text-transform:none;
  2550. background-color:transparent;
  2551. border-color:transparent;
  2552. }
  2553. #u877_input.disabled {
  2554. position:absolute;
  2555. left:0px;
  2556. top:0px;
  2557. width:260px;
  2558. height:80px;
  2559. padding:2px 2px 2px 2px;
  2560. font-family:'ArialMT', 'Arial', sans-serif;
  2561. font-weight:400;
  2562. font-style:normal;
  2563. font-size:28px;
  2564. letter-spacing:normal;
  2565. color:#000000;
  2566. vertical-align:none;
  2567. text-align:left;
  2568. text-transform:none;
  2569. background-color:transparent;
  2570. border-color:transparent;
  2571. }
  2572. #u877_div {
  2573. border-width:0px;
  2574. position:absolute;
  2575. left:0px;
  2576. top:0px;
  2577. width:260px;
  2578. height:80px;
  2579. background:inherit;
  2580. background-color:rgba(255, 255, 255, 0);
  2581. border:none;
  2582. border-radius:0px;
  2583. -moz-box-shadow:none;
  2584. -webkit-box-shadow:none;
  2585. box-shadow:none;
  2586. font-size:28px;
  2587. }
  2588. #u877 {
  2589. border-width:0px;
  2590. position:absolute;
  2591. left:670px;
  2592. top:50px;
  2593. width:260px;
  2594. height:80px;
  2595. display:flex;
  2596. font-size:28px;
  2597. }
  2598. #u877 .text {
  2599. position:absolute;
  2600. align-self:flex-start;
  2601. padding:2px 2px 2px 2px;
  2602. box-sizing:border-box;
  2603. width:100%;
  2604. }
  2605. #u877_div.disabled {
  2606. border-width:0px;
  2607. position:absolute;
  2608. left:0px;
  2609. top:0px;
  2610. width:260px;
  2611. height:80px;
  2612. background:inherit;
  2613. background-color:rgba(240, 240, 240, 1);
  2614. border:none;
  2615. border-radius:0px;
  2616. -moz-box-shadow:none;
  2617. -webkit-box-shadow:none;
  2618. box-shadow:none;
  2619. font-size:28px;
  2620. }
  2621. #u877.disabled {
  2622. }
  2623. .u877_input_option {
  2624. font-size:28px;
  2625. }
  2626. #u878_div {
  2627. border-width:0px;
  2628. position:absolute;
  2629. left:0px;
  2630. top:0px;
  2631. width:429px;
  2632. height:400px;
  2633. background:inherit;
  2634. background-color:rgba(255, 255, 255, 1);
  2635. border:none;
  2636. border-radius:4px;
  2637. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  2638. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  2639. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  2640. }
  2641. #u878 {
  2642. border-width:0px;
  2643. position:absolute;
  2644. left:1141px;
  2645. top:566px;
  2646. width:429px;
  2647. height:400px;
  2648. display:flex;
  2649. }
  2650. #u878 .text {
  2651. position:absolute;
  2652. align-self:center;
  2653. padding:2px 2px 2px 2px;
  2654. box-sizing:border-box;
  2655. width:100%;
  2656. }
  2657. #u878_text {
  2658. border-width:0px;
  2659. word-wrap:break-word;
  2660. text-transform:none;
  2661. visibility:hidden;
  2662. }
  2663. #u879_div {
  2664. border-width:0px;
  2665. position:absolute;
  2666. left:0px;
  2667. top:0px;
  2668. width:109px;
  2669. height:25px;
  2670. background:inherit;
  2671. background-color:rgba(255, 255, 255, 0);
  2672. border:none;
  2673. border-radius:0px;
  2674. -moz-box-shadow:none;
  2675. -webkit-box-shadow:none;
  2676. box-shadow:none;
  2677. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2678. font-weight:400;
  2679. font-style:normal;
  2680. font-size:18px;
  2681. }
  2682. #u879 {
  2683. border-width:0px;
  2684. position:absolute;
  2685. left:1167px;
  2686. top:589px;
  2687. width:109px;
  2688. height:25px;
  2689. display:flex;
  2690. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2691. font-weight:400;
  2692. font-style:normal;
  2693. font-size:18px;
  2694. }
  2695. #u879 .text {
  2696. position:absolute;
  2697. align-self:flex-start;
  2698. padding:0px 0px 0px 0px;
  2699. box-sizing:border-box;
  2700. width:100%;
  2701. }
  2702. #u879_text {
  2703. border-width:0px;
  2704. white-space:nowrap;
  2705. text-transform:none;
  2706. }
  2707. #u880_div {
  2708. border-width:0px;
  2709. position:absolute;
  2710. left:0px;
  2711. top:0px;
  2712. width:368px;
  2713. height:280px;
  2714. background:inherit;
  2715. background-color:rgba(255, 255, 255, 0);
  2716. border:none;
  2717. border-radius:0px;
  2718. -moz-box-shadow:none;
  2719. -webkit-box-shadow:none;
  2720. box-shadow:none;
  2721. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2722. font-weight:400;
  2723. font-style:normal;
  2724. font-size:18px;
  2725. line-height:40px;
  2726. }
  2727. #u880 {
  2728. border-width:0px;
  2729. position:absolute;
  2730. left:1156px;
  2731. top:634px;
  2732. width:368px;
  2733. height:280px;
  2734. display:flex;
  2735. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2736. font-weight:400;
  2737. font-style:normal;
  2738. font-size:18px;
  2739. line-height:40px;
  2740. }
  2741. #u880 .text {
  2742. position:absolute;
  2743. align-self:flex-start;
  2744. padding:0px 0px 0px 0px;
  2745. box-sizing:border-box;
  2746. width:100%;
  2747. }
  2748. #u880_text {
  2749. border-width:0px;
  2750. word-wrap:break-word;
  2751. text-transform:none;
  2752. }
  2753. #u881 {
  2754. border-width:0px;
  2755. position:absolute;
  2756. left:0px;
  2757. top:0px;
  2758. width:0px;
  2759. height:0px;
  2760. }
  2761. #u882_div {
  2762. border-width:0px;
  2763. position:absolute;
  2764. left:0px;
  2765. top:0px;
  2766. width:974px;
  2767. height:288px;
  2768. background:inherit;
  2769. background-color:rgba(255, 255, 255, 1);
  2770. border:none;
  2771. border-radius:4px;
  2772. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  2773. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  2774. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  2775. }
  2776. #u882 {
  2777. border-width:0px;
  2778. position:absolute;
  2779. left:145px;
  2780. top:406px;
  2781. width:974px;
  2782. height:288px;
  2783. display:flex;
  2784. }
  2785. #u882 .text {
  2786. position:absolute;
  2787. align-self:center;
  2788. padding:2px 2px 2px 2px;
  2789. box-sizing:border-box;
  2790. width:100%;
  2791. }
  2792. #u882_text {
  2793. border-width:0px;
  2794. word-wrap:break-word;
  2795. text-transform:none;
  2796. visibility:hidden;
  2797. }
  2798. #u883 {
  2799. border-width:0px;
  2800. position:absolute;
  2801. left:0px;
  2802. top:0px;
  2803. width:0px;
  2804. height:0px;
  2805. }
  2806. #u884_div {
  2807. border-width:0px;
  2808. position:absolute;
  2809. left:0px;
  2810. top:0px;
  2811. width:13px;
  2812. height:155px;
  2813. background:inherit;
  2814. background-color:rgba(204, 153, 255, 1);
  2815. border:none;
  2816. border-radius:0px;
  2817. -moz-box-shadow:none;
  2818. -webkit-box-shadow:none;
  2819. box-shadow:none;
  2820. }
  2821. #u884 {
  2822. border-width:0px;
  2823. position:absolute;
  2824. left:211px;
  2825. top:496px;
  2826. width:13px;
  2827. height:155px;
  2828. display:flex;
  2829. }
  2830. #u884 .text {
  2831. position:absolute;
  2832. align-self:center;
  2833. padding:2px 2px 2px 2px;
  2834. box-sizing:border-box;
  2835. width:100%;
  2836. }
  2837. #u884_text {
  2838. border-width:0px;
  2839. word-wrap:break-word;
  2840. text-transform:none;
  2841. visibility:hidden;
  2842. }
  2843. #u885_div {
  2844. border-width:0px;
  2845. position:absolute;
  2846. left:0px;
  2847. top:0px;
  2848. width:23px;
  2849. height:14px;
  2850. background:inherit;
  2851. background-color:rgba(255, 255, 255, 0);
  2852. border:none;
  2853. border-radius:0px;
  2854. -moz-box-shadow:none;
  2855. -webkit-box-shadow:none;
  2856. box-shadow:none;
  2857. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2858. font-weight:400;
  2859. font-style:normal;
  2860. font-size:10px;
  2861. }
  2862. #u885 {
  2863. border-width:0px;
  2864. position:absolute;
  2865. left:206px;
  2866. top:651px;
  2867. width:23px;
  2868. height:14px;
  2869. display:flex;
  2870. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2871. font-weight:400;
  2872. font-style:normal;
  2873. font-size:10px;
  2874. }
  2875. #u885 .text {
  2876. position:absolute;
  2877. align-self:flex-start;
  2878. padding:0px 0px 0px 0px;
  2879. box-sizing:border-box;
  2880. width:100%;
  2881. }
  2882. #u885_text {
  2883. border-width:0px;
  2884. white-space:nowrap;
  2885. text-transform:none;
  2886. }
  2887. #u886 {
  2888. border-width:0px;
  2889. position:absolute;
  2890. left:0px;
  2891. top:0px;
  2892. width:0px;
  2893. height:0px;
  2894. }
  2895. #u887_div {
  2896. border-width:0px;
  2897. position:absolute;
  2898. left:0px;
  2899. top:0px;
  2900. width:19px;
  2901. height:14px;
  2902. background:inherit;
  2903. background-color:rgba(255, 255, 255, 0);
  2904. border:none;
  2905. border-radius:0px;
  2906. -moz-box-shadow:none;
  2907. -webkit-box-shadow:none;
  2908. box-shadow:none;
  2909. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2910. font-weight:400;
  2911. font-style:normal;
  2912. font-size:10px;
  2913. }
  2914. #u887 {
  2915. border-width:0px;
  2916. position:absolute;
  2917. left:180px;
  2918. top:478px;
  2919. width:19px;
  2920. height:14px;
  2921. display:flex;
  2922. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2923. font-weight:400;
  2924. font-style:normal;
  2925. font-size:10px;
  2926. }
  2927. #u887 .text {
  2928. position:absolute;
  2929. align-self:flex-start;
  2930. padding:0px 0px 0px 0px;
  2931. box-sizing:border-box;
  2932. width:100%;
  2933. }
  2934. #u887_text {
  2935. border-width:0px;
  2936. white-space:nowrap;
  2937. text-transform:none;
  2938. }
  2939. #u888_div {
  2940. border-width:0px;
  2941. position:absolute;
  2942. left:0px;
  2943. top:0px;
  2944. width:19px;
  2945. height:14px;
  2946. background:inherit;
  2947. background-color:rgba(255, 255, 255, 0);
  2948. border:none;
  2949. border-radius:0px;
  2950. -moz-box-shadow:none;
  2951. -webkit-box-shadow:none;
  2952. box-shadow:none;
  2953. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2954. font-weight:400;
  2955. font-style:normal;
  2956. font-size:10px;
  2957. }
  2958. #u888 {
  2959. border-width:0px;
  2960. position:absolute;
  2961. left:180px;
  2962. top:511px;
  2963. width:19px;
  2964. height:14px;
  2965. display:flex;
  2966. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2967. font-weight:400;
  2968. font-style:normal;
  2969. font-size:10px;
  2970. }
  2971. #u888 .text {
  2972. position:absolute;
  2973. align-self:flex-start;
  2974. padding:0px 0px 0px 0px;
  2975. box-sizing:border-box;
  2976. width:100%;
  2977. }
  2978. #u888_text {
  2979. border-width:0px;
  2980. white-space:nowrap;
  2981. text-transform:none;
  2982. }
  2983. #u889_div {
  2984. border-width:0px;
  2985. position:absolute;
  2986. left:0px;
  2987. top:0px;
  2988. width:19px;
  2989. height:14px;
  2990. background:inherit;
  2991. background-color:rgba(255, 255, 255, 0);
  2992. border:none;
  2993. border-radius:0px;
  2994. -moz-box-shadow:none;
  2995. -webkit-box-shadow:none;
  2996. box-shadow:none;
  2997. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2998. font-weight:400;
  2999. font-style:normal;
  3000. font-size:10px;
  3001. }
  3002. #u889 {
  3003. border-width:0px;
  3004. position:absolute;
  3005. left:180px;
  3006. top:544px;
  3007. width:19px;
  3008. height:14px;
  3009. display:flex;
  3010. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3011. font-weight:400;
  3012. font-style:normal;
  3013. font-size:10px;
  3014. }
  3015. #u889 .text {
  3016. position:absolute;
  3017. align-self:flex-start;
  3018. padding:0px 0px 0px 0px;
  3019. box-sizing:border-box;
  3020. width:100%;
  3021. }
  3022. #u889_text {
  3023. border-width:0px;
  3024. white-space:nowrap;
  3025. text-transform:none;
  3026. }
  3027. #u890_div {
  3028. border-width:0px;
  3029. position:absolute;
  3030. left:0px;
  3031. top:0px;
  3032. width:19px;
  3033. height:14px;
  3034. background:inherit;
  3035. background-color:rgba(255, 255, 255, 0);
  3036. border:none;
  3037. border-radius:0px;
  3038. -moz-box-shadow:none;
  3039. -webkit-box-shadow:none;
  3040. box-shadow:none;
  3041. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3042. font-weight:400;
  3043. font-style:normal;
  3044. font-size:10px;
  3045. }
  3046. #u890 {
  3047. border-width:0px;
  3048. position:absolute;
  3049. left:180px;
  3050. top:576px;
  3051. width:19px;
  3052. height:14px;
  3053. display:flex;
  3054. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3055. font-weight:400;
  3056. font-style:normal;
  3057. font-size:10px;
  3058. }
  3059. #u890 .text {
  3060. position:absolute;
  3061. align-self:flex-start;
  3062. padding:0px 0px 0px 0px;
  3063. box-sizing:border-box;
  3064. width:100%;
  3065. }
  3066. #u890_text {
  3067. border-width:0px;
  3068. white-space:nowrap;
  3069. text-transform:none;
  3070. }
  3071. #u891_div {
  3072. border-width:0px;
  3073. position:absolute;
  3074. left:0px;
  3075. top:0px;
  3076. width:17px;
  3077. height:14px;
  3078. background:inherit;
  3079. background-color:rgba(255, 255, 255, 0);
  3080. border:none;
  3081. border-radius:0px;
  3082. -moz-box-shadow:none;
  3083. -webkit-box-shadow:none;
  3084. box-shadow:none;
  3085. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3086. font-weight:400;
  3087. font-style:normal;
  3088. font-size:10px;
  3089. }
  3090. #u891 {
  3091. border-width:0px;
  3092. position:absolute;
  3093. left:180px;
  3094. top:609px;
  3095. width:17px;
  3096. height:14px;
  3097. display:flex;
  3098. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3099. font-weight:400;
  3100. font-style:normal;
  3101. font-size:10px;
  3102. }
  3103. #u891 .text {
  3104. position:absolute;
  3105. align-self:flex-start;
  3106. padding:0px 0px 0px 0px;
  3107. box-sizing:border-box;
  3108. width:100%;
  3109. }
  3110. #u891_text {
  3111. border-width:0px;
  3112. white-space:nowrap;
  3113. text-transform:none;
  3114. }
  3115. #u892_div {
  3116. border-width:0px;
  3117. position:absolute;
  3118. left:0px;
  3119. top:0px;
  3120. width:7px;
  3121. height:14px;
  3122. background:inherit;
  3123. background-color:rgba(255, 255, 255, 0);
  3124. border:none;
  3125. border-radius:0px;
  3126. -moz-box-shadow:none;
  3127. -webkit-box-shadow:none;
  3128. box-shadow:none;
  3129. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3130. font-weight:400;
  3131. font-style:normal;
  3132. font-size:10px;
  3133. }
  3134. #u892 {
  3135. border-width:0px;
  3136. position:absolute;
  3137. left:180px;
  3138. top:642px;
  3139. width:7px;
  3140. height:14px;
  3141. display:flex;
  3142. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3143. font-weight:400;
  3144. font-style:normal;
  3145. font-size:10px;
  3146. }
  3147. #u892 .text {
  3148. position:absolute;
  3149. align-self:flex-start;
  3150. padding:0px 0px 0px 0px;
  3151. box-sizing:border-box;
  3152. width:100%;
  3153. }
  3154. #u892_text {
  3155. border-width:0px;
  3156. white-space:nowrap;
  3157. text-transform:none;
  3158. }
  3159. #u893 {
  3160. border-width:0px;
  3161. position:absolute;
  3162. left:0px;
  3163. top:0px;
  3164. width:0px;
  3165. height:0px;
  3166. }
  3167. #u894_div {
  3168. border-width:0px;
  3169. position:absolute;
  3170. left:0px;
  3171. top:0px;
  3172. width:13px;
  3173. height:116px;
  3174. background:inherit;
  3175. background-color:rgba(204, 153, 255, 1);
  3176. border:none;
  3177. border-radius:0px;
  3178. -moz-box-shadow:none;
  3179. -webkit-box-shadow:none;
  3180. box-shadow:none;
  3181. }
  3182. #u894 {
  3183. border-width:0px;
  3184. position:absolute;
  3185. left:239px;
  3186. top:535px;
  3187. width:13px;
  3188. height:116px;
  3189. display:flex;
  3190. }
  3191. #u894 .text {
  3192. position:absolute;
  3193. align-self:center;
  3194. padding:2px 2px 2px 2px;
  3195. box-sizing:border-box;
  3196. width:100%;
  3197. }
  3198. #u894_text {
  3199. border-width:0px;
  3200. word-wrap:break-word;
  3201. text-transform:none;
  3202. visibility:hidden;
  3203. }
  3204. #u895_div {
  3205. border-width:0px;
  3206. position:absolute;
  3207. left:0px;
  3208. top:0px;
  3209. width:25px;
  3210. height:14px;
  3211. background:inherit;
  3212. background-color:rgba(255, 255, 255, 0);
  3213. border:none;
  3214. border-radius:0px;
  3215. -moz-box-shadow:none;
  3216. -webkit-box-shadow:none;
  3217. box-shadow:none;
  3218. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3219. font-weight:400;
  3220. font-style:normal;
  3221. font-size:10px;
  3222. }
  3223. #u895 {
  3224. border-width:0px;
  3225. position:absolute;
  3226. left:234px;
  3227. top:651px;
  3228. width:25px;
  3229. height:14px;
  3230. display:flex;
  3231. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3232. font-weight:400;
  3233. font-style:normal;
  3234. font-size:10px;
  3235. }
  3236. #u895 .text {
  3237. position:absolute;
  3238. align-self:flex-start;
  3239. padding:0px 0px 0px 0px;
  3240. box-sizing:border-box;
  3241. width:100%;
  3242. }
  3243. #u895_text {
  3244. border-width:0px;
  3245. white-space:nowrap;
  3246. text-transform:none;
  3247. }
  3248. #u896 {
  3249. border-width:0px;
  3250. position:absolute;
  3251. left:0px;
  3252. top:0px;
  3253. width:0px;
  3254. height:0px;
  3255. }
  3256. #u897_div {
  3257. border-width:0px;
  3258. position:absolute;
  3259. left:0px;
  3260. top:0px;
  3261. width:13px;
  3262. height:146px;
  3263. background:inherit;
  3264. background-color:rgba(204, 153, 255, 1);
  3265. border:none;
  3266. border-radius:0px;
  3267. -moz-box-shadow:none;
  3268. -webkit-box-shadow:none;
  3269. box-shadow:none;
  3270. }
  3271. #u897 {
  3272. border-width:0px;
  3273. position:absolute;
  3274. left:269px;
  3275. top:505px;
  3276. width:13px;
  3277. height:146px;
  3278. display:flex;
  3279. }
  3280. #u897 .text {
  3281. position:absolute;
  3282. align-self:center;
  3283. padding:2px 2px 2px 2px;
  3284. box-sizing:border-box;
  3285. width:100%;
  3286. }
  3287. #u897_text {
  3288. border-width:0px;
  3289. word-wrap:break-word;
  3290. text-transform:none;
  3291. visibility:hidden;
  3292. }
  3293. #u898_div {
  3294. border-width:0px;
  3295. position:absolute;
  3296. left:0px;
  3297. top:0px;
  3298. width:25px;
  3299. height:14px;
  3300. background:inherit;
  3301. background-color:rgba(255, 255, 255, 0);
  3302. border:none;
  3303. border-radius:0px;
  3304. -moz-box-shadow:none;
  3305. -webkit-box-shadow:none;
  3306. box-shadow:none;
  3307. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3308. font-weight:400;
  3309. font-style:normal;
  3310. font-size:10px;
  3311. }
  3312. #u898 {
  3313. border-width:0px;
  3314. position:absolute;
  3315. left:264px;
  3316. top:651px;
  3317. width:25px;
  3318. height:14px;
  3319. display:flex;
  3320. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3321. font-weight:400;
  3322. font-style:normal;
  3323. font-size:10px;
  3324. }
  3325. #u898 .text {
  3326. position:absolute;
  3327. align-self:flex-start;
  3328. padding:0px 0px 0px 0px;
  3329. box-sizing:border-box;
  3330. width:100%;
  3331. }
  3332. #u898_text {
  3333. border-width:0px;
  3334. white-space:nowrap;
  3335. text-transform:none;
  3336. }
  3337. #u899 {
  3338. border-width:0px;
  3339. position:absolute;
  3340. left:0px;
  3341. top:0px;
  3342. width:0px;
  3343. height:0px;
  3344. }
  3345. #u900_div {
  3346. border-width:0px;
  3347. position:absolute;
  3348. left:0px;
  3349. top:0px;
  3350. width:13px;
  3351. height:111px;
  3352. background:inherit;
  3353. background-color:rgba(204, 153, 255, 1);
  3354. border:none;
  3355. border-radius:0px;
  3356. -moz-box-shadow:none;
  3357. -webkit-box-shadow:none;
  3358. box-shadow:none;
  3359. }
  3360. #u900 {
  3361. border-width:0px;
  3362. position:absolute;
  3363. left:300px;
  3364. top:540px;
  3365. width:13px;
  3366. height:111px;
  3367. display:flex;
  3368. }
  3369. #u900 .text {
  3370. position:absolute;
  3371. align-self:center;
  3372. padding:2px 2px 2px 2px;
  3373. box-sizing:border-box;
  3374. width:100%;
  3375. }
  3376. #u900_text {
  3377. border-width:0px;
  3378. word-wrap:break-word;
  3379. text-transform:none;
  3380. visibility:hidden;
  3381. }
  3382. #u901_div {
  3383. border-width:0px;
  3384. position:absolute;
  3385. left:0px;
  3386. top:0px;
  3387. width:25px;
  3388. height:14px;
  3389. background:inherit;
  3390. background-color:rgba(255, 255, 255, 0);
  3391. border:none;
  3392. border-radius:0px;
  3393. -moz-box-shadow:none;
  3394. -webkit-box-shadow:none;
  3395. box-shadow:none;
  3396. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3397. font-weight:400;
  3398. font-style:normal;
  3399. font-size:10px;
  3400. }
  3401. #u901 {
  3402. border-width:0px;
  3403. position:absolute;
  3404. left:295px;
  3405. top:651px;
  3406. width:25px;
  3407. height:14px;
  3408. display:flex;
  3409. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3410. font-weight:400;
  3411. font-style:normal;
  3412. font-size:10px;
  3413. }
  3414. #u901 .text {
  3415. position:absolute;
  3416. align-self:flex-start;
  3417. padding:0px 0px 0px 0px;
  3418. box-sizing:border-box;
  3419. width:100%;
  3420. }
  3421. #u901_text {
  3422. border-width:0px;
  3423. white-space:nowrap;
  3424. text-transform:none;
  3425. }
  3426. #u902 {
  3427. border-width:0px;
  3428. position:absolute;
  3429. left:0px;
  3430. top:0px;
  3431. width:0px;
  3432. height:0px;
  3433. }
  3434. #u903_div {
  3435. border-width:0px;
  3436. position:absolute;
  3437. left:0px;
  3438. top:0px;
  3439. width:13px;
  3440. height:55px;
  3441. background:inherit;
  3442. background-color:rgba(204, 153, 255, 1);
  3443. border:none;
  3444. border-radius:0px;
  3445. -moz-box-shadow:none;
  3446. -webkit-box-shadow:none;
  3447. box-shadow:none;
  3448. }
  3449. #u903 {
  3450. border-width:0px;
  3451. position:absolute;
  3452. left:330px;
  3453. top:596px;
  3454. width:13px;
  3455. height:55px;
  3456. display:flex;
  3457. }
  3458. #u903 .text {
  3459. position:absolute;
  3460. align-self:center;
  3461. padding:2px 2px 2px 2px;
  3462. box-sizing:border-box;
  3463. width:100%;
  3464. }
  3465. #u903_text {
  3466. border-width:0px;
  3467. word-wrap:break-word;
  3468. text-transform:none;
  3469. visibility:hidden;
  3470. }
  3471. #u904_div {
  3472. border-width:0px;
  3473. position:absolute;
  3474. left:0px;
  3475. top:0px;
  3476. width:25px;
  3477. height:14px;
  3478. background:inherit;
  3479. background-color:rgba(255, 255, 255, 0);
  3480. border:none;
  3481. border-radius:0px;
  3482. -moz-box-shadow:none;
  3483. -webkit-box-shadow:none;
  3484. box-shadow:none;
  3485. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3486. font-weight:400;
  3487. font-style:normal;
  3488. font-size:10px;
  3489. }
  3490. #u904 {
  3491. border-width:0px;
  3492. position:absolute;
  3493. left:325px;
  3494. top:651px;
  3495. width:25px;
  3496. height:14px;
  3497. display:flex;
  3498. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3499. font-weight:400;
  3500. font-style:normal;
  3501. font-size:10px;
  3502. }
  3503. #u904 .text {
  3504. position:absolute;
  3505. align-self:flex-start;
  3506. padding:0px 0px 0px 0px;
  3507. box-sizing:border-box;
  3508. width:100%;
  3509. }
  3510. #u904_text {
  3511. border-width:0px;
  3512. white-space:nowrap;
  3513. text-transform:none;
  3514. }
  3515. #u905 {
  3516. border-width:0px;
  3517. position:absolute;
  3518. left:0px;
  3519. top:0px;
  3520. width:0px;
  3521. height:0px;
  3522. }
  3523. #u906_div {
  3524. border-width:0px;
  3525. position:absolute;
  3526. left:0px;
  3527. top:0px;
  3528. width:13px;
  3529. height:33px;
  3530. background:inherit;
  3531. background-color:rgba(204, 153, 255, 1);
  3532. border:none;
  3533. border-radius:0px;
  3534. -moz-box-shadow:none;
  3535. -webkit-box-shadow:none;
  3536. box-shadow:none;
  3537. }
  3538. #u906 {
  3539. border-width:0px;
  3540. position:absolute;
  3541. left:360px;
  3542. top:618px;
  3543. width:13px;
  3544. height:33px;
  3545. display:flex;
  3546. }
  3547. #u906 .text {
  3548. position:absolute;
  3549. align-self:center;
  3550. padding:2px 2px 2px 2px;
  3551. box-sizing:border-box;
  3552. width:100%;
  3553. }
  3554. #u906_text {
  3555. border-width:0px;
  3556. word-wrap:break-word;
  3557. text-transform:none;
  3558. visibility:hidden;
  3559. }
  3560. #u907_div {
  3561. border-width:0px;
  3562. position:absolute;
  3563. left:0px;
  3564. top:0px;
  3565. width:25px;
  3566. height:14px;
  3567. background:inherit;
  3568. background-color:rgba(255, 255, 255, 0);
  3569. border:none;
  3570. border-radius:0px;
  3571. -moz-box-shadow:none;
  3572. -webkit-box-shadow:none;
  3573. box-shadow:none;
  3574. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3575. font-weight:400;
  3576. font-style:normal;
  3577. font-size:10px;
  3578. }
  3579. #u907 {
  3580. border-width:0px;
  3581. position:absolute;
  3582. left:355px;
  3583. top:651px;
  3584. width:25px;
  3585. height:14px;
  3586. display:flex;
  3587. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3588. font-weight:400;
  3589. font-style:normal;
  3590. font-size:10px;
  3591. }
  3592. #u907 .text {
  3593. position:absolute;
  3594. align-self:flex-start;
  3595. padding:0px 0px 0px 0px;
  3596. box-sizing:border-box;
  3597. width:100%;
  3598. }
  3599. #u907_text {
  3600. border-width:0px;
  3601. white-space:nowrap;
  3602. text-transform:none;
  3603. }
  3604. #u908 {
  3605. border-width:0px;
  3606. position:absolute;
  3607. left:0px;
  3608. top:0px;
  3609. width:0px;
  3610. height:0px;
  3611. }
  3612. #u909_div {
  3613. border-width:0px;
  3614. position:absolute;
  3615. left:0px;
  3616. top:0px;
  3617. width:13px;
  3618. height:102px;
  3619. background:inherit;
  3620. background-color:rgba(204, 153, 255, 1);
  3621. border:none;
  3622. border-radius:0px;
  3623. -moz-box-shadow:none;
  3624. -webkit-box-shadow:none;
  3625. box-shadow:none;
  3626. }
  3627. #u909 {
  3628. border-width:0px;
  3629. position:absolute;
  3630. left:390px;
  3631. top:549px;
  3632. width:13px;
  3633. height:102px;
  3634. display:flex;
  3635. }
  3636. #u909 .text {
  3637. position:absolute;
  3638. align-self:center;
  3639. padding:2px 2px 2px 2px;
  3640. box-sizing:border-box;
  3641. width:100%;
  3642. }
  3643. #u909_text {
  3644. border-width:0px;
  3645. word-wrap:break-word;
  3646. text-transform:none;
  3647. visibility:hidden;
  3648. }
  3649. #u910_div {
  3650. border-width:0px;
  3651. position:absolute;
  3652. left:0px;
  3653. top:0px;
  3654. width:24px;
  3655. height:14px;
  3656. background:inherit;
  3657. background-color:rgba(255, 255, 255, 0);
  3658. border:none;
  3659. border-radius:0px;
  3660. -moz-box-shadow:none;
  3661. -webkit-box-shadow:none;
  3662. box-shadow:none;
  3663. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3664. font-weight:400;
  3665. font-style:normal;
  3666. font-size:10px;
  3667. }
  3668. #u910 {
  3669. border-width:0px;
  3670. position:absolute;
  3671. left:385px;
  3672. top:651px;
  3673. width:24px;
  3674. height:14px;
  3675. display:flex;
  3676. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3677. font-weight:400;
  3678. font-style:normal;
  3679. font-size:10px;
  3680. }
  3681. #u910 .text {
  3682. position:absolute;
  3683. align-self:flex-start;
  3684. padding:0px 0px 0px 0px;
  3685. box-sizing:border-box;
  3686. width:100%;
  3687. }
  3688. #u910_text {
  3689. border-width:0px;
  3690. white-space:nowrap;
  3691. text-transform:none;
  3692. }
  3693. #u911 {
  3694. border-width:0px;
  3695. position:absolute;
  3696. left:0px;
  3697. top:0px;
  3698. width:0px;
  3699. height:0px;
  3700. }
  3701. #u912_div {
  3702. border-width:0px;
  3703. position:absolute;
  3704. left:0px;
  3705. top:0px;
  3706. width:13px;
  3707. height:58px;
  3708. background:inherit;
  3709. background-color:rgba(204, 153, 255, 1);
  3710. border:none;
  3711. border-radius:0px;
  3712. -moz-box-shadow:none;
  3713. -webkit-box-shadow:none;
  3714. box-shadow:none;
  3715. }
  3716. #u912 {
  3717. border-width:0px;
  3718. position:absolute;
  3719. left:419px;
  3720. top:593px;
  3721. width:13px;
  3722. height:58px;
  3723. display:flex;
  3724. }
  3725. #u912 .text {
  3726. position:absolute;
  3727. align-self:center;
  3728. padding:2px 2px 2px 2px;
  3729. box-sizing:border-box;
  3730. width:100%;
  3731. }
  3732. #u912_text {
  3733. border-width:0px;
  3734. word-wrap:break-word;
  3735. text-transform:none;
  3736. visibility:hidden;
  3737. }
  3738. #u913_div {
  3739. border-width:0px;
  3740. position:absolute;
  3741. left:0px;
  3742. top:0px;
  3743. width:25px;
  3744. height:14px;
  3745. background:inherit;
  3746. background-color:rgba(255, 255, 255, 0);
  3747. border:none;
  3748. border-radius:0px;
  3749. -moz-box-shadow:none;
  3750. -webkit-box-shadow:none;
  3751. box-shadow:none;
  3752. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3753. font-weight:400;
  3754. font-style:normal;
  3755. font-size:10px;
  3756. }
  3757. #u913 {
  3758. border-width:0px;
  3759. position:absolute;
  3760. left:414px;
  3761. top:651px;
  3762. width:25px;
  3763. height:14px;
  3764. display:flex;
  3765. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3766. font-weight:400;
  3767. font-style:normal;
  3768. font-size:10px;
  3769. }
  3770. #u913 .text {
  3771. position:absolute;
  3772. align-self:flex-start;
  3773. padding:0px 0px 0px 0px;
  3774. box-sizing:border-box;
  3775. width:100%;
  3776. }
  3777. #u913_text {
  3778. border-width:0px;
  3779. white-space:nowrap;
  3780. text-transform:none;
  3781. }
  3782. #u914 {
  3783. border-width:0px;
  3784. position:absolute;
  3785. left:0px;
  3786. top:0px;
  3787. width:0px;
  3788. height:0px;
  3789. }
  3790. #u915_div {
  3791. border-width:0px;
  3792. position:absolute;
  3793. left:0px;
  3794. top:0px;
  3795. width:13px;
  3796. height:128px;
  3797. background:inherit;
  3798. background-color:rgba(204, 153, 255, 1);
  3799. border:none;
  3800. border-radius:0px;
  3801. -moz-box-shadow:none;
  3802. -webkit-box-shadow:none;
  3803. box-shadow:none;
  3804. }
  3805. #u915 {
  3806. border-width:0px;
  3807. position:absolute;
  3808. left:449px;
  3809. top:523px;
  3810. width:13px;
  3811. height:128px;
  3812. display:flex;
  3813. }
  3814. #u915 .text {
  3815. position:absolute;
  3816. align-self:center;
  3817. padding:2px 2px 2px 2px;
  3818. box-sizing:border-box;
  3819. width:100%;
  3820. }
  3821. #u915_text {
  3822. border-width:0px;
  3823. word-wrap:break-word;
  3824. text-transform:none;
  3825. visibility:hidden;
  3826. }
  3827. #u916_div {
  3828. border-width:0px;
  3829. position:absolute;
  3830. left:0px;
  3831. top:0px;
  3832. width:25px;
  3833. height:14px;
  3834. background:inherit;
  3835. background-color:rgba(255, 255, 255, 0);
  3836. border:none;
  3837. border-radius:0px;
  3838. -moz-box-shadow:none;
  3839. -webkit-box-shadow:none;
  3840. box-shadow:none;
  3841. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3842. font-weight:400;
  3843. font-style:normal;
  3844. font-size:10px;
  3845. }
  3846. #u916 {
  3847. border-width:0px;
  3848. position:absolute;
  3849. left:444px;
  3850. top:651px;
  3851. width:25px;
  3852. height:14px;
  3853. display:flex;
  3854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3855. font-weight:400;
  3856. font-style:normal;
  3857. font-size:10px;
  3858. }
  3859. #u916 .text {
  3860. position:absolute;
  3861. align-self:flex-start;
  3862. padding:0px 0px 0px 0px;
  3863. box-sizing:border-box;
  3864. width:100%;
  3865. }
  3866. #u916_text {
  3867. border-width:0px;
  3868. white-space:nowrap;
  3869. text-transform:none;
  3870. }
  3871. #u917 {
  3872. border-width:0px;
  3873. position:absolute;
  3874. left:0px;
  3875. top:0px;
  3876. width:0px;
  3877. height:0px;
  3878. }
  3879. #u918_div {
  3880. border-width:0px;
  3881. position:absolute;
  3882. left:0px;
  3883. top:0px;
  3884. width:13px;
  3885. height:80px;
  3886. background:inherit;
  3887. background-color:rgba(204, 153, 255, 1);
  3888. border:none;
  3889. border-radius:0px;
  3890. -moz-box-shadow:none;
  3891. -webkit-box-shadow:none;
  3892. box-shadow:none;
  3893. }
  3894. #u918 {
  3895. border-width:0px;
  3896. position:absolute;
  3897. left:480px;
  3898. top:571px;
  3899. width:13px;
  3900. height:80px;
  3901. display:flex;
  3902. }
  3903. #u918 .text {
  3904. position:absolute;
  3905. align-self:center;
  3906. padding:2px 2px 2px 2px;
  3907. box-sizing:border-box;
  3908. width:100%;
  3909. }
  3910. #u918_text {
  3911. border-width:0px;
  3912. word-wrap:break-word;
  3913. text-transform:none;
  3914. visibility:hidden;
  3915. }
  3916. #u919_div {
  3917. border-width:0px;
  3918. position:absolute;
  3919. left:0px;
  3920. top:0px;
  3921. width:23px;
  3922. height:14px;
  3923. background:inherit;
  3924. background-color:rgba(255, 255, 255, 0);
  3925. border:none;
  3926. border-radius:0px;
  3927. -moz-box-shadow:none;
  3928. -webkit-box-shadow:none;
  3929. box-shadow:none;
  3930. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3931. font-weight:400;
  3932. font-style:normal;
  3933. font-size:10px;
  3934. }
  3935. #u919 {
  3936. border-width:0px;
  3937. position:absolute;
  3938. left:475px;
  3939. top:651px;
  3940. width:23px;
  3941. height:14px;
  3942. display:flex;
  3943. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3944. font-weight:400;
  3945. font-style:normal;
  3946. font-size:10px;
  3947. }
  3948. #u919 .text {
  3949. position:absolute;
  3950. align-self:flex-start;
  3951. padding:0px 0px 0px 0px;
  3952. box-sizing:border-box;
  3953. width:100%;
  3954. }
  3955. #u919_text {
  3956. border-width:0px;
  3957. white-space:nowrap;
  3958. text-transform:none;
  3959. }
  3960. #u920 {
  3961. border-width:0px;
  3962. position:absolute;
  3963. left:0px;
  3964. top:0px;
  3965. width:0px;
  3966. height:0px;
  3967. }
  3968. #u921_div {
  3969. border-width:0px;
  3970. position:absolute;
  3971. left:0px;
  3972. top:0px;
  3973. width:13px;
  3974. height:84px;
  3975. background:inherit;
  3976. background-color:rgba(204, 153, 255, 1);
  3977. border:none;
  3978. border-radius:0px;
  3979. -moz-box-shadow:none;
  3980. -webkit-box-shadow:none;
  3981. box-shadow:none;
  3982. }
  3983. #u921 {
  3984. border-width:0px;
  3985. position:absolute;
  3986. left:508px;
  3987. top:567px;
  3988. width:13px;
  3989. height:84px;
  3990. display:flex;
  3991. }
  3992. #u921 .text {
  3993. position:absolute;
  3994. align-self:center;
  3995. padding:2px 2px 2px 2px;
  3996. box-sizing:border-box;
  3997. width:100%;
  3998. }
  3999. #u921_text {
  4000. border-width:0px;
  4001. word-wrap:break-word;
  4002. text-transform:none;
  4003. visibility:hidden;
  4004. }
  4005. #u922_div {
  4006. border-width:0px;
  4007. position:absolute;
  4008. left:0px;
  4009. top:0px;
  4010. width:21px;
  4011. height:14px;
  4012. background:inherit;
  4013. background-color:rgba(255, 255, 255, 0);
  4014. border:none;
  4015. border-radius:0px;
  4016. -moz-box-shadow:none;
  4017. -webkit-box-shadow:none;
  4018. box-shadow:none;
  4019. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4020. font-weight:400;
  4021. font-style:normal;
  4022. font-size:10px;
  4023. }
  4024. #u922 {
  4025. border-width:0px;
  4026. position:absolute;
  4027. left:503px;
  4028. top:651px;
  4029. width:21px;
  4030. height:14px;
  4031. display:flex;
  4032. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4033. font-weight:400;
  4034. font-style:normal;
  4035. font-size:10px;
  4036. }
  4037. #u922 .text {
  4038. position:absolute;
  4039. align-self:flex-start;
  4040. padding:0px 0px 0px 0px;
  4041. box-sizing:border-box;
  4042. width:100%;
  4043. }
  4044. #u922_text {
  4045. border-width:0px;
  4046. white-space:nowrap;
  4047. text-transform:none;
  4048. }
  4049. #u923 {
  4050. border-width:0px;
  4051. position:absolute;
  4052. left:0px;
  4053. top:0px;
  4054. width:0px;
  4055. height:0px;
  4056. }
  4057. #u924_div {
  4058. border-width:0px;
  4059. position:absolute;
  4060. left:0px;
  4061. top:0px;
  4062. width:13px;
  4063. height:102px;
  4064. background:inherit;
  4065. background-color:rgba(204, 153, 255, 1);
  4066. border:none;
  4067. border-radius:0px;
  4068. -moz-box-shadow:none;
  4069. -webkit-box-shadow:none;
  4070. box-shadow:none;
  4071. }
  4072. #u924 {
  4073. border-width:0px;
  4074. position:absolute;
  4075. left:534px;
  4076. top:549px;
  4077. width:13px;
  4078. height:102px;
  4079. display:flex;
  4080. }
  4081. #u924 .text {
  4082. position:absolute;
  4083. align-self:center;
  4084. padding:2px 2px 2px 2px;
  4085. box-sizing:border-box;
  4086. width:100%;
  4087. }
  4088. #u924_text {
  4089. border-width:0px;
  4090. word-wrap:break-word;
  4091. text-transform:none;
  4092. visibility:hidden;
  4093. }
  4094. #u925_div {
  4095. border-width:0px;
  4096. position:absolute;
  4097. left:0px;
  4098. top:0px;
  4099. width:23px;
  4100. height:14px;
  4101. background:inherit;
  4102. background-color:rgba(255, 255, 255, 0);
  4103. border:none;
  4104. border-radius:0px;
  4105. -moz-box-shadow:none;
  4106. -webkit-box-shadow:none;
  4107. box-shadow:none;
  4108. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4109. font-weight:400;
  4110. font-style:normal;
  4111. font-size:10px;
  4112. }
  4113. #u925 {
  4114. border-width:0px;
  4115. position:absolute;
  4116. left:529px;
  4117. top:651px;
  4118. width:23px;
  4119. height:14px;
  4120. display:flex;
  4121. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4122. font-weight:400;
  4123. font-style:normal;
  4124. font-size:10px;
  4125. }
  4126. #u925 .text {
  4127. position:absolute;
  4128. align-self:flex-start;
  4129. padding:0px 0px 0px 0px;
  4130. box-sizing:border-box;
  4131. width:100%;
  4132. }
  4133. #u925_text {
  4134. border-width:0px;
  4135. white-space:nowrap;
  4136. text-transform:none;
  4137. }
  4138. #u926 {
  4139. border-width:0px;
  4140. position:absolute;
  4141. left:0px;
  4142. top:0px;
  4143. width:0px;
  4144. height:0px;
  4145. }
  4146. #u927_div {
  4147. border-width:0px;
  4148. position:absolute;
  4149. left:0px;
  4150. top:0px;
  4151. width:13px;
  4152. height:116px;
  4153. background:inherit;
  4154. background-color:rgba(204, 153, 255, 1);
  4155. border:none;
  4156. border-radius:0px;
  4157. -moz-box-shadow:none;
  4158. -webkit-box-shadow:none;
  4159. box-shadow:none;
  4160. }
  4161. #u927 {
  4162. border-width:0px;
  4163. position:absolute;
  4164. left:562px;
  4165. top:535px;
  4166. width:13px;
  4167. height:116px;
  4168. display:flex;
  4169. }
  4170. #u927 .text {
  4171. position:absolute;
  4172. align-self:center;
  4173. padding:2px 2px 2px 2px;
  4174. box-sizing:border-box;
  4175. width:100%;
  4176. }
  4177. #u927_text {
  4178. border-width:0px;
  4179. word-wrap:break-word;
  4180. text-transform:none;
  4181. visibility:hidden;
  4182. }
  4183. #u928_div {
  4184. border-width:0px;
  4185. position:absolute;
  4186. left:0px;
  4187. top:0px;
  4188. width:23px;
  4189. height:14px;
  4190. background:inherit;
  4191. background-color:rgba(255, 255, 255, 0);
  4192. border:none;
  4193. border-radius:0px;
  4194. -moz-box-shadow:none;
  4195. -webkit-box-shadow:none;
  4196. box-shadow:none;
  4197. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4198. font-weight:400;
  4199. font-style:normal;
  4200. font-size:10px;
  4201. }
  4202. #u928 {
  4203. border-width:0px;
  4204. position:absolute;
  4205. left:557px;
  4206. top:651px;
  4207. width:23px;
  4208. height:14px;
  4209. display:flex;
  4210. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4211. font-weight:400;
  4212. font-style:normal;
  4213. font-size:10px;
  4214. }
  4215. #u928 .text {
  4216. position:absolute;
  4217. align-self:flex-start;
  4218. padding:0px 0px 0px 0px;
  4219. box-sizing:border-box;
  4220. width:100%;
  4221. }
  4222. #u928_text {
  4223. border-width:0px;
  4224. white-space:nowrap;
  4225. text-transform:none;
  4226. }
  4227. #u929 {
  4228. border-width:0px;
  4229. position:absolute;
  4230. left:0px;
  4231. top:0px;
  4232. width:0px;
  4233. height:0px;
  4234. }
  4235. #u930_div {
  4236. border-width:0px;
  4237. position:absolute;
  4238. left:0px;
  4239. top:0px;
  4240. width:13px;
  4241. height:84px;
  4242. background:inherit;
  4243. background-color:rgba(204, 153, 255, 1);
  4244. border:none;
  4245. border-radius:0px;
  4246. -moz-box-shadow:none;
  4247. -webkit-box-shadow:none;
  4248. box-shadow:none;
  4249. }
  4250. #u930 {
  4251. border-width:0px;
  4252. position:absolute;
  4253. left:590px;
  4254. top:567px;
  4255. width:13px;
  4256. height:84px;
  4257. display:flex;
  4258. }
  4259. #u930 .text {
  4260. position:absolute;
  4261. align-self:center;
  4262. padding:2px 2px 2px 2px;
  4263. box-sizing:border-box;
  4264. width:100%;
  4265. }
  4266. #u930_text {
  4267. border-width:0px;
  4268. word-wrap:break-word;
  4269. text-transform:none;
  4270. visibility:hidden;
  4271. }
  4272. #u931_div {
  4273. border-width:0px;
  4274. position:absolute;
  4275. left:0px;
  4276. top:0px;
  4277. width:23px;
  4278. height:14px;
  4279. background:inherit;
  4280. background-color:rgba(255, 255, 255, 0);
  4281. border:none;
  4282. border-radius:0px;
  4283. -moz-box-shadow:none;
  4284. -webkit-box-shadow:none;
  4285. box-shadow:none;
  4286. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4287. font-weight:400;
  4288. font-style:normal;
  4289. font-size:10px;
  4290. }
  4291. #u931 {
  4292. border-width:0px;
  4293. position:absolute;
  4294. left:585px;
  4295. top:651px;
  4296. width:23px;
  4297. height:14px;
  4298. display:flex;
  4299. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4300. font-weight:400;
  4301. font-style:normal;
  4302. font-size:10px;
  4303. }
  4304. #u931 .text {
  4305. position:absolute;
  4306. align-self:flex-start;
  4307. padding:0px 0px 0px 0px;
  4308. box-sizing:border-box;
  4309. width:100%;
  4310. }
  4311. #u931_text {
  4312. border-width:0px;
  4313. white-space:nowrap;
  4314. text-transform:none;
  4315. }
  4316. #u932 {
  4317. border-width:0px;
  4318. position:absolute;
  4319. left:0px;
  4320. top:0px;
  4321. width:0px;
  4322. height:0px;
  4323. }
  4324. #u933_div {
  4325. border-width:0px;
  4326. position:absolute;
  4327. left:0px;
  4328. top:0px;
  4329. width:13px;
  4330. height:44px;
  4331. background:inherit;
  4332. background-color:rgba(204, 153, 255, 1);
  4333. border:none;
  4334. border-radius:0px;
  4335. -moz-box-shadow:none;
  4336. -webkit-box-shadow:none;
  4337. box-shadow:none;
  4338. }
  4339. #u933 {
  4340. border-width:0px;
  4341. position:absolute;
  4342. left:618px;
  4343. top:607px;
  4344. width:13px;
  4345. height:44px;
  4346. display:flex;
  4347. }
  4348. #u933 .text {
  4349. position:absolute;
  4350. align-self:center;
  4351. padding:2px 2px 2px 2px;
  4352. box-sizing:border-box;
  4353. width:100%;
  4354. }
  4355. #u933_text {
  4356. border-width:0px;
  4357. word-wrap:break-word;
  4358. text-transform:none;
  4359. visibility:hidden;
  4360. }
  4361. #u934_div {
  4362. border-width:0px;
  4363. position:absolute;
  4364. left:0px;
  4365. top:0px;
  4366. width:23px;
  4367. height:14px;
  4368. background:inherit;
  4369. background-color:rgba(255, 255, 255, 0);
  4370. border:none;
  4371. border-radius:0px;
  4372. -moz-box-shadow:none;
  4373. -webkit-box-shadow:none;
  4374. box-shadow:none;
  4375. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4376. font-weight:400;
  4377. font-style:normal;
  4378. font-size:10px;
  4379. }
  4380. #u934 {
  4381. border-width:0px;
  4382. position:absolute;
  4383. left:613px;
  4384. top:651px;
  4385. width:23px;
  4386. height:14px;
  4387. display:flex;
  4388. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4389. font-weight:400;
  4390. font-style:normal;
  4391. font-size:10px;
  4392. }
  4393. #u934 .text {
  4394. position:absolute;
  4395. align-self:flex-start;
  4396. padding:0px 0px 0px 0px;
  4397. box-sizing:border-box;
  4398. width:100%;
  4399. }
  4400. #u934_text {
  4401. border-width:0px;
  4402. white-space:nowrap;
  4403. text-transform:none;
  4404. }
  4405. #u935 {
  4406. border-width:0px;
  4407. position:absolute;
  4408. left:0px;
  4409. top:0px;
  4410. width:0px;
  4411. height:0px;
  4412. }
  4413. #u936_div {
  4414. border-width:0px;
  4415. position:absolute;
  4416. left:0px;
  4417. top:0px;
  4418. width:13px;
  4419. height:40px;
  4420. background:inherit;
  4421. background-color:rgba(204, 153, 255, 1);
  4422. border:none;
  4423. border-radius:0px;
  4424. -moz-box-shadow:none;
  4425. -webkit-box-shadow:none;
  4426. box-shadow:none;
  4427. }
  4428. #u936 {
  4429. border-width:0px;
  4430. position:absolute;
  4431. left:646px;
  4432. top:611px;
  4433. width:13px;
  4434. height:40px;
  4435. display:flex;
  4436. }
  4437. #u936 .text {
  4438. position:absolute;
  4439. align-self:center;
  4440. padding:2px 2px 2px 2px;
  4441. box-sizing:border-box;
  4442. width:100%;
  4443. }
  4444. #u936_text {
  4445. border-width:0px;
  4446. word-wrap:break-word;
  4447. text-transform:none;
  4448. visibility:hidden;
  4449. }
  4450. #u937_div {
  4451. border-width:0px;
  4452. position:absolute;
  4453. left:0px;
  4454. top:0px;
  4455. width:23px;
  4456. height:14px;
  4457. background:inherit;
  4458. background-color:rgba(255, 255, 255, 0);
  4459. border:none;
  4460. border-radius:0px;
  4461. -moz-box-shadow:none;
  4462. -webkit-box-shadow:none;
  4463. box-shadow:none;
  4464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4465. font-weight:400;
  4466. font-style:normal;
  4467. font-size:10px;
  4468. }
  4469. #u937 {
  4470. border-width:0px;
  4471. position:absolute;
  4472. left:641px;
  4473. top:651px;
  4474. width:23px;
  4475. height:14px;
  4476. display:flex;
  4477. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4478. font-weight:400;
  4479. font-style:normal;
  4480. font-size:10px;
  4481. }
  4482. #u937 .text {
  4483. position:absolute;
  4484. align-self:flex-start;
  4485. padding:0px 0px 0px 0px;
  4486. box-sizing:border-box;
  4487. width:100%;
  4488. }
  4489. #u937_text {
  4490. border-width:0px;
  4491. white-space:nowrap;
  4492. text-transform:none;
  4493. }
  4494. #u938 {
  4495. border-width:0px;
  4496. position:absolute;
  4497. left:0px;
  4498. top:0px;
  4499. width:0px;
  4500. height:0px;
  4501. }
  4502. #u939_div {
  4503. border-width:0px;
  4504. position:absolute;
  4505. left:0px;
  4506. top:0px;
  4507. width:13px;
  4508. height:33px;
  4509. background:inherit;
  4510. background-color:rgba(204, 153, 255, 1);
  4511. border:none;
  4512. border-radius:0px;
  4513. -moz-box-shadow:none;
  4514. -webkit-box-shadow:none;
  4515. box-shadow:none;
  4516. }
  4517. #u939 {
  4518. border-width:0px;
  4519. position:absolute;
  4520. left:675px;
  4521. top:618px;
  4522. width:13px;
  4523. height:33px;
  4524. display:flex;
  4525. }
  4526. #u939 .text {
  4527. position:absolute;
  4528. align-self:center;
  4529. padding:2px 2px 2px 2px;
  4530. box-sizing:border-box;
  4531. width:100%;
  4532. }
  4533. #u939_text {
  4534. border-width:0px;
  4535. word-wrap:break-word;
  4536. text-transform:none;
  4537. visibility:hidden;
  4538. }
  4539. #u940_div {
  4540. border-width:0px;
  4541. position:absolute;
  4542. left:0px;
  4543. top:0px;
  4544. width:22px;
  4545. height:14px;
  4546. background:inherit;
  4547. background-color:rgba(255, 255, 255, 0);
  4548. border:none;
  4549. border-radius:0px;
  4550. -moz-box-shadow:none;
  4551. -webkit-box-shadow:none;
  4552. box-shadow:none;
  4553. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4554. font-weight:400;
  4555. font-style:normal;
  4556. font-size:10px;
  4557. }
  4558. #u940 {
  4559. border-width:0px;
  4560. position:absolute;
  4561. left:670px;
  4562. top:651px;
  4563. width:22px;
  4564. height:14px;
  4565. display:flex;
  4566. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4567. font-weight:400;
  4568. font-style:normal;
  4569. font-size:10px;
  4570. }
  4571. #u940 .text {
  4572. position:absolute;
  4573. align-self:flex-start;
  4574. padding:0px 0px 0px 0px;
  4575. box-sizing:border-box;
  4576. width:100%;
  4577. }
  4578. #u940_text {
  4579. border-width:0px;
  4580. white-space:nowrap;
  4581. text-transform:none;
  4582. }
  4583. #u941 {
  4584. border-width:0px;
  4585. position:absolute;
  4586. left:0px;
  4587. top:0px;
  4588. width:0px;
  4589. height:0px;
  4590. }
  4591. #u942_div {
  4592. border-width:0px;
  4593. position:absolute;
  4594. left:0px;
  4595. top:0px;
  4596. width:13px;
  4597. height:51px;
  4598. background:inherit;
  4599. background-color:rgba(204, 153, 255, 1);
  4600. border:none;
  4601. border-radius:0px;
  4602. -moz-box-shadow:none;
  4603. -webkit-box-shadow:none;
  4604. box-shadow:none;
  4605. }
  4606. #u942 {
  4607. border-width:0px;
  4608. position:absolute;
  4609. left:702px;
  4610. top:600px;
  4611. width:13px;
  4612. height:51px;
  4613. display:flex;
  4614. }
  4615. #u942 .text {
  4616. position:absolute;
  4617. align-self:center;
  4618. padding:2px 2px 2px 2px;
  4619. box-sizing:border-box;
  4620. width:100%;
  4621. }
  4622. #u942_text {
  4623. border-width:0px;
  4624. word-wrap:break-word;
  4625. text-transform:none;
  4626. visibility:hidden;
  4627. }
  4628. #u943_div {
  4629. border-width:0px;
  4630. position:absolute;
  4631. left:0px;
  4632. top:0px;
  4633. width:23px;
  4634. height:14px;
  4635. background:inherit;
  4636. background-color:rgba(255, 255, 255, 0);
  4637. border:none;
  4638. border-radius:0px;
  4639. -moz-box-shadow:none;
  4640. -webkit-box-shadow:none;
  4641. box-shadow:none;
  4642. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4643. font-weight:400;
  4644. font-style:normal;
  4645. font-size:10px;
  4646. }
  4647. #u943 {
  4648. border-width:0px;
  4649. position:absolute;
  4650. left:697px;
  4651. top:651px;
  4652. width:23px;
  4653. height:14px;
  4654. display:flex;
  4655. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4656. font-weight:400;
  4657. font-style:normal;
  4658. font-size:10px;
  4659. }
  4660. #u943 .text {
  4661. position:absolute;
  4662. align-self:flex-start;
  4663. padding:0px 0px 0px 0px;
  4664. box-sizing:border-box;
  4665. width:100%;
  4666. }
  4667. #u943_text {
  4668. border-width:0px;
  4669. white-space:nowrap;
  4670. text-transform:none;
  4671. }
  4672. #u944 {
  4673. border-width:0px;
  4674. position:absolute;
  4675. left:0px;
  4676. top:0px;
  4677. width:0px;
  4678. height:0px;
  4679. }
  4680. #u945_div {
  4681. border-width:0px;
  4682. position:absolute;
  4683. left:0px;
  4684. top:0px;
  4685. width:13px;
  4686. height:58px;
  4687. background:inherit;
  4688. background-color:rgba(204, 153, 255, 1);
  4689. border:none;
  4690. border-radius:0px;
  4691. -moz-box-shadow:none;
  4692. -webkit-box-shadow:none;
  4693. box-shadow:none;
  4694. }
  4695. #u945 {
  4696. border-width:0px;
  4697. position:absolute;
  4698. left:730px;
  4699. top:593px;
  4700. width:13px;
  4701. height:58px;
  4702. display:flex;
  4703. }
  4704. #u945 .text {
  4705. position:absolute;
  4706. align-self:center;
  4707. padding:2px 2px 2px 2px;
  4708. box-sizing:border-box;
  4709. width:100%;
  4710. }
  4711. #u945_text {
  4712. border-width:0px;
  4713. word-wrap:break-word;
  4714. text-transform:none;
  4715. visibility:hidden;
  4716. }
  4717. #u946_div {
  4718. border-width:0px;
  4719. position:absolute;
  4720. left:0px;
  4721. top:0px;
  4722. width:23px;
  4723. height:14px;
  4724. background:inherit;
  4725. background-color:rgba(255, 255, 255, 0);
  4726. border:none;
  4727. border-radius:0px;
  4728. -moz-box-shadow:none;
  4729. -webkit-box-shadow:none;
  4730. box-shadow:none;
  4731. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4732. font-weight:400;
  4733. font-style:normal;
  4734. font-size:10px;
  4735. }
  4736. #u946 {
  4737. border-width:0px;
  4738. position:absolute;
  4739. left:725px;
  4740. top:651px;
  4741. width:23px;
  4742. height:14px;
  4743. display:flex;
  4744. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4745. font-weight:400;
  4746. font-style:normal;
  4747. font-size:10px;
  4748. }
  4749. #u946 .text {
  4750. position:absolute;
  4751. align-self:flex-start;
  4752. padding:0px 0px 0px 0px;
  4753. box-sizing:border-box;
  4754. width:100%;
  4755. }
  4756. #u946_text {
  4757. border-width:0px;
  4758. white-space:nowrap;
  4759. text-transform:none;
  4760. }
  4761. #u947 {
  4762. border-width:0px;
  4763. position:absolute;
  4764. left:0px;
  4765. top:0px;
  4766. width:0px;
  4767. height:0px;
  4768. }
  4769. #u948_div {
  4770. border-width:0px;
  4771. position:absolute;
  4772. left:0px;
  4773. top:0px;
  4774. width:13px;
  4775. height:141px;
  4776. background:inherit;
  4777. background-color:rgba(204, 153, 255, 1);
  4778. border:none;
  4779. border-radius:0px;
  4780. -moz-box-shadow:none;
  4781. -webkit-box-shadow:none;
  4782. box-shadow:none;
  4783. }
  4784. #u948 {
  4785. border-width:0px;
  4786. position:absolute;
  4787. left:758px;
  4788. top:510px;
  4789. width:13px;
  4790. height:141px;
  4791. display:flex;
  4792. }
  4793. #u948 .text {
  4794. position:absolute;
  4795. align-self:center;
  4796. padding:2px 2px 2px 2px;
  4797. box-sizing:border-box;
  4798. width:100%;
  4799. }
  4800. #u948_text {
  4801. border-width:0px;
  4802. word-wrap:break-word;
  4803. text-transform:none;
  4804. visibility:hidden;
  4805. }
  4806. #u949_div {
  4807. border-width:0px;
  4808. position:absolute;
  4809. left:0px;
  4810. top:0px;
  4811. width:25px;
  4812. height:14px;
  4813. background:inherit;
  4814. background-color:rgba(255, 255, 255, 0);
  4815. border:none;
  4816. border-radius:0px;
  4817. -moz-box-shadow:none;
  4818. -webkit-box-shadow:none;
  4819. box-shadow:none;
  4820. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4821. font-weight:400;
  4822. font-style:normal;
  4823. font-size:10px;
  4824. }
  4825. #u949 {
  4826. border-width:0px;
  4827. position:absolute;
  4828. left:753px;
  4829. top:651px;
  4830. width:25px;
  4831. height:14px;
  4832. display:flex;
  4833. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4834. font-weight:400;
  4835. font-style:normal;
  4836. font-size:10px;
  4837. }
  4838. #u949 .text {
  4839. position:absolute;
  4840. align-self:flex-start;
  4841. padding:0px 0px 0px 0px;
  4842. box-sizing:border-box;
  4843. width:100%;
  4844. }
  4845. #u949_text {
  4846. border-width:0px;
  4847. white-space:nowrap;
  4848. text-transform:none;
  4849. }
  4850. #u950 {
  4851. border-width:0px;
  4852. position:absolute;
  4853. left:0px;
  4854. top:0px;
  4855. width:0px;
  4856. height:0px;
  4857. }
  4858. #u951_div {
  4859. border-width:0px;
  4860. position:absolute;
  4861. left:0px;
  4862. top:0px;
  4863. width:13px;
  4864. height:88px;
  4865. background:inherit;
  4866. background-color:rgba(204, 153, 255, 1);
  4867. border:none;
  4868. border-radius:0px;
  4869. -moz-box-shadow:none;
  4870. -webkit-box-shadow:none;
  4871. box-shadow:none;
  4872. }
  4873. #u951 {
  4874. border-width:0px;
  4875. position:absolute;
  4876. left:788px;
  4877. top:563px;
  4878. width:13px;
  4879. height:88px;
  4880. display:flex;
  4881. }
  4882. #u951 .text {
  4883. position:absolute;
  4884. align-self:center;
  4885. padding:2px 2px 2px 2px;
  4886. box-sizing:border-box;
  4887. width:100%;
  4888. }
  4889. #u951_text {
  4890. border-width:0px;
  4891. word-wrap:break-word;
  4892. text-transform:none;
  4893. visibility:hidden;
  4894. }
  4895. #u952_div {
  4896. border-width:0px;
  4897. position:absolute;
  4898. left:0px;
  4899. top:0px;
  4900. width:23px;
  4901. height:14px;
  4902. background:inherit;
  4903. background-color:rgba(255, 255, 255, 0);
  4904. border:none;
  4905. border-radius:0px;
  4906. -moz-box-shadow:none;
  4907. -webkit-box-shadow:none;
  4908. box-shadow:none;
  4909. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4910. font-weight:400;
  4911. font-style:normal;
  4912. font-size:10px;
  4913. }
  4914. #u952 {
  4915. border-width:0px;
  4916. position:absolute;
  4917. left:783px;
  4918. top:651px;
  4919. width:23px;
  4920. height:14px;
  4921. display:flex;
  4922. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4923. font-weight:400;
  4924. font-style:normal;
  4925. font-size:10px;
  4926. }
  4927. #u952 .text {
  4928. position:absolute;
  4929. align-self:flex-start;
  4930. padding:0px 0px 0px 0px;
  4931. box-sizing:border-box;
  4932. width:100%;
  4933. }
  4934. #u952_text {
  4935. border-width:0px;
  4936. white-space:nowrap;
  4937. text-transform:none;
  4938. }
  4939. #u953 {
  4940. border-width:0px;
  4941. position:absolute;
  4942. left:0px;
  4943. top:0px;
  4944. width:0px;
  4945. height:0px;
  4946. }
  4947. #u954_div {
  4948. border-width:0px;
  4949. position:absolute;
  4950. left:0px;
  4951. top:0px;
  4952. width:13px;
  4953. height:97px;
  4954. background:inherit;
  4955. background-color:rgba(204, 153, 255, 1);
  4956. border:none;
  4957. border-radius:0px;
  4958. -moz-box-shadow:none;
  4959. -webkit-box-shadow:none;
  4960. box-shadow:none;
  4961. }
  4962. #u954 {
  4963. border-width:0px;
  4964. position:absolute;
  4965. left:816px;
  4966. top:554px;
  4967. width:13px;
  4968. height:97px;
  4969. display:flex;
  4970. }
  4971. #u954 .text {
  4972. position:absolute;
  4973. align-self:center;
  4974. padding:2px 2px 2px 2px;
  4975. box-sizing:border-box;
  4976. width:100%;
  4977. }
  4978. #u954_text {
  4979. border-width:0px;
  4980. word-wrap:break-word;
  4981. text-transform:none;
  4982. visibility:hidden;
  4983. }
  4984. #u955_div {
  4985. border-width:0px;
  4986. position:absolute;
  4987. left:0px;
  4988. top:0px;
  4989. width:25px;
  4990. height:14px;
  4991. background:inherit;
  4992. background-color:rgba(255, 255, 255, 0);
  4993. border:none;
  4994. border-radius:0px;
  4995. -moz-box-shadow:none;
  4996. -webkit-box-shadow:none;
  4997. box-shadow:none;
  4998. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4999. font-weight:400;
  5000. font-style:normal;
  5001. font-size:10px;
  5002. }
  5003. #u955 {
  5004. border-width:0px;
  5005. position:absolute;
  5006. left:811px;
  5007. top:651px;
  5008. width:25px;
  5009. height:14px;
  5010. display:flex;
  5011. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5012. font-weight:400;
  5013. font-style:normal;
  5014. font-size:10px;
  5015. }
  5016. #u955 .text {
  5017. position:absolute;
  5018. align-self:flex-start;
  5019. padding:0px 0px 0px 0px;
  5020. box-sizing:border-box;
  5021. width:100%;
  5022. }
  5023. #u955_text {
  5024. border-width:0px;
  5025. white-space:nowrap;
  5026. text-transform:none;
  5027. }
  5028. #u956 {
  5029. border-width:0px;
  5030. position:absolute;
  5031. left:0px;
  5032. top:0px;
  5033. width:0px;
  5034. height:0px;
  5035. }
  5036. #u957_div {
  5037. border-width:0px;
  5038. position:absolute;
  5039. left:0px;
  5040. top:0px;
  5041. width:13px;
  5042. height:116px;
  5043. background:inherit;
  5044. background-color:rgba(204, 153, 255, 1);
  5045. border:none;
  5046. border-radius:0px;
  5047. -moz-box-shadow:none;
  5048. -webkit-box-shadow:none;
  5049. box-shadow:none;
  5050. }
  5051. #u957 {
  5052. border-width:0px;
  5053. position:absolute;
  5054. left:847px;
  5055. top:535px;
  5056. width:13px;
  5057. height:116px;
  5058. display:flex;
  5059. }
  5060. #u957 .text {
  5061. position:absolute;
  5062. align-self:center;
  5063. padding:2px 2px 2px 2px;
  5064. box-sizing:border-box;
  5065. width:100%;
  5066. }
  5067. #u957_text {
  5068. border-width:0px;
  5069. word-wrap:break-word;
  5070. text-transform:none;
  5071. visibility:hidden;
  5072. }
  5073. #u958_div {
  5074. border-width:0px;
  5075. position:absolute;
  5076. left:0px;
  5077. top:0px;
  5078. width:25px;
  5079. height:14px;
  5080. background:inherit;
  5081. background-color:rgba(255, 255, 255, 0);
  5082. border:none;
  5083. border-radius:0px;
  5084. -moz-box-shadow:none;
  5085. -webkit-box-shadow:none;
  5086. box-shadow:none;
  5087. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5088. font-weight:400;
  5089. font-style:normal;
  5090. font-size:10px;
  5091. }
  5092. #u958 {
  5093. border-width:0px;
  5094. position:absolute;
  5095. left:842px;
  5096. top:651px;
  5097. width:25px;
  5098. height:14px;
  5099. display:flex;
  5100. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5101. font-weight:400;
  5102. font-style:normal;
  5103. font-size:10px;
  5104. }
  5105. #u958 .text {
  5106. position:absolute;
  5107. align-self:flex-start;
  5108. padding:0px 0px 0px 0px;
  5109. box-sizing:border-box;
  5110. width:100%;
  5111. }
  5112. #u958_text {
  5113. border-width:0px;
  5114. white-space:nowrap;
  5115. text-transform:none;
  5116. }
  5117. #u959 {
  5118. border-width:0px;
  5119. position:absolute;
  5120. left:0px;
  5121. top:0px;
  5122. width:0px;
  5123. height:0px;
  5124. }
  5125. #u960_div {
  5126. border-width:0px;
  5127. position:absolute;
  5128. left:0px;
  5129. top:0px;
  5130. width:13px;
  5131. height:51px;
  5132. background:inherit;
  5133. background-color:rgba(204, 153, 255, 1);
  5134. border:none;
  5135. border-radius:0px;
  5136. -moz-box-shadow:none;
  5137. -webkit-box-shadow:none;
  5138. box-shadow:none;
  5139. }
  5140. #u960 {
  5141. border-width:0px;
  5142. position:absolute;
  5143. left:877px;
  5144. top:600px;
  5145. width:13px;
  5146. height:51px;
  5147. display:flex;
  5148. }
  5149. #u960 .text {
  5150. position:absolute;
  5151. align-self:center;
  5152. padding:2px 2px 2px 2px;
  5153. box-sizing:border-box;
  5154. width:100%;
  5155. }
  5156. #u960_text {
  5157. border-width:0px;
  5158. word-wrap:break-word;
  5159. text-transform:none;
  5160. visibility:hidden;
  5161. }
  5162. #u961_div {
  5163. border-width:0px;
  5164. position:absolute;
  5165. left:0px;
  5166. top:0px;
  5167. width:25px;
  5168. height:14px;
  5169. background:inherit;
  5170. background-color:rgba(255, 255, 255, 0);
  5171. border:none;
  5172. border-radius:0px;
  5173. -moz-box-shadow:none;
  5174. -webkit-box-shadow:none;
  5175. box-shadow:none;
  5176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5177. font-weight:400;
  5178. font-style:normal;
  5179. font-size:10px;
  5180. }
  5181. #u961 {
  5182. border-width:0px;
  5183. position:absolute;
  5184. left:872px;
  5185. top:651px;
  5186. width:25px;
  5187. height:14px;
  5188. display:flex;
  5189. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5190. font-weight:400;
  5191. font-style:normal;
  5192. font-size:10px;
  5193. }
  5194. #u961 .text {
  5195. position:absolute;
  5196. align-self:flex-start;
  5197. padding:0px 0px 0px 0px;
  5198. box-sizing:border-box;
  5199. width:100%;
  5200. }
  5201. #u961_text {
  5202. border-width:0px;
  5203. white-space:nowrap;
  5204. text-transform:none;
  5205. }
  5206. #u962 {
  5207. border-width:0px;
  5208. position:absolute;
  5209. left:0px;
  5210. top:0px;
  5211. width:0px;
  5212. height:0px;
  5213. }
  5214. #u963_div {
  5215. border-width:0px;
  5216. position:absolute;
  5217. left:0px;
  5218. top:0px;
  5219. width:13px;
  5220. height:70px;
  5221. background:inherit;
  5222. background-color:rgba(204, 153, 255, 1);
  5223. border:none;
  5224. border-radius:0px;
  5225. -moz-box-shadow:none;
  5226. -webkit-box-shadow:none;
  5227. box-shadow:none;
  5228. }
  5229. #u963 {
  5230. border-width:0px;
  5231. position:absolute;
  5232. left:907px;
  5233. top:581px;
  5234. width:13px;
  5235. height:70px;
  5236. display:flex;
  5237. }
  5238. #u963 .text {
  5239. position:absolute;
  5240. align-self:center;
  5241. padding:2px 2px 2px 2px;
  5242. box-sizing:border-box;
  5243. width:100%;
  5244. }
  5245. #u963_text {
  5246. border-width:0px;
  5247. word-wrap:break-word;
  5248. text-transform:none;
  5249. visibility:hidden;
  5250. }
  5251. #u964_div {
  5252. border-width:0px;
  5253. position:absolute;
  5254. left:0px;
  5255. top:0px;
  5256. width:25px;
  5257. height:14px;
  5258. background:inherit;
  5259. background-color:rgba(255, 255, 255, 0);
  5260. border:none;
  5261. border-radius:0px;
  5262. -moz-box-shadow:none;
  5263. -webkit-box-shadow:none;
  5264. box-shadow:none;
  5265. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5266. font-weight:400;
  5267. font-style:normal;
  5268. font-size:10px;
  5269. }
  5270. #u964 {
  5271. border-width:0px;
  5272. position:absolute;
  5273. left:902px;
  5274. top:651px;
  5275. width:25px;
  5276. height:14px;
  5277. display:flex;
  5278. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5279. font-weight:400;
  5280. font-style:normal;
  5281. font-size:10px;
  5282. }
  5283. #u964 .text {
  5284. position:absolute;
  5285. align-self:flex-start;
  5286. padding:0px 0px 0px 0px;
  5287. box-sizing:border-box;
  5288. width:100%;
  5289. }
  5290. #u964_text {
  5291. border-width:0px;
  5292. white-space:nowrap;
  5293. text-transform:none;
  5294. }
  5295. #u965 {
  5296. border-width:0px;
  5297. position:absolute;
  5298. left:0px;
  5299. top:0px;
  5300. width:0px;
  5301. height:0px;
  5302. }
  5303. #u966_div {
  5304. border-width:0px;
  5305. position:absolute;
  5306. left:0px;
  5307. top:0px;
  5308. width:13px;
  5309. height:88px;
  5310. background:inherit;
  5311. background-color:rgba(204, 153, 255, 1);
  5312. border:none;
  5313. border-radius:0px;
  5314. -moz-box-shadow:none;
  5315. -webkit-box-shadow:none;
  5316. box-shadow:none;
  5317. }
  5318. #u966 {
  5319. border-width:0px;
  5320. position:absolute;
  5321. left:937px;
  5322. top:563px;
  5323. width:13px;
  5324. height:88px;
  5325. display:flex;
  5326. }
  5327. #u966 .text {
  5328. position:absolute;
  5329. align-self:center;
  5330. padding:2px 2px 2px 2px;
  5331. box-sizing:border-box;
  5332. width:100%;
  5333. }
  5334. #u966_text {
  5335. border-width:0px;
  5336. word-wrap:break-word;
  5337. text-transform:none;
  5338. visibility:hidden;
  5339. }
  5340. #u967_div {
  5341. border-width:0px;
  5342. position:absolute;
  5343. left:0px;
  5344. top:0px;
  5345. width:25px;
  5346. height:14px;
  5347. background:inherit;
  5348. background-color:rgba(255, 255, 255, 0);
  5349. border:none;
  5350. border-radius:0px;
  5351. -moz-box-shadow:none;
  5352. -webkit-box-shadow:none;
  5353. box-shadow:none;
  5354. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5355. font-weight:400;
  5356. font-style:normal;
  5357. font-size:10px;
  5358. }
  5359. #u967 {
  5360. border-width:0px;
  5361. position:absolute;
  5362. left:932px;
  5363. top:651px;
  5364. width:25px;
  5365. height:14px;
  5366. display:flex;
  5367. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5368. font-weight:400;
  5369. font-style:normal;
  5370. font-size:10px;
  5371. }
  5372. #u967 .text {
  5373. position:absolute;
  5374. align-self:flex-start;
  5375. padding:0px 0px 0px 0px;
  5376. box-sizing:border-box;
  5377. width:100%;
  5378. }
  5379. #u967_text {
  5380. border-width:0px;
  5381. white-space:nowrap;
  5382. text-transform:none;
  5383. }
  5384. #u968 {
  5385. border-width:0px;
  5386. position:absolute;
  5387. left:0px;
  5388. top:0px;
  5389. width:0px;
  5390. height:0px;
  5391. }
  5392. #u969_div {
  5393. border-width:0px;
  5394. position:absolute;
  5395. left:0px;
  5396. top:0px;
  5397. width:13px;
  5398. height:70px;
  5399. background:inherit;
  5400. background-color:rgba(204, 153, 255, 1);
  5401. border:none;
  5402. border-radius:0px;
  5403. -moz-box-shadow:none;
  5404. -webkit-box-shadow:none;
  5405. box-shadow:none;
  5406. }
  5407. #u969 {
  5408. border-width:0px;
  5409. position:absolute;
  5410. left:967px;
  5411. top:581px;
  5412. width:13px;
  5413. height:70px;
  5414. display:flex;
  5415. }
  5416. #u969 .text {
  5417. position:absolute;
  5418. align-self:center;
  5419. padding:2px 2px 2px 2px;
  5420. box-sizing:border-box;
  5421. width:100%;
  5422. }
  5423. #u969_text {
  5424. border-width:0px;
  5425. word-wrap:break-word;
  5426. text-transform:none;
  5427. visibility:hidden;
  5428. }
  5429. #u970_div {
  5430. border-width:0px;
  5431. position:absolute;
  5432. left:0px;
  5433. top:0px;
  5434. width:24px;
  5435. height:14px;
  5436. background:inherit;
  5437. background-color:rgba(255, 255, 255, 0);
  5438. border:none;
  5439. border-radius:0px;
  5440. -moz-box-shadow:none;
  5441. -webkit-box-shadow:none;
  5442. box-shadow:none;
  5443. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5444. font-weight:400;
  5445. font-style:normal;
  5446. font-size:10px;
  5447. }
  5448. #u970 {
  5449. border-width:0px;
  5450. position:absolute;
  5451. left:962px;
  5452. top:651px;
  5453. width:24px;
  5454. height:14px;
  5455. display:flex;
  5456. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5457. font-weight:400;
  5458. font-style:normal;
  5459. font-size:10px;
  5460. }
  5461. #u970 .text {
  5462. position:absolute;
  5463. align-self:flex-start;
  5464. padding:0px 0px 0px 0px;
  5465. box-sizing:border-box;
  5466. width:100%;
  5467. }
  5468. #u970_text {
  5469. border-width:0px;
  5470. white-space:nowrap;
  5471. text-transform:none;
  5472. }
  5473. #u971 {
  5474. border-width:0px;
  5475. position:absolute;
  5476. left:0px;
  5477. top:0px;
  5478. width:0px;
  5479. height:0px;
  5480. }
  5481. #u972_div {
  5482. border-width:0px;
  5483. position:absolute;
  5484. left:0px;
  5485. top:0px;
  5486. width:13px;
  5487. height:102px;
  5488. background:inherit;
  5489. background-color:rgba(204, 153, 255, 1);
  5490. border:none;
  5491. border-radius:0px;
  5492. -moz-box-shadow:none;
  5493. -webkit-box-shadow:none;
  5494. box-shadow:none;
  5495. }
  5496. #u972 {
  5497. border-width:0px;
  5498. position:absolute;
  5499. left:996px;
  5500. top:549px;
  5501. width:13px;
  5502. height:102px;
  5503. display:flex;
  5504. }
  5505. #u972 .text {
  5506. position:absolute;
  5507. align-self:center;
  5508. padding:2px 2px 2px 2px;
  5509. box-sizing:border-box;
  5510. width:100%;
  5511. }
  5512. #u972_text {
  5513. border-width:0px;
  5514. word-wrap:break-word;
  5515. text-transform:none;
  5516. visibility:hidden;
  5517. }
  5518. #u973_div {
  5519. border-width:0px;
  5520. position:absolute;
  5521. left:0px;
  5522. top:0px;
  5523. width:25px;
  5524. height:14px;
  5525. background:inherit;
  5526. background-color:rgba(255, 255, 255, 0);
  5527. border:none;
  5528. border-radius:0px;
  5529. -moz-box-shadow:none;
  5530. -webkit-box-shadow:none;
  5531. box-shadow:none;
  5532. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5533. font-weight:400;
  5534. font-style:normal;
  5535. font-size:10px;
  5536. }
  5537. #u973 {
  5538. border-width:0px;
  5539. position:absolute;
  5540. left:991px;
  5541. top:651px;
  5542. width:25px;
  5543. height:14px;
  5544. display:flex;
  5545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5546. font-weight:400;
  5547. font-style:normal;
  5548. font-size:10px;
  5549. }
  5550. #u973 .text {
  5551. position:absolute;
  5552. align-self:flex-start;
  5553. padding:0px 0px 0px 0px;
  5554. box-sizing:border-box;
  5555. width:100%;
  5556. }
  5557. #u973_text {
  5558. border-width:0px;
  5559. white-space:nowrap;
  5560. text-transform:none;
  5561. }
  5562. #u974 {
  5563. border-width:0px;
  5564. position:absolute;
  5565. left:0px;
  5566. top:0px;
  5567. width:0px;
  5568. height:0px;
  5569. }
  5570. #u975_div {
  5571. border-width:0px;
  5572. position:absolute;
  5573. left:0px;
  5574. top:0px;
  5575. width:13px;
  5576. height:33px;
  5577. background:inherit;
  5578. background-color:rgba(204, 153, 255, 1);
  5579. border:none;
  5580. border-radius:0px;
  5581. -moz-box-shadow:none;
  5582. -webkit-box-shadow:none;
  5583. box-shadow:none;
  5584. }
  5585. #u975 {
  5586. border-width:0px;
  5587. position:absolute;
  5588. left:1027px;
  5589. top:618px;
  5590. width:13px;
  5591. height:33px;
  5592. display:flex;
  5593. }
  5594. #u975 .text {
  5595. position:absolute;
  5596. align-self:center;
  5597. padding:2px 2px 2px 2px;
  5598. box-sizing:border-box;
  5599. width:100%;
  5600. }
  5601. #u975_text {
  5602. border-width:0px;
  5603. word-wrap:break-word;
  5604. text-transform:none;
  5605. visibility:hidden;
  5606. }
  5607. #u976_div {
  5608. border-width:0px;
  5609. position:absolute;
  5610. left:0px;
  5611. top:0px;
  5612. width:25px;
  5613. height:14px;
  5614. background:inherit;
  5615. background-color:rgba(255, 255, 255, 0);
  5616. border:none;
  5617. border-radius:0px;
  5618. -moz-box-shadow:none;
  5619. -webkit-box-shadow:none;
  5620. box-shadow:none;
  5621. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5622. font-weight:400;
  5623. font-style:normal;
  5624. font-size:10px;
  5625. }
  5626. #u976 {
  5627. border-width:0px;
  5628. position:absolute;
  5629. left:1022px;
  5630. top:651px;
  5631. width:25px;
  5632. height:14px;
  5633. display:flex;
  5634. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5635. font-weight:400;
  5636. font-style:normal;
  5637. font-size:10px;
  5638. }
  5639. #u976 .text {
  5640. position:absolute;
  5641. align-self:flex-start;
  5642. padding:0px 0px 0px 0px;
  5643. box-sizing:border-box;
  5644. width:100%;
  5645. }
  5646. #u976_text {
  5647. border-width:0px;
  5648. white-space:nowrap;
  5649. text-transform:none;
  5650. }
  5651. #u977 {
  5652. border-width:0px;
  5653. position:absolute;
  5654. left:0px;
  5655. top:0px;
  5656. width:0px;
  5657. height:0px;
  5658. }
  5659. #u978_div {
  5660. border-width:0px;
  5661. position:absolute;
  5662. left:0px;
  5663. top:0px;
  5664. width:13px;
  5665. height:51px;
  5666. background:inherit;
  5667. background-color:rgba(204, 153, 255, 1);
  5668. border:none;
  5669. border-radius:0px;
  5670. -moz-box-shadow:none;
  5671. -webkit-box-shadow:none;
  5672. box-shadow:none;
  5673. }
  5674. #u978 {
  5675. border-width:0px;
  5676. position:absolute;
  5677. left:1057px;
  5678. top:600px;
  5679. width:13px;
  5680. height:51px;
  5681. display:flex;
  5682. }
  5683. #u978 .text {
  5684. position:absolute;
  5685. align-self:center;
  5686. padding:2px 2px 2px 2px;
  5687. box-sizing:border-box;
  5688. width:100%;
  5689. }
  5690. #u978_text {
  5691. border-width:0px;
  5692. word-wrap:break-word;
  5693. text-transform:none;
  5694. visibility:hidden;
  5695. }
  5696. #u979_div {
  5697. border-width:0px;
  5698. position:absolute;
  5699. left:0px;
  5700. top:0px;
  5701. width:25px;
  5702. height:14px;
  5703. background:inherit;
  5704. background-color:rgba(255, 255, 255, 0);
  5705. border:none;
  5706. border-radius:0px;
  5707. -moz-box-shadow:none;
  5708. -webkit-box-shadow:none;
  5709. box-shadow:none;
  5710. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5711. font-weight:400;
  5712. font-style:normal;
  5713. font-size:10px;
  5714. }
  5715. #u979 {
  5716. border-width:0px;
  5717. position:absolute;
  5718. left:1052px;
  5719. top:651px;
  5720. width:25px;
  5721. height:14px;
  5722. display:flex;
  5723. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5724. font-weight:400;
  5725. font-style:normal;
  5726. font-size:10px;
  5727. }
  5728. #u979 .text {
  5729. position:absolute;
  5730. align-self:flex-start;
  5731. padding:0px 0px 0px 0px;
  5732. box-sizing:border-box;
  5733. width:100%;
  5734. }
  5735. #u979_text {
  5736. border-width:0px;
  5737. white-space:nowrap;
  5738. text-transform:none;
  5739. }
  5740. #u980 {
  5741. border-width:0px;
  5742. position:absolute;
  5743. left:0px;
  5744. top:0px;
  5745. width:0px;
  5746. height:0px;
  5747. }
  5748. #u981_div {
  5749. border-width:0px;
  5750. position:absolute;
  5751. left:0px;
  5752. top:0px;
  5753. width:13px;
  5754. height:74px;
  5755. background:inherit;
  5756. background-color:rgba(204, 153, 255, 1);
  5757. border:none;
  5758. border-radius:0px;
  5759. -moz-box-shadow:none;
  5760. -webkit-box-shadow:none;
  5761. box-shadow:none;
  5762. }
  5763. #u981 {
  5764. border-width:0px;
  5765. position:absolute;
  5766. left:1087px;
  5767. top:577px;
  5768. width:13px;
  5769. height:74px;
  5770. display:flex;
  5771. }
  5772. #u981 .text {
  5773. position:absolute;
  5774. align-self:center;
  5775. padding:2px 2px 2px 2px;
  5776. box-sizing:border-box;
  5777. width:100%;
  5778. }
  5779. #u981_text {
  5780. border-width:0px;
  5781. word-wrap:break-word;
  5782. text-transform:none;
  5783. visibility:hidden;
  5784. }
  5785. #u982_div {
  5786. border-width:0px;
  5787. position:absolute;
  5788. left:0px;
  5789. top:0px;
  5790. width:25px;
  5791. height:14px;
  5792. background:inherit;
  5793. background-color:rgba(255, 255, 255, 0);
  5794. border:none;
  5795. border-radius:0px;
  5796. -moz-box-shadow:none;
  5797. -webkit-box-shadow:none;
  5798. box-shadow:none;
  5799. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5800. font-weight:400;
  5801. font-style:normal;
  5802. font-size:10px;
  5803. }
  5804. #u982 {
  5805. border-width:0px;
  5806. position:absolute;
  5807. left:1082px;
  5808. top:651px;
  5809. width:25px;
  5810. height:14px;
  5811. display:flex;
  5812. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5813. font-weight:400;
  5814. font-style:normal;
  5815. font-size:10px;
  5816. }
  5817. #u982 .text {
  5818. position:absolute;
  5819. align-self:flex-start;
  5820. padding:0px 0px 0px 0px;
  5821. box-sizing:border-box;
  5822. width:100%;
  5823. }
  5824. #u982_text {
  5825. border-width:0px;
  5826. white-space:nowrap;
  5827. text-transform:none;
  5828. }
  5829. #u983_div {
  5830. border-width:0px;
  5831. position:absolute;
  5832. left:0px;
  5833. top:0px;
  5834. width:73px;
  5835. height:25px;
  5836. background:inherit;
  5837. background-color:rgba(255, 255, 255, 0);
  5838. border:none;
  5839. border-radius:0px;
  5840. -moz-box-shadow:none;
  5841. -webkit-box-shadow:none;
  5842. box-shadow:none;
  5843. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5844. font-weight:400;
  5845. font-style:normal;
  5846. font-size:18px;
  5847. }
  5848. #u983 {
  5849. border-width:0px;
  5850. position:absolute;
  5851. left:174px;
  5852. top:430px;
  5853. width:73px;
  5854. height:25px;
  5855. display:flex;
  5856. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5857. font-weight:400;
  5858. font-style:normal;
  5859. font-size:18px;
  5860. }
  5861. #u983 .text {
  5862. position:absolute;
  5863. align-self:flex-start;
  5864. padding:0px 0px 0px 0px;
  5865. box-sizing:border-box;
  5866. width:100%;
  5867. }
  5868. #u983_text {
  5869. border-width:0px;
  5870. white-space:nowrap;
  5871. text-transform:none;
  5872. }
  5873. #u984_div {
  5874. border-width:0px;
  5875. position:absolute;
  5876. left:0px;
  5877. top:0px;
  5878. width:172px;
  5879. height:10px;
  5880. background:inherit;
  5881. background-color:rgba(102, 204, 255, 1);
  5882. border:none;
  5883. border-radius:0px;
  5884. -moz-box-shadow:none;
  5885. -webkit-box-shadow:none;
  5886. box-shadow:none;
  5887. }
  5888. #u984 {
  5889. border-width:0px;
  5890. position:absolute;
  5891. left:779px;
  5892. top:345px;
  5893. width:172px;
  5894. height:10px;
  5895. display:flex;
  5896. }
  5897. #u984 .text {
  5898. position:absolute;
  5899. align-self:center;
  5900. padding:2px 2px 2px 2px;
  5901. box-sizing:border-box;
  5902. width:100%;
  5903. }
  5904. #u984_text {
  5905. border-width:0px;
  5906. word-wrap:break-word;
  5907. text-transform:none;
  5908. visibility:hidden;
  5909. }
  5910. #u985_div {
  5911. border-width:0px;
  5912. position:absolute;
  5913. left:0px;
  5914. top:0px;
  5915. width:200px;
  5916. height:10px;
  5917. background:inherit;
  5918. background-color:rgba(51, 102, 153, 0.788235294117647);
  5919. border:none;
  5920. border-radius:0px;
  5921. -moz-box-shadow:none;
  5922. -webkit-box-shadow:none;
  5923. box-shadow:none;
  5924. }
  5925. #u985 {
  5926. border-width:0px;
  5927. position:absolute;
  5928. left:779px;
  5929. top:335px;
  5930. width:200px;
  5931. height:10px;
  5932. display:flex;
  5933. }
  5934. #u985 .text {
  5935. position:absolute;
  5936. align-self:center;
  5937. padding:2px 2px 2px 2px;
  5938. box-sizing:border-box;
  5939. width:100%;
  5940. }
  5941. #u985_text {
  5942. border-width:0px;
  5943. word-wrap:break-word;
  5944. text-transform:none;
  5945. visibility:hidden;
  5946. }
  5947. #u986_div {
  5948. border-width:0px;
  5949. position:absolute;
  5950. left:0px;
  5951. top:0px;
  5952. width:116px;
  5953. height:10px;
  5954. background:inherit;
  5955. background-color:rgba(102, 204, 255, 1);
  5956. border:none;
  5957. border-radius:0px;
  5958. -moz-box-shadow:none;
  5959. -webkit-box-shadow:none;
  5960. box-shadow:none;
  5961. }
  5962. #u986 {
  5963. border-width:0px;
  5964. position:absolute;
  5965. left:779px;
  5966. top:305px;
  5967. width:116px;
  5968. height:10px;
  5969. display:flex;
  5970. }
  5971. #u986 .text {
  5972. position:absolute;
  5973. align-self:center;
  5974. padding:2px 2px 2px 2px;
  5975. box-sizing:border-box;
  5976. width:100%;
  5977. }
  5978. #u986_text {
  5979. border-width:0px;
  5980. word-wrap:break-word;
  5981. text-transform:none;
  5982. visibility:hidden;
  5983. }
  5984. #u987_div {
  5985. border-width:0px;
  5986. position:absolute;
  5987. left:0px;
  5988. top:0px;
  5989. width:157px;
  5990. height:10px;
  5991. background:inherit;
  5992. background-color:rgba(51, 102, 153, 0.788235294117647);
  5993. border:none;
  5994. border-radius:0px;
  5995. -moz-box-shadow:none;
  5996. -webkit-box-shadow:none;
  5997. box-shadow:none;
  5998. }
  5999. #u987 {
  6000. border-width:0px;
  6001. position:absolute;
  6002. left:779px;
  6003. top:295px;
  6004. width:157px;
  6005. height:10px;
  6006. display:flex;
  6007. }
  6008. #u987 .text {
  6009. position:absolute;
  6010. align-self:center;
  6011. padding:2px 2px 2px 2px;
  6012. box-sizing:border-box;
  6013. width:100%;
  6014. }
  6015. #u987_text {
  6016. border-width:0px;
  6017. word-wrap:break-word;
  6018. text-transform:none;
  6019. visibility:hidden;
  6020. }
  6021. #u988_div {
  6022. border-width:0px;
  6023. position:absolute;
  6024. left:0px;
  6025. top:0px;
  6026. width:36px;
  6027. height:10px;
  6028. background:inherit;
  6029. background-color:rgba(102, 204, 255, 1);
  6030. border:none;
  6031. border-radius:0px;
  6032. -moz-box-shadow:none;
  6033. -webkit-box-shadow:none;
  6034. box-shadow:none;
  6035. }
  6036. #u988 {
  6037. border-width:0px;
  6038. position:absolute;
  6039. left:779px;
  6040. top:266px;
  6041. width:36px;
  6042. height:10px;
  6043. display:flex;
  6044. }
  6045. #u988 .text {
  6046. position:absolute;
  6047. align-self:center;
  6048. padding:2px 2px 2px 2px;
  6049. box-sizing:border-box;
  6050. width:100%;
  6051. }
  6052. #u988_text {
  6053. border-width:0px;
  6054. word-wrap:break-word;
  6055. text-transform:none;
  6056. visibility:hidden;
  6057. }
  6058. #u989_div {
  6059. border-width:0px;
  6060. position:absolute;
  6061. left:0px;
  6062. top:0px;
  6063. width:62px;
  6064. height:10px;
  6065. background:inherit;
  6066. background-color:rgba(51, 102, 153, 0.788235294117647);
  6067. border:none;
  6068. border-radius:0px;
  6069. -moz-box-shadow:none;
  6070. -webkit-box-shadow:none;
  6071. box-shadow:none;
  6072. }
  6073. #u989 {
  6074. border-width:0px;
  6075. position:absolute;
  6076. left:779px;
  6077. top:215px;
  6078. width:62px;
  6079. height:10px;
  6080. display:flex;
  6081. }
  6082. #u989 .text {
  6083. position:absolute;
  6084. align-self:center;
  6085. padding:2px 2px 2px 2px;
  6086. box-sizing:border-box;
  6087. width:100%;
  6088. }
  6089. #u989_text {
  6090. border-width:0px;
  6091. word-wrap:break-word;
  6092. text-transform:none;
  6093. visibility:hidden;
  6094. }
  6095. #u990_div {
  6096. border-width:0px;
  6097. position:absolute;
  6098. left:0px;
  6099. top:0px;
  6100. width:45px;
  6101. height:10px;
  6102. background:inherit;
  6103. background-color:rgba(102, 204, 255, 1);
  6104. border:none;
  6105. border-radius:0px;
  6106. -moz-box-shadow:none;
  6107. -webkit-box-shadow:none;
  6108. box-shadow:none;
  6109. }
  6110. #u990 {
  6111. border-width:0px;
  6112. position:absolute;
  6113. left:779px;
  6114. top:225px;
  6115. width:45px;
  6116. height:10px;
  6117. display:flex;
  6118. }
  6119. #u990 .text {
  6120. position:absolute;
  6121. align-self:center;
  6122. padding:2px 2px 2px 2px;
  6123. box-sizing:border-box;
  6124. width:100%;
  6125. }
  6126. #u990_text {
  6127. border-width:0px;
  6128. word-wrap:break-word;
  6129. text-transform:none;
  6130. visibility:hidden;
  6131. }
  6132. #u991_div {
  6133. border-width:0px;
  6134. position:absolute;
  6135. left:0px;
  6136. top:0px;
  6137. width:55px;
  6138. height:10px;
  6139. background:inherit;
  6140. background-color:rgba(51, 102, 153, 0.788235294117647);
  6141. border:none;
  6142. border-radius:0px;
  6143. -moz-box-shadow:none;
  6144. -webkit-box-shadow:none;
  6145. box-shadow:none;
  6146. }
  6147. #u991 {
  6148. border-width:0px;
  6149. position:absolute;
  6150. left:779px;
  6151. top:256px;
  6152. width:55px;
  6153. height:10px;
  6154. display:flex;
  6155. }
  6156. #u991 .text {
  6157. position:absolute;
  6158. align-self:center;
  6159. padding:2px 2px 2px 2px;
  6160. box-sizing:border-box;
  6161. width:100%;
  6162. }
  6163. #u991_text {
  6164. border-width:0px;
  6165. word-wrap:break-word;
  6166. text-transform:none;
  6167. visibility:hidden;
  6168. }
  6169. #u992_div {
  6170. border-width:0px;
  6171. position:absolute;
  6172. left:0px;
  6173. top:0px;
  6174. width:13px;
  6175. height:25px;
  6176. background:inherit;
  6177. background-color:rgba(255, 255, 255, 0);
  6178. border:none;
  6179. border-radius:0px;
  6180. -moz-box-shadow:none;
  6181. -webkit-box-shadow:none;
  6182. box-shadow:none;
  6183. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6184. font-weight:500;
  6185. font-style:normal;
  6186. font-size:18px;
  6187. }
  6188. #u992 {
  6189. border-width:0px;
  6190. position:absolute;
  6191. left:671px;
  6192. top:332px;
  6193. width:13px;
  6194. height:25px;
  6195. display:flex;
  6196. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6197. font-weight:500;
  6198. font-style:normal;
  6199. font-size:18px;
  6200. }
  6201. #u992 .text {
  6202. position:absolute;
  6203. align-self:flex-start;
  6204. padding:0px 0px 0px 0px;
  6205. box-sizing:border-box;
  6206. width:100%;
  6207. }
  6208. #u992_text {
  6209. border-width:0px;
  6210. word-wrap:break-word;
  6211. text-transform:none;
  6212. }
  6213. #u993_div {
  6214. border-width:0px;
  6215. position:absolute;
  6216. left:0px;
  6217. top:0px;
  6218. width:59px;
  6219. height:25px;
  6220. background:inherit;
  6221. background-color:rgba(255, 255, 255, 0);
  6222. border:none;
  6223. border-radius:0px;
  6224. -moz-box-shadow:none;
  6225. -webkit-box-shadow:none;
  6226. box-shadow:none;
  6227. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6228. font-weight:500;
  6229. font-style:normal;
  6230. font-size:18px;
  6231. }
  6232. #u993 {
  6233. border-width:0px;
  6234. position:absolute;
  6235. left:698px;
  6236. top:332px;
  6237. width:59px;
  6238. height:25px;
  6239. display:flex;
  6240. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6241. font-weight:500;
  6242. font-style:normal;
  6243. font-size:18px;
  6244. }
  6245. #u993 .text {
  6246. position:absolute;
  6247. align-self:flex-start;
  6248. padding:0px 0px 0px 0px;
  6249. box-sizing:border-box;
  6250. width:100%;
  6251. }
  6252. #u993_text {
  6253. border-width:0px;
  6254. word-wrap:break-word;
  6255. text-transform:none;
  6256. }
  6257. #u994 {
  6258. border-width:0px;
  6259. position:absolute;
  6260. left:0px;
  6261. top:0px;
  6262. width:0px;
  6263. height:0px;
  6264. }
  6265. #u995_div {
  6266. border-width:0px;
  6267. position:absolute;
  6268. left:0px;
  6269. top:0px;
  6270. width:20px;
  6271. height:6px;
  6272. background:inherit;
  6273. background-color:rgba(51, 102, 153, 0.788235294117647);
  6274. border:none;
  6275. border-radius:0px;
  6276. -moz-box-shadow:none;
  6277. -webkit-box-shadow:none;
  6278. box-shadow:none;
  6279. }
  6280. #u995 {
  6281. border-width:0px;
  6282. position:absolute;
  6283. left:1005px;
  6284. top:175px;
  6285. width:20px;
  6286. height:6px;
  6287. display:flex;
  6288. }
  6289. #u995 .text {
  6290. position:absolute;
  6291. align-self:center;
  6292. padding:2px 2px 2px 2px;
  6293. box-sizing:border-box;
  6294. width:100%;
  6295. }
  6296. #u995_text {
  6297. border-width:0px;
  6298. word-wrap:break-word;
  6299. text-transform:none;
  6300. visibility:hidden;
  6301. }
  6302. #u996_div {
  6303. border-width:0px;
  6304. position:absolute;
  6305. left:0px;
  6306. top:0px;
  6307. width:17px;
  6308. height:11px;
  6309. background:inherit;
  6310. background-color:rgba(255, 255, 255, 0);
  6311. border:none;
  6312. border-radius:0px;
  6313. -moz-box-shadow:none;
  6314. -webkit-box-shadow:none;
  6315. box-shadow:none;
  6316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6317. font-weight:400;
  6318. font-style:normal;
  6319. font-size:8px;
  6320. }
  6321. #u996 {
  6322. border-width:0px;
  6323. position:absolute;
  6324. left:1029px;
  6325. top:172px;
  6326. width:17px;
  6327. height:11px;
  6328. display:flex;
  6329. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6330. font-weight:400;
  6331. font-style:normal;
  6332. font-size:8px;
  6333. }
  6334. #u996 .text {
  6335. position:absolute;
  6336. align-self:flex-start;
  6337. padding:0px 0px 0px 0px;
  6338. box-sizing:border-box;
  6339. width:100%;
  6340. }
  6341. #u996_text {
  6342. border-width:0px;
  6343. white-space:nowrap;
  6344. text-transform:none;
  6345. }
  6346. #u997 {
  6347. border-width:0px;
  6348. position:absolute;
  6349. left:0px;
  6350. top:0px;
  6351. width:0px;
  6352. height:0px;
  6353. }
  6354. #u998_div {
  6355. border-width:0px;
  6356. position:absolute;
  6357. left:0px;
  6358. top:0px;
  6359. width:20px;
  6360. height:6px;
  6361. background:inherit;
  6362. background-color:rgba(102, 204, 255, 1);
  6363. border:none;
  6364. border-radius:0px;
  6365. -moz-box-shadow:none;
  6366. -webkit-box-shadow:none;
  6367. box-shadow:none;
  6368. }
  6369. #u998 {
  6370. border-width:0px;
  6371. position:absolute;
  6372. left:1056px;
  6373. top:175px;
  6374. width:20px;
  6375. height:6px;
  6376. display:flex;
  6377. }
  6378. #u998 .text {
  6379. position:absolute;
  6380. align-self:center;
  6381. padding:2px 2px 2px 2px;
  6382. box-sizing:border-box;
  6383. width:100%;
  6384. }
  6385. #u998_text {
  6386. border-width:0px;
  6387. word-wrap:break-word;
  6388. text-transform:none;
  6389. visibility:hidden;
  6390. }
  6391. #u999_div {
  6392. border-width:0px;
  6393. position:absolute;
  6394. left:0px;
  6395. top:0px;
  6396. width:17px;
  6397. height:11px;
  6398. background:inherit;
  6399. background-color:rgba(255, 255, 255, 0);
  6400. border:none;
  6401. border-radius:0px;
  6402. -moz-box-shadow:none;
  6403. -webkit-box-shadow:none;
  6404. box-shadow:none;
  6405. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6406. font-weight:400;
  6407. font-style:normal;
  6408. font-size:8px;
  6409. }
  6410. #u999 {
  6411. border-width:0px;
  6412. position:absolute;
  6413. left:1080px;
  6414. top:172px;
  6415. width:17px;
  6416. height:11px;
  6417. display:flex;
  6418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6419. font-weight:400;
  6420. font-style:normal;
  6421. font-size:8px;
  6422. }
  6423. #u999 .text {
  6424. position:absolute;
  6425. align-self:flex-start;
  6426. padding:0px 0px 0px 0px;
  6427. box-sizing:border-box;
  6428. width:100%;
  6429. }
  6430. #u999_text {
  6431. border-width:0px;
  6432. white-space:nowrap;
  6433. text-transform:none;
  6434. }
  6435. #u1000_div {
  6436. border-width:0px;
  6437. position:absolute;
  6438. left:0px;
  6439. top:0px;
  6440. width:487px;
  6441. height:252px;
  6442. background:inherit;
  6443. background-color:rgba(255, 255, 255, 1);
  6444. border:none;
  6445. border-radius:4px;
  6446. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  6447. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  6448. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  6449. }
  6450. #u1000 {
  6451. border-width:0px;
  6452. position:absolute;
  6453. left:145px;
  6454. top:714px;
  6455. width:487px;
  6456. height:252px;
  6457. display:flex;
  6458. }
  6459. #u1000 .text {
  6460. position:absolute;
  6461. align-self:center;
  6462. padding:2px 2px 2px 2px;
  6463. box-sizing:border-box;
  6464. width:100%;
  6465. }
  6466. #u1000_text {
  6467. border-width:0px;
  6468. word-wrap:break-word;
  6469. text-transform:none;
  6470. visibility:hidden;
  6471. }
  6472. #u1001_div {
  6473. border-width:0px;
  6474. position:absolute;
  6475. left:0px;
  6476. top:0px;
  6477. width:109px;
  6478. height:25px;
  6479. background:inherit;
  6480. background-color:rgba(255, 255, 255, 0);
  6481. border:none;
  6482. border-radius:0px;
  6483. -moz-box-shadow:none;
  6484. -webkit-box-shadow:none;
  6485. box-shadow:none;
  6486. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6487. font-weight:400;
  6488. font-style:normal;
  6489. font-size:18px;
  6490. }
  6491. #u1001 {
  6492. border-width:0px;
  6493. position:absolute;
  6494. left:165px;
  6495. top:734px;
  6496. width:109px;
  6497. height:25px;
  6498. display:flex;
  6499. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6500. font-weight:400;
  6501. font-style:normal;
  6502. font-size:18px;
  6503. }
  6504. #u1001 .text {
  6505. position:absolute;
  6506. align-self:flex-start;
  6507. padding:0px 0px 0px 0px;
  6508. box-sizing:border-box;
  6509. width:100%;
  6510. }
  6511. #u1001_text {
  6512. border-width:0px;
  6513. white-space:nowrap;
  6514. text-transform:none;
  6515. }
  6516. #u1002 {
  6517. border-width:0px;
  6518. position:absolute;
  6519. left:0px;
  6520. top:0px;
  6521. width:0px;
  6522. height:0px;
  6523. }
  6524. #u1003_div {
  6525. border-width:0px;
  6526. position:absolute;
  6527. left:0px;
  6528. top:0px;
  6529. width:73px;
  6530. height:25px;
  6531. background:inherit;
  6532. background-color:rgba(255, 255, 255, 0);
  6533. border:none;
  6534. border-radius:0px;
  6535. -moz-box-shadow:none;
  6536. -webkit-box-shadow:none;
  6537. box-shadow:none;
  6538. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6539. font-weight:500;
  6540. font-style:normal;
  6541. font-size:18px;
  6542. }
  6543. #u1003 {
  6544. border-width:0px;
  6545. position:absolute;
  6546. left:228px;
  6547. top:864px;
  6548. width:73px;
  6549. height:25px;
  6550. display:flex;
  6551. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6552. font-weight:500;
  6553. font-style:normal;
  6554. font-size:18px;
  6555. }
  6556. #u1003 .text {
  6557. position:absolute;
  6558. align-self:flex-start;
  6559. padding:0px 0px 0px 0px;
  6560. box-sizing:border-box;
  6561. width:100%;
  6562. }
  6563. #u1003_text {
  6564. border-width:0px;
  6565. white-space:nowrap;
  6566. text-transform:none;
  6567. }
  6568. #u1004_div {
  6569. border-width:0px;
  6570. position:absolute;
  6571. left:0px;
  6572. top:0px;
  6573. width:62px;
  6574. height:53px;
  6575. background:inherit;
  6576. background-color:rgba(255, 255, 255, 0);
  6577. border:none;
  6578. border-radius:0px;
  6579. -moz-box-shadow:none;
  6580. -webkit-box-shadow:none;
  6581. box-shadow:none;
  6582. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6583. font-weight:500;
  6584. font-style:normal;
  6585. font-size:38px;
  6586. }
  6587. #u1004 {
  6588. border-width:0px;
  6589. position:absolute;
  6590. left:232px;
  6591. top:811px;
  6592. width:62px;
  6593. height:53px;
  6594. display:flex;
  6595. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6596. font-weight:500;
  6597. font-style:normal;
  6598. font-size:38px;
  6599. }
  6600. #u1004 .text {
  6601. position:absolute;
  6602. align-self:flex-start;
  6603. padding:0px 0px 0px 0px;
  6604. box-sizing:border-box;
  6605. width:100%;
  6606. }
  6607. #u1004_text {
  6608. border-width:0px;
  6609. white-space:nowrap;
  6610. text-transform:none;
  6611. }
  6612. #u1005_div {
  6613. border-width:0px;
  6614. position:absolute;
  6615. left:0px;
  6616. top:0px;
  6617. width:466px;
  6618. height:252px;
  6619. background:inherit;
  6620. background-color:rgba(255, 255, 255, 1);
  6621. border:none;
  6622. border-radius:4px;
  6623. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  6624. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  6625. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  6626. }
  6627. #u1005 {
  6628. border-width:0px;
  6629. position:absolute;
  6630. left:653px;
  6631. top:714px;
  6632. width:466px;
  6633. height:252px;
  6634. display:flex;
  6635. }
  6636. #u1005 .text {
  6637. position:absolute;
  6638. align-self:center;
  6639. padding:2px 2px 2px 2px;
  6640. box-sizing:border-box;
  6641. width:100%;
  6642. }
  6643. #u1005_text {
  6644. border-width:0px;
  6645. word-wrap:break-word;
  6646. text-transform:none;
  6647. visibility:hidden;
  6648. }
  6649. #u1006_div {
  6650. border-width:0px;
  6651. position:absolute;
  6652. left:0px;
  6653. top:0px;
  6654. width:73px;
  6655. height:25px;
  6656. background:inherit;
  6657. background-color:rgba(255, 255, 255, 0);
  6658. border:none;
  6659. border-radius:0px;
  6660. -moz-box-shadow:none;
  6661. -webkit-box-shadow:none;
  6662. box-shadow:none;
  6663. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6664. font-weight:400;
  6665. font-style:normal;
  6666. font-size:18px;
  6667. }
  6668. #u1006 {
  6669. border-width:0px;
  6670. position:absolute;
  6671. left:673px;
  6672. top:734px;
  6673. width:73px;
  6674. height:25px;
  6675. display:flex;
  6676. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6677. font-weight:400;
  6678. font-style:normal;
  6679. font-size:18px;
  6680. }
  6681. #u1006 .text {
  6682. position:absolute;
  6683. align-self:flex-start;
  6684. padding:0px 0px 0px 0px;
  6685. box-sizing:border-box;
  6686. width:100%;
  6687. }
  6688. #u1006_text {
  6689. border-width:0px;
  6690. white-space:nowrap;
  6691. text-transform:none;
  6692. }
  6693. #u1007_div {
  6694. border-width:0px;
  6695. position:absolute;
  6696. left:0px;
  6697. top:0px;
  6698. width:147px;
  6699. height:120px;
  6700. background:inherit;
  6701. background-color:rgba(255, 255, 255, 0);
  6702. border:none;
  6703. border-radius:0px;
  6704. -moz-box-shadow:none;
  6705. -webkit-box-shadow:none;
  6706. box-shadow:none;
  6707. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6708. font-weight:400;
  6709. font-style:normal;
  6710. font-size:18px;
  6711. line-height:40px;
  6712. }
  6713. #u1007 {
  6714. border-width:0px;
  6715. position:absolute;
  6716. left:893px;
  6717. top:790px;
  6718. width:147px;
  6719. height:120px;
  6720. display:flex;
  6721. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6722. font-weight:400;
  6723. font-style:normal;
  6724. font-size:18px;
  6725. line-height:40px;
  6726. }
  6727. #u1007 .text {
  6728. position:absolute;
  6729. align-self:flex-start;
  6730. padding:0px 0px 0px 0px;
  6731. box-sizing:border-box;
  6732. width:100%;
  6733. }
  6734. #u1007_text {
  6735. border-width:0px;
  6736. word-wrap:break-word;
  6737. text-transform:none;
  6738. }
  6739. #u1008 {
  6740. border-width:0px;
  6741. position:absolute;
  6742. left:0px;
  6743. top:0px;
  6744. width:0px;
  6745. height:0px;
  6746. }
  6747. #u1009_div {
  6748. border-width:0px;
  6749. position:absolute;
  6750. left:0px;
  6751. top:0px;
  6752. width:78px;
  6753. height:27px;
  6754. background:inherit;
  6755. background-color:rgba(255, 255, 255, 0);
  6756. border:none;
  6757. border-radius:0px;
  6758. -moz-box-shadow:none;
  6759. -webkit-box-shadow:none;
  6760. box-shadow:none;
  6761. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6762. font-weight:500;
  6763. font-style:normal;
  6764. font-size:18px;
  6765. }
  6766. #u1009 {
  6767. border-width:0px;
  6768. position:absolute;
  6769. left:719px;
  6770. top:863px;
  6771. width:78px;
  6772. height:27px;
  6773. display:flex;
  6774. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6775. font-weight:500;
  6776. font-style:normal;
  6777. font-size:18px;
  6778. }
  6779. #u1009 .text {
  6780. position:absolute;
  6781. align-self:flex-start;
  6782. padding:0px 0px 0px 0px;
  6783. box-sizing:border-box;
  6784. width:100%;
  6785. }
  6786. #u1009_text {
  6787. border-width:0px;
  6788. word-wrap:break-word;
  6789. text-transform:none;
  6790. }
  6791. #u1010_div {
  6792. border-width:0px;
  6793. position:absolute;
  6794. left:0px;
  6795. top:0px;
  6796. width:47px;
  6797. height:53px;
  6798. background:inherit;
  6799. background-color:rgba(255, 255, 255, 0);
  6800. border:none;
  6801. border-radius:0px;
  6802. -moz-box-shadow:none;
  6803. -webkit-box-shadow:none;
  6804. box-shadow:none;
  6805. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6806. font-weight:500;
  6807. font-style:normal;
  6808. font-size:38px;
  6809. }
  6810. #u1010 {
  6811. border-width:0px;
  6812. position:absolute;
  6813. left:733px;
  6814. top:810px;
  6815. width:47px;
  6816. height:53px;
  6817. display:flex;
  6818. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6819. font-weight:500;
  6820. font-style:normal;
  6821. font-size:38px;
  6822. }
  6823. #u1010 .text {
  6824. position:absolute;
  6825. align-self:flex-start;
  6826. padding:0px 0px 0px 0px;
  6827. box-sizing:border-box;
  6828. width:100%;
  6829. }
  6830. #u1010_text {
  6831. border-width:0px;
  6832. white-space:nowrap;
  6833. text-transform:none;
  6834. }
  6835. #u1011_div {
  6836. border-width:0px;
  6837. position:absolute;
  6838. left:0px;
  6839. top:0px;
  6840. width:147px;
  6841. height:120px;
  6842. background:inherit;
  6843. background-color:rgba(255, 255, 255, 0);
  6844. border:none;
  6845. border-radius:0px;
  6846. -moz-box-shadow:none;
  6847. -webkit-box-shadow:none;
  6848. box-shadow:none;
  6849. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6850. font-weight:400;
  6851. font-style:normal;
  6852. font-size:18px;
  6853. line-height:40px;
  6854. }
  6855. #u1011 {
  6856. border-width:0px;
  6857. position:absolute;
  6858. left:382px;
  6859. top:790px;
  6860. width:147px;
  6861. height:120px;
  6862. display:flex;
  6863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6864. font-weight:400;
  6865. font-style:normal;
  6866. font-size:18px;
  6867. line-height:40px;
  6868. }
  6869. #u1011 .text {
  6870. position:absolute;
  6871. align-self:flex-start;
  6872. padding:0px 0px 0px 0px;
  6873. box-sizing:border-box;
  6874. width:100%;
  6875. }
  6876. #u1011_text {
  6877. border-width:0px;
  6878. word-wrap:break-word;
  6879. text-transform:none;
  6880. }