styles.css 138 KB

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