styles.css 101 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1792px;
  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. #u169747_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u169747 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u169747 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u169747_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u169748_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. #u169748 {
  73. border-width:0px;
  74. position:absolute;
  75. left:29px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u169748 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u169748_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u169749 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u169750_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. #u169750 {
  121. border-width:0px;
  122. position:absolute;
  123. left:309px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u169750 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u169750_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u169751 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u169752_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u169752 {
  159. border-width:0px;
  160. position:absolute;
  161. left:372px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u169752 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u169752_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u169753_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u169753 {
  189. border-width:0px;
  190. position:absolute;
  191. left:378px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u169753 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u169753_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u169754 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u169755_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u169755 {
  227. border-width:0px;
  228. position:absolute;
  229. left:323px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u169755 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u169755_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u169756_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u169756 {
  257. border-width:0px;
  258. position:absolute;
  259. left:339px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u169756 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u169756_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u169757_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u169757 {
  287. border-width:0px;
  288. position:absolute;
  289. left:330px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u169757 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u169757_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u169758_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u169758 {
  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. #u169758 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u169758_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u169759_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u169759 {
  351. border-width:0px;
  352. position:absolute;
  353. left:29px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u169759 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u169759_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u169760_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. #u169760 {
  393. border-width:0px;
  394. position:absolute;
  395. left:29px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u169760 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u169760_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u169761 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u169762_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u169762 {
  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. #u169762 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u169762_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u169763_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. #u169763 {
  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. #u169763 .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. #u169763_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u169764 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u169765_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u169765 {
  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. #u169765 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u169765_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u169766_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. #u169766 {
  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. #u169766 .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. #u169766_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u169767_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. #u169767 {
  594. border-width:0px;
  595. position:absolute;
  596. left:29px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u169767 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u169767_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u169768 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u169769_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u169769 {
  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. #u169769 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u169769_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u169770_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. #u169770 {
  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. #u169770 .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. #u169770_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u169771 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u169772_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u169772 {
  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. #u169772 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u169772_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u169773_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. #u169773 {
  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. #u169773 .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. #u169773_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u169774_div {
  780. border-width:0px;
  781. position:absolute;
  782. left:0px;
  783. top:0px;
  784. width:375px;
  785. height:735px;
  786. background:inherit;
  787. background-color:rgba(242, 242, 242, 1);
  788. border:none;
  789. border-top:0px;
  790. border-radius:25px;
  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. #u169774 {
  798. border-width:0px;
  799. position:absolute;
  800. left:29px;
  801. top:102px;
  802. width:375px;
  803. height:735px;
  804. display:flex;
  805. }
  806. #u169774 .text {
  807. position:absolute;
  808. align-self:center;
  809. padding:2px 2px 2px 2px;
  810. box-sizing:border-box;
  811. width:100%;
  812. }
  813. #u169774_text {
  814. border-width:0px;
  815. word-wrap:break-word;
  816. text-transform:none;
  817. visibility:hidden;
  818. }
  819. #u169775 {
  820. border-width:0px;
  821. position:absolute;
  822. left:0px;
  823. top:0px;
  824. width:0px;
  825. height:0px;
  826. }
  827. #u169776_img {
  828. border-width:0px;
  829. position:absolute;
  830. left:0px;
  831. top:0px;
  832. width:11px;
  833. height:18px;
  834. }
  835. #u169776 {
  836. border-width:0px;
  837. position:absolute;
  838. left:40px;
  839. top:79px;
  840. width:11px;
  841. height:18px;
  842. display:flex;
  843. }
  844. #u169776 .text {
  845. position:absolute;
  846. align-self:center;
  847. padding:2px 2px 2px 2px;
  848. box-sizing:border-box;
  849. width:100%;
  850. }
  851. #u169776_text {
  852. border-width:0px;
  853. word-wrap:break-word;
  854. text-transform:none;
  855. visibility:hidden;
  856. }
  857. #u169777_div {
  858. border-width:0px;
  859. position:absolute;
  860. left:0px;
  861. top:0px;
  862. width:37px;
  863. height:30px;
  864. background:inherit;
  865. background-color:rgba(255, 255, 255, 0);
  866. box-sizing:border-box;
  867. border-width:2px;
  868. border-style:solid;
  869. border-color:rgba(51, 51, 51, 1);
  870. border-left:0px;
  871. border-top:0px;
  872. border-right:0px;
  873. border-radius:0px;
  874. border-bottom-right-radius:0px;
  875. border-bottom-left-radius:0px;
  876. -moz-box-shadow:none;
  877. -webkit-box-shadow:none;
  878. box-shadow:none;
  879. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  880. font-weight:400;
  881. font-style:normal;
  882. font-size:12px;
  883. line-height:30px;
  884. }
  885. #u169777 {
  886. border-width:0px;
  887. position:absolute;
  888. left:75px;
  889. top:105px;
  890. width:37px;
  891. height:30px;
  892. display:flex;
  893. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  894. font-weight:400;
  895. font-style:normal;
  896. font-size:12px;
  897. line-height:30px;
  898. }
  899. #u169777 .text {
  900. position:absolute;
  901. align-self:flex-start;
  902. padding:0px 0px 0px 0px;
  903. box-sizing:border-box;
  904. width:100%;
  905. }
  906. #u169777_text {
  907. border-width:0px;
  908. white-space:nowrap;
  909. text-transform:none;
  910. }
  911. #u169778_div {
  912. border-width:0px;
  913. position:absolute;
  914. left:0px;
  915. top:0px;
  916. width:37px;
  917. height:30px;
  918. background:inherit;
  919. background-color:rgba(255, 255, 255, 0);
  920. border:none;
  921. border-left:0px;
  922. border-top:0px;
  923. border-right:0px;
  924. border-radius:0px;
  925. border-bottom-right-radius:0px;
  926. border-bottom-left-radius:0px;
  927. -moz-box-shadow:none;
  928. -webkit-box-shadow:none;
  929. box-shadow:none;
  930. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  931. font-weight:400;
  932. font-style:normal;
  933. font-size:12px;
  934. line-height:30px;
  935. }
  936. #u169778 {
  937. border-width:0px;
  938. position:absolute;
  939. left:197px;
  940. top:105px;
  941. width:37px;
  942. height:30px;
  943. display:flex;
  944. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  945. font-weight:400;
  946. font-style:normal;
  947. font-size:12px;
  948. line-height:30px;
  949. }
  950. #u169778 .text {
  951. position:absolute;
  952. align-self:flex-start;
  953. padding:0px 0px 0px 0px;
  954. box-sizing:border-box;
  955. width:100%;
  956. }
  957. #u169778_text {
  958. border-width:0px;
  959. white-space:nowrap;
  960. text-transform:none;
  961. }
  962. #u169779_div {
  963. border-width:0px;
  964. position:absolute;
  965. left:0px;
  966. top:0px;
  967. width:37px;
  968. height:30px;
  969. background:inherit;
  970. background-color:rgba(255, 255, 255, 0);
  971. border:none;
  972. border-left:0px;
  973. border-top:0px;
  974. border-right:0px;
  975. border-radius:0px;
  976. border-bottom-right-radius:0px;
  977. border-bottom-left-radius:0px;
  978. -moz-box-shadow:none;
  979. -webkit-box-shadow:none;
  980. box-shadow:none;
  981. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  982. font-weight:400;
  983. font-style:normal;
  984. font-size:12px;
  985. line-height:30px;
  986. }
  987. #u169779 {
  988. border-width:0px;
  989. position:absolute;
  990. left:331px;
  991. top:105px;
  992. width:37px;
  993. height:30px;
  994. display:flex;
  995. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  996. font-weight:400;
  997. font-style:normal;
  998. font-size:12px;
  999. line-height:30px;
  1000. }
  1001. #u169779 .text {
  1002. position:absolute;
  1003. align-self:flex-start;
  1004. padding:0px 0px 0px 0px;
  1005. box-sizing:border-box;
  1006. width:100%;
  1007. }
  1008. #u169779_text {
  1009. border-width:0px;
  1010. white-space:nowrap;
  1011. text-transform:none;
  1012. }
  1013. #u169780 {
  1014. border-width:0px;
  1015. position:absolute;
  1016. left:0px;
  1017. top:0px;
  1018. width:0px;
  1019. height:0px;
  1020. }
  1021. #u169781_div {
  1022. border-width:0px;
  1023. position:absolute;
  1024. left:0px;
  1025. top:0px;
  1026. width:359px;
  1027. height:120px;
  1028. background:inherit;
  1029. background-color:rgba(255, 255, 255, 1);
  1030. border:none;
  1031. border-radius:4px;
  1032. -moz-box-shadow:none;
  1033. -webkit-box-shadow:none;
  1034. box-shadow:none;
  1035. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1036. font-weight:400;
  1037. font-style:normal;
  1038. font-size:14px;
  1039. color:#555555;
  1040. line-height:30px;
  1041. }
  1042. #u169781 {
  1043. border-width:0px;
  1044. position:absolute;
  1045. left:36px;
  1046. top:142px;
  1047. width:359px;
  1048. height:120px;
  1049. display:flex;
  1050. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1051. font-weight:400;
  1052. font-style:normal;
  1053. font-size:14px;
  1054. color:#555555;
  1055. line-height:30px;
  1056. }
  1057. #u169781 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u169781_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u169782_div {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:116px;
  1076. height:30px;
  1077. background:inherit;
  1078. background-color:rgba(255, 255, 255, 0);
  1079. border:none;
  1080. border-left:0px;
  1081. border-top:0px;
  1082. border-right:0px;
  1083. border-radius:0px;
  1084. border-bottom-right-radius:0px;
  1085. border-bottom-left-radius:0px;
  1086. -moz-box-shadow:none;
  1087. -webkit-box-shadow:none;
  1088. box-shadow:none;
  1089. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1090. font-weight:400;
  1091. font-style:normal;
  1092. font-size:12px;
  1093. line-height:30px;
  1094. }
  1095. #u169782 {
  1096. border-width:0px;
  1097. position:absolute;
  1098. left:179px;
  1099. top:153px;
  1100. width:116px;
  1101. height:30px;
  1102. display:flex;
  1103. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1104. font-weight:400;
  1105. font-style:normal;
  1106. font-size:12px;
  1107. line-height:30px;
  1108. }
  1109. #u169782 .text {
  1110. position:absolute;
  1111. align-self:center;
  1112. padding:0px 0px 0px 0px;
  1113. box-sizing:border-box;
  1114. width:100%;
  1115. }
  1116. #u169782_text {
  1117. border-width:0px;
  1118. white-space:nowrap;
  1119. text-transform:none;
  1120. }
  1121. #u169783_div {
  1122. border-width:0px;
  1123. position:absolute;
  1124. left:0px;
  1125. top:0px;
  1126. width:124px;
  1127. height:20px;
  1128. background:inherit;
  1129. background-color:rgba(255, 255, 255, 0);
  1130. border:none;
  1131. border-radius:40px;
  1132. -moz-box-shadow:none;
  1133. -webkit-box-shadow:none;
  1134. box-shadow:none;
  1135. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1136. font-weight:400;
  1137. font-style:normal;
  1138. font-size:10px;
  1139. color:#AAAAAA;
  1140. line-height:20px;
  1141. }
  1142. #u169783 {
  1143. border-width:0px;
  1144. position:absolute;
  1145. left:179px;
  1146. top:228px;
  1147. width:124px;
  1148. height:20px;
  1149. display:flex;
  1150. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1151. font-weight:400;
  1152. font-style:normal;
  1153. font-size:10px;
  1154. color:#AAAAAA;
  1155. line-height:20px;
  1156. }
  1157. #u169783 .text {
  1158. position:absolute;
  1159. align-self:center;
  1160. padding:0px 0px 0px 0px;
  1161. box-sizing:border-box;
  1162. width:100%;
  1163. }
  1164. #u169783_text {
  1165. border-width:0px;
  1166. white-space:nowrap;
  1167. text-transform:none;
  1168. }
  1169. #u169784_div {
  1170. border-width:0px;
  1171. position:absolute;
  1172. left:0px;
  1173. top:0px;
  1174. width:206px;
  1175. height:40px;
  1176. background:inherit;
  1177. background-color:rgba(255, 255, 255, 0);
  1178. border:none;
  1179. border-radius:40px;
  1180. -moz-box-shadow:none;
  1181. -webkit-box-shadow:none;
  1182. box-shadow:none;
  1183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1184. font-weight:400;
  1185. font-style:normal;
  1186. font-size:10px;
  1187. color:#AAAAAA;
  1188. line-height:20px;
  1189. }
  1190. #u169784 {
  1191. border-width:0px;
  1192. position:absolute;
  1193. left:179px;
  1194. top:183px;
  1195. width:206px;
  1196. height:40px;
  1197. display:flex;
  1198. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1199. font-weight:400;
  1200. font-style:normal;
  1201. font-size:10px;
  1202. color:#AAAAAA;
  1203. line-height:20px;
  1204. }
  1205. #u169784 .text {
  1206. position:absolute;
  1207. align-self:center;
  1208. padding:0px 0px 0px 0px;
  1209. box-sizing:border-box;
  1210. width:100%;
  1211. }
  1212. #u169784_text {
  1213. border-width:0px;
  1214. word-wrap:break-word;
  1215. text-transform:none;
  1216. }
  1217. #u169785_div {
  1218. border-width:0px;
  1219. position:absolute;
  1220. left:0px;
  1221. top:0px;
  1222. width:120px;
  1223. height:100px;
  1224. background:inherit;
  1225. background-color:rgba(51, 51, 51, 1);
  1226. border:none;
  1227. border-radius:5px;
  1228. -moz-box-shadow:none;
  1229. -webkit-box-shadow:none;
  1230. box-shadow:none;
  1231. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1232. font-weight:400;
  1233. font-style:normal;
  1234. color:#F59A23;
  1235. }
  1236. #u169785 {
  1237. border-width:0px;
  1238. position:absolute;
  1239. left:46px;
  1240. top:153px;
  1241. width:120px;
  1242. height:100px;
  1243. display:flex;
  1244. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1245. font-weight:400;
  1246. font-style:normal;
  1247. color:#F59A23;
  1248. }
  1249. #u169785 .text {
  1250. position:absolute;
  1251. align-self:center;
  1252. padding:2px 2px 2px 2px;
  1253. box-sizing:border-box;
  1254. width:100%;
  1255. }
  1256. #u169785_text {
  1257. border-width:0px;
  1258. word-wrap:break-word;
  1259. text-transform:none;
  1260. }
  1261. #u169786_div {
  1262. border-width:0px;
  1263. position:absolute;
  1264. left:0px;
  1265. top:0px;
  1266. width:71px;
  1267. height:30px;
  1268. background:inherit;
  1269. background-color:rgba(255, 255, 255, 0);
  1270. border:none;
  1271. border-left:0px;
  1272. border-top:0px;
  1273. border-right:0px;
  1274. border-radius:0px;
  1275. border-bottom-right-radius:0px;
  1276. border-bottom-left-radius:0px;
  1277. -moz-box-shadow:none;
  1278. -webkit-box-shadow:none;
  1279. box-shadow:none;
  1280. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1281. font-weight:500;
  1282. font-style:normal;
  1283. font-size:14px;
  1284. line-height:30px;
  1285. }
  1286. #u169786 {
  1287. border-width:0px;
  1288. position:absolute;
  1289. left:179px;
  1290. top:67px;
  1291. width:71px;
  1292. height:30px;
  1293. display:flex;
  1294. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1295. font-weight:500;
  1296. font-style:normal;
  1297. font-size:14px;
  1298. line-height:30px;
  1299. }
  1300. #u169786 .text {
  1301. position:absolute;
  1302. align-self:flex-start;
  1303. padding:0px 0px 0px 0px;
  1304. box-sizing:border-box;
  1305. width:100%;
  1306. }
  1307. #u169786_text {
  1308. border-width:0px;
  1309. white-space:nowrap;
  1310. text-transform:none;
  1311. }
  1312. #u169787 {
  1313. border-width:0px;
  1314. position:absolute;
  1315. left:0px;
  1316. top:0px;
  1317. width:0px;
  1318. height:0px;
  1319. }
  1320. #u169788_div {
  1321. border-width:0px;
  1322. position:absolute;
  1323. left:0px;
  1324. top:0px;
  1325. width:359px;
  1326. height:120px;
  1327. background:inherit;
  1328. background-color:rgba(255, 255, 255, 1);
  1329. border:none;
  1330. border-radius:4px;
  1331. -moz-box-shadow:none;
  1332. -webkit-box-shadow:none;
  1333. box-shadow:none;
  1334. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1335. font-weight:400;
  1336. font-style:normal;
  1337. font-size:14px;
  1338. color:#555555;
  1339. line-height:30px;
  1340. }
  1341. #u169788 {
  1342. border-width:0px;
  1343. position:absolute;
  1344. left:40px;
  1345. top:272px;
  1346. width:359px;
  1347. height:120px;
  1348. display:flex;
  1349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1350. font-weight:400;
  1351. font-style:normal;
  1352. font-size:14px;
  1353. color:#555555;
  1354. line-height:30px;
  1355. }
  1356. #u169788 .text {
  1357. position:absolute;
  1358. align-self:center;
  1359. padding:2px 2px 2px 2px;
  1360. box-sizing:border-box;
  1361. width:100%;
  1362. }
  1363. #u169788_text {
  1364. border-width:0px;
  1365. word-wrap:break-word;
  1366. text-transform:none;
  1367. visibility:hidden;
  1368. }
  1369. #u169789_div {
  1370. border-width:0px;
  1371. position:absolute;
  1372. left:0px;
  1373. top:0px;
  1374. width:116px;
  1375. height:30px;
  1376. background:inherit;
  1377. background-color:rgba(255, 255, 255, 0);
  1378. border:none;
  1379. border-left:0px;
  1380. border-top:0px;
  1381. border-right:0px;
  1382. border-radius:0px;
  1383. border-bottom-right-radius:0px;
  1384. border-bottom-left-radius:0px;
  1385. -moz-box-shadow:none;
  1386. -webkit-box-shadow:none;
  1387. box-shadow:none;
  1388. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1389. font-weight:400;
  1390. font-style:normal;
  1391. font-size:12px;
  1392. line-height:30px;
  1393. }
  1394. #u169789 {
  1395. border-width:0px;
  1396. position:absolute;
  1397. left:183px;
  1398. top:283px;
  1399. width:116px;
  1400. height:30px;
  1401. display:flex;
  1402. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1403. font-weight:400;
  1404. font-style:normal;
  1405. font-size:12px;
  1406. line-height:30px;
  1407. }
  1408. #u169789 .text {
  1409. position:absolute;
  1410. align-self:center;
  1411. padding:0px 0px 0px 0px;
  1412. box-sizing:border-box;
  1413. width:100%;
  1414. }
  1415. #u169789_text {
  1416. border-width:0px;
  1417. white-space:nowrap;
  1418. text-transform:none;
  1419. }
  1420. #u169790_div {
  1421. border-width:0px;
  1422. position:absolute;
  1423. left:0px;
  1424. top:0px;
  1425. width:77px;
  1426. height:20px;
  1427. background:inherit;
  1428. background-color:rgba(255, 255, 255, 0);
  1429. border:none;
  1430. border-radius:40px;
  1431. -moz-box-shadow:none;
  1432. -webkit-box-shadow:none;
  1433. box-shadow:none;
  1434. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1435. font-weight:400;
  1436. font-style:normal;
  1437. font-size:10px;
  1438. color:#AAAAAA;
  1439. line-height:20px;
  1440. }
  1441. #u169790 {
  1442. border-width:0px;
  1443. position:absolute;
  1444. left:183px;
  1445. top:338px;
  1446. width:77px;
  1447. height:20px;
  1448. display:flex;
  1449. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1450. font-weight:400;
  1451. font-style:normal;
  1452. font-size:10px;
  1453. color:#AAAAAA;
  1454. line-height:20px;
  1455. }
  1456. #u169790 .text {
  1457. position:absolute;
  1458. align-self:center;
  1459. padding:0px 0px 0px 0px;
  1460. box-sizing:border-box;
  1461. width:100%;
  1462. }
  1463. #u169790_text {
  1464. border-width:0px;
  1465. white-space:nowrap;
  1466. text-transform:none;
  1467. }
  1468. #u169791_div {
  1469. border-width:0px;
  1470. position:absolute;
  1471. left:0px;
  1472. top:0px;
  1473. width:206px;
  1474. height:20px;
  1475. background:inherit;
  1476. background-color:rgba(255, 255, 255, 0);
  1477. border:none;
  1478. border-radius:40px;
  1479. -moz-box-shadow:none;
  1480. -webkit-box-shadow:none;
  1481. box-shadow:none;
  1482. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1483. font-weight:400;
  1484. font-style:normal;
  1485. font-size:10px;
  1486. line-height:20px;
  1487. }
  1488. #u169791 {
  1489. border-width:0px;
  1490. position:absolute;
  1491. left:183px;
  1492. top:313px;
  1493. width:206px;
  1494. height:20px;
  1495. display:flex;
  1496. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1497. font-weight:400;
  1498. font-style:normal;
  1499. font-size:10px;
  1500. line-height:20px;
  1501. }
  1502. #u169791 .text {
  1503. position:absolute;
  1504. align-self:flex-start;
  1505. padding:0px 0px 0px 0px;
  1506. box-sizing:border-box;
  1507. width:100%;
  1508. }
  1509. #u169791_text {
  1510. border-width:0px;
  1511. word-wrap:break-word;
  1512. text-transform:none;
  1513. }
  1514. #u169792_div {
  1515. border-width:0px;
  1516. position:absolute;
  1517. left:0px;
  1518. top:0px;
  1519. width:120px;
  1520. height:100px;
  1521. background:inherit;
  1522. background-color:rgba(51, 51, 51, 1);
  1523. border:none;
  1524. border-radius:5px;
  1525. -moz-box-shadow:none;
  1526. -webkit-box-shadow:none;
  1527. box-shadow:none;
  1528. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1529. font-weight:400;
  1530. font-style:normal;
  1531. color:#F59A23;
  1532. }
  1533. #u169792 {
  1534. border-width:0px;
  1535. position:absolute;
  1536. left:50px;
  1537. top:283px;
  1538. width:120px;
  1539. height:100px;
  1540. display:flex;
  1541. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1542. font-weight:400;
  1543. font-style:normal;
  1544. color:#F59A23;
  1545. }
  1546. #u169792 .text {
  1547. position:absolute;
  1548. align-self:center;
  1549. padding:2px 2px 2px 2px;
  1550. box-sizing:border-box;
  1551. width:100%;
  1552. }
  1553. #u169792_text {
  1554. border-width:0px;
  1555. word-wrap:break-word;
  1556. text-transform:none;
  1557. }
  1558. #u169794_img {
  1559. border-width:0px;
  1560. position:absolute;
  1561. left:0px;
  1562. top:0px;
  1563. width:433px;
  1564. height:865px;
  1565. }
  1566. #u169794 {
  1567. border-width:0px;
  1568. position:absolute;
  1569. left:453px;
  1570. top:0px;
  1571. width:433px;
  1572. height:865px;
  1573. display:flex;
  1574. }
  1575. #u169794 .text {
  1576. position:absolute;
  1577. align-self:center;
  1578. padding:2px 2px 2px 2px;
  1579. box-sizing:border-box;
  1580. width:100%;
  1581. }
  1582. #u169794_text {
  1583. border-width:0px;
  1584. word-wrap:break-word;
  1585. text-transform:none;
  1586. visibility:hidden;
  1587. }
  1588. #u169795_div {
  1589. border-width:0px;
  1590. position:absolute;
  1591. left:0px;
  1592. top:0px;
  1593. width:375px;
  1594. height:40px;
  1595. background:inherit;
  1596. background-color:rgba(255, 255, 255, 1);
  1597. box-sizing:border-box;
  1598. border-width:1px;
  1599. border-style:solid;
  1600. border-color:rgba(215, 215, 215, 1);
  1601. border-left:0px;
  1602. border-top:0px;
  1603. border-right:0px;
  1604. border-radius:0px;
  1605. border-bottom-right-radius:0px;
  1606. border-bottom-left-radius:0px;
  1607. -moz-box-shadow:none;
  1608. -webkit-box-shadow:none;
  1609. box-shadow:none;
  1610. }
  1611. #u169795 {
  1612. border-width:0px;
  1613. position:absolute;
  1614. left:482px;
  1615. top:67px;
  1616. width:375px;
  1617. height:40px;
  1618. display:flex;
  1619. }
  1620. #u169795 .text {
  1621. position:absolute;
  1622. align-self:center;
  1623. padding:2px 2px 2px 2px;
  1624. box-sizing:border-box;
  1625. width:100%;
  1626. }
  1627. #u169795_text {
  1628. border-width:0px;
  1629. word-wrap:break-word;
  1630. text-transform:none;
  1631. visibility:hidden;
  1632. }
  1633. #u169796 {
  1634. border-width:0px;
  1635. position:absolute;
  1636. left:0px;
  1637. top:0px;
  1638. width:0px;
  1639. height:0px;
  1640. }
  1641. #u169797_div {
  1642. border-width:0px;
  1643. position:absolute;
  1644. left:0px;
  1645. top:0px;
  1646. width:88px;
  1647. height:32px;
  1648. background:inherit;
  1649. background-color:rgba(255, 255, 255, 1);
  1650. box-sizing:border-box;
  1651. border-width:1px;
  1652. border-style:solid;
  1653. border-color:rgba(242, 242, 242, 1);
  1654. border-radius:33px;
  1655. -moz-box-shadow:none;
  1656. -webkit-box-shadow:none;
  1657. box-shadow:none;
  1658. }
  1659. #u169797 {
  1660. border-width:0px;
  1661. position:absolute;
  1662. left:762px;
  1663. top:71px;
  1664. width:88px;
  1665. height:32px;
  1666. display:flex;
  1667. }
  1668. #u169797 .text {
  1669. position:absolute;
  1670. align-self:center;
  1671. padding:2px 2px 2px 2px;
  1672. box-sizing:border-box;
  1673. width:100%;
  1674. }
  1675. #u169797_text {
  1676. border-width:0px;
  1677. word-wrap:break-word;
  1678. text-transform:none;
  1679. visibility:hidden;
  1680. }
  1681. #u169798 {
  1682. border-width:0px;
  1683. position:absolute;
  1684. left:0px;
  1685. top:0px;
  1686. width:0px;
  1687. height:0px;
  1688. }
  1689. #u169799_img {
  1690. border-width:0px;
  1691. position:absolute;
  1692. left:0px;
  1693. top:0px;
  1694. width:18px;
  1695. height:18px;
  1696. }
  1697. #u169799 {
  1698. border-width:0px;
  1699. position:absolute;
  1700. left:825px;
  1701. top:78px;
  1702. width:18px;
  1703. height:18px;
  1704. display:flex;
  1705. }
  1706. #u169799 .text {
  1707. position:absolute;
  1708. align-self:center;
  1709. padding:2px 2px 2px 2px;
  1710. box-sizing:border-box;
  1711. width:100%;
  1712. }
  1713. #u169799_text {
  1714. border-width:0px;
  1715. word-wrap:break-word;
  1716. text-transform:none;
  1717. visibility:hidden;
  1718. }
  1719. #u169800_img {
  1720. border-width:0px;
  1721. position:absolute;
  1722. left:0px;
  1723. top:0px;
  1724. width:6px;
  1725. height:6px;
  1726. }
  1727. #u169800 {
  1728. border-width:0px;
  1729. position:absolute;
  1730. left:831px;
  1731. top:84px;
  1732. width:6px;
  1733. height:6px;
  1734. display:flex;
  1735. }
  1736. #u169800 .text {
  1737. position:absolute;
  1738. align-self:center;
  1739. padding:2px 2px 2px 2px;
  1740. box-sizing:border-box;
  1741. width:100%;
  1742. }
  1743. #u169800_text {
  1744. border-width:0px;
  1745. word-wrap:break-word;
  1746. text-transform:none;
  1747. visibility:hidden;
  1748. }
  1749. #u169801 {
  1750. border-width:0px;
  1751. position:absolute;
  1752. left:0px;
  1753. top:0px;
  1754. width:0px;
  1755. height:0px;
  1756. }
  1757. #u169802_img {
  1758. border-width:0px;
  1759. position:absolute;
  1760. left:0px;
  1761. top:0px;
  1762. width:5px;
  1763. height:5px;
  1764. }
  1765. #u169802 {
  1766. border-width:0px;
  1767. position:absolute;
  1768. left:776px;
  1769. top:85px;
  1770. width:5px;
  1771. height:5px;
  1772. display:flex;
  1773. }
  1774. #u169802 .text {
  1775. position:absolute;
  1776. align-self:center;
  1777. padding:2px 2px 2px 2px;
  1778. box-sizing:border-box;
  1779. width:100%;
  1780. }
  1781. #u169802_text {
  1782. border-width:0px;
  1783. word-wrap:break-word;
  1784. text-transform:none;
  1785. visibility:hidden;
  1786. }
  1787. #u169803_img {
  1788. border-width:0px;
  1789. position:absolute;
  1790. left:0px;
  1791. top:0px;
  1792. width:5px;
  1793. height:5px;
  1794. }
  1795. #u169803 {
  1796. border-width:0px;
  1797. position:absolute;
  1798. left:792px;
  1799. top:85px;
  1800. width:5px;
  1801. height:5px;
  1802. display:flex;
  1803. }
  1804. #u169803 .text {
  1805. position:absolute;
  1806. align-self:center;
  1807. padding:2px 2px 2px 2px;
  1808. box-sizing:border-box;
  1809. width:100%;
  1810. }
  1811. #u169803_text {
  1812. border-width:0px;
  1813. word-wrap:break-word;
  1814. text-transform:none;
  1815. visibility:hidden;
  1816. }
  1817. #u169804_img {
  1818. border-width:0px;
  1819. position:absolute;
  1820. left:0px;
  1821. top:0px;
  1822. width:7px;
  1823. height:7px;
  1824. }
  1825. #u169804 {
  1826. border-width:0px;
  1827. position:absolute;
  1828. left:783px;
  1829. top:84px;
  1830. width:7px;
  1831. height:7px;
  1832. display:flex;
  1833. }
  1834. #u169804 .text {
  1835. position:absolute;
  1836. align-self:center;
  1837. padding:2px 2px 2px 2px;
  1838. box-sizing:border-box;
  1839. width:100%;
  1840. }
  1841. #u169804_text {
  1842. border-width:0px;
  1843. word-wrap:break-word;
  1844. text-transform:none;
  1845. visibility:hidden;
  1846. }
  1847. #u169805_img {
  1848. border-width:0px;
  1849. position:absolute;
  1850. left:0px;
  1851. top:0px;
  1852. width:19px;
  1853. height:2px;
  1854. }
  1855. #u169805 {
  1856. border-width:0px;
  1857. position:absolute;
  1858. left:800px;
  1859. top:87px;
  1860. width:18px;
  1861. height:1px;
  1862. display:flex;
  1863. -webkit-transform:rotate(90deg);
  1864. -moz-transform:rotate(90deg);
  1865. -ms-transform:rotate(90deg);
  1866. transform:rotate(90deg);
  1867. }
  1868. #u169805 .text {
  1869. position:absolute;
  1870. align-self:center;
  1871. padding:2px 2px 2px 2px;
  1872. box-sizing:border-box;
  1873. width:100%;
  1874. }
  1875. #u169805_text {
  1876. border-width:0px;
  1877. word-wrap:break-word;
  1878. text-transform:none;
  1879. visibility:hidden;
  1880. }
  1881. #u169806_img {
  1882. border-width:0px;
  1883. position:absolute;
  1884. left:0px;
  1885. top:0px;
  1886. width:375px;
  1887. height:44px;
  1888. }
  1889. #u169806 {
  1890. border-width:0px;
  1891. position:absolute;
  1892. left:482px;
  1893. top:24px;
  1894. width:375px;
  1895. height:44px;
  1896. display:flex;
  1897. }
  1898. #u169806 .text {
  1899. position:absolute;
  1900. align-self:center;
  1901. padding:2px 2px 2px 2px;
  1902. box-sizing:border-box;
  1903. width:100%;
  1904. }
  1905. #u169806_text {
  1906. border-width:0px;
  1907. word-wrap:break-word;
  1908. text-transform:none;
  1909. visibility:hidden;
  1910. }
  1911. #u169807_div {
  1912. border-width:0px;
  1913. position:absolute;
  1914. left:0px;
  1915. top:0px;
  1916. width:375px;
  1917. height:50px;
  1918. background:inherit;
  1919. background-color:rgba(255, 255, 255, 1);
  1920. box-sizing:border-box;
  1921. border-width:1px;
  1922. border-style:solid;
  1923. border-color:rgba(242, 242, 242, 1);
  1924. border-radius:26px;
  1925. border-top-left-radius:0px;
  1926. border-top-right-radius:0px;
  1927. -moz-box-shadow:none;
  1928. -webkit-box-shadow:none;
  1929. box-shadow:none;
  1930. }
  1931. #u169807 {
  1932. border-width:0px;
  1933. position:absolute;
  1934. left:482px;
  1935. top:788px;
  1936. width:375px;
  1937. height:50px;
  1938. display:flex;
  1939. }
  1940. #u169807 .text {
  1941. position:absolute;
  1942. align-self:center;
  1943. padding:2px 2px 2px 2px;
  1944. box-sizing:border-box;
  1945. width:100%;
  1946. }
  1947. #u169807_text {
  1948. border-width:0px;
  1949. word-wrap:break-word;
  1950. text-transform:none;
  1951. visibility:hidden;
  1952. }
  1953. #u169808 {
  1954. border-width:0px;
  1955. position:absolute;
  1956. left:0px;
  1957. top:0px;
  1958. width:0px;
  1959. height:0px;
  1960. }
  1961. #u169809_img {
  1962. border-width:0px;
  1963. position:absolute;
  1964. left:0px;
  1965. top:0px;
  1966. width:24px;
  1967. height:24px;
  1968. }
  1969. #u169809 {
  1970. border-width:0px;
  1971. position:absolute;
  1972. left:522px;
  1973. top:792px;
  1974. width:24px;
  1975. height:24px;
  1976. display:flex;
  1977. font-size:8px;
  1978. }
  1979. #u169809 .text {
  1980. position:absolute;
  1981. align-self:center;
  1982. padding:2px 2px 2px 2px;
  1983. box-sizing:border-box;
  1984. width:100%;
  1985. }
  1986. #u169809_text {
  1987. border-width:0px;
  1988. word-wrap:break-word;
  1989. text-transform:none;
  1990. }
  1991. #u169810_div {
  1992. border-width:0px;
  1993. position:absolute;
  1994. left:0px;
  1995. top:0px;
  1996. width:25px;
  1997. height:17px;
  1998. background:inherit;
  1999. background-color:rgba(255, 255, 255, 0);
  2000. border:none;
  2001. border-radius:0px;
  2002. -moz-box-shadow:none;
  2003. -webkit-box-shadow:none;
  2004. box-shadow:none;
  2005. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2006. font-weight:400;
  2007. font-style:normal;
  2008. font-size:12px;
  2009. }
  2010. #u169810 {
  2011. border-width:0px;
  2012. position:absolute;
  2013. left:522px;
  2014. top:817px;
  2015. width:25px;
  2016. height:17px;
  2017. display:flex;
  2018. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2019. font-weight:400;
  2020. font-style:normal;
  2021. font-size:12px;
  2022. }
  2023. #u169810 .text {
  2024. position:absolute;
  2025. align-self:flex-start;
  2026. padding:0px 0px 0px 0px;
  2027. box-sizing:border-box;
  2028. width:100%;
  2029. }
  2030. #u169810_text {
  2031. border-width:0px;
  2032. white-space:nowrap;
  2033. text-transform:none;
  2034. }
  2035. #u169811 {
  2036. border-width:0px;
  2037. position:absolute;
  2038. left:0px;
  2039. top:0px;
  2040. width:0px;
  2041. height:0px;
  2042. }
  2043. #u169812_img {
  2044. border-width:0px;
  2045. position:absolute;
  2046. left:0px;
  2047. top:0px;
  2048. width:24px;
  2049. height:24px;
  2050. }
  2051. #u169812 {
  2052. border-width:0px;
  2053. position:absolute;
  2054. left:792px;
  2055. top:794px;
  2056. width:24px;
  2057. height:24px;
  2058. display:flex;
  2059. font-size:8px;
  2060. }
  2061. #u169812 .text {
  2062. position:absolute;
  2063. align-self:center;
  2064. padding:2px 2px 2px 2px;
  2065. box-sizing:border-box;
  2066. width:100%;
  2067. }
  2068. #u169812_text {
  2069. border-width:0px;
  2070. word-wrap:break-word;
  2071. text-transform:none;
  2072. }
  2073. #u169813_div {
  2074. border-width:0px;
  2075. position:absolute;
  2076. left:0px;
  2077. top:0px;
  2078. width:25px;
  2079. height:17px;
  2080. background:inherit;
  2081. background-color:rgba(255, 255, 255, 0);
  2082. border:none;
  2083. border-radius:0px;
  2084. -moz-box-shadow:none;
  2085. -webkit-box-shadow:none;
  2086. box-shadow:none;
  2087. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2088. font-weight:400;
  2089. font-style:normal;
  2090. font-size:12px;
  2091. }
  2092. #u169813 {
  2093. border-width:0px;
  2094. position:absolute;
  2095. left:792px;
  2096. top:819px;
  2097. width:25px;
  2098. height:17px;
  2099. display:flex;
  2100. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2101. font-weight:400;
  2102. font-style:normal;
  2103. font-size:12px;
  2104. }
  2105. #u169813 .text {
  2106. position:absolute;
  2107. align-self:flex-start;
  2108. padding:0px 0px 0px 0px;
  2109. box-sizing:border-box;
  2110. width:100%;
  2111. }
  2112. #u169813_text {
  2113. border-width:0px;
  2114. white-space:nowrap;
  2115. text-transform:none;
  2116. }
  2117. #u169814_div {
  2118. border-width:0px;
  2119. position:absolute;
  2120. left:0px;
  2121. top:0px;
  2122. width:375px;
  2123. height:681px;
  2124. background:inherit;
  2125. background-color:rgba(242, 242, 242, 0.462745098039216);
  2126. border:none;
  2127. border-radius:0px;
  2128. -moz-box-shadow:none;
  2129. -webkit-box-shadow:none;
  2130. box-shadow:none;
  2131. }
  2132. #u169814 {
  2133. border-width:0px;
  2134. position:absolute;
  2135. left:482px;
  2136. top:107px;
  2137. width:375px;
  2138. height:681px;
  2139. display:flex;
  2140. }
  2141. #u169814 .text {
  2142. position:absolute;
  2143. align-self:center;
  2144. padding:2px 2px 2px 2px;
  2145. box-sizing:border-box;
  2146. width:100%;
  2147. }
  2148. #u169814_text {
  2149. border-width:0px;
  2150. word-wrap:break-word;
  2151. text-transform:none;
  2152. visibility:hidden;
  2153. }
  2154. #u169815 {
  2155. border-width:0px;
  2156. position:absolute;
  2157. left:0px;
  2158. top:0px;
  2159. width:0px;
  2160. height:0px;
  2161. }
  2162. #u169816_img {
  2163. border-width:0px;
  2164. position:absolute;
  2165. left:0px;
  2166. top:0px;
  2167. width:24px;
  2168. height:24px;
  2169. }
  2170. #u169816 {
  2171. border-width:0px;
  2172. position:absolute;
  2173. left:704px;
  2174. top:792px;
  2175. width:24px;
  2176. height:24px;
  2177. display:flex;
  2178. font-size:8px;
  2179. }
  2180. #u169816 .text {
  2181. position:absolute;
  2182. align-self:center;
  2183. padding:2px 2px 2px 2px;
  2184. box-sizing:border-box;
  2185. width:100%;
  2186. }
  2187. #u169816_text {
  2188. border-width:0px;
  2189. word-wrap:break-word;
  2190. text-transform:none;
  2191. }
  2192. #u169817_div {
  2193. border-width:0px;
  2194. position:absolute;
  2195. left:0px;
  2196. top:0px;
  2197. width:37px;
  2198. height:17px;
  2199. background:inherit;
  2200. background-color:rgba(255, 255, 255, 0);
  2201. border:none;
  2202. border-radius:0px;
  2203. -moz-box-shadow:none;
  2204. -webkit-box-shadow:none;
  2205. box-shadow:none;
  2206. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2207. font-weight:400;
  2208. font-style:normal;
  2209. font-size:12px;
  2210. }
  2211. #u169817 {
  2212. border-width:0px;
  2213. position:absolute;
  2214. left:698px;
  2215. top:817px;
  2216. width:37px;
  2217. height:17px;
  2218. display:flex;
  2219. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2220. font-weight:400;
  2221. font-style:normal;
  2222. font-size:12px;
  2223. }
  2224. #u169817 .text {
  2225. position:absolute;
  2226. align-self:flex-start;
  2227. padding:0px 0px 0px 0px;
  2228. box-sizing:border-box;
  2229. width:100%;
  2230. }
  2231. #u169817_text {
  2232. border-width:0px;
  2233. white-space:nowrap;
  2234. text-transform:none;
  2235. }
  2236. #u169818 {
  2237. border-width:0px;
  2238. position:absolute;
  2239. left:0px;
  2240. top:0px;
  2241. width:0px;
  2242. height:0px;
  2243. }
  2244. #u169819_img {
  2245. border-width:0px;
  2246. position:absolute;
  2247. left:0px;
  2248. top:0px;
  2249. width:24px;
  2250. height:24px;
  2251. }
  2252. #u169819 {
  2253. border-width:0px;
  2254. position:absolute;
  2255. left:610px;
  2256. top:792px;
  2257. width:24px;
  2258. height:24px;
  2259. display:flex;
  2260. font-size:8px;
  2261. }
  2262. #u169819 .text {
  2263. position:absolute;
  2264. align-self:center;
  2265. padding:2px 2px 2px 2px;
  2266. box-sizing:border-box;
  2267. width:100%;
  2268. }
  2269. #u169819_text {
  2270. border-width:0px;
  2271. word-wrap:break-word;
  2272. text-transform:none;
  2273. }
  2274. #u169820_div {
  2275. border-width:0px;
  2276. position:absolute;
  2277. left:0px;
  2278. top:0px;
  2279. width:37px;
  2280. height:17px;
  2281. background:inherit;
  2282. background-color:rgba(255, 255, 255, 0);
  2283. border:none;
  2284. border-radius:0px;
  2285. -moz-box-shadow:none;
  2286. -webkit-box-shadow:none;
  2287. box-shadow:none;
  2288. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2289. font-weight:400;
  2290. font-style:normal;
  2291. font-size:12px;
  2292. }
  2293. #u169820 {
  2294. border-width:0px;
  2295. position:absolute;
  2296. left:604px;
  2297. top:817px;
  2298. width:37px;
  2299. height:17px;
  2300. display:flex;
  2301. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2302. font-weight:400;
  2303. font-style:normal;
  2304. font-size:12px;
  2305. }
  2306. #u169820 .text {
  2307. position:absolute;
  2308. align-self:flex-start;
  2309. padding:0px 0px 0px 0px;
  2310. box-sizing:border-box;
  2311. width:100%;
  2312. }
  2313. #u169820_text {
  2314. border-width:0px;
  2315. white-space:nowrap;
  2316. text-transform:none;
  2317. }
  2318. #u169821_div {
  2319. border-width:0px;
  2320. position:absolute;
  2321. left:0px;
  2322. top:0px;
  2323. width:375px;
  2324. height:735px;
  2325. background:inherit;
  2326. background-color:rgba(242, 242, 242, 1);
  2327. border:none;
  2328. border-top:0px;
  2329. border-radius:25px;
  2330. border-top-left-radius:0px;
  2331. border-top-right-radius:0px;
  2332. -moz-box-shadow:none;
  2333. -webkit-box-shadow:none;
  2334. box-shadow:none;
  2335. }
  2336. #u169821 {
  2337. border-width:0px;
  2338. position:absolute;
  2339. left:482px;
  2340. top:102px;
  2341. width:375px;
  2342. height:735px;
  2343. display:flex;
  2344. }
  2345. #u169821 .text {
  2346. position:absolute;
  2347. align-self:center;
  2348. padding:2px 2px 2px 2px;
  2349. box-sizing:border-box;
  2350. width:100%;
  2351. }
  2352. #u169821_text {
  2353. border-width:0px;
  2354. word-wrap:break-word;
  2355. text-transform:none;
  2356. visibility:hidden;
  2357. }
  2358. #u169822 {
  2359. border-width:0px;
  2360. position:absolute;
  2361. left:0px;
  2362. top:0px;
  2363. width:0px;
  2364. height:0px;
  2365. }
  2366. #u169823_img {
  2367. border-width:0px;
  2368. position:absolute;
  2369. left:0px;
  2370. top:0px;
  2371. width:11px;
  2372. height:18px;
  2373. }
  2374. #u169823 {
  2375. border-width:0px;
  2376. position:absolute;
  2377. left:493px;
  2378. top:79px;
  2379. width:11px;
  2380. height:18px;
  2381. display:flex;
  2382. }
  2383. #u169823 .text {
  2384. position:absolute;
  2385. align-self:center;
  2386. padding:2px 2px 2px 2px;
  2387. box-sizing:border-box;
  2388. width:100%;
  2389. }
  2390. #u169823_text {
  2391. border-width:0px;
  2392. word-wrap:break-word;
  2393. text-transform:none;
  2394. visibility:hidden;
  2395. }
  2396. #u169824_div {
  2397. border-width:0px;
  2398. position:absolute;
  2399. left:0px;
  2400. top:0px;
  2401. width:37px;
  2402. height:30px;
  2403. background:inherit;
  2404. background-color:rgba(255, 255, 255, 0);
  2405. border:none;
  2406. border-left:0px;
  2407. border-top:0px;
  2408. border-right:0px;
  2409. border-radius:0px;
  2410. border-bottom-right-radius:0px;
  2411. border-bottom-left-radius:0px;
  2412. -moz-box-shadow:none;
  2413. -webkit-box-shadow:none;
  2414. box-shadow:none;
  2415. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2416. font-weight:400;
  2417. font-style:normal;
  2418. font-size:12px;
  2419. line-height:30px;
  2420. }
  2421. #u169824 {
  2422. border-width:0px;
  2423. position:absolute;
  2424. left:528px;
  2425. top:105px;
  2426. width:37px;
  2427. height:30px;
  2428. display:flex;
  2429. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2430. font-weight:400;
  2431. font-style:normal;
  2432. font-size:12px;
  2433. line-height:30px;
  2434. }
  2435. #u169824 .text {
  2436. position:absolute;
  2437. align-self:flex-start;
  2438. padding:0px 0px 0px 0px;
  2439. box-sizing:border-box;
  2440. width:100%;
  2441. }
  2442. #u169824_text {
  2443. border-width:0px;
  2444. white-space:nowrap;
  2445. text-transform:none;
  2446. }
  2447. #u169825_div {
  2448. border-width:0px;
  2449. position:absolute;
  2450. left:0px;
  2451. top:0px;
  2452. width:37px;
  2453. height:30px;
  2454. background:inherit;
  2455. background-color:rgba(255, 255, 255, 0);
  2456. box-sizing:border-box;
  2457. border-width:2px;
  2458. border-style:solid;
  2459. border-color:rgba(51, 51, 51, 1);
  2460. border-left:0px;
  2461. border-top:0px;
  2462. border-right:0px;
  2463. border-radius:0px;
  2464. border-bottom-right-radius:0px;
  2465. border-bottom-left-radius:0px;
  2466. -moz-box-shadow:none;
  2467. -webkit-box-shadow:none;
  2468. box-shadow:none;
  2469. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2470. font-weight:400;
  2471. font-style:normal;
  2472. font-size:12px;
  2473. line-height:30px;
  2474. }
  2475. #u169825 {
  2476. border-width:0px;
  2477. position:absolute;
  2478. left:650px;
  2479. top:105px;
  2480. width:37px;
  2481. height:30px;
  2482. display:flex;
  2483. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2484. font-weight:400;
  2485. font-style:normal;
  2486. font-size:12px;
  2487. line-height:30px;
  2488. }
  2489. #u169825 .text {
  2490. position:absolute;
  2491. align-self:flex-start;
  2492. padding:0px 0px 0px 0px;
  2493. box-sizing:border-box;
  2494. width:100%;
  2495. }
  2496. #u169825_text {
  2497. border-width:0px;
  2498. white-space:nowrap;
  2499. text-transform:none;
  2500. }
  2501. #u169826_div {
  2502. border-width:0px;
  2503. position:absolute;
  2504. left:0px;
  2505. top:0px;
  2506. width:37px;
  2507. height:30px;
  2508. background:inherit;
  2509. background-color:rgba(255, 255, 255, 0);
  2510. border:none;
  2511. border-left:0px;
  2512. border-top:0px;
  2513. border-right:0px;
  2514. border-radius:0px;
  2515. border-bottom-right-radius:0px;
  2516. border-bottom-left-radius:0px;
  2517. -moz-box-shadow:none;
  2518. -webkit-box-shadow:none;
  2519. box-shadow:none;
  2520. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2521. font-weight:400;
  2522. font-style:normal;
  2523. font-size:12px;
  2524. line-height:30px;
  2525. }
  2526. #u169826 {
  2527. border-width:0px;
  2528. position:absolute;
  2529. left:784px;
  2530. top:105px;
  2531. width:37px;
  2532. height:30px;
  2533. display:flex;
  2534. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2535. font-weight:400;
  2536. font-style:normal;
  2537. font-size:12px;
  2538. line-height:30px;
  2539. }
  2540. #u169826 .text {
  2541. position:absolute;
  2542. align-self:flex-start;
  2543. padding:0px 0px 0px 0px;
  2544. box-sizing:border-box;
  2545. width:100%;
  2546. }
  2547. #u169826_text {
  2548. border-width:0px;
  2549. white-space:nowrap;
  2550. text-transform:none;
  2551. }
  2552. #u169827 {
  2553. border-width:0px;
  2554. position:absolute;
  2555. left:0px;
  2556. top:0px;
  2557. width:0px;
  2558. height:0px;
  2559. }
  2560. #u169828_div {
  2561. border-width:0px;
  2562. position:absolute;
  2563. left:0px;
  2564. top:0px;
  2565. width:359px;
  2566. height:120px;
  2567. background:inherit;
  2568. background-color:rgba(255, 255, 255, 1);
  2569. border:none;
  2570. border-radius:4px;
  2571. -moz-box-shadow:none;
  2572. -webkit-box-shadow:none;
  2573. box-shadow:none;
  2574. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2575. font-weight:400;
  2576. font-style:normal;
  2577. font-size:14px;
  2578. color:#555555;
  2579. line-height:30px;
  2580. }
  2581. #u169828 {
  2582. border-width:0px;
  2583. position:absolute;
  2584. left:484px;
  2585. top:142px;
  2586. width:359px;
  2587. height:120px;
  2588. display:flex;
  2589. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2590. font-weight:400;
  2591. font-style:normal;
  2592. font-size:14px;
  2593. color:#555555;
  2594. line-height:30px;
  2595. }
  2596. #u169828 .text {
  2597. position:absolute;
  2598. align-self:center;
  2599. padding:2px 2px 2px 2px;
  2600. box-sizing:border-box;
  2601. width:100%;
  2602. }
  2603. #u169828_text {
  2604. border-width:0px;
  2605. word-wrap:break-word;
  2606. text-transform:none;
  2607. visibility:hidden;
  2608. }
  2609. #u169829_div {
  2610. border-width:0px;
  2611. position:absolute;
  2612. left:0px;
  2613. top:0px;
  2614. width:116px;
  2615. height:30px;
  2616. background:inherit;
  2617. background-color:rgba(255, 255, 255, 0);
  2618. border:none;
  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. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2629. font-weight:400;
  2630. font-style:normal;
  2631. font-size:12px;
  2632. line-height:30px;
  2633. }
  2634. #u169829 {
  2635. border-width:0px;
  2636. position:absolute;
  2637. left:627px;
  2638. top:153px;
  2639. width:116px;
  2640. height:30px;
  2641. display:flex;
  2642. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2643. font-weight:400;
  2644. font-style:normal;
  2645. font-size:12px;
  2646. line-height:30px;
  2647. }
  2648. #u169829 .text {
  2649. position:absolute;
  2650. align-self:center;
  2651. padding:0px 0px 0px 0px;
  2652. box-sizing:border-box;
  2653. width:100%;
  2654. }
  2655. #u169829_text {
  2656. border-width:0px;
  2657. white-space:nowrap;
  2658. text-transform:none;
  2659. }
  2660. #u169830_div {
  2661. border-width:0px;
  2662. position:absolute;
  2663. left:0px;
  2664. top:0px;
  2665. width:102px;
  2666. height:20px;
  2667. background:inherit;
  2668. background-color:rgba(255, 255, 255, 0);
  2669. border:none;
  2670. border-radius:40px;
  2671. -moz-box-shadow:none;
  2672. -webkit-box-shadow:none;
  2673. box-shadow:none;
  2674. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2675. font-weight:400;
  2676. font-style:normal;
  2677. font-size:10px;
  2678. color:#AAAAAA;
  2679. line-height:20px;
  2680. }
  2681. #u169830 {
  2682. border-width:0px;
  2683. position:absolute;
  2684. left:627px;
  2685. top:208px;
  2686. width:102px;
  2687. height:20px;
  2688. display:flex;
  2689. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2690. font-weight:400;
  2691. font-style:normal;
  2692. font-size:10px;
  2693. color:#AAAAAA;
  2694. line-height:20px;
  2695. }
  2696. #u169830 .text {
  2697. position:absolute;
  2698. align-self:center;
  2699. padding:0px 0px 0px 0px;
  2700. box-sizing:border-box;
  2701. width:100%;
  2702. }
  2703. #u169830_text {
  2704. border-width:0px;
  2705. white-space:nowrap;
  2706. text-transform:none;
  2707. }
  2708. #u169831_div {
  2709. border-width:0px;
  2710. position:absolute;
  2711. left:0px;
  2712. top:0px;
  2713. width:206px;
  2714. height:20px;
  2715. background:inherit;
  2716. background-color:rgba(255, 255, 255, 0);
  2717. border:none;
  2718. border-radius:40px;
  2719. -moz-box-shadow:none;
  2720. -webkit-box-shadow:none;
  2721. box-shadow:none;
  2722. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2723. font-weight:400;
  2724. font-style:normal;
  2725. font-size:10px;
  2726. line-height:20px;
  2727. }
  2728. #u169831 {
  2729. border-width:0px;
  2730. position:absolute;
  2731. left:627px;
  2732. top:183px;
  2733. width:206px;
  2734. height:20px;
  2735. display:flex;
  2736. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2737. font-weight:400;
  2738. font-style:normal;
  2739. font-size:10px;
  2740. line-height:20px;
  2741. }
  2742. #u169831 .text {
  2743. position:absolute;
  2744. align-self:flex-start;
  2745. padding:0px 0px 0px 0px;
  2746. box-sizing:border-box;
  2747. width:100%;
  2748. }
  2749. #u169831_text {
  2750. border-width:0px;
  2751. word-wrap:break-word;
  2752. text-transform:none;
  2753. }
  2754. #u169832_div {
  2755. border-width:0px;
  2756. position:absolute;
  2757. left:0px;
  2758. top:0px;
  2759. width:120px;
  2760. height:100px;
  2761. background:inherit;
  2762. background-color:rgba(242, 242, 242, 1);
  2763. border:none;
  2764. border-radius:5px;
  2765. -moz-box-shadow:none;
  2766. -webkit-box-shadow:none;
  2767. box-shadow:none;
  2768. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2769. font-weight:400;
  2770. font-style:normal;
  2771. color:#AAAAAA;
  2772. }
  2773. #u169832 {
  2774. border-width:0px;
  2775. position:absolute;
  2776. left:494px;
  2777. top:153px;
  2778. width:120px;
  2779. height:100px;
  2780. display:flex;
  2781. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2782. font-weight:400;
  2783. font-style:normal;
  2784. color:#AAAAAA;
  2785. }
  2786. #u169832 .text {
  2787. position:absolute;
  2788. align-self:center;
  2789. padding:2px 2px 2px 2px;
  2790. box-sizing:border-box;
  2791. width:100%;
  2792. }
  2793. #u169832_text {
  2794. border-width:0px;
  2795. word-wrap:break-word;
  2796. text-transform:none;
  2797. }
  2798. #u169833_img {
  2799. border-width:0px;
  2800. position:absolute;
  2801. left:0px;
  2802. top:0px;
  2803. width:40px;
  2804. height:40px;
  2805. }
  2806. #u169833 {
  2807. border-width:0px;
  2808. position:absolute;
  2809. left:792px;
  2810. top:148px;
  2811. width:40px;
  2812. height:40px;
  2813. display:flex;
  2814. -webkit-transform:rotate(338deg);
  2815. -moz-transform:rotate(338deg);
  2816. -ms-transform:rotate(338deg);
  2817. transform:rotate(338deg);
  2818. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2819. font-weight:400;
  2820. font-style:normal;
  2821. font-size:10px;
  2822. color:#AAAAAA;
  2823. }
  2824. #u169833 .text {
  2825. position:absolute;
  2826. align-self:center;
  2827. padding:2px 2px 2px 2px;
  2828. box-sizing:border-box;
  2829. width:100%;
  2830. }
  2831. #u169833_text {
  2832. border-width:0px;
  2833. word-wrap:break-word;
  2834. text-transform:none;
  2835. }
  2836. #u169835_img {
  2837. border-width:0px;
  2838. position:absolute;
  2839. left:0px;
  2840. top:0px;
  2841. width:433px;
  2842. height:865px;
  2843. }
  2844. #u169835 {
  2845. border-width:0px;
  2846. position:absolute;
  2847. left:906px;
  2848. top:0px;
  2849. width:433px;
  2850. height:865px;
  2851. display:flex;
  2852. }
  2853. #u169835 .text {
  2854. position:absolute;
  2855. align-self:center;
  2856. padding:2px 2px 2px 2px;
  2857. box-sizing:border-box;
  2858. width:100%;
  2859. }
  2860. #u169835_text {
  2861. border-width:0px;
  2862. word-wrap:break-word;
  2863. text-transform:none;
  2864. visibility:hidden;
  2865. }
  2866. #u169836_div {
  2867. border-width:0px;
  2868. position:absolute;
  2869. left:0px;
  2870. top:0px;
  2871. width:375px;
  2872. height:40px;
  2873. background:inherit;
  2874. background-color:rgba(255, 255, 255, 1);
  2875. box-sizing:border-box;
  2876. border-width:1px;
  2877. border-style:solid;
  2878. border-color:rgba(215, 215, 215, 1);
  2879. border-left:0px;
  2880. border-top:0px;
  2881. border-right:0px;
  2882. border-radius:0px;
  2883. border-bottom-right-radius:0px;
  2884. border-bottom-left-radius:0px;
  2885. -moz-box-shadow:none;
  2886. -webkit-box-shadow:none;
  2887. box-shadow:none;
  2888. }
  2889. #u169836 {
  2890. border-width:0px;
  2891. position:absolute;
  2892. left:935px;
  2893. top:67px;
  2894. width:375px;
  2895. height:40px;
  2896. display:flex;
  2897. }
  2898. #u169836 .text {
  2899. position:absolute;
  2900. align-self:center;
  2901. padding:2px 2px 2px 2px;
  2902. box-sizing:border-box;
  2903. width:100%;
  2904. }
  2905. #u169836_text {
  2906. border-width:0px;
  2907. word-wrap:break-word;
  2908. text-transform:none;
  2909. visibility:hidden;
  2910. }
  2911. #u169837 {
  2912. border-width:0px;
  2913. position:absolute;
  2914. left:0px;
  2915. top:0px;
  2916. width:0px;
  2917. height:0px;
  2918. }
  2919. #u169838_div {
  2920. border-width:0px;
  2921. position:absolute;
  2922. left:0px;
  2923. top:0px;
  2924. width:88px;
  2925. height:32px;
  2926. background:inherit;
  2927. background-color:rgba(255, 255, 255, 1);
  2928. box-sizing:border-box;
  2929. border-width:1px;
  2930. border-style:solid;
  2931. border-color:rgba(242, 242, 242, 1);
  2932. border-radius:33px;
  2933. -moz-box-shadow:none;
  2934. -webkit-box-shadow:none;
  2935. box-shadow:none;
  2936. }
  2937. #u169838 {
  2938. border-width:0px;
  2939. position:absolute;
  2940. left:1215px;
  2941. top:71px;
  2942. width:88px;
  2943. height:32px;
  2944. display:flex;
  2945. }
  2946. #u169838 .text {
  2947. position:absolute;
  2948. align-self:center;
  2949. padding:2px 2px 2px 2px;
  2950. box-sizing:border-box;
  2951. width:100%;
  2952. }
  2953. #u169838_text {
  2954. border-width:0px;
  2955. word-wrap:break-word;
  2956. text-transform:none;
  2957. visibility:hidden;
  2958. }
  2959. #u169839 {
  2960. border-width:0px;
  2961. position:absolute;
  2962. left:0px;
  2963. top:0px;
  2964. width:0px;
  2965. height:0px;
  2966. }
  2967. #u169840_img {
  2968. border-width:0px;
  2969. position:absolute;
  2970. left:0px;
  2971. top:0px;
  2972. width:18px;
  2973. height:18px;
  2974. }
  2975. #u169840 {
  2976. border-width:0px;
  2977. position:absolute;
  2978. left:1278px;
  2979. top:78px;
  2980. width:18px;
  2981. height:18px;
  2982. display:flex;
  2983. }
  2984. #u169840 .text {
  2985. position:absolute;
  2986. align-self:center;
  2987. padding:2px 2px 2px 2px;
  2988. box-sizing:border-box;
  2989. width:100%;
  2990. }
  2991. #u169840_text {
  2992. border-width:0px;
  2993. word-wrap:break-word;
  2994. text-transform:none;
  2995. visibility:hidden;
  2996. }
  2997. #u169841_img {
  2998. border-width:0px;
  2999. position:absolute;
  3000. left:0px;
  3001. top:0px;
  3002. width:6px;
  3003. height:6px;
  3004. }
  3005. #u169841 {
  3006. border-width:0px;
  3007. position:absolute;
  3008. left:1284px;
  3009. top:84px;
  3010. width:6px;
  3011. height:6px;
  3012. display:flex;
  3013. }
  3014. #u169841 .text {
  3015. position:absolute;
  3016. align-self:center;
  3017. padding:2px 2px 2px 2px;
  3018. box-sizing:border-box;
  3019. width:100%;
  3020. }
  3021. #u169841_text {
  3022. border-width:0px;
  3023. word-wrap:break-word;
  3024. text-transform:none;
  3025. visibility:hidden;
  3026. }
  3027. #u169842 {
  3028. border-width:0px;
  3029. position:absolute;
  3030. left:0px;
  3031. top:0px;
  3032. width:0px;
  3033. height:0px;
  3034. }
  3035. #u169843_img {
  3036. border-width:0px;
  3037. position:absolute;
  3038. left:0px;
  3039. top:0px;
  3040. width:5px;
  3041. height:5px;
  3042. }
  3043. #u169843 {
  3044. border-width:0px;
  3045. position:absolute;
  3046. left:1229px;
  3047. top:85px;
  3048. width:5px;
  3049. height:5px;
  3050. display:flex;
  3051. }
  3052. #u169843 .text {
  3053. position:absolute;
  3054. align-self:center;
  3055. padding:2px 2px 2px 2px;
  3056. box-sizing:border-box;
  3057. width:100%;
  3058. }
  3059. #u169843_text {
  3060. border-width:0px;
  3061. word-wrap:break-word;
  3062. text-transform:none;
  3063. visibility:hidden;
  3064. }
  3065. #u169844_img {
  3066. border-width:0px;
  3067. position:absolute;
  3068. left:0px;
  3069. top:0px;
  3070. width:5px;
  3071. height:5px;
  3072. }
  3073. #u169844 {
  3074. border-width:0px;
  3075. position:absolute;
  3076. left:1245px;
  3077. top:85px;
  3078. width:5px;
  3079. height:5px;
  3080. display:flex;
  3081. }
  3082. #u169844 .text {
  3083. position:absolute;
  3084. align-self:center;
  3085. padding:2px 2px 2px 2px;
  3086. box-sizing:border-box;
  3087. width:100%;
  3088. }
  3089. #u169844_text {
  3090. border-width:0px;
  3091. word-wrap:break-word;
  3092. text-transform:none;
  3093. visibility:hidden;
  3094. }
  3095. #u169845_img {
  3096. border-width:0px;
  3097. position:absolute;
  3098. left:0px;
  3099. top:0px;
  3100. width:7px;
  3101. height:7px;
  3102. }
  3103. #u169845 {
  3104. border-width:0px;
  3105. position:absolute;
  3106. left:1236px;
  3107. top:84px;
  3108. width:7px;
  3109. height:7px;
  3110. display:flex;
  3111. }
  3112. #u169845 .text {
  3113. position:absolute;
  3114. align-self:center;
  3115. padding:2px 2px 2px 2px;
  3116. box-sizing:border-box;
  3117. width:100%;
  3118. }
  3119. #u169845_text {
  3120. border-width:0px;
  3121. word-wrap:break-word;
  3122. text-transform:none;
  3123. visibility:hidden;
  3124. }
  3125. #u169846_img {
  3126. border-width:0px;
  3127. position:absolute;
  3128. left:0px;
  3129. top:0px;
  3130. width:19px;
  3131. height:2px;
  3132. }
  3133. #u169846 {
  3134. border-width:0px;
  3135. position:absolute;
  3136. left:1253px;
  3137. top:87px;
  3138. width:18px;
  3139. height:1px;
  3140. display:flex;
  3141. -webkit-transform:rotate(90deg);
  3142. -moz-transform:rotate(90deg);
  3143. -ms-transform:rotate(90deg);
  3144. transform:rotate(90deg);
  3145. }
  3146. #u169846 .text {
  3147. position:absolute;
  3148. align-self:center;
  3149. padding:2px 2px 2px 2px;
  3150. box-sizing:border-box;
  3151. width:100%;
  3152. }
  3153. #u169846_text {
  3154. border-width:0px;
  3155. word-wrap:break-word;
  3156. text-transform:none;
  3157. visibility:hidden;
  3158. }
  3159. #u169847_img {
  3160. border-width:0px;
  3161. position:absolute;
  3162. left:0px;
  3163. top:0px;
  3164. width:375px;
  3165. height:44px;
  3166. }
  3167. #u169847 {
  3168. border-width:0px;
  3169. position:absolute;
  3170. left:935px;
  3171. top:24px;
  3172. width:375px;
  3173. height:44px;
  3174. display:flex;
  3175. }
  3176. #u169847 .text {
  3177. position:absolute;
  3178. align-self:center;
  3179. padding:2px 2px 2px 2px;
  3180. box-sizing:border-box;
  3181. width:100%;
  3182. }
  3183. #u169847_text {
  3184. border-width:0px;
  3185. word-wrap:break-word;
  3186. text-transform:none;
  3187. visibility:hidden;
  3188. }
  3189. #u169848_div {
  3190. border-width:0px;
  3191. position:absolute;
  3192. left:0px;
  3193. top:0px;
  3194. width:375px;
  3195. height:50px;
  3196. background:inherit;
  3197. background-color:rgba(255, 255, 255, 1);
  3198. box-sizing:border-box;
  3199. border-width:1px;
  3200. border-style:solid;
  3201. border-color:rgba(242, 242, 242, 1);
  3202. border-radius:26px;
  3203. border-top-left-radius:0px;
  3204. border-top-right-radius:0px;
  3205. -moz-box-shadow:none;
  3206. -webkit-box-shadow:none;
  3207. box-shadow:none;
  3208. }
  3209. #u169848 {
  3210. border-width:0px;
  3211. position:absolute;
  3212. left:935px;
  3213. top:788px;
  3214. width:375px;
  3215. height:50px;
  3216. display:flex;
  3217. }
  3218. #u169848 .text {
  3219. position:absolute;
  3220. align-self:center;
  3221. padding:2px 2px 2px 2px;
  3222. box-sizing:border-box;
  3223. width:100%;
  3224. }
  3225. #u169848_text {
  3226. border-width:0px;
  3227. word-wrap:break-word;
  3228. text-transform:none;
  3229. visibility:hidden;
  3230. }
  3231. #u169849 {
  3232. border-width:0px;
  3233. position:absolute;
  3234. left:0px;
  3235. top:0px;
  3236. width:0px;
  3237. height:0px;
  3238. }
  3239. #u169850_img {
  3240. border-width:0px;
  3241. position:absolute;
  3242. left:0px;
  3243. top:0px;
  3244. width:24px;
  3245. height:24px;
  3246. }
  3247. #u169850 {
  3248. border-width:0px;
  3249. position:absolute;
  3250. left:975px;
  3251. top:792px;
  3252. width:24px;
  3253. height:24px;
  3254. display:flex;
  3255. font-size:8px;
  3256. }
  3257. #u169850 .text {
  3258. position:absolute;
  3259. align-self:center;
  3260. padding:2px 2px 2px 2px;
  3261. box-sizing:border-box;
  3262. width:100%;
  3263. }
  3264. #u169850_text {
  3265. border-width:0px;
  3266. word-wrap:break-word;
  3267. text-transform:none;
  3268. }
  3269. #u169851_div {
  3270. border-width:0px;
  3271. position:absolute;
  3272. left:0px;
  3273. top:0px;
  3274. width:25px;
  3275. height:17px;
  3276. background:inherit;
  3277. background-color:rgba(255, 255, 255, 0);
  3278. border:none;
  3279. border-radius:0px;
  3280. -moz-box-shadow:none;
  3281. -webkit-box-shadow:none;
  3282. box-shadow:none;
  3283. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3284. font-weight:400;
  3285. font-style:normal;
  3286. font-size:12px;
  3287. }
  3288. #u169851 {
  3289. border-width:0px;
  3290. position:absolute;
  3291. left:975px;
  3292. top:817px;
  3293. width:25px;
  3294. height:17px;
  3295. display:flex;
  3296. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3297. font-weight:400;
  3298. font-style:normal;
  3299. font-size:12px;
  3300. }
  3301. #u169851 .text {
  3302. position:absolute;
  3303. align-self:flex-start;
  3304. padding:0px 0px 0px 0px;
  3305. box-sizing:border-box;
  3306. width:100%;
  3307. }
  3308. #u169851_text {
  3309. border-width:0px;
  3310. white-space:nowrap;
  3311. text-transform:none;
  3312. }
  3313. #u169852 {
  3314. border-width:0px;
  3315. position:absolute;
  3316. left:0px;
  3317. top:0px;
  3318. width:0px;
  3319. height:0px;
  3320. }
  3321. #u169853_img {
  3322. border-width:0px;
  3323. position:absolute;
  3324. left:0px;
  3325. top:0px;
  3326. width:24px;
  3327. height:24px;
  3328. }
  3329. #u169853 {
  3330. border-width:0px;
  3331. position:absolute;
  3332. left:1245px;
  3333. top:794px;
  3334. width:24px;
  3335. height:24px;
  3336. display:flex;
  3337. font-size:8px;
  3338. }
  3339. #u169853 .text {
  3340. position:absolute;
  3341. align-self:center;
  3342. padding:2px 2px 2px 2px;
  3343. box-sizing:border-box;
  3344. width:100%;
  3345. }
  3346. #u169853_text {
  3347. border-width:0px;
  3348. word-wrap:break-word;
  3349. text-transform:none;
  3350. }
  3351. #u169854_div {
  3352. border-width:0px;
  3353. position:absolute;
  3354. left:0px;
  3355. top:0px;
  3356. width:25px;
  3357. height:17px;
  3358. background:inherit;
  3359. background-color:rgba(255, 255, 255, 0);
  3360. border:none;
  3361. border-radius:0px;
  3362. -moz-box-shadow:none;
  3363. -webkit-box-shadow:none;
  3364. box-shadow:none;
  3365. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3366. font-weight:400;
  3367. font-style:normal;
  3368. font-size:12px;
  3369. }
  3370. #u169854 {
  3371. border-width:0px;
  3372. position:absolute;
  3373. left:1245px;
  3374. top:819px;
  3375. width:25px;
  3376. height:17px;
  3377. display:flex;
  3378. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3379. font-weight:400;
  3380. font-style:normal;
  3381. font-size:12px;
  3382. }
  3383. #u169854 .text {
  3384. position:absolute;
  3385. align-self:flex-start;
  3386. padding:0px 0px 0px 0px;
  3387. box-sizing:border-box;
  3388. width:100%;
  3389. }
  3390. #u169854_text {
  3391. border-width:0px;
  3392. white-space:nowrap;
  3393. text-transform:none;
  3394. }
  3395. #u169855_div {
  3396. border-width:0px;
  3397. position:absolute;
  3398. left:0px;
  3399. top:0px;
  3400. width:375px;
  3401. height:681px;
  3402. background:inherit;
  3403. background-color:rgba(242, 242, 242, 0.462745098039216);
  3404. border:none;
  3405. border-radius:0px;
  3406. -moz-box-shadow:none;
  3407. -webkit-box-shadow:none;
  3408. box-shadow:none;
  3409. }
  3410. #u169855 {
  3411. border-width:0px;
  3412. position:absolute;
  3413. left:935px;
  3414. top:107px;
  3415. width:375px;
  3416. height:681px;
  3417. display:flex;
  3418. }
  3419. #u169855 .text {
  3420. position:absolute;
  3421. align-self:center;
  3422. padding:2px 2px 2px 2px;
  3423. box-sizing:border-box;
  3424. width:100%;
  3425. }
  3426. #u169855_text {
  3427. border-width:0px;
  3428. word-wrap:break-word;
  3429. text-transform:none;
  3430. visibility:hidden;
  3431. }
  3432. #u169856 {
  3433. border-width:0px;
  3434. position:absolute;
  3435. left:0px;
  3436. top:0px;
  3437. width:0px;
  3438. height:0px;
  3439. }
  3440. #u169857_img {
  3441. border-width:0px;
  3442. position:absolute;
  3443. left:0px;
  3444. top:0px;
  3445. width:24px;
  3446. height:24px;
  3447. }
  3448. #u169857 {
  3449. border-width:0px;
  3450. position:absolute;
  3451. left:1157px;
  3452. top:792px;
  3453. width:24px;
  3454. height:24px;
  3455. display:flex;
  3456. font-size:8px;
  3457. }
  3458. #u169857 .text {
  3459. position:absolute;
  3460. align-self:center;
  3461. padding:2px 2px 2px 2px;
  3462. box-sizing:border-box;
  3463. width:100%;
  3464. }
  3465. #u169857_text {
  3466. border-width:0px;
  3467. word-wrap:break-word;
  3468. text-transform:none;
  3469. }
  3470. #u169858_div {
  3471. border-width:0px;
  3472. position:absolute;
  3473. left:0px;
  3474. top:0px;
  3475. width:37px;
  3476. height:17px;
  3477. background:inherit;
  3478. background-color:rgba(255, 255, 255, 0);
  3479. border:none;
  3480. border-radius:0px;
  3481. -moz-box-shadow:none;
  3482. -webkit-box-shadow:none;
  3483. box-shadow:none;
  3484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3485. font-weight:400;
  3486. font-style:normal;
  3487. font-size:12px;
  3488. }
  3489. #u169858 {
  3490. border-width:0px;
  3491. position:absolute;
  3492. left:1151px;
  3493. top:817px;
  3494. width:37px;
  3495. height:17px;
  3496. display:flex;
  3497. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3498. font-weight:400;
  3499. font-style:normal;
  3500. font-size:12px;
  3501. }
  3502. #u169858 .text {
  3503. position:absolute;
  3504. align-self:flex-start;
  3505. padding:0px 0px 0px 0px;
  3506. box-sizing:border-box;
  3507. width:100%;
  3508. }
  3509. #u169858_text {
  3510. border-width:0px;
  3511. white-space:nowrap;
  3512. text-transform:none;
  3513. }
  3514. #u169859 {
  3515. border-width:0px;
  3516. position:absolute;
  3517. left:0px;
  3518. top:0px;
  3519. width:0px;
  3520. height:0px;
  3521. }
  3522. #u169860_img {
  3523. border-width:0px;
  3524. position:absolute;
  3525. left:0px;
  3526. top:0px;
  3527. width:24px;
  3528. height:24px;
  3529. }
  3530. #u169860 {
  3531. border-width:0px;
  3532. position:absolute;
  3533. left:1063px;
  3534. top:792px;
  3535. width:24px;
  3536. height:24px;
  3537. display:flex;
  3538. font-size:8px;
  3539. }
  3540. #u169860 .text {
  3541. position:absolute;
  3542. align-self:center;
  3543. padding:2px 2px 2px 2px;
  3544. box-sizing:border-box;
  3545. width:100%;
  3546. }
  3547. #u169860_text {
  3548. border-width:0px;
  3549. word-wrap:break-word;
  3550. text-transform:none;
  3551. }
  3552. #u169861_div {
  3553. border-width:0px;
  3554. position:absolute;
  3555. left:0px;
  3556. top:0px;
  3557. width:37px;
  3558. height:17px;
  3559. background:inherit;
  3560. background-color:rgba(255, 255, 255, 0);
  3561. border:none;
  3562. border-radius:0px;
  3563. -moz-box-shadow:none;
  3564. -webkit-box-shadow:none;
  3565. box-shadow:none;
  3566. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3567. font-weight:400;
  3568. font-style:normal;
  3569. font-size:12px;
  3570. }
  3571. #u169861 {
  3572. border-width:0px;
  3573. position:absolute;
  3574. left:1057px;
  3575. top:817px;
  3576. width:37px;
  3577. height:17px;
  3578. display:flex;
  3579. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3580. font-weight:400;
  3581. font-style:normal;
  3582. font-size:12px;
  3583. }
  3584. #u169861 .text {
  3585. position:absolute;
  3586. align-self:flex-start;
  3587. padding:0px 0px 0px 0px;
  3588. box-sizing:border-box;
  3589. width:100%;
  3590. }
  3591. #u169861_text {
  3592. border-width:0px;
  3593. white-space:nowrap;
  3594. text-transform:none;
  3595. }
  3596. #u169862_div {
  3597. border-width:0px;
  3598. position:absolute;
  3599. left:0px;
  3600. top:0px;
  3601. width:375px;
  3602. height:735px;
  3603. background:inherit;
  3604. background-color:rgba(242, 242, 242, 1);
  3605. border:none;
  3606. border-top:0px;
  3607. border-radius:25px;
  3608. border-top-left-radius:0px;
  3609. border-top-right-radius:0px;
  3610. -moz-box-shadow:none;
  3611. -webkit-box-shadow:none;
  3612. box-shadow:none;
  3613. }
  3614. #u169862 {
  3615. border-width:0px;
  3616. position:absolute;
  3617. left:935px;
  3618. top:102px;
  3619. width:375px;
  3620. height:735px;
  3621. display:flex;
  3622. }
  3623. #u169862 .text {
  3624. position:absolute;
  3625. align-self:center;
  3626. padding:2px 2px 2px 2px;
  3627. box-sizing:border-box;
  3628. width:100%;
  3629. }
  3630. #u169862_text {
  3631. border-width:0px;
  3632. word-wrap:break-word;
  3633. text-transform:none;
  3634. visibility:hidden;
  3635. }
  3636. #u169863 {
  3637. border-width:0px;
  3638. position:absolute;
  3639. left:0px;
  3640. top:0px;
  3641. width:0px;
  3642. height:0px;
  3643. }
  3644. #u169864_img {
  3645. border-width:0px;
  3646. position:absolute;
  3647. left:0px;
  3648. top:0px;
  3649. width:11px;
  3650. height:18px;
  3651. }
  3652. #u169864 {
  3653. border-width:0px;
  3654. position:absolute;
  3655. left:946px;
  3656. top:79px;
  3657. width:11px;
  3658. height:18px;
  3659. display:flex;
  3660. }
  3661. #u169864 .text {
  3662. position:absolute;
  3663. align-self:center;
  3664. padding:2px 2px 2px 2px;
  3665. box-sizing:border-box;
  3666. width:100%;
  3667. }
  3668. #u169864_text {
  3669. border-width:0px;
  3670. word-wrap:break-word;
  3671. text-transform:none;
  3672. visibility:hidden;
  3673. }
  3674. #u169865_div {
  3675. border-width:0px;
  3676. position:absolute;
  3677. left:0px;
  3678. top:0px;
  3679. width:37px;
  3680. height:30px;
  3681. background:inherit;
  3682. background-color:rgba(255, 255, 255, 0);
  3683. border:none;
  3684. border-left:0px;
  3685. border-top:0px;
  3686. border-right:0px;
  3687. border-radius:0px;
  3688. border-bottom-right-radius:0px;
  3689. border-bottom-left-radius:0px;
  3690. -moz-box-shadow:none;
  3691. -webkit-box-shadow:none;
  3692. box-shadow:none;
  3693. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3694. font-weight:400;
  3695. font-style:normal;
  3696. font-size:12px;
  3697. line-height:30px;
  3698. }
  3699. #u169865 {
  3700. border-width:0px;
  3701. position:absolute;
  3702. left:981px;
  3703. top:105px;
  3704. width:37px;
  3705. height:30px;
  3706. display:flex;
  3707. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3708. font-weight:400;
  3709. font-style:normal;
  3710. font-size:12px;
  3711. line-height:30px;
  3712. }
  3713. #u169865 .text {
  3714. position:absolute;
  3715. align-self:flex-start;
  3716. padding:0px 0px 0px 0px;
  3717. box-sizing:border-box;
  3718. width:100%;
  3719. }
  3720. #u169865_text {
  3721. border-width:0px;
  3722. white-space:nowrap;
  3723. text-transform:none;
  3724. }
  3725. #u169866_div {
  3726. border-width:0px;
  3727. position:absolute;
  3728. left:0px;
  3729. top:0px;
  3730. width:37px;
  3731. height:30px;
  3732. background:inherit;
  3733. background-color:rgba(255, 255, 255, 0);
  3734. border:none;
  3735. border-left:0px;
  3736. border-top:0px;
  3737. border-right:0px;
  3738. border-radius:0px;
  3739. border-bottom-right-radius:0px;
  3740. border-bottom-left-radius:0px;
  3741. -moz-box-shadow:none;
  3742. -webkit-box-shadow:none;
  3743. box-shadow:none;
  3744. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3745. font-weight:400;
  3746. font-style:normal;
  3747. font-size:12px;
  3748. line-height:30px;
  3749. }
  3750. #u169866 {
  3751. border-width:0px;
  3752. position:absolute;
  3753. left:1103px;
  3754. top:105px;
  3755. width:37px;
  3756. height:30px;
  3757. display:flex;
  3758. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3759. font-weight:400;
  3760. font-style:normal;
  3761. font-size:12px;
  3762. line-height:30px;
  3763. }
  3764. #u169866 .text {
  3765. position:absolute;
  3766. align-self:flex-start;
  3767. padding:0px 0px 0px 0px;
  3768. box-sizing:border-box;
  3769. width:100%;
  3770. }
  3771. #u169866_text {
  3772. border-width:0px;
  3773. white-space:nowrap;
  3774. text-transform:none;
  3775. }
  3776. #u169867_div {
  3777. border-width:0px;
  3778. position:absolute;
  3779. left:0px;
  3780. top:0px;
  3781. width:37px;
  3782. height:30px;
  3783. background:inherit;
  3784. background-color:rgba(255, 255, 255, 0);
  3785. box-sizing:border-box;
  3786. border-width:2px;
  3787. border-style:solid;
  3788. border-color:rgba(51, 51, 51, 1);
  3789. border-left:0px;
  3790. border-top:0px;
  3791. border-right:0px;
  3792. border-radius:0px;
  3793. border-bottom-right-radius:0px;
  3794. border-bottom-left-radius:0px;
  3795. -moz-box-shadow:none;
  3796. -webkit-box-shadow:none;
  3797. box-shadow:none;
  3798. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3799. font-weight:400;
  3800. font-style:normal;
  3801. font-size:12px;
  3802. line-height:30px;
  3803. }
  3804. #u169867 {
  3805. border-width:0px;
  3806. position:absolute;
  3807. left:1237px;
  3808. top:105px;
  3809. width:37px;
  3810. height:30px;
  3811. display:flex;
  3812. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3813. font-weight:400;
  3814. font-style:normal;
  3815. font-size:12px;
  3816. line-height:30px;
  3817. }
  3818. #u169867 .text {
  3819. position:absolute;
  3820. align-self:flex-start;
  3821. padding:0px 0px 0px 0px;
  3822. box-sizing:border-box;
  3823. width:100%;
  3824. }
  3825. #u169867_text {
  3826. border-width:0px;
  3827. white-space:nowrap;
  3828. text-transform:none;
  3829. }
  3830. #u169868 {
  3831. border-width:0px;
  3832. position:absolute;
  3833. left:0px;
  3834. top:0px;
  3835. width:0px;
  3836. height:0px;
  3837. }
  3838. #u169869_div {
  3839. border-width:0px;
  3840. position:absolute;
  3841. left:0px;
  3842. top:0px;
  3843. width:359px;
  3844. height:120px;
  3845. background:inherit;
  3846. background-color:rgba(255, 255, 255, 1);
  3847. border:none;
  3848. border-radius:4px;
  3849. -moz-box-shadow:none;
  3850. -webkit-box-shadow:none;
  3851. box-shadow:none;
  3852. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3853. font-weight:400;
  3854. font-style:normal;
  3855. font-size:14px;
  3856. color:#555555;
  3857. line-height:30px;
  3858. }
  3859. #u169869 {
  3860. border-width:0px;
  3861. position:absolute;
  3862. left:937px;
  3863. top:142px;
  3864. width:359px;
  3865. height:120px;
  3866. display:flex;
  3867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3868. font-weight:400;
  3869. font-style:normal;
  3870. font-size:14px;
  3871. color:#555555;
  3872. line-height:30px;
  3873. }
  3874. #u169869 .text {
  3875. position:absolute;
  3876. align-self:center;
  3877. padding:2px 2px 2px 2px;
  3878. box-sizing:border-box;
  3879. width:100%;
  3880. }
  3881. #u169869_text {
  3882. border-width:0px;
  3883. word-wrap:break-word;
  3884. text-transform:none;
  3885. visibility:hidden;
  3886. }
  3887. #u169870_div {
  3888. border-width:0px;
  3889. position:absolute;
  3890. left:0px;
  3891. top:0px;
  3892. width:116px;
  3893. height:30px;
  3894. background:inherit;
  3895. background-color:rgba(255, 255, 255, 0);
  3896. border:none;
  3897. border-left:0px;
  3898. border-top:0px;
  3899. border-right:0px;
  3900. border-radius:0px;
  3901. border-bottom-right-radius:0px;
  3902. border-bottom-left-radius:0px;
  3903. -moz-box-shadow:none;
  3904. -webkit-box-shadow:none;
  3905. box-shadow:none;
  3906. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3907. font-weight:400;
  3908. font-style:normal;
  3909. font-size:12px;
  3910. line-height:30px;
  3911. }
  3912. #u169870 {
  3913. border-width:0px;
  3914. position:absolute;
  3915. left:1080px;
  3916. top:153px;
  3917. width:116px;
  3918. height:30px;
  3919. display:flex;
  3920. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3921. font-weight:400;
  3922. font-style:normal;
  3923. font-size:12px;
  3924. line-height:30px;
  3925. }
  3926. #u169870 .text {
  3927. position:absolute;
  3928. align-self:center;
  3929. padding:0px 0px 0px 0px;
  3930. box-sizing:border-box;
  3931. width:100%;
  3932. }
  3933. #u169870_text {
  3934. border-width:0px;
  3935. white-space:nowrap;
  3936. text-transform:none;
  3937. }
  3938. #u169871_div {
  3939. border-width:0px;
  3940. position:absolute;
  3941. left:0px;
  3942. top:0px;
  3943. width:77px;
  3944. height:20px;
  3945. background:inherit;
  3946. background-color:rgba(255, 255, 255, 0);
  3947. border:none;
  3948. border-radius:40px;
  3949. -moz-box-shadow:none;
  3950. -webkit-box-shadow:none;
  3951. box-shadow:none;
  3952. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3953. font-weight:400;
  3954. font-style:normal;
  3955. font-size:10px;
  3956. color:#AAAAAA;
  3957. line-height:20px;
  3958. }
  3959. #u169871 {
  3960. border-width:0px;
  3961. position:absolute;
  3962. left:1080px;
  3963. top:208px;
  3964. width:77px;
  3965. height:20px;
  3966. display:flex;
  3967. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3968. font-weight:400;
  3969. font-style:normal;
  3970. font-size:10px;
  3971. color:#AAAAAA;
  3972. line-height:20px;
  3973. }
  3974. #u169871 .text {
  3975. position:absolute;
  3976. align-self:center;
  3977. padding:0px 0px 0px 0px;
  3978. box-sizing:border-box;
  3979. width:100%;
  3980. }
  3981. #u169871_text {
  3982. border-width:0px;
  3983. white-space:nowrap;
  3984. text-transform:none;
  3985. }
  3986. #u169872_div {
  3987. border-width:0px;
  3988. position:absolute;
  3989. left:0px;
  3990. top:0px;
  3991. width:206px;
  3992. height:20px;
  3993. background:inherit;
  3994. background-color:rgba(255, 255, 255, 0);
  3995. border:none;
  3996. border-radius:40px;
  3997. -moz-box-shadow:none;
  3998. -webkit-box-shadow:none;
  3999. box-shadow:none;
  4000. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4001. font-weight:400;
  4002. font-style:normal;
  4003. font-size:10px;
  4004. line-height:20px;
  4005. }
  4006. #u169872 {
  4007. border-width:0px;
  4008. position:absolute;
  4009. left:1080px;
  4010. top:183px;
  4011. width:206px;
  4012. height:20px;
  4013. display:flex;
  4014. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4015. font-weight:400;
  4016. font-style:normal;
  4017. font-size:10px;
  4018. line-height:20px;
  4019. }
  4020. #u169872 .text {
  4021. position:absolute;
  4022. align-self:flex-start;
  4023. padding:0px 0px 0px 0px;
  4024. box-sizing:border-box;
  4025. width:100%;
  4026. }
  4027. #u169872_text {
  4028. border-width:0px;
  4029. word-wrap:break-word;
  4030. text-transform:none;
  4031. }
  4032. #u169873_div {
  4033. border-width:0px;
  4034. position:absolute;
  4035. left:0px;
  4036. top:0px;
  4037. width:120px;
  4038. height:100px;
  4039. background:inherit;
  4040. background-color:rgba(242, 242, 242, 1);
  4041. border:none;
  4042. border-radius:5px;
  4043. -moz-box-shadow:none;
  4044. -webkit-box-shadow:none;
  4045. box-shadow:none;
  4046. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4047. font-weight:400;
  4048. font-style:normal;
  4049. color:#AAAAAA;
  4050. }
  4051. #u169873 {
  4052. border-width:0px;
  4053. position:absolute;
  4054. left:947px;
  4055. top:153px;
  4056. width:120px;
  4057. height:100px;
  4058. display:flex;
  4059. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4060. font-weight:400;
  4061. font-style:normal;
  4062. color:#AAAAAA;
  4063. }
  4064. #u169873 .text {
  4065. position:absolute;
  4066. align-self:center;
  4067. padding:2px 2px 2px 2px;
  4068. box-sizing:border-box;
  4069. width:100%;
  4070. }
  4071. #u169873_text {
  4072. border-width:0px;
  4073. word-wrap:break-word;
  4074. text-transform:none;
  4075. }
  4076. #u169874_img {
  4077. border-width:0px;
  4078. position:absolute;
  4079. left:0px;
  4080. top:0px;
  4081. width:40px;
  4082. height:40px;
  4083. }
  4084. #u169874 {
  4085. border-width:0px;
  4086. position:absolute;
  4087. left:1245px;
  4088. top:148px;
  4089. width:40px;
  4090. height:40px;
  4091. display:flex;
  4092. -webkit-transform:rotate(338deg);
  4093. -moz-transform:rotate(338deg);
  4094. -ms-transform:rotate(338deg);
  4095. transform:rotate(338deg);
  4096. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4097. font-weight:400;
  4098. font-style:normal;
  4099. font-size:10px;
  4100. color:#AAAAAA;
  4101. }
  4102. #u169874 .text {
  4103. position:absolute;
  4104. align-self:center;
  4105. padding:2px 2px 2px 2px;
  4106. box-sizing:border-box;
  4107. width:100%;
  4108. }
  4109. #u169874_text {
  4110. border-width:0px;
  4111. word-wrap:break-word;
  4112. text-transform:none;
  4113. }
  4114. #u169875 {
  4115. border-width:0px;
  4116. position:absolute;
  4117. left:0px;
  4118. top:0px;
  4119. width:0px;
  4120. height:0px;
  4121. }
  4122. #u169876_div {
  4123. border-width:0px;
  4124. position:absolute;
  4125. left:0px;
  4126. top:0px;
  4127. width:359px;
  4128. height:120px;
  4129. background:inherit;
  4130. background-color:rgba(255, 255, 255, 1);
  4131. border:none;
  4132. border-radius:4px;
  4133. -moz-box-shadow:none;
  4134. -webkit-box-shadow:none;
  4135. box-shadow:none;
  4136. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4137. font-weight:400;
  4138. font-style:normal;
  4139. font-size:14px;
  4140. color:#555555;
  4141. line-height:30px;
  4142. }
  4143. #u169876 {
  4144. border-width:0px;
  4145. position:absolute;
  4146. left:36px;
  4147. top:402px;
  4148. width:359px;
  4149. height:120px;
  4150. display:flex;
  4151. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4152. font-weight:400;
  4153. font-style:normal;
  4154. font-size:14px;
  4155. color:#555555;
  4156. line-height:30px;
  4157. }
  4158. #u169876 .text {
  4159. position:absolute;
  4160. align-self:center;
  4161. padding:2px 2px 2px 2px;
  4162. box-sizing:border-box;
  4163. width:100%;
  4164. }
  4165. #u169876_text {
  4166. border-width:0px;
  4167. word-wrap:break-word;
  4168. text-transform:none;
  4169. visibility:hidden;
  4170. }
  4171. #u169877_div {
  4172. border-width:0px;
  4173. position:absolute;
  4174. left:0px;
  4175. top:0px;
  4176. width:116px;
  4177. height:30px;
  4178. background:inherit;
  4179. background-color:rgba(255, 255, 255, 0);
  4180. border:none;
  4181. border-left:0px;
  4182. border-top:0px;
  4183. border-right:0px;
  4184. border-radius:0px;
  4185. border-bottom-right-radius:0px;
  4186. border-bottom-left-radius:0px;
  4187. -moz-box-shadow:none;
  4188. -webkit-box-shadow:none;
  4189. box-shadow:none;
  4190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4191. font-weight:400;
  4192. font-style:normal;
  4193. font-size:12px;
  4194. line-height:30px;
  4195. }
  4196. #u169877 {
  4197. border-width:0px;
  4198. position:absolute;
  4199. left:179px;
  4200. top:413px;
  4201. width:116px;
  4202. height:30px;
  4203. display:flex;
  4204. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4205. font-weight:400;
  4206. font-style:normal;
  4207. font-size:12px;
  4208. line-height:30px;
  4209. }
  4210. #u169877 .text {
  4211. position:absolute;
  4212. align-self:center;
  4213. padding:0px 0px 0px 0px;
  4214. box-sizing:border-box;
  4215. width:100%;
  4216. }
  4217. #u169877_text {
  4218. border-width:0px;
  4219. white-space:nowrap;
  4220. text-transform:none;
  4221. }
  4222. #u169878_div {
  4223. border-width:0px;
  4224. position:absolute;
  4225. left:0px;
  4226. top:0px;
  4227. width:77px;
  4228. height:20px;
  4229. background:inherit;
  4230. background-color:rgba(255, 255, 255, 0);
  4231. border:none;
  4232. border-radius:40px;
  4233. -moz-box-shadow:none;
  4234. -webkit-box-shadow:none;
  4235. box-shadow:none;
  4236. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4237. font-weight:400;
  4238. font-style:normal;
  4239. font-size:10px;
  4240. color:#AAAAAA;
  4241. line-height:20px;
  4242. }
  4243. #u169878 {
  4244. border-width:0px;
  4245. position:absolute;
  4246. left:179px;
  4247. top:468px;
  4248. width:77px;
  4249. height:20px;
  4250. display:flex;
  4251. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4252. font-weight:400;
  4253. font-style:normal;
  4254. font-size:10px;
  4255. color:#AAAAAA;
  4256. line-height:20px;
  4257. }
  4258. #u169878 .text {
  4259. position:absolute;
  4260. align-self:center;
  4261. padding:0px 0px 0px 0px;
  4262. box-sizing:border-box;
  4263. width:100%;
  4264. }
  4265. #u169878_text {
  4266. border-width:0px;
  4267. white-space:nowrap;
  4268. text-transform:none;
  4269. }
  4270. #u169879_div {
  4271. border-width:0px;
  4272. position:absolute;
  4273. left:0px;
  4274. top:0px;
  4275. width:206px;
  4276. height:20px;
  4277. background:inherit;
  4278. background-color:rgba(255, 255, 255, 0);
  4279. border:none;
  4280. border-radius:40px;
  4281. -moz-box-shadow:none;
  4282. -webkit-box-shadow:none;
  4283. box-shadow:none;
  4284. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4285. font-weight:400;
  4286. font-style:normal;
  4287. font-size:10px;
  4288. color:#AAAAAA;
  4289. line-height:20px;
  4290. }
  4291. #u169879 {
  4292. border-width:0px;
  4293. position:absolute;
  4294. left:179px;
  4295. top:443px;
  4296. width:206px;
  4297. height:20px;
  4298. display:flex;
  4299. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4300. font-weight:400;
  4301. font-style:normal;
  4302. font-size:10px;
  4303. color:#AAAAAA;
  4304. line-height:20px;
  4305. }
  4306. #u169879 .text {
  4307. position:absolute;
  4308. align-self:flex-start;
  4309. padding:0px 0px 0px 0px;
  4310. box-sizing:border-box;
  4311. width:100%;
  4312. }
  4313. #u169879_text {
  4314. border-width:0px;
  4315. word-wrap:break-word;
  4316. text-transform:none;
  4317. }
  4318. #u169880_div {
  4319. border-width:0px;
  4320. position:absolute;
  4321. left:0px;
  4322. top:0px;
  4323. width:120px;
  4324. height:100px;
  4325. background:inherit;
  4326. background-color:rgba(51, 51, 51, 1);
  4327. border:none;
  4328. border-radius:5px;
  4329. -moz-box-shadow:none;
  4330. -webkit-box-shadow:none;
  4331. box-shadow:none;
  4332. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4333. font-weight:400;
  4334. font-style:normal;
  4335. color:#F59A23;
  4336. }
  4337. #u169880 {
  4338. border-width:0px;
  4339. position:absolute;
  4340. left:46px;
  4341. top:413px;
  4342. width:120px;
  4343. height:100px;
  4344. display:flex;
  4345. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4346. font-weight:400;
  4347. font-style:normal;
  4348. color:#F59A23;
  4349. }
  4350. #u169880 .text {
  4351. position:absolute;
  4352. align-self:center;
  4353. padding:2px 2px 2px 2px;
  4354. box-sizing:border-box;
  4355. width:100%;
  4356. }
  4357. #u169880_text {
  4358. border-width:0px;
  4359. word-wrap:break-word;
  4360. text-transform:none;
  4361. }
  4362. #u169881 {
  4363. border-width:0px;
  4364. position:absolute;
  4365. left:0px;
  4366. top:0px;
  4367. width:0px;
  4368. height:0px;
  4369. }
  4370. #u169883_img {
  4371. border-width:0px;
  4372. position:absolute;
  4373. left:0px;
  4374. top:0px;
  4375. width:433px;
  4376. height:865px;
  4377. }
  4378. #u169883 {
  4379. border-width:0px;
  4380. position:absolute;
  4381. left:1359px;
  4382. top:0px;
  4383. width:433px;
  4384. height:865px;
  4385. display:flex;
  4386. }
  4387. #u169883 .text {
  4388. position:absolute;
  4389. align-self:center;
  4390. padding:2px 2px 2px 2px;
  4391. box-sizing:border-box;
  4392. width:100%;
  4393. }
  4394. #u169883_text {
  4395. border-width:0px;
  4396. word-wrap:break-word;
  4397. text-transform:none;
  4398. visibility:hidden;
  4399. }
  4400. #u169884_div {
  4401. border-width:0px;
  4402. position:absolute;
  4403. left:0px;
  4404. top:0px;
  4405. width:375px;
  4406. height:40px;
  4407. background:inherit;
  4408. background-color:rgba(255, 255, 255, 1);
  4409. box-sizing:border-box;
  4410. border-width:1px;
  4411. border-style:solid;
  4412. border-color:rgba(215, 215, 215, 1);
  4413. border-left:0px;
  4414. border-top:0px;
  4415. border-right:0px;
  4416. border-radius:0px;
  4417. border-bottom-right-radius:0px;
  4418. border-bottom-left-radius:0px;
  4419. -moz-box-shadow:none;
  4420. -webkit-box-shadow:none;
  4421. box-shadow:none;
  4422. }
  4423. #u169884 {
  4424. border-width:0px;
  4425. position:absolute;
  4426. left:1388px;
  4427. top:67px;
  4428. width:375px;
  4429. height:40px;
  4430. display:flex;
  4431. }
  4432. #u169884 .text {
  4433. position:absolute;
  4434. align-self:center;
  4435. padding:2px 2px 2px 2px;
  4436. box-sizing:border-box;
  4437. width:100%;
  4438. }
  4439. #u169884_text {
  4440. border-width:0px;
  4441. word-wrap:break-word;
  4442. text-transform:none;
  4443. visibility:hidden;
  4444. }
  4445. #u169885 {
  4446. border-width:0px;
  4447. position:absolute;
  4448. left:0px;
  4449. top:0px;
  4450. width:0px;
  4451. height:0px;
  4452. }
  4453. #u169886_div {
  4454. border-width:0px;
  4455. position:absolute;
  4456. left:0px;
  4457. top:0px;
  4458. width:88px;
  4459. height:32px;
  4460. background:inherit;
  4461. background-color:rgba(255, 255, 255, 1);
  4462. box-sizing:border-box;
  4463. border-width:1px;
  4464. border-style:solid;
  4465. border-color:rgba(242, 242, 242, 1);
  4466. border-radius:33px;
  4467. -moz-box-shadow:none;
  4468. -webkit-box-shadow:none;
  4469. box-shadow:none;
  4470. }
  4471. #u169886 {
  4472. border-width:0px;
  4473. position:absolute;
  4474. left:1668px;
  4475. top:71px;
  4476. width:88px;
  4477. height:32px;
  4478. display:flex;
  4479. }
  4480. #u169886 .text {
  4481. position:absolute;
  4482. align-self:center;
  4483. padding:2px 2px 2px 2px;
  4484. box-sizing:border-box;
  4485. width:100%;
  4486. }
  4487. #u169886_text {
  4488. border-width:0px;
  4489. word-wrap:break-word;
  4490. text-transform:none;
  4491. visibility:hidden;
  4492. }
  4493. #u169887 {
  4494. border-width:0px;
  4495. position:absolute;
  4496. left:0px;
  4497. top:0px;
  4498. width:0px;
  4499. height:0px;
  4500. }
  4501. #u169888_img {
  4502. border-width:0px;
  4503. position:absolute;
  4504. left:0px;
  4505. top:0px;
  4506. width:18px;
  4507. height:18px;
  4508. }
  4509. #u169888 {
  4510. border-width:0px;
  4511. position:absolute;
  4512. left:1731px;
  4513. top:78px;
  4514. width:18px;
  4515. height:18px;
  4516. display:flex;
  4517. }
  4518. #u169888 .text {
  4519. position:absolute;
  4520. align-self:center;
  4521. padding:2px 2px 2px 2px;
  4522. box-sizing:border-box;
  4523. width:100%;
  4524. }
  4525. #u169888_text {
  4526. border-width:0px;
  4527. word-wrap:break-word;
  4528. text-transform:none;
  4529. visibility:hidden;
  4530. }
  4531. #u169889_img {
  4532. border-width:0px;
  4533. position:absolute;
  4534. left:0px;
  4535. top:0px;
  4536. width:6px;
  4537. height:6px;
  4538. }
  4539. #u169889 {
  4540. border-width:0px;
  4541. position:absolute;
  4542. left:1737px;
  4543. top:84px;
  4544. width:6px;
  4545. height:6px;
  4546. display:flex;
  4547. }
  4548. #u169889 .text {
  4549. position:absolute;
  4550. align-self:center;
  4551. padding:2px 2px 2px 2px;
  4552. box-sizing:border-box;
  4553. width:100%;
  4554. }
  4555. #u169889_text {
  4556. border-width:0px;
  4557. word-wrap:break-word;
  4558. text-transform:none;
  4559. visibility:hidden;
  4560. }
  4561. #u169890 {
  4562. border-width:0px;
  4563. position:absolute;
  4564. left:0px;
  4565. top:0px;
  4566. width:0px;
  4567. height:0px;
  4568. }
  4569. #u169891_img {
  4570. border-width:0px;
  4571. position:absolute;
  4572. left:0px;
  4573. top:0px;
  4574. width:5px;
  4575. height:5px;
  4576. }
  4577. #u169891 {
  4578. border-width:0px;
  4579. position:absolute;
  4580. left:1682px;
  4581. top:85px;
  4582. width:5px;
  4583. height:5px;
  4584. display:flex;
  4585. }
  4586. #u169891 .text {
  4587. position:absolute;
  4588. align-self:center;
  4589. padding:2px 2px 2px 2px;
  4590. box-sizing:border-box;
  4591. width:100%;
  4592. }
  4593. #u169891_text {
  4594. border-width:0px;
  4595. word-wrap:break-word;
  4596. text-transform:none;
  4597. visibility:hidden;
  4598. }
  4599. #u169892_img {
  4600. border-width:0px;
  4601. position:absolute;
  4602. left:0px;
  4603. top:0px;
  4604. width:5px;
  4605. height:5px;
  4606. }
  4607. #u169892 {
  4608. border-width:0px;
  4609. position:absolute;
  4610. left:1698px;
  4611. top:85px;
  4612. width:5px;
  4613. height:5px;
  4614. display:flex;
  4615. }
  4616. #u169892 .text {
  4617. position:absolute;
  4618. align-self:center;
  4619. padding:2px 2px 2px 2px;
  4620. box-sizing:border-box;
  4621. width:100%;
  4622. }
  4623. #u169892_text {
  4624. border-width:0px;
  4625. word-wrap:break-word;
  4626. text-transform:none;
  4627. visibility:hidden;
  4628. }
  4629. #u169893_img {
  4630. border-width:0px;
  4631. position:absolute;
  4632. left:0px;
  4633. top:0px;
  4634. width:7px;
  4635. height:7px;
  4636. }
  4637. #u169893 {
  4638. border-width:0px;
  4639. position:absolute;
  4640. left:1689px;
  4641. top:84px;
  4642. width:7px;
  4643. height:7px;
  4644. display:flex;
  4645. }
  4646. #u169893 .text {
  4647. position:absolute;
  4648. align-self:center;
  4649. padding:2px 2px 2px 2px;
  4650. box-sizing:border-box;
  4651. width:100%;
  4652. }
  4653. #u169893_text {
  4654. border-width:0px;
  4655. word-wrap:break-word;
  4656. text-transform:none;
  4657. visibility:hidden;
  4658. }
  4659. #u169894_img {
  4660. border-width:0px;
  4661. position:absolute;
  4662. left:0px;
  4663. top:0px;
  4664. width:19px;
  4665. height:2px;
  4666. }
  4667. #u169894 {
  4668. border-width:0px;
  4669. position:absolute;
  4670. left:1706px;
  4671. top:87px;
  4672. width:18px;
  4673. height:1px;
  4674. display:flex;
  4675. -webkit-transform:rotate(90deg);
  4676. -moz-transform:rotate(90deg);
  4677. -ms-transform:rotate(90deg);
  4678. transform:rotate(90deg);
  4679. }
  4680. #u169894 .text {
  4681. position:absolute;
  4682. align-self:center;
  4683. padding:2px 2px 2px 2px;
  4684. box-sizing:border-box;
  4685. width:100%;
  4686. }
  4687. #u169894_text {
  4688. border-width:0px;
  4689. word-wrap:break-word;
  4690. text-transform:none;
  4691. visibility:hidden;
  4692. }
  4693. #u169895_img {
  4694. border-width:0px;
  4695. position:absolute;
  4696. left:0px;
  4697. top:0px;
  4698. width:375px;
  4699. height:44px;
  4700. }
  4701. #u169895 {
  4702. border-width:0px;
  4703. position:absolute;
  4704. left:1388px;
  4705. top:24px;
  4706. width:375px;
  4707. height:44px;
  4708. display:flex;
  4709. }
  4710. #u169895 .text {
  4711. position:absolute;
  4712. align-self:center;
  4713. padding:2px 2px 2px 2px;
  4714. box-sizing:border-box;
  4715. width:100%;
  4716. }
  4717. #u169895_text {
  4718. border-width:0px;
  4719. word-wrap:break-word;
  4720. text-transform:none;
  4721. visibility:hidden;
  4722. }
  4723. #u169896_div {
  4724. border-width:0px;
  4725. position:absolute;
  4726. left:0px;
  4727. top:0px;
  4728. width:375px;
  4729. height:50px;
  4730. background:inherit;
  4731. background-color:rgba(255, 255, 255, 1);
  4732. box-sizing:border-box;
  4733. border-width:1px;
  4734. border-style:solid;
  4735. border-color:rgba(242, 242, 242, 1);
  4736. border-radius:26px;
  4737. border-top-left-radius:0px;
  4738. border-top-right-radius:0px;
  4739. -moz-box-shadow:none;
  4740. -webkit-box-shadow:none;
  4741. box-shadow:none;
  4742. }
  4743. #u169896 {
  4744. border-width:0px;
  4745. position:absolute;
  4746. left:1388px;
  4747. top:788px;
  4748. width:375px;
  4749. height:50px;
  4750. display:flex;
  4751. }
  4752. #u169896 .text {
  4753. position:absolute;
  4754. align-self:center;
  4755. padding:2px 2px 2px 2px;
  4756. box-sizing:border-box;
  4757. width:100%;
  4758. }
  4759. #u169896_text {
  4760. border-width:0px;
  4761. word-wrap:break-word;
  4762. text-transform:none;
  4763. visibility:hidden;
  4764. }
  4765. #u169897 {
  4766. border-width:0px;
  4767. position:absolute;
  4768. left:0px;
  4769. top:0px;
  4770. width:0px;
  4771. height:0px;
  4772. }
  4773. #u169898_img {
  4774. border-width:0px;
  4775. position:absolute;
  4776. left:0px;
  4777. top:0px;
  4778. width:24px;
  4779. height:24px;
  4780. }
  4781. #u169898 {
  4782. border-width:0px;
  4783. position:absolute;
  4784. left:1428px;
  4785. top:792px;
  4786. width:24px;
  4787. height:24px;
  4788. display:flex;
  4789. font-size:8px;
  4790. }
  4791. #u169898 .text {
  4792. position:absolute;
  4793. align-self:center;
  4794. padding:2px 2px 2px 2px;
  4795. box-sizing:border-box;
  4796. width:100%;
  4797. }
  4798. #u169898_text {
  4799. border-width:0px;
  4800. word-wrap:break-word;
  4801. text-transform:none;
  4802. }
  4803. #u169899_div {
  4804. border-width:0px;
  4805. position:absolute;
  4806. left:0px;
  4807. top:0px;
  4808. width:25px;
  4809. height:17px;
  4810. background:inherit;
  4811. background-color:rgba(255, 255, 255, 0);
  4812. border:none;
  4813. border-radius:0px;
  4814. -moz-box-shadow:none;
  4815. -webkit-box-shadow:none;
  4816. box-shadow:none;
  4817. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4818. font-weight:400;
  4819. font-style:normal;
  4820. font-size:12px;
  4821. }
  4822. #u169899 {
  4823. border-width:0px;
  4824. position:absolute;
  4825. left:1428px;
  4826. top:817px;
  4827. width:25px;
  4828. height:17px;
  4829. display:flex;
  4830. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4831. font-weight:400;
  4832. font-style:normal;
  4833. font-size:12px;
  4834. }
  4835. #u169899 .text {
  4836. position:absolute;
  4837. align-self:flex-start;
  4838. padding:0px 0px 0px 0px;
  4839. box-sizing:border-box;
  4840. width:100%;
  4841. }
  4842. #u169899_text {
  4843. border-width:0px;
  4844. white-space:nowrap;
  4845. text-transform:none;
  4846. }
  4847. #u169900 {
  4848. border-width:0px;
  4849. position:absolute;
  4850. left:0px;
  4851. top:0px;
  4852. width:0px;
  4853. height:0px;
  4854. }
  4855. #u169901_img {
  4856. border-width:0px;
  4857. position:absolute;
  4858. left:0px;
  4859. top:0px;
  4860. width:24px;
  4861. height:24px;
  4862. }
  4863. #u169901 {
  4864. border-width:0px;
  4865. position:absolute;
  4866. left:1698px;
  4867. top:794px;
  4868. width:24px;
  4869. height:24px;
  4870. display:flex;
  4871. font-size:8px;
  4872. }
  4873. #u169901 .text {
  4874. position:absolute;
  4875. align-self:center;
  4876. padding:2px 2px 2px 2px;
  4877. box-sizing:border-box;
  4878. width:100%;
  4879. }
  4880. #u169901_text {
  4881. border-width:0px;
  4882. word-wrap:break-word;
  4883. text-transform:none;
  4884. }
  4885. #u169902_div {
  4886. border-width:0px;
  4887. position:absolute;
  4888. left:0px;
  4889. top:0px;
  4890. width:25px;
  4891. height:17px;
  4892. background:inherit;
  4893. background-color:rgba(255, 255, 255, 0);
  4894. border:none;
  4895. border-radius:0px;
  4896. -moz-box-shadow:none;
  4897. -webkit-box-shadow:none;
  4898. box-shadow:none;
  4899. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4900. font-weight:400;
  4901. font-style:normal;
  4902. font-size:12px;
  4903. }
  4904. #u169902 {
  4905. border-width:0px;
  4906. position:absolute;
  4907. left:1698px;
  4908. top:819px;
  4909. width:25px;
  4910. height:17px;
  4911. display:flex;
  4912. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4913. font-weight:400;
  4914. font-style:normal;
  4915. font-size:12px;
  4916. }
  4917. #u169902 .text {
  4918. position:absolute;
  4919. align-self:flex-start;
  4920. padding:0px 0px 0px 0px;
  4921. box-sizing:border-box;
  4922. width:100%;
  4923. }
  4924. #u169902_text {
  4925. border-width:0px;
  4926. white-space:nowrap;
  4927. text-transform:none;
  4928. }
  4929. #u169903_div {
  4930. border-width:0px;
  4931. position:absolute;
  4932. left:0px;
  4933. top:0px;
  4934. width:375px;
  4935. height:681px;
  4936. background:inherit;
  4937. background-color:rgba(242, 242, 242, 0.462745098039216);
  4938. border:none;
  4939. border-radius:0px;
  4940. -moz-box-shadow:none;
  4941. -webkit-box-shadow:none;
  4942. box-shadow:none;
  4943. }
  4944. #u169903 {
  4945. border-width:0px;
  4946. position:absolute;
  4947. left:1388px;
  4948. top:107px;
  4949. width:375px;
  4950. height:681px;
  4951. display:flex;
  4952. }
  4953. #u169903 .text {
  4954. position:absolute;
  4955. align-self:center;
  4956. padding:2px 2px 2px 2px;
  4957. box-sizing:border-box;
  4958. width:100%;
  4959. }
  4960. #u169903_text {
  4961. border-width:0px;
  4962. word-wrap:break-word;
  4963. text-transform:none;
  4964. visibility:hidden;
  4965. }
  4966. #u169904 {
  4967. border-width:0px;
  4968. position:absolute;
  4969. left:0px;
  4970. top:0px;
  4971. width:0px;
  4972. height:0px;
  4973. }
  4974. #u169905_img {
  4975. border-width:0px;
  4976. position:absolute;
  4977. left:0px;
  4978. top:0px;
  4979. width:24px;
  4980. height:24px;
  4981. }
  4982. #u169905 {
  4983. border-width:0px;
  4984. position:absolute;
  4985. left:1610px;
  4986. top:792px;
  4987. width:24px;
  4988. height:24px;
  4989. display:flex;
  4990. font-size:8px;
  4991. }
  4992. #u169905 .text {
  4993. position:absolute;
  4994. align-self:center;
  4995. padding:2px 2px 2px 2px;
  4996. box-sizing:border-box;
  4997. width:100%;
  4998. }
  4999. #u169905_text {
  5000. border-width:0px;
  5001. word-wrap:break-word;
  5002. text-transform:none;
  5003. }
  5004. #u169906_div {
  5005. border-width:0px;
  5006. position:absolute;
  5007. left:0px;
  5008. top:0px;
  5009. width:37px;
  5010. height:17px;
  5011. background:inherit;
  5012. background-color:rgba(255, 255, 255, 0);
  5013. border:none;
  5014. border-radius:0px;
  5015. -moz-box-shadow:none;
  5016. -webkit-box-shadow:none;
  5017. box-shadow:none;
  5018. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5019. font-weight:400;
  5020. font-style:normal;
  5021. font-size:12px;
  5022. }
  5023. #u169906 {
  5024. border-width:0px;
  5025. position:absolute;
  5026. left:1604px;
  5027. top:817px;
  5028. width:37px;
  5029. height:17px;
  5030. display:flex;
  5031. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5032. font-weight:400;
  5033. font-style:normal;
  5034. font-size:12px;
  5035. }
  5036. #u169906 .text {
  5037. position:absolute;
  5038. align-self:flex-start;
  5039. padding:0px 0px 0px 0px;
  5040. box-sizing:border-box;
  5041. width:100%;
  5042. }
  5043. #u169906_text {
  5044. border-width:0px;
  5045. white-space:nowrap;
  5046. text-transform:none;
  5047. }
  5048. #u169907 {
  5049. border-width:0px;
  5050. position:absolute;
  5051. left:0px;
  5052. top:0px;
  5053. width:0px;
  5054. height:0px;
  5055. }
  5056. #u169908_img {
  5057. border-width:0px;
  5058. position:absolute;
  5059. left:0px;
  5060. top:0px;
  5061. width:24px;
  5062. height:24px;
  5063. }
  5064. #u169908 {
  5065. border-width:0px;
  5066. position:absolute;
  5067. left:1516px;
  5068. top:792px;
  5069. width:24px;
  5070. height:24px;
  5071. display:flex;
  5072. font-size:8px;
  5073. }
  5074. #u169908 .text {
  5075. position:absolute;
  5076. align-self:center;
  5077. padding:2px 2px 2px 2px;
  5078. box-sizing:border-box;
  5079. width:100%;
  5080. }
  5081. #u169908_text {
  5082. border-width:0px;
  5083. word-wrap:break-word;
  5084. text-transform:none;
  5085. }
  5086. #u169909_div {
  5087. border-width:0px;
  5088. position:absolute;
  5089. left:0px;
  5090. top:0px;
  5091. width:37px;
  5092. height:17px;
  5093. background:inherit;
  5094. background-color:rgba(255, 255, 255, 0);
  5095. border:none;
  5096. border-radius:0px;
  5097. -moz-box-shadow:none;
  5098. -webkit-box-shadow:none;
  5099. box-shadow:none;
  5100. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5101. font-weight:400;
  5102. font-style:normal;
  5103. font-size:12px;
  5104. }
  5105. #u169909 {
  5106. border-width:0px;
  5107. position:absolute;
  5108. left:1510px;
  5109. top:817px;
  5110. width:37px;
  5111. height:17px;
  5112. display:flex;
  5113. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5114. font-weight:400;
  5115. font-style:normal;
  5116. font-size:12px;
  5117. }
  5118. #u169909 .text {
  5119. position:absolute;
  5120. align-self:flex-start;
  5121. padding:0px 0px 0px 0px;
  5122. box-sizing:border-box;
  5123. width:100%;
  5124. }
  5125. #u169909_text {
  5126. border-width:0px;
  5127. white-space:nowrap;
  5128. text-transform:none;
  5129. }
  5130. #u169910_div {
  5131. border-width:0px;
  5132. position:absolute;
  5133. left:0px;
  5134. top:0px;
  5135. width:375px;
  5136. height:735px;
  5137. background:inherit;
  5138. background-color:rgba(242, 242, 242, 1);
  5139. border:none;
  5140. border-top:0px;
  5141. border-radius:25px;
  5142. border-top-left-radius:0px;
  5143. border-top-right-radius:0px;
  5144. -moz-box-shadow:none;
  5145. -webkit-box-shadow:none;
  5146. box-shadow:none;
  5147. }
  5148. #u169910 {
  5149. border-width:0px;
  5150. position:absolute;
  5151. left:1388px;
  5152. top:102px;
  5153. width:375px;
  5154. height:735px;
  5155. display:flex;
  5156. }
  5157. #u169910 .text {
  5158. position:absolute;
  5159. align-self:center;
  5160. padding:2px 2px 2px 2px;
  5161. box-sizing:border-box;
  5162. width:100%;
  5163. }
  5164. #u169910_text {
  5165. border-width:0px;
  5166. word-wrap:break-word;
  5167. text-transform:none;
  5168. visibility:hidden;
  5169. }
  5170. #u169911 {
  5171. border-width:0px;
  5172. position:absolute;
  5173. left:0px;
  5174. top:0px;
  5175. width:0px;
  5176. height:0px;
  5177. }
  5178. #u169912_img {
  5179. border-width:0px;
  5180. position:absolute;
  5181. left:0px;
  5182. top:0px;
  5183. width:11px;
  5184. height:18px;
  5185. }
  5186. #u169912 {
  5187. border-width:0px;
  5188. position:absolute;
  5189. left:1399px;
  5190. top:79px;
  5191. width:11px;
  5192. height:18px;
  5193. display:flex;
  5194. }
  5195. #u169912 .text {
  5196. position:absolute;
  5197. align-self:center;
  5198. padding:2px 2px 2px 2px;
  5199. box-sizing:border-box;
  5200. width:100%;
  5201. }
  5202. #u169912_text {
  5203. border-width:0px;
  5204. word-wrap:break-word;
  5205. text-transform:none;
  5206. visibility:hidden;
  5207. }
  5208. #u169913_div {
  5209. border-width:0px;
  5210. position:absolute;
  5211. left:0px;
  5212. top:0px;
  5213. width:29px;
  5214. height:30px;
  5215. background:inherit;
  5216. background-color:rgba(255, 255, 255, 0);
  5217. border:none;
  5218. border-left:0px;
  5219. border-top:0px;
  5220. border-right:0px;
  5221. border-radius:0px;
  5222. border-bottom-right-radius:0px;
  5223. border-bottom-left-radius:0px;
  5224. -moz-box-shadow:none;
  5225. -webkit-box-shadow:none;
  5226. box-shadow:none;
  5227. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5228. font-weight:500;
  5229. font-style:normal;
  5230. font-size:14px;
  5231. line-height:30px;
  5232. }
  5233. #u169913 {
  5234. border-width:0px;
  5235. position:absolute;
  5236. left:1425px;
  5237. top:73px;
  5238. width:29px;
  5239. height:30px;
  5240. display:flex;
  5241. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5242. font-weight:500;
  5243. font-style:normal;
  5244. font-size:14px;
  5245. line-height:30px;
  5246. }
  5247. #u169913 .text {
  5248. position:absolute;
  5249. align-self:flex-start;
  5250. padding:0px 0px 0px 0px;
  5251. box-sizing:border-box;
  5252. width:100%;
  5253. }
  5254. #u169913_text {
  5255. border-width:0px;
  5256. white-space:nowrap;
  5257. text-transform:none;
  5258. }
  5259. #u169914 {
  5260. border-width:0px;
  5261. position:absolute;
  5262. left:0px;
  5263. top:0px;
  5264. width:0px;
  5265. height:0px;
  5266. }
  5267. #u169915 {
  5268. border-width:0px;
  5269. position:absolute;
  5270. left:0px;
  5271. top:0px;
  5272. width:0px;
  5273. height:0px;
  5274. }
  5275. #u169916_div {
  5276. border-width:0px;
  5277. position:absolute;
  5278. left:0px;
  5279. top:0px;
  5280. width:355px;
  5281. height:120px;
  5282. background:inherit;
  5283. background-color:rgba(255, 255, 255, 1);
  5284. border:none;
  5285. border-radius:9px;
  5286. -moz-box-shadow:none;
  5287. -webkit-box-shadow:none;
  5288. box-shadow:none;
  5289. }
  5290. #u169916 {
  5291. border-width:0px;
  5292. position:absolute;
  5293. left:1405px;
  5294. top:118px;
  5295. width:355px;
  5296. height:120px;
  5297. display:flex;
  5298. }
  5299. #u169916 .text {
  5300. position:absolute;
  5301. align-self:center;
  5302. padding:2px 2px 2px 2px;
  5303. box-sizing:border-box;
  5304. width:100%;
  5305. }
  5306. #u169916_text {
  5307. border-width:0px;
  5308. word-wrap:break-word;
  5309. text-transform:none;
  5310. visibility:hidden;
  5311. }
  5312. #u169917_div {
  5313. border-width:0px;
  5314. position:absolute;
  5315. left:0px;
  5316. top:0px;
  5317. width:85px;
  5318. height:60px;
  5319. background:inherit;
  5320. background-color:rgba(255, 255, 255, 0);
  5321. border:none;
  5322. border-left:0px;
  5323. border-top:0px;
  5324. border-right:0px;
  5325. border-radius:0px;
  5326. border-bottom-right-radius:0px;
  5327. border-bottom-left-radius:0px;
  5328. -moz-box-shadow:none;
  5329. -webkit-box-shadow:none;
  5330. box-shadow:none;
  5331. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  5332. font-style:normal;
  5333. text-align:center;
  5334. line-height:30px;
  5335. }
  5336. #u169917 {
  5337. border-width:0px;
  5338. position:absolute;
  5339. left:1425px;
  5340. top:148px;
  5341. width:85px;
  5342. height:60px;
  5343. display:flex;
  5344. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  5345. font-style:normal;
  5346. text-align:center;
  5347. line-height:30px;
  5348. }
  5349. #u169917 .text {
  5350. position:absolute;
  5351. align-self:center;
  5352. padding:0px 0px 0px 0px;
  5353. box-sizing:border-box;
  5354. width:100%;
  5355. }
  5356. #u169917_text {
  5357. border-width:0px;
  5358. white-space:nowrap;
  5359. text-transform:none;
  5360. }
  5361. #u169918_div {
  5362. border-width:0px;
  5363. position:absolute;
  5364. left:0px;
  5365. top:0px;
  5366. width:174px;
  5367. height:30px;
  5368. background:inherit;
  5369. background-color:rgba(255, 255, 255, 0);
  5370. border:none;
  5371. border-left:0px;
  5372. border-top:0px;
  5373. border-right:0px;
  5374. border-radius:0px;
  5375. border-bottom-right-radius:0px;
  5376. border-bottom-left-radius:0px;
  5377. -moz-box-shadow:none;
  5378. -webkit-box-shadow:none;
  5379. box-shadow:none;
  5380. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5381. font-weight:400;
  5382. font-style:normal;
  5383. font-size:18px;
  5384. line-height:30px;
  5385. }
  5386. #u169918 {
  5387. border-width:0px;
  5388. position:absolute;
  5389. left:1530px;
  5390. top:155px;
  5391. width:174px;
  5392. height:30px;
  5393. display:flex;
  5394. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5395. font-weight:400;
  5396. font-style:normal;
  5397. font-size:18px;
  5398. line-height:30px;
  5399. }
  5400. #u169918 .text {
  5401. position:absolute;
  5402. align-self:center;
  5403. padding:0px 0px 0px 0px;
  5404. box-sizing:border-box;
  5405. width:100%;
  5406. }
  5407. #u169918_text {
  5408. border-width:0px;
  5409. white-space:nowrap;
  5410. text-transform:none;
  5411. }
  5412. #u169919_div {
  5413. border-width:0px;
  5414. position:absolute;
  5415. left:0px;
  5416. top:0px;
  5417. width:205px;
  5418. height:17px;
  5419. background:inherit;
  5420. background-color:rgba(255, 255, 255, 0);
  5421. border:none;
  5422. border-left:0px;
  5423. border-top:0px;
  5424. border-right:0px;
  5425. border-radius:0px;
  5426. border-bottom-right-radius:0px;
  5427. border-bottom-left-radius:0px;
  5428. -moz-box-shadow:none;
  5429. -webkit-box-shadow:none;
  5430. box-shadow:none;
  5431. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5432. font-weight:400;
  5433. font-style:normal;
  5434. font-size:12px;
  5435. color:#F59A23;
  5436. }
  5437. #u169919 {
  5438. border-width:0px;
  5439. position:absolute;
  5440. left:1530px;
  5441. top:185px;
  5442. width:205px;
  5443. height:17px;
  5444. display:flex;
  5445. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5446. font-weight:400;
  5447. font-style:normal;
  5448. font-size:12px;
  5449. color:#F59A23;
  5450. }
  5451. #u169919 .text {
  5452. position:absolute;
  5453. align-self:center;
  5454. padding:0px 0px 0px 0px;
  5455. box-sizing:border-box;
  5456. width:100%;
  5457. }
  5458. #u169919_text {
  5459. border-width:0px;
  5460. white-space:nowrap;
  5461. text-transform:none;
  5462. }
  5463. #u169920_div {
  5464. border-width:0px;
  5465. position:absolute;
  5466. left:0px;
  5467. top:0px;
  5468. width:355px;
  5469. height:240px;
  5470. background:inherit;
  5471. background-color:rgba(255, 255, 255, 1);
  5472. border:none;
  5473. border-radius:9px;
  5474. -moz-box-shadow:none;
  5475. -webkit-box-shadow:none;
  5476. box-shadow:none;
  5477. }
  5478. #u169920 {
  5479. border-width:0px;
  5480. position:absolute;
  5481. left:1405px;
  5482. top:239px;
  5483. width:355px;
  5484. height:240px;
  5485. display:flex;
  5486. }
  5487. #u169920 .text {
  5488. position:absolute;
  5489. align-self:center;
  5490. padding:2px 2px 2px 2px;
  5491. box-sizing:border-box;
  5492. width:100%;
  5493. }
  5494. #u169920_text {
  5495. border-width:0px;
  5496. word-wrap:break-word;
  5497. text-transform:none;
  5498. visibility:hidden;
  5499. }
  5500. #u169921_div {
  5501. border-width:0px;
  5502. position:absolute;
  5503. left:0px;
  5504. top:0px;
  5505. width:332px;
  5506. height:150px;
  5507. background:inherit;
  5508. background-color:rgba(255, 255, 255, 0);
  5509. border:none;
  5510. border-left:0px;
  5511. border-top:0px;
  5512. border-right:0px;
  5513. border-radius:0px;
  5514. border-bottom-right-radius:0px;
  5515. border-bottom-left-radius:0px;
  5516. -moz-box-shadow:none;
  5517. -webkit-box-shadow:none;
  5518. box-shadow:none;
  5519. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5520. font-weight:400;
  5521. font-style:normal;
  5522. font-size:14px;
  5523. line-height:30px;
  5524. }
  5525. #u169921 {
  5526. border-width:0px;
  5527. position:absolute;
  5528. left:1417px;
  5529. top:259px;
  5530. width:332px;
  5531. height:150px;
  5532. display:flex;
  5533. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5534. font-weight:400;
  5535. font-style:normal;
  5536. font-size:14px;
  5537. line-height:30px;
  5538. }
  5539. #u169921 .text {
  5540. position:absolute;
  5541. align-self:flex-start;
  5542. padding:0px 0px 0px 0px;
  5543. box-sizing:border-box;
  5544. width:100%;
  5545. }
  5546. #u169921_text {
  5547. border-width:0px;
  5548. word-wrap:break-word;
  5549. text-transform:none;
  5550. }
  5551. #u169922_div {
  5552. border-width:0px;
  5553. position:absolute;
  5554. left:0px;
  5555. top:0px;
  5556. width:332px;
  5557. height:40px;
  5558. background:inherit;
  5559. background-color:rgba(24, 144, 255, 0);
  5560. border:none;
  5561. border-radius:81px;
  5562. -moz-box-shadow:none;
  5563. -webkit-box-shadow:none;
  5564. box-shadow:none;
  5565. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5566. font-weight:400;
  5567. font-style:normal;
  5568. font-size:12px;
  5569. color:#D7D7D7;
  5570. }
  5571. #u169922 {
  5572. border-width:0px;
  5573. position:absolute;
  5574. left:1417px;
  5575. top:420px;
  5576. width:332px;
  5577. height:40px;
  5578. display:flex;
  5579. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5580. font-weight:400;
  5581. font-style:normal;
  5582. font-size:12px;
  5583. color:#D7D7D7;
  5584. }
  5585. #u169922 .text {
  5586. position:absolute;
  5587. align-self:center;
  5588. padding:2px 2px 2px 2px;
  5589. box-sizing:border-box;
  5590. width:100%;
  5591. }
  5592. #u169922_text {
  5593. border-width:0px;
  5594. word-wrap:break-word;
  5595. text-transform:none;
  5596. }
  5597. #u169923_div {
  5598. border-width:0px;
  5599. position:absolute;
  5600. left:0px;
  5601. top:0px;
  5602. width:71px;
  5603. height:30px;
  5604. background:inherit;
  5605. background-color:rgba(255, 255, 255, 0);
  5606. border:none;
  5607. border-left:0px;
  5608. border-top:0px;
  5609. border-right:0px;
  5610. border-radius:0px;
  5611. border-bottom-right-radius:0px;
  5612. border-bottom-left-radius:0px;
  5613. -moz-box-shadow:none;
  5614. -webkit-box-shadow:none;
  5615. box-shadow:none;
  5616. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5617. font-weight:500;
  5618. font-style:normal;
  5619. font-size:14px;
  5620. line-height:30px;
  5621. }
  5622. #u169923 {
  5623. border-width:0px;
  5624. position:absolute;
  5625. left:627px;
  5626. top:67px;
  5627. width:71px;
  5628. height:30px;
  5629. display:flex;
  5630. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5631. font-weight:500;
  5632. font-style:normal;
  5633. font-size:14px;
  5634. line-height:30px;
  5635. }
  5636. #u169923 .text {
  5637. position:absolute;
  5638. align-self:flex-start;
  5639. padding:0px 0px 0px 0px;
  5640. box-sizing:border-box;
  5641. width:100%;
  5642. }
  5643. #u169923_text {
  5644. border-width:0px;
  5645. white-space:nowrap;
  5646. text-transform:none;
  5647. }
  5648. #u169924_div {
  5649. border-width:0px;
  5650. position:absolute;
  5651. left:0px;
  5652. top:0px;
  5653. width:71px;
  5654. height:30px;
  5655. background:inherit;
  5656. background-color:rgba(255, 255, 255, 0);
  5657. border:none;
  5658. border-left:0px;
  5659. border-top:0px;
  5660. border-right:0px;
  5661. border-radius:0px;
  5662. border-bottom-right-radius:0px;
  5663. border-bottom-left-radius:0px;
  5664. -moz-box-shadow:none;
  5665. -webkit-box-shadow:none;
  5666. box-shadow:none;
  5667. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5668. font-weight:500;
  5669. font-style:normal;
  5670. font-size:14px;
  5671. line-height:30px;
  5672. }
  5673. #u169924 {
  5674. border-width:0px;
  5675. position:absolute;
  5676. left:1086px;
  5677. top:67px;
  5678. width:71px;
  5679. height:30px;
  5680. display:flex;
  5681. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5682. font-weight:500;
  5683. font-style:normal;
  5684. font-size:14px;
  5685. line-height:30px;
  5686. }
  5687. #u169924 .text {
  5688. position:absolute;
  5689. align-self:flex-start;
  5690. padding:0px 0px 0px 0px;
  5691. box-sizing:border-box;
  5692. width:100%;
  5693. }
  5694. #u169924_text {
  5695. border-width:0px;
  5696. white-space:nowrap;
  5697. text-transform:none;
  5698. }