styles.css 125 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1352px;
  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. #u164899_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u164899 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u164899 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u164899_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u164900_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. #u164900 {
  73. border-width:0px;
  74. position:absolute;
  75. left:29px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u164900 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u164900_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u164901 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u164902_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. #u164902 {
  121. border-width:0px;
  122. position:absolute;
  123. left:309px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u164902 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u164902_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u164903 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u164904_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u164904 {
  159. border-width:0px;
  160. position:absolute;
  161. left:372px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u164904 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u164904_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u164905_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u164905 {
  189. border-width:0px;
  190. position:absolute;
  191. left:378px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u164905 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u164905_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u164906 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u164907_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u164907 {
  227. border-width:0px;
  228. position:absolute;
  229. left:323px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u164907 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u164907_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u164908_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u164908 {
  257. border-width:0px;
  258. position:absolute;
  259. left:339px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u164908 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u164908_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u164909_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u164909 {
  287. border-width:0px;
  288. position:absolute;
  289. left:330px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u164909 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u164909_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u164910_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u164910 {
  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. #u164910 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u164910_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u164911_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u164911 {
  351. border-width:0px;
  352. position:absolute;
  353. left:29px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u164911 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u164911_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u164912_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. #u164912 {
  393. border-width:0px;
  394. position:absolute;
  395. left:29px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u164912 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u164912_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u164913 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u164914_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u164914 {
  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. #u164914 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u164914_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u164915_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. #u164915 {
  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. #u164915 .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. #u164915_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u164916 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u164917_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u164917 {
  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. #u164917 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u164917_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u164918_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. #u164918 {
  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. #u164918 .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. #u164918_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u164919_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. #u164919 {
  594. border-width:0px;
  595. position:absolute;
  596. left:29px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u164919 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u164919_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u164920 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u164921_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u164921 {
  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. #u164921 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u164921_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u164922_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. #u164922 {
  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. #u164922 .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. #u164922_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u164923 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u164924_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u164924 {
  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. #u164924 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u164924_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u164925_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. #u164925 {
  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. #u164925 .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. #u164925_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u164926_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. #u164926 {
  798. border-width:0px;
  799. position:absolute;
  800. left:29px;
  801. top:105px;
  802. width:375px;
  803. height:732px;
  804. display:flex;
  805. }
  806. #u164926 .text {
  807. position:absolute;
  808. align-self:center;
  809. padding:2px 2px 2px 2px;
  810. box-sizing:border-box;
  811. width:100%;
  812. }
  813. #u164926_text {
  814. border-width:0px;
  815. word-wrap:break-word;
  816. text-transform:none;
  817. visibility:hidden;
  818. }
  819. #u164927 {
  820. border-width:0px;
  821. position:absolute;
  822. left:0px;
  823. top:0px;
  824. width:0px;
  825. height:0px;
  826. }
  827. #u164928_img {
  828. border-width:0px;
  829. position:absolute;
  830. left:0px;
  831. top:0px;
  832. width:11px;
  833. height:18px;
  834. }
  835. #u164928 {
  836. border-width:0px;
  837. position:absolute;
  838. left:40px;
  839. top:79px;
  840. width:11px;
  841. height:18px;
  842. display:flex;
  843. }
  844. #u164928 .text {
  845. position:absolute;
  846. align-self:center;
  847. padding:2px 2px 2px 2px;
  848. box-sizing:border-box;
  849. width:100%;
  850. }
  851. #u164928_text {
  852. border-width:0px;
  853. word-wrap:break-word;
  854. text-transform:none;
  855. visibility:hidden;
  856. }
  857. #u164929_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. #u164929 {
  883. border-width:0px;
  884. position:absolute;
  885. left:182px;
  886. top:73px;
  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. #u164929 .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. #u164929_text {
  904. border-width:0px;
  905. white-space:nowrap;
  906. text-transform:none;
  907. }
  908. #u164931_img {
  909. border-width:0px;
  910. position:absolute;
  911. left:0px;
  912. top:0px;
  913. width:433px;
  914. height:865px;
  915. }
  916. #u164931 {
  917. border-width:0px;
  918. position:absolute;
  919. left:458px;
  920. top:0px;
  921. width:433px;
  922. height:865px;
  923. display:flex;
  924. }
  925. #u164931 .text {
  926. position:absolute;
  927. align-self:center;
  928. padding:2px 2px 2px 2px;
  929. box-sizing:border-box;
  930. width:100%;
  931. }
  932. #u164931_text {
  933. border-width:0px;
  934. word-wrap:break-word;
  935. text-transform:none;
  936. visibility:hidden;
  937. }
  938. #u164932_div {
  939. border-width:0px;
  940. position:absolute;
  941. left:0px;
  942. top:0px;
  943. width:375px;
  944. height:40px;
  945. background:inherit;
  946. background-color:rgba(255, 255, 255, 1);
  947. box-sizing:border-box;
  948. border-width:1px;
  949. border-style:solid;
  950. border-color:rgba(215, 215, 215, 1);
  951. border-left:0px;
  952. border-top:0px;
  953. border-right:0px;
  954. border-radius:0px;
  955. border-bottom-right-radius:0px;
  956. border-bottom-left-radius:0px;
  957. -moz-box-shadow:none;
  958. -webkit-box-shadow:none;
  959. box-shadow:none;
  960. }
  961. #u164932 {
  962. border-width:0px;
  963. position:absolute;
  964. left:487px;
  965. top:67px;
  966. width:375px;
  967. height:40px;
  968. display:flex;
  969. }
  970. #u164932 .text {
  971. position:absolute;
  972. align-self:center;
  973. padding:2px 2px 2px 2px;
  974. box-sizing:border-box;
  975. width:100%;
  976. }
  977. #u164932_text {
  978. border-width:0px;
  979. word-wrap:break-word;
  980. text-transform:none;
  981. visibility:hidden;
  982. }
  983. #u164933 {
  984. border-width:0px;
  985. position:absolute;
  986. left:0px;
  987. top:0px;
  988. width:0px;
  989. height:0px;
  990. }
  991. #u164934_div {
  992. border-width:0px;
  993. position:absolute;
  994. left:0px;
  995. top:0px;
  996. width:88px;
  997. height:32px;
  998. background:inherit;
  999. background-color:rgba(255, 255, 255, 1);
  1000. box-sizing:border-box;
  1001. border-width:1px;
  1002. border-style:solid;
  1003. border-color:rgba(242, 242, 242, 1);
  1004. border-radius:33px;
  1005. -moz-box-shadow:none;
  1006. -webkit-box-shadow:none;
  1007. box-shadow:none;
  1008. }
  1009. #u164934 {
  1010. border-width:0px;
  1011. position:absolute;
  1012. left:767px;
  1013. top:71px;
  1014. width:88px;
  1015. height:32px;
  1016. display:flex;
  1017. }
  1018. #u164934 .text {
  1019. position:absolute;
  1020. align-self:center;
  1021. padding:2px 2px 2px 2px;
  1022. box-sizing:border-box;
  1023. width:100%;
  1024. }
  1025. #u164934_text {
  1026. border-width:0px;
  1027. word-wrap:break-word;
  1028. text-transform:none;
  1029. visibility:hidden;
  1030. }
  1031. #u164935 {
  1032. border-width:0px;
  1033. position:absolute;
  1034. left:0px;
  1035. top:0px;
  1036. width:0px;
  1037. height:0px;
  1038. }
  1039. #u164936_img {
  1040. border-width:0px;
  1041. position:absolute;
  1042. left:0px;
  1043. top:0px;
  1044. width:18px;
  1045. height:18px;
  1046. }
  1047. #u164936 {
  1048. border-width:0px;
  1049. position:absolute;
  1050. left:830px;
  1051. top:78px;
  1052. width:18px;
  1053. height:18px;
  1054. display:flex;
  1055. }
  1056. #u164936 .text {
  1057. position:absolute;
  1058. align-self:center;
  1059. padding:2px 2px 2px 2px;
  1060. box-sizing:border-box;
  1061. width:100%;
  1062. }
  1063. #u164936_text {
  1064. border-width:0px;
  1065. word-wrap:break-word;
  1066. text-transform:none;
  1067. visibility:hidden;
  1068. }
  1069. #u164937_img {
  1070. border-width:0px;
  1071. position:absolute;
  1072. left:0px;
  1073. top:0px;
  1074. width:6px;
  1075. height:6px;
  1076. }
  1077. #u164937 {
  1078. border-width:0px;
  1079. position:absolute;
  1080. left:836px;
  1081. top:84px;
  1082. width:6px;
  1083. height:6px;
  1084. display:flex;
  1085. }
  1086. #u164937 .text {
  1087. position:absolute;
  1088. align-self:center;
  1089. padding:2px 2px 2px 2px;
  1090. box-sizing:border-box;
  1091. width:100%;
  1092. }
  1093. #u164937_text {
  1094. border-width:0px;
  1095. word-wrap:break-word;
  1096. text-transform:none;
  1097. visibility:hidden;
  1098. }
  1099. #u164938 {
  1100. border-width:0px;
  1101. position:absolute;
  1102. left:0px;
  1103. top:0px;
  1104. width:0px;
  1105. height:0px;
  1106. }
  1107. #u164939_img {
  1108. border-width:0px;
  1109. position:absolute;
  1110. left:0px;
  1111. top:0px;
  1112. width:5px;
  1113. height:5px;
  1114. }
  1115. #u164939 {
  1116. border-width:0px;
  1117. position:absolute;
  1118. left:781px;
  1119. top:85px;
  1120. width:5px;
  1121. height:5px;
  1122. display:flex;
  1123. }
  1124. #u164939 .text {
  1125. position:absolute;
  1126. align-self:center;
  1127. padding:2px 2px 2px 2px;
  1128. box-sizing:border-box;
  1129. width:100%;
  1130. }
  1131. #u164939_text {
  1132. border-width:0px;
  1133. word-wrap:break-word;
  1134. text-transform:none;
  1135. visibility:hidden;
  1136. }
  1137. #u164940_img {
  1138. border-width:0px;
  1139. position:absolute;
  1140. left:0px;
  1141. top:0px;
  1142. width:5px;
  1143. height:5px;
  1144. }
  1145. #u164940 {
  1146. border-width:0px;
  1147. position:absolute;
  1148. left:797px;
  1149. top:85px;
  1150. width:5px;
  1151. height:5px;
  1152. display:flex;
  1153. }
  1154. #u164940 .text {
  1155. position:absolute;
  1156. align-self:center;
  1157. padding:2px 2px 2px 2px;
  1158. box-sizing:border-box;
  1159. width:100%;
  1160. }
  1161. #u164940_text {
  1162. border-width:0px;
  1163. word-wrap:break-word;
  1164. text-transform:none;
  1165. visibility:hidden;
  1166. }
  1167. #u164941_img {
  1168. border-width:0px;
  1169. position:absolute;
  1170. left:0px;
  1171. top:0px;
  1172. width:7px;
  1173. height:7px;
  1174. }
  1175. #u164941 {
  1176. border-width:0px;
  1177. position:absolute;
  1178. left:788px;
  1179. top:84px;
  1180. width:7px;
  1181. height:7px;
  1182. display:flex;
  1183. }
  1184. #u164941 .text {
  1185. position:absolute;
  1186. align-self:center;
  1187. padding:2px 2px 2px 2px;
  1188. box-sizing:border-box;
  1189. width:100%;
  1190. }
  1191. #u164941_text {
  1192. border-width:0px;
  1193. word-wrap:break-word;
  1194. text-transform:none;
  1195. visibility:hidden;
  1196. }
  1197. #u164942_img {
  1198. border-width:0px;
  1199. position:absolute;
  1200. left:0px;
  1201. top:0px;
  1202. width:19px;
  1203. height:2px;
  1204. }
  1205. #u164942 {
  1206. border-width:0px;
  1207. position:absolute;
  1208. left:805px;
  1209. top:87px;
  1210. width:18px;
  1211. height:1px;
  1212. display:flex;
  1213. -webkit-transform:rotate(90deg);
  1214. -moz-transform:rotate(90deg);
  1215. -ms-transform:rotate(90deg);
  1216. transform:rotate(90deg);
  1217. }
  1218. #u164942 .text {
  1219. position:absolute;
  1220. align-self:center;
  1221. padding:2px 2px 2px 2px;
  1222. box-sizing:border-box;
  1223. width:100%;
  1224. }
  1225. #u164942_text {
  1226. border-width:0px;
  1227. word-wrap:break-word;
  1228. text-transform:none;
  1229. visibility:hidden;
  1230. }
  1231. #u164943_img {
  1232. border-width:0px;
  1233. position:absolute;
  1234. left:0px;
  1235. top:0px;
  1236. width:375px;
  1237. height:44px;
  1238. }
  1239. #u164943 {
  1240. border-width:0px;
  1241. position:absolute;
  1242. left:487px;
  1243. top:24px;
  1244. width:375px;
  1245. height:44px;
  1246. display:flex;
  1247. }
  1248. #u164943 .text {
  1249. position:absolute;
  1250. align-self:center;
  1251. padding:2px 2px 2px 2px;
  1252. box-sizing:border-box;
  1253. width:100%;
  1254. }
  1255. #u164943_text {
  1256. border-width:0px;
  1257. word-wrap:break-word;
  1258. text-transform:none;
  1259. visibility:hidden;
  1260. }
  1261. #u164944_div {
  1262. border-width:0px;
  1263. position:absolute;
  1264. left:0px;
  1265. top:0px;
  1266. width:375px;
  1267. height:50px;
  1268. background:inherit;
  1269. background-color:rgba(255, 255, 255, 1);
  1270. box-sizing:border-box;
  1271. border-width:1px;
  1272. border-style:solid;
  1273. border-color:rgba(242, 242, 242, 1);
  1274. border-radius:26px;
  1275. border-top-left-radius:0px;
  1276. border-top-right-radius:0px;
  1277. -moz-box-shadow:none;
  1278. -webkit-box-shadow:none;
  1279. box-shadow:none;
  1280. }
  1281. #u164944 {
  1282. border-width:0px;
  1283. position:absolute;
  1284. left:487px;
  1285. top:788px;
  1286. width:375px;
  1287. height:50px;
  1288. display:flex;
  1289. }
  1290. #u164944 .text {
  1291. position:absolute;
  1292. align-self:center;
  1293. padding:2px 2px 2px 2px;
  1294. box-sizing:border-box;
  1295. width:100%;
  1296. }
  1297. #u164944_text {
  1298. border-width:0px;
  1299. word-wrap:break-word;
  1300. text-transform:none;
  1301. visibility:hidden;
  1302. }
  1303. #u164945 {
  1304. border-width:0px;
  1305. position:absolute;
  1306. left:0px;
  1307. top:0px;
  1308. width:0px;
  1309. height:0px;
  1310. }
  1311. #u164946_img {
  1312. border-width:0px;
  1313. position:absolute;
  1314. left:0px;
  1315. top:0px;
  1316. width:24px;
  1317. height:24px;
  1318. }
  1319. #u164946 {
  1320. border-width:0px;
  1321. position:absolute;
  1322. left:527px;
  1323. top:792px;
  1324. width:24px;
  1325. height:24px;
  1326. display:flex;
  1327. font-size:8px;
  1328. }
  1329. #u164946 .text {
  1330. position:absolute;
  1331. align-self:center;
  1332. padding:2px 2px 2px 2px;
  1333. box-sizing:border-box;
  1334. width:100%;
  1335. }
  1336. #u164946_text {
  1337. border-width:0px;
  1338. word-wrap:break-word;
  1339. text-transform:none;
  1340. }
  1341. #u164947_div {
  1342. border-width:0px;
  1343. position:absolute;
  1344. left:0px;
  1345. top:0px;
  1346. width:25px;
  1347. height:17px;
  1348. background:inherit;
  1349. background-color:rgba(255, 255, 255, 0);
  1350. border:none;
  1351. border-radius:0px;
  1352. -moz-box-shadow:none;
  1353. -webkit-box-shadow:none;
  1354. box-shadow:none;
  1355. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1356. font-weight:400;
  1357. font-style:normal;
  1358. font-size:12px;
  1359. }
  1360. #u164947 {
  1361. border-width:0px;
  1362. position:absolute;
  1363. left:527px;
  1364. top:817px;
  1365. width:25px;
  1366. height:17px;
  1367. display:flex;
  1368. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1369. font-weight:400;
  1370. font-style:normal;
  1371. font-size:12px;
  1372. }
  1373. #u164947 .text {
  1374. position:absolute;
  1375. align-self:flex-start;
  1376. padding:0px 0px 0px 0px;
  1377. box-sizing:border-box;
  1378. width:100%;
  1379. }
  1380. #u164947_text {
  1381. border-width:0px;
  1382. white-space:nowrap;
  1383. text-transform:none;
  1384. }
  1385. #u164948 {
  1386. border-width:0px;
  1387. position:absolute;
  1388. left:0px;
  1389. top:0px;
  1390. width:0px;
  1391. height:0px;
  1392. }
  1393. #u164949_img {
  1394. border-width:0px;
  1395. position:absolute;
  1396. left:0px;
  1397. top:0px;
  1398. width:24px;
  1399. height:24px;
  1400. }
  1401. #u164949 {
  1402. border-width:0px;
  1403. position:absolute;
  1404. left:797px;
  1405. top:794px;
  1406. width:24px;
  1407. height:24px;
  1408. display:flex;
  1409. font-size:8px;
  1410. }
  1411. #u164949 .text {
  1412. position:absolute;
  1413. align-self:center;
  1414. padding:2px 2px 2px 2px;
  1415. box-sizing:border-box;
  1416. width:100%;
  1417. }
  1418. #u164949_text {
  1419. border-width:0px;
  1420. word-wrap:break-word;
  1421. text-transform:none;
  1422. }
  1423. #u164950_div {
  1424. border-width:0px;
  1425. position:absolute;
  1426. left:0px;
  1427. top:0px;
  1428. width:25px;
  1429. height:17px;
  1430. background:inherit;
  1431. background-color:rgba(255, 255, 255, 0);
  1432. border:none;
  1433. border-radius:0px;
  1434. -moz-box-shadow:none;
  1435. -webkit-box-shadow:none;
  1436. box-shadow:none;
  1437. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1438. font-weight:400;
  1439. font-style:normal;
  1440. font-size:12px;
  1441. }
  1442. #u164950 {
  1443. border-width:0px;
  1444. position:absolute;
  1445. left:797px;
  1446. top:819px;
  1447. width:25px;
  1448. height:17px;
  1449. display:flex;
  1450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1451. font-weight:400;
  1452. font-style:normal;
  1453. font-size:12px;
  1454. }
  1455. #u164950 .text {
  1456. position:absolute;
  1457. align-self:flex-start;
  1458. padding:0px 0px 0px 0px;
  1459. box-sizing:border-box;
  1460. width:100%;
  1461. }
  1462. #u164950_text {
  1463. border-width:0px;
  1464. white-space:nowrap;
  1465. text-transform:none;
  1466. }
  1467. #u164951_div {
  1468. border-width:0px;
  1469. position:absolute;
  1470. left:0px;
  1471. top:0px;
  1472. width:375px;
  1473. height:681px;
  1474. background:inherit;
  1475. background-color:rgba(242, 242, 242, 0.462745098039216);
  1476. border:none;
  1477. border-radius:0px;
  1478. -moz-box-shadow:none;
  1479. -webkit-box-shadow:none;
  1480. box-shadow:none;
  1481. }
  1482. #u164951 {
  1483. border-width:0px;
  1484. position:absolute;
  1485. left:487px;
  1486. top:107px;
  1487. width:375px;
  1488. height:681px;
  1489. display:flex;
  1490. }
  1491. #u164951 .text {
  1492. position:absolute;
  1493. align-self:center;
  1494. padding:2px 2px 2px 2px;
  1495. box-sizing:border-box;
  1496. width:100%;
  1497. }
  1498. #u164951_text {
  1499. border-width:0px;
  1500. word-wrap:break-word;
  1501. text-transform:none;
  1502. visibility:hidden;
  1503. }
  1504. #u164952 {
  1505. border-width:0px;
  1506. position:absolute;
  1507. left:0px;
  1508. top:0px;
  1509. width:0px;
  1510. height:0px;
  1511. }
  1512. #u164953_img {
  1513. border-width:0px;
  1514. position:absolute;
  1515. left:0px;
  1516. top:0px;
  1517. width:24px;
  1518. height:24px;
  1519. }
  1520. #u164953 {
  1521. border-width:0px;
  1522. position:absolute;
  1523. left:709px;
  1524. top:792px;
  1525. width:24px;
  1526. height:24px;
  1527. display:flex;
  1528. font-size:8px;
  1529. }
  1530. #u164953 .text {
  1531. position:absolute;
  1532. align-self:center;
  1533. padding:2px 2px 2px 2px;
  1534. box-sizing:border-box;
  1535. width:100%;
  1536. }
  1537. #u164953_text {
  1538. border-width:0px;
  1539. word-wrap:break-word;
  1540. text-transform:none;
  1541. }
  1542. #u164954_div {
  1543. border-width:0px;
  1544. position:absolute;
  1545. left:0px;
  1546. top:0px;
  1547. width:37px;
  1548. height:17px;
  1549. background:inherit;
  1550. background-color:rgba(255, 255, 255, 0);
  1551. border:none;
  1552. border-radius:0px;
  1553. -moz-box-shadow:none;
  1554. -webkit-box-shadow:none;
  1555. box-shadow:none;
  1556. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1557. font-weight:400;
  1558. font-style:normal;
  1559. font-size:12px;
  1560. }
  1561. #u164954 {
  1562. border-width:0px;
  1563. position:absolute;
  1564. left:703px;
  1565. top:817px;
  1566. width:37px;
  1567. height:17px;
  1568. display:flex;
  1569. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1570. font-weight:400;
  1571. font-style:normal;
  1572. font-size:12px;
  1573. }
  1574. #u164954 .text {
  1575. position:absolute;
  1576. align-self:flex-start;
  1577. padding:0px 0px 0px 0px;
  1578. box-sizing:border-box;
  1579. width:100%;
  1580. }
  1581. #u164954_text {
  1582. border-width:0px;
  1583. white-space:nowrap;
  1584. text-transform:none;
  1585. }
  1586. #u164955 {
  1587. border-width:0px;
  1588. position:absolute;
  1589. left:0px;
  1590. top:0px;
  1591. width:0px;
  1592. height:0px;
  1593. }
  1594. #u164956_img {
  1595. border-width:0px;
  1596. position:absolute;
  1597. left:0px;
  1598. top:0px;
  1599. width:24px;
  1600. height:24px;
  1601. }
  1602. #u164956 {
  1603. border-width:0px;
  1604. position:absolute;
  1605. left:615px;
  1606. top:792px;
  1607. width:24px;
  1608. height:24px;
  1609. display:flex;
  1610. font-size:8px;
  1611. }
  1612. #u164956 .text {
  1613. position:absolute;
  1614. align-self:center;
  1615. padding:2px 2px 2px 2px;
  1616. box-sizing:border-box;
  1617. width:100%;
  1618. }
  1619. #u164956_text {
  1620. border-width:0px;
  1621. word-wrap:break-word;
  1622. text-transform:none;
  1623. }
  1624. #u164957_div {
  1625. border-width:0px;
  1626. position:absolute;
  1627. left:0px;
  1628. top:0px;
  1629. width:37px;
  1630. height:17px;
  1631. background:inherit;
  1632. background-color:rgba(255, 255, 255, 0);
  1633. border:none;
  1634. border-radius:0px;
  1635. -moz-box-shadow:none;
  1636. -webkit-box-shadow:none;
  1637. box-shadow:none;
  1638. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1639. font-weight:400;
  1640. font-style:normal;
  1641. font-size:12px;
  1642. }
  1643. #u164957 {
  1644. border-width:0px;
  1645. position:absolute;
  1646. left:609px;
  1647. top:817px;
  1648. width:37px;
  1649. height:17px;
  1650. display:flex;
  1651. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1652. font-weight:400;
  1653. font-style:normal;
  1654. font-size:12px;
  1655. }
  1656. #u164957 .text {
  1657. position:absolute;
  1658. align-self:flex-start;
  1659. padding:0px 0px 0px 0px;
  1660. box-sizing:border-box;
  1661. width:100%;
  1662. }
  1663. #u164957_text {
  1664. border-width:0px;
  1665. white-space:nowrap;
  1666. text-transform:none;
  1667. }
  1668. #u164958_div {
  1669. border-width:0px;
  1670. position:absolute;
  1671. left:0px;
  1672. top:0px;
  1673. width:375px;
  1674. height:732px;
  1675. background:inherit;
  1676. background-color:rgba(242, 242, 242, 1);
  1677. border:none;
  1678. border-top:0px;
  1679. border-radius:25px;
  1680. border-top-left-radius:0px;
  1681. border-top-right-radius:0px;
  1682. -moz-box-shadow:none;
  1683. -webkit-box-shadow:none;
  1684. box-shadow:none;
  1685. }
  1686. #u164958 {
  1687. border-width:0px;
  1688. position:absolute;
  1689. left:487px;
  1690. top:105px;
  1691. width:375px;
  1692. height:732px;
  1693. display:flex;
  1694. }
  1695. #u164958 .text {
  1696. position:absolute;
  1697. align-self:center;
  1698. padding:2px 2px 2px 2px;
  1699. box-sizing:border-box;
  1700. width:100%;
  1701. }
  1702. #u164958_text {
  1703. border-width:0px;
  1704. word-wrap:break-word;
  1705. text-transform:none;
  1706. visibility:hidden;
  1707. }
  1708. #u164959 {
  1709. border-width:0px;
  1710. position:absolute;
  1711. left:0px;
  1712. top:0px;
  1713. width:0px;
  1714. height:0px;
  1715. }
  1716. #u164960_img {
  1717. border-width:0px;
  1718. position:absolute;
  1719. left:0px;
  1720. top:0px;
  1721. width:11px;
  1722. height:18px;
  1723. }
  1724. #u164960 {
  1725. border-width:0px;
  1726. position:absolute;
  1727. left:498px;
  1728. top:79px;
  1729. width:11px;
  1730. height:18px;
  1731. display:flex;
  1732. }
  1733. #u164960 .text {
  1734. position:absolute;
  1735. align-self:center;
  1736. padding:2px 2px 2px 2px;
  1737. box-sizing:border-box;
  1738. width:100%;
  1739. }
  1740. #u164960_text {
  1741. border-width:0px;
  1742. word-wrap:break-word;
  1743. text-transform:none;
  1744. visibility:hidden;
  1745. }
  1746. #u164961_div {
  1747. border-width:0px;
  1748. position:absolute;
  1749. left:0px;
  1750. top:0px;
  1751. width:57px;
  1752. height:30px;
  1753. background:inherit;
  1754. background-color:rgba(255, 255, 255, 0);
  1755. border:none;
  1756. border-left:0px;
  1757. border-top:0px;
  1758. border-right:0px;
  1759. border-radius:0px;
  1760. border-bottom-right-radius:0px;
  1761. border-bottom-left-radius:0px;
  1762. -moz-box-shadow:none;
  1763. -webkit-box-shadow:none;
  1764. box-shadow:none;
  1765. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1766. font-weight:500;
  1767. font-style:normal;
  1768. font-size:14px;
  1769. line-height:30px;
  1770. }
  1771. #u164961 {
  1772. border-width:0px;
  1773. position:absolute;
  1774. left:640px;
  1775. top:75px;
  1776. width:57px;
  1777. height:30px;
  1778. display:flex;
  1779. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1780. font-weight:500;
  1781. font-style:normal;
  1782. font-size:14px;
  1783. line-height:30px;
  1784. }
  1785. #u164961 .text {
  1786. position:absolute;
  1787. align-self:flex-start;
  1788. padding:0px 0px 0px 0px;
  1789. box-sizing:border-box;
  1790. width:100%;
  1791. }
  1792. #u164961_text {
  1793. border-width:0px;
  1794. white-space:nowrap;
  1795. text-transform:none;
  1796. }
  1797. #u164963_img {
  1798. border-width:0px;
  1799. position:absolute;
  1800. left:0px;
  1801. top:0px;
  1802. width:433px;
  1803. height:865px;
  1804. }
  1805. #u164963 {
  1806. border-width:0px;
  1807. position:absolute;
  1808. left:919px;
  1809. top:0px;
  1810. width:433px;
  1811. height:865px;
  1812. display:flex;
  1813. }
  1814. #u164963 .text {
  1815. position:absolute;
  1816. align-self:center;
  1817. padding:2px 2px 2px 2px;
  1818. box-sizing:border-box;
  1819. width:100%;
  1820. }
  1821. #u164963_text {
  1822. border-width:0px;
  1823. word-wrap:break-word;
  1824. text-transform:none;
  1825. visibility:hidden;
  1826. }
  1827. #u164964_div {
  1828. border-width:0px;
  1829. position:absolute;
  1830. left:0px;
  1831. top:0px;
  1832. width:375px;
  1833. height:40px;
  1834. background:inherit;
  1835. background-color:rgba(255, 255, 255, 1);
  1836. box-sizing:border-box;
  1837. border-width:1px;
  1838. border-style:solid;
  1839. border-color:rgba(215, 215, 215, 1);
  1840. border-left:0px;
  1841. border-top:0px;
  1842. border-right:0px;
  1843. border-radius:0px;
  1844. border-bottom-right-radius:0px;
  1845. border-bottom-left-radius:0px;
  1846. -moz-box-shadow:none;
  1847. -webkit-box-shadow:none;
  1848. box-shadow:none;
  1849. }
  1850. #u164964 {
  1851. border-width:0px;
  1852. position:absolute;
  1853. left:948px;
  1854. top:67px;
  1855. width:375px;
  1856. height:40px;
  1857. display:flex;
  1858. }
  1859. #u164964 .text {
  1860. position:absolute;
  1861. align-self:center;
  1862. padding:2px 2px 2px 2px;
  1863. box-sizing:border-box;
  1864. width:100%;
  1865. }
  1866. #u164964_text {
  1867. border-width:0px;
  1868. word-wrap:break-word;
  1869. text-transform:none;
  1870. visibility:hidden;
  1871. }
  1872. #u164965 {
  1873. border-width:0px;
  1874. position:absolute;
  1875. left:0px;
  1876. top:0px;
  1877. width:0px;
  1878. height:0px;
  1879. }
  1880. #u164966_div {
  1881. border-width:0px;
  1882. position:absolute;
  1883. left:0px;
  1884. top:0px;
  1885. width:88px;
  1886. height:32px;
  1887. background:inherit;
  1888. background-color:rgba(255, 255, 255, 1);
  1889. box-sizing:border-box;
  1890. border-width:1px;
  1891. border-style:solid;
  1892. border-color:rgba(242, 242, 242, 1);
  1893. border-radius:33px;
  1894. -moz-box-shadow:none;
  1895. -webkit-box-shadow:none;
  1896. box-shadow:none;
  1897. }
  1898. #u164966 {
  1899. border-width:0px;
  1900. position:absolute;
  1901. left:1228px;
  1902. top:71px;
  1903. width:88px;
  1904. height:32px;
  1905. display:flex;
  1906. }
  1907. #u164966 .text {
  1908. position:absolute;
  1909. align-self:center;
  1910. padding:2px 2px 2px 2px;
  1911. box-sizing:border-box;
  1912. width:100%;
  1913. }
  1914. #u164966_text {
  1915. border-width:0px;
  1916. word-wrap:break-word;
  1917. text-transform:none;
  1918. visibility:hidden;
  1919. }
  1920. #u164967 {
  1921. border-width:0px;
  1922. position:absolute;
  1923. left:0px;
  1924. top:0px;
  1925. width:0px;
  1926. height:0px;
  1927. }
  1928. #u164968_img {
  1929. border-width:0px;
  1930. position:absolute;
  1931. left:0px;
  1932. top:0px;
  1933. width:18px;
  1934. height:18px;
  1935. }
  1936. #u164968 {
  1937. border-width:0px;
  1938. position:absolute;
  1939. left:1291px;
  1940. top:78px;
  1941. width:18px;
  1942. height:18px;
  1943. display:flex;
  1944. }
  1945. #u164968 .text {
  1946. position:absolute;
  1947. align-self:center;
  1948. padding:2px 2px 2px 2px;
  1949. box-sizing:border-box;
  1950. width:100%;
  1951. }
  1952. #u164968_text {
  1953. border-width:0px;
  1954. word-wrap:break-word;
  1955. text-transform:none;
  1956. visibility:hidden;
  1957. }
  1958. #u164969_img {
  1959. border-width:0px;
  1960. position:absolute;
  1961. left:0px;
  1962. top:0px;
  1963. width:6px;
  1964. height:6px;
  1965. }
  1966. #u164969 {
  1967. border-width:0px;
  1968. position:absolute;
  1969. left:1297px;
  1970. top:84px;
  1971. width:6px;
  1972. height:6px;
  1973. display:flex;
  1974. }
  1975. #u164969 .text {
  1976. position:absolute;
  1977. align-self:center;
  1978. padding:2px 2px 2px 2px;
  1979. box-sizing:border-box;
  1980. width:100%;
  1981. }
  1982. #u164969_text {
  1983. border-width:0px;
  1984. word-wrap:break-word;
  1985. text-transform:none;
  1986. visibility:hidden;
  1987. }
  1988. #u164970 {
  1989. border-width:0px;
  1990. position:absolute;
  1991. left:0px;
  1992. top:0px;
  1993. width:0px;
  1994. height:0px;
  1995. }
  1996. #u164971_img {
  1997. border-width:0px;
  1998. position:absolute;
  1999. left:0px;
  2000. top:0px;
  2001. width:5px;
  2002. height:5px;
  2003. }
  2004. #u164971 {
  2005. border-width:0px;
  2006. position:absolute;
  2007. left:1242px;
  2008. top:85px;
  2009. width:5px;
  2010. height:5px;
  2011. display:flex;
  2012. }
  2013. #u164971 .text {
  2014. position:absolute;
  2015. align-self:center;
  2016. padding:2px 2px 2px 2px;
  2017. box-sizing:border-box;
  2018. width:100%;
  2019. }
  2020. #u164971_text {
  2021. border-width:0px;
  2022. word-wrap:break-word;
  2023. text-transform:none;
  2024. visibility:hidden;
  2025. }
  2026. #u164972_img {
  2027. border-width:0px;
  2028. position:absolute;
  2029. left:0px;
  2030. top:0px;
  2031. width:5px;
  2032. height:5px;
  2033. }
  2034. #u164972 {
  2035. border-width:0px;
  2036. position:absolute;
  2037. left:1258px;
  2038. top:85px;
  2039. width:5px;
  2040. height:5px;
  2041. display:flex;
  2042. }
  2043. #u164972 .text {
  2044. position:absolute;
  2045. align-self:center;
  2046. padding:2px 2px 2px 2px;
  2047. box-sizing:border-box;
  2048. width:100%;
  2049. }
  2050. #u164972_text {
  2051. border-width:0px;
  2052. word-wrap:break-word;
  2053. text-transform:none;
  2054. visibility:hidden;
  2055. }
  2056. #u164973_img {
  2057. border-width:0px;
  2058. position:absolute;
  2059. left:0px;
  2060. top:0px;
  2061. width:7px;
  2062. height:7px;
  2063. }
  2064. #u164973 {
  2065. border-width:0px;
  2066. position:absolute;
  2067. left:1249px;
  2068. top:84px;
  2069. width:7px;
  2070. height:7px;
  2071. display:flex;
  2072. }
  2073. #u164973 .text {
  2074. position:absolute;
  2075. align-self:center;
  2076. padding:2px 2px 2px 2px;
  2077. box-sizing:border-box;
  2078. width:100%;
  2079. }
  2080. #u164973_text {
  2081. border-width:0px;
  2082. word-wrap:break-word;
  2083. text-transform:none;
  2084. visibility:hidden;
  2085. }
  2086. #u164974_img {
  2087. border-width:0px;
  2088. position:absolute;
  2089. left:0px;
  2090. top:0px;
  2091. width:19px;
  2092. height:2px;
  2093. }
  2094. #u164974 {
  2095. border-width:0px;
  2096. position:absolute;
  2097. left:1266px;
  2098. top:87px;
  2099. width:18px;
  2100. height:1px;
  2101. display:flex;
  2102. -webkit-transform:rotate(90deg);
  2103. -moz-transform:rotate(90deg);
  2104. -ms-transform:rotate(90deg);
  2105. transform:rotate(90deg);
  2106. }
  2107. #u164974 .text {
  2108. position:absolute;
  2109. align-self:center;
  2110. padding:2px 2px 2px 2px;
  2111. box-sizing:border-box;
  2112. width:100%;
  2113. }
  2114. #u164974_text {
  2115. border-width:0px;
  2116. word-wrap:break-word;
  2117. text-transform:none;
  2118. visibility:hidden;
  2119. }
  2120. #u164975_img {
  2121. border-width:0px;
  2122. position:absolute;
  2123. left:0px;
  2124. top:0px;
  2125. width:375px;
  2126. height:44px;
  2127. }
  2128. #u164975 {
  2129. border-width:0px;
  2130. position:absolute;
  2131. left:948px;
  2132. top:24px;
  2133. width:375px;
  2134. height:44px;
  2135. display:flex;
  2136. }
  2137. #u164975 .text {
  2138. position:absolute;
  2139. align-self:center;
  2140. padding:2px 2px 2px 2px;
  2141. box-sizing:border-box;
  2142. width:100%;
  2143. }
  2144. #u164975_text {
  2145. border-width:0px;
  2146. word-wrap:break-word;
  2147. text-transform:none;
  2148. visibility:hidden;
  2149. }
  2150. #u164976_div {
  2151. border-width:0px;
  2152. position:absolute;
  2153. left:0px;
  2154. top:0px;
  2155. width:375px;
  2156. height:50px;
  2157. background:inherit;
  2158. background-color:rgba(255, 255, 255, 1);
  2159. box-sizing:border-box;
  2160. border-width:1px;
  2161. border-style:solid;
  2162. border-color:rgba(242, 242, 242, 1);
  2163. border-radius:26px;
  2164. border-top-left-radius:0px;
  2165. border-top-right-radius:0px;
  2166. -moz-box-shadow:none;
  2167. -webkit-box-shadow:none;
  2168. box-shadow:none;
  2169. }
  2170. #u164976 {
  2171. border-width:0px;
  2172. position:absolute;
  2173. left:948px;
  2174. top:788px;
  2175. width:375px;
  2176. height:50px;
  2177. display:flex;
  2178. }
  2179. #u164976 .text {
  2180. position:absolute;
  2181. align-self:center;
  2182. padding:2px 2px 2px 2px;
  2183. box-sizing:border-box;
  2184. width:100%;
  2185. }
  2186. #u164976_text {
  2187. border-width:0px;
  2188. word-wrap:break-word;
  2189. text-transform:none;
  2190. visibility:hidden;
  2191. }
  2192. #u164977 {
  2193. border-width:0px;
  2194. position:absolute;
  2195. left:0px;
  2196. top:0px;
  2197. width:0px;
  2198. height:0px;
  2199. }
  2200. #u164978_img {
  2201. border-width:0px;
  2202. position:absolute;
  2203. left:0px;
  2204. top:0px;
  2205. width:24px;
  2206. height:24px;
  2207. }
  2208. #u164978 {
  2209. border-width:0px;
  2210. position:absolute;
  2211. left:988px;
  2212. top:792px;
  2213. width:24px;
  2214. height:24px;
  2215. display:flex;
  2216. font-size:8px;
  2217. }
  2218. #u164978 .text {
  2219. position:absolute;
  2220. align-self:center;
  2221. padding:2px 2px 2px 2px;
  2222. box-sizing:border-box;
  2223. width:100%;
  2224. }
  2225. #u164978_text {
  2226. border-width:0px;
  2227. word-wrap:break-word;
  2228. text-transform:none;
  2229. }
  2230. #u164979_div {
  2231. border-width:0px;
  2232. position:absolute;
  2233. left:0px;
  2234. top:0px;
  2235. width:25px;
  2236. height:17px;
  2237. background:inherit;
  2238. background-color:rgba(255, 255, 255, 0);
  2239. border:none;
  2240. border-radius:0px;
  2241. -moz-box-shadow:none;
  2242. -webkit-box-shadow:none;
  2243. box-shadow:none;
  2244. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2245. font-weight:400;
  2246. font-style:normal;
  2247. font-size:12px;
  2248. }
  2249. #u164979 {
  2250. border-width:0px;
  2251. position:absolute;
  2252. left:988px;
  2253. top:817px;
  2254. width:25px;
  2255. height:17px;
  2256. display:flex;
  2257. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2258. font-weight:400;
  2259. font-style:normal;
  2260. font-size:12px;
  2261. }
  2262. #u164979 .text {
  2263. position:absolute;
  2264. align-self:flex-start;
  2265. padding:0px 0px 0px 0px;
  2266. box-sizing:border-box;
  2267. width:100%;
  2268. }
  2269. #u164979_text {
  2270. border-width:0px;
  2271. white-space:nowrap;
  2272. text-transform:none;
  2273. }
  2274. #u164980 {
  2275. border-width:0px;
  2276. position:absolute;
  2277. left:0px;
  2278. top:0px;
  2279. width:0px;
  2280. height:0px;
  2281. }
  2282. #u164981_img {
  2283. border-width:0px;
  2284. position:absolute;
  2285. left:0px;
  2286. top:0px;
  2287. width:24px;
  2288. height:24px;
  2289. }
  2290. #u164981 {
  2291. border-width:0px;
  2292. position:absolute;
  2293. left:1258px;
  2294. top:794px;
  2295. width:24px;
  2296. height:24px;
  2297. display:flex;
  2298. font-size:8px;
  2299. }
  2300. #u164981 .text {
  2301. position:absolute;
  2302. align-self:center;
  2303. padding:2px 2px 2px 2px;
  2304. box-sizing:border-box;
  2305. width:100%;
  2306. }
  2307. #u164981_text {
  2308. border-width:0px;
  2309. word-wrap:break-word;
  2310. text-transform:none;
  2311. }
  2312. #u164982_div {
  2313. border-width:0px;
  2314. position:absolute;
  2315. left:0px;
  2316. top:0px;
  2317. width:25px;
  2318. height:17px;
  2319. background:inherit;
  2320. background-color:rgba(255, 255, 255, 0);
  2321. border:none;
  2322. border-radius:0px;
  2323. -moz-box-shadow:none;
  2324. -webkit-box-shadow:none;
  2325. box-shadow:none;
  2326. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2327. font-weight:400;
  2328. font-style:normal;
  2329. font-size:12px;
  2330. }
  2331. #u164982 {
  2332. border-width:0px;
  2333. position:absolute;
  2334. left:1258px;
  2335. top:819px;
  2336. width:25px;
  2337. height:17px;
  2338. display:flex;
  2339. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2340. font-weight:400;
  2341. font-style:normal;
  2342. font-size:12px;
  2343. }
  2344. #u164982 .text {
  2345. position:absolute;
  2346. align-self:flex-start;
  2347. padding:0px 0px 0px 0px;
  2348. box-sizing:border-box;
  2349. width:100%;
  2350. }
  2351. #u164982_text {
  2352. border-width:0px;
  2353. white-space:nowrap;
  2354. text-transform:none;
  2355. }
  2356. #u164983_div {
  2357. border-width:0px;
  2358. position:absolute;
  2359. left:0px;
  2360. top:0px;
  2361. width:375px;
  2362. height:681px;
  2363. background:inherit;
  2364. background-color:rgba(242, 242, 242, 0.462745098039216);
  2365. border:none;
  2366. border-radius:0px;
  2367. -moz-box-shadow:none;
  2368. -webkit-box-shadow:none;
  2369. box-shadow:none;
  2370. }
  2371. #u164983 {
  2372. border-width:0px;
  2373. position:absolute;
  2374. left:948px;
  2375. top:107px;
  2376. width:375px;
  2377. height:681px;
  2378. display:flex;
  2379. }
  2380. #u164983 .text {
  2381. position:absolute;
  2382. align-self:center;
  2383. padding:2px 2px 2px 2px;
  2384. box-sizing:border-box;
  2385. width:100%;
  2386. }
  2387. #u164983_text {
  2388. border-width:0px;
  2389. word-wrap:break-word;
  2390. text-transform:none;
  2391. visibility:hidden;
  2392. }
  2393. #u164984 {
  2394. border-width:0px;
  2395. position:absolute;
  2396. left:0px;
  2397. top:0px;
  2398. width:0px;
  2399. height:0px;
  2400. }
  2401. #u164985_img {
  2402. border-width:0px;
  2403. position:absolute;
  2404. left:0px;
  2405. top:0px;
  2406. width:24px;
  2407. height:24px;
  2408. }
  2409. #u164985 {
  2410. border-width:0px;
  2411. position:absolute;
  2412. left:1170px;
  2413. top:792px;
  2414. width:24px;
  2415. height:24px;
  2416. display:flex;
  2417. font-size:8px;
  2418. }
  2419. #u164985 .text {
  2420. position:absolute;
  2421. align-self:center;
  2422. padding:2px 2px 2px 2px;
  2423. box-sizing:border-box;
  2424. width:100%;
  2425. }
  2426. #u164985_text {
  2427. border-width:0px;
  2428. word-wrap:break-word;
  2429. text-transform:none;
  2430. }
  2431. #u164986_div {
  2432. border-width:0px;
  2433. position:absolute;
  2434. left:0px;
  2435. top:0px;
  2436. width:37px;
  2437. height:17px;
  2438. background:inherit;
  2439. background-color:rgba(255, 255, 255, 0);
  2440. border:none;
  2441. border-radius:0px;
  2442. -moz-box-shadow:none;
  2443. -webkit-box-shadow:none;
  2444. box-shadow:none;
  2445. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2446. font-weight:400;
  2447. font-style:normal;
  2448. font-size:12px;
  2449. }
  2450. #u164986 {
  2451. border-width:0px;
  2452. position:absolute;
  2453. left:1164px;
  2454. top:817px;
  2455. width:37px;
  2456. height:17px;
  2457. display:flex;
  2458. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2459. font-weight:400;
  2460. font-style:normal;
  2461. font-size:12px;
  2462. }
  2463. #u164986 .text {
  2464. position:absolute;
  2465. align-self:flex-start;
  2466. padding:0px 0px 0px 0px;
  2467. box-sizing:border-box;
  2468. width:100%;
  2469. }
  2470. #u164986_text {
  2471. border-width:0px;
  2472. white-space:nowrap;
  2473. text-transform:none;
  2474. }
  2475. #u164987 {
  2476. border-width:0px;
  2477. position:absolute;
  2478. left:0px;
  2479. top:0px;
  2480. width:0px;
  2481. height:0px;
  2482. }
  2483. #u164988_img {
  2484. border-width:0px;
  2485. position:absolute;
  2486. left:0px;
  2487. top:0px;
  2488. width:24px;
  2489. height:24px;
  2490. }
  2491. #u164988 {
  2492. border-width:0px;
  2493. position:absolute;
  2494. left:1076px;
  2495. top:792px;
  2496. width:24px;
  2497. height:24px;
  2498. display:flex;
  2499. font-size:8px;
  2500. }
  2501. #u164988 .text {
  2502. position:absolute;
  2503. align-self:center;
  2504. padding:2px 2px 2px 2px;
  2505. box-sizing:border-box;
  2506. width:100%;
  2507. }
  2508. #u164988_text {
  2509. border-width:0px;
  2510. word-wrap:break-word;
  2511. text-transform:none;
  2512. }
  2513. #u164989_div {
  2514. border-width:0px;
  2515. position:absolute;
  2516. left:0px;
  2517. top:0px;
  2518. width:37px;
  2519. height:17px;
  2520. background:inherit;
  2521. background-color:rgba(255, 255, 255, 0);
  2522. border:none;
  2523. border-radius:0px;
  2524. -moz-box-shadow:none;
  2525. -webkit-box-shadow:none;
  2526. box-shadow:none;
  2527. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2528. font-weight:400;
  2529. font-style:normal;
  2530. font-size:12px;
  2531. }
  2532. #u164989 {
  2533. border-width:0px;
  2534. position:absolute;
  2535. left:1070px;
  2536. top:817px;
  2537. width:37px;
  2538. height:17px;
  2539. display:flex;
  2540. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2541. font-weight:400;
  2542. font-style:normal;
  2543. font-size:12px;
  2544. }
  2545. #u164989 .text {
  2546. position:absolute;
  2547. align-self:flex-start;
  2548. padding:0px 0px 0px 0px;
  2549. box-sizing:border-box;
  2550. width:100%;
  2551. }
  2552. #u164989_text {
  2553. border-width:0px;
  2554. white-space:nowrap;
  2555. text-transform:none;
  2556. }
  2557. #u164990_div {
  2558. border-width:0px;
  2559. position:absolute;
  2560. left:0px;
  2561. top:0px;
  2562. width:375px;
  2563. height:788px;
  2564. background:inherit;
  2565. background-color:rgba(242, 242, 242, 1);
  2566. border:none;
  2567. border-top:0px;
  2568. border-radius:25px;
  2569. border-top-left-radius:0px;
  2570. border-top-right-radius:0px;
  2571. -moz-box-shadow:none;
  2572. -webkit-box-shadow:none;
  2573. box-shadow:none;
  2574. }
  2575. #u164990 {
  2576. border-width:0px;
  2577. position:absolute;
  2578. left:948px;
  2579. top:105px;
  2580. width:375px;
  2581. height:788px;
  2582. display:flex;
  2583. }
  2584. #u164990 .text {
  2585. position:absolute;
  2586. align-self:center;
  2587. padding:2px 2px 2px 2px;
  2588. box-sizing:border-box;
  2589. width:100%;
  2590. }
  2591. #u164990_text {
  2592. border-width:0px;
  2593. word-wrap:break-word;
  2594. text-transform:none;
  2595. visibility:hidden;
  2596. }
  2597. #u164991 {
  2598. border-width:0px;
  2599. position:absolute;
  2600. left:0px;
  2601. top:0px;
  2602. width:0px;
  2603. height:0px;
  2604. }
  2605. #u164992_img {
  2606. border-width:0px;
  2607. position:absolute;
  2608. left:0px;
  2609. top:0px;
  2610. width:11px;
  2611. height:18px;
  2612. }
  2613. #u164992 {
  2614. border-width:0px;
  2615. position:absolute;
  2616. left:959px;
  2617. top:79px;
  2618. width:11px;
  2619. height:18px;
  2620. display:flex;
  2621. }
  2622. #u164992 .text {
  2623. position:absolute;
  2624. align-self:center;
  2625. padding:2px 2px 2px 2px;
  2626. box-sizing:border-box;
  2627. width:100%;
  2628. }
  2629. #u164992_text {
  2630. border-width:0px;
  2631. word-wrap:break-word;
  2632. text-transform:none;
  2633. visibility:hidden;
  2634. }
  2635. #u164993_div {
  2636. border-width:0px;
  2637. position:absolute;
  2638. left:0px;
  2639. top:0px;
  2640. width:57px;
  2641. height:30px;
  2642. background:inherit;
  2643. background-color:rgba(255, 255, 255, 0);
  2644. border:none;
  2645. border-left:0px;
  2646. border-top:0px;
  2647. border-right:0px;
  2648. border-radius:0px;
  2649. border-bottom-right-radius:0px;
  2650. border-bottom-left-radius:0px;
  2651. -moz-box-shadow:none;
  2652. -webkit-box-shadow:none;
  2653. box-shadow:none;
  2654. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2655. font-weight:500;
  2656. font-style:normal;
  2657. font-size:14px;
  2658. line-height:30px;
  2659. }
  2660. #u164993 {
  2661. border-width:0px;
  2662. position:absolute;
  2663. left:1101px;
  2664. top:75px;
  2665. width:57px;
  2666. height:30px;
  2667. display:flex;
  2668. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2669. font-weight:500;
  2670. font-style:normal;
  2671. font-size:14px;
  2672. line-height:30px;
  2673. }
  2674. #u164993 .text {
  2675. position:absolute;
  2676. align-self:flex-start;
  2677. padding:0px 0px 0px 0px;
  2678. box-sizing:border-box;
  2679. width:100%;
  2680. }
  2681. #u164993_text {
  2682. border-width:0px;
  2683. white-space:nowrap;
  2684. text-transform:none;
  2685. }
  2686. #u164994 {
  2687. border-width:0px;
  2688. position:absolute;
  2689. left:0px;
  2690. top:0px;
  2691. width:0px;
  2692. height:0px;
  2693. }
  2694. #u164995_img {
  2695. border-width:0px;
  2696. position:absolute;
  2697. left:0px;
  2698. top:0px;
  2699. width:375px;
  2700. height:69px;
  2701. }
  2702. #u164995 {
  2703. border-width:0px;
  2704. position:absolute;
  2705. left:29px;
  2706. top:105px;
  2707. width:375px;
  2708. height:69px;
  2709. display:flex;
  2710. }
  2711. #u164995 .text {
  2712. position:absolute;
  2713. align-self:center;
  2714. padding:2px 2px 2px 2px;
  2715. box-sizing:border-box;
  2716. width:100%;
  2717. }
  2718. #u164995_text {
  2719. border-width:0px;
  2720. word-wrap:break-word;
  2721. text-transform:none;
  2722. visibility:hidden;
  2723. }
  2724. #u164996_div {
  2725. border-width:0px;
  2726. position:absolute;
  2727. left:0px;
  2728. top:0px;
  2729. width:97px;
  2730. height:30px;
  2731. background:inherit;
  2732. background-color:rgba(255, 255, 255, 0);
  2733. border:none;
  2734. border-left:0px;
  2735. border-top:0px;
  2736. border-right:0px;
  2737. border-radius:0px;
  2738. border-bottom-right-radius:0px;
  2739. border-bottom-left-radius:0px;
  2740. -moz-box-shadow:none;
  2741. -webkit-box-shadow:none;
  2742. box-shadow:none;
  2743. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2744. font-weight:500;
  2745. font-style:normal;
  2746. line-height:30px;
  2747. }
  2748. #u164996 {
  2749. border-width:0px;
  2750. position:absolute;
  2751. left:49px;
  2752. top:125px;
  2753. width:97px;
  2754. height:30px;
  2755. display:flex;
  2756. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2757. font-weight:500;
  2758. font-style:normal;
  2759. line-height:30px;
  2760. }
  2761. #u164996 .text {
  2762. position:absolute;
  2763. align-self:flex-start;
  2764. padding:0px 0px 0px 0px;
  2765. box-sizing:border-box;
  2766. width:100%;
  2767. }
  2768. #u164996_text {
  2769. border-width:0px;
  2770. white-space:nowrap;
  2771. text-transform:none;
  2772. }
  2773. #u164997_div {
  2774. border-width:0px;
  2775. position:absolute;
  2776. left:0px;
  2777. top:0px;
  2778. width:73px;
  2779. height:30px;
  2780. background:inherit;
  2781. background-color:rgba(255, 255, 255, 0);
  2782. border:none;
  2783. border-left:0px;
  2784. border-top:0px;
  2785. border-right:0px;
  2786. border-radius:0px;
  2787. border-bottom-right-radius:0px;
  2788. border-bottom-left-radius:0px;
  2789. -moz-box-shadow:none;
  2790. -webkit-box-shadow:none;
  2791. box-shadow:none;
  2792. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2793. font-weight:400;
  2794. font-style:normal;
  2795. font-size:18px;
  2796. line-height:30px;
  2797. }
  2798. #u164997 {
  2799. border-width:0px;
  2800. position:absolute;
  2801. left:166px;
  2802. top:125px;
  2803. width:73px;
  2804. height:30px;
  2805. display:flex;
  2806. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2807. font-weight:400;
  2808. font-style:normal;
  2809. font-size:18px;
  2810. line-height:30px;
  2811. }
  2812. #u164997 .text {
  2813. position:absolute;
  2814. align-self:flex-start;
  2815. padding:0px 0px 0px 0px;
  2816. box-sizing:border-box;
  2817. width:100%;
  2818. }
  2819. #u164997_text {
  2820. border-width:0px;
  2821. white-space:nowrap;
  2822. text-transform:none;
  2823. }
  2824. #u164998_div {
  2825. border-width:0px;
  2826. position:absolute;
  2827. left:0px;
  2828. top:0px;
  2829. width:73px;
  2830. height:30px;
  2831. background:inherit;
  2832. background-color:rgba(255, 255, 255, 0);
  2833. border:none;
  2834. border-left:0px;
  2835. border-top:0px;
  2836. border-right:0px;
  2837. border-radius:0px;
  2838. border-bottom-right-radius:0px;
  2839. border-bottom-left-radius:0px;
  2840. -moz-box-shadow:none;
  2841. -webkit-box-shadow:none;
  2842. box-shadow:none;
  2843. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2844. font-weight:400;
  2845. font-style:normal;
  2846. font-size:18px;
  2847. line-height:30px;
  2848. }
  2849. #u164998 {
  2850. border-width:0px;
  2851. position:absolute;
  2852. left:259px;
  2853. top:125px;
  2854. width:73px;
  2855. height:30px;
  2856. display:flex;
  2857. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2858. font-weight:400;
  2859. font-style:normal;
  2860. font-size:18px;
  2861. line-height:30px;
  2862. }
  2863. #u164998 .text {
  2864. position:absolute;
  2865. align-self:flex-start;
  2866. padding:0px 0px 0px 0px;
  2867. box-sizing:border-box;
  2868. width:100%;
  2869. }
  2870. #u164998_text {
  2871. border-width:0px;
  2872. white-space:nowrap;
  2873. text-transform:none;
  2874. }
  2875. #u164999 {
  2876. border-width:0px;
  2877. position:absolute;
  2878. left:0px;
  2879. top:0px;
  2880. width:0px;
  2881. height:0px;
  2882. }
  2883. #u165000_img {
  2884. border-width:0px;
  2885. position:absolute;
  2886. left:0px;
  2887. top:0px;
  2888. width:375px;
  2889. height:40px;
  2890. }
  2891. #u165000 {
  2892. border-width:0px;
  2893. position:absolute;
  2894. left:29px;
  2895. top:174px;
  2896. width:375px;
  2897. height:40px;
  2898. display:flex;
  2899. }
  2900. #u165000 .text {
  2901. position:absolute;
  2902. align-self:center;
  2903. padding:2px 2px 2px 2px;
  2904. box-sizing:border-box;
  2905. width:100%;
  2906. }
  2907. #u165000_text {
  2908. border-width:0px;
  2909. word-wrap:break-word;
  2910. text-transform:none;
  2911. visibility:hidden;
  2912. }
  2913. #u165001_div {
  2914. border-width:0px;
  2915. position:absolute;
  2916. left:0px;
  2917. top:0px;
  2918. width:47px;
  2919. height:40px;
  2920. background:inherit;
  2921. background-color:rgba(255, 255, 255, 1);
  2922. box-sizing:border-box;
  2923. border-width:2px;
  2924. border-style:solid;
  2925. border-color:rgba(0, 137, 254, 1);
  2926. border-left:0px;
  2927. border-top:0px;
  2928. border-right:0px;
  2929. border-radius:0px;
  2930. border-bottom-right-radius:0px;
  2931. border-bottom-left-radius:0px;
  2932. -moz-box-shadow:none;
  2933. -webkit-box-shadow:none;
  2934. box-shadow:none;
  2935. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2936. font-weight:400;
  2937. font-style:normal;
  2938. font-size:14px;
  2939. color:#0089FE;
  2940. }
  2941. #u165001 {
  2942. border-width:0px;
  2943. position:absolute;
  2944. left:122px;
  2945. top:174px;
  2946. width:47px;
  2947. height:40px;
  2948. display:flex;
  2949. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2950. font-weight:400;
  2951. font-style:normal;
  2952. font-size:14px;
  2953. color:#0089FE;
  2954. }
  2955. #u165001 .text {
  2956. position:absolute;
  2957. align-self:center;
  2958. padding:2px 2px 2px 2px;
  2959. box-sizing:border-box;
  2960. width:100%;
  2961. }
  2962. #u165001_text {
  2963. border-width:0px;
  2964. white-space:nowrap;
  2965. text-transform:none;
  2966. }
  2967. #u165002_div {
  2968. border-width:0px;
  2969. position:absolute;
  2970. left:0px;
  2971. top:0px;
  2972. width:47px;
  2973. height:40px;
  2974. background:inherit;
  2975. background-color:rgba(255, 255, 255, 1);
  2976. border:none;
  2977. border-left:0px;
  2978. border-top:0px;
  2979. border-right:0px;
  2980. border-radius:0px;
  2981. border-bottom-right-radius:0px;
  2982. border-bottom-left-radius:0px;
  2983. -moz-box-shadow:none;
  2984. -webkit-box-shadow:none;
  2985. box-shadow:none;
  2986. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2987. font-weight:400;
  2988. font-style:normal;
  2989. font-size:14px;
  2990. }
  2991. #u165002 {
  2992. border-width:0px;
  2993. position:absolute;
  2994. left:210px;
  2995. top:174px;
  2996. width:47px;
  2997. height:40px;
  2998. display:flex;
  2999. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3000. font-weight:400;
  3001. font-style:normal;
  3002. font-size:14px;
  3003. }
  3004. #u165002 .text {
  3005. position:absolute;
  3006. align-self:center;
  3007. padding:2px 2px 2px 2px;
  3008. box-sizing:border-box;
  3009. width:100%;
  3010. }
  3011. #u165002_text {
  3012. border-width:0px;
  3013. white-space:nowrap;
  3014. text-transform:none;
  3015. }
  3016. #u165003_div {
  3017. border-width:0px;
  3018. position:absolute;
  3019. left:0px;
  3020. top:0px;
  3021. width:47px;
  3022. height:40px;
  3023. background:inherit;
  3024. background-color:rgba(255, 255, 255, 1);
  3025. border:none;
  3026. border-left:0px;
  3027. border-top:0px;
  3028. border-right:0px;
  3029. border-radius:0px;
  3030. border-bottom-right-radius:0px;
  3031. border-bottom-left-radius:0px;
  3032. -moz-box-shadow:none;
  3033. -webkit-box-shadow:none;
  3034. box-shadow:none;
  3035. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3036. font-weight:400;
  3037. font-style:normal;
  3038. font-size:14px;
  3039. }
  3040. #u165003 {
  3041. border-width:0px;
  3042. position:absolute;
  3043. left:297px;
  3044. top:174px;
  3045. width:47px;
  3046. height:40px;
  3047. display:flex;
  3048. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3049. font-weight:400;
  3050. font-style:normal;
  3051. font-size:14px;
  3052. }
  3053. #u165003 .text {
  3054. position:absolute;
  3055. align-self:center;
  3056. padding:2px 2px 2px 2px;
  3057. box-sizing:border-box;
  3058. width:100%;
  3059. }
  3060. #u165003_text {
  3061. border-width:0px;
  3062. white-space:nowrap;
  3063. text-transform:none;
  3064. }
  3065. #u165004_div {
  3066. border-width:0px;
  3067. position:absolute;
  3068. left:0px;
  3069. top:0px;
  3070. width:33px;
  3071. height:40px;
  3072. background:inherit;
  3073. background-color:rgba(255, 255, 255, 1);
  3074. border:none;
  3075. border-left:0px;
  3076. border-top:0px;
  3077. border-right:0px;
  3078. border-radius:0px;
  3079. border-bottom-right-radius:0px;
  3080. border-bottom-left-radius:0px;
  3081. -moz-box-shadow:none;
  3082. -webkit-box-shadow:none;
  3083. box-shadow:none;
  3084. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3085. font-weight:400;
  3086. font-style:normal;
  3087. font-size:14px;
  3088. }
  3089. #u165004 {
  3090. border-width:0px;
  3091. position:absolute;
  3092. left:49px;
  3093. top:174px;
  3094. width:33px;
  3095. height:40px;
  3096. display:flex;
  3097. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3098. font-weight:400;
  3099. font-style:normal;
  3100. font-size:14px;
  3101. }
  3102. #u165004 .text {
  3103. position:absolute;
  3104. align-self:center;
  3105. padding:2px 2px 2px 2px;
  3106. box-sizing:border-box;
  3107. width:100%;
  3108. }
  3109. #u165004_text {
  3110. border-width:0px;
  3111. white-space:nowrap;
  3112. text-transform:none;
  3113. }
  3114. #u165005 {
  3115. border-width:0px;
  3116. position:absolute;
  3117. left:0px;
  3118. top:0px;
  3119. width:0px;
  3120. height:0px;
  3121. }
  3122. #u165006_div {
  3123. border-width:0px;
  3124. position:absolute;
  3125. left:0px;
  3126. top:0px;
  3127. width:40px;
  3128. height:40px;
  3129. background:inherit;
  3130. background-color:rgba(215, 215, 215, 1);
  3131. border:none;
  3132. border-radius:0px;
  3133. -moz-box-shadow:none;
  3134. -webkit-box-shadow:none;
  3135. box-shadow:none;
  3136. }
  3137. #u165006 {
  3138. border-width:0px;
  3139. position:absolute;
  3140. left:364px;
  3141. top:174px;
  3142. width:40px;
  3143. height:40px;
  3144. display:flex;
  3145. }
  3146. #u165006 .text {
  3147. position:absolute;
  3148. align-self:center;
  3149. padding:2px 2px 2px 2px;
  3150. box-sizing:border-box;
  3151. width:100%;
  3152. }
  3153. #u165006_text {
  3154. border-width:0px;
  3155. word-wrap:break-word;
  3156. text-transform:none;
  3157. visibility:hidden;
  3158. }
  3159. #u165007_img {
  3160. border-width:0px;
  3161. position:absolute;
  3162. left:0px;
  3163. top:0px;
  3164. width:16px;
  3165. height:16px;
  3166. }
  3167. #u165007 {
  3168. border-width:0px;
  3169. position:absolute;
  3170. left:378px;
  3171. top:186px;
  3172. width:16px;
  3173. height:16px;
  3174. display:flex;
  3175. }
  3176. #u165007 .text {
  3177. position:absolute;
  3178. align-self:center;
  3179. padding:2px 2px 2px 2px;
  3180. box-sizing:border-box;
  3181. width:100%;
  3182. }
  3183. #u165007_text {
  3184. border-width:0px;
  3185. word-wrap:break-word;
  3186. text-transform:none;
  3187. visibility:hidden;
  3188. }
  3189. #u165008 {
  3190. border-width:0px;
  3191. position:absolute;
  3192. left:0px;
  3193. top:0px;
  3194. width:0px;
  3195. height:0px;
  3196. }
  3197. #u165009_img {
  3198. border-width:0px;
  3199. position:absolute;
  3200. left:0px;
  3201. top:0px;
  3202. width:375px;
  3203. height:69px;
  3204. }
  3205. #u165009 {
  3206. border-width:0px;
  3207. position:absolute;
  3208. left:487px;
  3209. top:105px;
  3210. width:375px;
  3211. height:69px;
  3212. display:flex;
  3213. }
  3214. #u165009 .text {
  3215. position:absolute;
  3216. align-self:center;
  3217. padding:2px 2px 2px 2px;
  3218. box-sizing:border-box;
  3219. width:100%;
  3220. }
  3221. #u165009_text {
  3222. border-width:0px;
  3223. word-wrap:break-word;
  3224. text-transform:none;
  3225. visibility:hidden;
  3226. }
  3227. #u165010_div {
  3228. border-width:0px;
  3229. position:absolute;
  3230. left:0px;
  3231. top:0px;
  3232. width:97px;
  3233. height:30px;
  3234. background:inherit;
  3235. background-color:rgba(255, 255, 255, 0);
  3236. border:none;
  3237. border-left:0px;
  3238. border-top:0px;
  3239. border-right:0px;
  3240. border-radius:0px;
  3241. border-bottom-right-radius:0px;
  3242. border-bottom-left-radius:0px;
  3243. -moz-box-shadow:none;
  3244. -webkit-box-shadow:none;
  3245. box-shadow:none;
  3246. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3247. font-weight:500;
  3248. font-style:normal;
  3249. line-height:30px;
  3250. }
  3251. #u165010 {
  3252. border-width:0px;
  3253. position:absolute;
  3254. left:507px;
  3255. top:125px;
  3256. width:97px;
  3257. height:30px;
  3258. display:flex;
  3259. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3260. font-weight:500;
  3261. font-style:normal;
  3262. line-height:30px;
  3263. }
  3264. #u165010 .text {
  3265. position:absolute;
  3266. align-self:flex-start;
  3267. padding:0px 0px 0px 0px;
  3268. box-sizing:border-box;
  3269. width:100%;
  3270. }
  3271. #u165010_text {
  3272. border-width:0px;
  3273. white-space:nowrap;
  3274. text-transform:none;
  3275. }
  3276. #u165011_div {
  3277. border-width:0px;
  3278. position:absolute;
  3279. left:0px;
  3280. top:0px;
  3281. width:73px;
  3282. height:30px;
  3283. background:inherit;
  3284. background-color:rgba(255, 255, 255, 0);
  3285. border:none;
  3286. border-left:0px;
  3287. border-top:0px;
  3288. border-right:0px;
  3289. border-radius:0px;
  3290. border-bottom-right-radius:0px;
  3291. border-bottom-left-radius:0px;
  3292. -moz-box-shadow:none;
  3293. -webkit-box-shadow:none;
  3294. box-shadow:none;
  3295. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3296. font-weight:400;
  3297. font-style:normal;
  3298. font-size:18px;
  3299. line-height:30px;
  3300. }
  3301. #u165011 {
  3302. border-width:0px;
  3303. position:absolute;
  3304. left:624px;
  3305. top:125px;
  3306. width:73px;
  3307. height:30px;
  3308. display:flex;
  3309. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3310. font-weight:400;
  3311. font-style:normal;
  3312. font-size:18px;
  3313. line-height:30px;
  3314. }
  3315. #u165011 .text {
  3316. position:absolute;
  3317. align-self:flex-start;
  3318. padding:0px 0px 0px 0px;
  3319. box-sizing:border-box;
  3320. width:100%;
  3321. }
  3322. #u165011_text {
  3323. border-width:0px;
  3324. white-space:nowrap;
  3325. text-transform:none;
  3326. }
  3327. #u165012_div {
  3328. border-width:0px;
  3329. position:absolute;
  3330. left:0px;
  3331. top:0px;
  3332. width:73px;
  3333. height:30px;
  3334. background:inherit;
  3335. background-color:rgba(255, 255, 255, 0);
  3336. border:none;
  3337. border-left:0px;
  3338. border-top:0px;
  3339. border-right:0px;
  3340. border-radius:0px;
  3341. border-bottom-right-radius:0px;
  3342. border-bottom-left-radius:0px;
  3343. -moz-box-shadow:none;
  3344. -webkit-box-shadow:none;
  3345. box-shadow:none;
  3346. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3347. font-weight:400;
  3348. font-style:normal;
  3349. font-size:18px;
  3350. line-height:30px;
  3351. }
  3352. #u165012 {
  3353. border-width:0px;
  3354. position:absolute;
  3355. left:717px;
  3356. top:125px;
  3357. width:73px;
  3358. height:30px;
  3359. display:flex;
  3360. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3361. font-weight:400;
  3362. font-style:normal;
  3363. font-size:18px;
  3364. line-height:30px;
  3365. }
  3366. #u165012 .text {
  3367. position:absolute;
  3368. align-self:flex-start;
  3369. padding:0px 0px 0px 0px;
  3370. box-sizing:border-box;
  3371. width:100%;
  3372. }
  3373. #u165012_text {
  3374. border-width:0px;
  3375. white-space:nowrap;
  3376. text-transform:none;
  3377. }
  3378. #u165013 {
  3379. border-width:0px;
  3380. position:absolute;
  3381. left:0px;
  3382. top:0px;
  3383. width:0px;
  3384. height:0px;
  3385. }
  3386. #u165014_img {
  3387. border-width:0px;
  3388. position:absolute;
  3389. left:0px;
  3390. top:0px;
  3391. width:375px;
  3392. height:40px;
  3393. }
  3394. #u165014 {
  3395. border-width:0px;
  3396. position:absolute;
  3397. left:487px;
  3398. top:174px;
  3399. width:375px;
  3400. height:40px;
  3401. display:flex;
  3402. }
  3403. #u165014 .text {
  3404. position:absolute;
  3405. align-self:center;
  3406. padding:2px 2px 2px 2px;
  3407. box-sizing:border-box;
  3408. width:100%;
  3409. }
  3410. #u165014_text {
  3411. border-width:0px;
  3412. word-wrap:break-word;
  3413. text-transform:none;
  3414. visibility:hidden;
  3415. }
  3416. #u165015_div {
  3417. border-width:0px;
  3418. position:absolute;
  3419. left:0px;
  3420. top:0px;
  3421. width:47px;
  3422. height:40px;
  3423. background:inherit;
  3424. background-color:rgba(255, 255, 255, 1);
  3425. border:none;
  3426. border-left:0px;
  3427. border-top:0px;
  3428. border-right:0px;
  3429. border-radius:0px;
  3430. border-bottom-right-radius:0px;
  3431. border-bottom-left-radius:0px;
  3432. -moz-box-shadow:none;
  3433. -webkit-box-shadow:none;
  3434. box-shadow:none;
  3435. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3436. font-weight:400;
  3437. font-style:normal;
  3438. font-size:14px;
  3439. }
  3440. #u165015 {
  3441. border-width:0px;
  3442. position:absolute;
  3443. left:580px;
  3444. top:174px;
  3445. width:47px;
  3446. height:40px;
  3447. display:flex;
  3448. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3449. font-weight:400;
  3450. font-style:normal;
  3451. font-size:14px;
  3452. }
  3453. #u165015 .text {
  3454. position:absolute;
  3455. align-self:center;
  3456. padding:2px 2px 2px 2px;
  3457. box-sizing:border-box;
  3458. width:100%;
  3459. }
  3460. #u165015_text {
  3461. border-width:0px;
  3462. white-space:nowrap;
  3463. text-transform:none;
  3464. }
  3465. #u165016_div {
  3466. border-width:0px;
  3467. position:absolute;
  3468. left:0px;
  3469. top:0px;
  3470. width:47px;
  3471. height:40px;
  3472. background:inherit;
  3473. background-color:rgba(255, 255, 255, 1);
  3474. box-sizing:border-box;
  3475. border-width:2px;
  3476. border-style:solid;
  3477. border-color:rgba(0, 137, 254, 1);
  3478. border-left:0px;
  3479. border-top:0px;
  3480. border-right:0px;
  3481. border-radius:0px;
  3482. border-bottom-right-radius:0px;
  3483. border-bottom-left-radius:0px;
  3484. -moz-box-shadow:none;
  3485. -webkit-box-shadow:none;
  3486. box-shadow:none;
  3487. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3488. font-weight:400;
  3489. font-style:normal;
  3490. font-size:14px;
  3491. color:#0089FE;
  3492. }
  3493. #u165016 {
  3494. border-width:0px;
  3495. position:absolute;
  3496. left:668px;
  3497. top:174px;
  3498. width:47px;
  3499. height:40px;
  3500. display:flex;
  3501. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3502. font-weight:400;
  3503. font-style:normal;
  3504. font-size:14px;
  3505. color:#0089FE;
  3506. }
  3507. #u165016 .text {
  3508. position:absolute;
  3509. align-self:center;
  3510. padding:2px 2px 2px 2px;
  3511. box-sizing:border-box;
  3512. width:100%;
  3513. }
  3514. #u165016_text {
  3515. border-width:0px;
  3516. white-space:nowrap;
  3517. text-transform:none;
  3518. }
  3519. #u165017_div {
  3520. border-width:0px;
  3521. position:absolute;
  3522. left:0px;
  3523. top:0px;
  3524. width:47px;
  3525. height:40px;
  3526. background:inherit;
  3527. background-color:rgba(255, 255, 255, 1);
  3528. border:none;
  3529. border-left:0px;
  3530. border-top:0px;
  3531. border-right:0px;
  3532. border-radius:0px;
  3533. border-bottom-right-radius:0px;
  3534. border-bottom-left-radius:0px;
  3535. -moz-box-shadow:none;
  3536. -webkit-box-shadow:none;
  3537. box-shadow:none;
  3538. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3539. font-weight:400;
  3540. font-style:normal;
  3541. font-size:14px;
  3542. }
  3543. #u165017 {
  3544. border-width:0px;
  3545. position:absolute;
  3546. left:755px;
  3547. top:174px;
  3548. width:47px;
  3549. height:40px;
  3550. display:flex;
  3551. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3552. font-weight:400;
  3553. font-style:normal;
  3554. font-size:14px;
  3555. }
  3556. #u165017 .text {
  3557. position:absolute;
  3558. align-self:center;
  3559. padding:2px 2px 2px 2px;
  3560. box-sizing:border-box;
  3561. width:100%;
  3562. }
  3563. #u165017_text {
  3564. border-width:0px;
  3565. white-space:nowrap;
  3566. text-transform:none;
  3567. }
  3568. #u165018_div {
  3569. border-width:0px;
  3570. position:absolute;
  3571. left:0px;
  3572. top:0px;
  3573. width:33px;
  3574. height:40px;
  3575. background:inherit;
  3576. background-color:rgba(255, 255, 255, 1);
  3577. border:none;
  3578. border-left:0px;
  3579. border-top:0px;
  3580. border-right:0px;
  3581. border-radius:0px;
  3582. border-bottom-right-radius:0px;
  3583. border-bottom-left-radius:0px;
  3584. -moz-box-shadow:none;
  3585. -webkit-box-shadow:none;
  3586. box-shadow:none;
  3587. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3588. font-weight:400;
  3589. font-style:normal;
  3590. font-size:14px;
  3591. }
  3592. #u165018 {
  3593. border-width:0px;
  3594. position:absolute;
  3595. left:507px;
  3596. top:174px;
  3597. width:33px;
  3598. height:40px;
  3599. display:flex;
  3600. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3601. font-weight:400;
  3602. font-style:normal;
  3603. font-size:14px;
  3604. }
  3605. #u165018 .text {
  3606. position:absolute;
  3607. align-self:center;
  3608. padding:2px 2px 2px 2px;
  3609. box-sizing:border-box;
  3610. width:100%;
  3611. }
  3612. #u165018_text {
  3613. border-width:0px;
  3614. white-space:nowrap;
  3615. text-transform:none;
  3616. }
  3617. #u165019 {
  3618. border-width:0px;
  3619. position:absolute;
  3620. left:0px;
  3621. top:0px;
  3622. width:0px;
  3623. height:0px;
  3624. }
  3625. #u165020_div {
  3626. border-width:0px;
  3627. position:absolute;
  3628. left:0px;
  3629. top:0px;
  3630. width:40px;
  3631. height:40px;
  3632. background:inherit;
  3633. background-color:rgba(215, 215, 215, 1);
  3634. border:none;
  3635. border-radius:0px;
  3636. -moz-box-shadow:none;
  3637. -webkit-box-shadow:none;
  3638. box-shadow:none;
  3639. }
  3640. #u165020 {
  3641. border-width:0px;
  3642. position:absolute;
  3643. left:822px;
  3644. top:174px;
  3645. width:40px;
  3646. height:40px;
  3647. display:flex;
  3648. }
  3649. #u165020 .text {
  3650. position:absolute;
  3651. align-self:center;
  3652. padding:2px 2px 2px 2px;
  3653. box-sizing:border-box;
  3654. width:100%;
  3655. }
  3656. #u165020_text {
  3657. border-width:0px;
  3658. word-wrap:break-word;
  3659. text-transform:none;
  3660. visibility:hidden;
  3661. }
  3662. #u165021_img {
  3663. border-width:0px;
  3664. position:absolute;
  3665. left:0px;
  3666. top:0px;
  3667. width:16px;
  3668. height:16px;
  3669. }
  3670. #u165021 {
  3671. border-width:0px;
  3672. position:absolute;
  3673. left:836px;
  3674. top:186px;
  3675. width:16px;
  3676. height:16px;
  3677. display:flex;
  3678. }
  3679. #u165021 .text {
  3680. position:absolute;
  3681. align-self:center;
  3682. padding:2px 2px 2px 2px;
  3683. box-sizing:border-box;
  3684. width:100%;
  3685. }
  3686. #u165021_text {
  3687. border-width:0px;
  3688. word-wrap:break-word;
  3689. text-transform:none;
  3690. visibility:hidden;
  3691. }
  3692. #u165022 {
  3693. border-width:0px;
  3694. position:absolute;
  3695. left:0px;
  3696. top:0px;
  3697. width:0px;
  3698. height:0px;
  3699. }
  3700. #u165023_img {
  3701. border-width:0px;
  3702. position:absolute;
  3703. left:0px;
  3704. top:0px;
  3705. width:375px;
  3706. height:69px;
  3707. }
  3708. #u165023 {
  3709. border-width:0px;
  3710. position:absolute;
  3711. left:948px;
  3712. top:105px;
  3713. width:375px;
  3714. height:69px;
  3715. display:flex;
  3716. }
  3717. #u165023 .text {
  3718. position:absolute;
  3719. align-self:center;
  3720. padding:2px 2px 2px 2px;
  3721. box-sizing:border-box;
  3722. width:100%;
  3723. }
  3724. #u165023_text {
  3725. border-width:0px;
  3726. word-wrap:break-word;
  3727. text-transform:none;
  3728. visibility:hidden;
  3729. }
  3730. #u165024_div {
  3731. border-width:0px;
  3732. position:absolute;
  3733. left:0px;
  3734. top:0px;
  3735. width:97px;
  3736. height:30px;
  3737. background:inherit;
  3738. background-color:rgba(255, 255, 255, 0);
  3739. border:none;
  3740. border-left:0px;
  3741. border-top:0px;
  3742. border-right:0px;
  3743. border-radius:0px;
  3744. border-bottom-right-radius:0px;
  3745. border-bottom-left-radius:0px;
  3746. -moz-box-shadow:none;
  3747. -webkit-box-shadow:none;
  3748. box-shadow:none;
  3749. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3750. font-weight:500;
  3751. font-style:normal;
  3752. line-height:30px;
  3753. }
  3754. #u165024 {
  3755. border-width:0px;
  3756. position:absolute;
  3757. left:968px;
  3758. top:125px;
  3759. width:97px;
  3760. height:30px;
  3761. display:flex;
  3762. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3763. font-weight:500;
  3764. font-style:normal;
  3765. line-height:30px;
  3766. }
  3767. #u165024 .text {
  3768. position:absolute;
  3769. align-self:flex-start;
  3770. padding:0px 0px 0px 0px;
  3771. box-sizing:border-box;
  3772. width:100%;
  3773. }
  3774. #u165024_text {
  3775. border-width:0px;
  3776. white-space:nowrap;
  3777. text-transform:none;
  3778. }
  3779. #u165025_div {
  3780. border-width:0px;
  3781. position:absolute;
  3782. left:0px;
  3783. top:0px;
  3784. width:73px;
  3785. height:30px;
  3786. background:inherit;
  3787. background-color:rgba(255, 255, 255, 0);
  3788. border:none;
  3789. border-left:0px;
  3790. border-top:0px;
  3791. border-right:0px;
  3792. border-radius:0px;
  3793. border-bottom-right-radius:0px;
  3794. border-bottom-left-radius:0px;
  3795. -moz-box-shadow:none;
  3796. -webkit-box-shadow:none;
  3797. box-shadow:none;
  3798. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3799. font-weight:400;
  3800. font-style:normal;
  3801. font-size:18px;
  3802. line-height:30px;
  3803. }
  3804. #u165025 {
  3805. border-width:0px;
  3806. position:absolute;
  3807. left:1085px;
  3808. top:125px;
  3809. width:73px;
  3810. height:30px;
  3811. display:flex;
  3812. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3813. font-weight:400;
  3814. font-style:normal;
  3815. font-size:18px;
  3816. line-height:30px;
  3817. }
  3818. #u165025 .text {
  3819. position:absolute;
  3820. align-self:flex-start;
  3821. padding:0px 0px 0px 0px;
  3822. box-sizing:border-box;
  3823. width:100%;
  3824. }
  3825. #u165025_text {
  3826. border-width:0px;
  3827. white-space:nowrap;
  3828. text-transform:none;
  3829. }
  3830. #u165026_div {
  3831. border-width:0px;
  3832. position:absolute;
  3833. left:0px;
  3834. top:0px;
  3835. width:73px;
  3836. height:30px;
  3837. background:inherit;
  3838. background-color:rgba(255, 255, 255, 0);
  3839. border:none;
  3840. border-left:0px;
  3841. border-top:0px;
  3842. border-right:0px;
  3843. border-radius:0px;
  3844. border-bottom-right-radius:0px;
  3845. border-bottom-left-radius:0px;
  3846. -moz-box-shadow:none;
  3847. -webkit-box-shadow:none;
  3848. box-shadow:none;
  3849. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3850. font-weight:400;
  3851. font-style:normal;
  3852. font-size:18px;
  3853. line-height:30px;
  3854. }
  3855. #u165026 {
  3856. border-width:0px;
  3857. position:absolute;
  3858. left:1178px;
  3859. top:125px;
  3860. width:73px;
  3861. height:30px;
  3862. display:flex;
  3863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3864. font-weight:400;
  3865. font-style:normal;
  3866. font-size:18px;
  3867. line-height:30px;
  3868. }
  3869. #u165026 .text {
  3870. position:absolute;
  3871. align-self:flex-start;
  3872. padding:0px 0px 0px 0px;
  3873. box-sizing:border-box;
  3874. width:100%;
  3875. }
  3876. #u165026_text {
  3877. border-width:0px;
  3878. white-space:nowrap;
  3879. text-transform:none;
  3880. }
  3881. #u165027 {
  3882. border-width:0px;
  3883. position:absolute;
  3884. left:0px;
  3885. top:0px;
  3886. width:0px;
  3887. height:0px;
  3888. }
  3889. #u165028_img {
  3890. border-width:0px;
  3891. position:absolute;
  3892. left:0px;
  3893. top:0px;
  3894. width:375px;
  3895. height:40px;
  3896. }
  3897. #u165028 {
  3898. border-width:0px;
  3899. position:absolute;
  3900. left:948px;
  3901. top:174px;
  3902. width:375px;
  3903. height:40px;
  3904. display:flex;
  3905. }
  3906. #u165028 .text {
  3907. position:absolute;
  3908. align-self:center;
  3909. padding:2px 2px 2px 2px;
  3910. box-sizing:border-box;
  3911. width:100%;
  3912. }
  3913. #u165028_text {
  3914. border-width:0px;
  3915. word-wrap:break-word;
  3916. text-transform:none;
  3917. visibility:hidden;
  3918. }
  3919. #u165029_div {
  3920. border-width:0px;
  3921. position:absolute;
  3922. left:0px;
  3923. top:0px;
  3924. width:47px;
  3925. height:40px;
  3926. background:inherit;
  3927. background-color:rgba(255, 255, 255, 1);
  3928. border:none;
  3929. border-left:0px;
  3930. border-top:0px;
  3931. border-right:0px;
  3932. border-radius:0px;
  3933. border-bottom-right-radius:0px;
  3934. border-bottom-left-radius:0px;
  3935. -moz-box-shadow:none;
  3936. -webkit-box-shadow:none;
  3937. box-shadow:none;
  3938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3939. font-weight:400;
  3940. font-style:normal;
  3941. font-size:14px;
  3942. }
  3943. #u165029 {
  3944. border-width:0px;
  3945. position:absolute;
  3946. left:1041px;
  3947. top:174px;
  3948. width:47px;
  3949. height:40px;
  3950. display:flex;
  3951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3952. font-weight:400;
  3953. font-style:normal;
  3954. font-size:14px;
  3955. }
  3956. #u165029 .text {
  3957. position:absolute;
  3958. align-self:center;
  3959. padding:2px 2px 2px 2px;
  3960. box-sizing:border-box;
  3961. width:100%;
  3962. }
  3963. #u165029_text {
  3964. border-width:0px;
  3965. white-space:nowrap;
  3966. text-transform:none;
  3967. }
  3968. #u165030_div {
  3969. border-width:0px;
  3970. position:absolute;
  3971. left:0px;
  3972. top:0px;
  3973. width:47px;
  3974. height:40px;
  3975. background:inherit;
  3976. background-color:rgba(255, 255, 255, 1);
  3977. border:none;
  3978. border-left:0px;
  3979. border-top:0px;
  3980. border-right:0px;
  3981. border-radius:0px;
  3982. border-bottom-right-radius:0px;
  3983. border-bottom-left-radius:0px;
  3984. -moz-box-shadow:none;
  3985. -webkit-box-shadow:none;
  3986. box-shadow:none;
  3987. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3988. font-weight:400;
  3989. font-style:normal;
  3990. font-size:14px;
  3991. }
  3992. #u165030 {
  3993. border-width:0px;
  3994. position:absolute;
  3995. left:1129px;
  3996. top:174px;
  3997. width:47px;
  3998. height:40px;
  3999. display:flex;
  4000. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4001. font-weight:400;
  4002. font-style:normal;
  4003. font-size:14px;
  4004. }
  4005. #u165030 .text {
  4006. position:absolute;
  4007. align-self:center;
  4008. padding:2px 2px 2px 2px;
  4009. box-sizing:border-box;
  4010. width:100%;
  4011. }
  4012. #u165030_text {
  4013. border-width:0px;
  4014. white-space:nowrap;
  4015. text-transform:none;
  4016. }
  4017. #u165031_div {
  4018. border-width:0px;
  4019. position:absolute;
  4020. left:0px;
  4021. top:0px;
  4022. width:47px;
  4023. height:40px;
  4024. background:inherit;
  4025. background-color:rgba(255, 255, 255, 1);
  4026. box-sizing:border-box;
  4027. border-width:2px;
  4028. border-style:solid;
  4029. border-color:rgba(0, 137, 254, 1);
  4030. border-left:0px;
  4031. border-top:0px;
  4032. border-right:0px;
  4033. border-radius:0px;
  4034. border-bottom-right-radius:0px;
  4035. border-bottom-left-radius:0px;
  4036. -moz-box-shadow:none;
  4037. -webkit-box-shadow:none;
  4038. box-shadow:none;
  4039. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4040. font-weight:400;
  4041. font-style:normal;
  4042. font-size:14px;
  4043. color:#0089FE;
  4044. }
  4045. #u165031 {
  4046. border-width:0px;
  4047. position:absolute;
  4048. left:1216px;
  4049. top:174px;
  4050. width:47px;
  4051. height:40px;
  4052. display:flex;
  4053. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4054. font-weight:400;
  4055. font-style:normal;
  4056. font-size:14px;
  4057. color:#0089FE;
  4058. }
  4059. #u165031 .text {
  4060. position:absolute;
  4061. align-self:center;
  4062. padding:2px 2px 2px 2px;
  4063. box-sizing:border-box;
  4064. width:100%;
  4065. }
  4066. #u165031_text {
  4067. border-width:0px;
  4068. white-space:nowrap;
  4069. text-transform:none;
  4070. }
  4071. #u165032_div {
  4072. border-width:0px;
  4073. position:absolute;
  4074. left:0px;
  4075. top:0px;
  4076. width:33px;
  4077. height:40px;
  4078. background:inherit;
  4079. background-color:rgba(255, 255, 255, 1);
  4080. border:none;
  4081. border-left:0px;
  4082. border-top:0px;
  4083. border-right:0px;
  4084. border-radius:0px;
  4085. border-bottom-right-radius:0px;
  4086. border-bottom-left-radius:0px;
  4087. -moz-box-shadow:none;
  4088. -webkit-box-shadow:none;
  4089. box-shadow:none;
  4090. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4091. font-weight:400;
  4092. font-style:normal;
  4093. font-size:14px;
  4094. }
  4095. #u165032 {
  4096. border-width:0px;
  4097. position:absolute;
  4098. left:968px;
  4099. top:174px;
  4100. width:33px;
  4101. height:40px;
  4102. display:flex;
  4103. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4104. font-weight:400;
  4105. font-style:normal;
  4106. font-size:14px;
  4107. }
  4108. #u165032 .text {
  4109. position:absolute;
  4110. align-self:center;
  4111. padding:2px 2px 2px 2px;
  4112. box-sizing:border-box;
  4113. width:100%;
  4114. }
  4115. #u165032_text {
  4116. border-width:0px;
  4117. white-space:nowrap;
  4118. text-transform:none;
  4119. }
  4120. #u165033 {
  4121. border-width:0px;
  4122. position:absolute;
  4123. left:0px;
  4124. top:0px;
  4125. width:0px;
  4126. height:0px;
  4127. }
  4128. #u165034_div {
  4129. border-width:0px;
  4130. position:absolute;
  4131. left:0px;
  4132. top:0px;
  4133. width:40px;
  4134. height:40px;
  4135. background:inherit;
  4136. background-color:rgba(215, 215, 215, 1);
  4137. border:none;
  4138. border-radius:0px;
  4139. -moz-box-shadow:none;
  4140. -webkit-box-shadow:none;
  4141. box-shadow:none;
  4142. }
  4143. #u165034 {
  4144. border-width:0px;
  4145. position:absolute;
  4146. left:1283px;
  4147. top:174px;
  4148. width:40px;
  4149. height:40px;
  4150. display:flex;
  4151. }
  4152. #u165034 .text {
  4153. position:absolute;
  4154. align-self:center;
  4155. padding:2px 2px 2px 2px;
  4156. box-sizing:border-box;
  4157. width:100%;
  4158. }
  4159. #u165034_text {
  4160. border-width:0px;
  4161. word-wrap:break-word;
  4162. text-transform:none;
  4163. visibility:hidden;
  4164. }
  4165. #u165035_img {
  4166. border-width:0px;
  4167. position:absolute;
  4168. left:0px;
  4169. top:0px;
  4170. width:16px;
  4171. height:16px;
  4172. }
  4173. #u165035 {
  4174. border-width:0px;
  4175. position:absolute;
  4176. left:1297px;
  4177. top:186px;
  4178. width:16px;
  4179. height:16px;
  4180. display:flex;
  4181. }
  4182. #u165035 .text {
  4183. position:absolute;
  4184. align-self:center;
  4185. padding:2px 2px 2px 2px;
  4186. box-sizing:border-box;
  4187. width:100%;
  4188. }
  4189. #u165035_text {
  4190. border-width:0px;
  4191. word-wrap:break-word;
  4192. text-transform:none;
  4193. visibility:hidden;
  4194. }
  4195. #u165036 {
  4196. border-width:0px;
  4197. position:absolute;
  4198. left:0px;
  4199. top:0px;
  4200. width:0px;
  4201. height:0px;
  4202. }
  4203. #u165037_img {
  4204. border-width:0px;
  4205. position:absolute;
  4206. left:0px;
  4207. top:0px;
  4208. width:355px;
  4209. height:140px;
  4210. }
  4211. #u165037 {
  4212. border-width:0px;
  4213. position:absolute;
  4214. left:39px;
  4215. top:224px;
  4216. width:355px;
  4217. height:140px;
  4218. display:flex;
  4219. }
  4220. #u165037 .text {
  4221. position:absolute;
  4222. align-self:center;
  4223. padding:2px 2px 2px 2px;
  4224. box-sizing:border-box;
  4225. width:100%;
  4226. }
  4227. #u165037_text {
  4228. border-width:0px;
  4229. word-wrap:break-word;
  4230. text-transform:none;
  4231. visibility:hidden;
  4232. }
  4233. #u165038_div {
  4234. border-width:0px;
  4235. position:absolute;
  4236. left:0px;
  4237. top:0px;
  4238. width:225px;
  4239. height:30px;
  4240. background:inherit;
  4241. background-color:rgba(255, 255, 255, 0);
  4242. border:none;
  4243. border-left:0px;
  4244. border-top:0px;
  4245. border-right:0px;
  4246. border-radius:0px;
  4247. border-bottom-right-radius:0px;
  4248. border-bottom-left-radius:0px;
  4249. -moz-box-shadow:none;
  4250. -webkit-box-shadow:none;
  4251. box-shadow:none;
  4252. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4253. font-weight:500;
  4254. font-style:normal;
  4255. font-size:14px;
  4256. line-height:30px;
  4257. }
  4258. #u165038 {
  4259. border-width:0px;
  4260. position:absolute;
  4261. left:44px;
  4262. top:234px;
  4263. width:225px;
  4264. height:30px;
  4265. display:flex;
  4266. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4267. font-weight:500;
  4268. font-style:normal;
  4269. font-size:14px;
  4270. line-height:30px;
  4271. }
  4272. #u165038 .text {
  4273. position:absolute;
  4274. align-self:flex-start;
  4275. padding:0px 0px 0px 0px;
  4276. box-sizing:border-box;
  4277. width:100%;
  4278. }
  4279. #u165038_text {
  4280. border-width:0px;
  4281. white-space:nowrap;
  4282. text-transform:none;
  4283. }
  4284. #u165039_div {
  4285. border-width:0px;
  4286. position:absolute;
  4287. left:0px;
  4288. top:0px;
  4289. width:199px;
  4290. height:85px;
  4291. background:inherit;
  4292. background-color:rgba(255, 255, 255, 0);
  4293. border:none;
  4294. border-left:0px;
  4295. border-top:0px;
  4296. border-right:0px;
  4297. border-radius:0px;
  4298. border-bottom-right-radius:0px;
  4299. border-bottom-left-radius:0px;
  4300. -moz-box-shadow:none;
  4301. -webkit-box-shadow:none;
  4302. box-shadow:none;
  4303. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4304. font-weight:400;
  4305. font-style:normal;
  4306. font-size:12px;
  4307. }
  4308. #u165039 {
  4309. border-width:0px;
  4310. position:absolute;
  4311. left:54px;
  4312. top:264px;
  4313. width:199px;
  4314. height:85px;
  4315. display:flex;
  4316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4317. font-weight:400;
  4318. font-style:normal;
  4319. font-size:12px;
  4320. }
  4321. #u165039 .text {
  4322. position:absolute;
  4323. align-self:flex-start;
  4324. padding:0px 0px 0px 0px;
  4325. box-sizing:border-box;
  4326. width:100%;
  4327. }
  4328. #u165039_text {
  4329. border-width:0px;
  4330. white-space:nowrap;
  4331. text-transform:none;
  4332. }
  4333. #u165040_div {
  4334. border-width:0px;
  4335. position:absolute;
  4336. left:0px;
  4337. top:0px;
  4338. width:61px;
  4339. height:25px;
  4340. background:inherit;
  4341. background-color:rgba(255, 255, 255, 0);
  4342. border:none;
  4343. border-left:0px;
  4344. border-top:0px;
  4345. border-right:0px;
  4346. border-radius:0px;
  4347. border-bottom-right-radius:0px;
  4348. border-bottom-left-radius:0px;
  4349. -moz-box-shadow:none;
  4350. -webkit-box-shadow:none;
  4351. box-shadow:none;
  4352. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4353. font-weight:400;
  4354. font-style:normal;
  4355. text-align:right;
  4356. }
  4357. #u165040 {
  4358. border-width:0px;
  4359. position:absolute;
  4360. left:318px;
  4361. top:282px;
  4362. width:61px;
  4363. height:25px;
  4364. display:flex;
  4365. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4366. font-weight:400;
  4367. font-style:normal;
  4368. text-align:right;
  4369. }
  4370. #u165040 .text {
  4371. position:absolute;
  4372. align-self:flex-start;
  4373. padding:0px 0px 0px 0px;
  4374. box-sizing:border-box;
  4375. width:100%;
  4376. }
  4377. #u165040_text {
  4378. border-width:0px;
  4379. white-space:nowrap;
  4380. text-transform:none;
  4381. }
  4382. #u165041_div {
  4383. border-width:0px;
  4384. position:absolute;
  4385. left:0px;
  4386. top:0px;
  4387. width:41px;
  4388. height:24px;
  4389. background:inherit;
  4390. background-color:rgba(255, 255, 255, 0);
  4391. border:none;
  4392. border-left:0px;
  4393. border-top:0px;
  4394. border-right:0px;
  4395. border-radius:0px;
  4396. border-bottom-right-radius:0px;
  4397. border-bottom-left-radius:0px;
  4398. -moz-box-shadow:none;
  4399. -webkit-box-shadow:none;
  4400. box-shadow:none;
  4401. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4402. font-weight:400;
  4403. font-style:normal;
  4404. font-size:10px;
  4405. text-align:right;
  4406. line-height:24px;
  4407. }
  4408. #u165041 {
  4409. border-width:0px;
  4410. position:absolute;
  4411. left:338px;
  4412. top:307px;
  4413. width:41px;
  4414. height:24px;
  4415. display:flex;
  4416. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4417. font-weight:400;
  4418. font-style:normal;
  4419. font-size:10px;
  4420. text-align:right;
  4421. line-height:24px;
  4422. }
  4423. #u165041 .text {
  4424. position:absolute;
  4425. align-self:flex-start;
  4426. padding:0px 0px 0px 0px;
  4427. box-sizing:border-box;
  4428. width:100%;
  4429. }
  4430. #u165041_text {
  4431. border-width:0px;
  4432. white-space:nowrap;
  4433. text-transform:none;
  4434. }
  4435. #u165042 {
  4436. border-width:0px;
  4437. position:absolute;
  4438. left:0px;
  4439. top:0px;
  4440. width:0px;
  4441. height:0px;
  4442. }
  4443. #u165043_img {
  4444. border-width:0px;
  4445. position:absolute;
  4446. left:0px;
  4447. top:0px;
  4448. width:355px;
  4449. height:160px;
  4450. }
  4451. #u165043 {
  4452. border-width:0px;
  4453. position:absolute;
  4454. left:497px;
  4455. top:224px;
  4456. width:355px;
  4457. height:160px;
  4458. display:flex;
  4459. }
  4460. #u165043 .text {
  4461. position:absolute;
  4462. align-self:center;
  4463. padding:2px 2px 2px 2px;
  4464. box-sizing:border-box;
  4465. width:100%;
  4466. }
  4467. #u165043_text {
  4468. border-width:0px;
  4469. word-wrap:break-word;
  4470. text-transform:none;
  4471. visibility:hidden;
  4472. }
  4473. #u165044_div {
  4474. border-width:0px;
  4475. position:absolute;
  4476. left:0px;
  4477. top:0px;
  4478. width:225px;
  4479. height:30px;
  4480. background:inherit;
  4481. background-color:rgba(255, 255, 255, 0);
  4482. border:none;
  4483. border-left:0px;
  4484. border-top:0px;
  4485. border-right:0px;
  4486. border-radius:0px;
  4487. border-bottom-right-radius:0px;
  4488. border-bottom-left-radius:0px;
  4489. -moz-box-shadow:none;
  4490. -webkit-box-shadow:none;
  4491. box-shadow:none;
  4492. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4493. font-weight:500;
  4494. font-style:normal;
  4495. font-size:14px;
  4496. line-height:30px;
  4497. }
  4498. #u165044 {
  4499. border-width:0px;
  4500. position:absolute;
  4501. left:502px;
  4502. top:234px;
  4503. width:225px;
  4504. height:30px;
  4505. display:flex;
  4506. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4507. font-weight:500;
  4508. font-style:normal;
  4509. font-size:14px;
  4510. line-height:30px;
  4511. }
  4512. #u165044 .text {
  4513. position:absolute;
  4514. align-self:flex-start;
  4515. padding:0px 0px 0px 0px;
  4516. box-sizing:border-box;
  4517. width:100%;
  4518. }
  4519. #u165044_text {
  4520. border-width:0px;
  4521. white-space:nowrap;
  4522. text-transform:none;
  4523. }
  4524. #u165045_div {
  4525. border-width:0px;
  4526. position:absolute;
  4527. left:0px;
  4528. top:0px;
  4529. width:199px;
  4530. height:68px;
  4531. background:inherit;
  4532. background-color:rgba(255, 255, 255, 0);
  4533. border:none;
  4534. border-left:0px;
  4535. border-top:0px;
  4536. border-right:0px;
  4537. border-radius:0px;
  4538. border-bottom-right-radius:0px;
  4539. border-bottom-left-radius:0px;
  4540. -moz-box-shadow:none;
  4541. -webkit-box-shadow:none;
  4542. box-shadow:none;
  4543. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4544. font-weight:400;
  4545. font-style:normal;
  4546. font-size:12px;
  4547. color:#7F7F7F;
  4548. }
  4549. #u165045 {
  4550. border-width:0px;
  4551. position:absolute;
  4552. left:512px;
  4553. top:264px;
  4554. width:199px;
  4555. height:68px;
  4556. display:flex;
  4557. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4558. font-weight:400;
  4559. font-style:normal;
  4560. font-size:12px;
  4561. color:#7F7F7F;
  4562. }
  4563. #u165045 .text {
  4564. position:absolute;
  4565. align-self:flex-start;
  4566. padding:0px 0px 0px 0px;
  4567. box-sizing:border-box;
  4568. width:100%;
  4569. }
  4570. #u165045_text {
  4571. border-width:0px;
  4572. white-space:nowrap;
  4573. text-transform:none;
  4574. }
  4575. #u165046_div {
  4576. border-width:0px;
  4577. position:absolute;
  4578. left:0px;
  4579. top:0px;
  4580. width:61px;
  4581. height:25px;
  4582. background:inherit;
  4583. background-color:rgba(255, 255, 255, 0);
  4584. border:none;
  4585. border-left:0px;
  4586. border-top:0px;
  4587. border-right:0px;
  4588. border-radius:0px;
  4589. border-bottom-right-radius:0px;
  4590. border-bottom-left-radius:0px;
  4591. -moz-box-shadow:none;
  4592. -webkit-box-shadow:none;
  4593. box-shadow:none;
  4594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4595. font-weight:400;
  4596. font-style:normal;
  4597. text-align:right;
  4598. }
  4599. #u165046 {
  4600. border-width:0px;
  4601. position:absolute;
  4602. left:776px;
  4603. top:264px;
  4604. width:61px;
  4605. height:25px;
  4606. display:flex;
  4607. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4608. font-weight:400;
  4609. font-style:normal;
  4610. text-align:right;
  4611. }
  4612. #u165046 .text {
  4613. position:absolute;
  4614. align-self:flex-start;
  4615. padding:0px 0px 0px 0px;
  4616. box-sizing:border-box;
  4617. width:100%;
  4618. }
  4619. #u165046_text {
  4620. border-width:0px;
  4621. white-space:nowrap;
  4622. text-transform:none;
  4623. }
  4624. #u165047_div {
  4625. border-width:0px;
  4626. position:absolute;
  4627. left:0px;
  4628. top:0px;
  4629. width:41px;
  4630. height:24px;
  4631. background:inherit;
  4632. background-color:rgba(255, 255, 255, 0);
  4633. border:none;
  4634. border-left:0px;
  4635. border-top:0px;
  4636. border-right:0px;
  4637. border-radius:0px;
  4638. border-bottom-right-radius:0px;
  4639. border-bottom-left-radius:0px;
  4640. -moz-box-shadow:none;
  4641. -webkit-box-shadow:none;
  4642. box-shadow:none;
  4643. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4644. font-weight:400;
  4645. font-style:normal;
  4646. font-size:10px;
  4647. text-align:right;
  4648. line-height:24px;
  4649. }
  4650. #u165047 {
  4651. border-width:0px;
  4652. position:absolute;
  4653. left:796px;
  4654. top:289px;
  4655. width:41px;
  4656. height:24px;
  4657. display:flex;
  4658. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4659. font-weight:400;
  4660. font-style:normal;
  4661. font-size:10px;
  4662. text-align:right;
  4663. line-height:24px;
  4664. }
  4665. #u165047 .text {
  4666. position:absolute;
  4667. align-self:flex-start;
  4668. padding:0px 0px 0px 0px;
  4669. box-sizing:border-box;
  4670. width:100%;
  4671. }
  4672. #u165047_text {
  4673. border-width:0px;
  4674. white-space:nowrap;
  4675. text-transform:none;
  4676. }
  4677. #u165048_div {
  4678. border-width:0px;
  4679. position:absolute;
  4680. left:0px;
  4681. top:0px;
  4682. width:86px;
  4683. height:30px;
  4684. background:inherit;
  4685. background-color:rgba(24, 144, 255, 1);
  4686. border:none;
  4687. border-radius:81px;
  4688. -moz-box-shadow:none;
  4689. -webkit-box-shadow:none;
  4690. box-shadow:none;
  4691. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4692. font-weight:400;
  4693. font-style:normal;
  4694. font-size:12px;
  4695. color:#FFFFFF;
  4696. }
  4697. #u165048 {
  4698. border-width:0px;
  4699. position:absolute;
  4700. left:756px;
  4701. top:344px;
  4702. width:86px;
  4703. height:30px;
  4704. display:flex;
  4705. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4706. font-weight:400;
  4707. font-style:normal;
  4708. font-size:12px;
  4709. color:#FFFFFF;
  4710. }
  4711. #u165048 .text {
  4712. position:absolute;
  4713. align-self:center;
  4714. padding:2px 2px 2px 2px;
  4715. box-sizing:border-box;
  4716. width:100%;
  4717. }
  4718. #u165048_text {
  4719. border-width:0px;
  4720. word-wrap:break-word;
  4721. text-transform:none;
  4722. }
  4723. #u165049_div {
  4724. border-width:0px;
  4725. position:absolute;
  4726. left:0px;
  4727. top:0px;
  4728. width:86px;
  4729. height:30px;
  4730. background:inherit;
  4731. background-color:rgba(255, 255, 255, 1);
  4732. box-sizing:border-box;
  4733. border-width:1px;
  4734. border-style:solid;
  4735. border-color:rgba(127, 127, 127, 1);
  4736. border-radius:81px;
  4737. -moz-box-shadow:none;
  4738. -webkit-box-shadow:none;
  4739. box-shadow:none;
  4740. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4741. font-weight:400;
  4742. font-style:normal;
  4743. font-size:12px;
  4744. color:#555555;
  4745. }
  4746. #u165049 {
  4747. border-width:0px;
  4748. position:absolute;
  4749. left:660px;
  4750. top:344px;
  4751. width:86px;
  4752. height:30px;
  4753. display:flex;
  4754. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4755. font-weight:400;
  4756. font-style:normal;
  4757. font-size:12px;
  4758. color:#555555;
  4759. }
  4760. #u165049 .text {
  4761. position:absolute;
  4762. align-self:center;
  4763. padding:2px 2px 2px 2px;
  4764. box-sizing:border-box;
  4765. width:100%;
  4766. }
  4767. #u165049_text {
  4768. border-width:0px;
  4769. word-wrap:break-word;
  4770. text-transform:none;
  4771. }
  4772. #u165050_div {
  4773. border-width:0px;
  4774. position:absolute;
  4775. left:0px;
  4776. top:0px;
  4777. width:87px;
  4778. height:11px;
  4779. background:inherit;
  4780. background-color:rgba(255, 255, 0, 0.0980392156862745);
  4781. border:none;
  4782. border-radius:5px;
  4783. -moz-box-shadow:none;
  4784. -webkit-box-shadow:none;
  4785. box-shadow:none;
  4786. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4787. font-weight:400;
  4788. font-style:normal;
  4789. font-size:8px;
  4790. color:#F59A23;
  4791. text-align:center;
  4792. }
  4793. #u165050 {
  4794. border-width:0px;
  4795. position:absolute;
  4796. left:562px;
  4797. top:354px;
  4798. width:87px;
  4799. height:11px;
  4800. display:flex;
  4801. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4802. font-weight:400;
  4803. font-style:normal;
  4804. font-size:8px;
  4805. color:#F59A23;
  4806. text-align:center;
  4807. }
  4808. #u165050 .text {
  4809. position:absolute;
  4810. align-self:flex-start;
  4811. padding:0px 0px 0px 0px;
  4812. box-sizing:border-box;
  4813. width:100%;
  4814. }
  4815. #u165050_text {
  4816. border-width:0px;
  4817. word-wrap:break-word;
  4818. text-transform:none;
  4819. }
  4820. #u165051 {
  4821. border-width:0px;
  4822. position:absolute;
  4823. left:0px;
  4824. top:0px;
  4825. width:0px;
  4826. height:0px;
  4827. }
  4828. #u165052_img {
  4829. border-width:0px;
  4830. position:absolute;
  4831. left:0px;
  4832. top:0px;
  4833. width:355px;
  4834. height:150px;
  4835. }
  4836. #u165052 {
  4837. border-width:0px;
  4838. position:absolute;
  4839. left:497px;
  4840. top:394px;
  4841. width:355px;
  4842. height:150px;
  4843. display:flex;
  4844. }
  4845. #u165052 .text {
  4846. position:absolute;
  4847. align-self:center;
  4848. padding:2px 2px 2px 2px;
  4849. box-sizing:border-box;
  4850. width:100%;
  4851. }
  4852. #u165052_text {
  4853. border-width:0px;
  4854. word-wrap:break-word;
  4855. text-transform:none;
  4856. visibility:hidden;
  4857. }
  4858. #u165053_div {
  4859. border-width:0px;
  4860. position:absolute;
  4861. left:0px;
  4862. top:0px;
  4863. width:211px;
  4864. height:30px;
  4865. background:inherit;
  4866. background-color:rgba(255, 255, 255, 0);
  4867. border:none;
  4868. border-left:0px;
  4869. border-top:0px;
  4870. border-right:0px;
  4871. border-radius:0px;
  4872. border-bottom-right-radius:0px;
  4873. border-bottom-left-radius:0px;
  4874. -moz-box-shadow:none;
  4875. -webkit-box-shadow:none;
  4876. box-shadow:none;
  4877. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4878. font-weight:500;
  4879. font-style:normal;
  4880. font-size:14px;
  4881. line-height:30px;
  4882. }
  4883. #u165053 {
  4884. border-width:0px;
  4885. position:absolute;
  4886. left:502px;
  4887. top:404px;
  4888. width:211px;
  4889. height:30px;
  4890. display:flex;
  4891. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4892. font-weight:500;
  4893. font-style:normal;
  4894. font-size:14px;
  4895. line-height:30px;
  4896. }
  4897. #u165053 .text {
  4898. position:absolute;
  4899. align-self:flex-start;
  4900. padding:0px 0px 0px 0px;
  4901. box-sizing:border-box;
  4902. width:100%;
  4903. }
  4904. #u165053_text {
  4905. border-width:0px;
  4906. white-space:nowrap;
  4907. text-transform:none;
  4908. }
  4909. #u165054_div {
  4910. border-width:0px;
  4911. position:absolute;
  4912. left:0px;
  4913. top:0px;
  4914. width:182px;
  4915. height:51px;
  4916. background:inherit;
  4917. background-color:rgba(255, 255, 255, 0);
  4918. border:none;
  4919. border-left:0px;
  4920. border-top:0px;
  4921. border-right:0px;
  4922. border-radius:0px;
  4923. border-bottom-right-radius:0px;
  4924. border-bottom-left-radius:0px;
  4925. -moz-box-shadow:none;
  4926. -webkit-box-shadow:none;
  4927. box-shadow:none;
  4928. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4929. font-weight:400;
  4930. font-style:normal;
  4931. font-size:12px;
  4932. color:#7F7F7F;
  4933. }
  4934. #u165054 {
  4935. border-width:0px;
  4936. position:absolute;
  4937. left:512px;
  4938. top:434px;
  4939. width:182px;
  4940. height:51px;
  4941. display:flex;
  4942. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4943. font-weight:400;
  4944. font-style:normal;
  4945. font-size:12px;
  4946. color:#7F7F7F;
  4947. }
  4948. #u165054 .text {
  4949. position:absolute;
  4950. align-self:flex-start;
  4951. padding:0px 0px 0px 0px;
  4952. box-sizing:border-box;
  4953. width:100%;
  4954. }
  4955. #u165054_text {
  4956. border-width:0px;
  4957. white-space:nowrap;
  4958. text-transform:none;
  4959. }
  4960. #u165055_div {
  4961. border-width:0px;
  4962. position:absolute;
  4963. left:0px;
  4964. top:0px;
  4965. width:61px;
  4966. height:25px;
  4967. background:inherit;
  4968. background-color:rgba(255, 255, 255, 0);
  4969. border:none;
  4970. border-left:0px;
  4971. border-top:0px;
  4972. border-right:0px;
  4973. border-radius:0px;
  4974. border-bottom-right-radius:0px;
  4975. border-bottom-left-radius:0px;
  4976. -moz-box-shadow:none;
  4977. -webkit-box-shadow:none;
  4978. box-shadow:none;
  4979. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4980. font-weight:400;
  4981. font-style:normal;
  4982. text-align:right;
  4983. }
  4984. #u165055 {
  4985. border-width:0px;
  4986. position:absolute;
  4987. left:776px;
  4988. top:434px;
  4989. width:61px;
  4990. height:25px;
  4991. display:flex;
  4992. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4993. font-weight:400;
  4994. font-style:normal;
  4995. text-align:right;
  4996. }
  4997. #u165055 .text {
  4998. position:absolute;
  4999. align-self:flex-start;
  5000. padding:0px 0px 0px 0px;
  5001. box-sizing:border-box;
  5002. width:100%;
  5003. }
  5004. #u165055_text {
  5005. border-width:0px;
  5006. white-space:nowrap;
  5007. text-transform:none;
  5008. }
  5009. #u165056_div {
  5010. border-width:0px;
  5011. position:absolute;
  5012. left:0px;
  5013. top:0px;
  5014. width:41px;
  5015. height:24px;
  5016. background:inherit;
  5017. background-color:rgba(255, 255, 255, 0);
  5018. border:none;
  5019. border-left:0px;
  5020. border-top:0px;
  5021. border-right:0px;
  5022. border-radius:0px;
  5023. border-bottom-right-radius:0px;
  5024. border-bottom-left-radius:0px;
  5025. -moz-box-shadow:none;
  5026. -webkit-box-shadow:none;
  5027. box-shadow:none;
  5028. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5029. font-weight:400;
  5030. font-style:normal;
  5031. font-size:10px;
  5032. text-align:right;
  5033. line-height:24px;
  5034. }
  5035. #u165056 {
  5036. border-width:0px;
  5037. position:absolute;
  5038. left:796px;
  5039. top:459px;
  5040. width:41px;
  5041. height:24px;
  5042. display:flex;
  5043. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5044. font-weight:400;
  5045. font-style:normal;
  5046. font-size:10px;
  5047. text-align:right;
  5048. line-height:24px;
  5049. }
  5050. #u165056 .text {
  5051. position:absolute;
  5052. align-self:flex-start;
  5053. padding:0px 0px 0px 0px;
  5054. box-sizing:border-box;
  5055. width:100%;
  5056. }
  5057. #u165056_text {
  5058. border-width:0px;
  5059. white-space:nowrap;
  5060. text-transform:none;
  5061. }
  5062. #u165057_div {
  5063. border-width:0px;
  5064. position:absolute;
  5065. left:0px;
  5066. top:0px;
  5067. width:86px;
  5068. height:30px;
  5069. background:inherit;
  5070. background-color:rgba(24, 144, 255, 1);
  5071. border:none;
  5072. border-radius:81px;
  5073. -moz-box-shadow:none;
  5074. -webkit-box-shadow:none;
  5075. box-shadow:none;
  5076. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5077. font-weight:400;
  5078. font-style:normal;
  5079. font-size:12px;
  5080. color:#FFFFFF;
  5081. }
  5082. #u165057 {
  5083. border-width:0px;
  5084. position:absolute;
  5085. left:758px;
  5086. top:504px;
  5087. width:86px;
  5088. height:30px;
  5089. display:flex;
  5090. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5091. font-weight:400;
  5092. font-style:normal;
  5093. font-size:12px;
  5094. color:#FFFFFF;
  5095. }
  5096. #u165057 .text {
  5097. position:absolute;
  5098. align-self:center;
  5099. padding:2px 2px 2px 2px;
  5100. box-sizing:border-box;
  5101. width:100%;
  5102. }
  5103. #u165057_text {
  5104. border-width:0px;
  5105. word-wrap:break-word;
  5106. text-transform:none;
  5107. }
  5108. #u165058_div {
  5109. border-width:0px;
  5110. position:absolute;
  5111. left:0px;
  5112. top:0px;
  5113. width:86px;
  5114. height:30px;
  5115. background:inherit;
  5116. background-color:rgba(255, 255, 255, 1);
  5117. box-sizing:border-box;
  5118. border-width:1px;
  5119. border-style:solid;
  5120. border-color:rgba(127, 127, 127, 1);
  5121. border-radius:81px;
  5122. -moz-box-shadow:none;
  5123. -webkit-box-shadow:none;
  5124. box-shadow:none;
  5125. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5126. font-weight:400;
  5127. font-style:normal;
  5128. font-size:12px;
  5129. color:#555555;
  5130. }
  5131. #u165058 {
  5132. border-width:0px;
  5133. position:absolute;
  5134. left:662px;
  5135. top:504px;
  5136. width:86px;
  5137. height:30px;
  5138. display:flex;
  5139. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5140. font-weight:400;
  5141. font-style:normal;
  5142. font-size:12px;
  5143. color:#555555;
  5144. }
  5145. #u165058 .text {
  5146. position:absolute;
  5147. align-self:center;
  5148. padding:2px 2px 2px 2px;
  5149. box-sizing:border-box;
  5150. width:100%;
  5151. }
  5152. #u165058_text {
  5153. border-width:0px;
  5154. word-wrap:break-word;
  5155. text-transform:none;
  5156. }
  5157. #u165059_div {
  5158. border-width:0px;
  5159. position:absolute;
  5160. left:0px;
  5161. top:0px;
  5162. width:87px;
  5163. height:11px;
  5164. background:inherit;
  5165. background-color:rgba(255, 255, 0, 0.0980392156862745);
  5166. border:none;
  5167. border-radius:5px;
  5168. -moz-box-shadow:none;
  5169. -webkit-box-shadow:none;
  5170. box-shadow:none;
  5171. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5172. font-weight:400;
  5173. font-style:normal;
  5174. font-size:8px;
  5175. color:#F59A23;
  5176. text-align:center;
  5177. }
  5178. #u165059 {
  5179. border-width:0px;
  5180. position:absolute;
  5181. left:564px;
  5182. top:514px;
  5183. width:87px;
  5184. height:11px;
  5185. display:flex;
  5186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5187. font-weight:400;
  5188. font-style:normal;
  5189. font-size:8px;
  5190. color:#F59A23;
  5191. text-align:center;
  5192. }
  5193. #u165059 .text {
  5194. position:absolute;
  5195. align-self:flex-start;
  5196. padding:0px 0px 0px 0px;
  5197. box-sizing:border-box;
  5198. width:100%;
  5199. }
  5200. #u165059_text {
  5201. border-width:0px;
  5202. word-wrap:break-word;
  5203. text-transform:none;
  5204. }
  5205. #u165060 {
  5206. border-width:0px;
  5207. position:absolute;
  5208. left:0px;
  5209. top:0px;
  5210. width:0px;
  5211. height:0px;
  5212. }
  5213. #u165061_img {
  5214. border-width:0px;
  5215. position:absolute;
  5216. left:0px;
  5217. top:0px;
  5218. width:355px;
  5219. height:150px;
  5220. }
  5221. #u165061 {
  5222. border-width:0px;
  5223. position:absolute;
  5224. left:497px;
  5225. top:554px;
  5226. width:355px;
  5227. height:150px;
  5228. display:flex;
  5229. }
  5230. #u165061 .text {
  5231. position:absolute;
  5232. align-self:center;
  5233. padding:2px 2px 2px 2px;
  5234. box-sizing:border-box;
  5235. width:100%;
  5236. }
  5237. #u165061_text {
  5238. border-width:0px;
  5239. word-wrap:break-word;
  5240. text-transform:none;
  5241. visibility:hidden;
  5242. }
  5243. #u165062_div {
  5244. border-width:0px;
  5245. position:absolute;
  5246. left:0px;
  5247. top:0px;
  5248. width:253px;
  5249. height:30px;
  5250. background:inherit;
  5251. background-color:rgba(255, 255, 255, 0);
  5252. border:none;
  5253. border-left:0px;
  5254. border-top:0px;
  5255. border-right:0px;
  5256. border-radius:0px;
  5257. border-bottom-right-radius:0px;
  5258. border-bottom-left-radius:0px;
  5259. -moz-box-shadow:none;
  5260. -webkit-box-shadow:none;
  5261. box-shadow:none;
  5262. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5263. font-weight:500;
  5264. font-style:normal;
  5265. font-size:14px;
  5266. line-height:30px;
  5267. }
  5268. #u165062 {
  5269. border-width:0px;
  5270. position:absolute;
  5271. left:502px;
  5272. top:564px;
  5273. width:253px;
  5274. height:30px;
  5275. display:flex;
  5276. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5277. font-weight:500;
  5278. font-style:normal;
  5279. font-size:14px;
  5280. line-height:30px;
  5281. }
  5282. #u165062 .text {
  5283. position:absolute;
  5284. align-self:flex-start;
  5285. padding:0px 0px 0px 0px;
  5286. box-sizing:border-box;
  5287. width:100%;
  5288. }
  5289. #u165062_text {
  5290. border-width:0px;
  5291. white-space:nowrap;
  5292. text-transform:none;
  5293. }
  5294. #u165063_div {
  5295. border-width:0px;
  5296. position:absolute;
  5297. left:0px;
  5298. top:0px;
  5299. width:113px;
  5300. height:51px;
  5301. background:inherit;
  5302. background-color:rgba(255, 255, 255, 0);
  5303. border:none;
  5304. border-left:0px;
  5305. border-top:0px;
  5306. border-right:0px;
  5307. border-radius:0px;
  5308. border-bottom-right-radius:0px;
  5309. border-bottom-left-radius:0px;
  5310. -moz-box-shadow:none;
  5311. -webkit-box-shadow:none;
  5312. box-shadow:none;
  5313. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5314. font-weight:400;
  5315. font-style:normal;
  5316. font-size:12px;
  5317. color:#7F7F7F;
  5318. }
  5319. #u165063 {
  5320. border-width:0px;
  5321. position:absolute;
  5322. left:512px;
  5323. top:594px;
  5324. width:113px;
  5325. height:51px;
  5326. display:flex;
  5327. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5328. font-weight:400;
  5329. font-style:normal;
  5330. font-size:12px;
  5331. color:#7F7F7F;
  5332. }
  5333. #u165063 .text {
  5334. position:absolute;
  5335. align-self:flex-start;
  5336. padding:0px 0px 0px 0px;
  5337. box-sizing:border-box;
  5338. width:100%;
  5339. }
  5340. #u165063_text {
  5341. border-width:0px;
  5342. white-space:nowrap;
  5343. text-transform:none;
  5344. }
  5345. #u165064_div {
  5346. border-width:0px;
  5347. position:absolute;
  5348. left:0px;
  5349. top:0px;
  5350. width:61px;
  5351. height:25px;
  5352. background:inherit;
  5353. background-color:rgba(255, 255, 255, 0);
  5354. border:none;
  5355. border-left:0px;
  5356. border-top:0px;
  5357. border-right:0px;
  5358. border-radius:0px;
  5359. border-bottom-right-radius:0px;
  5360. border-bottom-left-radius:0px;
  5361. -moz-box-shadow:none;
  5362. -webkit-box-shadow:none;
  5363. box-shadow:none;
  5364. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5365. font-weight:400;
  5366. font-style:normal;
  5367. text-align:right;
  5368. }
  5369. #u165064 {
  5370. border-width:0px;
  5371. position:absolute;
  5372. left:776px;
  5373. top:594px;
  5374. width:61px;
  5375. height:25px;
  5376. display:flex;
  5377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5378. font-weight:400;
  5379. font-style:normal;
  5380. text-align:right;
  5381. }
  5382. #u165064 .text {
  5383. position:absolute;
  5384. align-self:flex-start;
  5385. padding:0px 0px 0px 0px;
  5386. box-sizing:border-box;
  5387. width:100%;
  5388. }
  5389. #u165064_text {
  5390. border-width:0px;
  5391. white-space:nowrap;
  5392. text-transform:none;
  5393. }
  5394. #u165065_div {
  5395. border-width:0px;
  5396. position:absolute;
  5397. left:0px;
  5398. top:0px;
  5399. width:41px;
  5400. height:24px;
  5401. background:inherit;
  5402. background-color:rgba(255, 255, 255, 0);
  5403. border:none;
  5404. border-left:0px;
  5405. border-top:0px;
  5406. border-right:0px;
  5407. border-radius:0px;
  5408. border-bottom-right-radius:0px;
  5409. border-bottom-left-radius:0px;
  5410. -moz-box-shadow:none;
  5411. -webkit-box-shadow:none;
  5412. box-shadow:none;
  5413. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5414. font-weight:400;
  5415. font-style:normal;
  5416. font-size:10px;
  5417. text-align:right;
  5418. line-height:24px;
  5419. }
  5420. #u165065 {
  5421. border-width:0px;
  5422. position:absolute;
  5423. left:796px;
  5424. top:619px;
  5425. width:41px;
  5426. height:24px;
  5427. display:flex;
  5428. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5429. font-weight:400;
  5430. font-style:normal;
  5431. font-size:10px;
  5432. text-align:right;
  5433. line-height:24px;
  5434. }
  5435. #u165065 .text {
  5436. position:absolute;
  5437. align-self:flex-start;
  5438. padding:0px 0px 0px 0px;
  5439. box-sizing:border-box;
  5440. width:100%;
  5441. }
  5442. #u165065_text {
  5443. border-width:0px;
  5444. white-space:nowrap;
  5445. text-transform:none;
  5446. }
  5447. #u165066_div {
  5448. border-width:0px;
  5449. position:absolute;
  5450. left:0px;
  5451. top:0px;
  5452. width:86px;
  5453. height:30px;
  5454. background:inherit;
  5455. background-color:rgba(24, 144, 255, 1);
  5456. border:none;
  5457. border-radius:81px;
  5458. -moz-box-shadow:none;
  5459. -webkit-box-shadow:none;
  5460. box-shadow:none;
  5461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5462. font-weight:400;
  5463. font-style:normal;
  5464. font-size:12px;
  5465. color:#FFFFFF;
  5466. }
  5467. #u165066 {
  5468. border-width:0px;
  5469. position:absolute;
  5470. left:758px;
  5471. top:664px;
  5472. width:86px;
  5473. height:30px;
  5474. display:flex;
  5475. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5476. font-weight:400;
  5477. font-style:normal;
  5478. font-size:12px;
  5479. color:#FFFFFF;
  5480. }
  5481. #u165066 .text {
  5482. position:absolute;
  5483. align-self:center;
  5484. padding:2px 2px 2px 2px;
  5485. box-sizing:border-box;
  5486. width:100%;
  5487. }
  5488. #u165066_text {
  5489. border-width:0px;
  5490. word-wrap:break-word;
  5491. text-transform:none;
  5492. }
  5493. #u165067_div {
  5494. border-width:0px;
  5495. position:absolute;
  5496. left:0px;
  5497. top:0px;
  5498. width:86px;
  5499. height:30px;
  5500. background:inherit;
  5501. background-color:rgba(255, 255, 255, 1);
  5502. box-sizing:border-box;
  5503. border-width:1px;
  5504. border-style:solid;
  5505. border-color:rgba(127, 127, 127, 1);
  5506. border-radius:81px;
  5507. -moz-box-shadow:none;
  5508. -webkit-box-shadow:none;
  5509. box-shadow:none;
  5510. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5511. font-weight:400;
  5512. font-style:normal;
  5513. font-size:12px;
  5514. color:#555555;
  5515. }
  5516. #u165067 {
  5517. border-width:0px;
  5518. position:absolute;
  5519. left:662px;
  5520. top:664px;
  5521. width:86px;
  5522. height:30px;
  5523. display:flex;
  5524. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5525. font-weight:400;
  5526. font-style:normal;
  5527. font-size:12px;
  5528. color:#555555;
  5529. }
  5530. #u165067 .text {
  5531. position:absolute;
  5532. align-self:center;
  5533. padding:2px 2px 2px 2px;
  5534. box-sizing:border-box;
  5535. width:100%;
  5536. }
  5537. #u165067_text {
  5538. border-width:0px;
  5539. word-wrap:break-word;
  5540. text-transform:none;
  5541. }
  5542. #u165068_div {
  5543. border-width:0px;
  5544. position:absolute;
  5545. left:0px;
  5546. top:0px;
  5547. width:87px;
  5548. height:11px;
  5549. background:inherit;
  5550. background-color:rgba(255, 255, 0, 0.0980392156862745);
  5551. border:none;
  5552. border-radius:5px;
  5553. -moz-box-shadow:none;
  5554. -webkit-box-shadow:none;
  5555. box-shadow:none;
  5556. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5557. font-weight:400;
  5558. font-style:normal;
  5559. font-size:8px;
  5560. color:#F59A23;
  5561. text-align:center;
  5562. }
  5563. #u165068 {
  5564. border-width:0px;
  5565. position:absolute;
  5566. left:564px;
  5567. top:674px;
  5568. width:87px;
  5569. height:11px;
  5570. display:flex;
  5571. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5572. font-weight:400;
  5573. font-style:normal;
  5574. font-size:8px;
  5575. color:#F59A23;
  5576. text-align:center;
  5577. }
  5578. #u165068 .text {
  5579. position:absolute;
  5580. align-self:flex-start;
  5581. padding:0px 0px 0px 0px;
  5582. box-sizing:border-box;
  5583. width:100%;
  5584. }
  5585. #u165068_text {
  5586. border-width:0px;
  5587. word-wrap:break-word;
  5588. text-transform:none;
  5589. }
  5590. #u165069 {
  5591. border-width:0px;
  5592. position:absolute;
  5593. left:0px;
  5594. top:0px;
  5595. width:0px;
  5596. height:0px;
  5597. }
  5598. #u165070_img {
  5599. border-width:0px;
  5600. position:absolute;
  5601. left:0px;
  5602. top:0px;
  5603. width:355px;
  5604. height:120px;
  5605. }
  5606. #u165070 {
  5607. border-width:0px;
  5608. position:absolute;
  5609. left:958px;
  5610. top:224px;
  5611. width:355px;
  5612. height:120px;
  5613. display:flex;
  5614. }
  5615. #u165070 .text {
  5616. position:absolute;
  5617. align-self:center;
  5618. padding:2px 2px 2px 2px;
  5619. box-sizing:border-box;
  5620. width:100%;
  5621. }
  5622. #u165070_text {
  5623. border-width:0px;
  5624. word-wrap:break-word;
  5625. text-transform:none;
  5626. visibility:hidden;
  5627. }
  5628. #u165071_div {
  5629. border-width:0px;
  5630. position:absolute;
  5631. left:0px;
  5632. top:0px;
  5633. width:225px;
  5634. height:30px;
  5635. background:inherit;
  5636. background-color:rgba(255, 255, 255, 0);
  5637. border:none;
  5638. border-left:0px;
  5639. border-top:0px;
  5640. border-right:0px;
  5641. border-radius:0px;
  5642. border-bottom-right-radius:0px;
  5643. border-bottom-left-radius:0px;
  5644. -moz-box-shadow:none;
  5645. -webkit-box-shadow:none;
  5646. box-shadow:none;
  5647. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5648. font-weight:500;
  5649. font-style:normal;
  5650. font-size:14px;
  5651. line-height:30px;
  5652. }
  5653. #u165071 {
  5654. border-width:0px;
  5655. position:absolute;
  5656. left:963px;
  5657. top:234px;
  5658. width:225px;
  5659. height:30px;
  5660. display:flex;
  5661. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5662. font-weight:500;
  5663. font-style:normal;
  5664. font-size:14px;
  5665. line-height:30px;
  5666. }
  5667. #u165071 .text {
  5668. position:absolute;
  5669. align-self:flex-start;
  5670. padding:0px 0px 0px 0px;
  5671. box-sizing:border-box;
  5672. width:100%;
  5673. }
  5674. #u165071_text {
  5675. border-width:0px;
  5676. white-space:nowrap;
  5677. text-transform:none;
  5678. }
  5679. #u165072_div {
  5680. border-width:0px;
  5681. position:absolute;
  5682. left:0px;
  5683. top:0px;
  5684. width:199px;
  5685. height:68px;
  5686. background:inherit;
  5687. background-color:rgba(255, 255, 255, 0);
  5688. border:none;
  5689. border-left:0px;
  5690. border-top:0px;
  5691. border-right:0px;
  5692. border-radius:0px;
  5693. border-bottom-right-radius:0px;
  5694. border-bottom-left-radius:0px;
  5695. -moz-box-shadow:none;
  5696. -webkit-box-shadow:none;
  5697. box-shadow:none;
  5698. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5699. font-weight:400;
  5700. font-style:normal;
  5701. font-size:12px;
  5702. color:#7F7F7F;
  5703. }
  5704. #u165072 {
  5705. border-width:0px;
  5706. position:absolute;
  5707. left:973px;
  5708. top:264px;
  5709. width:199px;
  5710. height:68px;
  5711. display:flex;
  5712. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5713. font-weight:400;
  5714. font-style:normal;
  5715. font-size:12px;
  5716. color:#7F7F7F;
  5717. }
  5718. #u165072 .text {
  5719. position:absolute;
  5720. align-self:flex-start;
  5721. padding:0px 0px 0px 0px;
  5722. box-sizing:border-box;
  5723. width:100%;
  5724. }
  5725. #u165072_text {
  5726. border-width:0px;
  5727. white-space:nowrap;
  5728. text-transform:none;
  5729. }
  5730. #u165073_div {
  5731. border-width:0px;
  5732. position:absolute;
  5733. left:0px;
  5734. top:0px;
  5735. width:61px;
  5736. height:25px;
  5737. background:inherit;
  5738. background-color:rgba(255, 255, 255, 0);
  5739. border:none;
  5740. border-left:0px;
  5741. border-top:0px;
  5742. border-right:0px;
  5743. border-radius:0px;
  5744. border-bottom-right-radius:0px;
  5745. border-bottom-left-radius:0px;
  5746. -moz-box-shadow:none;
  5747. -webkit-box-shadow:none;
  5748. box-shadow:none;
  5749. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5750. font-weight:400;
  5751. font-style:normal;
  5752. text-align:right;
  5753. }
  5754. #u165073 {
  5755. border-width:0px;
  5756. position:absolute;
  5757. left:1237px;
  5758. top:264px;
  5759. width:61px;
  5760. height:25px;
  5761. display:flex;
  5762. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5763. font-weight:400;
  5764. font-style:normal;
  5765. text-align:right;
  5766. }
  5767. #u165073 .text {
  5768. position:absolute;
  5769. align-self:flex-start;
  5770. padding:0px 0px 0px 0px;
  5771. box-sizing:border-box;
  5772. width:100%;
  5773. }
  5774. #u165073_text {
  5775. border-width:0px;
  5776. white-space:nowrap;
  5777. text-transform:none;
  5778. }
  5779. #u165074_div {
  5780. border-width:0px;
  5781. position:absolute;
  5782. left:0px;
  5783. top:0px;
  5784. width:86px;
  5785. height:28px;
  5786. background:inherit;
  5787. background-color:rgba(255, 255, 255, 0);
  5788. border:none;
  5789. border-left:0px;
  5790. border-top:0px;
  5791. border-right:0px;
  5792. border-radius:0px;
  5793. border-bottom-right-radius:0px;
  5794. border-bottom-left-radius:0px;
  5795. -moz-box-shadow:none;
  5796. -webkit-box-shadow:none;
  5797. box-shadow:none;
  5798. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5799. font-weight:400;
  5800. font-style:normal;
  5801. font-size:10px;
  5802. color:#F59A23;
  5803. text-align:right;
  5804. }
  5805. #u165074 {
  5806. border-width:0px;
  5807. position:absolute;
  5808. left:1212px;
  5809. top:294px;
  5810. width:86px;
  5811. height:28px;
  5812. display:flex;
  5813. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5814. font-weight:400;
  5815. font-style:normal;
  5816. font-size:10px;
  5817. color:#F59A23;
  5818. text-align:right;
  5819. }
  5820. #u165074 .text {
  5821. position:absolute;
  5822. align-self:flex-start;
  5823. padding:0px 0px 0px 0px;
  5824. box-sizing:border-box;
  5825. width:100%;
  5826. }
  5827. #u165074_text {
  5828. border-width:0px;
  5829. white-space:nowrap;
  5830. text-transform:none;
  5831. }
  5832. #u165075 {
  5833. border-width:0px;
  5834. position:absolute;
  5835. left:0px;
  5836. top:0px;
  5837. width:0px;
  5838. height:0px;
  5839. }
  5840. #u165076_img {
  5841. border-width:0px;
  5842. position:absolute;
  5843. left:0px;
  5844. top:0px;
  5845. width:355px;
  5846. height:110px;
  5847. }
  5848. #u165076 {
  5849. border-width:0px;
  5850. position:absolute;
  5851. left:958px;
  5852. top:634px;
  5853. width:355px;
  5854. height:110px;
  5855. display:flex;
  5856. }
  5857. #u165076 .text {
  5858. position:absolute;
  5859. align-self:center;
  5860. padding:2px 2px 2px 2px;
  5861. box-sizing:border-box;
  5862. width:100%;
  5863. }
  5864. #u165076_text {
  5865. border-width:0px;
  5866. word-wrap:break-word;
  5867. text-transform:none;
  5868. visibility:hidden;
  5869. }
  5870. #u165077_div {
  5871. border-width:0px;
  5872. position:absolute;
  5873. left:0px;
  5874. top:0px;
  5875. width:211px;
  5876. height:30px;
  5877. background:inherit;
  5878. background-color:rgba(255, 255, 255, 0);
  5879. border:none;
  5880. border-left:0px;
  5881. border-top:0px;
  5882. border-right:0px;
  5883. border-radius:0px;
  5884. border-bottom-right-radius:0px;
  5885. border-bottom-left-radius:0px;
  5886. -moz-box-shadow:none;
  5887. -webkit-box-shadow:none;
  5888. box-shadow:none;
  5889. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5890. font-weight:500;
  5891. font-style:normal;
  5892. font-size:14px;
  5893. line-height:30px;
  5894. }
  5895. #u165077 {
  5896. border-width:0px;
  5897. position:absolute;
  5898. left:963px;
  5899. top:644px;
  5900. width:211px;
  5901. height:30px;
  5902. display:flex;
  5903. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5904. font-weight:500;
  5905. font-style:normal;
  5906. font-size:14px;
  5907. line-height:30px;
  5908. }
  5909. #u165077 .text {
  5910. position:absolute;
  5911. align-self:flex-start;
  5912. padding:0px 0px 0px 0px;
  5913. box-sizing:border-box;
  5914. width:100%;
  5915. }
  5916. #u165077_text {
  5917. border-width:0px;
  5918. white-space:nowrap;
  5919. text-transform:none;
  5920. }
  5921. #u165078_div {
  5922. border-width:0px;
  5923. position:absolute;
  5924. left:0px;
  5925. top:0px;
  5926. width:182px;
  5927. height:51px;
  5928. background:inherit;
  5929. background-color:rgba(255, 255, 255, 0);
  5930. border:none;
  5931. border-left:0px;
  5932. border-top:0px;
  5933. border-right:0px;
  5934. border-radius:0px;
  5935. border-bottom-right-radius:0px;
  5936. border-bottom-left-radius:0px;
  5937. -moz-box-shadow:none;
  5938. -webkit-box-shadow:none;
  5939. box-shadow:none;
  5940. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5941. font-weight:400;
  5942. font-style:normal;
  5943. font-size:12px;
  5944. color:#7F7F7F;
  5945. }
  5946. #u165078 {
  5947. border-width:0px;
  5948. position:absolute;
  5949. left:973px;
  5950. top:674px;
  5951. width:182px;
  5952. height:51px;
  5953. display:flex;
  5954. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5955. font-weight:400;
  5956. font-style:normal;
  5957. font-size:12px;
  5958. color:#7F7F7F;
  5959. }
  5960. #u165078 .text {
  5961. position:absolute;
  5962. align-self:flex-start;
  5963. padding:0px 0px 0px 0px;
  5964. box-sizing:border-box;
  5965. width:100%;
  5966. }
  5967. #u165078_text {
  5968. border-width:0px;
  5969. white-space:nowrap;
  5970. text-transform:none;
  5971. }
  5972. #u165079_div {
  5973. border-width:0px;
  5974. position:absolute;
  5975. left:0px;
  5976. top:0px;
  5977. width:61px;
  5978. height:25px;
  5979. background:inherit;
  5980. background-color:rgba(255, 255, 255, 0);
  5981. border:none;
  5982. border-left:0px;
  5983. border-top:0px;
  5984. border-right:0px;
  5985. border-radius:0px;
  5986. border-bottom-right-radius:0px;
  5987. border-bottom-left-radius:0px;
  5988. -moz-box-shadow:none;
  5989. -webkit-box-shadow:none;
  5990. box-shadow:none;
  5991. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5992. font-weight:400;
  5993. font-style:normal;
  5994. text-align:right;
  5995. }
  5996. #u165079 {
  5997. border-width:0px;
  5998. position:absolute;
  5999. left:1237px;
  6000. top:674px;
  6001. width:61px;
  6002. height:25px;
  6003. display:flex;
  6004. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6005. font-weight:400;
  6006. font-style:normal;
  6007. text-align:right;
  6008. }
  6009. #u165079 .text {
  6010. position:absolute;
  6011. align-self:flex-start;
  6012. padding:0px 0px 0px 0px;
  6013. box-sizing:border-box;
  6014. width:100%;
  6015. }
  6016. #u165079_text {
  6017. border-width:0px;
  6018. white-space:nowrap;
  6019. text-transform:none;
  6020. }
  6021. #u165080 {
  6022. border-width:0px;
  6023. position:absolute;
  6024. left:0px;
  6025. top:0px;
  6026. width:0px;
  6027. height:0px;
  6028. }
  6029. #u165081_img {
  6030. border-width:0px;
  6031. position:absolute;
  6032. left:0px;
  6033. top:0px;
  6034. width:355px;
  6035. height:120px;
  6036. }
  6037. #u165081 {
  6038. border-width:0px;
  6039. position:absolute;
  6040. left:958px;
  6041. top:754px;
  6042. width:355px;
  6043. height:120px;
  6044. display:flex;
  6045. }
  6046. #u165081 .text {
  6047. position:absolute;
  6048. align-self:center;
  6049. padding:2px 2px 2px 2px;
  6050. box-sizing:border-box;
  6051. width:100%;
  6052. }
  6053. #u165081_text {
  6054. border-width:0px;
  6055. word-wrap:break-word;
  6056. text-transform:none;
  6057. visibility:hidden;
  6058. }
  6059. #u165082_div {
  6060. border-width:0px;
  6061. position:absolute;
  6062. left:0px;
  6063. top:0px;
  6064. width:253px;
  6065. height:30px;
  6066. background:inherit;
  6067. background-color:rgba(255, 255, 255, 0);
  6068. border:none;
  6069. border-left:0px;
  6070. border-top:0px;
  6071. border-right:0px;
  6072. border-radius:0px;
  6073. border-bottom-right-radius:0px;
  6074. border-bottom-left-radius:0px;
  6075. -moz-box-shadow:none;
  6076. -webkit-box-shadow:none;
  6077. box-shadow:none;
  6078. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6079. font-weight:500;
  6080. font-style:normal;
  6081. font-size:14px;
  6082. line-height:30px;
  6083. }
  6084. #u165082 {
  6085. border-width:0px;
  6086. position:absolute;
  6087. left:963px;
  6088. top:764px;
  6089. width:253px;
  6090. height:30px;
  6091. display:flex;
  6092. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6093. font-weight:500;
  6094. font-style:normal;
  6095. font-size:14px;
  6096. line-height:30px;
  6097. }
  6098. #u165082 .text {
  6099. position:absolute;
  6100. align-self:flex-start;
  6101. padding:0px 0px 0px 0px;
  6102. box-sizing:border-box;
  6103. width:100%;
  6104. }
  6105. #u165082_text {
  6106. border-width:0px;
  6107. white-space:nowrap;
  6108. text-transform:none;
  6109. }
  6110. #u165083_div {
  6111. border-width:0px;
  6112. position:absolute;
  6113. left:0px;
  6114. top:0px;
  6115. width:131px;
  6116. height:68px;
  6117. background:inherit;
  6118. background-color:rgba(255, 255, 255, 0);
  6119. border:none;
  6120. border-left:0px;
  6121. border-top:0px;
  6122. border-right:0px;
  6123. border-radius:0px;
  6124. border-bottom-right-radius:0px;
  6125. border-bottom-left-radius:0px;
  6126. -moz-box-shadow:none;
  6127. -webkit-box-shadow:none;
  6128. box-shadow:none;
  6129. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6130. font-weight:400;
  6131. font-style:normal;
  6132. font-size:12px;
  6133. color:#7F7F7F;
  6134. }
  6135. #u165083 {
  6136. border-width:0px;
  6137. position:absolute;
  6138. left:973px;
  6139. top:794px;
  6140. width:131px;
  6141. height:68px;
  6142. display:flex;
  6143. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6144. font-weight:400;
  6145. font-style:normal;
  6146. font-size:12px;
  6147. color:#7F7F7F;
  6148. }
  6149. #u165083 .text {
  6150. position:absolute;
  6151. align-self:flex-start;
  6152. padding:0px 0px 0px 0px;
  6153. box-sizing:border-box;
  6154. width:100%;
  6155. }
  6156. #u165083_text {
  6157. border-width:0px;
  6158. white-space:nowrap;
  6159. text-transform:none;
  6160. }
  6161. #u165084_div {
  6162. border-width:0px;
  6163. position:absolute;
  6164. left:0px;
  6165. top:0px;
  6166. width:61px;
  6167. height:25px;
  6168. background:inherit;
  6169. background-color:rgba(255, 255, 255, 0);
  6170. border:none;
  6171. border-left:0px;
  6172. border-top:0px;
  6173. border-right:0px;
  6174. border-radius:0px;
  6175. border-bottom-right-radius:0px;
  6176. border-bottom-left-radius:0px;
  6177. -moz-box-shadow:none;
  6178. -webkit-box-shadow:none;
  6179. box-shadow:none;
  6180. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6181. font-weight:400;
  6182. font-style:normal;
  6183. text-align:right;
  6184. }
  6185. #u165084 {
  6186. border-width:0px;
  6187. position:absolute;
  6188. left:1237px;
  6189. top:794px;
  6190. width:61px;
  6191. height:25px;
  6192. display:flex;
  6193. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6194. font-weight:400;
  6195. font-style:normal;
  6196. text-align:right;
  6197. }
  6198. #u165084 .text {
  6199. position:absolute;
  6200. align-self:flex-start;
  6201. padding:0px 0px 0px 0px;
  6202. box-sizing:border-box;
  6203. width:100%;
  6204. }
  6205. #u165084_text {
  6206. border-width:0px;
  6207. white-space:nowrap;
  6208. text-transform:none;
  6209. }
  6210. #u165085 {
  6211. border-width:0px;
  6212. position:absolute;
  6213. left:0px;
  6214. top:0px;
  6215. width:0px;
  6216. height:0px;
  6217. }
  6218. #u165086_img {
  6219. border-width:0px;
  6220. position:absolute;
  6221. left:0px;
  6222. top:0px;
  6223. width:355px;
  6224. height:120px;
  6225. }
  6226. #u165086 {
  6227. border-width:0px;
  6228. position:absolute;
  6229. left:958px;
  6230. top:354px;
  6231. width:355px;
  6232. height:120px;
  6233. display:flex;
  6234. }
  6235. #u165086 .text {
  6236. position:absolute;
  6237. align-self:center;
  6238. padding:2px 2px 2px 2px;
  6239. box-sizing:border-box;
  6240. width:100%;
  6241. }
  6242. #u165086_text {
  6243. border-width:0px;
  6244. word-wrap:break-word;
  6245. text-transform:none;
  6246. visibility:hidden;
  6247. }
  6248. #u165087_div {
  6249. border-width:0px;
  6250. position:absolute;
  6251. left:0px;
  6252. top:0px;
  6253. width:225px;
  6254. height:30px;
  6255. background:inherit;
  6256. background-color:rgba(255, 255, 255, 0);
  6257. border:none;
  6258. border-left:0px;
  6259. border-top:0px;
  6260. border-right:0px;
  6261. border-radius:0px;
  6262. border-bottom-right-radius:0px;
  6263. border-bottom-left-radius:0px;
  6264. -moz-box-shadow:none;
  6265. -webkit-box-shadow:none;
  6266. box-shadow:none;
  6267. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6268. font-weight:500;
  6269. font-style:normal;
  6270. font-size:14px;
  6271. line-height:30px;
  6272. }
  6273. #u165087 {
  6274. border-width:0px;
  6275. position:absolute;
  6276. left:963px;
  6277. top:364px;
  6278. width:225px;
  6279. height:30px;
  6280. display:flex;
  6281. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6282. font-weight:500;
  6283. font-style:normal;
  6284. font-size:14px;
  6285. line-height:30px;
  6286. }
  6287. #u165087 .text {
  6288. position:absolute;
  6289. align-self:flex-start;
  6290. padding:0px 0px 0px 0px;
  6291. box-sizing:border-box;
  6292. width:100%;
  6293. }
  6294. #u165087_text {
  6295. border-width:0px;
  6296. white-space:nowrap;
  6297. text-transform:none;
  6298. }
  6299. #u165088_div {
  6300. border-width:0px;
  6301. position:absolute;
  6302. left:0px;
  6303. top:0px;
  6304. width:165px;
  6305. height:68px;
  6306. background:inherit;
  6307. background-color:rgba(255, 255, 255, 0);
  6308. border:none;
  6309. border-left:0px;
  6310. border-top:0px;
  6311. border-right:0px;
  6312. border-radius:0px;
  6313. border-bottom-right-radius:0px;
  6314. border-bottom-left-radius:0px;
  6315. -moz-box-shadow:none;
  6316. -webkit-box-shadow:none;
  6317. box-shadow:none;
  6318. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6319. font-weight:400;
  6320. font-style:normal;
  6321. font-size:12px;
  6322. color:#7F7F7F;
  6323. }
  6324. #u165088 {
  6325. border-width:0px;
  6326. position:absolute;
  6327. left:973px;
  6328. top:394px;
  6329. width:165px;
  6330. height:68px;
  6331. display:flex;
  6332. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6333. font-weight:400;
  6334. font-style:normal;
  6335. font-size:12px;
  6336. color:#7F7F7F;
  6337. }
  6338. #u165088 .text {
  6339. position:absolute;
  6340. align-self:flex-start;
  6341. padding:0px 0px 0px 0px;
  6342. box-sizing:border-box;
  6343. width:100%;
  6344. }
  6345. #u165088_text {
  6346. border-width:0px;
  6347. white-space:nowrap;
  6348. text-transform:none;
  6349. }
  6350. #u165089_div {
  6351. border-width:0px;
  6352. position:absolute;
  6353. left:0px;
  6354. top:0px;
  6355. width:56px;
  6356. height:25px;
  6357. background:inherit;
  6358. background-color:rgba(255, 255, 255, 0);
  6359. border:none;
  6360. border-left:0px;
  6361. border-top:0px;
  6362. border-right:0px;
  6363. border-radius:0px;
  6364. border-bottom-right-radius:0px;
  6365. border-bottom-left-radius:0px;
  6366. -moz-box-shadow:none;
  6367. -webkit-box-shadow:none;
  6368. box-shadow:none;
  6369. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6370. font-weight:400;
  6371. font-style:normal;
  6372. text-align:right;
  6373. }
  6374. #u165089 {
  6375. border-width:0px;
  6376. position:absolute;
  6377. left:1242px;
  6378. top:412px;
  6379. width:56px;
  6380. height:25px;
  6381. display:flex;
  6382. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6383. font-weight:400;
  6384. font-style:normal;
  6385. text-align:right;
  6386. }
  6387. #u165089 .text {
  6388. position:absolute;
  6389. align-self:flex-start;
  6390. padding:0px 0px 0px 0px;
  6391. box-sizing:border-box;
  6392. width:100%;
  6393. }
  6394. #u165089_text {
  6395. border-width:0px;
  6396. white-space:nowrap;
  6397. text-transform:none;
  6398. }
  6399. #u165090_div {
  6400. border-width:0px;
  6401. position:absolute;
  6402. left:0px;
  6403. top:0px;
  6404. width:132px;
  6405. height:24px;
  6406. background:inherit;
  6407. background-color:rgba(255, 255, 255, 0);
  6408. border:none;
  6409. border-left:0px;
  6410. border-top:0px;
  6411. border-right:0px;
  6412. border-radius:0px;
  6413. border-bottom-right-radius:0px;
  6414. border-bottom-left-radius:0px;
  6415. -moz-box-shadow:none;
  6416. -webkit-box-shadow:none;
  6417. box-shadow:none;
  6418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6419. font-weight:400;
  6420. font-style:normal;
  6421. font-size:10px;
  6422. color:#AAAAAA;
  6423. text-align:right;
  6424. line-height:24px;
  6425. }
  6426. #u165090 {
  6427. border-width:0px;
  6428. position:absolute;
  6429. left:1166px;
  6430. top:437px;
  6431. width:132px;
  6432. height:24px;
  6433. display:flex;
  6434. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6435. font-weight:400;
  6436. font-style:normal;
  6437. font-size:10px;
  6438. color:#AAAAAA;
  6439. text-align:right;
  6440. line-height:24px;
  6441. }
  6442. #u165090 .text {
  6443. position:absolute;
  6444. align-self:flex-start;
  6445. padding:0px 0px 0px 0px;
  6446. box-sizing:border-box;
  6447. width:100%;
  6448. }
  6449. #u165090_text {
  6450. border-width:0px;
  6451. white-space:nowrap;
  6452. text-transform:none;
  6453. }
  6454. #u165091 {
  6455. border-width:0px;
  6456. position:absolute;
  6457. left:0px;
  6458. top:0px;
  6459. width:0px;
  6460. height:0px;
  6461. }
  6462. #u165092_img {
  6463. border-width:0px;
  6464. position:absolute;
  6465. left:0px;
  6466. top:0px;
  6467. width:355px;
  6468. height:120px;
  6469. }
  6470. #u165092 {
  6471. border-width:0px;
  6472. position:absolute;
  6473. left:39px;
  6474. top:374px;
  6475. width:355px;
  6476. height:120px;
  6477. display:flex;
  6478. }
  6479. #u165092 .text {
  6480. position:absolute;
  6481. align-self:center;
  6482. padding:2px 2px 2px 2px;
  6483. box-sizing:border-box;
  6484. width:100%;
  6485. }
  6486. #u165092_text {
  6487. border-width:0px;
  6488. word-wrap:break-word;
  6489. text-transform:none;
  6490. visibility:hidden;
  6491. }
  6492. #u165093_div {
  6493. border-width:0px;
  6494. position:absolute;
  6495. left:0px;
  6496. top:0px;
  6497. width:225px;
  6498. height:30px;
  6499. background:inherit;
  6500. background-color:rgba(255, 255, 255, 0);
  6501. border:none;
  6502. border-left:0px;
  6503. border-top:0px;
  6504. border-right:0px;
  6505. border-radius:0px;
  6506. border-bottom-right-radius:0px;
  6507. border-bottom-left-radius:0px;
  6508. -moz-box-shadow:none;
  6509. -webkit-box-shadow:none;
  6510. box-shadow:none;
  6511. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6512. font-weight:500;
  6513. font-style:normal;
  6514. font-size:14px;
  6515. line-height:30px;
  6516. }
  6517. #u165093 {
  6518. border-width:0px;
  6519. position:absolute;
  6520. left:44px;
  6521. top:384px;
  6522. width:225px;
  6523. height:30px;
  6524. display:flex;
  6525. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6526. font-weight:500;
  6527. font-style:normal;
  6528. font-size:14px;
  6529. line-height:30px;
  6530. }
  6531. #u165093 .text {
  6532. position:absolute;
  6533. align-self:flex-start;
  6534. padding:0px 0px 0px 0px;
  6535. box-sizing:border-box;
  6536. width:100%;
  6537. }
  6538. #u165093_text {
  6539. border-width:0px;
  6540. white-space:nowrap;
  6541. text-transform:none;
  6542. }
  6543. #u165094_div {
  6544. border-width:0px;
  6545. position:absolute;
  6546. left:0px;
  6547. top:0px;
  6548. width:165px;
  6549. height:68px;
  6550. background:inherit;
  6551. background-color:rgba(255, 255, 255, 0);
  6552. border:none;
  6553. border-left:0px;
  6554. border-top:0px;
  6555. border-right:0px;
  6556. border-radius:0px;
  6557. border-bottom-right-radius:0px;
  6558. border-bottom-left-radius:0px;
  6559. -moz-box-shadow:none;
  6560. -webkit-box-shadow:none;
  6561. box-shadow:none;
  6562. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6563. font-weight:400;
  6564. font-style:normal;
  6565. font-size:12px;
  6566. }
  6567. #u165094 {
  6568. border-width:0px;
  6569. position:absolute;
  6570. left:54px;
  6571. top:414px;
  6572. width:165px;
  6573. height:68px;
  6574. display:flex;
  6575. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6576. font-weight:400;
  6577. font-style:normal;
  6578. font-size:12px;
  6579. }
  6580. #u165094 .text {
  6581. position:absolute;
  6582. align-self:flex-start;
  6583. padding:0px 0px 0px 0px;
  6584. box-sizing:border-box;
  6585. width:100%;
  6586. }
  6587. #u165094_text {
  6588. border-width:0px;
  6589. white-space:nowrap;
  6590. text-transform:none;
  6591. }
  6592. #u165095_div {
  6593. border-width:0px;
  6594. position:absolute;
  6595. left:0px;
  6596. top:0px;
  6597. width:47px;
  6598. height:25px;
  6599. background:inherit;
  6600. background-color:rgba(255, 255, 255, 0);
  6601. border:none;
  6602. border-left:0px;
  6603. border-top:0px;
  6604. border-right:0px;
  6605. border-radius:0px;
  6606. border-bottom-right-radius:0px;
  6607. border-bottom-left-radius:0px;
  6608. -moz-box-shadow:none;
  6609. -webkit-box-shadow:none;
  6610. box-shadow:none;
  6611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6612. font-weight:400;
  6613. font-style:normal;
  6614. text-align:right;
  6615. }
  6616. #u165095 {
  6617. border-width:0px;
  6618. position:absolute;
  6619. left:332px;
  6620. top:422px;
  6621. width:47px;
  6622. height:25px;
  6623. display:flex;
  6624. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6625. font-weight:400;
  6626. font-style:normal;
  6627. text-align:right;
  6628. }
  6629. #u165095 .text {
  6630. position:absolute;
  6631. align-self:flex-start;
  6632. padding:0px 0px 0px 0px;
  6633. box-sizing:border-box;
  6634. width:100%;
  6635. }
  6636. #u165095_text {
  6637. border-width:0px;
  6638. white-space:nowrap;
  6639. text-transform:none;
  6640. }
  6641. #u165096_div {
  6642. border-width:0px;
  6643. position:absolute;
  6644. left:0px;
  6645. top:0px;
  6646. width:41px;
  6647. height:24px;
  6648. background:inherit;
  6649. background-color:rgba(255, 255, 255, 0);
  6650. border:none;
  6651. border-left:0px;
  6652. border-top:0px;
  6653. border-right:0px;
  6654. border-radius:0px;
  6655. border-bottom-right-radius:0px;
  6656. border-bottom-left-radius:0px;
  6657. -moz-box-shadow:none;
  6658. -webkit-box-shadow:none;
  6659. box-shadow:none;
  6660. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6661. font-weight:400;
  6662. font-style:normal;
  6663. font-size:10px;
  6664. text-align:right;
  6665. line-height:24px;
  6666. }
  6667. #u165096 {
  6668. border-width:0px;
  6669. position:absolute;
  6670. left:338px;
  6671. top:447px;
  6672. width:41px;
  6673. height:24px;
  6674. display:flex;
  6675. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6676. font-weight:400;
  6677. font-style:normal;
  6678. font-size:10px;
  6679. text-align:right;
  6680. line-height:24px;
  6681. }
  6682. #u165096 .text {
  6683. position:absolute;
  6684. align-self:flex-start;
  6685. padding:0px 0px 0px 0px;
  6686. box-sizing:border-box;
  6687. width:100%;
  6688. }
  6689. #u165096_text {
  6690. border-width:0px;
  6691. white-space:nowrap;
  6692. text-transform:none;
  6693. }
  6694. #u165097 {
  6695. border-width:0px;
  6696. position:absolute;
  6697. left:0px;
  6698. top:0px;
  6699. width:0px;
  6700. height:0px;
  6701. }
  6702. #u165098_img {
  6703. border-width:0px;
  6704. position:absolute;
  6705. left:0px;
  6706. top:0px;
  6707. width:355px;
  6708. height:140px;
  6709. }
  6710. #u165098 {
  6711. border-width:0px;
  6712. position:absolute;
  6713. left:958px;
  6714. top:484px;
  6715. width:355px;
  6716. height:140px;
  6717. display:flex;
  6718. }
  6719. #u165098 .text {
  6720. position:absolute;
  6721. align-self:center;
  6722. padding:2px 2px 2px 2px;
  6723. box-sizing:border-box;
  6724. width:100%;
  6725. }
  6726. #u165098_text {
  6727. border-width:0px;
  6728. word-wrap:break-word;
  6729. text-transform:none;
  6730. visibility:hidden;
  6731. }
  6732. #u165099_div {
  6733. border-width:0px;
  6734. position:absolute;
  6735. left:0px;
  6736. top:0px;
  6737. width:225px;
  6738. height:30px;
  6739. background:inherit;
  6740. background-color:rgba(255, 255, 255, 0);
  6741. border:none;
  6742. border-left:0px;
  6743. border-top:0px;
  6744. border-right:0px;
  6745. border-radius:0px;
  6746. border-bottom-right-radius:0px;
  6747. border-bottom-left-radius:0px;
  6748. -moz-box-shadow:none;
  6749. -webkit-box-shadow:none;
  6750. box-shadow:none;
  6751. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6752. font-weight:500;
  6753. font-style:normal;
  6754. font-size:14px;
  6755. line-height:30px;
  6756. }
  6757. #u165099 {
  6758. border-width:0px;
  6759. position:absolute;
  6760. left:963px;
  6761. top:494px;
  6762. width:225px;
  6763. height:30px;
  6764. display:flex;
  6765. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6766. font-weight:500;
  6767. font-style:normal;
  6768. font-size:14px;
  6769. line-height:30px;
  6770. }
  6771. #u165099 .text {
  6772. position:absolute;
  6773. align-self:flex-start;
  6774. padding:0px 0px 0px 0px;
  6775. box-sizing:border-box;
  6776. width:100%;
  6777. }
  6778. #u165099_text {
  6779. border-width:0px;
  6780. white-space:nowrap;
  6781. text-transform:none;
  6782. }
  6783. #u165100_div {
  6784. border-width:0px;
  6785. position:absolute;
  6786. left:0px;
  6787. top:0px;
  6788. width:165px;
  6789. height:68px;
  6790. background:inherit;
  6791. background-color:rgba(255, 255, 255, 0);
  6792. border:none;
  6793. border-left:0px;
  6794. border-top:0px;
  6795. border-right:0px;
  6796. border-radius:0px;
  6797. border-bottom-right-radius:0px;
  6798. border-bottom-left-radius:0px;
  6799. -moz-box-shadow:none;
  6800. -webkit-box-shadow:none;
  6801. box-shadow:none;
  6802. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6803. font-weight:400;
  6804. font-style:normal;
  6805. font-size:12px;
  6806. color:#7F7F7F;
  6807. }
  6808. #u165100 {
  6809. border-width:0px;
  6810. position:absolute;
  6811. left:973px;
  6812. top:524px;
  6813. width:165px;
  6814. height:68px;
  6815. display:flex;
  6816. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6817. font-weight:400;
  6818. font-style:normal;
  6819. font-size:12px;
  6820. color:#7F7F7F;
  6821. }
  6822. #u165100 .text {
  6823. position:absolute;
  6824. align-self:flex-start;
  6825. padding:0px 0px 0px 0px;
  6826. box-sizing:border-box;
  6827. width:100%;
  6828. }
  6829. #u165100_text {
  6830. border-width:0px;
  6831. white-space:nowrap;
  6832. text-transform:none;
  6833. }
  6834. #u165101_div {
  6835. border-width:0px;
  6836. position:absolute;
  6837. left:0px;
  6838. top:0px;
  6839. width:57px;
  6840. height:25px;
  6841. background:inherit;
  6842. background-color:rgba(255, 255, 255, 0);
  6843. border:none;
  6844. border-left:0px;
  6845. border-top:0px;
  6846. border-right:0px;
  6847. border-radius:0px;
  6848. border-bottom-right-radius:0px;
  6849. border-bottom-left-radius:0px;
  6850. -moz-box-shadow:none;
  6851. -webkit-box-shadow:none;
  6852. box-shadow:none;
  6853. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6854. font-weight:400;
  6855. font-style:normal;
  6856. text-align:right;
  6857. }
  6858. #u165101 {
  6859. border-width:0px;
  6860. position:absolute;
  6861. left:1241px;
  6862. top:542px;
  6863. width:57px;
  6864. height:25px;
  6865. display:flex;
  6866. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6867. font-weight:400;
  6868. font-style:normal;
  6869. text-align:right;
  6870. }
  6871. #u165101 .text {
  6872. position:absolute;
  6873. align-self:flex-start;
  6874. padding:0px 0px 0px 0px;
  6875. box-sizing:border-box;
  6876. width:100%;
  6877. }
  6878. #u165101_text {
  6879. border-width:0px;
  6880. white-space:nowrap;
  6881. text-transform:none;
  6882. }
  6883. #u165102_div {
  6884. border-width:0px;
  6885. position:absolute;
  6886. left:0px;
  6887. top:0px;
  6888. width:132px;
  6889. height:24px;
  6890. background:inherit;
  6891. background-color:rgba(255, 255, 255, 0);
  6892. border:none;
  6893. border-left:0px;
  6894. border-top:0px;
  6895. border-right:0px;
  6896. border-radius:0px;
  6897. border-bottom-right-radius:0px;
  6898. border-bottom-left-radius:0px;
  6899. -moz-box-shadow:none;
  6900. -webkit-box-shadow:none;
  6901. box-shadow:none;
  6902. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6903. font-weight:400;
  6904. font-style:normal;
  6905. font-size:10px;
  6906. color:#AAAAAA;
  6907. text-align:right;
  6908. line-height:24px;
  6909. }
  6910. #u165102 {
  6911. border-width:0px;
  6912. position:absolute;
  6913. left:1166px;
  6914. top:567px;
  6915. width:132px;
  6916. height:24px;
  6917. display:flex;
  6918. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6919. font-weight:400;
  6920. font-style:normal;
  6921. font-size:10px;
  6922. color:#AAAAAA;
  6923. text-align:right;
  6924. line-height:24px;
  6925. }
  6926. #u165102 .text {
  6927. position:absolute;
  6928. align-self:flex-start;
  6929. padding:0px 0px 0px 0px;
  6930. box-sizing:border-box;
  6931. width:100%;
  6932. }
  6933. #u165102_text {
  6934. border-width:0px;
  6935. white-space:nowrap;
  6936. text-transform:none;
  6937. }