styles.css 102 KB

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