styles.css 107 KB

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