styles.css 141 KB

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