styles.css 149 KB

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