styles.css 136 KB

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