styles.css 133 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654
  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. #u160079_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u160079 {
  28. border-width:0px;
  29. position:absolute;
  30. left:927px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u160079 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u160079_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u160080_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. border:none;
  59. border-left:0px;
  60. border-top:0px;
  61. border-right:0px;
  62. border-radius:0px;
  63. border-bottom-right-radius:0px;
  64. border-bottom-left-radius:0px;
  65. -moz-box-shadow:none;
  66. -webkit-box-shadow:none;
  67. box-shadow:none;
  68. }
  69. #u160080 {
  70. border-width:0px;
  71. position:absolute;
  72. left:956px;
  73. top:67px;
  74. width:375px;
  75. height:40px;
  76. display:flex;
  77. }
  78. #u160080 .text {
  79. position:absolute;
  80. align-self:center;
  81. padding:2px 2px 2px 2px;
  82. box-sizing:border-box;
  83. width:100%;
  84. }
  85. #u160080_text {
  86. border-width:0px;
  87. word-wrap:break-word;
  88. text-transform:none;
  89. visibility:hidden;
  90. }
  91. #u160081 {
  92. border-width:0px;
  93. position:absolute;
  94. left:0px;
  95. top:0px;
  96. width:0px;
  97. height:0px;
  98. }
  99. #u160082_div {
  100. border-width:0px;
  101. position:absolute;
  102. left:0px;
  103. top:0px;
  104. width:88px;
  105. height:32px;
  106. background:inherit;
  107. background-color:rgba(255, 255, 255, 1);
  108. box-sizing:border-box;
  109. border-width:1px;
  110. border-style:solid;
  111. border-color:rgba(242, 242, 242, 1);
  112. border-radius:33px;
  113. -moz-box-shadow:none;
  114. -webkit-box-shadow:none;
  115. box-shadow:none;
  116. }
  117. #u160082 {
  118. border-width:0px;
  119. position:absolute;
  120. left:1236px;
  121. top:71px;
  122. width:88px;
  123. height:32px;
  124. display:flex;
  125. }
  126. #u160082 .text {
  127. position:absolute;
  128. align-self:center;
  129. padding:2px 2px 2px 2px;
  130. box-sizing:border-box;
  131. width:100%;
  132. }
  133. #u160082_text {
  134. border-width:0px;
  135. word-wrap:break-word;
  136. text-transform:none;
  137. visibility:hidden;
  138. }
  139. #u160083 {
  140. border-width:0px;
  141. position:absolute;
  142. left:0px;
  143. top:0px;
  144. width:0px;
  145. height:0px;
  146. }
  147. #u160084_img {
  148. border-width:0px;
  149. position:absolute;
  150. left:0px;
  151. top:0px;
  152. width:18px;
  153. height:18px;
  154. }
  155. #u160084 {
  156. border-width:0px;
  157. position:absolute;
  158. left:1299px;
  159. top:78px;
  160. width:18px;
  161. height:18px;
  162. display:flex;
  163. }
  164. #u160084 .text {
  165. position:absolute;
  166. align-self:center;
  167. padding:2px 2px 2px 2px;
  168. box-sizing:border-box;
  169. width:100%;
  170. }
  171. #u160084_text {
  172. border-width:0px;
  173. word-wrap:break-word;
  174. text-transform:none;
  175. visibility:hidden;
  176. }
  177. #u160085_img {
  178. border-width:0px;
  179. position:absolute;
  180. left:0px;
  181. top:0px;
  182. width:6px;
  183. height:6px;
  184. }
  185. #u160085 {
  186. border-width:0px;
  187. position:absolute;
  188. left:1305px;
  189. top:84px;
  190. width:6px;
  191. height:6px;
  192. display:flex;
  193. }
  194. #u160085 .text {
  195. position:absolute;
  196. align-self:center;
  197. padding:2px 2px 2px 2px;
  198. box-sizing:border-box;
  199. width:100%;
  200. }
  201. #u160085_text {
  202. border-width:0px;
  203. word-wrap:break-word;
  204. text-transform:none;
  205. visibility:hidden;
  206. }
  207. #u160086 {
  208. border-width:0px;
  209. position:absolute;
  210. left:0px;
  211. top:0px;
  212. width:0px;
  213. height:0px;
  214. }
  215. #u160087_img {
  216. border-width:0px;
  217. position:absolute;
  218. left:0px;
  219. top:0px;
  220. width:5px;
  221. height:5px;
  222. }
  223. #u160087 {
  224. border-width:0px;
  225. position:absolute;
  226. left:1250px;
  227. top:85px;
  228. width:5px;
  229. height:5px;
  230. display:flex;
  231. }
  232. #u160087 .text {
  233. position:absolute;
  234. align-self:center;
  235. padding:2px 2px 2px 2px;
  236. box-sizing:border-box;
  237. width:100%;
  238. }
  239. #u160087_text {
  240. border-width:0px;
  241. word-wrap:break-word;
  242. text-transform:none;
  243. visibility:hidden;
  244. }
  245. #u160088_img {
  246. border-width:0px;
  247. position:absolute;
  248. left:0px;
  249. top:0px;
  250. width:5px;
  251. height:5px;
  252. }
  253. #u160088 {
  254. border-width:0px;
  255. position:absolute;
  256. left:1266px;
  257. top:85px;
  258. width:5px;
  259. height:5px;
  260. display:flex;
  261. }
  262. #u160088 .text {
  263. position:absolute;
  264. align-self:center;
  265. padding:2px 2px 2px 2px;
  266. box-sizing:border-box;
  267. width:100%;
  268. }
  269. #u160088_text {
  270. border-width:0px;
  271. word-wrap:break-word;
  272. text-transform:none;
  273. visibility:hidden;
  274. }
  275. #u160089_img {
  276. border-width:0px;
  277. position:absolute;
  278. left:0px;
  279. top:0px;
  280. width:7px;
  281. height:7px;
  282. }
  283. #u160089 {
  284. border-width:0px;
  285. position:absolute;
  286. left:1257px;
  287. top:84px;
  288. width:7px;
  289. height:7px;
  290. display:flex;
  291. }
  292. #u160089 .text {
  293. position:absolute;
  294. align-self:center;
  295. padding:2px 2px 2px 2px;
  296. box-sizing:border-box;
  297. width:100%;
  298. }
  299. #u160089_text {
  300. border-width:0px;
  301. word-wrap:break-word;
  302. text-transform:none;
  303. visibility:hidden;
  304. }
  305. #u160090_img {
  306. border-width:0px;
  307. position:absolute;
  308. left:0px;
  309. top:0px;
  310. width:19px;
  311. height:2px;
  312. }
  313. #u160090 {
  314. border-width:0px;
  315. position:absolute;
  316. left:1274px;
  317. top:87px;
  318. width:18px;
  319. height:1px;
  320. display:flex;
  321. -webkit-transform:rotate(90deg);
  322. -moz-transform:rotate(90deg);
  323. -ms-transform:rotate(90deg);
  324. transform:rotate(90deg);
  325. }
  326. #u160090 .text {
  327. position:absolute;
  328. align-self:center;
  329. padding:2px 2px 2px 2px;
  330. box-sizing:border-box;
  331. width:100%;
  332. }
  333. #u160090_text {
  334. border-width:0px;
  335. word-wrap:break-word;
  336. text-transform:none;
  337. visibility:hidden;
  338. }
  339. #u160091_div {
  340. border-width:0px;
  341. position:absolute;
  342. left:0px;
  343. top:0px;
  344. width:375px;
  345. height:50px;
  346. background:inherit;
  347. background-color:rgba(255, 255, 255, 1);
  348. box-sizing:border-box;
  349. border-width:1px;
  350. border-style:solid;
  351. border-color:rgba(242, 242, 242, 1);
  352. border-radius:26px;
  353. border-top-left-radius:0px;
  354. border-top-right-radius:0px;
  355. -moz-box-shadow:none;
  356. -webkit-box-shadow:none;
  357. box-shadow:none;
  358. }
  359. #u160091 {
  360. border-width:0px;
  361. position:absolute;
  362. left:956px;
  363. top:788px;
  364. width:375px;
  365. height:50px;
  366. display:flex;
  367. }
  368. #u160091 .text {
  369. position:absolute;
  370. align-self:center;
  371. padding:2px 2px 2px 2px;
  372. box-sizing:border-box;
  373. width:100%;
  374. }
  375. #u160091_text {
  376. border-width:0px;
  377. word-wrap:break-word;
  378. text-transform:none;
  379. visibility:hidden;
  380. }
  381. #u160092 {
  382. border-width:0px;
  383. position:absolute;
  384. left:0px;
  385. top:0px;
  386. width:0px;
  387. height:0px;
  388. }
  389. #u160093_img {
  390. border-width:0px;
  391. position:absolute;
  392. left:0px;
  393. top:0px;
  394. width:24px;
  395. height:24px;
  396. }
  397. #u160093 {
  398. border-width:0px;
  399. position:absolute;
  400. left:996px;
  401. top:792px;
  402. width:24px;
  403. height:24px;
  404. display:flex;
  405. font-size:8px;
  406. }
  407. #u160093 .text {
  408. position:absolute;
  409. align-self:center;
  410. padding:2px 2px 2px 2px;
  411. box-sizing:border-box;
  412. width:100%;
  413. }
  414. #u160093_text {
  415. border-width:0px;
  416. word-wrap:break-word;
  417. text-transform:none;
  418. }
  419. #u160094_div {
  420. border-width:0px;
  421. position:absolute;
  422. left:0px;
  423. top:0px;
  424. width:25px;
  425. height:17px;
  426. background:inherit;
  427. background-color:rgba(255, 255, 255, 0);
  428. border:none;
  429. border-radius:0px;
  430. -moz-box-shadow:none;
  431. -webkit-box-shadow:none;
  432. box-shadow:none;
  433. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  434. font-weight:400;
  435. font-style:normal;
  436. font-size:12px;
  437. }
  438. #u160094 {
  439. border-width:0px;
  440. position:absolute;
  441. left:996px;
  442. top:817px;
  443. width:25px;
  444. height:17px;
  445. display:flex;
  446. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  447. font-weight:400;
  448. font-style:normal;
  449. font-size:12px;
  450. }
  451. #u160094 .text {
  452. position:absolute;
  453. align-self:flex-start;
  454. padding:0px 0px 0px 0px;
  455. box-sizing:border-box;
  456. width:100%;
  457. }
  458. #u160094_text {
  459. border-width:0px;
  460. white-space:nowrap;
  461. text-transform:none;
  462. }
  463. #u160095 {
  464. border-width:0px;
  465. position:absolute;
  466. left:0px;
  467. top:0px;
  468. width:0px;
  469. height:0px;
  470. }
  471. #u160096_img {
  472. border-width:0px;
  473. position:absolute;
  474. left:0px;
  475. top:0px;
  476. width:24px;
  477. height:24px;
  478. }
  479. #u160096 {
  480. border-width:0px;
  481. position:absolute;
  482. left:1266px;
  483. top:794px;
  484. width:24px;
  485. height:24px;
  486. display:flex;
  487. font-size:8px;
  488. }
  489. #u160096 .text {
  490. position:absolute;
  491. align-self:center;
  492. padding:2px 2px 2px 2px;
  493. box-sizing:border-box;
  494. width:100%;
  495. }
  496. #u160096_text {
  497. border-width:0px;
  498. word-wrap:break-word;
  499. text-transform:none;
  500. }
  501. #u160097_div {
  502. border-width:0px;
  503. position:absolute;
  504. left:0px;
  505. top:0px;
  506. width:25px;
  507. height:17px;
  508. background:inherit;
  509. background-color:rgba(255, 255, 255, 0);
  510. border:none;
  511. border-radius:0px;
  512. -moz-box-shadow:none;
  513. -webkit-box-shadow:none;
  514. box-shadow:none;
  515. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  516. font-weight:400;
  517. font-style:normal;
  518. font-size:12px;
  519. }
  520. #u160097 {
  521. border-width:0px;
  522. position:absolute;
  523. left:1266px;
  524. top:819px;
  525. width:25px;
  526. height:17px;
  527. display:flex;
  528. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  529. font-weight:400;
  530. font-style:normal;
  531. font-size:12px;
  532. }
  533. #u160097 .text {
  534. position:absolute;
  535. align-self:flex-start;
  536. padding:0px 0px 0px 0px;
  537. box-sizing:border-box;
  538. width:100%;
  539. }
  540. #u160097_text {
  541. border-width:0px;
  542. white-space:nowrap;
  543. text-transform:none;
  544. }
  545. #u160098_div {
  546. border-width:0px;
  547. position:absolute;
  548. left:0px;
  549. top:0px;
  550. width:375px;
  551. height:681px;
  552. background:inherit;
  553. background-color:rgba(242, 242, 242, 0.462745098039216);
  554. border:none;
  555. border-radius:0px;
  556. -moz-box-shadow:none;
  557. -webkit-box-shadow:none;
  558. box-shadow:none;
  559. }
  560. #u160098 {
  561. border-width:0px;
  562. position:absolute;
  563. left:956px;
  564. top:107px;
  565. width:375px;
  566. height:681px;
  567. display:flex;
  568. }
  569. #u160098 .text {
  570. position:absolute;
  571. align-self:center;
  572. padding:2px 2px 2px 2px;
  573. box-sizing:border-box;
  574. width:100%;
  575. }
  576. #u160098_text {
  577. border-width:0px;
  578. word-wrap:break-word;
  579. text-transform:none;
  580. visibility:hidden;
  581. }
  582. #u160099 {
  583. border-width:0px;
  584. position:absolute;
  585. left:0px;
  586. top:0px;
  587. width:0px;
  588. height:0px;
  589. }
  590. #u160100_img {
  591. border-width:0px;
  592. position:absolute;
  593. left:0px;
  594. top:0px;
  595. width:24px;
  596. height:24px;
  597. }
  598. #u160100 {
  599. border-width:0px;
  600. position:absolute;
  601. left:1178px;
  602. top:792px;
  603. width:24px;
  604. height:24px;
  605. display:flex;
  606. font-size:8px;
  607. }
  608. #u160100 .text {
  609. position:absolute;
  610. align-self:center;
  611. padding:2px 2px 2px 2px;
  612. box-sizing:border-box;
  613. width:100%;
  614. }
  615. #u160100_text {
  616. border-width:0px;
  617. word-wrap:break-word;
  618. text-transform:none;
  619. }
  620. #u160101_div {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:37px;
  626. height:17px;
  627. background:inherit;
  628. background-color:rgba(255, 255, 255, 0);
  629. border:none;
  630. border-radius:0px;
  631. -moz-box-shadow:none;
  632. -webkit-box-shadow:none;
  633. box-shadow:none;
  634. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  635. font-weight:400;
  636. font-style:normal;
  637. font-size:12px;
  638. }
  639. #u160101 {
  640. border-width:0px;
  641. position:absolute;
  642. left:1172px;
  643. top:817px;
  644. width:37px;
  645. height:17px;
  646. display:flex;
  647. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  648. font-weight:400;
  649. font-style:normal;
  650. font-size:12px;
  651. }
  652. #u160101 .text {
  653. position:absolute;
  654. align-self:flex-start;
  655. padding:0px 0px 0px 0px;
  656. box-sizing:border-box;
  657. width:100%;
  658. }
  659. #u160101_text {
  660. border-width:0px;
  661. white-space:nowrap;
  662. text-transform:none;
  663. }
  664. #u160102 {
  665. border-width:0px;
  666. position:absolute;
  667. left:0px;
  668. top:0px;
  669. width:0px;
  670. height:0px;
  671. }
  672. #u160103_img {
  673. border-width:0px;
  674. position:absolute;
  675. left:0px;
  676. top:0px;
  677. width:24px;
  678. height:24px;
  679. }
  680. #u160103 {
  681. border-width:0px;
  682. position:absolute;
  683. left:1084px;
  684. top:792px;
  685. width:24px;
  686. height:24px;
  687. display:flex;
  688. font-size:8px;
  689. }
  690. #u160103 .text {
  691. position:absolute;
  692. align-self:center;
  693. padding:2px 2px 2px 2px;
  694. box-sizing:border-box;
  695. width:100%;
  696. }
  697. #u160103_text {
  698. border-width:0px;
  699. word-wrap:break-word;
  700. text-transform:none;
  701. }
  702. #u160104_div {
  703. border-width:0px;
  704. position:absolute;
  705. left:0px;
  706. top:0px;
  707. width:37px;
  708. height:17px;
  709. background:inherit;
  710. background-color:rgba(255, 255, 255, 0);
  711. border:none;
  712. border-radius:0px;
  713. -moz-box-shadow:none;
  714. -webkit-box-shadow:none;
  715. box-shadow:none;
  716. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  717. font-weight:400;
  718. font-style:normal;
  719. font-size:12px;
  720. }
  721. #u160104 {
  722. border-width:0px;
  723. position:absolute;
  724. left:1078px;
  725. top:817px;
  726. width:37px;
  727. height:17px;
  728. display:flex;
  729. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  730. font-weight:400;
  731. font-style:normal;
  732. font-size:12px;
  733. }
  734. #u160104 .text {
  735. position:absolute;
  736. align-self:flex-start;
  737. padding:0px 0px 0px 0px;
  738. box-sizing:border-box;
  739. width:100%;
  740. }
  741. #u160104_text {
  742. border-width:0px;
  743. white-space:nowrap;
  744. text-transform:none;
  745. }
  746. #u160105_div {
  747. border-width:0px;
  748. position:absolute;
  749. left:0px;
  750. top:0px;
  751. width:375px;
  752. height:732px;
  753. background:inherit;
  754. background-color:rgba(244, 244, 244, 1);
  755. box-sizing:border-box;
  756. border-width:1px;
  757. border-style:solid;
  758. border-color:rgba(242, 242, 242, 1);
  759. border-radius:26px;
  760. border-top-left-radius:0px;
  761. border-top-right-radius:0px;
  762. -moz-box-shadow:none;
  763. -webkit-box-shadow:none;
  764. box-shadow:none;
  765. }
  766. #u160105 {
  767. border-width:0px;
  768. position:absolute;
  769. left:956px;
  770. top:107px;
  771. width:375px;
  772. height:732px;
  773. display:flex;
  774. }
  775. #u160105 .text {
  776. position:absolute;
  777. align-self:center;
  778. padding:2px 2px 2px 2px;
  779. box-sizing:border-box;
  780. width:100%;
  781. }
  782. #u160105_text {
  783. border-width:0px;
  784. word-wrap:break-word;
  785. text-transform:none;
  786. visibility:hidden;
  787. }
  788. #u160106_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:376px;
  794. height:818px;
  795. }
  796. #u160106 {
  797. border-width:0px;
  798. position:absolute;
  799. left:955px;
  800. top:24px;
  801. width:376px;
  802. height:818px;
  803. display:flex;
  804. }
  805. #u160106 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u160106_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u160108_img {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:433px;
  824. height:865px;
  825. }
  826. #u160108 {
  827. border-width:0px;
  828. position:absolute;
  829. left:0px;
  830. top:0px;
  831. width:433px;
  832. height:865px;
  833. display:flex;
  834. }
  835. #u160108 .text {
  836. position:absolute;
  837. align-self:center;
  838. padding:2px 2px 2px 2px;
  839. box-sizing:border-box;
  840. width:100%;
  841. }
  842. #u160108_text {
  843. border-width:0px;
  844. word-wrap:break-word;
  845. text-transform:none;
  846. visibility:hidden;
  847. }
  848. #u160109_div {
  849. border-width:0px;
  850. position:absolute;
  851. left:0px;
  852. top:0px;
  853. width:375px;
  854. height:40px;
  855. background:inherit;
  856. background-color:rgba(255, 255, 255, 1);
  857. box-sizing:border-box;
  858. border-width:1px;
  859. border-style:solid;
  860. border-color:rgba(215, 215, 215, 1);
  861. border-left:0px;
  862. border-top:0px;
  863. border-right:0px;
  864. border-radius:0px;
  865. border-bottom-right-radius:0px;
  866. border-bottom-left-radius:0px;
  867. -moz-box-shadow:none;
  868. -webkit-box-shadow:none;
  869. box-shadow:none;
  870. }
  871. #u160109 {
  872. border-width:0px;
  873. position:absolute;
  874. left:29px;
  875. top:67px;
  876. width:375px;
  877. height:40px;
  878. display:flex;
  879. }
  880. #u160109 .text {
  881. position:absolute;
  882. align-self:center;
  883. padding:2px 2px 2px 2px;
  884. box-sizing:border-box;
  885. width:100%;
  886. }
  887. #u160109_text {
  888. border-width:0px;
  889. word-wrap:break-word;
  890. text-transform:none;
  891. visibility:hidden;
  892. }
  893. #u160110 {
  894. border-width:0px;
  895. position:absolute;
  896. left:0px;
  897. top:0px;
  898. width:0px;
  899. height:0px;
  900. }
  901. #u160111_div {
  902. border-width:0px;
  903. position:absolute;
  904. left:0px;
  905. top:0px;
  906. width:88px;
  907. height:32px;
  908. background:inherit;
  909. background-color:rgba(255, 255, 255, 1);
  910. box-sizing:border-box;
  911. border-width:1px;
  912. border-style:solid;
  913. border-color:rgba(242, 242, 242, 1);
  914. border-radius:33px;
  915. -moz-box-shadow:none;
  916. -webkit-box-shadow:none;
  917. box-shadow:none;
  918. }
  919. #u160111 {
  920. border-width:0px;
  921. position:absolute;
  922. left:309px;
  923. top:71px;
  924. width:88px;
  925. height:32px;
  926. display:flex;
  927. }
  928. #u160111 .text {
  929. position:absolute;
  930. align-self:center;
  931. padding:2px 2px 2px 2px;
  932. box-sizing:border-box;
  933. width:100%;
  934. }
  935. #u160111_text {
  936. border-width:0px;
  937. word-wrap:break-word;
  938. text-transform:none;
  939. visibility:hidden;
  940. }
  941. #u160112 {
  942. border-width:0px;
  943. position:absolute;
  944. left:0px;
  945. top:0px;
  946. width:0px;
  947. height:0px;
  948. }
  949. #u160113_img {
  950. border-width:0px;
  951. position:absolute;
  952. left:0px;
  953. top:0px;
  954. width:18px;
  955. height:18px;
  956. }
  957. #u160113 {
  958. border-width:0px;
  959. position:absolute;
  960. left:372px;
  961. top:78px;
  962. width:18px;
  963. height:18px;
  964. display:flex;
  965. }
  966. #u160113 .text {
  967. position:absolute;
  968. align-self:center;
  969. padding:2px 2px 2px 2px;
  970. box-sizing:border-box;
  971. width:100%;
  972. }
  973. #u160113_text {
  974. border-width:0px;
  975. word-wrap:break-word;
  976. text-transform:none;
  977. visibility:hidden;
  978. }
  979. #u160114_img {
  980. border-width:0px;
  981. position:absolute;
  982. left:0px;
  983. top:0px;
  984. width:6px;
  985. height:6px;
  986. }
  987. #u160114 {
  988. border-width:0px;
  989. position:absolute;
  990. left:378px;
  991. top:84px;
  992. width:6px;
  993. height:6px;
  994. display:flex;
  995. }
  996. #u160114 .text {
  997. position:absolute;
  998. align-self:center;
  999. padding:2px 2px 2px 2px;
  1000. box-sizing:border-box;
  1001. width:100%;
  1002. }
  1003. #u160114_text {
  1004. border-width:0px;
  1005. word-wrap:break-word;
  1006. text-transform:none;
  1007. visibility:hidden;
  1008. }
  1009. #u160115 {
  1010. border-width:0px;
  1011. position:absolute;
  1012. left:0px;
  1013. top:0px;
  1014. width:0px;
  1015. height:0px;
  1016. }
  1017. #u160116_img {
  1018. border-width:0px;
  1019. position:absolute;
  1020. left:0px;
  1021. top:0px;
  1022. width:5px;
  1023. height:5px;
  1024. }
  1025. #u160116 {
  1026. border-width:0px;
  1027. position:absolute;
  1028. left:323px;
  1029. top:85px;
  1030. width:5px;
  1031. height:5px;
  1032. display:flex;
  1033. }
  1034. #u160116 .text {
  1035. position:absolute;
  1036. align-self:center;
  1037. padding:2px 2px 2px 2px;
  1038. box-sizing:border-box;
  1039. width:100%;
  1040. }
  1041. #u160116_text {
  1042. border-width:0px;
  1043. word-wrap:break-word;
  1044. text-transform:none;
  1045. visibility:hidden;
  1046. }
  1047. #u160117_img {
  1048. border-width:0px;
  1049. position:absolute;
  1050. left:0px;
  1051. top:0px;
  1052. width:5px;
  1053. height:5px;
  1054. }
  1055. #u160117 {
  1056. border-width:0px;
  1057. position:absolute;
  1058. left:339px;
  1059. top:85px;
  1060. width:5px;
  1061. height:5px;
  1062. display:flex;
  1063. }
  1064. #u160117 .text {
  1065. position:absolute;
  1066. align-self:center;
  1067. padding:2px 2px 2px 2px;
  1068. box-sizing:border-box;
  1069. width:100%;
  1070. }
  1071. #u160117_text {
  1072. border-width:0px;
  1073. word-wrap:break-word;
  1074. text-transform:none;
  1075. visibility:hidden;
  1076. }
  1077. #u160118_img {
  1078. border-width:0px;
  1079. position:absolute;
  1080. left:0px;
  1081. top:0px;
  1082. width:7px;
  1083. height:7px;
  1084. }
  1085. #u160118 {
  1086. border-width:0px;
  1087. position:absolute;
  1088. left:330px;
  1089. top:84px;
  1090. width:7px;
  1091. height:7px;
  1092. display:flex;
  1093. }
  1094. #u160118 .text {
  1095. position:absolute;
  1096. align-self:center;
  1097. padding:2px 2px 2px 2px;
  1098. box-sizing:border-box;
  1099. width:100%;
  1100. }
  1101. #u160118_text {
  1102. border-width:0px;
  1103. word-wrap:break-word;
  1104. text-transform:none;
  1105. visibility:hidden;
  1106. }
  1107. #u160119_img {
  1108. border-width:0px;
  1109. position:absolute;
  1110. left:0px;
  1111. top:0px;
  1112. width:19px;
  1113. height:2px;
  1114. }
  1115. #u160119 {
  1116. border-width:0px;
  1117. position:absolute;
  1118. left:347px;
  1119. top:87px;
  1120. width:18px;
  1121. height:1px;
  1122. display:flex;
  1123. -webkit-transform:rotate(90deg);
  1124. -moz-transform:rotate(90deg);
  1125. -ms-transform:rotate(90deg);
  1126. transform:rotate(90deg);
  1127. }
  1128. #u160119 .text {
  1129. position:absolute;
  1130. align-self:center;
  1131. padding:2px 2px 2px 2px;
  1132. box-sizing:border-box;
  1133. width:100%;
  1134. }
  1135. #u160119_text {
  1136. border-width:0px;
  1137. word-wrap:break-word;
  1138. text-transform:none;
  1139. visibility:hidden;
  1140. }
  1141. #u160120_img {
  1142. border-width:0px;
  1143. position:absolute;
  1144. left:0px;
  1145. top:0px;
  1146. width:375px;
  1147. height:44px;
  1148. }
  1149. #u160120 {
  1150. border-width:0px;
  1151. position:absolute;
  1152. left:29px;
  1153. top:24px;
  1154. width:375px;
  1155. height:44px;
  1156. display:flex;
  1157. }
  1158. #u160120 .text {
  1159. position:absolute;
  1160. align-self:center;
  1161. padding:2px 2px 2px 2px;
  1162. box-sizing:border-box;
  1163. width:100%;
  1164. }
  1165. #u160120_text {
  1166. border-width:0px;
  1167. word-wrap:break-word;
  1168. text-transform:none;
  1169. visibility:hidden;
  1170. }
  1171. #u160121_div {
  1172. border-width:0px;
  1173. position:absolute;
  1174. left:0px;
  1175. top:0px;
  1176. width:375px;
  1177. height:50px;
  1178. background:inherit;
  1179. background-color:rgba(255, 255, 255, 1);
  1180. box-sizing:border-box;
  1181. border-width:1px;
  1182. border-style:solid;
  1183. border-color:rgba(242, 242, 242, 1);
  1184. border-radius:26px;
  1185. border-top-left-radius:0px;
  1186. border-top-right-radius:0px;
  1187. -moz-box-shadow:none;
  1188. -webkit-box-shadow:none;
  1189. box-shadow:none;
  1190. }
  1191. #u160121 {
  1192. border-width:0px;
  1193. position:absolute;
  1194. left:29px;
  1195. top:788px;
  1196. width:375px;
  1197. height:50px;
  1198. display:flex;
  1199. }
  1200. #u160121 .text {
  1201. position:absolute;
  1202. align-self:center;
  1203. padding:2px 2px 2px 2px;
  1204. box-sizing:border-box;
  1205. width:100%;
  1206. }
  1207. #u160121_text {
  1208. border-width:0px;
  1209. word-wrap:break-word;
  1210. text-transform:none;
  1211. visibility:hidden;
  1212. }
  1213. #u160122 {
  1214. border-width:0px;
  1215. position:absolute;
  1216. left:0px;
  1217. top:0px;
  1218. width:0px;
  1219. height:0px;
  1220. }
  1221. #u160123_img {
  1222. border-width:0px;
  1223. position:absolute;
  1224. left:0px;
  1225. top:0px;
  1226. width:24px;
  1227. height:24px;
  1228. }
  1229. #u160123 {
  1230. border-width:0px;
  1231. position:absolute;
  1232. left:69px;
  1233. top:792px;
  1234. width:24px;
  1235. height:24px;
  1236. display:flex;
  1237. font-size:8px;
  1238. }
  1239. #u160123 .text {
  1240. position:absolute;
  1241. align-self:center;
  1242. padding:2px 2px 2px 2px;
  1243. box-sizing:border-box;
  1244. width:100%;
  1245. }
  1246. #u160123_text {
  1247. border-width:0px;
  1248. word-wrap:break-word;
  1249. text-transform:none;
  1250. }
  1251. #u160124_div {
  1252. border-width:0px;
  1253. position:absolute;
  1254. left:0px;
  1255. top:0px;
  1256. width:25px;
  1257. height:17px;
  1258. background:inherit;
  1259. background-color:rgba(255, 255, 255, 0);
  1260. border:none;
  1261. border-radius:0px;
  1262. -moz-box-shadow:none;
  1263. -webkit-box-shadow:none;
  1264. box-shadow:none;
  1265. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1266. font-weight:400;
  1267. font-style:normal;
  1268. font-size:12px;
  1269. }
  1270. #u160124 {
  1271. border-width:0px;
  1272. position:absolute;
  1273. left:69px;
  1274. top:817px;
  1275. width:25px;
  1276. height:17px;
  1277. display:flex;
  1278. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1279. font-weight:400;
  1280. font-style:normal;
  1281. font-size:12px;
  1282. }
  1283. #u160124 .text {
  1284. position:absolute;
  1285. align-self:flex-start;
  1286. padding:0px 0px 0px 0px;
  1287. box-sizing:border-box;
  1288. width:100%;
  1289. }
  1290. #u160124_text {
  1291. border-width:0px;
  1292. white-space:nowrap;
  1293. text-transform:none;
  1294. }
  1295. #u160125 {
  1296. border-width:0px;
  1297. position:absolute;
  1298. left:0px;
  1299. top:0px;
  1300. width:0px;
  1301. height:0px;
  1302. }
  1303. #u160126_img {
  1304. border-width:0px;
  1305. position:absolute;
  1306. left:0px;
  1307. top:0px;
  1308. width:24px;
  1309. height:24px;
  1310. }
  1311. #u160126 {
  1312. border-width:0px;
  1313. position:absolute;
  1314. left:339px;
  1315. top:794px;
  1316. width:24px;
  1317. height:24px;
  1318. display:flex;
  1319. font-size:8px;
  1320. }
  1321. #u160126 .text {
  1322. position:absolute;
  1323. align-self:center;
  1324. padding:2px 2px 2px 2px;
  1325. box-sizing:border-box;
  1326. width:100%;
  1327. }
  1328. #u160126_text {
  1329. border-width:0px;
  1330. word-wrap:break-word;
  1331. text-transform:none;
  1332. }
  1333. #u160127_div {
  1334. border-width:0px;
  1335. position:absolute;
  1336. left:0px;
  1337. top:0px;
  1338. width:25px;
  1339. height:17px;
  1340. background:inherit;
  1341. background-color:rgba(255, 255, 255, 0);
  1342. border:none;
  1343. border-radius:0px;
  1344. -moz-box-shadow:none;
  1345. -webkit-box-shadow:none;
  1346. box-shadow:none;
  1347. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1348. font-weight:400;
  1349. font-style:normal;
  1350. font-size:12px;
  1351. }
  1352. #u160127 {
  1353. border-width:0px;
  1354. position:absolute;
  1355. left:339px;
  1356. top:819px;
  1357. width:25px;
  1358. height:17px;
  1359. display:flex;
  1360. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1361. font-weight:400;
  1362. font-style:normal;
  1363. font-size:12px;
  1364. }
  1365. #u160127 .text {
  1366. position:absolute;
  1367. align-self:flex-start;
  1368. padding:0px 0px 0px 0px;
  1369. box-sizing:border-box;
  1370. width:100%;
  1371. }
  1372. #u160127_text {
  1373. border-width:0px;
  1374. white-space:nowrap;
  1375. text-transform:none;
  1376. }
  1377. #u160128_div {
  1378. border-width:0px;
  1379. position:absolute;
  1380. left:0px;
  1381. top:0px;
  1382. width:375px;
  1383. height:681px;
  1384. background:inherit;
  1385. background-color:rgba(242, 242, 242, 0.462745098039216);
  1386. border:none;
  1387. border-radius:0px;
  1388. -moz-box-shadow:none;
  1389. -webkit-box-shadow:none;
  1390. box-shadow:none;
  1391. }
  1392. #u160128 {
  1393. border-width:0px;
  1394. position:absolute;
  1395. left:29px;
  1396. top:107px;
  1397. width:375px;
  1398. height:681px;
  1399. display:flex;
  1400. }
  1401. #u160128 .text {
  1402. position:absolute;
  1403. align-self:center;
  1404. padding:2px 2px 2px 2px;
  1405. box-sizing:border-box;
  1406. width:100%;
  1407. }
  1408. #u160128_text {
  1409. border-width:0px;
  1410. word-wrap:break-word;
  1411. text-transform:none;
  1412. visibility:hidden;
  1413. }
  1414. #u160129 {
  1415. border-width:0px;
  1416. position:absolute;
  1417. left:0px;
  1418. top:0px;
  1419. width:0px;
  1420. height:0px;
  1421. }
  1422. #u160130_img {
  1423. border-width:0px;
  1424. position:absolute;
  1425. left:0px;
  1426. top:0px;
  1427. width:24px;
  1428. height:24px;
  1429. }
  1430. #u160130 {
  1431. border-width:0px;
  1432. position:absolute;
  1433. left:251px;
  1434. top:792px;
  1435. width:24px;
  1436. height:24px;
  1437. display:flex;
  1438. font-size:8px;
  1439. }
  1440. #u160130 .text {
  1441. position:absolute;
  1442. align-self:center;
  1443. padding:2px 2px 2px 2px;
  1444. box-sizing:border-box;
  1445. width:100%;
  1446. }
  1447. #u160130_text {
  1448. border-width:0px;
  1449. word-wrap:break-word;
  1450. text-transform:none;
  1451. }
  1452. #u160131_div {
  1453. border-width:0px;
  1454. position:absolute;
  1455. left:0px;
  1456. top:0px;
  1457. width:37px;
  1458. height:17px;
  1459. background:inherit;
  1460. background-color:rgba(255, 255, 255, 0);
  1461. border:none;
  1462. border-radius:0px;
  1463. -moz-box-shadow:none;
  1464. -webkit-box-shadow:none;
  1465. box-shadow:none;
  1466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1467. font-weight:400;
  1468. font-style:normal;
  1469. font-size:12px;
  1470. }
  1471. #u160131 {
  1472. border-width:0px;
  1473. position:absolute;
  1474. left:245px;
  1475. top:817px;
  1476. width:37px;
  1477. height:17px;
  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. }
  1484. #u160131 .text {
  1485. position:absolute;
  1486. align-self:flex-start;
  1487. padding:0px 0px 0px 0px;
  1488. box-sizing:border-box;
  1489. width:100%;
  1490. }
  1491. #u160131_text {
  1492. border-width:0px;
  1493. white-space:nowrap;
  1494. text-transform:none;
  1495. }
  1496. #u160132 {
  1497. border-width:0px;
  1498. position:absolute;
  1499. left:0px;
  1500. top:0px;
  1501. width:0px;
  1502. height:0px;
  1503. }
  1504. #u160133_img {
  1505. border-width:0px;
  1506. position:absolute;
  1507. left:0px;
  1508. top:0px;
  1509. width:24px;
  1510. height:24px;
  1511. }
  1512. #u160133 {
  1513. border-width:0px;
  1514. position:absolute;
  1515. left:157px;
  1516. top:792px;
  1517. width:24px;
  1518. height:24px;
  1519. display:flex;
  1520. font-size:8px;
  1521. }
  1522. #u160133 .text {
  1523. position:absolute;
  1524. align-self:center;
  1525. padding:2px 2px 2px 2px;
  1526. box-sizing:border-box;
  1527. width:100%;
  1528. }
  1529. #u160133_text {
  1530. border-width:0px;
  1531. word-wrap:break-word;
  1532. text-transform:none;
  1533. }
  1534. #u160134_div {
  1535. border-width:0px;
  1536. position:absolute;
  1537. left:0px;
  1538. top:0px;
  1539. width:37px;
  1540. height:17px;
  1541. background:inherit;
  1542. background-color:rgba(255, 255, 255, 0);
  1543. border:none;
  1544. border-radius:0px;
  1545. -moz-box-shadow:none;
  1546. -webkit-box-shadow:none;
  1547. box-shadow:none;
  1548. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1549. font-weight:400;
  1550. font-style:normal;
  1551. font-size:12px;
  1552. }
  1553. #u160134 {
  1554. border-width:0px;
  1555. position:absolute;
  1556. left:151px;
  1557. top:817px;
  1558. width:37px;
  1559. height:17px;
  1560. display:flex;
  1561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1562. font-weight:400;
  1563. font-style:normal;
  1564. font-size:12px;
  1565. }
  1566. #u160134 .text {
  1567. position:absolute;
  1568. align-self:flex-start;
  1569. padding:0px 0px 0px 0px;
  1570. box-sizing:border-box;
  1571. width:100%;
  1572. }
  1573. #u160134_text {
  1574. border-width:0px;
  1575. white-space:nowrap;
  1576. text-transform:none;
  1577. }
  1578. #u160135_div {
  1579. border-width:0px;
  1580. position:absolute;
  1581. left:0px;
  1582. top:0px;
  1583. width:375px;
  1584. height:772px;
  1585. background:inherit;
  1586. background-color:rgba(24, 144, 255, 1);
  1587. border:none;
  1588. border-top:0px;
  1589. border-radius:28px;
  1590. border-top-left-radius:0px;
  1591. border-top-right-radius:0px;
  1592. -moz-box-shadow:none;
  1593. -webkit-box-shadow:none;
  1594. box-shadow:none;
  1595. }
  1596. #u160135 {
  1597. border-width:0px;
  1598. position:absolute;
  1599. left:29px;
  1600. top:68px;
  1601. width:375px;
  1602. height:772px;
  1603. display:flex;
  1604. }
  1605. #u160135 .text {
  1606. position:absolute;
  1607. align-self:center;
  1608. padding:2px 2px 2px 2px;
  1609. box-sizing:border-box;
  1610. width:100%;
  1611. }
  1612. #u160135_text {
  1613. border-width:0px;
  1614. word-wrap:break-word;
  1615. text-transform:none;
  1616. visibility:hidden;
  1617. }
  1618. #u160136_div {
  1619. border-width:0px;
  1620. position:absolute;
  1621. left:0px;
  1622. top:0px;
  1623. width:12px;
  1624. height:12px;
  1625. background:inherit;
  1626. background-color:rgba(255, 255, 255, 0);
  1627. box-sizing:border-box;
  1628. border-width:2px;
  1629. border-style:solid;
  1630. border-color:rgba(255, 255, 255, 1);
  1631. border-right:0px;
  1632. border-bottom:0px;
  1633. border-radius:0px;
  1634. border-top-right-radius:0px;
  1635. border-bottom-left-radius:0px;
  1636. -moz-box-shadow:none;
  1637. -webkit-box-shadow:none;
  1638. box-shadow:none;
  1639. }
  1640. #u160136 {
  1641. border-width:0px;
  1642. position:absolute;
  1643. left:39px;
  1644. top:81px;
  1645. width:12px;
  1646. height:12px;
  1647. display:flex;
  1648. -webkit-transform:rotate(315deg);
  1649. -moz-transform:rotate(315deg);
  1650. -ms-transform:rotate(315deg);
  1651. transform:rotate(315deg);
  1652. }
  1653. #u160136 .text {
  1654. position:absolute;
  1655. align-self:center;
  1656. padding:2px 2px 2px 2px;
  1657. box-sizing:border-box;
  1658. width:100%;
  1659. }
  1660. #u160136_text {
  1661. border-width:0px;
  1662. word-wrap:break-word;
  1663. text-transform:none;
  1664. visibility:hidden;
  1665. }
  1666. #u160137 {
  1667. border-width:0px;
  1668. position:absolute;
  1669. left:0px;
  1670. top:0px;
  1671. width:0px;
  1672. height:0px;
  1673. }
  1674. #u160138_div {
  1675. border-width:0px;
  1676. position:absolute;
  1677. left:0px;
  1678. top:0px;
  1679. width:375px;
  1680. height:60px;
  1681. background:inherit;
  1682. background-color:rgba(255, 255, 255, 1);
  1683. border:none;
  1684. border-top:0px;
  1685. border-radius:28px;
  1686. border-top-left-radius:0px;
  1687. border-top-right-radius:0px;
  1688. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1689. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1690. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1691. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1692. font-weight:400;
  1693. font-style:normal;
  1694. font-size:14px;
  1695. color:#FFFFFF;
  1696. }
  1697. #u160138 {
  1698. border-width:0px;
  1699. position:absolute;
  1700. left:29px;
  1701. top:780px;
  1702. width:375px;
  1703. height:60px;
  1704. display:flex;
  1705. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1706. font-weight:400;
  1707. font-style:normal;
  1708. font-size:14px;
  1709. color:#FFFFFF;
  1710. }
  1711. #u160138 .text {
  1712. position:absolute;
  1713. align-self:center;
  1714. padding:2px 2px 2px 2px;
  1715. box-sizing:border-box;
  1716. width:100%;
  1717. }
  1718. #u160138_text {
  1719. border-width:0px;
  1720. word-wrap:break-word;
  1721. text-transform:none;
  1722. visibility:hidden;
  1723. }
  1724. #u160139_div {
  1725. border-width:0px;
  1726. position:absolute;
  1727. left:0px;
  1728. top:0px;
  1729. width:324px;
  1730. height:40px;
  1731. background:inherit;
  1732. background-color:rgba(0, 137, 254, 1);
  1733. border:none;
  1734. border-radius:63px;
  1735. -moz-box-shadow:none;
  1736. -webkit-box-shadow:none;
  1737. box-shadow:none;
  1738. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1739. font-weight:400;
  1740. font-style:normal;
  1741. font-size:14px;
  1742. color:#FFFFFF;
  1743. }
  1744. #u160139 {
  1745. border-width:0px;
  1746. position:absolute;
  1747. left:57px;
  1748. top:789px;
  1749. width:324px;
  1750. height:40px;
  1751. display:flex;
  1752. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1753. font-weight:400;
  1754. font-style:normal;
  1755. font-size:14px;
  1756. color:#FFFFFF;
  1757. }
  1758. #u160139 .text {
  1759. position:absolute;
  1760. align-self:center;
  1761. padding:2px 2px 2px 2px;
  1762. box-sizing:border-box;
  1763. width:100%;
  1764. }
  1765. #u160139_text {
  1766. border-width:0px;
  1767. word-wrap:break-word;
  1768. text-transform:none;
  1769. }
  1770. #u160140 {
  1771. border-width:0px;
  1772. position:absolute;
  1773. left:0px;
  1774. top:0px;
  1775. width:0px;
  1776. height:0px;
  1777. }
  1778. #u160141_div {
  1779. border-width:0px;
  1780. position:absolute;
  1781. left:0px;
  1782. top:0px;
  1783. width:88px;
  1784. height:32px;
  1785. background:inherit;
  1786. background-color:rgba(255, 255, 255, 1);
  1787. box-sizing:border-box;
  1788. border-width:1px;
  1789. border-style:solid;
  1790. border-color:rgba(242, 242, 242, 1);
  1791. border-radius:33px;
  1792. -moz-box-shadow:none;
  1793. -webkit-box-shadow:none;
  1794. box-shadow:none;
  1795. }
  1796. #u160141 {
  1797. border-width:0px;
  1798. position:absolute;
  1799. left:309px;
  1800. top:71px;
  1801. width:88px;
  1802. height:32px;
  1803. display:flex;
  1804. }
  1805. #u160141 .text {
  1806. position:absolute;
  1807. align-self:center;
  1808. padding:2px 2px 2px 2px;
  1809. box-sizing:border-box;
  1810. width:100%;
  1811. }
  1812. #u160141_text {
  1813. border-width:0px;
  1814. word-wrap:break-word;
  1815. text-transform:none;
  1816. visibility:hidden;
  1817. }
  1818. #u160142 {
  1819. border-width:0px;
  1820. position:absolute;
  1821. left:0px;
  1822. top:0px;
  1823. width:0px;
  1824. height:0px;
  1825. }
  1826. #u160143_img {
  1827. border-width:0px;
  1828. position:absolute;
  1829. left:0px;
  1830. top:0px;
  1831. width:18px;
  1832. height:18px;
  1833. }
  1834. #u160143 {
  1835. border-width:0px;
  1836. position:absolute;
  1837. left:372px;
  1838. top:78px;
  1839. width:18px;
  1840. height:18px;
  1841. display:flex;
  1842. }
  1843. #u160143 .text {
  1844. position:absolute;
  1845. align-self:center;
  1846. padding:2px 2px 2px 2px;
  1847. box-sizing:border-box;
  1848. width:100%;
  1849. }
  1850. #u160143_text {
  1851. border-width:0px;
  1852. word-wrap:break-word;
  1853. text-transform:none;
  1854. visibility:hidden;
  1855. }
  1856. #u160144_img {
  1857. border-width:0px;
  1858. position:absolute;
  1859. left:0px;
  1860. top:0px;
  1861. width:6px;
  1862. height:6px;
  1863. }
  1864. #u160144 {
  1865. border-width:0px;
  1866. position:absolute;
  1867. left:378px;
  1868. top:84px;
  1869. width:6px;
  1870. height:6px;
  1871. display:flex;
  1872. }
  1873. #u160144 .text {
  1874. position:absolute;
  1875. align-self:center;
  1876. padding:2px 2px 2px 2px;
  1877. box-sizing:border-box;
  1878. width:100%;
  1879. }
  1880. #u160144_text {
  1881. border-width:0px;
  1882. word-wrap:break-word;
  1883. text-transform:none;
  1884. visibility:hidden;
  1885. }
  1886. #u160145 {
  1887. border-width:0px;
  1888. position:absolute;
  1889. left:0px;
  1890. top:0px;
  1891. width:0px;
  1892. height:0px;
  1893. }
  1894. #u160146_img {
  1895. border-width:0px;
  1896. position:absolute;
  1897. left:0px;
  1898. top:0px;
  1899. width:5px;
  1900. height:5px;
  1901. }
  1902. #u160146 {
  1903. border-width:0px;
  1904. position:absolute;
  1905. left:323px;
  1906. top:85px;
  1907. width:5px;
  1908. height:5px;
  1909. display:flex;
  1910. }
  1911. #u160146 .text {
  1912. position:absolute;
  1913. align-self:center;
  1914. padding:2px 2px 2px 2px;
  1915. box-sizing:border-box;
  1916. width:100%;
  1917. }
  1918. #u160146_text {
  1919. border-width:0px;
  1920. word-wrap:break-word;
  1921. text-transform:none;
  1922. visibility:hidden;
  1923. }
  1924. #u160147_img {
  1925. border-width:0px;
  1926. position:absolute;
  1927. left:0px;
  1928. top:0px;
  1929. width:5px;
  1930. height:5px;
  1931. }
  1932. #u160147 {
  1933. border-width:0px;
  1934. position:absolute;
  1935. left:339px;
  1936. top:85px;
  1937. width:5px;
  1938. height:5px;
  1939. display:flex;
  1940. }
  1941. #u160147 .text {
  1942. position:absolute;
  1943. align-self:center;
  1944. padding:2px 2px 2px 2px;
  1945. box-sizing:border-box;
  1946. width:100%;
  1947. }
  1948. #u160147_text {
  1949. border-width:0px;
  1950. word-wrap:break-word;
  1951. text-transform:none;
  1952. visibility:hidden;
  1953. }
  1954. #u160148_img {
  1955. border-width:0px;
  1956. position:absolute;
  1957. left:0px;
  1958. top:0px;
  1959. width:7px;
  1960. height:7px;
  1961. }
  1962. #u160148 {
  1963. border-width:0px;
  1964. position:absolute;
  1965. left:330px;
  1966. top:84px;
  1967. width:7px;
  1968. height:7px;
  1969. display:flex;
  1970. }
  1971. #u160148 .text {
  1972. position:absolute;
  1973. align-self:center;
  1974. padding:2px 2px 2px 2px;
  1975. box-sizing:border-box;
  1976. width:100%;
  1977. }
  1978. #u160148_text {
  1979. border-width:0px;
  1980. word-wrap:break-word;
  1981. text-transform:none;
  1982. visibility:hidden;
  1983. }
  1984. #u160149_img {
  1985. border-width:0px;
  1986. position:absolute;
  1987. left:0px;
  1988. top:0px;
  1989. width:19px;
  1990. height:2px;
  1991. }
  1992. #u160149 {
  1993. border-width:0px;
  1994. position:absolute;
  1995. left:347px;
  1996. top:87px;
  1997. width:18px;
  1998. height:1px;
  1999. display:flex;
  2000. -webkit-transform:rotate(90deg);
  2001. -moz-transform:rotate(90deg);
  2002. -ms-transform:rotate(90deg);
  2003. transform:rotate(90deg);
  2004. }
  2005. #u160149 .text {
  2006. position:absolute;
  2007. align-self:center;
  2008. padding:2px 2px 2px 2px;
  2009. box-sizing:border-box;
  2010. width:100%;
  2011. }
  2012. #u160149_text {
  2013. border-width:0px;
  2014. word-wrap:break-word;
  2015. text-transform:none;
  2016. visibility:hidden;
  2017. }
  2018. #u160150_div {
  2019. border-width:0px;
  2020. position:absolute;
  2021. left:0px;
  2022. top:0px;
  2023. width:169px;
  2024. height:40px;
  2025. background:inherit;
  2026. background-color:rgba(255, 255, 255, 0);
  2027. border:none;
  2028. border-left:0px;
  2029. border-top:0px;
  2030. border-right:0px;
  2031. border-radius:0px;
  2032. border-bottom-right-radius:0px;
  2033. border-bottom-left-radius:0px;
  2034. -moz-box-shadow:none;
  2035. -webkit-box-shadow:none;
  2036. box-shadow:none;
  2037. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2038. font-weight:500;
  2039. font-style:normal;
  2040. font-size:28px;
  2041. color:#FFFFFF;
  2042. text-align:right;
  2043. }
  2044. #u160150 {
  2045. border-width:0px;
  2046. position:absolute;
  2047. left:132px;
  2048. top:341px;
  2049. width:169px;
  2050. height:40px;
  2051. display:flex;
  2052. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2053. font-weight:500;
  2054. font-style:normal;
  2055. font-size:28px;
  2056. color:#FFFFFF;
  2057. text-align:right;
  2058. }
  2059. #u160150 .text {
  2060. position:absolute;
  2061. align-self:center;
  2062. padding:0px 0px 0px 0px;
  2063. box-sizing:border-box;
  2064. width:100%;
  2065. }
  2066. #u160150_text {
  2067. border-width:0px;
  2068. white-space:nowrap;
  2069. text-transform:none;
  2070. }
  2071. #u160151_div {
  2072. border-width:0px;
  2073. position:absolute;
  2074. left:0px;
  2075. top:0px;
  2076. width:360px;
  2077. height:384px;
  2078. background:inherit;
  2079. background-color:rgba(255, 255, 255, 1);
  2080. border:none;
  2081. border-bottom:0px;
  2082. border-radius:18px;
  2083. border-bottom-right-radius:0px;
  2084. border-bottom-left-radius:0px;
  2085. -moz-box-shadow:none;
  2086. -webkit-box-shadow:none;
  2087. box-shadow:none;
  2088. }
  2089. #u160151 {
  2090. border-width:0px;
  2091. position:absolute;
  2092. left:37px;
  2093. top:400px;
  2094. width:360px;
  2095. height:384px;
  2096. display:flex;
  2097. }
  2098. #u160151 .text {
  2099. position:absolute;
  2100. align-self:center;
  2101. padding:2px 2px 2px 2px;
  2102. box-sizing:border-box;
  2103. width:100%;
  2104. }
  2105. #u160151_text {
  2106. border-width:0px;
  2107. word-wrap:break-word;
  2108. text-transform:none;
  2109. visibility:hidden;
  2110. }
  2111. #u160152_div {
  2112. border-width:0px;
  2113. position:absolute;
  2114. left:0px;
  2115. top:0px;
  2116. width:73px;
  2117. height:25px;
  2118. background:inherit;
  2119. background-color:rgba(255, 255, 255, 0);
  2120. border:none;
  2121. border-left:0px;
  2122. border-top:0px;
  2123. border-right:0px;
  2124. border-radius:0px;
  2125. border-bottom-right-radius:0px;
  2126. border-bottom-left-radius:0px;
  2127. -moz-box-shadow:none;
  2128. -webkit-box-shadow:none;
  2129. box-shadow:none;
  2130. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2131. font-weight:500;
  2132. font-style:normal;
  2133. font-size:18px;
  2134. color:#5C93FF;
  2135. text-align:center;
  2136. }
  2137. #u160152 {
  2138. border-width:0px;
  2139. position:absolute;
  2140. left:180px;
  2141. top:433px;
  2142. width:73px;
  2143. height:25px;
  2144. display:flex;
  2145. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2146. font-weight:500;
  2147. font-style:normal;
  2148. font-size:18px;
  2149. color:#5C93FF;
  2150. text-align:center;
  2151. }
  2152. #u160152 .text {
  2153. position:absolute;
  2154. align-self:center;
  2155. padding:0px 0px 0px 0px;
  2156. box-sizing:border-box;
  2157. width:100%;
  2158. }
  2159. #u160152_text {
  2160. border-width:0px;
  2161. white-space:nowrap;
  2162. text-transform:none;
  2163. }
  2164. #u160153_img {
  2165. border-width:0px;
  2166. position:absolute;
  2167. left:0px;
  2168. top:0px;
  2169. width:30px;
  2170. height:30px;
  2171. }
  2172. #u160153 {
  2173. border-width:0px;
  2174. position:absolute;
  2175. left:57px;
  2176. top:463px;
  2177. width:30px;
  2178. height:30px;
  2179. display:flex;
  2180. color:#FFFFFF;
  2181. }
  2182. #u160153 .text {
  2183. position:absolute;
  2184. align-self:center;
  2185. padding:2px 2px 2px 2px;
  2186. box-sizing:border-box;
  2187. width:100%;
  2188. }
  2189. #u160153_text {
  2190. border-width:0px;
  2191. word-wrap:break-word;
  2192. text-transform:none;
  2193. }
  2194. #u160154_div {
  2195. border-width:0px;
  2196. position:absolute;
  2197. left:0px;
  2198. top:0px;
  2199. width:73px;
  2200. height:25px;
  2201. background:inherit;
  2202. background-color:rgba(255, 255, 255, 0);
  2203. border:none;
  2204. border-left:0px;
  2205. border-top:0px;
  2206. border-right:0px;
  2207. border-radius:0px;
  2208. border-bottom-right-radius:0px;
  2209. border-bottom-left-radius:0px;
  2210. -moz-box-shadow:none;
  2211. -webkit-box-shadow:none;
  2212. box-shadow:none;
  2213. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2214. font-weight:500;
  2215. font-style:normal;
  2216. font-size:18px;
  2217. color:#5C93FF;
  2218. }
  2219. #u160154 {
  2220. border-width:0px;
  2221. position:absolute;
  2222. left:95px;
  2223. top:463px;
  2224. width:73px;
  2225. height:25px;
  2226. display:flex;
  2227. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2228. font-weight:500;
  2229. font-style:normal;
  2230. font-size:18px;
  2231. color:#5C93FF;
  2232. }
  2233. #u160154 .text {
  2234. position:absolute;
  2235. align-self:center;
  2236. padding:0px 0px 0px 0px;
  2237. box-sizing:border-box;
  2238. width:100%;
  2239. }
  2240. #u160154_text {
  2241. border-width:0px;
  2242. white-space:nowrap;
  2243. text-transform:none;
  2244. }
  2245. #u160155_div {
  2246. border-width:0px;
  2247. position:absolute;
  2248. left:0px;
  2249. top:0px;
  2250. width:169px;
  2251. height:30px;
  2252. background:inherit;
  2253. background-color:rgba(255, 255, 255, 0);
  2254. border:none;
  2255. border-left:0px;
  2256. border-top:0px;
  2257. border-right:0px;
  2258. border-radius:0px;
  2259. border-bottom-right-radius:0px;
  2260. border-bottom-left-radius:0px;
  2261. -moz-box-shadow:none;
  2262. -webkit-box-shadow:none;
  2263. box-shadow:none;
  2264. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2265. font-weight:400;
  2266. font-style:normal;
  2267. font-size:12px;
  2268. line-height:30px;
  2269. }
  2270. #u160155 {
  2271. border-width:0px;
  2272. position:absolute;
  2273. left:95px;
  2274. top:488px;
  2275. width:169px;
  2276. height:30px;
  2277. display:flex;
  2278. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2279. font-weight:400;
  2280. font-style:normal;
  2281. font-size:12px;
  2282. line-height:30px;
  2283. }
  2284. #u160155 .text {
  2285. position:absolute;
  2286. align-self:flex-start;
  2287. padding:0px 0px 0px 0px;
  2288. box-sizing:border-box;
  2289. width:100%;
  2290. }
  2291. #u160155_text {
  2292. border-width:0px;
  2293. white-space:nowrap;
  2294. text-transform:none;
  2295. }
  2296. #u160156_img {
  2297. border-width:0px;
  2298. position:absolute;
  2299. left:0px;
  2300. top:0px;
  2301. width:30px;
  2302. height:30px;
  2303. }
  2304. #u160156 {
  2305. border-width:0px;
  2306. position:absolute;
  2307. left:57px;
  2308. top:553px;
  2309. width:30px;
  2310. height:30px;
  2311. display:flex;
  2312. color:#FFFFFF;
  2313. }
  2314. #u160156 .text {
  2315. position:absolute;
  2316. align-self:center;
  2317. padding:2px 2px 2px 2px;
  2318. box-sizing:border-box;
  2319. width:100%;
  2320. }
  2321. #u160156_text {
  2322. border-width:0px;
  2323. word-wrap:break-word;
  2324. text-transform:none;
  2325. }
  2326. #u160157_div {
  2327. border-width:0px;
  2328. position:absolute;
  2329. left:0px;
  2330. top:0px;
  2331. width:73px;
  2332. height:25px;
  2333. background:inherit;
  2334. background-color:rgba(255, 255, 255, 0);
  2335. border:none;
  2336. border-left:0px;
  2337. border-top:0px;
  2338. border-right:0px;
  2339. border-radius:0px;
  2340. border-bottom-right-radius:0px;
  2341. border-bottom-left-radius:0px;
  2342. -moz-box-shadow:none;
  2343. -webkit-box-shadow:none;
  2344. box-shadow:none;
  2345. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2346. font-weight:500;
  2347. font-style:normal;
  2348. font-size:18px;
  2349. color:#5C93FF;
  2350. }
  2351. #u160157 {
  2352. border-width:0px;
  2353. position:absolute;
  2354. left:95px;
  2355. top:555px;
  2356. width:73px;
  2357. height:25px;
  2358. display:flex;
  2359. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2360. font-weight:500;
  2361. font-style:normal;
  2362. font-size:18px;
  2363. color:#5C93FF;
  2364. }
  2365. #u160157 .text {
  2366. position:absolute;
  2367. align-self:center;
  2368. padding:0px 0px 0px 0px;
  2369. box-sizing:border-box;
  2370. width:100%;
  2371. }
  2372. #u160157_text {
  2373. border-width:0px;
  2374. white-space:nowrap;
  2375. text-transform:none;
  2376. }
  2377. #u160158_div {
  2378. border-width:0px;
  2379. position:absolute;
  2380. left:0px;
  2381. top:0px;
  2382. width:205px;
  2383. height:30px;
  2384. background:inherit;
  2385. background-color:rgba(255, 255, 255, 0);
  2386. border:none;
  2387. border-left:0px;
  2388. border-top:0px;
  2389. border-right:0px;
  2390. border-radius:0px;
  2391. border-bottom-right-radius:0px;
  2392. border-bottom-left-radius:0px;
  2393. -moz-box-shadow:none;
  2394. -webkit-box-shadow:none;
  2395. box-shadow:none;
  2396. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2397. font-weight:400;
  2398. font-style:normal;
  2399. font-size:12px;
  2400. line-height:30px;
  2401. }
  2402. #u160158 {
  2403. border-width:0px;
  2404. position:absolute;
  2405. left:95px;
  2406. top:580px;
  2407. width:205px;
  2408. height:30px;
  2409. display:flex;
  2410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2411. font-weight:400;
  2412. font-style:normal;
  2413. font-size:12px;
  2414. line-height:30px;
  2415. }
  2416. #u160158 .text {
  2417. position:absolute;
  2418. align-self:flex-start;
  2419. padding:0px 0px 0px 0px;
  2420. box-sizing:border-box;
  2421. width:100%;
  2422. }
  2423. #u160158_text {
  2424. border-width:0px;
  2425. white-space:nowrap;
  2426. text-transform:none;
  2427. }
  2428. #u160159_img {
  2429. border-width:0px;
  2430. position:absolute;
  2431. left:0px;
  2432. top:0px;
  2433. width:30px;
  2434. height:30px;
  2435. }
  2436. #u160159 {
  2437. border-width:0px;
  2438. position:absolute;
  2439. left:57px;
  2440. top:643px;
  2441. width:30px;
  2442. height:30px;
  2443. display:flex;
  2444. color:#FFFFFF;
  2445. }
  2446. #u160159 .text {
  2447. position:absolute;
  2448. align-self:center;
  2449. padding:2px 2px 2px 2px;
  2450. box-sizing:border-box;
  2451. width:100%;
  2452. }
  2453. #u160159_text {
  2454. border-width:0px;
  2455. word-wrap:break-word;
  2456. text-transform:none;
  2457. }
  2458. #u160160_div {
  2459. border-width:0px;
  2460. position:absolute;
  2461. left:0px;
  2462. top:0px;
  2463. width:73px;
  2464. height:25px;
  2465. background:inherit;
  2466. background-color:rgba(255, 255, 255, 0);
  2467. border:none;
  2468. border-left:0px;
  2469. border-top:0px;
  2470. border-right:0px;
  2471. border-radius:0px;
  2472. border-bottom-right-radius:0px;
  2473. border-bottom-left-radius:0px;
  2474. -moz-box-shadow:none;
  2475. -webkit-box-shadow:none;
  2476. box-shadow:none;
  2477. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2478. font-weight:500;
  2479. font-style:normal;
  2480. font-size:18px;
  2481. color:#5C93FF;
  2482. }
  2483. #u160160 {
  2484. border-width:0px;
  2485. position:absolute;
  2486. left:95px;
  2487. top:645px;
  2488. width:73px;
  2489. height:25px;
  2490. display:flex;
  2491. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2492. font-weight:500;
  2493. font-style:normal;
  2494. font-size:18px;
  2495. color:#5C93FF;
  2496. }
  2497. #u160160 .text {
  2498. position:absolute;
  2499. align-self:center;
  2500. padding:0px 0px 0px 0px;
  2501. box-sizing:border-box;
  2502. width:100%;
  2503. }
  2504. #u160160_text {
  2505. border-width:0px;
  2506. white-space:nowrap;
  2507. text-transform:none;
  2508. }
  2509. #u160161_div {
  2510. border-width:0px;
  2511. position:absolute;
  2512. left:0px;
  2513. top:0px;
  2514. width:286px;
  2515. height:34px;
  2516. background:inherit;
  2517. background-color:rgba(255, 255, 255, 0);
  2518. border:none;
  2519. border-left:0px;
  2520. border-top:0px;
  2521. border-right:0px;
  2522. border-radius:0px;
  2523. border-bottom-right-radius:0px;
  2524. border-bottom-left-radius:0px;
  2525. -moz-box-shadow:none;
  2526. -webkit-box-shadow:none;
  2527. box-shadow:none;
  2528. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2529. font-weight:400;
  2530. font-style:normal;
  2531. font-size:12px;
  2532. }
  2533. #u160161 {
  2534. border-width:0px;
  2535. position:absolute;
  2536. left:95px;
  2537. top:675px;
  2538. width:286px;
  2539. height:34px;
  2540. display:flex;
  2541. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2542. font-weight:400;
  2543. font-style:normal;
  2544. font-size:12px;
  2545. }
  2546. #u160161 .text {
  2547. position:absolute;
  2548. align-self:flex-start;
  2549. padding:0px 0px 0px 0px;
  2550. box-sizing:border-box;
  2551. width:100%;
  2552. }
  2553. #u160161_text {
  2554. border-width:0px;
  2555. word-wrap:break-word;
  2556. text-transform:none;
  2557. }
  2558. #u160162_img {
  2559. border-width:0px;
  2560. position:absolute;
  2561. left:0px;
  2562. top:0px;
  2563. width:300px;
  2564. height:170px;
  2565. }
  2566. #u160162 {
  2567. border-width:0px;
  2568. position:absolute;
  2569. left:66px;
  2570. top:141px;
  2571. width:300px;
  2572. height:170px;
  2573. display:flex;
  2574. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2575. font-weight:400;
  2576. font-style:normal;
  2577. font-size:18px;
  2578. }
  2579. #u160162 .text {
  2580. position:absolute;
  2581. align-self:center;
  2582. padding:2px 2px 2px 2px;
  2583. box-sizing:border-box;
  2584. width:100%;
  2585. }
  2586. #u160162_text {
  2587. border-width:0px;
  2588. word-wrap:break-word;
  2589. text-transform:none;
  2590. }
  2591. #u160164_img {
  2592. border-width:0px;
  2593. position:absolute;
  2594. left:0px;
  2595. top:0px;
  2596. width:433px;
  2597. height:865px;
  2598. }
  2599. #u160164 {
  2600. border-width:0px;
  2601. position:absolute;
  2602. left:460px;
  2603. top:0px;
  2604. width:433px;
  2605. height:865px;
  2606. display:flex;
  2607. }
  2608. #u160164 .text {
  2609. position:absolute;
  2610. align-self:center;
  2611. padding:2px 2px 2px 2px;
  2612. box-sizing:border-box;
  2613. width:100%;
  2614. }
  2615. #u160164_text {
  2616. border-width:0px;
  2617. word-wrap:break-word;
  2618. text-transform:none;
  2619. visibility:hidden;
  2620. }
  2621. #u160165_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. #u160165 {
  2645. border-width:0px;
  2646. position:absolute;
  2647. left:489px;
  2648. top:67px;
  2649. width:375px;
  2650. height:40px;
  2651. display:flex;
  2652. }
  2653. #u160165 .text {
  2654. position:absolute;
  2655. align-self:center;
  2656. padding:2px 2px 2px 2px;
  2657. box-sizing:border-box;
  2658. width:100%;
  2659. }
  2660. #u160165_text {
  2661. border-width:0px;
  2662. word-wrap:break-word;
  2663. text-transform:none;
  2664. visibility:hidden;
  2665. }
  2666. #u160166 {
  2667. border-width:0px;
  2668. position:absolute;
  2669. left:0px;
  2670. top:0px;
  2671. width:0px;
  2672. height:0px;
  2673. }
  2674. #u160167_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. #u160167 {
  2693. border-width:0px;
  2694. position:absolute;
  2695. left:769px;
  2696. top:71px;
  2697. width:88px;
  2698. height:32px;
  2699. display:flex;
  2700. }
  2701. #u160167 .text {
  2702. position:absolute;
  2703. align-self:center;
  2704. padding:2px 2px 2px 2px;
  2705. box-sizing:border-box;
  2706. width:100%;
  2707. }
  2708. #u160167_text {
  2709. border-width:0px;
  2710. word-wrap:break-word;
  2711. text-transform:none;
  2712. visibility:hidden;
  2713. }
  2714. #u160168 {
  2715. border-width:0px;
  2716. position:absolute;
  2717. left:0px;
  2718. top:0px;
  2719. width:0px;
  2720. height:0px;
  2721. }
  2722. #u160169_img {
  2723. border-width:0px;
  2724. position:absolute;
  2725. left:0px;
  2726. top:0px;
  2727. width:18px;
  2728. height:18px;
  2729. }
  2730. #u160169 {
  2731. border-width:0px;
  2732. position:absolute;
  2733. left:832px;
  2734. top:78px;
  2735. width:18px;
  2736. height:18px;
  2737. display:flex;
  2738. }
  2739. #u160169 .text {
  2740. position:absolute;
  2741. align-self:center;
  2742. padding:2px 2px 2px 2px;
  2743. box-sizing:border-box;
  2744. width:100%;
  2745. }
  2746. #u160169_text {
  2747. border-width:0px;
  2748. word-wrap:break-word;
  2749. text-transform:none;
  2750. visibility:hidden;
  2751. }
  2752. #u160170_img {
  2753. border-width:0px;
  2754. position:absolute;
  2755. left:0px;
  2756. top:0px;
  2757. width:6px;
  2758. height:6px;
  2759. }
  2760. #u160170 {
  2761. border-width:0px;
  2762. position:absolute;
  2763. left:838px;
  2764. top:84px;
  2765. width:6px;
  2766. height:6px;
  2767. display:flex;
  2768. }
  2769. #u160170 .text {
  2770. position:absolute;
  2771. align-self:center;
  2772. padding:2px 2px 2px 2px;
  2773. box-sizing:border-box;
  2774. width:100%;
  2775. }
  2776. #u160170_text {
  2777. border-width:0px;
  2778. word-wrap:break-word;
  2779. text-transform:none;
  2780. visibility:hidden;
  2781. }
  2782. #u160171 {
  2783. border-width:0px;
  2784. position:absolute;
  2785. left:0px;
  2786. top:0px;
  2787. width:0px;
  2788. height:0px;
  2789. }
  2790. #u160172_img {
  2791. border-width:0px;
  2792. position:absolute;
  2793. left:0px;
  2794. top:0px;
  2795. width:5px;
  2796. height:5px;
  2797. }
  2798. #u160172 {
  2799. border-width:0px;
  2800. position:absolute;
  2801. left:783px;
  2802. top:85px;
  2803. width:5px;
  2804. height:5px;
  2805. display:flex;
  2806. }
  2807. #u160172 .text {
  2808. position:absolute;
  2809. align-self:center;
  2810. padding:2px 2px 2px 2px;
  2811. box-sizing:border-box;
  2812. width:100%;
  2813. }
  2814. #u160172_text {
  2815. border-width:0px;
  2816. word-wrap:break-word;
  2817. text-transform:none;
  2818. visibility:hidden;
  2819. }
  2820. #u160173_img {
  2821. border-width:0px;
  2822. position:absolute;
  2823. left:0px;
  2824. top:0px;
  2825. width:5px;
  2826. height:5px;
  2827. }
  2828. #u160173 {
  2829. border-width:0px;
  2830. position:absolute;
  2831. left:799px;
  2832. top:85px;
  2833. width:5px;
  2834. height:5px;
  2835. display:flex;
  2836. }
  2837. #u160173 .text {
  2838. position:absolute;
  2839. align-self:center;
  2840. padding:2px 2px 2px 2px;
  2841. box-sizing:border-box;
  2842. width:100%;
  2843. }
  2844. #u160173_text {
  2845. border-width:0px;
  2846. word-wrap:break-word;
  2847. text-transform:none;
  2848. visibility:hidden;
  2849. }
  2850. #u160174_img {
  2851. border-width:0px;
  2852. position:absolute;
  2853. left:0px;
  2854. top:0px;
  2855. width:7px;
  2856. height:7px;
  2857. }
  2858. #u160174 {
  2859. border-width:0px;
  2860. position:absolute;
  2861. left:790px;
  2862. top:84px;
  2863. width:7px;
  2864. height:7px;
  2865. display:flex;
  2866. }
  2867. #u160174 .text {
  2868. position:absolute;
  2869. align-self:center;
  2870. padding:2px 2px 2px 2px;
  2871. box-sizing:border-box;
  2872. width:100%;
  2873. }
  2874. #u160174_text {
  2875. border-width:0px;
  2876. word-wrap:break-word;
  2877. text-transform:none;
  2878. visibility:hidden;
  2879. }
  2880. #u160175_img {
  2881. border-width:0px;
  2882. position:absolute;
  2883. left:0px;
  2884. top:0px;
  2885. width:19px;
  2886. height:2px;
  2887. }
  2888. #u160175 {
  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. #u160175 .text {
  2902. position:absolute;
  2903. align-self:center;
  2904. padding:2px 2px 2px 2px;
  2905. box-sizing:border-box;
  2906. width:100%;
  2907. }
  2908. #u160175_text {
  2909. border-width:0px;
  2910. word-wrap:break-word;
  2911. text-transform:none;
  2912. visibility:hidden;
  2913. }
  2914. #u160176_img {
  2915. border-width:0px;
  2916. position:absolute;
  2917. left:0px;
  2918. top:0px;
  2919. width:375px;
  2920. height:44px;
  2921. }
  2922. #u160176 {
  2923. border-width:0px;
  2924. position:absolute;
  2925. left:489px;
  2926. top:24px;
  2927. width:375px;
  2928. height:44px;
  2929. display:flex;
  2930. }
  2931. #u160176 .text {
  2932. position:absolute;
  2933. align-self:center;
  2934. padding:2px 2px 2px 2px;
  2935. box-sizing:border-box;
  2936. width:100%;
  2937. }
  2938. #u160176_text {
  2939. border-width:0px;
  2940. word-wrap:break-word;
  2941. text-transform:none;
  2942. visibility:hidden;
  2943. }
  2944. #u160177_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. #u160177 {
  2965. border-width:0px;
  2966. position:absolute;
  2967. left:489px;
  2968. top:788px;
  2969. width:375px;
  2970. height:50px;
  2971. display:flex;
  2972. }
  2973. #u160177 .text {
  2974. position:absolute;
  2975. align-self:center;
  2976. padding:2px 2px 2px 2px;
  2977. box-sizing:border-box;
  2978. width:100%;
  2979. }
  2980. #u160177_text {
  2981. border-width:0px;
  2982. word-wrap:break-word;
  2983. text-transform:none;
  2984. visibility:hidden;
  2985. }
  2986. #u160178 {
  2987. border-width:0px;
  2988. position:absolute;
  2989. left:0px;
  2990. top:0px;
  2991. width:0px;
  2992. height:0px;
  2993. }
  2994. #u160179_img {
  2995. border-width:0px;
  2996. position:absolute;
  2997. left:0px;
  2998. top:0px;
  2999. width:24px;
  3000. height:24px;
  3001. }
  3002. #u160179 {
  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. #u160179 .text {
  3013. position:absolute;
  3014. align-self:center;
  3015. padding:2px 2px 2px 2px;
  3016. box-sizing:border-box;
  3017. width:100%;
  3018. }
  3019. #u160179_text {
  3020. border-width:0px;
  3021. word-wrap:break-word;
  3022. text-transform:none;
  3023. }
  3024. #u160180_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. #u160180 {
  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. #u160180 .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. #u160180_text {
  3064. border-width:0px;
  3065. white-space:nowrap;
  3066. text-transform:none;
  3067. }
  3068. #u160181 {
  3069. border-width:0px;
  3070. position:absolute;
  3071. left:0px;
  3072. top:0px;
  3073. width:0px;
  3074. height:0px;
  3075. }
  3076. #u160182_img {
  3077. border-width:0px;
  3078. position:absolute;
  3079. left:0px;
  3080. top:0px;
  3081. width:24px;
  3082. height:24px;
  3083. }
  3084. #u160182 {
  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. #u160182 .text {
  3095. position:absolute;
  3096. align-self:center;
  3097. padding:2px 2px 2px 2px;
  3098. box-sizing:border-box;
  3099. width:100%;
  3100. }
  3101. #u160182_text {
  3102. border-width:0px;
  3103. word-wrap:break-word;
  3104. text-transform:none;
  3105. }
  3106. #u160183_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. #u160183 {
  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. #u160183 .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. #u160183_text {
  3146. border-width:0px;
  3147. white-space:nowrap;
  3148. text-transform:none;
  3149. }
  3150. #u160184_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. #u160184 {
  3166. border-width:0px;
  3167. position:absolute;
  3168. left:489px;
  3169. top:107px;
  3170. width:375px;
  3171. height:681px;
  3172. display:flex;
  3173. }
  3174. #u160184 .text {
  3175. position:absolute;
  3176. align-self:center;
  3177. padding:2px 2px 2px 2px;
  3178. box-sizing:border-box;
  3179. width:100%;
  3180. }
  3181. #u160184_text {
  3182. border-width:0px;
  3183. word-wrap:break-word;
  3184. text-transform:none;
  3185. visibility:hidden;
  3186. }
  3187. #u160185 {
  3188. border-width:0px;
  3189. position:absolute;
  3190. left:0px;
  3191. top:0px;
  3192. width:0px;
  3193. height:0px;
  3194. }
  3195. #u160186_img {
  3196. border-width:0px;
  3197. position:absolute;
  3198. left:0px;
  3199. top:0px;
  3200. width:24px;
  3201. height:24px;
  3202. }
  3203. #u160186 {
  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. #u160186 .text {
  3214. position:absolute;
  3215. align-self:center;
  3216. padding:2px 2px 2px 2px;
  3217. box-sizing:border-box;
  3218. width:100%;
  3219. }
  3220. #u160186_text {
  3221. border-width:0px;
  3222. word-wrap:break-word;
  3223. text-transform:none;
  3224. }
  3225. #u160187_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. #u160187 {
  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. #u160187 .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. #u160187_text {
  3265. border-width:0px;
  3266. white-space:nowrap;
  3267. text-transform:none;
  3268. }
  3269. #u160188 {
  3270. border-width:0px;
  3271. position:absolute;
  3272. left:0px;
  3273. top:0px;
  3274. width:0px;
  3275. height:0px;
  3276. }
  3277. #u160189_img {
  3278. border-width:0px;
  3279. position:absolute;
  3280. left:0px;
  3281. top:0px;
  3282. width:24px;
  3283. height:24px;
  3284. }
  3285. #u160189 {
  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. #u160189 .text {
  3296. position:absolute;
  3297. align-self:center;
  3298. padding:2px 2px 2px 2px;
  3299. box-sizing:border-box;
  3300. width:100%;
  3301. }
  3302. #u160189_text {
  3303. border-width:0px;
  3304. word-wrap:break-word;
  3305. text-transform:none;
  3306. }
  3307. #u160190_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. #u160190 {
  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. #u160190 .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. #u160190_text {
  3347. border-width:0px;
  3348. white-space:nowrap;
  3349. text-transform:none;
  3350. }
  3351. #u160191_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. #u160191 {
  3372. border-width:0px;
  3373. position:absolute;
  3374. left:489px;
  3375. top:107px;
  3376. width:375px;
  3377. height:732px;
  3378. display:flex;
  3379. }
  3380. #u160191 .text {
  3381. position:absolute;
  3382. align-self:center;
  3383. padding:2px 2px 2px 2px;
  3384. box-sizing:border-box;
  3385. width:100%;
  3386. }
  3387. #u160191_text {
  3388. border-width:0px;
  3389. word-wrap:break-word;
  3390. text-transform:none;
  3391. visibility:hidden;
  3392. }
  3393. #u160192_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. #u160192 {
  3414. border-width:0px;
  3415. position:absolute;
  3416. left:489px;
  3417. top:107px;
  3418. width:375px;
  3419. height:732px;
  3420. display:flex;
  3421. }
  3422. #u160192 .text {
  3423. position:absolute;
  3424. align-self:center;
  3425. padding:2px 2px 2px 2px;
  3426. box-sizing:border-box;
  3427. width:100%;
  3428. }
  3429. #u160192_text {
  3430. border-width:0px;
  3431. word-wrap:break-word;
  3432. text-transform:none;
  3433. visibility:hidden;
  3434. }
  3435. #u160193 {
  3436. border-width:0px;
  3437. position:absolute;
  3438. left:0px;
  3439. top:0px;
  3440. width:0px;
  3441. height:0px;
  3442. }
  3443. #u160194_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. #u160194 {
  3464. border-width:0px;
  3465. position:absolute;
  3466. left:489px;
  3467. top:67px;
  3468. width:375px;
  3469. height:40px;
  3470. display:flex;
  3471. }
  3472. #u160194 .text {
  3473. position:absolute;
  3474. align-self:center;
  3475. padding:2px 2px 2px 2px;
  3476. box-sizing:border-box;
  3477. width:100%;
  3478. }
  3479. #u160194_text {
  3480. border-width:0px;
  3481. word-wrap:break-word;
  3482. text-transform:none;
  3483. visibility:hidden;
  3484. }
  3485. #u160195 {
  3486. border-width:0px;
  3487. position:absolute;
  3488. left:0px;
  3489. top:0px;
  3490. width:0px;
  3491. height:0px;
  3492. }
  3493. #u160196_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. #u160196 {
  3512. border-width:0px;
  3513. position:absolute;
  3514. left:766px;
  3515. top:69px;
  3516. width:88px;
  3517. height:32px;
  3518. display:flex;
  3519. }
  3520. #u160196 .text {
  3521. position:absolute;
  3522. align-self:center;
  3523. padding:2px 2px 2px 2px;
  3524. box-sizing:border-box;
  3525. width:100%;
  3526. }
  3527. #u160196_text {
  3528. border-width:0px;
  3529. word-wrap:break-word;
  3530. text-transform:none;
  3531. visibility:hidden;
  3532. }
  3533. #u160197 {
  3534. border-width:0px;
  3535. position:absolute;
  3536. left:0px;
  3537. top:0px;
  3538. width:0px;
  3539. height:0px;
  3540. }
  3541. #u160198_img {
  3542. border-width:0px;
  3543. position:absolute;
  3544. left:0px;
  3545. top:0px;
  3546. width:18px;
  3547. height:18px;
  3548. }
  3549. #u160198 {
  3550. border-width:0px;
  3551. position:absolute;
  3552. left:829px;
  3553. top:76px;
  3554. width:18px;
  3555. height:18px;
  3556. display:flex;
  3557. }
  3558. #u160198 .text {
  3559. position:absolute;
  3560. align-self:center;
  3561. padding:2px 2px 2px 2px;
  3562. box-sizing:border-box;
  3563. width:100%;
  3564. }
  3565. #u160198_text {
  3566. border-width:0px;
  3567. word-wrap:break-word;
  3568. text-transform:none;
  3569. visibility:hidden;
  3570. }
  3571. #u160199_img {
  3572. border-width:0px;
  3573. position:absolute;
  3574. left:0px;
  3575. top:0px;
  3576. width:6px;
  3577. height:6px;
  3578. }
  3579. #u160199 {
  3580. border-width:0px;
  3581. position:absolute;
  3582. left:835px;
  3583. top:82px;
  3584. width:6px;
  3585. height:6px;
  3586. display:flex;
  3587. }
  3588. #u160199 .text {
  3589. position:absolute;
  3590. align-self:center;
  3591. padding:2px 2px 2px 2px;
  3592. box-sizing:border-box;
  3593. width:100%;
  3594. }
  3595. #u160199_text {
  3596. border-width:0px;
  3597. word-wrap:break-word;
  3598. text-transform:none;
  3599. visibility:hidden;
  3600. }
  3601. #u160200 {
  3602. border-width:0px;
  3603. position:absolute;
  3604. left:0px;
  3605. top:0px;
  3606. width:0px;
  3607. height:0px;
  3608. }
  3609. #u160201_img {
  3610. border-width:0px;
  3611. position:absolute;
  3612. left:0px;
  3613. top:0px;
  3614. width:5px;
  3615. height:5px;
  3616. }
  3617. #u160201 {
  3618. border-width:0px;
  3619. position:absolute;
  3620. left:780px;
  3621. top:83px;
  3622. width:5px;
  3623. height:5px;
  3624. display:flex;
  3625. }
  3626. #u160201 .text {
  3627. position:absolute;
  3628. align-self:center;
  3629. padding:2px 2px 2px 2px;
  3630. box-sizing:border-box;
  3631. width:100%;
  3632. }
  3633. #u160201_text {
  3634. border-width:0px;
  3635. word-wrap:break-word;
  3636. text-transform:none;
  3637. visibility:hidden;
  3638. }
  3639. #u160202_img {
  3640. border-width:0px;
  3641. position:absolute;
  3642. left:0px;
  3643. top:0px;
  3644. width:5px;
  3645. height:5px;
  3646. }
  3647. #u160202 {
  3648. border-width:0px;
  3649. position:absolute;
  3650. left:796px;
  3651. top:83px;
  3652. width:5px;
  3653. height:5px;
  3654. display:flex;
  3655. }
  3656. #u160202 .text {
  3657. position:absolute;
  3658. align-self:center;
  3659. padding:2px 2px 2px 2px;
  3660. box-sizing:border-box;
  3661. width:100%;
  3662. }
  3663. #u160202_text {
  3664. border-width:0px;
  3665. word-wrap:break-word;
  3666. text-transform:none;
  3667. visibility:hidden;
  3668. }
  3669. #u160203_img {
  3670. border-width:0px;
  3671. position:absolute;
  3672. left:0px;
  3673. top:0px;
  3674. width:7px;
  3675. height:7px;
  3676. }
  3677. #u160203 {
  3678. border-width:0px;
  3679. position:absolute;
  3680. left:787px;
  3681. top:82px;
  3682. width:7px;
  3683. height:7px;
  3684. display:flex;
  3685. }
  3686. #u160203 .text {
  3687. position:absolute;
  3688. align-self:center;
  3689. padding:2px 2px 2px 2px;
  3690. box-sizing:border-box;
  3691. width:100%;
  3692. }
  3693. #u160203_text {
  3694. border-width:0px;
  3695. word-wrap:break-word;
  3696. text-transform:none;
  3697. visibility:hidden;
  3698. }
  3699. #u160204_img {
  3700. border-width:0px;
  3701. position:absolute;
  3702. left:0px;
  3703. top:0px;
  3704. width:19px;
  3705. height:2px;
  3706. }
  3707. #u160204 {
  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. #u160204 .text {
  3721. position:absolute;
  3722. align-self:center;
  3723. padding:2px 2px 2px 2px;
  3724. box-sizing:border-box;
  3725. width:100%;
  3726. }
  3727. #u160204_text {
  3728. border-width:0px;
  3729. word-wrap:break-word;
  3730. text-transform:none;
  3731. visibility:hidden;
  3732. }
  3733. #u160205_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. #u160205 {
  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. #u160205 .text {
  3769. position:absolute;
  3770. align-self:center;
  3771. padding:2px 2px 2px 2px;
  3772. box-sizing:border-box;
  3773. width:100%;
  3774. }
  3775. #u160205_text {
  3776. border-width:0px;
  3777. word-wrap:break-word;
  3778. text-transform:none;
  3779. visibility:hidden;
  3780. }
  3781. #u160206_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. #u160206 {
  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. #u160206 .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. #u160206_text {
  3821. border-width:0px;
  3822. white-space:nowrap;
  3823. text-transform:none;
  3824. }
  3825. #u160207_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. #u160207 {
  3841. border-width:0px;
  3842. position:absolute;
  3843. left:489px;
  3844. top:107px;
  3845. width:375px;
  3846. height:58px;
  3847. display:flex;
  3848. }
  3849. #u160207 .text {
  3850. position:absolute;
  3851. align-self:center;
  3852. padding:2px 2px 2px 2px;
  3853. box-sizing:border-box;
  3854. width:100%;
  3855. }
  3856. #u160207_text {
  3857. border-width:0px;
  3858. word-wrap:break-word;
  3859. text-transform:none;
  3860. visibility:hidden;
  3861. }
  3862. #u160208 {
  3863. border-width:0px;
  3864. position:absolute;
  3865. left:0px;
  3866. top:0px;
  3867. width:0px;
  3868. height:0px;
  3869. }
  3870. #u160209_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. #u160209 {
  3892. border-width:0px;
  3893. position:absolute;
  3894. left:489px;
  3895. top:165px;
  3896. width:375px;
  3897. height:80px;
  3898. display:flex;
  3899. }
  3900. #u160209 .text {
  3901. position:absolute;
  3902. align-self:center;
  3903. padding:2px 2px 2px 2px;
  3904. box-sizing:border-box;
  3905. width:100%;
  3906. }
  3907. #u160209_text {
  3908. border-width:0px;
  3909. word-wrap:break-word;
  3910. text-transform:none;
  3911. visibility:hidden;
  3912. }
  3913. #u160210_div {
  3914. border-width:0px;
  3915. position:absolute;
  3916. left:0px;
  3917. top:0px;
  3918. width:73px;
  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-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3933. font-weight:500;
  3934. font-style:normal;
  3935. font-size:18px;
  3936. line-height:30px;
  3937. }
  3938. #u160210 {
  3939. border-width:0px;
  3940. position:absolute;
  3941. left:508px;
  3942. top:175px;
  3943. width:73px;
  3944. height:30px;
  3945. display:flex;
  3946. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3947. font-weight:500;
  3948. font-style:normal;
  3949. font-size:18px;
  3950. line-height:30px;
  3951. }
  3952. #u160210 .text {
  3953. position:absolute;
  3954. align-self:flex-start;
  3955. padding:0px 0px 0px 0px;
  3956. box-sizing:border-box;
  3957. width:100%;
  3958. }
  3959. #u160210_text {
  3960. border-width:0px;
  3961. white-space:nowrap;
  3962. text-transform:none;
  3963. }
  3964. #u160211_input {
  3965. position:absolute;
  3966. left:0px;
  3967. top:0px;
  3968. width:346px;
  3969. height:22px;
  3970. padding:2px 2px 2px 2px;
  3971. font-family:'ArialMT', 'Arial', sans-serif;
  3972. font-weight:400;
  3973. font-style:normal;
  3974. font-size:14px;
  3975. letter-spacing:normal;
  3976. color:#1890FF;
  3977. vertical-align:none;
  3978. text-align:left;
  3979. text-transform:none;
  3980. background-color:transparent;
  3981. border-color:transparent;
  3982. }
  3983. #u160211_input.disabled {
  3984. position:absolute;
  3985. left:0px;
  3986. top:0px;
  3987. width:346px;
  3988. height:22px;
  3989. padding:2px 2px 2px 2px;
  3990. font-family:'ArialMT', 'Arial', sans-serif;
  3991. font-weight:400;
  3992. font-style:normal;
  3993. font-size:14px;
  3994. letter-spacing:normal;
  3995. color:#1890FF;
  3996. vertical-align:none;
  3997. text-align:left;
  3998. text-transform:none;
  3999. background-color:transparent;
  4000. border-color:transparent;
  4001. }
  4002. #u160211_div {
  4003. border-width:0px;
  4004. position:absolute;
  4005. left:0px;
  4006. top:0px;
  4007. width:346px;
  4008. height:22px;
  4009. background:inherit;
  4010. background-color:rgba(255, 255, 255, 1);
  4011. border:none;
  4012. border-radius:0px;
  4013. -moz-box-shadow:none;
  4014. -webkit-box-shadow:none;
  4015. box-shadow:none;
  4016. font-size:14px;
  4017. color:#1890FF;
  4018. }
  4019. #u160211 {
  4020. border-width:0px;
  4021. position:absolute;
  4022. left:508px;
  4023. top:208px;
  4024. width:346px;
  4025. height:22px;
  4026. display:flex;
  4027. font-size:14px;
  4028. color:#1890FF;
  4029. }
  4030. #u160211 .text {
  4031. position:absolute;
  4032. align-self:flex-start;
  4033. padding:2px 2px 2px 2px;
  4034. box-sizing:border-box;
  4035. width:100%;
  4036. }
  4037. #u160211_div.disabled {
  4038. border-width:0px;
  4039. position:absolute;
  4040. left:0px;
  4041. top:0px;
  4042. width:346px;
  4043. height:22px;
  4044. background:inherit;
  4045. background-color:rgba(240, 240, 240, 1);
  4046. border:none;
  4047. border-radius:0px;
  4048. -moz-box-shadow:none;
  4049. -webkit-box-shadow:none;
  4050. box-shadow:none;
  4051. font-size:14px;
  4052. color:#1890FF;
  4053. }
  4054. #u160211.disabled {
  4055. }
  4056. .u160211_input_option {
  4057. font-size:14px;
  4058. }
  4059. #u160212_div {
  4060. border-width:0px;
  4061. position:absolute;
  4062. left:0px;
  4063. top:0px;
  4064. width:375px;
  4065. height:440px;
  4066. background:inherit;
  4067. background-color:rgba(255, 255, 255, 0.996078431372549);
  4068. border:none;
  4069. border-radius:0px;
  4070. -moz-box-shadow:none;
  4071. -webkit-box-shadow:none;
  4072. box-shadow:none;
  4073. }
  4074. #u160212 {
  4075. border-width:0px;
  4076. position:absolute;
  4077. left:489px;
  4078. top:255px;
  4079. width:375px;
  4080. height:440px;
  4081. display:flex;
  4082. }
  4083. #u160212 .text {
  4084. position:absolute;
  4085. align-self:center;
  4086. padding:2px 2px 2px 2px;
  4087. box-sizing:border-box;
  4088. width:100%;
  4089. }
  4090. #u160212_text {
  4091. border-width:0px;
  4092. word-wrap:break-word;
  4093. text-transform:none;
  4094. visibility:hidden;
  4095. }
  4096. #u160213_div {
  4097. border-width:0px;
  4098. position:absolute;
  4099. left:0px;
  4100. top:0px;
  4101. width:73px;
  4102. height:25px;
  4103. background:inherit;
  4104. background-color:rgba(255, 255, 255, 0);
  4105. border:none;
  4106. border-radius:0px;
  4107. -moz-box-shadow:none;
  4108. -webkit-box-shadow:none;
  4109. box-shadow:none;
  4110. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4111. font-weight:500;
  4112. font-style:normal;
  4113. font-size:18px;
  4114. }
  4115. #u160213 {
  4116. border-width:0px;
  4117. position:absolute;
  4118. left:509px;
  4119. top:274px;
  4120. width:73px;
  4121. height:25px;
  4122. display:flex;
  4123. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4124. font-weight:500;
  4125. font-style:normal;
  4126. font-size:18px;
  4127. }
  4128. #u160213 .text {
  4129. position:absolute;
  4130. align-self:flex-start;
  4131. padding:0px 0px 0px 0px;
  4132. box-sizing:border-box;
  4133. width:100%;
  4134. }
  4135. #u160213_text {
  4136. border-width:0px;
  4137. white-space:nowrap;
  4138. text-transform:none;
  4139. }
  4140. #u160214 {
  4141. border-width:0px;
  4142. position:absolute;
  4143. left:0px;
  4144. top:0px;
  4145. width:0px;
  4146. height:0px;
  4147. }
  4148. #u160215_div {
  4149. border-width:0px;
  4150. position:absolute;
  4151. left:0px;
  4152. top:0px;
  4153. width:322px;
  4154. height:40px;
  4155. background:inherit;
  4156. background-color:rgba(255, 255, 255, 1);
  4157. box-sizing:border-box;
  4158. border-width:1px;
  4159. border-style:solid;
  4160. border-color:rgba(215, 215, 215, 1);
  4161. border-left:0px;
  4162. border-top:0px;
  4163. border-right:0px;
  4164. border-radius:0px;
  4165. border-bottom-right-radius:0px;
  4166. border-bottom-left-radius:0px;
  4167. -moz-box-shadow:none;
  4168. -webkit-box-shadow:none;
  4169. box-shadow:none;
  4170. }
  4171. #u160215 {
  4172. border-width:0px;
  4173. position:absolute;
  4174. left:509px;
  4175. top:349px;
  4176. width:322px;
  4177. height:40px;
  4178. display:flex;
  4179. }
  4180. #u160215 .text {
  4181. position:absolute;
  4182. align-self:center;
  4183. padding:2px 2px 2px 2px;
  4184. box-sizing:border-box;
  4185. width:100%;
  4186. }
  4187. #u160215_text {
  4188. border-width:0px;
  4189. word-wrap:break-word;
  4190. text-transform:none;
  4191. visibility:hidden;
  4192. }
  4193. #u160216_div {
  4194. border-width:0px;
  4195. position:absolute;
  4196. left:0px;
  4197. top:0px;
  4198. width:64px;
  4199. height:20px;
  4200. background:inherit;
  4201. background-color:rgba(255, 255, 255, 0);
  4202. border:none;
  4203. border-radius:0px;
  4204. -moz-box-shadow:none;
  4205. -webkit-box-shadow:none;
  4206. box-shadow:none;
  4207. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4208. font-weight:400;
  4209. font-style:normal;
  4210. }
  4211. #u160216 {
  4212. border-width:0px;
  4213. position:absolute;
  4214. left:509px;
  4215. top:359px;
  4216. width:64px;
  4217. height:20px;
  4218. display:flex;
  4219. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4220. font-weight:400;
  4221. font-style:normal;
  4222. }
  4223. #u160216 .text {
  4224. position:absolute;
  4225. align-self:flex-start;
  4226. padding:0px 0px 0px 0px;
  4227. box-sizing:border-box;
  4228. width:100%;
  4229. }
  4230. #u160216_text {
  4231. border-width:0px;
  4232. white-space:nowrap;
  4233. text-transform:none;
  4234. }
  4235. #u160217_div {
  4236. border-width:0px;
  4237. position:absolute;
  4238. left:0px;
  4239. top:0px;
  4240. width:10px;
  4241. height:10px;
  4242. background:inherit;
  4243. background-color:rgba(255, 255, 255, 0);
  4244. box-sizing:border-box;
  4245. border-width:1px;
  4246. border-style:solid;
  4247. border-color:rgba(170, 170, 170, 1);
  4248. border-right:0px;
  4249. border-bottom:0px;
  4250. border-radius:0px;
  4251. border-top-right-radius:0px;
  4252. border-bottom-left-radius:0px;
  4253. -moz-box-shadow:none;
  4254. -webkit-box-shadow:none;
  4255. box-shadow:none;
  4256. }
  4257. #u160217 {
  4258. border-width:0px;
  4259. position:absolute;
  4260. left:815px;
  4261. top:364px;
  4262. width:10px;
  4263. height:10px;
  4264. display:flex;
  4265. -webkit-transform:rotate(135deg);
  4266. -moz-transform:rotate(135deg);
  4267. -ms-transform:rotate(135deg);
  4268. transform:rotate(135deg);
  4269. }
  4270. #u160217 .text {
  4271. position:absolute;
  4272. align-self:center;
  4273. padding:2px 2px 2px 2px;
  4274. box-sizing:border-box;
  4275. width:100%;
  4276. }
  4277. #u160217_text {
  4278. border-width:0px;
  4279. word-wrap:break-word;
  4280. text-transform:none;
  4281. visibility:hidden;
  4282. }
  4283. #u160218_div {
  4284. border-width:0px;
  4285. position:absolute;
  4286. left:0px;
  4287. top:0px;
  4288. width:43px;
  4289. height:20px;
  4290. background:inherit;
  4291. background-color:rgba(255, 255, 255, 0);
  4292. border:none;
  4293. border-radius:0px;
  4294. -moz-box-shadow:none;
  4295. -webkit-box-shadow:none;
  4296. box-shadow:none;
  4297. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4298. font-weight:400;
  4299. font-style:normal;
  4300. color:#AAAAAA;
  4301. }
  4302. #u160218 {
  4303. border-width:0px;
  4304. position:absolute;
  4305. left:770px;
  4306. top:359px;
  4307. width:43px;
  4308. height:20px;
  4309. display:flex;
  4310. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4311. font-weight:400;
  4312. font-style:normal;
  4313. color:#AAAAAA;
  4314. }
  4315. #u160218 .text {
  4316. position:absolute;
  4317. align-self:flex-start;
  4318. padding:0px 0px 0px 0px;
  4319. box-sizing:border-box;
  4320. width:100%;
  4321. }
  4322. #u160218_text {
  4323. border-width:0px;
  4324. white-space:nowrap;
  4325. text-transform:none;
  4326. }
  4327. #u160219_div {
  4328. border-width:0px;
  4329. position:absolute;
  4330. left:0px;
  4331. top:0px;
  4332. width:322px;
  4333. height:170px;
  4334. background:inherit;
  4335. background-color:rgba(255, 255, 255, 1);
  4336. box-sizing:border-box;
  4337. border-width:1px;
  4338. border-style:solid;
  4339. border-color:rgba(215, 215, 215, 1);
  4340. border-left:0px;
  4341. border-top:0px;
  4342. border-right:0px;
  4343. border-radius:0px;
  4344. border-bottom-right-radius:0px;
  4345. border-bottom-left-radius:0px;
  4346. -moz-box-shadow:none;
  4347. -webkit-box-shadow:none;
  4348. box-shadow:none;
  4349. }
  4350. #u160219 {
  4351. border-width:0px;
  4352. position:absolute;
  4353. left:509px;
  4354. top:389px;
  4355. width:322px;
  4356. height:170px;
  4357. display:flex;
  4358. }
  4359. #u160219 .text {
  4360. position:absolute;
  4361. align-self:center;
  4362. padding:2px 2px 2px 2px;
  4363. box-sizing:border-box;
  4364. width:100%;
  4365. }
  4366. #u160219_text {
  4367. border-width:0px;
  4368. word-wrap:break-word;
  4369. text-transform:none;
  4370. visibility:hidden;
  4371. }
  4372. #u160220_img {
  4373. border-width:0px;
  4374. position:absolute;
  4375. left:0px;
  4376. top:0px;
  4377. width:318px;
  4378. height:168px;
  4379. }
  4380. #u160220 {
  4381. border-width:0px;
  4382. position:absolute;
  4383. left:509px;
  4384. top:389px;
  4385. width:318px;
  4386. height:168px;
  4387. display:flex;
  4388. }
  4389. #u160220 .text {
  4390. position:absolute;
  4391. align-self:center;
  4392. padding:2px 2px 2px 2px;
  4393. box-sizing:border-box;
  4394. width:100%;
  4395. }
  4396. #u160220_text {
  4397. border-width:0px;
  4398. word-wrap:break-word;
  4399. text-transform:none;
  4400. visibility:hidden;
  4401. }
  4402. #u160221 {
  4403. border-width:0px;
  4404. position:absolute;
  4405. left:0px;
  4406. top:0px;
  4407. width:0px;
  4408. height:0px;
  4409. }
  4410. #u160222_div {
  4411. border-width:0px;
  4412. position:absolute;
  4413. left:0px;
  4414. top:0px;
  4415. width:322px;
  4416. height:40px;
  4417. background:inherit;
  4418. background-color:rgba(255, 255, 255, 1);
  4419. box-sizing:border-box;
  4420. border-width:1px;
  4421. border-style:solid;
  4422. border-color:rgba(215, 215, 215, 1);
  4423. border-left:0px;
  4424. border-top:0px;
  4425. border-right:0px;
  4426. border-radius:0px;
  4427. border-bottom-right-radius:0px;
  4428. border-bottom-left-radius:0px;
  4429. -moz-box-shadow:none;
  4430. -webkit-box-shadow:none;
  4431. box-shadow:none;
  4432. }
  4433. #u160222 {
  4434. border-width:0px;
  4435. position:absolute;
  4436. left:509px;
  4437. top:559px;
  4438. width:322px;
  4439. height:40px;
  4440. display:flex;
  4441. }
  4442. #u160222 .text {
  4443. position:absolute;
  4444. align-self:center;
  4445. padding:2px 2px 2px 2px;
  4446. box-sizing:border-box;
  4447. width:100%;
  4448. }
  4449. #u160222_text {
  4450. border-width:0px;
  4451. word-wrap:break-word;
  4452. text-transform:none;
  4453. visibility:hidden;
  4454. }
  4455. #u160223_div {
  4456. border-width:0px;
  4457. position:absolute;
  4458. left:0px;
  4459. top:0px;
  4460. width:36px;
  4461. height:20px;
  4462. background:inherit;
  4463. background-color:rgba(255, 255, 255, 0);
  4464. border:none;
  4465. border-radius:0px;
  4466. -moz-box-shadow:none;
  4467. -webkit-box-shadow:none;
  4468. box-shadow:none;
  4469. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4470. font-weight:400;
  4471. font-style:normal;
  4472. }
  4473. #u160223 {
  4474. border-width:0px;
  4475. position:absolute;
  4476. left:509px;
  4477. top:569px;
  4478. width:36px;
  4479. height:20px;
  4480. display:flex;
  4481. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4482. font-weight:400;
  4483. font-style:normal;
  4484. }
  4485. #u160223 .text {
  4486. position:absolute;
  4487. align-self:flex-start;
  4488. padding:0px 0px 0px 0px;
  4489. box-sizing:border-box;
  4490. width:100%;
  4491. }
  4492. #u160223_text {
  4493. border-width:0px;
  4494. white-space:nowrap;
  4495. text-transform:none;
  4496. }
  4497. #u160224_div {
  4498. border-width:0px;
  4499. position:absolute;
  4500. left:0px;
  4501. top:0px;
  4502. width:43px;
  4503. height:20px;
  4504. background:inherit;
  4505. background-color:rgba(255, 255, 255, 0);
  4506. border:none;
  4507. border-radius:0px;
  4508. -moz-box-shadow:none;
  4509. -webkit-box-shadow:none;
  4510. box-shadow:none;
  4511. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4512. font-weight:400;
  4513. font-style:normal;
  4514. color:#AAAAAA;
  4515. }
  4516. #u160224 {
  4517. border-width:0px;
  4518. position:absolute;
  4519. left:784px;
  4520. top:569px;
  4521. width:43px;
  4522. height:20px;
  4523. display:flex;
  4524. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4525. font-weight:400;
  4526. font-style:normal;
  4527. color:#AAAAAA;
  4528. }
  4529. #u160224 .text {
  4530. position:absolute;
  4531. align-self:flex-start;
  4532. padding:0px 0px 0px 0px;
  4533. box-sizing:border-box;
  4534. width:100%;
  4535. }
  4536. #u160224_text {
  4537. border-width:0px;
  4538. white-space:nowrap;
  4539. text-transform:none;
  4540. }
  4541. #u160225 {
  4542. border-width:0px;
  4543. position:absolute;
  4544. left:0px;
  4545. top:0px;
  4546. width:0px;
  4547. height:0px;
  4548. }
  4549. #u160226_div {
  4550. border-width:0px;
  4551. position:absolute;
  4552. left:0px;
  4553. top:0px;
  4554. width:322px;
  4555. height:40px;
  4556. background:inherit;
  4557. background-color:rgba(255, 255, 255, 1);
  4558. box-sizing:border-box;
  4559. border-width:1px;
  4560. border-style:solid;
  4561. border-color:rgba(215, 215, 215, 1);
  4562. border-left:0px;
  4563. border-top:0px;
  4564. border-right:0px;
  4565. border-radius:0px;
  4566. border-bottom-right-radius:0px;
  4567. border-bottom-left-radius:0px;
  4568. -moz-box-shadow:none;
  4569. -webkit-box-shadow:none;
  4570. box-shadow:none;
  4571. }
  4572. #u160226 {
  4573. border-width:0px;
  4574. position:absolute;
  4575. left:509px;
  4576. top:600px;
  4577. width:322px;
  4578. height:40px;
  4579. display:flex;
  4580. }
  4581. #u160226 .text {
  4582. position:absolute;
  4583. align-self:center;
  4584. padding:2px 2px 2px 2px;
  4585. box-sizing:border-box;
  4586. width:100%;
  4587. }
  4588. #u160226_text {
  4589. border-width:0px;
  4590. word-wrap:break-word;
  4591. text-transform:none;
  4592. visibility:hidden;
  4593. }
  4594. #u160227_div {
  4595. border-width:0px;
  4596. position:absolute;
  4597. left:0px;
  4598. top:0px;
  4599. width:64px;
  4600. height:20px;
  4601. background:inherit;
  4602. background-color:rgba(255, 255, 255, 0);
  4603. border:none;
  4604. border-radius:0px;
  4605. -moz-box-shadow:none;
  4606. -webkit-box-shadow:none;
  4607. box-shadow:none;
  4608. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4609. font-weight:400;
  4610. font-style:normal;
  4611. }
  4612. #u160227 {
  4613. border-width:0px;
  4614. position:absolute;
  4615. left:509px;
  4616. top:610px;
  4617. width:64px;
  4618. height:20px;
  4619. display:flex;
  4620. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4621. font-weight:400;
  4622. font-style:normal;
  4623. }
  4624. #u160227 .text {
  4625. position:absolute;
  4626. align-self:flex-start;
  4627. padding:0px 0px 0px 0px;
  4628. box-sizing:border-box;
  4629. width:100%;
  4630. }
  4631. #u160227_text {
  4632. border-width:0px;
  4633. white-space:nowrap;
  4634. text-transform:none;
  4635. }
  4636. #u160228_div {
  4637. border-width:0px;
  4638. position:absolute;
  4639. left:0px;
  4640. top:0px;
  4641. width:43px;
  4642. height:20px;
  4643. background:inherit;
  4644. background-color:rgba(255, 255, 255, 0);
  4645. border:none;
  4646. border-radius:0px;
  4647. -moz-box-shadow:none;
  4648. -webkit-box-shadow:none;
  4649. box-shadow:none;
  4650. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4651. font-weight:400;
  4652. font-style:normal;
  4653. color:#AAAAAA;
  4654. }
  4655. #u160228 {
  4656. border-width:0px;
  4657. position:absolute;
  4658. left:784px;
  4659. top:610px;
  4660. width:43px;
  4661. height:20px;
  4662. display:flex;
  4663. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4664. font-weight:400;
  4665. font-style:normal;
  4666. color:#AAAAAA;
  4667. }
  4668. #u160228 .text {
  4669. position:absolute;
  4670. align-self:flex-start;
  4671. padding:0px 0px 0px 0px;
  4672. box-sizing:border-box;
  4673. width:100%;
  4674. }
  4675. #u160228_text {
  4676. border-width:0px;
  4677. white-space:nowrap;
  4678. text-transform:none;
  4679. }
  4680. #u160229 {
  4681. border-width:0px;
  4682. position:absolute;
  4683. left:0px;
  4684. top:0px;
  4685. width:0px;
  4686. height:0px;
  4687. }
  4688. #u160230_div {
  4689. border-width:0px;
  4690. position:absolute;
  4691. left:0px;
  4692. top:0px;
  4693. width:322px;
  4694. height:40px;
  4695. background:inherit;
  4696. background-color:rgba(255, 255, 255, 1);
  4697. border:none;
  4698. border-left:0px;
  4699. border-top:0px;
  4700. border-right:0px;
  4701. border-radius:0px;
  4702. border-bottom-right-radius:0px;
  4703. border-bottom-left-radius:0px;
  4704. -moz-box-shadow:none;
  4705. -webkit-box-shadow:none;
  4706. box-shadow:none;
  4707. }
  4708. #u160230 {
  4709. border-width:0px;
  4710. position:absolute;
  4711. left:509px;
  4712. top:640px;
  4713. width:322px;
  4714. height:40px;
  4715. display:flex;
  4716. }
  4717. #u160230 .text {
  4718. position:absolute;
  4719. align-self:center;
  4720. padding:2px 2px 2px 2px;
  4721. box-sizing:border-box;
  4722. width:100%;
  4723. }
  4724. #u160230_text {
  4725. border-width:0px;
  4726. word-wrap:break-word;
  4727. text-transform:none;
  4728. visibility:hidden;
  4729. }
  4730. #u160231_div {
  4731. border-width:0px;
  4732. position:absolute;
  4733. left:0px;
  4734. top:0px;
  4735. width:57px;
  4736. height:20px;
  4737. background:inherit;
  4738. background-color:rgba(255, 255, 255, 0);
  4739. border:none;
  4740. border-radius:0px;
  4741. -moz-box-shadow:none;
  4742. -webkit-box-shadow:none;
  4743. box-shadow:none;
  4744. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4745. font-weight:400;
  4746. font-style:normal;
  4747. }
  4748. #u160231 {
  4749. border-width:0px;
  4750. position:absolute;
  4751. left:509px;
  4752. top:650px;
  4753. width:57px;
  4754. height:20px;
  4755. display:flex;
  4756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4757. font-weight:400;
  4758. font-style:normal;
  4759. }
  4760. #u160231 .text {
  4761. position:absolute;
  4762. align-self:flex-start;
  4763. padding:0px 0px 0px 0px;
  4764. box-sizing:border-box;
  4765. width:100%;
  4766. }
  4767. #u160231_text {
  4768. border-width:0px;
  4769. white-space:nowrap;
  4770. text-transform:none;
  4771. }
  4772. #u160232_div {
  4773. border-width:0px;
  4774. position:absolute;
  4775. left:0px;
  4776. top:0px;
  4777. width:57px;
  4778. height:20px;
  4779. background:inherit;
  4780. background-color:rgba(255, 255, 255, 0);
  4781. border:none;
  4782. border-radius:0px;
  4783. -moz-box-shadow:none;
  4784. -webkit-box-shadow:none;
  4785. box-shadow:none;
  4786. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4787. font-weight:400;
  4788. font-style:normal;
  4789. color:#AAAAAA;
  4790. text-align:right;
  4791. }
  4792. #u160232 {
  4793. border-width:0px;
  4794. position:absolute;
  4795. left:770px;
  4796. top:650px;
  4797. width:57px;
  4798. height:20px;
  4799. display:flex;
  4800. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4801. font-weight:400;
  4802. font-style:normal;
  4803. color:#AAAAAA;
  4804. text-align:right;
  4805. }
  4806. #u160232 .text {
  4807. position:absolute;
  4808. align-self:flex-start;
  4809. padding:0px 0px 0px 0px;
  4810. box-sizing:border-box;
  4811. width:100%;
  4812. }
  4813. #u160232_text {
  4814. border-width:0px;
  4815. white-space:nowrap;
  4816. text-transform:none;
  4817. }
  4818. #u160233 {
  4819. border-width:0px;
  4820. position:absolute;
  4821. left:0px;
  4822. top:0px;
  4823. width:0px;
  4824. height:0px;
  4825. }
  4826. #u160234 {
  4827. border-width:0px;
  4828. position:absolute;
  4829. left:0px;
  4830. top:0px;
  4831. width:0px;
  4832. height:0px;
  4833. }
  4834. #u160235_img {
  4835. border-width:0px;
  4836. position:absolute;
  4837. left:0px;
  4838. top:0px;
  4839. width:27px;
  4840. height:27px;
  4841. }
  4842. #u160235 {
  4843. border-width:0px;
  4844. position:absolute;
  4845. left:718px;
  4846. top:122px;
  4847. width:27px;
  4848. height:27px;
  4849. display:flex;
  4850. font-size:12px;
  4851. color:#FFFFFF;
  4852. }
  4853. #u160235 .text {
  4854. position:absolute;
  4855. align-self:center;
  4856. padding:2px 2px 2px 2px;
  4857. box-sizing:border-box;
  4858. width:100%;
  4859. }
  4860. #u160235_text {
  4861. border-width:0px;
  4862. word-wrap:break-word;
  4863. text-transform:none;
  4864. }
  4865. #u160236_div {
  4866. border-width:0px;
  4867. position:absolute;
  4868. left:0px;
  4869. top:0px;
  4870. width:57px;
  4871. height:30px;
  4872. background:inherit;
  4873. background-color:rgba(255, 255, 255, 0);
  4874. border:none;
  4875. border-left:0px;
  4876. border-top:0px;
  4877. border-right:0px;
  4878. border-radius:0px;
  4879. border-bottom-right-radius:0px;
  4880. border-bottom-left-radius:0px;
  4881. -moz-box-shadow:none;
  4882. -webkit-box-shadow:none;
  4883. box-shadow:none;
  4884. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4885. font-weight:400;
  4886. font-style:normal;
  4887. font-size:14px;
  4888. color:#FFFFFF;
  4889. line-height:30px;
  4890. }
  4891. #u160236 {
  4892. border-width:0px;
  4893. position:absolute;
  4894. left:752px;
  4895. top:121px;
  4896. width:57px;
  4897. height:30px;
  4898. display:flex;
  4899. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4900. font-weight:400;
  4901. font-style:normal;
  4902. font-size:14px;
  4903. color:#FFFFFF;
  4904. line-height:30px;
  4905. }
  4906. #u160236 .text {
  4907. position:absolute;
  4908. align-self:center;
  4909. padding:0px 0px 0px 0px;
  4910. box-sizing:border-box;
  4911. width:100%;
  4912. }
  4913. #u160236_text {
  4914. border-width:0px;
  4915. white-space:nowrap;
  4916. text-transform:none;
  4917. }
  4918. #u160237_img {
  4919. border-width:0px;
  4920. position:absolute;
  4921. left:0px;
  4922. top:0px;
  4923. width:27px;
  4924. height:27px;
  4925. }
  4926. #u160237 {
  4927. border-width:0px;
  4928. position:absolute;
  4929. left:532px;
  4930. top:122px;
  4931. width:27px;
  4932. height:27px;
  4933. display:flex;
  4934. font-size:12px;
  4935. color:#1890FF;
  4936. }
  4937. #u160237 .text {
  4938. position:absolute;
  4939. align-self:center;
  4940. padding:2px 2px 2px 2px;
  4941. box-sizing:border-box;
  4942. width:100%;
  4943. }
  4944. #u160237_text {
  4945. border-width:0px;
  4946. word-wrap:break-word;
  4947. text-transform:none;
  4948. }
  4949. #u160238_div {
  4950. border-width:0px;
  4951. position:absolute;
  4952. left:0px;
  4953. top:0px;
  4954. width:57px;
  4955. height:30px;
  4956. background:inherit;
  4957. background-color:rgba(255, 255, 255, 0);
  4958. border:none;
  4959. border-left:0px;
  4960. border-top:0px;
  4961. border-right:0px;
  4962. border-radius:0px;
  4963. border-bottom-right-radius:0px;
  4964. border-bottom-left-radius:0px;
  4965. -moz-box-shadow:none;
  4966. -webkit-box-shadow:none;
  4967. box-shadow:none;
  4968. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4969. font-weight:400;
  4970. font-style:normal;
  4971. font-size:14px;
  4972. color:#FFFFFF;
  4973. line-height:30px;
  4974. }
  4975. #u160238 {
  4976. border-width:0px;
  4977. position:absolute;
  4978. left:566px;
  4979. top:121px;
  4980. width:57px;
  4981. height:30px;
  4982. display:flex;
  4983. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4984. font-weight:400;
  4985. font-style:normal;
  4986. font-size:14px;
  4987. color:#FFFFFF;
  4988. line-height:30px;
  4989. }
  4990. #u160238 .text {
  4991. position:absolute;
  4992. align-self:center;
  4993. padding:0px 0px 0px 0px;
  4994. box-sizing:border-box;
  4995. width:100%;
  4996. }
  4997. #u160238_text {
  4998. border-width:0px;
  4999. white-space:nowrap;
  5000. text-transform:none;
  5001. }
  5002. #u160239_img {
  5003. border-width:0px;
  5004. position:absolute;
  5005. left:0px;
  5006. top:0px;
  5007. width:71px;
  5008. height:2px;
  5009. }
  5010. #u160239 {
  5011. border-width:0px;
  5012. position:absolute;
  5013. left:642px;
  5014. top:135px;
  5015. width:70px;
  5016. height:1px;
  5017. display:flex;
  5018. color:#FFFFFF;
  5019. }
  5020. #u160239 .text {
  5021. position:absolute;
  5022. align-self:center;
  5023. padding:2px 2px 2px 2px;
  5024. box-sizing:border-box;
  5025. width:100%;
  5026. }
  5027. #u160239_text {
  5028. border-width:0px;
  5029. word-wrap:break-word;
  5030. text-transform:none;
  5031. visibility:hidden;
  5032. }
  5033. #u160240 {
  5034. border-width:0px;
  5035. position:absolute;
  5036. left:0px;
  5037. top:0px;
  5038. width:0px;
  5039. height:0px;
  5040. }
  5041. #u160241_div {
  5042. border-width:0px;
  5043. position:absolute;
  5044. left:0px;
  5045. top:0px;
  5046. width:322px;
  5047. height:40px;
  5048. background:inherit;
  5049. background-color:rgba(255, 255, 255, 1);
  5050. box-sizing:border-box;
  5051. border-width:1px;
  5052. border-style:solid;
  5053. border-color:rgba(215, 215, 215, 1);
  5054. border-left:0px;
  5055. border-top:0px;
  5056. border-right:0px;
  5057. border-radius:0px;
  5058. border-bottom-right-radius:0px;
  5059. border-bottom-left-radius:0px;
  5060. -moz-box-shadow:none;
  5061. -webkit-box-shadow:none;
  5062. box-shadow:none;
  5063. }
  5064. #u160241 {
  5065. border-width:0px;
  5066. position:absolute;
  5067. left:509px;
  5068. top:309px;
  5069. width:322px;
  5070. height:40px;
  5071. display:flex;
  5072. }
  5073. #u160241 .text {
  5074. position:absolute;
  5075. align-self:center;
  5076. padding:2px 2px 2px 2px;
  5077. box-sizing:border-box;
  5078. width:100%;
  5079. }
  5080. #u160241_text {
  5081. border-width:0px;
  5082. word-wrap:break-word;
  5083. text-transform:none;
  5084. visibility:hidden;
  5085. }
  5086. #u160242_div {
  5087. border-width:0px;
  5088. position:absolute;
  5089. left:0px;
  5090. top:0px;
  5091. width:64px;
  5092. height:20px;
  5093. background:inherit;
  5094. background-color:rgba(255, 255, 255, 0);
  5095. border:none;
  5096. border-radius:0px;
  5097. -moz-box-shadow:none;
  5098. -webkit-box-shadow:none;
  5099. box-shadow:none;
  5100. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5101. font-weight:400;
  5102. font-style:normal;
  5103. }
  5104. #u160242 {
  5105. border-width:0px;
  5106. position:absolute;
  5107. left:509px;
  5108. top:319px;
  5109. width:64px;
  5110. height:20px;
  5111. display:flex;
  5112. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5113. font-weight:400;
  5114. font-style:normal;
  5115. }
  5116. #u160242 .text {
  5117. position:absolute;
  5118. align-self:flex-start;
  5119. padding:0px 0px 0px 0px;
  5120. box-sizing:border-box;
  5121. width:100%;
  5122. }
  5123. #u160242_text {
  5124. border-width:0px;
  5125. white-space:nowrap;
  5126. text-transform:none;
  5127. }
  5128. #u160243_div {
  5129. border-width:0px;
  5130. position:absolute;
  5131. left:0px;
  5132. top:0px;
  5133. width:10px;
  5134. height:10px;
  5135. background:inherit;
  5136. background-color:rgba(255, 255, 255, 0);
  5137. box-sizing:border-box;
  5138. border-width:1px;
  5139. border-style:solid;
  5140. border-color:rgba(170, 170, 170, 1);
  5141. border-right:0px;
  5142. border-bottom:0px;
  5143. border-radius:0px;
  5144. border-top-right-radius:0px;
  5145. border-bottom-left-radius:0px;
  5146. -moz-box-shadow:none;
  5147. -webkit-box-shadow:none;
  5148. box-shadow:none;
  5149. }
  5150. #u160243 {
  5151. border-width:0px;
  5152. position:absolute;
  5153. left:815px;
  5154. top:324px;
  5155. width:10px;
  5156. height:10px;
  5157. display:flex;
  5158. -webkit-transform:rotate(135deg);
  5159. -moz-transform:rotate(135deg);
  5160. -ms-transform:rotate(135deg);
  5161. transform:rotate(135deg);
  5162. }
  5163. #u160243 .text {
  5164. position:absolute;
  5165. align-self:center;
  5166. padding:2px 2px 2px 2px;
  5167. box-sizing:border-box;
  5168. width:100%;
  5169. }
  5170. #u160243_text {
  5171. border-width:0px;
  5172. word-wrap:break-word;
  5173. text-transform:none;
  5174. visibility:hidden;
  5175. }
  5176. #u160244_div {
  5177. border-width:0px;
  5178. position:absolute;
  5179. left:0px;
  5180. top:0px;
  5181. width:43px;
  5182. height:20px;
  5183. background:inherit;
  5184. background-color:rgba(255, 255, 255, 0);
  5185. border:none;
  5186. border-radius:0px;
  5187. -moz-box-shadow:none;
  5188. -webkit-box-shadow:none;
  5189. box-shadow:none;
  5190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5191. font-weight:400;
  5192. font-style:normal;
  5193. color:#AAAAAA;
  5194. }
  5195. #u160244 {
  5196. border-width:0px;
  5197. position:absolute;
  5198. left:770px;
  5199. top:319px;
  5200. width:43px;
  5201. height:20px;
  5202. display:flex;
  5203. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5204. font-weight:400;
  5205. font-style:normal;
  5206. color:#AAAAAA;
  5207. }
  5208. #u160244 .text {
  5209. position:absolute;
  5210. align-self:flex-start;
  5211. padding:0px 0px 0px 0px;
  5212. box-sizing:border-box;
  5213. width:100%;
  5214. }
  5215. #u160244_text {
  5216. border-width:0px;
  5217. white-space:nowrap;
  5218. text-transform:none;
  5219. }
  5220. #u160245 {
  5221. border-width:0px;
  5222. position:absolute;
  5223. left:0px;
  5224. top:0px;
  5225. width:0px;
  5226. height:0px;
  5227. }
  5228. #u160246_div {
  5229. border-width:0px;
  5230. position:absolute;
  5231. left:0px;
  5232. top:0px;
  5233. width:375px;
  5234. height:60px;
  5235. background:inherit;
  5236. background-color:rgba(255, 255, 255, 1);
  5237. border:none;
  5238. border-top:0px;
  5239. border-radius:28px;
  5240. border-top-left-radius:0px;
  5241. border-top-right-radius:0px;
  5242. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  5243. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  5244. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  5245. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5246. font-weight:400;
  5247. font-style:normal;
  5248. font-size:14px;
  5249. color:#FFFFFF;
  5250. }
  5251. #u160246 {
  5252. border-width:0px;
  5253. position:absolute;
  5254. left:489px;
  5255. top:780px;
  5256. width:375px;
  5257. height:60px;
  5258. display:flex;
  5259. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5260. font-weight:400;
  5261. font-style:normal;
  5262. font-size:14px;
  5263. color:#FFFFFF;
  5264. }
  5265. #u160246 .text {
  5266. position:absolute;
  5267. align-self:center;
  5268. padding:2px 2px 2px 2px;
  5269. box-sizing:border-box;
  5270. width:100%;
  5271. }
  5272. #u160246_text {
  5273. border-width:0px;
  5274. word-wrap:break-word;
  5275. text-transform:none;
  5276. visibility:hidden;
  5277. }
  5278. #u160247_div {
  5279. border-width:0px;
  5280. position:absolute;
  5281. left:0px;
  5282. top:0px;
  5283. width:324px;
  5284. height:40px;
  5285. background:inherit;
  5286. background-color:rgba(215, 215, 215, 1);
  5287. border:none;
  5288. border-radius:63px;
  5289. -moz-box-shadow:none;
  5290. -webkit-box-shadow:none;
  5291. box-shadow:none;
  5292. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5293. font-weight:400;
  5294. font-style:normal;
  5295. font-size:14px;
  5296. color:#FFFFFF;
  5297. }
  5298. #u160247 {
  5299. border-width:0px;
  5300. position:absolute;
  5301. left:517px;
  5302. top:789px;
  5303. width:324px;
  5304. height:40px;
  5305. display:flex;
  5306. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5307. font-weight:400;
  5308. font-style:normal;
  5309. font-size:14px;
  5310. color:#FFFFFF;
  5311. }
  5312. #u160247 .text {
  5313. position:absolute;
  5314. align-self:center;
  5315. padding:2px 2px 2px 2px;
  5316. box-sizing:border-box;
  5317. width:100%;
  5318. }
  5319. #u160247_text {
  5320. border-width:0px;
  5321. word-wrap:break-word;
  5322. text-transform:none;
  5323. }
  5324. #u160248 {
  5325. border-width:0px;
  5326. position:absolute;
  5327. left:0px;
  5328. top:0px;
  5329. width:0px;
  5330. height:0px;
  5331. }
  5332. #u160249_div {
  5333. border-width:0px;
  5334. position:absolute;
  5335. left:0px;
  5336. top:0px;
  5337. width:375px;
  5338. height:40px;
  5339. background:inherit;
  5340. background-color:rgba(255, 255, 255, 1);
  5341. border:none;
  5342. border-left:0px;
  5343. border-top:0px;
  5344. border-right:0px;
  5345. border-radius:0px;
  5346. border-bottom-right-radius:0px;
  5347. border-bottom-left-radius:0px;
  5348. -moz-box-shadow:none;
  5349. -webkit-box-shadow:none;
  5350. box-shadow:none;
  5351. }
  5352. #u160249 {
  5353. border-width:0px;
  5354. position:absolute;
  5355. left:956px;
  5356. top:67px;
  5357. width:375px;
  5358. height:40px;
  5359. display:flex;
  5360. }
  5361. #u160249 .text {
  5362. position:absolute;
  5363. align-self:center;
  5364. padding:2px 2px 2px 2px;
  5365. box-sizing:border-box;
  5366. width:100%;
  5367. }
  5368. #u160249_text {
  5369. border-width:0px;
  5370. word-wrap:break-word;
  5371. text-transform:none;
  5372. visibility:hidden;
  5373. }
  5374. #u160250 {
  5375. border-width:0px;
  5376. position:absolute;
  5377. left:0px;
  5378. top:0px;
  5379. width:0px;
  5380. height:0px;
  5381. }
  5382. #u160251_div {
  5383. border-width:0px;
  5384. position:absolute;
  5385. left:0px;
  5386. top:0px;
  5387. width:88px;
  5388. height:32px;
  5389. background:inherit;
  5390. background-color:rgba(255, 255, 255, 1);
  5391. box-sizing:border-box;
  5392. border-width:1px;
  5393. border-style:solid;
  5394. border-color:rgba(242, 242, 242, 1);
  5395. border-radius:33px;
  5396. -moz-box-shadow:none;
  5397. -webkit-box-shadow:none;
  5398. box-shadow:none;
  5399. }
  5400. #u160251 {
  5401. border-width:0px;
  5402. position:absolute;
  5403. left:1233px;
  5404. top:69px;
  5405. width:88px;
  5406. height:32px;
  5407. display:flex;
  5408. }
  5409. #u160251 .text {
  5410. position:absolute;
  5411. align-self:center;
  5412. padding:2px 2px 2px 2px;
  5413. box-sizing:border-box;
  5414. width:100%;
  5415. }
  5416. #u160251_text {
  5417. border-width:0px;
  5418. word-wrap:break-word;
  5419. text-transform:none;
  5420. visibility:hidden;
  5421. }
  5422. #u160252 {
  5423. border-width:0px;
  5424. position:absolute;
  5425. left:0px;
  5426. top:0px;
  5427. width:0px;
  5428. height:0px;
  5429. }
  5430. #u160253_img {
  5431. border-width:0px;
  5432. position:absolute;
  5433. left:0px;
  5434. top:0px;
  5435. width:18px;
  5436. height:18px;
  5437. }
  5438. #u160253 {
  5439. border-width:0px;
  5440. position:absolute;
  5441. left:1296px;
  5442. top:76px;
  5443. width:18px;
  5444. height:18px;
  5445. display:flex;
  5446. }
  5447. #u160253 .text {
  5448. position:absolute;
  5449. align-self:center;
  5450. padding:2px 2px 2px 2px;
  5451. box-sizing:border-box;
  5452. width:100%;
  5453. }
  5454. #u160253_text {
  5455. border-width:0px;
  5456. word-wrap:break-word;
  5457. text-transform:none;
  5458. visibility:hidden;
  5459. }
  5460. #u160254_img {
  5461. border-width:0px;
  5462. position:absolute;
  5463. left:0px;
  5464. top:0px;
  5465. width:6px;
  5466. height:6px;
  5467. }
  5468. #u160254 {
  5469. border-width:0px;
  5470. position:absolute;
  5471. left:1302px;
  5472. top:82px;
  5473. width:6px;
  5474. height:6px;
  5475. display:flex;
  5476. }
  5477. #u160254 .text {
  5478. position:absolute;
  5479. align-self:center;
  5480. padding:2px 2px 2px 2px;
  5481. box-sizing:border-box;
  5482. width:100%;
  5483. }
  5484. #u160254_text {
  5485. border-width:0px;
  5486. word-wrap:break-word;
  5487. text-transform:none;
  5488. visibility:hidden;
  5489. }
  5490. #u160255 {
  5491. border-width:0px;
  5492. position:absolute;
  5493. left:0px;
  5494. top:0px;
  5495. width:0px;
  5496. height:0px;
  5497. }
  5498. #u160256_img {
  5499. border-width:0px;
  5500. position:absolute;
  5501. left:0px;
  5502. top:0px;
  5503. width:5px;
  5504. height:5px;
  5505. }
  5506. #u160256 {
  5507. border-width:0px;
  5508. position:absolute;
  5509. left:1247px;
  5510. top:83px;
  5511. width:5px;
  5512. height:5px;
  5513. display:flex;
  5514. }
  5515. #u160256 .text {
  5516. position:absolute;
  5517. align-self:center;
  5518. padding:2px 2px 2px 2px;
  5519. box-sizing:border-box;
  5520. width:100%;
  5521. }
  5522. #u160256_text {
  5523. border-width:0px;
  5524. word-wrap:break-word;
  5525. text-transform:none;
  5526. visibility:hidden;
  5527. }
  5528. #u160257_img {
  5529. border-width:0px;
  5530. position:absolute;
  5531. left:0px;
  5532. top:0px;
  5533. width:5px;
  5534. height:5px;
  5535. }
  5536. #u160257 {
  5537. border-width:0px;
  5538. position:absolute;
  5539. left:1263px;
  5540. top:83px;
  5541. width:5px;
  5542. height:5px;
  5543. display:flex;
  5544. }
  5545. #u160257 .text {
  5546. position:absolute;
  5547. align-self:center;
  5548. padding:2px 2px 2px 2px;
  5549. box-sizing:border-box;
  5550. width:100%;
  5551. }
  5552. #u160257_text {
  5553. border-width:0px;
  5554. word-wrap:break-word;
  5555. text-transform:none;
  5556. visibility:hidden;
  5557. }
  5558. #u160258_img {
  5559. border-width:0px;
  5560. position:absolute;
  5561. left:0px;
  5562. top:0px;
  5563. width:7px;
  5564. height:7px;
  5565. }
  5566. #u160258 {
  5567. border-width:0px;
  5568. position:absolute;
  5569. left:1254px;
  5570. top:82px;
  5571. width:7px;
  5572. height:7px;
  5573. display:flex;
  5574. }
  5575. #u160258 .text {
  5576. position:absolute;
  5577. align-self:center;
  5578. padding:2px 2px 2px 2px;
  5579. box-sizing:border-box;
  5580. width:100%;
  5581. }
  5582. #u160258_text {
  5583. border-width:0px;
  5584. word-wrap:break-word;
  5585. text-transform:none;
  5586. visibility:hidden;
  5587. }
  5588. #u160259_img {
  5589. border-width:0px;
  5590. position:absolute;
  5591. left:0px;
  5592. top:0px;
  5593. width:19px;
  5594. height:2px;
  5595. }
  5596. #u160259 {
  5597. border-width:0px;
  5598. position:absolute;
  5599. left:1271px;
  5600. top:85px;
  5601. width:18px;
  5602. height:1px;
  5603. display:flex;
  5604. -webkit-transform:rotate(90deg);
  5605. -moz-transform:rotate(90deg);
  5606. -ms-transform:rotate(90deg);
  5607. transform:rotate(90deg);
  5608. }
  5609. #u160259 .text {
  5610. position:absolute;
  5611. align-self:center;
  5612. padding:2px 2px 2px 2px;
  5613. box-sizing:border-box;
  5614. width:100%;
  5615. }
  5616. #u160259_text {
  5617. border-width:0px;
  5618. word-wrap:break-word;
  5619. text-transform:none;
  5620. visibility:hidden;
  5621. }
  5622. #u160260_div {
  5623. border-width:0px;
  5624. position:absolute;
  5625. left:0px;
  5626. top:0px;
  5627. width:12px;
  5628. height:12px;
  5629. background:inherit;
  5630. background-color:rgba(255, 255, 255, 0);
  5631. box-sizing:border-box;
  5632. border-width:2px;
  5633. border-style:solid;
  5634. border-color:rgba(51, 51, 51, 1);
  5635. border-right:0px;
  5636. border-bottom:0px;
  5637. border-radius:0px;
  5638. border-top-right-radius:0px;
  5639. border-bottom-left-radius:0px;
  5640. -moz-box-shadow:none;
  5641. -webkit-box-shadow:none;
  5642. box-shadow:none;
  5643. }
  5644. #u160260 {
  5645. border-width:0px;
  5646. position:absolute;
  5647. left:972px;
  5648. top:79px;
  5649. width:12px;
  5650. height:12px;
  5651. display:flex;
  5652. -webkit-transform:rotate(315deg);
  5653. -moz-transform:rotate(315deg);
  5654. -ms-transform:rotate(315deg);
  5655. transform:rotate(315deg);
  5656. }
  5657. #u160260 .text {
  5658. position:absolute;
  5659. align-self:center;
  5660. padding:2px 2px 2px 2px;
  5661. box-sizing:border-box;
  5662. width:100%;
  5663. }
  5664. #u160260_text {
  5665. border-width:0px;
  5666. word-wrap:break-word;
  5667. text-transform:none;
  5668. visibility:hidden;
  5669. }
  5670. #u160261_div {
  5671. border-width:0px;
  5672. position:absolute;
  5673. left:0px;
  5674. top:0px;
  5675. width:109px;
  5676. height:25px;
  5677. background:inherit;
  5678. background-color:rgba(255, 255, 255, 0);
  5679. border:none;
  5680. border-radius:0px;
  5681. -moz-box-shadow:none;
  5682. -webkit-box-shadow:none;
  5683. box-shadow:none;
  5684. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5685. font-weight:400;
  5686. font-style:normal;
  5687. font-size:18px;
  5688. }
  5689. #u160261 {
  5690. border-width:0px;
  5691. position:absolute;
  5692. left:986px;
  5693. top:72px;
  5694. width:109px;
  5695. height:25px;
  5696. display:flex;
  5697. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5698. font-weight:400;
  5699. font-style:normal;
  5700. font-size:18px;
  5701. }
  5702. #u160261 .text {
  5703. position:absolute;
  5704. align-self:flex-start;
  5705. padding:0px 0px 0px 0px;
  5706. box-sizing:border-box;
  5707. width:100%;
  5708. }
  5709. #u160261_text {
  5710. border-width:0px;
  5711. white-space:nowrap;
  5712. text-transform:none;
  5713. }
  5714. #u160262_img {
  5715. border-width:0px;
  5716. position:absolute;
  5717. left:0px;
  5718. top:0px;
  5719. width:375px;
  5720. height:44px;
  5721. }
  5722. #u160262 {
  5723. border-width:0px;
  5724. position:absolute;
  5725. left:956px;
  5726. top:24px;
  5727. width:375px;
  5728. height:44px;
  5729. display:flex;
  5730. }
  5731. #u160262 .text {
  5732. position:absolute;
  5733. align-self:center;
  5734. padding:2px 2px 2px 2px;
  5735. box-sizing:border-box;
  5736. width:100%;
  5737. }
  5738. #u160262_text {
  5739. border-width:0px;
  5740. word-wrap:break-word;
  5741. text-transform:none;
  5742. visibility:hidden;
  5743. }
  5744. #u160264_img {
  5745. border-width:0px;
  5746. position:absolute;
  5747. left:0px;
  5748. top:0px;
  5749. width:433px;
  5750. height:865px;
  5751. }
  5752. #u160264 {
  5753. border-width:0px;
  5754. position:absolute;
  5755. left:1401px;
  5756. top:0px;
  5757. width:433px;
  5758. height:865px;
  5759. display:flex;
  5760. }
  5761. #u160264 .text {
  5762. position:absolute;
  5763. align-self:center;
  5764. padding:2px 2px 2px 2px;
  5765. box-sizing:border-box;
  5766. width:100%;
  5767. }
  5768. #u160264_text {
  5769. border-width:0px;
  5770. word-wrap:break-word;
  5771. text-transform:none;
  5772. visibility:hidden;
  5773. }
  5774. #u160265_div {
  5775. border-width:0px;
  5776. position:absolute;
  5777. left:0px;
  5778. top:0px;
  5779. width:375px;
  5780. height:40px;
  5781. background:inherit;
  5782. background-color:rgba(255, 255, 255, 1);
  5783. box-sizing:border-box;
  5784. border-width:1px;
  5785. border-style:solid;
  5786. border-color:rgba(215, 215, 215, 1);
  5787. border-left:0px;
  5788. border-top:0px;
  5789. border-right:0px;
  5790. border-radius:0px;
  5791. border-bottom-right-radius:0px;
  5792. border-bottom-left-radius:0px;
  5793. -moz-box-shadow:none;
  5794. -webkit-box-shadow:none;
  5795. box-shadow:none;
  5796. }
  5797. #u160265 {
  5798. border-width:0px;
  5799. position:absolute;
  5800. left:1430px;
  5801. top:67px;
  5802. width:375px;
  5803. height:40px;
  5804. display:flex;
  5805. }
  5806. #u160265 .text {
  5807. position:absolute;
  5808. align-self:center;
  5809. padding:2px 2px 2px 2px;
  5810. box-sizing:border-box;
  5811. width:100%;
  5812. }
  5813. #u160265_text {
  5814. border-width:0px;
  5815. word-wrap:break-word;
  5816. text-transform:none;
  5817. visibility:hidden;
  5818. }
  5819. #u160266 {
  5820. border-width:0px;
  5821. position:absolute;
  5822. left:0px;
  5823. top:0px;
  5824. width:0px;
  5825. height:0px;
  5826. }
  5827. #u160267_div {
  5828. border-width:0px;
  5829. position:absolute;
  5830. left:0px;
  5831. top:0px;
  5832. width:88px;
  5833. height:32px;
  5834. background:inherit;
  5835. background-color:rgba(255, 255, 255, 1);
  5836. box-sizing:border-box;
  5837. border-width:1px;
  5838. border-style:solid;
  5839. border-color:rgba(242, 242, 242, 1);
  5840. border-radius:33px;
  5841. -moz-box-shadow:none;
  5842. -webkit-box-shadow:none;
  5843. box-shadow:none;
  5844. }
  5845. #u160267 {
  5846. border-width:0px;
  5847. position:absolute;
  5848. left:1710px;
  5849. top:71px;
  5850. width:88px;
  5851. height:32px;
  5852. display:flex;
  5853. }
  5854. #u160267 .text {
  5855. position:absolute;
  5856. align-self:center;
  5857. padding:2px 2px 2px 2px;
  5858. box-sizing:border-box;
  5859. width:100%;
  5860. }
  5861. #u160267_text {
  5862. border-width:0px;
  5863. word-wrap:break-word;
  5864. text-transform:none;
  5865. visibility:hidden;
  5866. }
  5867. #u160268 {
  5868. border-width:0px;
  5869. position:absolute;
  5870. left:0px;
  5871. top:0px;
  5872. width:0px;
  5873. height:0px;
  5874. }
  5875. #u160269_img {
  5876. border-width:0px;
  5877. position:absolute;
  5878. left:0px;
  5879. top:0px;
  5880. width:18px;
  5881. height:18px;
  5882. }
  5883. #u160269 {
  5884. border-width:0px;
  5885. position:absolute;
  5886. left:1773px;
  5887. top:78px;
  5888. width:18px;
  5889. height:18px;
  5890. display:flex;
  5891. }
  5892. #u160269 .text {
  5893. position:absolute;
  5894. align-self:center;
  5895. padding:2px 2px 2px 2px;
  5896. box-sizing:border-box;
  5897. width:100%;
  5898. }
  5899. #u160269_text {
  5900. border-width:0px;
  5901. word-wrap:break-word;
  5902. text-transform:none;
  5903. visibility:hidden;
  5904. }
  5905. #u160270_img {
  5906. border-width:0px;
  5907. position:absolute;
  5908. left:0px;
  5909. top:0px;
  5910. width:6px;
  5911. height:6px;
  5912. }
  5913. #u160270 {
  5914. border-width:0px;
  5915. position:absolute;
  5916. left:1779px;
  5917. top:84px;
  5918. width:6px;
  5919. height:6px;
  5920. display:flex;
  5921. }
  5922. #u160270 .text {
  5923. position:absolute;
  5924. align-self:center;
  5925. padding:2px 2px 2px 2px;
  5926. box-sizing:border-box;
  5927. width:100%;
  5928. }
  5929. #u160270_text {
  5930. border-width:0px;
  5931. word-wrap:break-word;
  5932. text-transform:none;
  5933. visibility:hidden;
  5934. }
  5935. #u160271 {
  5936. border-width:0px;
  5937. position:absolute;
  5938. left:0px;
  5939. top:0px;
  5940. width:0px;
  5941. height:0px;
  5942. }
  5943. #u160272_img {
  5944. border-width:0px;
  5945. position:absolute;
  5946. left:0px;
  5947. top:0px;
  5948. width:5px;
  5949. height:5px;
  5950. }
  5951. #u160272 {
  5952. border-width:0px;
  5953. position:absolute;
  5954. left:1724px;
  5955. top:85px;
  5956. width:5px;
  5957. height:5px;
  5958. display:flex;
  5959. }
  5960. #u160272 .text {
  5961. position:absolute;
  5962. align-self:center;
  5963. padding:2px 2px 2px 2px;
  5964. box-sizing:border-box;
  5965. width:100%;
  5966. }
  5967. #u160272_text {
  5968. border-width:0px;
  5969. word-wrap:break-word;
  5970. text-transform:none;
  5971. visibility:hidden;
  5972. }
  5973. #u160273_img {
  5974. border-width:0px;
  5975. position:absolute;
  5976. left:0px;
  5977. top:0px;
  5978. width:5px;
  5979. height:5px;
  5980. }
  5981. #u160273 {
  5982. border-width:0px;
  5983. position:absolute;
  5984. left:1740px;
  5985. top:85px;
  5986. width:5px;
  5987. height:5px;
  5988. display:flex;
  5989. }
  5990. #u160273 .text {
  5991. position:absolute;
  5992. align-self:center;
  5993. padding:2px 2px 2px 2px;
  5994. box-sizing:border-box;
  5995. width:100%;
  5996. }
  5997. #u160273_text {
  5998. border-width:0px;
  5999. word-wrap:break-word;
  6000. text-transform:none;
  6001. visibility:hidden;
  6002. }
  6003. #u160274_img {
  6004. border-width:0px;
  6005. position:absolute;
  6006. left:0px;
  6007. top:0px;
  6008. width:7px;
  6009. height:7px;
  6010. }
  6011. #u160274 {
  6012. border-width:0px;
  6013. position:absolute;
  6014. left:1731px;
  6015. top:84px;
  6016. width:7px;
  6017. height:7px;
  6018. display:flex;
  6019. }
  6020. #u160274 .text {
  6021. position:absolute;
  6022. align-self:center;
  6023. padding:2px 2px 2px 2px;
  6024. box-sizing:border-box;
  6025. width:100%;
  6026. }
  6027. #u160274_text {
  6028. border-width:0px;
  6029. word-wrap:break-word;
  6030. text-transform:none;
  6031. visibility:hidden;
  6032. }
  6033. #u160275_img {
  6034. border-width:0px;
  6035. position:absolute;
  6036. left:0px;
  6037. top:0px;
  6038. width:19px;
  6039. height:2px;
  6040. }
  6041. #u160275 {
  6042. border-width:0px;
  6043. position:absolute;
  6044. left:1748px;
  6045. top:87px;
  6046. width:18px;
  6047. height:1px;
  6048. display:flex;
  6049. -webkit-transform:rotate(90deg);
  6050. -moz-transform:rotate(90deg);
  6051. -ms-transform:rotate(90deg);
  6052. transform:rotate(90deg);
  6053. }
  6054. #u160275 .text {
  6055. position:absolute;
  6056. align-self:center;
  6057. padding:2px 2px 2px 2px;
  6058. box-sizing:border-box;
  6059. width:100%;
  6060. }
  6061. #u160275_text {
  6062. border-width:0px;
  6063. word-wrap:break-word;
  6064. text-transform:none;
  6065. visibility:hidden;
  6066. }
  6067. #u160276_img {
  6068. border-width:0px;
  6069. position:absolute;
  6070. left:0px;
  6071. top:0px;
  6072. width:375px;
  6073. height:44px;
  6074. }
  6075. #u160276 {
  6076. border-width:0px;
  6077. position:absolute;
  6078. left:1430px;
  6079. top:24px;
  6080. width:375px;
  6081. height:44px;
  6082. display:flex;
  6083. }
  6084. #u160276 .text {
  6085. position:absolute;
  6086. align-self:center;
  6087. padding:2px 2px 2px 2px;
  6088. box-sizing:border-box;
  6089. width:100%;
  6090. }
  6091. #u160276_text {
  6092. border-width:0px;
  6093. word-wrap:break-word;
  6094. text-transform:none;
  6095. visibility:hidden;
  6096. }
  6097. #u160277_div {
  6098. border-width:0px;
  6099. position:absolute;
  6100. left:0px;
  6101. top:0px;
  6102. width:375px;
  6103. height:50px;
  6104. background:inherit;
  6105. background-color:rgba(255, 255, 255, 1);
  6106. box-sizing:border-box;
  6107. border-width:1px;
  6108. border-style:solid;
  6109. border-color:rgba(242, 242, 242, 1);
  6110. border-radius:26px;
  6111. border-top-left-radius:0px;
  6112. border-top-right-radius:0px;
  6113. -moz-box-shadow:none;
  6114. -webkit-box-shadow:none;
  6115. box-shadow:none;
  6116. }
  6117. #u160277 {
  6118. border-width:0px;
  6119. position:absolute;
  6120. left:1430px;
  6121. top:788px;
  6122. width:375px;
  6123. height:50px;
  6124. display:flex;
  6125. }
  6126. #u160277 .text {
  6127. position:absolute;
  6128. align-self:center;
  6129. padding:2px 2px 2px 2px;
  6130. box-sizing:border-box;
  6131. width:100%;
  6132. }
  6133. #u160277_text {
  6134. border-width:0px;
  6135. word-wrap:break-word;
  6136. text-transform:none;
  6137. visibility:hidden;
  6138. }
  6139. #u160278 {
  6140. border-width:0px;
  6141. position:absolute;
  6142. left:0px;
  6143. top:0px;
  6144. width:0px;
  6145. height:0px;
  6146. }
  6147. #u160279_img {
  6148. border-width:0px;
  6149. position:absolute;
  6150. left:0px;
  6151. top:0px;
  6152. width:24px;
  6153. height:24px;
  6154. }
  6155. #u160279 {
  6156. border-width:0px;
  6157. position:absolute;
  6158. left:1470px;
  6159. top:792px;
  6160. width:24px;
  6161. height:24px;
  6162. display:flex;
  6163. font-size:8px;
  6164. }
  6165. #u160279 .text {
  6166. position:absolute;
  6167. align-self:center;
  6168. padding:2px 2px 2px 2px;
  6169. box-sizing:border-box;
  6170. width:100%;
  6171. }
  6172. #u160279_text {
  6173. border-width:0px;
  6174. word-wrap:break-word;
  6175. text-transform:none;
  6176. }
  6177. #u160280_div {
  6178. border-width:0px;
  6179. position:absolute;
  6180. left:0px;
  6181. top:0px;
  6182. width:25px;
  6183. height:17px;
  6184. background:inherit;
  6185. background-color:rgba(255, 255, 255, 0);
  6186. border:none;
  6187. border-radius:0px;
  6188. -moz-box-shadow:none;
  6189. -webkit-box-shadow:none;
  6190. box-shadow:none;
  6191. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6192. font-weight:400;
  6193. font-style:normal;
  6194. font-size:12px;
  6195. }
  6196. #u160280 {
  6197. border-width:0px;
  6198. position:absolute;
  6199. left:1470px;
  6200. top:817px;
  6201. width:25px;
  6202. height:17px;
  6203. display:flex;
  6204. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6205. font-weight:400;
  6206. font-style:normal;
  6207. font-size:12px;
  6208. }
  6209. #u160280 .text {
  6210. position:absolute;
  6211. align-self:flex-start;
  6212. padding:0px 0px 0px 0px;
  6213. box-sizing:border-box;
  6214. width:100%;
  6215. }
  6216. #u160280_text {
  6217. border-width:0px;
  6218. white-space:nowrap;
  6219. text-transform:none;
  6220. }
  6221. #u160281 {
  6222. border-width:0px;
  6223. position:absolute;
  6224. left:0px;
  6225. top:0px;
  6226. width:0px;
  6227. height:0px;
  6228. }
  6229. #u160282_img {
  6230. border-width:0px;
  6231. position:absolute;
  6232. left:0px;
  6233. top:0px;
  6234. width:24px;
  6235. height:24px;
  6236. }
  6237. #u160282 {
  6238. border-width:0px;
  6239. position:absolute;
  6240. left:1740px;
  6241. top:794px;
  6242. width:24px;
  6243. height:24px;
  6244. display:flex;
  6245. font-size:8px;
  6246. }
  6247. #u160282 .text {
  6248. position:absolute;
  6249. align-self:center;
  6250. padding:2px 2px 2px 2px;
  6251. box-sizing:border-box;
  6252. width:100%;
  6253. }
  6254. #u160282_text {
  6255. border-width:0px;
  6256. word-wrap:break-word;
  6257. text-transform:none;
  6258. }
  6259. #u160283_div {
  6260. border-width:0px;
  6261. position:absolute;
  6262. left:0px;
  6263. top:0px;
  6264. width:25px;
  6265. height:17px;
  6266. background:inherit;
  6267. background-color:rgba(255, 255, 255, 0);
  6268. border:none;
  6269. border-radius:0px;
  6270. -moz-box-shadow:none;
  6271. -webkit-box-shadow:none;
  6272. box-shadow:none;
  6273. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6274. font-weight:400;
  6275. font-style:normal;
  6276. font-size:12px;
  6277. }
  6278. #u160283 {
  6279. border-width:0px;
  6280. position:absolute;
  6281. left:1740px;
  6282. top:819px;
  6283. width:25px;
  6284. height:17px;
  6285. display:flex;
  6286. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6287. font-weight:400;
  6288. font-style:normal;
  6289. font-size:12px;
  6290. }
  6291. #u160283 .text {
  6292. position:absolute;
  6293. align-self:flex-start;
  6294. padding:0px 0px 0px 0px;
  6295. box-sizing:border-box;
  6296. width:100%;
  6297. }
  6298. #u160283_text {
  6299. border-width:0px;
  6300. white-space:nowrap;
  6301. text-transform:none;
  6302. }
  6303. #u160284_div {
  6304. border-width:0px;
  6305. position:absolute;
  6306. left:0px;
  6307. top:0px;
  6308. width:375px;
  6309. height:681px;
  6310. background:inherit;
  6311. background-color:rgba(242, 242, 242, 0.462745098039216);
  6312. border:none;
  6313. border-radius:0px;
  6314. -moz-box-shadow:none;
  6315. -webkit-box-shadow:none;
  6316. box-shadow:none;
  6317. }
  6318. #u160284 {
  6319. border-width:0px;
  6320. position:absolute;
  6321. left:1430px;
  6322. top:107px;
  6323. width:375px;
  6324. height:681px;
  6325. display:flex;
  6326. }
  6327. #u160284 .text {
  6328. position:absolute;
  6329. align-self:center;
  6330. padding:2px 2px 2px 2px;
  6331. box-sizing:border-box;
  6332. width:100%;
  6333. }
  6334. #u160284_text {
  6335. border-width:0px;
  6336. word-wrap:break-word;
  6337. text-transform:none;
  6338. visibility:hidden;
  6339. }
  6340. #u160285 {
  6341. border-width:0px;
  6342. position:absolute;
  6343. left:0px;
  6344. top:0px;
  6345. width:0px;
  6346. height:0px;
  6347. }
  6348. #u160286_img {
  6349. border-width:0px;
  6350. position:absolute;
  6351. left:0px;
  6352. top:0px;
  6353. width:24px;
  6354. height:24px;
  6355. }
  6356. #u160286 {
  6357. border-width:0px;
  6358. position:absolute;
  6359. left:1652px;
  6360. top:792px;
  6361. width:24px;
  6362. height:24px;
  6363. display:flex;
  6364. font-size:8px;
  6365. }
  6366. #u160286 .text {
  6367. position:absolute;
  6368. align-self:center;
  6369. padding:2px 2px 2px 2px;
  6370. box-sizing:border-box;
  6371. width:100%;
  6372. }
  6373. #u160286_text {
  6374. border-width:0px;
  6375. word-wrap:break-word;
  6376. text-transform:none;
  6377. }
  6378. #u160287_div {
  6379. border-width:0px;
  6380. position:absolute;
  6381. left:0px;
  6382. top:0px;
  6383. width:37px;
  6384. height:17px;
  6385. background:inherit;
  6386. background-color:rgba(255, 255, 255, 0);
  6387. border:none;
  6388. border-radius:0px;
  6389. -moz-box-shadow:none;
  6390. -webkit-box-shadow:none;
  6391. box-shadow:none;
  6392. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6393. font-weight:400;
  6394. font-style:normal;
  6395. font-size:12px;
  6396. }
  6397. #u160287 {
  6398. border-width:0px;
  6399. position:absolute;
  6400. left:1646px;
  6401. top:817px;
  6402. width:37px;
  6403. height:17px;
  6404. display:flex;
  6405. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6406. font-weight:400;
  6407. font-style:normal;
  6408. font-size:12px;
  6409. }
  6410. #u160287 .text {
  6411. position:absolute;
  6412. align-self:flex-start;
  6413. padding:0px 0px 0px 0px;
  6414. box-sizing:border-box;
  6415. width:100%;
  6416. }
  6417. #u160287_text {
  6418. border-width:0px;
  6419. white-space:nowrap;
  6420. text-transform:none;
  6421. }
  6422. #u160288 {
  6423. border-width:0px;
  6424. position:absolute;
  6425. left:0px;
  6426. top:0px;
  6427. width:0px;
  6428. height:0px;
  6429. }
  6430. #u160289_img {
  6431. border-width:0px;
  6432. position:absolute;
  6433. left:0px;
  6434. top:0px;
  6435. width:24px;
  6436. height:24px;
  6437. }
  6438. #u160289 {
  6439. border-width:0px;
  6440. position:absolute;
  6441. left:1558px;
  6442. top:792px;
  6443. width:24px;
  6444. height:24px;
  6445. display:flex;
  6446. font-size:8px;
  6447. }
  6448. #u160289 .text {
  6449. position:absolute;
  6450. align-self:center;
  6451. padding:2px 2px 2px 2px;
  6452. box-sizing:border-box;
  6453. width:100%;
  6454. }
  6455. #u160289_text {
  6456. border-width:0px;
  6457. word-wrap:break-word;
  6458. text-transform:none;
  6459. }
  6460. #u160290_div {
  6461. border-width:0px;
  6462. position:absolute;
  6463. left:0px;
  6464. top:0px;
  6465. width:37px;
  6466. height:17px;
  6467. background:inherit;
  6468. background-color:rgba(255, 255, 255, 0);
  6469. border:none;
  6470. border-radius:0px;
  6471. -moz-box-shadow:none;
  6472. -webkit-box-shadow:none;
  6473. box-shadow:none;
  6474. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6475. font-weight:400;
  6476. font-style:normal;
  6477. font-size:12px;
  6478. }
  6479. #u160290 {
  6480. border-width:0px;
  6481. position:absolute;
  6482. left:1552px;
  6483. top:817px;
  6484. width:37px;
  6485. height:17px;
  6486. display:flex;
  6487. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6488. font-weight:400;
  6489. font-style:normal;
  6490. font-size:12px;
  6491. }
  6492. #u160290 .text {
  6493. position:absolute;
  6494. align-self:flex-start;
  6495. padding:0px 0px 0px 0px;
  6496. box-sizing:border-box;
  6497. width:100%;
  6498. }
  6499. #u160290_text {
  6500. border-width:0px;
  6501. white-space:nowrap;
  6502. text-transform:none;
  6503. }
  6504. #u160291_div {
  6505. border-width:0px;
  6506. position:absolute;
  6507. left:0px;
  6508. top:0px;
  6509. width:375px;
  6510. height:732px;
  6511. background:inherit;
  6512. background-color:rgba(244, 244, 244, 1);
  6513. box-sizing:border-box;
  6514. border-width:1px;
  6515. border-style:solid;
  6516. border-color:rgba(242, 242, 242, 1);
  6517. border-radius:26px;
  6518. border-top-left-radius:0px;
  6519. border-top-right-radius:0px;
  6520. -moz-box-shadow:none;
  6521. -webkit-box-shadow:none;
  6522. box-shadow:none;
  6523. }
  6524. #u160291 {
  6525. border-width:0px;
  6526. position:absolute;
  6527. left:1430px;
  6528. top:107px;
  6529. width:375px;
  6530. height:732px;
  6531. display:flex;
  6532. }
  6533. #u160291 .text {
  6534. position:absolute;
  6535. align-self:center;
  6536. padding:2px 2px 2px 2px;
  6537. box-sizing:border-box;
  6538. width:100%;
  6539. }
  6540. #u160291_text {
  6541. border-width:0px;
  6542. word-wrap:break-word;
  6543. text-transform:none;
  6544. visibility:hidden;
  6545. }
  6546. #u160292_div {
  6547. border-width:0px;
  6548. position:absolute;
  6549. left:0px;
  6550. top:0px;
  6551. width:375px;
  6552. height:732px;
  6553. background:inherit;
  6554. background-color:rgba(242, 242, 242, 1);
  6555. box-sizing:border-box;
  6556. border-width:1px;
  6557. border-style:solid;
  6558. border-color:rgba(242, 242, 242, 1);
  6559. border-radius:26px;
  6560. border-top-left-radius:0px;
  6561. border-top-right-radius:0px;
  6562. -moz-box-shadow:none;
  6563. -webkit-box-shadow:none;
  6564. box-shadow:none;
  6565. }
  6566. #u160292 {
  6567. border-width:0px;
  6568. position:absolute;
  6569. left:1430px;
  6570. top:107px;
  6571. width:375px;
  6572. height:732px;
  6573. display:flex;
  6574. }
  6575. #u160292 .text {
  6576. position:absolute;
  6577. align-self:center;
  6578. padding:2px 2px 2px 2px;
  6579. box-sizing:border-box;
  6580. width:100%;
  6581. }
  6582. #u160292_text {
  6583. border-width:0px;
  6584. word-wrap:break-word;
  6585. text-transform:none;
  6586. visibility:hidden;
  6587. }
  6588. #u160293 {
  6589. border-width:0px;
  6590. position:absolute;
  6591. left:0px;
  6592. top:0px;
  6593. width:0px;
  6594. height:0px;
  6595. }
  6596. #u160294_div {
  6597. border-width:0px;
  6598. position:absolute;
  6599. left:0px;
  6600. top:0px;
  6601. width:375px;
  6602. height:40px;
  6603. background:inherit;
  6604. background-color:rgba(255, 255, 255, 1);
  6605. border:none;
  6606. border-left:0px;
  6607. border-top:0px;
  6608. border-right:0px;
  6609. border-radius:0px;
  6610. border-bottom-right-radius:0px;
  6611. border-bottom-left-radius:0px;
  6612. -moz-box-shadow:none;
  6613. -webkit-box-shadow:none;
  6614. box-shadow:none;
  6615. }
  6616. #u160294 {
  6617. border-width:0px;
  6618. position:absolute;
  6619. left:1430px;
  6620. top:67px;
  6621. width:375px;
  6622. height:40px;
  6623. display:flex;
  6624. }
  6625. #u160294 .text {
  6626. position:absolute;
  6627. align-self:center;
  6628. padding:2px 2px 2px 2px;
  6629. box-sizing:border-box;
  6630. width:100%;
  6631. }
  6632. #u160294_text {
  6633. border-width:0px;
  6634. word-wrap:break-word;
  6635. text-transform:none;
  6636. visibility:hidden;
  6637. }
  6638. #u160295 {
  6639. border-width:0px;
  6640. position:absolute;
  6641. left:0px;
  6642. top:0px;
  6643. width:0px;
  6644. height:0px;
  6645. }
  6646. #u160296_div {
  6647. border-width:0px;
  6648. position:absolute;
  6649. left:0px;
  6650. top:0px;
  6651. width:88px;
  6652. height:32px;
  6653. background:inherit;
  6654. background-color:rgba(255, 255, 255, 1);
  6655. box-sizing:border-box;
  6656. border-width:1px;
  6657. border-style:solid;
  6658. border-color:rgba(242, 242, 242, 1);
  6659. border-radius:33px;
  6660. -moz-box-shadow:none;
  6661. -webkit-box-shadow:none;
  6662. box-shadow:none;
  6663. }
  6664. #u160296 {
  6665. border-width:0px;
  6666. position:absolute;
  6667. left:1707px;
  6668. top:69px;
  6669. width:88px;
  6670. height:32px;
  6671. display:flex;
  6672. }
  6673. #u160296 .text {
  6674. position:absolute;
  6675. align-self:center;
  6676. padding:2px 2px 2px 2px;
  6677. box-sizing:border-box;
  6678. width:100%;
  6679. }
  6680. #u160296_text {
  6681. border-width:0px;
  6682. word-wrap:break-word;
  6683. text-transform:none;
  6684. visibility:hidden;
  6685. }
  6686. #u160297 {
  6687. border-width:0px;
  6688. position:absolute;
  6689. left:0px;
  6690. top:0px;
  6691. width:0px;
  6692. height:0px;
  6693. }
  6694. #u160298_img {
  6695. border-width:0px;
  6696. position:absolute;
  6697. left:0px;
  6698. top:0px;
  6699. width:18px;
  6700. height:18px;
  6701. }
  6702. #u160298 {
  6703. border-width:0px;
  6704. position:absolute;
  6705. left:1770px;
  6706. top:76px;
  6707. width:18px;
  6708. height:18px;
  6709. display:flex;
  6710. }
  6711. #u160298 .text {
  6712. position:absolute;
  6713. align-self:center;
  6714. padding:2px 2px 2px 2px;
  6715. box-sizing:border-box;
  6716. width:100%;
  6717. }
  6718. #u160298_text {
  6719. border-width:0px;
  6720. word-wrap:break-word;
  6721. text-transform:none;
  6722. visibility:hidden;
  6723. }
  6724. #u160299_img {
  6725. border-width:0px;
  6726. position:absolute;
  6727. left:0px;
  6728. top:0px;
  6729. width:6px;
  6730. height:6px;
  6731. }
  6732. #u160299 {
  6733. border-width:0px;
  6734. position:absolute;
  6735. left:1776px;
  6736. top:82px;
  6737. width:6px;
  6738. height:6px;
  6739. display:flex;
  6740. }
  6741. #u160299 .text {
  6742. position:absolute;
  6743. align-self:center;
  6744. padding:2px 2px 2px 2px;
  6745. box-sizing:border-box;
  6746. width:100%;
  6747. }
  6748. #u160299_text {
  6749. border-width:0px;
  6750. word-wrap:break-word;
  6751. text-transform:none;
  6752. visibility:hidden;
  6753. }
  6754. #u160300 {
  6755. border-width:0px;
  6756. position:absolute;
  6757. left:0px;
  6758. top:0px;
  6759. width:0px;
  6760. height:0px;
  6761. }
  6762. #u160301_img {
  6763. border-width:0px;
  6764. position:absolute;
  6765. left:0px;
  6766. top:0px;
  6767. width:5px;
  6768. height:5px;
  6769. }
  6770. #u160301 {
  6771. border-width:0px;
  6772. position:absolute;
  6773. left:1721px;
  6774. top:83px;
  6775. width:5px;
  6776. height:5px;
  6777. display:flex;
  6778. }
  6779. #u160301 .text {
  6780. position:absolute;
  6781. align-self:center;
  6782. padding:2px 2px 2px 2px;
  6783. box-sizing:border-box;
  6784. width:100%;
  6785. }
  6786. #u160301_text {
  6787. border-width:0px;
  6788. word-wrap:break-word;
  6789. text-transform:none;
  6790. visibility:hidden;
  6791. }
  6792. #u160302_img {
  6793. border-width:0px;
  6794. position:absolute;
  6795. left:0px;
  6796. top:0px;
  6797. width:5px;
  6798. height:5px;
  6799. }
  6800. #u160302 {
  6801. border-width:0px;
  6802. position:absolute;
  6803. left:1737px;
  6804. top:83px;
  6805. width:5px;
  6806. height:5px;
  6807. display:flex;
  6808. }
  6809. #u160302 .text {
  6810. position:absolute;
  6811. align-self:center;
  6812. padding:2px 2px 2px 2px;
  6813. box-sizing:border-box;
  6814. width:100%;
  6815. }
  6816. #u160302_text {
  6817. border-width:0px;
  6818. word-wrap:break-word;
  6819. text-transform:none;
  6820. visibility:hidden;
  6821. }
  6822. #u160303_img {
  6823. border-width:0px;
  6824. position:absolute;
  6825. left:0px;
  6826. top:0px;
  6827. width:7px;
  6828. height:7px;
  6829. }
  6830. #u160303 {
  6831. border-width:0px;
  6832. position:absolute;
  6833. left:1728px;
  6834. top:82px;
  6835. width:7px;
  6836. height:7px;
  6837. display:flex;
  6838. }
  6839. #u160303 .text {
  6840. position:absolute;
  6841. align-self:center;
  6842. padding:2px 2px 2px 2px;
  6843. box-sizing:border-box;
  6844. width:100%;
  6845. }
  6846. #u160303_text {
  6847. border-width:0px;
  6848. word-wrap:break-word;
  6849. text-transform:none;
  6850. visibility:hidden;
  6851. }
  6852. #u160304_img {
  6853. border-width:0px;
  6854. position:absolute;
  6855. left:0px;
  6856. top:0px;
  6857. width:19px;
  6858. height:2px;
  6859. }
  6860. #u160304 {
  6861. border-width:0px;
  6862. position:absolute;
  6863. left:1745px;
  6864. top:85px;
  6865. width:18px;
  6866. height:1px;
  6867. display:flex;
  6868. -webkit-transform:rotate(90deg);
  6869. -moz-transform:rotate(90deg);
  6870. -ms-transform:rotate(90deg);
  6871. transform:rotate(90deg);
  6872. }
  6873. #u160304 .text {
  6874. position:absolute;
  6875. align-self:center;
  6876. padding:2px 2px 2px 2px;
  6877. box-sizing:border-box;
  6878. width:100%;
  6879. }
  6880. #u160304_text {
  6881. border-width:0px;
  6882. word-wrap:break-word;
  6883. text-transform:none;
  6884. visibility:hidden;
  6885. }
  6886. #u160305_div {
  6887. border-width:0px;
  6888. position:absolute;
  6889. left:0px;
  6890. top:0px;
  6891. width:12px;
  6892. height:12px;
  6893. background:inherit;
  6894. background-color:rgba(255, 255, 255, 0);
  6895. box-sizing:border-box;
  6896. border-width:2px;
  6897. border-style:solid;
  6898. border-color:rgba(51, 51, 51, 1);
  6899. border-right:0px;
  6900. border-bottom:0px;
  6901. border-radius:0px;
  6902. border-top-right-radius:0px;
  6903. border-bottom-left-radius:0px;
  6904. -moz-box-shadow:none;
  6905. -webkit-box-shadow:none;
  6906. box-shadow:none;
  6907. }
  6908. #u160305 {
  6909. border-width:0px;
  6910. position:absolute;
  6911. left:1446px;
  6912. top:79px;
  6913. width:12px;
  6914. height:12px;
  6915. display:flex;
  6916. -webkit-transform:rotate(315deg);
  6917. -moz-transform:rotate(315deg);
  6918. -ms-transform:rotate(315deg);
  6919. transform:rotate(315deg);
  6920. }
  6921. #u160305 .text {
  6922. position:absolute;
  6923. align-self:center;
  6924. padding:2px 2px 2px 2px;
  6925. box-sizing:border-box;
  6926. width:100%;
  6927. }
  6928. #u160305_text {
  6929. border-width:0px;
  6930. word-wrap:break-word;
  6931. text-transform:none;
  6932. visibility:hidden;
  6933. }
  6934. #u160306_div {
  6935. border-width:0px;
  6936. position:absolute;
  6937. left:0px;
  6938. top:0px;
  6939. width:109px;
  6940. height:25px;
  6941. background:inherit;
  6942. background-color:rgba(255, 255, 255, 0);
  6943. border:none;
  6944. border-radius:0px;
  6945. -moz-box-shadow:none;
  6946. -webkit-box-shadow:none;
  6947. box-shadow:none;
  6948. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6949. font-weight:400;
  6950. font-style:normal;
  6951. font-size:18px;
  6952. }
  6953. #u160306 {
  6954. border-width:0px;
  6955. position:absolute;
  6956. left:1460px;
  6957. top:72px;
  6958. width:109px;
  6959. height:25px;
  6960. display:flex;
  6961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6962. font-weight:400;
  6963. font-style:normal;
  6964. font-size:18px;
  6965. }
  6966. #u160306 .text {
  6967. position:absolute;
  6968. align-self:flex-start;
  6969. padding:0px 0px 0px 0px;
  6970. box-sizing:border-box;
  6971. width:100%;
  6972. }
  6973. #u160306_text {
  6974. border-width:0px;
  6975. white-space:nowrap;
  6976. text-transform:none;
  6977. }
  6978. #u160307_div {
  6979. border-width:0px;
  6980. position:absolute;
  6981. left:0px;
  6982. top:0px;
  6983. width:375px;
  6984. height:58px;
  6985. background:inherit;
  6986. background-color:rgba(24, 144, 255, 1);
  6987. border:none;
  6988. border-radius:0px;
  6989. -moz-box-shadow:none;
  6990. -webkit-box-shadow:none;
  6991. box-shadow:none;
  6992. }
  6993. #u160307 {
  6994. border-width:0px;
  6995. position:absolute;
  6996. left:1430px;
  6997. top:107px;
  6998. width:375px;
  6999. height:58px;
  7000. display:flex;
  7001. }
  7002. #u160307 .text {
  7003. position:absolute;
  7004. align-self:center;
  7005. padding:2px 2px 2px 2px;
  7006. box-sizing:border-box;
  7007. width:100%;
  7008. }
  7009. #u160307_text {
  7010. border-width:0px;
  7011. word-wrap:break-word;
  7012. text-transform:none;
  7013. visibility:hidden;
  7014. }
  7015. #u160308_div {
  7016. border-width:0px;
  7017. position:absolute;
  7018. left:0px;
  7019. top:0px;
  7020. width:375px;
  7021. height:615px;
  7022. background:inherit;
  7023. background-color:rgba(255, 255, 255, 1);
  7024. border:none;
  7025. border-top:0px;
  7026. border-bottom:0px;
  7027. border-radius:0px;
  7028. border-top-left-radius:0px;
  7029. border-top-right-radius:0px;
  7030. border-bottom-right-radius:0px;
  7031. border-bottom-left-radius:0px;
  7032. -moz-box-shadow:none;
  7033. -webkit-box-shadow:none;
  7034. box-shadow:none;
  7035. }
  7036. #u160308 {
  7037. border-width:0px;
  7038. position:absolute;
  7039. left:1430px;
  7040. top:165px;
  7041. width:375px;
  7042. height:615px;
  7043. display:flex;
  7044. }
  7045. #u160308 .text {
  7046. position:absolute;
  7047. align-self:center;
  7048. padding:2px 2px 2px 2px;
  7049. box-sizing:border-box;
  7050. width:100%;
  7051. }
  7052. #u160308_text {
  7053. border-width:0px;
  7054. word-wrap:break-word;
  7055. text-transform:none;
  7056. visibility:hidden;
  7057. }
  7058. #u160309 {
  7059. border-width:0px;
  7060. position:absolute;
  7061. left:0px;
  7062. top:0px;
  7063. width:0px;
  7064. height:0px;
  7065. }
  7066. #u160310_div {
  7067. border-width:0px;
  7068. position:absolute;
  7069. left:0px;
  7070. top:0px;
  7071. width:169px;
  7072. height:30px;
  7073. background:inherit;
  7074. background-color:rgba(255, 255, 255, 0);
  7075. border:none;
  7076. border-left:0px;
  7077. border-top:0px;
  7078. border-right:0px;
  7079. border-radius:0px;
  7080. border-bottom-right-radius:0px;
  7081. border-bottom-left-radius:0px;
  7082. -moz-box-shadow:none;
  7083. -webkit-box-shadow:none;
  7084. box-shadow:none;
  7085. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7086. font-weight:400;
  7087. font-style:normal;
  7088. font-size:14px;
  7089. color:#1890FF;
  7090. line-height:30px;
  7091. }
  7092. #u160310 {
  7093. border-width:0px;
  7094. position:absolute;
  7095. left:1548px;
  7096. top:643px;
  7097. width:169px;
  7098. height:30px;
  7099. display:flex;
  7100. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7101. font-weight:400;
  7102. font-style:normal;
  7103. font-size:14px;
  7104. color:#1890FF;
  7105. line-height:30px;
  7106. }
  7107. #u160310 .text {
  7108. position:absolute;
  7109. align-self:flex-start;
  7110. padding:0px 0px 0px 0px;
  7111. box-sizing:border-box;
  7112. width:100%;
  7113. }
  7114. #u160310_text {
  7115. border-width:0px;
  7116. white-space:nowrap;
  7117. text-transform:none;
  7118. }
  7119. #u160311_img {
  7120. border-width:0px;
  7121. position:absolute;
  7122. left:0px;
  7123. top:0px;
  7124. width:19px;
  7125. height:16px;
  7126. }
  7127. #u160311 {
  7128. border-width:0px;
  7129. position:absolute;
  7130. left:1523px;
  7131. top:650px;
  7132. width:19px;
  7133. height:16px;
  7134. display:flex;
  7135. }
  7136. #u160311 .text {
  7137. position:absolute;
  7138. align-self:center;
  7139. padding:2px 2px 2px 2px;
  7140. box-sizing:border-box;
  7141. width:100%;
  7142. }
  7143. #u160311_text {
  7144. border-width:0px;
  7145. word-wrap:break-word;
  7146. text-transform:none;
  7147. visibility:hidden;
  7148. }
  7149. #u160312_div {
  7150. border-width:0px;
  7151. position:absolute;
  7152. left:0px;
  7153. top:0px;
  7154. width:37px;
  7155. height:30px;
  7156. background:inherit;
  7157. background-color:rgba(255, 255, 255, 0);
  7158. border:none;
  7159. border-left:0px;
  7160. border-top:0px;
  7161. border-right:0px;
  7162. border-radius:0px;
  7163. border-bottom-right-radius:0px;
  7164. border-bottom-left-radius:0px;
  7165. -moz-box-shadow:none;
  7166. -webkit-box-shadow:none;
  7167. box-shadow:none;
  7168. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7169. font-weight:500;
  7170. font-style:normal;
  7171. font-size:18px;
  7172. line-height:30px;
  7173. }
  7174. #u160312 {
  7175. border-width:0px;
  7176. position:absolute;
  7177. left:1599px;
  7178. top:613px;
  7179. width:37px;
  7180. height:30px;
  7181. display:flex;
  7182. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7183. font-weight:500;
  7184. font-style:normal;
  7185. font-size:18px;
  7186. line-height:30px;
  7187. }
  7188. #u160312 .text {
  7189. position:absolute;
  7190. align-self:flex-start;
  7191. padding:0px 0px 0px 0px;
  7192. box-sizing:border-box;
  7193. width:100%;
  7194. }
  7195. #u160312_text {
  7196. border-width:0px;
  7197. white-space:nowrap;
  7198. text-transform:none;
  7199. }
  7200. #u160313 {
  7201. border-width:0px;
  7202. position:absolute;
  7203. left:0px;
  7204. top:0px;
  7205. width:0px;
  7206. height:0px;
  7207. }
  7208. #u160314 {
  7209. border-width:0px;
  7210. position:absolute;
  7211. left:0px;
  7212. top:0px;
  7213. width:0px;
  7214. height:0px;
  7215. }
  7216. #u160315_img {
  7217. border-width:0px;
  7218. position:absolute;
  7219. left:0px;
  7220. top:0px;
  7221. width:27px;
  7222. height:27px;
  7223. }
  7224. #u160315 {
  7225. border-width:0px;
  7226. position:absolute;
  7227. left:1659px;
  7228. top:122px;
  7229. width:27px;
  7230. height:27px;
  7231. display:flex;
  7232. font-size:12px;
  7233. color:#1890FF;
  7234. }
  7235. #u160315 .text {
  7236. position:absolute;
  7237. align-self:center;
  7238. padding:2px 2px 2px 2px;
  7239. box-sizing:border-box;
  7240. width:100%;
  7241. }
  7242. #u160315_text {
  7243. border-width:0px;
  7244. word-wrap:break-word;
  7245. text-transform:none;
  7246. }
  7247. #u160316_div {
  7248. border-width:0px;
  7249. position:absolute;
  7250. left:0px;
  7251. top:0px;
  7252. width:57px;
  7253. height:30px;
  7254. background:inherit;
  7255. background-color:rgba(255, 255, 255, 0);
  7256. border:none;
  7257. border-left:0px;
  7258. border-top:0px;
  7259. border-right:0px;
  7260. border-radius:0px;
  7261. border-bottom-right-radius:0px;
  7262. border-bottom-left-radius:0px;
  7263. -moz-box-shadow:none;
  7264. -webkit-box-shadow:none;
  7265. box-shadow:none;
  7266. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7267. font-weight:400;
  7268. font-style:normal;
  7269. font-size:14px;
  7270. color:#FFFFFF;
  7271. line-height:30px;
  7272. }
  7273. #u160316 {
  7274. border-width:0px;
  7275. position:absolute;
  7276. left:1693px;
  7277. top:121px;
  7278. width:57px;
  7279. height:30px;
  7280. display:flex;
  7281. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7282. font-weight:400;
  7283. font-style:normal;
  7284. font-size:14px;
  7285. color:#FFFFFF;
  7286. line-height:30px;
  7287. }
  7288. #u160316 .text {
  7289. position:absolute;
  7290. align-self:center;
  7291. padding:0px 0px 0px 0px;
  7292. box-sizing:border-box;
  7293. width:100%;
  7294. }
  7295. #u160316_text {
  7296. border-width:0px;
  7297. white-space:nowrap;
  7298. text-transform:none;
  7299. }
  7300. #u160317_img {
  7301. border-width:0px;
  7302. position:absolute;
  7303. left:0px;
  7304. top:0px;
  7305. width:27px;
  7306. height:27px;
  7307. }
  7308. #u160317 {
  7309. border-width:0px;
  7310. position:absolute;
  7311. left:1473px;
  7312. top:122px;
  7313. width:27px;
  7314. height:27px;
  7315. display:flex;
  7316. font-size:12px;
  7317. color:#1890FF;
  7318. }
  7319. #u160317 .text {
  7320. position:absolute;
  7321. align-self:center;
  7322. padding:2px 2px 2px 2px;
  7323. box-sizing:border-box;
  7324. width:100%;
  7325. }
  7326. #u160317_text {
  7327. border-width:0px;
  7328. word-wrap:break-word;
  7329. text-transform:none;
  7330. }
  7331. #u160318_div {
  7332. border-width:0px;
  7333. position:absolute;
  7334. left:0px;
  7335. top:0px;
  7336. width:57px;
  7337. height:30px;
  7338. background:inherit;
  7339. background-color:rgba(255, 255, 255, 0);
  7340. border:none;
  7341. border-left:0px;
  7342. border-top:0px;
  7343. border-right:0px;
  7344. border-radius:0px;
  7345. border-bottom-right-radius:0px;
  7346. border-bottom-left-radius:0px;
  7347. -moz-box-shadow:none;
  7348. -webkit-box-shadow:none;
  7349. box-shadow:none;
  7350. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7351. font-weight:400;
  7352. font-style:normal;
  7353. font-size:14px;
  7354. color:#FFFFFF;
  7355. line-height:30px;
  7356. }
  7357. #u160318 {
  7358. border-width:0px;
  7359. position:absolute;
  7360. left:1507px;
  7361. top:121px;
  7362. width:57px;
  7363. height:30px;
  7364. display:flex;
  7365. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7366. font-weight:400;
  7367. font-style:normal;
  7368. font-size:14px;
  7369. color:#FFFFFF;
  7370. line-height:30px;
  7371. }
  7372. #u160318 .text {
  7373. position:absolute;
  7374. align-self:center;
  7375. padding:0px 0px 0px 0px;
  7376. box-sizing:border-box;
  7377. width:100%;
  7378. }
  7379. #u160318_text {
  7380. border-width:0px;
  7381. white-space:nowrap;
  7382. text-transform:none;
  7383. }
  7384. #u160319_img {
  7385. border-width:0px;
  7386. position:absolute;
  7387. left:0px;
  7388. top:0px;
  7389. width:71px;
  7390. height:2px;
  7391. }
  7392. #u160319 {
  7393. border-width:0px;
  7394. position:absolute;
  7395. left:1583px;
  7396. top:135px;
  7397. width:70px;
  7398. height:1px;
  7399. display:flex;
  7400. color:#FFFFFF;
  7401. }
  7402. #u160319 .text {
  7403. position:absolute;
  7404. align-self:center;
  7405. padding:2px 2px 2px 2px;
  7406. box-sizing:border-box;
  7407. width:100%;
  7408. }
  7409. #u160319_text {
  7410. border-width:0px;
  7411. word-wrap:break-word;
  7412. text-transform:none;
  7413. visibility:hidden;
  7414. }
  7415. #u160320 {
  7416. border-width:0px;
  7417. position:absolute;
  7418. left:0px;
  7419. top:0px;
  7420. width:0px;
  7421. height:0px;
  7422. }
  7423. #u160321_div {
  7424. border-width:0px;
  7425. position:absolute;
  7426. left:0px;
  7427. top:0px;
  7428. width:375px;
  7429. height:60px;
  7430. background:inherit;
  7431. background-color:rgba(255, 255, 255, 1);
  7432. border:none;
  7433. border-top:0px;
  7434. border-radius:28px;
  7435. border-top-left-radius:0px;
  7436. border-top-right-radius:0px;
  7437. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  7438. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  7439. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  7440. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7441. font-weight:400;
  7442. font-style:normal;
  7443. font-size:14px;
  7444. color:#FFFFFF;
  7445. }
  7446. #u160321 {
  7447. border-width:0px;
  7448. position:absolute;
  7449. left:1430px;
  7450. top:780px;
  7451. width:375px;
  7452. height:60px;
  7453. display:flex;
  7454. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7455. font-weight:400;
  7456. font-style:normal;
  7457. font-size:14px;
  7458. color:#FFFFFF;
  7459. }
  7460. #u160321 .text {
  7461. position:absolute;
  7462. align-self:center;
  7463. padding:2px 2px 2px 2px;
  7464. box-sizing:border-box;
  7465. width:100%;
  7466. }
  7467. #u160321_text {
  7468. border-width:0px;
  7469. word-wrap:break-word;
  7470. text-transform:none;
  7471. visibility:hidden;
  7472. }
  7473. #u160322_div {
  7474. border-width:0px;
  7475. position:absolute;
  7476. left:0px;
  7477. top:0px;
  7478. width:324px;
  7479. height:40px;
  7480. background:inherit;
  7481. background-color:rgba(0, 137, 254, 1);
  7482. border:none;
  7483. border-radius:63px;
  7484. -moz-box-shadow:none;
  7485. -webkit-box-shadow:none;
  7486. box-shadow:none;
  7487. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7488. font-weight:400;
  7489. font-style:normal;
  7490. font-size:14px;
  7491. color:#FFFFFF;
  7492. }
  7493. #u160322 {
  7494. border-width:0px;
  7495. position:absolute;
  7496. left:1458px;
  7497. top:789px;
  7498. width:324px;
  7499. height:40px;
  7500. display:flex;
  7501. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7502. font-weight:400;
  7503. font-style:normal;
  7504. font-size:14px;
  7505. color:#FFFFFF;
  7506. }
  7507. #u160322 .text {
  7508. position:absolute;
  7509. align-self:center;
  7510. padding:2px 2px 2px 2px;
  7511. box-sizing:border-box;
  7512. width:100%;
  7513. }
  7514. #u160322_text {
  7515. border-width:0px;
  7516. word-wrap:break-word;
  7517. text-transform:none;
  7518. }
  7519. #u160323_img {
  7520. border-width:0px;
  7521. position:absolute;
  7522. left:0px;
  7523. top:0px;
  7524. width:326px;
  7525. height:409px;
  7526. }
  7527. #u160323 {
  7528. border-width:0px;
  7529. position:absolute;
  7530. left:1456px;
  7531. top:190px;
  7532. width:326px;
  7533. height:409px;
  7534. display:flex;
  7535. }
  7536. #u160323 .text {
  7537. position:absolute;
  7538. align-self:center;
  7539. padding:2px 2px 2px 2px;
  7540. box-sizing:border-box;
  7541. width:100%;
  7542. }
  7543. #u160323_text {
  7544. border-width:0px;
  7545. word-wrap:break-word;
  7546. text-transform:none;
  7547. visibility:hidden;
  7548. }
  7549. #u160324_div {
  7550. border-width:0px;
  7551. position:absolute;
  7552. left:0px;
  7553. top:0px;
  7554. width:211px;
  7555. height:30px;
  7556. background:inherit;
  7557. background-color:rgba(255, 255, 255, 0);
  7558. border:none;
  7559. border-left:0px;
  7560. border-top:0px;
  7561. border-right:0px;
  7562. border-radius:0px;
  7563. border-bottom-right-radius:0px;
  7564. border-bottom-left-radius:0px;
  7565. -moz-box-shadow:none;
  7566. -webkit-box-shadow:none;
  7567. box-shadow:none;
  7568. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7569. font-weight:400;
  7570. font-style:normal;
  7571. font-size:12px;
  7572. color:#D9001B;
  7573. line-height:30px;
  7574. }
  7575. #u160324 {
  7576. border-width:0px;
  7577. position:absolute;
  7578. left:608px;
  7579. top:178px;
  7580. width:211px;
  7581. height:30px;
  7582. display:flex;
  7583. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7584. font-weight:400;
  7585. font-style:normal;
  7586. font-size:12px;
  7587. color:#D9001B;
  7588. line-height:30px;
  7589. }
  7590. #u160324 .text {
  7591. position:absolute;
  7592. align-self:center;
  7593. padding:0px 0px 0px 0px;
  7594. box-sizing:border-box;
  7595. width:100%;
  7596. }
  7597. #u160324_text {
  7598. border-width:0px;
  7599. white-space:nowrap;
  7600. text-transform:none;
  7601. }
  7602. #u160325_div {
  7603. border-width:0px;
  7604. position:absolute;
  7605. left:0px;
  7606. top:0px;
  7607. width:197px;
  7608. height:30px;
  7609. background:inherit;
  7610. background-color:rgba(255, 255, 255, 0);
  7611. border:none;
  7612. border-left:0px;
  7613. border-top:0px;
  7614. border-right:0px;
  7615. border-radius:0px;
  7616. border-bottom-right-radius:0px;
  7617. border-bottom-left-radius:0px;
  7618. -moz-box-shadow:none;
  7619. -webkit-box-shadow:none;
  7620. box-shadow:none;
  7621. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7622. font-weight:400;
  7623. font-style:normal;
  7624. font-size:14px;
  7625. color:#D9001B;
  7626. line-height:30px;
  7627. }
  7628. #u160325 {
  7629. border-width:0px;
  7630. position:absolute;
  7631. left:1580px;
  7632. top:679px;
  7633. width:197px;
  7634. height:30px;
  7635. display:flex;
  7636. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7637. font-weight:400;
  7638. font-style:normal;
  7639. font-size:14px;
  7640. color:#D9001B;
  7641. line-height:30px;
  7642. }
  7643. #u160325 .text {
  7644. position:absolute;
  7645. align-self:flex-start;
  7646. padding:0px 0px 0px 0px;
  7647. box-sizing:border-box;
  7648. width:100%;
  7649. }
  7650. #u160325_text {
  7651. border-width:0px;
  7652. white-space:nowrap;
  7653. text-transform:none;
  7654. }