styles.css 158 KB

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