styles.css 165 KB

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