styles.css 159 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1600px;
  7. margin-left:auto;
  8. margin-right:auto;
  9. text-align:left;
  10. }
  11. .form_sketch {
  12. border-color:transparent;
  13. background-color:transparent;
  14. }
  15. #base {
  16. position:absolute;
  17. z-index:0;
  18. }
  19. #u166485_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. #u166485 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u166485 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u166485_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u166486_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. #u166486 {
  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. #u166486 .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. #u166486_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u166487_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. #u166487 {
  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. #u166487 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u166487_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u166488 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u166489_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u166489 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u166489 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u166489_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u166490_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. #u166490 {
  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. #u166490 .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. #u166490_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u166491_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. #u166491 {
  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. #u166491 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u166491_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u166492 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u166493_input {
  266. position:absolute;
  267. left:0px;
  268. top:0px;
  269. width:214px;
  270. height:27px;
  271. padding:2px 2px 2px 2px;
  272. font-family:'ArialMT', 'Arial', sans-serif;
  273. font-weight:400;
  274. font-style:normal;
  275. font-size:14px;
  276. letter-spacing:normal;
  277. color:#FFFFFF;
  278. vertical-align:none;
  279. text-align:left;
  280. text-transform:none;
  281. background-color:transparent;
  282. border-color:transparent;
  283. }
  284. #u166493_input.disabled {
  285. position:absolute;
  286. left:0px;
  287. top:0px;
  288. width:214px;
  289. height:27px;
  290. padding:2px 2px 2px 2px;
  291. font-family:'ArialMT', 'Arial', sans-serif;
  292. font-weight:400;
  293. font-style:normal;
  294. font-size:14px;
  295. letter-spacing:normal;
  296. color:#FFFFFF;
  297. vertical-align:none;
  298. text-align:left;
  299. text-transform:none;
  300. background-color:transparent;
  301. border-color:transparent;
  302. }
  303. #u166493_div {
  304. border-width:0px;
  305. position:absolute;
  306. left:0px;
  307. top:0px;
  308. width:214px;
  309. height:27px;
  310. background:inherit;
  311. background-color:rgba(255, 255, 255, 0);
  312. border:none;
  313. border-radius:0px;
  314. -moz-box-shadow:none;
  315. -webkit-box-shadow:none;
  316. box-shadow:none;
  317. font-size:14px;
  318. color:#FFFFFF;
  319. }
  320. #u166493 {
  321. border-width:0px;
  322. position:absolute;
  323. left:1089px;
  324. top:10px;
  325. width:214px;
  326. height:27px;
  327. display:flex;
  328. font-size:14px;
  329. color:#FFFFFF;
  330. }
  331. #u166493 .text {
  332. position:absolute;
  333. align-self:flex-start;
  334. padding:2px 2px 2px 2px;
  335. box-sizing:border-box;
  336. width:100%;
  337. }
  338. #u166493_div.disabled {
  339. border-width:0px;
  340. position:absolute;
  341. left:0px;
  342. top:0px;
  343. width:214px;
  344. height:27px;
  345. background:inherit;
  346. background-color:rgba(240, 240, 240, 1);
  347. border:none;
  348. border-radius:0px;
  349. -moz-box-shadow:none;
  350. -webkit-box-shadow:none;
  351. box-shadow:none;
  352. font-size:14px;
  353. color:#FFFFFF;
  354. }
  355. #u166493.disabled {
  356. }
  357. .u166493_input_option {
  358. font-size:14px;
  359. }
  360. #u166494_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u166494 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u166494 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u166494_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u166495_div {
  391. border-width:0px;
  392. position:absolute;
  393. left:0px;
  394. top:0px;
  395. width:100px;
  396. height:24px;
  397. background:inherit;
  398. background-color:rgba(242, 242, 242, 0.2);
  399. border:none;
  400. border-radius:25px;
  401. -moz-box-shadow:none;
  402. -webkit-box-shadow:none;
  403. box-shadow:none;
  404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  405. font-weight:400;
  406. font-style:normal;
  407. color:#FFFFFF;
  408. text-align:center;
  409. }
  410. #u166495 {
  411. border-width:0px;
  412. position:absolute;
  413. left:1350px;
  414. top:12px;
  415. width:100px;
  416. height:24px;
  417. display:flex;
  418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  419. font-weight:400;
  420. font-style:normal;
  421. color:#FFFFFF;
  422. text-align:center;
  423. }
  424. #u166495 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u166495_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u166496_div {
  437. border-width:0px;
  438. position:absolute;
  439. left:0px;
  440. top:0px;
  441. width:120px;
  442. height:24px;
  443. background:inherit;
  444. background-color:rgba(242, 242, 242, 0.2);
  445. border:none;
  446. border-radius:25px;
  447. -moz-box-shadow:none;
  448. -webkit-box-shadow:none;
  449. box-shadow:none;
  450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  451. font-weight:400;
  452. font-style:normal;
  453. color:#FFFFFF;
  454. text-align:center;
  455. }
  456. #u166496 {
  457. border-width:0px;
  458. position:absolute;
  459. left:1460px;
  460. top:12px;
  461. width:120px;
  462. height:24px;
  463. display:flex;
  464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  465. font-weight:400;
  466. font-style:normal;
  467. color:#FFFFFF;
  468. text-align:center;
  469. }
  470. #u166496 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u166496_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u166497 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u166498_div {
  491. border-width:0px;
  492. position:absolute;
  493. left:0px;
  494. top:0px;
  495. width:33px;
  496. height:22px;
  497. background:inherit;
  498. background-color:rgba(255, 255, 255, 0);
  499. border:none;
  500. border-radius:0px;
  501. -moz-box-shadow:none;
  502. -webkit-box-shadow:none;
  503. box-shadow:none;
  504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  505. font-weight:400;
  506. font-style:normal;
  507. font-size:16px;
  508. color:#FFFFFF;
  509. }
  510. #u166498 {
  511. border-width:0px;
  512. position:absolute;
  513. left:39px;
  514. top:71px;
  515. width:33px;
  516. height:22px;
  517. display:flex;
  518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  519. font-weight:400;
  520. font-style:normal;
  521. font-size:16px;
  522. color:#FFFFFF;
  523. }
  524. #u166498 .text {
  525. position:absolute;
  526. align-self:flex-start;
  527. padding:0px 0px 0px 0px;
  528. box-sizing:border-box;
  529. width:100%;
  530. }
  531. #u166498_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u166499_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u166499 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u166499 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u166499_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u166500 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u166501_div {
  575. border-width:0px;
  576. position:absolute;
  577. left:0px;
  578. top:0px;
  579. width:33px;
  580. height:22px;
  581. background:inherit;
  582. background-color:rgba(255, 255, 255, 0);
  583. border:none;
  584. border-radius:0px;
  585. -moz-box-shadow:none;
  586. -webkit-box-shadow:none;
  587. box-shadow:none;
  588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  589. font-weight:400;
  590. font-style:normal;
  591. font-size:16px;
  592. color:#FFFFFF;
  593. }
  594. #u166501 {
  595. border-width:0px;
  596. position:absolute;
  597. left:39px;
  598. top:147px;
  599. width:33px;
  600. height:22px;
  601. display:flex;
  602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  603. font-weight:400;
  604. font-style:normal;
  605. font-size:16px;
  606. color:#FFFFFF;
  607. }
  608. #u166501 .text {
  609. position:absolute;
  610. align-self:flex-start;
  611. padding:0px 0px 0px 0px;
  612. box-sizing:border-box;
  613. width:100%;
  614. }
  615. #u166501_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u166502_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u166502 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u166502 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u166502_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u166503 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u166504_div {
  659. border-width:0px;
  660. position:absolute;
  661. left:0px;
  662. top:0px;
  663. width:33px;
  664. height:22px;
  665. background:inherit;
  666. background-color:rgba(255, 255, 255, 0);
  667. border:none;
  668. border-radius:0px;
  669. -moz-box-shadow:none;
  670. -webkit-box-shadow:none;
  671. box-shadow:none;
  672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  673. font-weight:400;
  674. font-style:normal;
  675. font-size:16px;
  676. color:#FFFFFF;
  677. }
  678. #u166504 {
  679. border-width:0px;
  680. position:absolute;
  681. left:39px;
  682. top:399px;
  683. width:33px;
  684. height:22px;
  685. display:flex;
  686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  687. font-weight:400;
  688. font-style:normal;
  689. font-size:16px;
  690. color:#FFFFFF;
  691. }
  692. #u166504 .text {
  693. position:absolute;
  694. align-self:flex-start;
  695. padding:0px 0px 0px 0px;
  696. box-sizing:border-box;
  697. width:100%;
  698. }
  699. #u166504_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u166505_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u166505 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:403px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u166505 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u166505_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u166506 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u166507_div {
  743. border-width:0px;
  744. position:absolute;
  745. left:0px;
  746. top:0px;
  747. width:49px;
  748. height:22px;
  749. background:inherit;
  750. background-color:rgba(255, 255, 255, 0);
  751. border:none;
  752. border-radius:0px;
  753. -moz-box-shadow:none;
  754. -webkit-box-shadow:none;
  755. box-shadow:none;
  756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  757. font-weight:400;
  758. font-style:normal;
  759. font-size:16px;
  760. color:#FFFFFF;
  761. }
  762. #u166507 {
  763. border-width:0px;
  764. position:absolute;
  765. left:39px;
  766. top:109px;
  767. width:49px;
  768. height:22px;
  769. display:flex;
  770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  771. font-weight:400;
  772. font-style:normal;
  773. font-size:16px;
  774. color:#FFFFFF;
  775. }
  776. #u166507 .text {
  777. position:absolute;
  778. align-self:flex-start;
  779. padding:0px 0px 0px 0px;
  780. box-sizing:border-box;
  781. width:100%;
  782. }
  783. #u166507_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u166508_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u166508 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u166508 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u166508_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u166509 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u166510_div {
  827. border-width:0px;
  828. position:absolute;
  829. left:0px;
  830. top:0px;
  831. width:33px;
  832. height:22px;
  833. background:inherit;
  834. background-color:rgba(255, 255, 255, 0);
  835. border:none;
  836. border-radius:0px;
  837. -moz-box-shadow:none;
  838. -webkit-box-shadow:none;
  839. box-shadow:none;
  840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  841. font-weight:400;
  842. font-style:normal;
  843. font-size:16px;
  844. color:#FFFFFF;
  845. }
  846. #u166510 {
  847. border-width:0px;
  848. position:absolute;
  849. left:39px;
  850. top:441px;
  851. width:33px;
  852. height:22px;
  853. display:flex;
  854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  855. font-weight:400;
  856. font-style:normal;
  857. font-size:16px;
  858. color:#FFFFFF;
  859. }
  860. #u166510 .text {
  861. position:absolute;
  862. align-self:flex-start;
  863. padding:0px 0px 0px 0px;
  864. box-sizing:border-box;
  865. width:100%;
  866. }
  867. #u166510_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u166511_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u166511 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:445px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u166511 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u166511_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u166512 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u166513_div {
  911. border-width:0px;
  912. position:absolute;
  913. left:0px;
  914. top:0px;
  915. width:33px;
  916. height:22px;
  917. background:inherit;
  918. background-color:rgba(255, 255, 255, 0);
  919. border:none;
  920. border-radius:0px;
  921. -moz-box-shadow:none;
  922. -webkit-box-shadow:none;
  923. box-shadow:none;
  924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  925. font-weight:400;
  926. font-style:normal;
  927. font-size:16px;
  928. color:#FFFFFF;
  929. }
  930. #u166513 {
  931. border-width:0px;
  932. position:absolute;
  933. left:39px;
  934. top:315px;
  935. width:33px;
  936. height:22px;
  937. display:flex;
  938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  939. font-weight:400;
  940. font-style:normal;
  941. font-size:16px;
  942. color:#FFFFFF;
  943. }
  944. #u166513 .text {
  945. position:absolute;
  946. align-self:flex-start;
  947. padding:0px 0px 0px 0px;
  948. box-sizing:border-box;
  949. width:100%;
  950. }
  951. #u166513_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u166514_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u166514 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:319px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u166514 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u166514_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u166515 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u166516_div {
  995. border-width:0px;
  996. position:absolute;
  997. left:0px;
  998. top:0px;
  999. width:33px;
  1000. height:22px;
  1001. background:inherit;
  1002. background-color:rgba(255, 255, 255, 0);
  1003. border:none;
  1004. border-radius:0px;
  1005. -moz-box-shadow:none;
  1006. -webkit-box-shadow:none;
  1007. box-shadow:none;
  1008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1009. font-weight:400;
  1010. font-style:normal;
  1011. font-size:16px;
  1012. color:#FFFFFF;
  1013. }
  1014. #u166516 {
  1015. border-width:0px;
  1016. position:absolute;
  1017. left:39px;
  1018. top:189px;
  1019. width:33px;
  1020. height:22px;
  1021. display:flex;
  1022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1023. font-weight:400;
  1024. font-style:normal;
  1025. font-size:16px;
  1026. color:#FFFFFF;
  1027. }
  1028. #u166516 .text {
  1029. position:absolute;
  1030. align-self:flex-start;
  1031. padding:0px 0px 0px 0px;
  1032. box-sizing:border-box;
  1033. width:100%;
  1034. }
  1035. #u166516_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u166517_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u166517 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u166517 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u166517_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u166518 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u166519_div {
  1079. border-width:0px;
  1080. position:absolute;
  1081. left:0px;
  1082. top:0px;
  1083. width:33px;
  1084. height:22px;
  1085. background:inherit;
  1086. background-color:rgba(255, 255, 255, 0);
  1087. border:none;
  1088. border-radius:0px;
  1089. -moz-box-shadow:none;
  1090. -webkit-box-shadow:none;
  1091. box-shadow:none;
  1092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1093. font-weight:400;
  1094. font-style:normal;
  1095. font-size:16px;
  1096. color:#FFFFFF;
  1097. }
  1098. #u166519 {
  1099. border-width:0px;
  1100. position:absolute;
  1101. left:39px;
  1102. top:357px;
  1103. width:33px;
  1104. height:22px;
  1105. display:flex;
  1106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1107. font-weight:400;
  1108. font-style:normal;
  1109. font-size:16px;
  1110. color:#FFFFFF;
  1111. }
  1112. #u166519 .text {
  1113. position:absolute;
  1114. align-self:flex-start;
  1115. padding:0px 0px 0px 0px;
  1116. box-sizing:border-box;
  1117. width:100%;
  1118. }
  1119. #u166519_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u166520_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u166520 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:361px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u166520 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u166520_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u166521 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u166522_div {
  1163. border-width:0px;
  1164. position:absolute;
  1165. left:0px;
  1166. top:0px;
  1167. width:33px;
  1168. height:22px;
  1169. background:inherit;
  1170. background-color:rgba(255, 255, 255, 0);
  1171. border:none;
  1172. border-radius:0px;
  1173. -moz-box-shadow:none;
  1174. -webkit-box-shadow:none;
  1175. box-shadow:none;
  1176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1177. font-weight:400;
  1178. font-style:normal;
  1179. font-size:16px;
  1180. color:#FFFFFF;
  1181. }
  1182. #u166522 {
  1183. border-width:0px;
  1184. position:absolute;
  1185. left:39px;
  1186. top:483px;
  1187. width:33px;
  1188. height:22px;
  1189. display:flex;
  1190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1191. font-weight:400;
  1192. font-style:normal;
  1193. font-size:16px;
  1194. color:#FFFFFF;
  1195. }
  1196. #u166522 .text {
  1197. position:absolute;
  1198. align-self:flex-start;
  1199. padding:0px 0px 0px 0px;
  1200. box-sizing:border-box;
  1201. width:100%;
  1202. }
  1203. #u166522_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u166523_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u166523 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:487px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u166523 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u166523_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u166524 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u166525_div {
  1247. border-width:0px;
  1248. position:absolute;
  1249. left:0px;
  1250. top:0px;
  1251. width:33px;
  1252. height:22px;
  1253. background:inherit;
  1254. background-color:rgba(255, 255, 255, 0);
  1255. border:none;
  1256. border-radius:0px;
  1257. -moz-box-shadow:none;
  1258. -webkit-box-shadow:none;
  1259. box-shadow:none;
  1260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1261. font-weight:400;
  1262. font-style:normal;
  1263. font-size:16px;
  1264. color:#FFFFFF;
  1265. }
  1266. #u166525 {
  1267. border-width:0px;
  1268. position:absolute;
  1269. left:39px;
  1270. top:525px;
  1271. width:33px;
  1272. height:22px;
  1273. display:flex;
  1274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1275. font-weight:400;
  1276. font-style:normal;
  1277. font-size:16px;
  1278. color:#FFFFFF;
  1279. }
  1280. #u166525 .text {
  1281. position:absolute;
  1282. align-self:flex-start;
  1283. padding:0px 0px 0px 0px;
  1284. box-sizing:border-box;
  1285. width:100%;
  1286. }
  1287. #u166525_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u166526_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u166526 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:529px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u166526 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u166526_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u166527_div {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:0px;
  1326. top:0px;
  1327. width:29px;
  1328. height:20px;
  1329. background:inherit;
  1330. background-color:rgba(255, 255, 255, 0);
  1331. border:none;
  1332. border-radius:25px;
  1333. -moz-box-shadow:none;
  1334. -webkit-box-shadow:none;
  1335. box-shadow:none;
  1336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1337. font-weight:400;
  1338. font-style:normal;
  1339. color:#FFFFFF;
  1340. }
  1341. #u166527 {
  1342. border-width:0px;
  1343. position:absolute;
  1344. left:52px;
  1345. top:1145px;
  1346. width:29px;
  1347. height:20px;
  1348. display:flex;
  1349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1350. font-weight:400;
  1351. font-style:normal;
  1352. color:#FFFFFF;
  1353. }
  1354. #u166527 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u166527_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u166528_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u166528 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u166528 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u166528_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u166529_div {
  1397. border-width:0px;
  1398. position:absolute;
  1399. left:0px;
  1400. top:0px;
  1401. width:29px;
  1402. height:20px;
  1403. background:inherit;
  1404. background-color:rgba(255, 255, 255, 0);
  1405. border:none;
  1406. border-radius:25px;
  1407. -moz-box-shadow:none;
  1408. -webkit-box-shadow:none;
  1409. box-shadow:none;
  1410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1411. font-weight:400;
  1412. font-style:normal;
  1413. color:#FFFFFF;
  1414. }
  1415. #u166529 {
  1416. border-width:0px;
  1417. position:absolute;
  1418. left:52px;
  1419. top:1187px;
  1420. width:29px;
  1421. height:20px;
  1422. display:flex;
  1423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1424. font-weight:400;
  1425. font-style:normal;
  1426. color:#FFFFFF;
  1427. }
  1428. #u166529 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u166529_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u166530_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u166530 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u166530 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u166530_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u166531 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u166532_div {
  1479. border-width:0px;
  1480. position:absolute;
  1481. left:0px;
  1482. top:0px;
  1483. width:33px;
  1484. height:22px;
  1485. background:inherit;
  1486. background-color:rgba(255, 255, 255, 0);
  1487. border:none;
  1488. border-radius:0px;
  1489. -moz-box-shadow:none;
  1490. -webkit-box-shadow:none;
  1491. box-shadow:none;
  1492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1493. font-weight:400;
  1494. font-style:normal;
  1495. font-size:16px;
  1496. color:#FFFFFF;
  1497. }
  1498. #u166532 {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:39px;
  1502. top:231px;
  1503. width:33px;
  1504. height:22px;
  1505. display:flex;
  1506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1507. font-weight:400;
  1508. font-style:normal;
  1509. font-size:16px;
  1510. color:#FFFFFF;
  1511. }
  1512. #u166532 .text {
  1513. position:absolute;
  1514. align-self:flex-start;
  1515. padding:0px 0px 0px 0px;
  1516. box-sizing:border-box;
  1517. width:100%;
  1518. }
  1519. #u166532_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u166533_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u166533 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u166533 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u166533_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u166534 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u166535_div {
  1563. border-width:0px;
  1564. position:absolute;
  1565. left:0px;
  1566. top:0px;
  1567. width:33px;
  1568. height:22px;
  1569. background:inherit;
  1570. background-color:rgba(255, 255, 255, 0);
  1571. border:none;
  1572. border-radius:0px;
  1573. -moz-box-shadow:none;
  1574. -webkit-box-shadow:none;
  1575. box-shadow:none;
  1576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1577. font-weight:400;
  1578. font-style:normal;
  1579. font-size:16px;
  1580. color:#FFFFFF;
  1581. }
  1582. #u166535 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:39px;
  1586. top:273px;
  1587. width:33px;
  1588. height:22px;
  1589. display:flex;
  1590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1591. font-weight:400;
  1592. font-style:normal;
  1593. font-size:16px;
  1594. color:#FFFFFF;
  1595. }
  1596. #u166535 .text {
  1597. position:absolute;
  1598. align-self:flex-start;
  1599. padding:0px 0px 0px 0px;
  1600. box-sizing:border-box;
  1601. width:100%;
  1602. }
  1603. #u166535_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u166536_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u166536 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:277px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u166536 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u166536_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u166537_div {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:1260px;
  1644. height:889px;
  1645. background:inherit;
  1646. background-color:rgba(255, 255, 255, 1);
  1647. border:none;
  1648. border-radius:0px;
  1649. -moz-box-shadow:none;
  1650. -webkit-box-shadow:none;
  1651. box-shadow:none;
  1652. }
  1653. #u166537 {
  1654. border-width:0px;
  1655. position:absolute;
  1656. left:330px;
  1657. top:340px;
  1658. width:1260px;
  1659. height:889px;
  1660. display:flex;
  1661. }
  1662. #u166537 .text {
  1663. position:absolute;
  1664. align-self:center;
  1665. padding:2px 2px 2px 2px;
  1666. box-sizing:border-box;
  1667. width:100%;
  1668. }
  1669. #u166537_text {
  1670. border-width:0px;
  1671. word-wrap:break-word;
  1672. text-transform:none;
  1673. visibility:hidden;
  1674. }
  1675. #u166538 {
  1676. border-width:0px;
  1677. position:absolute;
  1678. left:0px;
  1679. top:0px;
  1680. width:0px;
  1681. height:0px;
  1682. }
  1683. #u166539_div {
  1684. border-width:0px;
  1685. position:absolute;
  1686. left:0px;
  1687. top:0px;
  1688. width:1212px;
  1689. height:77px;
  1690. background:inherit;
  1691. background-color:rgba(255, 255, 255, 1);
  1692. box-sizing:border-box;
  1693. border-width:1px;
  1694. border-style:solid;
  1695. border-color:rgba(121, 121, 121, 1);
  1696. border-radius:4px;
  1697. -moz-box-shadow:none;
  1698. -webkit-box-shadow:none;
  1699. box-shadow:none;
  1700. }
  1701. #u166539 {
  1702. border-width:0px;
  1703. position:absolute;
  1704. left:350px;
  1705. top:734px;
  1706. width:1212px;
  1707. height:77px;
  1708. display:flex;
  1709. }
  1710. #u166539 .text {
  1711. position:absolute;
  1712. align-self:center;
  1713. padding:2px 2px 2px 2px;
  1714. box-sizing:border-box;
  1715. width:100%;
  1716. }
  1717. #u166539_text {
  1718. border-width:0px;
  1719. word-wrap:break-word;
  1720. text-transform:none;
  1721. visibility:hidden;
  1722. }
  1723. #u166540 {
  1724. border-width:0px;
  1725. position:absolute;
  1726. left:0px;
  1727. top:0px;
  1728. width:0px;
  1729. height:0px;
  1730. }
  1731. #u166541_div {
  1732. border-width:0px;
  1733. position:absolute;
  1734. left:0px;
  1735. top:0px;
  1736. width:69px;
  1737. height:17px;
  1738. background:inherit;
  1739. background-color:rgba(224, 231, 247, 0);
  1740. border:none;
  1741. border-radius:0px;
  1742. -moz-box-shadow:none;
  1743. -webkit-box-shadow:none;
  1744. box-shadow:none;
  1745. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1746. font-weight:400;
  1747. font-style:normal;
  1748. font-size:12px;
  1749. }
  1750. #u166541 {
  1751. border-width:0px;
  1752. position:absolute;
  1753. left:403px;
  1754. top:776px;
  1755. width:69px;
  1756. height:17px;
  1757. display:flex;
  1758. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1759. font-weight:400;
  1760. font-style:normal;
  1761. font-size:12px;
  1762. }
  1763. #u166541 .text {
  1764. position:absolute;
  1765. align-self:center;
  1766. padding:0px 0px 0px 0px;
  1767. box-sizing:border-box;
  1768. width:100%;
  1769. }
  1770. #u166541_text {
  1771. border-width:0px;
  1772. white-space:nowrap;
  1773. text-transform:none;
  1774. }
  1775. #u166542_div {
  1776. border-width:0px;
  1777. position:absolute;
  1778. left:0px;
  1779. top:0px;
  1780. width:70px;
  1781. height:25px;
  1782. background:inherit;
  1783. background-color:rgba(224, 231, 247, 0);
  1784. border:none;
  1785. border-radius:0px;
  1786. -moz-box-shadow:none;
  1787. -webkit-box-shadow:none;
  1788. box-shadow:none;
  1789. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1790. font-weight:500;
  1791. font-style:normal;
  1792. font-size:18px;
  1793. }
  1794. #u166542 {
  1795. border-width:0px;
  1796. position:absolute;
  1797. left:403px;
  1798. top:751px;
  1799. width:70px;
  1800. height:25px;
  1801. display:flex;
  1802. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1803. font-weight:500;
  1804. font-style:normal;
  1805. font-size:18px;
  1806. }
  1807. #u166542 .text {
  1808. position:absolute;
  1809. align-self:center;
  1810. padding:0px 0px 0px 0px;
  1811. box-sizing:border-box;
  1812. width:100%;
  1813. }
  1814. #u166542_text {
  1815. border-width:0px;
  1816. white-space:nowrap;
  1817. text-transform:none;
  1818. }
  1819. #u166543_img {
  1820. border-width:0px;
  1821. position:absolute;
  1822. left:0px;
  1823. top:0px;
  1824. width:15px;
  1825. height:15px;
  1826. }
  1827. #u166543 {
  1828. border-width:0px;
  1829. position:absolute;
  1830. left:477px;
  1831. top:777px;
  1832. width:15px;
  1833. height:15px;
  1834. display:flex;
  1835. }
  1836. #u166543 .text {
  1837. position:absolute;
  1838. align-self:center;
  1839. padding:2px 2px 2px 2px;
  1840. box-sizing:border-box;
  1841. width:100%;
  1842. }
  1843. #u166543_text {
  1844. border-width:0px;
  1845. word-wrap:break-word;
  1846. text-transform:none;
  1847. visibility:hidden;
  1848. }
  1849. #u166544_div {
  1850. border-width:0px;
  1851. position:absolute;
  1852. left:0px;
  1853. top:0px;
  1854. width:12px;
  1855. height:50px;
  1856. background:inherit;
  1857. background-color:rgba(224, 231, 247, 0);
  1858. border:none;
  1859. border-radius:0px;
  1860. -moz-box-shadow:none;
  1861. -webkit-box-shadow:none;
  1862. box-shadow:none;
  1863. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1864. font-weight:500;
  1865. font-style:normal;
  1866. font-size:18px;
  1867. }
  1868. #u166544 {
  1869. border-width:0px;
  1870. position:absolute;
  1871. left:571px;
  1872. top:747px;
  1873. width:12px;
  1874. height:50px;
  1875. display:flex;
  1876. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1877. font-weight:500;
  1878. font-style:normal;
  1879. font-size:18px;
  1880. }
  1881. #u166544 .text {
  1882. position:absolute;
  1883. align-self:center;
  1884. padding:0px 0px 0px 0px;
  1885. box-sizing:border-box;
  1886. width:100%;
  1887. }
  1888. #u166544_text {
  1889. border-width:0px;
  1890. white-space:nowrap;
  1891. text-transform:none;
  1892. }
  1893. #u166545 {
  1894. border-width:0px;
  1895. position:absolute;
  1896. left:0px;
  1897. top:0px;
  1898. width:0px;
  1899. height:0px;
  1900. }
  1901. #u166546_div {
  1902. border-width:0px;
  1903. position:absolute;
  1904. left:0px;
  1905. top:0px;
  1906. width:93px;
  1907. height:17px;
  1908. background:inherit;
  1909. background-color:rgba(224, 231, 247, 0);
  1910. border:none;
  1911. border-radius:0px;
  1912. -moz-box-shadow:none;
  1913. -webkit-box-shadow:none;
  1914. box-shadow:none;
  1915. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1916. font-weight:400;
  1917. font-style:normal;
  1918. font-size:12px;
  1919. }
  1920. #u166546 {
  1921. border-width:0px;
  1922. position:absolute;
  1923. left:647px;
  1924. top:776px;
  1925. width:93px;
  1926. height:17px;
  1927. display:flex;
  1928. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1929. font-weight:400;
  1930. font-style:normal;
  1931. font-size:12px;
  1932. }
  1933. #u166546 .text {
  1934. position:absolute;
  1935. align-self:center;
  1936. padding:0px 0px 0px 0px;
  1937. box-sizing:border-box;
  1938. width:100%;
  1939. }
  1940. #u166546_text {
  1941. border-width:0px;
  1942. white-space:nowrap;
  1943. text-transform:none;
  1944. }
  1945. #u166547_div {
  1946. border-width:0px;
  1947. position:absolute;
  1948. left:0px;
  1949. top:0px;
  1950. width:70px;
  1951. height:25px;
  1952. background:inherit;
  1953. background-color:rgba(224, 231, 247, 0);
  1954. border:none;
  1955. border-radius:0px;
  1956. -moz-box-shadow:none;
  1957. -webkit-box-shadow:none;
  1958. box-shadow:none;
  1959. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1960. font-weight:500;
  1961. font-style:normal;
  1962. font-size:18px;
  1963. }
  1964. #u166547 {
  1965. border-width:0px;
  1966. position:absolute;
  1967. left:654px;
  1968. top:751px;
  1969. width:70px;
  1970. height:25px;
  1971. display:flex;
  1972. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1973. font-weight:500;
  1974. font-style:normal;
  1975. font-size:18px;
  1976. }
  1977. #u166547 .text {
  1978. position:absolute;
  1979. align-self:center;
  1980. padding:0px 0px 0px 0px;
  1981. box-sizing:border-box;
  1982. width:100%;
  1983. }
  1984. #u166547_text {
  1985. border-width:0px;
  1986. white-space:nowrap;
  1987. text-transform:none;
  1988. }
  1989. #u166548_img {
  1990. border-width:0px;
  1991. position:absolute;
  1992. left:0px;
  1993. top:0px;
  1994. width:15px;
  1995. height:15px;
  1996. }
  1997. #u166548 {
  1998. border-width:0px;
  1999. position:absolute;
  2000. left:740px;
  2001. top:777px;
  2002. width:15px;
  2003. height:15px;
  2004. display:flex;
  2005. }
  2006. #u166548 .text {
  2007. position:absolute;
  2008. align-self:center;
  2009. padding:2px 2px 2px 2px;
  2010. box-sizing:border-box;
  2011. width:100%;
  2012. }
  2013. #u166548_text {
  2014. border-width:0px;
  2015. word-wrap:break-word;
  2016. text-transform:none;
  2017. visibility:hidden;
  2018. }
  2019. #u166549 {
  2020. border-width:0px;
  2021. position:absolute;
  2022. left:0px;
  2023. top:0px;
  2024. width:0px;
  2025. height:0px;
  2026. }
  2027. #u166550_div {
  2028. border-width:0px;
  2029. position:absolute;
  2030. left:0px;
  2031. top:0px;
  2032. width:93px;
  2033. height:17px;
  2034. background:inherit;
  2035. background-color:rgba(224, 231, 247, 0);
  2036. border:none;
  2037. border-radius:0px;
  2038. -moz-box-shadow:none;
  2039. -webkit-box-shadow:none;
  2040. box-shadow:none;
  2041. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2042. font-weight:400;
  2043. font-style:normal;
  2044. font-size:12px;
  2045. }
  2046. #u166550 {
  2047. border-width:0px;
  2048. position:absolute;
  2049. left:890px;
  2050. top:776px;
  2051. width:93px;
  2052. height:17px;
  2053. display:flex;
  2054. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2055. font-weight:400;
  2056. font-style:normal;
  2057. font-size:12px;
  2058. }
  2059. #u166550 .text {
  2060. position:absolute;
  2061. align-self:center;
  2062. padding:0px 0px 0px 0px;
  2063. box-sizing:border-box;
  2064. width:100%;
  2065. }
  2066. #u166550_text {
  2067. border-width:0px;
  2068. white-space:nowrap;
  2069. text-transform:none;
  2070. }
  2071. #u166551_div {
  2072. border-width:0px;
  2073. position:absolute;
  2074. left:0px;
  2075. top:0px;
  2076. width:70px;
  2077. height:25px;
  2078. background:inherit;
  2079. background-color:rgba(224, 231, 247, 0);
  2080. border:none;
  2081. border-radius:0px;
  2082. -moz-box-shadow:none;
  2083. -webkit-box-shadow:none;
  2084. box-shadow:none;
  2085. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2086. font-weight:500;
  2087. font-style:normal;
  2088. font-size:18px;
  2089. }
  2090. #u166551 {
  2091. border-width:0px;
  2092. position:absolute;
  2093. left:899px;
  2094. top:751px;
  2095. width:70px;
  2096. height:25px;
  2097. display:flex;
  2098. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2099. font-weight:500;
  2100. font-style:normal;
  2101. font-size:18px;
  2102. }
  2103. #u166551 .text {
  2104. position:absolute;
  2105. align-self:center;
  2106. padding:0px 0px 0px 0px;
  2107. box-sizing:border-box;
  2108. width:100%;
  2109. }
  2110. #u166551_text {
  2111. border-width:0px;
  2112. white-space:nowrap;
  2113. text-transform:none;
  2114. }
  2115. #u166552_img {
  2116. border-width:0px;
  2117. position:absolute;
  2118. left:0px;
  2119. top:0px;
  2120. width:15px;
  2121. height:15px;
  2122. }
  2123. #u166552 {
  2124. border-width:0px;
  2125. position:absolute;
  2126. left:987px;
  2127. top:777px;
  2128. width:15px;
  2129. height:15px;
  2130. display:flex;
  2131. }
  2132. #u166552 .text {
  2133. position:absolute;
  2134. align-self:center;
  2135. padding:2px 2px 2px 2px;
  2136. box-sizing:border-box;
  2137. width:100%;
  2138. }
  2139. #u166552_text {
  2140. border-width:0px;
  2141. word-wrap:break-word;
  2142. text-transform:none;
  2143. visibility:hidden;
  2144. }
  2145. #u166553 {
  2146. border-width:0px;
  2147. position:absolute;
  2148. left:0px;
  2149. top:0px;
  2150. width:0px;
  2151. height:0px;
  2152. }
  2153. #u166554_div {
  2154. border-width:0px;
  2155. position:absolute;
  2156. left:0px;
  2157. top:0px;
  2158. width:107px;
  2159. height:16px;
  2160. background:inherit;
  2161. background-color:rgba(224, 231, 247, 0);
  2162. border:none;
  2163. border-radius:0px;
  2164. -moz-box-shadow:none;
  2165. -webkit-box-shadow:none;
  2166. box-shadow:none;
  2167. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2168. font-weight:400;
  2169. font-style:normal;
  2170. font-size:12px;
  2171. }
  2172. #u166554 {
  2173. border-width:0px;
  2174. position:absolute;
  2175. left:1119px;
  2176. top:777px;
  2177. width:107px;
  2178. height:16px;
  2179. display:flex;
  2180. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2181. font-weight:400;
  2182. font-style:normal;
  2183. font-size:12px;
  2184. }
  2185. #u166554 .text {
  2186. position:absolute;
  2187. align-self:center;
  2188. padding:0px 0px 0px 0px;
  2189. box-sizing:border-box;
  2190. width:100%;
  2191. }
  2192. #u166554_text {
  2193. border-width:0px;
  2194. white-space:nowrap;
  2195. text-transform:none;
  2196. }
  2197. #u166555_div {
  2198. border-width:0px;
  2199. position:absolute;
  2200. left:0px;
  2201. top:0px;
  2202. width:70px;
  2203. height:25px;
  2204. background:inherit;
  2205. background-color:rgba(224, 231, 247, 0);
  2206. border:none;
  2207. border-radius:0px;
  2208. -moz-box-shadow:none;
  2209. -webkit-box-shadow:none;
  2210. box-shadow:none;
  2211. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2212. font-weight:500;
  2213. font-style:normal;
  2214. font-size:18px;
  2215. }
  2216. #u166555 {
  2217. border-width:0px;
  2218. position:absolute;
  2219. left:1147px;
  2220. top:751px;
  2221. width:70px;
  2222. height:25px;
  2223. display:flex;
  2224. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2225. font-weight:500;
  2226. font-style:normal;
  2227. font-size:18px;
  2228. }
  2229. #u166555 .text {
  2230. position:absolute;
  2231. align-self:center;
  2232. padding:0px 0px 0px 0px;
  2233. box-sizing:border-box;
  2234. width:100%;
  2235. }
  2236. #u166555_text {
  2237. border-width:0px;
  2238. white-space:nowrap;
  2239. text-transform:none;
  2240. }
  2241. #u166556_img {
  2242. border-width:0px;
  2243. position:absolute;
  2244. left:0px;
  2245. top:0px;
  2246. width:15px;
  2247. height:15px;
  2248. }
  2249. #u166556 {
  2250. border-width:0px;
  2251. position:absolute;
  2252. left:1230px;
  2253. top:778px;
  2254. width:15px;
  2255. height:15px;
  2256. display:flex;
  2257. }
  2258. #u166556 .text {
  2259. position:absolute;
  2260. align-self:center;
  2261. padding:2px 2px 2px 2px;
  2262. box-sizing:border-box;
  2263. width:100%;
  2264. }
  2265. #u166556_text {
  2266. border-width:0px;
  2267. word-wrap:break-word;
  2268. text-transform:none;
  2269. visibility:hidden;
  2270. }
  2271. #u166557 {
  2272. border-width:0px;
  2273. position:absolute;
  2274. left:0px;
  2275. top:0px;
  2276. width:0px;
  2277. height:0px;
  2278. }
  2279. #u166558_div {
  2280. border-width:0px;
  2281. position:absolute;
  2282. left:0px;
  2283. top:0px;
  2284. width:93px;
  2285. height:17px;
  2286. background:inherit;
  2287. background-color:rgba(224, 231, 247, 0);
  2288. border:none;
  2289. border-radius:0px;
  2290. -moz-box-shadow:none;
  2291. -webkit-box-shadow:none;
  2292. box-shadow:none;
  2293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2294. font-weight:400;
  2295. font-style:normal;
  2296. font-size:12px;
  2297. }
  2298. #u166558 {
  2299. border-width:0px;
  2300. position:absolute;
  2301. left:1384px;
  2302. top:776px;
  2303. width:93px;
  2304. height:17px;
  2305. display:flex;
  2306. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2307. font-weight:400;
  2308. font-style:normal;
  2309. font-size:12px;
  2310. }
  2311. #u166558 .text {
  2312. position:absolute;
  2313. align-self:center;
  2314. padding:0px 0px 0px 0px;
  2315. box-sizing:border-box;
  2316. width:100%;
  2317. }
  2318. #u166558_text {
  2319. border-width:0px;
  2320. white-space:nowrap;
  2321. text-transform:none;
  2322. }
  2323. #u166559_div {
  2324. border-width:0px;
  2325. position:absolute;
  2326. left:0px;
  2327. top:0px;
  2328. width:70px;
  2329. height:25px;
  2330. background:inherit;
  2331. background-color:rgba(224, 231, 247, 0);
  2332. border:none;
  2333. border-radius:0px;
  2334. -moz-box-shadow:none;
  2335. -webkit-box-shadow:none;
  2336. box-shadow:none;
  2337. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2338. font-weight:500;
  2339. font-style:normal;
  2340. font-size:18px;
  2341. }
  2342. #u166559 {
  2343. border-width:0px;
  2344. position:absolute;
  2345. left:1395px;
  2346. top:751px;
  2347. width:70px;
  2348. height:25px;
  2349. display:flex;
  2350. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2351. font-weight:500;
  2352. font-style:normal;
  2353. font-size:18px;
  2354. }
  2355. #u166559 .text {
  2356. position:absolute;
  2357. align-self:center;
  2358. padding:0px 0px 0px 0px;
  2359. box-sizing:border-box;
  2360. width:100%;
  2361. }
  2362. #u166559_text {
  2363. border-width:0px;
  2364. white-space:nowrap;
  2365. text-transform:none;
  2366. }
  2367. #u166560_img {
  2368. border-width:0px;
  2369. position:absolute;
  2370. left:0px;
  2371. top:0px;
  2372. width:15px;
  2373. height:15px;
  2374. }
  2375. #u166560 {
  2376. border-width:0px;
  2377. position:absolute;
  2378. left:1481px;
  2379. top:777px;
  2380. width:15px;
  2381. height:15px;
  2382. display:flex;
  2383. }
  2384. #u166560 .text {
  2385. position:absolute;
  2386. align-self:center;
  2387. padding:2px 2px 2px 2px;
  2388. box-sizing:border-box;
  2389. width:100%;
  2390. }
  2391. #u166560_text {
  2392. border-width:0px;
  2393. word-wrap:break-word;
  2394. text-transform:none;
  2395. visibility:hidden;
  2396. }
  2397. #u166561_div {
  2398. border-width:0px;
  2399. position:absolute;
  2400. left:0px;
  2401. top:0px;
  2402. width:12px;
  2403. height:50px;
  2404. background:inherit;
  2405. background-color:rgba(224, 231, 247, 0);
  2406. border:none;
  2407. border-radius:0px;
  2408. -moz-box-shadow:none;
  2409. -webkit-box-shadow:none;
  2410. box-shadow:none;
  2411. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2412. font-weight:500;
  2413. font-style:normal;
  2414. font-size:18px;
  2415. }
  2416. #u166561 {
  2417. border-width:0px;
  2418. position:absolute;
  2419. left:816px;
  2420. top:747px;
  2421. width:12px;
  2422. height:50px;
  2423. display:flex;
  2424. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2425. font-weight:500;
  2426. font-style:normal;
  2427. font-size:18px;
  2428. }
  2429. #u166561 .text {
  2430. position:absolute;
  2431. align-self:center;
  2432. padding:0px 0px 0px 0px;
  2433. box-sizing:border-box;
  2434. width:100%;
  2435. }
  2436. #u166561_text {
  2437. border-width:0px;
  2438. white-space:nowrap;
  2439. text-transform:none;
  2440. }
  2441. #u166562_div {
  2442. border-width:0px;
  2443. position:absolute;
  2444. left:0px;
  2445. top:0px;
  2446. width:12px;
  2447. height:50px;
  2448. background:inherit;
  2449. background-color:rgba(224, 231, 247, 0);
  2450. border:none;
  2451. border-radius:0px;
  2452. -moz-box-shadow:none;
  2453. -webkit-box-shadow:none;
  2454. box-shadow:none;
  2455. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2456. font-weight:500;
  2457. font-style:normal;
  2458. font-size:18px;
  2459. }
  2460. #u166562 {
  2461. border-width:0px;
  2462. position:absolute;
  2463. left:1068px;
  2464. top:747px;
  2465. width:12px;
  2466. height:50px;
  2467. display:flex;
  2468. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2469. font-weight:500;
  2470. font-style:normal;
  2471. font-size:18px;
  2472. }
  2473. #u166562 .text {
  2474. position:absolute;
  2475. align-self:center;
  2476. padding:0px 0px 0px 0px;
  2477. box-sizing:border-box;
  2478. width:100%;
  2479. }
  2480. #u166562_text {
  2481. border-width:0px;
  2482. white-space:nowrap;
  2483. text-transform:none;
  2484. }
  2485. #u166563_div {
  2486. border-width:0px;
  2487. position:absolute;
  2488. left:0px;
  2489. top:0px;
  2490. width:12px;
  2491. height:50px;
  2492. background:inherit;
  2493. background-color:rgba(224, 231, 247, 0);
  2494. border:none;
  2495. border-radius:0px;
  2496. -moz-box-shadow:none;
  2497. -webkit-box-shadow:none;
  2498. box-shadow:none;
  2499. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2500. font-weight:500;
  2501. font-style:normal;
  2502. font-size:18px;
  2503. }
  2504. #u166563 {
  2505. border-width:0px;
  2506. position:absolute;
  2507. left:1311px;
  2508. top:747px;
  2509. width:12px;
  2510. height:50px;
  2511. display:flex;
  2512. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2513. font-weight:500;
  2514. font-style:normal;
  2515. font-size:18px;
  2516. }
  2517. #u166563 .text {
  2518. position:absolute;
  2519. align-self:center;
  2520. padding:0px 0px 0px 0px;
  2521. box-sizing:border-box;
  2522. width:100%;
  2523. }
  2524. #u166563_text {
  2525. border-width:0px;
  2526. white-space:nowrap;
  2527. text-transform:none;
  2528. }
  2529. #u166564_div {
  2530. border-width:0px;
  2531. position:absolute;
  2532. left:0px;
  2533. top:0px;
  2534. width:1260px;
  2535. height:280px;
  2536. background:inherit;
  2537. background-color:rgba(255, 255, 255, 1);
  2538. border:none;
  2539. border-radius:0px;
  2540. -moz-box-shadow:none;
  2541. -webkit-box-shadow:none;
  2542. box-shadow:none;
  2543. }
  2544. #u166564 {
  2545. border-width:0px;
  2546. position:absolute;
  2547. left:330px;
  2548. top:50px;
  2549. width:1260px;
  2550. height:280px;
  2551. display:flex;
  2552. }
  2553. #u166564 .text {
  2554. position:absolute;
  2555. align-self:center;
  2556. padding:2px 2px 2px 2px;
  2557. box-sizing:border-box;
  2558. width:100%;
  2559. }
  2560. #u166564_text {
  2561. border-width:0px;
  2562. word-wrap:break-word;
  2563. text-transform:none;
  2564. visibility:hidden;
  2565. }
  2566. #u166565_div {
  2567. border-width:0px;
  2568. position:absolute;
  2569. left:0px;
  2570. top:0px;
  2571. width:109px;
  2572. height:50px;
  2573. background:inherit;
  2574. background-color:rgba(224, 231, 247, 0);
  2575. border:none;
  2576. border-radius:0px;
  2577. -moz-box-shadow:none;
  2578. -webkit-box-shadow:none;
  2579. box-shadow:none;
  2580. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2581. font-weight:500;
  2582. font-style:normal;
  2583. font-size:18px;
  2584. }
  2585. #u166565 {
  2586. border-width:0px;
  2587. position:absolute;
  2588. left:350px;
  2589. top:50px;
  2590. width:109px;
  2591. height:50px;
  2592. display:flex;
  2593. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2594. font-weight:500;
  2595. font-style:normal;
  2596. font-size:18px;
  2597. }
  2598. #u166565 .text {
  2599. position:absolute;
  2600. align-self:center;
  2601. padding:0px 0px 0px 0px;
  2602. box-sizing:border-box;
  2603. width:100%;
  2604. }
  2605. #u166565_text {
  2606. border-width:0px;
  2607. white-space:nowrap;
  2608. text-transform:none;
  2609. }
  2610. #u166566_div {
  2611. border-width:0px;
  2612. position:absolute;
  2613. left:0px;
  2614. top:0px;
  2615. width:831px;
  2616. height:20px;
  2617. background:inherit;
  2618. background-color:rgba(255, 255, 255, 0);
  2619. border:none;
  2620. border-radius:0px;
  2621. -moz-box-shadow:none;
  2622. -webkit-box-shadow:none;
  2623. box-shadow:none;
  2624. font-size:14px;
  2625. color:#D9001B;
  2626. }
  2627. #u166566 {
  2628. border-width:0px;
  2629. position:absolute;
  2630. left:350px;
  2631. top:100px;
  2632. width:831px;
  2633. height:20px;
  2634. display:flex;
  2635. font-size:14px;
  2636. color:#D9001B;
  2637. }
  2638. #u166566 .text {
  2639. position:absolute;
  2640. align-self:flex-start;
  2641. padding:0px 0px 0px 0px;
  2642. box-sizing:border-box;
  2643. width:100%;
  2644. }
  2645. #u166566_text {
  2646. border-width:0px;
  2647. white-space:nowrap;
  2648. text-transform:none;
  2649. }
  2650. #u166567_div {
  2651. border-width:0px;
  2652. position:absolute;
  2653. left:0px;
  2654. top:0px;
  2655. width:73px;
  2656. height:50px;
  2657. background:inherit;
  2658. background-color:rgba(224, 231, 247, 0);
  2659. border:none;
  2660. border-radius:0px;
  2661. -moz-box-shadow:none;
  2662. -webkit-box-shadow:none;
  2663. box-shadow:none;
  2664. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2665. font-weight:500;
  2666. font-style:normal;
  2667. font-size:18px;
  2668. color:#1890FF;
  2669. }
  2670. #u166567 {
  2671. border-width:0px;
  2672. position:absolute;
  2673. left:1487px;
  2674. top:50px;
  2675. width:73px;
  2676. height:50px;
  2677. display:flex;
  2678. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2679. font-weight:500;
  2680. font-style:normal;
  2681. font-size:18px;
  2682. color:#1890FF;
  2683. }
  2684. #u166567 .text {
  2685. position:absolute;
  2686. align-self:center;
  2687. padding:0px 0px 0px 0px;
  2688. box-sizing:border-box;
  2689. width:100%;
  2690. }
  2691. #u166567_text {
  2692. border-width:0px;
  2693. white-space:nowrap;
  2694. text-transform:none;
  2695. }
  2696. #u166568 {
  2697. border-width:0px;
  2698. position:absolute;
  2699. left:0px;
  2700. top:0px;
  2701. width:0px;
  2702. height:0px;
  2703. }
  2704. #u166569_div {
  2705. border-width:0px;
  2706. position:absolute;
  2707. left:0px;
  2708. top:0px;
  2709. width:61px;
  2710. height:32px;
  2711. background:inherit;
  2712. background-color:rgba(24, 144, 255, 1);
  2713. border:none;
  2714. border-radius:4px;
  2715. -moz-box-shadow:none;
  2716. -webkit-box-shadow:none;
  2717. box-shadow:none;
  2718. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2719. font-weight:400;
  2720. font-style:normal;
  2721. font-size:14px;
  2722. color:#FFFFFF;
  2723. }
  2724. #u166569 {
  2725. border-width:0px;
  2726. position:absolute;
  2727. left:652px;
  2728. top:360px;
  2729. width:61px;
  2730. height:32px;
  2731. display:flex;
  2732. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2733. font-weight:400;
  2734. font-style:normal;
  2735. font-size:14px;
  2736. color:#FFFFFF;
  2737. }
  2738. #u166569 .text {
  2739. position:absolute;
  2740. align-self:center;
  2741. padding:2px 16px 2px 16px;
  2742. box-sizing:border-box;
  2743. width:100%;
  2744. }
  2745. #u166569_text {
  2746. border-width:0px;
  2747. white-space:nowrap;
  2748. text-transform:none;
  2749. }
  2750. #u166570_div {
  2751. border-width:0px;
  2752. position:absolute;
  2753. left:0px;
  2754. top:0px;
  2755. width:61px;
  2756. height:32px;
  2757. background:inherit;
  2758. background-color:rgba(255, 255, 255, 1);
  2759. box-sizing:border-box;
  2760. border-width:1px;
  2761. border-style:solid;
  2762. border-color:rgba(217, 217, 217, 1);
  2763. border-radius:4px;
  2764. -moz-box-shadow:none;
  2765. -webkit-box-shadow:none;
  2766. box-shadow:none;
  2767. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2768. font-weight:400;
  2769. font-style:normal;
  2770. font-size:14px;
  2771. color:rgba(0, 0, 0, 0.647058823529412);
  2772. line-height:21px;
  2773. }
  2774. #u166570 {
  2775. border-width:0px;
  2776. position:absolute;
  2777. left:723px;
  2778. top:360px;
  2779. width:61px;
  2780. height:32px;
  2781. display:flex;
  2782. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2783. font-weight:400;
  2784. font-style:normal;
  2785. font-size:14px;
  2786. color:rgba(0, 0, 0, 0.647058823529412);
  2787. line-height:21px;
  2788. }
  2789. #u166570 .text {
  2790. position:absolute;
  2791. align-self:center;
  2792. padding:2px 16px 2px 16px;
  2793. box-sizing:border-box;
  2794. width:100%;
  2795. }
  2796. #u166570_text {
  2797. border-width:0px;
  2798. white-space:nowrap;
  2799. text-transform:none;
  2800. }
  2801. #u166571 {
  2802. border-width:0px;
  2803. position:absolute;
  2804. left:0px;
  2805. top:0px;
  2806. width:0px;
  2807. height:0px;
  2808. }
  2809. #u166572_div {
  2810. border-width:0px;
  2811. position:absolute;
  2812. left:0px;
  2813. top:0px;
  2814. width:140px;
  2815. height:30px;
  2816. background:inherit;
  2817. background-color:rgba(255, 255, 255, 1);
  2818. box-sizing:border-box;
  2819. border-width:1px;
  2820. border-style:solid;
  2821. border-color:rgba(215, 215, 215, 1);
  2822. border-radius:4px;
  2823. -moz-box-shadow:none;
  2824. -webkit-box-shadow:none;
  2825. box-shadow:none;
  2826. font-size:14px;
  2827. }
  2828. #u166572 {
  2829. border-width:0px;
  2830. position:absolute;
  2831. left:350px;
  2832. top:362px;
  2833. width:140px;
  2834. height:30px;
  2835. display:flex;
  2836. font-size:14px;
  2837. }
  2838. #u166572 .text {
  2839. position:absolute;
  2840. align-self:center;
  2841. padding:2px 2px 2px 2px;
  2842. box-sizing:border-box;
  2843. width:100%;
  2844. }
  2845. #u166572_text {
  2846. border-width:0px;
  2847. word-wrap:break-word;
  2848. text-transform:none;
  2849. visibility:hidden;
  2850. }
  2851. #u166573_input {
  2852. position:absolute;
  2853. left:0px;
  2854. top:0px;
  2855. width:134px;
  2856. height:23px;
  2857. padding:2px 2px 2px 2px;
  2858. font-family:'ArialMT', 'Arial', sans-serif;
  2859. font-weight:400;
  2860. font-style:normal;
  2861. font-size:14px;
  2862. letter-spacing:normal;
  2863. color:#AAAAAA;
  2864. vertical-align:none;
  2865. text-align:left;
  2866. text-transform:none;
  2867. background-color:transparent;
  2868. border-color:transparent;
  2869. }
  2870. #u166573_input.disabled {
  2871. position:absolute;
  2872. left:0px;
  2873. top:0px;
  2874. width:134px;
  2875. height:23px;
  2876. padding:2px 2px 2px 2px;
  2877. font-family:'ArialMT', 'Arial', sans-serif;
  2878. font-weight:400;
  2879. font-style:normal;
  2880. font-size:14px;
  2881. letter-spacing:normal;
  2882. color:#AAAAAA;
  2883. vertical-align:none;
  2884. text-align:left;
  2885. text-transform:none;
  2886. background-color:transparent;
  2887. border-color:transparent;
  2888. }
  2889. #u166573_div {
  2890. border-width:0px;
  2891. position:absolute;
  2892. left:0px;
  2893. top:0px;
  2894. width:134px;
  2895. height:23px;
  2896. background:inherit;
  2897. background-color:rgba(255, 255, 255, 1);
  2898. border:none;
  2899. border-radius:0px;
  2900. -moz-box-shadow:none;
  2901. -webkit-box-shadow:none;
  2902. box-shadow:none;
  2903. font-size:14px;
  2904. color:#AAAAAA;
  2905. }
  2906. #u166573 {
  2907. border-width:0px;
  2908. position:absolute;
  2909. left:354px;
  2910. top:364px;
  2911. width:134px;
  2912. height:23px;
  2913. display:flex;
  2914. font-size:14px;
  2915. color:#AAAAAA;
  2916. }
  2917. #u166573 .text {
  2918. position:absolute;
  2919. align-self:flex-start;
  2920. padding:2px 2px 2px 2px;
  2921. box-sizing:border-box;
  2922. width:100%;
  2923. }
  2924. #u166573_div.disabled {
  2925. border-width:0px;
  2926. position:absolute;
  2927. left:0px;
  2928. top:0px;
  2929. width:134px;
  2930. height:23px;
  2931. background:inherit;
  2932. background-color:rgba(240, 240, 240, 1);
  2933. border:none;
  2934. border-radius:0px;
  2935. -moz-box-shadow:none;
  2936. -webkit-box-shadow:none;
  2937. box-shadow:none;
  2938. font-size:14px;
  2939. color:#AAAAAA;
  2940. }
  2941. #u166573.disabled {
  2942. }
  2943. .u166573_input_option {
  2944. font-size:14px;
  2945. }
  2946. #u166574 {
  2947. border-width:0px;
  2948. position:absolute;
  2949. left:0px;
  2950. top:0px;
  2951. width:0px;
  2952. height:0px;
  2953. }
  2954. #u166575_div {
  2955. border-width:0px;
  2956. position:absolute;
  2957. left:0px;
  2958. top:0px;
  2959. width:140px;
  2960. height:30px;
  2961. background:inherit;
  2962. background-color:rgba(255, 255, 255, 1);
  2963. box-sizing:border-box;
  2964. border-width:1px;
  2965. border-style:solid;
  2966. border-color:rgba(215, 215, 215, 1);
  2967. border-radius:4px;
  2968. -moz-box-shadow:none;
  2969. -webkit-box-shadow:none;
  2970. box-shadow:none;
  2971. font-size:14px;
  2972. }
  2973. #u166575 {
  2974. border-width:0px;
  2975. position:absolute;
  2976. left:500px;
  2977. top:362px;
  2978. width:140px;
  2979. height:30px;
  2980. display:flex;
  2981. font-size:14px;
  2982. }
  2983. #u166575 .text {
  2984. position:absolute;
  2985. align-self:center;
  2986. padding:2px 2px 2px 2px;
  2987. box-sizing:border-box;
  2988. width:100%;
  2989. }
  2990. #u166575_text {
  2991. border-width:0px;
  2992. word-wrap:break-word;
  2993. text-transform:none;
  2994. visibility:hidden;
  2995. }
  2996. #u166576_input {
  2997. position:absolute;
  2998. left:0px;
  2999. top:0px;
  3000. width:134px;
  3001. height:23px;
  3002. padding:2px 2px 2px 2px;
  3003. font-family:'ArialMT', 'Arial', sans-serif;
  3004. font-weight:400;
  3005. font-style:normal;
  3006. font-size:14px;
  3007. letter-spacing:normal;
  3008. color:#AAAAAA;
  3009. vertical-align:none;
  3010. text-align:left;
  3011. text-transform:none;
  3012. background-color:transparent;
  3013. border-color:transparent;
  3014. }
  3015. #u166576_input.disabled {
  3016. position:absolute;
  3017. left:0px;
  3018. top:0px;
  3019. width:134px;
  3020. height:23px;
  3021. padding:2px 2px 2px 2px;
  3022. font-family:'ArialMT', 'Arial', sans-serif;
  3023. font-weight:400;
  3024. font-style:normal;
  3025. font-size:14px;
  3026. letter-spacing:normal;
  3027. color:#AAAAAA;
  3028. vertical-align:none;
  3029. text-align:left;
  3030. text-transform:none;
  3031. background-color:transparent;
  3032. border-color:transparent;
  3033. }
  3034. #u166576_div {
  3035. border-width:0px;
  3036. position:absolute;
  3037. left:0px;
  3038. top:0px;
  3039. width:134px;
  3040. height:23px;
  3041. background:inherit;
  3042. background-color:rgba(255, 255, 255, 1);
  3043. border:none;
  3044. border-radius:0px;
  3045. -moz-box-shadow:none;
  3046. -webkit-box-shadow:none;
  3047. box-shadow:none;
  3048. font-size:14px;
  3049. color:#AAAAAA;
  3050. }
  3051. #u166576 {
  3052. border-width:0px;
  3053. position:absolute;
  3054. left:504px;
  3055. top:364px;
  3056. width:134px;
  3057. height:23px;
  3058. display:flex;
  3059. font-size:14px;
  3060. color:#AAAAAA;
  3061. }
  3062. #u166576 .text {
  3063. position:absolute;
  3064. align-self:flex-start;
  3065. padding:2px 2px 2px 2px;
  3066. box-sizing:border-box;
  3067. width:100%;
  3068. }
  3069. #u166576_div.disabled {
  3070. border-width:0px;
  3071. position:absolute;
  3072. left:0px;
  3073. top:0px;
  3074. width:134px;
  3075. height:23px;
  3076. background:inherit;
  3077. background-color:rgba(240, 240, 240, 1);
  3078. border:none;
  3079. border-radius:0px;
  3080. -moz-box-shadow:none;
  3081. -webkit-box-shadow:none;
  3082. box-shadow:none;
  3083. font-size:14px;
  3084. color:#AAAAAA;
  3085. }
  3086. #u166576.disabled {
  3087. }
  3088. .u166576_input_option {
  3089. font-size:14px;
  3090. }
  3091. #u166577_div {
  3092. border-width:0px;
  3093. position:absolute;
  3094. left:0px;
  3095. top:0px;
  3096. width:70px;
  3097. height:22px;
  3098. background:inherit;
  3099. background-color:rgba(24, 144, 255, 1);
  3100. border:none;
  3101. border-radius:0px;
  3102. -moz-box-shadow:none;
  3103. -webkit-box-shadow:none;
  3104. box-shadow:none;
  3105. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3106. font-weight:400;
  3107. font-style:normal;
  3108. font-size:14px;
  3109. color:#FFFFFF;
  3110. }
  3111. #u166577 {
  3112. border-width:0px;
  3113. position:absolute;
  3114. left:1487px;
  3115. top:418px;
  3116. width:70px;
  3117. height:22px;
  3118. display:flex;
  3119. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3120. font-weight:400;
  3121. font-style:normal;
  3122. font-size:14px;
  3123. color:#FFFFFF;
  3124. }
  3125. #u166577 .text {
  3126. position:absolute;
  3127. align-self:center;
  3128. padding:2px 0px 2px 0px;
  3129. box-sizing:border-box;
  3130. width:100%;
  3131. }
  3132. #u166577_text {
  3133. border-width:0px;
  3134. word-wrap:break-word;
  3135. text-transform:none;
  3136. }
  3137. #u166578 {
  3138. border-width:0px;
  3139. position:absolute;
  3140. left:0px;
  3141. top:0px;
  3142. width:0px;
  3143. height:0px;
  3144. }
  3145. #u166579_div {
  3146. border-width:0px;
  3147. position:absolute;
  3148. left:0px;
  3149. top:0px;
  3150. width:85px;
  3151. height:50px;
  3152. background:inherit;
  3153. background-color:rgba(224, 231, 247, 0);
  3154. border:none;
  3155. border-radius:0px;
  3156. -moz-box-shadow:none;
  3157. -webkit-box-shadow:none;
  3158. box-shadow:none;
  3159. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3160. font-weight:500;
  3161. font-style:normal;
  3162. }
  3163. #u166579 {
  3164. border-width:0px;
  3165. position:absolute;
  3166. left:350px;
  3167. top:393px;
  3168. width:85px;
  3169. height:50px;
  3170. display:flex;
  3171. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3172. font-weight:500;
  3173. font-style:normal;
  3174. }
  3175. #u166579 .text {
  3176. position:absolute;
  3177. align-self:center;
  3178. padding:0px 0px 0px 0px;
  3179. box-sizing:border-box;
  3180. width:100%;
  3181. }
  3182. #u166579_text {
  3183. border-width:0px;
  3184. white-space:nowrap;
  3185. text-transform:none;
  3186. }
  3187. #u166580_img {
  3188. border-width:0px;
  3189. position:absolute;
  3190. left:0px;
  3191. top:0px;
  3192. width:15px;
  3193. height:15px;
  3194. }
  3195. #u166580 {
  3196. border-width:0px;
  3197. position:absolute;
  3198. left:444px;
  3199. top:411px;
  3200. width:15px;
  3201. height:15px;
  3202. display:flex;
  3203. }
  3204. #u166580 .text {
  3205. position:absolute;
  3206. align-self:center;
  3207. padding:2px 2px 2px 2px;
  3208. box-sizing:border-box;
  3209. width:100%;
  3210. }
  3211. #u166580_text {
  3212. border-width:0px;
  3213. word-wrap:break-word;
  3214. text-transform:none;
  3215. visibility:hidden;
  3216. }
  3217. #u166581 {
  3218. border-width:0px;
  3219. position:absolute;
  3220. left:0px;
  3221. top:0px;
  3222. width:0px;
  3223. height:0px;
  3224. }
  3225. #u166582 {
  3226. border-width:0px;
  3227. position:absolute;
  3228. left:0px;
  3229. top:0px;
  3230. width:0px;
  3231. height:0px;
  3232. }
  3233. #u166583_div {
  3234. border-width:0px;
  3235. position:absolute;
  3236. left:0px;
  3237. top:0px;
  3238. width:228px;
  3239. height:100px;
  3240. background:inherit;
  3241. background-color:rgba(255, 255, 255, 1);
  3242. box-sizing:border-box;
  3243. border-width:1px;
  3244. border-style:solid;
  3245. border-color:rgba(121, 121, 121, 1);
  3246. border-radius:4px;
  3247. -moz-box-shadow:none;
  3248. -webkit-box-shadow:none;
  3249. box-shadow:none;
  3250. }
  3251. #u166583 {
  3252. border-width:0px;
  3253. position:absolute;
  3254. left:350px;
  3255. top:441px;
  3256. width:228px;
  3257. height:100px;
  3258. display:flex;
  3259. }
  3260. #u166583 .text {
  3261. position:absolute;
  3262. align-self:center;
  3263. padding:2px 2px 2px 2px;
  3264. box-sizing:border-box;
  3265. width:100%;
  3266. }
  3267. #u166583_text {
  3268. border-width:0px;
  3269. word-wrap:break-word;
  3270. text-transform:none;
  3271. visibility:hidden;
  3272. }
  3273. #u166584_div {
  3274. border-width:0px;
  3275. position:absolute;
  3276. left:0px;
  3277. top:0px;
  3278. width:81px;
  3279. height:17px;
  3280. background:inherit;
  3281. background-color:rgba(224, 231, 247, 0);
  3282. border:none;
  3283. border-radius:0px;
  3284. -moz-box-shadow:none;
  3285. -webkit-box-shadow:none;
  3286. box-shadow:none;
  3287. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3288. font-weight:400;
  3289. font-style:normal;
  3290. font-size:12px;
  3291. }
  3292. #u166584 {
  3293. border-width:0px;
  3294. position:absolute;
  3295. left:367px;
  3296. top:455px;
  3297. width:81px;
  3298. height:17px;
  3299. display:flex;
  3300. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3301. font-weight:400;
  3302. font-style:normal;
  3303. font-size:12px;
  3304. }
  3305. #u166584 .text {
  3306. position:absolute;
  3307. align-self:center;
  3308. padding:0px 0px 0px 0px;
  3309. box-sizing:border-box;
  3310. width:100%;
  3311. }
  3312. #u166584_text {
  3313. border-width:0px;
  3314. white-space:nowrap;
  3315. text-transform:none;
  3316. }
  3317. #u166585_div {
  3318. border-width:0px;
  3319. position:absolute;
  3320. left:0px;
  3321. top:0px;
  3322. width:70px;
  3323. height:50px;
  3324. background:inherit;
  3325. background-color:rgba(224, 231, 247, 0);
  3326. border:none;
  3327. border-radius:0px;
  3328. -moz-box-shadow:none;
  3329. -webkit-box-shadow:none;
  3330. box-shadow:none;
  3331. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3332. font-weight:500;
  3333. font-style:normal;
  3334. font-size:18px;
  3335. }
  3336. #u166585 {
  3337. border-width:0px;
  3338. position:absolute;
  3339. left:429px;
  3340. top:479px;
  3341. width:70px;
  3342. height:50px;
  3343. display:flex;
  3344. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3345. font-weight:500;
  3346. font-style:normal;
  3347. font-size:18px;
  3348. }
  3349. #u166585 .text {
  3350. position:absolute;
  3351. align-self:center;
  3352. padding:0px 0px 0px 0px;
  3353. box-sizing:border-box;
  3354. width:100%;
  3355. }
  3356. #u166585_text {
  3357. border-width:0px;
  3358. white-space:nowrap;
  3359. text-transform:none;
  3360. }
  3361. #u166586 {
  3362. border-width:0px;
  3363. position:absolute;
  3364. left:0px;
  3365. top:0px;
  3366. width:0px;
  3367. height:0px;
  3368. }
  3369. #u166587_div {
  3370. border-width:0px;
  3371. position:absolute;
  3372. left:0px;
  3373. top:0px;
  3374. width:228px;
  3375. height:100px;
  3376. background:inherit;
  3377. background-color:rgba(255, 255, 255, 1);
  3378. box-sizing:border-box;
  3379. border-width:1px;
  3380. border-style:solid;
  3381. border-color:rgba(121, 121, 121, 1);
  3382. border-radius:4px;
  3383. -moz-box-shadow:none;
  3384. -webkit-box-shadow:none;
  3385. box-shadow:none;
  3386. }
  3387. #u166587 {
  3388. border-width:0px;
  3389. position:absolute;
  3390. left:640px;
  3391. top:441px;
  3392. width:228px;
  3393. height:100px;
  3394. display:flex;
  3395. }
  3396. #u166587 .text {
  3397. position:absolute;
  3398. align-self:center;
  3399. padding:2px 2px 2px 2px;
  3400. box-sizing:border-box;
  3401. width:100%;
  3402. }
  3403. #u166587_text {
  3404. border-width:0px;
  3405. word-wrap:break-word;
  3406. text-transform:none;
  3407. visibility:hidden;
  3408. }
  3409. #u166588_div {
  3410. border-width:0px;
  3411. position:absolute;
  3412. left:0px;
  3413. top:0px;
  3414. width:93px;
  3415. height:17px;
  3416. background:inherit;
  3417. background-color:rgba(224, 231, 247, 0);
  3418. border:none;
  3419. border-radius:0px;
  3420. -moz-box-shadow:none;
  3421. -webkit-box-shadow:none;
  3422. box-shadow:none;
  3423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3424. font-weight:400;
  3425. font-style:normal;
  3426. font-size:12px;
  3427. }
  3428. #u166588 {
  3429. border-width:0px;
  3430. position:absolute;
  3431. left:657px;
  3432. top:455px;
  3433. width:93px;
  3434. height:17px;
  3435. display:flex;
  3436. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3437. font-weight:400;
  3438. font-style:normal;
  3439. font-size:12px;
  3440. }
  3441. #u166588 .text {
  3442. position:absolute;
  3443. align-self:center;
  3444. padding:0px 0px 0px 0px;
  3445. box-sizing:border-box;
  3446. width:100%;
  3447. }
  3448. #u166588_text {
  3449. border-width:0px;
  3450. white-space:nowrap;
  3451. text-transform:none;
  3452. }
  3453. #u166589_div {
  3454. border-width:0px;
  3455. position:absolute;
  3456. left:0px;
  3457. top:0px;
  3458. width:38px;
  3459. height:50px;
  3460. background:inherit;
  3461. background-color:rgba(224, 231, 247, 0);
  3462. border:none;
  3463. border-radius:0px;
  3464. -moz-box-shadow:none;
  3465. -webkit-box-shadow:none;
  3466. box-shadow:none;
  3467. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3468. font-weight:500;
  3469. font-style:normal;
  3470. font-size:18px;
  3471. }
  3472. #u166589 {
  3473. border-width:0px;
  3474. position:absolute;
  3475. left:719px;
  3476. top:479px;
  3477. width:38px;
  3478. height:50px;
  3479. display:flex;
  3480. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3481. font-weight:500;
  3482. font-style:normal;
  3483. font-size:18px;
  3484. }
  3485. #u166589 .text {
  3486. position:absolute;
  3487. align-self:center;
  3488. padding:0px 0px 0px 0px;
  3489. box-sizing:border-box;
  3490. width:100%;
  3491. }
  3492. #u166589_text {
  3493. border-width:0px;
  3494. white-space:nowrap;
  3495. text-transform:none;
  3496. }
  3497. #u166590 {
  3498. border-width:0px;
  3499. position:absolute;
  3500. left:0px;
  3501. top:0px;
  3502. width:0px;
  3503. height:0px;
  3504. }
  3505. #u166591_div {
  3506. border-width:0px;
  3507. position:absolute;
  3508. left:0px;
  3509. top:0px;
  3510. width:228px;
  3511. height:100px;
  3512. background:inherit;
  3513. background-color:rgba(255, 255, 255, 1);
  3514. box-sizing:border-box;
  3515. border-width:1px;
  3516. border-style:solid;
  3517. border-color:rgba(121, 121, 121, 1);
  3518. border-radius:4px;
  3519. -moz-box-shadow:none;
  3520. -webkit-box-shadow:none;
  3521. box-shadow:none;
  3522. }
  3523. #u166591 {
  3524. border-width:0px;
  3525. position:absolute;
  3526. left:932px;
  3527. top:441px;
  3528. width:228px;
  3529. height:100px;
  3530. display:flex;
  3531. }
  3532. #u166591 .text {
  3533. position:absolute;
  3534. align-self:center;
  3535. padding:2px 2px 2px 2px;
  3536. box-sizing:border-box;
  3537. width:100%;
  3538. }
  3539. #u166591_text {
  3540. border-width:0px;
  3541. word-wrap:break-word;
  3542. text-transform:none;
  3543. visibility:hidden;
  3544. }
  3545. #u166592_div {
  3546. border-width:0px;
  3547. position:absolute;
  3548. left:0px;
  3549. top:0px;
  3550. width:93px;
  3551. height:17px;
  3552. background:inherit;
  3553. background-color:rgba(224, 231, 247, 0);
  3554. border:none;
  3555. border-radius:0px;
  3556. -moz-box-shadow:none;
  3557. -webkit-box-shadow:none;
  3558. box-shadow:none;
  3559. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3560. font-weight:400;
  3561. font-style:normal;
  3562. font-size:12px;
  3563. }
  3564. #u166592 {
  3565. border-width:0px;
  3566. position:absolute;
  3567. left:949px;
  3568. top:455px;
  3569. width:93px;
  3570. height:17px;
  3571. display:flex;
  3572. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3573. font-weight:400;
  3574. font-style:normal;
  3575. font-size:12px;
  3576. }
  3577. #u166592 .text {
  3578. position:absolute;
  3579. align-self:center;
  3580. padding:0px 0px 0px 0px;
  3581. box-sizing:border-box;
  3582. width:100%;
  3583. }
  3584. #u166592_text {
  3585. border-width:0px;
  3586. white-space:nowrap;
  3587. text-transform:none;
  3588. }
  3589. #u166593_div {
  3590. border-width:0px;
  3591. position:absolute;
  3592. left:0px;
  3593. top:0px;
  3594. width:70px;
  3595. height:50px;
  3596. background:inherit;
  3597. background-color:rgba(224, 231, 247, 0);
  3598. border:none;
  3599. border-radius:0px;
  3600. -moz-box-shadow:none;
  3601. -webkit-box-shadow:none;
  3602. box-shadow:none;
  3603. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3604. font-weight:500;
  3605. font-style:normal;
  3606. font-size:18px;
  3607. }
  3608. #u166593 {
  3609. border-width:0px;
  3610. position:absolute;
  3611. left:1011px;
  3612. top:479px;
  3613. width:70px;
  3614. height:50px;
  3615. display:flex;
  3616. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3617. font-weight:500;
  3618. font-style:normal;
  3619. font-size:18px;
  3620. }
  3621. #u166593 .text {
  3622. position:absolute;
  3623. align-self:center;
  3624. padding:0px 0px 0px 0px;
  3625. box-sizing:border-box;
  3626. width:100%;
  3627. }
  3628. #u166593_text {
  3629. border-width:0px;
  3630. white-space:nowrap;
  3631. text-transform:none;
  3632. }
  3633. #u166594_div {
  3634. border-width:0px;
  3635. position:absolute;
  3636. left:0px;
  3637. top:0px;
  3638. width:12px;
  3639. height:50px;
  3640. background:inherit;
  3641. background-color:rgba(224, 231, 247, 0);
  3642. border:none;
  3643. border-radius:0px;
  3644. -moz-box-shadow:none;
  3645. -webkit-box-shadow:none;
  3646. box-shadow:none;
  3647. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3648. font-weight:500;
  3649. font-style:normal;
  3650. font-size:18px;
  3651. }
  3652. #u166594 {
  3653. border-width:0px;
  3654. position:absolute;
  3655. left:601px;
  3656. top:464px;
  3657. width:12px;
  3658. height:50px;
  3659. display:flex;
  3660. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3661. font-weight:500;
  3662. font-style:normal;
  3663. font-size:18px;
  3664. }
  3665. #u166594 .text {
  3666. position:absolute;
  3667. align-self:center;
  3668. padding:0px 0px 0px 0px;
  3669. box-sizing:border-box;
  3670. width:100%;
  3671. }
  3672. #u166594_text {
  3673. border-width:0px;
  3674. white-space:nowrap;
  3675. text-transform:none;
  3676. }
  3677. #u166595_div {
  3678. border-width:0px;
  3679. position:absolute;
  3680. left:0px;
  3681. top:0px;
  3682. width:12px;
  3683. height:50px;
  3684. background:inherit;
  3685. background-color:rgba(224, 231, 247, 0);
  3686. border:none;
  3687. border-radius:0px;
  3688. -moz-box-shadow:none;
  3689. -webkit-box-shadow:none;
  3690. box-shadow:none;
  3691. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3692. font-weight:500;
  3693. font-style:normal;
  3694. font-size:18px;
  3695. }
  3696. #u166595 {
  3697. border-width:0px;
  3698. position:absolute;
  3699. left:894px;
  3700. top:464px;
  3701. width:12px;
  3702. height:50px;
  3703. display:flex;
  3704. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3705. font-weight:500;
  3706. font-style:normal;
  3707. font-size:18px;
  3708. }
  3709. #u166595 .text {
  3710. position:absolute;
  3711. align-self:center;
  3712. padding:0px 0px 0px 0px;
  3713. box-sizing:border-box;
  3714. width:100%;
  3715. }
  3716. #u166595_text {
  3717. border-width:0px;
  3718. white-space:nowrap;
  3719. text-transform:none;
  3720. }
  3721. #u166596 {
  3722. border-width:0px;
  3723. position:absolute;
  3724. left:0px;
  3725. top:0px;
  3726. width:0px;
  3727. height:0px;
  3728. }
  3729. #u166597_div {
  3730. border-width:0px;
  3731. position:absolute;
  3732. left:0px;
  3733. top:0px;
  3734. width:220px;
  3735. height:77px;
  3736. background:inherit;
  3737. background-color:rgba(255, 255, 255, 1);
  3738. box-sizing:border-box;
  3739. border-width:1px;
  3740. border-style:solid;
  3741. border-color:rgba(121, 121, 121, 1);
  3742. border-radius:4px;
  3743. -moz-box-shadow:none;
  3744. -webkit-box-shadow:none;
  3745. box-shadow:none;
  3746. }
  3747. #u166597 {
  3748. border-width:0px;
  3749. position:absolute;
  3750. left:350px;
  3751. top:637px;
  3752. width:220px;
  3753. height:77px;
  3754. display:flex;
  3755. }
  3756. #u166597 .text {
  3757. position:absolute;
  3758. align-self:center;
  3759. padding:2px 2px 2px 2px;
  3760. box-sizing:border-box;
  3761. width:100%;
  3762. }
  3763. #u166597_text {
  3764. border-width:0px;
  3765. word-wrap:break-word;
  3766. text-transform:none;
  3767. visibility:hidden;
  3768. }
  3769. #u166598_div {
  3770. border-width:0px;
  3771. position:absolute;
  3772. left:0px;
  3773. top:0px;
  3774. width:93px;
  3775. height:17px;
  3776. background:inherit;
  3777. background-color:rgba(224, 231, 247, 0);
  3778. border:none;
  3779. border-radius:0px;
  3780. -moz-box-shadow:none;
  3781. -webkit-box-shadow:none;
  3782. box-shadow:none;
  3783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3784. font-weight:400;
  3785. font-style:normal;
  3786. font-size:12px;
  3787. }
  3788. #u166598 {
  3789. border-width:0px;
  3790. position:absolute;
  3791. left:403px;
  3792. top:680px;
  3793. width:93px;
  3794. height:17px;
  3795. display:flex;
  3796. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3797. font-weight:400;
  3798. font-style:normal;
  3799. font-size:12px;
  3800. }
  3801. #u166598 .text {
  3802. position:absolute;
  3803. align-self:center;
  3804. padding:0px 0px 0px 0px;
  3805. box-sizing:border-box;
  3806. width:100%;
  3807. }
  3808. #u166598_text {
  3809. border-width:0px;
  3810. white-space:nowrap;
  3811. text-transform:none;
  3812. }
  3813. #u166599_div {
  3814. border-width:0px;
  3815. position:absolute;
  3816. left:0px;
  3817. top:0px;
  3818. width:70px;
  3819. height:25px;
  3820. background:inherit;
  3821. background-color:rgba(224, 231, 247, 0);
  3822. border:none;
  3823. border-radius:0px;
  3824. -moz-box-shadow:none;
  3825. -webkit-box-shadow:none;
  3826. box-shadow:none;
  3827. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3828. font-weight:500;
  3829. font-style:normal;
  3830. font-size:18px;
  3831. }
  3832. #u166599 {
  3833. border-width:0px;
  3834. position:absolute;
  3835. left:424px;
  3836. top:655px;
  3837. width:70px;
  3838. height:25px;
  3839. display:flex;
  3840. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3841. font-weight:500;
  3842. font-style:normal;
  3843. font-size:18px;
  3844. }
  3845. #u166599 .text {
  3846. position:absolute;
  3847. align-self:center;
  3848. padding:0px 0px 0px 0px;
  3849. box-sizing:border-box;
  3850. width:100%;
  3851. }
  3852. #u166599_text {
  3853. border-width:0px;
  3854. white-space:nowrap;
  3855. text-transform:none;
  3856. }
  3857. #u166600_img {
  3858. border-width:0px;
  3859. position:absolute;
  3860. left:0px;
  3861. top:0px;
  3862. width:15px;
  3863. height:15px;
  3864. }
  3865. #u166600 {
  3866. border-width:0px;
  3867. position:absolute;
  3868. left:503px;
  3869. top:681px;
  3870. width:15px;
  3871. height:15px;
  3872. display:flex;
  3873. }
  3874. #u166600 .text {
  3875. position:absolute;
  3876. align-self:center;
  3877. padding:2px 2px 2px 2px;
  3878. box-sizing:border-box;
  3879. width:100%;
  3880. }
  3881. #u166600_text {
  3882. border-width:0px;
  3883. word-wrap:break-word;
  3884. text-transform:none;
  3885. visibility:hidden;
  3886. }
  3887. #u166601_div {
  3888. border-width:0px;
  3889. position:absolute;
  3890. left:0px;
  3891. top:0px;
  3892. width:85px;
  3893. height:50px;
  3894. background:inherit;
  3895. background-color:rgba(224, 231, 247, 0);
  3896. border:none;
  3897. border-radius:0px;
  3898. -moz-box-shadow:none;
  3899. -webkit-box-shadow:none;
  3900. box-shadow:none;
  3901. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3902. font-weight:500;
  3903. font-style:normal;
  3904. }
  3905. #u166601 {
  3906. border-width:0px;
  3907. position:absolute;
  3908. left:350px;
  3909. top:574px;
  3910. width:85px;
  3911. height:50px;
  3912. display:flex;
  3913. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3914. font-weight:500;
  3915. font-style:normal;
  3916. }
  3917. #u166601 .text {
  3918. position:absolute;
  3919. align-self:center;
  3920. padding:0px 0px 0px 0px;
  3921. box-sizing:border-box;
  3922. width:100%;
  3923. }
  3924. #u166601_text {
  3925. border-width:0px;
  3926. white-space:nowrap;
  3927. text-transform:none;
  3928. }
  3929. #u166602_div {
  3930. border-width:0px;
  3931. position:absolute;
  3932. left:0px;
  3933. top:0px;
  3934. width:716px;
  3935. height:18px;
  3936. background:inherit;
  3937. background-color:rgba(255, 255, 255, 0);
  3938. border:none;
  3939. border-radius:0px;
  3940. -moz-box-shadow:none;
  3941. -webkit-box-shadow:none;
  3942. box-shadow:none;
  3943. color:#D9001B;
  3944. }
  3945. #u166602 {
  3946. border-width:0px;
  3947. position:absolute;
  3948. left:464px;
  3949. top:591px;
  3950. width:716px;
  3951. height:18px;
  3952. display:flex;
  3953. color:#D9001B;
  3954. }
  3955. #u166602 .text {
  3956. position:absolute;
  3957. align-self:flex-start;
  3958. padding:0px 0px 0px 0px;
  3959. box-sizing:border-box;
  3960. width:100%;
  3961. }
  3962. #u166602_text {
  3963. border-width:0px;
  3964. white-space:nowrap;
  3965. text-transform:none;
  3966. }
  3967. #u166603 {
  3968. border-width:0px;
  3969. position:absolute;
  3970. left:0px;
  3971. top:0px;
  3972. width:0px;
  3973. height:0px;
  3974. }
  3975. #u166604_div {
  3976. border-width:0px;
  3977. position:absolute;
  3978. left:0px;
  3979. top:0px;
  3980. width:220px;
  3981. height:77px;
  3982. background:inherit;
  3983. background-color:rgba(255, 255, 255, 1);
  3984. box-sizing:border-box;
  3985. border-width:1px;
  3986. border-style:solid;
  3987. border-color:rgba(121, 121, 121, 1);
  3988. border-radius:4px;
  3989. -moz-box-shadow:none;
  3990. -webkit-box-shadow:none;
  3991. box-shadow:none;
  3992. }
  3993. #u166604 {
  3994. border-width:0px;
  3995. position:absolute;
  3996. left:681px;
  3997. top:637px;
  3998. width:220px;
  3999. height:77px;
  4000. display:flex;
  4001. }
  4002. #u166604 .text {
  4003. position:absolute;
  4004. align-self:center;
  4005. padding:2px 2px 2px 2px;
  4006. box-sizing:border-box;
  4007. width:100%;
  4008. }
  4009. #u166604_text {
  4010. border-width:0px;
  4011. word-wrap:break-word;
  4012. text-transform:none;
  4013. visibility:hidden;
  4014. }
  4015. #u166605_div {
  4016. border-width:0px;
  4017. position:absolute;
  4018. left:0px;
  4019. top:0px;
  4020. width:69px;
  4021. height:17px;
  4022. background:inherit;
  4023. background-color:rgba(224, 231, 247, 0);
  4024. border:none;
  4025. border-radius:0px;
  4026. -moz-box-shadow:none;
  4027. -webkit-box-shadow:none;
  4028. box-shadow:none;
  4029. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4030. font-weight:400;
  4031. font-style:normal;
  4032. font-size:12px;
  4033. }
  4034. #u166605 {
  4035. border-width:0px;
  4036. position:absolute;
  4037. left:744px;
  4038. top:680px;
  4039. width:69px;
  4040. height:17px;
  4041. display:flex;
  4042. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4043. font-weight:400;
  4044. font-style:normal;
  4045. font-size:12px;
  4046. }
  4047. #u166605 .text {
  4048. position:absolute;
  4049. align-self:center;
  4050. padding:0px 0px 0px 0px;
  4051. box-sizing:border-box;
  4052. width:100%;
  4053. }
  4054. #u166605_text {
  4055. border-width:0px;
  4056. white-space:nowrap;
  4057. text-transform:none;
  4058. }
  4059. #u166606_div {
  4060. border-width:0px;
  4061. position:absolute;
  4062. left:0px;
  4063. top:0px;
  4064. width:70px;
  4065. height:25px;
  4066. background:inherit;
  4067. background-color:rgba(224, 231, 247, 0);
  4068. border:none;
  4069. border-radius:0px;
  4070. -moz-box-shadow:none;
  4071. -webkit-box-shadow:none;
  4072. box-shadow:none;
  4073. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4074. font-weight:500;
  4075. font-style:normal;
  4076. font-size:18px;
  4077. }
  4078. #u166606 {
  4079. border-width:0px;
  4080. position:absolute;
  4081. left:744px;
  4082. top:655px;
  4083. width:70px;
  4084. height:25px;
  4085. display:flex;
  4086. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4087. font-weight:500;
  4088. font-style:normal;
  4089. font-size:18px;
  4090. }
  4091. #u166606 .text {
  4092. position:absolute;
  4093. align-self:center;
  4094. padding:0px 0px 0px 0px;
  4095. box-sizing:border-box;
  4096. width:100%;
  4097. }
  4098. #u166606_text {
  4099. border-width:0px;
  4100. white-space:nowrap;
  4101. text-transform:none;
  4102. }
  4103. #u166607_img {
  4104. border-width:0px;
  4105. position:absolute;
  4106. left:0px;
  4107. top:0px;
  4108. width:15px;
  4109. height:15px;
  4110. }
  4111. #u166607 {
  4112. border-width:0px;
  4113. position:absolute;
  4114. left:818px;
  4115. top:681px;
  4116. width:15px;
  4117. height:15px;
  4118. display:flex;
  4119. }
  4120. #u166607 .text {
  4121. position:absolute;
  4122. align-self:center;
  4123. padding:2px 2px 2px 2px;
  4124. box-sizing:border-box;
  4125. width:100%;
  4126. }
  4127. #u166607_text {
  4128. border-width:0px;
  4129. word-wrap:break-word;
  4130. text-transform:none;
  4131. visibility:hidden;
  4132. }
  4133. #u166608 {
  4134. border-width:0px;
  4135. position:absolute;
  4136. left:0px;
  4137. top:0px;
  4138. width:0px;
  4139. height:0px;
  4140. }
  4141. #u166609_div {
  4142. border-width:0px;
  4143. position:absolute;
  4144. left:0px;
  4145. top:0px;
  4146. width:220px;
  4147. height:77px;
  4148. background:inherit;
  4149. background-color:rgba(255, 255, 255, 1);
  4150. box-sizing:border-box;
  4151. border-width:1px;
  4152. border-style:solid;
  4153. border-color:rgba(121, 121, 121, 1);
  4154. border-radius:4px;
  4155. -moz-box-shadow:none;
  4156. -webkit-box-shadow:none;
  4157. box-shadow:none;
  4158. }
  4159. #u166609 {
  4160. border-width:0px;
  4161. position:absolute;
  4162. left:1011px;
  4163. top:637px;
  4164. width:220px;
  4165. height:77px;
  4166. display:flex;
  4167. }
  4168. #u166609 .text {
  4169. position:absolute;
  4170. align-self:center;
  4171. padding:2px 2px 2px 2px;
  4172. box-sizing:border-box;
  4173. width:100%;
  4174. }
  4175. #u166609_text {
  4176. border-width:0px;
  4177. word-wrap:break-word;
  4178. text-transform:none;
  4179. visibility:hidden;
  4180. }
  4181. #u166610_div {
  4182. border-width:0px;
  4183. position:absolute;
  4184. left:0px;
  4185. top:0px;
  4186. width:93px;
  4187. height:17px;
  4188. background:inherit;
  4189. background-color:rgba(224, 231, 247, 0);
  4190. border:none;
  4191. border-radius:0px;
  4192. -moz-box-shadow:none;
  4193. -webkit-box-shadow:none;
  4194. box-shadow:none;
  4195. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4196. font-weight:400;
  4197. font-style:normal;
  4198. font-size:12px;
  4199. }
  4200. #u166610 {
  4201. border-width:0px;
  4202. position:absolute;
  4203. left:1078px;
  4204. top:680px;
  4205. width:93px;
  4206. height:17px;
  4207. display:flex;
  4208. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4209. font-weight:400;
  4210. font-style:normal;
  4211. font-size:12px;
  4212. }
  4213. #u166610 .text {
  4214. position:absolute;
  4215. align-self:center;
  4216. padding:0px 0px 0px 0px;
  4217. box-sizing:border-box;
  4218. width:100%;
  4219. }
  4220. #u166610_text {
  4221. border-width:0px;
  4222. white-space:nowrap;
  4223. text-transform:none;
  4224. }
  4225. #u166611_div {
  4226. border-width:0px;
  4227. position:absolute;
  4228. left:0px;
  4229. top:0px;
  4230. width:70px;
  4231. height:25px;
  4232. background:inherit;
  4233. background-color:rgba(224, 231, 247, 0);
  4234. border:none;
  4235. border-radius:0px;
  4236. -moz-box-shadow:none;
  4237. -webkit-box-shadow:none;
  4238. box-shadow:none;
  4239. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4240. font-weight:500;
  4241. font-style:normal;
  4242. font-size:18px;
  4243. }
  4244. #u166611 {
  4245. border-width:0px;
  4246. position:absolute;
  4247. left:1099px;
  4248. top:655px;
  4249. width:70px;
  4250. height:25px;
  4251. display:flex;
  4252. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4253. font-weight:500;
  4254. font-style:normal;
  4255. font-size:18px;
  4256. }
  4257. #u166611 .text {
  4258. position:absolute;
  4259. align-self:center;
  4260. padding:0px 0px 0px 0px;
  4261. box-sizing:border-box;
  4262. width:100%;
  4263. }
  4264. #u166611_text {
  4265. border-width:0px;
  4266. white-space:nowrap;
  4267. text-transform:none;
  4268. }
  4269. #u166612_img {
  4270. border-width:0px;
  4271. position:absolute;
  4272. left:0px;
  4273. top:0px;
  4274. width:15px;
  4275. height:15px;
  4276. }
  4277. #u166612 {
  4278. border-width:0px;
  4279. position:absolute;
  4280. left:1178px;
  4281. top:681px;
  4282. width:15px;
  4283. height:15px;
  4284. display:flex;
  4285. }
  4286. #u166612 .text {
  4287. position:absolute;
  4288. align-self:center;
  4289. padding:2px 2px 2px 2px;
  4290. box-sizing:border-box;
  4291. width:100%;
  4292. }
  4293. #u166612_text {
  4294. border-width:0px;
  4295. word-wrap:break-word;
  4296. text-transform:none;
  4297. visibility:hidden;
  4298. }
  4299. #u166613 {
  4300. border-width:0px;
  4301. position:absolute;
  4302. left:0px;
  4303. top:0px;
  4304. width:0px;
  4305. height:0px;
  4306. }
  4307. #u166614_div {
  4308. border-width:0px;
  4309. position:absolute;
  4310. left:0px;
  4311. top:0px;
  4312. width:220px;
  4313. height:77px;
  4314. background:inherit;
  4315. background-color:rgba(255, 255, 255, 1);
  4316. box-sizing:border-box;
  4317. border-width:1px;
  4318. border-style:solid;
  4319. border-color:rgba(121, 121, 121, 1);
  4320. border-radius:4px;
  4321. -moz-box-shadow:none;
  4322. -webkit-box-shadow:none;
  4323. box-shadow:none;
  4324. }
  4325. #u166614 {
  4326. border-width:0px;
  4327. position:absolute;
  4328. left:1342px;
  4329. top:637px;
  4330. width:220px;
  4331. height:77px;
  4332. display:flex;
  4333. }
  4334. #u166614 .text {
  4335. position:absolute;
  4336. align-self:center;
  4337. padding:2px 2px 2px 2px;
  4338. box-sizing:border-box;
  4339. width:100%;
  4340. }
  4341. #u166614_text {
  4342. border-width:0px;
  4343. word-wrap:break-word;
  4344. text-transform:none;
  4345. visibility:hidden;
  4346. }
  4347. #u166615_div {
  4348. border-width:0px;
  4349. position:absolute;
  4350. left:0px;
  4351. top:0px;
  4352. width:105px;
  4353. height:17px;
  4354. background:inherit;
  4355. background-color:rgba(224, 231, 247, 0);
  4356. border:none;
  4357. border-radius:0px;
  4358. -moz-box-shadow:none;
  4359. -webkit-box-shadow:none;
  4360. box-shadow:none;
  4361. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4362. font-weight:400;
  4363. font-style:normal;
  4364. font-size:12px;
  4365. }
  4366. #u166615 {
  4367. border-width:0px;
  4368. position:absolute;
  4369. left:1397px;
  4370. top:680px;
  4371. width:105px;
  4372. height:17px;
  4373. display:flex;
  4374. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4375. font-weight:400;
  4376. font-style:normal;
  4377. font-size:12px;
  4378. }
  4379. #u166615 .text {
  4380. position:absolute;
  4381. align-self:center;
  4382. padding:0px 0px 0px 0px;
  4383. box-sizing:border-box;
  4384. width:100%;
  4385. }
  4386. #u166615_text {
  4387. border-width:0px;
  4388. white-space:nowrap;
  4389. text-transform:none;
  4390. }
  4391. #u166616_div {
  4392. border-width:0px;
  4393. position:absolute;
  4394. left:0px;
  4395. top:0px;
  4396. width:70px;
  4397. height:25px;
  4398. background:inherit;
  4399. background-color:rgba(224, 231, 247, 0);
  4400. border:none;
  4401. border-radius:0px;
  4402. -moz-box-shadow:none;
  4403. -webkit-box-shadow:none;
  4404. box-shadow:none;
  4405. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4406. font-weight:500;
  4407. font-style:normal;
  4408. font-size:18px;
  4409. }
  4410. #u166616 {
  4411. border-width:0px;
  4412. position:absolute;
  4413. left:1420px;
  4414. top:655px;
  4415. width:70px;
  4416. height:25px;
  4417. display:flex;
  4418. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4419. font-weight:500;
  4420. font-style:normal;
  4421. font-size:18px;
  4422. }
  4423. #u166616 .text {
  4424. position:absolute;
  4425. align-self:center;
  4426. padding:0px 0px 0px 0px;
  4427. box-sizing:border-box;
  4428. width:100%;
  4429. }
  4430. #u166616_text {
  4431. border-width:0px;
  4432. white-space:nowrap;
  4433. text-transform:none;
  4434. }
  4435. #u166617_img {
  4436. border-width:0px;
  4437. position:absolute;
  4438. left:0px;
  4439. top:0px;
  4440. width:15px;
  4441. height:15px;
  4442. }
  4443. #u166617 {
  4444. border-width:0px;
  4445. position:absolute;
  4446. left:1508px;
  4447. top:681px;
  4448. width:15px;
  4449. height:15px;
  4450. display:flex;
  4451. }
  4452. #u166617 .text {
  4453. position:absolute;
  4454. align-self:center;
  4455. padding:2px 2px 2px 2px;
  4456. box-sizing:border-box;
  4457. width:100%;
  4458. }
  4459. #u166617_text {
  4460. border-width:0px;
  4461. word-wrap:break-word;
  4462. text-transform:none;
  4463. visibility:hidden;
  4464. }
  4465. #u166618_div {
  4466. border-width:0px;
  4467. position:absolute;
  4468. left:0px;
  4469. top:0px;
  4470. width:12px;
  4471. height:50px;
  4472. background:inherit;
  4473. background-color:rgba(224, 231, 247, 0);
  4474. border:none;
  4475. border-radius:0px;
  4476. -moz-box-shadow:none;
  4477. -webkit-box-shadow:none;
  4478. box-shadow:none;
  4479. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4480. font-weight:500;
  4481. font-style:normal;
  4482. font-size:18px;
  4483. }
  4484. #u166618 {
  4485. border-width:0px;
  4486. position:absolute;
  4487. left:619px;
  4488. top:651px;
  4489. width:12px;
  4490. height:50px;
  4491. display:flex;
  4492. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4493. font-weight:500;
  4494. font-style:normal;
  4495. font-size:18px;
  4496. }
  4497. #u166618 .text {
  4498. position:absolute;
  4499. align-self:center;
  4500. padding:0px 0px 0px 0px;
  4501. box-sizing:border-box;
  4502. width:100%;
  4503. }
  4504. #u166618_text {
  4505. border-width:0px;
  4506. white-space:nowrap;
  4507. text-transform:none;
  4508. }
  4509. #u166619_div {
  4510. border-width:0px;
  4511. position:absolute;
  4512. left:0px;
  4513. top:0px;
  4514. width:12px;
  4515. height:50px;
  4516. background:inherit;
  4517. background-color:rgba(224, 231, 247, 0);
  4518. border:none;
  4519. border-radius:0px;
  4520. -moz-box-shadow:none;
  4521. -webkit-box-shadow:none;
  4522. box-shadow:none;
  4523. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4524. font-weight:500;
  4525. font-style:normal;
  4526. font-size:18px;
  4527. }
  4528. #u166619 {
  4529. border-width:0px;
  4530. position:absolute;
  4531. left:950px;
  4532. top:651px;
  4533. width:12px;
  4534. height:50px;
  4535. display:flex;
  4536. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4537. font-weight:500;
  4538. font-style:normal;
  4539. font-size:18px;
  4540. }
  4541. #u166619 .text {
  4542. position:absolute;
  4543. align-self:center;
  4544. padding:0px 0px 0px 0px;
  4545. box-sizing:border-box;
  4546. width:100%;
  4547. }
  4548. #u166619_text {
  4549. border-width:0px;
  4550. white-space:nowrap;
  4551. text-transform:none;
  4552. }
  4553. #u166620_div {
  4554. border-width:0px;
  4555. position:absolute;
  4556. left:0px;
  4557. top:0px;
  4558. width:12px;
  4559. height:50px;
  4560. background:inherit;
  4561. background-color:rgba(224, 231, 247, 0);
  4562. border:none;
  4563. border-radius:0px;
  4564. -moz-box-shadow:none;
  4565. -webkit-box-shadow:none;
  4566. box-shadow:none;
  4567. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4568. font-weight:500;
  4569. font-style:normal;
  4570. font-size:18px;
  4571. }
  4572. #u166620 {
  4573. border-width:0px;
  4574. position:absolute;
  4575. left:1281px;
  4576. top:651px;
  4577. width:12px;
  4578. height:50px;
  4579. display:flex;
  4580. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4581. font-weight:500;
  4582. font-style:normal;
  4583. font-size:18px;
  4584. }
  4585. #u166620 .text {
  4586. position:absolute;
  4587. align-self:center;
  4588. padding:0px 0px 0px 0px;
  4589. box-sizing:border-box;
  4590. width:100%;
  4591. }
  4592. #u166620_text {
  4593. border-width:0px;
  4594. white-space:nowrap;
  4595. text-transform:none;
  4596. }
  4597. #u166621_div {
  4598. border-width:0px;
  4599. position:absolute;
  4600. left:0px;
  4601. top:0px;
  4602. width:1220px;
  4603. height:180px;
  4604. background:inherit;
  4605. background-color:rgba(255, 255, 255, 1);
  4606. box-sizing:border-box;
  4607. border-width:1px;
  4608. border-style:solid;
  4609. border-color:rgba(217, 217, 217, 1);
  4610. border-radius:4px;
  4611. -moz-box-shadow:none;
  4612. -webkit-box-shadow:none;
  4613. box-shadow:none;
  4614. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4615. font-weight:400;
  4616. font-style:normal;
  4617. font-size:14px;
  4618. color:rgba(0, 0, 0, 0.647058823529412);
  4619. line-height:21px;
  4620. }
  4621. #u166621 {
  4622. border-width:0px;
  4623. position:absolute;
  4624. left:350px;
  4625. top:135px;
  4626. width:1220px;
  4627. height:180px;
  4628. display:flex;
  4629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4630. font-weight:400;
  4631. font-style:normal;
  4632. font-size:14px;
  4633. color:rgba(0, 0, 0, 0.647058823529412);
  4634. line-height:21px;
  4635. }
  4636. #u166621 .text {
  4637. position:absolute;
  4638. align-self:center;
  4639. padding:2px 16px 2px 16px;
  4640. box-sizing:border-box;
  4641. width:100%;
  4642. }
  4643. #u166621_text {
  4644. border-width:0px;
  4645. word-wrap:break-word;
  4646. text-transform:none;
  4647. visibility:hidden;
  4648. }
  4649. #u166622_div {
  4650. border-width:0px;
  4651. position:absolute;
  4652. left:0px;
  4653. top:0px;
  4654. width:580px;
  4655. height:30px;
  4656. background:inherit;
  4657. background-color:rgba(224, 231, 247, 0);
  4658. border:none;
  4659. border-radius:0px;
  4660. -moz-box-shadow:none;
  4661. -webkit-box-shadow:none;
  4662. box-shadow:none;
  4663. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4664. font-weight:400;
  4665. font-style:normal;
  4666. line-height:30px;
  4667. }
  4668. #u166622 {
  4669. border-width:0px;
  4670. position:absolute;
  4671. left:370px;
  4672. top:145px;
  4673. width:580px;
  4674. height:30px;
  4675. display:flex;
  4676. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4677. font-weight:400;
  4678. font-style:normal;
  4679. line-height:30px;
  4680. }
  4681. #u166622 .text {
  4682. position:absolute;
  4683. align-self:center;
  4684. padding:0px 0px 0px 0px;
  4685. box-sizing:border-box;
  4686. width:100%;
  4687. }
  4688. #u166622_text {
  4689. border-width:0px;
  4690. word-wrap:break-word;
  4691. text-transform:none;
  4692. }
  4693. #u166623 {
  4694. border-width:0px;
  4695. position:absolute;
  4696. left:0px;
  4697. top:0px;
  4698. width:0px;
  4699. height:0px;
  4700. }
  4701. #u166624_img {
  4702. border-width:0px;
  4703. position:absolute;
  4704. left:0px;
  4705. top:0px;
  4706. width:24px;
  4707. height:24px;
  4708. }
  4709. #u166624 {
  4710. border-width:0px;
  4711. position:absolute;
  4712. left:370px;
  4713. top:183px;
  4714. width:24px;
  4715. height:24px;
  4716. display:flex;
  4717. font-size:14px;
  4718. color:#FFFFFF;
  4719. }
  4720. #u166624 .text {
  4721. position:absolute;
  4722. align-self:center;
  4723. padding:2px 2px 2px 2px;
  4724. box-sizing:border-box;
  4725. width:100%;
  4726. }
  4727. #u166624_text {
  4728. border-width:0px;
  4729. word-wrap:break-word;
  4730. text-transform:none;
  4731. }
  4732. #u166625_div {
  4733. border-width:0px;
  4734. position:absolute;
  4735. left:0px;
  4736. top:0px;
  4737. width:92px;
  4738. height:20px;
  4739. background:inherit;
  4740. background-color:rgba(224, 231, 247, 0);
  4741. border:none;
  4742. border-radius:0px;
  4743. -moz-box-shadow:none;
  4744. -webkit-box-shadow:none;
  4745. box-shadow:none;
  4746. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4747. font-weight:500;
  4748. font-style:normal;
  4749. }
  4750. #u166625 {
  4751. border-width:0px;
  4752. position:absolute;
  4753. left:404px;
  4754. top:185px;
  4755. width:92px;
  4756. height:20px;
  4757. display:flex;
  4758. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4759. font-weight:500;
  4760. font-style:normal;
  4761. }
  4762. #u166625 .text {
  4763. position:absolute;
  4764. align-self:center;
  4765. padding:0px 0px 0px 0px;
  4766. box-sizing:border-box;
  4767. width:100%;
  4768. }
  4769. #u166625_text {
  4770. border-width:0px;
  4771. white-space:nowrap;
  4772. text-transform:none;
  4773. }
  4774. #u166626 {
  4775. border-width:0px;
  4776. position:absolute;
  4777. left:0px;
  4778. top:0px;
  4779. width:0px;
  4780. height:0px;
  4781. }
  4782. #u166627_img {
  4783. border-width:0px;
  4784. position:absolute;
  4785. left:0px;
  4786. top:0px;
  4787. width:24px;
  4788. height:24px;
  4789. }
  4790. #u166627 {
  4791. border-width:0px;
  4792. position:absolute;
  4793. left:554px;
  4794. top:183px;
  4795. width:24px;
  4796. height:24px;
  4797. display:flex;
  4798. font-size:14px;
  4799. color:#FFFFFF;
  4800. }
  4801. #u166627 .text {
  4802. position:absolute;
  4803. align-self:center;
  4804. padding:2px 2px 2px 2px;
  4805. box-sizing:border-box;
  4806. width:100%;
  4807. }
  4808. #u166627_text {
  4809. border-width:0px;
  4810. word-wrap:break-word;
  4811. text-transform:none;
  4812. }
  4813. #u166628_div {
  4814. border-width:0px;
  4815. position:absolute;
  4816. left:0px;
  4817. top:0px;
  4818. width:120px;
  4819. height:20px;
  4820. background:inherit;
  4821. background-color:rgba(224, 231, 247, 0);
  4822. border:none;
  4823. border-radius:0px;
  4824. -moz-box-shadow:none;
  4825. -webkit-box-shadow:none;
  4826. box-shadow:none;
  4827. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4828. font-weight:500;
  4829. font-style:normal;
  4830. }
  4831. #u166628 {
  4832. border-width:0px;
  4833. position:absolute;
  4834. left:588px;
  4835. top:185px;
  4836. width:120px;
  4837. height:20px;
  4838. display:flex;
  4839. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4840. font-weight:500;
  4841. font-style:normal;
  4842. }
  4843. #u166628 .text {
  4844. position:absolute;
  4845. align-self:center;
  4846. padding:0px 0px 0px 0px;
  4847. box-sizing:border-box;
  4848. width:100%;
  4849. }
  4850. #u166628_text {
  4851. border-width:0px;
  4852. white-space:nowrap;
  4853. text-transform:none;
  4854. }
  4855. #u166629 {
  4856. border-width:0px;
  4857. position:absolute;
  4858. left:0px;
  4859. top:0px;
  4860. width:0px;
  4861. height:0px;
  4862. }
  4863. #u166630_img {
  4864. border-width:0px;
  4865. position:absolute;
  4866. left:0px;
  4867. top:0px;
  4868. width:24px;
  4869. height:24px;
  4870. }
  4871. #u166630 {
  4872. border-width:0px;
  4873. position:absolute;
  4874. left:922px;
  4875. top:183px;
  4876. width:24px;
  4877. height:24px;
  4878. display:flex;
  4879. font-size:14px;
  4880. color:#FFFFFF;
  4881. }
  4882. #u166630 .text {
  4883. position:absolute;
  4884. align-self:center;
  4885. padding:2px 2px 2px 2px;
  4886. box-sizing:border-box;
  4887. width:100%;
  4888. }
  4889. #u166630_text {
  4890. border-width:0px;
  4891. word-wrap:break-word;
  4892. text-transform:none;
  4893. }
  4894. #u166631_div {
  4895. border-width:0px;
  4896. position:absolute;
  4897. left:0px;
  4898. top:0px;
  4899. width:85px;
  4900. height:20px;
  4901. background:inherit;
  4902. background-color:rgba(224, 231, 247, 0);
  4903. border:none;
  4904. border-radius:0px;
  4905. -moz-box-shadow:none;
  4906. -webkit-box-shadow:none;
  4907. box-shadow:none;
  4908. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4909. font-weight:500;
  4910. font-style:normal;
  4911. }
  4912. #u166631 {
  4913. border-width:0px;
  4914. position:absolute;
  4915. left:956px;
  4916. top:185px;
  4917. width:85px;
  4918. height:20px;
  4919. display:flex;
  4920. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4921. font-weight:500;
  4922. font-style:normal;
  4923. }
  4924. #u166631 .text {
  4925. position:absolute;
  4926. align-self:center;
  4927. padding:0px 0px 0px 0px;
  4928. box-sizing:border-box;
  4929. width:100%;
  4930. }
  4931. #u166631_text {
  4932. border-width:0px;
  4933. white-space:nowrap;
  4934. text-transform:none;
  4935. }
  4936. #u166632 {
  4937. border-width:0px;
  4938. position:absolute;
  4939. left:0px;
  4940. top:0px;
  4941. width:0px;
  4942. height:0px;
  4943. }
  4944. #u166633_img {
  4945. border-width:0px;
  4946. position:absolute;
  4947. left:0px;
  4948. top:0px;
  4949. width:24px;
  4950. height:24px;
  4951. }
  4952. #u166633 {
  4953. border-width:0px;
  4954. position:absolute;
  4955. left:1088px;
  4956. top:183px;
  4957. width:24px;
  4958. height:24px;
  4959. display:flex;
  4960. font-size:14px;
  4961. color:#FFFFFF;
  4962. }
  4963. #u166633 .text {
  4964. position:absolute;
  4965. align-self:center;
  4966. padding:2px 2px 2px 2px;
  4967. box-sizing:border-box;
  4968. width:100%;
  4969. }
  4970. #u166633_text {
  4971. border-width:0px;
  4972. word-wrap:break-word;
  4973. text-transform:none;
  4974. }
  4975. #u166634_div {
  4976. border-width:0px;
  4977. position:absolute;
  4978. left:0px;
  4979. top:0px;
  4980. width:85px;
  4981. height:20px;
  4982. background:inherit;
  4983. background-color:rgba(224, 231, 247, 0);
  4984. border:none;
  4985. border-radius:0px;
  4986. -moz-box-shadow:none;
  4987. -webkit-box-shadow:none;
  4988. box-shadow:none;
  4989. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4990. font-weight:500;
  4991. font-style:normal;
  4992. }
  4993. #u166634 {
  4994. border-width:0px;
  4995. position:absolute;
  4996. left:1122px;
  4997. top:185px;
  4998. width:85px;
  4999. height:20px;
  5000. display:flex;
  5001. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5002. font-weight:500;
  5003. font-style:normal;
  5004. }
  5005. #u166634 .text {
  5006. position:absolute;
  5007. align-self:center;
  5008. padding:0px 0px 0px 0px;
  5009. box-sizing:border-box;
  5010. width:100%;
  5011. }
  5012. #u166634_text {
  5013. border-width:0px;
  5014. white-space:nowrap;
  5015. text-transform:none;
  5016. }
  5017. #u166635_div {
  5018. border-width:0px;
  5019. position:absolute;
  5020. left:0px;
  5021. top:0px;
  5022. width:140px;
  5023. height:14px;
  5024. background:inherit;
  5025. background-color:rgba(255, 255, 255, 0);
  5026. border:none;
  5027. border-radius:0px;
  5028. -moz-box-shadow:none;
  5029. -webkit-box-shadow:none;
  5030. box-shadow:none;
  5031. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5032. font-weight:400;
  5033. font-style:normal;
  5034. font-size:10px;
  5035. color:#1890FF;
  5036. }
  5037. #u166635 {
  5038. border-width:0px;
  5039. position:absolute;
  5040. left:370px;
  5041. top:217px;
  5042. width:140px;
  5043. height:14px;
  5044. display:flex;
  5045. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5046. font-weight:400;
  5047. font-style:normal;
  5048. font-size:10px;
  5049. color:#1890FF;
  5050. }
  5051. #u166635 .text {
  5052. position:absolute;
  5053. align-self:flex-start;
  5054. padding:0px 0px 0px 0px;
  5055. box-sizing:border-box;
  5056. width:100%;
  5057. }
  5058. #u166635_text {
  5059. border-width:0px;
  5060. word-wrap:break-word;
  5061. text-transform:none;
  5062. }
  5063. #u166636_div {
  5064. border-width:0px;
  5065. position:absolute;
  5066. left:0px;
  5067. top:0px;
  5068. width:140px;
  5069. height:28px;
  5070. background:inherit;
  5071. background-color:rgba(255, 255, 255, 0);
  5072. border:none;
  5073. border-radius:0px;
  5074. -moz-box-shadow:none;
  5075. -webkit-box-shadow:none;
  5076. box-shadow:none;
  5077. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5078. font-weight:400;
  5079. font-style:normal;
  5080. font-size:10px;
  5081. color:#1890FF;
  5082. }
  5083. #u166636 {
  5084. border-width:0px;
  5085. position:absolute;
  5086. left:561px;
  5087. top:220px;
  5088. width:140px;
  5089. height:28px;
  5090. display:flex;
  5091. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5092. font-weight:400;
  5093. font-style:normal;
  5094. font-size:10px;
  5095. color:#1890FF;
  5096. }
  5097. #u166636 .text {
  5098. position:absolute;
  5099. align-self:flex-start;
  5100. padding:0px 0px 0px 0px;
  5101. box-sizing:border-box;
  5102. width:100%;
  5103. }
  5104. #u166636_text {
  5105. border-width:0px;
  5106. word-wrap:break-word;
  5107. text-transform:none;
  5108. }
  5109. #u166637_div {
  5110. border-width:0px;
  5111. position:absolute;
  5112. left:0px;
  5113. top:0px;
  5114. width:140px;
  5115. height:28px;
  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:10px;
  5127. color:#1890FF;
  5128. }
  5129. #u166637 {
  5130. border-width:0px;
  5131. position:absolute;
  5132. left:755px;
  5133. top:220px;
  5134. width:140px;
  5135. height:28px;
  5136. display:flex;
  5137. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5138. font-weight:400;
  5139. font-style:normal;
  5140. font-size:10px;
  5141. color:#1890FF;
  5142. }
  5143. #u166637 .text {
  5144. position:absolute;
  5145. align-self:flex-start;
  5146. padding:0px 0px 0px 0px;
  5147. box-sizing:border-box;
  5148. width:100%;
  5149. }
  5150. #u166637_text {
  5151. border-width:0px;
  5152. word-wrap:break-word;
  5153. text-transform:none;
  5154. }
  5155. #u166638_div {
  5156. border-width:0px;
  5157. position:absolute;
  5158. left:0px;
  5159. top:0px;
  5160. width:140px;
  5161. height:28px;
  5162. background:inherit;
  5163. background-color:rgba(255, 255, 255, 0);
  5164. border:none;
  5165. border-radius:0px;
  5166. -moz-box-shadow:none;
  5167. -webkit-box-shadow:none;
  5168. box-shadow:none;
  5169. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5170. font-weight:400;
  5171. font-style:normal;
  5172. font-size:10px;
  5173. color:#D9001B;
  5174. }
  5175. #u166638 {
  5176. border-width:0px;
  5177. position:absolute;
  5178. left:755px;
  5179. top:255px;
  5180. width:140px;
  5181. height:28px;
  5182. display:flex;
  5183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5184. font-weight:400;
  5185. font-style:normal;
  5186. font-size:10px;
  5187. color:#D9001B;
  5188. }
  5189. #u166638 .text {
  5190. position:absolute;
  5191. align-self:flex-start;
  5192. padding:0px 0px 0px 0px;
  5193. box-sizing:border-box;
  5194. width:100%;
  5195. }
  5196. #u166638_text {
  5197. border-width:0px;
  5198. word-wrap:break-word;
  5199. text-transform:none;
  5200. }
  5201. #u166639 {
  5202. border-width:0px;
  5203. position:absolute;
  5204. left:0px;
  5205. top:0px;
  5206. width:0px;
  5207. height:0px;
  5208. }
  5209. #u166640_img {
  5210. border-width:0px;
  5211. position:absolute;
  5212. left:0px;
  5213. top:0px;
  5214. width:24px;
  5215. height:24px;
  5216. }
  5217. #u166640 {
  5218. border-width:0px;
  5219. position:absolute;
  5220. left:755px;
  5221. top:183px;
  5222. width:24px;
  5223. height:24px;
  5224. display:flex;
  5225. font-size:14px;
  5226. color:#FFFFFF;
  5227. }
  5228. #u166640 .text {
  5229. position:absolute;
  5230. align-self:center;
  5231. padding:2px 2px 2px 2px;
  5232. box-sizing:border-box;
  5233. width:100%;
  5234. }
  5235. #u166640_text {
  5236. border-width:0px;
  5237. word-wrap:break-word;
  5238. text-transform:none;
  5239. }
  5240. #u166641_div {
  5241. border-width:0px;
  5242. position:absolute;
  5243. left:0px;
  5244. top:0px;
  5245. width:85px;
  5246. height:20px;
  5247. background:inherit;
  5248. background-color:rgba(224, 231, 247, 0);
  5249. border:none;
  5250. border-radius:0px;
  5251. -moz-box-shadow:none;
  5252. -webkit-box-shadow:none;
  5253. box-shadow:none;
  5254. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5255. font-weight:500;
  5256. font-style:normal;
  5257. }
  5258. #u166641 {
  5259. border-width:0px;
  5260. position:absolute;
  5261. left:789px;
  5262. top:185px;
  5263. width:85px;
  5264. height:20px;
  5265. display:flex;
  5266. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5267. font-weight:500;
  5268. font-style:normal;
  5269. }
  5270. #u166641 .text {
  5271. position:absolute;
  5272. align-self:center;
  5273. padding:0px 0px 0px 0px;
  5274. box-sizing:border-box;
  5275. width:100%;
  5276. }
  5277. #u166641_text {
  5278. border-width:0px;
  5279. white-space:nowrap;
  5280. text-transform:none;
  5281. }
  5282. #u166642 {
  5283. border-width:0px;
  5284. position:absolute;
  5285. left:0px;
  5286. top:0px;
  5287. width:0px;
  5288. height:0px;
  5289. }
  5290. #u166643_img {
  5291. border-width:0px;
  5292. position:absolute;
  5293. left:0px;
  5294. top:0px;
  5295. width:24px;
  5296. height:24px;
  5297. }
  5298. #u166643 {
  5299. border-width:0px;
  5300. position:absolute;
  5301. left:1255px;
  5302. top:183px;
  5303. width:24px;
  5304. height:24px;
  5305. display:flex;
  5306. font-size:14px;
  5307. color:#FFFFFF;
  5308. }
  5309. #u166643 .text {
  5310. position:absolute;
  5311. align-self:center;
  5312. padding:2px 2px 2px 2px;
  5313. box-sizing:border-box;
  5314. width:100%;
  5315. }
  5316. #u166643_text {
  5317. border-width:0px;
  5318. word-wrap:break-word;
  5319. text-transform:none;
  5320. }
  5321. #u166644_div {
  5322. border-width:0px;
  5323. position:absolute;
  5324. left:0px;
  5325. top:0px;
  5326. width:85px;
  5327. height:20px;
  5328. background:inherit;
  5329. background-color:rgba(224, 231, 247, 0);
  5330. border:none;
  5331. border-radius:0px;
  5332. -moz-box-shadow:none;
  5333. -webkit-box-shadow:none;
  5334. box-shadow:none;
  5335. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5336. font-weight:500;
  5337. font-style:normal;
  5338. }
  5339. #u166644 {
  5340. border-width:0px;
  5341. position:absolute;
  5342. left:1289px;
  5343. top:185px;
  5344. width:85px;
  5345. height:20px;
  5346. display:flex;
  5347. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5348. font-weight:500;
  5349. font-style:normal;
  5350. }
  5351. #u166644 .text {
  5352. position:absolute;
  5353. align-self:center;
  5354. padding:0px 0px 0px 0px;
  5355. box-sizing:border-box;
  5356. width:100%;
  5357. }
  5358. #u166644_text {
  5359. border-width:0px;
  5360. white-space:nowrap;
  5361. text-transform:none;
  5362. }
  5363. #u166645 {
  5364. border-width:0px;
  5365. position:absolute;
  5366. left:0px;
  5367. top:0px;
  5368. width:0px;
  5369. height:0px;
  5370. }
  5371. #u166646_img {
  5372. border-width:0px;
  5373. position:absolute;
  5374. left:0px;
  5375. top:0px;
  5376. width:24px;
  5377. height:24px;
  5378. }
  5379. #u166646 {
  5380. border-width:0px;
  5381. position:absolute;
  5382. left:1421px;
  5383. top:183px;
  5384. width:24px;
  5385. height:24px;
  5386. display:flex;
  5387. font-size:14px;
  5388. color:#FFFFFF;
  5389. }
  5390. #u166646 .text {
  5391. position:absolute;
  5392. align-self:center;
  5393. padding:2px 2px 2px 2px;
  5394. box-sizing:border-box;
  5395. width:100%;
  5396. }
  5397. #u166646_text {
  5398. border-width:0px;
  5399. word-wrap:break-word;
  5400. text-transform:none;
  5401. }
  5402. #u166647_div {
  5403. border-width:0px;
  5404. position:absolute;
  5405. left:0px;
  5406. top:0px;
  5407. width:85px;
  5408. height:20px;
  5409. background:inherit;
  5410. background-color:rgba(224, 231, 247, 0);
  5411. border:none;
  5412. border-radius:0px;
  5413. -moz-box-shadow:none;
  5414. -webkit-box-shadow:none;
  5415. box-shadow:none;
  5416. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5417. font-weight:500;
  5418. font-style:normal;
  5419. }
  5420. #u166647 {
  5421. border-width:0px;
  5422. position:absolute;
  5423. left:1455px;
  5424. top:185px;
  5425. width:85px;
  5426. height:20px;
  5427. display:flex;
  5428. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5429. font-weight:500;
  5430. font-style:normal;
  5431. }
  5432. #u166647 .text {
  5433. position:absolute;
  5434. align-self:center;
  5435. padding:0px 0px 0px 0px;
  5436. box-sizing:border-box;
  5437. width:100%;
  5438. }
  5439. #u166647_text {
  5440. border-width:0px;
  5441. white-space:nowrap;
  5442. text-transform:none;
  5443. }
  5444. #u166648_div {
  5445. border-width:0px;
  5446. position:absolute;
  5447. left:0px;
  5448. top:0px;
  5449. width:140px;
  5450. height:28px;
  5451. background:inherit;
  5452. background-color:rgba(255, 255, 255, 0);
  5453. border:none;
  5454. border-radius:0px;
  5455. -moz-box-shadow:none;
  5456. -webkit-box-shadow:none;
  5457. box-shadow:none;
  5458. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5459. font-weight:400;
  5460. font-style:normal;
  5461. font-size:10px;
  5462. color:#D9001B;
  5463. }
  5464. #u166648 {
  5465. border-width:0px;
  5466. position:absolute;
  5467. left:561px;
  5468. top:255px;
  5469. width:140px;
  5470. height:28px;
  5471. display:flex;
  5472. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5473. font-weight:400;
  5474. font-style:normal;
  5475. font-size:10px;
  5476. color:#D9001B;
  5477. }
  5478. #u166648 .text {
  5479. position:absolute;
  5480. align-self:flex-start;
  5481. padding:0px 0px 0px 0px;
  5482. box-sizing:border-box;
  5483. width:100%;
  5484. }
  5485. #u166648_text {
  5486. border-width:0px;
  5487. word-wrap:break-word;
  5488. text-transform:none;
  5489. }
  5490. #u166649_div {
  5491. border-width:0px;
  5492. position:absolute;
  5493. left:0px;
  5494. top:0px;
  5495. width:140px;
  5496. height:28px;
  5497. background:inherit;
  5498. background-color:rgba(255, 255, 255, 0);
  5499. border:none;
  5500. border-radius:0px;
  5501. -moz-box-shadow:none;
  5502. -webkit-box-shadow:none;
  5503. box-shadow:none;
  5504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5505. font-weight:400;
  5506. font-style:normal;
  5507. font-size:10px;
  5508. color:#1890FF;
  5509. }
  5510. #u166649 {
  5511. border-width:0px;
  5512. position:absolute;
  5513. left:922px;
  5514. top:220px;
  5515. width:140px;
  5516. height:28px;
  5517. display:flex;
  5518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5519. font-weight:400;
  5520. font-style:normal;
  5521. font-size:10px;
  5522. color:#1890FF;
  5523. }
  5524. #u166649 .text {
  5525. position:absolute;
  5526. align-self:flex-start;
  5527. padding:0px 0px 0px 0px;
  5528. box-sizing:border-box;
  5529. width:100%;
  5530. }
  5531. #u166649_text {
  5532. border-width:0px;
  5533. word-wrap:break-word;
  5534. text-transform:none;
  5535. }
  5536. #u166650_div {
  5537. border-width:0px;
  5538. position:absolute;
  5539. left:0px;
  5540. top:0px;
  5541. width:140px;
  5542. height:28px;
  5543. background:inherit;
  5544. background-color:rgba(255, 255, 255, 0);
  5545. border:none;
  5546. border-radius:0px;
  5547. -moz-box-shadow:none;
  5548. -webkit-box-shadow:none;
  5549. box-shadow:none;
  5550. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5551. font-weight:400;
  5552. font-style:normal;
  5553. font-size:10px;
  5554. color:#D9001B;
  5555. }
  5556. #u166650 {
  5557. border-width:0px;
  5558. position:absolute;
  5559. left:922px;
  5560. top:255px;
  5561. width:140px;
  5562. height:28px;
  5563. display:flex;
  5564. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5565. font-weight:400;
  5566. font-style:normal;
  5567. font-size:10px;
  5568. color:#D9001B;
  5569. }
  5570. #u166650 .text {
  5571. position:absolute;
  5572. align-self:flex-start;
  5573. padding:0px 0px 0px 0px;
  5574. box-sizing:border-box;
  5575. width:100%;
  5576. }
  5577. #u166650_text {
  5578. border-width:0px;
  5579. word-wrap:break-word;
  5580. text-transform:none;
  5581. }
  5582. #u166651_div {
  5583. border-width:0px;
  5584. position:absolute;
  5585. left:0px;
  5586. top:0px;
  5587. width:140px;
  5588. height:14px;
  5589. background:inherit;
  5590. background-color:rgba(255, 255, 255, 0);
  5591. border:none;
  5592. border-radius:0px;
  5593. -moz-box-shadow:none;
  5594. -webkit-box-shadow:none;
  5595. box-shadow:none;
  5596. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5597. font-weight:400;
  5598. font-style:normal;
  5599. font-size:10px;
  5600. color:#1890FF;
  5601. }
  5602. #u166651 {
  5603. border-width:0px;
  5604. position:absolute;
  5605. left:1088px;
  5606. top:220px;
  5607. width:140px;
  5608. height:14px;
  5609. display:flex;
  5610. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5611. font-weight:400;
  5612. font-style:normal;
  5613. font-size:10px;
  5614. color:#1890FF;
  5615. }
  5616. #u166651 .text {
  5617. position:absolute;
  5618. align-self:flex-start;
  5619. padding:0px 0px 0px 0px;
  5620. box-sizing:border-box;
  5621. width:100%;
  5622. }
  5623. #u166651_text {
  5624. border-width:0px;
  5625. word-wrap:break-word;
  5626. text-transform:none;
  5627. }
  5628. #u166652_div {
  5629. border-width:0px;
  5630. position:absolute;
  5631. left:0px;
  5632. top:0px;
  5633. width:140px;
  5634. height:28px;
  5635. background:inherit;
  5636. background-color:rgba(255, 255, 255, 0);
  5637. border:none;
  5638. border-radius:0px;
  5639. -moz-box-shadow:none;
  5640. -webkit-box-shadow:none;
  5641. box-shadow:none;
  5642. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5643. font-weight:400;
  5644. font-style:normal;
  5645. font-size:10px;
  5646. color:#D9001B;
  5647. }
  5648. #u166652 {
  5649. border-width:0px;
  5650. position:absolute;
  5651. left:1090px;
  5652. top:241px;
  5653. width:140px;
  5654. height:28px;
  5655. display:flex;
  5656. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5657. font-weight:400;
  5658. font-style:normal;
  5659. font-size:10px;
  5660. color:#D9001B;
  5661. }
  5662. #u166652 .text {
  5663. position:absolute;
  5664. align-self:flex-start;
  5665. padding:0px 0px 0px 0px;
  5666. box-sizing:border-box;
  5667. width:100%;
  5668. }
  5669. #u166652_text {
  5670. border-width:0px;
  5671. word-wrap:break-word;
  5672. text-transform:none;
  5673. }
  5674. #u166653_div {
  5675. border-width:0px;
  5676. position:absolute;
  5677. left:0px;
  5678. top:0px;
  5679. width:140px;
  5680. height:42px;
  5681. background:inherit;
  5682. background-color:rgba(255, 255, 255, 0);
  5683. border:none;
  5684. border-radius:0px;
  5685. -moz-box-shadow:none;
  5686. -webkit-box-shadow:none;
  5687. box-shadow:none;
  5688. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5689. font-weight:400;
  5690. font-style:normal;
  5691. font-size:10px;
  5692. color:#1890FF;
  5693. }
  5694. #u166653 {
  5695. border-width:0px;
  5696. position:absolute;
  5697. left:1255px;
  5698. top:213px;
  5699. width:140px;
  5700. height:42px;
  5701. display:flex;
  5702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5703. font-weight:400;
  5704. font-style:normal;
  5705. font-size:10px;
  5706. color:#1890FF;
  5707. }
  5708. #u166653 .text {
  5709. position:absolute;
  5710. align-self:flex-start;
  5711. padding:0px 0px 0px 0px;
  5712. box-sizing:border-box;
  5713. width:100%;
  5714. }
  5715. #u166653_text {
  5716. border-width:0px;
  5717. word-wrap:break-word;
  5718. text-transform:none;
  5719. }
  5720. #u166654_div {
  5721. border-width:0px;
  5722. position:absolute;
  5723. left:0px;
  5724. top:0px;
  5725. width:140px;
  5726. height:42px;
  5727. background:inherit;
  5728. background-color:rgba(255, 255, 255, 0);
  5729. border:none;
  5730. border-radius:0px;
  5731. -moz-box-shadow:none;
  5732. -webkit-box-shadow:none;
  5733. box-shadow:none;
  5734. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5735. font-weight:400;
  5736. font-style:normal;
  5737. font-size:10px;
  5738. color:#1890FF;
  5739. }
  5740. #u166654 {
  5741. border-width:0px;
  5742. position:absolute;
  5743. left:1421px;
  5744. top:213px;
  5745. width:140px;
  5746. height:42px;
  5747. display:flex;
  5748. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5749. font-weight:400;
  5750. font-style:normal;
  5751. font-size:10px;
  5752. color:#1890FF;
  5753. }
  5754. #u166654 .text {
  5755. position:absolute;
  5756. align-self:flex-start;
  5757. padding:0px 0px 0px 0px;
  5758. box-sizing:border-box;
  5759. width:100%;
  5760. }
  5761. #u166654_text {
  5762. border-width:0px;
  5763. word-wrap:break-word;
  5764. text-transform:none;
  5765. }
  5766. #u166655_div {
  5767. border-width:0px;
  5768. position:absolute;
  5769. left:0px;
  5770. top:0px;
  5771. width:140px;
  5772. height:28px;
  5773. background:inherit;
  5774. background-color:rgba(255, 255, 255, 0);
  5775. border:none;
  5776. border-radius:0px;
  5777. -moz-box-shadow:none;
  5778. -webkit-box-shadow:none;
  5779. box-shadow:none;
  5780. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5781. font-weight:400;
  5782. font-style:normal;
  5783. font-size:10px;
  5784. color:#D9001B;
  5785. }
  5786. #u166655 {
  5787. border-width:0px;
  5788. position:absolute;
  5789. left:1421px;
  5790. top:265px;
  5791. width:140px;
  5792. height:28px;
  5793. display:flex;
  5794. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5795. font-weight:400;
  5796. font-style:normal;
  5797. font-size:10px;
  5798. color:#D9001B;
  5799. }
  5800. #u166655 .text {
  5801. position:absolute;
  5802. align-self:flex-start;
  5803. padding:0px 0px 0px 0px;
  5804. box-sizing:border-box;
  5805. width:100%;
  5806. }
  5807. #u166655_text {
  5808. border-width:0px;
  5809. word-wrap:break-word;
  5810. text-transform:none;
  5811. }
  5812. #u166656_img {
  5813. border-width:0px;
  5814. position:absolute;
  5815. left:0px;
  5816. top:0px;
  5817. width:1261px;
  5818. height:2px;
  5819. }
  5820. #u166656 {
  5821. border-width:0px;
  5822. position:absolute;
  5823. left:330px;
  5824. top:563px;
  5825. width:1260px;
  5826. height:1px;
  5827. display:flex;
  5828. }
  5829. #u166656 .text {
  5830. position:absolute;
  5831. align-self:center;
  5832. padding:2px 2px 2px 2px;
  5833. box-sizing:border-box;
  5834. width:100%;
  5835. }
  5836. #u166656_text {
  5837. border-width:0px;
  5838. word-wrap:break-word;
  5839. text-transform:none;
  5840. visibility:hidden;
  5841. }
  5842. #u166657_div {
  5843. border-width:0px;
  5844. position:absolute;
  5845. left:0px;
  5846. top:0px;
  5847. width:29px;
  5848. height:50px;
  5849. background:inherit;
  5850. background-color:rgba(224, 231, 247, 0);
  5851. border:none;
  5852. border-radius:0px;
  5853. -moz-box-shadow:none;
  5854. -webkit-box-shadow:none;
  5855. box-shadow:none;
  5856. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5857. font-weight:500;
  5858. font-style:normal;
  5859. color:#1890FF;
  5860. text-align:right;
  5861. }
  5862. #u166657 {
  5863. border-width:0px;
  5864. position:absolute;
  5865. left:1434px;
  5866. top:404px;
  5867. width:29px;
  5868. height:50px;
  5869. display:flex;
  5870. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5871. font-weight:500;
  5872. font-style:normal;
  5873. color:#1890FF;
  5874. text-align:right;
  5875. }
  5876. #u166657 .text {
  5877. position:absolute;
  5878. align-self:center;
  5879. padding:0px 0px 0px 0px;
  5880. box-sizing:border-box;
  5881. width:100%;
  5882. }
  5883. #u166657_text {
  5884. border-width:0px;
  5885. white-space:nowrap;
  5886. text-transform:none;
  5887. }
  5888. #u166658 {
  5889. border-width:0px;
  5890. position:absolute;
  5891. left:0px;
  5892. top:0px;
  5893. width:0px;
  5894. height:0px;
  5895. }
  5896. #u166659_div {
  5897. border-width:0px;
  5898. position:absolute;
  5899. left:0px;
  5900. top:0px;
  5901. width:1212px;
  5902. height:77px;
  5903. background:inherit;
  5904. background-color:rgba(255, 255, 255, 1);
  5905. box-sizing:border-box;
  5906. border-width:1px;
  5907. border-style:solid;
  5908. border-color:rgba(121, 121, 121, 1);
  5909. border-radius:4px;
  5910. -moz-box-shadow:none;
  5911. -webkit-box-shadow:none;
  5912. box-shadow:none;
  5913. }
  5914. #u166659 {
  5915. border-width:0px;
  5916. position:absolute;
  5917. left:350px;
  5918. top:1052px;
  5919. width:1212px;
  5920. height:77px;
  5921. display:flex;
  5922. }
  5923. #u166659 .text {
  5924. position:absolute;
  5925. align-self:center;
  5926. padding:2px 2px 2px 2px;
  5927. box-sizing:border-box;
  5928. width:100%;
  5929. }
  5930. #u166659_text {
  5931. border-width:0px;
  5932. word-wrap:break-word;
  5933. text-transform:none;
  5934. visibility:hidden;
  5935. }
  5936. #u166660 {
  5937. border-width:0px;
  5938. position:absolute;
  5939. left:0px;
  5940. top:0px;
  5941. width:0px;
  5942. height:0px;
  5943. }
  5944. #u166661_div {
  5945. border-width:0px;
  5946. position:absolute;
  5947. left:0px;
  5948. top:0px;
  5949. width:69px;
  5950. height:17px;
  5951. background:inherit;
  5952. background-color:rgba(224, 231, 247, 0);
  5953. border:none;
  5954. border-radius:0px;
  5955. -moz-box-shadow:none;
  5956. -webkit-box-shadow:none;
  5957. box-shadow:none;
  5958. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5959. font-weight:400;
  5960. font-style:normal;
  5961. font-size:12px;
  5962. }
  5963. #u166661 {
  5964. border-width:0px;
  5965. position:absolute;
  5966. left:403px;
  5967. top:1094px;
  5968. width:69px;
  5969. height:17px;
  5970. display:flex;
  5971. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5972. font-weight:400;
  5973. font-style:normal;
  5974. font-size:12px;
  5975. }
  5976. #u166661 .text {
  5977. position:absolute;
  5978. align-self:center;
  5979. padding:0px 0px 0px 0px;
  5980. box-sizing:border-box;
  5981. width:100%;
  5982. }
  5983. #u166661_text {
  5984. border-width:0px;
  5985. white-space:nowrap;
  5986. text-transform:none;
  5987. }
  5988. #u166662_div {
  5989. border-width:0px;
  5990. position:absolute;
  5991. left:0px;
  5992. top:0px;
  5993. width:70px;
  5994. height:25px;
  5995. background:inherit;
  5996. background-color:rgba(224, 231, 247, 0);
  5997. border:none;
  5998. border-radius:0px;
  5999. -moz-box-shadow:none;
  6000. -webkit-box-shadow:none;
  6001. box-shadow:none;
  6002. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6003. font-weight:500;
  6004. font-style:normal;
  6005. font-size:18px;
  6006. }
  6007. #u166662 {
  6008. border-width:0px;
  6009. position:absolute;
  6010. left:403px;
  6011. top:1069px;
  6012. width:70px;
  6013. height:25px;
  6014. display:flex;
  6015. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6016. font-weight:500;
  6017. font-style:normal;
  6018. font-size:18px;
  6019. }
  6020. #u166662 .text {
  6021. position:absolute;
  6022. align-self:center;
  6023. padding:0px 0px 0px 0px;
  6024. box-sizing:border-box;
  6025. width:100%;
  6026. }
  6027. #u166662_text {
  6028. border-width:0px;
  6029. white-space:nowrap;
  6030. text-transform:none;
  6031. }
  6032. #u166663_img {
  6033. border-width:0px;
  6034. position:absolute;
  6035. left:0px;
  6036. top:0px;
  6037. width:15px;
  6038. height:15px;
  6039. }
  6040. #u166663 {
  6041. border-width:0px;
  6042. position:absolute;
  6043. left:477px;
  6044. top:1095px;
  6045. width:15px;
  6046. height:15px;
  6047. display:flex;
  6048. }
  6049. #u166663 .text {
  6050. position:absolute;
  6051. align-self:center;
  6052. padding:2px 2px 2px 2px;
  6053. box-sizing:border-box;
  6054. width:100%;
  6055. }
  6056. #u166663_text {
  6057. border-width:0px;
  6058. word-wrap:break-word;
  6059. text-transform:none;
  6060. visibility:hidden;
  6061. }
  6062. #u166664_div {
  6063. border-width:0px;
  6064. position:absolute;
  6065. left:0px;
  6066. top:0px;
  6067. width:12px;
  6068. height:50px;
  6069. background:inherit;
  6070. background-color:rgba(224, 231, 247, 0);
  6071. border:none;
  6072. border-radius:0px;
  6073. -moz-box-shadow:none;
  6074. -webkit-box-shadow:none;
  6075. box-shadow:none;
  6076. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6077. font-weight:500;
  6078. font-style:normal;
  6079. font-size:18px;
  6080. }
  6081. #u166664 {
  6082. border-width:0px;
  6083. position:absolute;
  6084. left:571px;
  6085. top:1065px;
  6086. width:12px;
  6087. height:50px;
  6088. display:flex;
  6089. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6090. font-weight:500;
  6091. font-style:normal;
  6092. font-size:18px;
  6093. }
  6094. #u166664 .text {
  6095. position:absolute;
  6096. align-self:center;
  6097. padding:0px 0px 0px 0px;
  6098. box-sizing:border-box;
  6099. width:100%;
  6100. }
  6101. #u166664_text {
  6102. border-width:0px;
  6103. white-space:nowrap;
  6104. text-transform:none;
  6105. }
  6106. #u166665 {
  6107. border-width:0px;
  6108. position:absolute;
  6109. left:0px;
  6110. top:0px;
  6111. width:0px;
  6112. height:0px;
  6113. }
  6114. #u166666_div {
  6115. border-width:0px;
  6116. position:absolute;
  6117. left:0px;
  6118. top:0px;
  6119. width:93px;
  6120. height:17px;
  6121. background:inherit;
  6122. background-color:rgba(224, 231, 247, 0);
  6123. border:none;
  6124. border-radius:0px;
  6125. -moz-box-shadow:none;
  6126. -webkit-box-shadow:none;
  6127. box-shadow:none;
  6128. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6129. font-weight:400;
  6130. font-style:normal;
  6131. font-size:12px;
  6132. }
  6133. #u166666 {
  6134. border-width:0px;
  6135. position:absolute;
  6136. left:647px;
  6137. top:1094px;
  6138. width:93px;
  6139. height:17px;
  6140. display:flex;
  6141. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6142. font-weight:400;
  6143. font-style:normal;
  6144. font-size:12px;
  6145. }
  6146. #u166666 .text {
  6147. position:absolute;
  6148. align-self:center;
  6149. padding:0px 0px 0px 0px;
  6150. box-sizing:border-box;
  6151. width:100%;
  6152. }
  6153. #u166666_text {
  6154. border-width:0px;
  6155. white-space:nowrap;
  6156. text-transform:none;
  6157. }
  6158. #u166667_div {
  6159. border-width:0px;
  6160. position:absolute;
  6161. left:0px;
  6162. top:0px;
  6163. width:70px;
  6164. height:25px;
  6165. background:inherit;
  6166. background-color:rgba(224, 231, 247, 0);
  6167. border:none;
  6168. border-radius:0px;
  6169. -moz-box-shadow:none;
  6170. -webkit-box-shadow:none;
  6171. box-shadow:none;
  6172. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6173. font-weight:500;
  6174. font-style:normal;
  6175. font-size:18px;
  6176. }
  6177. #u166667 {
  6178. border-width:0px;
  6179. position:absolute;
  6180. left:654px;
  6181. top:1069px;
  6182. width:70px;
  6183. height:25px;
  6184. display:flex;
  6185. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6186. font-weight:500;
  6187. font-style:normal;
  6188. font-size:18px;
  6189. }
  6190. #u166667 .text {
  6191. position:absolute;
  6192. align-self:center;
  6193. padding:0px 0px 0px 0px;
  6194. box-sizing:border-box;
  6195. width:100%;
  6196. }
  6197. #u166667_text {
  6198. border-width:0px;
  6199. white-space:nowrap;
  6200. text-transform:none;
  6201. }
  6202. #u166668_img {
  6203. border-width:0px;
  6204. position:absolute;
  6205. left:0px;
  6206. top:0px;
  6207. width:15px;
  6208. height:15px;
  6209. }
  6210. #u166668 {
  6211. border-width:0px;
  6212. position:absolute;
  6213. left:740px;
  6214. top:1095px;
  6215. width:15px;
  6216. height:15px;
  6217. display:flex;
  6218. }
  6219. #u166668 .text {
  6220. position:absolute;
  6221. align-self:center;
  6222. padding:2px 2px 2px 2px;
  6223. box-sizing:border-box;
  6224. width:100%;
  6225. }
  6226. #u166668_text {
  6227. border-width:0px;
  6228. word-wrap:break-word;
  6229. text-transform:none;
  6230. visibility:hidden;
  6231. }
  6232. #u166669 {
  6233. border-width:0px;
  6234. position:absolute;
  6235. left:0px;
  6236. top:0px;
  6237. width:0px;
  6238. height:0px;
  6239. }
  6240. #u166670_div {
  6241. border-width:0px;
  6242. position:absolute;
  6243. left:0px;
  6244. top:0px;
  6245. width:93px;
  6246. height:17px;
  6247. background:inherit;
  6248. background-color:rgba(224, 231, 247, 0);
  6249. border:none;
  6250. border-radius:0px;
  6251. -moz-box-shadow:none;
  6252. -webkit-box-shadow:none;
  6253. box-shadow:none;
  6254. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6255. font-weight:400;
  6256. font-style:normal;
  6257. font-size:12px;
  6258. }
  6259. #u166670 {
  6260. border-width:0px;
  6261. position:absolute;
  6262. left:890px;
  6263. top:1094px;
  6264. width:93px;
  6265. height:17px;
  6266. display:flex;
  6267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6268. font-weight:400;
  6269. font-style:normal;
  6270. font-size:12px;
  6271. }
  6272. #u166670 .text {
  6273. position:absolute;
  6274. align-self:center;
  6275. padding:0px 0px 0px 0px;
  6276. box-sizing:border-box;
  6277. width:100%;
  6278. }
  6279. #u166670_text {
  6280. border-width:0px;
  6281. white-space:nowrap;
  6282. text-transform:none;
  6283. }
  6284. #u166671_div {
  6285. border-width:0px;
  6286. position:absolute;
  6287. left:0px;
  6288. top:0px;
  6289. width:70px;
  6290. height:25px;
  6291. background:inherit;
  6292. background-color:rgba(224, 231, 247, 0);
  6293. border:none;
  6294. border-radius:0px;
  6295. -moz-box-shadow:none;
  6296. -webkit-box-shadow:none;
  6297. box-shadow:none;
  6298. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6299. font-weight:500;
  6300. font-style:normal;
  6301. font-size:18px;
  6302. }
  6303. #u166671 {
  6304. border-width:0px;
  6305. position:absolute;
  6306. left:899px;
  6307. top:1069px;
  6308. width:70px;
  6309. height:25px;
  6310. display:flex;
  6311. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6312. font-weight:500;
  6313. font-style:normal;
  6314. font-size:18px;
  6315. }
  6316. #u166671 .text {
  6317. position:absolute;
  6318. align-self:center;
  6319. padding:0px 0px 0px 0px;
  6320. box-sizing:border-box;
  6321. width:100%;
  6322. }
  6323. #u166671_text {
  6324. border-width:0px;
  6325. white-space:nowrap;
  6326. text-transform:none;
  6327. }
  6328. #u166672_img {
  6329. border-width:0px;
  6330. position:absolute;
  6331. left:0px;
  6332. top:0px;
  6333. width:15px;
  6334. height:15px;
  6335. }
  6336. #u166672 {
  6337. border-width:0px;
  6338. position:absolute;
  6339. left:987px;
  6340. top:1095px;
  6341. width:15px;
  6342. height:15px;
  6343. display:flex;
  6344. }
  6345. #u166672 .text {
  6346. position:absolute;
  6347. align-self:center;
  6348. padding:2px 2px 2px 2px;
  6349. box-sizing:border-box;
  6350. width:100%;
  6351. }
  6352. #u166672_text {
  6353. border-width:0px;
  6354. word-wrap:break-word;
  6355. text-transform:none;
  6356. visibility:hidden;
  6357. }
  6358. #u166673 {
  6359. border-width:0px;
  6360. position:absolute;
  6361. left:0px;
  6362. top:0px;
  6363. width:0px;
  6364. height:0px;
  6365. }
  6366. #u166674_div {
  6367. border-width:0px;
  6368. position:absolute;
  6369. left:0px;
  6370. top:0px;
  6371. width:107px;
  6372. height:16px;
  6373. background:inherit;
  6374. background-color:rgba(224, 231, 247, 0);
  6375. border:none;
  6376. border-radius:0px;
  6377. -moz-box-shadow:none;
  6378. -webkit-box-shadow:none;
  6379. box-shadow:none;
  6380. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6381. font-weight:400;
  6382. font-style:normal;
  6383. font-size:12px;
  6384. }
  6385. #u166674 {
  6386. border-width:0px;
  6387. position:absolute;
  6388. left:1119px;
  6389. top:1095px;
  6390. width:107px;
  6391. height:16px;
  6392. display:flex;
  6393. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6394. font-weight:400;
  6395. font-style:normal;
  6396. font-size:12px;
  6397. }
  6398. #u166674 .text {
  6399. position:absolute;
  6400. align-self:center;
  6401. padding:0px 0px 0px 0px;
  6402. box-sizing:border-box;
  6403. width:100%;
  6404. }
  6405. #u166674_text {
  6406. border-width:0px;
  6407. white-space:nowrap;
  6408. text-transform:none;
  6409. }
  6410. #u166675_div {
  6411. border-width:0px;
  6412. position:absolute;
  6413. left:0px;
  6414. top:0px;
  6415. width:70px;
  6416. height:25px;
  6417. background:inherit;
  6418. background-color:rgba(224, 231, 247, 0);
  6419. border:none;
  6420. border-radius:0px;
  6421. -moz-box-shadow:none;
  6422. -webkit-box-shadow:none;
  6423. box-shadow:none;
  6424. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6425. font-weight:500;
  6426. font-style:normal;
  6427. font-size:18px;
  6428. }
  6429. #u166675 {
  6430. border-width:0px;
  6431. position:absolute;
  6432. left:1147px;
  6433. top:1069px;
  6434. width:70px;
  6435. height:25px;
  6436. display:flex;
  6437. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6438. font-weight:500;
  6439. font-style:normal;
  6440. font-size:18px;
  6441. }
  6442. #u166675 .text {
  6443. position:absolute;
  6444. align-self:center;
  6445. padding:0px 0px 0px 0px;
  6446. box-sizing:border-box;
  6447. width:100%;
  6448. }
  6449. #u166675_text {
  6450. border-width:0px;
  6451. white-space:nowrap;
  6452. text-transform:none;
  6453. }
  6454. #u166676_img {
  6455. border-width:0px;
  6456. position:absolute;
  6457. left:0px;
  6458. top:0px;
  6459. width:15px;
  6460. height:15px;
  6461. }
  6462. #u166676 {
  6463. border-width:0px;
  6464. position:absolute;
  6465. left:1230px;
  6466. top:1096px;
  6467. width:15px;
  6468. height:15px;
  6469. display:flex;
  6470. }
  6471. #u166676 .text {
  6472. position:absolute;
  6473. align-self:center;
  6474. padding:2px 2px 2px 2px;
  6475. box-sizing:border-box;
  6476. width:100%;
  6477. }
  6478. #u166676_text {
  6479. border-width:0px;
  6480. word-wrap:break-word;
  6481. text-transform:none;
  6482. visibility:hidden;
  6483. }
  6484. #u166677 {
  6485. border-width:0px;
  6486. position:absolute;
  6487. left:0px;
  6488. top:0px;
  6489. width:0px;
  6490. height:0px;
  6491. }
  6492. #u166678_div {
  6493. border-width:0px;
  6494. position:absolute;
  6495. left:0px;
  6496. top:0px;
  6497. width:93px;
  6498. height:17px;
  6499. background:inherit;
  6500. background-color:rgba(224, 231, 247, 0);
  6501. border:none;
  6502. border-radius:0px;
  6503. -moz-box-shadow:none;
  6504. -webkit-box-shadow:none;
  6505. box-shadow:none;
  6506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6507. font-weight:400;
  6508. font-style:normal;
  6509. font-size:12px;
  6510. }
  6511. #u166678 {
  6512. border-width:0px;
  6513. position:absolute;
  6514. left:1384px;
  6515. top:1094px;
  6516. width:93px;
  6517. height:17px;
  6518. display:flex;
  6519. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6520. font-weight:400;
  6521. font-style:normal;
  6522. font-size:12px;
  6523. }
  6524. #u166678 .text {
  6525. position:absolute;
  6526. align-self:center;
  6527. padding:0px 0px 0px 0px;
  6528. box-sizing:border-box;
  6529. width:100%;
  6530. }
  6531. #u166678_text {
  6532. border-width:0px;
  6533. white-space:nowrap;
  6534. text-transform:none;
  6535. }
  6536. #u166679_div {
  6537. border-width:0px;
  6538. position:absolute;
  6539. left:0px;
  6540. top:0px;
  6541. width:70px;
  6542. height:25px;
  6543. background:inherit;
  6544. background-color:rgba(224, 231, 247, 0);
  6545. border:none;
  6546. border-radius:0px;
  6547. -moz-box-shadow:none;
  6548. -webkit-box-shadow:none;
  6549. box-shadow:none;
  6550. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6551. font-weight:500;
  6552. font-style:normal;
  6553. font-size:18px;
  6554. }
  6555. #u166679 {
  6556. border-width:0px;
  6557. position:absolute;
  6558. left:1395px;
  6559. top:1069px;
  6560. width:70px;
  6561. height:25px;
  6562. display:flex;
  6563. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6564. font-weight:500;
  6565. font-style:normal;
  6566. font-size:18px;
  6567. }
  6568. #u166679 .text {
  6569. position:absolute;
  6570. align-self:center;
  6571. padding:0px 0px 0px 0px;
  6572. box-sizing:border-box;
  6573. width:100%;
  6574. }
  6575. #u166679_text {
  6576. border-width:0px;
  6577. white-space:nowrap;
  6578. text-transform:none;
  6579. }
  6580. #u166680_img {
  6581. border-width:0px;
  6582. position:absolute;
  6583. left:0px;
  6584. top:0px;
  6585. width:15px;
  6586. height:15px;
  6587. }
  6588. #u166680 {
  6589. border-width:0px;
  6590. position:absolute;
  6591. left:1481px;
  6592. top:1095px;
  6593. width:15px;
  6594. height:15px;
  6595. display:flex;
  6596. }
  6597. #u166680 .text {
  6598. position:absolute;
  6599. align-self:center;
  6600. padding:2px 2px 2px 2px;
  6601. box-sizing:border-box;
  6602. width:100%;
  6603. }
  6604. #u166680_text {
  6605. border-width:0px;
  6606. word-wrap:break-word;
  6607. text-transform:none;
  6608. visibility:hidden;
  6609. }
  6610. #u166681_div {
  6611. border-width:0px;
  6612. position:absolute;
  6613. left:0px;
  6614. top:0px;
  6615. width:12px;
  6616. height:50px;
  6617. background:inherit;
  6618. background-color:rgba(224, 231, 247, 0);
  6619. border:none;
  6620. border-radius:0px;
  6621. -moz-box-shadow:none;
  6622. -webkit-box-shadow:none;
  6623. box-shadow:none;
  6624. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6625. font-weight:500;
  6626. font-style:normal;
  6627. font-size:18px;
  6628. }
  6629. #u166681 {
  6630. border-width:0px;
  6631. position:absolute;
  6632. left:816px;
  6633. top:1065px;
  6634. width:12px;
  6635. height:50px;
  6636. display:flex;
  6637. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6638. font-weight:500;
  6639. font-style:normal;
  6640. font-size:18px;
  6641. }
  6642. #u166681 .text {
  6643. position:absolute;
  6644. align-self:center;
  6645. padding:0px 0px 0px 0px;
  6646. box-sizing:border-box;
  6647. width:100%;
  6648. }
  6649. #u166681_text {
  6650. border-width:0px;
  6651. white-space:nowrap;
  6652. text-transform:none;
  6653. }
  6654. #u166682_div {
  6655. border-width:0px;
  6656. position:absolute;
  6657. left:0px;
  6658. top:0px;
  6659. width:12px;
  6660. height:50px;
  6661. background:inherit;
  6662. background-color:rgba(224, 231, 247, 0);
  6663. border:none;
  6664. border-radius:0px;
  6665. -moz-box-shadow:none;
  6666. -webkit-box-shadow:none;
  6667. box-shadow:none;
  6668. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6669. font-weight:500;
  6670. font-style:normal;
  6671. font-size:18px;
  6672. }
  6673. #u166682 {
  6674. border-width:0px;
  6675. position:absolute;
  6676. left:1068px;
  6677. top:1065px;
  6678. width:12px;
  6679. height:50px;
  6680. display:flex;
  6681. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6682. font-weight:500;
  6683. font-style:normal;
  6684. font-size:18px;
  6685. }
  6686. #u166682 .text {
  6687. position:absolute;
  6688. align-self:center;
  6689. padding:0px 0px 0px 0px;
  6690. box-sizing:border-box;
  6691. width:100%;
  6692. }
  6693. #u166682_text {
  6694. border-width:0px;
  6695. white-space:nowrap;
  6696. text-transform:none;
  6697. }
  6698. #u166683_div {
  6699. border-width:0px;
  6700. position:absolute;
  6701. left:0px;
  6702. top:0px;
  6703. width:12px;
  6704. height:50px;
  6705. background:inherit;
  6706. background-color:rgba(224, 231, 247, 0);
  6707. border:none;
  6708. border-radius:0px;
  6709. -moz-box-shadow:none;
  6710. -webkit-box-shadow:none;
  6711. box-shadow:none;
  6712. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6713. font-weight:500;
  6714. font-style:normal;
  6715. font-size:18px;
  6716. }
  6717. #u166683 {
  6718. border-width:0px;
  6719. position:absolute;
  6720. left:1311px;
  6721. top:1065px;
  6722. width:12px;
  6723. height:50px;
  6724. display:flex;
  6725. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6726. font-weight:500;
  6727. font-style:normal;
  6728. font-size:18px;
  6729. }
  6730. #u166683 .text {
  6731. position:absolute;
  6732. align-self:center;
  6733. padding:0px 0px 0px 0px;
  6734. box-sizing:border-box;
  6735. width:100%;
  6736. }
  6737. #u166683_text {
  6738. border-width:0px;
  6739. white-space:nowrap;
  6740. text-transform:none;
  6741. }
  6742. #u166684 {
  6743. border-width:0px;
  6744. position:absolute;
  6745. left:0px;
  6746. top:0px;
  6747. width:0px;
  6748. height:0px;
  6749. }
  6750. #u166685_div {
  6751. border-width:0px;
  6752. position:absolute;
  6753. left:0px;
  6754. top:0px;
  6755. width:220px;
  6756. height:77px;
  6757. background:inherit;
  6758. background-color:rgba(255, 255, 255, 1);
  6759. box-sizing:border-box;
  6760. border-width:1px;
  6761. border-style:solid;
  6762. border-color:rgba(121, 121, 121, 1);
  6763. border-radius:4px;
  6764. -moz-box-shadow:none;
  6765. -webkit-box-shadow:none;
  6766. box-shadow:none;
  6767. }
  6768. #u166685 {
  6769. border-width:0px;
  6770. position:absolute;
  6771. left:350px;
  6772. top:905px;
  6773. width:220px;
  6774. height:77px;
  6775. display:flex;
  6776. }
  6777. #u166685 .text {
  6778. position:absolute;
  6779. align-self:center;
  6780. padding:2px 2px 2px 2px;
  6781. box-sizing:border-box;
  6782. width:100%;
  6783. }
  6784. #u166685_text {
  6785. border-width:0px;
  6786. word-wrap:break-word;
  6787. text-transform:none;
  6788. visibility:hidden;
  6789. }
  6790. #u166686_div {
  6791. border-width:0px;
  6792. position:absolute;
  6793. left:0px;
  6794. top:0px;
  6795. width:93px;
  6796. height:17px;
  6797. background:inherit;
  6798. background-color:rgba(224, 231, 247, 0);
  6799. border:none;
  6800. border-radius:0px;
  6801. -moz-box-shadow:none;
  6802. -webkit-box-shadow:none;
  6803. box-shadow:none;
  6804. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6805. font-weight:400;
  6806. font-style:normal;
  6807. font-size:12px;
  6808. }
  6809. #u166686 {
  6810. border-width:0px;
  6811. position:absolute;
  6812. left:403px;
  6813. top:948px;
  6814. width:93px;
  6815. height:17px;
  6816. display:flex;
  6817. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6818. font-weight:400;
  6819. font-style:normal;
  6820. font-size:12px;
  6821. }
  6822. #u166686 .text {
  6823. position:absolute;
  6824. align-self:center;
  6825. padding:0px 0px 0px 0px;
  6826. box-sizing:border-box;
  6827. width:100%;
  6828. }
  6829. #u166686_text {
  6830. border-width:0px;
  6831. white-space:nowrap;
  6832. text-transform:none;
  6833. }
  6834. #u166687_div {
  6835. border-width:0px;
  6836. position:absolute;
  6837. left:0px;
  6838. top:0px;
  6839. width:70px;
  6840. height:25px;
  6841. background:inherit;
  6842. background-color:rgba(224, 231, 247, 0);
  6843. border:none;
  6844. border-radius:0px;
  6845. -moz-box-shadow:none;
  6846. -webkit-box-shadow:none;
  6847. box-shadow:none;
  6848. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6849. font-weight:500;
  6850. font-style:normal;
  6851. font-size:18px;
  6852. }
  6853. #u166687 {
  6854. border-width:0px;
  6855. position:absolute;
  6856. left:424px;
  6857. top:923px;
  6858. width:70px;
  6859. height:25px;
  6860. display:flex;
  6861. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6862. font-weight:500;
  6863. font-style:normal;
  6864. font-size:18px;
  6865. }
  6866. #u166687 .text {
  6867. position:absolute;
  6868. align-self:center;
  6869. padding:0px 0px 0px 0px;
  6870. box-sizing:border-box;
  6871. width:100%;
  6872. }
  6873. #u166687_text {
  6874. border-width:0px;
  6875. white-space:nowrap;
  6876. text-transform:none;
  6877. }
  6878. #u166688_img {
  6879. border-width:0px;
  6880. position:absolute;
  6881. left:0px;
  6882. top:0px;
  6883. width:15px;
  6884. height:15px;
  6885. }
  6886. #u166688 {
  6887. border-width:0px;
  6888. position:absolute;
  6889. left:503px;
  6890. top:949px;
  6891. width:15px;
  6892. height:15px;
  6893. display:flex;
  6894. }
  6895. #u166688 .text {
  6896. position:absolute;
  6897. align-self:center;
  6898. padding:2px 2px 2px 2px;
  6899. box-sizing:border-box;
  6900. width:100%;
  6901. }
  6902. #u166688_text {
  6903. border-width:0px;
  6904. word-wrap:break-word;
  6905. text-transform:none;
  6906. visibility:hidden;
  6907. }
  6908. #u166689_div {
  6909. border-width:0px;
  6910. position:absolute;
  6911. left:0px;
  6912. top:0px;
  6913. width:85px;
  6914. height:50px;
  6915. background:inherit;
  6916. background-color:rgba(224, 231, 247, 0);
  6917. border:none;
  6918. border-radius:0px;
  6919. -moz-box-shadow:none;
  6920. -webkit-box-shadow:none;
  6921. box-shadow:none;
  6922. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6923. font-weight:500;
  6924. font-style:normal;
  6925. }
  6926. #u166689 {
  6927. border-width:0px;
  6928. position:absolute;
  6929. left:350px;
  6930. top:842px;
  6931. width:85px;
  6932. height:50px;
  6933. display:flex;
  6934. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6935. font-weight:500;
  6936. font-style:normal;
  6937. }
  6938. #u166689 .text {
  6939. position:absolute;
  6940. align-self:center;
  6941. padding:0px 0px 0px 0px;
  6942. box-sizing:border-box;
  6943. width:100%;
  6944. }
  6945. #u166689_text {
  6946. border-width:0px;
  6947. white-space:nowrap;
  6948. text-transform:none;
  6949. }
  6950. #u166690_div {
  6951. border-width:0px;
  6952. position:absolute;
  6953. left:0px;
  6954. top:0px;
  6955. width:690px;
  6956. height:18px;
  6957. background:inherit;
  6958. background-color:rgba(255, 255, 255, 0);
  6959. border:none;
  6960. border-radius:0px;
  6961. -moz-box-shadow:none;
  6962. -webkit-box-shadow:none;
  6963. box-shadow:none;
  6964. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6965. font-weight:400;
  6966. font-style:normal;
  6967. color:#D9001B;
  6968. }
  6969. #u166690 {
  6970. border-width:0px;
  6971. position:absolute;
  6972. left:464px;
  6973. top:859px;
  6974. width:690px;
  6975. height:18px;
  6976. display:flex;
  6977. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6978. font-weight:400;
  6979. font-style:normal;
  6980. color:#D9001B;
  6981. }
  6982. #u166690 .text {
  6983. position:absolute;
  6984. align-self:flex-start;
  6985. padding:0px 0px 0px 0px;
  6986. box-sizing:border-box;
  6987. width:100%;
  6988. }
  6989. #u166690_text {
  6990. border-width:0px;
  6991. white-space:nowrap;
  6992. text-transform:none;
  6993. }
  6994. #u166691 {
  6995. border-width:0px;
  6996. position:absolute;
  6997. left:0px;
  6998. top:0px;
  6999. width:0px;
  7000. height:0px;
  7001. }
  7002. #u166692_div {
  7003. border-width:0px;
  7004. position:absolute;
  7005. left:0px;
  7006. top:0px;
  7007. width:220px;
  7008. height:77px;
  7009. background:inherit;
  7010. background-color:rgba(255, 255, 255, 1);
  7011. box-sizing:border-box;
  7012. border-width:1px;
  7013. border-style:solid;
  7014. border-color:rgba(121, 121, 121, 1);
  7015. border-radius:4px;
  7016. -moz-box-shadow:none;
  7017. -webkit-box-shadow:none;
  7018. box-shadow:none;
  7019. }
  7020. #u166692 {
  7021. border-width:0px;
  7022. position:absolute;
  7023. left:681px;
  7024. top:905px;
  7025. width:220px;
  7026. height:77px;
  7027. display:flex;
  7028. }
  7029. #u166692 .text {
  7030. position:absolute;
  7031. align-self:center;
  7032. padding:2px 2px 2px 2px;
  7033. box-sizing:border-box;
  7034. width:100%;
  7035. }
  7036. #u166692_text {
  7037. border-width:0px;
  7038. word-wrap:break-word;
  7039. text-transform:none;
  7040. visibility:hidden;
  7041. }
  7042. #u166693_div {
  7043. border-width:0px;
  7044. position:absolute;
  7045. left:0px;
  7046. top:0px;
  7047. width:69px;
  7048. height:17px;
  7049. background:inherit;
  7050. background-color:rgba(224, 231, 247, 0);
  7051. border:none;
  7052. border-radius:0px;
  7053. -moz-box-shadow:none;
  7054. -webkit-box-shadow:none;
  7055. box-shadow:none;
  7056. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7057. font-weight:400;
  7058. font-style:normal;
  7059. font-size:12px;
  7060. }
  7061. #u166693 {
  7062. border-width:0px;
  7063. position:absolute;
  7064. left:744px;
  7065. top:948px;
  7066. width:69px;
  7067. height:17px;
  7068. display:flex;
  7069. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7070. font-weight:400;
  7071. font-style:normal;
  7072. font-size:12px;
  7073. }
  7074. #u166693 .text {
  7075. position:absolute;
  7076. align-self:center;
  7077. padding:0px 0px 0px 0px;
  7078. box-sizing:border-box;
  7079. width:100%;
  7080. }
  7081. #u166693_text {
  7082. border-width:0px;
  7083. white-space:nowrap;
  7084. text-transform:none;
  7085. }
  7086. #u166694_div {
  7087. border-width:0px;
  7088. position:absolute;
  7089. left:0px;
  7090. top:0px;
  7091. width:70px;
  7092. height:25px;
  7093. background:inherit;
  7094. background-color:rgba(224, 231, 247, 0);
  7095. border:none;
  7096. border-radius:0px;
  7097. -moz-box-shadow:none;
  7098. -webkit-box-shadow:none;
  7099. box-shadow:none;
  7100. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7101. font-weight:500;
  7102. font-style:normal;
  7103. font-size:18px;
  7104. }
  7105. #u166694 {
  7106. border-width:0px;
  7107. position:absolute;
  7108. left:744px;
  7109. top:923px;
  7110. width:70px;
  7111. height:25px;
  7112. display:flex;
  7113. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7114. font-weight:500;
  7115. font-style:normal;
  7116. font-size:18px;
  7117. }
  7118. #u166694 .text {
  7119. position:absolute;
  7120. align-self:center;
  7121. padding:0px 0px 0px 0px;
  7122. box-sizing:border-box;
  7123. width:100%;
  7124. }
  7125. #u166694_text {
  7126. border-width:0px;
  7127. white-space:nowrap;
  7128. text-transform:none;
  7129. }
  7130. #u166695_img {
  7131. border-width:0px;
  7132. position:absolute;
  7133. left:0px;
  7134. top:0px;
  7135. width:15px;
  7136. height:15px;
  7137. }
  7138. #u166695 {
  7139. border-width:0px;
  7140. position:absolute;
  7141. left:818px;
  7142. top:949px;
  7143. width:15px;
  7144. height:15px;
  7145. display:flex;
  7146. }
  7147. #u166695 .text {
  7148. position:absolute;
  7149. align-self:center;
  7150. padding:2px 2px 2px 2px;
  7151. box-sizing:border-box;
  7152. width:100%;
  7153. }
  7154. #u166695_text {
  7155. border-width:0px;
  7156. word-wrap:break-word;
  7157. text-transform:none;
  7158. visibility:hidden;
  7159. }
  7160. #u166696 {
  7161. border-width:0px;
  7162. position:absolute;
  7163. left:0px;
  7164. top:0px;
  7165. width:0px;
  7166. height:0px;
  7167. }
  7168. #u166697_div {
  7169. border-width:0px;
  7170. position:absolute;
  7171. left:0px;
  7172. top:0px;
  7173. width:220px;
  7174. height:77px;
  7175. background:inherit;
  7176. background-color:rgba(255, 255, 255, 1);
  7177. box-sizing:border-box;
  7178. border-width:1px;
  7179. border-style:solid;
  7180. border-color:rgba(121, 121, 121, 1);
  7181. border-radius:4px;
  7182. -moz-box-shadow:none;
  7183. -webkit-box-shadow:none;
  7184. box-shadow:none;
  7185. }
  7186. #u166697 {
  7187. border-width:0px;
  7188. position:absolute;
  7189. left:1011px;
  7190. top:905px;
  7191. width:220px;
  7192. height:77px;
  7193. display:flex;
  7194. }
  7195. #u166697 .text {
  7196. position:absolute;
  7197. align-self:center;
  7198. padding:2px 2px 2px 2px;
  7199. box-sizing:border-box;
  7200. width:100%;
  7201. }
  7202. #u166697_text {
  7203. border-width:0px;
  7204. word-wrap:break-word;
  7205. text-transform:none;
  7206. visibility:hidden;
  7207. }
  7208. #u166698_div {
  7209. border-width:0px;
  7210. position:absolute;
  7211. left:0px;
  7212. top:0px;
  7213. width:93px;
  7214. height:17px;
  7215. background:inherit;
  7216. background-color:rgba(224, 231, 247, 0);
  7217. border:none;
  7218. border-radius:0px;
  7219. -moz-box-shadow:none;
  7220. -webkit-box-shadow:none;
  7221. box-shadow:none;
  7222. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7223. font-weight:400;
  7224. font-style:normal;
  7225. font-size:12px;
  7226. }
  7227. #u166698 {
  7228. border-width:0px;
  7229. position:absolute;
  7230. left:1078px;
  7231. top:948px;
  7232. width:93px;
  7233. height:17px;
  7234. display:flex;
  7235. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7236. font-weight:400;
  7237. font-style:normal;
  7238. font-size:12px;
  7239. }
  7240. #u166698 .text {
  7241. position:absolute;
  7242. align-self:center;
  7243. padding:0px 0px 0px 0px;
  7244. box-sizing:border-box;
  7245. width:100%;
  7246. }
  7247. #u166698_text {
  7248. border-width:0px;
  7249. white-space:nowrap;
  7250. text-transform:none;
  7251. }
  7252. #u166699_div {
  7253. border-width:0px;
  7254. position:absolute;
  7255. left:0px;
  7256. top:0px;
  7257. width:70px;
  7258. height:25px;
  7259. background:inherit;
  7260. background-color:rgba(224, 231, 247, 0);
  7261. border:none;
  7262. border-radius:0px;
  7263. -moz-box-shadow:none;
  7264. -webkit-box-shadow:none;
  7265. box-shadow:none;
  7266. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7267. font-weight:500;
  7268. font-style:normal;
  7269. font-size:18px;
  7270. }
  7271. #u166699 {
  7272. border-width:0px;
  7273. position:absolute;
  7274. left:1099px;
  7275. top:923px;
  7276. width:70px;
  7277. height:25px;
  7278. display:flex;
  7279. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7280. font-weight:500;
  7281. font-style:normal;
  7282. font-size:18px;
  7283. }
  7284. #u166699 .text {
  7285. position:absolute;
  7286. align-self:center;
  7287. padding:0px 0px 0px 0px;
  7288. box-sizing:border-box;
  7289. width:100%;
  7290. }
  7291. #u166699_text {
  7292. border-width:0px;
  7293. white-space:nowrap;
  7294. text-transform:none;
  7295. }
  7296. #u166700_img {
  7297. border-width:0px;
  7298. position:absolute;
  7299. left:0px;
  7300. top:0px;
  7301. width:15px;
  7302. height:15px;
  7303. }
  7304. #u166700 {
  7305. border-width:0px;
  7306. position:absolute;
  7307. left:1178px;
  7308. top:949px;
  7309. width:15px;
  7310. height:15px;
  7311. display:flex;
  7312. }
  7313. #u166700 .text {
  7314. position:absolute;
  7315. align-self:center;
  7316. padding:2px 2px 2px 2px;
  7317. box-sizing:border-box;
  7318. width:100%;
  7319. }
  7320. #u166700_text {
  7321. border-width:0px;
  7322. word-wrap:break-word;
  7323. text-transform:none;
  7324. visibility:hidden;
  7325. }
  7326. #u166701 {
  7327. border-width:0px;
  7328. position:absolute;
  7329. left:0px;
  7330. top:0px;
  7331. width:0px;
  7332. height:0px;
  7333. }
  7334. #u166702_div {
  7335. border-width:0px;
  7336. position:absolute;
  7337. left:0px;
  7338. top:0px;
  7339. width:220px;
  7340. height:77px;
  7341. background:inherit;
  7342. background-color:rgba(255, 255, 255, 1);
  7343. box-sizing:border-box;
  7344. border-width:1px;
  7345. border-style:solid;
  7346. border-color:rgba(121, 121, 121, 1);
  7347. border-radius:4px;
  7348. -moz-box-shadow:none;
  7349. -webkit-box-shadow:none;
  7350. box-shadow:none;
  7351. }
  7352. #u166702 {
  7353. border-width:0px;
  7354. position:absolute;
  7355. left:1342px;
  7356. top:905px;
  7357. width:220px;
  7358. height:77px;
  7359. display:flex;
  7360. }
  7361. #u166702 .text {
  7362. position:absolute;
  7363. align-self:center;
  7364. padding:2px 2px 2px 2px;
  7365. box-sizing:border-box;
  7366. width:100%;
  7367. }
  7368. #u166702_text {
  7369. border-width:0px;
  7370. word-wrap:break-word;
  7371. text-transform:none;
  7372. visibility:hidden;
  7373. }
  7374. #u166703_div {
  7375. border-width:0px;
  7376. position:absolute;
  7377. left:0px;
  7378. top:0px;
  7379. width:105px;
  7380. height:17px;
  7381. background:inherit;
  7382. background-color:rgba(224, 231, 247, 0);
  7383. border:none;
  7384. border-radius:0px;
  7385. -moz-box-shadow:none;
  7386. -webkit-box-shadow:none;
  7387. box-shadow:none;
  7388. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7389. font-weight:400;
  7390. font-style:normal;
  7391. font-size:12px;
  7392. }
  7393. #u166703 {
  7394. border-width:0px;
  7395. position:absolute;
  7396. left:1397px;
  7397. top:948px;
  7398. width:105px;
  7399. height:17px;
  7400. display:flex;
  7401. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7402. font-weight:400;
  7403. font-style:normal;
  7404. font-size:12px;
  7405. }
  7406. #u166703 .text {
  7407. position:absolute;
  7408. align-self:center;
  7409. padding:0px 0px 0px 0px;
  7410. box-sizing:border-box;
  7411. width:100%;
  7412. }
  7413. #u166703_text {
  7414. border-width:0px;
  7415. white-space:nowrap;
  7416. text-transform:none;
  7417. }
  7418. #u166704_div {
  7419. border-width:0px;
  7420. position:absolute;
  7421. left:0px;
  7422. top:0px;
  7423. width:70px;
  7424. height:25px;
  7425. background:inherit;
  7426. background-color:rgba(224, 231, 247, 0);
  7427. border:none;
  7428. border-radius:0px;
  7429. -moz-box-shadow:none;
  7430. -webkit-box-shadow:none;
  7431. box-shadow:none;
  7432. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7433. font-weight:500;
  7434. font-style:normal;
  7435. font-size:18px;
  7436. }
  7437. #u166704 {
  7438. border-width:0px;
  7439. position:absolute;
  7440. left:1420px;
  7441. top:923px;
  7442. width:70px;
  7443. height:25px;
  7444. display:flex;
  7445. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7446. font-weight:500;
  7447. font-style:normal;
  7448. font-size:18px;
  7449. }
  7450. #u166704 .text {
  7451. position:absolute;
  7452. align-self:center;
  7453. padding:0px 0px 0px 0px;
  7454. box-sizing:border-box;
  7455. width:100%;
  7456. }
  7457. #u166704_text {
  7458. border-width:0px;
  7459. white-space:nowrap;
  7460. text-transform:none;
  7461. }
  7462. #u166705_img {
  7463. border-width:0px;
  7464. position:absolute;
  7465. left:0px;
  7466. top:0px;
  7467. width:15px;
  7468. height:15px;
  7469. }
  7470. #u166705 {
  7471. border-width:0px;
  7472. position:absolute;
  7473. left:1508px;
  7474. top:949px;
  7475. width:15px;
  7476. height:15px;
  7477. display:flex;
  7478. }
  7479. #u166705 .text {
  7480. position:absolute;
  7481. align-self:center;
  7482. padding:2px 2px 2px 2px;
  7483. box-sizing:border-box;
  7484. width:100%;
  7485. }
  7486. #u166705_text {
  7487. border-width:0px;
  7488. word-wrap:break-word;
  7489. text-transform:none;
  7490. visibility:hidden;
  7491. }
  7492. #u166706_div {
  7493. border-width:0px;
  7494. position:absolute;
  7495. left:0px;
  7496. top:0px;
  7497. width:12px;
  7498. height:50px;
  7499. background:inherit;
  7500. background-color:rgba(224, 231, 247, 0);
  7501. border:none;
  7502. border-radius:0px;
  7503. -moz-box-shadow:none;
  7504. -webkit-box-shadow:none;
  7505. box-shadow:none;
  7506. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7507. font-weight:500;
  7508. font-style:normal;
  7509. font-size:18px;
  7510. }
  7511. #u166706 {
  7512. border-width:0px;
  7513. position:absolute;
  7514. left:619px;
  7515. top:919px;
  7516. width:12px;
  7517. height:50px;
  7518. display:flex;
  7519. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7520. font-weight:500;
  7521. font-style:normal;
  7522. font-size:18px;
  7523. }
  7524. #u166706 .text {
  7525. position:absolute;
  7526. align-self:center;
  7527. padding:0px 0px 0px 0px;
  7528. box-sizing:border-box;
  7529. width:100%;
  7530. }
  7531. #u166706_text {
  7532. border-width:0px;
  7533. white-space:nowrap;
  7534. text-transform:none;
  7535. }
  7536. #u166707_div {
  7537. border-width:0px;
  7538. position:absolute;
  7539. left:0px;
  7540. top:0px;
  7541. width:12px;
  7542. height:50px;
  7543. background:inherit;
  7544. background-color:rgba(224, 231, 247, 0);
  7545. border:none;
  7546. border-radius:0px;
  7547. -moz-box-shadow:none;
  7548. -webkit-box-shadow:none;
  7549. box-shadow:none;
  7550. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7551. font-weight:500;
  7552. font-style:normal;
  7553. font-size:18px;
  7554. }
  7555. #u166707 {
  7556. border-width:0px;
  7557. position:absolute;
  7558. left:950px;
  7559. top:919px;
  7560. width:12px;
  7561. height:50px;
  7562. display:flex;
  7563. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7564. font-weight:500;
  7565. font-style:normal;
  7566. font-size:18px;
  7567. }
  7568. #u166707 .text {
  7569. position:absolute;
  7570. align-self:center;
  7571. padding:0px 0px 0px 0px;
  7572. box-sizing:border-box;
  7573. width:100%;
  7574. }
  7575. #u166707_text {
  7576. border-width:0px;
  7577. white-space:nowrap;
  7578. text-transform:none;
  7579. }
  7580. #u166708_div {
  7581. border-width:0px;
  7582. position:absolute;
  7583. left:0px;
  7584. top:0px;
  7585. width:12px;
  7586. height:50px;
  7587. background:inherit;
  7588. background-color:rgba(224, 231, 247, 0);
  7589. border:none;
  7590. border-radius:0px;
  7591. -moz-box-shadow:none;
  7592. -webkit-box-shadow:none;
  7593. box-shadow:none;
  7594. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7595. font-weight:500;
  7596. font-style:normal;
  7597. font-size:18px;
  7598. }
  7599. #u166708 {
  7600. border-width:0px;
  7601. position:absolute;
  7602. left:1281px;
  7603. top:919px;
  7604. width:12px;
  7605. height:50px;
  7606. display:flex;
  7607. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7608. font-weight:500;
  7609. font-style:normal;
  7610. font-size:18px;
  7611. }
  7612. #u166708 .text {
  7613. position:absolute;
  7614. align-self:center;
  7615. padding:0px 0px 0px 0px;
  7616. box-sizing:border-box;
  7617. width:100%;
  7618. }
  7619. #u166708_text {
  7620. border-width:0px;
  7621. white-space:nowrap;
  7622. text-transform:none;
  7623. }
  7624. #u166709_img {
  7625. border-width:0px;
  7626. position:absolute;
  7627. left:0px;
  7628. top:0px;
  7629. width:1261px;
  7630. height:2px;
  7631. }
  7632. #u166709 {
  7633. border-width:0px;
  7634. position:absolute;
  7635. left:330px;
  7636. top:831px;
  7637. width:1260px;
  7638. height:1px;
  7639. display:flex;
  7640. }
  7641. #u166709 .text {
  7642. position:absolute;
  7643. align-self:center;
  7644. padding:2px 2px 2px 2px;
  7645. box-sizing:border-box;
  7646. width:100%;
  7647. }
  7648. #u166709_text {
  7649. border-width:0px;
  7650. word-wrap:break-word;
  7651. text-transform:none;
  7652. visibility:hidden;
  7653. }
  7654. #u166710_div {
  7655. border-width:0px;
  7656. position:absolute;
  7657. left:0px;
  7658. top:0px;
  7659. width:110px;
  7660. height:50px;
  7661. background:inherit;
  7662. background-color:rgba(242, 242, 242, 1);
  7663. border:none;
  7664. border-radius:0px;
  7665. -moz-box-shadow:none;
  7666. -webkit-box-shadow:none;
  7667. box-shadow:none;
  7668. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7669. font-weight:500;
  7670. font-style:normal;
  7671. text-align:center;
  7672. }
  7673. #u166710 {
  7674. border-width:0px;
  7675. position:absolute;
  7676. left:350px;
  7677. top:982px;
  7678. width:110px;
  7679. height:50px;
  7680. display:flex;
  7681. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7682. font-weight:500;
  7683. font-style:normal;
  7684. text-align:center;
  7685. }
  7686. #u166710 .text {
  7687. position:absolute;
  7688. align-self:center;
  7689. padding:0px 0px 0px 0px;
  7690. box-sizing:border-box;
  7691. width:100%;
  7692. }
  7693. #u166710_text {
  7694. border-width:0px;
  7695. word-wrap:break-word;
  7696. text-transform:none;
  7697. }
  7698. #u166711_div {
  7699. border-width:0px;
  7700. position:absolute;
  7701. left:0px;
  7702. top:0px;
  7703. width:110px;
  7704. height:50px;
  7705. background:inherit;
  7706. background-color:rgba(242, 242, 242, 1);
  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-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7713. font-weight:500;
  7714. font-style:normal;
  7715. text-align:center;
  7716. }
  7717. #u166711 {
  7718. border-width:0px;
  7719. position:absolute;
  7720. left:460px;
  7721. top:982px;
  7722. width:110px;
  7723. height:50px;
  7724. display:flex;
  7725. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7726. font-weight:500;
  7727. font-style:normal;
  7728. text-align:center;
  7729. }
  7730. #u166711 .text {
  7731. position:absolute;
  7732. align-self:center;
  7733. padding:0px 0px 0px 0px;
  7734. box-sizing:border-box;
  7735. width:100%;
  7736. }
  7737. #u166711_text {
  7738. border-width:0px;
  7739. word-wrap:break-word;
  7740. text-transform:none;
  7741. }
  7742. #u166712_div {
  7743. border-width:0px;
  7744. position:absolute;
  7745. left:0px;
  7746. top:0px;
  7747. width:29px;
  7748. height:50px;
  7749. background:inherit;
  7750. background-color:rgba(224, 231, 247, 0);
  7751. border:none;
  7752. border-radius:0px;
  7753. -moz-box-shadow:none;
  7754. -webkit-box-shadow:none;
  7755. box-shadow:none;
  7756. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7757. font-weight:500;
  7758. font-style:normal;
  7759. color:#1890FF;
  7760. text-align:right;
  7761. }
  7762. #u166712 {
  7763. border-width:0px;
  7764. position:absolute;
  7765. left:1531px;
  7766. top:135px;
  7767. width:29px;
  7768. height:50px;
  7769. display:flex;
  7770. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7771. font-weight:500;
  7772. font-style:normal;
  7773. color:#1890FF;
  7774. text-align:right;
  7775. }
  7776. #u166712 .text {
  7777. position:absolute;
  7778. align-self:center;
  7779. padding:0px 0px 0px 0px;
  7780. box-sizing:border-box;
  7781. width:100%;
  7782. }
  7783. #u166712_text {
  7784. border-width:0px;
  7785. white-space:nowrap;
  7786. text-transform:none;
  7787. }
  7788. #u166713 {
  7789. border-width:0px;
  7790. position:absolute;
  7791. left:0px;
  7792. top:0px;
  7793. width:0px;
  7794. height:0px;
  7795. }
  7796. #u166714_div {
  7797. border-width:0px;
  7798. position:absolute;
  7799. left:0px;
  7800. top:0px;
  7801. width:200px;
  7802. height:1180px;
  7803. background:inherit;
  7804. background-color:rgba(255, 255, 255, 1);
  7805. border:none;
  7806. border-radius:0px;
  7807. -moz-box-shadow:none;
  7808. -webkit-box-shadow:none;
  7809. box-shadow:none;
  7810. }
  7811. #u166714 {
  7812. border-width:0px;
  7813. position:absolute;
  7814. left:120px;
  7815. top:50px;
  7816. width:200px;
  7817. height:1180px;
  7818. display:flex;
  7819. }
  7820. #u166714 .text {
  7821. position:absolute;
  7822. align-self:center;
  7823. padding:2px 2px 2px 2px;
  7824. box-sizing:border-box;
  7825. width:100%;
  7826. }
  7827. #u166714_text {
  7828. border-width:0px;
  7829. word-wrap:break-word;
  7830. text-transform:none;
  7831. visibility:hidden;
  7832. }
  7833. #u166715_div {
  7834. border-width:0px;
  7835. position:absolute;
  7836. left:0px;
  7837. top:0px;
  7838. width:200px;
  7839. height:60px;
  7840. background:inherit;
  7841. background-color:rgba(224, 231, 247, 1);
  7842. border:none;
  7843. border-radius:0px;
  7844. -moz-box-shadow:none;
  7845. -webkit-box-shadow:none;
  7846. box-shadow:none;
  7847. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7848. font-weight:500;
  7849. font-style:normal;
  7850. font-size:18px;
  7851. }
  7852. #u166715 {
  7853. border-width:0px;
  7854. position:absolute;
  7855. left:120px;
  7856. top:50px;
  7857. width:200px;
  7858. height:60px;
  7859. display:flex;
  7860. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7861. font-weight:500;
  7862. font-style:normal;
  7863. font-size:18px;
  7864. }
  7865. #u166715 .text {
  7866. position:absolute;
  7867. align-self:center;
  7868. padding:0px 0px 0px 20px;
  7869. box-sizing:border-box;
  7870. width:100%;
  7871. }
  7872. #u166715_text {
  7873. border-width:0px;
  7874. word-wrap:break-word;
  7875. text-transform:none;
  7876. }
  7877. #u166716_div {
  7878. border-width:0px;
  7879. position:absolute;
  7880. left:0px;
  7881. top:0px;
  7882. width:65px;
  7883. height:22px;
  7884. background:inherit;
  7885. background-color:rgba(255, 255, 255, 0);
  7886. border:none;
  7887. border-radius:0px;
  7888. -moz-box-shadow:none;
  7889. -webkit-box-shadow:none;
  7890. box-shadow:none;
  7891. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7892. font-weight:400;
  7893. font-style:normal;
  7894. font-size:16px;
  7895. }
  7896. #u166716 {
  7897. border-width:0px;
  7898. position:absolute;
  7899. left:146px;
  7900. top:167px;
  7901. width:65px;
  7902. height:22px;
  7903. display:flex;
  7904. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7905. font-weight:400;
  7906. font-style:normal;
  7907. font-size:16px;
  7908. }
  7909. #u166716 .text {
  7910. position:absolute;
  7911. align-self:flex-start;
  7912. padding:0px 0px 0px 0px;
  7913. box-sizing:border-box;
  7914. width:100%;
  7915. }
  7916. #u166716_text {
  7917. border-width:0px;
  7918. white-space:nowrap;
  7919. text-transform:none;
  7920. }
  7921. #u166717_div {
  7922. border-width:0px;
  7923. position:absolute;
  7924. left:0px;
  7925. top:0px;
  7926. width:97px;
  7927. height:22px;
  7928. background:inherit;
  7929. background-color:rgba(255, 255, 255, 0);
  7930. border:none;
  7931. border-radius:0px;
  7932. -moz-box-shadow:none;
  7933. -webkit-box-shadow:none;
  7934. box-shadow:none;
  7935. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7936. font-weight:400;
  7937. font-style:normal;
  7938. font-size:16px;
  7939. }
  7940. #u166717 {
  7941. border-width:0px;
  7942. position:absolute;
  7943. left:146px;
  7944. top:209px;
  7945. width:97px;
  7946. height:22px;
  7947. display:flex;
  7948. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7949. font-weight:400;
  7950. font-style:normal;
  7951. font-size:16px;
  7952. }
  7953. #u166717 .text {
  7954. position:absolute;
  7955. align-self:flex-start;
  7956. padding:0px 0px 0px 0px;
  7957. box-sizing:border-box;
  7958. width:100%;
  7959. }
  7960. #u166717_text {
  7961. border-width:0px;
  7962. white-space:nowrap;
  7963. text-transform:none;
  7964. }
  7965. #u166718_div {
  7966. border-width:0px;
  7967. position:absolute;
  7968. left:0px;
  7969. top:0px;
  7970. width:49px;
  7971. height:17px;
  7972. background:inherit;
  7973. background-color:rgba(255, 255, 255, 0);
  7974. border:none;
  7975. border-radius:0px;
  7976. -moz-box-shadow:none;
  7977. -webkit-box-shadow:none;
  7978. box-shadow:none;
  7979. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7980. font-weight:400;
  7981. font-style:normal;
  7982. font-size:12px;
  7983. color:#AAAAAA;
  7984. }
  7985. #u166718 {
  7986. border-width:0px;
  7987. position:absolute;
  7988. left:146px;
  7989. top:130px;
  7990. width:49px;
  7991. height:17px;
  7992. display:flex;
  7993. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7994. font-weight:400;
  7995. font-style:normal;
  7996. font-size:12px;
  7997. color:#AAAAAA;
  7998. }
  7999. #u166718 .text {
  8000. position:absolute;
  8001. align-self:flex-start;
  8002. padding:0px 0px 0px 0px;
  8003. box-sizing:border-box;
  8004. width:100%;
  8005. }
  8006. #u166718_text {
  8007. border-width:0px;
  8008. white-space:nowrap;
  8009. text-transform:none;
  8010. }
  8011. #u166719_div {
  8012. border-width:0px;
  8013. position:absolute;
  8014. left:0px;
  8015. top:0px;
  8016. width:49px;
  8017. height:17px;
  8018. background:inherit;
  8019. background-color:rgba(255, 255, 255, 0);
  8020. border:none;
  8021. border-radius:0px;
  8022. -moz-box-shadow:none;
  8023. -webkit-box-shadow:none;
  8024. box-shadow:none;
  8025. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8026. font-weight:400;
  8027. font-style:normal;
  8028. font-size:12px;
  8029. color:#AAAAAA;
  8030. }
  8031. #u166719 {
  8032. border-width:0px;
  8033. position:absolute;
  8034. left:146px;
  8035. top:502px;
  8036. width:49px;
  8037. height:17px;
  8038. display:flex;
  8039. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8040. font-weight:400;
  8041. font-style:normal;
  8042. font-size:12px;
  8043. color:#AAAAAA;
  8044. }
  8045. #u166719 .text {
  8046. position:absolute;
  8047. align-self:flex-start;
  8048. padding:0px 0px 0px 0px;
  8049. box-sizing:border-box;
  8050. width:100%;
  8051. }
  8052. #u166719_text {
  8053. border-width:0px;
  8054. white-space:nowrap;
  8055. text-transform:none;
  8056. }
  8057. #u166720_img {
  8058. border-width:0px;
  8059. position:absolute;
  8060. left:0px;
  8061. top:0px;
  8062. width:201px;
  8063. height:2px;
  8064. }
  8065. #u166720 {
  8066. border-width:0px;
  8067. position:absolute;
  8068. left:120px;
  8069. top:480px;
  8070. width:200px;
  8071. height:1px;
  8072. display:flex;
  8073. }
  8074. #u166720 .text {
  8075. position:absolute;
  8076. align-self:center;
  8077. padding:2px 2px 2px 2px;
  8078. box-sizing:border-box;
  8079. width:100%;
  8080. }
  8081. #u166720_text {
  8082. border-width:0px;
  8083. word-wrap:break-word;
  8084. text-transform:none;
  8085. visibility:hidden;
  8086. }
  8087. #u166721_div {
  8088. border-width:0px;
  8089. position:absolute;
  8090. left:0px;
  8091. top:0px;
  8092. width:65px;
  8093. height:22px;
  8094. background:inherit;
  8095. background-color:rgba(255, 255, 255, 0);
  8096. border:none;
  8097. border-radius:0px;
  8098. -moz-box-shadow:none;
  8099. -webkit-box-shadow:none;
  8100. box-shadow:none;
  8101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8102. font-weight:400;
  8103. font-style:normal;
  8104. font-size:16px;
  8105. }
  8106. #u166721 {
  8107. border-width:0px;
  8108. position:absolute;
  8109. left:146px;
  8110. top:540px;
  8111. width:65px;
  8112. height:22px;
  8113. display:flex;
  8114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8115. font-weight:400;
  8116. font-style:normal;
  8117. font-size:16px;
  8118. }
  8119. #u166721 .text {
  8120. position:absolute;
  8121. align-self:flex-start;
  8122. padding:0px 0px 0px 0px;
  8123. box-sizing:border-box;
  8124. width:100%;
  8125. }
  8126. #u166721_text {
  8127. border-width:0px;
  8128. white-space:nowrap;
  8129. text-transform:none;
  8130. }
  8131. #u166722_div {
  8132. border-width:0px;
  8133. position:absolute;
  8134. left:0px;
  8135. top:0px;
  8136. width:97px;
  8137. height:22px;
  8138. background:inherit;
  8139. background-color:rgba(255, 255, 255, 0);
  8140. border:none;
  8141. border-radius:0px;
  8142. -moz-box-shadow:none;
  8143. -webkit-box-shadow:none;
  8144. box-shadow:none;
  8145. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8146. font-weight:400;
  8147. font-style:normal;
  8148. font-size:16px;
  8149. }
  8150. #u166722 {
  8151. border-width:0px;
  8152. position:absolute;
  8153. left:146px;
  8154. top:582px;
  8155. width:97px;
  8156. height:22px;
  8157. display:flex;
  8158. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8159. font-weight:400;
  8160. font-style:normal;
  8161. font-size:16px;
  8162. }
  8163. #u166722 .text {
  8164. position:absolute;
  8165. align-self:flex-start;
  8166. padding:0px 0px 0px 0px;
  8167. box-sizing:border-box;
  8168. width:100%;
  8169. }
  8170. #u166722_text {
  8171. border-width:0px;
  8172. white-space:nowrap;
  8173. text-transform:none;
  8174. }
  8175. #u166723_div {
  8176. border-width:0px;
  8177. position:absolute;
  8178. left:0px;
  8179. top:0px;
  8180. width:97px;
  8181. height:22px;
  8182. background:inherit;
  8183. background-color:rgba(255, 255, 255, 0);
  8184. border:none;
  8185. border-radius:0px;
  8186. -moz-box-shadow:none;
  8187. -webkit-box-shadow:none;
  8188. box-shadow:none;
  8189. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8190. font-weight:400;
  8191. font-style:normal;
  8192. font-size:16px;
  8193. }
  8194. #u166723 {
  8195. border-width:0px;
  8196. position:absolute;
  8197. left:146px;
  8198. top:624px;
  8199. width:97px;
  8200. height:22px;
  8201. display:flex;
  8202. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8203. font-weight:400;
  8204. font-style:normal;
  8205. font-size:16px;
  8206. }
  8207. #u166723 .text {
  8208. position:absolute;
  8209. align-self:flex-start;
  8210. padding:0px 0px 0px 0px;
  8211. box-sizing:border-box;
  8212. width:100%;
  8213. }
  8214. #u166723_text {
  8215. border-width:0px;
  8216. white-space:nowrap;
  8217. text-transform:none;
  8218. }
  8219. #u166724_div {
  8220. border-width:0px;
  8221. position:absolute;
  8222. left:0px;
  8223. top:0px;
  8224. width:97px;
  8225. height:22px;
  8226. background:inherit;
  8227. background-color:rgba(255, 255, 255, 0);
  8228. border:none;
  8229. border-radius:0px;
  8230. -moz-box-shadow:none;
  8231. -webkit-box-shadow:none;
  8232. box-shadow:none;
  8233. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8234. font-weight:400;
  8235. font-style:normal;
  8236. font-size:16px;
  8237. }
  8238. #u166724 {
  8239. border-width:0px;
  8240. position:absolute;
  8241. left:146px;
  8242. top:666px;
  8243. width:97px;
  8244. height:22px;
  8245. display:flex;
  8246. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8247. font-weight:400;
  8248. font-style:normal;
  8249. font-size:16px;
  8250. }
  8251. #u166724 .text {
  8252. position:absolute;
  8253. align-self:flex-start;
  8254. padding:0px 0px 0px 0px;
  8255. box-sizing:border-box;
  8256. width:100%;
  8257. }
  8258. #u166724_text {
  8259. border-width:0px;
  8260. white-space:nowrap;
  8261. text-transform:none;
  8262. }
  8263. #u166725_div {
  8264. border-width:0px;
  8265. position:absolute;
  8266. left:0px;
  8267. top:0px;
  8268. width:97px;
  8269. height:22px;
  8270. background:inherit;
  8271. background-color:rgba(255, 255, 255, 0);
  8272. border:none;
  8273. border-radius:0px;
  8274. -moz-box-shadow:none;
  8275. -webkit-box-shadow:none;
  8276. box-shadow:none;
  8277. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8278. font-weight:400;
  8279. font-style:normal;
  8280. font-size:16px;
  8281. }
  8282. #u166725 {
  8283. border-width:0px;
  8284. position:absolute;
  8285. left:146px;
  8286. top:708px;
  8287. width:97px;
  8288. height:22px;
  8289. display:flex;
  8290. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8291. font-weight:400;
  8292. font-style:normal;
  8293. font-size:16px;
  8294. }
  8295. #u166725 .text {
  8296. position:absolute;
  8297. align-self:flex-start;
  8298. padding:0px 0px 0px 0px;
  8299. box-sizing:border-box;
  8300. width:100%;
  8301. }
  8302. #u166725_text {
  8303. border-width:0px;
  8304. white-space:nowrap;
  8305. text-transform:none;
  8306. }
  8307. #u166726_div {
  8308. border-width:0px;
  8309. position:absolute;
  8310. left:0px;
  8311. top:0px;
  8312. width:49px;
  8313. height:17px;
  8314. background:inherit;
  8315. background-color:rgba(255, 255, 255, 0);
  8316. border:none;
  8317. border-radius:0px;
  8318. -moz-box-shadow:none;
  8319. -webkit-box-shadow:none;
  8320. box-shadow:none;
  8321. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8322. font-weight:400;
  8323. font-style:normal;
  8324. font-size:12px;
  8325. color:#AAAAAA;
  8326. }
  8327. #u166726 {
  8328. border-width:0px;
  8329. position:absolute;
  8330. left:146px;
  8331. top:775px;
  8332. width:49px;
  8333. height:17px;
  8334. display:flex;
  8335. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8336. font-weight:400;
  8337. font-style:normal;
  8338. font-size:12px;
  8339. color:#AAAAAA;
  8340. }
  8341. #u166726 .text {
  8342. position:absolute;
  8343. align-self:flex-start;
  8344. padding:0px 0px 0px 0px;
  8345. box-sizing:border-box;
  8346. width:100%;
  8347. }
  8348. #u166726_text {
  8349. border-width:0px;
  8350. white-space:nowrap;
  8351. text-transform:none;
  8352. }
  8353. #u166727_img {
  8354. border-width:0px;
  8355. position:absolute;
  8356. left:0px;
  8357. top:0px;
  8358. width:201px;
  8359. height:2px;
  8360. }
  8361. #u166727 {
  8362. border-width:0px;
  8363. position:absolute;
  8364. left:120px;
  8365. top:753px;
  8366. width:200px;
  8367. height:1px;
  8368. display:flex;
  8369. }
  8370. #u166727 .text {
  8371. position:absolute;
  8372. align-self:center;
  8373. padding:2px 2px 2px 2px;
  8374. box-sizing:border-box;
  8375. width:100%;
  8376. }
  8377. #u166727_text {
  8378. border-width:0px;
  8379. word-wrap:break-word;
  8380. text-transform:none;
  8381. visibility:hidden;
  8382. }
  8383. #u166728_div {
  8384. border-width:0px;
  8385. position:absolute;
  8386. left:0px;
  8387. top:0px;
  8388. width:97px;
  8389. height:22px;
  8390. background:inherit;
  8391. background-color:rgba(255, 255, 255, 0);
  8392. border:none;
  8393. border-radius:0px;
  8394. -moz-box-shadow:none;
  8395. -webkit-box-shadow:none;
  8396. box-shadow:none;
  8397. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8398. font-weight:400;
  8399. font-style:normal;
  8400. font-size:16px;
  8401. }
  8402. #u166728 {
  8403. border-width:0px;
  8404. position:absolute;
  8405. left:146px;
  8406. top:813px;
  8407. width:97px;
  8408. height:22px;
  8409. display:flex;
  8410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8411. font-weight:400;
  8412. font-style:normal;
  8413. font-size:16px;
  8414. }
  8415. #u166728 .text {
  8416. position:absolute;
  8417. align-self:flex-start;
  8418. padding:0px 0px 0px 0px;
  8419. box-sizing:border-box;
  8420. width:100%;
  8421. }
  8422. #u166728_text {
  8423. border-width:0px;
  8424. white-space:nowrap;
  8425. text-transform:none;
  8426. }
  8427. #u166729_div {
  8428. border-width:0px;
  8429. position:absolute;
  8430. left:0px;
  8431. top:0px;
  8432. width:97px;
  8433. height:22px;
  8434. background:inherit;
  8435. background-color:rgba(255, 255, 255, 0);
  8436. border:none;
  8437. border-radius:0px;
  8438. -moz-box-shadow:none;
  8439. -webkit-box-shadow:none;
  8440. box-shadow:none;
  8441. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8442. font-weight:400;
  8443. font-style:normal;
  8444. font-size:16px;
  8445. }
  8446. #u166729 {
  8447. border-width:0px;
  8448. position:absolute;
  8449. left:146px;
  8450. top:855px;
  8451. width:97px;
  8452. height:22px;
  8453. display:flex;
  8454. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8455. font-weight:400;
  8456. font-style:normal;
  8457. font-size:16px;
  8458. }
  8459. #u166729 .text {
  8460. position:absolute;
  8461. align-self:flex-start;
  8462. padding:0px 0px 0px 0px;
  8463. box-sizing:border-box;
  8464. width:100%;
  8465. }
  8466. #u166729_text {
  8467. border-width:0px;
  8468. white-space:nowrap;
  8469. text-transform:none;
  8470. }
  8471. #u166730_div {
  8472. border-width:0px;
  8473. position:absolute;
  8474. left:0px;
  8475. top:0px;
  8476. width:65px;
  8477. height:22px;
  8478. background:inherit;
  8479. background-color:rgba(255, 255, 255, 0);
  8480. border:none;
  8481. border-radius:0px;
  8482. -moz-box-shadow:none;
  8483. -webkit-box-shadow:none;
  8484. box-shadow:none;
  8485. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8486. font-weight:400;
  8487. font-style:normal;
  8488. font-size:16px;
  8489. }
  8490. #u166730 {
  8491. border-width:0px;
  8492. position:absolute;
  8493. left:146px;
  8494. top:354px;
  8495. width:65px;
  8496. height:22px;
  8497. display:flex;
  8498. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8499. font-weight:400;
  8500. font-style:normal;
  8501. font-size:16px;
  8502. }
  8503. #u166730 .text {
  8504. position:absolute;
  8505. align-self:flex-start;
  8506. padding:0px 0px 0px 0px;
  8507. box-sizing:border-box;
  8508. width:100%;
  8509. }
  8510. #u166730_text {
  8511. border-width:0px;
  8512. white-space:nowrap;
  8513. text-transform:none;
  8514. }
  8515. #u166731_div {
  8516. border-width:0px;
  8517. position:absolute;
  8518. left:0px;
  8519. top:0px;
  8520. width:49px;
  8521. height:17px;
  8522. background:inherit;
  8523. background-color:rgba(255, 255, 255, 0);
  8524. border:none;
  8525. border-radius:0px;
  8526. -moz-box-shadow:none;
  8527. -webkit-box-shadow:none;
  8528. box-shadow:none;
  8529. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8530. font-weight:400;
  8531. font-style:normal;
  8532. font-size:12px;
  8533. color:#AAAAAA;
  8534. }
  8535. #u166731 {
  8536. border-width:0px;
  8537. position:absolute;
  8538. left:146px;
  8539. top:317px;
  8540. width:49px;
  8541. height:17px;
  8542. display:flex;
  8543. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8544. font-weight:400;
  8545. font-style:normal;
  8546. font-size:12px;
  8547. color:#AAAAAA;
  8548. }
  8549. #u166731 .text {
  8550. position:absolute;
  8551. align-self:flex-start;
  8552. padding:0px 0px 0px 0px;
  8553. box-sizing:border-box;
  8554. width:100%;
  8555. }
  8556. #u166731_text {
  8557. border-width:0px;
  8558. white-space:nowrap;
  8559. text-transform:none;
  8560. }
  8561. #u166732_img {
  8562. border-width:0px;
  8563. position:absolute;
  8564. left:0px;
  8565. top:0px;
  8566. width:201px;
  8567. height:2px;
  8568. }
  8569. #u166732 {
  8570. border-width:0px;
  8571. position:absolute;
  8572. left:120px;
  8573. top:297px;
  8574. width:200px;
  8575. height:1px;
  8576. display:flex;
  8577. }
  8578. #u166732 .text {
  8579. position:absolute;
  8580. align-self:center;
  8581. padding:2px 2px 2px 2px;
  8582. box-sizing:border-box;
  8583. width:100%;
  8584. }
  8585. #u166732_text {
  8586. border-width:0px;
  8587. word-wrap:break-word;
  8588. text-transform:none;
  8589. visibility:hidden;
  8590. }
  8591. #u166733_div {
  8592. border-width:0px;
  8593. position:absolute;
  8594. left:0px;
  8595. top:0px;
  8596. width:65px;
  8597. height:22px;
  8598. background:inherit;
  8599. background-color:rgba(255, 255, 255, 0);
  8600. border:none;
  8601. border-radius:0px;
  8602. -moz-box-shadow:none;
  8603. -webkit-box-shadow:none;
  8604. box-shadow:none;
  8605. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8606. font-weight:400;
  8607. font-style:normal;
  8608. font-size:16px;
  8609. }
  8610. #u166733 {
  8611. border-width:0px;
  8612. position:absolute;
  8613. left:146px;
  8614. top:396px;
  8615. width:65px;
  8616. height:22px;
  8617. display:flex;
  8618. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8619. font-weight:400;
  8620. font-style:normal;
  8621. font-size:16px;
  8622. }
  8623. #u166733 .text {
  8624. position:absolute;
  8625. align-self:flex-start;
  8626. padding:0px 0px 0px 0px;
  8627. box-sizing:border-box;
  8628. width:100%;
  8629. }
  8630. #u166733_text {
  8631. border-width:0px;
  8632. white-space:nowrap;
  8633. text-transform:none;
  8634. }
  8635. #u166734_div {
  8636. border-width:0px;
  8637. position:absolute;
  8638. left:0px;
  8639. top:0px;
  8640. width:65px;
  8641. height:22px;
  8642. background:inherit;
  8643. background-color:rgba(255, 255, 255, 0);
  8644. border:none;
  8645. border-radius:0px;
  8646. -moz-box-shadow:none;
  8647. -webkit-box-shadow:none;
  8648. box-shadow:none;
  8649. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8650. font-weight:400;
  8651. font-style:normal;
  8652. font-size:16px;
  8653. }
  8654. #u166734 {
  8655. border-width:0px;
  8656. position:absolute;
  8657. left:146px;
  8658. top:438px;
  8659. width:65px;
  8660. height:22px;
  8661. display:flex;
  8662. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8663. font-weight:400;
  8664. font-style:normal;
  8665. font-size:16px;
  8666. }
  8667. #u166734 .text {
  8668. position:absolute;
  8669. align-self:flex-start;
  8670. padding:0px 0px 0px 0px;
  8671. box-sizing:border-box;
  8672. width:100%;
  8673. }
  8674. #u166734_text {
  8675. border-width:0px;
  8676. white-space:nowrap;
  8677. text-transform:none;
  8678. }
  8679. #u166735_div {
  8680. border-width:0px;
  8681. position:absolute;
  8682. left:0px;
  8683. top:0px;
  8684. width:65px;
  8685. height:22px;
  8686. background:inherit;
  8687. background-color:rgba(255, 255, 255, 0);
  8688. border:none;
  8689. border-radius:0px;
  8690. -moz-box-shadow:none;
  8691. -webkit-box-shadow:none;
  8692. box-shadow:none;
  8693. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8694. font-weight:400;
  8695. font-style:normal;
  8696. font-size:16px;
  8697. }
  8698. #u166735 {
  8699. border-width:0px;
  8700. position:absolute;
  8701. left:146px;
  8702. top:251px;
  8703. width:65px;
  8704. height:22px;
  8705. display:flex;
  8706. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8707. font-weight:400;
  8708. font-style:normal;
  8709. font-size:16px;
  8710. }
  8711. #u166735 .text {
  8712. position:absolute;
  8713. align-self:flex-start;
  8714. padding:0px 0px 0px 0px;
  8715. box-sizing:border-box;
  8716. width:100%;
  8717. }
  8718. #u166735_text {
  8719. border-width:0px;
  8720. white-space:nowrap;
  8721. text-transform:none;
  8722. }