styles.css 131 KB

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