styles.css 137 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1202px;
  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. #u174566_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u174566 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u174566 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u174566_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u174567_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. #u174567 {
  73. border-width:0px;
  74. position:absolute;
  75. left:29px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u174567 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u174567_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u174568 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u174569_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. #u174569 {
  121. border-width:0px;
  122. position:absolute;
  123. left:309px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u174569 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u174569_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u174570 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u174571_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u174571 {
  159. border-width:0px;
  160. position:absolute;
  161. left:372px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u174571 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u174571_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u174572_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u174572 {
  189. border-width:0px;
  190. position:absolute;
  191. left:378px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u174572 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u174572_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u174573 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u174574_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u174574 {
  227. border-width:0px;
  228. position:absolute;
  229. left:323px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u174574 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u174574_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u174575_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u174575 {
  257. border-width:0px;
  258. position:absolute;
  259. left:339px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u174575 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u174575_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u174576_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u174576 {
  287. border-width:0px;
  288. position:absolute;
  289. left:330px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u174576 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u174576_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u174577_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u174577 {
  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. #u174577 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u174577_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u174578_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u174578 {
  351. border-width:0px;
  352. position:absolute;
  353. left:29px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u174578 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u174578_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u174579_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. #u174579 {
  393. border-width:0px;
  394. position:absolute;
  395. left:29px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u174579 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u174579_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u174580 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u174581_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u174581 {
  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. #u174581 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u174581_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u174582_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. #u174582 {
  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. #u174582 .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. #u174582_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u174583 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u174584_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u174584 {
  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. #u174584 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u174584_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u174585_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. #u174585 {
  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. #u174585 .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. #u174585_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u174586_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. #u174586 {
  594. border-width:0px;
  595. position:absolute;
  596. left:29px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u174586 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u174586_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u174587 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u174588_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u174588 {
  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. #u174588 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u174588_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u174589_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. #u174589 {
  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. #u174589 .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. #u174589_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u174590 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u174591_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u174591 {
  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. #u174591 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u174591_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u174592_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. #u174592 {
  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. #u174592 .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. #u174592_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u174593_div {
  780. border-width:0px;
  781. position:absolute;
  782. left:0px;
  783. top:0px;
  784. width:375px;
  785. height:836px;
  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. #u174593 {
  798. border-width:0px;
  799. position:absolute;
  800. left:29px;
  801. top:107px;
  802. width:375px;
  803. height:836px;
  804. display:flex;
  805. }
  806. #u174593 .text {
  807. position:absolute;
  808. align-self:center;
  809. padding:2px 2px 2px 2px;
  810. box-sizing:border-box;
  811. width:100%;
  812. }
  813. #u174593_text {
  814. border-width:0px;
  815. word-wrap:break-word;
  816. text-transform:none;
  817. visibility:hidden;
  818. }
  819. #u174594_div {
  820. border-width:0px;
  821. position:absolute;
  822. left:0px;
  823. top:0px;
  824. width:375px;
  825. height:40px;
  826. background:inherit;
  827. background-color:rgba(255, 255, 255, 1);
  828. box-sizing:border-box;
  829. border-width:1px;
  830. border-style:solid;
  831. border-color:rgba(215, 215, 215, 1);
  832. border-left:0px;
  833. border-top:0px;
  834. border-right:0px;
  835. border-radius:0px;
  836. border-bottom-right-radius:0px;
  837. border-bottom-left-radius:0px;
  838. -moz-box-shadow:none;
  839. -webkit-box-shadow:none;
  840. box-shadow:none;
  841. }
  842. #u174594 {
  843. border-width:0px;
  844. position:absolute;
  845. left:29px;
  846. top:67px;
  847. width:375px;
  848. height:40px;
  849. display:flex;
  850. }
  851. #u174594 .text {
  852. position:absolute;
  853. align-self:center;
  854. padding:2px 2px 2px 2px;
  855. box-sizing:border-box;
  856. width:100%;
  857. }
  858. #u174594_text {
  859. border-width:0px;
  860. word-wrap:break-word;
  861. text-transform:none;
  862. visibility:hidden;
  863. }
  864. #u174595_img {
  865. border-width:0px;
  866. position:absolute;
  867. left:0px;
  868. top:0px;
  869. width:375px;
  870. height:44px;
  871. }
  872. #u174595 {
  873. border-width:0px;
  874. position:absolute;
  875. left:29px;
  876. top:24px;
  877. width:375px;
  878. height:44px;
  879. display:flex;
  880. }
  881. #u174595 .text {
  882. position:absolute;
  883. align-self:center;
  884. padding:2px 2px 2px 2px;
  885. box-sizing:border-box;
  886. width:100%;
  887. }
  888. #u174595_text {
  889. border-width:0px;
  890. word-wrap:break-word;
  891. text-transform:none;
  892. visibility:hidden;
  893. }
  894. #u174596 {
  895. border-width:0px;
  896. position:absolute;
  897. left:0px;
  898. top:0px;
  899. width:0px;
  900. height:0px;
  901. }
  902. #u174597_div {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:88px;
  908. height:32px;
  909. background:inherit;
  910. background-color:rgba(255, 255, 255, 1);
  911. box-sizing:border-box;
  912. border-width:1px;
  913. border-style:solid;
  914. border-color:rgba(242, 242, 242, 1);
  915. border-radius:33px;
  916. -moz-box-shadow:none;
  917. -webkit-box-shadow:none;
  918. box-shadow:none;
  919. }
  920. #u174597 {
  921. border-width:0px;
  922. position:absolute;
  923. left:306px;
  924. top:71px;
  925. width:88px;
  926. height:32px;
  927. display:flex;
  928. }
  929. #u174597 .text {
  930. position:absolute;
  931. align-self:center;
  932. padding:2px 2px 2px 2px;
  933. box-sizing:border-box;
  934. width:100%;
  935. }
  936. #u174597_text {
  937. border-width:0px;
  938. word-wrap:break-word;
  939. text-transform:none;
  940. visibility:hidden;
  941. }
  942. #u174598 {
  943. border-width:0px;
  944. position:absolute;
  945. left:0px;
  946. top:0px;
  947. width:0px;
  948. height:0px;
  949. }
  950. #u174599_img {
  951. border-width:0px;
  952. position:absolute;
  953. left:0px;
  954. top:0px;
  955. width:18px;
  956. height:18px;
  957. }
  958. #u174599 {
  959. border-width:0px;
  960. position:absolute;
  961. left:369px;
  962. top:78px;
  963. width:18px;
  964. height:18px;
  965. display:flex;
  966. }
  967. #u174599 .text {
  968. position:absolute;
  969. align-self:center;
  970. padding:2px 2px 2px 2px;
  971. box-sizing:border-box;
  972. width:100%;
  973. }
  974. #u174599_text {
  975. border-width:0px;
  976. word-wrap:break-word;
  977. text-transform:none;
  978. visibility:hidden;
  979. }
  980. #u174600_img {
  981. border-width:0px;
  982. position:absolute;
  983. left:0px;
  984. top:0px;
  985. width:6px;
  986. height:6px;
  987. }
  988. #u174600 {
  989. border-width:0px;
  990. position:absolute;
  991. left:375px;
  992. top:84px;
  993. width:6px;
  994. height:6px;
  995. display:flex;
  996. }
  997. #u174600 .text {
  998. position:absolute;
  999. align-self:center;
  1000. padding:2px 2px 2px 2px;
  1001. box-sizing:border-box;
  1002. width:100%;
  1003. }
  1004. #u174600_text {
  1005. border-width:0px;
  1006. word-wrap:break-word;
  1007. text-transform:none;
  1008. visibility:hidden;
  1009. }
  1010. #u174601 {
  1011. border-width:0px;
  1012. position:absolute;
  1013. left:0px;
  1014. top:0px;
  1015. width:0px;
  1016. height:0px;
  1017. }
  1018. #u174602_img {
  1019. border-width:0px;
  1020. position:absolute;
  1021. left:0px;
  1022. top:0px;
  1023. width:5px;
  1024. height:5px;
  1025. }
  1026. #u174602 {
  1027. border-width:0px;
  1028. position:absolute;
  1029. left:320px;
  1030. top:85px;
  1031. width:5px;
  1032. height:5px;
  1033. display:flex;
  1034. }
  1035. #u174602 .text {
  1036. position:absolute;
  1037. align-self:center;
  1038. padding:2px 2px 2px 2px;
  1039. box-sizing:border-box;
  1040. width:100%;
  1041. }
  1042. #u174602_text {
  1043. border-width:0px;
  1044. word-wrap:break-word;
  1045. text-transform:none;
  1046. visibility:hidden;
  1047. }
  1048. #u174603_img {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:0px;
  1052. top:0px;
  1053. width:5px;
  1054. height:5px;
  1055. }
  1056. #u174603 {
  1057. border-width:0px;
  1058. position:absolute;
  1059. left:336px;
  1060. top:85px;
  1061. width:5px;
  1062. height:5px;
  1063. display:flex;
  1064. }
  1065. #u174603 .text {
  1066. position:absolute;
  1067. align-self:center;
  1068. padding:2px 2px 2px 2px;
  1069. box-sizing:border-box;
  1070. width:100%;
  1071. }
  1072. #u174603_text {
  1073. border-width:0px;
  1074. word-wrap:break-word;
  1075. text-transform:none;
  1076. visibility:hidden;
  1077. }
  1078. #u174604_img {
  1079. border-width:0px;
  1080. position:absolute;
  1081. left:0px;
  1082. top:0px;
  1083. width:7px;
  1084. height:7px;
  1085. }
  1086. #u174604 {
  1087. border-width:0px;
  1088. position:absolute;
  1089. left:327px;
  1090. top:84px;
  1091. width:7px;
  1092. height:7px;
  1093. display:flex;
  1094. }
  1095. #u174604 .text {
  1096. position:absolute;
  1097. align-self:center;
  1098. padding:2px 2px 2px 2px;
  1099. box-sizing:border-box;
  1100. width:100%;
  1101. }
  1102. #u174604_text {
  1103. border-width:0px;
  1104. word-wrap:break-word;
  1105. text-transform:none;
  1106. visibility:hidden;
  1107. }
  1108. #u174605_img {
  1109. border-width:0px;
  1110. position:absolute;
  1111. left:0px;
  1112. top:0px;
  1113. width:19px;
  1114. height:2px;
  1115. }
  1116. #u174605 {
  1117. border-width:0px;
  1118. position:absolute;
  1119. left:344px;
  1120. top:87px;
  1121. width:18px;
  1122. height:1px;
  1123. display:flex;
  1124. -webkit-transform:rotate(90deg);
  1125. -moz-transform:rotate(90deg);
  1126. -ms-transform:rotate(90deg);
  1127. transform:rotate(90deg);
  1128. }
  1129. #u174605 .text {
  1130. position:absolute;
  1131. align-self:center;
  1132. padding:2px 2px 2px 2px;
  1133. box-sizing:border-box;
  1134. width:100%;
  1135. }
  1136. #u174605_text {
  1137. border-width:0px;
  1138. word-wrap:break-word;
  1139. text-transform:none;
  1140. visibility:hidden;
  1141. }
  1142. #u174606_div {
  1143. border-width:0px;
  1144. position:absolute;
  1145. left:0px;
  1146. top:0px;
  1147. width:73px;
  1148. height:25px;
  1149. background:inherit;
  1150. background-color:rgba(255, 255, 255, 0);
  1151. border:none;
  1152. border-radius:0px;
  1153. -moz-box-shadow:none;
  1154. -webkit-box-shadow:none;
  1155. box-shadow:none;
  1156. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1157. font-weight:400;
  1158. font-style:normal;
  1159. font-size:18px;
  1160. color:#000000;
  1161. text-align:center;
  1162. }
  1163. #u174606 {
  1164. border-width:0px;
  1165. position:absolute;
  1166. left:180px;
  1167. top:75px;
  1168. width:73px;
  1169. height:25px;
  1170. display:flex;
  1171. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1172. font-weight:400;
  1173. font-style:normal;
  1174. font-size:18px;
  1175. color:#000000;
  1176. text-align:center;
  1177. }
  1178. #u174606 .text {
  1179. position:absolute;
  1180. align-self:flex-start;
  1181. padding:0px 0px 0px 0px;
  1182. box-sizing:border-box;
  1183. width:100%;
  1184. }
  1185. #u174606_text {
  1186. border-width:0px;
  1187. white-space:nowrap;
  1188. text-transform:none;
  1189. }
  1190. #u174607_div {
  1191. border-width:0px;
  1192. position:absolute;
  1193. left:0px;
  1194. top:0px;
  1195. width:12px;
  1196. height:12px;
  1197. background:inherit;
  1198. background-color:rgba(255, 255, 255, 0);
  1199. box-sizing:border-box;
  1200. border-width:2px;
  1201. border-style:solid;
  1202. border-color:rgba(51, 51, 51, 1);
  1203. border-right:0px;
  1204. border-bottom:0px;
  1205. border-radius:0px;
  1206. border-top-right-radius:0px;
  1207. border-bottom-left-radius:0px;
  1208. -moz-box-shadow:none;
  1209. -webkit-box-shadow:none;
  1210. box-shadow:none;
  1211. }
  1212. #u174607 {
  1213. border-width:0px;
  1214. position:absolute;
  1215. left:44px;
  1216. top:81px;
  1217. width:12px;
  1218. height:12px;
  1219. display:flex;
  1220. -webkit-transform:rotate(315deg);
  1221. -moz-transform:rotate(315deg);
  1222. -ms-transform:rotate(315deg);
  1223. transform:rotate(315deg);
  1224. }
  1225. #u174607 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u174607_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u174608 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u174609_img {
  1247. border-width:0px;
  1248. position:absolute;
  1249. left:0px;
  1250. top:0px;
  1251. width:355px;
  1252. height:100px;
  1253. }
  1254. #u174609 {
  1255. border-width:0px;
  1256. position:absolute;
  1257. left:39px;
  1258. top:143px;
  1259. width:355px;
  1260. height:100px;
  1261. display:flex;
  1262. }
  1263. #u174609 .text {
  1264. position:absolute;
  1265. align-self:center;
  1266. padding:2px 2px 2px 2px;
  1267. box-sizing:border-box;
  1268. width:100%;
  1269. }
  1270. #u174609_text {
  1271. border-width:0px;
  1272. word-wrap:break-word;
  1273. text-transform:none;
  1274. visibility:hidden;
  1275. }
  1276. #u174610_div {
  1277. border-width:0px;
  1278. position:absolute;
  1279. left:0px;
  1280. top:0px;
  1281. width:85px;
  1282. height:30px;
  1283. background:inherit;
  1284. background-color:rgba(255, 255, 255, 0);
  1285. border:none;
  1286. border-left:0px;
  1287. border-top:0px;
  1288. border-right:0px;
  1289. border-radius:0px;
  1290. border-bottom-right-radius:0px;
  1291. border-bottom-left-radius:0px;
  1292. -moz-box-shadow:none;
  1293. -webkit-box-shadow:none;
  1294. box-shadow:none;
  1295. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1296. font-weight:500;
  1297. font-style:normal;
  1298. font-size:14px;
  1299. line-height:30px;
  1300. }
  1301. #u174610 {
  1302. border-width:0px;
  1303. position:absolute;
  1304. left:95px;
  1305. top:150px;
  1306. width:85px;
  1307. height:30px;
  1308. display:flex;
  1309. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1310. font-weight:500;
  1311. font-style:normal;
  1312. font-size:14px;
  1313. line-height:30px;
  1314. }
  1315. #u174610 .text {
  1316. position:absolute;
  1317. align-self:flex-start;
  1318. padding:0px 0px 0px 0px;
  1319. box-sizing:border-box;
  1320. width:100%;
  1321. }
  1322. #u174610_text {
  1323. border-width:0px;
  1324. white-space:nowrap;
  1325. text-transform:none;
  1326. }
  1327. #u174611_div {
  1328. border-width:0px;
  1329. position:absolute;
  1330. left:0px;
  1331. top:0px;
  1332. width:325px;
  1333. height:50px;
  1334. background:inherit;
  1335. background-color:rgba(255, 255, 255, 0);
  1336. border:none;
  1337. border-left:0px;
  1338. border-top:0px;
  1339. border-right:0px;
  1340. border-radius:0px;
  1341. border-bottom-right-radius:0px;
  1342. border-bottom-left-radius:0px;
  1343. -moz-box-shadow:none;
  1344. -webkit-box-shadow:none;
  1345. box-shadow:none;
  1346. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1347. font-weight:400;
  1348. font-style:normal;
  1349. font-size:12px;
  1350. line-height:25px;
  1351. }
  1352. #u174611 {
  1353. border-width:0px;
  1354. position:absolute;
  1355. left:55px;
  1356. top:183px;
  1357. width:325px;
  1358. height:50px;
  1359. display:flex;
  1360. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1361. font-weight:400;
  1362. font-style:normal;
  1363. font-size:12px;
  1364. line-height:25px;
  1365. }
  1366. #u174611 .text {
  1367. position:absolute;
  1368. align-self:flex-start;
  1369. padding:0px 0px 0px 0px;
  1370. box-sizing:border-box;
  1371. width:100%;
  1372. }
  1373. #u174611_text {
  1374. border-width:0px;
  1375. word-wrap:break-word;
  1376. text-transform:none;
  1377. }
  1378. #u174612_div {
  1379. border-width:0px;
  1380. position:absolute;
  1381. left:0px;
  1382. top:0px;
  1383. width:30px;
  1384. height:16px;
  1385. background:inherit;
  1386. background-color:rgba(245, 154, 35, 1);
  1387. border:none;
  1388. border-radius:2px;
  1389. -moz-box-shadow:none;
  1390. -webkit-box-shadow:none;
  1391. box-shadow:none;
  1392. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1393. font-weight:400;
  1394. font-style:normal;
  1395. font-size:10px;
  1396. color:#FFFFFF;
  1397. text-align:center;
  1398. }
  1399. #u174612 {
  1400. border-width:0px;
  1401. position:absolute;
  1402. left:55px;
  1403. top:157px;
  1404. width:30px;
  1405. height:16px;
  1406. display:flex;
  1407. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1408. font-weight:400;
  1409. font-style:normal;
  1410. font-size:10px;
  1411. color:#FFFFFF;
  1412. text-align:center;
  1413. }
  1414. #u174612 .text {
  1415. position:absolute;
  1416. align-self:center;
  1417. padding:0px 0px 0px 0px;
  1418. box-sizing:border-box;
  1419. width:100%;
  1420. }
  1421. #u174612_text {
  1422. border-width:0px;
  1423. word-wrap:break-word;
  1424. text-transform:none;
  1425. }
  1426. #u174613_div {
  1427. border-width:0px;
  1428. position:absolute;
  1429. left:0px;
  1430. top:0px;
  1431. width:375px;
  1432. height:30px;
  1433. background:inherit;
  1434. background-color:rgba(255, 255, 128, 0.0980392156862745);
  1435. border:none;
  1436. border-left:0px;
  1437. border-top:0px;
  1438. border-right:0px;
  1439. border-radius:0px;
  1440. border-bottom-right-radius:0px;
  1441. border-bottom-left-radius:0px;
  1442. -moz-box-shadow:none;
  1443. -webkit-box-shadow:none;
  1444. box-shadow:none;
  1445. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1446. font-weight:400;
  1447. font-style:normal;
  1448. font-size:12px;
  1449. color:#F59A23;
  1450. }
  1451. #u174613 {
  1452. border-width:0px;
  1453. position:absolute;
  1454. left:29px;
  1455. top:107px;
  1456. width:375px;
  1457. height:30px;
  1458. display:flex;
  1459. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1460. font-weight:400;
  1461. font-style:normal;
  1462. font-size:12px;
  1463. color:#F59A23;
  1464. }
  1465. #u174613 .text {
  1466. position:absolute;
  1467. align-self:center;
  1468. padding:0px 0px 0px 20px;
  1469. box-sizing:border-box;
  1470. width:100%;
  1471. }
  1472. #u174613_text {
  1473. border-width:0px;
  1474. word-wrap:break-word;
  1475. text-transform:none;
  1476. }
  1477. #u174614_div {
  1478. border-width:0px;
  1479. position:absolute;
  1480. left:0px;
  1481. top:0px;
  1482. width:47px;
  1483. height:40px;
  1484. background:inherit;
  1485. background-color:rgba(242, 242, 242, 1);
  1486. box-sizing:border-box;
  1487. border-width:2px;
  1488. border-style:solid;
  1489. border-color:rgba(0, 137, 254, 1);
  1490. border-left:0px;
  1491. border-top:0px;
  1492. border-right:0px;
  1493. border-radius:4px;
  1494. border-bottom-right-radius:0px;
  1495. border-bottom-left-radius:0px;
  1496. -moz-box-shadow:none;
  1497. -webkit-box-shadow:none;
  1498. box-shadow:none;
  1499. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1500. font-weight:400;
  1501. font-style:normal;
  1502. font-size:14px;
  1503. color:#0089FE;
  1504. }
  1505. #u174614 {
  1506. border-width:0px;
  1507. position:absolute;
  1508. left:142px;
  1509. top:243px;
  1510. width:47px;
  1511. height:40px;
  1512. display:flex;
  1513. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1514. font-weight:400;
  1515. font-style:normal;
  1516. font-size:14px;
  1517. color:#0089FE;
  1518. }
  1519. #u174614 .text {
  1520. position:absolute;
  1521. align-self:center;
  1522. padding:2px 2px 2px 2px;
  1523. box-sizing:border-box;
  1524. width:100%;
  1525. }
  1526. #u174614_text {
  1527. border-width:0px;
  1528. white-space:nowrap;
  1529. text-transform:none;
  1530. }
  1531. #u174615_div {
  1532. border-width:0px;
  1533. position:absolute;
  1534. left:0px;
  1535. top:0px;
  1536. width:47px;
  1537. height:40px;
  1538. background:inherit;
  1539. background-color:rgba(242, 242, 242, 1);
  1540. border:none;
  1541. border-radius:4px;
  1542. -moz-box-shadow:none;
  1543. -webkit-box-shadow:none;
  1544. box-shadow:none;
  1545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1546. font-weight:400;
  1547. font-style:normal;
  1548. font-size:14px;
  1549. }
  1550. #u174615 {
  1551. border-width:0px;
  1552. position:absolute;
  1553. left:244px;
  1554. top:243px;
  1555. width:47px;
  1556. height:40px;
  1557. display:flex;
  1558. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1559. font-weight:400;
  1560. font-style:normal;
  1561. font-size:14px;
  1562. }
  1563. #u174615 .text {
  1564. position:absolute;
  1565. align-self:center;
  1566. padding:2px 2px 2px 2px;
  1567. box-sizing:border-box;
  1568. width:100%;
  1569. }
  1570. #u174615_text {
  1571. border-width:0px;
  1572. white-space:nowrap;
  1573. text-transform:none;
  1574. }
  1575. #u174616 {
  1576. border-width:0px;
  1577. position:absolute;
  1578. left:0px;
  1579. top:0px;
  1580. width:0px;
  1581. height:0px;
  1582. }
  1583. #u174617 {
  1584. border-width:0px;
  1585. position:absolute;
  1586. left:0px;
  1587. top:0px;
  1588. width:0px;
  1589. height:0px;
  1590. }
  1591. #u174618_div {
  1592. border-width:0px;
  1593. position:absolute;
  1594. left:0px;
  1595. top:0px;
  1596. width:300px;
  1597. height:30px;
  1598. background:inherit;
  1599. background-color:rgba(255, 255, 255, 1);
  1600. border:none;
  1601. border-radius:20px;
  1602. -moz-box-shadow:none;
  1603. -webkit-box-shadow:none;
  1604. box-shadow:none;
  1605. }
  1606. #u174618 {
  1607. border-width:0px;
  1608. position:absolute;
  1609. left:45px;
  1610. top:289px;
  1611. width:300px;
  1612. height:30px;
  1613. display:flex;
  1614. }
  1615. #u174618 .text {
  1616. position:absolute;
  1617. align-self:center;
  1618. padding:2px 2px 2px 2px;
  1619. box-sizing:border-box;
  1620. width:100%;
  1621. }
  1622. #u174618_text {
  1623. border-width:0px;
  1624. word-wrap:break-word;
  1625. text-transform:none;
  1626. visibility:hidden;
  1627. }
  1628. #u174619_input {
  1629. position:absolute;
  1630. left:0px;
  1631. top:0px;
  1632. width:260px;
  1633. height:25px;
  1634. padding:2px 2px 2px 2px;
  1635. font-family:'ArialMT', 'Arial', sans-serif;
  1636. font-weight:400;
  1637. font-style:normal;
  1638. font-size:13px;
  1639. letter-spacing:normal;
  1640. color:#000000;
  1641. vertical-align:none;
  1642. text-align:left;
  1643. text-transform:none;
  1644. background-color:transparent;
  1645. border-color:transparent;
  1646. }
  1647. #u174619_input.disabled {
  1648. position:absolute;
  1649. left:0px;
  1650. top:0px;
  1651. width:260px;
  1652. height:25px;
  1653. padding:2px 2px 2px 2px;
  1654. font-family:'ArialMT', 'Arial', sans-serif;
  1655. font-weight:400;
  1656. font-style:normal;
  1657. font-size:13px;
  1658. letter-spacing:normal;
  1659. color:#000000;
  1660. vertical-align:none;
  1661. text-align:left;
  1662. text-transform:none;
  1663. background-color:transparent;
  1664. border-color:transparent;
  1665. }
  1666. #u174619_div {
  1667. border-width:0px;
  1668. position:absolute;
  1669. left:0px;
  1670. top:0px;
  1671. width:260px;
  1672. height:25px;
  1673. background:inherit;
  1674. background-color:rgba(255, 255, 255, 1);
  1675. border:none;
  1676. border-radius:0px;
  1677. -moz-box-shadow:none;
  1678. -webkit-box-shadow:none;
  1679. box-shadow:none;
  1680. }
  1681. #u174619 {
  1682. border-width:0px;
  1683. position:absolute;
  1684. left:56px;
  1685. top:290px;
  1686. width:260px;
  1687. height:25px;
  1688. display:flex;
  1689. }
  1690. #u174619 .text {
  1691. position:absolute;
  1692. align-self:center;
  1693. padding:2px 2px 2px 2px;
  1694. box-sizing:border-box;
  1695. width:100%;
  1696. }
  1697. #u174619_div.disabled {
  1698. border-width:0px;
  1699. position:absolute;
  1700. left:0px;
  1701. top:0px;
  1702. width:260px;
  1703. height:25px;
  1704. background:inherit;
  1705. background-color:rgba(240, 240, 240, 1);
  1706. border:none;
  1707. border-radius:0px;
  1708. -moz-box-shadow:none;
  1709. -webkit-box-shadow:none;
  1710. box-shadow:none;
  1711. }
  1712. #u174619.disabled {
  1713. }
  1714. #u174620_img {
  1715. border-width:0px;
  1716. position:absolute;
  1717. left:0px;
  1718. top:0px;
  1719. width:12px;
  1720. height:12px;
  1721. }
  1722. #u174620 {
  1723. border-width:0px;
  1724. position:absolute;
  1725. left:312px;
  1726. top:298px;
  1727. width:12px;
  1728. height:12px;
  1729. display:flex;
  1730. }
  1731. #u174620 .text {
  1732. position:absolute;
  1733. align-self:center;
  1734. padding:2px 2px 2px 2px;
  1735. box-sizing:border-box;
  1736. width:100%;
  1737. }
  1738. #u174620_text {
  1739. border-width:0px;
  1740. word-wrap:break-word;
  1741. text-transform:none;
  1742. visibility:hidden;
  1743. }
  1744. #u174621 {
  1745. border-width:0px;
  1746. position:absolute;
  1747. left:0px;
  1748. top:0px;
  1749. width:0px;
  1750. height:0px;
  1751. }
  1752. #u174622_img {
  1753. border-width:0px;
  1754. position:absolute;
  1755. left:0px;
  1756. top:0px;
  1757. width:12px;
  1758. height:12px;
  1759. }
  1760. #u174622 {
  1761. border-width:0px;
  1762. position:absolute;
  1763. left:382px;
  1764. top:298px;
  1765. width:12px;
  1766. height:12px;
  1767. display:flex;
  1768. }
  1769. #u174622 .text {
  1770. position:absolute;
  1771. align-self:center;
  1772. padding:2px 2px 2px 2px;
  1773. box-sizing:border-box;
  1774. width:100%;
  1775. }
  1776. #u174622_text {
  1777. border-width:0px;
  1778. word-wrap:break-word;
  1779. text-transform:none;
  1780. visibility:hidden;
  1781. }
  1782. #u174623_div {
  1783. border-width:0px;
  1784. position:absolute;
  1785. left:0px;
  1786. top:0px;
  1787. width:25px;
  1788. height:17px;
  1789. background:inherit;
  1790. background-color:rgba(255, 255, 255, 0);
  1791. border:none;
  1792. border-radius:0px;
  1793. -moz-box-shadow:none;
  1794. -webkit-box-shadow:none;
  1795. box-shadow:none;
  1796. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1797. font-weight:400;
  1798. font-style:normal;
  1799. font-size:12px;
  1800. color:#000000;
  1801. text-align:center;
  1802. }
  1803. #u174623 {
  1804. border-width:0px;
  1805. position:absolute;
  1806. left:353px;
  1807. top:295px;
  1808. width:25px;
  1809. height:17px;
  1810. display:flex;
  1811. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1812. font-weight:400;
  1813. font-style:normal;
  1814. font-size:12px;
  1815. color:#000000;
  1816. text-align:center;
  1817. }
  1818. #u174623 .text {
  1819. position:absolute;
  1820. align-self:flex-start;
  1821. padding:0px 0px 0px 0px;
  1822. box-sizing:border-box;
  1823. width:100%;
  1824. }
  1825. #u174623_text {
  1826. border-width:0px;
  1827. white-space:nowrap;
  1828. text-transform:none;
  1829. }
  1830. #u174624 {
  1831. border-width:0px;
  1832. position:absolute;
  1833. left:0px;
  1834. top:0px;
  1835. width:0px;
  1836. height:0px;
  1837. }
  1838. #u174625_div {
  1839. border-width:0px;
  1840. position:absolute;
  1841. left:0px;
  1842. top:0px;
  1843. width:349px;
  1844. height:260px;
  1845. background:inherit;
  1846. background-color:rgba(255, 255, 255, 1);
  1847. box-sizing:border-box;
  1848. border-width:1px;
  1849. border-style:solid;
  1850. border-color:rgba(242, 242, 242, 1);
  1851. border-radius:3px;
  1852. -moz-box-shadow:none;
  1853. -webkit-box-shadow:none;
  1854. box-shadow:none;
  1855. }
  1856. #u174625 {
  1857. border-width:0px;
  1858. position:absolute;
  1859. left:45px;
  1860. top:349px;
  1861. width:349px;
  1862. height:260px;
  1863. display:flex;
  1864. }
  1865. #u174625 .text {
  1866. position:absolute;
  1867. align-self:center;
  1868. padding:2px 2px 2px 2px;
  1869. box-sizing:border-box;
  1870. width:100%;
  1871. }
  1872. #u174625_text {
  1873. border-width:0px;
  1874. word-wrap:break-word;
  1875. text-transform:none;
  1876. visibility:hidden;
  1877. }
  1878. #u174626 {
  1879. border-width:0px;
  1880. position:absolute;
  1881. left:0px;
  1882. top:0px;
  1883. width:0px;
  1884. height:0px;
  1885. }
  1886. #u174627_div {
  1887. border-width:0px;
  1888. position:absolute;
  1889. left:0px;
  1890. top:0px;
  1891. width:57px;
  1892. height:180px;
  1893. background:inherit;
  1894. background-color:rgba(255, 255, 255, 0);
  1895. border:none;
  1896. border-left:0px;
  1897. border-top:0px;
  1898. border-right:0px;
  1899. border-radius:0px;
  1900. border-bottom-right-radius:0px;
  1901. border-bottom-left-radius:0px;
  1902. -moz-box-shadow:none;
  1903. -webkit-box-shadow:none;
  1904. box-shadow:none;
  1905. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1906. font-weight:400;
  1907. font-style:normal;
  1908. font-size:14px;
  1909. color:#AAAAAA;
  1910. line-height:30px;
  1911. }
  1912. #u174627 {
  1913. border-width:0px;
  1914. position:absolute;
  1915. left:63px;
  1916. top:387px;
  1917. width:57px;
  1918. height:180px;
  1919. display:flex;
  1920. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1921. font-weight:400;
  1922. font-style:normal;
  1923. font-size:14px;
  1924. color:#AAAAAA;
  1925. line-height:30px;
  1926. }
  1927. #u174627 .text {
  1928. position:absolute;
  1929. align-self:flex-start;
  1930. padding:0px 0px 0px 0px;
  1931. box-sizing:border-box;
  1932. width:100%;
  1933. }
  1934. #u174627_text {
  1935. border-width:0px;
  1936. white-space:nowrap;
  1937. text-transform:none;
  1938. }
  1939. #u174628_div {
  1940. border-width:0px;
  1941. position:absolute;
  1942. left:0px;
  1943. top:0px;
  1944. width:141px;
  1945. height:180px;
  1946. background:inherit;
  1947. background-color:rgba(255, 255, 255, 0);
  1948. border:none;
  1949. border-left:0px;
  1950. border-top:0px;
  1951. border-right:0px;
  1952. border-radius:0px;
  1953. border-bottom-right-radius:0px;
  1954. border-bottom-left-radius:0px;
  1955. -moz-box-shadow:none;
  1956. -webkit-box-shadow:none;
  1957. box-shadow:none;
  1958. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1959. font-weight:400;
  1960. font-style:normal;
  1961. font-size:14px;
  1962. line-height:30px;
  1963. }
  1964. #u174628 {
  1965. border-width:0px;
  1966. position:absolute;
  1967. left:140px;
  1968. top:387px;
  1969. width:141px;
  1970. height:180px;
  1971. display:flex;
  1972. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1973. font-weight:400;
  1974. font-style:normal;
  1975. font-size:14px;
  1976. line-height:30px;
  1977. }
  1978. #u174628 .text {
  1979. position:absolute;
  1980. align-self:flex-start;
  1981. padding:0px 0px 0px 0px;
  1982. box-sizing:border-box;
  1983. width:100%;
  1984. }
  1985. #u174628_text {
  1986. border-width:0px;
  1987. white-space:nowrap;
  1988. text-transform:none;
  1989. }
  1990. #u174629_div {
  1991. border-width:0px;
  1992. position:absolute;
  1993. left:0px;
  1994. top:0px;
  1995. width:30px;
  1996. height:16px;
  1997. background:inherit;
  1998. background-color:rgba(170, 170, 170, 1);
  1999. border:none;
  2000. border-radius:2px;
  2001. -moz-box-shadow:none;
  2002. -webkit-box-shadow:none;
  2003. box-shadow:none;
  2004. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2005. font-weight:400;
  2006. font-style:normal;
  2007. font-size:10px;
  2008. color:#FFFFFF;
  2009. text-align:center;
  2010. }
  2011. #u174629 {
  2012. border-width:0px;
  2013. position:absolute;
  2014. left:63px;
  2015. top:362px;
  2016. width:30px;
  2017. height:16px;
  2018. display:flex;
  2019. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2020. font-weight:400;
  2021. font-style:normal;
  2022. font-size:10px;
  2023. color:#FFFFFF;
  2024. text-align:center;
  2025. }
  2026. #u174629 .text {
  2027. position:absolute;
  2028. align-self:center;
  2029. padding:0px 0px 0px 0px;
  2030. box-sizing:border-box;
  2031. width:100%;
  2032. }
  2033. #u174629_text {
  2034. border-width:0px;
  2035. word-wrap:break-word;
  2036. text-transform:none;
  2037. }
  2038. #u174630_img {
  2039. border-width:0px;
  2040. position:absolute;
  2041. left:0px;
  2042. top:0px;
  2043. width:319px;
  2044. height:2px;
  2045. }
  2046. #u174630 {
  2047. border-width:0px;
  2048. position:absolute;
  2049. left:63px;
  2050. top:572px;
  2051. width:318px;
  2052. height:1px;
  2053. display:flex;
  2054. }
  2055. #u174630 .text {
  2056. position:absolute;
  2057. align-self:center;
  2058. padding:2px 2px 2px 2px;
  2059. box-sizing:border-box;
  2060. width:100%;
  2061. }
  2062. #u174630_text {
  2063. border-width:0px;
  2064. word-wrap:break-word;
  2065. text-transform:none;
  2066. visibility:hidden;
  2067. }
  2068. #u174631_div {
  2069. border-width:0px;
  2070. position:absolute;
  2071. left:0px;
  2072. top:0px;
  2073. width:30px;
  2074. height:16px;
  2075. background:inherit;
  2076. background-color:rgba(245, 154, 35, 1);
  2077. border:none;
  2078. border-radius:2px;
  2079. -moz-box-shadow:none;
  2080. -webkit-box-shadow:none;
  2081. box-shadow:none;
  2082. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2083. font-weight:400;
  2084. font-style:normal;
  2085. font-size:10px;
  2086. color:#FFFFFF;
  2087. text-align:center;
  2088. }
  2089. #u174631 {
  2090. border-width:0px;
  2091. position:absolute;
  2092. left:63px;
  2093. top:583px;
  2094. width:30px;
  2095. height:16px;
  2096. display:flex;
  2097. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2098. font-weight:400;
  2099. font-style:normal;
  2100. font-size:10px;
  2101. color:#FFFFFF;
  2102. text-align:center;
  2103. }
  2104. #u174631 .text {
  2105. position:absolute;
  2106. align-self:center;
  2107. padding:0px 0px 0px 0px;
  2108. box-sizing:border-box;
  2109. width:100%;
  2110. }
  2111. #u174631_text {
  2112. border-width:0px;
  2113. word-wrap:break-word;
  2114. text-transform:none;
  2115. }
  2116. #u174632_div {
  2117. border-width:0px;
  2118. position:absolute;
  2119. left:0px;
  2120. top:0px;
  2121. width:57px;
  2122. height:30px;
  2123. background:inherit;
  2124. background-color:rgba(255, 255, 255, 0);
  2125. border:none;
  2126. border-left:0px;
  2127. border-top:0px;
  2128. border-right:0px;
  2129. border-radius:0px;
  2130. border-bottom-right-radius:0px;
  2131. border-bottom-left-radius:0px;
  2132. -moz-box-shadow:none;
  2133. -webkit-box-shadow:none;
  2134. box-shadow:none;
  2135. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2136. font-weight:400;
  2137. font-style:normal;
  2138. font-size:14px;
  2139. color:#0089FE;
  2140. line-height:30px;
  2141. }
  2142. #u174632 {
  2143. border-width:0px;
  2144. position:absolute;
  2145. left:182px;
  2146. top:576px;
  2147. width:57px;
  2148. height:30px;
  2149. display:flex;
  2150. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2151. font-weight:400;
  2152. font-style:normal;
  2153. font-size:14px;
  2154. color:#0089FE;
  2155. line-height:30px;
  2156. }
  2157. #u174632 .text {
  2158. position:absolute;
  2159. align-self:flex-start;
  2160. padding:0px 0px 0px 0px;
  2161. box-sizing:border-box;
  2162. width:100%;
  2163. }
  2164. #u174632_text {
  2165. border-width:0px;
  2166. white-space:nowrap;
  2167. text-transform:none;
  2168. }
  2169. #u174633_div {
  2170. border-width:0px;
  2171. position:absolute;
  2172. left:0px;
  2173. top:0px;
  2174. width:124px;
  2175. height:25px;
  2176. background:inherit;
  2177. background-color:rgba(255, 255, 255, 0);
  2178. border:none;
  2179. border-left:0px;
  2180. border-top:0px;
  2181. border-right:0px;
  2182. border-radius:0px;
  2183. border-bottom-right-radius:0px;
  2184. border-bottom-left-radius:0px;
  2185. -moz-box-shadow:none;
  2186. -webkit-box-shadow:none;
  2187. box-shadow:none;
  2188. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2189. font-weight:500;
  2190. font-style:normal;
  2191. font-size:14px;
  2192. line-height:25px;
  2193. }
  2194. #u174633 {
  2195. border-width:0px;
  2196. position:absolute;
  2197. left:103px;
  2198. top:358px;
  2199. width:124px;
  2200. height:25px;
  2201. display:flex;
  2202. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2203. font-weight:500;
  2204. font-style:normal;
  2205. font-size:14px;
  2206. line-height:25px;
  2207. }
  2208. #u174633 .text {
  2209. position:absolute;
  2210. align-self:center;
  2211. padding:0px 0px 0px 0px;
  2212. box-sizing:border-box;
  2213. width:100%;
  2214. }
  2215. #u174633_text {
  2216. border-width:0px;
  2217. white-space:nowrap;
  2218. text-transform:none;
  2219. }
  2220. #u174634_div {
  2221. border-width:0px;
  2222. position:absolute;
  2223. left:0px;
  2224. top:0px;
  2225. width:68px;
  2226. height:25px;
  2227. background:inherit;
  2228. background-color:rgba(255, 255, 255, 0);
  2229. border:none;
  2230. border-left:0px;
  2231. border-top:0px;
  2232. border-right:0px;
  2233. border-radius:0px;
  2234. border-bottom-right-radius:0px;
  2235. border-bottom-left-radius:0px;
  2236. -moz-box-shadow:none;
  2237. -webkit-box-shadow:none;
  2238. box-shadow:none;
  2239. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2240. font-weight:400;
  2241. font-style:normal;
  2242. font-size:12px;
  2243. color:#7F7F7F;
  2244. line-height:25px;
  2245. }
  2246. #u174634 {
  2247. border-width:0px;
  2248. position:absolute;
  2249. left:45px;
  2250. top:322px;
  2251. width:68px;
  2252. height:25px;
  2253. display:flex;
  2254. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2255. font-weight:400;
  2256. font-style:normal;
  2257. font-size:12px;
  2258. color:#7F7F7F;
  2259. line-height:25px;
  2260. }
  2261. #u174634 .text {
  2262. position:absolute;
  2263. align-self:center;
  2264. padding:0px 0px 0px 0px;
  2265. box-sizing:border-box;
  2266. width:100%;
  2267. }
  2268. #u174634_text {
  2269. border-width:0px;
  2270. white-space:nowrap;
  2271. text-transform:none;
  2272. }
  2273. #u174635 {
  2274. border-width:0px;
  2275. position:absolute;
  2276. left:0px;
  2277. top:0px;
  2278. width:0px;
  2279. height:0px;
  2280. }
  2281. #u174636_div {
  2282. border-width:0px;
  2283. position:absolute;
  2284. left:0px;
  2285. top:0px;
  2286. width:349px;
  2287. height:260px;
  2288. background:inherit;
  2289. background-color:rgba(255, 255, 255, 1);
  2290. box-sizing:border-box;
  2291. border-width:1px;
  2292. border-style:solid;
  2293. border-color:rgba(242, 242, 242, 1);
  2294. border-radius:3px;
  2295. -moz-box-shadow:none;
  2296. -webkit-box-shadow:none;
  2297. box-shadow:none;
  2298. }
  2299. #u174636 {
  2300. border-width:0px;
  2301. position:absolute;
  2302. left:45px;
  2303. top:619px;
  2304. width:349px;
  2305. height:260px;
  2306. display:flex;
  2307. }
  2308. #u174636 .text {
  2309. position:absolute;
  2310. align-self:center;
  2311. padding:2px 2px 2px 2px;
  2312. box-sizing:border-box;
  2313. width:100%;
  2314. }
  2315. #u174636_text {
  2316. border-width:0px;
  2317. word-wrap:break-word;
  2318. text-transform:none;
  2319. visibility:hidden;
  2320. }
  2321. #u174637 {
  2322. border-width:0px;
  2323. position:absolute;
  2324. left:0px;
  2325. top:0px;
  2326. width:0px;
  2327. height:0px;
  2328. }
  2329. #u174638_div {
  2330. border-width:0px;
  2331. position:absolute;
  2332. left:0px;
  2333. top:0px;
  2334. width:57px;
  2335. height:180px;
  2336. background:inherit;
  2337. background-color:rgba(255, 255, 255, 0);
  2338. border:none;
  2339. border-left:0px;
  2340. border-top:0px;
  2341. border-right:0px;
  2342. border-radius:0px;
  2343. border-bottom-right-radius:0px;
  2344. border-bottom-left-radius:0px;
  2345. -moz-box-shadow:none;
  2346. -webkit-box-shadow:none;
  2347. box-shadow:none;
  2348. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2349. font-weight:400;
  2350. font-style:normal;
  2351. font-size:14px;
  2352. color:#AAAAAA;
  2353. line-height:30px;
  2354. }
  2355. #u174638 {
  2356. border-width:0px;
  2357. position:absolute;
  2358. left:63px;
  2359. top:657px;
  2360. width:57px;
  2361. height:180px;
  2362. display:flex;
  2363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2364. font-weight:400;
  2365. font-style:normal;
  2366. font-size:14px;
  2367. color:#AAAAAA;
  2368. line-height:30px;
  2369. }
  2370. #u174638 .text {
  2371. position:absolute;
  2372. align-self:flex-start;
  2373. padding:0px 0px 0px 0px;
  2374. box-sizing:border-box;
  2375. width:100%;
  2376. }
  2377. #u174638_text {
  2378. border-width:0px;
  2379. white-space:nowrap;
  2380. text-transform:none;
  2381. }
  2382. #u174639_div {
  2383. border-width:0px;
  2384. position:absolute;
  2385. left:0px;
  2386. top:0px;
  2387. width:141px;
  2388. height:180px;
  2389. background:inherit;
  2390. background-color:rgba(255, 255, 255, 0);
  2391. border:none;
  2392. border-left:0px;
  2393. border-top:0px;
  2394. border-right:0px;
  2395. border-radius:0px;
  2396. border-bottom-right-radius:0px;
  2397. border-bottom-left-radius:0px;
  2398. -moz-box-shadow:none;
  2399. -webkit-box-shadow:none;
  2400. box-shadow:none;
  2401. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2402. font-weight:400;
  2403. font-style:normal;
  2404. font-size:14px;
  2405. line-height:30px;
  2406. }
  2407. #u174639 {
  2408. border-width:0px;
  2409. position:absolute;
  2410. left:140px;
  2411. top:657px;
  2412. width:141px;
  2413. height:180px;
  2414. display:flex;
  2415. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2416. font-weight:400;
  2417. font-style:normal;
  2418. font-size:14px;
  2419. line-height:30px;
  2420. }
  2421. #u174639 .text {
  2422. position:absolute;
  2423. align-self:flex-start;
  2424. padding:0px 0px 0px 0px;
  2425. box-sizing:border-box;
  2426. width:100%;
  2427. }
  2428. #u174639_text {
  2429. border-width:0px;
  2430. white-space:nowrap;
  2431. text-transform:none;
  2432. }
  2433. #u174640_div {
  2434. border-width:0px;
  2435. position:absolute;
  2436. left:0px;
  2437. top:0px;
  2438. width:30px;
  2439. height:16px;
  2440. background:inherit;
  2441. background-color:rgba(170, 170, 170, 1);
  2442. border:none;
  2443. border-radius:2px;
  2444. -moz-box-shadow:none;
  2445. -webkit-box-shadow:none;
  2446. box-shadow:none;
  2447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2448. font-weight:400;
  2449. font-style:normal;
  2450. font-size:10px;
  2451. color:#FFFFFF;
  2452. text-align:center;
  2453. }
  2454. #u174640 {
  2455. border-width:0px;
  2456. position:absolute;
  2457. left:63px;
  2458. top:632px;
  2459. width:30px;
  2460. height:16px;
  2461. display:flex;
  2462. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2463. font-weight:400;
  2464. font-style:normal;
  2465. font-size:10px;
  2466. color:#FFFFFF;
  2467. text-align:center;
  2468. }
  2469. #u174640 .text {
  2470. position:absolute;
  2471. align-self:center;
  2472. padding:0px 0px 0px 0px;
  2473. box-sizing:border-box;
  2474. width:100%;
  2475. }
  2476. #u174640_text {
  2477. border-width:0px;
  2478. word-wrap:break-word;
  2479. text-transform:none;
  2480. }
  2481. #u174641_img {
  2482. border-width:0px;
  2483. position:absolute;
  2484. left:0px;
  2485. top:0px;
  2486. width:319px;
  2487. height:2px;
  2488. }
  2489. #u174641 {
  2490. border-width:0px;
  2491. position:absolute;
  2492. left:63px;
  2493. top:842px;
  2494. width:318px;
  2495. height:1px;
  2496. display:flex;
  2497. }
  2498. #u174641 .text {
  2499. position:absolute;
  2500. align-self:center;
  2501. padding:2px 2px 2px 2px;
  2502. box-sizing:border-box;
  2503. width:100%;
  2504. }
  2505. #u174641_text {
  2506. border-width:0px;
  2507. word-wrap:break-word;
  2508. text-transform:none;
  2509. visibility:hidden;
  2510. }
  2511. #u174642_div {
  2512. border-width:0px;
  2513. position:absolute;
  2514. left:0px;
  2515. top:0px;
  2516. width:30px;
  2517. height:16px;
  2518. background:inherit;
  2519. background-color:rgba(245, 154, 35, 1);
  2520. border:none;
  2521. border-radius:2px;
  2522. -moz-box-shadow:none;
  2523. -webkit-box-shadow:none;
  2524. box-shadow:none;
  2525. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2526. font-weight:400;
  2527. font-style:normal;
  2528. font-size:10px;
  2529. color:#FFFFFF;
  2530. text-align:center;
  2531. }
  2532. #u174642 {
  2533. border-width:0px;
  2534. position:absolute;
  2535. left:63px;
  2536. top:853px;
  2537. width:30px;
  2538. height:16px;
  2539. display:flex;
  2540. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2541. font-weight:400;
  2542. font-style:normal;
  2543. font-size:10px;
  2544. color:#FFFFFF;
  2545. text-align:center;
  2546. }
  2547. #u174642 .text {
  2548. position:absolute;
  2549. align-self:center;
  2550. padding:0px 0px 0px 0px;
  2551. box-sizing:border-box;
  2552. width:100%;
  2553. }
  2554. #u174642_text {
  2555. border-width:0px;
  2556. word-wrap:break-word;
  2557. text-transform:none;
  2558. }
  2559. #u174643_div {
  2560. border-width:0px;
  2561. position:absolute;
  2562. left:0px;
  2563. top:0px;
  2564. width:57px;
  2565. height:30px;
  2566. background:inherit;
  2567. background-color:rgba(255, 255, 255, 0);
  2568. border:none;
  2569. border-left:0px;
  2570. border-top:0px;
  2571. border-right:0px;
  2572. border-radius:0px;
  2573. border-bottom-right-radius:0px;
  2574. border-bottom-left-radius:0px;
  2575. -moz-box-shadow:none;
  2576. -webkit-box-shadow:none;
  2577. box-shadow:none;
  2578. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2579. font-weight:400;
  2580. font-style:normal;
  2581. font-size:14px;
  2582. color:#0089FE;
  2583. line-height:30px;
  2584. }
  2585. #u174643 {
  2586. border-width:0px;
  2587. position:absolute;
  2588. left:182px;
  2589. top:846px;
  2590. width:57px;
  2591. height:30px;
  2592. display:flex;
  2593. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2594. font-weight:400;
  2595. font-style:normal;
  2596. font-size:14px;
  2597. color:#0089FE;
  2598. line-height:30px;
  2599. }
  2600. #u174643 .text {
  2601. position:absolute;
  2602. align-self:flex-start;
  2603. padding:0px 0px 0px 0px;
  2604. box-sizing:border-box;
  2605. width:100%;
  2606. }
  2607. #u174643_text {
  2608. border-width:0px;
  2609. white-space:nowrap;
  2610. text-transform:none;
  2611. }
  2612. #u174644_div {
  2613. border-width:0px;
  2614. position:absolute;
  2615. left:0px;
  2616. top:0px;
  2617. width:124px;
  2618. height:25px;
  2619. background:inherit;
  2620. background-color:rgba(255, 255, 255, 0);
  2621. border:none;
  2622. border-left:0px;
  2623. border-top:0px;
  2624. border-right:0px;
  2625. border-radius:0px;
  2626. border-bottom-right-radius:0px;
  2627. border-bottom-left-radius:0px;
  2628. -moz-box-shadow:none;
  2629. -webkit-box-shadow:none;
  2630. box-shadow:none;
  2631. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2632. font-weight:500;
  2633. font-style:normal;
  2634. font-size:14px;
  2635. line-height:25px;
  2636. }
  2637. #u174644 {
  2638. border-width:0px;
  2639. position:absolute;
  2640. left:103px;
  2641. top:628px;
  2642. width:124px;
  2643. height:25px;
  2644. display:flex;
  2645. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2646. font-weight:500;
  2647. font-style:normal;
  2648. font-size:14px;
  2649. line-height:25px;
  2650. }
  2651. #u174644 .text {
  2652. position:absolute;
  2653. align-self:center;
  2654. padding:0px 0px 0px 0px;
  2655. box-sizing:border-box;
  2656. width:100%;
  2657. }
  2658. #u174644_text {
  2659. border-width:0px;
  2660. white-space:nowrap;
  2661. text-transform:none;
  2662. }
  2663. #u174646_img {
  2664. border-width:0px;
  2665. position:absolute;
  2666. left:0px;
  2667. top:0px;
  2668. width:433px;
  2669. height:865px;
  2670. }
  2671. #u174646 {
  2672. border-width:0px;
  2673. position:absolute;
  2674. left:453px;
  2675. top:0px;
  2676. width:433px;
  2677. height:865px;
  2678. display:flex;
  2679. }
  2680. #u174646 .text {
  2681. position:absolute;
  2682. align-self:center;
  2683. padding:2px 2px 2px 2px;
  2684. box-sizing:border-box;
  2685. width:100%;
  2686. }
  2687. #u174646_text {
  2688. border-width:0px;
  2689. word-wrap:break-word;
  2690. text-transform:none;
  2691. visibility:hidden;
  2692. }
  2693. #u174647_div {
  2694. border-width:0px;
  2695. position:absolute;
  2696. left:0px;
  2697. top:0px;
  2698. width:375px;
  2699. height:40px;
  2700. background:inherit;
  2701. background-color:rgba(255, 255, 255, 1);
  2702. box-sizing:border-box;
  2703. border-width:1px;
  2704. border-style:solid;
  2705. border-color:rgba(215, 215, 215, 1);
  2706. border-left:0px;
  2707. border-top:0px;
  2708. border-right:0px;
  2709. border-radius:0px;
  2710. border-bottom-right-radius:0px;
  2711. border-bottom-left-radius:0px;
  2712. -moz-box-shadow:none;
  2713. -webkit-box-shadow:none;
  2714. box-shadow:none;
  2715. }
  2716. #u174647 {
  2717. border-width:0px;
  2718. position:absolute;
  2719. left:482px;
  2720. top:67px;
  2721. width:375px;
  2722. height:40px;
  2723. display:flex;
  2724. }
  2725. #u174647 .text {
  2726. position:absolute;
  2727. align-self:center;
  2728. padding:2px 2px 2px 2px;
  2729. box-sizing:border-box;
  2730. width:100%;
  2731. }
  2732. #u174647_text {
  2733. border-width:0px;
  2734. word-wrap:break-word;
  2735. text-transform:none;
  2736. visibility:hidden;
  2737. }
  2738. #u174648 {
  2739. border-width:0px;
  2740. position:absolute;
  2741. left:0px;
  2742. top:0px;
  2743. width:0px;
  2744. height:0px;
  2745. }
  2746. #u174649_div {
  2747. border-width:0px;
  2748. position:absolute;
  2749. left:0px;
  2750. top:0px;
  2751. width:88px;
  2752. height:32px;
  2753. background:inherit;
  2754. background-color:rgba(255, 255, 255, 1);
  2755. box-sizing:border-box;
  2756. border-width:1px;
  2757. border-style:solid;
  2758. border-color:rgba(242, 242, 242, 1);
  2759. border-radius:33px;
  2760. -moz-box-shadow:none;
  2761. -webkit-box-shadow:none;
  2762. box-shadow:none;
  2763. }
  2764. #u174649 {
  2765. border-width:0px;
  2766. position:absolute;
  2767. left:762px;
  2768. top:71px;
  2769. width:88px;
  2770. height:32px;
  2771. display:flex;
  2772. }
  2773. #u174649 .text {
  2774. position:absolute;
  2775. align-self:center;
  2776. padding:2px 2px 2px 2px;
  2777. box-sizing:border-box;
  2778. width:100%;
  2779. }
  2780. #u174649_text {
  2781. border-width:0px;
  2782. word-wrap:break-word;
  2783. text-transform:none;
  2784. visibility:hidden;
  2785. }
  2786. #u174650 {
  2787. border-width:0px;
  2788. position:absolute;
  2789. left:0px;
  2790. top:0px;
  2791. width:0px;
  2792. height:0px;
  2793. }
  2794. #u174651_img {
  2795. border-width:0px;
  2796. position:absolute;
  2797. left:0px;
  2798. top:0px;
  2799. width:18px;
  2800. height:18px;
  2801. }
  2802. #u174651 {
  2803. border-width:0px;
  2804. position:absolute;
  2805. left:825px;
  2806. top:78px;
  2807. width:18px;
  2808. height:18px;
  2809. display:flex;
  2810. }
  2811. #u174651 .text {
  2812. position:absolute;
  2813. align-self:center;
  2814. padding:2px 2px 2px 2px;
  2815. box-sizing:border-box;
  2816. width:100%;
  2817. }
  2818. #u174651_text {
  2819. border-width:0px;
  2820. word-wrap:break-word;
  2821. text-transform:none;
  2822. visibility:hidden;
  2823. }
  2824. #u174652_img {
  2825. border-width:0px;
  2826. position:absolute;
  2827. left:0px;
  2828. top:0px;
  2829. width:6px;
  2830. height:6px;
  2831. }
  2832. #u174652 {
  2833. border-width:0px;
  2834. position:absolute;
  2835. left:831px;
  2836. top:84px;
  2837. width:6px;
  2838. height:6px;
  2839. display:flex;
  2840. }
  2841. #u174652 .text {
  2842. position:absolute;
  2843. align-self:center;
  2844. padding:2px 2px 2px 2px;
  2845. box-sizing:border-box;
  2846. width:100%;
  2847. }
  2848. #u174652_text {
  2849. border-width:0px;
  2850. word-wrap:break-word;
  2851. text-transform:none;
  2852. visibility:hidden;
  2853. }
  2854. #u174653 {
  2855. border-width:0px;
  2856. position:absolute;
  2857. left:0px;
  2858. top:0px;
  2859. width:0px;
  2860. height:0px;
  2861. }
  2862. #u174654_img {
  2863. border-width:0px;
  2864. position:absolute;
  2865. left:0px;
  2866. top:0px;
  2867. width:5px;
  2868. height:5px;
  2869. }
  2870. #u174654 {
  2871. border-width:0px;
  2872. position:absolute;
  2873. left:776px;
  2874. top:85px;
  2875. width:5px;
  2876. height:5px;
  2877. display:flex;
  2878. }
  2879. #u174654 .text {
  2880. position:absolute;
  2881. align-self:center;
  2882. padding:2px 2px 2px 2px;
  2883. box-sizing:border-box;
  2884. width:100%;
  2885. }
  2886. #u174654_text {
  2887. border-width:0px;
  2888. word-wrap:break-word;
  2889. text-transform:none;
  2890. visibility:hidden;
  2891. }
  2892. #u174655_img {
  2893. border-width:0px;
  2894. position:absolute;
  2895. left:0px;
  2896. top:0px;
  2897. width:5px;
  2898. height:5px;
  2899. }
  2900. #u174655 {
  2901. border-width:0px;
  2902. position:absolute;
  2903. left:792px;
  2904. top:85px;
  2905. width:5px;
  2906. height:5px;
  2907. display:flex;
  2908. }
  2909. #u174655 .text {
  2910. position:absolute;
  2911. align-self:center;
  2912. padding:2px 2px 2px 2px;
  2913. box-sizing:border-box;
  2914. width:100%;
  2915. }
  2916. #u174655_text {
  2917. border-width:0px;
  2918. word-wrap:break-word;
  2919. text-transform:none;
  2920. visibility:hidden;
  2921. }
  2922. #u174656_img {
  2923. border-width:0px;
  2924. position:absolute;
  2925. left:0px;
  2926. top:0px;
  2927. width:7px;
  2928. height:7px;
  2929. }
  2930. #u174656 {
  2931. border-width:0px;
  2932. position:absolute;
  2933. left:783px;
  2934. top:84px;
  2935. width:7px;
  2936. height:7px;
  2937. display:flex;
  2938. }
  2939. #u174656 .text {
  2940. position:absolute;
  2941. align-self:center;
  2942. padding:2px 2px 2px 2px;
  2943. box-sizing:border-box;
  2944. width:100%;
  2945. }
  2946. #u174656_text {
  2947. border-width:0px;
  2948. word-wrap:break-word;
  2949. text-transform:none;
  2950. visibility:hidden;
  2951. }
  2952. #u174657_img {
  2953. border-width:0px;
  2954. position:absolute;
  2955. left:0px;
  2956. top:0px;
  2957. width:19px;
  2958. height:2px;
  2959. }
  2960. #u174657 {
  2961. border-width:0px;
  2962. position:absolute;
  2963. left:800px;
  2964. top:87px;
  2965. width:18px;
  2966. height:1px;
  2967. display:flex;
  2968. -webkit-transform:rotate(90deg);
  2969. -moz-transform:rotate(90deg);
  2970. -ms-transform:rotate(90deg);
  2971. transform:rotate(90deg);
  2972. }
  2973. #u174657 .text {
  2974. position:absolute;
  2975. align-self:center;
  2976. padding:2px 2px 2px 2px;
  2977. box-sizing:border-box;
  2978. width:100%;
  2979. }
  2980. #u174657_text {
  2981. border-width:0px;
  2982. word-wrap:break-word;
  2983. text-transform:none;
  2984. visibility:hidden;
  2985. }
  2986. #u174658_img {
  2987. border-width:0px;
  2988. position:absolute;
  2989. left:0px;
  2990. top:0px;
  2991. width:375px;
  2992. height:44px;
  2993. }
  2994. #u174658 {
  2995. border-width:0px;
  2996. position:absolute;
  2997. left:482px;
  2998. top:24px;
  2999. width:375px;
  3000. height:44px;
  3001. display:flex;
  3002. }
  3003. #u174658 .text {
  3004. position:absolute;
  3005. align-self:center;
  3006. padding:2px 2px 2px 2px;
  3007. box-sizing:border-box;
  3008. width:100%;
  3009. }
  3010. #u174658_text {
  3011. border-width:0px;
  3012. word-wrap:break-word;
  3013. text-transform:none;
  3014. visibility:hidden;
  3015. }
  3016. #u174659_div {
  3017. border-width:0px;
  3018. position:absolute;
  3019. left:0px;
  3020. top:0px;
  3021. width:375px;
  3022. height:50px;
  3023. background:inherit;
  3024. background-color:rgba(255, 255, 255, 1);
  3025. box-sizing:border-box;
  3026. border-width:1px;
  3027. border-style:solid;
  3028. border-color:rgba(242, 242, 242, 1);
  3029. border-radius:26px;
  3030. border-top-left-radius:0px;
  3031. border-top-right-radius:0px;
  3032. -moz-box-shadow:none;
  3033. -webkit-box-shadow:none;
  3034. box-shadow:none;
  3035. }
  3036. #u174659 {
  3037. border-width:0px;
  3038. position:absolute;
  3039. left:482px;
  3040. top:788px;
  3041. width:375px;
  3042. height:50px;
  3043. display:flex;
  3044. }
  3045. #u174659 .text {
  3046. position:absolute;
  3047. align-self:center;
  3048. padding:2px 2px 2px 2px;
  3049. box-sizing:border-box;
  3050. width:100%;
  3051. }
  3052. #u174659_text {
  3053. border-width:0px;
  3054. word-wrap:break-word;
  3055. text-transform:none;
  3056. visibility:hidden;
  3057. }
  3058. #u174660 {
  3059. border-width:0px;
  3060. position:absolute;
  3061. left:0px;
  3062. top:0px;
  3063. width:0px;
  3064. height:0px;
  3065. }
  3066. #u174661_img {
  3067. border-width:0px;
  3068. position:absolute;
  3069. left:0px;
  3070. top:0px;
  3071. width:24px;
  3072. height:24px;
  3073. }
  3074. #u174661 {
  3075. border-width:0px;
  3076. position:absolute;
  3077. left:522px;
  3078. top:792px;
  3079. width:24px;
  3080. height:24px;
  3081. display:flex;
  3082. font-size:8px;
  3083. }
  3084. #u174661 .text {
  3085. position:absolute;
  3086. align-self:center;
  3087. padding:2px 2px 2px 2px;
  3088. box-sizing:border-box;
  3089. width:100%;
  3090. }
  3091. #u174661_text {
  3092. border-width:0px;
  3093. word-wrap:break-word;
  3094. text-transform:none;
  3095. }
  3096. #u174662_div {
  3097. border-width:0px;
  3098. position:absolute;
  3099. left:0px;
  3100. top:0px;
  3101. width:25px;
  3102. height:17px;
  3103. background:inherit;
  3104. background-color:rgba(255, 255, 255, 0);
  3105. border:none;
  3106. border-radius:0px;
  3107. -moz-box-shadow:none;
  3108. -webkit-box-shadow:none;
  3109. box-shadow:none;
  3110. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3111. font-weight:400;
  3112. font-style:normal;
  3113. font-size:12px;
  3114. }
  3115. #u174662 {
  3116. border-width:0px;
  3117. position:absolute;
  3118. left:522px;
  3119. top:817px;
  3120. width:25px;
  3121. height:17px;
  3122. display:flex;
  3123. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3124. font-weight:400;
  3125. font-style:normal;
  3126. font-size:12px;
  3127. }
  3128. #u174662 .text {
  3129. position:absolute;
  3130. align-self:flex-start;
  3131. padding:0px 0px 0px 0px;
  3132. box-sizing:border-box;
  3133. width:100%;
  3134. }
  3135. #u174662_text {
  3136. border-width:0px;
  3137. white-space:nowrap;
  3138. text-transform:none;
  3139. }
  3140. #u174663 {
  3141. border-width:0px;
  3142. position:absolute;
  3143. left:0px;
  3144. top:0px;
  3145. width:0px;
  3146. height:0px;
  3147. }
  3148. #u174664_img {
  3149. border-width:0px;
  3150. position:absolute;
  3151. left:0px;
  3152. top:0px;
  3153. width:24px;
  3154. height:24px;
  3155. }
  3156. #u174664 {
  3157. border-width:0px;
  3158. position:absolute;
  3159. left:792px;
  3160. top:794px;
  3161. width:24px;
  3162. height:24px;
  3163. display:flex;
  3164. font-size:8px;
  3165. }
  3166. #u174664 .text {
  3167. position:absolute;
  3168. align-self:center;
  3169. padding:2px 2px 2px 2px;
  3170. box-sizing:border-box;
  3171. width:100%;
  3172. }
  3173. #u174664_text {
  3174. border-width:0px;
  3175. word-wrap:break-word;
  3176. text-transform:none;
  3177. }
  3178. #u174665_div {
  3179. border-width:0px;
  3180. position:absolute;
  3181. left:0px;
  3182. top:0px;
  3183. width:25px;
  3184. height:17px;
  3185. background:inherit;
  3186. background-color:rgba(255, 255, 255, 0);
  3187. border:none;
  3188. border-radius:0px;
  3189. -moz-box-shadow:none;
  3190. -webkit-box-shadow:none;
  3191. box-shadow:none;
  3192. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3193. font-weight:400;
  3194. font-style:normal;
  3195. font-size:12px;
  3196. }
  3197. #u174665 {
  3198. border-width:0px;
  3199. position:absolute;
  3200. left:792px;
  3201. top:819px;
  3202. width:25px;
  3203. height:17px;
  3204. display:flex;
  3205. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3206. font-weight:400;
  3207. font-style:normal;
  3208. font-size:12px;
  3209. }
  3210. #u174665 .text {
  3211. position:absolute;
  3212. align-self:flex-start;
  3213. padding:0px 0px 0px 0px;
  3214. box-sizing:border-box;
  3215. width:100%;
  3216. }
  3217. #u174665_text {
  3218. border-width:0px;
  3219. white-space:nowrap;
  3220. text-transform:none;
  3221. }
  3222. #u174666_div {
  3223. border-width:0px;
  3224. position:absolute;
  3225. left:0px;
  3226. top:0px;
  3227. width:375px;
  3228. height:681px;
  3229. background:inherit;
  3230. background-color:rgba(242, 242, 242, 0.462745098039216);
  3231. border:none;
  3232. border-radius:0px;
  3233. -moz-box-shadow:none;
  3234. -webkit-box-shadow:none;
  3235. box-shadow:none;
  3236. }
  3237. #u174666 {
  3238. border-width:0px;
  3239. position:absolute;
  3240. left:482px;
  3241. top:107px;
  3242. width:375px;
  3243. height:681px;
  3244. display:flex;
  3245. }
  3246. #u174666 .text {
  3247. position:absolute;
  3248. align-self:center;
  3249. padding:2px 2px 2px 2px;
  3250. box-sizing:border-box;
  3251. width:100%;
  3252. }
  3253. #u174666_text {
  3254. border-width:0px;
  3255. word-wrap:break-word;
  3256. text-transform:none;
  3257. visibility:hidden;
  3258. }
  3259. #u174667 {
  3260. border-width:0px;
  3261. position:absolute;
  3262. left:0px;
  3263. top:0px;
  3264. width:0px;
  3265. height:0px;
  3266. }
  3267. #u174668_img {
  3268. border-width:0px;
  3269. position:absolute;
  3270. left:0px;
  3271. top:0px;
  3272. width:24px;
  3273. height:24px;
  3274. }
  3275. #u174668 {
  3276. border-width:0px;
  3277. position:absolute;
  3278. left:704px;
  3279. top:792px;
  3280. width:24px;
  3281. height:24px;
  3282. display:flex;
  3283. font-size:8px;
  3284. }
  3285. #u174668 .text {
  3286. position:absolute;
  3287. align-self:center;
  3288. padding:2px 2px 2px 2px;
  3289. box-sizing:border-box;
  3290. width:100%;
  3291. }
  3292. #u174668_text {
  3293. border-width:0px;
  3294. word-wrap:break-word;
  3295. text-transform:none;
  3296. }
  3297. #u174669_div {
  3298. border-width:0px;
  3299. position:absolute;
  3300. left:0px;
  3301. top:0px;
  3302. width:37px;
  3303. height:17px;
  3304. background:inherit;
  3305. background-color:rgba(255, 255, 255, 0);
  3306. border:none;
  3307. border-radius:0px;
  3308. -moz-box-shadow:none;
  3309. -webkit-box-shadow:none;
  3310. box-shadow:none;
  3311. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3312. font-weight:400;
  3313. font-style:normal;
  3314. font-size:12px;
  3315. }
  3316. #u174669 {
  3317. border-width:0px;
  3318. position:absolute;
  3319. left:698px;
  3320. top:817px;
  3321. width:37px;
  3322. height:17px;
  3323. display:flex;
  3324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3325. font-weight:400;
  3326. font-style:normal;
  3327. font-size:12px;
  3328. }
  3329. #u174669 .text {
  3330. position:absolute;
  3331. align-self:flex-start;
  3332. padding:0px 0px 0px 0px;
  3333. box-sizing:border-box;
  3334. width:100%;
  3335. }
  3336. #u174669_text {
  3337. border-width:0px;
  3338. white-space:nowrap;
  3339. text-transform:none;
  3340. }
  3341. #u174670 {
  3342. border-width:0px;
  3343. position:absolute;
  3344. left:0px;
  3345. top:0px;
  3346. width:0px;
  3347. height:0px;
  3348. }
  3349. #u174671_img {
  3350. border-width:0px;
  3351. position:absolute;
  3352. left:0px;
  3353. top:0px;
  3354. width:24px;
  3355. height:24px;
  3356. }
  3357. #u174671 {
  3358. border-width:0px;
  3359. position:absolute;
  3360. left:610px;
  3361. top:792px;
  3362. width:24px;
  3363. height:24px;
  3364. display:flex;
  3365. font-size:8px;
  3366. }
  3367. #u174671 .text {
  3368. position:absolute;
  3369. align-self:center;
  3370. padding:2px 2px 2px 2px;
  3371. box-sizing:border-box;
  3372. width:100%;
  3373. }
  3374. #u174671_text {
  3375. border-width:0px;
  3376. word-wrap:break-word;
  3377. text-transform:none;
  3378. }
  3379. #u174672_div {
  3380. border-width:0px;
  3381. position:absolute;
  3382. left:0px;
  3383. top:0px;
  3384. width:37px;
  3385. height:17px;
  3386. background:inherit;
  3387. background-color:rgba(255, 255, 255, 0);
  3388. border:none;
  3389. border-radius:0px;
  3390. -moz-box-shadow:none;
  3391. -webkit-box-shadow:none;
  3392. box-shadow:none;
  3393. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3394. font-weight:400;
  3395. font-style:normal;
  3396. font-size:12px;
  3397. }
  3398. #u174672 {
  3399. border-width:0px;
  3400. position:absolute;
  3401. left:604px;
  3402. top:817px;
  3403. width:37px;
  3404. height:17px;
  3405. display:flex;
  3406. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3407. font-weight:400;
  3408. font-style:normal;
  3409. font-size:12px;
  3410. }
  3411. #u174672 .text {
  3412. position:absolute;
  3413. align-self:flex-start;
  3414. padding:0px 0px 0px 0px;
  3415. box-sizing:border-box;
  3416. width:100%;
  3417. }
  3418. #u174672_text {
  3419. border-width:0px;
  3420. white-space:nowrap;
  3421. text-transform:none;
  3422. }
  3423. #u174673_div {
  3424. border-width:0px;
  3425. position:absolute;
  3426. left:0px;
  3427. top:0px;
  3428. width:375px;
  3429. height:1941px;
  3430. background:inherit;
  3431. background-color:rgba(242, 242, 242, 0.996078431372549);
  3432. border:none;
  3433. border-top:0px;
  3434. border-radius:28px;
  3435. border-top-left-radius:0px;
  3436. border-top-right-radius:0px;
  3437. -moz-box-shadow:none;
  3438. -webkit-box-shadow:none;
  3439. box-shadow:none;
  3440. }
  3441. #u174673 {
  3442. border-width:0px;
  3443. position:absolute;
  3444. left:482px;
  3445. top:107px;
  3446. width:375px;
  3447. height:1941px;
  3448. display:flex;
  3449. }
  3450. #u174673 .text {
  3451. position:absolute;
  3452. align-self:center;
  3453. padding:2px 2px 2px 2px;
  3454. box-sizing:border-box;
  3455. width:100%;
  3456. }
  3457. #u174673_text {
  3458. border-width:0px;
  3459. word-wrap:break-word;
  3460. text-transform:none;
  3461. visibility:hidden;
  3462. }
  3463. #u174674_div {
  3464. border-width:0px;
  3465. position:absolute;
  3466. left:0px;
  3467. top:0px;
  3468. width:375px;
  3469. height:40px;
  3470. background:inherit;
  3471. background-color:rgba(255, 255, 255, 1);
  3472. box-sizing:border-box;
  3473. border-width:1px;
  3474. border-style:solid;
  3475. border-color:rgba(215, 215, 215, 1);
  3476. border-left:0px;
  3477. border-top:0px;
  3478. border-right:0px;
  3479. border-radius:0px;
  3480. border-bottom-right-radius:0px;
  3481. border-bottom-left-radius:0px;
  3482. -moz-box-shadow:none;
  3483. -webkit-box-shadow:none;
  3484. box-shadow:none;
  3485. }
  3486. #u174674 {
  3487. border-width:0px;
  3488. position:absolute;
  3489. left:482px;
  3490. top:67px;
  3491. width:375px;
  3492. height:40px;
  3493. display:flex;
  3494. }
  3495. #u174674 .text {
  3496. position:absolute;
  3497. align-self:center;
  3498. padding:2px 2px 2px 2px;
  3499. box-sizing:border-box;
  3500. width:100%;
  3501. }
  3502. #u174674_text {
  3503. border-width:0px;
  3504. word-wrap:break-word;
  3505. text-transform:none;
  3506. visibility:hidden;
  3507. }
  3508. #u174675_img {
  3509. border-width:0px;
  3510. position:absolute;
  3511. left:0px;
  3512. top:0px;
  3513. width:375px;
  3514. height:44px;
  3515. }
  3516. #u174675 {
  3517. border-width:0px;
  3518. position:absolute;
  3519. left:482px;
  3520. top:24px;
  3521. width:375px;
  3522. height:44px;
  3523. display:flex;
  3524. }
  3525. #u174675 .text {
  3526. position:absolute;
  3527. align-self:center;
  3528. padding:2px 2px 2px 2px;
  3529. box-sizing:border-box;
  3530. width:100%;
  3531. }
  3532. #u174675_text {
  3533. border-width:0px;
  3534. word-wrap:break-word;
  3535. text-transform:none;
  3536. visibility:hidden;
  3537. }
  3538. #u174676 {
  3539. border-width:0px;
  3540. position:absolute;
  3541. left:0px;
  3542. top:0px;
  3543. width:0px;
  3544. height:0px;
  3545. }
  3546. #u174677_div {
  3547. border-width:0px;
  3548. position:absolute;
  3549. left:0px;
  3550. top:0px;
  3551. width:88px;
  3552. height:32px;
  3553. background:inherit;
  3554. background-color:rgba(255, 255, 255, 1);
  3555. box-sizing:border-box;
  3556. border-width:1px;
  3557. border-style:solid;
  3558. border-color:rgba(242, 242, 242, 1);
  3559. border-radius:33px;
  3560. -moz-box-shadow:none;
  3561. -webkit-box-shadow:none;
  3562. box-shadow:none;
  3563. }
  3564. #u174677 {
  3565. border-width:0px;
  3566. position:absolute;
  3567. left:759px;
  3568. top:71px;
  3569. width:88px;
  3570. height:32px;
  3571. display:flex;
  3572. }
  3573. #u174677 .text {
  3574. position:absolute;
  3575. align-self:center;
  3576. padding:2px 2px 2px 2px;
  3577. box-sizing:border-box;
  3578. width:100%;
  3579. }
  3580. #u174677_text {
  3581. border-width:0px;
  3582. word-wrap:break-word;
  3583. text-transform:none;
  3584. visibility:hidden;
  3585. }
  3586. #u174678 {
  3587. border-width:0px;
  3588. position:absolute;
  3589. left:0px;
  3590. top:0px;
  3591. width:0px;
  3592. height:0px;
  3593. }
  3594. #u174679_img {
  3595. border-width:0px;
  3596. position:absolute;
  3597. left:0px;
  3598. top:0px;
  3599. width:18px;
  3600. height:18px;
  3601. }
  3602. #u174679 {
  3603. border-width:0px;
  3604. position:absolute;
  3605. left:822px;
  3606. top:78px;
  3607. width:18px;
  3608. height:18px;
  3609. display:flex;
  3610. }
  3611. #u174679 .text {
  3612. position:absolute;
  3613. align-self:center;
  3614. padding:2px 2px 2px 2px;
  3615. box-sizing:border-box;
  3616. width:100%;
  3617. }
  3618. #u174679_text {
  3619. border-width:0px;
  3620. word-wrap:break-word;
  3621. text-transform:none;
  3622. visibility:hidden;
  3623. }
  3624. #u174680_img {
  3625. border-width:0px;
  3626. position:absolute;
  3627. left:0px;
  3628. top:0px;
  3629. width:6px;
  3630. height:6px;
  3631. }
  3632. #u174680 {
  3633. border-width:0px;
  3634. position:absolute;
  3635. left:828px;
  3636. top:84px;
  3637. width:6px;
  3638. height:6px;
  3639. display:flex;
  3640. }
  3641. #u174680 .text {
  3642. position:absolute;
  3643. align-self:center;
  3644. padding:2px 2px 2px 2px;
  3645. box-sizing:border-box;
  3646. width:100%;
  3647. }
  3648. #u174680_text {
  3649. border-width:0px;
  3650. word-wrap:break-word;
  3651. text-transform:none;
  3652. visibility:hidden;
  3653. }
  3654. #u174681 {
  3655. border-width:0px;
  3656. position:absolute;
  3657. left:0px;
  3658. top:0px;
  3659. width:0px;
  3660. height:0px;
  3661. }
  3662. #u174682_img {
  3663. border-width:0px;
  3664. position:absolute;
  3665. left:0px;
  3666. top:0px;
  3667. width:5px;
  3668. height:5px;
  3669. }
  3670. #u174682 {
  3671. border-width:0px;
  3672. position:absolute;
  3673. left:773px;
  3674. top:85px;
  3675. width:5px;
  3676. height:5px;
  3677. display:flex;
  3678. }
  3679. #u174682 .text {
  3680. position:absolute;
  3681. align-self:center;
  3682. padding:2px 2px 2px 2px;
  3683. box-sizing:border-box;
  3684. width:100%;
  3685. }
  3686. #u174682_text {
  3687. border-width:0px;
  3688. word-wrap:break-word;
  3689. text-transform:none;
  3690. visibility:hidden;
  3691. }
  3692. #u174683_img {
  3693. border-width:0px;
  3694. position:absolute;
  3695. left:0px;
  3696. top:0px;
  3697. width:5px;
  3698. height:5px;
  3699. }
  3700. #u174683 {
  3701. border-width:0px;
  3702. position:absolute;
  3703. left:789px;
  3704. top:85px;
  3705. width:5px;
  3706. height:5px;
  3707. display:flex;
  3708. }
  3709. #u174683 .text {
  3710. position:absolute;
  3711. align-self:center;
  3712. padding:2px 2px 2px 2px;
  3713. box-sizing:border-box;
  3714. width:100%;
  3715. }
  3716. #u174683_text {
  3717. border-width:0px;
  3718. word-wrap:break-word;
  3719. text-transform:none;
  3720. visibility:hidden;
  3721. }
  3722. #u174684_img {
  3723. border-width:0px;
  3724. position:absolute;
  3725. left:0px;
  3726. top:0px;
  3727. width:7px;
  3728. height:7px;
  3729. }
  3730. #u174684 {
  3731. border-width:0px;
  3732. position:absolute;
  3733. left:780px;
  3734. top:84px;
  3735. width:7px;
  3736. height:7px;
  3737. display:flex;
  3738. }
  3739. #u174684 .text {
  3740. position:absolute;
  3741. align-self:center;
  3742. padding:2px 2px 2px 2px;
  3743. box-sizing:border-box;
  3744. width:100%;
  3745. }
  3746. #u174684_text {
  3747. border-width:0px;
  3748. word-wrap:break-word;
  3749. text-transform:none;
  3750. visibility:hidden;
  3751. }
  3752. #u174685_img {
  3753. border-width:0px;
  3754. position:absolute;
  3755. left:0px;
  3756. top:0px;
  3757. width:19px;
  3758. height:2px;
  3759. }
  3760. #u174685 {
  3761. border-width:0px;
  3762. position:absolute;
  3763. left:797px;
  3764. top:87px;
  3765. width:18px;
  3766. height:1px;
  3767. display:flex;
  3768. -webkit-transform:rotate(90deg);
  3769. -moz-transform:rotate(90deg);
  3770. -ms-transform:rotate(90deg);
  3771. transform:rotate(90deg);
  3772. }
  3773. #u174685 .text {
  3774. position:absolute;
  3775. align-self:center;
  3776. padding:2px 2px 2px 2px;
  3777. box-sizing:border-box;
  3778. width:100%;
  3779. }
  3780. #u174685_text {
  3781. border-width:0px;
  3782. word-wrap:break-word;
  3783. text-transform:none;
  3784. visibility:hidden;
  3785. }
  3786. #u174686_div {
  3787. border-width:0px;
  3788. position:absolute;
  3789. left:0px;
  3790. top:0px;
  3791. width:73px;
  3792. height:25px;
  3793. background:inherit;
  3794. background-color:rgba(255, 255, 255, 0);
  3795. border:none;
  3796. border-radius:0px;
  3797. -moz-box-shadow:none;
  3798. -webkit-box-shadow:none;
  3799. box-shadow:none;
  3800. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3801. font-weight:400;
  3802. font-style:normal;
  3803. font-size:18px;
  3804. color:#000000;
  3805. text-align:center;
  3806. }
  3807. #u174686 {
  3808. border-width:0px;
  3809. position:absolute;
  3810. left:633px;
  3811. top:75px;
  3812. width:73px;
  3813. height:25px;
  3814. display:flex;
  3815. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3816. font-weight:400;
  3817. font-style:normal;
  3818. font-size:18px;
  3819. color:#000000;
  3820. text-align:center;
  3821. }
  3822. #u174686 .text {
  3823. position:absolute;
  3824. align-self:flex-start;
  3825. padding:0px 0px 0px 0px;
  3826. box-sizing:border-box;
  3827. width:100%;
  3828. }
  3829. #u174686_text {
  3830. border-width:0px;
  3831. white-space:nowrap;
  3832. text-transform:none;
  3833. }
  3834. #u174687_div {
  3835. border-width:0px;
  3836. position:absolute;
  3837. left:0px;
  3838. top:0px;
  3839. width:12px;
  3840. height:12px;
  3841. background:inherit;
  3842. background-color:rgba(255, 255, 255, 0);
  3843. box-sizing:border-box;
  3844. border-width:2px;
  3845. border-style:solid;
  3846. border-color:rgba(51, 51, 51, 1);
  3847. border-right:0px;
  3848. border-bottom:0px;
  3849. border-radius:0px;
  3850. border-top-right-radius:0px;
  3851. border-bottom-left-radius:0px;
  3852. -moz-box-shadow:none;
  3853. -webkit-box-shadow:none;
  3854. box-shadow:none;
  3855. }
  3856. #u174687 {
  3857. border-width:0px;
  3858. position:absolute;
  3859. left:497px;
  3860. top:81px;
  3861. width:12px;
  3862. height:12px;
  3863. display:flex;
  3864. -webkit-transform:rotate(315deg);
  3865. -moz-transform:rotate(315deg);
  3866. -ms-transform:rotate(315deg);
  3867. transform:rotate(315deg);
  3868. }
  3869. #u174687 .text {
  3870. position:absolute;
  3871. align-self:center;
  3872. padding:2px 2px 2px 2px;
  3873. box-sizing:border-box;
  3874. width:100%;
  3875. }
  3876. #u174687_text {
  3877. border-width:0px;
  3878. word-wrap:break-word;
  3879. text-transform:none;
  3880. visibility:hidden;
  3881. }
  3882. #u174688 {
  3883. border-width:0px;
  3884. position:absolute;
  3885. left:0px;
  3886. top:0px;
  3887. width:0px;
  3888. height:0px;
  3889. }
  3890. #u174689_img {
  3891. border-width:0px;
  3892. position:absolute;
  3893. left:0px;
  3894. top:0px;
  3895. width:355px;
  3896. height:100px;
  3897. }
  3898. #u174689 {
  3899. border-width:0px;
  3900. position:absolute;
  3901. left:492px;
  3902. top:143px;
  3903. width:355px;
  3904. height:100px;
  3905. display:flex;
  3906. }
  3907. #u174689 .text {
  3908. position:absolute;
  3909. align-self:center;
  3910. padding:2px 2px 2px 2px;
  3911. box-sizing:border-box;
  3912. width:100%;
  3913. }
  3914. #u174689_text {
  3915. border-width:0px;
  3916. word-wrap:break-word;
  3917. text-transform:none;
  3918. visibility:hidden;
  3919. }
  3920. #u174690_div {
  3921. border-width:0px;
  3922. position:absolute;
  3923. left:0px;
  3924. top:0px;
  3925. width:85px;
  3926. height:30px;
  3927. background:inherit;
  3928. background-color:rgba(255, 255, 255, 0);
  3929. border:none;
  3930. border-left:0px;
  3931. border-top:0px;
  3932. border-right:0px;
  3933. border-radius:0px;
  3934. border-bottom-right-radius:0px;
  3935. border-bottom-left-radius:0px;
  3936. -moz-box-shadow:none;
  3937. -webkit-box-shadow:none;
  3938. box-shadow:none;
  3939. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3940. font-weight:500;
  3941. font-style:normal;
  3942. font-size:14px;
  3943. line-height:30px;
  3944. }
  3945. #u174690 {
  3946. border-width:0px;
  3947. position:absolute;
  3948. left:548px;
  3949. top:150px;
  3950. width:85px;
  3951. height:30px;
  3952. display:flex;
  3953. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3954. font-weight:500;
  3955. font-style:normal;
  3956. font-size:14px;
  3957. line-height:30px;
  3958. }
  3959. #u174690 .text {
  3960. position:absolute;
  3961. align-self:flex-start;
  3962. padding:0px 0px 0px 0px;
  3963. box-sizing:border-box;
  3964. width:100%;
  3965. }
  3966. #u174690_text {
  3967. border-width:0px;
  3968. white-space:nowrap;
  3969. text-transform:none;
  3970. }
  3971. #u174691_div {
  3972. border-width:0px;
  3973. position:absolute;
  3974. left:0px;
  3975. top:0px;
  3976. width:325px;
  3977. height:50px;
  3978. background:inherit;
  3979. background-color:rgba(255, 255, 255, 0);
  3980. border:none;
  3981. border-left:0px;
  3982. border-top:0px;
  3983. border-right:0px;
  3984. border-radius:0px;
  3985. border-bottom-right-radius:0px;
  3986. border-bottom-left-radius:0px;
  3987. -moz-box-shadow:none;
  3988. -webkit-box-shadow:none;
  3989. box-shadow:none;
  3990. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3991. font-weight:400;
  3992. font-style:normal;
  3993. font-size:12px;
  3994. line-height:25px;
  3995. }
  3996. #u174691 {
  3997. border-width:0px;
  3998. position:absolute;
  3999. left:508px;
  4000. top:183px;
  4001. width:325px;
  4002. height:50px;
  4003. display:flex;
  4004. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4005. font-weight:400;
  4006. font-style:normal;
  4007. font-size:12px;
  4008. line-height:25px;
  4009. }
  4010. #u174691 .text {
  4011. position:absolute;
  4012. align-self:flex-start;
  4013. padding:0px 0px 0px 0px;
  4014. box-sizing:border-box;
  4015. width:100%;
  4016. }
  4017. #u174691_text {
  4018. border-width:0px;
  4019. word-wrap:break-word;
  4020. text-transform:none;
  4021. }
  4022. #u174692_div {
  4023. border-width:0px;
  4024. position:absolute;
  4025. left:0px;
  4026. top:0px;
  4027. width:30px;
  4028. height:16px;
  4029. background:inherit;
  4030. background-color:rgba(245, 154, 35, 1);
  4031. border:none;
  4032. border-radius:2px;
  4033. -moz-box-shadow:none;
  4034. -webkit-box-shadow:none;
  4035. box-shadow:none;
  4036. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4037. font-weight:400;
  4038. font-style:normal;
  4039. font-size:10px;
  4040. color:#FFFFFF;
  4041. text-align:center;
  4042. }
  4043. #u174692 {
  4044. border-width:0px;
  4045. position:absolute;
  4046. left:508px;
  4047. top:157px;
  4048. width:30px;
  4049. height:16px;
  4050. display:flex;
  4051. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4052. font-weight:400;
  4053. font-style:normal;
  4054. font-size:10px;
  4055. color:#FFFFFF;
  4056. text-align:center;
  4057. }
  4058. #u174692 .text {
  4059. position:absolute;
  4060. align-self:center;
  4061. padding:0px 0px 0px 0px;
  4062. box-sizing:border-box;
  4063. width:100%;
  4064. }
  4065. #u174692_text {
  4066. border-width:0px;
  4067. word-wrap:break-word;
  4068. text-transform:none;
  4069. }
  4070. #u174693_div {
  4071. border-width:0px;
  4072. position:absolute;
  4073. left:0px;
  4074. top:0px;
  4075. width:375px;
  4076. height:30px;
  4077. background:inherit;
  4078. background-color:rgba(255, 255, 128, 0.0980392156862745);
  4079. border:none;
  4080. border-left:0px;
  4081. border-top:0px;
  4082. border-right:0px;
  4083. border-radius:0px;
  4084. border-bottom-right-radius:0px;
  4085. border-bottom-left-radius:0px;
  4086. -moz-box-shadow:none;
  4087. -webkit-box-shadow:none;
  4088. box-shadow:none;
  4089. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4090. font-weight:400;
  4091. font-style:normal;
  4092. font-size:12px;
  4093. color:#F59A23;
  4094. }
  4095. #u174693 {
  4096. border-width:0px;
  4097. position:absolute;
  4098. left:482px;
  4099. top:107px;
  4100. width:375px;
  4101. height:30px;
  4102. display:flex;
  4103. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4104. font-weight:400;
  4105. font-style:normal;
  4106. font-size:12px;
  4107. color:#F59A23;
  4108. }
  4109. #u174693 .text {
  4110. position:absolute;
  4111. align-self:center;
  4112. padding:0px 0px 0px 20px;
  4113. box-sizing:border-box;
  4114. width:100%;
  4115. }
  4116. #u174693_text {
  4117. border-width:0px;
  4118. word-wrap:break-word;
  4119. text-transform:none;
  4120. }
  4121. #u174694_div {
  4122. border-width:0px;
  4123. position:absolute;
  4124. left:0px;
  4125. top:0px;
  4126. width:47px;
  4127. height:40px;
  4128. background:inherit;
  4129. background-color:rgba(242, 242, 242, 1);
  4130. border:none;
  4131. border-left:0px;
  4132. border-top:0px;
  4133. border-right:0px;
  4134. border-radius:4px;
  4135. border-bottom-right-radius:0px;
  4136. border-bottom-left-radius:0px;
  4137. -moz-box-shadow:none;
  4138. -webkit-box-shadow:none;
  4139. box-shadow:none;
  4140. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4141. font-weight:400;
  4142. font-style:normal;
  4143. font-size:14px;
  4144. }
  4145. #u174694 {
  4146. border-width:0px;
  4147. position:absolute;
  4148. left:595px;
  4149. top:243px;
  4150. width:47px;
  4151. height:40px;
  4152. display:flex;
  4153. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4154. font-weight:400;
  4155. font-style:normal;
  4156. font-size:14px;
  4157. }
  4158. #u174694 .text {
  4159. position:absolute;
  4160. align-self:center;
  4161. padding:2px 2px 2px 2px;
  4162. box-sizing:border-box;
  4163. width:100%;
  4164. }
  4165. #u174694_text {
  4166. border-width:0px;
  4167. white-space:nowrap;
  4168. text-transform:none;
  4169. }
  4170. #u174695_div {
  4171. border-width:0px;
  4172. position:absolute;
  4173. left:0px;
  4174. top:0px;
  4175. width:47px;
  4176. height:40px;
  4177. background:inherit;
  4178. background-color:rgba(242, 242, 242, 1);
  4179. box-sizing:border-box;
  4180. border-width:2px;
  4181. border-style:solid;
  4182. border-color:rgba(0, 137, 254, 1);
  4183. border-left:0px;
  4184. border-top:0px;
  4185. border-right:0px;
  4186. border-radius:4px;
  4187. border-bottom-right-radius:0px;
  4188. border-bottom-left-radius:0px;
  4189. -moz-box-shadow:none;
  4190. -webkit-box-shadow:none;
  4191. box-shadow:none;
  4192. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4193. font-weight:400;
  4194. font-style:normal;
  4195. font-size:14px;
  4196. color:#0089FE;
  4197. }
  4198. #u174695 {
  4199. border-width:0px;
  4200. position:absolute;
  4201. left:697px;
  4202. top:243px;
  4203. width:47px;
  4204. height:40px;
  4205. display:flex;
  4206. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4207. font-weight:400;
  4208. font-style:normal;
  4209. font-size:14px;
  4210. color:#0089FE;
  4211. }
  4212. #u174695 .text {
  4213. position:absolute;
  4214. align-self:center;
  4215. padding:2px 2px 2px 2px;
  4216. box-sizing:border-box;
  4217. width:100%;
  4218. }
  4219. #u174695_text {
  4220. border-width:0px;
  4221. white-space:nowrap;
  4222. text-transform:none;
  4223. }
  4224. #u174696 {
  4225. border-width:0px;
  4226. position:absolute;
  4227. left:0px;
  4228. top:0px;
  4229. width:0px;
  4230. height:0px;
  4231. }
  4232. #u174697 {
  4233. border-width:0px;
  4234. position:absolute;
  4235. left:0px;
  4236. top:0px;
  4237. width:0px;
  4238. height:0px;
  4239. }
  4240. #u174698_div {
  4241. border-width:0px;
  4242. position:absolute;
  4243. left:0px;
  4244. top:0px;
  4245. width:300px;
  4246. height:30px;
  4247. background:inherit;
  4248. background-color:rgba(255, 255, 255, 1);
  4249. border:none;
  4250. border-radius:20px;
  4251. -moz-box-shadow:none;
  4252. -webkit-box-shadow:none;
  4253. box-shadow:none;
  4254. }
  4255. #u174698 {
  4256. border-width:0px;
  4257. position:absolute;
  4258. left:498px;
  4259. top:289px;
  4260. width:300px;
  4261. height:30px;
  4262. display:flex;
  4263. }
  4264. #u174698 .text {
  4265. position:absolute;
  4266. align-self:center;
  4267. padding:2px 2px 2px 2px;
  4268. box-sizing:border-box;
  4269. width:100%;
  4270. }
  4271. #u174698_text {
  4272. border-width:0px;
  4273. word-wrap:break-word;
  4274. text-transform:none;
  4275. visibility:hidden;
  4276. }
  4277. #u174699_input {
  4278. position:absolute;
  4279. left:0px;
  4280. top:0px;
  4281. width:260px;
  4282. height:25px;
  4283. padding:2px 2px 2px 2px;
  4284. font-family:'ArialMT', 'Arial', sans-serif;
  4285. font-weight:400;
  4286. font-style:normal;
  4287. font-size:13px;
  4288. letter-spacing:normal;
  4289. color:#000000;
  4290. vertical-align:none;
  4291. text-align:left;
  4292. text-transform:none;
  4293. background-color:transparent;
  4294. border-color:transparent;
  4295. }
  4296. #u174699_input.disabled {
  4297. position:absolute;
  4298. left:0px;
  4299. top:0px;
  4300. width:260px;
  4301. height:25px;
  4302. padding:2px 2px 2px 2px;
  4303. font-family:'ArialMT', 'Arial', sans-serif;
  4304. font-weight:400;
  4305. font-style:normal;
  4306. font-size:13px;
  4307. letter-spacing:normal;
  4308. color:#000000;
  4309. vertical-align:none;
  4310. text-align:left;
  4311. text-transform:none;
  4312. background-color:transparent;
  4313. border-color:transparent;
  4314. }
  4315. #u174699_div {
  4316. border-width:0px;
  4317. position:absolute;
  4318. left:0px;
  4319. top:0px;
  4320. width:260px;
  4321. height:25px;
  4322. background:inherit;
  4323. background-color:rgba(255, 255, 255, 1);
  4324. border:none;
  4325. border-radius:0px;
  4326. -moz-box-shadow:none;
  4327. -webkit-box-shadow:none;
  4328. box-shadow:none;
  4329. }
  4330. #u174699 {
  4331. border-width:0px;
  4332. position:absolute;
  4333. left:509px;
  4334. top:290px;
  4335. width:260px;
  4336. height:25px;
  4337. display:flex;
  4338. }
  4339. #u174699 .text {
  4340. position:absolute;
  4341. align-self:center;
  4342. padding:2px 2px 2px 2px;
  4343. box-sizing:border-box;
  4344. width:100%;
  4345. }
  4346. #u174699_div.disabled {
  4347. border-width:0px;
  4348. position:absolute;
  4349. left:0px;
  4350. top:0px;
  4351. width:260px;
  4352. height:25px;
  4353. background:inherit;
  4354. background-color:rgba(240, 240, 240, 1);
  4355. border:none;
  4356. border-radius:0px;
  4357. -moz-box-shadow:none;
  4358. -webkit-box-shadow:none;
  4359. box-shadow:none;
  4360. }
  4361. #u174699.disabled {
  4362. }
  4363. #u174700_img {
  4364. border-width:0px;
  4365. position:absolute;
  4366. left:0px;
  4367. top:0px;
  4368. width:12px;
  4369. height:12px;
  4370. }
  4371. #u174700 {
  4372. border-width:0px;
  4373. position:absolute;
  4374. left:765px;
  4375. top:298px;
  4376. width:12px;
  4377. height:12px;
  4378. display:flex;
  4379. }
  4380. #u174700 .text {
  4381. position:absolute;
  4382. align-self:center;
  4383. padding:2px 2px 2px 2px;
  4384. box-sizing:border-box;
  4385. width:100%;
  4386. }
  4387. #u174700_text {
  4388. border-width:0px;
  4389. word-wrap:break-word;
  4390. text-transform:none;
  4391. visibility:hidden;
  4392. }
  4393. #u174701 {
  4394. border-width:0px;
  4395. position:absolute;
  4396. left:0px;
  4397. top:0px;
  4398. width:0px;
  4399. height:0px;
  4400. }
  4401. #u174702_img {
  4402. border-width:0px;
  4403. position:absolute;
  4404. left:0px;
  4405. top:0px;
  4406. width:12px;
  4407. height:12px;
  4408. }
  4409. #u174702 {
  4410. border-width:0px;
  4411. position:absolute;
  4412. left:835px;
  4413. top:298px;
  4414. width:12px;
  4415. height:12px;
  4416. display:flex;
  4417. }
  4418. #u174702 .text {
  4419. position:absolute;
  4420. align-self:center;
  4421. padding:2px 2px 2px 2px;
  4422. box-sizing:border-box;
  4423. width:100%;
  4424. }
  4425. #u174702_text {
  4426. border-width:0px;
  4427. word-wrap:break-word;
  4428. text-transform:none;
  4429. visibility:hidden;
  4430. }
  4431. #u174703_div {
  4432. border-width:0px;
  4433. position:absolute;
  4434. left:0px;
  4435. top:0px;
  4436. width:25px;
  4437. height:17px;
  4438. background:inherit;
  4439. background-color:rgba(255, 255, 255, 0);
  4440. border:none;
  4441. border-radius:0px;
  4442. -moz-box-shadow:none;
  4443. -webkit-box-shadow:none;
  4444. box-shadow:none;
  4445. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4446. font-weight:400;
  4447. font-style:normal;
  4448. font-size:12px;
  4449. color:#000000;
  4450. text-align:center;
  4451. }
  4452. #u174703 {
  4453. border-width:0px;
  4454. position:absolute;
  4455. left:806px;
  4456. top:295px;
  4457. width:25px;
  4458. height:17px;
  4459. display:flex;
  4460. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4461. font-weight:400;
  4462. font-style:normal;
  4463. font-size:12px;
  4464. color:#000000;
  4465. text-align:center;
  4466. }
  4467. #u174703 .text {
  4468. position:absolute;
  4469. align-self:flex-start;
  4470. padding:0px 0px 0px 0px;
  4471. box-sizing:border-box;
  4472. width:100%;
  4473. }
  4474. #u174703_text {
  4475. border-width:0px;
  4476. white-space:nowrap;
  4477. text-transform:none;
  4478. }
  4479. #u174704 {
  4480. border-width:0px;
  4481. position:absolute;
  4482. left:0px;
  4483. top:0px;
  4484. width:0px;
  4485. height:0px;
  4486. }
  4487. #u174705_div {
  4488. border-width:0px;
  4489. position:absolute;
  4490. left:0px;
  4491. top:0px;
  4492. width:349px;
  4493. height:260px;
  4494. background:inherit;
  4495. background-color:rgba(255, 255, 255, 1);
  4496. box-sizing:border-box;
  4497. border-width:1px;
  4498. border-style:solid;
  4499. border-color:rgba(242, 242, 242, 1);
  4500. border-radius:3px;
  4501. -moz-box-shadow:none;
  4502. -webkit-box-shadow:none;
  4503. box-shadow:none;
  4504. }
  4505. #u174705 {
  4506. border-width:0px;
  4507. position:absolute;
  4508. left:498px;
  4509. top:349px;
  4510. width:349px;
  4511. height:260px;
  4512. display:flex;
  4513. }
  4514. #u174705 .text {
  4515. position:absolute;
  4516. align-self:center;
  4517. padding:2px 2px 2px 2px;
  4518. box-sizing:border-box;
  4519. width:100%;
  4520. }
  4521. #u174705_text {
  4522. border-width:0px;
  4523. word-wrap:break-word;
  4524. text-transform:none;
  4525. visibility:hidden;
  4526. }
  4527. #u174706 {
  4528. border-width:0px;
  4529. position:absolute;
  4530. left:0px;
  4531. top:0px;
  4532. width:0px;
  4533. height:0px;
  4534. }
  4535. #u174707_div {
  4536. border-width:0px;
  4537. position:absolute;
  4538. left:0px;
  4539. top:0px;
  4540. width:57px;
  4541. height:180px;
  4542. background:inherit;
  4543. background-color:rgba(255, 255, 255, 0);
  4544. border:none;
  4545. border-left:0px;
  4546. border-top:0px;
  4547. border-right:0px;
  4548. border-radius:0px;
  4549. border-bottom-right-radius:0px;
  4550. border-bottom-left-radius:0px;
  4551. -moz-box-shadow:none;
  4552. -webkit-box-shadow:none;
  4553. box-shadow:none;
  4554. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4555. font-weight:400;
  4556. font-style:normal;
  4557. font-size:14px;
  4558. color:#AAAAAA;
  4559. line-height:30px;
  4560. }
  4561. #u174707 {
  4562. border-width:0px;
  4563. position:absolute;
  4564. left:516px;
  4565. top:387px;
  4566. width:57px;
  4567. height:180px;
  4568. display:flex;
  4569. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4570. font-weight:400;
  4571. font-style:normal;
  4572. font-size:14px;
  4573. color:#AAAAAA;
  4574. line-height:30px;
  4575. }
  4576. #u174707 .text {
  4577. position:absolute;
  4578. align-self:flex-start;
  4579. padding:0px 0px 0px 0px;
  4580. box-sizing:border-box;
  4581. width:100%;
  4582. }
  4583. #u174707_text {
  4584. border-width:0px;
  4585. white-space:nowrap;
  4586. text-transform:none;
  4587. }
  4588. #u174708_div {
  4589. border-width:0px;
  4590. position:absolute;
  4591. left:0px;
  4592. top:0px;
  4593. width:141px;
  4594. height:180px;
  4595. background:inherit;
  4596. background-color:rgba(255, 255, 255, 0);
  4597. border:none;
  4598. border-left:0px;
  4599. border-top:0px;
  4600. border-right:0px;
  4601. border-radius:0px;
  4602. border-bottom-right-radius:0px;
  4603. border-bottom-left-radius:0px;
  4604. -moz-box-shadow:none;
  4605. -webkit-box-shadow:none;
  4606. box-shadow:none;
  4607. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4608. font-weight:400;
  4609. font-style:normal;
  4610. font-size:14px;
  4611. line-height:30px;
  4612. }
  4613. #u174708 {
  4614. border-width:0px;
  4615. position:absolute;
  4616. left:593px;
  4617. top:387px;
  4618. width:141px;
  4619. height:180px;
  4620. display:flex;
  4621. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4622. font-weight:400;
  4623. font-style:normal;
  4624. font-size:14px;
  4625. line-height:30px;
  4626. }
  4627. #u174708 .text {
  4628. position:absolute;
  4629. align-self:flex-start;
  4630. padding:0px 0px 0px 0px;
  4631. box-sizing:border-box;
  4632. width:100%;
  4633. }
  4634. #u174708_text {
  4635. border-width:0px;
  4636. white-space:nowrap;
  4637. text-transform:none;
  4638. }
  4639. #u174709_div {
  4640. border-width:0px;
  4641. position:absolute;
  4642. left:0px;
  4643. top:0px;
  4644. width:30px;
  4645. height:16px;
  4646. background:inherit;
  4647. background-color:rgba(170, 170, 170, 1);
  4648. border:none;
  4649. border-radius:2px;
  4650. -moz-box-shadow:none;
  4651. -webkit-box-shadow:none;
  4652. box-shadow:none;
  4653. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4654. font-weight:400;
  4655. font-style:normal;
  4656. font-size:10px;
  4657. color:#FFFFFF;
  4658. text-align:center;
  4659. }
  4660. #u174709 {
  4661. border-width:0px;
  4662. position:absolute;
  4663. left:516px;
  4664. top:362px;
  4665. width:30px;
  4666. height:16px;
  4667. display:flex;
  4668. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4669. font-weight:400;
  4670. font-style:normal;
  4671. font-size:10px;
  4672. color:#FFFFFF;
  4673. text-align:center;
  4674. }
  4675. #u174709 .text {
  4676. position:absolute;
  4677. align-self:center;
  4678. padding:0px 0px 0px 0px;
  4679. box-sizing:border-box;
  4680. width:100%;
  4681. }
  4682. #u174709_text {
  4683. border-width:0px;
  4684. word-wrap:break-word;
  4685. text-transform:none;
  4686. }
  4687. #u174710_img {
  4688. border-width:0px;
  4689. position:absolute;
  4690. left:0px;
  4691. top:0px;
  4692. width:319px;
  4693. height:2px;
  4694. }
  4695. #u174710 {
  4696. border-width:0px;
  4697. position:absolute;
  4698. left:516px;
  4699. top:572px;
  4700. width:318px;
  4701. height:1px;
  4702. display:flex;
  4703. }
  4704. #u174710 .text {
  4705. position:absolute;
  4706. align-self:center;
  4707. padding:2px 2px 2px 2px;
  4708. box-sizing:border-box;
  4709. width:100%;
  4710. }
  4711. #u174710_text {
  4712. border-width:0px;
  4713. word-wrap:break-word;
  4714. text-transform:none;
  4715. visibility:hidden;
  4716. }
  4717. #u174711_div {
  4718. border-width:0px;
  4719. position:absolute;
  4720. left:0px;
  4721. top:0px;
  4722. width:30px;
  4723. height:16px;
  4724. background:inherit;
  4725. background-color:rgba(170, 170, 170, 1);
  4726. border:none;
  4727. border-radius:2px;
  4728. -moz-box-shadow:none;
  4729. -webkit-box-shadow:none;
  4730. box-shadow:none;
  4731. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4732. font-weight:400;
  4733. font-style:normal;
  4734. font-size:10px;
  4735. color:#FFFFFF;
  4736. text-align:center;
  4737. }
  4738. #u174711 {
  4739. border-width:0px;
  4740. position:absolute;
  4741. left:516px;
  4742. top:583px;
  4743. width:30px;
  4744. height:16px;
  4745. display:flex;
  4746. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4747. font-weight:400;
  4748. font-style:normal;
  4749. font-size:10px;
  4750. color:#FFFFFF;
  4751. text-align:center;
  4752. }
  4753. #u174711 .text {
  4754. position:absolute;
  4755. align-self:center;
  4756. padding:0px 0px 0px 0px;
  4757. box-sizing:border-box;
  4758. width:100%;
  4759. }
  4760. #u174711_text {
  4761. border-width:0px;
  4762. word-wrap:break-word;
  4763. text-transform:none;
  4764. }
  4765. #u174712_div {
  4766. border-width:0px;
  4767. position:absolute;
  4768. left:0px;
  4769. top:0px;
  4770. width:57px;
  4771. height:30px;
  4772. background:inherit;
  4773. background-color:rgba(255, 255, 255, 0);
  4774. border:none;
  4775. border-left:0px;
  4776. border-top:0px;
  4777. border-right:0px;
  4778. border-radius:0px;
  4779. border-bottom-right-radius:0px;
  4780. border-bottom-left-radius:0px;
  4781. -moz-box-shadow:none;
  4782. -webkit-box-shadow:none;
  4783. box-shadow:none;
  4784. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4785. font-weight:400;
  4786. font-style:normal;
  4787. font-size:14px;
  4788. color:#0089FE;
  4789. line-height:30px;
  4790. }
  4791. #u174712 {
  4792. border-width:0px;
  4793. position:absolute;
  4794. left:635px;
  4795. top:576px;
  4796. width:57px;
  4797. height:30px;
  4798. display:flex;
  4799. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4800. font-weight:400;
  4801. font-style:normal;
  4802. font-size:14px;
  4803. color:#0089FE;
  4804. line-height:30px;
  4805. }
  4806. #u174712 .text {
  4807. position:absolute;
  4808. align-self:flex-start;
  4809. padding:0px 0px 0px 0px;
  4810. box-sizing:border-box;
  4811. width:100%;
  4812. }
  4813. #u174712_text {
  4814. border-width:0px;
  4815. white-space:nowrap;
  4816. text-transform:none;
  4817. }
  4818. #u174713_div {
  4819. border-width:0px;
  4820. position:absolute;
  4821. left:0px;
  4822. top:0px;
  4823. width:124px;
  4824. height:25px;
  4825. background:inherit;
  4826. background-color:rgba(255, 255, 255, 0);
  4827. border:none;
  4828. border-left:0px;
  4829. border-top:0px;
  4830. border-right:0px;
  4831. border-radius:0px;
  4832. border-bottom-right-radius:0px;
  4833. border-bottom-left-radius:0px;
  4834. -moz-box-shadow:none;
  4835. -webkit-box-shadow:none;
  4836. box-shadow:none;
  4837. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4838. font-weight:500;
  4839. font-style:normal;
  4840. font-size:14px;
  4841. line-height:25px;
  4842. }
  4843. #u174713 {
  4844. border-width:0px;
  4845. position:absolute;
  4846. left:556px;
  4847. top:358px;
  4848. width:124px;
  4849. height:25px;
  4850. display:flex;
  4851. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4852. font-weight:500;
  4853. font-style:normal;
  4854. font-size:14px;
  4855. line-height:25px;
  4856. }
  4857. #u174713 .text {
  4858. position:absolute;
  4859. align-self:center;
  4860. padding:0px 0px 0px 0px;
  4861. box-sizing:border-box;
  4862. width:100%;
  4863. }
  4864. #u174713_text {
  4865. border-width:0px;
  4866. white-space:nowrap;
  4867. text-transform:none;
  4868. }
  4869. #u174714_div {
  4870. border-width:0px;
  4871. position:absolute;
  4872. left:0px;
  4873. top:0px;
  4874. width:41px;
  4875. height:14px;
  4876. background:inherit;
  4877. background-color:rgba(245, 154, 35, 0);
  4878. border:none;
  4879. border-radius:2px;
  4880. -moz-box-shadow:none;
  4881. -webkit-box-shadow:none;
  4882. box-shadow:none;
  4883. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4884. font-weight:400;
  4885. font-style:normal;
  4886. font-size:10px;
  4887. color:#00BFBF;
  4888. }
  4889. #u174714 {
  4890. border-width:0px;
  4891. position:absolute;
  4892. left:551px;
  4893. top:584px;
  4894. width:41px;
  4895. height:14px;
  4896. display:flex;
  4897. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4898. font-weight:400;
  4899. font-style:normal;
  4900. font-size:10px;
  4901. color:#00BFBF;
  4902. }
  4903. #u174714 .text {
  4904. position:absolute;
  4905. align-self:center;
  4906. padding:0px 0px 0px 0px;
  4907. box-sizing:border-box;
  4908. width:100%;
  4909. }
  4910. #u174714_text {
  4911. border-width:0px;
  4912. white-space:nowrap;
  4913. text-transform:none;
  4914. }
  4915. #u174715_div {
  4916. border-width:0px;
  4917. position:absolute;
  4918. left:0px;
  4919. top:0px;
  4920. width:66px;
  4921. height:25px;
  4922. background:inherit;
  4923. background-color:rgba(255, 255, 255, 0);
  4924. border:none;
  4925. border-left:0px;
  4926. border-top:0px;
  4927. border-right:0px;
  4928. border-radius:0px;
  4929. border-bottom-right-radius:0px;
  4930. border-bottom-left-radius:0px;
  4931. -moz-box-shadow:none;
  4932. -webkit-box-shadow:none;
  4933. box-shadow:none;
  4934. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4935. font-weight:400;
  4936. font-style:normal;
  4937. font-size:12px;
  4938. color:#7F7F7F;
  4939. line-height:25px;
  4940. }
  4941. #u174715 {
  4942. border-width:0px;
  4943. position:absolute;
  4944. left:498px;
  4945. top:322px;
  4946. width:66px;
  4947. height:25px;
  4948. display:flex;
  4949. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4950. font-weight:400;
  4951. font-style:normal;
  4952. font-size:12px;
  4953. color:#7F7F7F;
  4954. line-height:25px;
  4955. }
  4956. #u174715 .text {
  4957. position:absolute;
  4958. align-self:center;
  4959. padding:0px 0px 0px 0px;
  4960. box-sizing:border-box;
  4961. width:100%;
  4962. }
  4963. #u174715_text {
  4964. border-width:0px;
  4965. white-space:nowrap;
  4966. text-transform:none;
  4967. }
  4968. #u174716 {
  4969. border-width:0px;
  4970. position:absolute;
  4971. left:0px;
  4972. top:0px;
  4973. width:0px;
  4974. height:0px;
  4975. }
  4976. #u174717_div {
  4977. border-width:0px;
  4978. position:absolute;
  4979. left:0px;
  4980. top:0px;
  4981. width:349px;
  4982. height:260px;
  4983. background:inherit;
  4984. background-color:rgba(255, 255, 255, 1);
  4985. box-sizing:border-box;
  4986. border-width:1px;
  4987. border-style:solid;
  4988. border-color:rgba(242, 242, 242, 1);
  4989. border-radius:3px;
  4990. -moz-box-shadow:none;
  4991. -webkit-box-shadow:none;
  4992. box-shadow:none;
  4993. }
  4994. #u174717 {
  4995. border-width:0px;
  4996. position:absolute;
  4997. left:498px;
  4998. top:889px;
  4999. width:349px;
  5000. height:260px;
  5001. display:flex;
  5002. }
  5003. #u174717 .text {
  5004. position:absolute;
  5005. align-self:center;
  5006. padding:2px 2px 2px 2px;
  5007. box-sizing:border-box;
  5008. width:100%;
  5009. }
  5010. #u174717_text {
  5011. border-width:0px;
  5012. word-wrap:break-word;
  5013. text-transform:none;
  5014. visibility:hidden;
  5015. }
  5016. #u174718 {
  5017. border-width:0px;
  5018. position:absolute;
  5019. left:0px;
  5020. top:0px;
  5021. width:0px;
  5022. height:0px;
  5023. }
  5024. #u174719_div {
  5025. border-width:0px;
  5026. position:absolute;
  5027. left:0px;
  5028. top:0px;
  5029. width:57px;
  5030. height:180px;
  5031. background:inherit;
  5032. background-color:rgba(255, 255, 255, 0);
  5033. border:none;
  5034. border-left:0px;
  5035. border-top:0px;
  5036. border-right:0px;
  5037. border-radius:0px;
  5038. border-bottom-right-radius:0px;
  5039. border-bottom-left-radius:0px;
  5040. -moz-box-shadow:none;
  5041. -webkit-box-shadow:none;
  5042. box-shadow:none;
  5043. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5044. font-weight:400;
  5045. font-style:normal;
  5046. font-size:14px;
  5047. color:#AAAAAA;
  5048. line-height:30px;
  5049. }
  5050. #u174719 {
  5051. border-width:0px;
  5052. position:absolute;
  5053. left:516px;
  5054. top:927px;
  5055. width:57px;
  5056. height:180px;
  5057. display:flex;
  5058. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5059. font-weight:400;
  5060. font-style:normal;
  5061. font-size:14px;
  5062. color:#AAAAAA;
  5063. line-height:30px;
  5064. }
  5065. #u174719 .text {
  5066. position:absolute;
  5067. align-self:flex-start;
  5068. padding:0px 0px 0px 0px;
  5069. box-sizing:border-box;
  5070. width:100%;
  5071. }
  5072. #u174719_text {
  5073. border-width:0px;
  5074. white-space:nowrap;
  5075. text-transform:none;
  5076. }
  5077. #u174720_div {
  5078. border-width:0px;
  5079. position:absolute;
  5080. left:0px;
  5081. top:0px;
  5082. width:141px;
  5083. height:180px;
  5084. background:inherit;
  5085. background-color:rgba(255, 255, 255, 0);
  5086. border:none;
  5087. border-left:0px;
  5088. border-top:0px;
  5089. border-right:0px;
  5090. border-radius:0px;
  5091. border-bottom-right-radius:0px;
  5092. border-bottom-left-radius:0px;
  5093. -moz-box-shadow:none;
  5094. -webkit-box-shadow:none;
  5095. box-shadow:none;
  5096. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5097. font-weight:400;
  5098. font-style:normal;
  5099. font-size:14px;
  5100. line-height:30px;
  5101. }
  5102. #u174720 {
  5103. border-width:0px;
  5104. position:absolute;
  5105. left:593px;
  5106. top:927px;
  5107. width:141px;
  5108. height:180px;
  5109. display:flex;
  5110. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5111. font-weight:400;
  5112. font-style:normal;
  5113. font-size:14px;
  5114. line-height:30px;
  5115. }
  5116. #u174720 .text {
  5117. position:absolute;
  5118. align-self:flex-start;
  5119. padding:0px 0px 0px 0px;
  5120. box-sizing:border-box;
  5121. width:100%;
  5122. }
  5123. #u174720_text {
  5124. border-width:0px;
  5125. white-space:nowrap;
  5126. text-transform:none;
  5127. }
  5128. #u174721_div {
  5129. border-width:0px;
  5130. position:absolute;
  5131. left:0px;
  5132. top:0px;
  5133. width:30px;
  5134. height:16px;
  5135. background:inherit;
  5136. background-color:rgba(217, 0, 27, 1);
  5137. border:none;
  5138. border-radius:2px;
  5139. -moz-box-shadow:none;
  5140. -webkit-box-shadow:none;
  5141. box-shadow:none;
  5142. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5143. font-weight:400;
  5144. font-style:normal;
  5145. font-size:10px;
  5146. color:#FFFFFF;
  5147. text-align:center;
  5148. }
  5149. #u174721 {
  5150. border-width:0px;
  5151. position:absolute;
  5152. left:516px;
  5153. top:902px;
  5154. width:30px;
  5155. height:16px;
  5156. display:flex;
  5157. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5158. font-weight:400;
  5159. font-style:normal;
  5160. font-size:10px;
  5161. color:#FFFFFF;
  5162. text-align:center;
  5163. }
  5164. #u174721 .text {
  5165. position:absolute;
  5166. align-self:center;
  5167. padding:0px 0px 0px 0px;
  5168. box-sizing:border-box;
  5169. width:100%;
  5170. }
  5171. #u174721_text {
  5172. border-width:0px;
  5173. word-wrap:break-word;
  5174. text-transform:none;
  5175. }
  5176. #u174722_img {
  5177. border-width:0px;
  5178. position:absolute;
  5179. left:0px;
  5180. top:0px;
  5181. width:319px;
  5182. height:2px;
  5183. }
  5184. #u174722 {
  5185. border-width:0px;
  5186. position:absolute;
  5187. left:516px;
  5188. top:1112px;
  5189. width:318px;
  5190. height:1px;
  5191. display:flex;
  5192. }
  5193. #u174722 .text {
  5194. position:absolute;
  5195. align-self:center;
  5196. padding:2px 2px 2px 2px;
  5197. box-sizing:border-box;
  5198. width:100%;
  5199. }
  5200. #u174722_text {
  5201. border-width:0px;
  5202. word-wrap:break-word;
  5203. text-transform:none;
  5204. visibility:hidden;
  5205. }
  5206. #u174723_div {
  5207. border-width:0px;
  5208. position:absolute;
  5209. left:0px;
  5210. top:0px;
  5211. width:30px;
  5212. height:16px;
  5213. background:inherit;
  5214. background-color:rgba(245, 154, 35, 1);
  5215. border:none;
  5216. border-radius:2px;
  5217. -moz-box-shadow:none;
  5218. -webkit-box-shadow:none;
  5219. box-shadow:none;
  5220. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5221. font-weight:400;
  5222. font-style:normal;
  5223. font-size:10px;
  5224. color:#FFFFFF;
  5225. text-align:center;
  5226. }
  5227. #u174723 {
  5228. border-width:0px;
  5229. position:absolute;
  5230. left:516px;
  5231. top:1123px;
  5232. width:30px;
  5233. height:16px;
  5234. display:flex;
  5235. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5236. font-weight:400;
  5237. font-style:normal;
  5238. font-size:10px;
  5239. color:#FFFFFF;
  5240. text-align:center;
  5241. }
  5242. #u174723 .text {
  5243. position:absolute;
  5244. align-self:center;
  5245. padding:0px 0px 0px 0px;
  5246. box-sizing:border-box;
  5247. width:100%;
  5248. }
  5249. #u174723_text {
  5250. border-width:0px;
  5251. word-wrap:break-word;
  5252. text-transform:none;
  5253. }
  5254. #u174724_div {
  5255. border-width:0px;
  5256. position:absolute;
  5257. left:0px;
  5258. top:0px;
  5259. width:57px;
  5260. height:30px;
  5261. background:inherit;
  5262. background-color:rgba(255, 255, 255, 0);
  5263. border:none;
  5264. border-left:0px;
  5265. border-top:0px;
  5266. border-right:0px;
  5267. border-radius:0px;
  5268. border-bottom-right-radius:0px;
  5269. border-bottom-left-radius:0px;
  5270. -moz-box-shadow:none;
  5271. -webkit-box-shadow:none;
  5272. box-shadow:none;
  5273. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5274. font-weight:400;
  5275. font-style:normal;
  5276. font-size:14px;
  5277. color:#0089FE;
  5278. line-height:30px;
  5279. }
  5280. #u174724 {
  5281. border-width:0px;
  5282. position:absolute;
  5283. left:635px;
  5284. top:1116px;
  5285. width:57px;
  5286. height:30px;
  5287. display:flex;
  5288. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5289. font-weight:400;
  5290. font-style:normal;
  5291. font-size:14px;
  5292. color:#0089FE;
  5293. line-height:30px;
  5294. }
  5295. #u174724 .text {
  5296. position:absolute;
  5297. align-self:flex-start;
  5298. padding:0px 0px 0px 0px;
  5299. box-sizing:border-box;
  5300. width:100%;
  5301. }
  5302. #u174724_text {
  5303. border-width:0px;
  5304. white-space:nowrap;
  5305. text-transform:none;
  5306. }
  5307. #u174725_div {
  5308. border-width:0px;
  5309. position:absolute;
  5310. left:0px;
  5311. top:0px;
  5312. width:124px;
  5313. height:25px;
  5314. background:inherit;
  5315. background-color:rgba(255, 255, 255, 0);
  5316. border:none;
  5317. border-left:0px;
  5318. border-top:0px;
  5319. border-right:0px;
  5320. border-radius:0px;
  5321. border-bottom-right-radius:0px;
  5322. border-bottom-left-radius:0px;
  5323. -moz-box-shadow:none;
  5324. -webkit-box-shadow:none;
  5325. box-shadow:none;
  5326. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5327. font-weight:500;
  5328. font-style:normal;
  5329. font-size:14px;
  5330. line-height:25px;
  5331. }
  5332. #u174725 {
  5333. border-width:0px;
  5334. position:absolute;
  5335. left:556px;
  5336. top:898px;
  5337. width:124px;
  5338. height:25px;
  5339. display:flex;
  5340. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5341. font-weight:500;
  5342. font-style:normal;
  5343. font-size:14px;
  5344. line-height:25px;
  5345. }
  5346. #u174725 .text {
  5347. position:absolute;
  5348. align-self:center;
  5349. padding:0px 0px 0px 0px;
  5350. box-sizing:border-box;
  5351. width:100%;
  5352. }
  5353. #u174725_text {
  5354. border-width:0px;
  5355. white-space:nowrap;
  5356. text-transform:none;
  5357. }
  5358. #u174726_div {
  5359. border-width:0px;
  5360. position:absolute;
  5361. left:0px;
  5362. top:0px;
  5363. width:41px;
  5364. height:14px;
  5365. background:inherit;
  5366. background-color:rgba(245, 154, 35, 0);
  5367. border:none;
  5368. border-radius:2px;
  5369. -moz-box-shadow:none;
  5370. -webkit-box-shadow:none;
  5371. box-shadow:none;
  5372. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5373. font-weight:400;
  5374. font-style:normal;
  5375. font-size:10px;
  5376. color:#00BFBF;
  5377. }
  5378. #u174726 {
  5379. border-width:0px;
  5380. position:absolute;
  5381. left:551px;
  5382. top:1124px;
  5383. width:41px;
  5384. height:14px;
  5385. display:flex;
  5386. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5387. font-weight:400;
  5388. font-style:normal;
  5389. font-size:10px;
  5390. color:#00BFBF;
  5391. }
  5392. #u174726 .text {
  5393. position:absolute;
  5394. align-self:center;
  5395. padding:0px 0px 0px 0px;
  5396. box-sizing:border-box;
  5397. width:100%;
  5398. }
  5399. #u174726_text {
  5400. border-width:0px;
  5401. white-space:nowrap;
  5402. text-transform:none;
  5403. }
  5404. #u174727 {
  5405. border-width:0px;
  5406. position:absolute;
  5407. left:0px;
  5408. top:0px;
  5409. width:0px;
  5410. height:0px;
  5411. }
  5412. #u174728_div {
  5413. border-width:0px;
  5414. position:absolute;
  5415. left:0px;
  5416. top:0px;
  5417. width:349px;
  5418. height:260px;
  5419. background:inherit;
  5420. background-color:rgba(255, 255, 255, 1);
  5421. box-sizing:border-box;
  5422. border-width:1px;
  5423. border-style:solid;
  5424. border-color:rgba(242, 242, 242, 1);
  5425. border-radius:3px;
  5426. -moz-box-shadow:none;
  5427. -webkit-box-shadow:none;
  5428. box-shadow:none;
  5429. }
  5430. #u174728 {
  5431. border-width:0px;
  5432. position:absolute;
  5433. left:498px;
  5434. top:1159px;
  5435. width:349px;
  5436. height:260px;
  5437. display:flex;
  5438. }
  5439. #u174728 .text {
  5440. position:absolute;
  5441. align-self:center;
  5442. padding:2px 2px 2px 2px;
  5443. box-sizing:border-box;
  5444. width:100%;
  5445. }
  5446. #u174728_text {
  5447. border-width:0px;
  5448. word-wrap:break-word;
  5449. text-transform:none;
  5450. visibility:hidden;
  5451. }
  5452. #u174729 {
  5453. border-width:0px;
  5454. position:absolute;
  5455. left:0px;
  5456. top:0px;
  5457. width:0px;
  5458. height:0px;
  5459. }
  5460. #u174730_div {
  5461. border-width:0px;
  5462. position:absolute;
  5463. left:0px;
  5464. top:0px;
  5465. width:57px;
  5466. height:180px;
  5467. background:inherit;
  5468. background-color:rgba(255, 255, 255, 0);
  5469. border:none;
  5470. border-left:0px;
  5471. border-top:0px;
  5472. border-right:0px;
  5473. border-radius:0px;
  5474. border-bottom-right-radius:0px;
  5475. border-bottom-left-radius:0px;
  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:#AAAAAA;
  5484. line-height:30px;
  5485. }
  5486. #u174730 {
  5487. border-width:0px;
  5488. position:absolute;
  5489. left:516px;
  5490. top:1197px;
  5491. width:57px;
  5492. height:180px;
  5493. display:flex;
  5494. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5495. font-weight:400;
  5496. font-style:normal;
  5497. font-size:14px;
  5498. color:#AAAAAA;
  5499. line-height:30px;
  5500. }
  5501. #u174730 .text {
  5502. position:absolute;
  5503. align-self:flex-start;
  5504. padding:0px 0px 0px 0px;
  5505. box-sizing:border-box;
  5506. width:100%;
  5507. }
  5508. #u174730_text {
  5509. border-width:0px;
  5510. white-space:nowrap;
  5511. text-transform:none;
  5512. }
  5513. #u174731_div {
  5514. border-width:0px;
  5515. position:absolute;
  5516. left:0px;
  5517. top:0px;
  5518. width:141px;
  5519. height:180px;
  5520. background:inherit;
  5521. background-color:rgba(255, 255, 255, 0);
  5522. border:none;
  5523. border-left:0px;
  5524. border-top:0px;
  5525. border-right:0px;
  5526. border-radius:0px;
  5527. border-bottom-right-radius:0px;
  5528. border-bottom-left-radius:0px;
  5529. -moz-box-shadow:none;
  5530. -webkit-box-shadow:none;
  5531. box-shadow:none;
  5532. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5533. font-weight:400;
  5534. font-style:normal;
  5535. font-size:14px;
  5536. line-height:30px;
  5537. }
  5538. #u174731 {
  5539. border-width:0px;
  5540. position:absolute;
  5541. left:593px;
  5542. top:1197px;
  5543. width:141px;
  5544. height:180px;
  5545. display:flex;
  5546. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5547. font-weight:400;
  5548. font-style:normal;
  5549. font-size:14px;
  5550. line-height:30px;
  5551. }
  5552. #u174731 .text {
  5553. position:absolute;
  5554. align-self:flex-start;
  5555. padding:0px 0px 0px 0px;
  5556. box-sizing:border-box;
  5557. width:100%;
  5558. }
  5559. #u174731_text {
  5560. border-width:0px;
  5561. white-space:nowrap;
  5562. text-transform:none;
  5563. }
  5564. #u174732_div {
  5565. border-width:0px;
  5566. position:absolute;
  5567. left:0px;
  5568. top:0px;
  5569. width:30px;
  5570. height:16px;
  5571. background:inherit;
  5572. background-color:rgba(0, 191, 191, 1);
  5573. border:none;
  5574. border-radius:2px;
  5575. -moz-box-shadow:none;
  5576. -webkit-box-shadow:none;
  5577. box-shadow:none;
  5578. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5579. font-weight:400;
  5580. font-style:normal;
  5581. font-size:10px;
  5582. color:#FFFFFF;
  5583. text-align:center;
  5584. }
  5585. #u174732 {
  5586. border-width:0px;
  5587. position:absolute;
  5588. left:516px;
  5589. top:1172px;
  5590. width:30px;
  5591. height:16px;
  5592. display:flex;
  5593. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5594. font-weight:400;
  5595. font-style:normal;
  5596. font-size:10px;
  5597. color:#FFFFFF;
  5598. text-align:center;
  5599. }
  5600. #u174732 .text {
  5601. position:absolute;
  5602. align-self:center;
  5603. padding:0px 0px 0px 0px;
  5604. box-sizing:border-box;
  5605. width:100%;
  5606. }
  5607. #u174732_text {
  5608. border-width:0px;
  5609. word-wrap:break-word;
  5610. text-transform:none;
  5611. }
  5612. #u174733_img {
  5613. border-width:0px;
  5614. position:absolute;
  5615. left:0px;
  5616. top:0px;
  5617. width:319px;
  5618. height:2px;
  5619. }
  5620. #u174733 {
  5621. border-width:0px;
  5622. position:absolute;
  5623. left:516px;
  5624. top:1382px;
  5625. width:318px;
  5626. height:1px;
  5627. display:flex;
  5628. }
  5629. #u174733 .text {
  5630. position:absolute;
  5631. align-self:center;
  5632. padding:2px 2px 2px 2px;
  5633. box-sizing:border-box;
  5634. width:100%;
  5635. }
  5636. #u174733_text {
  5637. border-width:0px;
  5638. word-wrap:break-word;
  5639. text-transform:none;
  5640. visibility:hidden;
  5641. }
  5642. #u174734_div {
  5643. border-width:0px;
  5644. position:absolute;
  5645. left:0px;
  5646. top:0px;
  5647. width:30px;
  5648. height:16px;
  5649. background:inherit;
  5650. background-color:rgba(170, 170, 170, 1);
  5651. border:none;
  5652. border-radius:2px;
  5653. -moz-box-shadow:none;
  5654. -webkit-box-shadow:none;
  5655. box-shadow:none;
  5656. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5657. font-weight:400;
  5658. font-style:normal;
  5659. font-size:10px;
  5660. color:#FFFFFF;
  5661. text-align:center;
  5662. }
  5663. #u174734 {
  5664. border-width:0px;
  5665. position:absolute;
  5666. left:516px;
  5667. top:1393px;
  5668. width:30px;
  5669. height:16px;
  5670. display:flex;
  5671. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5672. font-weight:400;
  5673. font-style:normal;
  5674. font-size:10px;
  5675. color:#FFFFFF;
  5676. text-align:center;
  5677. }
  5678. #u174734 .text {
  5679. position:absolute;
  5680. align-self:center;
  5681. padding:0px 0px 0px 0px;
  5682. box-sizing:border-box;
  5683. width:100%;
  5684. }
  5685. #u174734_text {
  5686. border-width:0px;
  5687. word-wrap:break-word;
  5688. text-transform:none;
  5689. }
  5690. #u174735_div {
  5691. border-width:0px;
  5692. position:absolute;
  5693. left:0px;
  5694. top:0px;
  5695. width:124px;
  5696. height:25px;
  5697. background:inherit;
  5698. background-color:rgba(255, 255, 255, 0);
  5699. border:none;
  5700. border-left:0px;
  5701. border-top:0px;
  5702. border-right:0px;
  5703. border-radius:0px;
  5704. border-bottom-right-radius:0px;
  5705. border-bottom-left-radius:0px;
  5706. -moz-box-shadow:none;
  5707. -webkit-box-shadow:none;
  5708. box-shadow:none;
  5709. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5710. font-weight:500;
  5711. font-style:normal;
  5712. font-size:14px;
  5713. line-height:25px;
  5714. }
  5715. #u174735 {
  5716. border-width:0px;
  5717. position:absolute;
  5718. left:556px;
  5719. top:1168px;
  5720. width:124px;
  5721. height:25px;
  5722. display:flex;
  5723. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5724. font-weight:500;
  5725. font-style:normal;
  5726. font-size:14px;
  5727. line-height:25px;
  5728. }
  5729. #u174735 .text {
  5730. position:absolute;
  5731. align-self:center;
  5732. padding:0px 0px 0px 0px;
  5733. box-sizing:border-box;
  5734. width:100%;
  5735. }
  5736. #u174735_text {
  5737. border-width:0px;
  5738. white-space:nowrap;
  5739. text-transform:none;
  5740. }
  5741. #u174736_div {
  5742. border-width:0px;
  5743. position:absolute;
  5744. left:0px;
  5745. top:0px;
  5746. width:41px;
  5747. height:14px;
  5748. background:inherit;
  5749. background-color:rgba(245, 154, 35, 0);
  5750. border:none;
  5751. border-radius:2px;
  5752. -moz-box-shadow:none;
  5753. -webkit-box-shadow:none;
  5754. box-shadow:none;
  5755. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5756. font-weight:400;
  5757. font-style:normal;
  5758. font-size:10px;
  5759. color:#00BFBF;
  5760. }
  5761. #u174736 {
  5762. border-width:0px;
  5763. position:absolute;
  5764. left:551px;
  5765. top:1394px;
  5766. width:41px;
  5767. height:14px;
  5768. display:flex;
  5769. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5770. font-weight:400;
  5771. font-style:normal;
  5772. font-size:10px;
  5773. color:#00BFBF;
  5774. }
  5775. #u174736 .text {
  5776. position:absolute;
  5777. align-self:center;
  5778. padding:0px 0px 0px 0px;
  5779. box-sizing:border-box;
  5780. width:100%;
  5781. }
  5782. #u174736_text {
  5783. border-width:0px;
  5784. white-space:nowrap;
  5785. text-transform:none;
  5786. }
  5787. #u174737 {
  5788. border-width:0px;
  5789. position:absolute;
  5790. left:0px;
  5791. top:0px;
  5792. width:0px;
  5793. height:0px;
  5794. }
  5795. #u174738_div {
  5796. border-width:0px;
  5797. position:absolute;
  5798. left:0px;
  5799. top:0px;
  5800. width:349px;
  5801. height:260px;
  5802. background:inherit;
  5803. background-color:rgba(255, 255, 255, 1);
  5804. box-sizing:border-box;
  5805. border-width:1px;
  5806. border-style:solid;
  5807. border-color:rgba(242, 242, 242, 1);
  5808. border-radius:3px;
  5809. -moz-box-shadow:none;
  5810. -webkit-box-shadow:none;
  5811. box-shadow:none;
  5812. }
  5813. #u174738 {
  5814. border-width:0px;
  5815. position:absolute;
  5816. left:498px;
  5817. top:619px;
  5818. width:349px;
  5819. height:260px;
  5820. display:flex;
  5821. }
  5822. #u174738 .text {
  5823. position:absolute;
  5824. align-self:center;
  5825. padding:2px 2px 2px 2px;
  5826. box-sizing:border-box;
  5827. width:100%;
  5828. }
  5829. #u174738_text {
  5830. border-width:0px;
  5831. word-wrap:break-word;
  5832. text-transform:none;
  5833. visibility:hidden;
  5834. }
  5835. #u174739 {
  5836. border-width:0px;
  5837. position:absolute;
  5838. left:0px;
  5839. top:0px;
  5840. width:0px;
  5841. height:0px;
  5842. }
  5843. #u174740_div {
  5844. border-width:0px;
  5845. position:absolute;
  5846. left:0px;
  5847. top:0px;
  5848. width:57px;
  5849. height:180px;
  5850. background:inherit;
  5851. background-color:rgba(255, 255, 255, 0);
  5852. border:none;
  5853. border-left:0px;
  5854. border-top:0px;
  5855. border-right:0px;
  5856. border-radius:0px;
  5857. border-bottom-right-radius:0px;
  5858. border-bottom-left-radius:0px;
  5859. -moz-box-shadow:none;
  5860. -webkit-box-shadow:none;
  5861. box-shadow:none;
  5862. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5863. font-weight:400;
  5864. font-style:normal;
  5865. font-size:14px;
  5866. color:#AAAAAA;
  5867. line-height:30px;
  5868. }
  5869. #u174740 {
  5870. border-width:0px;
  5871. position:absolute;
  5872. left:516px;
  5873. top:657px;
  5874. width:57px;
  5875. height:180px;
  5876. display:flex;
  5877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5878. font-weight:400;
  5879. font-style:normal;
  5880. font-size:14px;
  5881. color:#AAAAAA;
  5882. line-height:30px;
  5883. }
  5884. #u174740 .text {
  5885. position:absolute;
  5886. align-self:flex-start;
  5887. padding:0px 0px 0px 0px;
  5888. box-sizing:border-box;
  5889. width:100%;
  5890. }
  5891. #u174740_text {
  5892. border-width:0px;
  5893. white-space:nowrap;
  5894. text-transform:none;
  5895. }
  5896. #u174741_div {
  5897. border-width:0px;
  5898. position:absolute;
  5899. left:0px;
  5900. top:0px;
  5901. width:141px;
  5902. height:180px;
  5903. background:inherit;
  5904. background-color:rgba(255, 255, 255, 0);
  5905. border:none;
  5906. border-left:0px;
  5907. border-top:0px;
  5908. border-right:0px;
  5909. border-radius:0px;
  5910. border-bottom-right-radius:0px;
  5911. border-bottom-left-radius:0px;
  5912. -moz-box-shadow:none;
  5913. -webkit-box-shadow:none;
  5914. box-shadow:none;
  5915. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5916. font-weight:400;
  5917. font-style:normal;
  5918. font-size:14px;
  5919. line-height:30px;
  5920. }
  5921. #u174741 {
  5922. border-width:0px;
  5923. position:absolute;
  5924. left:593px;
  5925. top:657px;
  5926. width:141px;
  5927. height:180px;
  5928. display:flex;
  5929. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5930. font-weight:400;
  5931. font-style:normal;
  5932. font-size:14px;
  5933. line-height:30px;
  5934. }
  5935. #u174741 .text {
  5936. position:absolute;
  5937. align-self:flex-start;
  5938. padding:0px 0px 0px 0px;
  5939. box-sizing:border-box;
  5940. width:100%;
  5941. }
  5942. #u174741_text {
  5943. border-width:0px;
  5944. white-space:nowrap;
  5945. text-transform:none;
  5946. }
  5947. #u174742_div {
  5948. border-width:0px;
  5949. position:absolute;
  5950. left:0px;
  5951. top:0px;
  5952. width:30px;
  5953. height:16px;
  5954. background:inherit;
  5955. background-color:rgba(170, 170, 170, 1);
  5956. border:none;
  5957. border-radius:2px;
  5958. -moz-box-shadow:none;
  5959. -webkit-box-shadow:none;
  5960. box-shadow:none;
  5961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5962. font-weight:400;
  5963. font-style:normal;
  5964. font-size:10px;
  5965. color:#FFFFFF;
  5966. text-align:center;
  5967. }
  5968. #u174742 {
  5969. border-width:0px;
  5970. position:absolute;
  5971. left:516px;
  5972. top:632px;
  5973. width:30px;
  5974. height:16px;
  5975. display:flex;
  5976. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5977. font-weight:400;
  5978. font-style:normal;
  5979. font-size:10px;
  5980. color:#FFFFFF;
  5981. text-align:center;
  5982. }
  5983. #u174742 .text {
  5984. position:absolute;
  5985. align-self:center;
  5986. padding:0px 0px 0px 0px;
  5987. box-sizing:border-box;
  5988. width:100%;
  5989. }
  5990. #u174742_text {
  5991. border-width:0px;
  5992. word-wrap:break-word;
  5993. text-transform:none;
  5994. }
  5995. #u174743_img {
  5996. border-width:0px;
  5997. position:absolute;
  5998. left:0px;
  5999. top:0px;
  6000. width:319px;
  6001. height:2px;
  6002. }
  6003. #u174743 {
  6004. border-width:0px;
  6005. position:absolute;
  6006. left:516px;
  6007. top:842px;
  6008. width:318px;
  6009. height:1px;
  6010. display:flex;
  6011. }
  6012. #u174743 .text {
  6013. position:absolute;
  6014. align-self:center;
  6015. padding:2px 2px 2px 2px;
  6016. box-sizing:border-box;
  6017. width:100%;
  6018. }
  6019. #u174743_text {
  6020. border-width:0px;
  6021. word-wrap:break-word;
  6022. text-transform:none;
  6023. visibility:hidden;
  6024. }
  6025. #u174744_div {
  6026. border-width:0px;
  6027. position:absolute;
  6028. left:0px;
  6029. top:0px;
  6030. width:57px;
  6031. height:30px;
  6032. background:inherit;
  6033. background-color:rgba(255, 255, 255, 0);
  6034. border:none;
  6035. border-left:0px;
  6036. border-top:0px;
  6037. border-right:0px;
  6038. border-radius:0px;
  6039. border-bottom-right-radius:0px;
  6040. border-bottom-left-radius:0px;
  6041. -moz-box-shadow:none;
  6042. -webkit-box-shadow:none;
  6043. box-shadow:none;
  6044. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6045. font-weight:400;
  6046. font-style:normal;
  6047. font-size:14px;
  6048. color:#0089FE;
  6049. line-height:30px;
  6050. }
  6051. #u174744 {
  6052. border-width:0px;
  6053. position:absolute;
  6054. left:635px;
  6055. top:846px;
  6056. width:57px;
  6057. height:30px;
  6058. display:flex;
  6059. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6060. font-weight:400;
  6061. font-style:normal;
  6062. font-size:14px;
  6063. color:#0089FE;
  6064. line-height:30px;
  6065. }
  6066. #u174744 .text {
  6067. position:absolute;
  6068. align-self:flex-start;
  6069. padding:0px 0px 0px 0px;
  6070. box-sizing:border-box;
  6071. width:100%;
  6072. }
  6073. #u174744_text {
  6074. border-width:0px;
  6075. white-space:nowrap;
  6076. text-transform:none;
  6077. }
  6078. #u174745_div {
  6079. border-width:0px;
  6080. position:absolute;
  6081. left:0px;
  6082. top:0px;
  6083. width:124px;
  6084. height:25px;
  6085. background:inherit;
  6086. background-color:rgba(255, 255, 255, 0);
  6087. border:none;
  6088. border-left:0px;
  6089. border-top:0px;
  6090. border-right:0px;
  6091. border-radius:0px;
  6092. border-bottom-right-radius:0px;
  6093. border-bottom-left-radius:0px;
  6094. -moz-box-shadow:none;
  6095. -webkit-box-shadow:none;
  6096. box-shadow:none;
  6097. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6098. font-weight:500;
  6099. font-style:normal;
  6100. font-size:14px;
  6101. line-height:25px;
  6102. }
  6103. #u174745 {
  6104. border-width:0px;
  6105. position:absolute;
  6106. left:556px;
  6107. top:628px;
  6108. width:124px;
  6109. height:25px;
  6110. display:flex;
  6111. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6112. font-weight:500;
  6113. font-style:normal;
  6114. font-size:14px;
  6115. line-height:25px;
  6116. }
  6117. #u174745 .text {
  6118. position:absolute;
  6119. align-self:center;
  6120. padding:0px 0px 0px 0px;
  6121. box-sizing:border-box;
  6122. width:100%;
  6123. }
  6124. #u174745_text {
  6125. border-width:0px;
  6126. white-space:nowrap;
  6127. text-transform:none;
  6128. }
  6129. #u174746_div {
  6130. border-width:0px;
  6131. position:absolute;
  6132. left:0px;
  6133. top:0px;
  6134. width:51px;
  6135. height:14px;
  6136. background:inherit;
  6137. background-color:rgba(245, 154, 35, 0);
  6138. border:none;
  6139. border-radius:2px;
  6140. -moz-box-shadow:none;
  6141. -webkit-box-shadow:none;
  6142. box-shadow:none;
  6143. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6144. font-weight:400;
  6145. font-style:normal;
  6146. font-size:10px;
  6147. color:#D9001B;
  6148. }
  6149. #u174746 {
  6150. border-width:0px;
  6151. position:absolute;
  6152. left:551px;
  6153. top:854px;
  6154. width:51px;
  6155. height:14px;
  6156. display:flex;
  6157. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6158. font-weight:400;
  6159. font-style:normal;
  6160. font-size:10px;
  6161. color:#D9001B;
  6162. }
  6163. #u174746 .text {
  6164. position:absolute;
  6165. align-self:center;
  6166. padding:0px 0px 0px 0px;
  6167. box-sizing:border-box;
  6168. width:100%;
  6169. }
  6170. #u174746_text {
  6171. border-width:0px;
  6172. white-space:nowrap;
  6173. text-transform:none;
  6174. }
  6175. #u174747_div {
  6176. border-width:0px;
  6177. position:absolute;
  6178. left:0px;
  6179. top:0px;
  6180. width:30px;
  6181. height:16px;
  6182. background:inherit;
  6183. background-color:rgba(245, 154, 35, 1);
  6184. border:none;
  6185. border-radius:2px;
  6186. -moz-box-shadow:none;
  6187. -webkit-box-shadow:none;
  6188. box-shadow:none;
  6189. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6190. font-weight:400;
  6191. font-style:normal;
  6192. font-size:10px;
  6193. color:#FFFFFF;
  6194. text-align:center;
  6195. }
  6196. #u174747 {
  6197. border-width:0px;
  6198. position:absolute;
  6199. left:516px;
  6200. top:852px;
  6201. width:30px;
  6202. height:16px;
  6203. display:flex;
  6204. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6205. font-weight:400;
  6206. font-style:normal;
  6207. font-size:10px;
  6208. color:#FFFFFF;
  6209. text-align:center;
  6210. }
  6211. #u174747 .text {
  6212. position:absolute;
  6213. align-self:center;
  6214. padding:0px 0px 0px 0px;
  6215. box-sizing:border-box;
  6216. width:100%;
  6217. }
  6218. #u174747_text {
  6219. border-width:0px;
  6220. word-wrap:break-word;
  6221. text-transform:none;
  6222. }
  6223. #u174748 {
  6224. border-width:0px;
  6225. position:absolute;
  6226. left:0px;
  6227. top:0px;
  6228. width:0px;
  6229. height:0px;
  6230. }
  6231. #u174749_div {
  6232. border-width:0px;
  6233. position:absolute;
  6234. left:0px;
  6235. top:0px;
  6236. width:375px;
  6237. height:60px;
  6238. background:inherit;
  6239. background-color:rgba(255, 255, 255, 1);
  6240. border:none;
  6241. border-top:0px;
  6242. border-radius:28px;
  6243. border-top-left-radius:0px;
  6244. border-top-right-radius:0px;
  6245. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  6246. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  6247. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  6248. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6249. font-weight:400;
  6250. font-style:normal;
  6251. font-size:14px;
  6252. color:#FFFFFF;
  6253. }
  6254. #u174749 {
  6255. border-width:0px;
  6256. position:absolute;
  6257. left:29px;
  6258. top:893px;
  6259. width:375px;
  6260. height:60px;
  6261. display:flex;
  6262. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6263. font-weight:400;
  6264. font-style:normal;
  6265. font-size:14px;
  6266. color:#FFFFFF;
  6267. }
  6268. #u174749 .text {
  6269. position:absolute;
  6270. align-self:center;
  6271. padding:2px 2px 2px 2px;
  6272. box-sizing:border-box;
  6273. width:100%;
  6274. }
  6275. #u174749_text {
  6276. border-width:0px;
  6277. word-wrap:break-word;
  6278. text-transform:none;
  6279. visibility:hidden;
  6280. }
  6281. #u174750_div {
  6282. border-width:0px;
  6283. position:absolute;
  6284. left:0px;
  6285. top:0px;
  6286. width:106px;
  6287. height:40px;
  6288. background:inherit;
  6289. background-color:rgba(0, 137, 254, 1);
  6290. border:none;
  6291. border-radius:63px;
  6292. -moz-box-shadow:none;
  6293. -webkit-box-shadow:none;
  6294. box-shadow:none;
  6295. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6296. font-weight:400;
  6297. font-style:normal;
  6298. font-size:14px;
  6299. color:#FFFFFF;
  6300. }
  6301. #u174750 {
  6302. border-width:0px;
  6303. position:absolute;
  6304. left:275px;
  6305. top:902px;
  6306. width:106px;
  6307. height:40px;
  6308. display:flex;
  6309. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6310. font-weight:400;
  6311. font-style:normal;
  6312. font-size:14px;
  6313. color:#FFFFFF;
  6314. }
  6315. #u174750 .text {
  6316. position:absolute;
  6317. align-self:center;
  6318. padding:2px 2px 2px 2px;
  6319. box-sizing:border-box;
  6320. width:100%;
  6321. }
  6322. #u174750_text {
  6323. border-width:0px;
  6324. word-wrap:break-word;
  6325. text-transform:none;
  6326. }
  6327. #u174751_div {
  6328. border-width:0px;
  6329. position:absolute;
  6330. left:0px;
  6331. top:0px;
  6332. width:57px;
  6333. height:20px;
  6334. background:inherit;
  6335. background-color:rgba(255, 255, 255, 0);
  6336. border:none;
  6337. border-left:0px;
  6338. border-top:0px;
  6339. border-right:0px;
  6340. border-radius:0px;
  6341. border-bottom-right-radius:0px;
  6342. border-bottom-left-radius:0px;
  6343. -moz-box-shadow:none;
  6344. -webkit-box-shadow:none;
  6345. box-shadow:none;
  6346. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6347. font-weight:400;
  6348. font-style:normal;
  6349. font-size:14px;
  6350. }
  6351. #u174751 {
  6352. border-width:0px;
  6353. position:absolute;
  6354. left:47px;
  6355. top:912px;
  6356. width:57px;
  6357. height:20px;
  6358. display:flex;
  6359. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6360. font-weight:400;
  6361. font-style:normal;
  6362. font-size:14px;
  6363. }
  6364. #u174751 .text {
  6365. position:absolute;
  6366. align-self:center;
  6367. padding:0px 0px 0px 0px;
  6368. box-sizing:border-box;
  6369. width:100%;
  6370. }
  6371. #u174751_text {
  6372. border-width:0px;
  6373. white-space:nowrap;
  6374. text-transform:none;
  6375. }
  6376. #u174752_div {
  6377. border-width:0px;
  6378. position:absolute;
  6379. left:0px;
  6380. top:0px;
  6381. width:100px;
  6382. height:40px;
  6383. background:inherit;
  6384. background-color:rgba(24, 144, 255, 0);
  6385. box-sizing:border-box;
  6386. border-width:1px;
  6387. border-style:solid;
  6388. border-color:rgba(24, 144, 255, 1);
  6389. border-radius:81px;
  6390. -moz-box-shadow:none;
  6391. -webkit-box-shadow:none;
  6392. box-shadow:none;
  6393. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6394. font-weight:400;
  6395. font-style:normal;
  6396. font-size:14px;
  6397. color:#1890FF;
  6398. }
  6399. #u174752 {
  6400. border-width:0px;
  6401. position:absolute;
  6402. left:165px;
  6403. top:902px;
  6404. width:100px;
  6405. height:40px;
  6406. display:flex;
  6407. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6408. font-weight:400;
  6409. font-style:normal;
  6410. font-size:14px;
  6411. color:#1890FF;
  6412. }
  6413. #u174752 .text {
  6414. position:absolute;
  6415. align-self:center;
  6416. padding:2px 2px 2px 2px;
  6417. box-sizing:border-box;
  6418. width:100%;
  6419. }
  6420. #u174752_text {
  6421. border-width:0px;
  6422. word-wrap:break-word;
  6423. text-transform:none;
  6424. }
  6425. #u174753 {
  6426. border-width:0px;
  6427. position:absolute;
  6428. left:0px;
  6429. top:0px;
  6430. width:0px;
  6431. height:0px;
  6432. }
  6433. #u174754_div {
  6434. border-width:0px;
  6435. position:absolute;
  6436. left:0px;
  6437. top:0px;
  6438. width:349px;
  6439. height:260px;
  6440. background:inherit;
  6441. background-color:rgba(255, 255, 255, 1);
  6442. box-sizing:border-box;
  6443. border-width:1px;
  6444. border-style:solid;
  6445. border-color:rgba(242, 242, 242, 1);
  6446. border-radius:3px;
  6447. -moz-box-shadow:none;
  6448. -webkit-box-shadow:none;
  6449. box-shadow:none;
  6450. }
  6451. #u174754 {
  6452. border-width:0px;
  6453. position:absolute;
  6454. left:498px;
  6455. top:1429px;
  6456. width:349px;
  6457. height:260px;
  6458. display:flex;
  6459. }
  6460. #u174754 .text {
  6461. position:absolute;
  6462. align-self:center;
  6463. padding:2px 2px 2px 2px;
  6464. box-sizing:border-box;
  6465. width:100%;
  6466. }
  6467. #u174754_text {
  6468. border-width:0px;
  6469. word-wrap:break-word;
  6470. text-transform:none;
  6471. visibility:hidden;
  6472. }
  6473. #u174755 {
  6474. border-width:0px;
  6475. position:absolute;
  6476. left:0px;
  6477. top:0px;
  6478. width:0px;
  6479. height:0px;
  6480. }
  6481. #u174756_div {
  6482. border-width:0px;
  6483. position:absolute;
  6484. left:0px;
  6485. top:0px;
  6486. width:57px;
  6487. height:180px;
  6488. background:inherit;
  6489. background-color:rgba(255, 255, 255, 0);
  6490. border:none;
  6491. border-left:0px;
  6492. border-top:0px;
  6493. border-right:0px;
  6494. border-radius:0px;
  6495. border-bottom-right-radius:0px;
  6496. border-bottom-left-radius:0px;
  6497. -moz-box-shadow:none;
  6498. -webkit-box-shadow:none;
  6499. box-shadow:none;
  6500. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6501. font-weight:400;
  6502. font-style:normal;
  6503. font-size:14px;
  6504. color:#AAAAAA;
  6505. line-height:30px;
  6506. }
  6507. #u174756 {
  6508. border-width:0px;
  6509. position:absolute;
  6510. left:516px;
  6511. top:1467px;
  6512. width:57px;
  6513. height:180px;
  6514. display:flex;
  6515. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6516. font-weight:400;
  6517. font-style:normal;
  6518. font-size:14px;
  6519. color:#AAAAAA;
  6520. line-height:30px;
  6521. }
  6522. #u174756 .text {
  6523. position:absolute;
  6524. align-self:flex-start;
  6525. padding:0px 0px 0px 0px;
  6526. box-sizing:border-box;
  6527. width:100%;
  6528. }
  6529. #u174756_text {
  6530. border-width:0px;
  6531. white-space:nowrap;
  6532. text-transform:none;
  6533. }
  6534. #u174757_div {
  6535. border-width:0px;
  6536. position:absolute;
  6537. left:0px;
  6538. top:0px;
  6539. width:141px;
  6540. height:180px;
  6541. background:inherit;
  6542. background-color:rgba(255, 255, 255, 0);
  6543. border:none;
  6544. border-left:0px;
  6545. border-top:0px;
  6546. border-right:0px;
  6547. border-radius:0px;
  6548. border-bottom-right-radius:0px;
  6549. border-bottom-left-radius:0px;
  6550. -moz-box-shadow:none;
  6551. -webkit-box-shadow:none;
  6552. box-shadow:none;
  6553. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6554. font-weight:400;
  6555. font-style:normal;
  6556. font-size:14px;
  6557. line-height:30px;
  6558. }
  6559. #u174757 {
  6560. border-width:0px;
  6561. position:absolute;
  6562. left:593px;
  6563. top:1467px;
  6564. width:141px;
  6565. height:180px;
  6566. display:flex;
  6567. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6568. font-weight:400;
  6569. font-style:normal;
  6570. font-size:14px;
  6571. line-height:30px;
  6572. }
  6573. #u174757 .text {
  6574. position:absolute;
  6575. align-self:flex-start;
  6576. padding:0px 0px 0px 0px;
  6577. box-sizing:border-box;
  6578. width:100%;
  6579. }
  6580. #u174757_text {
  6581. border-width:0px;
  6582. white-space:nowrap;
  6583. text-transform:none;
  6584. }
  6585. #u174758_div {
  6586. border-width:0px;
  6587. position:absolute;
  6588. left:0px;
  6589. top:0px;
  6590. width:30px;
  6591. height:16px;
  6592. background:inherit;
  6593. background-color:rgba(170, 170, 170, 1);
  6594. border:none;
  6595. border-radius:2px;
  6596. -moz-box-shadow:none;
  6597. -webkit-box-shadow:none;
  6598. box-shadow:none;
  6599. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6600. font-weight:400;
  6601. font-style:normal;
  6602. font-size:10px;
  6603. color:#FFFFFF;
  6604. text-align:center;
  6605. }
  6606. #u174758 {
  6607. border-width:0px;
  6608. position:absolute;
  6609. left:516px;
  6610. top:1442px;
  6611. width:30px;
  6612. height:16px;
  6613. display:flex;
  6614. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6615. font-weight:400;
  6616. font-style:normal;
  6617. font-size:10px;
  6618. color:#FFFFFF;
  6619. text-align:center;
  6620. }
  6621. #u174758 .text {
  6622. position:absolute;
  6623. align-self:center;
  6624. padding:0px 0px 0px 0px;
  6625. box-sizing:border-box;
  6626. width:100%;
  6627. }
  6628. #u174758_text {
  6629. border-width:0px;
  6630. word-wrap:break-word;
  6631. text-transform:none;
  6632. }
  6633. #u174759_img {
  6634. border-width:0px;
  6635. position:absolute;
  6636. left:0px;
  6637. top:0px;
  6638. width:319px;
  6639. height:2px;
  6640. }
  6641. #u174759 {
  6642. border-width:0px;
  6643. position:absolute;
  6644. left:516px;
  6645. top:1652px;
  6646. width:318px;
  6647. height:1px;
  6648. display:flex;
  6649. }
  6650. #u174759 .text {
  6651. position:absolute;
  6652. align-self:center;
  6653. padding:2px 2px 2px 2px;
  6654. box-sizing:border-box;
  6655. width:100%;
  6656. }
  6657. #u174759_text {
  6658. border-width:0px;
  6659. word-wrap:break-word;
  6660. text-transform:none;
  6661. visibility:hidden;
  6662. }
  6663. #u174760_div {
  6664. border-width:0px;
  6665. position:absolute;
  6666. left:0px;
  6667. top:0px;
  6668. width:57px;
  6669. height:30px;
  6670. background:inherit;
  6671. background-color:rgba(255, 255, 255, 0);
  6672. border:none;
  6673. border-left:0px;
  6674. border-top:0px;
  6675. border-right:0px;
  6676. border-radius:0px;
  6677. border-bottom-right-radius:0px;
  6678. border-bottom-left-radius:0px;
  6679. -moz-box-shadow:none;
  6680. -webkit-box-shadow:none;
  6681. box-shadow:none;
  6682. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6683. font-weight:400;
  6684. font-style:normal;
  6685. font-size:14px;
  6686. color:#0089FE;
  6687. line-height:30px;
  6688. }
  6689. #u174760 {
  6690. border-width:0px;
  6691. position:absolute;
  6692. left:635px;
  6693. top:1656px;
  6694. width:57px;
  6695. height:30px;
  6696. display:flex;
  6697. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6698. font-weight:400;
  6699. font-style:normal;
  6700. font-size:14px;
  6701. color:#0089FE;
  6702. line-height:30px;
  6703. }
  6704. #u174760 .text {
  6705. position:absolute;
  6706. align-self:flex-start;
  6707. padding:0px 0px 0px 0px;
  6708. box-sizing:border-box;
  6709. width:100%;
  6710. }
  6711. #u174760_text {
  6712. border-width:0px;
  6713. white-space:nowrap;
  6714. text-transform:none;
  6715. }
  6716. #u174761_div {
  6717. border-width:0px;
  6718. position:absolute;
  6719. left:0px;
  6720. top:0px;
  6721. width:124px;
  6722. height:25px;
  6723. background:inherit;
  6724. background-color:rgba(255, 255, 255, 0);
  6725. border:none;
  6726. border-left:0px;
  6727. border-top:0px;
  6728. border-right:0px;
  6729. border-radius:0px;
  6730. border-bottom-right-radius:0px;
  6731. border-bottom-left-radius:0px;
  6732. -moz-box-shadow:none;
  6733. -webkit-box-shadow:none;
  6734. box-shadow:none;
  6735. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6736. font-weight:500;
  6737. font-style:normal;
  6738. font-size:14px;
  6739. line-height:25px;
  6740. }
  6741. #u174761 {
  6742. border-width:0px;
  6743. position:absolute;
  6744. left:556px;
  6745. top:1438px;
  6746. width:124px;
  6747. height:25px;
  6748. display:flex;
  6749. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6750. font-weight:500;
  6751. font-style:normal;
  6752. font-size:14px;
  6753. line-height:25px;
  6754. }
  6755. #u174761 .text {
  6756. position:absolute;
  6757. align-self:center;
  6758. padding:0px 0px 0px 0px;
  6759. box-sizing:border-box;
  6760. width:100%;
  6761. }
  6762. #u174761_text {
  6763. border-width:0px;
  6764. white-space:nowrap;
  6765. text-transform:none;
  6766. }
  6767. #u174762_div {
  6768. border-width:0px;
  6769. position:absolute;
  6770. left:0px;
  6771. top:0px;
  6772. width:41px;
  6773. height:14px;
  6774. background:inherit;
  6775. background-color:rgba(245, 154, 35, 0);
  6776. border:none;
  6777. border-radius:2px;
  6778. -moz-box-shadow:none;
  6779. -webkit-box-shadow:none;
  6780. box-shadow:none;
  6781. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6782. font-weight:400;
  6783. font-style:normal;
  6784. font-size:10px;
  6785. color:#00BFBF;
  6786. }
  6787. #u174762 {
  6788. border-width:0px;
  6789. position:absolute;
  6790. left:551px;
  6791. top:1664px;
  6792. width:41px;
  6793. height:14px;
  6794. display:flex;
  6795. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6796. font-weight:400;
  6797. font-style:normal;
  6798. font-size:10px;
  6799. color:#00BFBF;
  6800. }
  6801. #u174762 .text {
  6802. position:absolute;
  6803. align-self:center;
  6804. padding:0px 0px 0px 0px;
  6805. box-sizing:border-box;
  6806. width:100%;
  6807. }
  6808. #u174762_text {
  6809. border-width:0px;
  6810. white-space:nowrap;
  6811. text-transform:none;
  6812. }
  6813. #u174763_div {
  6814. border-width:0px;
  6815. position:absolute;
  6816. left:0px;
  6817. top:0px;
  6818. width:30px;
  6819. height:16px;
  6820. background:inherit;
  6821. background-color:rgba(0, 191, 191, 1);
  6822. border:none;
  6823. border-radius:2px;
  6824. -moz-box-shadow:none;
  6825. -webkit-box-shadow:none;
  6826. box-shadow:none;
  6827. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6828. font-weight:400;
  6829. font-style:normal;
  6830. font-size:10px;
  6831. color:#FFFFFF;
  6832. text-align:center;
  6833. }
  6834. #u174763 {
  6835. border-width:0px;
  6836. position:absolute;
  6837. left:516px;
  6838. top:1662px;
  6839. width:30px;
  6840. height:16px;
  6841. display:flex;
  6842. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6843. font-weight:400;
  6844. font-style:normal;
  6845. font-size:10px;
  6846. color:#FFFFFF;
  6847. text-align:center;
  6848. }
  6849. #u174763 .text {
  6850. position:absolute;
  6851. align-self:center;
  6852. padding:0px 0px 0px 0px;
  6853. box-sizing:border-box;
  6854. width:100%;
  6855. }
  6856. #u174763_text {
  6857. border-width:0px;
  6858. word-wrap:break-word;
  6859. text-transform:none;
  6860. }
  6861. #u174764 {
  6862. border-width:0px;
  6863. position:absolute;
  6864. left:0px;
  6865. top:0px;
  6866. width:0px;
  6867. height:0px;
  6868. }
  6869. #u174765_div {
  6870. border-width:0px;
  6871. position:absolute;
  6872. left:0px;
  6873. top:0px;
  6874. width:375px;
  6875. height:60px;
  6876. background:inherit;
  6877. background-color:rgba(255, 255, 255, 1);
  6878. border:none;
  6879. border-top:0px;
  6880. border-radius:28px;
  6881. border-top-left-radius:0px;
  6882. border-top-right-radius:0px;
  6883. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  6884. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  6885. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  6886. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6887. font-weight:400;
  6888. font-style:normal;
  6889. font-size:14px;
  6890. color:#FFFFFF;
  6891. }
  6892. #u174765 {
  6893. border-width:0px;
  6894. position:absolute;
  6895. left:482px;
  6896. top:1988px;
  6897. width:375px;
  6898. height:60px;
  6899. display:flex;
  6900. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6901. font-weight:400;
  6902. font-style:normal;
  6903. font-size:14px;
  6904. color:#FFFFFF;
  6905. }
  6906. #u174765 .text {
  6907. position:absolute;
  6908. align-self:center;
  6909. padding:2px 2px 2px 2px;
  6910. box-sizing:border-box;
  6911. width:100%;
  6912. }
  6913. #u174765_text {
  6914. border-width:0px;
  6915. word-wrap:break-word;
  6916. text-transform:none;
  6917. visibility:hidden;
  6918. }
  6919. #u174766_div {
  6920. border-width:0px;
  6921. position:absolute;
  6922. left:0px;
  6923. top:0px;
  6924. width:106px;
  6925. height:40px;
  6926. background:inherit;
  6927. background-color:rgba(0, 137, 254, 1);
  6928. border:none;
  6929. border-radius:63px;
  6930. -moz-box-shadow:none;
  6931. -webkit-box-shadow:none;
  6932. box-shadow:none;
  6933. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6934. font-weight:400;
  6935. font-style:normal;
  6936. font-size:14px;
  6937. color:#FFFFFF;
  6938. }
  6939. #u174766 {
  6940. border-width:0px;
  6941. position:absolute;
  6942. left:728px;
  6943. top:1997px;
  6944. width:106px;
  6945. height:40px;
  6946. display:flex;
  6947. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6948. font-weight:400;
  6949. font-style:normal;
  6950. font-size:14px;
  6951. color:#FFFFFF;
  6952. }
  6953. #u174766 .text {
  6954. position:absolute;
  6955. align-self:center;
  6956. padding:2px 2px 2px 2px;
  6957. box-sizing:border-box;
  6958. width:100%;
  6959. }
  6960. #u174766_text {
  6961. border-width:0px;
  6962. word-wrap:break-word;
  6963. text-transform:none;
  6964. }
  6965. #u174767_div {
  6966. border-width:0px;
  6967. position:absolute;
  6968. left:0px;
  6969. top:0px;
  6970. width:57px;
  6971. height:20px;
  6972. background:inherit;
  6973. background-color:rgba(255, 255, 255, 0);
  6974. border:none;
  6975. border-left:0px;
  6976. border-top:0px;
  6977. border-right:0px;
  6978. border-radius:0px;
  6979. border-bottom-right-radius:0px;
  6980. border-bottom-left-radius:0px;
  6981. -moz-box-shadow:none;
  6982. -webkit-box-shadow:none;
  6983. box-shadow:none;
  6984. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6985. font-weight:400;
  6986. font-style:normal;
  6987. font-size:14px;
  6988. }
  6989. #u174767 {
  6990. border-width:0px;
  6991. position:absolute;
  6992. left:500px;
  6993. top:2007px;
  6994. width:57px;
  6995. height:20px;
  6996. display:flex;
  6997. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6998. font-weight:400;
  6999. font-style:normal;
  7000. font-size:14px;
  7001. }
  7002. #u174767 .text {
  7003. position:absolute;
  7004. align-self:center;
  7005. padding:0px 0px 0px 0px;
  7006. box-sizing:border-box;
  7007. width:100%;
  7008. }
  7009. #u174767_text {
  7010. border-width:0px;
  7011. white-space:nowrap;
  7012. text-transform:none;
  7013. }
  7014. #u174768_div {
  7015. border-width:0px;
  7016. position:absolute;
  7017. left:0px;
  7018. top:0px;
  7019. width:100px;
  7020. height:40px;
  7021. background:inherit;
  7022. background-color:rgba(24, 144, 255, 0);
  7023. box-sizing:border-box;
  7024. border-width:1px;
  7025. border-style:solid;
  7026. border-color:rgba(24, 144, 255, 1);
  7027. border-radius:81px;
  7028. -moz-box-shadow:none;
  7029. -webkit-box-shadow:none;
  7030. box-shadow:none;
  7031. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7032. font-weight:400;
  7033. font-style:normal;
  7034. font-size:14px;
  7035. color:#1890FF;
  7036. }
  7037. #u174768 {
  7038. border-width:0px;
  7039. position:absolute;
  7040. left:618px;
  7041. top:1997px;
  7042. width:100px;
  7043. height:40px;
  7044. display:flex;
  7045. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7046. font-weight:400;
  7047. font-style:normal;
  7048. font-size:14px;
  7049. color:#1890FF;
  7050. }
  7051. #u174768 .text {
  7052. position:absolute;
  7053. align-self:center;
  7054. padding:2px 2px 2px 2px;
  7055. box-sizing:border-box;
  7056. width:100%;
  7057. }
  7058. #u174768_text {
  7059. border-width:0px;
  7060. word-wrap:break-word;
  7061. text-transform:none;
  7062. }
  7063. #u174769_div {
  7064. border-width:0px;
  7065. position:absolute;
  7066. left:0px;
  7067. top:0px;
  7068. width:281px;
  7069. height:90px;
  7070. background:inherit;
  7071. background-color:rgba(255, 255, 255, 0);
  7072. border:none;
  7073. border-left:0px;
  7074. border-top:0px;
  7075. border-right:0px;
  7076. border-radius:0px;
  7077. border-bottom-right-radius:0px;
  7078. border-bottom-left-radius:0px;
  7079. -moz-box-shadow:none;
  7080. -webkit-box-shadow:none;
  7081. box-shadow:none;
  7082. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7083. font-weight:400;
  7084. font-style:normal;
  7085. font-size:14px;
  7086. line-height:30px;
  7087. }
  7088. #u174769 {
  7089. border-width:0px;
  7090. position:absolute;
  7091. left:921px;
  7092. top:528px;
  7093. width:281px;
  7094. height:90px;
  7095. display:flex;
  7096. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7097. font-weight:400;
  7098. font-style:normal;
  7099. font-size:14px;
  7100. line-height:30px;
  7101. }
  7102. #u174769 .text {
  7103. position:absolute;
  7104. align-self:flex-start;
  7105. padding:0px 0px 0px 0px;
  7106. box-sizing:border-box;
  7107. width:100%;
  7108. }
  7109. #u174769_text {
  7110. border-width:0px;
  7111. white-space:nowrap;
  7112. text-transform:none;
  7113. }
  7114. #u174770 {
  7115. border-width:0px;
  7116. position:absolute;
  7117. left:0px;
  7118. top:0px;
  7119. width:0px;
  7120. height:0px;
  7121. }
  7122. #u174771_div {
  7123. border-width:0px;
  7124. position:absolute;
  7125. left:0px;
  7126. top:0px;
  7127. width:349px;
  7128. height:260px;
  7129. background:inherit;
  7130. background-color:rgba(255, 255, 255, 1);
  7131. box-sizing:border-box;
  7132. border-width:1px;
  7133. border-style:solid;
  7134. border-color:rgba(242, 242, 242, 1);
  7135. border-radius:3px;
  7136. -moz-box-shadow:none;
  7137. -webkit-box-shadow:none;
  7138. box-shadow:none;
  7139. }
  7140. #u174771 {
  7141. border-width:0px;
  7142. position:absolute;
  7143. left:498px;
  7144. top:1699px;
  7145. width:349px;
  7146. height:260px;
  7147. display:flex;
  7148. }
  7149. #u174771 .text {
  7150. position:absolute;
  7151. align-self:center;
  7152. padding:2px 2px 2px 2px;
  7153. box-sizing:border-box;
  7154. width:100%;
  7155. }
  7156. #u174771_text {
  7157. border-width:0px;
  7158. word-wrap:break-word;
  7159. text-transform:none;
  7160. visibility:hidden;
  7161. }
  7162. #u174772 {
  7163. border-width:0px;
  7164. position:absolute;
  7165. left:0px;
  7166. top:0px;
  7167. width:0px;
  7168. height:0px;
  7169. }
  7170. #u174773_div {
  7171. border-width:0px;
  7172. position:absolute;
  7173. left:0px;
  7174. top:0px;
  7175. width:57px;
  7176. height:180px;
  7177. background:inherit;
  7178. background-color:rgba(255, 255, 255, 0);
  7179. border:none;
  7180. border-left:0px;
  7181. border-top:0px;
  7182. border-right:0px;
  7183. border-radius:0px;
  7184. border-bottom-right-radius:0px;
  7185. border-bottom-left-radius:0px;
  7186. -moz-box-shadow:none;
  7187. -webkit-box-shadow:none;
  7188. box-shadow:none;
  7189. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7190. font-weight:400;
  7191. font-style:normal;
  7192. font-size:14px;
  7193. color:#AAAAAA;
  7194. line-height:30px;
  7195. }
  7196. #u174773 {
  7197. border-width:0px;
  7198. position:absolute;
  7199. left:516px;
  7200. top:1737px;
  7201. width:57px;
  7202. height:180px;
  7203. display:flex;
  7204. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7205. font-weight:400;
  7206. font-style:normal;
  7207. font-size:14px;
  7208. color:#AAAAAA;
  7209. line-height:30px;
  7210. }
  7211. #u174773 .text {
  7212. position:absolute;
  7213. align-self:flex-start;
  7214. padding:0px 0px 0px 0px;
  7215. box-sizing:border-box;
  7216. width:100%;
  7217. }
  7218. #u174773_text {
  7219. border-width:0px;
  7220. white-space:nowrap;
  7221. text-transform:none;
  7222. }
  7223. #u174774_div {
  7224. border-width:0px;
  7225. position:absolute;
  7226. left:0px;
  7227. top:0px;
  7228. width:141px;
  7229. height:180px;
  7230. background:inherit;
  7231. background-color:rgba(255, 255, 255, 0);
  7232. border:none;
  7233. border-left:0px;
  7234. border-top:0px;
  7235. border-right:0px;
  7236. border-radius:0px;
  7237. border-bottom-right-radius:0px;
  7238. border-bottom-left-radius:0px;
  7239. -moz-box-shadow:none;
  7240. -webkit-box-shadow:none;
  7241. box-shadow:none;
  7242. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7243. font-weight:400;
  7244. font-style:normal;
  7245. font-size:14px;
  7246. line-height:30px;
  7247. }
  7248. #u174774 {
  7249. border-width:0px;
  7250. position:absolute;
  7251. left:593px;
  7252. top:1737px;
  7253. width:141px;
  7254. height:180px;
  7255. display:flex;
  7256. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7257. font-weight:400;
  7258. font-style:normal;
  7259. font-size:14px;
  7260. line-height:30px;
  7261. }
  7262. #u174774 .text {
  7263. position:absolute;
  7264. align-self:flex-start;
  7265. padding:0px 0px 0px 0px;
  7266. box-sizing:border-box;
  7267. width:100%;
  7268. }
  7269. #u174774_text {
  7270. border-width:0px;
  7271. white-space:nowrap;
  7272. text-transform:none;
  7273. }
  7274. #u174775_div {
  7275. border-width:0px;
  7276. position:absolute;
  7277. left:0px;
  7278. top:0px;
  7279. width:30px;
  7280. height:16px;
  7281. background:inherit;
  7282. background-color:rgba(170, 170, 170, 1);
  7283. border:none;
  7284. border-radius:2px;
  7285. -moz-box-shadow:none;
  7286. -webkit-box-shadow:none;
  7287. box-shadow:none;
  7288. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7289. font-weight:400;
  7290. font-style:normal;
  7291. font-size:10px;
  7292. color:#FFFFFF;
  7293. text-align:center;
  7294. }
  7295. #u174775 {
  7296. border-width:0px;
  7297. position:absolute;
  7298. left:516px;
  7299. top:1712px;
  7300. width:30px;
  7301. height:16px;
  7302. display:flex;
  7303. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7304. font-weight:400;
  7305. font-style:normal;
  7306. font-size:10px;
  7307. color:#FFFFFF;
  7308. text-align:center;
  7309. }
  7310. #u174775 .text {
  7311. position:absolute;
  7312. align-self:center;
  7313. padding:0px 0px 0px 0px;
  7314. box-sizing:border-box;
  7315. width:100%;
  7316. }
  7317. #u174775_text {
  7318. border-width:0px;
  7319. word-wrap:break-word;
  7320. text-transform:none;
  7321. }
  7322. #u174776_img {
  7323. border-width:0px;
  7324. position:absolute;
  7325. left:0px;
  7326. top:0px;
  7327. width:319px;
  7328. height:2px;
  7329. }
  7330. #u174776 {
  7331. border-width:0px;
  7332. position:absolute;
  7333. left:516px;
  7334. top:1922px;
  7335. width:318px;
  7336. height:1px;
  7337. display:flex;
  7338. }
  7339. #u174776 .text {
  7340. position:absolute;
  7341. align-self:center;
  7342. padding:2px 2px 2px 2px;
  7343. box-sizing:border-box;
  7344. width:100%;
  7345. }
  7346. #u174776_text {
  7347. border-width:0px;
  7348. word-wrap:break-word;
  7349. text-transform:none;
  7350. visibility:hidden;
  7351. }
  7352. #u174777_div {
  7353. border-width:0px;
  7354. position:absolute;
  7355. left:0px;
  7356. top:0px;
  7357. width:57px;
  7358. height:30px;
  7359. background:inherit;
  7360. background-color:rgba(255, 255, 255, 0);
  7361. border:none;
  7362. border-left:0px;
  7363. border-top:0px;
  7364. border-right:0px;
  7365. border-radius:0px;
  7366. border-bottom-right-radius:0px;
  7367. border-bottom-left-radius:0px;
  7368. -moz-box-shadow:none;
  7369. -webkit-box-shadow:none;
  7370. box-shadow:none;
  7371. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7372. font-weight:400;
  7373. font-style:normal;
  7374. font-size:14px;
  7375. color:#0089FE;
  7376. line-height:30px;
  7377. }
  7378. #u174777 {
  7379. border-width:0px;
  7380. position:absolute;
  7381. left:635px;
  7382. top:1926px;
  7383. width:57px;
  7384. height:30px;
  7385. display:flex;
  7386. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7387. font-weight:400;
  7388. font-style:normal;
  7389. font-size:14px;
  7390. color:#0089FE;
  7391. line-height:30px;
  7392. }
  7393. #u174777 .text {
  7394. position:absolute;
  7395. align-self:flex-start;
  7396. padding:0px 0px 0px 0px;
  7397. box-sizing:border-box;
  7398. width:100%;
  7399. }
  7400. #u174777_text {
  7401. border-width:0px;
  7402. white-space:nowrap;
  7403. text-transform:none;
  7404. }
  7405. #u174778_div {
  7406. border-width:0px;
  7407. position:absolute;
  7408. left:0px;
  7409. top:0px;
  7410. width:124px;
  7411. height:25px;
  7412. background:inherit;
  7413. background-color:rgba(255, 255, 255, 0);
  7414. border:none;
  7415. border-left:0px;
  7416. border-top:0px;
  7417. border-right:0px;
  7418. border-radius:0px;
  7419. border-bottom-right-radius:0px;
  7420. border-bottom-left-radius:0px;
  7421. -moz-box-shadow:none;
  7422. -webkit-box-shadow:none;
  7423. box-shadow:none;
  7424. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7425. font-weight:500;
  7426. font-style:normal;
  7427. font-size:14px;
  7428. line-height:25px;
  7429. }
  7430. #u174778 {
  7431. border-width:0px;
  7432. position:absolute;
  7433. left:556px;
  7434. top:1708px;
  7435. width:124px;
  7436. height:25px;
  7437. display:flex;
  7438. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7439. font-weight:500;
  7440. font-style:normal;
  7441. font-size:14px;
  7442. line-height:25px;
  7443. }
  7444. #u174778 .text {
  7445. position:absolute;
  7446. align-self:center;
  7447. padding:0px 0px 0px 0px;
  7448. box-sizing:border-box;
  7449. width:100%;
  7450. }
  7451. #u174778_text {
  7452. border-width:0px;
  7453. white-space:nowrap;
  7454. text-transform:none;
  7455. }
  7456. #u174779_div {
  7457. border-width:0px;
  7458. position:absolute;
  7459. left:0px;
  7460. top:0px;
  7461. width:41px;
  7462. height:14px;
  7463. background:inherit;
  7464. background-color:rgba(245, 154, 35, 0);
  7465. border:none;
  7466. border-radius:2px;
  7467. -moz-box-shadow:none;
  7468. -webkit-box-shadow:none;
  7469. box-shadow:none;
  7470. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7471. font-weight:400;
  7472. font-style:normal;
  7473. font-size:10px;
  7474. color:#00BFBF;
  7475. }
  7476. #u174779 {
  7477. border-width:0px;
  7478. position:absolute;
  7479. left:551px;
  7480. top:1934px;
  7481. width:41px;
  7482. height:14px;
  7483. display:flex;
  7484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7485. font-weight:400;
  7486. font-style:normal;
  7487. font-size:10px;
  7488. color:#00BFBF;
  7489. }
  7490. #u174779 .text {
  7491. position:absolute;
  7492. align-self:center;
  7493. padding:0px 0px 0px 0px;
  7494. box-sizing:border-box;
  7495. width:100%;
  7496. }
  7497. #u174779_text {
  7498. border-width:0px;
  7499. white-space:nowrap;
  7500. text-transform:none;
  7501. }
  7502. #u174780_div {
  7503. border-width:0px;
  7504. position:absolute;
  7505. left:0px;
  7506. top:0px;
  7507. width:30px;
  7508. height:16px;
  7509. background:inherit;
  7510. background-color:rgba(217, 0, 27, 1);
  7511. border:none;
  7512. border-radius:2px;
  7513. -moz-box-shadow:none;
  7514. -webkit-box-shadow:none;
  7515. box-shadow:none;
  7516. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7517. font-weight:400;
  7518. font-style:normal;
  7519. font-size:10px;
  7520. color:#FFFFFF;
  7521. text-align:center;
  7522. }
  7523. #u174780 {
  7524. border-width:0px;
  7525. position:absolute;
  7526. left:516px;
  7527. top:1932px;
  7528. width:30px;
  7529. height:16px;
  7530. display:flex;
  7531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7532. font-weight:400;
  7533. font-style:normal;
  7534. font-size:10px;
  7535. color:#FFFFFF;
  7536. text-align:center;
  7537. }
  7538. #u174780 .text {
  7539. position:absolute;
  7540. align-self:center;
  7541. padding:0px 0px 0px 0px;
  7542. box-sizing:border-box;
  7543. width:100%;
  7544. }
  7545. #u174780_text {
  7546. border-width:0px;
  7547. word-wrap:break-word;
  7548. text-transform:none;
  7549. }