styles.css 185 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1804px;
  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. #u169826_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u169826 {
  28. border-width:0px;
  29. position:absolute;
  30. left:453px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u169826 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u169826_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u169827 {
  50. border-width:0px;
  51. position:absolute;
  52. left:0px;
  53. top:0px;
  54. width:0px;
  55. height:0px;
  56. }
  57. #u169829_img {
  58. border-width:0px;
  59. position:absolute;
  60. left:0px;
  61. top:0px;
  62. width:433px;
  63. height:865px;
  64. }
  65. #u169829 {
  66. border-width:0px;
  67. position:absolute;
  68. left:0px;
  69. top:0px;
  70. width:433px;
  71. height:865px;
  72. display:flex;
  73. }
  74. #u169829 .text {
  75. position:absolute;
  76. align-self:center;
  77. padding:2px 2px 2px 2px;
  78. box-sizing:border-box;
  79. width:100%;
  80. }
  81. #u169829_text {
  82. border-width:0px;
  83. word-wrap:break-word;
  84. text-transform:none;
  85. visibility:hidden;
  86. }
  87. #u169830_div {
  88. border-width:0px;
  89. position:absolute;
  90. left:0px;
  91. top:0px;
  92. width:375px;
  93. height:40px;
  94. background:inherit;
  95. background-color:rgba(255, 255, 255, 1);
  96. box-sizing:border-box;
  97. border-width:1px;
  98. border-style:solid;
  99. border-color:rgba(215, 215, 215, 1);
  100. border-left:0px;
  101. border-top:0px;
  102. border-right:0px;
  103. border-radius:0px;
  104. border-bottom-right-radius:0px;
  105. border-bottom-left-radius:0px;
  106. -moz-box-shadow:none;
  107. -webkit-box-shadow:none;
  108. box-shadow:none;
  109. }
  110. #u169830 {
  111. border-width:0px;
  112. position:absolute;
  113. left:29px;
  114. top:67px;
  115. width:375px;
  116. height:40px;
  117. display:flex;
  118. }
  119. #u169830 .text {
  120. position:absolute;
  121. align-self:center;
  122. padding:2px 2px 2px 2px;
  123. box-sizing:border-box;
  124. width:100%;
  125. }
  126. #u169830_text {
  127. border-width:0px;
  128. word-wrap:break-word;
  129. text-transform:none;
  130. visibility:hidden;
  131. }
  132. #u169831 {
  133. border-width:0px;
  134. position:absolute;
  135. left:0px;
  136. top:0px;
  137. width:0px;
  138. height:0px;
  139. }
  140. #u169832_div {
  141. border-width:0px;
  142. position:absolute;
  143. left:0px;
  144. top:0px;
  145. width:88px;
  146. height:32px;
  147. background:inherit;
  148. background-color:rgba(255, 255, 255, 1);
  149. box-sizing:border-box;
  150. border-width:1px;
  151. border-style:solid;
  152. border-color:rgba(242, 242, 242, 1);
  153. border-radius:33px;
  154. -moz-box-shadow:none;
  155. -webkit-box-shadow:none;
  156. box-shadow:none;
  157. }
  158. #u169832 {
  159. border-width:0px;
  160. position:absolute;
  161. left:309px;
  162. top:71px;
  163. width:88px;
  164. height:32px;
  165. display:flex;
  166. }
  167. #u169832 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u169832_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u169833 {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:0px;
  186. height:0px;
  187. }
  188. #u169834_img {
  189. border-width:0px;
  190. position:absolute;
  191. left:0px;
  192. top:0px;
  193. width:18px;
  194. height:18px;
  195. }
  196. #u169834 {
  197. border-width:0px;
  198. position:absolute;
  199. left:372px;
  200. top:78px;
  201. width:18px;
  202. height:18px;
  203. display:flex;
  204. }
  205. #u169834 .text {
  206. position:absolute;
  207. align-self:center;
  208. padding:2px 2px 2px 2px;
  209. box-sizing:border-box;
  210. width:100%;
  211. }
  212. #u169834_text {
  213. border-width:0px;
  214. word-wrap:break-word;
  215. text-transform:none;
  216. visibility:hidden;
  217. }
  218. #u169835_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:6px;
  224. height:6px;
  225. }
  226. #u169835 {
  227. border-width:0px;
  228. position:absolute;
  229. left:378px;
  230. top:84px;
  231. width:6px;
  232. height:6px;
  233. display:flex;
  234. }
  235. #u169835 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u169835_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u169836 {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:0px;
  254. height:0px;
  255. }
  256. #u169837_img {
  257. border-width:0px;
  258. position:absolute;
  259. left:0px;
  260. top:0px;
  261. width:5px;
  262. height:5px;
  263. }
  264. #u169837 {
  265. border-width:0px;
  266. position:absolute;
  267. left:323px;
  268. top:85px;
  269. width:5px;
  270. height:5px;
  271. display:flex;
  272. }
  273. #u169837 .text {
  274. position:absolute;
  275. align-self:center;
  276. padding:2px 2px 2px 2px;
  277. box-sizing:border-box;
  278. width:100%;
  279. }
  280. #u169837_text {
  281. border-width:0px;
  282. word-wrap:break-word;
  283. text-transform:none;
  284. visibility:hidden;
  285. }
  286. #u169838_img {
  287. border-width:0px;
  288. position:absolute;
  289. left:0px;
  290. top:0px;
  291. width:5px;
  292. height:5px;
  293. }
  294. #u169838 {
  295. border-width:0px;
  296. position:absolute;
  297. left:339px;
  298. top:85px;
  299. width:5px;
  300. height:5px;
  301. display:flex;
  302. }
  303. #u169838 .text {
  304. position:absolute;
  305. align-self:center;
  306. padding:2px 2px 2px 2px;
  307. box-sizing:border-box;
  308. width:100%;
  309. }
  310. #u169838_text {
  311. border-width:0px;
  312. word-wrap:break-word;
  313. text-transform:none;
  314. visibility:hidden;
  315. }
  316. #u169839_img {
  317. border-width:0px;
  318. position:absolute;
  319. left:0px;
  320. top:0px;
  321. width:7px;
  322. height:7px;
  323. }
  324. #u169839 {
  325. border-width:0px;
  326. position:absolute;
  327. left:330px;
  328. top:84px;
  329. width:7px;
  330. height:7px;
  331. display:flex;
  332. }
  333. #u169839 .text {
  334. position:absolute;
  335. align-self:center;
  336. padding:2px 2px 2px 2px;
  337. box-sizing:border-box;
  338. width:100%;
  339. }
  340. #u169839_text {
  341. border-width:0px;
  342. word-wrap:break-word;
  343. text-transform:none;
  344. visibility:hidden;
  345. }
  346. #u169840_img {
  347. border-width:0px;
  348. position:absolute;
  349. left:0px;
  350. top:0px;
  351. width:19px;
  352. height:2px;
  353. }
  354. #u169840 {
  355. border-width:0px;
  356. position:absolute;
  357. left:347px;
  358. top:87px;
  359. width:18px;
  360. height:1px;
  361. display:flex;
  362. -webkit-transform:rotate(90deg);
  363. -moz-transform:rotate(90deg);
  364. -ms-transform:rotate(90deg);
  365. transform:rotate(90deg);
  366. }
  367. #u169840 .text {
  368. position:absolute;
  369. align-self:center;
  370. padding:2px 2px 2px 2px;
  371. box-sizing:border-box;
  372. width:100%;
  373. }
  374. #u169840_text {
  375. border-width:0px;
  376. word-wrap:break-word;
  377. text-transform:none;
  378. visibility:hidden;
  379. }
  380. #u169841_img {
  381. border-width:0px;
  382. position:absolute;
  383. left:0px;
  384. top:0px;
  385. width:375px;
  386. height:44px;
  387. }
  388. #u169841 {
  389. border-width:0px;
  390. position:absolute;
  391. left:29px;
  392. top:24px;
  393. width:375px;
  394. height:44px;
  395. display:flex;
  396. }
  397. #u169841 .text {
  398. position:absolute;
  399. align-self:center;
  400. padding:2px 2px 2px 2px;
  401. box-sizing:border-box;
  402. width:100%;
  403. }
  404. #u169841_text {
  405. border-width:0px;
  406. word-wrap:break-word;
  407. text-transform:none;
  408. visibility:hidden;
  409. }
  410. #u169842_div {
  411. border-width:0px;
  412. position:absolute;
  413. left:0px;
  414. top:0px;
  415. width:375px;
  416. height:50px;
  417. background:inherit;
  418. background-color:rgba(255, 255, 255, 1);
  419. box-sizing:border-box;
  420. border-width:1px;
  421. border-style:solid;
  422. border-color:rgba(242, 242, 242, 1);
  423. border-radius:26px;
  424. border-top-left-radius:0px;
  425. border-top-right-radius:0px;
  426. -moz-box-shadow:none;
  427. -webkit-box-shadow:none;
  428. box-shadow:none;
  429. }
  430. #u169842 {
  431. border-width:0px;
  432. position:absolute;
  433. left:29px;
  434. top:788px;
  435. width:375px;
  436. height:50px;
  437. display:flex;
  438. }
  439. #u169842 .text {
  440. position:absolute;
  441. align-self:center;
  442. padding:2px 2px 2px 2px;
  443. box-sizing:border-box;
  444. width:100%;
  445. }
  446. #u169842_text {
  447. border-width:0px;
  448. word-wrap:break-word;
  449. text-transform:none;
  450. visibility:hidden;
  451. }
  452. #u169843 {
  453. border-width:0px;
  454. position:absolute;
  455. left:0px;
  456. top:0px;
  457. width:0px;
  458. height:0px;
  459. }
  460. #u169844_img {
  461. border-width:0px;
  462. position:absolute;
  463. left:0px;
  464. top:0px;
  465. width:24px;
  466. height:24px;
  467. }
  468. #u169844 {
  469. border-width:0px;
  470. position:absolute;
  471. left:69px;
  472. top:792px;
  473. width:24px;
  474. height:24px;
  475. display:flex;
  476. font-size:8px;
  477. }
  478. #u169844 .text {
  479. position:absolute;
  480. align-self:center;
  481. padding:2px 2px 2px 2px;
  482. box-sizing:border-box;
  483. width:100%;
  484. }
  485. #u169844_text {
  486. border-width:0px;
  487. word-wrap:break-word;
  488. text-transform:none;
  489. }
  490. #u169845_div {
  491. border-width:0px;
  492. position:absolute;
  493. left:0px;
  494. top:0px;
  495. width:25px;
  496. height:17px;
  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:12px;
  508. }
  509. #u169845 {
  510. border-width:0px;
  511. position:absolute;
  512. left:69px;
  513. top:817px;
  514. width:25px;
  515. height:17px;
  516. display:flex;
  517. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  518. font-weight:400;
  519. font-style:normal;
  520. font-size:12px;
  521. }
  522. #u169845 .text {
  523. position:absolute;
  524. align-self:flex-start;
  525. padding:0px 0px 0px 0px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u169845_text {
  530. border-width:0px;
  531. white-space:nowrap;
  532. text-transform:none;
  533. }
  534. #u169846 {
  535. border-width:0px;
  536. position:absolute;
  537. left:0px;
  538. top:0px;
  539. width:0px;
  540. height:0px;
  541. }
  542. #u169847_img {
  543. border-width:0px;
  544. position:absolute;
  545. left:0px;
  546. top:0px;
  547. width:24px;
  548. height:24px;
  549. }
  550. #u169847 {
  551. border-width:0px;
  552. position:absolute;
  553. left:339px;
  554. top:794px;
  555. width:24px;
  556. height:24px;
  557. display:flex;
  558. font-size:8px;
  559. }
  560. #u169847 .text {
  561. position:absolute;
  562. align-self:center;
  563. padding:2px 2px 2px 2px;
  564. box-sizing:border-box;
  565. width:100%;
  566. }
  567. #u169847_text {
  568. border-width:0px;
  569. word-wrap:break-word;
  570. text-transform:none;
  571. }
  572. #u169848_div {
  573. border-width:0px;
  574. position:absolute;
  575. left:0px;
  576. top:0px;
  577. width:25px;
  578. height:17px;
  579. background:inherit;
  580. background-color:rgba(255, 255, 255, 0);
  581. border:none;
  582. border-radius:0px;
  583. -moz-box-shadow:none;
  584. -webkit-box-shadow:none;
  585. box-shadow:none;
  586. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  587. font-weight:400;
  588. font-style:normal;
  589. font-size:12px;
  590. }
  591. #u169848 {
  592. border-width:0px;
  593. position:absolute;
  594. left:339px;
  595. top:819px;
  596. width:25px;
  597. height:17px;
  598. display:flex;
  599. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  600. font-weight:400;
  601. font-style:normal;
  602. font-size:12px;
  603. }
  604. #u169848 .text {
  605. position:absolute;
  606. align-self:flex-start;
  607. padding:0px 0px 0px 0px;
  608. box-sizing:border-box;
  609. width:100%;
  610. }
  611. #u169848_text {
  612. border-width:0px;
  613. white-space:nowrap;
  614. text-transform:none;
  615. }
  616. #u169849_div {
  617. border-width:0px;
  618. position:absolute;
  619. left:0px;
  620. top:0px;
  621. width:375px;
  622. height:681px;
  623. background:inherit;
  624. background-color:rgba(242, 242, 242, 0.462745098039216);
  625. border:none;
  626. border-radius:0px;
  627. -moz-box-shadow:none;
  628. -webkit-box-shadow:none;
  629. box-shadow:none;
  630. }
  631. #u169849 {
  632. border-width:0px;
  633. position:absolute;
  634. left:29px;
  635. top:107px;
  636. width:375px;
  637. height:681px;
  638. display:flex;
  639. }
  640. #u169849 .text {
  641. position:absolute;
  642. align-self:center;
  643. padding:2px 2px 2px 2px;
  644. box-sizing:border-box;
  645. width:100%;
  646. }
  647. #u169849_text {
  648. border-width:0px;
  649. word-wrap:break-word;
  650. text-transform:none;
  651. visibility:hidden;
  652. }
  653. #u169850 {
  654. border-width:0px;
  655. position:absolute;
  656. left:0px;
  657. top:0px;
  658. width:0px;
  659. height:0px;
  660. }
  661. #u169851_img {
  662. border-width:0px;
  663. position:absolute;
  664. left:0px;
  665. top:0px;
  666. width:24px;
  667. height:24px;
  668. }
  669. #u169851 {
  670. border-width:0px;
  671. position:absolute;
  672. left:251px;
  673. top:792px;
  674. width:24px;
  675. height:24px;
  676. display:flex;
  677. font-size:8px;
  678. }
  679. #u169851 .text {
  680. position:absolute;
  681. align-self:center;
  682. padding:2px 2px 2px 2px;
  683. box-sizing:border-box;
  684. width:100%;
  685. }
  686. #u169851_text {
  687. border-width:0px;
  688. word-wrap:break-word;
  689. text-transform:none;
  690. }
  691. #u169852_div {
  692. border-width:0px;
  693. position:absolute;
  694. left:0px;
  695. top:0px;
  696. width:37px;
  697. height:17px;
  698. background:inherit;
  699. background-color:rgba(255, 255, 255, 0);
  700. border:none;
  701. border-radius:0px;
  702. -moz-box-shadow:none;
  703. -webkit-box-shadow:none;
  704. box-shadow:none;
  705. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  706. font-weight:400;
  707. font-style:normal;
  708. font-size:12px;
  709. }
  710. #u169852 {
  711. border-width:0px;
  712. position:absolute;
  713. left:245px;
  714. top:817px;
  715. width:37px;
  716. height:17px;
  717. display:flex;
  718. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  719. font-weight:400;
  720. font-style:normal;
  721. font-size:12px;
  722. }
  723. #u169852 .text {
  724. position:absolute;
  725. align-self:flex-start;
  726. padding:0px 0px 0px 0px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u169852_text {
  731. border-width:0px;
  732. white-space:nowrap;
  733. text-transform:none;
  734. }
  735. #u169853 {
  736. border-width:0px;
  737. position:absolute;
  738. left:0px;
  739. top:0px;
  740. width:0px;
  741. height:0px;
  742. }
  743. #u169854_img {
  744. border-width:0px;
  745. position:absolute;
  746. left:0px;
  747. top:0px;
  748. width:24px;
  749. height:24px;
  750. }
  751. #u169854 {
  752. border-width:0px;
  753. position:absolute;
  754. left:157px;
  755. top:792px;
  756. width:24px;
  757. height:24px;
  758. display:flex;
  759. font-size:8px;
  760. }
  761. #u169854 .text {
  762. position:absolute;
  763. align-self:center;
  764. padding:2px 2px 2px 2px;
  765. box-sizing:border-box;
  766. width:100%;
  767. }
  768. #u169854_text {
  769. border-width:0px;
  770. word-wrap:break-word;
  771. text-transform:none;
  772. }
  773. #u169855_div {
  774. border-width:0px;
  775. position:absolute;
  776. left:0px;
  777. top:0px;
  778. width:37px;
  779. height:17px;
  780. background:inherit;
  781. background-color:rgba(255, 255, 255, 0);
  782. border:none;
  783. border-radius:0px;
  784. -moz-box-shadow:none;
  785. -webkit-box-shadow:none;
  786. box-shadow:none;
  787. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  788. font-weight:400;
  789. font-style:normal;
  790. font-size:12px;
  791. }
  792. #u169855 {
  793. border-width:0px;
  794. position:absolute;
  795. left:151px;
  796. top:817px;
  797. width:37px;
  798. height:17px;
  799. display:flex;
  800. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  801. font-weight:400;
  802. font-style:normal;
  803. font-size:12px;
  804. }
  805. #u169855 .text {
  806. position:absolute;
  807. align-self:flex-start;
  808. padding:0px 0px 0px 0px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u169855_text {
  813. border-width:0px;
  814. white-space:nowrap;
  815. text-transform:none;
  816. }
  817. #u169856_div {
  818. border-width:0px;
  819. position:absolute;
  820. left:0px;
  821. top:0px;
  822. width:375px;
  823. height:1137px;
  824. background:inherit;
  825. background-color:rgba(242, 242, 242, 0.996078431372549);
  826. border:none;
  827. border-top:0px;
  828. border-radius:28px;
  829. border-top-left-radius:0px;
  830. border-top-right-radius:0px;
  831. -moz-box-shadow:none;
  832. -webkit-box-shadow:none;
  833. box-shadow:none;
  834. }
  835. #u169856 {
  836. border-width:0px;
  837. position:absolute;
  838. left:29px;
  839. top:107px;
  840. width:375px;
  841. height:1137px;
  842. display:flex;
  843. }
  844. #u169856 .text {
  845. position:absolute;
  846. align-self:center;
  847. padding:2px 2px 2px 2px;
  848. box-sizing:border-box;
  849. width:100%;
  850. }
  851. #u169856_text {
  852. border-width:0px;
  853. word-wrap:break-word;
  854. text-transform:none;
  855. visibility:hidden;
  856. }
  857. #u169857_div {
  858. border-width:0px;
  859. position:absolute;
  860. left:0px;
  861. top:0px;
  862. width:375px;
  863. height:40px;
  864. background:inherit;
  865. background-color:rgba(255, 255, 255, 1);
  866. box-sizing:border-box;
  867. border-width:1px;
  868. border-style:solid;
  869. border-color:rgba(215, 215, 215, 1);
  870. border-left:0px;
  871. border-top:0px;
  872. border-right:0px;
  873. border-radius:0px;
  874. border-bottom-right-radius:0px;
  875. border-bottom-left-radius:0px;
  876. -moz-box-shadow:none;
  877. -webkit-box-shadow:none;
  878. box-shadow:none;
  879. }
  880. #u169857 {
  881. border-width:0px;
  882. position:absolute;
  883. left:29px;
  884. top:67px;
  885. width:375px;
  886. height:40px;
  887. display:flex;
  888. }
  889. #u169857 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u169857_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u169858_img {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:375px;
  908. height:44px;
  909. }
  910. #u169858 {
  911. border-width:0px;
  912. position:absolute;
  913. left:29px;
  914. top:24px;
  915. width:375px;
  916. height:44px;
  917. display:flex;
  918. }
  919. #u169858 .text {
  920. position:absolute;
  921. align-self:center;
  922. padding:2px 2px 2px 2px;
  923. box-sizing:border-box;
  924. width:100%;
  925. }
  926. #u169858_text {
  927. border-width:0px;
  928. word-wrap:break-word;
  929. text-transform:none;
  930. visibility:hidden;
  931. }
  932. #u169859 {
  933. border-width:0px;
  934. position:absolute;
  935. left:0px;
  936. top:0px;
  937. width:0px;
  938. height:0px;
  939. }
  940. #u169860_div {
  941. border-width:0px;
  942. position:absolute;
  943. left:0px;
  944. top:0px;
  945. width:88px;
  946. height:32px;
  947. background:inherit;
  948. background-color:rgba(255, 255, 255, 1);
  949. box-sizing:border-box;
  950. border-width:1px;
  951. border-style:solid;
  952. border-color:rgba(242, 242, 242, 1);
  953. border-radius:33px;
  954. -moz-box-shadow:none;
  955. -webkit-box-shadow:none;
  956. box-shadow:none;
  957. }
  958. #u169860 {
  959. border-width:0px;
  960. position:absolute;
  961. left:309px;
  962. top:71px;
  963. width:88px;
  964. height:32px;
  965. display:flex;
  966. }
  967. #u169860 .text {
  968. position:absolute;
  969. align-self:center;
  970. padding:2px 2px 2px 2px;
  971. box-sizing:border-box;
  972. width:100%;
  973. }
  974. #u169860_text {
  975. border-width:0px;
  976. word-wrap:break-word;
  977. text-transform:none;
  978. visibility:hidden;
  979. }
  980. #u169861 {
  981. border-width:0px;
  982. position:absolute;
  983. left:0px;
  984. top:0px;
  985. width:0px;
  986. height:0px;
  987. }
  988. #u169862_img {
  989. border-width:0px;
  990. position:absolute;
  991. left:0px;
  992. top:0px;
  993. width:18px;
  994. height:18px;
  995. }
  996. #u169862 {
  997. border-width:0px;
  998. position:absolute;
  999. left:372px;
  1000. top:78px;
  1001. width:18px;
  1002. height:18px;
  1003. display:flex;
  1004. }
  1005. #u169862 .text {
  1006. position:absolute;
  1007. align-self:center;
  1008. padding:2px 2px 2px 2px;
  1009. box-sizing:border-box;
  1010. width:100%;
  1011. }
  1012. #u169862_text {
  1013. border-width:0px;
  1014. word-wrap:break-word;
  1015. text-transform:none;
  1016. visibility:hidden;
  1017. }
  1018. #u169863_img {
  1019. border-width:0px;
  1020. position:absolute;
  1021. left:0px;
  1022. top:0px;
  1023. width:6px;
  1024. height:6px;
  1025. }
  1026. #u169863 {
  1027. border-width:0px;
  1028. position:absolute;
  1029. left:378px;
  1030. top:84px;
  1031. width:6px;
  1032. height:6px;
  1033. display:flex;
  1034. }
  1035. #u169863 .text {
  1036. position:absolute;
  1037. align-self:center;
  1038. padding:2px 2px 2px 2px;
  1039. box-sizing:border-box;
  1040. width:100%;
  1041. }
  1042. #u169863_text {
  1043. border-width:0px;
  1044. word-wrap:break-word;
  1045. text-transform:none;
  1046. visibility:hidden;
  1047. }
  1048. #u169864 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:0px;
  1052. top:0px;
  1053. width:0px;
  1054. height:0px;
  1055. }
  1056. #u169865_img {
  1057. border-width:0px;
  1058. position:absolute;
  1059. left:0px;
  1060. top:0px;
  1061. width:5px;
  1062. height:5px;
  1063. }
  1064. #u169865 {
  1065. border-width:0px;
  1066. position:absolute;
  1067. left:323px;
  1068. top:85px;
  1069. width:5px;
  1070. height:5px;
  1071. display:flex;
  1072. }
  1073. #u169865 .text {
  1074. position:absolute;
  1075. align-self:center;
  1076. padding:2px 2px 2px 2px;
  1077. box-sizing:border-box;
  1078. width:100%;
  1079. }
  1080. #u169865_text {
  1081. border-width:0px;
  1082. word-wrap:break-word;
  1083. text-transform:none;
  1084. visibility:hidden;
  1085. }
  1086. #u169866_img {
  1087. border-width:0px;
  1088. position:absolute;
  1089. left:0px;
  1090. top:0px;
  1091. width:5px;
  1092. height:5px;
  1093. }
  1094. #u169866 {
  1095. border-width:0px;
  1096. position:absolute;
  1097. left:339px;
  1098. top:85px;
  1099. width:5px;
  1100. height:5px;
  1101. display:flex;
  1102. }
  1103. #u169866 .text {
  1104. position:absolute;
  1105. align-self:center;
  1106. padding:2px 2px 2px 2px;
  1107. box-sizing:border-box;
  1108. width:100%;
  1109. }
  1110. #u169866_text {
  1111. border-width:0px;
  1112. word-wrap:break-word;
  1113. text-transform:none;
  1114. visibility:hidden;
  1115. }
  1116. #u169867_img {
  1117. border-width:0px;
  1118. position:absolute;
  1119. left:0px;
  1120. top:0px;
  1121. width:7px;
  1122. height:7px;
  1123. }
  1124. #u169867 {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:330px;
  1128. top:84px;
  1129. width:7px;
  1130. height:7px;
  1131. display:flex;
  1132. }
  1133. #u169867 .text {
  1134. position:absolute;
  1135. align-self:center;
  1136. padding:2px 2px 2px 2px;
  1137. box-sizing:border-box;
  1138. width:100%;
  1139. }
  1140. #u169867_text {
  1141. border-width:0px;
  1142. word-wrap:break-word;
  1143. text-transform:none;
  1144. visibility:hidden;
  1145. }
  1146. #u169868_img {
  1147. border-width:0px;
  1148. position:absolute;
  1149. left:0px;
  1150. top:0px;
  1151. width:19px;
  1152. height:2px;
  1153. }
  1154. #u169868 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:347px;
  1158. top:87px;
  1159. width:18px;
  1160. height:1px;
  1161. display:flex;
  1162. -webkit-transform:rotate(90deg);
  1163. -moz-transform:rotate(90deg);
  1164. -ms-transform:rotate(90deg);
  1165. transform:rotate(90deg);
  1166. }
  1167. #u169868 .text {
  1168. position:absolute;
  1169. align-self:center;
  1170. padding:2px 2px 2px 2px;
  1171. box-sizing:border-box;
  1172. width:100%;
  1173. }
  1174. #u169868_text {
  1175. border-width:0px;
  1176. word-wrap:break-word;
  1177. text-transform:none;
  1178. visibility:hidden;
  1179. }
  1180. #u169869_div {
  1181. border-width:0px;
  1182. position:absolute;
  1183. left:0px;
  1184. top:0px;
  1185. width:65px;
  1186. height:22px;
  1187. background:inherit;
  1188. background-color:rgba(255, 255, 255, 0);
  1189. border:none;
  1190. border-radius:0px;
  1191. -moz-box-shadow:none;
  1192. -webkit-box-shadow:none;
  1193. box-shadow:none;
  1194. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1195. font-weight:400;
  1196. font-style:normal;
  1197. font-size:16px;
  1198. color:#000000;
  1199. }
  1200. #u169869 {
  1201. border-width:0px;
  1202. position:absolute;
  1203. left:58px;
  1204. top:76px;
  1205. width:65px;
  1206. height:22px;
  1207. display:flex;
  1208. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1209. font-weight:400;
  1210. font-style:normal;
  1211. font-size:16px;
  1212. color:#000000;
  1213. }
  1214. #u169869 .text {
  1215. position:absolute;
  1216. align-self:flex-start;
  1217. padding:0px 0px 0px 0px;
  1218. box-sizing:border-box;
  1219. width:100%;
  1220. }
  1221. #u169869_text {
  1222. border-width:0px;
  1223. white-space:nowrap;
  1224. text-transform:none;
  1225. }
  1226. #u169870_div {
  1227. border-width:0px;
  1228. position:absolute;
  1229. left:0px;
  1230. top:0px;
  1231. width:12px;
  1232. height:12px;
  1233. background:inherit;
  1234. background-color:rgba(255, 255, 255, 0);
  1235. box-sizing:border-box;
  1236. border-width:2px;
  1237. border-style:solid;
  1238. border-color:rgba(51, 51, 51, 1);
  1239. border-right:0px;
  1240. border-bottom:0px;
  1241. border-radius:0px;
  1242. border-top-right-radius:0px;
  1243. border-bottom-left-radius:0px;
  1244. -moz-box-shadow:none;
  1245. -webkit-box-shadow:none;
  1246. box-shadow:none;
  1247. }
  1248. #u169870 {
  1249. border-width:0px;
  1250. position:absolute;
  1251. left:44px;
  1252. top:81px;
  1253. width:12px;
  1254. height:12px;
  1255. display:flex;
  1256. -webkit-transform:rotate(315deg);
  1257. -moz-transform:rotate(315deg);
  1258. -ms-transform:rotate(315deg);
  1259. transform:rotate(315deg);
  1260. }
  1261. #u169870 .text {
  1262. position:absolute;
  1263. align-self:center;
  1264. padding:2px 2px 2px 2px;
  1265. box-sizing:border-box;
  1266. width:100%;
  1267. }
  1268. #u169870_text {
  1269. border-width:0px;
  1270. word-wrap:break-word;
  1271. text-transform:none;
  1272. visibility:hidden;
  1273. }
  1274. #u169871_div {
  1275. border-width:0px;
  1276. position:absolute;
  1277. left:0px;
  1278. top:0px;
  1279. width:375px;
  1280. height:100px;
  1281. background:inherit;
  1282. background-color:rgba(255, 255, 255, 1);
  1283. border:none;
  1284. border-left:0px;
  1285. border-top:0px;
  1286. border-right:0px;
  1287. border-radius:0px;
  1288. border-bottom-right-radius:0px;
  1289. border-bottom-left-radius:0px;
  1290. -moz-box-shadow:none;
  1291. -webkit-box-shadow:none;
  1292. box-shadow:none;
  1293. }
  1294. #u169871 {
  1295. border-width:0px;
  1296. position:absolute;
  1297. left:29px;
  1298. top:107px;
  1299. width:375px;
  1300. height:100px;
  1301. display:flex;
  1302. }
  1303. #u169871 .text {
  1304. position:absolute;
  1305. align-self:center;
  1306. padding:2px 2px 2px 2px;
  1307. box-sizing:border-box;
  1308. width:100%;
  1309. }
  1310. #u169871_text {
  1311. border-width:0px;
  1312. word-wrap:break-word;
  1313. text-transform:none;
  1314. visibility:hidden;
  1315. }
  1316. #u169872 {
  1317. border-width:0px;
  1318. position:absolute;
  1319. left:0px;
  1320. top:0px;
  1321. width:0px;
  1322. height:0px;
  1323. }
  1324. #u169873_img {
  1325. border-width:0px;
  1326. position:absolute;
  1327. left:0px;
  1328. top:0px;
  1329. width:355px;
  1330. height:240px;
  1331. }
  1332. #u169873 {
  1333. border-width:0px;
  1334. position:absolute;
  1335. left:39px;
  1336. top:237px;
  1337. width:355px;
  1338. height:240px;
  1339. display:flex;
  1340. }
  1341. #u169873 .text {
  1342. position:absolute;
  1343. align-self:center;
  1344. padding:2px 2px 2px 2px;
  1345. box-sizing:border-box;
  1346. width:100%;
  1347. }
  1348. #u169873_text {
  1349. border-width:0px;
  1350. word-wrap:break-word;
  1351. text-transform:none;
  1352. visibility:hidden;
  1353. }
  1354. #u169874_div {
  1355. border-width:0px;
  1356. position:absolute;
  1357. left:0px;
  1358. top:0px;
  1359. width:325px;
  1360. height:30px;
  1361. background:inherit;
  1362. background-color:rgba(255, 255, 255, 0);
  1363. border:none;
  1364. border-left:0px;
  1365. border-top:0px;
  1366. border-right:0px;
  1367. border-radius:0px;
  1368. border-bottom-right-radius:0px;
  1369. border-bottom-left-radius:0px;
  1370. -moz-box-shadow:none;
  1371. -webkit-box-shadow:none;
  1372. box-shadow:none;
  1373. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1374. font-weight:400;
  1375. font-style:normal;
  1376. font-size:14px;
  1377. line-height:30px;
  1378. }
  1379. #u169874 {
  1380. border-width:0px;
  1381. position:absolute;
  1382. left:55px;
  1383. top:248px;
  1384. width:325px;
  1385. height:30px;
  1386. display:flex;
  1387. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1388. font-weight:400;
  1389. font-style:normal;
  1390. font-size:14px;
  1391. line-height:30px;
  1392. }
  1393. #u169874 .text {
  1394. position:absolute;
  1395. align-self:flex-start;
  1396. padding:0px 0px 0px 0px;
  1397. box-sizing:border-box;
  1398. width:100%;
  1399. }
  1400. #u169874_text {
  1401. border-width:0px;
  1402. word-wrap:break-word;
  1403. text-transform:none;
  1404. }
  1405. #u169875_div {
  1406. border-width:0px;
  1407. position:absolute;
  1408. left:0px;
  1409. top:0px;
  1410. width:108px;
  1411. height:180px;
  1412. background:inherit;
  1413. background-color:rgba(255, 255, 255, 0);
  1414. border:none;
  1415. border-left:0px;
  1416. border-top:0px;
  1417. border-right:0px;
  1418. border-radius:0px;
  1419. border-bottom-right-radius:0px;
  1420. border-bottom-left-radius:0px;
  1421. -moz-box-shadow:none;
  1422. -webkit-box-shadow:none;
  1423. box-shadow:none;
  1424. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1425. font-weight:400;
  1426. font-style:normal;
  1427. font-size:12px;
  1428. line-height:30px;
  1429. }
  1430. #u169875 {
  1431. border-width:0px;
  1432. position:absolute;
  1433. left:55px;
  1434. top:288px;
  1435. width:108px;
  1436. height:180px;
  1437. display:flex;
  1438. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1439. font-weight:400;
  1440. font-style:normal;
  1441. font-size:12px;
  1442. line-height:30px;
  1443. }
  1444. #u169875 .text {
  1445. position:absolute;
  1446. align-self:flex-start;
  1447. padding:0px 0px 0px 0px;
  1448. box-sizing:border-box;
  1449. width:100%;
  1450. }
  1451. #u169875_text {
  1452. border-width:0px;
  1453. word-wrap:break-word;
  1454. text-transform:none;
  1455. }
  1456. #u169876_div {
  1457. border-width:0px;
  1458. position:absolute;
  1459. left:0px;
  1460. top:0px;
  1461. width:108px;
  1462. height:180px;
  1463. background:inherit;
  1464. background-color:rgba(255, 255, 255, 0);
  1465. border:none;
  1466. border-left:0px;
  1467. border-top:0px;
  1468. border-right:0px;
  1469. border-radius:0px;
  1470. border-bottom-right-radius:0px;
  1471. border-bottom-left-radius:0px;
  1472. -moz-box-shadow:none;
  1473. -webkit-box-shadow:none;
  1474. box-shadow:none;
  1475. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1476. font-weight:400;
  1477. font-style:normal;
  1478. font-size:12px;
  1479. line-height:30px;
  1480. }
  1481. #u169876 {
  1482. border-width:0px;
  1483. position:absolute;
  1484. left:163px;
  1485. top:288px;
  1486. width:108px;
  1487. height:180px;
  1488. display:flex;
  1489. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1490. font-weight:400;
  1491. font-style:normal;
  1492. font-size:12px;
  1493. line-height:30px;
  1494. }
  1495. #u169876 .text {
  1496. position:absolute;
  1497. align-self:flex-start;
  1498. padding:0px 0px 0px 0px;
  1499. box-sizing:border-box;
  1500. width:100%;
  1501. }
  1502. #u169876_text {
  1503. border-width:0px;
  1504. word-wrap:break-word;
  1505. text-transform:none;
  1506. }
  1507. #u169877_div {
  1508. border-width:0px;
  1509. position:absolute;
  1510. left:0px;
  1511. top:0px;
  1512. width:108px;
  1513. height:180px;
  1514. background:inherit;
  1515. background-color:rgba(255, 255, 255, 0);
  1516. border:none;
  1517. border-left:0px;
  1518. border-top:0px;
  1519. border-right:0px;
  1520. border-radius:0px;
  1521. border-bottom-right-radius:0px;
  1522. border-bottom-left-radius:0px;
  1523. -moz-box-shadow:none;
  1524. -webkit-box-shadow:none;
  1525. box-shadow:none;
  1526. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1527. font-weight:400;
  1528. font-style:normal;
  1529. font-size:12px;
  1530. line-height:30px;
  1531. }
  1532. #u169877 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:272px;
  1536. top:288px;
  1537. width:108px;
  1538. height:180px;
  1539. display:flex;
  1540. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1541. font-weight:400;
  1542. font-style:normal;
  1543. font-size:12px;
  1544. line-height:30px;
  1545. }
  1546. #u169877 .text {
  1547. position:absolute;
  1548. align-self:flex-start;
  1549. padding:0px 0px 0px 0px;
  1550. box-sizing:border-box;
  1551. width:100%;
  1552. }
  1553. #u169877_text {
  1554. border-width:0px;
  1555. word-wrap:break-word;
  1556. text-transform:none;
  1557. }
  1558. #u169878_div {
  1559. border-width:0px;
  1560. position:absolute;
  1561. left:0px;
  1562. top:0px;
  1563. width:155px;
  1564. height:30px;
  1565. background:inherit;
  1566. background-color:rgba(255, 255, 255, 0);
  1567. border:none;
  1568. border-left:0px;
  1569. border-top:0px;
  1570. border-right:0px;
  1571. border-radius:0px;
  1572. border-bottom-right-radius:0px;
  1573. border-bottom-left-radius:0px;
  1574. -moz-box-shadow:none;
  1575. -webkit-box-shadow:none;
  1576. box-shadow:none;
  1577. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1578. font-weight:500;
  1579. font-style:normal;
  1580. font-size:14px;
  1581. line-height:30px;
  1582. }
  1583. #u169878 {
  1584. border-width:0px;
  1585. position:absolute;
  1586. left:56px;
  1587. top:117px;
  1588. width:155px;
  1589. height:30px;
  1590. display:flex;
  1591. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1592. font-weight:500;
  1593. font-style:normal;
  1594. font-size:14px;
  1595. line-height:30px;
  1596. }
  1597. #u169878 .text {
  1598. position:absolute;
  1599. align-self:flex-start;
  1600. padding:0px 0px 0px 0px;
  1601. box-sizing:border-box;
  1602. width:100%;
  1603. }
  1604. #u169878_text {
  1605. border-width:0px;
  1606. white-space:nowrap;
  1607. text-transform:none;
  1608. }
  1609. #u169879 {
  1610. border-width:0px;
  1611. position:absolute;
  1612. left:0px;
  1613. top:0px;
  1614. width:0px;
  1615. height:0px;
  1616. }
  1617. #u169880_div {
  1618. border-width:0px;
  1619. position:absolute;
  1620. left:0px;
  1621. top:0px;
  1622. width:375px;
  1623. height:60px;
  1624. background:inherit;
  1625. background-color:rgba(255, 255, 255, 1);
  1626. border:none;
  1627. border-top:0px;
  1628. border-radius:28px;
  1629. border-top-left-radius:0px;
  1630. border-top-right-radius:0px;
  1631. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1632. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1633. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1634. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1635. font-weight:400;
  1636. font-style:normal;
  1637. font-size:14px;
  1638. color:#FFFFFF;
  1639. }
  1640. #u169880 {
  1641. border-width:0px;
  1642. position:absolute;
  1643. left:29px;
  1644. top:1184px;
  1645. width:375px;
  1646. height:60px;
  1647. display:flex;
  1648. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1649. font-weight:400;
  1650. font-style:normal;
  1651. font-size:14px;
  1652. color:#FFFFFF;
  1653. }
  1654. #u169880 .text {
  1655. position:absolute;
  1656. align-self:center;
  1657. padding:2px 2px 2px 2px;
  1658. box-sizing:border-box;
  1659. width:100%;
  1660. }
  1661. #u169880_text {
  1662. border-width:0px;
  1663. word-wrap:break-word;
  1664. text-transform:none;
  1665. visibility:hidden;
  1666. }
  1667. #u169881_div {
  1668. border-width:0px;
  1669. position:absolute;
  1670. left:0px;
  1671. top:0px;
  1672. width:80px;
  1673. height:40px;
  1674. background:inherit;
  1675. background-color:rgba(24, 144, 255, 1);
  1676. border:none;
  1677. border-radius:27px;
  1678. -moz-box-shadow:none;
  1679. -webkit-box-shadow:none;
  1680. box-shadow:none;
  1681. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1682. font-weight:400;
  1683. font-style:normal;
  1684. color:#FFFFFF;
  1685. text-align:center;
  1686. }
  1687. #u169881 {
  1688. border-width:0px;
  1689. position:absolute;
  1690. left:304px;
  1691. top:1194px;
  1692. width:80px;
  1693. height:40px;
  1694. display:flex;
  1695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1696. font-weight:400;
  1697. font-style:normal;
  1698. color:#FFFFFF;
  1699. text-align:center;
  1700. }
  1701. #u169881 .text {
  1702. position:absolute;
  1703. align-self:center;
  1704. padding:2px 3px 2px 3px;
  1705. box-sizing:border-box;
  1706. width:100%;
  1707. }
  1708. #u169881_text {
  1709. border-width:0px;
  1710. word-wrap:break-word;
  1711. text-transform:none;
  1712. }
  1713. #u169882_div {
  1714. border-width:0px;
  1715. position:absolute;
  1716. left:0px;
  1717. top:0px;
  1718. width:80px;
  1719. height:40px;
  1720. background:inherit;
  1721. background-color:rgba(215, 215, 215, 1);
  1722. border:none;
  1723. border-radius:27px;
  1724. -moz-box-shadow:none;
  1725. -webkit-box-shadow:none;
  1726. box-shadow:none;
  1727. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1728. font-weight:400;
  1729. font-style:normal;
  1730. text-align:center;
  1731. }
  1732. #u169882 {
  1733. border-width:0px;
  1734. position:absolute;
  1735. left:214px;
  1736. top:1194px;
  1737. width:80px;
  1738. height:40px;
  1739. display:flex;
  1740. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1741. font-weight:400;
  1742. font-style:normal;
  1743. text-align:center;
  1744. }
  1745. #u169882 .text {
  1746. position:absolute;
  1747. align-self:center;
  1748. padding:2px 3px 2px 3px;
  1749. box-sizing:border-box;
  1750. width:100%;
  1751. }
  1752. #u169882_text {
  1753. border-width:0px;
  1754. word-wrap:break-word;
  1755. text-transform:none;
  1756. }
  1757. #u169883_div {
  1758. border-width:0px;
  1759. position:absolute;
  1760. left:0px;
  1761. top:0px;
  1762. width:31px;
  1763. height:21px;
  1764. background:inherit;
  1765. background-color:rgba(215, 215, 215, 0);
  1766. border:none;
  1767. border-radius:27px;
  1768. -moz-box-shadow:none;
  1769. -webkit-box-shadow:none;
  1770. box-shadow:none;
  1771. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1772. font-weight:400;
  1773. font-style:normal;
  1774. font-size:12px;
  1775. color:#7F7F7F;
  1776. text-align:center;
  1777. }
  1778. #u169883 {
  1779. border-width:0px;
  1780. position:absolute;
  1781. left:172px;
  1782. top:1204px;
  1783. width:31px;
  1784. height:21px;
  1785. display:flex;
  1786. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1787. font-weight:400;
  1788. font-style:normal;
  1789. font-size:12px;
  1790. color:#7F7F7F;
  1791. text-align:center;
  1792. }
  1793. #u169883 .text {
  1794. position:absolute;
  1795. align-self:center;
  1796. padding:2px 3px 2px 3px;
  1797. box-sizing:border-box;
  1798. width:100%;
  1799. }
  1800. #u169883_text {
  1801. border-width:0px;
  1802. white-space:nowrap;
  1803. text-transform:none;
  1804. }
  1805. #u169884_div {
  1806. border-width:0px;
  1807. position:absolute;
  1808. left:0px;
  1809. top:0px;
  1810. width:375px;
  1811. height:30px;
  1812. background:inherit;
  1813. background-color:rgba(255, 255, 128, 0.0980392156862745);
  1814. border:none;
  1815. border-left:0px;
  1816. border-top:0px;
  1817. border-right:0px;
  1818. border-radius:0px;
  1819. border-bottom-right-radius:0px;
  1820. border-bottom-left-radius:0px;
  1821. -moz-box-shadow:none;
  1822. -webkit-box-shadow:none;
  1823. box-shadow:none;
  1824. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1825. font-weight:400;
  1826. font-style:normal;
  1827. font-size:12px;
  1828. color:#F59A23;
  1829. text-align:center;
  1830. }
  1831. #u169884 {
  1832. border-width:0px;
  1833. position:absolute;
  1834. left:29px;
  1835. top:207px;
  1836. width:375px;
  1837. height:30px;
  1838. display:flex;
  1839. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1840. font-weight:400;
  1841. font-style:normal;
  1842. font-size:12px;
  1843. color:#F59A23;
  1844. text-align:center;
  1845. }
  1846. #u169884 .text {
  1847. position:absolute;
  1848. align-self:center;
  1849. padding:0px 0px 0px 0px;
  1850. box-sizing:border-box;
  1851. width:100%;
  1852. }
  1853. #u169884_text {
  1854. border-width:0px;
  1855. word-wrap:break-word;
  1856. text-transform:none;
  1857. }
  1858. #u169885 {
  1859. border-width:0px;
  1860. position:absolute;
  1861. left:0px;
  1862. top:0px;
  1863. width:0px;
  1864. height:0px;
  1865. }
  1866. #u169886_img {
  1867. border-width:0px;
  1868. position:absolute;
  1869. left:0px;
  1870. top:0px;
  1871. width:355px;
  1872. height:210px;
  1873. }
  1874. #u169886 {
  1875. border-width:0px;
  1876. position:absolute;
  1877. left:39px;
  1878. top:487px;
  1879. width:355px;
  1880. height:210px;
  1881. display:flex;
  1882. }
  1883. #u169886 .text {
  1884. position:absolute;
  1885. align-self:center;
  1886. padding:2px 2px 2px 2px;
  1887. box-sizing:border-box;
  1888. width:100%;
  1889. }
  1890. #u169886_text {
  1891. border-width:0px;
  1892. word-wrap:break-word;
  1893. text-transform:none;
  1894. visibility:hidden;
  1895. }
  1896. #u169887_div {
  1897. border-width:0px;
  1898. position:absolute;
  1899. left:0px;
  1900. top:0px;
  1901. width:325px;
  1902. height:30px;
  1903. background:inherit;
  1904. background-color:rgba(255, 255, 255, 0);
  1905. border:none;
  1906. border-left:0px;
  1907. border-top:0px;
  1908. border-right:0px;
  1909. border-radius:0px;
  1910. border-bottom-right-radius:0px;
  1911. border-bottom-left-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:14px;
  1919. line-height:30px;
  1920. }
  1921. #u169887 {
  1922. border-width:0px;
  1923. position:absolute;
  1924. left:55px;
  1925. top:498px;
  1926. width:325px;
  1927. height:30px;
  1928. display:flex;
  1929. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1930. font-weight:400;
  1931. font-style:normal;
  1932. font-size:14px;
  1933. line-height:30px;
  1934. }
  1935. #u169887 .text {
  1936. position:absolute;
  1937. align-self:flex-start;
  1938. padding:0px 0px 0px 0px;
  1939. box-sizing:border-box;
  1940. width:100%;
  1941. }
  1942. #u169887_text {
  1943. border-width:0px;
  1944. word-wrap:break-word;
  1945. text-transform:none;
  1946. }
  1947. #u169888_div {
  1948. border-width:0px;
  1949. position:absolute;
  1950. left:0px;
  1951. top:0px;
  1952. width:108px;
  1953. height:150px;
  1954. background:inherit;
  1955. background-color:rgba(255, 255, 255, 0);
  1956. border:none;
  1957. border-left:0px;
  1958. border-top:0px;
  1959. border-right:0px;
  1960. border-radius:0px;
  1961. border-bottom-right-radius:0px;
  1962. border-bottom-left-radius:0px;
  1963. -moz-box-shadow:none;
  1964. -webkit-box-shadow:none;
  1965. box-shadow:none;
  1966. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1967. font-weight:400;
  1968. font-style:normal;
  1969. font-size:12px;
  1970. line-height:30px;
  1971. }
  1972. #u169888 {
  1973. border-width:0px;
  1974. position:absolute;
  1975. left:55px;
  1976. top:538px;
  1977. width:108px;
  1978. height:150px;
  1979. display:flex;
  1980. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1981. font-weight:400;
  1982. font-style:normal;
  1983. font-size:12px;
  1984. line-height:30px;
  1985. }
  1986. #u169888 .text {
  1987. position:absolute;
  1988. align-self:flex-start;
  1989. padding:0px 0px 0px 0px;
  1990. box-sizing:border-box;
  1991. width:100%;
  1992. }
  1993. #u169888_text {
  1994. border-width:0px;
  1995. word-wrap:break-word;
  1996. text-transform:none;
  1997. }
  1998. #u169889_div {
  1999. border-width:0px;
  2000. position:absolute;
  2001. left:0px;
  2002. top:0px;
  2003. width:108px;
  2004. height:150px;
  2005. background:inherit;
  2006. background-color:rgba(255, 255, 255, 0);
  2007. border:none;
  2008. border-left:0px;
  2009. border-top:0px;
  2010. border-right:0px;
  2011. border-radius:0px;
  2012. border-bottom-right-radius:0px;
  2013. border-bottom-left-radius:0px;
  2014. -moz-box-shadow:none;
  2015. -webkit-box-shadow:none;
  2016. box-shadow:none;
  2017. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2018. font-weight:400;
  2019. font-style:normal;
  2020. font-size:12px;
  2021. line-height:30px;
  2022. }
  2023. #u169889 {
  2024. border-width:0px;
  2025. position:absolute;
  2026. left:163px;
  2027. top:538px;
  2028. width:108px;
  2029. height:150px;
  2030. display:flex;
  2031. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2032. font-weight:400;
  2033. font-style:normal;
  2034. font-size:12px;
  2035. line-height:30px;
  2036. }
  2037. #u169889 .text {
  2038. position:absolute;
  2039. align-self:flex-start;
  2040. padding:0px 0px 0px 0px;
  2041. box-sizing:border-box;
  2042. width:100%;
  2043. }
  2044. #u169889_text {
  2045. border-width:0px;
  2046. word-wrap:break-word;
  2047. text-transform:none;
  2048. }
  2049. #u169890_div {
  2050. border-width:0px;
  2051. position:absolute;
  2052. left:0px;
  2053. top:0px;
  2054. width:108px;
  2055. height:150px;
  2056. background:inherit;
  2057. background-color:rgba(255, 255, 255, 0);
  2058. border:none;
  2059. border-left:0px;
  2060. border-top:0px;
  2061. border-right:0px;
  2062. border-radius:0px;
  2063. border-bottom-right-radius:0px;
  2064. border-bottom-left-radius:0px;
  2065. -moz-box-shadow:none;
  2066. -webkit-box-shadow:none;
  2067. box-shadow:none;
  2068. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2069. font-weight:400;
  2070. font-style:normal;
  2071. font-size:12px;
  2072. line-height:30px;
  2073. }
  2074. #u169890 {
  2075. border-width:0px;
  2076. position:absolute;
  2077. left:272px;
  2078. top:538px;
  2079. width:108px;
  2080. height:150px;
  2081. display:flex;
  2082. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2083. font-weight:400;
  2084. font-style:normal;
  2085. font-size:12px;
  2086. line-height:30px;
  2087. }
  2088. #u169890 .text {
  2089. position:absolute;
  2090. align-self:flex-start;
  2091. padding:0px 0px 0px 0px;
  2092. box-sizing:border-box;
  2093. width:100%;
  2094. }
  2095. #u169890_text {
  2096. border-width:0px;
  2097. word-wrap:break-word;
  2098. text-transform:none;
  2099. }
  2100. #u169891_div {
  2101. border-width:0px;
  2102. position:absolute;
  2103. left:0px;
  2104. top:0px;
  2105. width:57px;
  2106. height:50px;
  2107. background:inherit;
  2108. background-color:rgba(255, 255, 255, 0);
  2109. box-sizing:border-box;
  2110. border-width:2px;
  2111. border-style:solid;
  2112. border-color:rgba(51, 51, 51, 1);
  2113. border-left:0px;
  2114. border-top:0px;
  2115. border-right:0px;
  2116. border-radius:0px;
  2117. border-bottom-right-radius:0px;
  2118. border-bottom-left-radius:0px;
  2119. -moz-box-shadow:none;
  2120. -webkit-box-shadow:none;
  2121. box-shadow:none;
  2122. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2123. font-weight:500;
  2124. font-style:normal;
  2125. font-size:14px;
  2126. line-height:30px;
  2127. }
  2128. #u169891 {
  2129. border-width:0px;
  2130. position:absolute;
  2131. left:69px;
  2132. top:697px;
  2133. width:57px;
  2134. height:50px;
  2135. display:flex;
  2136. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2137. font-weight:500;
  2138. font-style:normal;
  2139. font-size:14px;
  2140. line-height:30px;
  2141. }
  2142. #u169891 .text {
  2143. position:absolute;
  2144. align-self:center;
  2145. padding:0px 0px 0px 0px;
  2146. box-sizing:border-box;
  2147. width:100%;
  2148. }
  2149. #u169891_text {
  2150. border-width:0px;
  2151. white-space:nowrap;
  2152. text-transform:none;
  2153. }
  2154. #u169892_div {
  2155. border-width:0px;
  2156. position:absolute;
  2157. left:0px;
  2158. top:0px;
  2159. width:57px;
  2160. height:50px;
  2161. background:inherit;
  2162. background-color:rgba(255, 255, 255, 0);
  2163. border:none;
  2164. border-left:0px;
  2165. border-top:0px;
  2166. border-right:0px;
  2167. border-radius:0px;
  2168. border-bottom-right-radius:0px;
  2169. border-bottom-left-radius:0px;
  2170. -moz-box-shadow:none;
  2171. -webkit-box-shadow:none;
  2172. box-shadow:none;
  2173. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2174. font-weight:400;
  2175. font-style:normal;
  2176. font-size:14px;
  2177. line-height:30px;
  2178. }
  2179. #u169892 {
  2180. border-width:0px;
  2181. position:absolute;
  2182. left:188px;
  2183. top:697px;
  2184. width:57px;
  2185. height:50px;
  2186. display:flex;
  2187. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2188. font-weight:400;
  2189. font-style:normal;
  2190. font-size:14px;
  2191. line-height:30px;
  2192. }
  2193. #u169892 .text {
  2194. position:absolute;
  2195. align-self:center;
  2196. padding:0px 0px 0px 0px;
  2197. box-sizing:border-box;
  2198. width:100%;
  2199. }
  2200. #u169892_text {
  2201. border-width:0px;
  2202. white-space:nowrap;
  2203. text-transform:none;
  2204. }
  2205. #u169893_div {
  2206. border-width:0px;
  2207. position:absolute;
  2208. left:0px;
  2209. top:0px;
  2210. width:57px;
  2211. height:50px;
  2212. background:inherit;
  2213. background-color:rgba(255, 255, 255, 0);
  2214. border:none;
  2215. border-left:0px;
  2216. border-top:0px;
  2217. border-right:0px;
  2218. border-radius:0px;
  2219. border-bottom-right-radius:0px;
  2220. border-bottom-left-radius:0px;
  2221. -moz-box-shadow:none;
  2222. -webkit-box-shadow:none;
  2223. box-shadow:none;
  2224. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2225. font-weight:400;
  2226. font-style:normal;
  2227. font-size:14px;
  2228. line-height:30px;
  2229. }
  2230. #u169893 {
  2231. border-width:0px;
  2232. position:absolute;
  2233. left:307px;
  2234. top:697px;
  2235. width:57px;
  2236. height:50px;
  2237. display:flex;
  2238. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2239. font-weight:400;
  2240. font-style:normal;
  2241. font-size:14px;
  2242. line-height:30px;
  2243. }
  2244. #u169893 .text {
  2245. position:absolute;
  2246. align-self:center;
  2247. padding:0px 0px 0px 0px;
  2248. box-sizing:border-box;
  2249. width:100%;
  2250. }
  2251. #u169893_text {
  2252. border-width:0px;
  2253. white-space:nowrap;
  2254. text-transform:none;
  2255. }
  2256. #u169894 {
  2257. border-width:0px;
  2258. position:absolute;
  2259. left:0px;
  2260. top:0px;
  2261. width:0px;
  2262. height:0px;
  2263. }
  2264. #u169895_img {
  2265. border-width:0px;
  2266. position:absolute;
  2267. left:0px;
  2268. top:0px;
  2269. width:355px;
  2270. height:200px;
  2271. }
  2272. #u169895 {
  2273. border-width:0px;
  2274. position:absolute;
  2275. left:39px;
  2276. top:752px;
  2277. width:355px;
  2278. height:200px;
  2279. display:flex;
  2280. }
  2281. #u169895 .text {
  2282. position:absolute;
  2283. align-self:center;
  2284. padding:2px 2px 2px 2px;
  2285. box-sizing:border-box;
  2286. width:100%;
  2287. }
  2288. #u169895_text {
  2289. border-width:0px;
  2290. word-wrap:break-word;
  2291. text-transform:none;
  2292. visibility:hidden;
  2293. }
  2294. #u169896_div {
  2295. border-width:0px;
  2296. position:absolute;
  2297. left:0px;
  2298. top:0px;
  2299. width:108px;
  2300. height:30px;
  2301. background:inherit;
  2302. background-color:rgba(255, 255, 255, 0);
  2303. border:none;
  2304. border-left:0px;
  2305. border-top:0px;
  2306. border-right:0px;
  2307. border-radius:0px;
  2308. border-bottom-right-radius:0px;
  2309. border-bottom-left-radius:0px;
  2310. -moz-box-shadow:none;
  2311. -webkit-box-shadow:none;
  2312. box-shadow:none;
  2313. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2314. font-weight:400;
  2315. font-style:normal;
  2316. font-size:12px;
  2317. line-height:30px;
  2318. }
  2319. #u169896 {
  2320. border-width:0px;
  2321. position:absolute;
  2322. left:55px;
  2323. top:763px;
  2324. width:108px;
  2325. height:30px;
  2326. display:flex;
  2327. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2328. font-weight:400;
  2329. font-style:normal;
  2330. font-size:12px;
  2331. line-height:30px;
  2332. }
  2333. #u169896 .text {
  2334. position:absolute;
  2335. align-self:flex-start;
  2336. padding:0px 0px 0px 0px;
  2337. box-sizing:border-box;
  2338. width:100%;
  2339. }
  2340. #u169896_text {
  2341. border-width:0px;
  2342. word-wrap:break-word;
  2343. text-transform:none;
  2344. }
  2345. #u169897_div {
  2346. border-width:0px;
  2347. position:absolute;
  2348. left:0px;
  2349. top:0px;
  2350. width:60px;
  2351. height:30px;
  2352. background:inherit;
  2353. background-color:rgba(255, 255, 255, 0);
  2354. border:none;
  2355. border-left:0px;
  2356. border-top:0px;
  2357. border-right:0px;
  2358. border-radius:0px;
  2359. border-bottom-right-radius:0px;
  2360. border-bottom-left-radius:0px;
  2361. -moz-box-shadow:none;
  2362. -webkit-box-shadow:none;
  2363. box-shadow:none;
  2364. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2365. font-weight:400;
  2366. font-style:normal;
  2367. font-size:12px;
  2368. line-height:30px;
  2369. }
  2370. #u169897 {
  2371. border-width:0px;
  2372. position:absolute;
  2373. left:163px;
  2374. top:763px;
  2375. width:60px;
  2376. height:30px;
  2377. display:flex;
  2378. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2379. font-weight:400;
  2380. font-style:normal;
  2381. font-size:12px;
  2382. line-height:30px;
  2383. }
  2384. #u169897 .text {
  2385. position:absolute;
  2386. align-self:flex-start;
  2387. padding:0px 0px 0px 0px;
  2388. box-sizing:border-box;
  2389. width:100%;
  2390. }
  2391. #u169897_text {
  2392. border-width:0px;
  2393. word-wrap:break-word;
  2394. text-transform:none;
  2395. }
  2396. #u169898_div {
  2397. border-width:0px;
  2398. position:absolute;
  2399. left:0px;
  2400. top:0px;
  2401. width:60px;
  2402. height:30px;
  2403. background:inherit;
  2404. background-color:rgba(255, 255, 255, 0);
  2405. border:none;
  2406. border-left:0px;
  2407. border-top:0px;
  2408. border-right:0px;
  2409. border-radius:0px;
  2410. border-bottom-right-radius:0px;
  2411. border-bottom-left-radius:0px;
  2412. -moz-box-shadow:none;
  2413. -webkit-box-shadow:none;
  2414. box-shadow:none;
  2415. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2416. font-weight:400;
  2417. font-style:normal;
  2418. font-size:12px;
  2419. line-height:30px;
  2420. }
  2421. #u169898 {
  2422. border-width:0px;
  2423. position:absolute;
  2424. left:223px;
  2425. top:763px;
  2426. width:60px;
  2427. height:30px;
  2428. display:flex;
  2429. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2430. font-weight:400;
  2431. font-style:normal;
  2432. font-size:12px;
  2433. line-height:30px;
  2434. }
  2435. #u169898 .text {
  2436. position:absolute;
  2437. align-self:flex-start;
  2438. padding:0px 0px 0px 0px;
  2439. box-sizing:border-box;
  2440. width:100%;
  2441. }
  2442. #u169898_text {
  2443. border-width:0px;
  2444. word-wrap:break-word;
  2445. text-transform:none;
  2446. }
  2447. #u169899_div {
  2448. border-width:0px;
  2449. position:absolute;
  2450. left:0px;
  2451. top:0px;
  2452. width:60px;
  2453. height:30px;
  2454. background:inherit;
  2455. background-color:rgba(255, 255, 255, 0);
  2456. border:none;
  2457. border-left:0px;
  2458. border-top:0px;
  2459. border-right:0px;
  2460. border-radius:0px;
  2461. border-bottom-right-radius:0px;
  2462. border-bottom-left-radius:0px;
  2463. -moz-box-shadow:none;
  2464. -webkit-box-shadow:none;
  2465. box-shadow:none;
  2466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2467. font-weight:400;
  2468. font-style:normal;
  2469. font-size:12px;
  2470. line-height:30px;
  2471. }
  2472. #u169899 {
  2473. border-width:0px;
  2474. position:absolute;
  2475. left:283px;
  2476. top:763px;
  2477. width:60px;
  2478. height:30px;
  2479. display:flex;
  2480. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2481. font-weight:400;
  2482. font-style:normal;
  2483. font-size:12px;
  2484. line-height:30px;
  2485. }
  2486. #u169899 .text {
  2487. position:absolute;
  2488. align-self:flex-start;
  2489. padding:0px 0px 0px 0px;
  2490. box-sizing:border-box;
  2491. width:100%;
  2492. }
  2493. #u169899_text {
  2494. border-width:0px;
  2495. word-wrap:break-word;
  2496. text-transform:none;
  2497. }
  2498. #u169900_div {
  2499. border-width:0px;
  2500. position:absolute;
  2501. left:0px;
  2502. top:0px;
  2503. width:51px;
  2504. height:30px;
  2505. background:inherit;
  2506. background-color:rgba(255, 255, 255, 0);
  2507. border:none;
  2508. border-left:0px;
  2509. border-top:0px;
  2510. border-right:0px;
  2511. border-radius:0px;
  2512. border-bottom-right-radius:0px;
  2513. border-bottom-left-radius:0px;
  2514. -moz-box-shadow:none;
  2515. -webkit-box-shadow:none;
  2516. box-shadow:none;
  2517. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2518. font-weight:400;
  2519. font-style:normal;
  2520. font-size:12px;
  2521. line-height:30px;
  2522. }
  2523. #u169900 {
  2524. border-width:0px;
  2525. position:absolute;
  2526. left:343px;
  2527. top:763px;
  2528. width:51px;
  2529. height:30px;
  2530. display:flex;
  2531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2532. font-weight:400;
  2533. font-style:normal;
  2534. font-size:12px;
  2535. line-height:30px;
  2536. }
  2537. #u169900 .text {
  2538. position:absolute;
  2539. align-self:flex-start;
  2540. padding:0px 0px 0px 0px;
  2541. box-sizing:border-box;
  2542. width:100%;
  2543. }
  2544. #u169900_text {
  2545. border-width:0px;
  2546. word-wrap:break-word;
  2547. text-transform:none;
  2548. }
  2549. #u169901_div {
  2550. border-width:0px;
  2551. position:absolute;
  2552. left:0px;
  2553. top:0px;
  2554. width:108px;
  2555. height:30px;
  2556. background:inherit;
  2557. background-color:rgba(255, 255, 255, 0);
  2558. border:none;
  2559. border-left:0px;
  2560. border-top:0px;
  2561. border-right:0px;
  2562. border-radius:0px;
  2563. border-bottom-right-radius:0px;
  2564. border-bottom-left-radius:0px;
  2565. -moz-box-shadow:none;
  2566. -webkit-box-shadow:none;
  2567. box-shadow:none;
  2568. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2569. font-weight:400;
  2570. font-style:normal;
  2571. font-size:12px;
  2572. line-height:30px;
  2573. }
  2574. #u169901 {
  2575. border-width:0px;
  2576. position:absolute;
  2577. left:55px;
  2578. top:793px;
  2579. width:108px;
  2580. height:30px;
  2581. display:flex;
  2582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2583. font-weight:400;
  2584. font-style:normal;
  2585. font-size:12px;
  2586. line-height:30px;
  2587. }
  2588. #u169901 .text {
  2589. position:absolute;
  2590. align-self:flex-start;
  2591. padding:0px 0px 0px 10px;
  2592. box-sizing:border-box;
  2593. width:100%;
  2594. }
  2595. #u169901_text {
  2596. border-width:0px;
  2597. word-wrap:break-word;
  2598. text-transform:none;
  2599. }
  2600. #u169902_div {
  2601. border-width:0px;
  2602. position:absolute;
  2603. left:0px;
  2604. top:0px;
  2605. width:60px;
  2606. height:30px;
  2607. background:inherit;
  2608. background-color:rgba(255, 255, 255, 0);
  2609. border:none;
  2610. border-left:0px;
  2611. border-top:0px;
  2612. border-right:0px;
  2613. border-radius:0px;
  2614. border-bottom-right-radius:0px;
  2615. border-bottom-left-radius:0px;
  2616. -moz-box-shadow:none;
  2617. -webkit-box-shadow:none;
  2618. box-shadow:none;
  2619. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2620. font-weight:400;
  2621. font-style:normal;
  2622. font-size:12px;
  2623. line-height:30px;
  2624. }
  2625. #u169902 {
  2626. border-width:0px;
  2627. position:absolute;
  2628. left:163px;
  2629. top:793px;
  2630. width:60px;
  2631. height:30px;
  2632. display:flex;
  2633. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2634. font-weight:400;
  2635. font-style:normal;
  2636. font-size:12px;
  2637. line-height:30px;
  2638. }
  2639. #u169902 .text {
  2640. position:absolute;
  2641. align-self:flex-start;
  2642. padding:0px 0px 0px 0px;
  2643. box-sizing:border-box;
  2644. width:100%;
  2645. }
  2646. #u169902_text {
  2647. border-width:0px;
  2648. word-wrap:break-word;
  2649. text-transform:none;
  2650. }
  2651. #u169903_div {
  2652. border-width:0px;
  2653. position:absolute;
  2654. left:0px;
  2655. top:0px;
  2656. width:60px;
  2657. height:30px;
  2658. background:inherit;
  2659. background-color:rgba(255, 255, 255, 0);
  2660. border:none;
  2661. border-left:0px;
  2662. border-top:0px;
  2663. border-right:0px;
  2664. border-radius:0px;
  2665. border-bottom-right-radius:0px;
  2666. border-bottom-left-radius:0px;
  2667. -moz-box-shadow:none;
  2668. -webkit-box-shadow:none;
  2669. box-shadow:none;
  2670. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2671. font-weight:400;
  2672. font-style:normal;
  2673. font-size:12px;
  2674. line-height:30px;
  2675. }
  2676. #u169903 {
  2677. border-width:0px;
  2678. position:absolute;
  2679. left:223px;
  2680. top:793px;
  2681. width:60px;
  2682. height:30px;
  2683. display:flex;
  2684. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2685. font-weight:400;
  2686. font-style:normal;
  2687. font-size:12px;
  2688. line-height:30px;
  2689. }
  2690. #u169903 .text {
  2691. position:absolute;
  2692. align-self:flex-start;
  2693. padding:0px 0px 0px 0px;
  2694. box-sizing:border-box;
  2695. width:100%;
  2696. }
  2697. #u169903_text {
  2698. border-width:0px;
  2699. word-wrap:break-word;
  2700. text-transform:none;
  2701. }
  2702. #u169904_div {
  2703. border-width:0px;
  2704. position:absolute;
  2705. left:0px;
  2706. top:0px;
  2707. width:60px;
  2708. height:30px;
  2709. background:inherit;
  2710. background-color:rgba(255, 255, 255, 0);
  2711. border:none;
  2712. border-left:0px;
  2713. border-top:0px;
  2714. border-right:0px;
  2715. border-radius:0px;
  2716. border-bottom-right-radius:0px;
  2717. border-bottom-left-radius:0px;
  2718. -moz-box-shadow:none;
  2719. -webkit-box-shadow:none;
  2720. box-shadow:none;
  2721. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2722. font-weight:400;
  2723. font-style:normal;
  2724. font-size:12px;
  2725. line-height:30px;
  2726. }
  2727. #u169904 {
  2728. border-width:0px;
  2729. position:absolute;
  2730. left:283px;
  2731. top:793px;
  2732. width:60px;
  2733. height:30px;
  2734. display:flex;
  2735. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2736. font-weight:400;
  2737. font-style:normal;
  2738. font-size:12px;
  2739. line-height:30px;
  2740. }
  2741. #u169904 .text {
  2742. position:absolute;
  2743. align-self:flex-start;
  2744. padding:0px 0px 0px 0px;
  2745. box-sizing:border-box;
  2746. width:100%;
  2747. }
  2748. #u169904_text {
  2749. border-width:0px;
  2750. word-wrap:break-word;
  2751. text-transform:none;
  2752. }
  2753. #u169905_div {
  2754. border-width:0px;
  2755. position:absolute;
  2756. left:0px;
  2757. top:0px;
  2758. width:51px;
  2759. height:30px;
  2760. background:inherit;
  2761. background-color:rgba(255, 255, 255, 0);
  2762. border:none;
  2763. border-left:0px;
  2764. border-top:0px;
  2765. border-right:0px;
  2766. border-radius:0px;
  2767. border-bottom-right-radius:0px;
  2768. border-bottom-left-radius:0px;
  2769. -moz-box-shadow:none;
  2770. -webkit-box-shadow:none;
  2771. box-shadow:none;
  2772. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2773. font-weight:400;
  2774. font-style:normal;
  2775. font-size:12px;
  2776. line-height:30px;
  2777. }
  2778. #u169905 {
  2779. border-width:0px;
  2780. position:absolute;
  2781. left:343px;
  2782. top:793px;
  2783. width:51px;
  2784. height:30px;
  2785. display:flex;
  2786. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2787. font-weight:400;
  2788. font-style:normal;
  2789. font-size:12px;
  2790. line-height:30px;
  2791. }
  2792. #u169905 .text {
  2793. position:absolute;
  2794. align-self:flex-start;
  2795. padding:0px 0px 0px 0px;
  2796. box-sizing:border-box;
  2797. width:100%;
  2798. }
  2799. #u169905_text {
  2800. border-width:0px;
  2801. word-wrap:break-word;
  2802. text-transform:none;
  2803. }
  2804. #u169906_div {
  2805. border-width:0px;
  2806. position:absolute;
  2807. left:0px;
  2808. top:0px;
  2809. width:108px;
  2810. height:30px;
  2811. background:inherit;
  2812. background-color:rgba(255, 255, 255, 0);
  2813. border:none;
  2814. border-left:0px;
  2815. border-top:0px;
  2816. border-right:0px;
  2817. border-radius:0px;
  2818. border-bottom-right-radius:0px;
  2819. border-bottom-left-radius:0px;
  2820. -moz-box-shadow:none;
  2821. -webkit-box-shadow:none;
  2822. box-shadow:none;
  2823. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2824. font-weight:400;
  2825. font-style:normal;
  2826. font-size:12px;
  2827. line-height:30px;
  2828. }
  2829. #u169906 {
  2830. border-width:0px;
  2831. position:absolute;
  2832. left:55px;
  2833. top:823px;
  2834. width:108px;
  2835. height:30px;
  2836. display:flex;
  2837. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2838. font-weight:400;
  2839. font-style:normal;
  2840. font-size:12px;
  2841. line-height:30px;
  2842. }
  2843. #u169906 .text {
  2844. position:absolute;
  2845. align-self:flex-start;
  2846. padding:0px 0px 0px 10px;
  2847. box-sizing:border-box;
  2848. width:100%;
  2849. }
  2850. #u169906_text {
  2851. border-width:0px;
  2852. word-wrap:break-word;
  2853. text-transform:none;
  2854. }
  2855. #u169907_div {
  2856. border-width:0px;
  2857. position:absolute;
  2858. left:0px;
  2859. top:0px;
  2860. width:60px;
  2861. height:30px;
  2862. background:inherit;
  2863. background-color:rgba(255, 255, 255, 0);
  2864. border:none;
  2865. border-left:0px;
  2866. border-top:0px;
  2867. border-right:0px;
  2868. border-radius:0px;
  2869. border-bottom-right-radius:0px;
  2870. border-bottom-left-radius:0px;
  2871. -moz-box-shadow:none;
  2872. -webkit-box-shadow:none;
  2873. box-shadow:none;
  2874. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2875. font-weight:400;
  2876. font-style:normal;
  2877. font-size:12px;
  2878. line-height:30px;
  2879. }
  2880. #u169907 {
  2881. border-width:0px;
  2882. position:absolute;
  2883. left:163px;
  2884. top:823px;
  2885. width:60px;
  2886. height:30px;
  2887. display:flex;
  2888. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2889. font-weight:400;
  2890. font-style:normal;
  2891. font-size:12px;
  2892. line-height:30px;
  2893. }
  2894. #u169907 .text {
  2895. position:absolute;
  2896. align-self:flex-start;
  2897. padding:0px 0px 0px 0px;
  2898. box-sizing:border-box;
  2899. width:100%;
  2900. }
  2901. #u169907_text {
  2902. border-width:0px;
  2903. word-wrap:break-word;
  2904. text-transform:none;
  2905. }
  2906. #u169908_div {
  2907. border-width:0px;
  2908. position:absolute;
  2909. left:0px;
  2910. top:0px;
  2911. width:60px;
  2912. height:30px;
  2913. background:inherit;
  2914. background-color:rgba(255, 255, 255, 0);
  2915. border:none;
  2916. border-left:0px;
  2917. border-top:0px;
  2918. border-right:0px;
  2919. border-radius:0px;
  2920. border-bottom-right-radius:0px;
  2921. border-bottom-left-radius:0px;
  2922. -moz-box-shadow:none;
  2923. -webkit-box-shadow:none;
  2924. box-shadow:none;
  2925. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2926. font-weight:400;
  2927. font-style:normal;
  2928. font-size:12px;
  2929. line-height:30px;
  2930. }
  2931. #u169908 {
  2932. border-width:0px;
  2933. position:absolute;
  2934. left:223px;
  2935. top:823px;
  2936. width:60px;
  2937. height:30px;
  2938. display:flex;
  2939. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2940. font-weight:400;
  2941. font-style:normal;
  2942. font-size:12px;
  2943. line-height:30px;
  2944. }
  2945. #u169908 .text {
  2946. position:absolute;
  2947. align-self:flex-start;
  2948. padding:0px 0px 0px 0px;
  2949. box-sizing:border-box;
  2950. width:100%;
  2951. }
  2952. #u169908_text {
  2953. border-width:0px;
  2954. word-wrap:break-word;
  2955. text-transform:none;
  2956. }
  2957. #u169909_div {
  2958. border-width:0px;
  2959. position:absolute;
  2960. left:0px;
  2961. top:0px;
  2962. width:60px;
  2963. height:30px;
  2964. background:inherit;
  2965. background-color:rgba(255, 255, 255, 0);
  2966. border:none;
  2967. border-left:0px;
  2968. border-top:0px;
  2969. border-right:0px;
  2970. border-radius:0px;
  2971. border-bottom-right-radius:0px;
  2972. border-bottom-left-radius:0px;
  2973. -moz-box-shadow:none;
  2974. -webkit-box-shadow:none;
  2975. box-shadow:none;
  2976. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2977. font-weight:400;
  2978. font-style:normal;
  2979. font-size:12px;
  2980. line-height:30px;
  2981. }
  2982. #u169909 {
  2983. border-width:0px;
  2984. position:absolute;
  2985. left:283px;
  2986. top:823px;
  2987. width:60px;
  2988. height:30px;
  2989. display:flex;
  2990. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2991. font-weight:400;
  2992. font-style:normal;
  2993. font-size:12px;
  2994. line-height:30px;
  2995. }
  2996. #u169909 .text {
  2997. position:absolute;
  2998. align-self:flex-start;
  2999. padding:0px 0px 0px 0px;
  3000. box-sizing:border-box;
  3001. width:100%;
  3002. }
  3003. #u169909_text {
  3004. border-width:0px;
  3005. word-wrap:break-word;
  3006. text-transform:none;
  3007. }
  3008. #u169910_div {
  3009. border-width:0px;
  3010. position:absolute;
  3011. left:0px;
  3012. top:0px;
  3013. width:51px;
  3014. height:30px;
  3015. background:inherit;
  3016. background-color:rgba(255, 255, 255, 0);
  3017. border:none;
  3018. border-left:0px;
  3019. border-top:0px;
  3020. border-right:0px;
  3021. border-radius:0px;
  3022. border-bottom-right-radius:0px;
  3023. border-bottom-left-radius:0px;
  3024. -moz-box-shadow:none;
  3025. -webkit-box-shadow:none;
  3026. box-shadow:none;
  3027. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3028. font-weight:400;
  3029. font-style:normal;
  3030. font-size:12px;
  3031. line-height:30px;
  3032. }
  3033. #u169910 {
  3034. border-width:0px;
  3035. position:absolute;
  3036. left:343px;
  3037. top:823px;
  3038. width:51px;
  3039. height:30px;
  3040. display:flex;
  3041. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3042. font-weight:400;
  3043. font-style:normal;
  3044. font-size:12px;
  3045. line-height:30px;
  3046. }
  3047. #u169910 .text {
  3048. position:absolute;
  3049. align-self:flex-start;
  3050. padding:0px 0px 0px 0px;
  3051. box-sizing:border-box;
  3052. width:100%;
  3053. }
  3054. #u169910_text {
  3055. border-width:0px;
  3056. word-wrap:break-word;
  3057. text-transform:none;
  3058. }
  3059. #u169911_div {
  3060. border-width:0px;
  3061. position:absolute;
  3062. left:0px;
  3063. top:0px;
  3064. width:108px;
  3065. height:30px;
  3066. background:inherit;
  3067. background-color:rgba(255, 255, 255, 0);
  3068. border:none;
  3069. border-left:0px;
  3070. border-top:0px;
  3071. border-right:0px;
  3072. border-radius:0px;
  3073. border-bottom-right-radius:0px;
  3074. border-bottom-left-radius:0px;
  3075. -moz-box-shadow:none;
  3076. -webkit-box-shadow:none;
  3077. box-shadow:none;
  3078. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3079. font-weight:400;
  3080. font-style:normal;
  3081. font-size:12px;
  3082. line-height:30px;
  3083. }
  3084. #u169911 {
  3085. border-width:0px;
  3086. position:absolute;
  3087. left:55px;
  3088. top:853px;
  3089. width:108px;
  3090. height:30px;
  3091. display:flex;
  3092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3093. font-weight:400;
  3094. font-style:normal;
  3095. font-size:12px;
  3096. line-height:30px;
  3097. }
  3098. #u169911 .text {
  3099. position:absolute;
  3100. align-self:flex-start;
  3101. padding:0px 0px 0px 10px;
  3102. box-sizing:border-box;
  3103. width:100%;
  3104. }
  3105. #u169911_text {
  3106. border-width:0px;
  3107. word-wrap:break-word;
  3108. text-transform:none;
  3109. }
  3110. #u169912_div {
  3111. border-width:0px;
  3112. position:absolute;
  3113. left:0px;
  3114. top:0px;
  3115. width:60px;
  3116. height:30px;
  3117. background:inherit;
  3118. background-color:rgba(255, 255, 255, 0);
  3119. border:none;
  3120. border-left:0px;
  3121. border-top:0px;
  3122. border-right:0px;
  3123. border-radius:0px;
  3124. border-bottom-right-radius:0px;
  3125. border-bottom-left-radius:0px;
  3126. -moz-box-shadow:none;
  3127. -webkit-box-shadow:none;
  3128. box-shadow:none;
  3129. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3130. font-weight:400;
  3131. font-style:normal;
  3132. font-size:12px;
  3133. line-height:30px;
  3134. }
  3135. #u169912 {
  3136. border-width:0px;
  3137. position:absolute;
  3138. left:163px;
  3139. top:853px;
  3140. width:60px;
  3141. height:30px;
  3142. display:flex;
  3143. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3144. font-weight:400;
  3145. font-style:normal;
  3146. font-size:12px;
  3147. line-height:30px;
  3148. }
  3149. #u169912 .text {
  3150. position:absolute;
  3151. align-self:flex-start;
  3152. padding:0px 0px 0px 0px;
  3153. box-sizing:border-box;
  3154. width:100%;
  3155. }
  3156. #u169912_text {
  3157. border-width:0px;
  3158. word-wrap:break-word;
  3159. text-transform:none;
  3160. }
  3161. #u169913_div {
  3162. border-width:0px;
  3163. position:absolute;
  3164. left:0px;
  3165. top:0px;
  3166. width:60px;
  3167. height:30px;
  3168. background:inherit;
  3169. background-color:rgba(255, 255, 255, 0);
  3170. border:none;
  3171. border-left:0px;
  3172. border-top:0px;
  3173. border-right:0px;
  3174. border-radius:0px;
  3175. border-bottom-right-radius:0px;
  3176. border-bottom-left-radius:0px;
  3177. -moz-box-shadow:none;
  3178. -webkit-box-shadow:none;
  3179. box-shadow:none;
  3180. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3181. font-weight:400;
  3182. font-style:normal;
  3183. font-size:12px;
  3184. line-height:30px;
  3185. }
  3186. #u169913 {
  3187. border-width:0px;
  3188. position:absolute;
  3189. left:223px;
  3190. top:853px;
  3191. width:60px;
  3192. height:30px;
  3193. display:flex;
  3194. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3195. font-weight:400;
  3196. font-style:normal;
  3197. font-size:12px;
  3198. line-height:30px;
  3199. }
  3200. #u169913 .text {
  3201. position:absolute;
  3202. align-self:flex-start;
  3203. padding:0px 0px 0px 0px;
  3204. box-sizing:border-box;
  3205. width:100%;
  3206. }
  3207. #u169913_text {
  3208. border-width:0px;
  3209. word-wrap:break-word;
  3210. text-transform:none;
  3211. }
  3212. #u169914_div {
  3213. border-width:0px;
  3214. position:absolute;
  3215. left:0px;
  3216. top:0px;
  3217. width:60px;
  3218. height:30px;
  3219. background:inherit;
  3220. background-color:rgba(255, 255, 255, 0);
  3221. border:none;
  3222. border-left:0px;
  3223. border-top:0px;
  3224. border-right:0px;
  3225. border-radius:0px;
  3226. border-bottom-right-radius:0px;
  3227. border-bottom-left-radius:0px;
  3228. -moz-box-shadow:none;
  3229. -webkit-box-shadow:none;
  3230. box-shadow:none;
  3231. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3232. font-weight:400;
  3233. font-style:normal;
  3234. font-size:12px;
  3235. line-height:30px;
  3236. }
  3237. #u169914 {
  3238. border-width:0px;
  3239. position:absolute;
  3240. left:283px;
  3241. top:853px;
  3242. width:60px;
  3243. height:30px;
  3244. display:flex;
  3245. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3246. font-weight:400;
  3247. font-style:normal;
  3248. font-size:12px;
  3249. line-height:30px;
  3250. }
  3251. #u169914 .text {
  3252. position:absolute;
  3253. align-self:flex-start;
  3254. padding:0px 0px 0px 0px;
  3255. box-sizing:border-box;
  3256. width:100%;
  3257. }
  3258. #u169914_text {
  3259. border-width:0px;
  3260. word-wrap:break-word;
  3261. text-transform:none;
  3262. }
  3263. #u169915_div {
  3264. border-width:0px;
  3265. position:absolute;
  3266. left:0px;
  3267. top:0px;
  3268. width:51px;
  3269. height:30px;
  3270. background:inherit;
  3271. background-color:rgba(255, 255, 255, 0);
  3272. border:none;
  3273. border-left:0px;
  3274. border-top:0px;
  3275. border-right:0px;
  3276. border-radius:0px;
  3277. border-bottom-right-radius:0px;
  3278. border-bottom-left-radius:0px;
  3279. -moz-box-shadow:none;
  3280. -webkit-box-shadow:none;
  3281. box-shadow:none;
  3282. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3283. font-weight:400;
  3284. font-style:normal;
  3285. font-size:12px;
  3286. line-height:30px;
  3287. }
  3288. #u169915 {
  3289. border-width:0px;
  3290. position:absolute;
  3291. left:343px;
  3292. top:853px;
  3293. width:51px;
  3294. height:30px;
  3295. display:flex;
  3296. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3297. font-weight:400;
  3298. font-style:normal;
  3299. font-size:12px;
  3300. line-height:30px;
  3301. }
  3302. #u169915 .text {
  3303. position:absolute;
  3304. align-self:flex-start;
  3305. padding:0px 0px 0px 0px;
  3306. box-sizing:border-box;
  3307. width:100%;
  3308. }
  3309. #u169915_text {
  3310. border-width:0px;
  3311. word-wrap:break-word;
  3312. text-transform:none;
  3313. }
  3314. #u169916_div {
  3315. border-width:0px;
  3316. position:absolute;
  3317. left:0px;
  3318. top:0px;
  3319. width:108px;
  3320. height:30px;
  3321. background:inherit;
  3322. background-color:rgba(255, 255, 255, 0);
  3323. border:none;
  3324. border-left:0px;
  3325. border-top:0px;
  3326. border-right:0px;
  3327. border-radius:0px;
  3328. border-bottom-right-radius:0px;
  3329. border-bottom-left-radius:0px;
  3330. -moz-box-shadow:none;
  3331. -webkit-box-shadow:none;
  3332. box-shadow:none;
  3333. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3334. font-weight:400;
  3335. font-style:normal;
  3336. font-size:12px;
  3337. line-height:30px;
  3338. }
  3339. #u169916 {
  3340. border-width:0px;
  3341. position:absolute;
  3342. left:55px;
  3343. top:883px;
  3344. width:108px;
  3345. height:30px;
  3346. display:flex;
  3347. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3348. font-weight:400;
  3349. font-style:normal;
  3350. font-size:12px;
  3351. line-height:30px;
  3352. }
  3353. #u169916 .text {
  3354. position:absolute;
  3355. align-self:flex-start;
  3356. padding:0px 0px 0px 0px;
  3357. box-sizing:border-box;
  3358. width:100%;
  3359. }
  3360. #u169916_text {
  3361. border-width:0px;
  3362. word-wrap:break-word;
  3363. text-transform:none;
  3364. }
  3365. #u169917_div {
  3366. border-width:0px;
  3367. position:absolute;
  3368. left:0px;
  3369. top:0px;
  3370. width:60px;
  3371. height:30px;
  3372. background:inherit;
  3373. background-color:rgba(255, 255, 255, 0);
  3374. border:none;
  3375. border-left:0px;
  3376. border-top:0px;
  3377. border-right:0px;
  3378. border-radius:0px;
  3379. border-bottom-right-radius:0px;
  3380. border-bottom-left-radius:0px;
  3381. -moz-box-shadow:none;
  3382. -webkit-box-shadow:none;
  3383. box-shadow:none;
  3384. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3385. font-weight:400;
  3386. font-style:normal;
  3387. font-size:12px;
  3388. line-height:30px;
  3389. }
  3390. #u169917 {
  3391. border-width:0px;
  3392. position:absolute;
  3393. left:163px;
  3394. top:883px;
  3395. width:60px;
  3396. height:30px;
  3397. display:flex;
  3398. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3399. font-weight:400;
  3400. font-style:normal;
  3401. font-size:12px;
  3402. line-height:30px;
  3403. }
  3404. #u169917 .text {
  3405. position:absolute;
  3406. align-self:flex-start;
  3407. padding:0px 0px 0px 0px;
  3408. box-sizing:border-box;
  3409. width:100%;
  3410. }
  3411. #u169917_text {
  3412. border-width:0px;
  3413. word-wrap:break-word;
  3414. text-transform:none;
  3415. }
  3416. #u169918_div {
  3417. border-width:0px;
  3418. position:absolute;
  3419. left:0px;
  3420. top:0px;
  3421. width:60px;
  3422. height:30px;
  3423. background:inherit;
  3424. background-color:rgba(255, 255, 255, 0);
  3425. border:none;
  3426. border-left:0px;
  3427. border-top:0px;
  3428. border-right:0px;
  3429. border-radius:0px;
  3430. border-bottom-right-radius:0px;
  3431. border-bottom-left-radius:0px;
  3432. -moz-box-shadow:none;
  3433. -webkit-box-shadow:none;
  3434. box-shadow:none;
  3435. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3436. font-weight:400;
  3437. font-style:normal;
  3438. font-size:12px;
  3439. line-height:30px;
  3440. }
  3441. #u169918 {
  3442. border-width:0px;
  3443. position:absolute;
  3444. left:223px;
  3445. top:883px;
  3446. width:60px;
  3447. height:30px;
  3448. display:flex;
  3449. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3450. font-weight:400;
  3451. font-style:normal;
  3452. font-size:12px;
  3453. line-height:30px;
  3454. }
  3455. #u169918 .text {
  3456. position:absolute;
  3457. align-self:flex-start;
  3458. padding:0px 0px 0px 0px;
  3459. box-sizing:border-box;
  3460. width:100%;
  3461. }
  3462. #u169918_text {
  3463. border-width:0px;
  3464. word-wrap:break-word;
  3465. text-transform:none;
  3466. }
  3467. #u169919_div {
  3468. border-width:0px;
  3469. position:absolute;
  3470. left:0px;
  3471. top:0px;
  3472. width:60px;
  3473. height:30px;
  3474. background:inherit;
  3475. background-color:rgba(255, 255, 255, 0);
  3476. border:none;
  3477. border-left:0px;
  3478. border-top:0px;
  3479. border-right:0px;
  3480. border-radius:0px;
  3481. border-bottom-right-radius:0px;
  3482. border-bottom-left-radius:0px;
  3483. -moz-box-shadow:none;
  3484. -webkit-box-shadow:none;
  3485. box-shadow:none;
  3486. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3487. font-weight:400;
  3488. font-style:normal;
  3489. font-size:12px;
  3490. line-height:30px;
  3491. }
  3492. #u169919 {
  3493. border-width:0px;
  3494. position:absolute;
  3495. left:283px;
  3496. top:883px;
  3497. width:60px;
  3498. height:30px;
  3499. display:flex;
  3500. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3501. font-weight:400;
  3502. font-style:normal;
  3503. font-size:12px;
  3504. line-height:30px;
  3505. }
  3506. #u169919 .text {
  3507. position:absolute;
  3508. align-self:flex-start;
  3509. padding:0px 0px 0px 0px;
  3510. box-sizing:border-box;
  3511. width:100%;
  3512. }
  3513. #u169919_text {
  3514. border-width:0px;
  3515. word-wrap:break-word;
  3516. text-transform:none;
  3517. }
  3518. #u169920_div {
  3519. border-width:0px;
  3520. position:absolute;
  3521. left:0px;
  3522. top:0px;
  3523. width:51px;
  3524. height:30px;
  3525. background:inherit;
  3526. background-color:rgba(255, 255, 255, 0);
  3527. border:none;
  3528. border-left:0px;
  3529. border-top:0px;
  3530. border-right:0px;
  3531. border-radius:0px;
  3532. border-bottom-right-radius:0px;
  3533. border-bottom-left-radius:0px;
  3534. -moz-box-shadow:none;
  3535. -webkit-box-shadow:none;
  3536. box-shadow:none;
  3537. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3538. font-weight:400;
  3539. font-style:normal;
  3540. font-size:12px;
  3541. line-height:30px;
  3542. }
  3543. #u169920 {
  3544. border-width:0px;
  3545. position:absolute;
  3546. left:343px;
  3547. top:883px;
  3548. width:51px;
  3549. height:30px;
  3550. display:flex;
  3551. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3552. font-weight:400;
  3553. font-style:normal;
  3554. font-size:12px;
  3555. line-height:30px;
  3556. }
  3557. #u169920 .text {
  3558. position:absolute;
  3559. align-self:flex-start;
  3560. padding:0px 0px 0px 0px;
  3561. box-sizing:border-box;
  3562. width:100%;
  3563. }
  3564. #u169920_text {
  3565. border-width:0px;
  3566. word-wrap:break-word;
  3567. text-transform:none;
  3568. }
  3569. #u169921_div {
  3570. border-width:0px;
  3571. position:absolute;
  3572. left:0px;
  3573. top:0px;
  3574. width:108px;
  3575. height:30px;
  3576. background:inherit;
  3577. background-color:rgba(255, 255, 255, 0);
  3578. border:none;
  3579. border-left:0px;
  3580. border-top:0px;
  3581. border-right:0px;
  3582. border-radius:0px;
  3583. border-bottom-right-radius:0px;
  3584. border-bottom-left-radius:0px;
  3585. -moz-box-shadow:none;
  3586. -webkit-box-shadow:none;
  3587. box-shadow:none;
  3588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3589. font-weight:400;
  3590. font-style:normal;
  3591. font-size:12px;
  3592. line-height:30px;
  3593. }
  3594. #u169921 {
  3595. border-width:0px;
  3596. position:absolute;
  3597. left:55px;
  3598. top:913px;
  3599. width:108px;
  3600. height:30px;
  3601. display:flex;
  3602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3603. font-weight:400;
  3604. font-style:normal;
  3605. font-size:12px;
  3606. line-height:30px;
  3607. }
  3608. #u169921 .text {
  3609. position:absolute;
  3610. align-self:flex-start;
  3611. padding:0px 0px 0px 0px;
  3612. box-sizing:border-box;
  3613. width:100%;
  3614. }
  3615. #u169921_text {
  3616. border-width:0px;
  3617. word-wrap:break-word;
  3618. text-transform:none;
  3619. }
  3620. #u169922_div {
  3621. border-width:0px;
  3622. position:absolute;
  3623. left:0px;
  3624. top:0px;
  3625. width:60px;
  3626. height:30px;
  3627. background:inherit;
  3628. background-color:rgba(255, 255, 255, 0);
  3629. border:none;
  3630. border-left:0px;
  3631. border-top:0px;
  3632. border-right:0px;
  3633. border-radius:0px;
  3634. border-bottom-right-radius:0px;
  3635. border-bottom-left-radius:0px;
  3636. -moz-box-shadow:none;
  3637. -webkit-box-shadow:none;
  3638. box-shadow:none;
  3639. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3640. font-weight:400;
  3641. font-style:normal;
  3642. font-size:12px;
  3643. line-height:30px;
  3644. }
  3645. #u169922 {
  3646. border-width:0px;
  3647. position:absolute;
  3648. left:163px;
  3649. top:913px;
  3650. width:60px;
  3651. height:30px;
  3652. display:flex;
  3653. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3654. font-weight:400;
  3655. font-style:normal;
  3656. font-size:12px;
  3657. line-height:30px;
  3658. }
  3659. #u169922 .text {
  3660. position:absolute;
  3661. align-self:flex-start;
  3662. padding:0px 0px 0px 0px;
  3663. box-sizing:border-box;
  3664. width:100%;
  3665. }
  3666. #u169922_text {
  3667. border-width:0px;
  3668. word-wrap:break-word;
  3669. text-transform:none;
  3670. }
  3671. #u169923_div {
  3672. border-width:0px;
  3673. position:absolute;
  3674. left:0px;
  3675. top:0px;
  3676. width:60px;
  3677. height:30px;
  3678. background:inherit;
  3679. background-color:rgba(255, 255, 255, 0);
  3680. border:none;
  3681. border-left:0px;
  3682. border-top:0px;
  3683. border-right:0px;
  3684. border-radius:0px;
  3685. border-bottom-right-radius:0px;
  3686. border-bottom-left-radius:0px;
  3687. -moz-box-shadow:none;
  3688. -webkit-box-shadow:none;
  3689. box-shadow:none;
  3690. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3691. font-weight:400;
  3692. font-style:normal;
  3693. font-size:12px;
  3694. line-height:30px;
  3695. }
  3696. #u169923 {
  3697. border-width:0px;
  3698. position:absolute;
  3699. left:223px;
  3700. top:913px;
  3701. width:60px;
  3702. height:30px;
  3703. display:flex;
  3704. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3705. font-weight:400;
  3706. font-style:normal;
  3707. font-size:12px;
  3708. line-height:30px;
  3709. }
  3710. #u169923 .text {
  3711. position:absolute;
  3712. align-self:flex-start;
  3713. padding:0px 0px 0px 0px;
  3714. box-sizing:border-box;
  3715. width:100%;
  3716. }
  3717. #u169923_text {
  3718. border-width:0px;
  3719. word-wrap:break-word;
  3720. text-transform:none;
  3721. }
  3722. #u169924_div {
  3723. border-width:0px;
  3724. position:absolute;
  3725. left:0px;
  3726. top:0px;
  3727. width:60px;
  3728. height:30px;
  3729. background:inherit;
  3730. background-color:rgba(255, 255, 255, 0);
  3731. border:none;
  3732. border-left:0px;
  3733. border-top:0px;
  3734. border-right:0px;
  3735. border-radius:0px;
  3736. border-bottom-right-radius:0px;
  3737. border-bottom-left-radius:0px;
  3738. -moz-box-shadow:none;
  3739. -webkit-box-shadow:none;
  3740. box-shadow:none;
  3741. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3742. font-weight:400;
  3743. font-style:normal;
  3744. font-size:12px;
  3745. line-height:30px;
  3746. }
  3747. #u169924 {
  3748. border-width:0px;
  3749. position:absolute;
  3750. left:283px;
  3751. top:913px;
  3752. width:60px;
  3753. height:30px;
  3754. display:flex;
  3755. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3756. font-weight:400;
  3757. font-style:normal;
  3758. font-size:12px;
  3759. line-height:30px;
  3760. }
  3761. #u169924 .text {
  3762. position:absolute;
  3763. align-self:flex-start;
  3764. padding:0px 0px 0px 0px;
  3765. box-sizing:border-box;
  3766. width:100%;
  3767. }
  3768. #u169924_text {
  3769. border-width:0px;
  3770. word-wrap:break-word;
  3771. text-transform:none;
  3772. }
  3773. #u169925_div {
  3774. border-width:0px;
  3775. position:absolute;
  3776. left:0px;
  3777. top:0px;
  3778. width:51px;
  3779. height:30px;
  3780. background:inherit;
  3781. background-color:rgba(255, 255, 255, 0);
  3782. border:none;
  3783. border-left:0px;
  3784. border-top:0px;
  3785. border-right:0px;
  3786. border-radius:0px;
  3787. border-bottom-right-radius:0px;
  3788. border-bottom-left-radius:0px;
  3789. -moz-box-shadow:none;
  3790. -webkit-box-shadow:none;
  3791. box-shadow:none;
  3792. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3793. font-weight:400;
  3794. font-style:normal;
  3795. font-size:12px;
  3796. line-height:30px;
  3797. }
  3798. #u169925 {
  3799. border-width:0px;
  3800. position:absolute;
  3801. left:343px;
  3802. top:913px;
  3803. width:51px;
  3804. height:30px;
  3805. display:flex;
  3806. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3807. font-weight:400;
  3808. font-style:normal;
  3809. font-size:12px;
  3810. line-height:30px;
  3811. }
  3812. #u169925 .text {
  3813. position:absolute;
  3814. align-self:flex-start;
  3815. padding:0px 0px 0px 0px;
  3816. box-sizing:border-box;
  3817. width:100%;
  3818. }
  3819. #u169925_text {
  3820. border-width:0px;
  3821. word-wrap:break-word;
  3822. text-transform:none;
  3823. }
  3824. #u169926_div {
  3825. border-width:0px;
  3826. position:absolute;
  3827. left:0px;
  3828. top:0px;
  3829. width:7px;
  3830. height:7px;
  3831. background:inherit;
  3832. background-color:rgba(255, 255, 255, 0);
  3833. box-sizing:border-box;
  3834. border-width:1px;
  3835. border-style:solid;
  3836. border-color:rgba(51, 51, 51, 1);
  3837. border-right:0px;
  3838. border-bottom:0px;
  3839. border-radius:0px;
  3840. border-top-right-radius:0px;
  3841. border-bottom-left-radius:0px;
  3842. -moz-box-shadow:none;
  3843. -webkit-box-shadow:none;
  3844. box-shadow:none;
  3845. }
  3846. #u169926 {
  3847. border-width:0px;
  3848. position:absolute;
  3849. left:54px;
  3850. top:804px;
  3851. width:7px;
  3852. height:7px;
  3853. display:flex;
  3854. -webkit-transform:rotate(135deg);
  3855. -moz-transform:rotate(135deg);
  3856. -ms-transform:rotate(135deg);
  3857. transform:rotate(135deg);
  3858. }
  3859. #u169926 .text {
  3860. position:absolute;
  3861. align-self:center;
  3862. padding:2px 2px 2px 2px;
  3863. box-sizing:border-box;
  3864. width:100%;
  3865. }
  3866. #u169926_text {
  3867. border-width:0px;
  3868. word-wrap:break-word;
  3869. text-transform:none;
  3870. visibility:hidden;
  3871. }
  3872. #u169927_div {
  3873. border-width:0px;
  3874. position:absolute;
  3875. left:0px;
  3876. top:0px;
  3877. width:7px;
  3878. height:7px;
  3879. background:inherit;
  3880. background-color:rgba(255, 255, 255, 0);
  3881. box-sizing:border-box;
  3882. border-width:1px;
  3883. border-style:solid;
  3884. border-color:rgba(51, 51, 51, 1);
  3885. border-right:0px;
  3886. border-bottom:0px;
  3887. border-radius:0px;
  3888. border-top-right-radius:0px;
  3889. border-bottom-left-radius:0px;
  3890. -moz-box-shadow:none;
  3891. -webkit-box-shadow:none;
  3892. box-shadow:none;
  3893. }
  3894. #u169927 {
  3895. border-width:0px;
  3896. position:absolute;
  3897. left:54px;
  3898. top:835px;
  3899. width:7px;
  3900. height:7px;
  3901. display:flex;
  3902. -webkit-transform:rotate(135deg);
  3903. -moz-transform:rotate(135deg);
  3904. -ms-transform:rotate(135deg);
  3905. transform:rotate(135deg);
  3906. }
  3907. #u169927 .text {
  3908. position:absolute;
  3909. align-self:center;
  3910. padding:2px 2px 2px 2px;
  3911. box-sizing:border-box;
  3912. width:100%;
  3913. }
  3914. #u169927_text {
  3915. border-width:0px;
  3916. word-wrap:break-word;
  3917. text-transform:none;
  3918. visibility:hidden;
  3919. }
  3920. #u169928_div {
  3921. border-width:0px;
  3922. position:absolute;
  3923. left:0px;
  3924. top:0px;
  3925. width:7px;
  3926. height:7px;
  3927. background:inherit;
  3928. background-color:rgba(255, 255, 255, 0);
  3929. box-sizing:border-box;
  3930. border-width:1px;
  3931. border-style:solid;
  3932. border-color:rgba(51, 51, 51, 1);
  3933. border-right:0px;
  3934. border-bottom:0px;
  3935. border-radius:0px;
  3936. border-top-right-radius:0px;
  3937. border-bottom-left-radius:0px;
  3938. -moz-box-shadow:none;
  3939. -webkit-box-shadow:none;
  3940. box-shadow:none;
  3941. }
  3942. #u169928 {
  3943. border-width:0px;
  3944. position:absolute;
  3945. left:54px;
  3946. top:864px;
  3947. width:7px;
  3948. height:7px;
  3949. display:flex;
  3950. -webkit-transform:rotate(135deg);
  3951. -moz-transform:rotate(135deg);
  3952. -ms-transform:rotate(135deg);
  3953. transform:rotate(135deg);
  3954. }
  3955. #u169928 .text {
  3956. position:absolute;
  3957. align-self:center;
  3958. padding:2px 2px 2px 2px;
  3959. box-sizing:border-box;
  3960. width:100%;
  3961. }
  3962. #u169928_text {
  3963. border-width:0px;
  3964. word-wrap:break-word;
  3965. text-transform:none;
  3966. visibility:hidden;
  3967. }
  3968. #u169929 {
  3969. border-width:0px;
  3970. position:absolute;
  3971. left:0px;
  3972. top:0px;
  3973. width:0px;
  3974. height:0px;
  3975. }
  3976. #u169930_div {
  3977. border-width:0px;
  3978. position:absolute;
  3979. left:0px;
  3980. top:0px;
  3981. width:355px;
  3982. height:192px;
  3983. background:inherit;
  3984. background-color:rgba(255, 255, 255, 1);
  3985. border:none;
  3986. border-radius:0px;
  3987. -moz-box-shadow:none;
  3988. -webkit-box-shadow:none;
  3989. box-shadow:none;
  3990. }
  3991. #u169930 {
  3992. border-width:0px;
  3993. position:absolute;
  3994. left:39px;
  3995. top:962px;
  3996. width:355px;
  3997. height:192px;
  3998. display:flex;
  3999. }
  4000. #u169930 .text {
  4001. position:absolute;
  4002. align-self:center;
  4003. padding:2px 2px 2px 2px;
  4004. box-sizing:border-box;
  4005. width:100%;
  4006. }
  4007. #u169930_text {
  4008. border-width:0px;
  4009. word-wrap:break-word;
  4010. text-transform:none;
  4011. visibility:hidden;
  4012. }
  4013. #u169931_div {
  4014. border-width:0px;
  4015. position:absolute;
  4016. left:0px;
  4017. top:0px;
  4018. width:103px;
  4019. height:24px;
  4020. background:inherit;
  4021. background-color:rgba(255, 255, 255, 0);
  4022. border:none;
  4023. border-top:0px;
  4024. border-right:0px;
  4025. border-bottom:0px;
  4026. border-radius:0px;
  4027. border-top-left-radius:0px;
  4028. border-bottom-left-radius:0px;
  4029. -moz-box-shadow:none;
  4030. -webkit-box-shadow:none;
  4031. box-shadow:none;
  4032. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4033. font-weight:400;
  4034. font-style:normal;
  4035. font-size:10px;
  4036. color:#AAAAAA;
  4037. }
  4038. #u169931 {
  4039. border-width:0px;
  4040. position:absolute;
  4041. left:274px;
  4042. top:1012px;
  4043. width:103px;
  4044. height:24px;
  4045. display:flex;
  4046. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4047. font-weight:400;
  4048. font-style:normal;
  4049. font-size:10px;
  4050. color:#AAAAAA;
  4051. }
  4052. #u169931 .text {
  4053. position:absolute;
  4054. align-self:flex-start;
  4055. padding:5px 0px 5px 0px;
  4056. box-sizing:border-box;
  4057. width:100%;
  4058. }
  4059. #u169931_text {
  4060. border-width:0px;
  4061. white-space:nowrap;
  4062. text-transform:none;
  4063. }
  4064. #u169932 {
  4065. border-width:0px;
  4066. position:absolute;
  4067. left:0px;
  4068. top:0px;
  4069. width:0px;
  4070. height:0px;
  4071. }
  4072. #u169933_div {
  4073. border-width:0px;
  4074. position:absolute;
  4075. left:0px;
  4076. top:0px;
  4077. width:43px;
  4078. height:30px;
  4079. background:inherit;
  4080. background-color:rgba(255, 255, 255, 0);
  4081. border:none;
  4082. border-top:0px;
  4083. border-right:0px;
  4084. border-bottom:0px;
  4085. border-radius:0px;
  4086. border-top-left-radius:0px;
  4087. border-bottom-left-radius:0px;
  4088. -moz-box-shadow:none;
  4089. -webkit-box-shadow:none;
  4090. box-shadow:none;
  4091. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4092. font-weight:400;
  4093. font-style:normal;
  4094. font-size:14px;
  4095. }
  4096. #u169933 {
  4097. border-width:0px;
  4098. position:absolute;
  4099. left:107px;
  4100. top:1014px;
  4101. width:43px;
  4102. height:30px;
  4103. display:flex;
  4104. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4105. font-weight:400;
  4106. font-style:normal;
  4107. font-size:14px;
  4108. }
  4109. #u169933 .text {
  4110. position:absolute;
  4111. align-self:flex-start;
  4112. padding:0px 0px 0px 0px;
  4113. box-sizing:border-box;
  4114. width:100%;
  4115. }
  4116. #u169933_text {
  4117. border-width:0px;
  4118. white-space:nowrap;
  4119. text-transform:none;
  4120. }
  4121. #u169934_div {
  4122. border-width:0px;
  4123. position:absolute;
  4124. left:0px;
  4125. top:0px;
  4126. width:63px;
  4127. height:16px;
  4128. background:inherit;
  4129. background-color:rgba(255, 255, 255, 0);
  4130. border:none;
  4131. border-top:0px;
  4132. border-right:0px;
  4133. border-bottom:0px;
  4134. border-radius:0px;
  4135. border-top-left-radius:0px;
  4136. border-bottom-left-radius:0px;
  4137. -moz-box-shadow:none;
  4138. -webkit-box-shadow:none;
  4139. box-shadow:none;
  4140. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4141. font-weight:400;
  4142. font-style:normal;
  4143. font-size:11px;
  4144. color:#AAAAAA;
  4145. }
  4146. #u169934 {
  4147. border-width:0px;
  4148. position:absolute;
  4149. left:107px;
  4150. top:1042px;
  4151. width:63px;
  4152. height:16px;
  4153. display:flex;
  4154. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4155. font-weight:400;
  4156. font-style:normal;
  4157. font-size:11px;
  4158. color:#AAAAAA;
  4159. }
  4160. #u169934 .text {
  4161. position:absolute;
  4162. align-self:flex-start;
  4163. padding:0px 0px 0px 0px;
  4164. box-sizing:border-box;
  4165. width:100%;
  4166. }
  4167. #u169934_text {
  4168. border-width:0px;
  4169. white-space:nowrap;
  4170. text-transform:none;
  4171. }
  4172. #u169935_div {
  4173. border-width:0px;
  4174. position:absolute;
  4175. left:0px;
  4176. top:0px;
  4177. width:43px;
  4178. height:20px;
  4179. background:inherit;
  4180. background-color:rgba(255, 255, 255, 0);
  4181. border:none;
  4182. border-top:0px;
  4183. border-right:0px;
  4184. border-bottom:0px;
  4185. border-radius:0px;
  4186. border-top-left-radius:0px;
  4187. border-bottom-left-radius:0px;
  4188. -moz-box-shadow:none;
  4189. -webkit-box-shadow:none;
  4190. box-shadow:none;
  4191. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4192. font-weight:400;
  4193. font-style:normal;
  4194. font-size:14px;
  4195. }
  4196. #u169935 {
  4197. border-width:0px;
  4198. position:absolute;
  4199. left:107px;
  4200. top:1084px;
  4201. width:43px;
  4202. height:20px;
  4203. display:flex;
  4204. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4205. font-weight:400;
  4206. font-style:normal;
  4207. font-size:14px;
  4208. }
  4209. #u169935 .text {
  4210. position:absolute;
  4211. align-self:flex-start;
  4212. padding:0px 0px 0px 0px;
  4213. box-sizing:border-box;
  4214. width:100%;
  4215. }
  4216. #u169935_text {
  4217. border-width:0px;
  4218. white-space:nowrap;
  4219. text-transform:none;
  4220. }
  4221. #u169936_div {
  4222. border-width:0px;
  4223. position:absolute;
  4224. left:0px;
  4225. top:0px;
  4226. width:80px;
  4227. height:26px;
  4228. background:inherit;
  4229. background-color:rgba(255, 255, 255, 0);
  4230. border:none;
  4231. border-top:0px;
  4232. border-right:0px;
  4233. border-bottom:0px;
  4234. border-radius:0px;
  4235. border-top-left-radius:0px;
  4236. border-bottom-left-radius:0px;
  4237. -moz-box-shadow:none;
  4238. -webkit-box-shadow:none;
  4239. box-shadow:none;
  4240. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4241. font-weight:400;
  4242. font-style:normal;
  4243. font-size:11px;
  4244. color:#AAAAAA;
  4245. }
  4246. #u169936 {
  4247. border-width:0px;
  4248. position:absolute;
  4249. left:107px;
  4250. top:1112px;
  4251. width:80px;
  4252. height:26px;
  4253. display:flex;
  4254. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4255. font-weight:400;
  4256. font-style:normal;
  4257. font-size:11px;
  4258. color:#AAAAAA;
  4259. }
  4260. #u169936 .text {
  4261. position:absolute;
  4262. align-self:flex-start;
  4263. padding:0px 0px 0px 0px;
  4264. box-sizing:border-box;
  4265. width:100%;
  4266. }
  4267. #u169936_text {
  4268. border-width:0px;
  4269. word-wrap:break-word;
  4270. text-transform:none;
  4271. }
  4272. #u169937_div {
  4273. border-width:0px;
  4274. position:absolute;
  4275. left:0px;
  4276. top:0px;
  4277. width:29px;
  4278. height:30px;
  4279. background:inherit;
  4280. background-color:rgba(255, 255, 255, 0);
  4281. border:none;
  4282. border-top:0px;
  4283. border-right:0px;
  4284. border-bottom:0px;
  4285. border-radius:0px;
  4286. border-top-left-radius:0px;
  4287. border-bottom-left-radius:0px;
  4288. -moz-box-shadow:none;
  4289. -webkit-box-shadow:none;
  4290. box-shadow:none;
  4291. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4292. font-weight:400;
  4293. font-style:normal;
  4294. font-size:14px;
  4295. }
  4296. #u169937 {
  4297. border-width:0px;
  4298. position:absolute;
  4299. left:65px;
  4300. top:970px;
  4301. width:29px;
  4302. height:30px;
  4303. display:flex;
  4304. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4305. font-weight:400;
  4306. font-style:normal;
  4307. font-size:14px;
  4308. }
  4309. #u169937 .text {
  4310. position:absolute;
  4311. align-self:flex-start;
  4312. padding:5px 0px 5px 0px;
  4313. box-sizing:border-box;
  4314. width:100%;
  4315. }
  4316. #u169937_text {
  4317. border-width:0px;
  4318. white-space:nowrap;
  4319. text-transform:none;
  4320. }
  4321. #u169938 {
  4322. border-width:0px;
  4323. position:absolute;
  4324. left:0px;
  4325. top:0px;
  4326. width:0px;
  4327. height:0px;
  4328. }
  4329. #u169939_img {
  4330. border-width:0px;
  4331. position:absolute;
  4332. left:0px;
  4333. top:0px;
  4334. width:2px;
  4335. height:32px;
  4336. }
  4337. #u169939 {
  4338. border-width:0px;
  4339. position:absolute;
  4340. left:84px;
  4341. top:1048px;
  4342. width:1px;
  4343. height:31px;
  4344. display:flex;
  4345. }
  4346. #u169939 .text {
  4347. position:absolute;
  4348. align-self:center;
  4349. padding:2px 2px 2px 2px;
  4350. box-sizing:border-box;
  4351. width:100%;
  4352. }
  4353. #u169939_text {
  4354. border-width:0px;
  4355. word-wrap:break-word;
  4356. text-transform:none;
  4357. visibility:hidden;
  4358. }
  4359. #u169940 {
  4360. border-width:0px;
  4361. position:absolute;
  4362. left:0px;
  4363. top:0px;
  4364. width:0px;
  4365. height:0px;
  4366. }
  4367. #u169941_div {
  4368. border-width:0px;
  4369. position:absolute;
  4370. left:0px;
  4371. top:0px;
  4372. width:30px;
  4373. height:30px;
  4374. background:inherit;
  4375. background-color:rgba(24, 144, 255, 1);
  4376. border:none;
  4377. border-radius:4px;
  4378. -moz-box-shadow:none;
  4379. -webkit-box-shadow:none;
  4380. box-shadow:none;
  4381. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4382. font-weight:400;
  4383. font-style:normal;
  4384. font-size:10px;
  4385. color:#FFFFFF;
  4386. }
  4387. #u169941 {
  4388. border-width:0px;
  4389. position:absolute;
  4390. left:69px;
  4391. top:1084px;
  4392. width:30px;
  4393. height:30px;
  4394. display:flex;
  4395. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4396. font-weight:400;
  4397. font-style:normal;
  4398. font-size:10px;
  4399. color:#FFFFFF;
  4400. }
  4401. #u169941 .text {
  4402. position:absolute;
  4403. align-self:center;
  4404. padding:2px 2px 2px 2px;
  4405. box-sizing:border-box;
  4406. width:100%;
  4407. }
  4408. #u169941_text {
  4409. border-width:0px;
  4410. word-wrap:break-word;
  4411. text-transform:none;
  4412. }
  4413. #u169942 {
  4414. border-width:0px;
  4415. position:absolute;
  4416. left:0px;
  4417. top:0px;
  4418. width:0px;
  4419. height:0px;
  4420. }
  4421. #u169943_img {
  4422. border-width:0px;
  4423. position:absolute;
  4424. left:0px;
  4425. top:0px;
  4426. width:9px;
  4427. height:9px;
  4428. }
  4429. #u169943 {
  4430. border-width:0px;
  4431. position:absolute;
  4432. left:91px;
  4433. top:1106px;
  4434. width:9px;
  4435. height:9px;
  4436. display:flex;
  4437. }
  4438. #u169943 .text {
  4439. position:absolute;
  4440. align-self:center;
  4441. padding:2px 2px 2px 2px;
  4442. box-sizing:border-box;
  4443. width:100%;
  4444. }
  4445. #u169943_text {
  4446. border-width:0px;
  4447. word-wrap:break-word;
  4448. text-transform:none;
  4449. visibility:hidden;
  4450. }
  4451. #u169944_img {
  4452. border-width:0px;
  4453. position:absolute;
  4454. left:0px;
  4455. top:0px;
  4456. width:5px;
  4457. height:1px;
  4458. }
  4459. #u169944 {
  4460. border-width:0px;
  4461. position:absolute;
  4462. left:93px;
  4463. top:1110px;
  4464. width:5px;
  4465. height:1px;
  4466. display:flex;
  4467. }
  4468. #u169944 .text {
  4469. position:absolute;
  4470. align-self:center;
  4471. padding:2px 2px 2px 2px;
  4472. box-sizing:border-box;
  4473. width:100%;
  4474. }
  4475. #u169944_text {
  4476. border-width:0px;
  4477. word-wrap:break-word;
  4478. text-transform:none;
  4479. visibility:hidden;
  4480. }
  4481. #u169945 {
  4482. border-width:0px;
  4483. position:absolute;
  4484. left:0px;
  4485. top:0px;
  4486. width:0px;
  4487. height:0px;
  4488. }
  4489. #u169946_div {
  4490. border-width:0px;
  4491. position:absolute;
  4492. left:0px;
  4493. top:0px;
  4494. width:30px;
  4495. height:30px;
  4496. background:inherit;
  4497. background-color:rgba(24, 144, 255, 1);
  4498. border:none;
  4499. border-radius:4px;
  4500. -moz-box-shadow:none;
  4501. -webkit-box-shadow:none;
  4502. box-shadow:none;
  4503. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4504. font-weight:400;
  4505. font-style:normal;
  4506. font-size:12px;
  4507. color:#FFFFFF;
  4508. }
  4509. #u169946 {
  4510. border-width:0px;
  4511. position:absolute;
  4512. left:69px;
  4513. top:1014px;
  4514. width:30px;
  4515. height:30px;
  4516. display:flex;
  4517. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4518. font-weight:400;
  4519. font-style:normal;
  4520. font-size:12px;
  4521. color:#FFFFFF;
  4522. }
  4523. #u169946 .text {
  4524. position:absolute;
  4525. align-self:center;
  4526. padding:2px 2px 2px 2px;
  4527. box-sizing:border-box;
  4528. width:100%;
  4529. }
  4530. #u169946_text {
  4531. border-width:0px;
  4532. word-wrap:break-word;
  4533. text-transform:none;
  4534. }
  4535. #u169947 {
  4536. border-width:0px;
  4537. position:absolute;
  4538. left:0px;
  4539. top:0px;
  4540. width:0px;
  4541. height:0px;
  4542. }
  4543. #u169948_img {
  4544. border-width:0px;
  4545. position:absolute;
  4546. left:0px;
  4547. top:0px;
  4548. width:9px;
  4549. height:9px;
  4550. }
  4551. #u169948 {
  4552. border-width:0px;
  4553. position:absolute;
  4554. left:91px;
  4555. top:1036px;
  4556. width:9px;
  4557. height:9px;
  4558. display:flex;
  4559. }
  4560. #u169948 .text {
  4561. position:absolute;
  4562. align-self:center;
  4563. padding:2px 2px 2px 2px;
  4564. box-sizing:border-box;
  4565. width:100%;
  4566. }
  4567. #u169948_text {
  4568. border-width:0px;
  4569. word-wrap:break-word;
  4570. text-transform:none;
  4571. visibility:hidden;
  4572. }
  4573. #u169949_img {
  4574. border-width:0px;
  4575. position:absolute;
  4576. left:0px;
  4577. top:0px;
  4578. width:5px;
  4579. height:4px;
  4580. }
  4581. #u169949 {
  4582. border-width:0px;
  4583. position:absolute;
  4584. left:93px;
  4585. top:1039px;
  4586. width:5px;
  4587. height:4px;
  4588. display:flex;
  4589. }
  4590. #u169949 .text {
  4591. position:absolute;
  4592. align-self:center;
  4593. padding:2px 2px 2px 2px;
  4594. box-sizing:border-box;
  4595. width:100%;
  4596. }
  4597. #u169949_text {
  4598. border-width:0px;
  4599. word-wrap:break-word;
  4600. text-transform:none;
  4601. visibility:hidden;
  4602. }
  4603. #u169950_div {
  4604. border-width:0px;
  4605. position:absolute;
  4606. left:0px;
  4607. top:0px;
  4608. width:325px;
  4609. height:50px;
  4610. background:inherit;
  4611. background-color:rgba(255, 255, 255, 0);
  4612. border:none;
  4613. border-left:0px;
  4614. border-top:0px;
  4615. border-right:0px;
  4616. border-radius:0px;
  4617. border-bottom-right-radius:0px;
  4618. border-bottom-left-radius:0px;
  4619. -moz-box-shadow:none;
  4620. -webkit-box-shadow:none;
  4621. box-shadow:none;
  4622. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4623. font-weight:400;
  4624. font-style:normal;
  4625. font-size:12px;
  4626. line-height:25px;
  4627. }
  4628. #u169950 {
  4629. border-width:0px;
  4630. position:absolute;
  4631. left:56px;
  4632. top:147px;
  4633. width:325px;
  4634. height:50px;
  4635. display:flex;
  4636. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4637. font-weight:400;
  4638. font-style:normal;
  4639. font-size:12px;
  4640. line-height:25px;
  4641. }
  4642. #u169950 .text {
  4643. position:absolute;
  4644. align-self:flex-start;
  4645. padding:0px 0px 0px 0px;
  4646. box-sizing:border-box;
  4647. width:100%;
  4648. }
  4649. #u169950_text {
  4650. border-width:0px;
  4651. word-wrap:break-word;
  4652. text-transform:none;
  4653. }
  4654. #u169951_div {
  4655. border-width:0px;
  4656. position:absolute;
  4657. left:0px;
  4658. top:0px;
  4659. width:97px;
  4660. height:25px;
  4661. background:inherit;
  4662. background-color:rgba(255, 255, 255, 0);
  4663. border:none;
  4664. border-radius:0px;
  4665. -moz-box-shadow:none;
  4666. -webkit-box-shadow:none;
  4667. box-shadow:none;
  4668. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4669. font-weight:400;
  4670. font-style:normal;
  4671. font-size:12px;
  4672. color:#B8741A;
  4673. line-height:25px;
  4674. }
  4675. #u169951 {
  4676. border-width:0px;
  4677. position:absolute;
  4678. left:284px;
  4679. top:172px;
  4680. width:97px;
  4681. height:25px;
  4682. display:flex;
  4683. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4684. font-weight:400;
  4685. font-style:normal;
  4686. font-size:12px;
  4687. color:#B8741A;
  4688. line-height:25px;
  4689. }
  4690. #u169951 .text {
  4691. position:absolute;
  4692. align-self:flex-start;
  4693. padding:0px 0px 0px 0px;
  4694. box-sizing:border-box;
  4695. width:100%;
  4696. }
  4697. #u169951_text {
  4698. border-width:0px;
  4699. white-space:nowrap;
  4700. text-transform:none;
  4701. }
  4702. #u169953_img {
  4703. border-width:0px;
  4704. position:absolute;
  4705. left:0px;
  4706. top:0px;
  4707. width:433px;
  4708. height:865px;
  4709. }
  4710. #u169953 {
  4711. border-width:0px;
  4712. position:absolute;
  4713. left:906px;
  4714. top:0px;
  4715. width:433px;
  4716. height:865px;
  4717. display:flex;
  4718. }
  4719. #u169953 .text {
  4720. position:absolute;
  4721. align-self:center;
  4722. padding:2px 2px 2px 2px;
  4723. box-sizing:border-box;
  4724. width:100%;
  4725. }
  4726. #u169953_text {
  4727. border-width:0px;
  4728. word-wrap:break-word;
  4729. text-transform:none;
  4730. visibility:hidden;
  4731. }
  4732. #u169954_div {
  4733. border-width:0px;
  4734. position:absolute;
  4735. left:0px;
  4736. top:0px;
  4737. width:375px;
  4738. height:40px;
  4739. background:inherit;
  4740. background-color:rgba(255, 255, 255, 1);
  4741. box-sizing:border-box;
  4742. border-width:1px;
  4743. border-style:solid;
  4744. border-color:rgba(215, 215, 215, 1);
  4745. border-left:0px;
  4746. border-top:0px;
  4747. border-right:0px;
  4748. border-radius:0px;
  4749. border-bottom-right-radius:0px;
  4750. border-bottom-left-radius:0px;
  4751. -moz-box-shadow:none;
  4752. -webkit-box-shadow:none;
  4753. box-shadow:none;
  4754. }
  4755. #u169954 {
  4756. border-width:0px;
  4757. position:absolute;
  4758. left:935px;
  4759. top:67px;
  4760. width:375px;
  4761. height:40px;
  4762. display:flex;
  4763. }
  4764. #u169954 .text {
  4765. position:absolute;
  4766. align-self:center;
  4767. padding:2px 2px 2px 2px;
  4768. box-sizing:border-box;
  4769. width:100%;
  4770. }
  4771. #u169954_text {
  4772. border-width:0px;
  4773. word-wrap:break-word;
  4774. text-transform:none;
  4775. visibility:hidden;
  4776. }
  4777. #u169955 {
  4778. border-width:0px;
  4779. position:absolute;
  4780. left:0px;
  4781. top:0px;
  4782. width:0px;
  4783. height:0px;
  4784. }
  4785. #u169956_div {
  4786. border-width:0px;
  4787. position:absolute;
  4788. left:0px;
  4789. top:0px;
  4790. width:88px;
  4791. height:32px;
  4792. background:inherit;
  4793. background-color:rgba(255, 255, 255, 1);
  4794. box-sizing:border-box;
  4795. border-width:1px;
  4796. border-style:solid;
  4797. border-color:rgba(242, 242, 242, 1);
  4798. border-radius:33px;
  4799. -moz-box-shadow:none;
  4800. -webkit-box-shadow:none;
  4801. box-shadow:none;
  4802. }
  4803. #u169956 {
  4804. border-width:0px;
  4805. position:absolute;
  4806. left:1215px;
  4807. top:71px;
  4808. width:88px;
  4809. height:32px;
  4810. display:flex;
  4811. }
  4812. #u169956 .text {
  4813. position:absolute;
  4814. align-self:center;
  4815. padding:2px 2px 2px 2px;
  4816. box-sizing:border-box;
  4817. width:100%;
  4818. }
  4819. #u169956_text {
  4820. border-width:0px;
  4821. word-wrap:break-word;
  4822. text-transform:none;
  4823. visibility:hidden;
  4824. }
  4825. #u169957 {
  4826. border-width:0px;
  4827. position:absolute;
  4828. left:0px;
  4829. top:0px;
  4830. width:0px;
  4831. height:0px;
  4832. }
  4833. #u169958_img {
  4834. border-width:0px;
  4835. position:absolute;
  4836. left:0px;
  4837. top:0px;
  4838. width:18px;
  4839. height:18px;
  4840. }
  4841. #u169958 {
  4842. border-width:0px;
  4843. position:absolute;
  4844. left:1278px;
  4845. top:78px;
  4846. width:18px;
  4847. height:18px;
  4848. display:flex;
  4849. }
  4850. #u169958 .text {
  4851. position:absolute;
  4852. align-self:center;
  4853. padding:2px 2px 2px 2px;
  4854. box-sizing:border-box;
  4855. width:100%;
  4856. }
  4857. #u169958_text {
  4858. border-width:0px;
  4859. word-wrap:break-word;
  4860. text-transform:none;
  4861. visibility:hidden;
  4862. }
  4863. #u169959_img {
  4864. border-width:0px;
  4865. position:absolute;
  4866. left:0px;
  4867. top:0px;
  4868. width:6px;
  4869. height:6px;
  4870. }
  4871. #u169959 {
  4872. border-width:0px;
  4873. position:absolute;
  4874. left:1284px;
  4875. top:84px;
  4876. width:6px;
  4877. height:6px;
  4878. display:flex;
  4879. }
  4880. #u169959 .text {
  4881. position:absolute;
  4882. align-self:center;
  4883. padding:2px 2px 2px 2px;
  4884. box-sizing:border-box;
  4885. width:100%;
  4886. }
  4887. #u169959_text {
  4888. border-width:0px;
  4889. word-wrap:break-word;
  4890. text-transform:none;
  4891. visibility:hidden;
  4892. }
  4893. #u169960 {
  4894. border-width:0px;
  4895. position:absolute;
  4896. left:0px;
  4897. top:0px;
  4898. width:0px;
  4899. height:0px;
  4900. }
  4901. #u169961_img {
  4902. border-width:0px;
  4903. position:absolute;
  4904. left:0px;
  4905. top:0px;
  4906. width:5px;
  4907. height:5px;
  4908. }
  4909. #u169961 {
  4910. border-width:0px;
  4911. position:absolute;
  4912. left:1229px;
  4913. top:85px;
  4914. width:5px;
  4915. height:5px;
  4916. display:flex;
  4917. }
  4918. #u169961 .text {
  4919. position:absolute;
  4920. align-self:center;
  4921. padding:2px 2px 2px 2px;
  4922. box-sizing:border-box;
  4923. width:100%;
  4924. }
  4925. #u169961_text {
  4926. border-width:0px;
  4927. word-wrap:break-word;
  4928. text-transform:none;
  4929. visibility:hidden;
  4930. }
  4931. #u169962_img {
  4932. border-width:0px;
  4933. position:absolute;
  4934. left:0px;
  4935. top:0px;
  4936. width:5px;
  4937. height:5px;
  4938. }
  4939. #u169962 {
  4940. border-width:0px;
  4941. position:absolute;
  4942. left:1245px;
  4943. top:85px;
  4944. width:5px;
  4945. height:5px;
  4946. display:flex;
  4947. }
  4948. #u169962 .text {
  4949. position:absolute;
  4950. align-self:center;
  4951. padding:2px 2px 2px 2px;
  4952. box-sizing:border-box;
  4953. width:100%;
  4954. }
  4955. #u169962_text {
  4956. border-width:0px;
  4957. word-wrap:break-word;
  4958. text-transform:none;
  4959. visibility:hidden;
  4960. }
  4961. #u169963_img {
  4962. border-width:0px;
  4963. position:absolute;
  4964. left:0px;
  4965. top:0px;
  4966. width:7px;
  4967. height:7px;
  4968. }
  4969. #u169963 {
  4970. border-width:0px;
  4971. position:absolute;
  4972. left:1236px;
  4973. top:84px;
  4974. width:7px;
  4975. height:7px;
  4976. display:flex;
  4977. }
  4978. #u169963 .text {
  4979. position:absolute;
  4980. align-self:center;
  4981. padding:2px 2px 2px 2px;
  4982. box-sizing:border-box;
  4983. width:100%;
  4984. }
  4985. #u169963_text {
  4986. border-width:0px;
  4987. word-wrap:break-word;
  4988. text-transform:none;
  4989. visibility:hidden;
  4990. }
  4991. #u169964_img {
  4992. border-width:0px;
  4993. position:absolute;
  4994. left:0px;
  4995. top:0px;
  4996. width:19px;
  4997. height:2px;
  4998. }
  4999. #u169964 {
  5000. border-width:0px;
  5001. position:absolute;
  5002. left:1253px;
  5003. top:87px;
  5004. width:18px;
  5005. height:1px;
  5006. display:flex;
  5007. -webkit-transform:rotate(90deg);
  5008. -moz-transform:rotate(90deg);
  5009. -ms-transform:rotate(90deg);
  5010. transform:rotate(90deg);
  5011. }
  5012. #u169964 .text {
  5013. position:absolute;
  5014. align-self:center;
  5015. padding:2px 2px 2px 2px;
  5016. box-sizing:border-box;
  5017. width:100%;
  5018. }
  5019. #u169964_text {
  5020. border-width:0px;
  5021. word-wrap:break-word;
  5022. text-transform:none;
  5023. visibility:hidden;
  5024. }
  5025. #u169965_img {
  5026. border-width:0px;
  5027. position:absolute;
  5028. left:0px;
  5029. top:0px;
  5030. width:375px;
  5031. height:44px;
  5032. }
  5033. #u169965 {
  5034. border-width:0px;
  5035. position:absolute;
  5036. left:935px;
  5037. top:24px;
  5038. width:375px;
  5039. height:44px;
  5040. display:flex;
  5041. }
  5042. #u169965 .text {
  5043. position:absolute;
  5044. align-self:center;
  5045. padding:2px 2px 2px 2px;
  5046. box-sizing:border-box;
  5047. width:100%;
  5048. }
  5049. #u169965_text {
  5050. border-width:0px;
  5051. word-wrap:break-word;
  5052. text-transform:none;
  5053. visibility:hidden;
  5054. }
  5055. #u169966_div {
  5056. border-width:0px;
  5057. position:absolute;
  5058. left:0px;
  5059. top:0px;
  5060. width:375px;
  5061. height:50px;
  5062. background:inherit;
  5063. background-color:rgba(255, 255, 255, 1);
  5064. box-sizing:border-box;
  5065. border-width:1px;
  5066. border-style:solid;
  5067. border-color:rgba(242, 242, 242, 1);
  5068. border-radius:26px;
  5069. border-top-left-radius:0px;
  5070. border-top-right-radius:0px;
  5071. -moz-box-shadow:none;
  5072. -webkit-box-shadow:none;
  5073. box-shadow:none;
  5074. }
  5075. #u169966 {
  5076. border-width:0px;
  5077. position:absolute;
  5078. left:935px;
  5079. top:788px;
  5080. width:375px;
  5081. height:50px;
  5082. display:flex;
  5083. }
  5084. #u169966 .text {
  5085. position:absolute;
  5086. align-self:center;
  5087. padding:2px 2px 2px 2px;
  5088. box-sizing:border-box;
  5089. width:100%;
  5090. }
  5091. #u169966_text {
  5092. border-width:0px;
  5093. word-wrap:break-word;
  5094. text-transform:none;
  5095. visibility:hidden;
  5096. }
  5097. #u169967 {
  5098. border-width:0px;
  5099. position:absolute;
  5100. left:0px;
  5101. top:0px;
  5102. width:0px;
  5103. height:0px;
  5104. }
  5105. #u169968_img {
  5106. border-width:0px;
  5107. position:absolute;
  5108. left:0px;
  5109. top:0px;
  5110. width:24px;
  5111. height:24px;
  5112. }
  5113. #u169968 {
  5114. border-width:0px;
  5115. position:absolute;
  5116. left:975px;
  5117. top:792px;
  5118. width:24px;
  5119. height:24px;
  5120. display:flex;
  5121. font-size:8px;
  5122. }
  5123. #u169968 .text {
  5124. position:absolute;
  5125. align-self:center;
  5126. padding:2px 2px 2px 2px;
  5127. box-sizing:border-box;
  5128. width:100%;
  5129. }
  5130. #u169968_text {
  5131. border-width:0px;
  5132. word-wrap:break-word;
  5133. text-transform:none;
  5134. }
  5135. #u169969_div {
  5136. border-width:0px;
  5137. position:absolute;
  5138. left:0px;
  5139. top:0px;
  5140. width:25px;
  5141. height:17px;
  5142. background:inherit;
  5143. background-color:rgba(255, 255, 255, 0);
  5144. border:none;
  5145. border-radius:0px;
  5146. -moz-box-shadow:none;
  5147. -webkit-box-shadow:none;
  5148. box-shadow:none;
  5149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5150. font-weight:400;
  5151. font-style:normal;
  5152. font-size:12px;
  5153. }
  5154. #u169969 {
  5155. border-width:0px;
  5156. position:absolute;
  5157. left:975px;
  5158. top:817px;
  5159. width:25px;
  5160. height:17px;
  5161. display:flex;
  5162. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5163. font-weight:400;
  5164. font-style:normal;
  5165. font-size:12px;
  5166. }
  5167. #u169969 .text {
  5168. position:absolute;
  5169. align-self:flex-start;
  5170. padding:0px 0px 0px 0px;
  5171. box-sizing:border-box;
  5172. width:100%;
  5173. }
  5174. #u169969_text {
  5175. border-width:0px;
  5176. white-space:nowrap;
  5177. text-transform:none;
  5178. }
  5179. #u169970 {
  5180. border-width:0px;
  5181. position:absolute;
  5182. left:0px;
  5183. top:0px;
  5184. width:0px;
  5185. height:0px;
  5186. }
  5187. #u169971_img {
  5188. border-width:0px;
  5189. position:absolute;
  5190. left:0px;
  5191. top:0px;
  5192. width:24px;
  5193. height:24px;
  5194. }
  5195. #u169971 {
  5196. border-width:0px;
  5197. position:absolute;
  5198. left:1245px;
  5199. top:794px;
  5200. width:24px;
  5201. height:24px;
  5202. display:flex;
  5203. font-size:8px;
  5204. }
  5205. #u169971 .text {
  5206. position:absolute;
  5207. align-self:center;
  5208. padding:2px 2px 2px 2px;
  5209. box-sizing:border-box;
  5210. width:100%;
  5211. }
  5212. #u169971_text {
  5213. border-width:0px;
  5214. word-wrap:break-word;
  5215. text-transform:none;
  5216. }
  5217. #u169972_div {
  5218. border-width:0px;
  5219. position:absolute;
  5220. left:0px;
  5221. top:0px;
  5222. width:25px;
  5223. height:17px;
  5224. background:inherit;
  5225. background-color:rgba(255, 255, 255, 0);
  5226. border:none;
  5227. border-radius:0px;
  5228. -moz-box-shadow:none;
  5229. -webkit-box-shadow:none;
  5230. box-shadow:none;
  5231. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5232. font-weight:400;
  5233. font-style:normal;
  5234. font-size:12px;
  5235. }
  5236. #u169972 {
  5237. border-width:0px;
  5238. position:absolute;
  5239. left:1245px;
  5240. top:819px;
  5241. width:25px;
  5242. height:17px;
  5243. display:flex;
  5244. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5245. font-weight:400;
  5246. font-style:normal;
  5247. font-size:12px;
  5248. }
  5249. #u169972 .text {
  5250. position:absolute;
  5251. align-self:flex-start;
  5252. padding:0px 0px 0px 0px;
  5253. box-sizing:border-box;
  5254. width:100%;
  5255. }
  5256. #u169972_text {
  5257. border-width:0px;
  5258. white-space:nowrap;
  5259. text-transform:none;
  5260. }
  5261. #u169973_div {
  5262. border-width:0px;
  5263. position:absolute;
  5264. left:0px;
  5265. top:0px;
  5266. width:375px;
  5267. height:681px;
  5268. background:inherit;
  5269. background-color:rgba(242, 242, 242, 0.462745098039216);
  5270. border:none;
  5271. border-radius:0px;
  5272. -moz-box-shadow:none;
  5273. -webkit-box-shadow:none;
  5274. box-shadow:none;
  5275. }
  5276. #u169973 {
  5277. border-width:0px;
  5278. position:absolute;
  5279. left:935px;
  5280. top:107px;
  5281. width:375px;
  5282. height:681px;
  5283. display:flex;
  5284. }
  5285. #u169973 .text {
  5286. position:absolute;
  5287. align-self:center;
  5288. padding:2px 2px 2px 2px;
  5289. box-sizing:border-box;
  5290. width:100%;
  5291. }
  5292. #u169973_text {
  5293. border-width:0px;
  5294. word-wrap:break-word;
  5295. text-transform:none;
  5296. visibility:hidden;
  5297. }
  5298. #u169974 {
  5299. border-width:0px;
  5300. position:absolute;
  5301. left:0px;
  5302. top:0px;
  5303. width:0px;
  5304. height:0px;
  5305. }
  5306. #u169975_img {
  5307. border-width:0px;
  5308. position:absolute;
  5309. left:0px;
  5310. top:0px;
  5311. width:24px;
  5312. height:24px;
  5313. }
  5314. #u169975 {
  5315. border-width:0px;
  5316. position:absolute;
  5317. left:1157px;
  5318. top:792px;
  5319. width:24px;
  5320. height:24px;
  5321. display:flex;
  5322. font-size:8px;
  5323. }
  5324. #u169975 .text {
  5325. position:absolute;
  5326. align-self:center;
  5327. padding:2px 2px 2px 2px;
  5328. box-sizing:border-box;
  5329. width:100%;
  5330. }
  5331. #u169975_text {
  5332. border-width:0px;
  5333. word-wrap:break-word;
  5334. text-transform:none;
  5335. }
  5336. #u169976_div {
  5337. border-width:0px;
  5338. position:absolute;
  5339. left:0px;
  5340. top:0px;
  5341. width:37px;
  5342. height:17px;
  5343. background:inherit;
  5344. background-color:rgba(255, 255, 255, 0);
  5345. border:none;
  5346. border-radius:0px;
  5347. -moz-box-shadow:none;
  5348. -webkit-box-shadow:none;
  5349. box-shadow:none;
  5350. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5351. font-weight:400;
  5352. font-style:normal;
  5353. font-size:12px;
  5354. }
  5355. #u169976 {
  5356. border-width:0px;
  5357. position:absolute;
  5358. left:1151px;
  5359. top:817px;
  5360. width:37px;
  5361. height:17px;
  5362. display:flex;
  5363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5364. font-weight:400;
  5365. font-style:normal;
  5366. font-size:12px;
  5367. }
  5368. #u169976 .text {
  5369. position:absolute;
  5370. align-self:flex-start;
  5371. padding:0px 0px 0px 0px;
  5372. box-sizing:border-box;
  5373. width:100%;
  5374. }
  5375. #u169976_text {
  5376. border-width:0px;
  5377. white-space:nowrap;
  5378. text-transform:none;
  5379. }
  5380. #u169977 {
  5381. border-width:0px;
  5382. position:absolute;
  5383. left:0px;
  5384. top:0px;
  5385. width:0px;
  5386. height:0px;
  5387. }
  5388. #u169978_img {
  5389. border-width:0px;
  5390. position:absolute;
  5391. left:0px;
  5392. top:0px;
  5393. width:24px;
  5394. height:24px;
  5395. }
  5396. #u169978 {
  5397. border-width:0px;
  5398. position:absolute;
  5399. left:1063px;
  5400. top:792px;
  5401. width:24px;
  5402. height:24px;
  5403. display:flex;
  5404. font-size:8px;
  5405. }
  5406. #u169978 .text {
  5407. position:absolute;
  5408. align-self:center;
  5409. padding:2px 2px 2px 2px;
  5410. box-sizing:border-box;
  5411. width:100%;
  5412. }
  5413. #u169978_text {
  5414. border-width:0px;
  5415. word-wrap:break-word;
  5416. text-transform:none;
  5417. }
  5418. #u169979_div {
  5419. border-width:0px;
  5420. position:absolute;
  5421. left:0px;
  5422. top:0px;
  5423. width:37px;
  5424. height:17px;
  5425. background:inherit;
  5426. background-color:rgba(255, 255, 255, 0);
  5427. border:none;
  5428. border-radius:0px;
  5429. -moz-box-shadow:none;
  5430. -webkit-box-shadow:none;
  5431. box-shadow:none;
  5432. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5433. font-weight:400;
  5434. font-style:normal;
  5435. font-size:12px;
  5436. }
  5437. #u169979 {
  5438. border-width:0px;
  5439. position:absolute;
  5440. left:1057px;
  5441. top:817px;
  5442. width:37px;
  5443. height:17px;
  5444. display:flex;
  5445. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5446. font-weight:400;
  5447. font-style:normal;
  5448. font-size:12px;
  5449. }
  5450. #u169979 .text {
  5451. position:absolute;
  5452. align-self:flex-start;
  5453. padding:0px 0px 0px 0px;
  5454. box-sizing:border-box;
  5455. width:100%;
  5456. }
  5457. #u169979_text {
  5458. border-width:0px;
  5459. white-space:nowrap;
  5460. text-transform:none;
  5461. }
  5462. #u169980_div {
  5463. border-width:0px;
  5464. position:absolute;
  5465. left:0px;
  5466. top:0px;
  5467. width:375px;
  5468. height:732px;
  5469. background:inherit;
  5470. background-color:rgba(242, 242, 242, 0.996078431372549);
  5471. border:none;
  5472. border-top:0px;
  5473. border-radius:28px;
  5474. border-top-left-radius:0px;
  5475. border-top-right-radius:0px;
  5476. -moz-box-shadow:none;
  5477. -webkit-box-shadow:none;
  5478. box-shadow:none;
  5479. }
  5480. #u169980 {
  5481. border-width:0px;
  5482. position:absolute;
  5483. left:935px;
  5484. top:107px;
  5485. width:375px;
  5486. height:732px;
  5487. display:flex;
  5488. }
  5489. #u169980 .text {
  5490. position:absolute;
  5491. align-self:center;
  5492. padding:2px 2px 2px 2px;
  5493. box-sizing:border-box;
  5494. width:100%;
  5495. }
  5496. #u169980_text {
  5497. border-width:0px;
  5498. word-wrap:break-word;
  5499. text-transform:none;
  5500. visibility:hidden;
  5501. }
  5502. #u169981_div {
  5503. border-width:0px;
  5504. position:absolute;
  5505. left:0px;
  5506. top:0px;
  5507. width:375px;
  5508. height:100px;
  5509. background:inherit;
  5510. background-color:rgba(255, 255, 255, 1);
  5511. border:none;
  5512. border-left:0px;
  5513. border-top:0px;
  5514. border-right:0px;
  5515. border-radius:0px;
  5516. border-bottom-right-radius:0px;
  5517. border-bottom-left-radius:0px;
  5518. -moz-box-shadow:none;
  5519. -webkit-box-shadow:none;
  5520. box-shadow:none;
  5521. }
  5522. #u169981 {
  5523. border-width:0px;
  5524. position:absolute;
  5525. left:935px;
  5526. top:107px;
  5527. width:375px;
  5528. height:100px;
  5529. display:flex;
  5530. }
  5531. #u169981 .text {
  5532. position:absolute;
  5533. align-self:center;
  5534. padding:2px 2px 2px 2px;
  5535. box-sizing:border-box;
  5536. width:100%;
  5537. }
  5538. #u169981_text {
  5539. border-width:0px;
  5540. word-wrap:break-word;
  5541. text-transform:none;
  5542. visibility:hidden;
  5543. }
  5544. #u169982_div {
  5545. border-width:0px;
  5546. position:absolute;
  5547. left:0px;
  5548. top:0px;
  5549. width:375px;
  5550. height:40px;
  5551. background:inherit;
  5552. background-color:rgba(255, 255, 255, 1);
  5553. box-sizing:border-box;
  5554. border-width:1px;
  5555. border-style:solid;
  5556. border-color:rgba(215, 215, 215, 1);
  5557. border-left:0px;
  5558. border-top:0px;
  5559. border-right:0px;
  5560. border-radius:0px;
  5561. border-bottom-right-radius:0px;
  5562. border-bottom-left-radius:0px;
  5563. -moz-box-shadow:none;
  5564. -webkit-box-shadow:none;
  5565. box-shadow:none;
  5566. }
  5567. #u169982 {
  5568. border-width:0px;
  5569. position:absolute;
  5570. left:935px;
  5571. top:67px;
  5572. width:375px;
  5573. height:40px;
  5574. display:flex;
  5575. }
  5576. #u169982 .text {
  5577. position:absolute;
  5578. align-self:center;
  5579. padding:2px 2px 2px 2px;
  5580. box-sizing:border-box;
  5581. width:100%;
  5582. }
  5583. #u169982_text {
  5584. border-width:0px;
  5585. word-wrap:break-word;
  5586. text-transform:none;
  5587. visibility:hidden;
  5588. }
  5589. #u169983_img {
  5590. border-width:0px;
  5591. position:absolute;
  5592. left:0px;
  5593. top:0px;
  5594. width:375px;
  5595. height:44px;
  5596. }
  5597. #u169983 {
  5598. border-width:0px;
  5599. position:absolute;
  5600. left:935px;
  5601. top:24px;
  5602. width:375px;
  5603. height:44px;
  5604. display:flex;
  5605. }
  5606. #u169983 .text {
  5607. position:absolute;
  5608. align-self:center;
  5609. padding:2px 2px 2px 2px;
  5610. box-sizing:border-box;
  5611. width:100%;
  5612. }
  5613. #u169983_text {
  5614. border-width:0px;
  5615. word-wrap:break-word;
  5616. text-transform:none;
  5617. visibility:hidden;
  5618. }
  5619. #u169984 {
  5620. border-width:0px;
  5621. position:absolute;
  5622. left:0px;
  5623. top:0px;
  5624. width:0px;
  5625. height:0px;
  5626. }
  5627. #u169985_div {
  5628. border-width:0px;
  5629. position:absolute;
  5630. left:0px;
  5631. top:0px;
  5632. width:88px;
  5633. height:32px;
  5634. background:inherit;
  5635. background-color:rgba(255, 255, 255, 1);
  5636. box-sizing:border-box;
  5637. border-width:1px;
  5638. border-style:solid;
  5639. border-color:rgba(242, 242, 242, 1);
  5640. border-radius:33px;
  5641. -moz-box-shadow:none;
  5642. -webkit-box-shadow:none;
  5643. box-shadow:none;
  5644. }
  5645. #u169985 {
  5646. border-width:0px;
  5647. position:absolute;
  5648. left:1215px;
  5649. top:71px;
  5650. width:88px;
  5651. height:32px;
  5652. display:flex;
  5653. }
  5654. #u169985 .text {
  5655. position:absolute;
  5656. align-self:center;
  5657. padding:2px 2px 2px 2px;
  5658. box-sizing:border-box;
  5659. width:100%;
  5660. }
  5661. #u169985_text {
  5662. border-width:0px;
  5663. word-wrap:break-word;
  5664. text-transform:none;
  5665. visibility:hidden;
  5666. }
  5667. #u169986 {
  5668. border-width:0px;
  5669. position:absolute;
  5670. left:0px;
  5671. top:0px;
  5672. width:0px;
  5673. height:0px;
  5674. }
  5675. #u169987_img {
  5676. border-width:0px;
  5677. position:absolute;
  5678. left:0px;
  5679. top:0px;
  5680. width:18px;
  5681. height:18px;
  5682. }
  5683. #u169987 {
  5684. border-width:0px;
  5685. position:absolute;
  5686. left:1278px;
  5687. top:78px;
  5688. width:18px;
  5689. height:18px;
  5690. display:flex;
  5691. }
  5692. #u169987 .text {
  5693. position:absolute;
  5694. align-self:center;
  5695. padding:2px 2px 2px 2px;
  5696. box-sizing:border-box;
  5697. width:100%;
  5698. }
  5699. #u169987_text {
  5700. border-width:0px;
  5701. word-wrap:break-word;
  5702. text-transform:none;
  5703. visibility:hidden;
  5704. }
  5705. #u169988_img {
  5706. border-width:0px;
  5707. position:absolute;
  5708. left:0px;
  5709. top:0px;
  5710. width:6px;
  5711. height:6px;
  5712. }
  5713. #u169988 {
  5714. border-width:0px;
  5715. position:absolute;
  5716. left:1284px;
  5717. top:84px;
  5718. width:6px;
  5719. height:6px;
  5720. display:flex;
  5721. }
  5722. #u169988 .text {
  5723. position:absolute;
  5724. align-self:center;
  5725. padding:2px 2px 2px 2px;
  5726. box-sizing:border-box;
  5727. width:100%;
  5728. }
  5729. #u169988_text {
  5730. border-width:0px;
  5731. word-wrap:break-word;
  5732. text-transform:none;
  5733. visibility:hidden;
  5734. }
  5735. #u169989 {
  5736. border-width:0px;
  5737. position:absolute;
  5738. left:0px;
  5739. top:0px;
  5740. width:0px;
  5741. height:0px;
  5742. }
  5743. #u169990_img {
  5744. border-width:0px;
  5745. position:absolute;
  5746. left:0px;
  5747. top:0px;
  5748. width:5px;
  5749. height:5px;
  5750. }
  5751. #u169990 {
  5752. border-width:0px;
  5753. position:absolute;
  5754. left:1229px;
  5755. top:85px;
  5756. width:5px;
  5757. height:5px;
  5758. display:flex;
  5759. }
  5760. #u169990 .text {
  5761. position:absolute;
  5762. align-self:center;
  5763. padding:2px 2px 2px 2px;
  5764. box-sizing:border-box;
  5765. width:100%;
  5766. }
  5767. #u169990_text {
  5768. border-width:0px;
  5769. word-wrap:break-word;
  5770. text-transform:none;
  5771. visibility:hidden;
  5772. }
  5773. #u169991_img {
  5774. border-width:0px;
  5775. position:absolute;
  5776. left:0px;
  5777. top:0px;
  5778. width:5px;
  5779. height:5px;
  5780. }
  5781. #u169991 {
  5782. border-width:0px;
  5783. position:absolute;
  5784. left:1245px;
  5785. top:85px;
  5786. width:5px;
  5787. height:5px;
  5788. display:flex;
  5789. }
  5790. #u169991 .text {
  5791. position:absolute;
  5792. align-self:center;
  5793. padding:2px 2px 2px 2px;
  5794. box-sizing:border-box;
  5795. width:100%;
  5796. }
  5797. #u169991_text {
  5798. border-width:0px;
  5799. word-wrap:break-word;
  5800. text-transform:none;
  5801. visibility:hidden;
  5802. }
  5803. #u169992_img {
  5804. border-width:0px;
  5805. position:absolute;
  5806. left:0px;
  5807. top:0px;
  5808. width:7px;
  5809. height:7px;
  5810. }
  5811. #u169992 {
  5812. border-width:0px;
  5813. position:absolute;
  5814. left:1236px;
  5815. top:84px;
  5816. width:7px;
  5817. height:7px;
  5818. display:flex;
  5819. }
  5820. #u169992 .text {
  5821. position:absolute;
  5822. align-self:center;
  5823. padding:2px 2px 2px 2px;
  5824. box-sizing:border-box;
  5825. width:100%;
  5826. }
  5827. #u169992_text {
  5828. border-width:0px;
  5829. word-wrap:break-word;
  5830. text-transform:none;
  5831. visibility:hidden;
  5832. }
  5833. #u169993_img {
  5834. border-width:0px;
  5835. position:absolute;
  5836. left:0px;
  5837. top:0px;
  5838. width:19px;
  5839. height:2px;
  5840. }
  5841. #u169993 {
  5842. border-width:0px;
  5843. position:absolute;
  5844. left:1253px;
  5845. top:87px;
  5846. width:18px;
  5847. height:1px;
  5848. display:flex;
  5849. -webkit-transform:rotate(90deg);
  5850. -moz-transform:rotate(90deg);
  5851. -ms-transform:rotate(90deg);
  5852. transform:rotate(90deg);
  5853. }
  5854. #u169993 .text {
  5855. position:absolute;
  5856. align-self:center;
  5857. padding:2px 2px 2px 2px;
  5858. box-sizing:border-box;
  5859. width:100%;
  5860. }
  5861. #u169993_text {
  5862. border-width:0px;
  5863. word-wrap:break-word;
  5864. text-transform:none;
  5865. visibility:hidden;
  5866. }
  5867. #u169994_div {
  5868. border-width:0px;
  5869. position:absolute;
  5870. left:0px;
  5871. top:0px;
  5872. width:33px;
  5873. height:22px;
  5874. background:inherit;
  5875. background-color:rgba(255, 255, 255, 0);
  5876. border:none;
  5877. border-radius:0px;
  5878. -moz-box-shadow:none;
  5879. -webkit-box-shadow:none;
  5880. box-shadow:none;
  5881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5882. font-weight:400;
  5883. font-style:normal;
  5884. font-size:16px;
  5885. color:#000000;
  5886. }
  5887. #u169994 {
  5888. border-width:0px;
  5889. position:absolute;
  5890. left:970px;
  5891. top:76px;
  5892. width:33px;
  5893. height:22px;
  5894. display:flex;
  5895. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5896. font-weight:400;
  5897. font-style:normal;
  5898. font-size:16px;
  5899. color:#000000;
  5900. }
  5901. #u169994 .text {
  5902. position:absolute;
  5903. align-self:flex-start;
  5904. padding:0px 0px 0px 0px;
  5905. box-sizing:border-box;
  5906. width:100%;
  5907. }
  5908. #u169994_text {
  5909. border-width:0px;
  5910. white-space:nowrap;
  5911. text-transform:none;
  5912. }
  5913. #u169995_div {
  5914. border-width:0px;
  5915. position:absolute;
  5916. left:0px;
  5917. top:0px;
  5918. width:12px;
  5919. height:12px;
  5920. background:inherit;
  5921. background-color:rgba(255, 255, 255, 0);
  5922. box-sizing:border-box;
  5923. border-width:2px;
  5924. border-style:solid;
  5925. border-color:rgba(51, 51, 51, 1);
  5926. border-right:0px;
  5927. border-bottom:0px;
  5928. border-radius:0px;
  5929. border-top-right-radius:0px;
  5930. border-bottom-left-radius:0px;
  5931. -moz-box-shadow:none;
  5932. -webkit-box-shadow:none;
  5933. box-shadow:none;
  5934. }
  5935. #u169995 {
  5936. border-width:0px;
  5937. position:absolute;
  5938. left:950px;
  5939. top:81px;
  5940. width:12px;
  5941. height:12px;
  5942. display:flex;
  5943. -webkit-transform:rotate(315deg);
  5944. -moz-transform:rotate(315deg);
  5945. -ms-transform:rotate(315deg);
  5946. transform:rotate(315deg);
  5947. }
  5948. #u169995 .text {
  5949. position:absolute;
  5950. align-self:center;
  5951. padding:2px 2px 2px 2px;
  5952. box-sizing:border-box;
  5953. width:100%;
  5954. }
  5955. #u169995_text {
  5956. border-width:0px;
  5957. word-wrap:break-word;
  5958. text-transform:none;
  5959. visibility:hidden;
  5960. }
  5961. #u169996 {
  5962. border-width:0px;
  5963. position:absolute;
  5964. left:0px;
  5965. top:0px;
  5966. width:0px;
  5967. height:0px;
  5968. }
  5969. #u169997_img {
  5970. border-width:0px;
  5971. position:absolute;
  5972. left:0px;
  5973. top:0px;
  5974. width:355px;
  5975. height:267px;
  5976. }
  5977. #u169997 {
  5978. border-width:0px;
  5979. position:absolute;
  5980. left:945px;
  5981. top:217px;
  5982. width:355px;
  5983. height:267px;
  5984. display:flex;
  5985. }
  5986. #u169997 .text {
  5987. position:absolute;
  5988. align-self:center;
  5989. padding:2px 2px 2px 2px;
  5990. box-sizing:border-box;
  5991. width:100%;
  5992. }
  5993. #u169997_text {
  5994. border-width:0px;
  5995. word-wrap:break-word;
  5996. text-transform:none;
  5997. visibility:hidden;
  5998. }
  5999. #u169998_div {
  6000. border-width:0px;
  6001. position:absolute;
  6002. left:0px;
  6003. top:0px;
  6004. width:325px;
  6005. height:240px;
  6006. background:inherit;
  6007. background-color:rgba(255, 255, 255, 0);
  6008. border:none;
  6009. border-left:0px;
  6010. border-top:0px;
  6011. border-right:0px;
  6012. border-radius:0px;
  6013. border-bottom-right-radius:0px;
  6014. border-bottom-left-radius:0px;
  6015. -moz-box-shadow:none;
  6016. -webkit-box-shadow:none;
  6017. box-shadow:none;
  6018. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6019. font-weight:400;
  6020. font-style:normal;
  6021. font-size:12px;
  6022. line-height:30px;
  6023. }
  6024. #u169998 {
  6025. border-width:0px;
  6026. position:absolute;
  6027. left:961px;
  6028. top:228px;
  6029. width:325px;
  6030. height:240px;
  6031. display:flex;
  6032. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6033. font-weight:400;
  6034. font-style:normal;
  6035. font-size:12px;
  6036. line-height:30px;
  6037. }
  6038. #u169998 .text {
  6039. position:absolute;
  6040. align-self:flex-start;
  6041. padding:0px 0px 0px 0px;
  6042. box-sizing:border-box;
  6043. width:100%;
  6044. }
  6045. #u169998_text {
  6046. border-width:0px;
  6047. word-wrap:break-word;
  6048. text-transform:none;
  6049. }
  6050. #u169999_div {
  6051. border-width:0px;
  6052. position:absolute;
  6053. left:0px;
  6054. top:0px;
  6055. width:132px;
  6056. height:30px;
  6057. background:inherit;
  6058. background-color:rgba(255, 255, 255, 0);
  6059. border:none;
  6060. border-left:0px;
  6061. border-top:0px;
  6062. border-right:0px;
  6063. border-radius:0px;
  6064. border-bottom-right-radius:0px;
  6065. border-bottom-left-radius:0px;
  6066. -moz-box-shadow:none;
  6067. -webkit-box-shadow:none;
  6068. box-shadow:none;
  6069. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6070. font-weight:500;
  6071. font-style:normal;
  6072. font-size:14px;
  6073. line-height:30px;
  6074. }
  6075. #u169999 {
  6076. border-width:0px;
  6077. position:absolute;
  6078. left:962px;
  6079. top:117px;
  6080. width:132px;
  6081. height:30px;
  6082. display:flex;
  6083. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6084. font-weight:500;
  6085. font-style:normal;
  6086. font-size:14px;
  6087. line-height:30px;
  6088. }
  6089. #u169999 .text {
  6090. position:absolute;
  6091. align-self:flex-start;
  6092. padding:0px 0px 0px 0px;
  6093. box-sizing:border-box;
  6094. width:100%;
  6095. }
  6096. #u169999_text {
  6097. border-width:0px;
  6098. white-space:nowrap;
  6099. text-transform:none;
  6100. }
  6101. #u170000_div {
  6102. border-width:0px;
  6103. position:absolute;
  6104. left:0px;
  6105. top:0px;
  6106. width:325px;
  6107. height:50px;
  6108. background:inherit;
  6109. background-color:rgba(255, 255, 255, 0);
  6110. border:none;
  6111. border-left:0px;
  6112. border-top:0px;
  6113. border-right:0px;
  6114. border-radius:0px;
  6115. border-bottom-right-radius:0px;
  6116. border-bottom-left-radius:0px;
  6117. -moz-box-shadow:none;
  6118. -webkit-box-shadow:none;
  6119. box-shadow:none;
  6120. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6121. font-weight:400;
  6122. font-style:normal;
  6123. font-size:12px;
  6124. line-height:25px;
  6125. }
  6126. #u170000 {
  6127. border-width:0px;
  6128. position:absolute;
  6129. left:962px;
  6130. top:147px;
  6131. width:325px;
  6132. height:50px;
  6133. display:flex;
  6134. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6135. font-weight:400;
  6136. font-style:normal;
  6137. font-size:12px;
  6138. line-height:25px;
  6139. }
  6140. #u170000 .text {
  6141. position:absolute;
  6142. align-self:flex-start;
  6143. padding:0px 0px 0px 0px;
  6144. box-sizing:border-box;
  6145. width:100%;
  6146. }
  6147. #u170000_text {
  6148. border-width:0px;
  6149. word-wrap:break-word;
  6150. text-transform:none;
  6151. }
  6152. #u170001 {
  6153. border-width:0px;
  6154. position:absolute;
  6155. left:0px;
  6156. top:0px;
  6157. width:0px;
  6158. height:0px;
  6159. }
  6160. #u170002_div {
  6161. border-width:0px;
  6162. position:absolute;
  6163. left:0px;
  6164. top:0px;
  6165. width:355px;
  6166. height:192px;
  6167. background:inherit;
  6168. background-color:rgba(255, 255, 255, 1);
  6169. border:none;
  6170. border-radius:0px;
  6171. -moz-box-shadow:none;
  6172. -webkit-box-shadow:none;
  6173. box-shadow:none;
  6174. }
  6175. #u170002 {
  6176. border-width:0px;
  6177. position:absolute;
  6178. left:945px;
  6179. top:544px;
  6180. width:355px;
  6181. height:192px;
  6182. display:flex;
  6183. }
  6184. #u170002 .text {
  6185. position:absolute;
  6186. align-self:center;
  6187. padding:2px 2px 2px 2px;
  6188. box-sizing:border-box;
  6189. width:100%;
  6190. }
  6191. #u170002_text {
  6192. border-width:0px;
  6193. word-wrap:break-word;
  6194. text-transform:none;
  6195. visibility:hidden;
  6196. }
  6197. #u170003_div {
  6198. border-width:0px;
  6199. position:absolute;
  6200. left:0px;
  6201. top:0px;
  6202. width:103px;
  6203. height:24px;
  6204. background:inherit;
  6205. background-color:rgba(255, 255, 255, 0);
  6206. border:none;
  6207. border-top:0px;
  6208. border-right:0px;
  6209. border-bottom:0px;
  6210. border-radius:0px;
  6211. border-top-left-radius:0px;
  6212. border-bottom-left-radius:0px;
  6213. -moz-box-shadow:none;
  6214. -webkit-box-shadow:none;
  6215. box-shadow:none;
  6216. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6217. font-weight:400;
  6218. font-style:normal;
  6219. font-size:10px;
  6220. color:#AAAAAA;
  6221. }
  6222. #u170003 {
  6223. border-width:0px;
  6224. position:absolute;
  6225. left:1180px;
  6226. top:594px;
  6227. width:103px;
  6228. height:24px;
  6229. display:flex;
  6230. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6231. font-weight:400;
  6232. font-style:normal;
  6233. font-size:10px;
  6234. color:#AAAAAA;
  6235. }
  6236. #u170003 .text {
  6237. position:absolute;
  6238. align-self:flex-start;
  6239. padding:5px 0px 5px 0px;
  6240. box-sizing:border-box;
  6241. width:100%;
  6242. }
  6243. #u170003_text {
  6244. border-width:0px;
  6245. white-space:nowrap;
  6246. text-transform:none;
  6247. }
  6248. #u170004 {
  6249. border-width:0px;
  6250. position:absolute;
  6251. left:0px;
  6252. top:0px;
  6253. width:0px;
  6254. height:0px;
  6255. }
  6256. #u170005_div {
  6257. border-width:0px;
  6258. position:absolute;
  6259. left:0px;
  6260. top:0px;
  6261. width:43px;
  6262. height:30px;
  6263. background:inherit;
  6264. background-color:rgba(255, 255, 255, 0);
  6265. border:none;
  6266. border-top:0px;
  6267. border-right:0px;
  6268. border-bottom:0px;
  6269. border-radius:0px;
  6270. border-top-left-radius:0px;
  6271. border-bottom-left-radius:0px;
  6272. -moz-box-shadow:none;
  6273. -webkit-box-shadow:none;
  6274. box-shadow:none;
  6275. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6276. font-weight:400;
  6277. font-style:normal;
  6278. font-size:14px;
  6279. }
  6280. #u170005 {
  6281. border-width:0px;
  6282. position:absolute;
  6283. left:1013px;
  6284. top:596px;
  6285. width:43px;
  6286. height:30px;
  6287. display:flex;
  6288. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6289. font-weight:400;
  6290. font-style:normal;
  6291. font-size:14px;
  6292. }
  6293. #u170005 .text {
  6294. position:absolute;
  6295. align-self:flex-start;
  6296. padding:0px 0px 0px 0px;
  6297. box-sizing:border-box;
  6298. width:100%;
  6299. }
  6300. #u170005_text {
  6301. border-width:0px;
  6302. white-space:nowrap;
  6303. text-transform:none;
  6304. }
  6305. #u170006_div {
  6306. border-width:0px;
  6307. position:absolute;
  6308. left:0px;
  6309. top:0px;
  6310. width:12px;
  6311. height:16px;
  6312. background:inherit;
  6313. background-color:rgba(255, 255, 255, 0);
  6314. border:none;
  6315. border-top:0px;
  6316. border-right:0px;
  6317. border-bottom:0px;
  6318. border-radius:0px;
  6319. border-top-left-radius:0px;
  6320. border-bottom-left-radius:0px;
  6321. -moz-box-shadow:none;
  6322. -webkit-box-shadow:none;
  6323. box-shadow:none;
  6324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6325. font-weight:400;
  6326. font-style:normal;
  6327. font-size:11px;
  6328. color:#AAAAAA;
  6329. }
  6330. #u170006 {
  6331. border-width:0px;
  6332. position:absolute;
  6333. left:1013px;
  6334. top:624px;
  6335. width:12px;
  6336. height:16px;
  6337. display:flex;
  6338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6339. font-weight:400;
  6340. font-style:normal;
  6341. font-size:11px;
  6342. color:#AAAAAA;
  6343. }
  6344. #u170006 .text {
  6345. position:absolute;
  6346. align-self:flex-start;
  6347. padding:0px 0px 0px 0px;
  6348. box-sizing:border-box;
  6349. width:100%;
  6350. }
  6351. #u170006_text {
  6352. border-width:0px;
  6353. white-space:nowrap;
  6354. text-transform:none;
  6355. }
  6356. #u170007_div {
  6357. border-width:0px;
  6358. position:absolute;
  6359. left:0px;
  6360. top:0px;
  6361. width:43px;
  6362. height:20px;
  6363. background:inherit;
  6364. background-color:rgba(255, 255, 255, 0);
  6365. border:none;
  6366. border-top:0px;
  6367. border-right:0px;
  6368. border-bottom:0px;
  6369. border-radius:0px;
  6370. border-top-left-radius:0px;
  6371. border-bottom-left-radius:0px;
  6372. -moz-box-shadow:none;
  6373. -webkit-box-shadow:none;
  6374. box-shadow:none;
  6375. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6376. font-weight:400;
  6377. font-style:normal;
  6378. font-size:14px;
  6379. }
  6380. #u170007 {
  6381. border-width:0px;
  6382. position:absolute;
  6383. left:1013px;
  6384. top:666px;
  6385. width:43px;
  6386. height:20px;
  6387. display:flex;
  6388. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6389. font-weight:400;
  6390. font-style:normal;
  6391. font-size:14px;
  6392. }
  6393. #u170007 .text {
  6394. position:absolute;
  6395. align-self:flex-start;
  6396. padding:0px 0px 0px 0px;
  6397. box-sizing:border-box;
  6398. width:100%;
  6399. }
  6400. #u170007_text {
  6401. border-width:0px;
  6402. white-space:nowrap;
  6403. text-transform:none;
  6404. }
  6405. #u170008_div {
  6406. border-width:0px;
  6407. position:absolute;
  6408. left:0px;
  6409. top:0px;
  6410. width:91px;
  6411. height:16px;
  6412. background:inherit;
  6413. background-color:rgba(255, 255, 255, 0);
  6414. border:none;
  6415. border-top:0px;
  6416. border-right:0px;
  6417. border-bottom:0px;
  6418. border-radius:0px;
  6419. border-top-left-radius:0px;
  6420. border-bottom-left-radius:0px;
  6421. -moz-box-shadow:none;
  6422. -webkit-box-shadow:none;
  6423. box-shadow:none;
  6424. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6425. font-weight:400;
  6426. font-style:normal;
  6427. font-size:11px;
  6428. color:#AAAAAA;
  6429. }
  6430. #u170008 {
  6431. border-width:0px;
  6432. position:absolute;
  6433. left:1013px;
  6434. top:694px;
  6435. width:91px;
  6436. height:16px;
  6437. display:flex;
  6438. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6439. font-weight:400;
  6440. font-style:normal;
  6441. font-size:11px;
  6442. color:#AAAAAA;
  6443. }
  6444. #u170008 .text {
  6445. position:absolute;
  6446. align-self:flex-start;
  6447. padding:0px 0px 0px 0px;
  6448. box-sizing:border-box;
  6449. width:100%;
  6450. }
  6451. #u170008_text {
  6452. border-width:0px;
  6453. white-space:nowrap;
  6454. text-transform:none;
  6455. }
  6456. #u170009_div {
  6457. border-width:0px;
  6458. position:absolute;
  6459. left:0px;
  6460. top:0px;
  6461. width:29px;
  6462. height:30px;
  6463. background:inherit;
  6464. background-color:rgba(255, 255, 255, 0);
  6465. border:none;
  6466. border-top:0px;
  6467. border-right:0px;
  6468. border-bottom:0px;
  6469. border-radius:0px;
  6470. border-top-left-radius:0px;
  6471. border-bottom-left-radius:0px;
  6472. -moz-box-shadow:none;
  6473. -webkit-box-shadow:none;
  6474. box-shadow:none;
  6475. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6476. font-weight:400;
  6477. font-style:normal;
  6478. font-size:14px;
  6479. }
  6480. #u170009 {
  6481. border-width:0px;
  6482. position:absolute;
  6483. left:971px;
  6484. top:552px;
  6485. width:29px;
  6486. height:30px;
  6487. display:flex;
  6488. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6489. font-weight:400;
  6490. font-style:normal;
  6491. font-size:14px;
  6492. }
  6493. #u170009 .text {
  6494. position:absolute;
  6495. align-self:flex-start;
  6496. padding:5px 0px 5px 0px;
  6497. box-sizing:border-box;
  6498. width:100%;
  6499. }
  6500. #u170009_text {
  6501. border-width:0px;
  6502. white-space:nowrap;
  6503. text-transform:none;
  6504. }
  6505. #u170010 {
  6506. border-width:0px;
  6507. position:absolute;
  6508. left:0px;
  6509. top:0px;
  6510. width:0px;
  6511. height:0px;
  6512. }
  6513. #u170011_img {
  6514. border-width:0px;
  6515. position:absolute;
  6516. left:0px;
  6517. top:0px;
  6518. width:2px;
  6519. height:32px;
  6520. }
  6521. #u170011 {
  6522. border-width:0px;
  6523. position:absolute;
  6524. left:990px;
  6525. top:630px;
  6526. width:1px;
  6527. height:31px;
  6528. display:flex;
  6529. }
  6530. #u170011 .text {
  6531. position:absolute;
  6532. align-self:center;
  6533. padding:2px 2px 2px 2px;
  6534. box-sizing:border-box;
  6535. width:100%;
  6536. }
  6537. #u170011_text {
  6538. border-width:0px;
  6539. word-wrap:break-word;
  6540. text-transform:none;
  6541. visibility:hidden;
  6542. }
  6543. #u170012 {
  6544. border-width:0px;
  6545. position:absolute;
  6546. left:0px;
  6547. top:0px;
  6548. width:0px;
  6549. height:0px;
  6550. }
  6551. #u170013_div {
  6552. border-width:0px;
  6553. position:absolute;
  6554. left:0px;
  6555. top:0px;
  6556. width:30px;
  6557. height:30px;
  6558. background:inherit;
  6559. background-color:rgba(24, 144, 255, 1);
  6560. border:none;
  6561. border-radius:4px;
  6562. -moz-box-shadow:none;
  6563. -webkit-box-shadow:none;
  6564. box-shadow:none;
  6565. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6566. font-weight:400;
  6567. font-style:normal;
  6568. font-size:10px;
  6569. color:#FFFFFF;
  6570. }
  6571. #u170013 {
  6572. border-width:0px;
  6573. position:absolute;
  6574. left:975px;
  6575. top:666px;
  6576. width:30px;
  6577. height:30px;
  6578. display:flex;
  6579. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6580. font-weight:400;
  6581. font-style:normal;
  6582. font-size:10px;
  6583. color:#FFFFFF;
  6584. }
  6585. #u170013 .text {
  6586. position:absolute;
  6587. align-self:center;
  6588. padding:2px 2px 2px 2px;
  6589. box-sizing:border-box;
  6590. width:100%;
  6591. }
  6592. #u170013_text {
  6593. border-width:0px;
  6594. word-wrap:break-word;
  6595. text-transform:none;
  6596. }
  6597. #u170014 {
  6598. border-width:0px;
  6599. position:absolute;
  6600. left:0px;
  6601. top:0px;
  6602. width:0px;
  6603. height:0px;
  6604. }
  6605. #u170015_img {
  6606. border-width:0px;
  6607. position:absolute;
  6608. left:0px;
  6609. top:0px;
  6610. width:9px;
  6611. height:9px;
  6612. }
  6613. #u170015 {
  6614. border-width:0px;
  6615. position:absolute;
  6616. left:997px;
  6617. top:688px;
  6618. width:9px;
  6619. height:9px;
  6620. display:flex;
  6621. }
  6622. #u170015 .text {
  6623. position:absolute;
  6624. align-self:center;
  6625. padding:2px 2px 2px 2px;
  6626. box-sizing:border-box;
  6627. width:100%;
  6628. }
  6629. #u170015_text {
  6630. border-width:0px;
  6631. word-wrap:break-word;
  6632. text-transform:none;
  6633. visibility:hidden;
  6634. }
  6635. #u170016_img {
  6636. border-width:0px;
  6637. position:absolute;
  6638. left:0px;
  6639. top:0px;
  6640. width:5px;
  6641. height:1px;
  6642. }
  6643. #u170016 {
  6644. border-width:0px;
  6645. position:absolute;
  6646. left:999px;
  6647. top:692px;
  6648. width:5px;
  6649. height:1px;
  6650. display:flex;
  6651. }
  6652. #u170016 .text {
  6653. position:absolute;
  6654. align-self:center;
  6655. padding:2px 2px 2px 2px;
  6656. box-sizing:border-box;
  6657. width:100%;
  6658. }
  6659. #u170016_text {
  6660. border-width:0px;
  6661. word-wrap:break-word;
  6662. text-transform:none;
  6663. visibility:hidden;
  6664. }
  6665. #u170017 {
  6666. border-width:0px;
  6667. position:absolute;
  6668. left:0px;
  6669. top:0px;
  6670. width:0px;
  6671. height:0px;
  6672. }
  6673. #u170018_div {
  6674. border-width:0px;
  6675. position:absolute;
  6676. left:0px;
  6677. top:0px;
  6678. width:30px;
  6679. height:30px;
  6680. background:inherit;
  6681. background-color:rgba(24, 144, 255, 1);
  6682. border:none;
  6683. border-radius:4px;
  6684. -moz-box-shadow:none;
  6685. -webkit-box-shadow:none;
  6686. box-shadow:none;
  6687. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6688. font-weight:400;
  6689. font-style:normal;
  6690. font-size:12px;
  6691. color:#FFFFFF;
  6692. }
  6693. #u170018 {
  6694. border-width:0px;
  6695. position:absolute;
  6696. left:975px;
  6697. top:596px;
  6698. width:30px;
  6699. height:30px;
  6700. display:flex;
  6701. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6702. font-weight:400;
  6703. font-style:normal;
  6704. font-size:12px;
  6705. color:#FFFFFF;
  6706. }
  6707. #u170018 .text {
  6708. position:absolute;
  6709. align-self:center;
  6710. padding:2px 2px 2px 2px;
  6711. box-sizing:border-box;
  6712. width:100%;
  6713. }
  6714. #u170018_text {
  6715. border-width:0px;
  6716. word-wrap:break-word;
  6717. text-transform:none;
  6718. }
  6719. #u170019 {
  6720. border-width:0px;
  6721. position:absolute;
  6722. left:0px;
  6723. top:0px;
  6724. width:0px;
  6725. height:0px;
  6726. }
  6727. #u170020_img {
  6728. border-width:0px;
  6729. position:absolute;
  6730. left:0px;
  6731. top:0px;
  6732. width:9px;
  6733. height:9px;
  6734. }
  6735. #u170020 {
  6736. border-width:0px;
  6737. position:absolute;
  6738. left:997px;
  6739. top:618px;
  6740. width:9px;
  6741. height:9px;
  6742. display:flex;
  6743. }
  6744. #u170020 .text {
  6745. position:absolute;
  6746. align-self:center;
  6747. padding:2px 2px 2px 2px;
  6748. box-sizing:border-box;
  6749. width:100%;
  6750. }
  6751. #u170020_text {
  6752. border-width:0px;
  6753. word-wrap:break-word;
  6754. text-transform:none;
  6755. visibility:hidden;
  6756. }
  6757. #u170021_img {
  6758. border-width:0px;
  6759. position:absolute;
  6760. left:0px;
  6761. top:0px;
  6762. width:5px;
  6763. height:4px;
  6764. }
  6765. #u170021 {
  6766. border-width:0px;
  6767. position:absolute;
  6768. left:999px;
  6769. top:621px;
  6770. width:5px;
  6771. height:4px;
  6772. display:flex;
  6773. }
  6774. #u170021 .text {
  6775. position:absolute;
  6776. align-self:center;
  6777. padding:2px 2px 2px 2px;
  6778. box-sizing:border-box;
  6779. width:100%;
  6780. }
  6781. #u170021_text {
  6782. border-width:0px;
  6783. word-wrap:break-word;
  6784. text-transform:none;
  6785. visibility:hidden;
  6786. }
  6787. #u170022 {
  6788. border-width:0px;
  6789. position:absolute;
  6790. left:0px;
  6791. top:0px;
  6792. width:0px;
  6793. height:0px;
  6794. }
  6795. #u170023_div {
  6796. border-width:0px;
  6797. position:absolute;
  6798. left:0px;
  6799. top:0px;
  6800. width:375px;
  6801. height:60px;
  6802. background:inherit;
  6803. background-color:rgba(255, 255, 255, 1);
  6804. border:none;
  6805. border-top:0px;
  6806. border-radius:28px;
  6807. border-top-left-radius:0px;
  6808. border-top-right-radius:0px;
  6809. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  6810. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  6811. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  6812. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6813. font-weight:400;
  6814. font-style:normal;
  6815. font-size:14px;
  6816. color:#FFFFFF;
  6817. }
  6818. #u170023 {
  6819. border-width:0px;
  6820. position:absolute;
  6821. left:935px;
  6822. top:783px;
  6823. width:375px;
  6824. height:60px;
  6825. display:flex;
  6826. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6827. font-weight:400;
  6828. font-style:normal;
  6829. font-size:14px;
  6830. color:#FFFFFF;
  6831. }
  6832. #u170023 .text {
  6833. position:absolute;
  6834. align-self:center;
  6835. padding:2px 2px 2px 2px;
  6836. box-sizing:border-box;
  6837. width:100%;
  6838. }
  6839. #u170023_text {
  6840. border-width:0px;
  6841. word-wrap:break-word;
  6842. text-transform:none;
  6843. visibility:hidden;
  6844. }
  6845. #u170024_div {
  6846. border-width:0px;
  6847. position:absolute;
  6848. left:0px;
  6849. top:0px;
  6850. width:80px;
  6851. height:40px;
  6852. background:inherit;
  6853. background-color:rgba(24, 144, 255, 1);
  6854. border:none;
  6855. border-radius:27px;
  6856. -moz-box-shadow:none;
  6857. -webkit-box-shadow:none;
  6858. box-shadow:none;
  6859. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6860. font-weight:400;
  6861. font-style:normal;
  6862. color:#FFFFFF;
  6863. text-align:center;
  6864. }
  6865. #u170024 {
  6866. border-width:0px;
  6867. position:absolute;
  6868. left:1215px;
  6869. top:793px;
  6870. width:80px;
  6871. height:40px;
  6872. display:flex;
  6873. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6874. font-weight:400;
  6875. font-style:normal;
  6876. color:#FFFFFF;
  6877. text-align:center;
  6878. }
  6879. #u170024 .text {
  6880. position:absolute;
  6881. align-self:center;
  6882. padding:2px 3px 2px 3px;
  6883. box-sizing:border-box;
  6884. width:100%;
  6885. }
  6886. #u170024_text {
  6887. border-width:0px;
  6888. word-wrap:break-word;
  6889. text-transform:none;
  6890. }
  6891. #u170025_div {
  6892. border-width:0px;
  6893. position:absolute;
  6894. left:0px;
  6895. top:0px;
  6896. width:80px;
  6897. height:40px;
  6898. background:inherit;
  6899. background-color:rgba(215, 215, 215, 1);
  6900. border:none;
  6901. border-radius:27px;
  6902. -moz-box-shadow:none;
  6903. -webkit-box-shadow:none;
  6904. box-shadow:none;
  6905. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6906. font-weight:400;
  6907. font-style:normal;
  6908. text-align:center;
  6909. }
  6910. #u170025 {
  6911. border-width:0px;
  6912. position:absolute;
  6913. left:1125px;
  6914. top:793px;
  6915. width:80px;
  6916. height:40px;
  6917. display:flex;
  6918. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6919. font-weight:400;
  6920. font-style:normal;
  6921. text-align:center;
  6922. }
  6923. #u170025 .text {
  6924. position:absolute;
  6925. align-self:center;
  6926. padding:2px 3px 2px 3px;
  6927. box-sizing:border-box;
  6928. width:100%;
  6929. }
  6930. #u170025_text {
  6931. border-width:0px;
  6932. word-wrap:break-word;
  6933. text-transform:none;
  6934. }
  6935. #u170026_div {
  6936. border-width:0px;
  6937. position:absolute;
  6938. left:0px;
  6939. top:0px;
  6940. width:31px;
  6941. height:21px;
  6942. background:inherit;
  6943. background-color:rgba(215, 215, 215, 0);
  6944. border:none;
  6945. border-radius:27px;
  6946. -moz-box-shadow:none;
  6947. -webkit-box-shadow:none;
  6948. box-shadow:none;
  6949. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6950. font-weight:400;
  6951. font-style:normal;
  6952. font-size:12px;
  6953. color:#7F7F7F;
  6954. text-align:center;
  6955. }
  6956. #u170026 {
  6957. border-width:0px;
  6958. position:absolute;
  6959. left:1084px;
  6960. top:803px;
  6961. width:31px;
  6962. height:21px;
  6963. display:flex;
  6964. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6965. font-weight:400;
  6966. font-style:normal;
  6967. font-size:12px;
  6968. color:#7F7F7F;
  6969. text-align:center;
  6970. }
  6971. #u170026 .text {
  6972. position:absolute;
  6973. align-self:center;
  6974. padding:2px 3px 2px 3px;
  6975. box-sizing:border-box;
  6976. width:100%;
  6977. }
  6978. #u170026_text {
  6979. border-width:0px;
  6980. white-space:nowrap;
  6981. text-transform:none;
  6982. }
  6983. #u170027_div {
  6984. border-width:0px;
  6985. position:absolute;
  6986. left:0px;
  6987. top:0px;
  6988. width:97px;
  6989. height:25px;
  6990. background:inherit;
  6991. background-color:rgba(255, 255, 255, 0);
  6992. border:none;
  6993. border-radius:0px;
  6994. -moz-box-shadow:none;
  6995. -webkit-box-shadow:none;
  6996. box-shadow:none;
  6997. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6998. font-weight:400;
  6999. font-style:normal;
  7000. font-size:12px;
  7001. color:#B8741A;
  7002. line-height:25px;
  7003. }
  7004. #u170027 {
  7005. border-width:0px;
  7006. position:absolute;
  7007. left:1190px;
  7008. top:172px;
  7009. width:97px;
  7010. height:25px;
  7011. display:flex;
  7012. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7013. font-weight:400;
  7014. font-style:normal;
  7015. font-size:12px;
  7016. color:#B8741A;
  7017. line-height:25px;
  7018. }
  7019. #u170027 .text {
  7020. position:absolute;
  7021. align-self:flex-start;
  7022. padding:0px 0px 0px 0px;
  7023. box-sizing:border-box;
  7024. width:100%;
  7025. }
  7026. #u170027_text {
  7027. border-width:0px;
  7028. white-space:nowrap;
  7029. text-transform:none;
  7030. }
  7031. #u170028 {
  7032. border-width:0px;
  7033. position:absolute;
  7034. left:0px;
  7035. top:0px;
  7036. width:0px;
  7037. height:0px;
  7038. }
  7039. #u170029_div {
  7040. border-width:0px;
  7041. position:absolute;
  7042. left:0px;
  7043. top:0px;
  7044. width:375px;
  7045. height:736px;
  7046. background:inherit;
  7047. background-color:rgba(51, 51, 51, 0.533333333333333);
  7048. border:none;
  7049. border-top:0px;
  7050. border-radius:25px;
  7051. border-top-left-radius:0px;
  7052. border-top-right-radius:0px;
  7053. -moz-box-shadow:none;
  7054. -webkit-box-shadow:none;
  7055. box-shadow:none;
  7056. }
  7057. #u170029 {
  7058. border-width:0px;
  7059. position:absolute;
  7060. left:482px;
  7061. top:107px;
  7062. width:375px;
  7063. height:736px;
  7064. display:flex;
  7065. }
  7066. #u170029 .text {
  7067. position:absolute;
  7068. align-self:center;
  7069. padding:2px 2px 2px 2px;
  7070. box-sizing:border-box;
  7071. width:100%;
  7072. }
  7073. #u170029_text {
  7074. border-width:0px;
  7075. word-wrap:break-word;
  7076. text-transform:none;
  7077. visibility:hidden;
  7078. }
  7079. #u170030_div {
  7080. border-width:0px;
  7081. position:absolute;
  7082. left:0px;
  7083. top:0px;
  7084. width:375px;
  7085. height:248px;
  7086. background:inherit;
  7087. background-color:rgba(242, 242, 242, 1);
  7088. border:none;
  7089. border-top:0px;
  7090. border-radius:25px;
  7091. border-top-left-radius:0px;
  7092. border-top-right-radius:0px;
  7093. -moz-box-shadow:none;
  7094. -webkit-box-shadow:none;
  7095. box-shadow:none;
  7096. }
  7097. #u170030 {
  7098. border-width:0px;
  7099. position:absolute;
  7100. left:482px;
  7101. top:595px;
  7102. width:375px;
  7103. height:248px;
  7104. display:flex;
  7105. }
  7106. #u170030 .text {
  7107. position:absolute;
  7108. align-self:center;
  7109. padding:2px 2px 2px 2px;
  7110. box-sizing:border-box;
  7111. width:100%;
  7112. }
  7113. #u170030_text {
  7114. border-width:0px;
  7115. word-wrap:break-word;
  7116. text-transform:none;
  7117. visibility:hidden;
  7118. }
  7119. #u170031 {
  7120. border-width:0px;
  7121. position:absolute;
  7122. left:0px;
  7123. top:0px;
  7124. width:0px;
  7125. height:0px;
  7126. }
  7127. #u170032_div {
  7128. border-width:0px;
  7129. position:absolute;
  7130. left:0px;
  7131. top:0px;
  7132. width:375px;
  7133. height:60px;
  7134. background:inherit;
  7135. background-color:rgba(255, 255, 255, 1);
  7136. box-sizing:border-box;
  7137. border-width:1px;
  7138. border-style:solid;
  7139. border-color:rgba(242, 242, 242, 1);
  7140. border-left:0px;
  7141. border-right:0px;
  7142. border-radius:0px;
  7143. border-top-left-radius:0px;
  7144. border-top-right-radius:0px;
  7145. border-bottom-right-radius:0px;
  7146. border-bottom-left-radius:0px;
  7147. -moz-box-shadow:none;
  7148. -webkit-box-shadow:none;
  7149. box-shadow:none;
  7150. }
  7151. #u170032 {
  7152. border-width:0px;
  7153. position:absolute;
  7154. left:482px;
  7155. top:655px;
  7156. width:375px;
  7157. height:60px;
  7158. display:flex;
  7159. }
  7160. #u170032 .text {
  7161. position:absolute;
  7162. align-self:center;
  7163. padding:2px 2px 2px 2px;
  7164. box-sizing:border-box;
  7165. width:100%;
  7166. }
  7167. #u170032_text {
  7168. border-width:0px;
  7169. word-wrap:break-word;
  7170. text-transform:none;
  7171. visibility:hidden;
  7172. }
  7173. #u170033_div {
  7174. border-width:0px;
  7175. position:absolute;
  7176. left:0px;
  7177. top:0px;
  7178. width:29px;
  7179. height:30px;
  7180. background:inherit;
  7181. background-color:rgba(255, 255, 255, 0);
  7182. border:none;
  7183. border-left:0px;
  7184. border-top:0px;
  7185. border-right:0px;
  7186. border-radius:0px;
  7187. border-bottom-right-radius:0px;
  7188. border-bottom-left-radius:0px;
  7189. -moz-box-shadow:none;
  7190. -webkit-box-shadow:none;
  7191. box-shadow:none;
  7192. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7193. font-weight:400;
  7194. font-style:normal;
  7195. font-size:14px;
  7196. line-height:30px;
  7197. }
  7198. #u170033 {
  7199. border-width:0px;
  7200. position:absolute;
  7201. left:655px;
  7202. top:670px;
  7203. width:29px;
  7204. height:30px;
  7205. display:flex;
  7206. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7207. font-weight:400;
  7208. font-style:normal;
  7209. font-size:14px;
  7210. line-height:30px;
  7211. }
  7212. #u170033 .text {
  7213. position:absolute;
  7214. align-self:flex-start;
  7215. padding:0px 0px 0px 0px;
  7216. box-sizing:border-box;
  7217. width:100%;
  7218. }
  7219. #u170033_text {
  7220. border-width:0px;
  7221. white-space:nowrap;
  7222. text-transform:none;
  7223. }
  7224. #u170034 {
  7225. border-width:0px;
  7226. position:absolute;
  7227. left:0px;
  7228. top:0px;
  7229. width:0px;
  7230. height:0px;
  7231. }
  7232. #u170035_div {
  7233. border-width:0px;
  7234. position:absolute;
  7235. left:0px;
  7236. top:0px;
  7237. width:375px;
  7238. height:60px;
  7239. background:inherit;
  7240. background-color:rgba(255, 255, 255, 1);
  7241. box-sizing:border-box;
  7242. border-width:1px;
  7243. border-style:solid;
  7244. border-color:rgba(242, 242, 242, 1);
  7245. border-left:0px;
  7246. border-right:0px;
  7247. border-radius:0px;
  7248. border-top-left-radius:0px;
  7249. border-top-right-radius:0px;
  7250. border-bottom-right-radius:0px;
  7251. border-bottom-left-radius:0px;
  7252. -moz-box-shadow:none;
  7253. -webkit-box-shadow:none;
  7254. box-shadow:none;
  7255. }
  7256. #u170035 {
  7257. border-width:0px;
  7258. position:absolute;
  7259. left:482px;
  7260. top:714px;
  7261. width:375px;
  7262. height:60px;
  7263. display:flex;
  7264. }
  7265. #u170035 .text {
  7266. position:absolute;
  7267. align-self:center;
  7268. padding:2px 2px 2px 2px;
  7269. box-sizing:border-box;
  7270. width:100%;
  7271. }
  7272. #u170035_text {
  7273. border-width:0px;
  7274. word-wrap:break-word;
  7275. text-transform:none;
  7276. visibility:hidden;
  7277. }
  7278. #u170036_div {
  7279. border-width:0px;
  7280. position:absolute;
  7281. left:0px;
  7282. top:0px;
  7283. width:29px;
  7284. height:30px;
  7285. background:inherit;
  7286. background-color:rgba(255, 255, 255, 0);
  7287. border:none;
  7288. border-left:0px;
  7289. border-top:0px;
  7290. border-right:0px;
  7291. border-radius:0px;
  7292. border-bottom-right-radius:0px;
  7293. border-bottom-left-radius:0px;
  7294. -moz-box-shadow:none;
  7295. -webkit-box-shadow:none;
  7296. box-shadow:none;
  7297. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7298. font-weight:400;
  7299. font-style:normal;
  7300. font-size:14px;
  7301. line-height:30px;
  7302. }
  7303. #u170036 {
  7304. border-width:0px;
  7305. position:absolute;
  7306. left:655px;
  7307. top:729px;
  7308. width:29px;
  7309. height:30px;
  7310. display:flex;
  7311. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7312. font-weight:400;
  7313. font-style:normal;
  7314. font-size:14px;
  7315. line-height:30px;
  7316. }
  7317. #u170036 .text {
  7318. position:absolute;
  7319. align-self:flex-start;
  7320. padding:0px 0px 0px 0px;
  7321. box-sizing:border-box;
  7322. width:100%;
  7323. }
  7324. #u170036_text {
  7325. border-width:0px;
  7326. white-space:nowrap;
  7327. text-transform:none;
  7328. }
  7329. #u170037 {
  7330. border-width:0px;
  7331. position:absolute;
  7332. left:0px;
  7333. top:0px;
  7334. width:0px;
  7335. height:0px;
  7336. }
  7337. #u170038_div {
  7338. border-width:0px;
  7339. position:absolute;
  7340. left:0px;
  7341. top:0px;
  7342. width:375px;
  7343. height:60px;
  7344. background:inherit;
  7345. background-color:rgba(255, 255, 255, 1);
  7346. box-sizing:border-box;
  7347. border-width:1px;
  7348. border-style:solid;
  7349. border-color:rgba(242, 242, 242, 1);
  7350. border-top:0px;
  7351. border-radius:20px;
  7352. border-top-left-radius:0px;
  7353. border-top-right-radius:0px;
  7354. -moz-box-shadow:none;
  7355. -webkit-box-shadow:none;
  7356. box-shadow:none;
  7357. }
  7358. #u170038 {
  7359. border-width:0px;
  7360. position:absolute;
  7361. left:482px;
  7362. top:783px;
  7363. width:375px;
  7364. height:60px;
  7365. display:flex;
  7366. }
  7367. #u170038 .text {
  7368. position:absolute;
  7369. align-self:center;
  7370. padding:2px 2px 2px 2px;
  7371. box-sizing:border-box;
  7372. width:100%;
  7373. }
  7374. #u170038_text {
  7375. border-width:0px;
  7376. word-wrap:break-word;
  7377. text-transform:none;
  7378. visibility:hidden;
  7379. }
  7380. #u170039_div {
  7381. border-width:0px;
  7382. position:absolute;
  7383. left:0px;
  7384. top:0px;
  7385. width:29px;
  7386. height:30px;
  7387. background:inherit;
  7388. background-color:rgba(255, 255, 255, 0);
  7389. border:none;
  7390. border-left:0px;
  7391. border-top:0px;
  7392. border-right:0px;
  7393. border-radius:0px;
  7394. border-bottom-right-radius:0px;
  7395. border-bottom-left-radius:0px;
  7396. -moz-box-shadow:none;
  7397. -webkit-box-shadow:none;
  7398. box-shadow:none;
  7399. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7400. font-weight:400;
  7401. font-style:normal;
  7402. font-size:14px;
  7403. line-height:30px;
  7404. }
  7405. #u170039 {
  7406. border-width:0px;
  7407. position:absolute;
  7408. left:655px;
  7409. top:798px;
  7410. width:29px;
  7411. height:30px;
  7412. display:flex;
  7413. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7414. font-weight:400;
  7415. font-style:normal;
  7416. font-size:14px;
  7417. line-height:30px;
  7418. }
  7419. #u170039 .text {
  7420. position:absolute;
  7421. align-self:flex-start;
  7422. padding:0px 0px 0px 0px;
  7423. box-sizing:border-box;
  7424. width:100%;
  7425. }
  7426. #u170039_text {
  7427. border-width:0px;
  7428. white-space:nowrap;
  7429. text-transform:none;
  7430. }
  7431. #u170040 {
  7432. border-width:0px;
  7433. position:absolute;
  7434. left:0px;
  7435. top:0px;
  7436. width:0px;
  7437. height:0px;
  7438. }
  7439. #u170041_div {
  7440. border-width:0px;
  7441. position:absolute;
  7442. left:0px;
  7443. top:0px;
  7444. width:375px;
  7445. height:60px;
  7446. background:inherit;
  7447. background-color:rgba(255, 255, 255, 1);
  7448. box-sizing:border-box;
  7449. border-width:1px;
  7450. border-style:solid;
  7451. border-color:rgba(242, 242, 242, 1);
  7452. border-left:0px;
  7453. border-right:0px;
  7454. border-radius:0px;
  7455. border-top-left-radius:0px;
  7456. border-top-right-radius:0px;
  7457. border-bottom-right-radius:0px;
  7458. border-bottom-left-radius:0px;
  7459. -moz-box-shadow:none;
  7460. -webkit-box-shadow:none;
  7461. box-shadow:none;
  7462. }
  7463. #u170041 {
  7464. border-width:0px;
  7465. position:absolute;
  7466. left:482px;
  7467. top:595px;
  7468. width:375px;
  7469. height:60px;
  7470. display:flex;
  7471. }
  7472. #u170041 .text {
  7473. position:absolute;
  7474. align-self:center;
  7475. padding:2px 2px 2px 2px;
  7476. box-sizing:border-box;
  7477. width:100%;
  7478. }
  7479. #u170041_text {
  7480. border-width:0px;
  7481. word-wrap:break-word;
  7482. text-transform:none;
  7483. visibility:hidden;
  7484. }
  7485. #u170042_div {
  7486. border-width:0px;
  7487. position:absolute;
  7488. left:0px;
  7489. top:0px;
  7490. width:29px;
  7491. height:30px;
  7492. background:inherit;
  7493. background-color:rgba(255, 255, 255, 0);
  7494. border:none;
  7495. border-left:0px;
  7496. border-top:0px;
  7497. border-right:0px;
  7498. border-radius:0px;
  7499. border-bottom-right-radius:0px;
  7500. border-bottom-left-radius:0px;
  7501. -moz-box-shadow:none;
  7502. -webkit-box-shadow:none;
  7503. box-shadow:none;
  7504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7505. font-weight:400;
  7506. font-style:normal;
  7507. font-size:14px;
  7508. line-height:30px;
  7509. }
  7510. #u170042 {
  7511. border-width:0px;
  7512. position:absolute;
  7513. left:655px;
  7514. top:610px;
  7515. width:29px;
  7516. height:30px;
  7517. display:flex;
  7518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7519. font-weight:400;
  7520. font-style:normal;
  7521. font-size:14px;
  7522. line-height:30px;
  7523. }
  7524. #u170042 .text {
  7525. position:absolute;
  7526. align-self:flex-start;
  7527. padding:0px 0px 0px 0px;
  7528. box-sizing:border-box;
  7529. width:100%;
  7530. }
  7531. #u170042_text {
  7532. border-width:0px;
  7533. white-space:nowrap;
  7534. text-transform:none;
  7535. }
  7536. #u170044_img {
  7537. border-width:0px;
  7538. position:absolute;
  7539. left:0px;
  7540. top:0px;
  7541. width:433px;
  7542. height:865px;
  7543. }
  7544. #u170044 {
  7545. border-width:0px;
  7546. position:absolute;
  7547. left:1371px;
  7548. top:0px;
  7549. width:433px;
  7550. height:865px;
  7551. display:flex;
  7552. }
  7553. #u170044 .text {
  7554. position:absolute;
  7555. align-self:center;
  7556. padding:2px 2px 2px 2px;
  7557. box-sizing:border-box;
  7558. width:100%;
  7559. }
  7560. #u170044_text {
  7561. border-width:0px;
  7562. word-wrap:break-word;
  7563. text-transform:none;
  7564. visibility:hidden;
  7565. }
  7566. #u170045_div {
  7567. border-width:0px;
  7568. position:absolute;
  7569. left:0px;
  7570. top:0px;
  7571. width:375px;
  7572. height:40px;
  7573. background:inherit;
  7574. background-color:rgba(255, 255, 255, 1);
  7575. box-sizing:border-box;
  7576. border-width:1px;
  7577. border-style:solid;
  7578. border-color:rgba(215, 215, 215, 1);
  7579. border-left:0px;
  7580. border-top:0px;
  7581. border-right:0px;
  7582. border-radius:0px;
  7583. border-bottom-right-radius:0px;
  7584. border-bottom-left-radius:0px;
  7585. -moz-box-shadow:none;
  7586. -webkit-box-shadow:none;
  7587. box-shadow:none;
  7588. }
  7589. #u170045 {
  7590. border-width:0px;
  7591. position:absolute;
  7592. left:1400px;
  7593. top:67px;
  7594. width:375px;
  7595. height:40px;
  7596. display:flex;
  7597. }
  7598. #u170045 .text {
  7599. position:absolute;
  7600. align-self:center;
  7601. padding:2px 2px 2px 2px;
  7602. box-sizing:border-box;
  7603. width:100%;
  7604. }
  7605. #u170045_text {
  7606. border-width:0px;
  7607. word-wrap:break-word;
  7608. text-transform:none;
  7609. visibility:hidden;
  7610. }
  7611. #u170046 {
  7612. border-width:0px;
  7613. position:absolute;
  7614. left:0px;
  7615. top:0px;
  7616. width:0px;
  7617. height:0px;
  7618. }
  7619. #u170047_div {
  7620. border-width:0px;
  7621. position:absolute;
  7622. left:0px;
  7623. top:0px;
  7624. width:88px;
  7625. height:32px;
  7626. background:inherit;
  7627. background-color:rgba(255, 255, 255, 1);
  7628. box-sizing:border-box;
  7629. border-width:1px;
  7630. border-style:solid;
  7631. border-color:rgba(242, 242, 242, 1);
  7632. border-radius:33px;
  7633. -moz-box-shadow:none;
  7634. -webkit-box-shadow:none;
  7635. box-shadow:none;
  7636. }
  7637. #u170047 {
  7638. border-width:0px;
  7639. position:absolute;
  7640. left:1680px;
  7641. top:71px;
  7642. width:88px;
  7643. height:32px;
  7644. display:flex;
  7645. }
  7646. #u170047 .text {
  7647. position:absolute;
  7648. align-self:center;
  7649. padding:2px 2px 2px 2px;
  7650. box-sizing:border-box;
  7651. width:100%;
  7652. }
  7653. #u170047_text {
  7654. border-width:0px;
  7655. word-wrap:break-word;
  7656. text-transform:none;
  7657. visibility:hidden;
  7658. }
  7659. #u170048 {
  7660. border-width:0px;
  7661. position:absolute;
  7662. left:0px;
  7663. top:0px;
  7664. width:0px;
  7665. height:0px;
  7666. }
  7667. #u170049_img {
  7668. border-width:0px;
  7669. position:absolute;
  7670. left:0px;
  7671. top:0px;
  7672. width:18px;
  7673. height:18px;
  7674. }
  7675. #u170049 {
  7676. border-width:0px;
  7677. position:absolute;
  7678. left:1743px;
  7679. top:78px;
  7680. width:18px;
  7681. height:18px;
  7682. display:flex;
  7683. }
  7684. #u170049 .text {
  7685. position:absolute;
  7686. align-self:center;
  7687. padding:2px 2px 2px 2px;
  7688. box-sizing:border-box;
  7689. width:100%;
  7690. }
  7691. #u170049_text {
  7692. border-width:0px;
  7693. word-wrap:break-word;
  7694. text-transform:none;
  7695. visibility:hidden;
  7696. }
  7697. #u170050_img {
  7698. border-width:0px;
  7699. position:absolute;
  7700. left:0px;
  7701. top:0px;
  7702. width:6px;
  7703. height:6px;
  7704. }
  7705. #u170050 {
  7706. border-width:0px;
  7707. position:absolute;
  7708. left:1749px;
  7709. top:84px;
  7710. width:6px;
  7711. height:6px;
  7712. display:flex;
  7713. }
  7714. #u170050 .text {
  7715. position:absolute;
  7716. align-self:center;
  7717. padding:2px 2px 2px 2px;
  7718. box-sizing:border-box;
  7719. width:100%;
  7720. }
  7721. #u170050_text {
  7722. border-width:0px;
  7723. word-wrap:break-word;
  7724. text-transform:none;
  7725. visibility:hidden;
  7726. }
  7727. #u170051 {
  7728. border-width:0px;
  7729. position:absolute;
  7730. left:0px;
  7731. top:0px;
  7732. width:0px;
  7733. height:0px;
  7734. }
  7735. #u170052_img {
  7736. border-width:0px;
  7737. position:absolute;
  7738. left:0px;
  7739. top:0px;
  7740. width:5px;
  7741. height:5px;
  7742. }
  7743. #u170052 {
  7744. border-width:0px;
  7745. position:absolute;
  7746. left:1694px;
  7747. top:85px;
  7748. width:5px;
  7749. height:5px;
  7750. display:flex;
  7751. }
  7752. #u170052 .text {
  7753. position:absolute;
  7754. align-self:center;
  7755. padding:2px 2px 2px 2px;
  7756. box-sizing:border-box;
  7757. width:100%;
  7758. }
  7759. #u170052_text {
  7760. border-width:0px;
  7761. word-wrap:break-word;
  7762. text-transform:none;
  7763. visibility:hidden;
  7764. }
  7765. #u170053_img {
  7766. border-width:0px;
  7767. position:absolute;
  7768. left:0px;
  7769. top:0px;
  7770. width:5px;
  7771. height:5px;
  7772. }
  7773. #u170053 {
  7774. border-width:0px;
  7775. position:absolute;
  7776. left:1710px;
  7777. top:85px;
  7778. width:5px;
  7779. height:5px;
  7780. display:flex;
  7781. }
  7782. #u170053 .text {
  7783. position:absolute;
  7784. align-self:center;
  7785. padding:2px 2px 2px 2px;
  7786. box-sizing:border-box;
  7787. width:100%;
  7788. }
  7789. #u170053_text {
  7790. border-width:0px;
  7791. word-wrap:break-word;
  7792. text-transform:none;
  7793. visibility:hidden;
  7794. }
  7795. #u170054_img {
  7796. border-width:0px;
  7797. position:absolute;
  7798. left:0px;
  7799. top:0px;
  7800. width:7px;
  7801. height:7px;
  7802. }
  7803. #u170054 {
  7804. border-width:0px;
  7805. position:absolute;
  7806. left:1701px;
  7807. top:84px;
  7808. width:7px;
  7809. height:7px;
  7810. display:flex;
  7811. }
  7812. #u170054 .text {
  7813. position:absolute;
  7814. align-self:center;
  7815. padding:2px 2px 2px 2px;
  7816. box-sizing:border-box;
  7817. width:100%;
  7818. }
  7819. #u170054_text {
  7820. border-width:0px;
  7821. word-wrap:break-word;
  7822. text-transform:none;
  7823. visibility:hidden;
  7824. }
  7825. #u170055_img {
  7826. border-width:0px;
  7827. position:absolute;
  7828. left:0px;
  7829. top:0px;
  7830. width:19px;
  7831. height:2px;
  7832. }
  7833. #u170055 {
  7834. border-width:0px;
  7835. position:absolute;
  7836. left:1718px;
  7837. top:87px;
  7838. width:18px;
  7839. height:1px;
  7840. display:flex;
  7841. -webkit-transform:rotate(90deg);
  7842. -moz-transform:rotate(90deg);
  7843. -ms-transform:rotate(90deg);
  7844. transform:rotate(90deg);
  7845. }
  7846. #u170055 .text {
  7847. position:absolute;
  7848. align-self:center;
  7849. padding:2px 2px 2px 2px;
  7850. box-sizing:border-box;
  7851. width:100%;
  7852. }
  7853. #u170055_text {
  7854. border-width:0px;
  7855. word-wrap:break-word;
  7856. text-transform:none;
  7857. visibility:hidden;
  7858. }
  7859. #u170056_img {
  7860. border-width:0px;
  7861. position:absolute;
  7862. left:0px;
  7863. top:0px;
  7864. width:375px;
  7865. height:44px;
  7866. }
  7867. #u170056 {
  7868. border-width:0px;
  7869. position:absolute;
  7870. left:1400px;
  7871. top:24px;
  7872. width:375px;
  7873. height:44px;
  7874. display:flex;
  7875. }
  7876. #u170056 .text {
  7877. position:absolute;
  7878. align-self:center;
  7879. padding:2px 2px 2px 2px;
  7880. box-sizing:border-box;
  7881. width:100%;
  7882. }
  7883. #u170056_text {
  7884. border-width:0px;
  7885. word-wrap:break-word;
  7886. text-transform:none;
  7887. visibility:hidden;
  7888. }
  7889. #u170057_div {
  7890. border-width:0px;
  7891. position:absolute;
  7892. left:0px;
  7893. top:0px;
  7894. width:375px;
  7895. height:50px;
  7896. background:inherit;
  7897. background-color:rgba(255, 255, 255, 1);
  7898. box-sizing:border-box;
  7899. border-width:1px;
  7900. border-style:solid;
  7901. border-color:rgba(242, 242, 242, 1);
  7902. border-radius:26px;
  7903. border-top-left-radius:0px;
  7904. border-top-right-radius:0px;
  7905. -moz-box-shadow:none;
  7906. -webkit-box-shadow:none;
  7907. box-shadow:none;
  7908. }
  7909. #u170057 {
  7910. border-width:0px;
  7911. position:absolute;
  7912. left:1400px;
  7913. top:788px;
  7914. width:375px;
  7915. height:50px;
  7916. display:flex;
  7917. }
  7918. #u170057 .text {
  7919. position:absolute;
  7920. align-self:center;
  7921. padding:2px 2px 2px 2px;
  7922. box-sizing:border-box;
  7923. width:100%;
  7924. }
  7925. #u170057_text {
  7926. border-width:0px;
  7927. word-wrap:break-word;
  7928. text-transform:none;
  7929. visibility:hidden;
  7930. }
  7931. #u170058 {
  7932. border-width:0px;
  7933. position:absolute;
  7934. left:0px;
  7935. top:0px;
  7936. width:0px;
  7937. height:0px;
  7938. }
  7939. #u170059_img {
  7940. border-width:0px;
  7941. position:absolute;
  7942. left:0px;
  7943. top:0px;
  7944. width:24px;
  7945. height:24px;
  7946. }
  7947. #u170059 {
  7948. border-width:0px;
  7949. position:absolute;
  7950. left:1440px;
  7951. top:792px;
  7952. width:24px;
  7953. height:24px;
  7954. display:flex;
  7955. font-size:8px;
  7956. }
  7957. #u170059 .text {
  7958. position:absolute;
  7959. align-self:center;
  7960. padding:2px 2px 2px 2px;
  7961. box-sizing:border-box;
  7962. width:100%;
  7963. }
  7964. #u170059_text {
  7965. border-width:0px;
  7966. word-wrap:break-word;
  7967. text-transform:none;
  7968. }
  7969. #u170060_div {
  7970. border-width:0px;
  7971. position:absolute;
  7972. left:0px;
  7973. top:0px;
  7974. width:25px;
  7975. height:17px;
  7976. background:inherit;
  7977. background-color:rgba(255, 255, 255, 0);
  7978. border:none;
  7979. border-radius:0px;
  7980. -moz-box-shadow:none;
  7981. -webkit-box-shadow:none;
  7982. box-shadow:none;
  7983. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7984. font-weight:400;
  7985. font-style:normal;
  7986. font-size:12px;
  7987. }
  7988. #u170060 {
  7989. border-width:0px;
  7990. position:absolute;
  7991. left:1440px;
  7992. top:817px;
  7993. width:25px;
  7994. height:17px;
  7995. display:flex;
  7996. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7997. font-weight:400;
  7998. font-style:normal;
  7999. font-size:12px;
  8000. }
  8001. #u170060 .text {
  8002. position:absolute;
  8003. align-self:flex-start;
  8004. padding:0px 0px 0px 0px;
  8005. box-sizing:border-box;
  8006. width:100%;
  8007. }
  8008. #u170060_text {
  8009. border-width:0px;
  8010. white-space:nowrap;
  8011. text-transform:none;
  8012. }
  8013. #u170061 {
  8014. border-width:0px;
  8015. position:absolute;
  8016. left:0px;
  8017. top:0px;
  8018. width:0px;
  8019. height:0px;
  8020. }
  8021. #u170062_img {
  8022. border-width:0px;
  8023. position:absolute;
  8024. left:0px;
  8025. top:0px;
  8026. width:24px;
  8027. height:24px;
  8028. }
  8029. #u170062 {
  8030. border-width:0px;
  8031. position:absolute;
  8032. left:1710px;
  8033. top:794px;
  8034. width:24px;
  8035. height:24px;
  8036. display:flex;
  8037. font-size:8px;
  8038. }
  8039. #u170062 .text {
  8040. position:absolute;
  8041. align-self:center;
  8042. padding:2px 2px 2px 2px;
  8043. box-sizing:border-box;
  8044. width:100%;
  8045. }
  8046. #u170062_text {
  8047. border-width:0px;
  8048. word-wrap:break-word;
  8049. text-transform:none;
  8050. }
  8051. #u170063_div {
  8052. border-width:0px;
  8053. position:absolute;
  8054. left:0px;
  8055. top:0px;
  8056. width:25px;
  8057. height:17px;
  8058. background:inherit;
  8059. background-color:rgba(255, 255, 255, 0);
  8060. border:none;
  8061. border-radius:0px;
  8062. -moz-box-shadow:none;
  8063. -webkit-box-shadow:none;
  8064. box-shadow:none;
  8065. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8066. font-weight:400;
  8067. font-style:normal;
  8068. font-size:12px;
  8069. }
  8070. #u170063 {
  8071. border-width:0px;
  8072. position:absolute;
  8073. left:1710px;
  8074. top:819px;
  8075. width:25px;
  8076. height:17px;
  8077. display:flex;
  8078. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8079. font-weight:400;
  8080. font-style:normal;
  8081. font-size:12px;
  8082. }
  8083. #u170063 .text {
  8084. position:absolute;
  8085. align-self:flex-start;
  8086. padding:0px 0px 0px 0px;
  8087. box-sizing:border-box;
  8088. width:100%;
  8089. }
  8090. #u170063_text {
  8091. border-width:0px;
  8092. white-space:nowrap;
  8093. text-transform:none;
  8094. }
  8095. #u170064_div {
  8096. border-width:0px;
  8097. position:absolute;
  8098. left:0px;
  8099. top:0px;
  8100. width:375px;
  8101. height:681px;
  8102. background:inherit;
  8103. background-color:rgba(242, 242, 242, 0.462745098039216);
  8104. border:none;
  8105. border-radius:0px;
  8106. -moz-box-shadow:none;
  8107. -webkit-box-shadow:none;
  8108. box-shadow:none;
  8109. }
  8110. #u170064 {
  8111. border-width:0px;
  8112. position:absolute;
  8113. left:1400px;
  8114. top:107px;
  8115. width:375px;
  8116. height:681px;
  8117. display:flex;
  8118. }
  8119. #u170064 .text {
  8120. position:absolute;
  8121. align-self:center;
  8122. padding:2px 2px 2px 2px;
  8123. box-sizing:border-box;
  8124. width:100%;
  8125. }
  8126. #u170064_text {
  8127. border-width:0px;
  8128. word-wrap:break-word;
  8129. text-transform:none;
  8130. visibility:hidden;
  8131. }
  8132. #u170065 {
  8133. border-width:0px;
  8134. position:absolute;
  8135. left:0px;
  8136. top:0px;
  8137. width:0px;
  8138. height:0px;
  8139. }
  8140. #u170066_img {
  8141. border-width:0px;
  8142. position:absolute;
  8143. left:0px;
  8144. top:0px;
  8145. width:24px;
  8146. height:24px;
  8147. }
  8148. #u170066 {
  8149. border-width:0px;
  8150. position:absolute;
  8151. left:1622px;
  8152. top:792px;
  8153. width:24px;
  8154. height:24px;
  8155. display:flex;
  8156. font-size:8px;
  8157. }
  8158. #u170066 .text {
  8159. position:absolute;
  8160. align-self:center;
  8161. padding:2px 2px 2px 2px;
  8162. box-sizing:border-box;
  8163. width:100%;
  8164. }
  8165. #u170066_text {
  8166. border-width:0px;
  8167. word-wrap:break-word;
  8168. text-transform:none;
  8169. }
  8170. #u170067_div {
  8171. border-width:0px;
  8172. position:absolute;
  8173. left:0px;
  8174. top:0px;
  8175. width:37px;
  8176. height:17px;
  8177. background:inherit;
  8178. background-color:rgba(255, 255, 255, 0);
  8179. border:none;
  8180. border-radius:0px;
  8181. -moz-box-shadow:none;
  8182. -webkit-box-shadow:none;
  8183. box-shadow:none;
  8184. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8185. font-weight:400;
  8186. font-style:normal;
  8187. font-size:12px;
  8188. }
  8189. #u170067 {
  8190. border-width:0px;
  8191. position:absolute;
  8192. left:1616px;
  8193. top:817px;
  8194. width:37px;
  8195. height:17px;
  8196. display:flex;
  8197. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8198. font-weight:400;
  8199. font-style:normal;
  8200. font-size:12px;
  8201. }
  8202. #u170067 .text {
  8203. position:absolute;
  8204. align-self:flex-start;
  8205. padding:0px 0px 0px 0px;
  8206. box-sizing:border-box;
  8207. width:100%;
  8208. }
  8209. #u170067_text {
  8210. border-width:0px;
  8211. white-space:nowrap;
  8212. text-transform:none;
  8213. }
  8214. #u170068 {
  8215. border-width:0px;
  8216. position:absolute;
  8217. left:0px;
  8218. top:0px;
  8219. width:0px;
  8220. height:0px;
  8221. }
  8222. #u170069_img {
  8223. border-width:0px;
  8224. position:absolute;
  8225. left:0px;
  8226. top:0px;
  8227. width:24px;
  8228. height:24px;
  8229. }
  8230. #u170069 {
  8231. border-width:0px;
  8232. position:absolute;
  8233. left:1528px;
  8234. top:792px;
  8235. width:24px;
  8236. height:24px;
  8237. display:flex;
  8238. font-size:8px;
  8239. }
  8240. #u170069 .text {
  8241. position:absolute;
  8242. align-self:center;
  8243. padding:2px 2px 2px 2px;
  8244. box-sizing:border-box;
  8245. width:100%;
  8246. }
  8247. #u170069_text {
  8248. border-width:0px;
  8249. word-wrap:break-word;
  8250. text-transform:none;
  8251. }
  8252. #u170070_div {
  8253. border-width:0px;
  8254. position:absolute;
  8255. left:0px;
  8256. top:0px;
  8257. width:37px;
  8258. height:17px;
  8259. background:inherit;
  8260. background-color:rgba(255, 255, 255, 0);
  8261. border:none;
  8262. border-radius:0px;
  8263. -moz-box-shadow:none;
  8264. -webkit-box-shadow:none;
  8265. box-shadow:none;
  8266. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8267. font-weight:400;
  8268. font-style:normal;
  8269. font-size:12px;
  8270. }
  8271. #u170070 {
  8272. border-width:0px;
  8273. position:absolute;
  8274. left:1522px;
  8275. top:817px;
  8276. width:37px;
  8277. height:17px;
  8278. display:flex;
  8279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8280. font-weight:400;
  8281. font-style:normal;
  8282. font-size:12px;
  8283. }
  8284. #u170070 .text {
  8285. position:absolute;
  8286. align-self:flex-start;
  8287. padding:0px 0px 0px 0px;
  8288. box-sizing:border-box;
  8289. width:100%;
  8290. }
  8291. #u170070_text {
  8292. border-width:0px;
  8293. white-space:nowrap;
  8294. text-transform:none;
  8295. }
  8296. #u170071_div {
  8297. border-width:0px;
  8298. position:absolute;
  8299. left:0px;
  8300. top:0px;
  8301. width:375px;
  8302. height:732px;
  8303. background:inherit;
  8304. background-color:rgba(242, 242, 242, 0.996078431372549);
  8305. border:none;
  8306. border-top:0px;
  8307. border-radius:28px;
  8308. border-top-left-radius:0px;
  8309. border-top-right-radius:0px;
  8310. -moz-box-shadow:none;
  8311. -webkit-box-shadow:none;
  8312. box-shadow:none;
  8313. }
  8314. #u170071 {
  8315. border-width:0px;
  8316. position:absolute;
  8317. left:1400px;
  8318. top:107px;
  8319. width:375px;
  8320. height:732px;
  8321. display:flex;
  8322. }
  8323. #u170071 .text {
  8324. position:absolute;
  8325. align-self:center;
  8326. padding:2px 2px 2px 2px;
  8327. box-sizing:border-box;
  8328. width:100%;
  8329. }
  8330. #u170071_text {
  8331. border-width:0px;
  8332. word-wrap:break-word;
  8333. text-transform:none;
  8334. visibility:hidden;
  8335. }
  8336. #u170072_div {
  8337. border-width:0px;
  8338. position:absolute;
  8339. left:0px;
  8340. top:0px;
  8341. width:375px;
  8342. height:100px;
  8343. background:inherit;
  8344. background-color:rgba(255, 255, 255, 1);
  8345. border:none;
  8346. border-left:0px;
  8347. border-top:0px;
  8348. border-right:0px;
  8349. border-radius:0px;
  8350. border-bottom-right-radius:0px;
  8351. border-bottom-left-radius:0px;
  8352. -moz-box-shadow:none;
  8353. -webkit-box-shadow:none;
  8354. box-shadow:none;
  8355. }
  8356. #u170072 {
  8357. border-width:0px;
  8358. position:absolute;
  8359. left:1400px;
  8360. top:107px;
  8361. width:375px;
  8362. height:100px;
  8363. display:flex;
  8364. }
  8365. #u170072 .text {
  8366. position:absolute;
  8367. align-self:center;
  8368. padding:2px 2px 2px 2px;
  8369. box-sizing:border-box;
  8370. width:100%;
  8371. }
  8372. #u170072_text {
  8373. border-width:0px;
  8374. word-wrap:break-word;
  8375. text-transform:none;
  8376. visibility:hidden;
  8377. }
  8378. #u170073_div {
  8379. border-width:0px;
  8380. position:absolute;
  8381. left:0px;
  8382. top:0px;
  8383. width:375px;
  8384. height:40px;
  8385. background:inherit;
  8386. background-color:rgba(255, 255, 255, 1);
  8387. box-sizing:border-box;
  8388. border-width:1px;
  8389. border-style:solid;
  8390. border-color:rgba(215, 215, 215, 1);
  8391. border-left:0px;
  8392. border-top:0px;
  8393. border-right:0px;
  8394. border-radius:0px;
  8395. border-bottom-right-radius:0px;
  8396. border-bottom-left-radius:0px;
  8397. -moz-box-shadow:none;
  8398. -webkit-box-shadow:none;
  8399. box-shadow:none;
  8400. }
  8401. #u170073 {
  8402. border-width:0px;
  8403. position:absolute;
  8404. left:1400px;
  8405. top:67px;
  8406. width:375px;
  8407. height:40px;
  8408. display:flex;
  8409. }
  8410. #u170073 .text {
  8411. position:absolute;
  8412. align-self:center;
  8413. padding:2px 2px 2px 2px;
  8414. box-sizing:border-box;
  8415. width:100%;
  8416. }
  8417. #u170073_text {
  8418. border-width:0px;
  8419. word-wrap:break-word;
  8420. text-transform:none;
  8421. visibility:hidden;
  8422. }
  8423. #u170074_img {
  8424. border-width:0px;
  8425. position:absolute;
  8426. left:0px;
  8427. top:0px;
  8428. width:375px;
  8429. height:44px;
  8430. }
  8431. #u170074 {
  8432. border-width:0px;
  8433. position:absolute;
  8434. left:1400px;
  8435. top:24px;
  8436. width:375px;
  8437. height:44px;
  8438. display:flex;
  8439. }
  8440. #u170074 .text {
  8441. position:absolute;
  8442. align-self:center;
  8443. padding:2px 2px 2px 2px;
  8444. box-sizing:border-box;
  8445. width:100%;
  8446. }
  8447. #u170074_text {
  8448. border-width:0px;
  8449. word-wrap:break-word;
  8450. text-transform:none;
  8451. visibility:hidden;
  8452. }
  8453. #u170075 {
  8454. border-width:0px;
  8455. position:absolute;
  8456. left:0px;
  8457. top:0px;
  8458. width:0px;
  8459. height:0px;
  8460. }
  8461. #u170076_div {
  8462. border-width:0px;
  8463. position:absolute;
  8464. left:0px;
  8465. top:0px;
  8466. width:88px;
  8467. height:32px;
  8468. background:inherit;
  8469. background-color:rgba(255, 255, 255, 1);
  8470. box-sizing:border-box;
  8471. border-width:1px;
  8472. border-style:solid;
  8473. border-color:rgba(242, 242, 242, 1);
  8474. border-radius:33px;
  8475. -moz-box-shadow:none;
  8476. -webkit-box-shadow:none;
  8477. box-shadow:none;
  8478. }
  8479. #u170076 {
  8480. border-width:0px;
  8481. position:absolute;
  8482. left:1680px;
  8483. top:71px;
  8484. width:88px;
  8485. height:32px;
  8486. display:flex;
  8487. }
  8488. #u170076 .text {
  8489. position:absolute;
  8490. align-self:center;
  8491. padding:2px 2px 2px 2px;
  8492. box-sizing:border-box;
  8493. width:100%;
  8494. }
  8495. #u170076_text {
  8496. border-width:0px;
  8497. word-wrap:break-word;
  8498. text-transform:none;
  8499. visibility:hidden;
  8500. }
  8501. #u170077 {
  8502. border-width:0px;
  8503. position:absolute;
  8504. left:0px;
  8505. top:0px;
  8506. width:0px;
  8507. height:0px;
  8508. }
  8509. #u170078_img {
  8510. border-width:0px;
  8511. position:absolute;
  8512. left:0px;
  8513. top:0px;
  8514. width:18px;
  8515. height:18px;
  8516. }
  8517. #u170078 {
  8518. border-width:0px;
  8519. position:absolute;
  8520. left:1743px;
  8521. top:78px;
  8522. width:18px;
  8523. height:18px;
  8524. display:flex;
  8525. }
  8526. #u170078 .text {
  8527. position:absolute;
  8528. align-self:center;
  8529. padding:2px 2px 2px 2px;
  8530. box-sizing:border-box;
  8531. width:100%;
  8532. }
  8533. #u170078_text {
  8534. border-width:0px;
  8535. word-wrap:break-word;
  8536. text-transform:none;
  8537. visibility:hidden;
  8538. }
  8539. #u170079_img {
  8540. border-width:0px;
  8541. position:absolute;
  8542. left:0px;
  8543. top:0px;
  8544. width:6px;
  8545. height:6px;
  8546. }
  8547. #u170079 {
  8548. border-width:0px;
  8549. position:absolute;
  8550. left:1749px;
  8551. top:84px;
  8552. width:6px;
  8553. height:6px;
  8554. display:flex;
  8555. }
  8556. #u170079 .text {
  8557. position:absolute;
  8558. align-self:center;
  8559. padding:2px 2px 2px 2px;
  8560. box-sizing:border-box;
  8561. width:100%;
  8562. }
  8563. #u170079_text {
  8564. border-width:0px;
  8565. word-wrap:break-word;
  8566. text-transform:none;
  8567. visibility:hidden;
  8568. }
  8569. #u170080 {
  8570. border-width:0px;
  8571. position:absolute;
  8572. left:0px;
  8573. top:0px;
  8574. width:0px;
  8575. height:0px;
  8576. }
  8577. #u170081_img {
  8578. border-width:0px;
  8579. position:absolute;
  8580. left:0px;
  8581. top:0px;
  8582. width:5px;
  8583. height:5px;
  8584. }
  8585. #u170081 {
  8586. border-width:0px;
  8587. position:absolute;
  8588. left:1694px;
  8589. top:85px;
  8590. width:5px;
  8591. height:5px;
  8592. display:flex;
  8593. }
  8594. #u170081 .text {
  8595. position:absolute;
  8596. align-self:center;
  8597. padding:2px 2px 2px 2px;
  8598. box-sizing:border-box;
  8599. width:100%;
  8600. }
  8601. #u170081_text {
  8602. border-width:0px;
  8603. word-wrap:break-word;
  8604. text-transform:none;
  8605. visibility:hidden;
  8606. }
  8607. #u170082_img {
  8608. border-width:0px;
  8609. position:absolute;
  8610. left:0px;
  8611. top:0px;
  8612. width:5px;
  8613. height:5px;
  8614. }
  8615. #u170082 {
  8616. border-width:0px;
  8617. position:absolute;
  8618. left:1710px;
  8619. top:85px;
  8620. width:5px;
  8621. height:5px;
  8622. display:flex;
  8623. }
  8624. #u170082 .text {
  8625. position:absolute;
  8626. align-self:center;
  8627. padding:2px 2px 2px 2px;
  8628. box-sizing:border-box;
  8629. width:100%;
  8630. }
  8631. #u170082_text {
  8632. border-width:0px;
  8633. word-wrap:break-word;
  8634. text-transform:none;
  8635. visibility:hidden;
  8636. }
  8637. #u170083_img {
  8638. border-width:0px;
  8639. position:absolute;
  8640. left:0px;
  8641. top:0px;
  8642. width:7px;
  8643. height:7px;
  8644. }
  8645. #u170083 {
  8646. border-width:0px;
  8647. position:absolute;
  8648. left:1701px;
  8649. top:84px;
  8650. width:7px;
  8651. height:7px;
  8652. display:flex;
  8653. }
  8654. #u170083 .text {
  8655. position:absolute;
  8656. align-self:center;
  8657. padding:2px 2px 2px 2px;
  8658. box-sizing:border-box;
  8659. width:100%;
  8660. }
  8661. #u170083_text {
  8662. border-width:0px;
  8663. word-wrap:break-word;
  8664. text-transform:none;
  8665. visibility:hidden;
  8666. }
  8667. #u170084_img {
  8668. border-width:0px;
  8669. position:absolute;
  8670. left:0px;
  8671. top:0px;
  8672. width:19px;
  8673. height:2px;
  8674. }
  8675. #u170084 {
  8676. border-width:0px;
  8677. position:absolute;
  8678. left:1718px;
  8679. top:87px;
  8680. width:18px;
  8681. height:1px;
  8682. display:flex;
  8683. -webkit-transform:rotate(90deg);
  8684. -moz-transform:rotate(90deg);
  8685. -ms-transform:rotate(90deg);
  8686. transform:rotate(90deg);
  8687. }
  8688. #u170084 .text {
  8689. position:absolute;
  8690. align-self:center;
  8691. padding:2px 2px 2px 2px;
  8692. box-sizing:border-box;
  8693. width:100%;
  8694. }
  8695. #u170084_text {
  8696. border-width:0px;
  8697. word-wrap:break-word;
  8698. text-transform:none;
  8699. visibility:hidden;
  8700. }
  8701. #u170085_div {
  8702. border-width:0px;
  8703. position:absolute;
  8704. left:0px;
  8705. top:0px;
  8706. width:33px;
  8707. height:22px;
  8708. background:inherit;
  8709. background-color:rgba(255, 255, 255, 0);
  8710. border:none;
  8711. border-radius:0px;
  8712. -moz-box-shadow:none;
  8713. -webkit-box-shadow:none;
  8714. box-shadow:none;
  8715. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8716. font-weight:400;
  8717. font-style:normal;
  8718. font-size:16px;
  8719. color:#000000;
  8720. }
  8721. #u170085 {
  8722. border-width:0px;
  8723. position:absolute;
  8724. left:1435px;
  8725. top:76px;
  8726. width:33px;
  8727. height:22px;
  8728. display:flex;
  8729. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8730. font-weight:400;
  8731. font-style:normal;
  8732. font-size:16px;
  8733. color:#000000;
  8734. }
  8735. #u170085 .text {
  8736. position:absolute;
  8737. align-self:flex-start;
  8738. padding:0px 0px 0px 0px;
  8739. box-sizing:border-box;
  8740. width:100%;
  8741. }
  8742. #u170085_text {
  8743. border-width:0px;
  8744. white-space:nowrap;
  8745. text-transform:none;
  8746. }
  8747. #u170086_div {
  8748. border-width:0px;
  8749. position:absolute;
  8750. left:0px;
  8751. top:0px;
  8752. width:12px;
  8753. height:12px;
  8754. background:inherit;
  8755. background-color:rgba(255, 255, 255, 0);
  8756. box-sizing:border-box;
  8757. border-width:2px;
  8758. border-style:solid;
  8759. border-color:rgba(51, 51, 51, 1);
  8760. border-right:0px;
  8761. border-bottom:0px;
  8762. border-radius:0px;
  8763. border-top-right-radius:0px;
  8764. border-bottom-left-radius:0px;
  8765. -moz-box-shadow:none;
  8766. -webkit-box-shadow:none;
  8767. box-shadow:none;
  8768. }
  8769. #u170086 {
  8770. border-width:0px;
  8771. position:absolute;
  8772. left:1415px;
  8773. top:81px;
  8774. width:12px;
  8775. height:12px;
  8776. display:flex;
  8777. -webkit-transform:rotate(315deg);
  8778. -moz-transform:rotate(315deg);
  8779. -ms-transform:rotate(315deg);
  8780. transform:rotate(315deg);
  8781. }
  8782. #u170086 .text {
  8783. position:absolute;
  8784. align-self:center;
  8785. padding:2px 2px 2px 2px;
  8786. box-sizing:border-box;
  8787. width:100%;
  8788. }
  8789. #u170086_text {
  8790. border-width:0px;
  8791. word-wrap:break-word;
  8792. text-transform:none;
  8793. visibility:hidden;
  8794. }
  8795. #u170087 {
  8796. border-width:0px;
  8797. position:absolute;
  8798. left:0px;
  8799. top:0px;
  8800. width:0px;
  8801. height:0px;
  8802. }
  8803. #u170088_img {
  8804. border-width:0px;
  8805. position:absolute;
  8806. left:0px;
  8807. top:0px;
  8808. width:355px;
  8809. height:267px;
  8810. }
  8811. #u170088 {
  8812. border-width:0px;
  8813. position:absolute;
  8814. left:1410px;
  8815. top:217px;
  8816. width:355px;
  8817. height:267px;
  8818. display:flex;
  8819. }
  8820. #u170088 .text {
  8821. position:absolute;
  8822. align-self:center;
  8823. padding:2px 2px 2px 2px;
  8824. box-sizing:border-box;
  8825. width:100%;
  8826. }
  8827. #u170088_text {
  8828. border-width:0px;
  8829. word-wrap:break-word;
  8830. text-transform:none;
  8831. visibility:hidden;
  8832. }
  8833. #u170089_div {
  8834. border-width:0px;
  8835. position:absolute;
  8836. left:0px;
  8837. top:0px;
  8838. width:325px;
  8839. height:240px;
  8840. background:inherit;
  8841. background-color:rgba(255, 255, 255, 0);
  8842. border:none;
  8843. border-left:0px;
  8844. border-top:0px;
  8845. border-right:0px;
  8846. border-radius:0px;
  8847. border-bottom-right-radius:0px;
  8848. border-bottom-left-radius:0px;
  8849. -moz-box-shadow:none;
  8850. -webkit-box-shadow:none;
  8851. box-shadow:none;
  8852. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8853. font-weight:400;
  8854. font-style:normal;
  8855. font-size:12px;
  8856. line-height:30px;
  8857. }
  8858. #u170089 {
  8859. border-width:0px;
  8860. position:absolute;
  8861. left:1426px;
  8862. top:228px;
  8863. width:325px;
  8864. height:240px;
  8865. display:flex;
  8866. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8867. font-weight:400;
  8868. font-style:normal;
  8869. font-size:12px;
  8870. line-height:30px;
  8871. }
  8872. #u170089 .text {
  8873. position:absolute;
  8874. align-self:flex-start;
  8875. padding:0px 0px 0px 0px;
  8876. box-sizing:border-box;
  8877. width:100%;
  8878. }
  8879. #u170089_text {
  8880. border-width:0px;
  8881. word-wrap:break-word;
  8882. text-transform:none;
  8883. }
  8884. #u170090_div {
  8885. border-width:0px;
  8886. position:absolute;
  8887. left:0px;
  8888. top:0px;
  8889. width:132px;
  8890. height:30px;
  8891. background:inherit;
  8892. background-color:rgba(255, 255, 255, 0);
  8893. border:none;
  8894. border-left:0px;
  8895. border-top:0px;
  8896. border-right:0px;
  8897. border-radius:0px;
  8898. border-bottom-right-radius:0px;
  8899. border-bottom-left-radius:0px;
  8900. -moz-box-shadow:none;
  8901. -webkit-box-shadow:none;
  8902. box-shadow:none;
  8903. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8904. font-weight:500;
  8905. font-style:normal;
  8906. font-size:14px;
  8907. line-height:30px;
  8908. }
  8909. #u170090 {
  8910. border-width:0px;
  8911. position:absolute;
  8912. left:1427px;
  8913. top:117px;
  8914. width:132px;
  8915. height:30px;
  8916. display:flex;
  8917. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8918. font-weight:500;
  8919. font-style:normal;
  8920. font-size:14px;
  8921. line-height:30px;
  8922. }
  8923. #u170090 .text {
  8924. position:absolute;
  8925. align-self:flex-start;
  8926. padding:0px 0px 0px 0px;
  8927. box-sizing:border-box;
  8928. width:100%;
  8929. }
  8930. #u170090_text {
  8931. border-width:0px;
  8932. white-space:nowrap;
  8933. text-transform:none;
  8934. }
  8935. #u170091_div {
  8936. border-width:0px;
  8937. position:absolute;
  8938. left:0px;
  8939. top:0px;
  8940. width:325px;
  8941. height:50px;
  8942. background:inherit;
  8943. background-color:rgba(255, 255, 255, 0);
  8944. border:none;
  8945. border-left:0px;
  8946. border-top:0px;
  8947. border-right:0px;
  8948. border-radius:0px;
  8949. border-bottom-right-radius:0px;
  8950. border-bottom-left-radius:0px;
  8951. -moz-box-shadow:none;
  8952. -webkit-box-shadow:none;
  8953. box-shadow:none;
  8954. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8955. font-weight:400;
  8956. font-style:normal;
  8957. font-size:12px;
  8958. line-height:25px;
  8959. }
  8960. #u170091 {
  8961. border-width:0px;
  8962. position:absolute;
  8963. left:1427px;
  8964. top:147px;
  8965. width:325px;
  8966. height:50px;
  8967. display:flex;
  8968. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8969. font-weight:400;
  8970. font-style:normal;
  8971. font-size:12px;
  8972. line-height:25px;
  8973. }
  8974. #u170091 .text {
  8975. position:absolute;
  8976. align-self:flex-start;
  8977. padding:0px 0px 0px 0px;
  8978. box-sizing:border-box;
  8979. width:100%;
  8980. }
  8981. #u170091_text {
  8982. border-width:0px;
  8983. word-wrap:break-word;
  8984. text-transform:none;
  8985. }
  8986. #u170092 {
  8987. border-width:0px;
  8988. position:absolute;
  8989. left:0px;
  8990. top:0px;
  8991. width:0px;
  8992. height:0px;
  8993. }
  8994. #u170093_div {
  8995. border-width:0px;
  8996. position:absolute;
  8997. left:0px;
  8998. top:0px;
  8999. width:355px;
  9000. height:192px;
  9001. background:inherit;
  9002. background-color:rgba(255, 255, 255, 1);
  9003. border:none;
  9004. border-radius:0px;
  9005. -moz-box-shadow:none;
  9006. -webkit-box-shadow:none;
  9007. box-shadow:none;
  9008. }
  9009. #u170093 {
  9010. border-width:0px;
  9011. position:absolute;
  9012. left:1410px;
  9013. top:544px;
  9014. width:355px;
  9015. height:192px;
  9016. display:flex;
  9017. }
  9018. #u170093 .text {
  9019. position:absolute;
  9020. align-self:center;
  9021. padding:2px 2px 2px 2px;
  9022. box-sizing:border-box;
  9023. width:100%;
  9024. }
  9025. #u170093_text {
  9026. border-width:0px;
  9027. word-wrap:break-word;
  9028. text-transform:none;
  9029. visibility:hidden;
  9030. }
  9031. #u170094_div {
  9032. border-width:0px;
  9033. position:absolute;
  9034. left:0px;
  9035. top:0px;
  9036. width:103px;
  9037. height:24px;
  9038. background:inherit;
  9039. background-color:rgba(255, 255, 255, 0);
  9040. border:none;
  9041. border-top:0px;
  9042. border-right:0px;
  9043. border-bottom:0px;
  9044. border-radius:0px;
  9045. border-top-left-radius:0px;
  9046. border-bottom-left-radius:0px;
  9047. -moz-box-shadow:none;
  9048. -webkit-box-shadow:none;
  9049. box-shadow:none;
  9050. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9051. font-weight:400;
  9052. font-style:normal;
  9053. font-size:10px;
  9054. color:#AAAAAA;
  9055. }
  9056. #u170094 {
  9057. border-width:0px;
  9058. position:absolute;
  9059. left:1645px;
  9060. top:594px;
  9061. width:103px;
  9062. height:24px;
  9063. display:flex;
  9064. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9065. font-weight:400;
  9066. font-style:normal;
  9067. font-size:10px;
  9068. color:#AAAAAA;
  9069. }
  9070. #u170094 .text {
  9071. position:absolute;
  9072. align-self:flex-start;
  9073. padding:5px 0px 5px 0px;
  9074. box-sizing:border-box;
  9075. width:100%;
  9076. }
  9077. #u170094_text {
  9078. border-width:0px;
  9079. white-space:nowrap;
  9080. text-transform:none;
  9081. }
  9082. #u170095 {
  9083. border-width:0px;
  9084. position:absolute;
  9085. left:0px;
  9086. top:0px;
  9087. width:0px;
  9088. height:0px;
  9089. }
  9090. #u170096_div {
  9091. border-width:0px;
  9092. position:absolute;
  9093. left:0px;
  9094. top:0px;
  9095. width:43px;
  9096. height:30px;
  9097. background:inherit;
  9098. background-color:rgba(255, 255, 255, 0);
  9099. border:none;
  9100. border-top:0px;
  9101. border-right:0px;
  9102. border-bottom:0px;
  9103. border-radius:0px;
  9104. border-top-left-radius:0px;
  9105. border-bottom-left-radius:0px;
  9106. -moz-box-shadow:none;
  9107. -webkit-box-shadow:none;
  9108. box-shadow:none;
  9109. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9110. font-weight:400;
  9111. font-style:normal;
  9112. font-size:14px;
  9113. }
  9114. #u170096 {
  9115. border-width:0px;
  9116. position:absolute;
  9117. left:1478px;
  9118. top:596px;
  9119. width:43px;
  9120. height:30px;
  9121. display:flex;
  9122. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9123. font-weight:400;
  9124. font-style:normal;
  9125. font-size:14px;
  9126. }
  9127. #u170096 .text {
  9128. position:absolute;
  9129. align-self:flex-start;
  9130. padding:0px 0px 0px 0px;
  9131. box-sizing:border-box;
  9132. width:100%;
  9133. }
  9134. #u170096_text {
  9135. border-width:0px;
  9136. white-space:nowrap;
  9137. text-transform:none;
  9138. }
  9139. #u170097_div {
  9140. border-width:0px;
  9141. position:absolute;
  9142. left:0px;
  9143. top:0px;
  9144. width:12px;
  9145. height:16px;
  9146. background:inherit;
  9147. background-color:rgba(255, 255, 255, 0);
  9148. border:none;
  9149. border-top:0px;
  9150. border-right:0px;
  9151. border-bottom:0px;
  9152. border-radius:0px;
  9153. border-top-left-radius:0px;
  9154. border-bottom-left-radius:0px;
  9155. -moz-box-shadow:none;
  9156. -webkit-box-shadow:none;
  9157. box-shadow:none;
  9158. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9159. font-weight:400;
  9160. font-style:normal;
  9161. font-size:11px;
  9162. color:#AAAAAA;
  9163. }
  9164. #u170097 {
  9165. border-width:0px;
  9166. position:absolute;
  9167. left:1478px;
  9168. top:624px;
  9169. width:12px;
  9170. height:16px;
  9171. display:flex;
  9172. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9173. font-weight:400;
  9174. font-style:normal;
  9175. font-size:11px;
  9176. color:#AAAAAA;
  9177. }
  9178. #u170097 .text {
  9179. position:absolute;
  9180. align-self:flex-start;
  9181. padding:0px 0px 0px 0px;
  9182. box-sizing:border-box;
  9183. width:100%;
  9184. }
  9185. #u170097_text {
  9186. border-width:0px;
  9187. white-space:nowrap;
  9188. text-transform:none;
  9189. }
  9190. #u170098_div {
  9191. border-width:0px;
  9192. position:absolute;
  9193. left:0px;
  9194. top:0px;
  9195. width:43px;
  9196. height:20px;
  9197. background:inherit;
  9198. background-color:rgba(255, 255, 255, 0);
  9199. border:none;
  9200. border-top:0px;
  9201. border-right:0px;
  9202. border-bottom:0px;
  9203. border-radius:0px;
  9204. border-top-left-radius:0px;
  9205. border-bottom-left-radius:0px;
  9206. -moz-box-shadow:none;
  9207. -webkit-box-shadow:none;
  9208. box-shadow:none;
  9209. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9210. font-weight:400;
  9211. font-style:normal;
  9212. font-size:14px;
  9213. }
  9214. #u170098 {
  9215. border-width:0px;
  9216. position:absolute;
  9217. left:1478px;
  9218. top:666px;
  9219. width:43px;
  9220. height:20px;
  9221. display:flex;
  9222. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9223. font-weight:400;
  9224. font-style:normal;
  9225. font-size:14px;
  9226. }
  9227. #u170098 .text {
  9228. position:absolute;
  9229. align-self:flex-start;
  9230. padding:0px 0px 0px 0px;
  9231. box-sizing:border-box;
  9232. width:100%;
  9233. }
  9234. #u170098_text {
  9235. border-width:0px;
  9236. white-space:nowrap;
  9237. text-transform:none;
  9238. }
  9239. #u170099_div {
  9240. border-width:0px;
  9241. position:absolute;
  9242. left:0px;
  9243. top:0px;
  9244. width:91px;
  9245. height:16px;
  9246. background:inherit;
  9247. background-color:rgba(255, 255, 255, 0);
  9248. border:none;
  9249. border-top:0px;
  9250. border-right:0px;
  9251. border-bottom:0px;
  9252. border-radius:0px;
  9253. border-top-left-radius:0px;
  9254. border-bottom-left-radius:0px;
  9255. -moz-box-shadow:none;
  9256. -webkit-box-shadow:none;
  9257. box-shadow:none;
  9258. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9259. font-weight:400;
  9260. font-style:normal;
  9261. font-size:11px;
  9262. color:#AAAAAA;
  9263. }
  9264. #u170099 {
  9265. border-width:0px;
  9266. position:absolute;
  9267. left:1478px;
  9268. top:694px;
  9269. width:91px;
  9270. height:16px;
  9271. display:flex;
  9272. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9273. font-weight:400;
  9274. font-style:normal;
  9275. font-size:11px;
  9276. color:#AAAAAA;
  9277. }
  9278. #u170099 .text {
  9279. position:absolute;
  9280. align-self:flex-start;
  9281. padding:0px 0px 0px 0px;
  9282. box-sizing:border-box;
  9283. width:100%;
  9284. }
  9285. #u170099_text {
  9286. border-width:0px;
  9287. white-space:nowrap;
  9288. text-transform:none;
  9289. }
  9290. #u170100_div {
  9291. border-width:0px;
  9292. position:absolute;
  9293. left:0px;
  9294. top:0px;
  9295. width:29px;
  9296. height:30px;
  9297. background:inherit;
  9298. background-color:rgba(255, 255, 255, 0);
  9299. border:none;
  9300. border-top:0px;
  9301. border-right:0px;
  9302. border-bottom:0px;
  9303. border-radius:0px;
  9304. border-top-left-radius:0px;
  9305. border-bottom-left-radius:0px;
  9306. -moz-box-shadow:none;
  9307. -webkit-box-shadow:none;
  9308. box-shadow:none;
  9309. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9310. font-weight:400;
  9311. font-style:normal;
  9312. font-size:14px;
  9313. }
  9314. #u170100 {
  9315. border-width:0px;
  9316. position:absolute;
  9317. left:1436px;
  9318. top:552px;
  9319. width:29px;
  9320. height:30px;
  9321. display:flex;
  9322. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9323. font-weight:400;
  9324. font-style:normal;
  9325. font-size:14px;
  9326. }
  9327. #u170100 .text {
  9328. position:absolute;
  9329. align-self:flex-start;
  9330. padding:5px 0px 5px 0px;
  9331. box-sizing:border-box;
  9332. width:100%;
  9333. }
  9334. #u170100_text {
  9335. border-width:0px;
  9336. white-space:nowrap;
  9337. text-transform:none;
  9338. }
  9339. #u170101 {
  9340. border-width:0px;
  9341. position:absolute;
  9342. left:0px;
  9343. top:0px;
  9344. width:0px;
  9345. height:0px;
  9346. }
  9347. #u170102_img {
  9348. border-width:0px;
  9349. position:absolute;
  9350. left:0px;
  9351. top:0px;
  9352. width:2px;
  9353. height:32px;
  9354. }
  9355. #u170102 {
  9356. border-width:0px;
  9357. position:absolute;
  9358. left:1455px;
  9359. top:630px;
  9360. width:1px;
  9361. height:31px;
  9362. display:flex;
  9363. }
  9364. #u170102 .text {
  9365. position:absolute;
  9366. align-self:center;
  9367. padding:2px 2px 2px 2px;
  9368. box-sizing:border-box;
  9369. width:100%;
  9370. }
  9371. #u170102_text {
  9372. border-width:0px;
  9373. word-wrap:break-word;
  9374. text-transform:none;
  9375. visibility:hidden;
  9376. }
  9377. #u170103 {
  9378. border-width:0px;
  9379. position:absolute;
  9380. left:0px;
  9381. top:0px;
  9382. width:0px;
  9383. height:0px;
  9384. }
  9385. #u170104_div {
  9386. border-width:0px;
  9387. position:absolute;
  9388. left:0px;
  9389. top:0px;
  9390. width:30px;
  9391. height:30px;
  9392. background:inherit;
  9393. background-color:rgba(24, 144, 255, 1);
  9394. border:none;
  9395. border-radius:4px;
  9396. -moz-box-shadow:none;
  9397. -webkit-box-shadow:none;
  9398. box-shadow:none;
  9399. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9400. font-weight:400;
  9401. font-style:normal;
  9402. font-size:10px;
  9403. color:#FFFFFF;
  9404. }
  9405. #u170104 {
  9406. border-width:0px;
  9407. position:absolute;
  9408. left:1440px;
  9409. top:666px;
  9410. width:30px;
  9411. height:30px;
  9412. display:flex;
  9413. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9414. font-weight:400;
  9415. font-style:normal;
  9416. font-size:10px;
  9417. color:#FFFFFF;
  9418. }
  9419. #u170104 .text {
  9420. position:absolute;
  9421. align-self:center;
  9422. padding:2px 2px 2px 2px;
  9423. box-sizing:border-box;
  9424. width:100%;
  9425. }
  9426. #u170104_text {
  9427. border-width:0px;
  9428. word-wrap:break-word;
  9429. text-transform:none;
  9430. }
  9431. #u170105 {
  9432. border-width:0px;
  9433. position:absolute;
  9434. left:0px;
  9435. top:0px;
  9436. width:0px;
  9437. height:0px;
  9438. }
  9439. #u170106_img {
  9440. border-width:0px;
  9441. position:absolute;
  9442. left:0px;
  9443. top:0px;
  9444. width:9px;
  9445. height:9px;
  9446. }
  9447. #u170106 {
  9448. border-width:0px;
  9449. position:absolute;
  9450. left:1462px;
  9451. top:688px;
  9452. width:9px;
  9453. height:9px;
  9454. display:flex;
  9455. }
  9456. #u170106 .text {
  9457. position:absolute;
  9458. align-self:center;
  9459. padding:2px 2px 2px 2px;
  9460. box-sizing:border-box;
  9461. width:100%;
  9462. }
  9463. #u170106_text {
  9464. border-width:0px;
  9465. word-wrap:break-word;
  9466. text-transform:none;
  9467. visibility:hidden;
  9468. }
  9469. #u170107_img {
  9470. border-width:0px;
  9471. position:absolute;
  9472. left:0px;
  9473. top:0px;
  9474. width:5px;
  9475. height:1px;
  9476. }
  9477. #u170107 {
  9478. border-width:0px;
  9479. position:absolute;
  9480. left:1464px;
  9481. top:692px;
  9482. width:5px;
  9483. height:1px;
  9484. display:flex;
  9485. }
  9486. #u170107 .text {
  9487. position:absolute;
  9488. align-self:center;
  9489. padding:2px 2px 2px 2px;
  9490. box-sizing:border-box;
  9491. width:100%;
  9492. }
  9493. #u170107_text {
  9494. border-width:0px;
  9495. word-wrap:break-word;
  9496. text-transform:none;
  9497. visibility:hidden;
  9498. }
  9499. #u170108 {
  9500. border-width:0px;
  9501. position:absolute;
  9502. left:0px;
  9503. top:0px;
  9504. width:0px;
  9505. height:0px;
  9506. }
  9507. #u170109_div {
  9508. border-width:0px;
  9509. position:absolute;
  9510. left:0px;
  9511. top:0px;
  9512. width:30px;
  9513. height:30px;
  9514. background:inherit;
  9515. background-color:rgba(24, 144, 255, 1);
  9516. border:none;
  9517. border-radius:4px;
  9518. -moz-box-shadow:none;
  9519. -webkit-box-shadow:none;
  9520. box-shadow:none;
  9521. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9522. font-weight:400;
  9523. font-style:normal;
  9524. font-size:12px;
  9525. color:#FFFFFF;
  9526. }
  9527. #u170109 {
  9528. border-width:0px;
  9529. position:absolute;
  9530. left:1440px;
  9531. top:596px;
  9532. width:30px;
  9533. height:30px;
  9534. display:flex;
  9535. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9536. font-weight:400;
  9537. font-style:normal;
  9538. font-size:12px;
  9539. color:#FFFFFF;
  9540. }
  9541. #u170109 .text {
  9542. position:absolute;
  9543. align-self:center;
  9544. padding:2px 2px 2px 2px;
  9545. box-sizing:border-box;
  9546. width:100%;
  9547. }
  9548. #u170109_text {
  9549. border-width:0px;
  9550. word-wrap:break-word;
  9551. text-transform:none;
  9552. }
  9553. #u170110 {
  9554. border-width:0px;
  9555. position:absolute;
  9556. left:0px;
  9557. top:0px;
  9558. width:0px;
  9559. height:0px;
  9560. }
  9561. #u170111_img {
  9562. border-width:0px;
  9563. position:absolute;
  9564. left:0px;
  9565. top:0px;
  9566. width:9px;
  9567. height:9px;
  9568. }
  9569. #u170111 {
  9570. border-width:0px;
  9571. position:absolute;
  9572. left:1462px;
  9573. top:618px;
  9574. width:9px;
  9575. height:9px;
  9576. display:flex;
  9577. }
  9578. #u170111 .text {
  9579. position:absolute;
  9580. align-self:center;
  9581. padding:2px 2px 2px 2px;
  9582. box-sizing:border-box;
  9583. width:100%;
  9584. }
  9585. #u170111_text {
  9586. border-width:0px;
  9587. word-wrap:break-word;
  9588. text-transform:none;
  9589. visibility:hidden;
  9590. }
  9591. #u170112_img {
  9592. border-width:0px;
  9593. position:absolute;
  9594. left:0px;
  9595. top:0px;
  9596. width:5px;
  9597. height:4px;
  9598. }
  9599. #u170112 {
  9600. border-width:0px;
  9601. position:absolute;
  9602. left:1464px;
  9603. top:621px;
  9604. width:5px;
  9605. height:4px;
  9606. display:flex;
  9607. }
  9608. #u170112 .text {
  9609. position:absolute;
  9610. align-self:center;
  9611. padding:2px 2px 2px 2px;
  9612. box-sizing:border-box;
  9613. width:100%;
  9614. }
  9615. #u170112_text {
  9616. border-width:0px;
  9617. word-wrap:break-word;
  9618. text-transform:none;
  9619. visibility:hidden;
  9620. }
  9621. #u170113 {
  9622. border-width:0px;
  9623. position:absolute;
  9624. left:0px;
  9625. top:0px;
  9626. width:0px;
  9627. height:0px;
  9628. }
  9629. #u170114_div {
  9630. border-width:0px;
  9631. position:absolute;
  9632. left:0px;
  9633. top:0px;
  9634. width:375px;
  9635. height:60px;
  9636. background:inherit;
  9637. background-color:rgba(255, 255, 255, 1);
  9638. border:none;
  9639. border-top:0px;
  9640. border-radius:28px;
  9641. border-top-left-radius:0px;
  9642. border-top-right-radius:0px;
  9643. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  9644. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  9645. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  9646. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9647. font-weight:400;
  9648. font-style:normal;
  9649. font-size:14px;
  9650. color:#FFFFFF;
  9651. }
  9652. #u170114 {
  9653. border-width:0px;
  9654. position:absolute;
  9655. left:1400px;
  9656. top:783px;
  9657. width:375px;
  9658. height:60px;
  9659. display:flex;
  9660. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9661. font-weight:400;
  9662. font-style:normal;
  9663. font-size:14px;
  9664. color:#FFFFFF;
  9665. }
  9666. #u170114 .text {
  9667. position:absolute;
  9668. align-self:center;
  9669. padding:2px 2px 2px 2px;
  9670. box-sizing:border-box;
  9671. width:100%;
  9672. }
  9673. #u170114_text {
  9674. border-width:0px;
  9675. word-wrap:break-word;
  9676. text-transform:none;
  9677. visibility:hidden;
  9678. }
  9679. #u170115_div {
  9680. border-width:0px;
  9681. position:absolute;
  9682. left:0px;
  9683. top:0px;
  9684. width:80px;
  9685. height:40px;
  9686. background:inherit;
  9687. background-color:rgba(24, 144, 255, 1);
  9688. border:none;
  9689. border-radius:27px;
  9690. -moz-box-shadow:none;
  9691. -webkit-box-shadow:none;
  9692. box-shadow:none;
  9693. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9694. font-weight:400;
  9695. font-style:normal;
  9696. color:#FFFFFF;
  9697. text-align:center;
  9698. }
  9699. #u170115 {
  9700. border-width:0px;
  9701. position:absolute;
  9702. left:1680px;
  9703. top:793px;
  9704. width:80px;
  9705. height:40px;
  9706. display:flex;
  9707. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9708. font-weight:400;
  9709. font-style:normal;
  9710. color:#FFFFFF;
  9711. text-align:center;
  9712. }
  9713. #u170115 .text {
  9714. position:absolute;
  9715. align-self:center;
  9716. padding:2px 3px 2px 3px;
  9717. box-sizing:border-box;
  9718. width:100%;
  9719. }
  9720. #u170115_text {
  9721. border-width:0px;
  9722. word-wrap:break-word;
  9723. text-transform:none;
  9724. }
  9725. #u170116_div {
  9726. border-width:0px;
  9727. position:absolute;
  9728. left:0px;
  9729. top:0px;
  9730. width:80px;
  9731. height:40px;
  9732. background:inherit;
  9733. background-color:rgba(215, 215, 215, 1);
  9734. border:none;
  9735. border-radius:27px;
  9736. -moz-box-shadow:none;
  9737. -webkit-box-shadow:none;
  9738. box-shadow:none;
  9739. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9740. font-weight:400;
  9741. font-style:normal;
  9742. text-align:center;
  9743. }
  9744. #u170116 {
  9745. border-width:0px;
  9746. position:absolute;
  9747. left:1590px;
  9748. top:793px;
  9749. width:80px;
  9750. height:40px;
  9751. display:flex;
  9752. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9753. font-weight:400;
  9754. font-style:normal;
  9755. text-align:center;
  9756. }
  9757. #u170116 .text {
  9758. position:absolute;
  9759. align-self:center;
  9760. padding:2px 3px 2px 3px;
  9761. box-sizing:border-box;
  9762. width:100%;
  9763. }
  9764. #u170116_text {
  9765. border-width:0px;
  9766. word-wrap:break-word;
  9767. text-transform:none;
  9768. }
  9769. #u170117_div {
  9770. border-width:0px;
  9771. position:absolute;
  9772. left:0px;
  9773. top:0px;
  9774. width:31px;
  9775. height:21px;
  9776. background:inherit;
  9777. background-color:rgba(215, 215, 215, 0);
  9778. border:none;
  9779. border-radius:27px;
  9780. -moz-box-shadow:none;
  9781. -webkit-box-shadow:none;
  9782. box-shadow:none;
  9783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9784. font-weight:400;
  9785. font-style:normal;
  9786. font-size:12px;
  9787. color:#7F7F7F;
  9788. text-align:center;
  9789. }
  9790. #u170117 {
  9791. border-width:0px;
  9792. position:absolute;
  9793. left:1549px;
  9794. top:803px;
  9795. width:31px;
  9796. height:21px;
  9797. display:flex;
  9798. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9799. font-weight:400;
  9800. font-style:normal;
  9801. font-size:12px;
  9802. color:#7F7F7F;
  9803. text-align:center;
  9804. }
  9805. #u170117 .text {
  9806. position:absolute;
  9807. align-self:center;
  9808. padding:2px 3px 2px 3px;
  9809. box-sizing:border-box;
  9810. width:100%;
  9811. }
  9812. #u170117_text {
  9813. border-width:0px;
  9814. white-space:nowrap;
  9815. text-transform:none;
  9816. }
  9817. #u170118_div {
  9818. border-width:0px;
  9819. position:absolute;
  9820. left:0px;
  9821. top:0px;
  9822. width:97px;
  9823. height:25px;
  9824. background:inherit;
  9825. background-color:rgba(255, 255, 255, 0);
  9826. border:none;
  9827. border-radius:0px;
  9828. -moz-box-shadow:none;
  9829. -webkit-box-shadow:none;
  9830. box-shadow:none;
  9831. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9832. font-weight:400;
  9833. font-style:normal;
  9834. font-size:12px;
  9835. color:#B8741A;
  9836. line-height:25px;
  9837. }
  9838. #u170118 {
  9839. border-width:0px;
  9840. position:absolute;
  9841. left:1655px;
  9842. top:172px;
  9843. width:97px;
  9844. height:25px;
  9845. display:flex;
  9846. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9847. font-weight:400;
  9848. font-style:normal;
  9849. font-size:12px;
  9850. color:#B8741A;
  9851. line-height:25px;
  9852. }
  9853. #u170118 .text {
  9854. position:absolute;
  9855. align-self:flex-start;
  9856. padding:0px 0px 0px 0px;
  9857. box-sizing:border-box;
  9858. width:100%;
  9859. }
  9860. #u170118_text {
  9861. border-width:0px;
  9862. white-space:nowrap;
  9863. text-transform:none;
  9864. }
  9865. #u170119 {
  9866. border-width:0px;
  9867. position:absolute;
  9868. left:0px;
  9869. top:0px;
  9870. width:0px;
  9871. height:0px;
  9872. }
  9873. #u170120_img {
  9874. border-width:0px;
  9875. position:absolute;
  9876. left:0px;
  9877. top:0px;
  9878. width:355px;
  9879. height:40px;
  9880. }
  9881. #u170120 {
  9882. border-width:0px;
  9883. position:absolute;
  9884. left:945px;
  9885. top:494px;
  9886. width:355px;
  9887. height:40px;
  9888. display:flex;
  9889. }
  9890. #u170120 .text {
  9891. position:absolute;
  9892. align-self:center;
  9893. padding:2px 2px 2px 2px;
  9894. box-sizing:border-box;
  9895. width:100%;
  9896. }
  9897. #u170120_text {
  9898. border-width:0px;
  9899. word-wrap:break-word;
  9900. text-transform:none;
  9901. visibility:hidden;
  9902. }
  9903. #u170121_div {
  9904. border-width:0px;
  9905. position:absolute;
  9906. left:0px;
  9907. top:0px;
  9908. width:71px;
  9909. height:20px;
  9910. background:inherit;
  9911. background-color:rgba(255, 255, 255, 0);
  9912. border:none;
  9913. border-left:0px;
  9914. border-top:0px;
  9915. border-right:0px;
  9916. border-radius:0px;
  9917. border-bottom-right-radius:0px;
  9918. border-bottom-left-radius:0px;
  9919. -moz-box-shadow:none;
  9920. -webkit-box-shadow:none;
  9921. box-shadow:none;
  9922. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9923. font-weight:400;
  9924. font-style:normal;
  9925. font-size:14px;
  9926. }
  9927. #u170121 {
  9928. border-width:0px;
  9929. position:absolute;
  9930. left:961px;
  9931. top:504px;
  9932. width:71px;
  9933. height:20px;
  9934. display:flex;
  9935. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9936. font-weight:400;
  9937. font-style:normal;
  9938. font-size:14px;
  9939. }
  9940. #u170121 .text {
  9941. position:absolute;
  9942. align-self:flex-start;
  9943. padding:0px 0px 0px 0px;
  9944. box-sizing:border-box;
  9945. width:100%;
  9946. }
  9947. #u170121_text {
  9948. border-width:0px;
  9949. white-space:nowrap;
  9950. text-transform:none;
  9951. }
  9952. #u170122 {
  9953. border-width:0px;
  9954. position:absolute;
  9955. left:0px;
  9956. top:0px;
  9957. width:0px;
  9958. height:0px;
  9959. }
  9960. #u170123 {
  9961. border-width:0px;
  9962. position:absolute;
  9963. left:0px;
  9964. top:0px;
  9965. width:0px;
  9966. height:0px;
  9967. }
  9968. #u170124_div {
  9969. border-width:0px;
  9970. position:absolute;
  9971. left:0px;
  9972. top:0px;
  9973. width:23px;
  9974. height:20px;
  9975. background:inherit;
  9976. background-color:rgba(255, 255, 255, 0);
  9977. border:none;
  9978. border-left:0px;
  9979. border-top:0px;
  9980. border-right:0px;
  9981. border-radius:0px;
  9982. border-bottom-right-radius:0px;
  9983. border-bottom-left-radius:0px;
  9984. -moz-box-shadow:none;
  9985. -webkit-box-shadow:none;
  9986. box-shadow:none;
  9987. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9988. font-weight:400;
  9989. font-style:normal;
  9990. font-size:14px;
  9991. color:#00BFBF;
  9992. }
  9993. #u170124 {
  9994. border-width:0px;
  9995. position:absolute;
  9996. left:1251px;
  9997. top:504px;
  9998. width:23px;
  9999. height:20px;
  10000. display:flex;
  10001. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10002. font-weight:400;
  10003. font-style:normal;
  10004. font-size:14px;
  10005. color:#00BFBF;
  10006. }
  10007. #u170124 .text {
  10008. position:absolute;
  10009. align-self:center;
  10010. padding:0px 0px 0px 0px;
  10011. box-sizing:border-box;
  10012. width:100%;
  10013. }
  10014. #u170124_text {
  10015. border-width:0px;
  10016. white-space:nowrap;
  10017. text-transform:none;
  10018. }
  10019. #u170125_div {
  10020. border-width:0px;
  10021. position:absolute;
  10022. left:0px;
  10023. top:0px;
  10024. width:6px;
  10025. height:6px;
  10026. background:inherit;
  10027. background-color:rgba(255, 255, 255, 0);
  10028. box-sizing:border-box;
  10029. border-width:1px;
  10030. border-style:solid;
  10031. border-color:rgba(0, 191, 191, 1);
  10032. border-right:0px;
  10033. border-bottom:0px;
  10034. border-radius:0px;
  10035. border-top-right-radius:0px;
  10036. border-bottom-left-radius:0px;
  10037. -moz-box-shadow:none;
  10038. -webkit-box-shadow:none;
  10039. box-shadow:none;
  10040. }
  10041. #u170125 {
  10042. border-width:0px;
  10043. position:absolute;
  10044. left:1285px;
  10045. top:513px;
  10046. width:6px;
  10047. height:6px;
  10048. display:flex;
  10049. -webkit-transform:rotate(45deg);
  10050. -moz-transform:rotate(45deg);
  10051. -ms-transform:rotate(45deg);
  10052. transform:rotate(45deg);
  10053. }
  10054. #u170125 .text {
  10055. position:absolute;
  10056. align-self:center;
  10057. padding:2px 2px 2px 2px;
  10058. box-sizing:border-box;
  10059. width:100%;
  10060. }
  10061. #u170125_text {
  10062. border-width:0px;
  10063. word-wrap:break-word;
  10064. text-transform:none;
  10065. visibility:hidden;
  10066. }
  10067. #u170126 {
  10068. border-width:0px;
  10069. position:absolute;
  10070. left:0px;
  10071. top:0px;
  10072. width:0px;
  10073. height:0px;
  10074. }
  10075. #u170127_img {
  10076. border-width:0px;
  10077. position:absolute;
  10078. left:0px;
  10079. top:0px;
  10080. width:355px;
  10081. height:40px;
  10082. }
  10083. #u170127 {
  10084. border-width:0px;
  10085. position:absolute;
  10086. left:1410px;
  10087. top:494px;
  10088. width:355px;
  10089. height:40px;
  10090. display:flex;
  10091. }
  10092. #u170127 .text {
  10093. position:absolute;
  10094. align-self:center;
  10095. padding:2px 2px 2px 2px;
  10096. box-sizing:border-box;
  10097. width:100%;
  10098. }
  10099. #u170127_text {
  10100. border-width:0px;
  10101. word-wrap:break-word;
  10102. text-transform:none;
  10103. visibility:hidden;
  10104. }
  10105. #u170128_div {
  10106. border-width:0px;
  10107. position:absolute;
  10108. left:0px;
  10109. top:0px;
  10110. width:71px;
  10111. height:20px;
  10112. background:inherit;
  10113. background-color:rgba(255, 255, 255, 0);
  10114. border:none;
  10115. border-left:0px;
  10116. border-top:0px;
  10117. border-right:0px;
  10118. border-radius:0px;
  10119. border-bottom-right-radius:0px;
  10120. border-bottom-left-radius:0px;
  10121. -moz-box-shadow:none;
  10122. -webkit-box-shadow:none;
  10123. box-shadow:none;
  10124. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10125. font-weight:400;
  10126. font-style:normal;
  10127. font-size:14px;
  10128. }
  10129. #u170128 {
  10130. border-width:0px;
  10131. position:absolute;
  10132. left:1426px;
  10133. top:504px;
  10134. width:71px;
  10135. height:20px;
  10136. display:flex;
  10137. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10138. font-weight:400;
  10139. font-style:normal;
  10140. font-size:14px;
  10141. }
  10142. #u170128 .text {
  10143. position:absolute;
  10144. align-self:flex-start;
  10145. padding:0px 0px 0px 0px;
  10146. box-sizing:border-box;
  10147. width:100%;
  10148. }
  10149. #u170128_text {
  10150. border-width:0px;
  10151. white-space:nowrap;
  10152. text-transform:none;
  10153. }
  10154. #u170129 {
  10155. border-width:0px;
  10156. position:absolute;
  10157. left:0px;
  10158. top:0px;
  10159. width:0px;
  10160. height:0px;
  10161. }
  10162. #u170130 {
  10163. border-width:0px;
  10164. position:absolute;
  10165. left:0px;
  10166. top:0px;
  10167. width:0px;
  10168. height:0px;
  10169. }
  10170. #u170131_div {
  10171. border-width:0px;
  10172. position:absolute;
  10173. left:0px;
  10174. top:0px;
  10175. width:23px;
  10176. height:20px;
  10177. background:inherit;
  10178. background-color:rgba(255, 255, 255, 0);
  10179. border:none;
  10180. border-left:0px;
  10181. border-top:0px;
  10182. border-right:0px;
  10183. border-radius:0px;
  10184. border-bottom-right-radius:0px;
  10185. border-bottom-left-radius:0px;
  10186. -moz-box-shadow:none;
  10187. -webkit-box-shadow:none;
  10188. box-shadow:none;
  10189. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10190. font-weight:400;
  10191. font-style:normal;
  10192. font-size:14px;
  10193. color:#00BFBF;
  10194. }
  10195. #u170131 {
  10196. border-width:0px;
  10197. position:absolute;
  10198. left:1716px;
  10199. top:504px;
  10200. width:23px;
  10201. height:20px;
  10202. display:flex;
  10203. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10204. font-weight:400;
  10205. font-style:normal;
  10206. font-size:14px;
  10207. color:#00BFBF;
  10208. }
  10209. #u170131 .text {
  10210. position:absolute;
  10211. align-self:center;
  10212. padding:0px 0px 0px 0px;
  10213. box-sizing:border-box;
  10214. width:100%;
  10215. }
  10216. #u170131_text {
  10217. border-width:0px;
  10218. white-space:nowrap;
  10219. text-transform:none;
  10220. }
  10221. #u170132_div {
  10222. border-width:0px;
  10223. position:absolute;
  10224. left:0px;
  10225. top:0px;
  10226. width:6px;
  10227. height:6px;
  10228. background:inherit;
  10229. background-color:rgba(255, 255, 255, 0);
  10230. box-sizing:border-box;
  10231. border-width:1px;
  10232. border-style:solid;
  10233. border-color:rgba(0, 191, 191, 1);
  10234. border-right:0px;
  10235. border-bottom:0px;
  10236. border-radius:0px;
  10237. border-top-right-radius:0px;
  10238. border-bottom-left-radius:0px;
  10239. -moz-box-shadow:none;
  10240. -webkit-box-shadow:none;
  10241. box-shadow:none;
  10242. }
  10243. #u170132 {
  10244. border-width:0px;
  10245. position:absolute;
  10246. left:1750px;
  10247. top:513px;
  10248. width:6px;
  10249. height:6px;
  10250. display:flex;
  10251. -webkit-transform:rotate(45deg);
  10252. -moz-transform:rotate(45deg);
  10253. -ms-transform:rotate(45deg);
  10254. transform:rotate(45deg);
  10255. }
  10256. #u170132 .text {
  10257. position:absolute;
  10258. align-self:center;
  10259. padding:2px 2px 2px 2px;
  10260. box-sizing:border-box;
  10261. width:100%;
  10262. }
  10263. #u170132_text {
  10264. border-width:0px;
  10265. word-wrap:break-word;
  10266. text-transform:none;
  10267. visibility:hidden;
  10268. }