styles.css 200 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-90px;
  6. width:4090px;
  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. #u17323 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u17324_div {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:1000px;
  33. height:1201px;
  34. background:inherit;
  35. background-color:rgba(242, 242, 242, 1);
  36. box-sizing:border-box;
  37. border-width:1px;
  38. border-style:solid;
  39. border-color:rgba(215, 215, 215, 1);
  40. border-radius:0px;
  41. -moz-box-shadow:none;
  42. -webkit-box-shadow:none;
  43. box-shadow:none;
  44. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  45. font-weight:400;
  46. font-style:normal;
  47. font-size:14px;
  48. color:#AAAAAA;
  49. text-align:center;
  50. line-height:30px;
  51. }
  52. #u17324 {
  53. border-width:0px;
  54. position:absolute;
  55. left:1120px;
  56. top:63px;
  57. width:1000px;
  58. height:1201px;
  59. display:flex;
  60. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  61. font-weight:400;
  62. font-style:normal;
  63. font-size:14px;
  64. color:#AAAAAA;
  65. text-align:center;
  66. line-height:30px;
  67. }
  68. #u17324 .text {
  69. position:absolute;
  70. align-self:center;
  71. padding:5px 10px 5px 10px;
  72. box-sizing:border-box;
  73. width:100%;
  74. }
  75. #u17324_text {
  76. border-width:0px;
  77. word-wrap:break-word;
  78. text-transform:none;
  79. visibility:hidden;
  80. }
  81. #u17325_div {
  82. border-width:0px;
  83. position:absolute;
  84. left:0px;
  85. top:0px;
  86. width:1000px;
  87. height:471px;
  88. background:inherit;
  89. background-color:rgba(255, 255, 255, 1);
  90. box-sizing:border-box;
  91. border-width:1px;
  92. border-style:solid;
  93. border-color:rgba(215, 215, 215, 1);
  94. border-radius:0px;
  95. -moz-box-shadow:none;
  96. -webkit-box-shadow:none;
  97. box-shadow:none;
  98. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  99. font-weight:400;
  100. font-style:normal;
  101. font-size:14px;
  102. color:#AAAAAA;
  103. text-align:center;
  104. line-height:30px;
  105. }
  106. #u17325 {
  107. border-width:0px;
  108. position:absolute;
  109. left:1120px;
  110. top:733px;
  111. width:1000px;
  112. height:471px;
  113. display:flex;
  114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  115. font-weight:400;
  116. font-style:normal;
  117. font-size:14px;
  118. color:#AAAAAA;
  119. text-align:center;
  120. line-height:30px;
  121. }
  122. #u17325 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:5px 10px 5px 10px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u17325_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u17326_div {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:1000px;
  141. height:660px;
  142. background:inherit;
  143. background-color:rgba(255, 255, 255, 1);
  144. box-sizing:border-box;
  145. border-width:1px;
  146. border-style:solid;
  147. border-color:rgba(215, 215, 215, 1);
  148. border-radius:0px;
  149. -moz-box-shadow:none;
  150. -webkit-box-shadow:none;
  151. box-shadow:none;
  152. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  153. font-weight:400;
  154. font-style:normal;
  155. font-size:14px;
  156. color:#AAAAAA;
  157. text-align:center;
  158. line-height:30px;
  159. }
  160. #u17326 {
  161. border-width:0px;
  162. position:absolute;
  163. left:1120px;
  164. top:63px;
  165. width:1000px;
  166. height:660px;
  167. display:flex;
  168. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  169. font-weight:400;
  170. font-style:normal;
  171. font-size:14px;
  172. color:#AAAAAA;
  173. text-align:center;
  174. line-height:30px;
  175. }
  176. #u17326 .text {
  177. position:absolute;
  178. align-self:center;
  179. padding:5px 10px 5px 10px;
  180. box-sizing:border-box;
  181. width:100%;
  182. }
  183. #u17326_text {
  184. border-width:0px;
  185. word-wrap:break-word;
  186. text-transform:none;
  187. visibility:hidden;
  188. }
  189. #u17327_div {
  190. border-width:0px;
  191. position:absolute;
  192. left:0px;
  193. top:0px;
  194. width:47px;
  195. height:35px;
  196. background:inherit;
  197. background-color:rgba(255, 255, 255, 0);
  198. border:none;
  199. border-top:0px;
  200. border-right:0px;
  201. border-bottom:0px;
  202. border-radius:0px;
  203. border-top-left-radius:0px;
  204. border-bottom-left-radius:0px;
  205. -moz-box-shadow:none;
  206. -webkit-box-shadow:none;
  207. box-shadow:none;
  208. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  209. font-weight:500;
  210. font-style:normal;
  211. font-size:18px;
  212. }
  213. #u17327 {
  214. border-width:0px;
  215. position:absolute;
  216. left:1140px;
  217. top:81px;
  218. width:47px;
  219. height:35px;
  220. display:flex;
  221. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  222. font-weight:500;
  223. font-style:normal;
  224. font-size:18px;
  225. }
  226. #u17327 .text {
  227. position:absolute;
  228. align-self:center;
  229. padding:5px 10px 5px 0px;
  230. box-sizing:border-box;
  231. width:100%;
  232. }
  233. #u17327_text {
  234. border-width:0px;
  235. white-space:nowrap;
  236. text-transform:none;
  237. }
  238. #u17328 {
  239. border-width:0px;
  240. position:absolute;
  241. left:0px;
  242. top:0px;
  243. width:0px;
  244. height:0px;
  245. }
  246. #u17329_div {
  247. border-width:0px;
  248. position:absolute;
  249. left:0px;
  250. top:0px;
  251. width:40px;
  252. height:40px;
  253. background:inherit;
  254. background-color:rgba(255, 255, 255, 0);
  255. border:none;
  256. border-top:0px;
  257. border-right:0px;
  258. border-bottom:0px;
  259. border-radius:0px;
  260. border-top-left-radius:0px;
  261. border-bottom-left-radius:0px;
  262. -moz-box-shadow:none;
  263. -webkit-box-shadow:none;
  264. box-shadow:none;
  265. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  266. font-weight:500;
  267. font-style:normal;
  268. font-size:14px;
  269. text-align:center;
  270. }
  271. #u17329 {
  272. border-width:0px;
  273. position:absolute;
  274. left:2080px;
  275. top:63px;
  276. width:40px;
  277. height:40px;
  278. display:flex;
  279. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  280. font-weight:500;
  281. font-style:normal;
  282. font-size:14px;
  283. text-align:center;
  284. }
  285. #u17329 .text {
  286. position:absolute;
  287. align-self:center;
  288. padding:5px 10px 5px 0px;
  289. box-sizing:border-box;
  290. width:100%;
  291. }
  292. #u17329_text {
  293. border-width:0px;
  294. word-wrap:break-word;
  295. text-transform:none;
  296. }
  297. #u17330_img {
  298. border-width:0px;
  299. position:absolute;
  300. left:0px;
  301. top:0px;
  302. width:13px;
  303. height:13px;
  304. }
  305. #u17330 {
  306. border-width:0px;
  307. position:absolute;
  308. left:2068px;
  309. top:79px;
  310. width:13px;
  311. height:13px;
  312. display:flex;
  313. font-size:14px;
  314. }
  315. #u17330 .text {
  316. position:absolute;
  317. align-self:center;
  318. padding:2px 2px 2px 2px;
  319. box-sizing:border-box;
  320. width:100%;
  321. }
  322. #u17330_text {
  323. border-width:0px;
  324. word-wrap:break-word;
  325. text-transform:none;
  326. visibility:hidden;
  327. }
  328. #u17331_div {
  329. border-width:0px;
  330. position:absolute;
  331. left:0px;
  332. top:0px;
  333. width:251px;
  334. height:43px;
  335. background:inherit;
  336. background-color:rgba(255, 255, 255, 0);
  337. border:none;
  338. border-top:0px;
  339. border-right:0px;
  340. border-bottom:0px;
  341. border-radius:0px;
  342. border-top-left-radius:0px;
  343. border-bottom-left-radius:0px;
  344. -moz-box-shadow:none;
  345. -webkit-box-shadow:none;
  346. box-shadow:none;
  347. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  348. font-weight:500;
  349. font-style:normal;
  350. font-size:24px;
  351. }
  352. #u17331 {
  353. border-width:0px;
  354. position:absolute;
  355. left:1150px;
  356. top:132px;
  357. width:251px;
  358. height:43px;
  359. display:flex;
  360. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  361. font-weight:500;
  362. font-style:normal;
  363. font-size:24px;
  364. }
  365. #u17331 .text {
  366. position:absolute;
  367. align-self:center;
  368. padding:5px 10px 5px 0px;
  369. box-sizing:border-box;
  370. width:100%;
  371. }
  372. #u17331_text {
  373. border-width:0px;
  374. white-space:nowrap;
  375. text-transform:none;
  376. }
  377. #u17332_div {
  378. border-width:0px;
  379. position:absolute;
  380. left:0px;
  381. top:0px;
  382. width:80px;
  383. height:30px;
  384. background:inherit;
  385. background-color:rgba(255, 255, 255, 0);
  386. border:none;
  387. border-left:0px;
  388. border-top:0px;
  389. border-right:0px;
  390. border-radius:0px;
  391. border-bottom-right-radius:0px;
  392. border-bottom-left-radius:0px;
  393. -moz-box-shadow:none;
  394. -webkit-box-shadow:none;
  395. box-shadow:none;
  396. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  397. font-weight:400;
  398. font-style:normal;
  399. font-size:14px;
  400. color:#7F7F7F;
  401. line-height:30px;
  402. }
  403. #u17332 {
  404. border-width:0px;
  405. position:absolute;
  406. left:1150px;
  407. top:669px;
  408. width:80px;
  409. height:30px;
  410. display:flex;
  411. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  412. font-weight:400;
  413. font-style:normal;
  414. font-size:14px;
  415. color:#7F7F7F;
  416. line-height:30px;
  417. }
  418. #u17332 .text {
  419. position:absolute;
  420. align-self:flex-start;
  421. padding:0px 0px 0px 0px;
  422. box-sizing:border-box;
  423. width:100%;
  424. }
  425. #u17332_text {
  426. border-width:0px;
  427. word-wrap:break-word;
  428. text-transform:none;
  429. }
  430. #u17333_div {
  431. border-width:0px;
  432. position:absolute;
  433. left:0px;
  434. top:0px;
  435. width:121px;
  436. height:30px;
  437. background:inherit;
  438. background-color:rgba(255, 255, 255, 0);
  439. border:none;
  440. border-left:0px;
  441. border-top:0px;
  442. border-right:0px;
  443. border-radius:0px;
  444. border-bottom-right-radius:0px;
  445. border-bottom-left-radius:0px;
  446. -moz-box-shadow:none;
  447. -webkit-box-shadow:none;
  448. box-shadow:none;
  449. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  450. font-weight:400;
  451. font-style:normal;
  452. font-size:14px;
  453. line-height:30px;
  454. }
  455. #u17333 {
  456. border-width:0px;
  457. position:absolute;
  458. left:1230px;
  459. top:669px;
  460. width:121px;
  461. height:30px;
  462. display:flex;
  463. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  464. font-weight:400;
  465. font-style:normal;
  466. font-size:14px;
  467. line-height:30px;
  468. }
  469. #u17333 .text {
  470. position:absolute;
  471. align-self:flex-start;
  472. padding:0px 0px 0px 0px;
  473. box-sizing:border-box;
  474. width:100%;
  475. }
  476. #u17333_text {
  477. border-width:0px;
  478. white-space:nowrap;
  479. text-transform:none;
  480. }
  481. #u17334_div {
  482. border-width:0px;
  483. position:absolute;
  484. left:0px;
  485. top:0px;
  486. width:80px;
  487. height:30px;
  488. background:inherit;
  489. background-color:rgba(255, 255, 255, 0);
  490. border:none;
  491. border-left:0px;
  492. border-top:0px;
  493. border-right:0px;
  494. border-radius:0px;
  495. border-bottom-right-radius:0px;
  496. border-bottom-left-radius:0px;
  497. -moz-box-shadow:none;
  498. -webkit-box-shadow:none;
  499. box-shadow:none;
  500. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  501. font-weight:400;
  502. font-style:normal;
  503. font-size:14px;
  504. color:#7F7F7F;
  505. line-height:30px;
  506. }
  507. #u17334 {
  508. border-width:0px;
  509. position:absolute;
  510. left:1589px;
  511. top:669px;
  512. width:80px;
  513. height:30px;
  514. display:flex;
  515. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  516. font-weight:400;
  517. font-style:normal;
  518. font-size:14px;
  519. color:#7F7F7F;
  520. line-height:30px;
  521. }
  522. #u17334 .text {
  523. position:absolute;
  524. align-self:flex-start;
  525. padding:0px 0px 0px 0px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u17334_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u17335_div {
  535. border-width:0px;
  536. position:absolute;
  537. left:0px;
  538. top:0px;
  539. width:141px;
  540. height:30px;
  541. background:inherit;
  542. background-color:rgba(255, 255, 255, 0);
  543. border:none;
  544. border-left:0px;
  545. border-top:0px;
  546. border-right:0px;
  547. border-radius:0px;
  548. border-bottom-right-radius:0px;
  549. border-bottom-left-radius:0px;
  550. -moz-box-shadow:none;
  551. -webkit-box-shadow:none;
  552. box-shadow:none;
  553. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  554. font-weight:400;
  555. font-style:normal;
  556. font-size:14px;
  557. line-height:30px;
  558. }
  559. #u17335 {
  560. border-width:0px;
  561. position:absolute;
  562. left:1669px;
  563. top:669px;
  564. width:141px;
  565. height:30px;
  566. display:flex;
  567. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  568. font-weight:400;
  569. font-style:normal;
  570. font-size:14px;
  571. line-height:30px;
  572. }
  573. #u17335 .text {
  574. position:absolute;
  575. align-self:flex-start;
  576. padding:0px 0px 0px 0px;
  577. box-sizing:border-box;
  578. width:100%;
  579. }
  580. #u17335_text {
  581. border-width:0px;
  582. white-space:nowrap;
  583. text-transform:none;
  584. }
  585. #u17336 {
  586. border-width:0px;
  587. position:absolute;
  588. left:0px;
  589. top:0px;
  590. width:0px;
  591. height:0px;
  592. }
  593. #u17337_div {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:925px;
  599. height:376px;
  600. background:inherit;
  601. background-color:rgba(242, 242, 242, 1);
  602. box-sizing:border-box;
  603. border-width:1px;
  604. border-style:solid;
  605. border-color:rgba(215, 215, 215, 1);
  606. border-radius:0px;
  607. -moz-box-shadow:none;
  608. -webkit-box-shadow:none;
  609. box-shadow:none;
  610. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  611. font-weight:400;
  612. font-style:normal;
  613. font-size:14px;
  614. color:#AAAAAA;
  615. text-align:center;
  616. line-height:30px;
  617. }
  618. #u17337 {
  619. border-width:0px;
  620. position:absolute;
  621. left:1150px;
  622. top:275px;
  623. width:925px;
  624. height:376px;
  625. display:flex;
  626. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  627. font-weight:400;
  628. font-style:normal;
  629. font-size:14px;
  630. color:#AAAAAA;
  631. text-align:center;
  632. line-height:30px;
  633. }
  634. #u17337 .text {
  635. position:absolute;
  636. align-self:center;
  637. padding:5px 10px 5px 10px;
  638. box-sizing:border-box;
  639. width:100%;
  640. }
  641. #u17337_text {
  642. border-width:0px;
  643. word-wrap:break-word;
  644. text-transform:none;
  645. visibility:hidden;
  646. }
  647. #u17338_div {
  648. border-width:0px;
  649. position:absolute;
  650. left:0px;
  651. top:0px;
  652. width:80px;
  653. height:30px;
  654. background:inherit;
  655. background-color:rgba(255, 255, 255, 0);
  656. border:none;
  657. border-left:0px;
  658. border-top:0px;
  659. border-right:0px;
  660. border-radius:0px;
  661. border-bottom-right-radius:0px;
  662. border-bottom-left-radius:0px;
  663. -moz-box-shadow:none;
  664. -webkit-box-shadow:none;
  665. box-shadow:none;
  666. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  667. font-weight:400;
  668. font-style:normal;
  669. font-size:14px;
  670. color:#7F7F7F;
  671. line-height:30px;
  672. }
  673. #u17338 {
  674. border-width:0px;
  675. position:absolute;
  676. left:1175px;
  677. top:295px;
  678. width:80px;
  679. height:30px;
  680. display:flex;
  681. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  682. font-weight:400;
  683. font-style:normal;
  684. font-size:14px;
  685. color:#7F7F7F;
  686. line-height:30px;
  687. }
  688. #u17338 .text {
  689. position:absolute;
  690. align-self:flex-start;
  691. padding:0px 0px 0px 0px;
  692. box-sizing:border-box;
  693. width:100%;
  694. }
  695. #u17338_text {
  696. border-width:0px;
  697. word-wrap:break-word;
  698. text-transform:none;
  699. }
  700. #u17339_div {
  701. border-width:0px;
  702. position:absolute;
  703. left:0px;
  704. top:0px;
  705. width:57px;
  706. height:30px;
  707. background:inherit;
  708. background-color:rgba(255, 255, 255, 0);
  709. border:none;
  710. border-left:0px;
  711. border-top:0px;
  712. border-right:0px;
  713. border-radius:0px;
  714. border-bottom-right-radius:0px;
  715. border-bottom-left-radius:0px;
  716. -moz-box-shadow:none;
  717. -webkit-box-shadow:none;
  718. box-shadow:none;
  719. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  720. font-weight:400;
  721. font-style:normal;
  722. font-size:14px;
  723. line-height:30px;
  724. }
  725. #u17339 {
  726. border-width:0px;
  727. position:absolute;
  728. left:1255px;
  729. top:295px;
  730. width:57px;
  731. height:30px;
  732. display:flex;
  733. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  734. font-weight:400;
  735. font-style:normal;
  736. font-size:14px;
  737. line-height:30px;
  738. }
  739. #u17339 .text {
  740. position:absolute;
  741. align-self:flex-start;
  742. padding:0px 0px 0px 0px;
  743. box-sizing:border-box;
  744. width:100%;
  745. }
  746. #u17339_text {
  747. border-width:0px;
  748. white-space:nowrap;
  749. text-transform:none;
  750. }
  751. #u17340_div {
  752. border-width:0px;
  753. position:absolute;
  754. left:0px;
  755. top:0px;
  756. width:80px;
  757. height:30px;
  758. background:inherit;
  759. background-color:rgba(255, 255, 255, 0);
  760. border:none;
  761. border-left:0px;
  762. border-top:0px;
  763. border-right:0px;
  764. border-radius:0px;
  765. border-bottom-right-radius:0px;
  766. border-bottom-left-radius:0px;
  767. -moz-box-shadow:none;
  768. -webkit-box-shadow:none;
  769. box-shadow:none;
  770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  771. font-weight:400;
  772. font-style:normal;
  773. font-size:14px;
  774. color:#7F7F7F;
  775. line-height:30px;
  776. }
  777. #u17340 {
  778. border-width:0px;
  779. position:absolute;
  780. left:1175px;
  781. top:335px;
  782. width:80px;
  783. height:30px;
  784. display:flex;
  785. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  786. font-weight:400;
  787. font-style:normal;
  788. font-size:14px;
  789. color:#7F7F7F;
  790. line-height:30px;
  791. }
  792. #u17340 .text {
  793. position:absolute;
  794. align-self:flex-start;
  795. padding:0px 0px 0px 0px;
  796. box-sizing:border-box;
  797. width:100%;
  798. }
  799. #u17340_text {
  800. border-width:0px;
  801. word-wrap:break-word;
  802. text-transform:none;
  803. }
  804. #u17341_div {
  805. border-width:0px;
  806. position:absolute;
  807. left:0px;
  808. top:0px;
  809. width:57px;
  810. height:30px;
  811. background:inherit;
  812. background-color:rgba(255, 255, 255, 0);
  813. border:none;
  814. border-left:0px;
  815. border-top:0px;
  816. border-right:0px;
  817. border-radius:0px;
  818. border-bottom-right-radius:0px;
  819. border-bottom-left-radius:0px;
  820. -moz-box-shadow:none;
  821. -webkit-box-shadow:none;
  822. box-shadow:none;
  823. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  824. font-weight:400;
  825. font-style:normal;
  826. font-size:14px;
  827. line-height:30px;
  828. }
  829. #u17341 {
  830. border-width:0px;
  831. position:absolute;
  832. left:1255px;
  833. top:335px;
  834. width:57px;
  835. height:30px;
  836. display:flex;
  837. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  838. font-weight:400;
  839. font-style:normal;
  840. font-size:14px;
  841. line-height:30px;
  842. }
  843. #u17341 .text {
  844. position:absolute;
  845. align-self:flex-start;
  846. padding:0px 0px 0px 0px;
  847. box-sizing:border-box;
  848. width:100%;
  849. }
  850. #u17341_text {
  851. border-width:0px;
  852. white-space:nowrap;
  853. text-transform:none;
  854. }
  855. #u17342_div {
  856. border-width:0px;
  857. position:absolute;
  858. left:0px;
  859. top:0px;
  860. width:80px;
  861. height:30px;
  862. background:inherit;
  863. background-color:rgba(255, 255, 255, 0);
  864. border:none;
  865. border-left:0px;
  866. border-top:0px;
  867. border-right:0px;
  868. border-radius:0px;
  869. border-bottom-right-radius:0px;
  870. border-bottom-left-radius:0px;
  871. -moz-box-shadow:none;
  872. -webkit-box-shadow:none;
  873. box-shadow:none;
  874. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  875. font-weight:400;
  876. font-style:normal;
  877. font-size:14px;
  878. color:#7F7F7F;
  879. line-height:30px;
  880. }
  881. #u17342 {
  882. border-width:0px;
  883. position:absolute;
  884. left:1175px;
  885. top:375px;
  886. width:80px;
  887. height:30px;
  888. display:flex;
  889. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  890. font-weight:400;
  891. font-style:normal;
  892. font-size:14px;
  893. color:#7F7F7F;
  894. line-height:30px;
  895. }
  896. #u17342 .text {
  897. position:absolute;
  898. align-self:flex-start;
  899. padding:0px 0px 0px 0px;
  900. box-sizing:border-box;
  901. width:100%;
  902. }
  903. #u17342_text {
  904. border-width:0px;
  905. word-wrap:break-word;
  906. text-transform:none;
  907. }
  908. #u17343_div {
  909. border-width:0px;
  910. position:absolute;
  911. left:0px;
  912. top:0px;
  913. width:29px;
  914. height:30px;
  915. background:inherit;
  916. background-color:rgba(255, 255, 255, 0);
  917. border:none;
  918. border-left:0px;
  919. border-top:0px;
  920. border-right:0px;
  921. border-radius:0px;
  922. border-bottom-right-radius:0px;
  923. border-bottom-left-radius:0px;
  924. -moz-box-shadow:none;
  925. -webkit-box-shadow:none;
  926. box-shadow:none;
  927. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  928. font-weight:400;
  929. font-style:normal;
  930. font-size:14px;
  931. line-height:30px;
  932. }
  933. #u17343 {
  934. border-width:0px;
  935. position:absolute;
  936. left:1255px;
  937. top:375px;
  938. width:29px;
  939. height:30px;
  940. display:flex;
  941. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  942. font-weight:400;
  943. font-style:normal;
  944. font-size:14px;
  945. line-height:30px;
  946. }
  947. #u17343 .text {
  948. position:absolute;
  949. align-self:flex-start;
  950. padding:0px 0px 0px 0px;
  951. box-sizing:border-box;
  952. width:100%;
  953. }
  954. #u17343_text {
  955. border-width:0px;
  956. white-space:nowrap;
  957. text-transform:none;
  958. }
  959. #u17344_div {
  960. border-width:0px;
  961. position:absolute;
  962. left:0px;
  963. top:0px;
  964. width:80px;
  965. height:30px;
  966. background:inherit;
  967. background-color:rgba(255, 255, 255, 0);
  968. border:none;
  969. border-left:0px;
  970. border-top:0px;
  971. border-right:0px;
  972. border-radius:0px;
  973. border-bottom-right-radius:0px;
  974. border-bottom-left-radius:0px;
  975. -moz-box-shadow:none;
  976. -webkit-box-shadow:none;
  977. box-shadow:none;
  978. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  979. font-weight:400;
  980. font-style:normal;
  981. font-size:14px;
  982. color:#7F7F7F;
  983. line-height:30px;
  984. }
  985. #u17344 {
  986. border-width:0px;
  987. position:absolute;
  988. left:1589px;
  989. top:335px;
  990. width:80px;
  991. height:30px;
  992. display:flex;
  993. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  994. font-weight:400;
  995. font-style:normal;
  996. font-size:14px;
  997. color:#7F7F7F;
  998. line-height:30px;
  999. }
  1000. #u17344 .text {
  1001. position:absolute;
  1002. align-self:flex-start;
  1003. padding:0px 0px 0px 0px;
  1004. box-sizing:border-box;
  1005. width:100%;
  1006. }
  1007. #u17344_text {
  1008. border-width:0px;
  1009. word-wrap:break-word;
  1010. text-transform:none;
  1011. }
  1012. #u17345_div {
  1013. border-width:0px;
  1014. position:absolute;
  1015. left:0px;
  1016. top:0px;
  1017. width:113px;
  1018. height:30px;
  1019. background:inherit;
  1020. background-color:rgba(255, 255, 255, 0);
  1021. border:none;
  1022. border-left:0px;
  1023. border-top:0px;
  1024. border-right:0px;
  1025. border-radius:0px;
  1026. border-bottom-right-radius:0px;
  1027. border-bottom-left-radius:0px;
  1028. -moz-box-shadow:none;
  1029. -webkit-box-shadow:none;
  1030. box-shadow:none;
  1031. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1032. font-weight:400;
  1033. font-style:normal;
  1034. font-size:14px;
  1035. line-height:30px;
  1036. }
  1037. #u17345 {
  1038. border-width:0px;
  1039. position:absolute;
  1040. left:1669px;
  1041. top:335px;
  1042. width:113px;
  1043. height:30px;
  1044. display:flex;
  1045. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1046. font-weight:400;
  1047. font-style:normal;
  1048. font-size:14px;
  1049. line-height:30px;
  1050. }
  1051. #u17345 .text {
  1052. position:absolute;
  1053. align-self:flex-start;
  1054. padding:0px 0px 0px 0px;
  1055. box-sizing:border-box;
  1056. width:100%;
  1057. }
  1058. #u17345_text {
  1059. border-width:0px;
  1060. white-space:nowrap;
  1061. text-transform:none;
  1062. }
  1063. #u17346_div {
  1064. border-width:0px;
  1065. position:absolute;
  1066. left:0px;
  1067. top:0px;
  1068. width:80px;
  1069. height:30px;
  1070. background:inherit;
  1071. background-color:rgba(255, 255, 255, 0);
  1072. border:none;
  1073. border-left:0px;
  1074. border-top:0px;
  1075. border-right:0px;
  1076. border-radius:0px;
  1077. border-bottom-right-radius:0px;
  1078. border-bottom-left-radius:0px;
  1079. -moz-box-shadow:none;
  1080. -webkit-box-shadow:none;
  1081. box-shadow:none;
  1082. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1083. font-weight:400;
  1084. font-style:normal;
  1085. font-size:14px;
  1086. color:#7F7F7F;
  1087. line-height:30px;
  1088. }
  1089. #u17346 {
  1090. border-width:0px;
  1091. position:absolute;
  1092. left:1589px;
  1093. top:375px;
  1094. width:80px;
  1095. height:30px;
  1096. display:flex;
  1097. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1098. font-weight:400;
  1099. font-style:normal;
  1100. font-size:14px;
  1101. color:#7F7F7F;
  1102. line-height:30px;
  1103. }
  1104. #u17346 .text {
  1105. position:absolute;
  1106. align-self:flex-start;
  1107. padding:0px 0px 0px 0px;
  1108. box-sizing:border-box;
  1109. width:100%;
  1110. }
  1111. #u17346_text {
  1112. border-width:0px;
  1113. word-wrap:break-word;
  1114. text-transform:none;
  1115. }
  1116. #u17347_div {
  1117. border-width:0px;
  1118. position:absolute;
  1119. left:0px;
  1120. top:0px;
  1121. width:71px;
  1122. height:30px;
  1123. background:inherit;
  1124. background-color:rgba(255, 255, 255, 0);
  1125. border:none;
  1126. border-left:0px;
  1127. border-top:0px;
  1128. border-right:0px;
  1129. border-radius:0px;
  1130. border-bottom-right-radius:0px;
  1131. border-bottom-left-radius:0px;
  1132. -moz-box-shadow:none;
  1133. -webkit-box-shadow:none;
  1134. box-shadow:none;
  1135. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1136. font-weight:400;
  1137. font-style:normal;
  1138. font-size:14px;
  1139. line-height:30px;
  1140. }
  1141. #u17347 {
  1142. border-width:0px;
  1143. position:absolute;
  1144. left:1669px;
  1145. top:375px;
  1146. width:71px;
  1147. height:30px;
  1148. display:flex;
  1149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1150. font-weight:400;
  1151. font-style:normal;
  1152. font-size:14px;
  1153. line-height:30px;
  1154. }
  1155. #u17347 .text {
  1156. position:absolute;
  1157. align-self:flex-start;
  1158. padding:0px 0px 0px 0px;
  1159. box-sizing:border-box;
  1160. width:100%;
  1161. }
  1162. #u17347_text {
  1163. border-width:0px;
  1164. white-space:nowrap;
  1165. text-transform:none;
  1166. }
  1167. #u17348_div {
  1168. border-width:0px;
  1169. position:absolute;
  1170. left:0px;
  1171. top:0px;
  1172. width:80px;
  1173. height:30px;
  1174. background:inherit;
  1175. background-color:rgba(255, 255, 255, 0);
  1176. border:none;
  1177. border-left:0px;
  1178. border-top:0px;
  1179. border-right:0px;
  1180. border-radius:0px;
  1181. border-bottom-right-radius:0px;
  1182. border-bottom-left-radius:0px;
  1183. -moz-box-shadow:none;
  1184. -webkit-box-shadow:none;
  1185. box-shadow:none;
  1186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1187. font-weight:400;
  1188. font-style:normal;
  1189. font-size:14px;
  1190. color:#7F7F7F;
  1191. line-height:30px;
  1192. }
  1193. #u17348 {
  1194. border-width:0px;
  1195. position:absolute;
  1196. left:1175px;
  1197. top:455px;
  1198. width:80px;
  1199. height:30px;
  1200. display:flex;
  1201. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1202. font-weight:400;
  1203. font-style:normal;
  1204. font-size:14px;
  1205. color:#7F7F7F;
  1206. line-height:30px;
  1207. }
  1208. #u17348 .text {
  1209. position:absolute;
  1210. align-self:flex-start;
  1211. padding:0px 0px 0px 0px;
  1212. box-sizing:border-box;
  1213. width:100%;
  1214. }
  1215. #u17348_text {
  1216. border-width:0px;
  1217. word-wrap:break-word;
  1218. text-transform:none;
  1219. }
  1220. #u17349_div {
  1221. border-width:0px;
  1222. position:absolute;
  1223. left:0px;
  1224. top:0px;
  1225. width:81px;
  1226. height:30px;
  1227. background:inherit;
  1228. background-color:rgba(255, 255, 255, 0);
  1229. border:none;
  1230. border-left:0px;
  1231. border-top:0px;
  1232. border-right:0px;
  1233. border-radius:0px;
  1234. border-bottom-right-radius:0px;
  1235. border-bottom-left-radius:0px;
  1236. -moz-box-shadow:none;
  1237. -webkit-box-shadow:none;
  1238. box-shadow:none;
  1239. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1240. font-weight:400;
  1241. font-style:normal;
  1242. font-size:14px;
  1243. line-height:30px;
  1244. }
  1245. #u17349 {
  1246. border-width:0px;
  1247. position:absolute;
  1248. left:1255px;
  1249. top:455px;
  1250. width:81px;
  1251. height:30px;
  1252. display:flex;
  1253. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1254. font-weight:400;
  1255. font-style:normal;
  1256. font-size:14px;
  1257. line-height:30px;
  1258. }
  1259. #u17349 .text {
  1260. position:absolute;
  1261. align-self:flex-start;
  1262. padding:0px 0px 0px 0px;
  1263. box-sizing:border-box;
  1264. width:100%;
  1265. }
  1266. #u17349_text {
  1267. border-width:0px;
  1268. white-space:nowrap;
  1269. text-transform:none;
  1270. }
  1271. #u17350_div {
  1272. border-width:0px;
  1273. position:absolute;
  1274. left:0px;
  1275. top:0px;
  1276. width:80px;
  1277. height:30px;
  1278. background:inherit;
  1279. background-color:rgba(255, 255, 255, 0);
  1280. border:none;
  1281. border-left:0px;
  1282. border-top:0px;
  1283. border-right:0px;
  1284. border-radius:0px;
  1285. border-bottom-right-radius:0px;
  1286. border-bottom-left-radius:0px;
  1287. -moz-box-shadow:none;
  1288. -webkit-box-shadow:none;
  1289. box-shadow:none;
  1290. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1291. font-weight:400;
  1292. font-style:normal;
  1293. font-size:14px;
  1294. color:#7F7F7F;
  1295. line-height:30px;
  1296. }
  1297. #u17350 {
  1298. border-width:0px;
  1299. position:absolute;
  1300. left:1175px;
  1301. top:415px;
  1302. width:80px;
  1303. height:30px;
  1304. display:flex;
  1305. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1306. font-weight:400;
  1307. font-style:normal;
  1308. font-size:14px;
  1309. color:#7F7F7F;
  1310. line-height:30px;
  1311. }
  1312. #u17350 .text {
  1313. position:absolute;
  1314. align-self:flex-start;
  1315. padding:0px 0px 0px 0px;
  1316. box-sizing:border-box;
  1317. width:100%;
  1318. }
  1319. #u17350_text {
  1320. border-width:0px;
  1321. word-wrap:break-word;
  1322. text-transform:none;
  1323. }
  1324. #u17351_div {
  1325. border-width:0px;
  1326. position:absolute;
  1327. left:0px;
  1328. top:0px;
  1329. width:29px;
  1330. height:30px;
  1331. background:inherit;
  1332. background-color:rgba(255, 255, 255, 0);
  1333. border:none;
  1334. border-left:0px;
  1335. border-top:0px;
  1336. border-right:0px;
  1337. border-radius:0px;
  1338. border-bottom-right-radius:0px;
  1339. border-bottom-left-radius:0px;
  1340. -moz-box-shadow:none;
  1341. -webkit-box-shadow:none;
  1342. box-shadow:none;
  1343. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1344. font-weight:400;
  1345. font-style:normal;
  1346. font-size:14px;
  1347. line-height:30px;
  1348. }
  1349. #u17351 {
  1350. border-width:0px;
  1351. position:absolute;
  1352. left:1255px;
  1353. top:415px;
  1354. width:29px;
  1355. height:30px;
  1356. display:flex;
  1357. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1358. font-weight:400;
  1359. font-style:normal;
  1360. font-size:14px;
  1361. line-height:30px;
  1362. }
  1363. #u17351 .text {
  1364. position:absolute;
  1365. align-self:flex-start;
  1366. padding:0px 0px 0px 0px;
  1367. box-sizing:border-box;
  1368. width:100%;
  1369. }
  1370. #u17351_text {
  1371. border-width:0px;
  1372. white-space:nowrap;
  1373. text-transform:none;
  1374. }
  1375. #u17352_div {
  1376. border-width:0px;
  1377. position:absolute;
  1378. left:0px;
  1379. top:0px;
  1380. width:80px;
  1381. height:30px;
  1382. background:inherit;
  1383. background-color:rgba(255, 255, 255, 0);
  1384. border:none;
  1385. border-left:0px;
  1386. border-top:0px;
  1387. border-right:0px;
  1388. border-radius:0px;
  1389. border-bottom-right-radius:0px;
  1390. border-bottom-left-radius:0px;
  1391. -moz-box-shadow:none;
  1392. -webkit-box-shadow:none;
  1393. box-shadow:none;
  1394. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1395. font-weight:400;
  1396. font-style:normal;
  1397. font-size:14px;
  1398. color:#7F7F7F;
  1399. line-height:30px;
  1400. }
  1401. #u17352 {
  1402. border-width:0px;
  1403. position:absolute;
  1404. left:1589px;
  1405. top:415px;
  1406. width:80px;
  1407. height:30px;
  1408. display:flex;
  1409. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1410. font-weight:400;
  1411. font-style:normal;
  1412. font-size:14px;
  1413. color:#7F7F7F;
  1414. line-height:30px;
  1415. }
  1416. #u17352 .text {
  1417. position:absolute;
  1418. align-self:flex-start;
  1419. padding:0px 0px 0px 0px;
  1420. box-sizing:border-box;
  1421. width:100%;
  1422. }
  1423. #u17352_text {
  1424. border-width:0px;
  1425. word-wrap:break-word;
  1426. text-transform:none;
  1427. }
  1428. #u17353_div {
  1429. border-width:0px;
  1430. position:absolute;
  1431. left:0px;
  1432. top:0px;
  1433. width:82px;
  1434. height:30px;
  1435. background:inherit;
  1436. background-color:rgba(255, 255, 255, 0);
  1437. border:none;
  1438. border-left:0px;
  1439. border-top:0px;
  1440. border-right:0px;
  1441. border-radius:0px;
  1442. border-bottom-right-radius:0px;
  1443. border-bottom-left-radius:0px;
  1444. -moz-box-shadow:none;
  1445. -webkit-box-shadow:none;
  1446. box-shadow:none;
  1447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1448. font-weight:400;
  1449. font-style:normal;
  1450. font-size:14px;
  1451. line-height:30px;
  1452. }
  1453. #u17353 {
  1454. border-width:0px;
  1455. position:absolute;
  1456. left:1669px;
  1457. top:415px;
  1458. width:82px;
  1459. height:30px;
  1460. display:flex;
  1461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1462. font-weight:400;
  1463. font-style:normal;
  1464. font-size:14px;
  1465. line-height:30px;
  1466. }
  1467. #u17353 .text {
  1468. position:absolute;
  1469. align-self:flex-start;
  1470. padding:0px 0px 0px 0px;
  1471. box-sizing:border-box;
  1472. width:100%;
  1473. }
  1474. #u17353_text {
  1475. border-width:0px;
  1476. white-space:nowrap;
  1477. text-transform:none;
  1478. }
  1479. #u17354_div {
  1480. border-width:0px;
  1481. position:absolute;
  1482. left:0px;
  1483. top:0px;
  1484. width:80px;
  1485. height:30px;
  1486. background:inherit;
  1487. background-color:rgba(255, 255, 255, 0);
  1488. border:none;
  1489. border-left:0px;
  1490. border-top:0px;
  1491. border-right:0px;
  1492. border-radius:0px;
  1493. border-bottom-right-radius:0px;
  1494. border-bottom-left-radius:0px;
  1495. -moz-box-shadow:none;
  1496. -webkit-box-shadow:none;
  1497. box-shadow:none;
  1498. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1499. font-weight:400;
  1500. font-style:normal;
  1501. font-size:14px;
  1502. color:#7F7F7F;
  1503. line-height:30px;
  1504. }
  1505. #u17354 {
  1506. border-width:0px;
  1507. position:absolute;
  1508. left:1589px;
  1509. top:455px;
  1510. width:80px;
  1511. height:30px;
  1512. display:flex;
  1513. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1514. font-weight:400;
  1515. font-style:normal;
  1516. font-size:14px;
  1517. color:#7F7F7F;
  1518. line-height:30px;
  1519. }
  1520. #u17354 .text {
  1521. position:absolute;
  1522. align-self:flex-start;
  1523. padding:0px 0px 0px 0px;
  1524. box-sizing:border-box;
  1525. width:100%;
  1526. }
  1527. #u17354_text {
  1528. border-width:0px;
  1529. word-wrap:break-word;
  1530. text-transform:none;
  1531. }
  1532. #u17355_div {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:0px;
  1536. top:0px;
  1537. width:113px;
  1538. height:30px;
  1539. background:inherit;
  1540. background-color:rgba(255, 255, 255, 0);
  1541. border:none;
  1542. border-left:0px;
  1543. border-top:0px;
  1544. border-right:0px;
  1545. border-radius:0px;
  1546. border-bottom-right-radius:0px;
  1547. border-bottom-left-radius:0px;
  1548. -moz-box-shadow:none;
  1549. -webkit-box-shadow:none;
  1550. box-shadow:none;
  1551. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1552. font-weight:400;
  1553. font-style:normal;
  1554. font-size:14px;
  1555. line-height:30px;
  1556. }
  1557. #u17355 {
  1558. border-width:0px;
  1559. position:absolute;
  1560. left:1669px;
  1561. top:455px;
  1562. width:113px;
  1563. height:30px;
  1564. display:flex;
  1565. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1566. font-weight:400;
  1567. font-style:normal;
  1568. font-size:14px;
  1569. line-height:30px;
  1570. }
  1571. #u17355 .text {
  1572. position:absolute;
  1573. align-self:flex-start;
  1574. padding:0px 0px 0px 0px;
  1575. box-sizing:border-box;
  1576. width:100%;
  1577. }
  1578. #u17355_text {
  1579. border-width:0px;
  1580. white-space:nowrap;
  1581. text-transform:none;
  1582. }
  1583. #u17356_div {
  1584. border-width:0px;
  1585. position:absolute;
  1586. left:0px;
  1587. top:0px;
  1588. width:80px;
  1589. height:30px;
  1590. background:inherit;
  1591. background-color:rgba(255, 255, 255, 0);
  1592. border:none;
  1593. border-left:0px;
  1594. border-top:0px;
  1595. border-right:0px;
  1596. border-radius:0px;
  1597. border-bottom-right-radius:0px;
  1598. border-bottom-left-radius:0px;
  1599. -moz-box-shadow:none;
  1600. -webkit-box-shadow:none;
  1601. box-shadow:none;
  1602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1603. font-weight:400;
  1604. font-style:normal;
  1605. font-size:14px;
  1606. color:#7F7F7F;
  1607. line-height:30px;
  1608. }
  1609. #u17356 {
  1610. border-width:0px;
  1611. position:absolute;
  1612. left:1589px;
  1613. top:295px;
  1614. width:80px;
  1615. height:30px;
  1616. display:flex;
  1617. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1618. font-weight:400;
  1619. font-style:normal;
  1620. font-size:14px;
  1621. color:#7F7F7F;
  1622. line-height:30px;
  1623. }
  1624. #u17356 .text {
  1625. position:absolute;
  1626. align-self:flex-start;
  1627. padding:0px 0px 0px 0px;
  1628. box-sizing:border-box;
  1629. width:100%;
  1630. }
  1631. #u17356_text {
  1632. border-width:0px;
  1633. word-wrap:break-word;
  1634. text-transform:none;
  1635. }
  1636. #u17357_div {
  1637. border-width:0px;
  1638. position:absolute;
  1639. left:0px;
  1640. top:0px;
  1641. width:141px;
  1642. height:30px;
  1643. background:inherit;
  1644. background-color:rgba(255, 255, 255, 0);
  1645. border:none;
  1646. border-left:0px;
  1647. border-top:0px;
  1648. border-right:0px;
  1649. border-radius:0px;
  1650. border-bottom-right-radius:0px;
  1651. border-bottom-left-radius:0px;
  1652. -moz-box-shadow:none;
  1653. -webkit-box-shadow:none;
  1654. box-shadow:none;
  1655. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1656. font-weight:400;
  1657. font-style:normal;
  1658. font-size:14px;
  1659. line-height:30px;
  1660. }
  1661. #u17357 {
  1662. border-width:0px;
  1663. position:absolute;
  1664. left:1669px;
  1665. top:295px;
  1666. width:141px;
  1667. height:30px;
  1668. display:flex;
  1669. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1670. font-weight:400;
  1671. font-style:normal;
  1672. font-size:14px;
  1673. line-height:30px;
  1674. }
  1675. #u17357 .text {
  1676. position:absolute;
  1677. align-self:flex-start;
  1678. padding:0px 0px 0px 0px;
  1679. box-sizing:border-box;
  1680. width:100%;
  1681. }
  1682. #u17357_text {
  1683. border-width:0px;
  1684. white-space:nowrap;
  1685. text-transform:none;
  1686. }
  1687. #u17358_div {
  1688. border-width:0px;
  1689. position:absolute;
  1690. left:0px;
  1691. top:0px;
  1692. width:85px;
  1693. height:30px;
  1694. background:inherit;
  1695. background-color:rgba(255, 255, 255, 0);
  1696. border:none;
  1697. border-left:0px;
  1698. border-top:0px;
  1699. border-right:0px;
  1700. border-radius:0px;
  1701. border-bottom-right-radius:0px;
  1702. border-bottom-left-radius:0px;
  1703. -moz-box-shadow:none;
  1704. -webkit-box-shadow:none;
  1705. box-shadow:none;
  1706. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1707. font-weight:400;
  1708. font-style:normal;
  1709. font-size:14px;
  1710. color:#7F7F7F;
  1711. line-height:30px;
  1712. }
  1713. #u17358 {
  1714. border-width:0px;
  1715. position:absolute;
  1716. left:1175px;
  1717. top:495px;
  1718. width:85px;
  1719. height:30px;
  1720. display:flex;
  1721. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1722. font-weight:400;
  1723. font-style:normal;
  1724. font-size:14px;
  1725. color:#7F7F7F;
  1726. line-height:30px;
  1727. }
  1728. #u17358 .text {
  1729. position:absolute;
  1730. align-self:flex-start;
  1731. padding:0px 0px 0px 0px;
  1732. box-sizing:border-box;
  1733. width:100%;
  1734. }
  1735. #u17358_text {
  1736. border-width:0px;
  1737. white-space:nowrap;
  1738. text-transform:none;
  1739. }
  1740. #u17359_img {
  1741. border-width:0px;
  1742. position:absolute;
  1743. left:0px;
  1744. top:0px;
  1745. width:153px;
  1746. height:107px;
  1747. }
  1748. #u17359 {
  1749. border-width:0px;
  1750. position:absolute;
  1751. left:1175px;
  1752. top:525px;
  1753. width:153px;
  1754. height:107px;
  1755. display:flex;
  1756. }
  1757. #u17359 .text {
  1758. position:absolute;
  1759. align-self:center;
  1760. padding:2px 2px 2px 2px;
  1761. box-sizing:border-box;
  1762. width:100%;
  1763. }
  1764. #u17359_text {
  1765. border-width:0px;
  1766. word-wrap:break-word;
  1767. text-transform:none;
  1768. visibility:hidden;
  1769. }
  1770. #u17360_img {
  1771. border-width:0px;
  1772. position:absolute;
  1773. left:0px;
  1774. top:0px;
  1775. width:153px;
  1776. height:107px;
  1777. }
  1778. #u17360 {
  1779. border-width:0px;
  1780. position:absolute;
  1781. left:1338px;
  1782. top:525px;
  1783. width:153px;
  1784. height:107px;
  1785. display:flex;
  1786. }
  1787. #u17360 .text {
  1788. position:absolute;
  1789. align-self:center;
  1790. padding:2px 2px 2px 2px;
  1791. box-sizing:border-box;
  1792. width:100%;
  1793. }
  1794. #u17360_text {
  1795. border-width:0px;
  1796. word-wrap:break-word;
  1797. text-transform:none;
  1798. visibility:hidden;
  1799. }
  1800. #u17361_div {
  1801. border-width:0px;
  1802. position:absolute;
  1803. left:0px;
  1804. top:0px;
  1805. width:71px;
  1806. height:30px;
  1807. background:inherit;
  1808. background-color:rgba(255, 255, 255, 0);
  1809. border:none;
  1810. border-left:0px;
  1811. border-top:0px;
  1812. border-right:0px;
  1813. border-radius:0px;
  1814. border-bottom-right-radius:0px;
  1815. border-bottom-left-radius:0px;
  1816. -moz-box-shadow:none;
  1817. -webkit-box-shadow:none;
  1818. box-shadow:none;
  1819. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1820. font-weight:400;
  1821. font-style:normal;
  1822. font-size:14px;
  1823. color:#7F7F7F;
  1824. line-height:30px;
  1825. }
  1826. #u17361 {
  1827. border-width:0px;
  1828. position:absolute;
  1829. left:1589px;
  1830. top:495px;
  1831. width:71px;
  1832. height:30px;
  1833. display:flex;
  1834. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1835. font-weight:400;
  1836. font-style:normal;
  1837. font-size:14px;
  1838. color:#7F7F7F;
  1839. line-height:30px;
  1840. }
  1841. #u17361 .text {
  1842. position:absolute;
  1843. align-self:flex-start;
  1844. padding:0px 0px 0px 0px;
  1845. box-sizing:border-box;
  1846. width:100%;
  1847. }
  1848. #u17361_text {
  1849. border-width:0px;
  1850. white-space:nowrap;
  1851. text-transform:none;
  1852. }
  1853. #u17362_img {
  1854. border-width:0px;
  1855. position:absolute;
  1856. left:0px;
  1857. top:0px;
  1858. width:146px;
  1859. height:102px;
  1860. }
  1861. #u17362 {
  1862. border-width:0px;
  1863. position:absolute;
  1864. left:1589px;
  1865. top:525px;
  1866. width:146px;
  1867. height:102px;
  1868. display:flex;
  1869. }
  1870. #u17362 .text {
  1871. position:absolute;
  1872. align-self:center;
  1873. padding:2px 2px 2px 2px;
  1874. box-sizing:border-box;
  1875. width:100%;
  1876. }
  1877. #u17362_text {
  1878. border-width:0px;
  1879. word-wrap:break-word;
  1880. text-transform:none;
  1881. visibility:hidden;
  1882. }
  1883. #u17363_img {
  1884. border-width:0px;
  1885. position:absolute;
  1886. left:0px;
  1887. top:0px;
  1888. width:146px;
  1889. height:102px;
  1890. }
  1891. #u17363 {
  1892. border-width:0px;
  1893. position:absolute;
  1894. left:1745px;
  1895. top:525px;
  1896. width:146px;
  1897. height:102px;
  1898. display:flex;
  1899. }
  1900. #u17363 .text {
  1901. position:absolute;
  1902. align-self:center;
  1903. padding:2px 2px 2px 2px;
  1904. box-sizing:border-box;
  1905. width:100%;
  1906. }
  1907. #u17363_text {
  1908. border-width:0px;
  1909. word-wrap:break-word;
  1910. text-transform:none;
  1911. visibility:hidden;
  1912. }
  1913. #u17364_img {
  1914. border-width:0px;
  1915. position:absolute;
  1916. left:0px;
  1917. top:0px;
  1918. width:146px;
  1919. height:102px;
  1920. }
  1921. #u17364 {
  1922. border-width:0px;
  1923. position:absolute;
  1924. left:1901px;
  1925. top:525px;
  1926. width:146px;
  1927. height:102px;
  1928. display:flex;
  1929. }
  1930. #u17364 .text {
  1931. position:absolute;
  1932. align-self:center;
  1933. padding:2px 2px 2px 2px;
  1934. box-sizing:border-box;
  1935. width:100%;
  1936. }
  1937. #u17364_text {
  1938. border-width:0px;
  1939. word-wrap:break-word;
  1940. text-transform:none;
  1941. visibility:hidden;
  1942. }
  1943. #u17365 {
  1944. border-width:0px;
  1945. position:absolute;
  1946. left:0px;
  1947. top:0px;
  1948. width:0px;
  1949. height:0px;
  1950. }
  1951. #u17366_div {
  1952. border-width:0px;
  1953. position:absolute;
  1954. left:0px;
  1955. top:0px;
  1956. width:1000px;
  1957. height:60px;
  1958. background:inherit;
  1959. background-color:rgba(255, 255, 255, 1);
  1960. box-sizing:border-box;
  1961. border-width:1px;
  1962. border-style:solid;
  1963. border-color:rgba(215, 215, 215, 1);
  1964. border-radius:0px;
  1965. -moz-box-shadow:none;
  1966. -webkit-box-shadow:none;
  1967. box-shadow:none;
  1968. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1969. font-weight:400;
  1970. font-style:normal;
  1971. font-size:14px;
  1972. color:#AAAAAA;
  1973. text-align:center;
  1974. line-height:30px;
  1975. }
  1976. #u17366 {
  1977. border-width:0px;
  1978. position:absolute;
  1979. left:1120px;
  1980. top:1204px;
  1981. width:1000px;
  1982. height:60px;
  1983. display:flex;
  1984. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1985. font-weight:400;
  1986. font-style:normal;
  1987. font-size:14px;
  1988. color:#AAAAAA;
  1989. text-align:center;
  1990. line-height:30px;
  1991. }
  1992. #u17366 .text {
  1993. position:absolute;
  1994. align-self:center;
  1995. padding:5px 10px 5px 10px;
  1996. box-sizing:border-box;
  1997. width:100%;
  1998. }
  1999. #u17366_text {
  2000. border-width:0px;
  2001. word-wrap:break-word;
  2002. text-transform:none;
  2003. visibility:hidden;
  2004. }
  2005. #u17367_div {
  2006. border-width:0px;
  2007. position:absolute;
  2008. left:0px;
  2009. top:0px;
  2010. width:80px;
  2011. height:30px;
  2012. background:inherit;
  2013. background-color:rgba(255, 255, 255, 1);
  2014. box-sizing:border-box;
  2015. border-width:1px;
  2016. border-style:solid;
  2017. border-color:rgba(170, 170, 170, 1);
  2018. border-radius:4px;
  2019. -moz-box-shadow:none;
  2020. -webkit-box-shadow:none;
  2021. box-shadow:none;
  2022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2023. font-weight:400;
  2024. font-style:normal;
  2025. font-size:14px;
  2026. }
  2027. #u17367 {
  2028. border-width:0px;
  2029. position:absolute;
  2030. left:2014px;
  2031. top:1219px;
  2032. width:80px;
  2033. height:30px;
  2034. display:flex;
  2035. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2036. font-weight:400;
  2037. font-style:normal;
  2038. font-size:14px;
  2039. }
  2040. #u17367 .text {
  2041. position:absolute;
  2042. align-self:center;
  2043. padding:2px 2px 2px 2px;
  2044. box-sizing:border-box;
  2045. width:100%;
  2046. }
  2047. #u17367_text {
  2048. border-width:0px;
  2049. word-wrap:break-word;
  2050. text-transform:none;
  2051. }
  2052. #u17368_div {
  2053. border-width:0px;
  2054. position:absolute;
  2055. left:0px;
  2056. top:0px;
  2057. width:107px;
  2058. height:43px;
  2059. background:inherit;
  2060. background-color:rgba(255, 255, 255, 0);
  2061. border:none;
  2062. border-top:0px;
  2063. border-right:0px;
  2064. border-bottom:0px;
  2065. border-radius:0px;
  2066. border-top-left-radius:0px;
  2067. border-bottom-left-radius:0px;
  2068. -moz-box-shadow:none;
  2069. -webkit-box-shadow:none;
  2070. box-shadow:none;
  2071. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2072. font-weight:500;
  2073. font-style:normal;
  2074. font-size:24px;
  2075. }
  2076. #u17368 {
  2077. border-width:0px;
  2078. position:absolute;
  2079. left:1150px;
  2080. top:756px;
  2081. width:107px;
  2082. height:43px;
  2083. display:flex;
  2084. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2085. font-weight:500;
  2086. font-style:normal;
  2087. font-size:24px;
  2088. }
  2089. #u17368 .text {
  2090. position:absolute;
  2091. align-self:center;
  2092. padding:5px 10px 5px 0px;
  2093. box-sizing:border-box;
  2094. width:100%;
  2095. }
  2096. #u17368_text {
  2097. border-width:0px;
  2098. white-space:nowrap;
  2099. text-transform:none;
  2100. }
  2101. #u17369_div {
  2102. border-width:0px;
  2103. position:absolute;
  2104. left:0px;
  2105. top:0px;
  2106. width:80px;
  2107. height:30px;
  2108. background:inherit;
  2109. background-color:rgba(255, 255, 255, 0);
  2110. border:none;
  2111. border-left:0px;
  2112. border-top:0px;
  2113. border-right:0px;
  2114. border-radius:0px;
  2115. border-bottom-right-radius:0px;
  2116. border-bottom-left-radius:0px;
  2117. -moz-box-shadow:none;
  2118. -webkit-box-shadow:none;
  2119. box-shadow:none;
  2120. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2121. font-weight:400;
  2122. font-style:normal;
  2123. font-size:14px;
  2124. color:#7F7F7F;
  2125. line-height:30px;
  2126. }
  2127. #u17369 {
  2128. border-width:0px;
  2129. position:absolute;
  2130. left:1160px;
  2131. top:809px;
  2132. width:80px;
  2133. height:30px;
  2134. display:flex;
  2135. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2136. font-weight:400;
  2137. font-style:normal;
  2138. font-size:14px;
  2139. color:#7F7F7F;
  2140. line-height:30px;
  2141. }
  2142. #u17369 .text {
  2143. position:absolute;
  2144. align-self:flex-start;
  2145. padding:0px 0px 0px 0px;
  2146. box-sizing:border-box;
  2147. width:100%;
  2148. }
  2149. #u17369_text {
  2150. border-width:0px;
  2151. word-wrap:break-word;
  2152. text-transform:none;
  2153. }
  2154. #u17370_div {
  2155. border-width:0px;
  2156. position:absolute;
  2157. left:0px;
  2158. top:0px;
  2159. width:43px;
  2160. height:30px;
  2161. background:inherit;
  2162. background-color:rgba(255, 255, 255, 0);
  2163. border:none;
  2164. border-left:0px;
  2165. border-top:0px;
  2166. border-right:0px;
  2167. border-radius:0px;
  2168. border-bottom-right-radius:0px;
  2169. border-bottom-left-radius:0px;
  2170. -moz-box-shadow:none;
  2171. -webkit-box-shadow:none;
  2172. box-shadow:none;
  2173. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2174. font-weight:400;
  2175. font-style:normal;
  2176. font-size:14px;
  2177. color:#3399FF;
  2178. line-height:30px;
  2179. }
  2180. #u17370 {
  2181. border-width:0px;
  2182. position:absolute;
  2183. left:1240px;
  2184. top:809px;
  2185. width:43px;
  2186. height:30px;
  2187. display:flex;
  2188. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2189. font-weight:400;
  2190. font-style:normal;
  2191. font-size:14px;
  2192. color:#3399FF;
  2193. line-height:30px;
  2194. }
  2195. #u17370 .text {
  2196. position:absolute;
  2197. align-self:flex-start;
  2198. padding:0px 0px 0px 0px;
  2199. box-sizing:border-box;
  2200. width:100%;
  2201. }
  2202. #u17370_text {
  2203. border-width:0px;
  2204. white-space:nowrap;
  2205. text-transform:none;
  2206. }
  2207. #u17371_div {
  2208. border-width:0px;
  2209. position:absolute;
  2210. left:0px;
  2211. top:0px;
  2212. width:80px;
  2213. height:30px;
  2214. background:inherit;
  2215. background-color:rgba(255, 255, 255, 0);
  2216. border:none;
  2217. border-left:0px;
  2218. border-top:0px;
  2219. border-right:0px;
  2220. border-radius:0px;
  2221. border-bottom-right-radius:0px;
  2222. border-bottom-left-radius:0px;
  2223. -moz-box-shadow:none;
  2224. -webkit-box-shadow:none;
  2225. box-shadow:none;
  2226. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2227. font-weight:400;
  2228. font-style:normal;
  2229. font-size:14px;
  2230. color:#7F7F7F;
  2231. line-height:30px;
  2232. }
  2233. #u17371 {
  2234. border-width:0px;
  2235. position:absolute;
  2236. left:1160px;
  2237. top:849px;
  2238. width:80px;
  2239. height:30px;
  2240. display:flex;
  2241. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2242. font-weight:400;
  2243. font-style:normal;
  2244. font-size:14px;
  2245. color:#7F7F7F;
  2246. line-height:30px;
  2247. }
  2248. #u17371 .text {
  2249. position:absolute;
  2250. align-self:flex-start;
  2251. padding:0px 0px 0px 0px;
  2252. box-sizing:border-box;
  2253. width:100%;
  2254. }
  2255. #u17371_text {
  2256. border-width:0px;
  2257. word-wrap:break-word;
  2258. text-transform:none;
  2259. }
  2260. #u17372_div {
  2261. border-width:0px;
  2262. position:absolute;
  2263. left:0px;
  2264. top:0px;
  2265. width:128px;
  2266. height:30px;
  2267. background:inherit;
  2268. background-color:rgba(255, 255, 255, 0);
  2269. border:none;
  2270. border-left:0px;
  2271. border-top:0px;
  2272. border-right:0px;
  2273. border-radius:0px;
  2274. border-bottom-right-radius:0px;
  2275. border-bottom-left-radius:0px;
  2276. -moz-box-shadow:none;
  2277. -webkit-box-shadow:none;
  2278. box-shadow:none;
  2279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2280. font-weight:400;
  2281. font-style:normal;
  2282. font-size:14px;
  2283. line-height:30px;
  2284. }
  2285. #u17372 {
  2286. border-width:0px;
  2287. position:absolute;
  2288. left:1240px;
  2289. top:849px;
  2290. width:128px;
  2291. height:30px;
  2292. display:flex;
  2293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2294. font-weight:400;
  2295. font-style:normal;
  2296. font-size:14px;
  2297. line-height:30px;
  2298. }
  2299. #u17372 .text {
  2300. position:absolute;
  2301. align-self:flex-start;
  2302. padding:0px 0px 0px 0px;
  2303. box-sizing:border-box;
  2304. width:100%;
  2305. }
  2306. #u17372_text {
  2307. border-width:0px;
  2308. white-space:nowrap;
  2309. text-transform:none;
  2310. }
  2311. #u17373_div {
  2312. border-width:0px;
  2313. position:absolute;
  2314. left:0px;
  2315. top:0px;
  2316. width:80px;
  2317. height:30px;
  2318. background:inherit;
  2319. background-color:rgba(255, 255, 255, 0);
  2320. border:none;
  2321. border-left:0px;
  2322. border-top:0px;
  2323. border-right:0px;
  2324. border-radius:0px;
  2325. border-bottom-right-radius:0px;
  2326. border-bottom-left-radius:0px;
  2327. -moz-box-shadow:none;
  2328. -webkit-box-shadow:none;
  2329. box-shadow:none;
  2330. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2331. font-weight:400;
  2332. font-style:normal;
  2333. font-size:14px;
  2334. color:#7F7F7F;
  2335. line-height:30px;
  2336. }
  2337. #u17373 {
  2338. border-width:0px;
  2339. position:absolute;
  2340. left:1160px;
  2341. top:889px;
  2342. width:80px;
  2343. height:30px;
  2344. display:flex;
  2345. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2346. font-weight:400;
  2347. font-style:normal;
  2348. font-size:14px;
  2349. color:#7F7F7F;
  2350. line-height:30px;
  2351. }
  2352. #u17373 .text {
  2353. position:absolute;
  2354. align-self:flex-start;
  2355. padding:0px 0px 0px 0px;
  2356. box-sizing:border-box;
  2357. width:100%;
  2358. }
  2359. #u17373_text {
  2360. border-width:0px;
  2361. word-wrap:break-word;
  2362. text-transform:none;
  2363. }
  2364. #u17374_div {
  2365. border-width:0px;
  2366. position:absolute;
  2367. left:0px;
  2368. top:0px;
  2369. width:121px;
  2370. height:30px;
  2371. background:inherit;
  2372. background-color:rgba(255, 255, 255, 0);
  2373. border:none;
  2374. border-left:0px;
  2375. border-top:0px;
  2376. border-right:0px;
  2377. border-radius:0px;
  2378. border-bottom-right-radius:0px;
  2379. border-bottom-left-radius:0px;
  2380. -moz-box-shadow:none;
  2381. -webkit-box-shadow:none;
  2382. box-shadow:none;
  2383. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2384. font-weight:400;
  2385. font-style:normal;
  2386. font-size:14px;
  2387. line-height:30px;
  2388. }
  2389. #u17374 {
  2390. border-width:0px;
  2391. position:absolute;
  2392. left:1240px;
  2393. top:889px;
  2394. width:121px;
  2395. height:30px;
  2396. display:flex;
  2397. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2398. font-weight:400;
  2399. font-style:normal;
  2400. font-size:14px;
  2401. line-height:30px;
  2402. }
  2403. #u17374 .text {
  2404. position:absolute;
  2405. align-self:flex-start;
  2406. padding:0px 0px 0px 0px;
  2407. box-sizing:border-box;
  2408. width:100%;
  2409. }
  2410. #u17374_text {
  2411. border-width:0px;
  2412. white-space:nowrap;
  2413. text-transform:none;
  2414. }
  2415. #u17375_div {
  2416. border-width:0px;
  2417. position:absolute;
  2418. left:0px;
  2419. top:0px;
  2420. width:80px;
  2421. height:30px;
  2422. background:inherit;
  2423. background-color:rgba(255, 255, 255, 0);
  2424. border:none;
  2425. border-left:0px;
  2426. border-top:0px;
  2427. border-right:0px;
  2428. border-radius:0px;
  2429. border-bottom-right-radius:0px;
  2430. border-bottom-left-radius:0px;
  2431. -moz-box-shadow:none;
  2432. -webkit-box-shadow:none;
  2433. box-shadow:none;
  2434. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2435. font-weight:400;
  2436. font-style:normal;
  2437. font-size:14px;
  2438. color:#7F7F7F;
  2439. line-height:30px;
  2440. }
  2441. #u17375 {
  2442. border-width:0px;
  2443. position:absolute;
  2444. left:1160px;
  2445. top:929px;
  2446. width:80px;
  2447. height:30px;
  2448. display:flex;
  2449. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2450. font-weight:400;
  2451. font-style:normal;
  2452. font-size:14px;
  2453. color:#7F7F7F;
  2454. line-height:30px;
  2455. }
  2456. #u17375 .text {
  2457. position:absolute;
  2458. align-self:flex-start;
  2459. padding:0px 0px 0px 0px;
  2460. box-sizing:border-box;
  2461. width:100%;
  2462. }
  2463. #u17375_text {
  2464. border-width:0px;
  2465. word-wrap:break-word;
  2466. text-transform:none;
  2467. }
  2468. #u17376_div {
  2469. border-width:0px;
  2470. position:absolute;
  2471. left:0px;
  2472. top:0px;
  2473. width:23px;
  2474. height:30px;
  2475. background:inherit;
  2476. background-color:rgba(255, 255, 255, 0);
  2477. border:none;
  2478. border-left:0px;
  2479. border-top:0px;
  2480. border-right:0px;
  2481. border-radius:0px;
  2482. border-bottom-right-radius:0px;
  2483. border-bottom-left-radius:0px;
  2484. -moz-box-shadow:none;
  2485. -webkit-box-shadow:none;
  2486. box-shadow:none;
  2487. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2488. font-weight:400;
  2489. font-style:normal;
  2490. font-size:14px;
  2491. line-height:30px;
  2492. }
  2493. #u17376 {
  2494. border-width:0px;
  2495. position:absolute;
  2496. left:1240px;
  2497. top:929px;
  2498. width:23px;
  2499. height:30px;
  2500. display:flex;
  2501. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2502. font-weight:400;
  2503. font-style:normal;
  2504. font-size:14px;
  2505. line-height:30px;
  2506. }
  2507. #u17376 .text {
  2508. position:absolute;
  2509. align-self:flex-start;
  2510. padding:0px 0px 0px 0px;
  2511. box-sizing:border-box;
  2512. width:100%;
  2513. }
  2514. #u17376_text {
  2515. border-width:0px;
  2516. white-space:nowrap;
  2517. text-transform:none;
  2518. }
  2519. #u17377_img {
  2520. border-width:0px;
  2521. position:absolute;
  2522. left:0px;
  2523. top:0px;
  2524. width:142px;
  2525. height:138px;
  2526. }
  2527. #u17377 {
  2528. border-width:0px;
  2529. position:absolute;
  2530. left:1960px;
  2531. top:125px;
  2532. width:142px;
  2533. height:138px;
  2534. display:flex;
  2535. -webkit-transform:rotate(315deg);
  2536. -moz-transform:rotate(315deg);
  2537. -ms-transform:rotate(315deg);
  2538. transform:rotate(315deg);
  2539. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2540. font-weight:400;
  2541. font-style:normal;
  2542. font-size:28px;
  2543. color:#00BFBF;
  2544. }
  2545. #u17377 .text {
  2546. position:absolute;
  2547. align-self:center;
  2548. padding:2px 2px 2px 2px;
  2549. box-sizing:border-box;
  2550. width:100%;
  2551. }
  2552. #u17377_text {
  2553. border-width:0px;
  2554. word-wrap:break-word;
  2555. text-transform:none;
  2556. }
  2557. #u17378_div {
  2558. border-width:0px;
  2559. position:absolute;
  2560. left:0px;
  2561. top:0px;
  2562. width:80px;
  2563. height:30px;
  2564. background:inherit;
  2565. background-color:rgba(255, 255, 255, 0);
  2566. border:none;
  2567. border-left:0px;
  2568. border-top:0px;
  2569. border-right:0px;
  2570. border-radius:0px;
  2571. border-bottom-right-radius:0px;
  2572. border-bottom-left-radius:0px;
  2573. -moz-box-shadow:none;
  2574. -webkit-box-shadow:none;
  2575. box-shadow:none;
  2576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2577. font-weight:400;
  2578. font-style:normal;
  2579. font-size:14px;
  2580. color:#7F7F7F;
  2581. line-height:30px;
  2582. }
  2583. #u17378 {
  2584. border-width:0px;
  2585. position:absolute;
  2586. left:1150px;
  2587. top:195px;
  2588. width:80px;
  2589. height:30px;
  2590. display:flex;
  2591. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2592. font-weight:400;
  2593. font-style:normal;
  2594. font-size:14px;
  2595. color:#7F7F7F;
  2596. line-height:30px;
  2597. }
  2598. #u17378 .text {
  2599. position:absolute;
  2600. align-self:flex-start;
  2601. padding:0px 0px 0px 0px;
  2602. box-sizing:border-box;
  2603. width:100%;
  2604. }
  2605. #u17378_text {
  2606. border-width:0px;
  2607. word-wrap:break-word;
  2608. text-transform:none;
  2609. }
  2610. #u17379_div {
  2611. border-width:0px;
  2612. position:absolute;
  2613. left:0px;
  2614. top:0px;
  2615. width:113px;
  2616. height:30px;
  2617. background:inherit;
  2618. background-color:rgba(255, 255, 255, 0);
  2619. border:none;
  2620. border-left:0px;
  2621. border-top:0px;
  2622. border-right:0px;
  2623. border-radius:0px;
  2624. border-bottom-right-radius:0px;
  2625. border-bottom-left-radius:0px;
  2626. -moz-box-shadow:none;
  2627. -webkit-box-shadow:none;
  2628. box-shadow:none;
  2629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2630. font-weight:400;
  2631. font-style:normal;
  2632. font-size:14px;
  2633. line-height:30px;
  2634. }
  2635. #u17379 {
  2636. border-width:0px;
  2637. position:absolute;
  2638. left:1230px;
  2639. top:195px;
  2640. width:113px;
  2641. height:30px;
  2642. display:flex;
  2643. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2644. font-weight:400;
  2645. font-style:normal;
  2646. font-size:14px;
  2647. line-height:30px;
  2648. }
  2649. #u17379 .text {
  2650. position:absolute;
  2651. align-self:flex-start;
  2652. padding:0px 0px 0px 0px;
  2653. box-sizing:border-box;
  2654. width:100%;
  2655. }
  2656. #u17379_text {
  2657. border-width:0px;
  2658. white-space:nowrap;
  2659. text-transform:none;
  2660. }
  2661. #u17380_div {
  2662. border-width:0px;
  2663. position:absolute;
  2664. left:0px;
  2665. top:0px;
  2666. width:80px;
  2667. height:30px;
  2668. background:inherit;
  2669. background-color:rgba(255, 255, 255, 0);
  2670. border:none;
  2671. border-left:0px;
  2672. border-top:0px;
  2673. border-right:0px;
  2674. border-radius:0px;
  2675. border-bottom-right-radius:0px;
  2676. border-bottom-left-radius:0px;
  2677. -moz-box-shadow:none;
  2678. -webkit-box-shadow:none;
  2679. box-shadow:none;
  2680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2681. font-weight:400;
  2682. font-style:normal;
  2683. font-size:14px;
  2684. color:#7F7F7F;
  2685. line-height:30px;
  2686. }
  2687. #u17380 {
  2688. border-width:0px;
  2689. position:absolute;
  2690. left:1589px;
  2691. top:195px;
  2692. width:80px;
  2693. height:30px;
  2694. display:flex;
  2695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2696. font-weight:400;
  2697. font-style:normal;
  2698. font-size:14px;
  2699. color:#7F7F7F;
  2700. line-height:30px;
  2701. }
  2702. #u17380 .text {
  2703. position:absolute;
  2704. align-self:flex-start;
  2705. padding:0px 0px 0px 0px;
  2706. box-sizing:border-box;
  2707. width:100%;
  2708. }
  2709. #u17380_text {
  2710. border-width:0px;
  2711. word-wrap:break-word;
  2712. text-transform:none;
  2713. }
  2714. #u17381_div {
  2715. border-width:0px;
  2716. position:absolute;
  2717. left:0px;
  2718. top:0px;
  2719. width:57px;
  2720. height:30px;
  2721. background:inherit;
  2722. background-color:rgba(255, 255, 255, 0);
  2723. border:none;
  2724. border-left:0px;
  2725. border-top:0px;
  2726. border-right:0px;
  2727. border-radius:0px;
  2728. border-bottom-right-radius:0px;
  2729. border-bottom-left-radius:0px;
  2730. -moz-box-shadow:none;
  2731. -webkit-box-shadow:none;
  2732. box-shadow:none;
  2733. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2734. font-weight:400;
  2735. font-style:normal;
  2736. font-size:14px;
  2737. line-height:30px;
  2738. }
  2739. #u17381 {
  2740. border-width:0px;
  2741. position:absolute;
  2742. left:1669px;
  2743. top:195px;
  2744. width:57px;
  2745. height:30px;
  2746. display:flex;
  2747. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2748. font-weight:400;
  2749. font-style:normal;
  2750. font-size:14px;
  2751. line-height:30px;
  2752. }
  2753. #u17381 .text {
  2754. position:absolute;
  2755. align-self:flex-start;
  2756. padding:0px 0px 0px 0px;
  2757. box-sizing:border-box;
  2758. width:100%;
  2759. }
  2760. #u17381_text {
  2761. border-width:0px;
  2762. white-space:nowrap;
  2763. text-transform:none;
  2764. }
  2765. #u17382_div {
  2766. border-width:0px;
  2767. position:absolute;
  2768. left:0px;
  2769. top:0px;
  2770. width:85px;
  2771. height:30px;
  2772. background:inherit;
  2773. background-color:rgba(255, 255, 255, 0);
  2774. border:none;
  2775. border-left:0px;
  2776. border-top:0px;
  2777. border-right:0px;
  2778. border-radius:0px;
  2779. border-bottom-right-radius:0px;
  2780. border-bottom-left-radius:0px;
  2781. -moz-box-shadow:none;
  2782. -webkit-box-shadow:none;
  2783. box-shadow:none;
  2784. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2785. font-weight:400;
  2786. font-style:normal;
  2787. font-size:14px;
  2788. color:#7F7F7F;
  2789. line-height:30px;
  2790. }
  2791. #u17382 {
  2792. border-width:0px;
  2793. position:absolute;
  2794. left:1589px;
  2795. top:235px;
  2796. width:85px;
  2797. height:30px;
  2798. display:flex;
  2799. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2800. font-weight:400;
  2801. font-style:normal;
  2802. font-size:14px;
  2803. color:#7F7F7F;
  2804. line-height:30px;
  2805. }
  2806. #u17382 .text {
  2807. position:absolute;
  2808. align-self:flex-start;
  2809. padding:0px 0px 0px 0px;
  2810. box-sizing:border-box;
  2811. width:100%;
  2812. }
  2813. #u17382_text {
  2814. border-width:0px;
  2815. white-space:nowrap;
  2816. text-transform:none;
  2817. }
  2818. #u17383_div {
  2819. border-width:0px;
  2820. position:absolute;
  2821. left:0px;
  2822. top:0px;
  2823. width:23px;
  2824. height:30px;
  2825. background:inherit;
  2826. background-color:rgba(255, 255, 255, 0);
  2827. border:none;
  2828. border-left:0px;
  2829. border-top:0px;
  2830. border-right:0px;
  2831. border-radius:0px;
  2832. border-bottom-right-radius:0px;
  2833. border-bottom-left-radius:0px;
  2834. -moz-box-shadow:none;
  2835. -webkit-box-shadow:none;
  2836. box-shadow:none;
  2837. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2838. font-weight:400;
  2839. font-style:normal;
  2840. font-size:14px;
  2841. line-height:30px;
  2842. }
  2843. #u17383 {
  2844. border-width:0px;
  2845. position:absolute;
  2846. left:1669px;
  2847. top:235px;
  2848. width:23px;
  2849. height:30px;
  2850. display:flex;
  2851. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2852. font-weight:400;
  2853. font-style:normal;
  2854. font-size:14px;
  2855. line-height:30px;
  2856. }
  2857. #u17383 .text {
  2858. position:absolute;
  2859. align-self:flex-start;
  2860. padding:0px 0px 0px 0px;
  2861. box-sizing:border-box;
  2862. width:100%;
  2863. }
  2864. #u17383_text {
  2865. border-width:0px;
  2866. white-space:nowrap;
  2867. text-transform:none;
  2868. }
  2869. #u17384_div {
  2870. border-width:0px;
  2871. position:absolute;
  2872. left:0px;
  2873. top:0px;
  2874. width:57px;
  2875. height:30px;
  2876. background:inherit;
  2877. background-color:rgba(255, 255, 255, 0);
  2878. border:none;
  2879. border-left:0px;
  2880. border-top:0px;
  2881. border-right:0px;
  2882. border-radius:0px;
  2883. border-bottom-right-radius:0px;
  2884. border-bottom-left-radius:0px;
  2885. -moz-box-shadow:none;
  2886. -webkit-box-shadow:none;
  2887. box-shadow:none;
  2888. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2889. font-weight:400;
  2890. font-style:normal;
  2891. font-size:14px;
  2892. color:#7F7F7F;
  2893. line-height:30px;
  2894. }
  2895. #u17384 {
  2896. border-width:0px;
  2897. position:absolute;
  2898. left:1150px;
  2899. top:235px;
  2900. width:57px;
  2901. height:30px;
  2902. display:flex;
  2903. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2904. font-weight:400;
  2905. font-style:normal;
  2906. font-size:14px;
  2907. color:#7F7F7F;
  2908. line-height:30px;
  2909. }
  2910. #u17384 .text {
  2911. position:absolute;
  2912. align-self:flex-start;
  2913. padding:0px 0px 0px 0px;
  2914. box-sizing:border-box;
  2915. width:100%;
  2916. }
  2917. #u17384_text {
  2918. border-width:0px;
  2919. white-space:nowrap;
  2920. text-transform:none;
  2921. }
  2922. #u17385_div {
  2923. border-width:0px;
  2924. position:absolute;
  2925. left:0px;
  2926. top:0px;
  2927. width:41px;
  2928. height:30px;
  2929. background:inherit;
  2930. background-color:rgba(255, 255, 255, 0);
  2931. border:none;
  2932. border-left:0px;
  2933. border-top:0px;
  2934. border-right:0px;
  2935. border-radius:0px;
  2936. border-bottom-right-radius:0px;
  2937. border-bottom-left-radius:0px;
  2938. -moz-box-shadow:none;
  2939. -webkit-box-shadow:none;
  2940. box-shadow:none;
  2941. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2942. font-weight:400;
  2943. font-style:normal;
  2944. font-size:14px;
  2945. line-height:30px;
  2946. }
  2947. #u17385 {
  2948. border-width:0px;
  2949. position:absolute;
  2950. left:1230px;
  2951. top:235px;
  2952. width:41px;
  2953. height:30px;
  2954. display:flex;
  2955. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2956. font-weight:400;
  2957. font-style:normal;
  2958. font-size:14px;
  2959. line-height:30px;
  2960. }
  2961. #u17385 .text {
  2962. position:absolute;
  2963. align-self:flex-start;
  2964. padding:0px 0px 0px 0px;
  2965. box-sizing:border-box;
  2966. width:100%;
  2967. }
  2968. #u17385_text {
  2969. border-width:0px;
  2970. white-space:nowrap;
  2971. text-transform:none;
  2972. }
  2973. #u17386 {
  2974. border-width:0px;
  2975. position:absolute;
  2976. left:0px;
  2977. top:0px;
  2978. width:0px;
  2979. height:0px;
  2980. }
  2981. #u17387_div {
  2982. border-width:0px;
  2983. position:absolute;
  2984. left:0px;
  2985. top:0px;
  2986. width:1000px;
  2987. height:1201px;
  2988. background:inherit;
  2989. background-color:rgba(242, 242, 242, 1);
  2990. box-sizing:border-box;
  2991. border-width:1px;
  2992. border-style:solid;
  2993. border-color:rgba(215, 215, 215, 1);
  2994. border-radius:0px;
  2995. -moz-box-shadow:none;
  2996. -webkit-box-shadow:none;
  2997. box-shadow:none;
  2998. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2999. font-weight:400;
  3000. font-style:normal;
  3001. font-size:14px;
  3002. color:#AAAAAA;
  3003. text-align:center;
  3004. line-height:30px;
  3005. }
  3006. #u17387 {
  3007. border-width:0px;
  3008. position:absolute;
  3009. left:2150px;
  3010. top:63px;
  3011. width:1000px;
  3012. height:1201px;
  3013. display:flex;
  3014. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3015. font-weight:400;
  3016. font-style:normal;
  3017. font-size:14px;
  3018. color:#AAAAAA;
  3019. text-align:center;
  3020. line-height:30px;
  3021. }
  3022. #u17387 .text {
  3023. position:absolute;
  3024. align-self:center;
  3025. padding:5px 10px 5px 10px;
  3026. box-sizing:border-box;
  3027. width:100%;
  3028. }
  3029. #u17387_text {
  3030. border-width:0px;
  3031. word-wrap:break-word;
  3032. text-transform:none;
  3033. visibility:hidden;
  3034. }
  3035. #u17388_div {
  3036. border-width:0px;
  3037. position:absolute;
  3038. left:0px;
  3039. top:0px;
  3040. width:1000px;
  3041. height:471px;
  3042. background:inherit;
  3043. background-color:rgba(255, 255, 255, 1);
  3044. box-sizing:border-box;
  3045. border-width:1px;
  3046. border-style:solid;
  3047. border-color:rgba(215, 215, 215, 1);
  3048. border-radius:0px;
  3049. -moz-box-shadow:none;
  3050. -webkit-box-shadow:none;
  3051. box-shadow:none;
  3052. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3053. font-weight:400;
  3054. font-style:normal;
  3055. font-size:14px;
  3056. color:#AAAAAA;
  3057. text-align:center;
  3058. line-height:30px;
  3059. }
  3060. #u17388 {
  3061. border-width:0px;
  3062. position:absolute;
  3063. left:2150px;
  3064. top:733px;
  3065. width:1000px;
  3066. height:471px;
  3067. display:flex;
  3068. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3069. font-weight:400;
  3070. font-style:normal;
  3071. font-size:14px;
  3072. color:#AAAAAA;
  3073. text-align:center;
  3074. line-height:30px;
  3075. }
  3076. #u17388 .text {
  3077. position:absolute;
  3078. align-self:center;
  3079. padding:5px 10px 5px 10px;
  3080. box-sizing:border-box;
  3081. width:100%;
  3082. }
  3083. #u17388_text {
  3084. border-width:0px;
  3085. word-wrap:break-word;
  3086. text-transform:none;
  3087. visibility:hidden;
  3088. }
  3089. #u17389_div {
  3090. border-width:0px;
  3091. position:absolute;
  3092. left:0px;
  3093. top:0px;
  3094. width:1000px;
  3095. height:654px;
  3096. background:inherit;
  3097. background-color:rgba(255, 255, 255, 1);
  3098. box-sizing:border-box;
  3099. border-width:1px;
  3100. border-style:solid;
  3101. border-color:rgba(215, 215, 215, 1);
  3102. border-radius:0px;
  3103. -moz-box-shadow:none;
  3104. -webkit-box-shadow:none;
  3105. box-shadow:none;
  3106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3107. font-weight:400;
  3108. font-style:normal;
  3109. font-size:14px;
  3110. color:#AAAAAA;
  3111. text-align:center;
  3112. line-height:30px;
  3113. }
  3114. #u17389 {
  3115. border-width:0px;
  3116. position:absolute;
  3117. left:2150px;
  3118. top:63px;
  3119. width:1000px;
  3120. height:654px;
  3121. display:flex;
  3122. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3123. font-weight:400;
  3124. font-style:normal;
  3125. font-size:14px;
  3126. color:#AAAAAA;
  3127. text-align:center;
  3128. line-height:30px;
  3129. }
  3130. #u17389 .text {
  3131. position:absolute;
  3132. align-self:center;
  3133. padding:5px 10px 5px 10px;
  3134. box-sizing:border-box;
  3135. width:100%;
  3136. }
  3137. #u17389_text {
  3138. border-width:0px;
  3139. word-wrap:break-word;
  3140. text-transform:none;
  3141. visibility:hidden;
  3142. }
  3143. #u17390_div {
  3144. border-width:0px;
  3145. position:absolute;
  3146. left:0px;
  3147. top:0px;
  3148. width:47px;
  3149. height:35px;
  3150. background:inherit;
  3151. background-color:rgba(255, 255, 255, 0);
  3152. border:none;
  3153. border-top:0px;
  3154. border-right:0px;
  3155. border-bottom:0px;
  3156. border-radius:0px;
  3157. border-top-left-radius:0px;
  3158. border-bottom-left-radius:0px;
  3159. -moz-box-shadow:none;
  3160. -webkit-box-shadow:none;
  3161. box-shadow:none;
  3162. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3163. font-weight:500;
  3164. font-style:normal;
  3165. font-size:18px;
  3166. }
  3167. #u17390 {
  3168. border-width:0px;
  3169. position:absolute;
  3170. left:2170px;
  3171. top:81px;
  3172. width:47px;
  3173. height:35px;
  3174. display:flex;
  3175. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3176. font-weight:500;
  3177. font-style:normal;
  3178. font-size:18px;
  3179. }
  3180. #u17390 .text {
  3181. position:absolute;
  3182. align-self:center;
  3183. padding:5px 10px 5px 0px;
  3184. box-sizing:border-box;
  3185. width:100%;
  3186. }
  3187. #u17390_text {
  3188. border-width:0px;
  3189. white-space:nowrap;
  3190. text-transform:none;
  3191. }
  3192. #u17391 {
  3193. border-width:0px;
  3194. position:absolute;
  3195. left:0px;
  3196. top:0px;
  3197. width:0px;
  3198. height:0px;
  3199. }
  3200. #u17392_div {
  3201. border-width:0px;
  3202. position:absolute;
  3203. left:0px;
  3204. top:0px;
  3205. width:40px;
  3206. height:40px;
  3207. background:inherit;
  3208. background-color:rgba(255, 255, 255, 0);
  3209. border:none;
  3210. border-top:0px;
  3211. border-right:0px;
  3212. border-bottom:0px;
  3213. border-radius:0px;
  3214. border-top-left-radius:0px;
  3215. border-bottom-left-radius:0px;
  3216. -moz-box-shadow:none;
  3217. -webkit-box-shadow:none;
  3218. box-shadow:none;
  3219. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3220. font-weight:500;
  3221. font-style:normal;
  3222. font-size:14px;
  3223. text-align:center;
  3224. }
  3225. #u17392 {
  3226. border-width:0px;
  3227. position:absolute;
  3228. left:3110px;
  3229. top:63px;
  3230. width:40px;
  3231. height:40px;
  3232. display:flex;
  3233. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3234. font-weight:500;
  3235. font-style:normal;
  3236. font-size:14px;
  3237. text-align:center;
  3238. }
  3239. #u17392 .text {
  3240. position:absolute;
  3241. align-self:center;
  3242. padding:5px 10px 5px 0px;
  3243. box-sizing:border-box;
  3244. width:100%;
  3245. }
  3246. #u17392_text {
  3247. border-width:0px;
  3248. word-wrap:break-word;
  3249. text-transform:none;
  3250. }
  3251. #u17393_img {
  3252. border-width:0px;
  3253. position:absolute;
  3254. left:0px;
  3255. top:0px;
  3256. width:13px;
  3257. height:13px;
  3258. }
  3259. #u17393 {
  3260. border-width:0px;
  3261. position:absolute;
  3262. left:3098px;
  3263. top:79px;
  3264. width:13px;
  3265. height:13px;
  3266. display:flex;
  3267. font-size:14px;
  3268. }
  3269. #u17393 .text {
  3270. position:absolute;
  3271. align-self:center;
  3272. padding:2px 2px 2px 2px;
  3273. box-sizing:border-box;
  3274. width:100%;
  3275. }
  3276. #u17393_text {
  3277. border-width:0px;
  3278. word-wrap:break-word;
  3279. text-transform:none;
  3280. visibility:hidden;
  3281. }
  3282. #u17394_div {
  3283. border-width:0px;
  3284. position:absolute;
  3285. left:0px;
  3286. top:0px;
  3287. width:251px;
  3288. height:43px;
  3289. background:inherit;
  3290. background-color:rgba(255, 255, 255, 0);
  3291. border:none;
  3292. border-top:0px;
  3293. border-right:0px;
  3294. border-bottom:0px;
  3295. border-radius:0px;
  3296. border-top-left-radius:0px;
  3297. border-bottom-left-radius:0px;
  3298. -moz-box-shadow:none;
  3299. -webkit-box-shadow:none;
  3300. box-shadow:none;
  3301. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3302. font-weight:500;
  3303. font-style:normal;
  3304. font-size:24px;
  3305. }
  3306. #u17394 {
  3307. border-width:0px;
  3308. position:absolute;
  3309. left:2180px;
  3310. top:132px;
  3311. width:251px;
  3312. height:43px;
  3313. display:flex;
  3314. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3315. font-weight:500;
  3316. font-style:normal;
  3317. font-size:24px;
  3318. }
  3319. #u17394 .text {
  3320. position:absolute;
  3321. align-self:center;
  3322. padding:5px 10px 5px 0px;
  3323. box-sizing:border-box;
  3324. width:100%;
  3325. }
  3326. #u17394_text {
  3327. border-width:0px;
  3328. white-space:nowrap;
  3329. text-transform:none;
  3330. }
  3331. #u17395 {
  3332. border-width:0px;
  3333. position:absolute;
  3334. left:0px;
  3335. top:0px;
  3336. width:0px;
  3337. height:0px;
  3338. }
  3339. #u17396_div {
  3340. border-width:0px;
  3341. position:absolute;
  3342. left:0px;
  3343. top:0px;
  3344. width:1000px;
  3345. height:60px;
  3346. background:inherit;
  3347. background-color:rgba(255, 255, 255, 1);
  3348. box-sizing:border-box;
  3349. border-width:1px;
  3350. border-style:solid;
  3351. border-color:rgba(215, 215, 215, 1);
  3352. border-radius:0px;
  3353. -moz-box-shadow:none;
  3354. -webkit-box-shadow:none;
  3355. box-shadow:none;
  3356. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3357. font-weight:400;
  3358. font-style:normal;
  3359. font-size:14px;
  3360. color:#AAAAAA;
  3361. text-align:center;
  3362. line-height:30px;
  3363. }
  3364. #u17396 {
  3365. border-width:0px;
  3366. position:absolute;
  3367. left:2150px;
  3368. top:1204px;
  3369. width:1000px;
  3370. height:60px;
  3371. display:flex;
  3372. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3373. font-weight:400;
  3374. font-style:normal;
  3375. font-size:14px;
  3376. color:#AAAAAA;
  3377. text-align:center;
  3378. line-height:30px;
  3379. }
  3380. #u17396 .text {
  3381. position:absolute;
  3382. align-self:center;
  3383. padding:5px 10px 5px 10px;
  3384. box-sizing:border-box;
  3385. width:100%;
  3386. }
  3387. #u17396_text {
  3388. border-width:0px;
  3389. word-wrap:break-word;
  3390. text-transform:none;
  3391. visibility:hidden;
  3392. }
  3393. #u17397_div {
  3394. border-width:0px;
  3395. position:absolute;
  3396. left:0px;
  3397. top:0px;
  3398. width:80px;
  3399. height:30px;
  3400. background:inherit;
  3401. background-color:rgba(255, 255, 255, 1);
  3402. box-sizing:border-box;
  3403. border-width:1px;
  3404. border-style:solid;
  3405. border-color:rgba(170, 170, 170, 1);
  3406. border-radius:4px;
  3407. -moz-box-shadow:none;
  3408. -webkit-box-shadow:none;
  3409. box-shadow:none;
  3410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3411. font-weight:400;
  3412. font-style:normal;
  3413. font-size:14px;
  3414. }
  3415. #u17397 {
  3416. border-width:0px;
  3417. position:absolute;
  3418. left:3044px;
  3419. top:1219px;
  3420. width:80px;
  3421. height:30px;
  3422. display:flex;
  3423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3424. font-weight:400;
  3425. font-style:normal;
  3426. font-size:14px;
  3427. }
  3428. #u17397 .text {
  3429. position:absolute;
  3430. align-self:center;
  3431. padding:2px 2px 2px 2px;
  3432. box-sizing:border-box;
  3433. width:100%;
  3434. }
  3435. #u17397_text {
  3436. border-width:0px;
  3437. word-wrap:break-word;
  3438. text-transform:none;
  3439. }
  3440. #u17398_div {
  3441. border-width:0px;
  3442. position:absolute;
  3443. left:0px;
  3444. top:0px;
  3445. width:107px;
  3446. height:43px;
  3447. background:inherit;
  3448. background-color:rgba(255, 255, 255, 0);
  3449. border:none;
  3450. border-top:0px;
  3451. border-right:0px;
  3452. border-bottom:0px;
  3453. border-radius:0px;
  3454. border-top-left-radius:0px;
  3455. border-bottom-left-radius:0px;
  3456. -moz-box-shadow:none;
  3457. -webkit-box-shadow:none;
  3458. box-shadow:none;
  3459. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3460. font-weight:500;
  3461. font-style:normal;
  3462. font-size:24px;
  3463. }
  3464. #u17398 {
  3465. border-width:0px;
  3466. position:absolute;
  3467. left:2180px;
  3468. top:756px;
  3469. width:107px;
  3470. height:43px;
  3471. display:flex;
  3472. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3473. font-weight:500;
  3474. font-style:normal;
  3475. font-size:24px;
  3476. }
  3477. #u17398 .text {
  3478. position:absolute;
  3479. align-self:center;
  3480. padding:5px 10px 5px 0px;
  3481. box-sizing:border-box;
  3482. width:100%;
  3483. }
  3484. #u17398_text {
  3485. border-width:0px;
  3486. white-space:nowrap;
  3487. text-transform:none;
  3488. }
  3489. #u17399_div {
  3490. border-width:0px;
  3491. position:absolute;
  3492. left:0px;
  3493. top:0px;
  3494. width:80px;
  3495. height:30px;
  3496. background:inherit;
  3497. background-color:rgba(255, 255, 255, 0);
  3498. border:none;
  3499. border-left:0px;
  3500. border-top:0px;
  3501. border-right:0px;
  3502. border-radius:0px;
  3503. border-bottom-right-radius:0px;
  3504. border-bottom-left-radius:0px;
  3505. -moz-box-shadow:none;
  3506. -webkit-box-shadow:none;
  3507. box-shadow:none;
  3508. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3509. font-weight:400;
  3510. font-style:normal;
  3511. font-size:14px;
  3512. color:#7F7F7F;
  3513. line-height:30px;
  3514. }
  3515. #u17399 {
  3516. border-width:0px;
  3517. position:absolute;
  3518. left:2190px;
  3519. top:809px;
  3520. width:80px;
  3521. height:30px;
  3522. display:flex;
  3523. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3524. font-weight:400;
  3525. font-style:normal;
  3526. font-size:14px;
  3527. color:#7F7F7F;
  3528. line-height:30px;
  3529. }
  3530. #u17399 .text {
  3531. position:absolute;
  3532. align-self:flex-start;
  3533. padding:0px 0px 0px 0px;
  3534. box-sizing:border-box;
  3535. width:100%;
  3536. }
  3537. #u17399_text {
  3538. border-width:0px;
  3539. word-wrap:break-word;
  3540. text-transform:none;
  3541. }
  3542. #u17400_div {
  3543. border-width:0px;
  3544. position:absolute;
  3545. left:0px;
  3546. top:0px;
  3547. width:43px;
  3548. height:30px;
  3549. background:inherit;
  3550. background-color:rgba(255, 255, 255, 0);
  3551. border:none;
  3552. border-left:0px;
  3553. border-top:0px;
  3554. border-right:0px;
  3555. border-radius:0px;
  3556. border-bottom-right-radius:0px;
  3557. border-bottom-left-radius:0px;
  3558. -moz-box-shadow:none;
  3559. -webkit-box-shadow:none;
  3560. box-shadow:none;
  3561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3562. font-weight:400;
  3563. font-style:normal;
  3564. font-size:14px;
  3565. color:#D9001B;
  3566. line-height:30px;
  3567. }
  3568. #u17400 {
  3569. border-width:0px;
  3570. position:absolute;
  3571. left:2270px;
  3572. top:809px;
  3573. width:43px;
  3574. height:30px;
  3575. display:flex;
  3576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3577. font-weight:400;
  3578. font-style:normal;
  3579. font-size:14px;
  3580. color:#D9001B;
  3581. line-height:30px;
  3582. }
  3583. #u17400 .text {
  3584. position:absolute;
  3585. align-self:flex-start;
  3586. padding:0px 0px 0px 0px;
  3587. box-sizing:border-box;
  3588. width:100%;
  3589. }
  3590. #u17400_text {
  3591. border-width:0px;
  3592. white-space:nowrap;
  3593. text-transform:none;
  3594. }
  3595. #u17401_div {
  3596. border-width:0px;
  3597. position:absolute;
  3598. left:0px;
  3599. top:0px;
  3600. width:80px;
  3601. height:30px;
  3602. background:inherit;
  3603. background-color:rgba(255, 255, 255, 0);
  3604. border:none;
  3605. border-left:0px;
  3606. border-top:0px;
  3607. border-right:0px;
  3608. border-radius:0px;
  3609. border-bottom-right-radius:0px;
  3610. border-bottom-left-radius:0px;
  3611. -moz-box-shadow:none;
  3612. -webkit-box-shadow:none;
  3613. box-shadow:none;
  3614. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3615. font-weight:400;
  3616. font-style:normal;
  3617. font-size:14px;
  3618. color:#7F7F7F;
  3619. line-height:30px;
  3620. }
  3621. #u17401 {
  3622. border-width:0px;
  3623. position:absolute;
  3624. left:2190px;
  3625. top:849px;
  3626. width:80px;
  3627. height:30px;
  3628. display:flex;
  3629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3630. font-weight:400;
  3631. font-style:normal;
  3632. font-size:14px;
  3633. color:#7F7F7F;
  3634. line-height:30px;
  3635. }
  3636. #u17401 .text {
  3637. position:absolute;
  3638. align-self:flex-start;
  3639. padding:0px 0px 0px 0px;
  3640. box-sizing:border-box;
  3641. width:100%;
  3642. }
  3643. #u17401_text {
  3644. border-width:0px;
  3645. word-wrap:break-word;
  3646. text-transform:none;
  3647. }
  3648. #u17402_div {
  3649. border-width:0px;
  3650. position:absolute;
  3651. left:0px;
  3652. top:0px;
  3653. width:128px;
  3654. height:30px;
  3655. background:inherit;
  3656. background-color:rgba(255, 255, 255, 0);
  3657. border:none;
  3658. border-left:0px;
  3659. border-top:0px;
  3660. border-right:0px;
  3661. border-radius:0px;
  3662. border-bottom-right-radius:0px;
  3663. border-bottom-left-radius:0px;
  3664. -moz-box-shadow:none;
  3665. -webkit-box-shadow:none;
  3666. box-shadow:none;
  3667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3668. font-weight:400;
  3669. font-style:normal;
  3670. font-size:14px;
  3671. line-height:30px;
  3672. }
  3673. #u17402 {
  3674. border-width:0px;
  3675. position:absolute;
  3676. left:2270px;
  3677. top:849px;
  3678. width:128px;
  3679. height:30px;
  3680. display:flex;
  3681. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3682. font-weight:400;
  3683. font-style:normal;
  3684. font-size:14px;
  3685. line-height:30px;
  3686. }
  3687. #u17402 .text {
  3688. position:absolute;
  3689. align-self:flex-start;
  3690. padding:0px 0px 0px 0px;
  3691. box-sizing:border-box;
  3692. width:100%;
  3693. }
  3694. #u17402_text {
  3695. border-width:0px;
  3696. white-space:nowrap;
  3697. text-transform:none;
  3698. }
  3699. #u17403_div {
  3700. border-width:0px;
  3701. position:absolute;
  3702. left:0px;
  3703. top:0px;
  3704. width:80px;
  3705. height:30px;
  3706. background:inherit;
  3707. background-color:rgba(255, 255, 255, 0);
  3708. border:none;
  3709. border-left:0px;
  3710. border-top:0px;
  3711. border-right:0px;
  3712. border-radius:0px;
  3713. border-bottom-right-radius:0px;
  3714. border-bottom-left-radius:0px;
  3715. -moz-box-shadow:none;
  3716. -webkit-box-shadow:none;
  3717. box-shadow:none;
  3718. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3719. font-weight:400;
  3720. font-style:normal;
  3721. font-size:14px;
  3722. color:#7F7F7F;
  3723. line-height:30px;
  3724. }
  3725. #u17403 {
  3726. border-width:0px;
  3727. position:absolute;
  3728. left:2190px;
  3729. top:889px;
  3730. width:80px;
  3731. height:30px;
  3732. display:flex;
  3733. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3734. font-weight:400;
  3735. font-style:normal;
  3736. font-size:14px;
  3737. color:#7F7F7F;
  3738. line-height:30px;
  3739. }
  3740. #u17403 .text {
  3741. position:absolute;
  3742. align-self:flex-start;
  3743. padding:0px 0px 0px 0px;
  3744. box-sizing:border-box;
  3745. width:100%;
  3746. }
  3747. #u17403_text {
  3748. border-width:0px;
  3749. word-wrap:break-word;
  3750. text-transform:none;
  3751. }
  3752. #u17404_div {
  3753. border-width:0px;
  3754. position:absolute;
  3755. left:0px;
  3756. top:0px;
  3757. width:121px;
  3758. height:30px;
  3759. background:inherit;
  3760. background-color:rgba(255, 255, 255, 0);
  3761. border:none;
  3762. border-left:0px;
  3763. border-top:0px;
  3764. border-right:0px;
  3765. border-radius:0px;
  3766. border-bottom-right-radius:0px;
  3767. border-bottom-left-radius:0px;
  3768. -moz-box-shadow:none;
  3769. -webkit-box-shadow:none;
  3770. box-shadow:none;
  3771. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3772. font-weight:400;
  3773. font-style:normal;
  3774. font-size:14px;
  3775. line-height:30px;
  3776. }
  3777. #u17404 {
  3778. border-width:0px;
  3779. position:absolute;
  3780. left:2270px;
  3781. top:889px;
  3782. width:121px;
  3783. height:30px;
  3784. display:flex;
  3785. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3786. font-weight:400;
  3787. font-style:normal;
  3788. font-size:14px;
  3789. line-height:30px;
  3790. }
  3791. #u17404 .text {
  3792. position:absolute;
  3793. align-self:flex-start;
  3794. padding:0px 0px 0px 0px;
  3795. box-sizing:border-box;
  3796. width:100%;
  3797. }
  3798. #u17404_text {
  3799. border-width:0px;
  3800. white-space:nowrap;
  3801. text-transform:none;
  3802. }
  3803. #u17405_div {
  3804. border-width:0px;
  3805. position:absolute;
  3806. left:0px;
  3807. top:0px;
  3808. width:80px;
  3809. height:30px;
  3810. background:inherit;
  3811. background-color:rgba(255, 255, 255, 0);
  3812. border:none;
  3813. border-left:0px;
  3814. border-top:0px;
  3815. border-right:0px;
  3816. border-radius:0px;
  3817. border-bottom-right-radius:0px;
  3818. border-bottom-left-radius:0px;
  3819. -moz-box-shadow:none;
  3820. -webkit-box-shadow:none;
  3821. box-shadow:none;
  3822. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3823. font-weight:400;
  3824. font-style:normal;
  3825. font-size:14px;
  3826. color:#7F7F7F;
  3827. line-height:30px;
  3828. }
  3829. #u17405 {
  3830. border-width:0px;
  3831. position:absolute;
  3832. left:2190px;
  3833. top:929px;
  3834. width:80px;
  3835. height:30px;
  3836. display:flex;
  3837. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3838. font-weight:400;
  3839. font-style:normal;
  3840. font-size:14px;
  3841. color:#7F7F7F;
  3842. line-height:30px;
  3843. }
  3844. #u17405 .text {
  3845. position:absolute;
  3846. align-self:flex-start;
  3847. padding:0px 0px 0px 0px;
  3848. box-sizing:border-box;
  3849. width:100%;
  3850. }
  3851. #u17405_text {
  3852. border-width:0px;
  3853. word-wrap:break-word;
  3854. text-transform:none;
  3855. }
  3856. #u17406_div {
  3857. border-width:0px;
  3858. position:absolute;
  3859. left:0px;
  3860. top:0px;
  3861. width:23px;
  3862. height:30px;
  3863. background:inherit;
  3864. background-color:rgba(255, 255, 255, 0);
  3865. border:none;
  3866. border-left:0px;
  3867. border-top:0px;
  3868. border-right:0px;
  3869. border-radius:0px;
  3870. border-bottom-right-radius:0px;
  3871. border-bottom-left-radius:0px;
  3872. -moz-box-shadow:none;
  3873. -webkit-box-shadow:none;
  3874. box-shadow:none;
  3875. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3876. font-weight:400;
  3877. font-style:normal;
  3878. font-size:14px;
  3879. line-height:30px;
  3880. }
  3881. #u17406 {
  3882. border-width:0px;
  3883. position:absolute;
  3884. left:2270px;
  3885. top:929px;
  3886. width:23px;
  3887. height:30px;
  3888. display:flex;
  3889. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3890. font-weight:400;
  3891. font-style:normal;
  3892. font-size:14px;
  3893. line-height:30px;
  3894. }
  3895. #u17406 .text {
  3896. position:absolute;
  3897. align-self:flex-start;
  3898. padding:0px 0px 0px 0px;
  3899. box-sizing:border-box;
  3900. width:100%;
  3901. }
  3902. #u17406_text {
  3903. border-width:0px;
  3904. white-space:nowrap;
  3905. text-transform:none;
  3906. }
  3907. #u17407_img {
  3908. border-width:0px;
  3909. position:absolute;
  3910. left:0px;
  3911. top:0px;
  3912. width:142px;
  3913. height:138px;
  3914. }
  3915. #u17407 {
  3916. border-width:0px;
  3917. position:absolute;
  3918. left:2980px;
  3919. top:109px;
  3920. width:142px;
  3921. height:138px;
  3922. display:flex;
  3923. -webkit-transform:rotate(315deg);
  3924. -moz-transform:rotate(315deg);
  3925. -ms-transform:rotate(315deg);
  3926. transform:rotate(315deg);
  3927. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3928. font-weight:400;
  3929. font-style:normal;
  3930. font-size:28px;
  3931. color:#D9001B;
  3932. }
  3933. #u17407 .text {
  3934. position:absolute;
  3935. align-self:center;
  3936. padding:2px 2px 2px 2px;
  3937. box-sizing:border-box;
  3938. width:100%;
  3939. }
  3940. #u17407_text {
  3941. border-width:0px;
  3942. word-wrap:break-word;
  3943. text-transform:none;
  3944. }
  3945. #u17408_div {
  3946. border-width:0px;
  3947. position:absolute;
  3948. left:0px;
  3949. top:0px;
  3950. width:80px;
  3951. height:30px;
  3952. background:inherit;
  3953. background-color:rgba(255, 255, 255, 0);
  3954. border:none;
  3955. border-left:0px;
  3956. border-top:0px;
  3957. border-right:0px;
  3958. border-radius:0px;
  3959. border-bottom-right-radius:0px;
  3960. border-bottom-left-radius:0px;
  3961. -moz-box-shadow:none;
  3962. -webkit-box-shadow:none;
  3963. box-shadow:none;
  3964. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3965. font-weight:400;
  3966. font-style:normal;
  3967. font-size:14px;
  3968. color:#7F7F7F;
  3969. line-height:30px;
  3970. }
  3971. #u17408 {
  3972. border-width:0px;
  3973. position:absolute;
  3974. left:2180px;
  3975. top:669px;
  3976. width:80px;
  3977. height:30px;
  3978. display:flex;
  3979. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3980. font-weight:400;
  3981. font-style:normal;
  3982. font-size:14px;
  3983. color:#7F7F7F;
  3984. line-height:30px;
  3985. }
  3986. #u17408 .text {
  3987. position:absolute;
  3988. align-self:flex-start;
  3989. padding:0px 0px 0px 0px;
  3990. box-sizing:border-box;
  3991. width:100%;
  3992. }
  3993. #u17408_text {
  3994. border-width:0px;
  3995. word-wrap:break-word;
  3996. text-transform:none;
  3997. }
  3998. #u17409_div {
  3999. border-width:0px;
  4000. position:absolute;
  4001. left:0px;
  4002. top:0px;
  4003. width:121px;
  4004. height:30px;
  4005. background:inherit;
  4006. background-color:rgba(255, 255, 255, 0);
  4007. border:none;
  4008. border-left:0px;
  4009. border-top:0px;
  4010. border-right:0px;
  4011. border-radius:0px;
  4012. border-bottom-right-radius:0px;
  4013. border-bottom-left-radius:0px;
  4014. -moz-box-shadow:none;
  4015. -webkit-box-shadow:none;
  4016. box-shadow:none;
  4017. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4018. font-weight:400;
  4019. font-style:normal;
  4020. font-size:14px;
  4021. line-height:30px;
  4022. }
  4023. #u17409 {
  4024. border-width:0px;
  4025. position:absolute;
  4026. left:2260px;
  4027. top:669px;
  4028. width:121px;
  4029. height:30px;
  4030. display:flex;
  4031. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4032. font-weight:400;
  4033. font-style:normal;
  4034. font-size:14px;
  4035. line-height:30px;
  4036. }
  4037. #u17409 .text {
  4038. position:absolute;
  4039. align-self:flex-start;
  4040. padding:0px 0px 0px 0px;
  4041. box-sizing:border-box;
  4042. width:100%;
  4043. }
  4044. #u17409_text {
  4045. border-width:0px;
  4046. white-space:nowrap;
  4047. text-transform:none;
  4048. }
  4049. #u17410_div {
  4050. border-width:0px;
  4051. position:absolute;
  4052. left:0px;
  4053. top:0px;
  4054. width:80px;
  4055. height:30px;
  4056. background:inherit;
  4057. background-color:rgba(255, 255, 255, 0);
  4058. border:none;
  4059. border-left:0px;
  4060. border-top:0px;
  4061. border-right:0px;
  4062. border-radius:0px;
  4063. border-bottom-right-radius:0px;
  4064. border-bottom-left-radius:0px;
  4065. -moz-box-shadow:none;
  4066. -webkit-box-shadow:none;
  4067. box-shadow:none;
  4068. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4069. font-weight:400;
  4070. font-style:normal;
  4071. font-size:14px;
  4072. color:#7F7F7F;
  4073. line-height:30px;
  4074. }
  4075. #u17410 {
  4076. border-width:0px;
  4077. position:absolute;
  4078. left:2619px;
  4079. top:669px;
  4080. width:80px;
  4081. height:30px;
  4082. display:flex;
  4083. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4084. font-weight:400;
  4085. font-style:normal;
  4086. font-size:14px;
  4087. color:#7F7F7F;
  4088. line-height:30px;
  4089. }
  4090. #u17410 .text {
  4091. position:absolute;
  4092. align-self:flex-start;
  4093. padding:0px 0px 0px 0px;
  4094. box-sizing:border-box;
  4095. width:100%;
  4096. }
  4097. #u17410_text {
  4098. border-width:0px;
  4099. word-wrap:break-word;
  4100. text-transform:none;
  4101. }
  4102. #u17411_div {
  4103. border-width:0px;
  4104. position:absolute;
  4105. left:0px;
  4106. top:0px;
  4107. width:141px;
  4108. height:30px;
  4109. background:inherit;
  4110. background-color:rgba(255, 255, 255, 0);
  4111. border:none;
  4112. border-left:0px;
  4113. border-top:0px;
  4114. border-right:0px;
  4115. border-radius:0px;
  4116. border-bottom-right-radius:0px;
  4117. border-bottom-left-radius:0px;
  4118. -moz-box-shadow:none;
  4119. -webkit-box-shadow:none;
  4120. box-shadow:none;
  4121. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4122. font-weight:400;
  4123. font-style:normal;
  4124. font-size:14px;
  4125. line-height:30px;
  4126. }
  4127. #u17411 {
  4128. border-width:0px;
  4129. position:absolute;
  4130. left:2699px;
  4131. top:669px;
  4132. width:141px;
  4133. height:30px;
  4134. display:flex;
  4135. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4136. font-weight:400;
  4137. font-style:normal;
  4138. font-size:14px;
  4139. line-height:30px;
  4140. }
  4141. #u17411 .text {
  4142. position:absolute;
  4143. align-self:flex-start;
  4144. padding:0px 0px 0px 0px;
  4145. box-sizing:border-box;
  4146. width:100%;
  4147. }
  4148. #u17411_text {
  4149. border-width:0px;
  4150. white-space:nowrap;
  4151. text-transform:none;
  4152. }
  4153. #u17412 {
  4154. border-width:0px;
  4155. position:absolute;
  4156. left:0px;
  4157. top:0px;
  4158. width:0px;
  4159. height:0px;
  4160. }
  4161. #u17413_div {
  4162. border-width:0px;
  4163. position:absolute;
  4164. left:0px;
  4165. top:0px;
  4166. width:925px;
  4167. height:376px;
  4168. background:inherit;
  4169. background-color:rgba(242, 242, 242, 1);
  4170. box-sizing:border-box;
  4171. border-width:1px;
  4172. border-style:solid;
  4173. border-color:rgba(215, 215, 215, 1);
  4174. border-radius:0px;
  4175. -moz-box-shadow:none;
  4176. -webkit-box-shadow:none;
  4177. box-shadow:none;
  4178. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4179. font-weight:400;
  4180. font-style:normal;
  4181. font-size:14px;
  4182. color:#AAAAAA;
  4183. text-align:center;
  4184. line-height:30px;
  4185. }
  4186. #u17413 {
  4187. border-width:0px;
  4188. position:absolute;
  4189. left:2180px;
  4190. top:275px;
  4191. width:925px;
  4192. height:376px;
  4193. display:flex;
  4194. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4195. font-weight:400;
  4196. font-style:normal;
  4197. font-size:14px;
  4198. color:#AAAAAA;
  4199. text-align:center;
  4200. line-height:30px;
  4201. }
  4202. #u17413 .text {
  4203. position:absolute;
  4204. align-self:center;
  4205. padding:5px 10px 5px 10px;
  4206. box-sizing:border-box;
  4207. width:100%;
  4208. }
  4209. #u17413_text {
  4210. border-width:0px;
  4211. word-wrap:break-word;
  4212. text-transform:none;
  4213. visibility:hidden;
  4214. }
  4215. #u17414_div {
  4216. border-width:0px;
  4217. position:absolute;
  4218. left:0px;
  4219. top:0px;
  4220. width:80px;
  4221. height:30px;
  4222. background:inherit;
  4223. background-color:rgba(255, 255, 255, 0);
  4224. border:none;
  4225. border-left:0px;
  4226. border-top:0px;
  4227. border-right:0px;
  4228. border-radius:0px;
  4229. border-bottom-right-radius:0px;
  4230. border-bottom-left-radius:0px;
  4231. -moz-box-shadow:none;
  4232. -webkit-box-shadow:none;
  4233. box-shadow:none;
  4234. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4235. font-weight:400;
  4236. font-style:normal;
  4237. font-size:14px;
  4238. color:#7F7F7F;
  4239. line-height:30px;
  4240. }
  4241. #u17414 {
  4242. border-width:0px;
  4243. position:absolute;
  4244. left:2205px;
  4245. top:295px;
  4246. width:80px;
  4247. height:30px;
  4248. display:flex;
  4249. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4250. font-weight:400;
  4251. font-style:normal;
  4252. font-size:14px;
  4253. color:#7F7F7F;
  4254. line-height:30px;
  4255. }
  4256. #u17414 .text {
  4257. position:absolute;
  4258. align-self:flex-start;
  4259. padding:0px 0px 0px 0px;
  4260. box-sizing:border-box;
  4261. width:100%;
  4262. }
  4263. #u17414_text {
  4264. border-width:0px;
  4265. word-wrap:break-word;
  4266. text-transform:none;
  4267. }
  4268. #u17415_div {
  4269. border-width:0px;
  4270. position:absolute;
  4271. left:0px;
  4272. top:0px;
  4273. width:57px;
  4274. height:30px;
  4275. background:inherit;
  4276. background-color:rgba(255, 255, 255, 0);
  4277. border:none;
  4278. border-left:0px;
  4279. border-top:0px;
  4280. border-right:0px;
  4281. border-radius:0px;
  4282. border-bottom-right-radius:0px;
  4283. border-bottom-left-radius:0px;
  4284. -moz-box-shadow:none;
  4285. -webkit-box-shadow:none;
  4286. box-shadow:none;
  4287. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4288. font-weight:400;
  4289. font-style:normal;
  4290. font-size:14px;
  4291. line-height:30px;
  4292. }
  4293. #u17415 {
  4294. border-width:0px;
  4295. position:absolute;
  4296. left:2285px;
  4297. top:295px;
  4298. width:57px;
  4299. height:30px;
  4300. display:flex;
  4301. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4302. font-weight:400;
  4303. font-style:normal;
  4304. font-size:14px;
  4305. line-height:30px;
  4306. }
  4307. #u17415 .text {
  4308. position:absolute;
  4309. align-self:flex-start;
  4310. padding:0px 0px 0px 0px;
  4311. box-sizing:border-box;
  4312. width:100%;
  4313. }
  4314. #u17415_text {
  4315. border-width:0px;
  4316. white-space:nowrap;
  4317. text-transform:none;
  4318. }
  4319. #u17416_div {
  4320. border-width:0px;
  4321. position:absolute;
  4322. left:0px;
  4323. top:0px;
  4324. width:80px;
  4325. height:30px;
  4326. background:inherit;
  4327. background-color:rgba(255, 255, 255, 0);
  4328. border:none;
  4329. border-left:0px;
  4330. border-top:0px;
  4331. border-right:0px;
  4332. border-radius:0px;
  4333. border-bottom-right-radius:0px;
  4334. border-bottom-left-radius:0px;
  4335. -moz-box-shadow:none;
  4336. -webkit-box-shadow:none;
  4337. box-shadow:none;
  4338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4339. font-weight:400;
  4340. font-style:normal;
  4341. font-size:14px;
  4342. color:#7F7F7F;
  4343. line-height:30px;
  4344. }
  4345. #u17416 {
  4346. border-width:0px;
  4347. position:absolute;
  4348. left:2205px;
  4349. top:335px;
  4350. width:80px;
  4351. height:30px;
  4352. display:flex;
  4353. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4354. font-weight:400;
  4355. font-style:normal;
  4356. font-size:14px;
  4357. color:#7F7F7F;
  4358. line-height:30px;
  4359. }
  4360. #u17416 .text {
  4361. position:absolute;
  4362. align-self:flex-start;
  4363. padding:0px 0px 0px 0px;
  4364. box-sizing:border-box;
  4365. width:100%;
  4366. }
  4367. #u17416_text {
  4368. border-width:0px;
  4369. word-wrap:break-word;
  4370. text-transform:none;
  4371. }
  4372. #u17417_div {
  4373. border-width:0px;
  4374. position:absolute;
  4375. left:0px;
  4376. top:0px;
  4377. width:57px;
  4378. height:30px;
  4379. background:inherit;
  4380. background-color:rgba(255, 255, 255, 0);
  4381. border:none;
  4382. border-left:0px;
  4383. border-top:0px;
  4384. border-right:0px;
  4385. border-radius:0px;
  4386. border-bottom-right-radius:0px;
  4387. border-bottom-left-radius:0px;
  4388. -moz-box-shadow:none;
  4389. -webkit-box-shadow:none;
  4390. box-shadow:none;
  4391. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4392. font-weight:400;
  4393. font-style:normal;
  4394. font-size:14px;
  4395. line-height:30px;
  4396. }
  4397. #u17417 {
  4398. border-width:0px;
  4399. position:absolute;
  4400. left:2285px;
  4401. top:335px;
  4402. width:57px;
  4403. height:30px;
  4404. display:flex;
  4405. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4406. font-weight:400;
  4407. font-style:normal;
  4408. font-size:14px;
  4409. line-height:30px;
  4410. }
  4411. #u17417 .text {
  4412. position:absolute;
  4413. align-self:flex-start;
  4414. padding:0px 0px 0px 0px;
  4415. box-sizing:border-box;
  4416. width:100%;
  4417. }
  4418. #u17417_text {
  4419. border-width:0px;
  4420. white-space:nowrap;
  4421. text-transform:none;
  4422. }
  4423. #u17418_div {
  4424. border-width:0px;
  4425. position:absolute;
  4426. left:0px;
  4427. top:0px;
  4428. width:80px;
  4429. height:30px;
  4430. background:inherit;
  4431. background-color:rgba(255, 255, 255, 0);
  4432. border:none;
  4433. border-left:0px;
  4434. border-top:0px;
  4435. border-right:0px;
  4436. border-radius:0px;
  4437. border-bottom-right-radius:0px;
  4438. border-bottom-left-radius:0px;
  4439. -moz-box-shadow:none;
  4440. -webkit-box-shadow:none;
  4441. box-shadow:none;
  4442. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4443. font-weight:400;
  4444. font-style:normal;
  4445. font-size:14px;
  4446. color:#7F7F7F;
  4447. line-height:30px;
  4448. }
  4449. #u17418 {
  4450. border-width:0px;
  4451. position:absolute;
  4452. left:2205px;
  4453. top:375px;
  4454. width:80px;
  4455. height:30px;
  4456. display:flex;
  4457. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4458. font-weight:400;
  4459. font-style:normal;
  4460. font-size:14px;
  4461. color:#7F7F7F;
  4462. line-height:30px;
  4463. }
  4464. #u17418 .text {
  4465. position:absolute;
  4466. align-self:flex-start;
  4467. padding:0px 0px 0px 0px;
  4468. box-sizing:border-box;
  4469. width:100%;
  4470. }
  4471. #u17418_text {
  4472. border-width:0px;
  4473. word-wrap:break-word;
  4474. text-transform:none;
  4475. }
  4476. #u17419_div {
  4477. border-width:0px;
  4478. position:absolute;
  4479. left:0px;
  4480. top:0px;
  4481. width:29px;
  4482. height:30px;
  4483. background:inherit;
  4484. background-color:rgba(255, 255, 255, 0);
  4485. border:none;
  4486. border-left:0px;
  4487. border-top:0px;
  4488. border-right:0px;
  4489. border-radius:0px;
  4490. border-bottom-right-radius:0px;
  4491. border-bottom-left-radius:0px;
  4492. -moz-box-shadow:none;
  4493. -webkit-box-shadow:none;
  4494. box-shadow:none;
  4495. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4496. font-weight:400;
  4497. font-style:normal;
  4498. font-size:14px;
  4499. line-height:30px;
  4500. }
  4501. #u17419 {
  4502. border-width:0px;
  4503. position:absolute;
  4504. left:2285px;
  4505. top:375px;
  4506. width:29px;
  4507. height:30px;
  4508. display:flex;
  4509. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4510. font-weight:400;
  4511. font-style:normal;
  4512. font-size:14px;
  4513. line-height:30px;
  4514. }
  4515. #u17419 .text {
  4516. position:absolute;
  4517. align-self:flex-start;
  4518. padding:0px 0px 0px 0px;
  4519. box-sizing:border-box;
  4520. width:100%;
  4521. }
  4522. #u17419_text {
  4523. border-width:0px;
  4524. white-space:nowrap;
  4525. text-transform:none;
  4526. }
  4527. #u17420_div {
  4528. border-width:0px;
  4529. position:absolute;
  4530. left:0px;
  4531. top:0px;
  4532. width:80px;
  4533. height:30px;
  4534. background:inherit;
  4535. background-color:rgba(255, 255, 255, 0);
  4536. border:none;
  4537. border-left:0px;
  4538. border-top:0px;
  4539. border-right:0px;
  4540. border-radius:0px;
  4541. border-bottom-right-radius:0px;
  4542. border-bottom-left-radius:0px;
  4543. -moz-box-shadow:none;
  4544. -webkit-box-shadow:none;
  4545. box-shadow:none;
  4546. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4547. font-weight:400;
  4548. font-style:normal;
  4549. font-size:14px;
  4550. color:#7F7F7F;
  4551. line-height:30px;
  4552. }
  4553. #u17420 {
  4554. border-width:0px;
  4555. position:absolute;
  4556. left:2619px;
  4557. top:335px;
  4558. width:80px;
  4559. height:30px;
  4560. display:flex;
  4561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4562. font-weight:400;
  4563. font-style:normal;
  4564. font-size:14px;
  4565. color:#7F7F7F;
  4566. line-height:30px;
  4567. }
  4568. #u17420 .text {
  4569. position:absolute;
  4570. align-self:flex-start;
  4571. padding:0px 0px 0px 0px;
  4572. box-sizing:border-box;
  4573. width:100%;
  4574. }
  4575. #u17420_text {
  4576. border-width:0px;
  4577. word-wrap:break-word;
  4578. text-transform:none;
  4579. }
  4580. #u17421_div {
  4581. border-width:0px;
  4582. position:absolute;
  4583. left:0px;
  4584. top:0px;
  4585. width:113px;
  4586. height:30px;
  4587. background:inherit;
  4588. background-color:rgba(255, 255, 255, 0);
  4589. border:none;
  4590. border-left:0px;
  4591. border-top:0px;
  4592. border-right:0px;
  4593. border-radius:0px;
  4594. border-bottom-right-radius:0px;
  4595. border-bottom-left-radius:0px;
  4596. -moz-box-shadow:none;
  4597. -webkit-box-shadow:none;
  4598. box-shadow:none;
  4599. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4600. font-weight:400;
  4601. font-style:normal;
  4602. font-size:14px;
  4603. line-height:30px;
  4604. }
  4605. #u17421 {
  4606. border-width:0px;
  4607. position:absolute;
  4608. left:2699px;
  4609. top:335px;
  4610. width:113px;
  4611. height:30px;
  4612. display:flex;
  4613. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4614. font-weight:400;
  4615. font-style:normal;
  4616. font-size:14px;
  4617. line-height:30px;
  4618. }
  4619. #u17421 .text {
  4620. position:absolute;
  4621. align-self:flex-start;
  4622. padding:0px 0px 0px 0px;
  4623. box-sizing:border-box;
  4624. width:100%;
  4625. }
  4626. #u17421_text {
  4627. border-width:0px;
  4628. white-space:nowrap;
  4629. text-transform:none;
  4630. }
  4631. #u17422_div {
  4632. border-width:0px;
  4633. position:absolute;
  4634. left:0px;
  4635. top:0px;
  4636. width:80px;
  4637. height:30px;
  4638. background:inherit;
  4639. background-color:rgba(255, 255, 255, 0);
  4640. border:none;
  4641. border-left:0px;
  4642. border-top:0px;
  4643. border-right:0px;
  4644. border-radius:0px;
  4645. border-bottom-right-radius:0px;
  4646. border-bottom-left-radius:0px;
  4647. -moz-box-shadow:none;
  4648. -webkit-box-shadow:none;
  4649. box-shadow:none;
  4650. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4651. font-weight:400;
  4652. font-style:normal;
  4653. font-size:14px;
  4654. color:#7F7F7F;
  4655. line-height:30px;
  4656. }
  4657. #u17422 {
  4658. border-width:0px;
  4659. position:absolute;
  4660. left:2619px;
  4661. top:375px;
  4662. width:80px;
  4663. height:30px;
  4664. display:flex;
  4665. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4666. font-weight:400;
  4667. font-style:normal;
  4668. font-size:14px;
  4669. color:#7F7F7F;
  4670. line-height:30px;
  4671. }
  4672. #u17422 .text {
  4673. position:absolute;
  4674. align-self:flex-start;
  4675. padding:0px 0px 0px 0px;
  4676. box-sizing:border-box;
  4677. width:100%;
  4678. }
  4679. #u17422_text {
  4680. border-width:0px;
  4681. word-wrap:break-word;
  4682. text-transform:none;
  4683. }
  4684. #u17423_div {
  4685. border-width:0px;
  4686. position:absolute;
  4687. left:0px;
  4688. top:0px;
  4689. width:71px;
  4690. height:30px;
  4691. background:inherit;
  4692. background-color:rgba(255, 255, 255, 0);
  4693. border:none;
  4694. border-left:0px;
  4695. border-top:0px;
  4696. border-right:0px;
  4697. border-radius:0px;
  4698. border-bottom-right-radius:0px;
  4699. border-bottom-left-radius:0px;
  4700. -moz-box-shadow:none;
  4701. -webkit-box-shadow:none;
  4702. box-shadow:none;
  4703. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4704. font-weight:400;
  4705. font-style:normal;
  4706. font-size:14px;
  4707. line-height:30px;
  4708. }
  4709. #u17423 {
  4710. border-width:0px;
  4711. position:absolute;
  4712. left:2699px;
  4713. top:375px;
  4714. width:71px;
  4715. height:30px;
  4716. display:flex;
  4717. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4718. font-weight:400;
  4719. font-style:normal;
  4720. font-size:14px;
  4721. line-height:30px;
  4722. }
  4723. #u17423 .text {
  4724. position:absolute;
  4725. align-self:flex-start;
  4726. padding:0px 0px 0px 0px;
  4727. box-sizing:border-box;
  4728. width:100%;
  4729. }
  4730. #u17423_text {
  4731. border-width:0px;
  4732. white-space:nowrap;
  4733. text-transform:none;
  4734. }
  4735. #u17424_div {
  4736. border-width:0px;
  4737. position:absolute;
  4738. left:0px;
  4739. top:0px;
  4740. width:80px;
  4741. height:30px;
  4742. background:inherit;
  4743. background-color:rgba(255, 255, 255, 0);
  4744. border:none;
  4745. border-left:0px;
  4746. border-top:0px;
  4747. border-right:0px;
  4748. border-radius:0px;
  4749. border-bottom-right-radius:0px;
  4750. border-bottom-left-radius:0px;
  4751. -moz-box-shadow:none;
  4752. -webkit-box-shadow:none;
  4753. box-shadow:none;
  4754. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4755. font-weight:400;
  4756. font-style:normal;
  4757. font-size:14px;
  4758. color:#7F7F7F;
  4759. line-height:30px;
  4760. }
  4761. #u17424 {
  4762. border-width:0px;
  4763. position:absolute;
  4764. left:2205px;
  4765. top:455px;
  4766. width:80px;
  4767. height:30px;
  4768. display:flex;
  4769. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4770. font-weight:400;
  4771. font-style:normal;
  4772. font-size:14px;
  4773. color:#7F7F7F;
  4774. line-height:30px;
  4775. }
  4776. #u17424 .text {
  4777. position:absolute;
  4778. align-self:flex-start;
  4779. padding:0px 0px 0px 0px;
  4780. box-sizing:border-box;
  4781. width:100%;
  4782. }
  4783. #u17424_text {
  4784. border-width:0px;
  4785. word-wrap:break-word;
  4786. text-transform:none;
  4787. }
  4788. #u17425_div {
  4789. border-width:0px;
  4790. position:absolute;
  4791. left:0px;
  4792. top:0px;
  4793. width:81px;
  4794. height:30px;
  4795. background:inherit;
  4796. background-color:rgba(255, 255, 255, 0);
  4797. border:none;
  4798. border-left:0px;
  4799. border-top:0px;
  4800. border-right:0px;
  4801. border-radius:0px;
  4802. border-bottom-right-radius:0px;
  4803. border-bottom-left-radius:0px;
  4804. -moz-box-shadow:none;
  4805. -webkit-box-shadow:none;
  4806. box-shadow:none;
  4807. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4808. font-weight:400;
  4809. font-style:normal;
  4810. font-size:14px;
  4811. line-height:30px;
  4812. }
  4813. #u17425 {
  4814. border-width:0px;
  4815. position:absolute;
  4816. left:2285px;
  4817. top:455px;
  4818. width:81px;
  4819. height:30px;
  4820. display:flex;
  4821. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4822. font-weight:400;
  4823. font-style:normal;
  4824. font-size:14px;
  4825. line-height:30px;
  4826. }
  4827. #u17425 .text {
  4828. position:absolute;
  4829. align-self:flex-start;
  4830. padding:0px 0px 0px 0px;
  4831. box-sizing:border-box;
  4832. width:100%;
  4833. }
  4834. #u17425_text {
  4835. border-width:0px;
  4836. white-space:nowrap;
  4837. text-transform:none;
  4838. }
  4839. #u17426_div {
  4840. border-width:0px;
  4841. position:absolute;
  4842. left:0px;
  4843. top:0px;
  4844. width:80px;
  4845. height:30px;
  4846. background:inherit;
  4847. background-color:rgba(255, 255, 255, 0);
  4848. border:none;
  4849. border-left:0px;
  4850. border-top:0px;
  4851. border-right:0px;
  4852. border-radius:0px;
  4853. border-bottom-right-radius:0px;
  4854. border-bottom-left-radius:0px;
  4855. -moz-box-shadow:none;
  4856. -webkit-box-shadow:none;
  4857. box-shadow:none;
  4858. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4859. font-weight:400;
  4860. font-style:normal;
  4861. font-size:14px;
  4862. color:#7F7F7F;
  4863. line-height:30px;
  4864. }
  4865. #u17426 {
  4866. border-width:0px;
  4867. position:absolute;
  4868. left:2205px;
  4869. top:415px;
  4870. width:80px;
  4871. height:30px;
  4872. display:flex;
  4873. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4874. font-weight:400;
  4875. font-style:normal;
  4876. font-size:14px;
  4877. color:#7F7F7F;
  4878. line-height:30px;
  4879. }
  4880. #u17426 .text {
  4881. position:absolute;
  4882. align-self:flex-start;
  4883. padding:0px 0px 0px 0px;
  4884. box-sizing:border-box;
  4885. width:100%;
  4886. }
  4887. #u17426_text {
  4888. border-width:0px;
  4889. word-wrap:break-word;
  4890. text-transform:none;
  4891. }
  4892. #u17427_div {
  4893. border-width:0px;
  4894. position:absolute;
  4895. left:0px;
  4896. top:0px;
  4897. width:29px;
  4898. height:30px;
  4899. background:inherit;
  4900. background-color:rgba(255, 255, 255, 0);
  4901. border:none;
  4902. border-left:0px;
  4903. border-top:0px;
  4904. border-right:0px;
  4905. border-radius:0px;
  4906. border-bottom-right-radius:0px;
  4907. border-bottom-left-radius:0px;
  4908. -moz-box-shadow:none;
  4909. -webkit-box-shadow:none;
  4910. box-shadow:none;
  4911. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4912. font-weight:400;
  4913. font-style:normal;
  4914. font-size:14px;
  4915. line-height:30px;
  4916. }
  4917. #u17427 {
  4918. border-width:0px;
  4919. position:absolute;
  4920. left:2285px;
  4921. top:415px;
  4922. width:29px;
  4923. height:30px;
  4924. display:flex;
  4925. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4926. font-weight:400;
  4927. font-style:normal;
  4928. font-size:14px;
  4929. line-height:30px;
  4930. }
  4931. #u17427 .text {
  4932. position:absolute;
  4933. align-self:flex-start;
  4934. padding:0px 0px 0px 0px;
  4935. box-sizing:border-box;
  4936. width:100%;
  4937. }
  4938. #u17427_text {
  4939. border-width:0px;
  4940. white-space:nowrap;
  4941. text-transform:none;
  4942. }
  4943. #u17428_div {
  4944. border-width:0px;
  4945. position:absolute;
  4946. left:0px;
  4947. top:0px;
  4948. width:80px;
  4949. height:30px;
  4950. background:inherit;
  4951. background-color:rgba(255, 255, 255, 0);
  4952. border:none;
  4953. border-left:0px;
  4954. border-top:0px;
  4955. border-right:0px;
  4956. border-radius:0px;
  4957. border-bottom-right-radius:0px;
  4958. border-bottom-left-radius:0px;
  4959. -moz-box-shadow:none;
  4960. -webkit-box-shadow:none;
  4961. box-shadow:none;
  4962. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4963. font-weight:400;
  4964. font-style:normal;
  4965. font-size:14px;
  4966. color:#7F7F7F;
  4967. line-height:30px;
  4968. }
  4969. #u17428 {
  4970. border-width:0px;
  4971. position:absolute;
  4972. left:2619px;
  4973. top:415px;
  4974. width:80px;
  4975. height:30px;
  4976. display:flex;
  4977. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4978. font-weight:400;
  4979. font-style:normal;
  4980. font-size:14px;
  4981. color:#7F7F7F;
  4982. line-height:30px;
  4983. }
  4984. #u17428 .text {
  4985. position:absolute;
  4986. align-self:flex-start;
  4987. padding:0px 0px 0px 0px;
  4988. box-sizing:border-box;
  4989. width:100%;
  4990. }
  4991. #u17428_text {
  4992. border-width:0px;
  4993. word-wrap:break-word;
  4994. text-transform:none;
  4995. }
  4996. #u17429_div {
  4997. border-width:0px;
  4998. position:absolute;
  4999. left:0px;
  5000. top:0px;
  5001. width:82px;
  5002. height:30px;
  5003. background:inherit;
  5004. background-color:rgba(255, 255, 255, 0);
  5005. border:none;
  5006. border-left:0px;
  5007. border-top:0px;
  5008. border-right:0px;
  5009. border-radius:0px;
  5010. border-bottom-right-radius:0px;
  5011. border-bottom-left-radius:0px;
  5012. -moz-box-shadow:none;
  5013. -webkit-box-shadow:none;
  5014. box-shadow:none;
  5015. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5016. font-weight:400;
  5017. font-style:normal;
  5018. font-size:14px;
  5019. line-height:30px;
  5020. }
  5021. #u17429 {
  5022. border-width:0px;
  5023. position:absolute;
  5024. left:2699px;
  5025. top:415px;
  5026. width:82px;
  5027. height:30px;
  5028. display:flex;
  5029. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5030. font-weight:400;
  5031. font-style:normal;
  5032. font-size:14px;
  5033. line-height:30px;
  5034. }
  5035. #u17429 .text {
  5036. position:absolute;
  5037. align-self:flex-start;
  5038. padding:0px 0px 0px 0px;
  5039. box-sizing:border-box;
  5040. width:100%;
  5041. }
  5042. #u17429_text {
  5043. border-width:0px;
  5044. white-space:nowrap;
  5045. text-transform:none;
  5046. }
  5047. #u17430_div {
  5048. border-width:0px;
  5049. position:absolute;
  5050. left:0px;
  5051. top:0px;
  5052. width:80px;
  5053. height:30px;
  5054. background:inherit;
  5055. background-color:rgba(255, 255, 255, 0);
  5056. border:none;
  5057. border-left:0px;
  5058. border-top:0px;
  5059. border-right:0px;
  5060. border-radius:0px;
  5061. border-bottom-right-radius:0px;
  5062. border-bottom-left-radius:0px;
  5063. -moz-box-shadow:none;
  5064. -webkit-box-shadow:none;
  5065. box-shadow:none;
  5066. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5067. font-weight:400;
  5068. font-style:normal;
  5069. font-size:14px;
  5070. color:#7F7F7F;
  5071. line-height:30px;
  5072. }
  5073. #u17430 {
  5074. border-width:0px;
  5075. position:absolute;
  5076. left:2619px;
  5077. top:455px;
  5078. width:80px;
  5079. height:30px;
  5080. display:flex;
  5081. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5082. font-weight:400;
  5083. font-style:normal;
  5084. font-size:14px;
  5085. color:#7F7F7F;
  5086. line-height:30px;
  5087. }
  5088. #u17430 .text {
  5089. position:absolute;
  5090. align-self:flex-start;
  5091. padding:0px 0px 0px 0px;
  5092. box-sizing:border-box;
  5093. width:100%;
  5094. }
  5095. #u17430_text {
  5096. border-width:0px;
  5097. word-wrap:break-word;
  5098. text-transform:none;
  5099. }
  5100. #u17431_div {
  5101. border-width:0px;
  5102. position:absolute;
  5103. left:0px;
  5104. top:0px;
  5105. width:113px;
  5106. height:30px;
  5107. background:inherit;
  5108. background-color:rgba(255, 255, 255, 0);
  5109. border:none;
  5110. border-left:0px;
  5111. border-top:0px;
  5112. border-right:0px;
  5113. border-radius:0px;
  5114. border-bottom-right-radius:0px;
  5115. border-bottom-left-radius:0px;
  5116. -moz-box-shadow:none;
  5117. -webkit-box-shadow:none;
  5118. box-shadow:none;
  5119. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5120. font-weight:400;
  5121. font-style:normal;
  5122. font-size:14px;
  5123. line-height:30px;
  5124. }
  5125. #u17431 {
  5126. border-width:0px;
  5127. position:absolute;
  5128. left:2699px;
  5129. top:455px;
  5130. width:113px;
  5131. height:30px;
  5132. display:flex;
  5133. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5134. font-weight:400;
  5135. font-style:normal;
  5136. font-size:14px;
  5137. line-height:30px;
  5138. }
  5139. #u17431 .text {
  5140. position:absolute;
  5141. align-self:flex-start;
  5142. padding:0px 0px 0px 0px;
  5143. box-sizing:border-box;
  5144. width:100%;
  5145. }
  5146. #u17431_text {
  5147. border-width:0px;
  5148. white-space:nowrap;
  5149. text-transform:none;
  5150. }
  5151. #u17432_div {
  5152. border-width:0px;
  5153. position:absolute;
  5154. left:0px;
  5155. top:0px;
  5156. width:80px;
  5157. height:30px;
  5158. background:inherit;
  5159. background-color:rgba(255, 255, 255, 0);
  5160. border:none;
  5161. border-left:0px;
  5162. border-top:0px;
  5163. border-right:0px;
  5164. border-radius:0px;
  5165. border-bottom-right-radius:0px;
  5166. border-bottom-left-radius:0px;
  5167. -moz-box-shadow:none;
  5168. -webkit-box-shadow:none;
  5169. box-shadow:none;
  5170. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5171. font-weight:400;
  5172. font-style:normal;
  5173. font-size:14px;
  5174. color:#7F7F7F;
  5175. line-height:30px;
  5176. }
  5177. #u17432 {
  5178. border-width:0px;
  5179. position:absolute;
  5180. left:2619px;
  5181. top:295px;
  5182. width:80px;
  5183. height:30px;
  5184. display:flex;
  5185. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5186. font-weight:400;
  5187. font-style:normal;
  5188. font-size:14px;
  5189. color:#7F7F7F;
  5190. line-height:30px;
  5191. }
  5192. #u17432 .text {
  5193. position:absolute;
  5194. align-self:flex-start;
  5195. padding:0px 0px 0px 0px;
  5196. box-sizing:border-box;
  5197. width:100%;
  5198. }
  5199. #u17432_text {
  5200. border-width:0px;
  5201. word-wrap:break-word;
  5202. text-transform:none;
  5203. }
  5204. #u17433_div {
  5205. border-width:0px;
  5206. position:absolute;
  5207. left:0px;
  5208. top:0px;
  5209. width:141px;
  5210. height:30px;
  5211. background:inherit;
  5212. background-color:rgba(255, 255, 255, 0);
  5213. border:none;
  5214. border-left:0px;
  5215. border-top:0px;
  5216. border-right:0px;
  5217. border-radius:0px;
  5218. border-bottom-right-radius:0px;
  5219. border-bottom-left-radius:0px;
  5220. -moz-box-shadow:none;
  5221. -webkit-box-shadow:none;
  5222. box-shadow:none;
  5223. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5224. font-weight:400;
  5225. font-style:normal;
  5226. font-size:14px;
  5227. line-height:30px;
  5228. }
  5229. #u17433 {
  5230. border-width:0px;
  5231. position:absolute;
  5232. left:2699px;
  5233. top:295px;
  5234. width:141px;
  5235. height:30px;
  5236. display:flex;
  5237. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5238. font-weight:400;
  5239. font-style:normal;
  5240. font-size:14px;
  5241. line-height:30px;
  5242. }
  5243. #u17433 .text {
  5244. position:absolute;
  5245. align-self:flex-start;
  5246. padding:0px 0px 0px 0px;
  5247. box-sizing:border-box;
  5248. width:100%;
  5249. }
  5250. #u17433_text {
  5251. border-width:0px;
  5252. white-space:nowrap;
  5253. text-transform:none;
  5254. }
  5255. #u17434_div {
  5256. border-width:0px;
  5257. position:absolute;
  5258. left:0px;
  5259. top:0px;
  5260. width:85px;
  5261. height:30px;
  5262. background:inherit;
  5263. background-color:rgba(255, 255, 255, 0);
  5264. border:none;
  5265. border-left:0px;
  5266. border-top:0px;
  5267. border-right:0px;
  5268. border-radius:0px;
  5269. border-bottom-right-radius:0px;
  5270. border-bottom-left-radius:0px;
  5271. -moz-box-shadow:none;
  5272. -webkit-box-shadow:none;
  5273. box-shadow:none;
  5274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5275. font-weight:400;
  5276. font-style:normal;
  5277. font-size:14px;
  5278. color:#7F7F7F;
  5279. line-height:30px;
  5280. }
  5281. #u17434 {
  5282. border-width:0px;
  5283. position:absolute;
  5284. left:2205px;
  5285. top:495px;
  5286. width:85px;
  5287. height:30px;
  5288. display:flex;
  5289. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5290. font-weight:400;
  5291. font-style:normal;
  5292. font-size:14px;
  5293. color:#7F7F7F;
  5294. line-height:30px;
  5295. }
  5296. #u17434 .text {
  5297. position:absolute;
  5298. align-self:flex-start;
  5299. padding:0px 0px 0px 0px;
  5300. box-sizing:border-box;
  5301. width:100%;
  5302. }
  5303. #u17434_text {
  5304. border-width:0px;
  5305. white-space:nowrap;
  5306. text-transform:none;
  5307. }
  5308. #u17435_img {
  5309. border-width:0px;
  5310. position:absolute;
  5311. left:0px;
  5312. top:0px;
  5313. width:153px;
  5314. height:107px;
  5315. }
  5316. #u17435 {
  5317. border-width:0px;
  5318. position:absolute;
  5319. left:2205px;
  5320. top:525px;
  5321. width:153px;
  5322. height:107px;
  5323. display:flex;
  5324. }
  5325. #u17435 .text {
  5326. position:absolute;
  5327. align-self:center;
  5328. padding:2px 2px 2px 2px;
  5329. box-sizing:border-box;
  5330. width:100%;
  5331. }
  5332. #u17435_text {
  5333. border-width:0px;
  5334. word-wrap:break-word;
  5335. text-transform:none;
  5336. visibility:hidden;
  5337. }
  5338. #u17436_img {
  5339. border-width:0px;
  5340. position:absolute;
  5341. left:0px;
  5342. top:0px;
  5343. width:153px;
  5344. height:107px;
  5345. }
  5346. #u17436 {
  5347. border-width:0px;
  5348. position:absolute;
  5349. left:2368px;
  5350. top:525px;
  5351. width:153px;
  5352. height:107px;
  5353. display:flex;
  5354. }
  5355. #u17436 .text {
  5356. position:absolute;
  5357. align-self:center;
  5358. padding:2px 2px 2px 2px;
  5359. box-sizing:border-box;
  5360. width:100%;
  5361. }
  5362. #u17436_text {
  5363. border-width:0px;
  5364. word-wrap:break-word;
  5365. text-transform:none;
  5366. visibility:hidden;
  5367. }
  5368. #u17437_div {
  5369. border-width:0px;
  5370. position:absolute;
  5371. left:0px;
  5372. top:0px;
  5373. width:71px;
  5374. height:30px;
  5375. background:inherit;
  5376. background-color:rgba(255, 255, 255, 0);
  5377. border:none;
  5378. border-left:0px;
  5379. border-top:0px;
  5380. border-right:0px;
  5381. border-radius:0px;
  5382. border-bottom-right-radius:0px;
  5383. border-bottom-left-radius:0px;
  5384. -moz-box-shadow:none;
  5385. -webkit-box-shadow:none;
  5386. box-shadow:none;
  5387. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5388. font-weight:400;
  5389. font-style:normal;
  5390. font-size:14px;
  5391. color:#7F7F7F;
  5392. line-height:30px;
  5393. }
  5394. #u17437 {
  5395. border-width:0px;
  5396. position:absolute;
  5397. left:2619px;
  5398. top:495px;
  5399. width:71px;
  5400. height:30px;
  5401. display:flex;
  5402. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5403. font-weight:400;
  5404. font-style:normal;
  5405. font-size:14px;
  5406. color:#7F7F7F;
  5407. line-height:30px;
  5408. }
  5409. #u17437 .text {
  5410. position:absolute;
  5411. align-self:flex-start;
  5412. padding:0px 0px 0px 0px;
  5413. box-sizing:border-box;
  5414. width:100%;
  5415. }
  5416. #u17437_text {
  5417. border-width:0px;
  5418. white-space:nowrap;
  5419. text-transform:none;
  5420. }
  5421. #u17438_img {
  5422. border-width:0px;
  5423. position:absolute;
  5424. left:0px;
  5425. top:0px;
  5426. width:146px;
  5427. height:102px;
  5428. }
  5429. #u17438 {
  5430. border-width:0px;
  5431. position:absolute;
  5432. left:2619px;
  5433. top:525px;
  5434. width:146px;
  5435. height:102px;
  5436. display:flex;
  5437. }
  5438. #u17438 .text {
  5439. position:absolute;
  5440. align-self:center;
  5441. padding:2px 2px 2px 2px;
  5442. box-sizing:border-box;
  5443. width:100%;
  5444. }
  5445. #u17438_text {
  5446. border-width:0px;
  5447. word-wrap:break-word;
  5448. text-transform:none;
  5449. visibility:hidden;
  5450. }
  5451. #u17439_img {
  5452. border-width:0px;
  5453. position:absolute;
  5454. left:0px;
  5455. top:0px;
  5456. width:146px;
  5457. height:102px;
  5458. }
  5459. #u17439 {
  5460. border-width:0px;
  5461. position:absolute;
  5462. left:2775px;
  5463. top:525px;
  5464. width:146px;
  5465. height:102px;
  5466. display:flex;
  5467. }
  5468. #u17439 .text {
  5469. position:absolute;
  5470. align-self:center;
  5471. padding:2px 2px 2px 2px;
  5472. box-sizing:border-box;
  5473. width:100%;
  5474. }
  5475. #u17439_text {
  5476. border-width:0px;
  5477. word-wrap:break-word;
  5478. text-transform:none;
  5479. visibility:hidden;
  5480. }
  5481. #u17440_img {
  5482. border-width:0px;
  5483. position:absolute;
  5484. left:0px;
  5485. top:0px;
  5486. width:146px;
  5487. height:102px;
  5488. }
  5489. #u17440 {
  5490. border-width:0px;
  5491. position:absolute;
  5492. left:2931px;
  5493. top:525px;
  5494. width:146px;
  5495. height:102px;
  5496. display:flex;
  5497. }
  5498. #u17440 .text {
  5499. position:absolute;
  5500. align-self:center;
  5501. padding:2px 2px 2px 2px;
  5502. box-sizing:border-box;
  5503. width:100%;
  5504. }
  5505. #u17440_text {
  5506. border-width:0px;
  5507. word-wrap:break-word;
  5508. text-transform:none;
  5509. visibility:hidden;
  5510. }
  5511. #u17441_div {
  5512. border-width:0px;
  5513. position:absolute;
  5514. left:0px;
  5515. top:0px;
  5516. width:80px;
  5517. height:30px;
  5518. background:inherit;
  5519. background-color:rgba(255, 255, 255, 0);
  5520. border:none;
  5521. border-left:0px;
  5522. border-top:0px;
  5523. border-right:0px;
  5524. border-radius:0px;
  5525. border-bottom-right-radius:0px;
  5526. border-bottom-left-radius:0px;
  5527. -moz-box-shadow:none;
  5528. -webkit-box-shadow:none;
  5529. box-shadow:none;
  5530. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5531. font-weight:400;
  5532. font-style:normal;
  5533. font-size:14px;
  5534. color:#7F7F7F;
  5535. line-height:30px;
  5536. }
  5537. #u17441 {
  5538. border-width:0px;
  5539. position:absolute;
  5540. left:2180px;
  5541. top:195px;
  5542. width:80px;
  5543. height:30px;
  5544. display:flex;
  5545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5546. font-weight:400;
  5547. font-style:normal;
  5548. font-size:14px;
  5549. color:#7F7F7F;
  5550. line-height:30px;
  5551. }
  5552. #u17441 .text {
  5553. position:absolute;
  5554. align-self:flex-start;
  5555. padding:0px 0px 0px 0px;
  5556. box-sizing:border-box;
  5557. width:100%;
  5558. }
  5559. #u17441_text {
  5560. border-width:0px;
  5561. word-wrap:break-word;
  5562. text-transform:none;
  5563. }
  5564. #u17442_div {
  5565. border-width:0px;
  5566. position:absolute;
  5567. left:0px;
  5568. top:0px;
  5569. width:113px;
  5570. height:30px;
  5571. background:inherit;
  5572. background-color:rgba(255, 255, 255, 0);
  5573. border:none;
  5574. border-left:0px;
  5575. border-top:0px;
  5576. border-right:0px;
  5577. border-radius:0px;
  5578. border-bottom-right-radius:0px;
  5579. border-bottom-left-radius:0px;
  5580. -moz-box-shadow:none;
  5581. -webkit-box-shadow:none;
  5582. box-shadow:none;
  5583. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5584. font-weight:400;
  5585. font-style:normal;
  5586. font-size:14px;
  5587. line-height:30px;
  5588. }
  5589. #u17442 {
  5590. border-width:0px;
  5591. position:absolute;
  5592. left:2260px;
  5593. top:195px;
  5594. width:113px;
  5595. height:30px;
  5596. display:flex;
  5597. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5598. font-weight:400;
  5599. font-style:normal;
  5600. font-size:14px;
  5601. line-height:30px;
  5602. }
  5603. #u17442 .text {
  5604. position:absolute;
  5605. align-self:flex-start;
  5606. padding:0px 0px 0px 0px;
  5607. box-sizing:border-box;
  5608. width:100%;
  5609. }
  5610. #u17442_text {
  5611. border-width:0px;
  5612. white-space:nowrap;
  5613. text-transform:none;
  5614. }
  5615. #u17443_div {
  5616. border-width:0px;
  5617. position:absolute;
  5618. left:0px;
  5619. top:0px;
  5620. width:80px;
  5621. height:30px;
  5622. background:inherit;
  5623. background-color:rgba(255, 255, 255, 0);
  5624. border:none;
  5625. border-left:0px;
  5626. border-top:0px;
  5627. border-right:0px;
  5628. border-radius:0px;
  5629. border-bottom-right-radius:0px;
  5630. border-bottom-left-radius:0px;
  5631. -moz-box-shadow:none;
  5632. -webkit-box-shadow:none;
  5633. box-shadow:none;
  5634. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5635. font-weight:400;
  5636. font-style:normal;
  5637. font-size:14px;
  5638. color:#7F7F7F;
  5639. line-height:30px;
  5640. }
  5641. #u17443 {
  5642. border-width:0px;
  5643. position:absolute;
  5644. left:2619px;
  5645. top:195px;
  5646. width:80px;
  5647. height:30px;
  5648. display:flex;
  5649. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5650. font-weight:400;
  5651. font-style:normal;
  5652. font-size:14px;
  5653. color:#7F7F7F;
  5654. line-height:30px;
  5655. }
  5656. #u17443 .text {
  5657. position:absolute;
  5658. align-self:flex-start;
  5659. padding:0px 0px 0px 0px;
  5660. box-sizing:border-box;
  5661. width:100%;
  5662. }
  5663. #u17443_text {
  5664. border-width:0px;
  5665. word-wrap:break-word;
  5666. text-transform:none;
  5667. }
  5668. #u17444_div {
  5669. border-width:0px;
  5670. position:absolute;
  5671. left:0px;
  5672. top:0px;
  5673. width:57px;
  5674. height:30px;
  5675. background:inherit;
  5676. background-color:rgba(255, 255, 255, 0);
  5677. border:none;
  5678. border-left:0px;
  5679. border-top:0px;
  5680. border-right:0px;
  5681. border-radius:0px;
  5682. border-bottom-right-radius:0px;
  5683. border-bottom-left-radius:0px;
  5684. -moz-box-shadow:none;
  5685. -webkit-box-shadow:none;
  5686. box-shadow:none;
  5687. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5688. font-weight:400;
  5689. font-style:normal;
  5690. font-size:14px;
  5691. line-height:30px;
  5692. }
  5693. #u17444 {
  5694. border-width:0px;
  5695. position:absolute;
  5696. left:2699px;
  5697. top:195px;
  5698. width:57px;
  5699. height:30px;
  5700. display:flex;
  5701. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5702. font-weight:400;
  5703. font-style:normal;
  5704. font-size:14px;
  5705. line-height:30px;
  5706. }
  5707. #u17444 .text {
  5708. position:absolute;
  5709. align-self:flex-start;
  5710. padding:0px 0px 0px 0px;
  5711. box-sizing:border-box;
  5712. width:100%;
  5713. }
  5714. #u17444_text {
  5715. border-width:0px;
  5716. white-space:nowrap;
  5717. text-transform:none;
  5718. }
  5719. #u17445_div {
  5720. border-width:0px;
  5721. position:absolute;
  5722. left:0px;
  5723. top:0px;
  5724. width:85px;
  5725. height:30px;
  5726. background:inherit;
  5727. background-color:rgba(255, 255, 255, 0);
  5728. border:none;
  5729. border-left:0px;
  5730. border-top:0px;
  5731. border-right:0px;
  5732. border-radius:0px;
  5733. border-bottom-right-radius:0px;
  5734. border-bottom-left-radius:0px;
  5735. -moz-box-shadow:none;
  5736. -webkit-box-shadow:none;
  5737. box-shadow:none;
  5738. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5739. font-weight:400;
  5740. font-style:normal;
  5741. font-size:14px;
  5742. color:#7F7F7F;
  5743. line-height:30px;
  5744. }
  5745. #u17445 {
  5746. border-width:0px;
  5747. position:absolute;
  5748. left:2619px;
  5749. top:235px;
  5750. width:85px;
  5751. height:30px;
  5752. display:flex;
  5753. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5754. font-weight:400;
  5755. font-style:normal;
  5756. font-size:14px;
  5757. color:#7F7F7F;
  5758. line-height:30px;
  5759. }
  5760. #u17445 .text {
  5761. position:absolute;
  5762. align-self:flex-start;
  5763. padding:0px 0px 0px 0px;
  5764. box-sizing:border-box;
  5765. width:100%;
  5766. }
  5767. #u17445_text {
  5768. border-width:0px;
  5769. white-space:nowrap;
  5770. text-transform:none;
  5771. }
  5772. #u17446_div {
  5773. border-width:0px;
  5774. position:absolute;
  5775. left:0px;
  5776. top:0px;
  5777. width:23px;
  5778. height:30px;
  5779. background:inherit;
  5780. background-color:rgba(255, 255, 255, 0);
  5781. border:none;
  5782. border-left:0px;
  5783. border-top:0px;
  5784. border-right:0px;
  5785. border-radius:0px;
  5786. border-bottom-right-radius:0px;
  5787. border-bottom-left-radius:0px;
  5788. -moz-box-shadow:none;
  5789. -webkit-box-shadow:none;
  5790. box-shadow:none;
  5791. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5792. font-weight:400;
  5793. font-style:normal;
  5794. font-size:14px;
  5795. line-height:30px;
  5796. }
  5797. #u17446 {
  5798. border-width:0px;
  5799. position:absolute;
  5800. left:2699px;
  5801. top:235px;
  5802. width:23px;
  5803. height:30px;
  5804. display:flex;
  5805. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5806. font-weight:400;
  5807. font-style:normal;
  5808. font-size:14px;
  5809. line-height:30px;
  5810. }
  5811. #u17446 .text {
  5812. position:absolute;
  5813. align-self:flex-start;
  5814. padding:0px 0px 0px 0px;
  5815. box-sizing:border-box;
  5816. width:100%;
  5817. }
  5818. #u17446_text {
  5819. border-width:0px;
  5820. white-space:nowrap;
  5821. text-transform:none;
  5822. }
  5823. #u17447_div {
  5824. border-width:0px;
  5825. position:absolute;
  5826. left:0px;
  5827. top:0px;
  5828. width:57px;
  5829. height:30px;
  5830. background:inherit;
  5831. background-color:rgba(255, 255, 255, 0);
  5832. border:none;
  5833. border-left:0px;
  5834. border-top:0px;
  5835. border-right:0px;
  5836. border-radius:0px;
  5837. border-bottom-right-radius:0px;
  5838. border-bottom-left-radius:0px;
  5839. -moz-box-shadow:none;
  5840. -webkit-box-shadow:none;
  5841. box-shadow:none;
  5842. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5843. font-weight:400;
  5844. font-style:normal;
  5845. font-size:14px;
  5846. color:#7F7F7F;
  5847. line-height:30px;
  5848. }
  5849. #u17447 {
  5850. border-width:0px;
  5851. position:absolute;
  5852. left:2180px;
  5853. top:235px;
  5854. width:57px;
  5855. height:30px;
  5856. display:flex;
  5857. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5858. font-weight:400;
  5859. font-style:normal;
  5860. font-size:14px;
  5861. color:#7F7F7F;
  5862. line-height:30px;
  5863. }
  5864. #u17447 .text {
  5865. position:absolute;
  5866. align-self:flex-start;
  5867. padding:0px 0px 0px 0px;
  5868. box-sizing:border-box;
  5869. width:100%;
  5870. }
  5871. #u17447_text {
  5872. border-width:0px;
  5873. white-space:nowrap;
  5874. text-transform:none;
  5875. }
  5876. #u17448_div {
  5877. border-width:0px;
  5878. position:absolute;
  5879. left:0px;
  5880. top:0px;
  5881. width:41px;
  5882. height:30px;
  5883. background:inherit;
  5884. background-color:rgba(255, 255, 255, 0);
  5885. border:none;
  5886. border-left:0px;
  5887. border-top:0px;
  5888. border-right:0px;
  5889. border-radius:0px;
  5890. border-bottom-right-radius:0px;
  5891. border-bottom-left-radius:0px;
  5892. -moz-box-shadow:none;
  5893. -webkit-box-shadow:none;
  5894. box-shadow:none;
  5895. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5896. font-weight:400;
  5897. font-style:normal;
  5898. font-size:14px;
  5899. line-height:30px;
  5900. }
  5901. #u17448 {
  5902. border-width:0px;
  5903. position:absolute;
  5904. left:2260px;
  5905. top:235px;
  5906. width:41px;
  5907. height:30px;
  5908. display:flex;
  5909. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5910. font-weight:400;
  5911. font-style:normal;
  5912. font-size:14px;
  5913. line-height:30px;
  5914. }
  5915. #u17448 .text {
  5916. position:absolute;
  5917. align-self:flex-start;
  5918. padding:0px 0px 0px 0px;
  5919. box-sizing:border-box;
  5920. width:100%;
  5921. }
  5922. #u17448_text {
  5923. border-width:0px;
  5924. white-space:nowrap;
  5925. text-transform:none;
  5926. }
  5927. #u17449 {
  5928. border-width:0px;
  5929. position:absolute;
  5930. left:0px;
  5931. top:0px;
  5932. width:0px;
  5933. height:0px;
  5934. }
  5935. #u17450_div {
  5936. border-width:0px;
  5937. position:absolute;
  5938. left:0px;
  5939. top:0px;
  5940. width:1000px;
  5941. height:1201px;
  5942. background:inherit;
  5943. background-color:rgba(242, 242, 242, 1);
  5944. box-sizing:border-box;
  5945. border-width:1px;
  5946. border-style:solid;
  5947. border-color:rgba(215, 215, 215, 1);
  5948. border-radius:0px;
  5949. -moz-box-shadow:none;
  5950. -webkit-box-shadow:none;
  5951. box-shadow:none;
  5952. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5953. font-weight:400;
  5954. font-style:normal;
  5955. font-size:14px;
  5956. color:#AAAAAA;
  5957. text-align:center;
  5958. line-height:30px;
  5959. }
  5960. #u17450 {
  5961. border-width:0px;
  5962. position:absolute;
  5963. left:3180px;
  5964. top:63px;
  5965. width:1000px;
  5966. height:1201px;
  5967. display:flex;
  5968. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5969. font-weight:400;
  5970. font-style:normal;
  5971. font-size:14px;
  5972. color:#AAAAAA;
  5973. text-align:center;
  5974. line-height:30px;
  5975. }
  5976. #u17450 .text {
  5977. position:absolute;
  5978. align-self:center;
  5979. padding:5px 10px 5px 10px;
  5980. box-sizing:border-box;
  5981. width:100%;
  5982. }
  5983. #u17450_text {
  5984. border-width:0px;
  5985. word-wrap:break-word;
  5986. text-transform:none;
  5987. visibility:hidden;
  5988. }
  5989. #u17451_div {
  5990. border-width:0px;
  5991. position:absolute;
  5992. left:0px;
  5993. top:0px;
  5994. width:1000px;
  5995. height:1201px;
  5996. background:inherit;
  5997. background-color:rgba(255, 255, 255, 1);
  5998. box-sizing:border-box;
  5999. border-width:1px;
  6000. border-style:solid;
  6001. border-color:rgba(215, 215, 215, 1);
  6002. border-radius:0px;
  6003. -moz-box-shadow:none;
  6004. -webkit-box-shadow:none;
  6005. box-shadow:none;
  6006. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6007. font-weight:400;
  6008. font-style:normal;
  6009. font-size:14px;
  6010. color:#AAAAAA;
  6011. text-align:center;
  6012. line-height:30px;
  6013. }
  6014. #u17451 {
  6015. border-width:0px;
  6016. position:absolute;
  6017. left:3180px;
  6018. top:63px;
  6019. width:1000px;
  6020. height:1201px;
  6021. display:flex;
  6022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6023. font-weight:400;
  6024. font-style:normal;
  6025. font-size:14px;
  6026. color:#AAAAAA;
  6027. text-align:center;
  6028. line-height:30px;
  6029. }
  6030. #u17451 .text {
  6031. position:absolute;
  6032. align-self:center;
  6033. padding:5px 10px 5px 10px;
  6034. box-sizing:border-box;
  6035. width:100%;
  6036. }
  6037. #u17451_text {
  6038. border-width:0px;
  6039. word-wrap:break-word;
  6040. text-transform:none;
  6041. visibility:hidden;
  6042. }
  6043. #u17452_div {
  6044. border-width:0px;
  6045. position:absolute;
  6046. left:0px;
  6047. top:0px;
  6048. width:47px;
  6049. height:35px;
  6050. background:inherit;
  6051. background-color:rgba(255, 255, 255, 0);
  6052. border:none;
  6053. border-top:0px;
  6054. border-right:0px;
  6055. border-bottom:0px;
  6056. border-radius:0px;
  6057. border-top-left-radius:0px;
  6058. border-bottom-left-radius:0px;
  6059. -moz-box-shadow:none;
  6060. -webkit-box-shadow:none;
  6061. box-shadow:none;
  6062. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6063. font-weight:500;
  6064. font-style:normal;
  6065. font-size:18px;
  6066. }
  6067. #u17452 {
  6068. border-width:0px;
  6069. position:absolute;
  6070. left:3200px;
  6071. top:81px;
  6072. width:47px;
  6073. height:35px;
  6074. display:flex;
  6075. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6076. font-weight:500;
  6077. font-style:normal;
  6078. font-size:18px;
  6079. }
  6080. #u17452 .text {
  6081. position:absolute;
  6082. align-self:center;
  6083. padding:5px 10px 5px 0px;
  6084. box-sizing:border-box;
  6085. width:100%;
  6086. }
  6087. #u17452_text {
  6088. border-width:0px;
  6089. white-space:nowrap;
  6090. text-transform:none;
  6091. }
  6092. #u17453 {
  6093. border-width:0px;
  6094. position:absolute;
  6095. left:0px;
  6096. top:0px;
  6097. width:0px;
  6098. height:0px;
  6099. }
  6100. #u17454_div {
  6101. border-width:0px;
  6102. position:absolute;
  6103. left:0px;
  6104. top:0px;
  6105. width:40px;
  6106. height:40px;
  6107. background:inherit;
  6108. background-color:rgba(255, 255, 255, 0);
  6109. border:none;
  6110. border-top:0px;
  6111. border-right:0px;
  6112. border-bottom:0px;
  6113. border-radius:0px;
  6114. border-top-left-radius:0px;
  6115. border-bottom-left-radius:0px;
  6116. -moz-box-shadow:none;
  6117. -webkit-box-shadow:none;
  6118. box-shadow:none;
  6119. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6120. font-weight:500;
  6121. font-style:normal;
  6122. font-size:14px;
  6123. text-align:center;
  6124. }
  6125. #u17454 {
  6126. border-width:0px;
  6127. position:absolute;
  6128. left:4140px;
  6129. top:63px;
  6130. width:40px;
  6131. height:40px;
  6132. display:flex;
  6133. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6134. font-weight:500;
  6135. font-style:normal;
  6136. font-size:14px;
  6137. text-align:center;
  6138. }
  6139. #u17454 .text {
  6140. position:absolute;
  6141. align-self:center;
  6142. padding:5px 10px 5px 0px;
  6143. box-sizing:border-box;
  6144. width:100%;
  6145. }
  6146. #u17454_text {
  6147. border-width:0px;
  6148. word-wrap:break-word;
  6149. text-transform:none;
  6150. }
  6151. #u17455_img {
  6152. border-width:0px;
  6153. position:absolute;
  6154. left:0px;
  6155. top:0px;
  6156. width:13px;
  6157. height:13px;
  6158. }
  6159. #u17455 {
  6160. border-width:0px;
  6161. position:absolute;
  6162. left:4128px;
  6163. top:79px;
  6164. width:13px;
  6165. height:13px;
  6166. display:flex;
  6167. font-size:14px;
  6168. }
  6169. #u17455 .text {
  6170. position:absolute;
  6171. align-self:center;
  6172. padding:2px 2px 2px 2px;
  6173. box-sizing:border-box;
  6174. width:100%;
  6175. }
  6176. #u17455_text {
  6177. border-width:0px;
  6178. word-wrap:break-word;
  6179. text-transform:none;
  6180. visibility:hidden;
  6181. }
  6182. #u17456_div {
  6183. border-width:0px;
  6184. position:absolute;
  6185. left:0px;
  6186. top:0px;
  6187. width:59px;
  6188. height:43px;
  6189. background:inherit;
  6190. background-color:rgba(255, 255, 255, 0);
  6191. border:none;
  6192. border-top:0px;
  6193. border-right:0px;
  6194. border-bottom:0px;
  6195. border-radius:0px;
  6196. border-top-left-radius:0px;
  6197. border-bottom-left-radius:0px;
  6198. -moz-box-shadow:none;
  6199. -webkit-box-shadow:none;
  6200. box-shadow:none;
  6201. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6202. font-weight:500;
  6203. font-style:normal;
  6204. font-size:24px;
  6205. }
  6206. #u17456 {
  6207. border-width:0px;
  6208. position:absolute;
  6209. left:3210px;
  6210. top:132px;
  6211. width:59px;
  6212. height:43px;
  6213. display:flex;
  6214. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6215. font-weight:500;
  6216. font-style:normal;
  6217. font-size:24px;
  6218. }
  6219. #u17456 .text {
  6220. position:absolute;
  6221. align-self:center;
  6222. padding:5px 10px 5px 0px;
  6223. box-sizing:border-box;
  6224. width:100%;
  6225. }
  6226. #u17456_text {
  6227. border-width:0px;
  6228. white-space:nowrap;
  6229. text-transform:none;
  6230. }
  6231. #u17457 {
  6232. border-width:0px;
  6233. position:absolute;
  6234. left:0px;
  6235. top:0px;
  6236. width:0px;
  6237. height:0px;
  6238. }
  6239. #u17458_div {
  6240. border-width:0px;
  6241. position:absolute;
  6242. left:0px;
  6243. top:0px;
  6244. width:1000px;
  6245. height:60px;
  6246. background:inherit;
  6247. background-color:rgba(255, 255, 255, 1);
  6248. box-sizing:border-box;
  6249. border-width:1px;
  6250. border-style:solid;
  6251. border-color:rgba(215, 215, 215, 1);
  6252. border-radius:0px;
  6253. -moz-box-shadow:none;
  6254. -webkit-box-shadow:none;
  6255. box-shadow:none;
  6256. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6257. font-weight:400;
  6258. font-style:normal;
  6259. font-size:14px;
  6260. color:#AAAAAA;
  6261. text-align:center;
  6262. line-height:30px;
  6263. }
  6264. #u17458 {
  6265. border-width:0px;
  6266. position:absolute;
  6267. left:3180px;
  6268. top:1204px;
  6269. width:1000px;
  6270. height:60px;
  6271. display:flex;
  6272. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6273. font-weight:400;
  6274. font-style:normal;
  6275. font-size:14px;
  6276. color:#AAAAAA;
  6277. text-align:center;
  6278. line-height:30px;
  6279. }
  6280. #u17458 .text {
  6281. position:absolute;
  6282. align-self:center;
  6283. padding:5px 10px 5px 10px;
  6284. box-sizing:border-box;
  6285. width:100%;
  6286. }
  6287. #u17458_text {
  6288. border-width:0px;
  6289. word-wrap:break-word;
  6290. text-transform:none;
  6291. visibility:hidden;
  6292. }
  6293. #u17459_div {
  6294. border-width:0px;
  6295. position:absolute;
  6296. left:0px;
  6297. top:0px;
  6298. width:80px;
  6299. height:30px;
  6300. background:inherit;
  6301. background-color:rgba(255, 255, 255, 1);
  6302. box-sizing:border-box;
  6303. border-width:1px;
  6304. border-style:solid;
  6305. border-color:rgba(170, 170, 170, 1);
  6306. border-radius:4px;
  6307. -moz-box-shadow:none;
  6308. -webkit-box-shadow:none;
  6309. box-shadow:none;
  6310. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6311. font-weight:400;
  6312. font-style:normal;
  6313. font-size:14px;
  6314. }
  6315. #u17459 {
  6316. border-width:0px;
  6317. position:absolute;
  6318. left:4074px;
  6319. top:1219px;
  6320. width:80px;
  6321. height:30px;
  6322. display:flex;
  6323. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6324. font-weight:400;
  6325. font-style:normal;
  6326. font-size:14px;
  6327. }
  6328. #u17459 .text {
  6329. position:absolute;
  6330. align-self:center;
  6331. padding:2px 2px 2px 2px;
  6332. box-sizing:border-box;
  6333. width:100%;
  6334. }
  6335. #u17459_text {
  6336. border-width:0px;
  6337. word-wrap:break-word;
  6338. text-transform:none;
  6339. }
  6340. #u17460_img {
  6341. border-width:0px;
  6342. position:absolute;
  6343. left:0px;
  6344. top:0px;
  6345. width:142px;
  6346. height:138px;
  6347. }
  6348. #u17460 {
  6349. border-width:0px;
  6350. position:absolute;
  6351. left:3990px;
  6352. top:115px;
  6353. width:142px;
  6354. height:138px;
  6355. display:flex;
  6356. -webkit-transform:rotate(315deg);
  6357. -moz-transform:rotate(315deg);
  6358. -ms-transform:rotate(315deg);
  6359. transform:rotate(315deg);
  6360. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6361. font-weight:400;
  6362. font-style:normal;
  6363. font-size:28px;
  6364. color:#7F7F7F;
  6365. }
  6366. #u17460 .text {
  6367. position:absolute;
  6368. align-self:center;
  6369. padding:2px 2px 2px 2px;
  6370. box-sizing:border-box;
  6371. width:100%;
  6372. }
  6373. #u17460_text {
  6374. border-width:0px;
  6375. word-wrap:break-word;
  6376. text-transform:none;
  6377. }
  6378. #u17461_div {
  6379. border-width:0px;
  6380. position:absolute;
  6381. left:0px;
  6382. top:0px;
  6383. width:80px;
  6384. height:30px;
  6385. background:inherit;
  6386. background-color:rgba(255, 255, 255, 0);
  6387. border:none;
  6388. border-left:0px;
  6389. border-top:0px;
  6390. border-right:0px;
  6391. border-radius:0px;
  6392. border-bottom-right-radius:0px;
  6393. border-bottom-left-radius:0px;
  6394. -moz-box-shadow:none;
  6395. -webkit-box-shadow:none;
  6396. box-shadow:none;
  6397. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6398. font-weight:400;
  6399. font-style:normal;
  6400. font-size:14px;
  6401. color:#7F7F7F;
  6402. line-height:30px;
  6403. }
  6404. #u17461 {
  6405. border-width:0px;
  6406. position:absolute;
  6407. left:3210px;
  6408. top:635px;
  6409. width:80px;
  6410. height:30px;
  6411. display:flex;
  6412. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6413. font-weight:400;
  6414. font-style:normal;
  6415. font-size:14px;
  6416. color:#7F7F7F;
  6417. line-height:30px;
  6418. }
  6419. #u17461 .text {
  6420. position:absolute;
  6421. align-self:flex-start;
  6422. padding:0px 0px 0px 0px;
  6423. box-sizing:border-box;
  6424. width:100%;
  6425. }
  6426. #u17461_text {
  6427. border-width:0px;
  6428. word-wrap:break-word;
  6429. text-transform:none;
  6430. }
  6431. #u17462_div {
  6432. border-width:0px;
  6433. position:absolute;
  6434. left:0px;
  6435. top:0px;
  6436. width:121px;
  6437. height:30px;
  6438. background:inherit;
  6439. background-color:rgba(255, 255, 255, 0);
  6440. border:none;
  6441. border-left:0px;
  6442. border-top:0px;
  6443. border-right:0px;
  6444. border-radius:0px;
  6445. border-bottom-right-radius:0px;
  6446. border-bottom-left-radius:0px;
  6447. -moz-box-shadow:none;
  6448. -webkit-box-shadow:none;
  6449. box-shadow:none;
  6450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6451. font-weight:400;
  6452. font-style:normal;
  6453. font-size:14px;
  6454. line-height:30px;
  6455. }
  6456. #u17462 {
  6457. border-width:0px;
  6458. position:absolute;
  6459. left:3290px;
  6460. top:635px;
  6461. width:121px;
  6462. height:30px;
  6463. display:flex;
  6464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6465. font-weight:400;
  6466. font-style:normal;
  6467. font-size:14px;
  6468. line-height:30px;
  6469. }
  6470. #u17462 .text {
  6471. position:absolute;
  6472. align-self:flex-start;
  6473. padding:0px 0px 0px 0px;
  6474. box-sizing:border-box;
  6475. width:100%;
  6476. }
  6477. #u17462_text {
  6478. border-width:0px;
  6479. white-space:nowrap;
  6480. text-transform:none;
  6481. }
  6482. #u17463_div {
  6483. border-width:0px;
  6484. position:absolute;
  6485. left:0px;
  6486. top:0px;
  6487. width:80px;
  6488. height:30px;
  6489. background:inherit;
  6490. background-color:rgba(255, 255, 255, 0);
  6491. border:none;
  6492. border-left:0px;
  6493. border-top:0px;
  6494. border-right:0px;
  6495. border-radius:0px;
  6496. border-bottom-right-radius:0px;
  6497. border-bottom-left-radius:0px;
  6498. -moz-box-shadow:none;
  6499. -webkit-box-shadow:none;
  6500. box-shadow:none;
  6501. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6502. font-weight:400;
  6503. font-style:normal;
  6504. font-size:14px;
  6505. color:#7F7F7F;
  6506. line-height:30px;
  6507. }
  6508. #u17463 {
  6509. border-width:0px;
  6510. position:absolute;
  6511. left:3649px;
  6512. top:635px;
  6513. width:80px;
  6514. height:30px;
  6515. display:flex;
  6516. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6517. font-weight:400;
  6518. font-style:normal;
  6519. font-size:14px;
  6520. color:#7F7F7F;
  6521. line-height:30px;
  6522. }
  6523. #u17463 .text {
  6524. position:absolute;
  6525. align-self:flex-start;
  6526. padding:0px 0px 0px 0px;
  6527. box-sizing:border-box;
  6528. width:100%;
  6529. }
  6530. #u17463_text {
  6531. border-width:0px;
  6532. word-wrap:break-word;
  6533. text-transform:none;
  6534. }
  6535. #u17464_div {
  6536. border-width:0px;
  6537. position:absolute;
  6538. left:0px;
  6539. top:0px;
  6540. width:141px;
  6541. height:30px;
  6542. background:inherit;
  6543. background-color:rgba(255, 255, 255, 0);
  6544. border:none;
  6545. border-left:0px;
  6546. border-top:0px;
  6547. border-right:0px;
  6548. border-radius:0px;
  6549. border-bottom-right-radius:0px;
  6550. border-bottom-left-radius:0px;
  6551. -moz-box-shadow:none;
  6552. -webkit-box-shadow:none;
  6553. box-shadow:none;
  6554. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6555. font-weight:400;
  6556. font-style:normal;
  6557. font-size:14px;
  6558. line-height:30px;
  6559. }
  6560. #u17464 {
  6561. border-width:0px;
  6562. position:absolute;
  6563. left:3729px;
  6564. top:635px;
  6565. width:141px;
  6566. height:30px;
  6567. display:flex;
  6568. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6569. font-weight:400;
  6570. font-style:normal;
  6571. font-size:14px;
  6572. line-height:30px;
  6573. }
  6574. #u17464 .text {
  6575. position:absolute;
  6576. align-self:flex-start;
  6577. padding:0px 0px 0px 0px;
  6578. box-sizing:border-box;
  6579. width:100%;
  6580. }
  6581. #u17464_text {
  6582. border-width:0px;
  6583. white-space:nowrap;
  6584. text-transform:none;
  6585. }
  6586. #u17465 {
  6587. border-width:0px;
  6588. position:absolute;
  6589. left:0px;
  6590. top:0px;
  6591. width:0px;
  6592. height:0px;
  6593. }
  6594. #u17466_div {
  6595. border-width:0px;
  6596. position:absolute;
  6597. left:0px;
  6598. top:0px;
  6599. width:925px;
  6600. height:340px;
  6601. background:inherit;
  6602. background-color:rgba(242, 242, 242, 1);
  6603. box-sizing:border-box;
  6604. border-width:1px;
  6605. border-style:solid;
  6606. border-color:rgba(215, 215, 215, 1);
  6607. border-radius:0px;
  6608. -moz-box-shadow:none;
  6609. -webkit-box-shadow:none;
  6610. box-shadow:none;
  6611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6612. font-weight:400;
  6613. font-style:normal;
  6614. font-size:14px;
  6615. color:#AAAAAA;
  6616. text-align:center;
  6617. line-height:30px;
  6618. }
  6619. #u17466 {
  6620. border-width:0px;
  6621. position:absolute;
  6622. left:3210px;
  6623. top:275px;
  6624. width:925px;
  6625. height:340px;
  6626. display:flex;
  6627. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6628. font-weight:400;
  6629. font-style:normal;
  6630. font-size:14px;
  6631. color:#AAAAAA;
  6632. text-align:center;
  6633. line-height:30px;
  6634. }
  6635. #u17466 .text {
  6636. position:absolute;
  6637. align-self:center;
  6638. padding:5px 10px 5px 10px;
  6639. box-sizing:border-box;
  6640. width:100%;
  6641. }
  6642. #u17466_text {
  6643. border-width:0px;
  6644. word-wrap:break-word;
  6645. text-transform:none;
  6646. visibility:hidden;
  6647. }
  6648. #u17467_div {
  6649. border-width:0px;
  6650. position:absolute;
  6651. left:0px;
  6652. top:0px;
  6653. width:80px;
  6654. height:30px;
  6655. background:inherit;
  6656. background-color:rgba(255, 255, 255, 0);
  6657. border:none;
  6658. border-left:0px;
  6659. border-top:0px;
  6660. border-right:0px;
  6661. border-radius:0px;
  6662. border-bottom-right-radius:0px;
  6663. border-bottom-left-radius:0px;
  6664. -moz-box-shadow:none;
  6665. -webkit-box-shadow:none;
  6666. box-shadow:none;
  6667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6668. font-weight:400;
  6669. font-style:normal;
  6670. font-size:14px;
  6671. color:#7F7F7F;
  6672. line-height:30px;
  6673. }
  6674. #u17467 {
  6675. border-width:0px;
  6676. position:absolute;
  6677. left:3235px;
  6678. top:295px;
  6679. width:80px;
  6680. height:30px;
  6681. display:flex;
  6682. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6683. font-weight:400;
  6684. font-style:normal;
  6685. font-size:14px;
  6686. color:#7F7F7F;
  6687. line-height:30px;
  6688. }
  6689. #u17467 .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. #u17467_text {
  6697. border-width:0px;
  6698. word-wrap:break-word;
  6699. text-transform:none;
  6700. }
  6701. #u17468_div {
  6702. border-width:0px;
  6703. position:absolute;
  6704. left:0px;
  6705. top:0px;
  6706. width:57px;
  6707. height:30px;
  6708. background:inherit;
  6709. background-color:rgba(255, 255, 255, 0);
  6710. border:none;
  6711. border-left:0px;
  6712. border-top:0px;
  6713. border-right:0px;
  6714. border-radius:0px;
  6715. border-bottom-right-radius:0px;
  6716. border-bottom-left-radius:0px;
  6717. -moz-box-shadow:none;
  6718. -webkit-box-shadow:none;
  6719. box-shadow:none;
  6720. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6721. font-weight:400;
  6722. font-style:normal;
  6723. font-size:14px;
  6724. line-height:30px;
  6725. }
  6726. #u17468 {
  6727. border-width:0px;
  6728. position:absolute;
  6729. left:3315px;
  6730. top:295px;
  6731. width:57px;
  6732. height:30px;
  6733. display:flex;
  6734. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6735. font-weight:400;
  6736. font-style:normal;
  6737. font-size:14px;
  6738. line-height:30px;
  6739. }
  6740. #u17468 .text {
  6741. position:absolute;
  6742. align-self:flex-start;
  6743. padding:0px 0px 0px 0px;
  6744. box-sizing:border-box;
  6745. width:100%;
  6746. }
  6747. #u17468_text {
  6748. border-width:0px;
  6749. white-space:nowrap;
  6750. text-transform:none;
  6751. }
  6752. #u17469_div {
  6753. border-width:0px;
  6754. position:absolute;
  6755. left:0px;
  6756. top:0px;
  6757. width:80px;
  6758. height:30px;
  6759. background:inherit;
  6760. background-color:rgba(255, 255, 255, 0);
  6761. border:none;
  6762. border-left:0px;
  6763. border-top:0px;
  6764. border-right:0px;
  6765. border-radius:0px;
  6766. border-bottom-right-radius:0px;
  6767. border-bottom-left-radius:0px;
  6768. -moz-box-shadow:none;
  6769. -webkit-box-shadow:none;
  6770. box-shadow:none;
  6771. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6772. font-weight:400;
  6773. font-style:normal;
  6774. font-size:14px;
  6775. color:#7F7F7F;
  6776. line-height:30px;
  6777. }
  6778. #u17469 {
  6779. border-width:0px;
  6780. position:absolute;
  6781. left:3235px;
  6782. top:375px;
  6783. width:80px;
  6784. height:30px;
  6785. display:flex;
  6786. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6787. font-weight:400;
  6788. font-style:normal;
  6789. font-size:14px;
  6790. color:#7F7F7F;
  6791. line-height:30px;
  6792. }
  6793. #u17469 .text {
  6794. position:absolute;
  6795. align-self:flex-start;
  6796. padding:0px 0px 0px 0px;
  6797. box-sizing:border-box;
  6798. width:100%;
  6799. }
  6800. #u17469_text {
  6801. border-width:0px;
  6802. word-wrap:break-word;
  6803. text-transform:none;
  6804. }
  6805. #u17470_div {
  6806. border-width:0px;
  6807. position:absolute;
  6808. left:0px;
  6809. top:0px;
  6810. width:57px;
  6811. height:30px;
  6812. background:inherit;
  6813. background-color:rgba(255, 255, 255, 0);
  6814. border:none;
  6815. border-left:0px;
  6816. border-top:0px;
  6817. border-right:0px;
  6818. border-radius:0px;
  6819. border-bottom-right-radius:0px;
  6820. border-bottom-left-radius:0px;
  6821. -moz-box-shadow:none;
  6822. -webkit-box-shadow:none;
  6823. box-shadow:none;
  6824. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6825. font-weight:400;
  6826. font-style:normal;
  6827. font-size:14px;
  6828. line-height:30px;
  6829. }
  6830. #u17470 {
  6831. border-width:0px;
  6832. position:absolute;
  6833. left:3315px;
  6834. top:375px;
  6835. width:57px;
  6836. height:30px;
  6837. display:flex;
  6838. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6839. font-weight:400;
  6840. font-style:normal;
  6841. font-size:14px;
  6842. line-height:30px;
  6843. }
  6844. #u17470 .text {
  6845. position:absolute;
  6846. align-self:flex-start;
  6847. padding:0px 0px 0px 0px;
  6848. box-sizing:border-box;
  6849. width:100%;
  6850. }
  6851. #u17470_text {
  6852. border-width:0px;
  6853. white-space:nowrap;
  6854. text-transform:none;
  6855. }
  6856. #u17471_div {
  6857. border-width:0px;
  6858. position:absolute;
  6859. left:0px;
  6860. top:0px;
  6861. width:80px;
  6862. height:30px;
  6863. background:inherit;
  6864. background-color:rgba(255, 255, 255, 0);
  6865. border:none;
  6866. border-left:0px;
  6867. border-top:0px;
  6868. border-right:0px;
  6869. border-radius:0px;
  6870. border-bottom-right-radius:0px;
  6871. border-bottom-left-radius:0px;
  6872. -moz-box-shadow:none;
  6873. -webkit-box-shadow:none;
  6874. box-shadow:none;
  6875. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6876. font-weight:400;
  6877. font-style:normal;
  6878. font-size:14px;
  6879. color:#7F7F7F;
  6880. line-height:30px;
  6881. }
  6882. #u17471 {
  6883. border-width:0px;
  6884. position:absolute;
  6885. left:3649px;
  6886. top:375px;
  6887. width:80px;
  6888. height:30px;
  6889. display:flex;
  6890. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6891. font-weight:400;
  6892. font-style:normal;
  6893. font-size:14px;
  6894. color:#7F7F7F;
  6895. line-height:30px;
  6896. }
  6897. #u17471 .text {
  6898. position:absolute;
  6899. align-self:flex-start;
  6900. padding:0px 0px 0px 0px;
  6901. box-sizing:border-box;
  6902. width:100%;
  6903. }
  6904. #u17471_text {
  6905. border-width:0px;
  6906. word-wrap:break-word;
  6907. text-transform:none;
  6908. }
  6909. #u17472_div {
  6910. border-width:0px;
  6911. position:absolute;
  6912. left:0px;
  6913. top:0px;
  6914. width:113px;
  6915. height:30px;
  6916. background:inherit;
  6917. background-color:rgba(255, 255, 255, 0);
  6918. border:none;
  6919. border-left:0px;
  6920. border-top:0px;
  6921. border-right:0px;
  6922. border-radius:0px;
  6923. border-bottom-right-radius:0px;
  6924. border-bottom-left-radius:0px;
  6925. -moz-box-shadow:none;
  6926. -webkit-box-shadow:none;
  6927. box-shadow:none;
  6928. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6929. font-weight:400;
  6930. font-style:normal;
  6931. font-size:14px;
  6932. line-height:30px;
  6933. }
  6934. #u17472 {
  6935. border-width:0px;
  6936. position:absolute;
  6937. left:3729px;
  6938. top:375px;
  6939. width:113px;
  6940. height:30px;
  6941. display:flex;
  6942. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6943. font-weight:400;
  6944. font-style:normal;
  6945. font-size:14px;
  6946. line-height:30px;
  6947. }
  6948. #u17472 .text {
  6949. position:absolute;
  6950. align-self:flex-start;
  6951. padding:0px 0px 0px 0px;
  6952. box-sizing:border-box;
  6953. width:100%;
  6954. }
  6955. #u17472_text {
  6956. border-width:0px;
  6957. white-space:nowrap;
  6958. text-transform:none;
  6959. }
  6960. #u17473_div {
  6961. border-width:0px;
  6962. position:absolute;
  6963. left:0px;
  6964. top:0px;
  6965. width:80px;
  6966. height:30px;
  6967. background:inherit;
  6968. background-color:rgba(255, 255, 255, 0);
  6969. border:none;
  6970. border-left:0px;
  6971. border-top:0px;
  6972. border-right:0px;
  6973. border-radius:0px;
  6974. border-bottom-right-radius:0px;
  6975. border-bottom-left-radius:0px;
  6976. -moz-box-shadow:none;
  6977. -webkit-box-shadow:none;
  6978. box-shadow:none;
  6979. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6980. font-weight:400;
  6981. font-style:normal;
  6982. font-size:14px;
  6983. color:#7F7F7F;
  6984. line-height:30px;
  6985. }
  6986. #u17473 {
  6987. border-width:0px;
  6988. position:absolute;
  6989. left:3235px;
  6990. top:335px;
  6991. width:80px;
  6992. height:30px;
  6993. display:flex;
  6994. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6995. font-weight:400;
  6996. font-style:normal;
  6997. font-size:14px;
  6998. color:#7F7F7F;
  6999. line-height:30px;
  7000. }
  7001. #u17473 .text {
  7002. position:absolute;
  7003. align-self:flex-start;
  7004. padding:0px 0px 0px 0px;
  7005. box-sizing:border-box;
  7006. width:100%;
  7007. }
  7008. #u17473_text {
  7009. border-width:0px;
  7010. word-wrap:break-word;
  7011. text-transform:none;
  7012. }
  7013. #u17474_div {
  7014. border-width:0px;
  7015. position:absolute;
  7016. left:0px;
  7017. top:0px;
  7018. width:15px;
  7019. height:30px;
  7020. background:inherit;
  7021. background-color:rgba(255, 255, 255, 0);
  7022. border:none;
  7023. border-left:0px;
  7024. border-top:0px;
  7025. border-right:0px;
  7026. border-radius:0px;
  7027. border-bottom-right-radius:0px;
  7028. border-bottom-left-radius:0px;
  7029. -moz-box-shadow:none;
  7030. -webkit-box-shadow:none;
  7031. box-shadow:none;
  7032. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7033. font-weight:400;
  7034. font-style:normal;
  7035. font-size:14px;
  7036. line-height:30px;
  7037. }
  7038. #u17474 {
  7039. border-width:0px;
  7040. position:absolute;
  7041. left:3315px;
  7042. top:335px;
  7043. width:15px;
  7044. height:30px;
  7045. display:flex;
  7046. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7047. font-weight:400;
  7048. font-style:normal;
  7049. font-size:14px;
  7050. line-height:30px;
  7051. }
  7052. #u17474 .text {
  7053. position:absolute;
  7054. align-self:flex-start;
  7055. padding:0px 0px 0px 0px;
  7056. box-sizing:border-box;
  7057. width:100%;
  7058. }
  7059. #u17474_text {
  7060. border-width:0px;
  7061. white-space:nowrap;
  7062. text-transform:none;
  7063. }
  7064. #u17475_div {
  7065. border-width:0px;
  7066. position:absolute;
  7067. left:0px;
  7068. top:0px;
  7069. width:80px;
  7070. height:30px;
  7071. background:inherit;
  7072. background-color:rgba(255, 255, 255, 0);
  7073. border:none;
  7074. border-left:0px;
  7075. border-top:0px;
  7076. border-right:0px;
  7077. border-radius:0px;
  7078. border-bottom-right-radius:0px;
  7079. border-bottom-left-radius:0px;
  7080. -moz-box-shadow:none;
  7081. -webkit-box-shadow:none;
  7082. box-shadow:none;
  7083. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7084. font-weight:400;
  7085. font-style:normal;
  7086. font-size:14px;
  7087. color:#7F7F7F;
  7088. line-height:30px;
  7089. }
  7090. #u17475 {
  7091. border-width:0px;
  7092. position:absolute;
  7093. left:3649px;
  7094. top:415px;
  7095. width:80px;
  7096. height:30px;
  7097. display:flex;
  7098. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7099. font-weight:400;
  7100. font-style:normal;
  7101. font-size:14px;
  7102. color:#7F7F7F;
  7103. line-height:30px;
  7104. }
  7105. #u17475 .text {
  7106. position:absolute;
  7107. align-self:flex-start;
  7108. padding:0px 0px 0px 0px;
  7109. box-sizing:border-box;
  7110. width:100%;
  7111. }
  7112. #u17475_text {
  7113. border-width:0px;
  7114. word-wrap:break-word;
  7115. text-transform:none;
  7116. }
  7117. #u17476_div {
  7118. border-width:0px;
  7119. position:absolute;
  7120. left:0px;
  7121. top:0px;
  7122. width:113px;
  7123. height:30px;
  7124. background:inherit;
  7125. background-color:rgba(255, 255, 255, 0);
  7126. border:none;
  7127. border-left:0px;
  7128. border-top:0px;
  7129. border-right:0px;
  7130. border-radius:0px;
  7131. border-bottom-right-radius:0px;
  7132. border-bottom-left-radius:0px;
  7133. -moz-box-shadow:none;
  7134. -webkit-box-shadow:none;
  7135. box-shadow:none;
  7136. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7137. font-weight:400;
  7138. font-style:normal;
  7139. font-size:14px;
  7140. line-height:30px;
  7141. }
  7142. #u17476 {
  7143. border-width:0px;
  7144. position:absolute;
  7145. left:3729px;
  7146. top:415px;
  7147. width:113px;
  7148. height:30px;
  7149. display:flex;
  7150. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7151. font-weight:400;
  7152. font-style:normal;
  7153. font-size:14px;
  7154. line-height:30px;
  7155. }
  7156. #u17476 .text {
  7157. position:absolute;
  7158. align-self:flex-start;
  7159. padding:0px 0px 0px 0px;
  7160. box-sizing:border-box;
  7161. width:100%;
  7162. }
  7163. #u17476_text {
  7164. border-width:0px;
  7165. white-space:nowrap;
  7166. text-transform:none;
  7167. }
  7168. #u17477_div {
  7169. border-width:0px;
  7170. position:absolute;
  7171. left:0px;
  7172. top:0px;
  7173. width:71px;
  7174. height:30px;
  7175. background:inherit;
  7176. background-color:rgba(255, 255, 255, 0);
  7177. border:none;
  7178. border-left:0px;
  7179. border-top:0px;
  7180. border-right:0px;
  7181. border-radius:0px;
  7182. border-bottom-right-radius:0px;
  7183. border-bottom-left-radius:0px;
  7184. -moz-box-shadow:none;
  7185. -webkit-box-shadow:none;
  7186. box-shadow:none;
  7187. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7188. font-weight:400;
  7189. font-style:normal;
  7190. font-size:14px;
  7191. color:#7F7F7F;
  7192. line-height:30px;
  7193. }
  7194. #u17477 {
  7195. border-width:0px;
  7196. position:absolute;
  7197. left:3649px;
  7198. top:295px;
  7199. width:71px;
  7200. height:30px;
  7201. display:flex;
  7202. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7203. font-weight:400;
  7204. font-style:normal;
  7205. font-size:14px;
  7206. color:#7F7F7F;
  7207. line-height:30px;
  7208. }
  7209. #u17477 .text {
  7210. position:absolute;
  7211. align-self:flex-start;
  7212. padding:0px 0px 0px 0px;
  7213. box-sizing:border-box;
  7214. width:100%;
  7215. }
  7216. #u17477_text {
  7217. border-width:0px;
  7218. white-space:nowrap;
  7219. text-transform:none;
  7220. }
  7221. #u17478_div {
  7222. border-width:0px;
  7223. position:absolute;
  7224. left:0px;
  7225. top:0px;
  7226. width:29px;
  7227. height:30px;
  7228. background:inherit;
  7229. background-color:rgba(255, 255, 255, 0);
  7230. border:none;
  7231. border-left:0px;
  7232. border-top:0px;
  7233. border-right:0px;
  7234. border-radius:0px;
  7235. border-bottom-right-radius:0px;
  7236. border-bottom-left-radius:0px;
  7237. -moz-box-shadow:none;
  7238. -webkit-box-shadow:none;
  7239. box-shadow:none;
  7240. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7241. font-weight:400;
  7242. font-style:normal;
  7243. font-size:14px;
  7244. line-height:30px;
  7245. }
  7246. #u17478 {
  7247. border-width:0px;
  7248. position:absolute;
  7249. left:3729px;
  7250. top:295px;
  7251. width:29px;
  7252. height:30px;
  7253. display:flex;
  7254. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7255. font-weight:400;
  7256. font-style:normal;
  7257. font-size:14px;
  7258. line-height:30px;
  7259. }
  7260. #u17478 .text {
  7261. position:absolute;
  7262. align-self:flex-start;
  7263. padding:0px 0px 0px 0px;
  7264. box-sizing:border-box;
  7265. width:100%;
  7266. }
  7267. #u17478_text {
  7268. border-width:0px;
  7269. white-space:nowrap;
  7270. text-transform:none;
  7271. }
  7272. #u17479_div {
  7273. border-width:0px;
  7274. position:absolute;
  7275. left:0px;
  7276. top:0px;
  7277. width:85px;
  7278. height:30px;
  7279. background:inherit;
  7280. background-color:rgba(255, 255, 255, 0);
  7281. border:none;
  7282. border-left:0px;
  7283. border-top:0px;
  7284. border-right:0px;
  7285. border-radius:0px;
  7286. border-bottom-right-radius:0px;
  7287. border-bottom-left-radius:0px;
  7288. -moz-box-shadow:none;
  7289. -webkit-box-shadow:none;
  7290. box-shadow:none;
  7291. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7292. font-weight:400;
  7293. font-style:normal;
  7294. font-size:14px;
  7295. color:#7F7F7F;
  7296. line-height:30px;
  7297. }
  7298. #u17479 {
  7299. border-width:0px;
  7300. position:absolute;
  7301. left:3235px;
  7302. top:455px;
  7303. width:85px;
  7304. height:30px;
  7305. display:flex;
  7306. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7307. font-weight:400;
  7308. font-style:normal;
  7309. font-size:14px;
  7310. color:#7F7F7F;
  7311. line-height:30px;
  7312. }
  7313. #u17479 .text {
  7314. position:absolute;
  7315. align-self:flex-start;
  7316. padding:0px 0px 0px 0px;
  7317. box-sizing:border-box;
  7318. width:100%;
  7319. }
  7320. #u17479_text {
  7321. border-width:0px;
  7322. white-space:nowrap;
  7323. text-transform:none;
  7324. }
  7325. #u17480_img {
  7326. border-width:0px;
  7327. position:absolute;
  7328. left:0px;
  7329. top:0px;
  7330. width:153px;
  7331. height:107px;
  7332. }
  7333. #u17480 {
  7334. border-width:0px;
  7335. position:absolute;
  7336. left:3235px;
  7337. top:485px;
  7338. width:153px;
  7339. height:107px;
  7340. display:flex;
  7341. }
  7342. #u17480 .text {
  7343. position:absolute;
  7344. align-self:center;
  7345. padding:2px 2px 2px 2px;
  7346. box-sizing:border-box;
  7347. width:100%;
  7348. }
  7349. #u17480_text {
  7350. border-width:0px;
  7351. word-wrap:break-word;
  7352. text-transform:none;
  7353. visibility:hidden;
  7354. }
  7355. #u17481_img {
  7356. border-width:0px;
  7357. position:absolute;
  7358. left:0px;
  7359. top:0px;
  7360. width:153px;
  7361. height:107px;
  7362. }
  7363. #u17481 {
  7364. border-width:0px;
  7365. position:absolute;
  7366. left:3398px;
  7367. top:485px;
  7368. width:153px;
  7369. height:107px;
  7370. display:flex;
  7371. }
  7372. #u17481 .text {
  7373. position:absolute;
  7374. align-self:center;
  7375. padding:2px 2px 2px 2px;
  7376. box-sizing:border-box;
  7377. width:100%;
  7378. }
  7379. #u17481_text {
  7380. border-width:0px;
  7381. word-wrap:break-word;
  7382. text-transform:none;
  7383. visibility:hidden;
  7384. }
  7385. #u17482_div {
  7386. border-width:0px;
  7387. position:absolute;
  7388. left:0px;
  7389. top:0px;
  7390. width:71px;
  7391. height:30px;
  7392. background:inherit;
  7393. background-color:rgba(255, 255, 255, 0);
  7394. border:none;
  7395. border-left:0px;
  7396. border-top:0px;
  7397. border-right:0px;
  7398. border-radius:0px;
  7399. border-bottom-right-radius:0px;
  7400. border-bottom-left-radius:0px;
  7401. -moz-box-shadow:none;
  7402. -webkit-box-shadow:none;
  7403. box-shadow:none;
  7404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7405. font-weight:400;
  7406. font-style:normal;
  7407. font-size:14px;
  7408. color:#7F7F7F;
  7409. line-height:30px;
  7410. }
  7411. #u17482 {
  7412. border-width:0px;
  7413. position:absolute;
  7414. left:3649px;
  7415. top:455px;
  7416. width:71px;
  7417. height:30px;
  7418. display:flex;
  7419. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7420. font-weight:400;
  7421. font-style:normal;
  7422. font-size:14px;
  7423. color:#7F7F7F;
  7424. line-height:30px;
  7425. }
  7426. #u17482 .text {
  7427. position:absolute;
  7428. align-self:flex-start;
  7429. padding:0px 0px 0px 0px;
  7430. box-sizing:border-box;
  7431. width:100%;
  7432. }
  7433. #u17482_text {
  7434. border-width:0px;
  7435. white-space:nowrap;
  7436. text-transform:none;
  7437. }
  7438. #u17483_img {
  7439. border-width:0px;
  7440. position:absolute;
  7441. left:0px;
  7442. top:0px;
  7443. width:146px;
  7444. height:102px;
  7445. }
  7446. #u17483 {
  7447. border-width:0px;
  7448. position:absolute;
  7449. left:3649px;
  7450. top:485px;
  7451. width:146px;
  7452. height:102px;
  7453. display:flex;
  7454. }
  7455. #u17483 .text {
  7456. position:absolute;
  7457. align-self:center;
  7458. padding:2px 2px 2px 2px;
  7459. box-sizing:border-box;
  7460. width:100%;
  7461. }
  7462. #u17483_text {
  7463. border-width:0px;
  7464. word-wrap:break-word;
  7465. text-transform:none;
  7466. visibility:hidden;
  7467. }
  7468. #u17484_img {
  7469. border-width:0px;
  7470. position:absolute;
  7471. left:0px;
  7472. top:0px;
  7473. width:146px;
  7474. height:102px;
  7475. }
  7476. #u17484 {
  7477. border-width:0px;
  7478. position:absolute;
  7479. left:3805px;
  7480. top:485px;
  7481. width:146px;
  7482. height:102px;
  7483. display:flex;
  7484. }
  7485. #u17484 .text {
  7486. position:absolute;
  7487. align-self:center;
  7488. padding:2px 2px 2px 2px;
  7489. box-sizing:border-box;
  7490. width:100%;
  7491. }
  7492. #u17484_text {
  7493. border-width:0px;
  7494. word-wrap:break-word;
  7495. text-transform:none;
  7496. visibility:hidden;
  7497. }
  7498. #u17485_img {
  7499. border-width:0px;
  7500. position:absolute;
  7501. left:0px;
  7502. top:0px;
  7503. width:146px;
  7504. height:102px;
  7505. }
  7506. #u17485 {
  7507. border-width:0px;
  7508. position:absolute;
  7509. left:3961px;
  7510. top:485px;
  7511. width:146px;
  7512. height:102px;
  7513. display:flex;
  7514. }
  7515. #u17485 .text {
  7516. position:absolute;
  7517. align-self:center;
  7518. padding:2px 2px 2px 2px;
  7519. box-sizing:border-box;
  7520. width:100%;
  7521. }
  7522. #u17485_text {
  7523. border-width:0px;
  7524. word-wrap:break-word;
  7525. text-transform:none;
  7526. visibility:hidden;
  7527. }
  7528. #u17486_div {
  7529. border-width:0px;
  7530. position:absolute;
  7531. left:0px;
  7532. top:0px;
  7533. width:80px;
  7534. height:30px;
  7535. background:inherit;
  7536. background-color:rgba(255, 255, 255, 0);
  7537. border:none;
  7538. border-left:0px;
  7539. border-top:0px;
  7540. border-right:0px;
  7541. border-radius:0px;
  7542. border-bottom-right-radius:0px;
  7543. border-bottom-left-radius:0px;
  7544. -moz-box-shadow:none;
  7545. -webkit-box-shadow:none;
  7546. box-shadow:none;
  7547. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7548. font-weight:400;
  7549. font-style:normal;
  7550. font-size:14px;
  7551. color:#7F7F7F;
  7552. line-height:30px;
  7553. }
  7554. #u17486 {
  7555. border-width:0px;
  7556. position:absolute;
  7557. left:3649px;
  7558. top:335px;
  7559. width:80px;
  7560. height:30px;
  7561. display:flex;
  7562. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7563. font-weight:400;
  7564. font-style:normal;
  7565. font-size:14px;
  7566. color:#7F7F7F;
  7567. line-height:30px;
  7568. }
  7569. #u17486 .text {
  7570. position:absolute;
  7571. align-self:flex-start;
  7572. padding:0px 0px 0px 0px;
  7573. box-sizing:border-box;
  7574. width:100%;
  7575. }
  7576. #u17486_text {
  7577. border-width:0px;
  7578. word-wrap:break-word;
  7579. text-transform:none;
  7580. }
  7581. #u17487_div {
  7582. border-width:0px;
  7583. position:absolute;
  7584. left:0px;
  7585. top:0px;
  7586. width:82px;
  7587. height:30px;
  7588. background:inherit;
  7589. background-color:rgba(255, 255, 255, 0);
  7590. border:none;
  7591. border-left:0px;
  7592. border-top:0px;
  7593. border-right:0px;
  7594. border-radius:0px;
  7595. border-bottom-right-radius:0px;
  7596. border-bottom-left-radius:0px;
  7597. -moz-box-shadow:none;
  7598. -webkit-box-shadow:none;
  7599. box-shadow:none;
  7600. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7601. font-weight:400;
  7602. font-style:normal;
  7603. font-size:14px;
  7604. line-height:30px;
  7605. }
  7606. #u17487 {
  7607. border-width:0px;
  7608. position:absolute;
  7609. left:3729px;
  7610. top:335px;
  7611. width:82px;
  7612. height:30px;
  7613. display:flex;
  7614. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7615. font-weight:400;
  7616. font-style:normal;
  7617. font-size:14px;
  7618. line-height:30px;
  7619. }
  7620. #u17487 .text {
  7621. position:absolute;
  7622. align-self:flex-start;
  7623. padding:0px 0px 0px 0px;
  7624. box-sizing:border-box;
  7625. width:100%;
  7626. }
  7627. #u17487_text {
  7628. border-width:0px;
  7629. white-space:nowrap;
  7630. text-transform:none;
  7631. }
  7632. #u17488_div {
  7633. border-width:0px;
  7634. position:absolute;
  7635. left:0px;
  7636. top:0px;
  7637. width:80px;
  7638. height:30px;
  7639. background:inherit;
  7640. background-color:rgba(255, 255, 255, 0);
  7641. border:none;
  7642. border-left:0px;
  7643. border-top:0px;
  7644. border-right:0px;
  7645. border-radius:0px;
  7646. border-bottom-right-radius:0px;
  7647. border-bottom-left-radius:0px;
  7648. -moz-box-shadow:none;
  7649. -webkit-box-shadow:none;
  7650. box-shadow:none;
  7651. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7652. font-weight:400;
  7653. font-style:normal;
  7654. font-size:14px;
  7655. color:#7F7F7F;
  7656. line-height:30px;
  7657. }
  7658. #u17488 {
  7659. border-width:0px;
  7660. position:absolute;
  7661. left:3235px;
  7662. top:415px;
  7663. width:80px;
  7664. height:30px;
  7665. display:flex;
  7666. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7667. font-weight:400;
  7668. font-style:normal;
  7669. font-size:14px;
  7670. color:#7F7F7F;
  7671. line-height:30px;
  7672. }
  7673. #u17488 .text {
  7674. position:absolute;
  7675. align-self:flex-start;
  7676. padding:0px 0px 0px 0px;
  7677. box-sizing:border-box;
  7678. width:100%;
  7679. }
  7680. #u17488_text {
  7681. border-width:0px;
  7682. word-wrap:break-word;
  7683. text-transform:none;
  7684. }
  7685. #u17489_div {
  7686. border-width:0px;
  7687. position:absolute;
  7688. left:0px;
  7689. top:0px;
  7690. width:81px;
  7691. height:30px;
  7692. background:inherit;
  7693. background-color:rgba(255, 255, 255, 0);
  7694. border:none;
  7695. border-left:0px;
  7696. border-top:0px;
  7697. border-right:0px;
  7698. border-radius:0px;
  7699. border-bottom-right-radius:0px;
  7700. border-bottom-left-radius:0px;
  7701. -moz-box-shadow:none;
  7702. -webkit-box-shadow:none;
  7703. box-shadow:none;
  7704. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7705. font-weight:400;
  7706. font-style:normal;
  7707. font-size:14px;
  7708. line-height:30px;
  7709. }
  7710. #u17489 {
  7711. border-width:0px;
  7712. position:absolute;
  7713. left:3315px;
  7714. top:415px;
  7715. width:81px;
  7716. height:30px;
  7717. display:flex;
  7718. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7719. font-weight:400;
  7720. font-style:normal;
  7721. font-size:14px;
  7722. line-height:30px;
  7723. }
  7724. #u17489 .text {
  7725. position:absolute;
  7726. align-self:flex-start;
  7727. padding:0px 0px 0px 0px;
  7728. box-sizing:border-box;
  7729. width:100%;
  7730. }
  7731. #u17489_text {
  7732. border-width:0px;
  7733. white-space:nowrap;
  7734. text-transform:none;
  7735. }
  7736. #u17490_div {
  7737. border-width:0px;
  7738. position:absolute;
  7739. left:0px;
  7740. top:0px;
  7741. width:80px;
  7742. height:30px;
  7743. background:inherit;
  7744. background-color:rgba(255, 255, 255, 0);
  7745. border:none;
  7746. border-left:0px;
  7747. border-top:0px;
  7748. border-right:0px;
  7749. border-radius:0px;
  7750. border-bottom-right-radius:0px;
  7751. border-bottom-left-radius:0px;
  7752. -moz-box-shadow:none;
  7753. -webkit-box-shadow:none;
  7754. box-shadow:none;
  7755. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7756. font-weight:400;
  7757. font-style:normal;
  7758. font-size:14px;
  7759. color:#7F7F7F;
  7760. line-height:30px;
  7761. }
  7762. #u17490 {
  7763. border-width:0px;
  7764. position:absolute;
  7765. left:3210px;
  7766. top:195px;
  7767. width:80px;
  7768. height:30px;
  7769. display:flex;
  7770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7771. font-weight:400;
  7772. font-style:normal;
  7773. font-size:14px;
  7774. color:#7F7F7F;
  7775. line-height:30px;
  7776. }
  7777. #u17490 .text {
  7778. position:absolute;
  7779. align-self:flex-start;
  7780. padding:0px 0px 0px 0px;
  7781. box-sizing:border-box;
  7782. width:100%;
  7783. }
  7784. #u17490_text {
  7785. border-width:0px;
  7786. word-wrap:break-word;
  7787. text-transform:none;
  7788. }
  7789. #u17491_div {
  7790. border-width:0px;
  7791. position:absolute;
  7792. left:0px;
  7793. top:0px;
  7794. width:113px;
  7795. height:30px;
  7796. background:inherit;
  7797. background-color:rgba(255, 255, 255, 0);
  7798. border:none;
  7799. border-left:0px;
  7800. border-top:0px;
  7801. border-right:0px;
  7802. border-radius:0px;
  7803. border-bottom-right-radius:0px;
  7804. border-bottom-left-radius:0px;
  7805. -moz-box-shadow:none;
  7806. -webkit-box-shadow:none;
  7807. box-shadow:none;
  7808. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7809. font-weight:400;
  7810. font-style:normal;
  7811. font-size:14px;
  7812. line-height:30px;
  7813. }
  7814. #u17491 {
  7815. border-width:0px;
  7816. position:absolute;
  7817. left:3290px;
  7818. top:195px;
  7819. width:113px;
  7820. height:30px;
  7821. display:flex;
  7822. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7823. font-weight:400;
  7824. font-style:normal;
  7825. font-size:14px;
  7826. line-height:30px;
  7827. }
  7828. #u17491 .text {
  7829. position:absolute;
  7830. align-self:flex-start;
  7831. padding:0px 0px 0px 0px;
  7832. box-sizing:border-box;
  7833. width:100%;
  7834. }
  7835. #u17491_text {
  7836. border-width:0px;
  7837. white-space:nowrap;
  7838. text-transform:none;
  7839. }
  7840. #u17492_div {
  7841. border-width:0px;
  7842. position:absolute;
  7843. left:0px;
  7844. top:0px;
  7845. width:80px;
  7846. height:30px;
  7847. background:inherit;
  7848. background-color:rgba(255, 255, 255, 0);
  7849. border:none;
  7850. border-left:0px;
  7851. border-top:0px;
  7852. border-right:0px;
  7853. border-radius:0px;
  7854. border-bottom-right-radius:0px;
  7855. border-bottom-left-radius:0px;
  7856. -moz-box-shadow:none;
  7857. -webkit-box-shadow:none;
  7858. box-shadow:none;
  7859. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7860. font-weight:400;
  7861. font-style:normal;
  7862. font-size:14px;
  7863. color:#7F7F7F;
  7864. line-height:30px;
  7865. }
  7866. #u17492 {
  7867. border-width:0px;
  7868. position:absolute;
  7869. left:3649px;
  7870. top:195px;
  7871. width:80px;
  7872. height:30px;
  7873. display:flex;
  7874. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7875. font-weight:400;
  7876. font-style:normal;
  7877. font-size:14px;
  7878. color:#7F7F7F;
  7879. line-height:30px;
  7880. }
  7881. #u17492 .text {
  7882. position:absolute;
  7883. align-self:flex-start;
  7884. padding:0px 0px 0px 0px;
  7885. box-sizing:border-box;
  7886. width:100%;
  7887. }
  7888. #u17492_text {
  7889. border-width:0px;
  7890. word-wrap:break-word;
  7891. text-transform:none;
  7892. }
  7893. #u17493_div {
  7894. border-width:0px;
  7895. position:absolute;
  7896. left:0px;
  7897. top:0px;
  7898. width:57px;
  7899. height:30px;
  7900. background:inherit;
  7901. background-color:rgba(255, 255, 255, 0);
  7902. border:none;
  7903. border-left:0px;
  7904. border-top:0px;
  7905. border-right:0px;
  7906. border-radius:0px;
  7907. border-bottom-right-radius:0px;
  7908. border-bottom-left-radius:0px;
  7909. -moz-box-shadow:none;
  7910. -webkit-box-shadow:none;
  7911. box-shadow:none;
  7912. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7913. font-weight:400;
  7914. font-style:normal;
  7915. font-size:14px;
  7916. line-height:30px;
  7917. }
  7918. #u17493 {
  7919. border-width:0px;
  7920. position:absolute;
  7921. left:3729px;
  7922. top:195px;
  7923. width:57px;
  7924. height:30px;
  7925. display:flex;
  7926. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7927. font-weight:400;
  7928. font-style:normal;
  7929. font-size:14px;
  7930. line-height:30px;
  7931. }
  7932. #u17493 .text {
  7933. position:absolute;
  7934. align-self:flex-start;
  7935. padding:0px 0px 0px 0px;
  7936. box-sizing:border-box;
  7937. width:100%;
  7938. }
  7939. #u17493_text {
  7940. border-width:0px;
  7941. white-space:nowrap;
  7942. text-transform:none;
  7943. }
  7944. #u17494_div {
  7945. border-width:0px;
  7946. position:absolute;
  7947. left:0px;
  7948. top:0px;
  7949. width:85px;
  7950. height:30px;
  7951. background:inherit;
  7952. background-color:rgba(255, 255, 255, 0);
  7953. border:none;
  7954. border-left:0px;
  7955. border-top:0px;
  7956. border-right:0px;
  7957. border-radius:0px;
  7958. border-bottom-right-radius:0px;
  7959. border-bottom-left-radius:0px;
  7960. -moz-box-shadow:none;
  7961. -webkit-box-shadow:none;
  7962. box-shadow:none;
  7963. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7964. font-weight:400;
  7965. font-style:normal;
  7966. font-size:14px;
  7967. color:#7F7F7F;
  7968. line-height:30px;
  7969. }
  7970. #u17494 {
  7971. border-width:0px;
  7972. position:absolute;
  7973. left:3649px;
  7974. top:235px;
  7975. width:85px;
  7976. height:30px;
  7977. display:flex;
  7978. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7979. font-weight:400;
  7980. font-style:normal;
  7981. font-size:14px;
  7982. color:#7F7F7F;
  7983. line-height:30px;
  7984. }
  7985. #u17494 .text {
  7986. position:absolute;
  7987. align-self:flex-start;
  7988. padding:0px 0px 0px 0px;
  7989. box-sizing:border-box;
  7990. width:100%;
  7991. }
  7992. #u17494_text {
  7993. border-width:0px;
  7994. white-space:nowrap;
  7995. text-transform:none;
  7996. }
  7997. #u17495_div {
  7998. border-width:0px;
  7999. position:absolute;
  8000. left:0px;
  8001. top:0px;
  8002. width:23px;
  8003. height:30px;
  8004. background:inherit;
  8005. background-color:rgba(255, 255, 255, 0);
  8006. border:none;
  8007. border-left:0px;
  8008. border-top:0px;
  8009. border-right:0px;
  8010. border-radius:0px;
  8011. border-bottom-right-radius:0px;
  8012. border-bottom-left-radius:0px;
  8013. -moz-box-shadow:none;
  8014. -webkit-box-shadow:none;
  8015. box-shadow:none;
  8016. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8017. font-weight:400;
  8018. font-style:normal;
  8019. font-size:14px;
  8020. line-height:30px;
  8021. }
  8022. #u17495 {
  8023. border-width:0px;
  8024. position:absolute;
  8025. left:3729px;
  8026. top:235px;
  8027. width:23px;
  8028. height:30px;
  8029. display:flex;
  8030. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8031. font-weight:400;
  8032. font-style:normal;
  8033. font-size:14px;
  8034. line-height:30px;
  8035. }
  8036. #u17495 .text {
  8037. position:absolute;
  8038. align-self:flex-start;
  8039. padding:0px 0px 0px 0px;
  8040. box-sizing:border-box;
  8041. width:100%;
  8042. }
  8043. #u17495_text {
  8044. border-width:0px;
  8045. white-space:nowrap;
  8046. text-transform:none;
  8047. }
  8048. #u17496_div {
  8049. border-width:0px;
  8050. position:absolute;
  8051. left:0px;
  8052. top:0px;
  8053. width:57px;
  8054. height:30px;
  8055. background:inherit;
  8056. background-color:rgba(255, 255, 255, 0);
  8057. border:none;
  8058. border-left:0px;
  8059. border-top:0px;
  8060. border-right:0px;
  8061. border-radius:0px;
  8062. border-bottom-right-radius:0px;
  8063. border-bottom-left-radius:0px;
  8064. -moz-box-shadow:none;
  8065. -webkit-box-shadow:none;
  8066. box-shadow:none;
  8067. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8068. font-weight:400;
  8069. font-style:normal;
  8070. font-size:14px;
  8071. color:#7F7F7F;
  8072. line-height:30px;
  8073. }
  8074. #u17496 {
  8075. border-width:0px;
  8076. position:absolute;
  8077. left:3210px;
  8078. top:235px;
  8079. width:57px;
  8080. height:30px;
  8081. display:flex;
  8082. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8083. font-weight:400;
  8084. font-style:normal;
  8085. font-size:14px;
  8086. color:#7F7F7F;
  8087. line-height:30px;
  8088. }
  8089. #u17496 .text {
  8090. position:absolute;
  8091. align-self:flex-start;
  8092. padding:0px 0px 0px 0px;
  8093. box-sizing:border-box;
  8094. width:100%;
  8095. }
  8096. #u17496_text {
  8097. border-width:0px;
  8098. white-space:nowrap;
  8099. text-transform:none;
  8100. }
  8101. #u17497_div {
  8102. border-width:0px;
  8103. position:absolute;
  8104. left:0px;
  8105. top:0px;
  8106. width:41px;
  8107. height:30px;
  8108. background:inherit;
  8109. background-color:rgba(255, 255, 255, 0);
  8110. border:none;
  8111. border-left:0px;
  8112. border-top:0px;
  8113. border-right:0px;
  8114. border-radius:0px;
  8115. border-bottom-right-radius:0px;
  8116. border-bottom-left-radius:0px;
  8117. -moz-box-shadow:none;
  8118. -webkit-box-shadow:none;
  8119. box-shadow:none;
  8120. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8121. font-weight:400;
  8122. font-style:normal;
  8123. font-size:14px;
  8124. line-height:30px;
  8125. }
  8126. #u17497 {
  8127. border-width:0px;
  8128. position:absolute;
  8129. left:3290px;
  8130. top:235px;
  8131. width:41px;
  8132. height:30px;
  8133. display:flex;
  8134. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8135. font-weight:400;
  8136. font-style:normal;
  8137. font-size:14px;
  8138. line-height:30px;
  8139. }
  8140. #u17497 .text {
  8141. position:absolute;
  8142. align-self:flex-start;
  8143. padding:0px 0px 0px 0px;
  8144. box-sizing:border-box;
  8145. width:100%;
  8146. }
  8147. #u17497_text {
  8148. border-width:0px;
  8149. white-space:nowrap;
  8150. text-transform:none;
  8151. }
  8152. #u17498 {
  8153. border-width:0px;
  8154. position:absolute;
  8155. left:0px;
  8156. top:0px;
  8157. width:0px;
  8158. height:0px;
  8159. }
  8160. #u17499_div {
  8161. border-width:0px;
  8162. position:absolute;
  8163. left:0px;
  8164. top:0px;
  8165. width:1000px;
  8166. height:1201px;
  8167. background:inherit;
  8168. background-color:rgba(242, 242, 242, 1);
  8169. box-sizing:border-box;
  8170. border-width:1px;
  8171. border-style:solid;
  8172. border-color:rgba(215, 215, 215, 1);
  8173. border-radius:0px;
  8174. -moz-box-shadow:none;
  8175. -webkit-box-shadow:none;
  8176. box-shadow:none;
  8177. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8178. font-weight:400;
  8179. font-style:normal;
  8180. font-size:14px;
  8181. color:#AAAAAA;
  8182. text-align:center;
  8183. line-height:30px;
  8184. }
  8185. #u17499 {
  8186. border-width:0px;
  8187. position:absolute;
  8188. left:90px;
  8189. top:63px;
  8190. width:1000px;
  8191. height:1201px;
  8192. display:flex;
  8193. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8194. font-weight:400;
  8195. font-style:normal;
  8196. font-size:14px;
  8197. color:#AAAAAA;
  8198. text-align:center;
  8199. line-height:30px;
  8200. }
  8201. #u17499 .text {
  8202. position:absolute;
  8203. align-self:center;
  8204. padding:5px 10px 5px 10px;
  8205. box-sizing:border-box;
  8206. width:100%;
  8207. }
  8208. #u17499_text {
  8209. border-width:0px;
  8210. word-wrap:break-word;
  8211. text-transform:none;
  8212. visibility:hidden;
  8213. }
  8214. #u17500_div {
  8215. border-width:0px;
  8216. position:absolute;
  8217. left:0px;
  8218. top:0px;
  8219. width:1000px;
  8220. height:1201px;
  8221. background:inherit;
  8222. background-color:rgba(255, 255, 255, 1);
  8223. box-sizing:border-box;
  8224. border-width:1px;
  8225. border-style:solid;
  8226. border-color:rgba(215, 215, 215, 1);
  8227. border-radius:0px;
  8228. -moz-box-shadow:none;
  8229. -webkit-box-shadow:none;
  8230. box-shadow:none;
  8231. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8232. font-weight:400;
  8233. font-style:normal;
  8234. font-size:14px;
  8235. color:#AAAAAA;
  8236. text-align:center;
  8237. line-height:30px;
  8238. }
  8239. #u17500 {
  8240. border-width:0px;
  8241. position:absolute;
  8242. left:90px;
  8243. top:63px;
  8244. width:1000px;
  8245. height:1201px;
  8246. display:flex;
  8247. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8248. font-weight:400;
  8249. font-style:normal;
  8250. font-size:14px;
  8251. color:#AAAAAA;
  8252. text-align:center;
  8253. line-height:30px;
  8254. }
  8255. #u17500 .text {
  8256. position:absolute;
  8257. align-self:center;
  8258. padding:5px 10px 5px 10px;
  8259. box-sizing:border-box;
  8260. width:100%;
  8261. }
  8262. #u17500_text {
  8263. border-width:0px;
  8264. word-wrap:break-word;
  8265. text-transform:none;
  8266. visibility:hidden;
  8267. }
  8268. #u17501_div {
  8269. border-width:0px;
  8270. position:absolute;
  8271. left:0px;
  8272. top:0px;
  8273. width:47px;
  8274. height:35px;
  8275. background:inherit;
  8276. background-color:rgba(255, 255, 255, 0);
  8277. border:none;
  8278. border-top:0px;
  8279. border-right:0px;
  8280. border-bottom:0px;
  8281. border-radius:0px;
  8282. border-top-left-radius:0px;
  8283. border-bottom-left-radius:0px;
  8284. -moz-box-shadow:none;
  8285. -webkit-box-shadow:none;
  8286. box-shadow:none;
  8287. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8288. font-weight:500;
  8289. font-style:normal;
  8290. font-size:18px;
  8291. }
  8292. #u17501 {
  8293. border-width:0px;
  8294. position:absolute;
  8295. left:110px;
  8296. top:81px;
  8297. width:47px;
  8298. height:35px;
  8299. display:flex;
  8300. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8301. font-weight:500;
  8302. font-style:normal;
  8303. font-size:18px;
  8304. }
  8305. #u17501 .text {
  8306. position:absolute;
  8307. align-self:center;
  8308. padding:5px 10px 5px 0px;
  8309. box-sizing:border-box;
  8310. width:100%;
  8311. }
  8312. #u17501_text {
  8313. border-width:0px;
  8314. white-space:nowrap;
  8315. text-transform:none;
  8316. }
  8317. #u17502 {
  8318. border-width:0px;
  8319. position:absolute;
  8320. left:0px;
  8321. top:0px;
  8322. width:0px;
  8323. height:0px;
  8324. }
  8325. #u17503_div {
  8326. border-width:0px;
  8327. position:absolute;
  8328. left:0px;
  8329. top:0px;
  8330. width:40px;
  8331. height:40px;
  8332. background:inherit;
  8333. background-color:rgba(255, 255, 255, 0);
  8334. border:none;
  8335. border-top:0px;
  8336. border-right:0px;
  8337. border-bottom:0px;
  8338. border-radius:0px;
  8339. border-top-left-radius:0px;
  8340. border-bottom-left-radius:0px;
  8341. -moz-box-shadow:none;
  8342. -webkit-box-shadow:none;
  8343. box-shadow:none;
  8344. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8345. font-weight:500;
  8346. font-style:normal;
  8347. font-size:14px;
  8348. text-align:center;
  8349. }
  8350. #u17503 {
  8351. border-width:0px;
  8352. position:absolute;
  8353. left:1050px;
  8354. top:63px;
  8355. width:40px;
  8356. height:40px;
  8357. display:flex;
  8358. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8359. font-weight:500;
  8360. font-style:normal;
  8361. font-size:14px;
  8362. text-align:center;
  8363. }
  8364. #u17503 .text {
  8365. position:absolute;
  8366. align-self:center;
  8367. padding:5px 10px 5px 0px;
  8368. box-sizing:border-box;
  8369. width:100%;
  8370. }
  8371. #u17503_text {
  8372. border-width:0px;
  8373. word-wrap:break-word;
  8374. text-transform:none;
  8375. }
  8376. #u17504_img {
  8377. border-width:0px;
  8378. position:absolute;
  8379. left:0px;
  8380. top:0px;
  8381. width:13px;
  8382. height:13px;
  8383. }
  8384. #u17504 {
  8385. border-width:0px;
  8386. position:absolute;
  8387. left:1038px;
  8388. top:79px;
  8389. width:13px;
  8390. height:13px;
  8391. display:flex;
  8392. font-size:14px;
  8393. }
  8394. #u17504 .text {
  8395. position:absolute;
  8396. align-self:center;
  8397. padding:2px 2px 2px 2px;
  8398. box-sizing:border-box;
  8399. width:100%;
  8400. }
  8401. #u17504_text {
  8402. border-width:0px;
  8403. word-wrap:break-word;
  8404. text-transform:none;
  8405. visibility:hidden;
  8406. }
  8407. #u17505_div {
  8408. border-width:0px;
  8409. position:absolute;
  8410. left:0px;
  8411. top:0px;
  8412. width:59px;
  8413. height:43px;
  8414. background:inherit;
  8415. background-color:rgba(255, 255, 255, 0);
  8416. border:none;
  8417. border-top:0px;
  8418. border-right:0px;
  8419. border-bottom:0px;
  8420. border-radius:0px;
  8421. border-top-left-radius:0px;
  8422. border-bottom-left-radius:0px;
  8423. -moz-box-shadow:none;
  8424. -webkit-box-shadow:none;
  8425. box-shadow:none;
  8426. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8427. font-weight:500;
  8428. font-style:normal;
  8429. font-size:24px;
  8430. }
  8431. #u17505 {
  8432. border-width:0px;
  8433. position:absolute;
  8434. left:120px;
  8435. top:132px;
  8436. width:59px;
  8437. height:43px;
  8438. display:flex;
  8439. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8440. font-weight:500;
  8441. font-style:normal;
  8442. font-size:24px;
  8443. }
  8444. #u17505 .text {
  8445. position:absolute;
  8446. align-self:center;
  8447. padding:5px 10px 5px 0px;
  8448. box-sizing:border-box;
  8449. width:100%;
  8450. }
  8451. #u17505_text {
  8452. border-width:0px;
  8453. white-space:nowrap;
  8454. text-transform:none;
  8455. }
  8456. #u17506 {
  8457. border-width:0px;
  8458. position:absolute;
  8459. left:0px;
  8460. top:0px;
  8461. width:0px;
  8462. height:0px;
  8463. }
  8464. #u17507_div {
  8465. border-width:0px;
  8466. position:absolute;
  8467. left:0px;
  8468. top:0px;
  8469. width:1000px;
  8470. height:60px;
  8471. background:inherit;
  8472. background-color:rgba(255, 255, 255, 1);
  8473. box-sizing:border-box;
  8474. border-width:1px;
  8475. border-style:solid;
  8476. border-color:rgba(215, 215, 215, 1);
  8477. border-radius:0px;
  8478. -moz-box-shadow:none;
  8479. -webkit-box-shadow:none;
  8480. box-shadow:none;
  8481. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8482. font-weight:400;
  8483. font-style:normal;
  8484. font-size:14px;
  8485. color:#AAAAAA;
  8486. text-align:center;
  8487. line-height:30px;
  8488. }
  8489. #u17507 {
  8490. border-width:0px;
  8491. position:absolute;
  8492. left:90px;
  8493. top:1204px;
  8494. width:1000px;
  8495. height:60px;
  8496. display:flex;
  8497. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8498. font-weight:400;
  8499. font-style:normal;
  8500. font-size:14px;
  8501. color:#AAAAAA;
  8502. text-align:center;
  8503. line-height:30px;
  8504. }
  8505. #u17507 .text {
  8506. position:absolute;
  8507. align-self:center;
  8508. padding:5px 10px 5px 10px;
  8509. box-sizing:border-box;
  8510. width:100%;
  8511. }
  8512. #u17507_text {
  8513. border-width:0px;
  8514. word-wrap:break-word;
  8515. text-transform:none;
  8516. visibility:hidden;
  8517. }
  8518. #u17508_div {
  8519. border-width:0px;
  8520. position:absolute;
  8521. left:0px;
  8522. top:0px;
  8523. width:80px;
  8524. height:30px;
  8525. background:inherit;
  8526. background-color:rgba(255, 255, 255, 1);
  8527. box-sizing:border-box;
  8528. border-width:1px;
  8529. border-style:solid;
  8530. border-color:rgba(170, 170, 170, 1);
  8531. border-radius:4px;
  8532. -moz-box-shadow:none;
  8533. -webkit-box-shadow:none;
  8534. box-shadow:none;
  8535. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8536. font-weight:400;
  8537. font-style:normal;
  8538. font-size:14px;
  8539. }
  8540. #u17508 {
  8541. border-width:0px;
  8542. position:absolute;
  8543. left:984px;
  8544. top:1219px;
  8545. width:80px;
  8546. height:30px;
  8547. display:flex;
  8548. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8549. font-weight:400;
  8550. font-style:normal;
  8551. font-size:14px;
  8552. }
  8553. #u17508 .text {
  8554. position:absolute;
  8555. align-self:center;
  8556. padding:2px 2px 2px 2px;
  8557. box-sizing:border-box;
  8558. width:100%;
  8559. }
  8560. #u17508_text {
  8561. border-width:0px;
  8562. word-wrap:break-word;
  8563. text-transform:none;
  8564. }
  8565. #u17509_img {
  8566. border-width:0px;
  8567. position:absolute;
  8568. left:0px;
  8569. top:0px;
  8570. width:142px;
  8571. height:138px;
  8572. }
  8573. #u17509 {
  8574. border-width:0px;
  8575. position:absolute;
  8576. left:900px;
  8577. top:115px;
  8578. width:142px;
  8579. height:138px;
  8580. display:flex;
  8581. -webkit-transform:rotate(315deg);
  8582. -moz-transform:rotate(315deg);
  8583. -ms-transform:rotate(315deg);
  8584. transform:rotate(315deg);
  8585. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8586. font-weight:400;
  8587. font-style:normal;
  8588. font-size:28px;
  8589. color:#F59A23;
  8590. }
  8591. #u17509 .text {
  8592. position:absolute;
  8593. align-self:center;
  8594. padding:2px 2px 2px 2px;
  8595. box-sizing:border-box;
  8596. width:100%;
  8597. }
  8598. #u17509_text {
  8599. border-width:0px;
  8600. word-wrap:break-word;
  8601. text-transform:none;
  8602. }
  8603. #u17510_div {
  8604. border-width:0px;
  8605. position:absolute;
  8606. left:0px;
  8607. top:0px;
  8608. width:80px;
  8609. height:30px;
  8610. background:inherit;
  8611. background-color:rgba(255, 255, 255, 0);
  8612. border:none;
  8613. border-left:0px;
  8614. border-top:0px;
  8615. border-right:0px;
  8616. border-radius:0px;
  8617. border-bottom-right-radius:0px;
  8618. border-bottom-left-radius:0px;
  8619. -moz-box-shadow:none;
  8620. -webkit-box-shadow:none;
  8621. box-shadow:none;
  8622. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8623. font-weight:400;
  8624. font-style:normal;
  8625. font-size:14px;
  8626. color:#7F7F7F;
  8627. line-height:30px;
  8628. }
  8629. #u17510 {
  8630. border-width:0px;
  8631. position:absolute;
  8632. left:120px;
  8633. top:635px;
  8634. width:80px;
  8635. height:30px;
  8636. display:flex;
  8637. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8638. font-weight:400;
  8639. font-style:normal;
  8640. font-size:14px;
  8641. color:#7F7F7F;
  8642. line-height:30px;
  8643. }
  8644. #u17510 .text {
  8645. position:absolute;
  8646. align-self:flex-start;
  8647. padding:0px 0px 0px 0px;
  8648. box-sizing:border-box;
  8649. width:100%;
  8650. }
  8651. #u17510_text {
  8652. border-width:0px;
  8653. word-wrap:break-word;
  8654. text-transform:none;
  8655. }
  8656. #u17511_div {
  8657. border-width:0px;
  8658. position:absolute;
  8659. left:0px;
  8660. top:0px;
  8661. width:121px;
  8662. height:30px;
  8663. background:inherit;
  8664. background-color:rgba(255, 255, 255, 0);
  8665. border:none;
  8666. border-left:0px;
  8667. border-top:0px;
  8668. border-right:0px;
  8669. border-radius:0px;
  8670. border-bottom-right-radius:0px;
  8671. border-bottom-left-radius:0px;
  8672. -moz-box-shadow:none;
  8673. -webkit-box-shadow:none;
  8674. box-shadow:none;
  8675. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8676. font-weight:400;
  8677. font-style:normal;
  8678. font-size:14px;
  8679. line-height:30px;
  8680. }
  8681. #u17511 {
  8682. border-width:0px;
  8683. position:absolute;
  8684. left:200px;
  8685. top:635px;
  8686. width:121px;
  8687. height:30px;
  8688. display:flex;
  8689. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8690. font-weight:400;
  8691. font-style:normal;
  8692. font-size:14px;
  8693. line-height:30px;
  8694. }
  8695. #u17511 .text {
  8696. position:absolute;
  8697. align-self:flex-start;
  8698. padding:0px 0px 0px 0px;
  8699. box-sizing:border-box;
  8700. width:100%;
  8701. }
  8702. #u17511_text {
  8703. border-width:0px;
  8704. white-space:nowrap;
  8705. text-transform:none;
  8706. }
  8707. #u17512_div {
  8708. border-width:0px;
  8709. position:absolute;
  8710. left:0px;
  8711. top:0px;
  8712. width:80px;
  8713. height:30px;
  8714. background:inherit;
  8715. background-color:rgba(255, 255, 255, 0);
  8716. border:none;
  8717. border-left:0px;
  8718. border-top:0px;
  8719. border-right:0px;
  8720. border-radius:0px;
  8721. border-bottom-right-radius:0px;
  8722. border-bottom-left-radius:0px;
  8723. -moz-box-shadow:none;
  8724. -webkit-box-shadow:none;
  8725. box-shadow:none;
  8726. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8727. font-weight:400;
  8728. font-style:normal;
  8729. font-size:14px;
  8730. color:#7F7F7F;
  8731. line-height:30px;
  8732. }
  8733. #u17512 {
  8734. border-width:0px;
  8735. position:absolute;
  8736. left:559px;
  8737. top:635px;
  8738. width:80px;
  8739. height:30px;
  8740. display:flex;
  8741. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8742. font-weight:400;
  8743. font-style:normal;
  8744. font-size:14px;
  8745. color:#7F7F7F;
  8746. line-height:30px;
  8747. }
  8748. #u17512 .text {
  8749. position:absolute;
  8750. align-self:flex-start;
  8751. padding:0px 0px 0px 0px;
  8752. box-sizing:border-box;
  8753. width:100%;
  8754. }
  8755. #u17512_text {
  8756. border-width:0px;
  8757. word-wrap:break-word;
  8758. text-transform:none;
  8759. }
  8760. #u17513_div {
  8761. border-width:0px;
  8762. position:absolute;
  8763. left:0px;
  8764. top:0px;
  8765. width:141px;
  8766. height:30px;
  8767. background:inherit;
  8768. background-color:rgba(255, 255, 255, 0);
  8769. border:none;
  8770. border-left:0px;
  8771. border-top:0px;
  8772. border-right:0px;
  8773. border-radius:0px;
  8774. border-bottom-right-radius:0px;
  8775. border-bottom-left-radius:0px;
  8776. -moz-box-shadow:none;
  8777. -webkit-box-shadow:none;
  8778. box-shadow:none;
  8779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8780. font-weight:400;
  8781. font-style:normal;
  8782. font-size:14px;
  8783. line-height:30px;
  8784. }
  8785. #u17513 {
  8786. border-width:0px;
  8787. position:absolute;
  8788. left:639px;
  8789. top:635px;
  8790. width:141px;
  8791. height:30px;
  8792. display:flex;
  8793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8794. font-weight:400;
  8795. font-style:normal;
  8796. font-size:14px;
  8797. line-height:30px;
  8798. }
  8799. #u17513 .text {
  8800. position:absolute;
  8801. align-self:flex-start;
  8802. padding:0px 0px 0px 0px;
  8803. box-sizing:border-box;
  8804. width:100%;
  8805. }
  8806. #u17513_text {
  8807. border-width:0px;
  8808. white-space:nowrap;
  8809. text-transform:none;
  8810. }
  8811. #u17514 {
  8812. border-width:0px;
  8813. position:absolute;
  8814. left:0px;
  8815. top:0px;
  8816. width:0px;
  8817. height:0px;
  8818. }
  8819. #u17515_div {
  8820. border-width:0px;
  8821. position:absolute;
  8822. left:0px;
  8823. top:0px;
  8824. width:925px;
  8825. height:340px;
  8826. background:inherit;
  8827. background-color:rgba(242, 242, 242, 1);
  8828. box-sizing:border-box;
  8829. border-width:1px;
  8830. border-style:solid;
  8831. border-color:rgba(215, 215, 215, 1);
  8832. border-radius:0px;
  8833. -moz-box-shadow:none;
  8834. -webkit-box-shadow:none;
  8835. box-shadow:none;
  8836. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8837. font-weight:400;
  8838. font-style:normal;
  8839. font-size:14px;
  8840. color:#AAAAAA;
  8841. text-align:center;
  8842. line-height:30px;
  8843. }
  8844. #u17515 {
  8845. border-width:0px;
  8846. position:absolute;
  8847. left:120px;
  8848. top:275px;
  8849. width:925px;
  8850. height:340px;
  8851. display:flex;
  8852. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8853. font-weight:400;
  8854. font-style:normal;
  8855. font-size:14px;
  8856. color:#AAAAAA;
  8857. text-align:center;
  8858. line-height:30px;
  8859. }
  8860. #u17515 .text {
  8861. position:absolute;
  8862. align-self:center;
  8863. padding:5px 10px 5px 10px;
  8864. box-sizing:border-box;
  8865. width:100%;
  8866. }
  8867. #u17515_text {
  8868. border-width:0px;
  8869. word-wrap:break-word;
  8870. text-transform:none;
  8871. visibility:hidden;
  8872. }
  8873. #u17516_div {
  8874. border-width:0px;
  8875. position:absolute;
  8876. left:0px;
  8877. top:0px;
  8878. width:80px;
  8879. height:30px;
  8880. background:inherit;
  8881. background-color:rgba(255, 255, 255, 0);
  8882. border:none;
  8883. border-left:0px;
  8884. border-top:0px;
  8885. border-right:0px;
  8886. border-radius:0px;
  8887. border-bottom-right-radius:0px;
  8888. border-bottom-left-radius:0px;
  8889. -moz-box-shadow:none;
  8890. -webkit-box-shadow:none;
  8891. box-shadow:none;
  8892. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8893. font-weight:400;
  8894. font-style:normal;
  8895. font-size:14px;
  8896. color:#7F7F7F;
  8897. line-height:30px;
  8898. }
  8899. #u17516 {
  8900. border-width:0px;
  8901. position:absolute;
  8902. left:145px;
  8903. top:295px;
  8904. width:80px;
  8905. height:30px;
  8906. display:flex;
  8907. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8908. font-weight:400;
  8909. font-style:normal;
  8910. font-size:14px;
  8911. color:#7F7F7F;
  8912. line-height:30px;
  8913. }
  8914. #u17516 .text {
  8915. position:absolute;
  8916. align-self:flex-start;
  8917. padding:0px 0px 0px 0px;
  8918. box-sizing:border-box;
  8919. width:100%;
  8920. }
  8921. #u17516_text {
  8922. border-width:0px;
  8923. word-wrap:break-word;
  8924. text-transform:none;
  8925. }
  8926. #u17517_div {
  8927. border-width:0px;
  8928. position:absolute;
  8929. left:0px;
  8930. top:0px;
  8931. width:57px;
  8932. height:30px;
  8933. background:inherit;
  8934. background-color:rgba(255, 255, 255, 0);
  8935. border:none;
  8936. border-left:0px;
  8937. border-top:0px;
  8938. border-right:0px;
  8939. border-radius:0px;
  8940. border-bottom-right-radius:0px;
  8941. border-bottom-left-radius:0px;
  8942. -moz-box-shadow:none;
  8943. -webkit-box-shadow:none;
  8944. box-shadow:none;
  8945. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8946. font-weight:400;
  8947. font-style:normal;
  8948. font-size:14px;
  8949. line-height:30px;
  8950. }
  8951. #u17517 {
  8952. border-width:0px;
  8953. position:absolute;
  8954. left:225px;
  8955. top:295px;
  8956. width:57px;
  8957. height:30px;
  8958. display:flex;
  8959. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8960. font-weight:400;
  8961. font-style:normal;
  8962. font-size:14px;
  8963. line-height:30px;
  8964. }
  8965. #u17517 .text {
  8966. position:absolute;
  8967. align-self:flex-start;
  8968. padding:0px 0px 0px 0px;
  8969. box-sizing:border-box;
  8970. width:100%;
  8971. }
  8972. #u17517_text {
  8973. border-width:0px;
  8974. white-space:nowrap;
  8975. text-transform:none;
  8976. }
  8977. #u17518_div {
  8978. border-width:0px;
  8979. position:absolute;
  8980. left:0px;
  8981. top:0px;
  8982. width:80px;
  8983. height:30px;
  8984. background:inherit;
  8985. background-color:rgba(255, 255, 255, 0);
  8986. border:none;
  8987. border-left:0px;
  8988. border-top:0px;
  8989. border-right:0px;
  8990. border-radius:0px;
  8991. border-bottom-right-radius:0px;
  8992. border-bottom-left-radius:0px;
  8993. -moz-box-shadow:none;
  8994. -webkit-box-shadow:none;
  8995. box-shadow:none;
  8996. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8997. font-weight:400;
  8998. font-style:normal;
  8999. font-size:14px;
  9000. color:#7F7F7F;
  9001. line-height:30px;
  9002. }
  9003. #u17518 {
  9004. border-width:0px;
  9005. position:absolute;
  9006. left:145px;
  9007. top:375px;
  9008. width:80px;
  9009. height:30px;
  9010. display:flex;
  9011. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9012. font-weight:400;
  9013. font-style:normal;
  9014. font-size:14px;
  9015. color:#7F7F7F;
  9016. line-height:30px;
  9017. }
  9018. #u17518 .text {
  9019. position:absolute;
  9020. align-self:flex-start;
  9021. padding:0px 0px 0px 0px;
  9022. box-sizing:border-box;
  9023. width:100%;
  9024. }
  9025. #u17518_text {
  9026. border-width:0px;
  9027. word-wrap:break-word;
  9028. text-transform:none;
  9029. }
  9030. #u17519_div {
  9031. border-width:0px;
  9032. position:absolute;
  9033. left:0px;
  9034. top:0px;
  9035. width:57px;
  9036. height:30px;
  9037. background:inherit;
  9038. background-color:rgba(255, 255, 255, 0);
  9039. border:none;
  9040. border-left:0px;
  9041. border-top:0px;
  9042. border-right:0px;
  9043. border-radius:0px;
  9044. border-bottom-right-radius:0px;
  9045. border-bottom-left-radius:0px;
  9046. -moz-box-shadow:none;
  9047. -webkit-box-shadow:none;
  9048. box-shadow:none;
  9049. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9050. font-weight:400;
  9051. font-style:normal;
  9052. font-size:14px;
  9053. line-height:30px;
  9054. }
  9055. #u17519 {
  9056. border-width:0px;
  9057. position:absolute;
  9058. left:225px;
  9059. top:375px;
  9060. width:57px;
  9061. height:30px;
  9062. display:flex;
  9063. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9064. font-weight:400;
  9065. font-style:normal;
  9066. font-size:14px;
  9067. line-height:30px;
  9068. }
  9069. #u17519 .text {
  9070. position:absolute;
  9071. align-self:flex-start;
  9072. padding:0px 0px 0px 0px;
  9073. box-sizing:border-box;
  9074. width:100%;
  9075. }
  9076. #u17519_text {
  9077. border-width:0px;
  9078. white-space:nowrap;
  9079. text-transform:none;
  9080. }
  9081. #u17520_div {
  9082. border-width:0px;
  9083. position:absolute;
  9084. left:0px;
  9085. top:0px;
  9086. width:80px;
  9087. height:30px;
  9088. background:inherit;
  9089. background-color:rgba(255, 255, 255, 0);
  9090. border:none;
  9091. border-left:0px;
  9092. border-top:0px;
  9093. border-right:0px;
  9094. border-radius:0px;
  9095. border-bottom-right-radius:0px;
  9096. border-bottom-left-radius:0px;
  9097. -moz-box-shadow:none;
  9098. -webkit-box-shadow:none;
  9099. box-shadow:none;
  9100. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9101. font-weight:400;
  9102. font-style:normal;
  9103. font-size:14px;
  9104. color:#7F7F7F;
  9105. line-height:30px;
  9106. }
  9107. #u17520 {
  9108. border-width:0px;
  9109. position:absolute;
  9110. left:559px;
  9111. top:375px;
  9112. width:80px;
  9113. height:30px;
  9114. display:flex;
  9115. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9116. font-weight:400;
  9117. font-style:normal;
  9118. font-size:14px;
  9119. color:#7F7F7F;
  9120. line-height:30px;
  9121. }
  9122. #u17520 .text {
  9123. position:absolute;
  9124. align-self:flex-start;
  9125. padding:0px 0px 0px 0px;
  9126. box-sizing:border-box;
  9127. width:100%;
  9128. }
  9129. #u17520_text {
  9130. border-width:0px;
  9131. word-wrap:break-word;
  9132. text-transform:none;
  9133. }
  9134. #u17521_div {
  9135. border-width:0px;
  9136. position:absolute;
  9137. left:0px;
  9138. top:0px;
  9139. width:113px;
  9140. height:30px;
  9141. background:inherit;
  9142. background-color:rgba(255, 255, 255, 0);
  9143. border:none;
  9144. border-left:0px;
  9145. border-top:0px;
  9146. border-right:0px;
  9147. border-radius:0px;
  9148. border-bottom-right-radius:0px;
  9149. border-bottom-left-radius:0px;
  9150. -moz-box-shadow:none;
  9151. -webkit-box-shadow:none;
  9152. box-shadow:none;
  9153. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9154. font-weight:400;
  9155. font-style:normal;
  9156. font-size:14px;
  9157. line-height:30px;
  9158. }
  9159. #u17521 {
  9160. border-width:0px;
  9161. position:absolute;
  9162. left:639px;
  9163. top:375px;
  9164. width:113px;
  9165. height:30px;
  9166. display:flex;
  9167. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9168. font-weight:400;
  9169. font-style:normal;
  9170. font-size:14px;
  9171. line-height:30px;
  9172. }
  9173. #u17521 .text {
  9174. position:absolute;
  9175. align-self:flex-start;
  9176. padding:0px 0px 0px 0px;
  9177. box-sizing:border-box;
  9178. width:100%;
  9179. }
  9180. #u17521_text {
  9181. border-width:0px;
  9182. white-space:nowrap;
  9183. text-transform:none;
  9184. }
  9185. #u17522_div {
  9186. border-width:0px;
  9187. position:absolute;
  9188. left:0px;
  9189. top:0px;
  9190. width:80px;
  9191. height:30px;
  9192. background:inherit;
  9193. background-color:rgba(255, 255, 255, 0);
  9194. border:none;
  9195. border-left:0px;
  9196. border-top:0px;
  9197. border-right:0px;
  9198. border-radius:0px;
  9199. border-bottom-right-radius:0px;
  9200. border-bottom-left-radius:0px;
  9201. -moz-box-shadow:none;
  9202. -webkit-box-shadow:none;
  9203. box-shadow:none;
  9204. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9205. font-weight:400;
  9206. font-style:normal;
  9207. font-size:14px;
  9208. color:#7F7F7F;
  9209. line-height:30px;
  9210. }
  9211. #u17522 {
  9212. border-width:0px;
  9213. position:absolute;
  9214. left:145px;
  9215. top:335px;
  9216. width:80px;
  9217. height:30px;
  9218. display:flex;
  9219. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9220. font-weight:400;
  9221. font-style:normal;
  9222. font-size:14px;
  9223. color:#7F7F7F;
  9224. line-height:30px;
  9225. }
  9226. #u17522 .text {
  9227. position:absolute;
  9228. align-self:flex-start;
  9229. padding:0px 0px 0px 0px;
  9230. box-sizing:border-box;
  9231. width:100%;
  9232. }
  9233. #u17522_text {
  9234. border-width:0px;
  9235. word-wrap:break-word;
  9236. text-transform:none;
  9237. }
  9238. #u17523_div {
  9239. border-width:0px;
  9240. position:absolute;
  9241. left:0px;
  9242. top:0px;
  9243. width:15px;
  9244. height:30px;
  9245. background:inherit;
  9246. background-color:rgba(255, 255, 255, 0);
  9247. border:none;
  9248. border-left:0px;
  9249. border-top:0px;
  9250. border-right:0px;
  9251. border-radius:0px;
  9252. border-bottom-right-radius:0px;
  9253. border-bottom-left-radius:0px;
  9254. -moz-box-shadow:none;
  9255. -webkit-box-shadow:none;
  9256. box-shadow:none;
  9257. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9258. font-weight:400;
  9259. font-style:normal;
  9260. font-size:14px;
  9261. line-height:30px;
  9262. }
  9263. #u17523 {
  9264. border-width:0px;
  9265. position:absolute;
  9266. left:225px;
  9267. top:335px;
  9268. width:15px;
  9269. height:30px;
  9270. display:flex;
  9271. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9272. font-weight:400;
  9273. font-style:normal;
  9274. font-size:14px;
  9275. line-height:30px;
  9276. }
  9277. #u17523 .text {
  9278. position:absolute;
  9279. align-self:flex-start;
  9280. padding:0px 0px 0px 0px;
  9281. box-sizing:border-box;
  9282. width:100%;
  9283. }
  9284. #u17523_text {
  9285. border-width:0px;
  9286. white-space:nowrap;
  9287. text-transform:none;
  9288. }
  9289. #u17524_div {
  9290. border-width:0px;
  9291. position:absolute;
  9292. left:0px;
  9293. top:0px;
  9294. width:80px;
  9295. height:30px;
  9296. background:inherit;
  9297. background-color:rgba(255, 255, 255, 0);
  9298. border:none;
  9299. border-left:0px;
  9300. border-top:0px;
  9301. border-right:0px;
  9302. border-radius:0px;
  9303. border-bottom-right-radius:0px;
  9304. border-bottom-left-radius:0px;
  9305. -moz-box-shadow:none;
  9306. -webkit-box-shadow:none;
  9307. box-shadow:none;
  9308. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9309. font-weight:400;
  9310. font-style:normal;
  9311. font-size:14px;
  9312. color:#7F7F7F;
  9313. line-height:30px;
  9314. }
  9315. #u17524 {
  9316. border-width:0px;
  9317. position:absolute;
  9318. left:559px;
  9319. top:415px;
  9320. width:80px;
  9321. height:30px;
  9322. display:flex;
  9323. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9324. font-weight:400;
  9325. font-style:normal;
  9326. font-size:14px;
  9327. color:#7F7F7F;
  9328. line-height:30px;
  9329. }
  9330. #u17524 .text {
  9331. position:absolute;
  9332. align-self:flex-start;
  9333. padding:0px 0px 0px 0px;
  9334. box-sizing:border-box;
  9335. width:100%;
  9336. }
  9337. #u17524_text {
  9338. border-width:0px;
  9339. word-wrap:break-word;
  9340. text-transform:none;
  9341. }
  9342. #u17525_div {
  9343. border-width:0px;
  9344. position:absolute;
  9345. left:0px;
  9346. top:0px;
  9347. width:113px;
  9348. height:30px;
  9349. background:inherit;
  9350. background-color:rgba(255, 255, 255, 0);
  9351. border:none;
  9352. border-left:0px;
  9353. border-top:0px;
  9354. border-right:0px;
  9355. border-radius:0px;
  9356. border-bottom-right-radius:0px;
  9357. border-bottom-left-radius:0px;
  9358. -moz-box-shadow:none;
  9359. -webkit-box-shadow:none;
  9360. box-shadow:none;
  9361. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9362. font-weight:400;
  9363. font-style:normal;
  9364. font-size:14px;
  9365. line-height:30px;
  9366. }
  9367. #u17525 {
  9368. border-width:0px;
  9369. position:absolute;
  9370. left:639px;
  9371. top:415px;
  9372. width:113px;
  9373. height:30px;
  9374. display:flex;
  9375. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9376. font-weight:400;
  9377. font-style:normal;
  9378. font-size:14px;
  9379. line-height:30px;
  9380. }
  9381. #u17525 .text {
  9382. position:absolute;
  9383. align-self:flex-start;
  9384. padding:0px 0px 0px 0px;
  9385. box-sizing:border-box;
  9386. width:100%;
  9387. }
  9388. #u17525_text {
  9389. border-width:0px;
  9390. white-space:nowrap;
  9391. text-transform:none;
  9392. }
  9393. #u17526_div {
  9394. border-width:0px;
  9395. position:absolute;
  9396. left:0px;
  9397. top:0px;
  9398. width:71px;
  9399. height:30px;
  9400. background:inherit;
  9401. background-color:rgba(255, 255, 255, 0);
  9402. border:none;
  9403. border-left:0px;
  9404. border-top:0px;
  9405. border-right:0px;
  9406. border-radius:0px;
  9407. border-bottom-right-radius:0px;
  9408. border-bottom-left-radius:0px;
  9409. -moz-box-shadow:none;
  9410. -webkit-box-shadow:none;
  9411. box-shadow:none;
  9412. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9413. font-weight:400;
  9414. font-style:normal;
  9415. font-size:14px;
  9416. color:#7F7F7F;
  9417. line-height:30px;
  9418. }
  9419. #u17526 {
  9420. border-width:0px;
  9421. position:absolute;
  9422. left:559px;
  9423. top:295px;
  9424. width:71px;
  9425. height:30px;
  9426. display:flex;
  9427. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9428. font-weight:400;
  9429. font-style:normal;
  9430. font-size:14px;
  9431. color:#7F7F7F;
  9432. line-height:30px;
  9433. }
  9434. #u17526 .text {
  9435. position:absolute;
  9436. align-self:flex-start;
  9437. padding:0px 0px 0px 0px;
  9438. box-sizing:border-box;
  9439. width:100%;
  9440. }
  9441. #u17526_text {
  9442. border-width:0px;
  9443. white-space:nowrap;
  9444. text-transform:none;
  9445. }
  9446. #u17527_div {
  9447. border-width:0px;
  9448. position:absolute;
  9449. left:0px;
  9450. top:0px;
  9451. width:29px;
  9452. height:30px;
  9453. background:inherit;
  9454. background-color:rgba(255, 255, 255, 0);
  9455. border:none;
  9456. border-left:0px;
  9457. border-top:0px;
  9458. border-right:0px;
  9459. border-radius:0px;
  9460. border-bottom-right-radius:0px;
  9461. border-bottom-left-radius:0px;
  9462. -moz-box-shadow:none;
  9463. -webkit-box-shadow:none;
  9464. box-shadow:none;
  9465. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9466. font-weight:400;
  9467. font-style:normal;
  9468. font-size:14px;
  9469. line-height:30px;
  9470. }
  9471. #u17527 {
  9472. border-width:0px;
  9473. position:absolute;
  9474. left:639px;
  9475. top:295px;
  9476. width:29px;
  9477. height:30px;
  9478. display:flex;
  9479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9480. font-weight:400;
  9481. font-style:normal;
  9482. font-size:14px;
  9483. line-height:30px;
  9484. }
  9485. #u17527 .text {
  9486. position:absolute;
  9487. align-self:flex-start;
  9488. padding:0px 0px 0px 0px;
  9489. box-sizing:border-box;
  9490. width:100%;
  9491. }
  9492. #u17527_text {
  9493. border-width:0px;
  9494. white-space:nowrap;
  9495. text-transform:none;
  9496. }
  9497. #u17528_div {
  9498. border-width:0px;
  9499. position:absolute;
  9500. left:0px;
  9501. top:0px;
  9502. width:85px;
  9503. height:30px;
  9504. background:inherit;
  9505. background-color:rgba(255, 255, 255, 0);
  9506. border:none;
  9507. border-left:0px;
  9508. border-top:0px;
  9509. border-right:0px;
  9510. border-radius:0px;
  9511. border-bottom-right-radius:0px;
  9512. border-bottom-left-radius:0px;
  9513. -moz-box-shadow:none;
  9514. -webkit-box-shadow:none;
  9515. box-shadow:none;
  9516. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9517. font-weight:400;
  9518. font-style:normal;
  9519. font-size:14px;
  9520. color:#7F7F7F;
  9521. line-height:30px;
  9522. }
  9523. #u17528 {
  9524. border-width:0px;
  9525. position:absolute;
  9526. left:145px;
  9527. top:455px;
  9528. width:85px;
  9529. height:30px;
  9530. display:flex;
  9531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9532. font-weight:400;
  9533. font-style:normal;
  9534. font-size:14px;
  9535. color:#7F7F7F;
  9536. line-height:30px;
  9537. }
  9538. #u17528 .text {
  9539. position:absolute;
  9540. align-self:flex-start;
  9541. padding:0px 0px 0px 0px;
  9542. box-sizing:border-box;
  9543. width:100%;
  9544. }
  9545. #u17528_text {
  9546. border-width:0px;
  9547. white-space:nowrap;
  9548. text-transform:none;
  9549. }
  9550. #u17529_img {
  9551. border-width:0px;
  9552. position:absolute;
  9553. left:0px;
  9554. top:0px;
  9555. width:153px;
  9556. height:107px;
  9557. }
  9558. #u17529 {
  9559. border-width:0px;
  9560. position:absolute;
  9561. left:145px;
  9562. top:485px;
  9563. width:153px;
  9564. height:107px;
  9565. display:flex;
  9566. }
  9567. #u17529 .text {
  9568. position:absolute;
  9569. align-self:center;
  9570. padding:2px 2px 2px 2px;
  9571. box-sizing:border-box;
  9572. width:100%;
  9573. }
  9574. #u17529_text {
  9575. border-width:0px;
  9576. word-wrap:break-word;
  9577. text-transform:none;
  9578. visibility:hidden;
  9579. }
  9580. #u17530_img {
  9581. border-width:0px;
  9582. position:absolute;
  9583. left:0px;
  9584. top:0px;
  9585. width:153px;
  9586. height:107px;
  9587. }
  9588. #u17530 {
  9589. border-width:0px;
  9590. position:absolute;
  9591. left:308px;
  9592. top:485px;
  9593. width:153px;
  9594. height:107px;
  9595. display:flex;
  9596. }
  9597. #u17530 .text {
  9598. position:absolute;
  9599. align-self:center;
  9600. padding:2px 2px 2px 2px;
  9601. box-sizing:border-box;
  9602. width:100%;
  9603. }
  9604. #u17530_text {
  9605. border-width:0px;
  9606. word-wrap:break-word;
  9607. text-transform:none;
  9608. visibility:hidden;
  9609. }
  9610. #u17531_div {
  9611. border-width:0px;
  9612. position:absolute;
  9613. left:0px;
  9614. top:0px;
  9615. width:71px;
  9616. height:30px;
  9617. background:inherit;
  9618. background-color:rgba(255, 255, 255, 0);
  9619. border:none;
  9620. border-left:0px;
  9621. border-top:0px;
  9622. border-right:0px;
  9623. border-radius:0px;
  9624. border-bottom-right-radius:0px;
  9625. border-bottom-left-radius:0px;
  9626. -moz-box-shadow:none;
  9627. -webkit-box-shadow:none;
  9628. box-shadow:none;
  9629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9630. font-weight:400;
  9631. font-style:normal;
  9632. font-size:14px;
  9633. color:#7F7F7F;
  9634. line-height:30px;
  9635. }
  9636. #u17531 {
  9637. border-width:0px;
  9638. position:absolute;
  9639. left:559px;
  9640. top:455px;
  9641. width:71px;
  9642. height:30px;
  9643. display:flex;
  9644. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9645. font-weight:400;
  9646. font-style:normal;
  9647. font-size:14px;
  9648. color:#7F7F7F;
  9649. line-height:30px;
  9650. }
  9651. #u17531 .text {
  9652. position:absolute;
  9653. align-self:flex-start;
  9654. padding:0px 0px 0px 0px;
  9655. box-sizing:border-box;
  9656. width:100%;
  9657. }
  9658. #u17531_text {
  9659. border-width:0px;
  9660. white-space:nowrap;
  9661. text-transform:none;
  9662. }
  9663. #u17532_img {
  9664. border-width:0px;
  9665. position:absolute;
  9666. left:0px;
  9667. top:0px;
  9668. width:146px;
  9669. height:102px;
  9670. }
  9671. #u17532 {
  9672. border-width:0px;
  9673. position:absolute;
  9674. left:559px;
  9675. top:485px;
  9676. width:146px;
  9677. height:102px;
  9678. display:flex;
  9679. }
  9680. #u17532 .text {
  9681. position:absolute;
  9682. align-self:center;
  9683. padding:2px 2px 2px 2px;
  9684. box-sizing:border-box;
  9685. width:100%;
  9686. }
  9687. #u17532_text {
  9688. border-width:0px;
  9689. word-wrap:break-word;
  9690. text-transform:none;
  9691. visibility:hidden;
  9692. }
  9693. #u17533_img {
  9694. border-width:0px;
  9695. position:absolute;
  9696. left:0px;
  9697. top:0px;
  9698. width:146px;
  9699. height:102px;
  9700. }
  9701. #u17533 {
  9702. border-width:0px;
  9703. position:absolute;
  9704. left:715px;
  9705. top:485px;
  9706. width:146px;
  9707. height:102px;
  9708. display:flex;
  9709. }
  9710. #u17533 .text {
  9711. position:absolute;
  9712. align-self:center;
  9713. padding:2px 2px 2px 2px;
  9714. box-sizing:border-box;
  9715. width:100%;
  9716. }
  9717. #u17533_text {
  9718. border-width:0px;
  9719. word-wrap:break-word;
  9720. text-transform:none;
  9721. visibility:hidden;
  9722. }
  9723. #u17534_img {
  9724. border-width:0px;
  9725. position:absolute;
  9726. left:0px;
  9727. top:0px;
  9728. width:146px;
  9729. height:102px;
  9730. }
  9731. #u17534 {
  9732. border-width:0px;
  9733. position:absolute;
  9734. left:871px;
  9735. top:485px;
  9736. width:146px;
  9737. height:102px;
  9738. display:flex;
  9739. }
  9740. #u17534 .text {
  9741. position:absolute;
  9742. align-self:center;
  9743. padding:2px 2px 2px 2px;
  9744. box-sizing:border-box;
  9745. width:100%;
  9746. }
  9747. #u17534_text {
  9748. border-width:0px;
  9749. word-wrap:break-word;
  9750. text-transform:none;
  9751. visibility:hidden;
  9752. }
  9753. #u17535_div {
  9754. border-width:0px;
  9755. position:absolute;
  9756. left:0px;
  9757. top:0px;
  9758. width:80px;
  9759. height:30px;
  9760. background:inherit;
  9761. background-color:rgba(255, 255, 255, 0);
  9762. border:none;
  9763. border-left:0px;
  9764. border-top:0px;
  9765. border-right:0px;
  9766. border-radius:0px;
  9767. border-bottom-right-radius:0px;
  9768. border-bottom-left-radius:0px;
  9769. -moz-box-shadow:none;
  9770. -webkit-box-shadow:none;
  9771. box-shadow:none;
  9772. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9773. font-weight:400;
  9774. font-style:normal;
  9775. font-size:14px;
  9776. color:#7F7F7F;
  9777. line-height:30px;
  9778. }
  9779. #u17535 {
  9780. border-width:0px;
  9781. position:absolute;
  9782. left:559px;
  9783. top:335px;
  9784. width:80px;
  9785. height:30px;
  9786. display:flex;
  9787. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9788. font-weight:400;
  9789. font-style:normal;
  9790. font-size:14px;
  9791. color:#7F7F7F;
  9792. line-height:30px;
  9793. }
  9794. #u17535 .text {
  9795. position:absolute;
  9796. align-self:flex-start;
  9797. padding:0px 0px 0px 0px;
  9798. box-sizing:border-box;
  9799. width:100%;
  9800. }
  9801. #u17535_text {
  9802. border-width:0px;
  9803. word-wrap:break-word;
  9804. text-transform:none;
  9805. }
  9806. #u17536_div {
  9807. border-width:0px;
  9808. position:absolute;
  9809. left:0px;
  9810. top:0px;
  9811. width:82px;
  9812. height:30px;
  9813. background:inherit;
  9814. background-color:rgba(255, 255, 255, 0);
  9815. border:none;
  9816. border-left:0px;
  9817. border-top:0px;
  9818. border-right:0px;
  9819. border-radius:0px;
  9820. border-bottom-right-radius:0px;
  9821. border-bottom-left-radius:0px;
  9822. -moz-box-shadow:none;
  9823. -webkit-box-shadow:none;
  9824. box-shadow:none;
  9825. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9826. font-weight:400;
  9827. font-style:normal;
  9828. font-size:14px;
  9829. line-height:30px;
  9830. }
  9831. #u17536 {
  9832. border-width:0px;
  9833. position:absolute;
  9834. left:639px;
  9835. top:335px;
  9836. width:82px;
  9837. height:30px;
  9838. display:flex;
  9839. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9840. font-weight:400;
  9841. font-style:normal;
  9842. font-size:14px;
  9843. line-height:30px;
  9844. }
  9845. #u17536 .text {
  9846. position:absolute;
  9847. align-self:flex-start;
  9848. padding:0px 0px 0px 0px;
  9849. box-sizing:border-box;
  9850. width:100%;
  9851. }
  9852. #u17536_text {
  9853. border-width:0px;
  9854. white-space:nowrap;
  9855. text-transform:none;
  9856. }
  9857. #u17537_div {
  9858. border-width:0px;
  9859. position:absolute;
  9860. left:0px;
  9861. top:0px;
  9862. width:80px;
  9863. height:30px;
  9864. background:inherit;
  9865. background-color:rgba(255, 255, 255, 0);
  9866. border:none;
  9867. border-left:0px;
  9868. border-top:0px;
  9869. border-right:0px;
  9870. border-radius:0px;
  9871. border-bottom-right-radius:0px;
  9872. border-bottom-left-radius:0px;
  9873. -moz-box-shadow:none;
  9874. -webkit-box-shadow:none;
  9875. box-shadow:none;
  9876. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9877. font-weight:400;
  9878. font-style:normal;
  9879. font-size:14px;
  9880. color:#7F7F7F;
  9881. line-height:30px;
  9882. }
  9883. #u17537 {
  9884. border-width:0px;
  9885. position:absolute;
  9886. left:145px;
  9887. top:415px;
  9888. width:80px;
  9889. height:30px;
  9890. display:flex;
  9891. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9892. font-weight:400;
  9893. font-style:normal;
  9894. font-size:14px;
  9895. color:#7F7F7F;
  9896. line-height:30px;
  9897. }
  9898. #u17537 .text {
  9899. position:absolute;
  9900. align-self:flex-start;
  9901. padding:0px 0px 0px 0px;
  9902. box-sizing:border-box;
  9903. width:100%;
  9904. }
  9905. #u17537_text {
  9906. border-width:0px;
  9907. word-wrap:break-word;
  9908. text-transform:none;
  9909. }
  9910. #u17538_div {
  9911. border-width:0px;
  9912. position:absolute;
  9913. left:0px;
  9914. top:0px;
  9915. width:81px;
  9916. height:30px;
  9917. background:inherit;
  9918. background-color:rgba(255, 255, 255, 0);
  9919. border:none;
  9920. border-left:0px;
  9921. border-top:0px;
  9922. border-right:0px;
  9923. border-radius:0px;
  9924. border-bottom-right-radius:0px;
  9925. border-bottom-left-radius:0px;
  9926. -moz-box-shadow:none;
  9927. -webkit-box-shadow:none;
  9928. box-shadow:none;
  9929. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9930. font-weight:400;
  9931. font-style:normal;
  9932. font-size:14px;
  9933. line-height:30px;
  9934. }
  9935. #u17538 {
  9936. border-width:0px;
  9937. position:absolute;
  9938. left:225px;
  9939. top:415px;
  9940. width:81px;
  9941. height:30px;
  9942. display:flex;
  9943. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9944. font-weight:400;
  9945. font-style:normal;
  9946. font-size:14px;
  9947. line-height:30px;
  9948. }
  9949. #u17538 .text {
  9950. position:absolute;
  9951. align-self:flex-start;
  9952. padding:0px 0px 0px 0px;
  9953. box-sizing:border-box;
  9954. width:100%;
  9955. }
  9956. #u17538_text {
  9957. border-width:0px;
  9958. white-space:nowrap;
  9959. text-transform:none;
  9960. }
  9961. #u17539_div {
  9962. border-width:0px;
  9963. position:absolute;
  9964. left:0px;
  9965. top:0px;
  9966. width:80px;
  9967. height:30px;
  9968. background:inherit;
  9969. background-color:rgba(255, 255, 255, 0);
  9970. border:none;
  9971. border-left:0px;
  9972. border-top:0px;
  9973. border-right:0px;
  9974. border-radius:0px;
  9975. border-bottom-right-radius:0px;
  9976. border-bottom-left-radius:0px;
  9977. -moz-box-shadow:none;
  9978. -webkit-box-shadow:none;
  9979. box-shadow:none;
  9980. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9981. font-weight:400;
  9982. font-style:normal;
  9983. font-size:14px;
  9984. color:#7F7F7F;
  9985. line-height:30px;
  9986. }
  9987. #u17539 {
  9988. border-width:0px;
  9989. position:absolute;
  9990. left:120px;
  9991. top:195px;
  9992. width:80px;
  9993. height:30px;
  9994. display:flex;
  9995. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9996. font-weight:400;
  9997. font-style:normal;
  9998. font-size:14px;
  9999. color:#7F7F7F;
  10000. line-height:30px;
  10001. }
  10002. #u17539 .text {
  10003. position:absolute;
  10004. align-self:flex-start;
  10005. padding:0px 0px 0px 0px;
  10006. box-sizing:border-box;
  10007. width:100%;
  10008. }
  10009. #u17539_text {
  10010. border-width:0px;
  10011. word-wrap:break-word;
  10012. text-transform:none;
  10013. }
  10014. #u17540_div {
  10015. border-width:0px;
  10016. position:absolute;
  10017. left:0px;
  10018. top:0px;
  10019. width:113px;
  10020. height:30px;
  10021. background:inherit;
  10022. background-color:rgba(255, 255, 255, 0);
  10023. border:none;
  10024. border-left:0px;
  10025. border-top:0px;
  10026. border-right:0px;
  10027. border-radius:0px;
  10028. border-bottom-right-radius:0px;
  10029. border-bottom-left-radius:0px;
  10030. -moz-box-shadow:none;
  10031. -webkit-box-shadow:none;
  10032. box-shadow:none;
  10033. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10034. font-weight:400;
  10035. font-style:normal;
  10036. font-size:14px;
  10037. line-height:30px;
  10038. }
  10039. #u17540 {
  10040. border-width:0px;
  10041. position:absolute;
  10042. left:200px;
  10043. top:195px;
  10044. width:113px;
  10045. height:30px;
  10046. display:flex;
  10047. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10048. font-weight:400;
  10049. font-style:normal;
  10050. font-size:14px;
  10051. line-height:30px;
  10052. }
  10053. #u17540 .text {
  10054. position:absolute;
  10055. align-self:flex-start;
  10056. padding:0px 0px 0px 0px;
  10057. box-sizing:border-box;
  10058. width:100%;
  10059. }
  10060. #u17540_text {
  10061. border-width:0px;
  10062. white-space:nowrap;
  10063. text-transform:none;
  10064. }
  10065. #u17541_div {
  10066. border-width:0px;
  10067. position:absolute;
  10068. left:0px;
  10069. top:0px;
  10070. width:80px;
  10071. height:30px;
  10072. background:inherit;
  10073. background-color:rgba(255, 255, 255, 0);
  10074. border:none;
  10075. border-left:0px;
  10076. border-top:0px;
  10077. border-right:0px;
  10078. border-radius:0px;
  10079. border-bottom-right-radius:0px;
  10080. border-bottom-left-radius:0px;
  10081. -moz-box-shadow:none;
  10082. -webkit-box-shadow:none;
  10083. box-shadow:none;
  10084. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10085. font-weight:400;
  10086. font-style:normal;
  10087. font-size:14px;
  10088. color:#7F7F7F;
  10089. line-height:30px;
  10090. }
  10091. #u17541 {
  10092. border-width:0px;
  10093. position:absolute;
  10094. left:559px;
  10095. top:195px;
  10096. width:80px;
  10097. height:30px;
  10098. display:flex;
  10099. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10100. font-weight:400;
  10101. font-style:normal;
  10102. font-size:14px;
  10103. color:#7F7F7F;
  10104. line-height:30px;
  10105. }
  10106. #u17541 .text {
  10107. position:absolute;
  10108. align-self:flex-start;
  10109. padding:0px 0px 0px 0px;
  10110. box-sizing:border-box;
  10111. width:100%;
  10112. }
  10113. #u17541_text {
  10114. border-width:0px;
  10115. word-wrap:break-word;
  10116. text-transform:none;
  10117. }
  10118. #u17542_div {
  10119. border-width:0px;
  10120. position:absolute;
  10121. left:0px;
  10122. top:0px;
  10123. width:57px;
  10124. height:30px;
  10125. background:inherit;
  10126. background-color:rgba(255, 255, 255, 0);
  10127. border:none;
  10128. border-left:0px;
  10129. border-top:0px;
  10130. border-right:0px;
  10131. border-radius:0px;
  10132. border-bottom-right-radius:0px;
  10133. border-bottom-left-radius:0px;
  10134. -moz-box-shadow:none;
  10135. -webkit-box-shadow:none;
  10136. box-shadow:none;
  10137. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10138. font-weight:400;
  10139. font-style:normal;
  10140. font-size:14px;
  10141. line-height:30px;
  10142. }
  10143. #u17542 {
  10144. border-width:0px;
  10145. position:absolute;
  10146. left:639px;
  10147. top:195px;
  10148. width:57px;
  10149. height:30px;
  10150. display:flex;
  10151. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10152. font-weight:400;
  10153. font-style:normal;
  10154. font-size:14px;
  10155. line-height:30px;
  10156. }
  10157. #u17542 .text {
  10158. position:absolute;
  10159. align-self:flex-start;
  10160. padding:0px 0px 0px 0px;
  10161. box-sizing:border-box;
  10162. width:100%;
  10163. }
  10164. #u17542_text {
  10165. border-width:0px;
  10166. white-space:nowrap;
  10167. text-transform:none;
  10168. }
  10169. #u17543_div {
  10170. border-width:0px;
  10171. position:absolute;
  10172. left:0px;
  10173. top:0px;
  10174. width:85px;
  10175. height:30px;
  10176. background:inherit;
  10177. background-color:rgba(255, 255, 255, 0);
  10178. border:none;
  10179. border-left:0px;
  10180. border-top:0px;
  10181. border-right:0px;
  10182. border-radius:0px;
  10183. border-bottom-right-radius:0px;
  10184. border-bottom-left-radius:0px;
  10185. -moz-box-shadow:none;
  10186. -webkit-box-shadow:none;
  10187. box-shadow:none;
  10188. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10189. font-weight:400;
  10190. font-style:normal;
  10191. font-size:14px;
  10192. color:#7F7F7F;
  10193. line-height:30px;
  10194. }
  10195. #u17543 {
  10196. border-width:0px;
  10197. position:absolute;
  10198. left:559px;
  10199. top:235px;
  10200. width:85px;
  10201. height:30px;
  10202. display:flex;
  10203. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10204. font-weight:400;
  10205. font-style:normal;
  10206. font-size:14px;
  10207. color:#7F7F7F;
  10208. line-height:30px;
  10209. }
  10210. #u17543 .text {
  10211. position:absolute;
  10212. align-self:flex-start;
  10213. padding:0px 0px 0px 0px;
  10214. box-sizing:border-box;
  10215. width:100%;
  10216. }
  10217. #u17543_text {
  10218. border-width:0px;
  10219. white-space:nowrap;
  10220. text-transform:none;
  10221. }
  10222. #u17544_div {
  10223. border-width:0px;
  10224. position:absolute;
  10225. left:0px;
  10226. top:0px;
  10227. width:23px;
  10228. height:30px;
  10229. background:inherit;
  10230. background-color:rgba(255, 255, 255, 0);
  10231. border:none;
  10232. border-left:0px;
  10233. border-top:0px;
  10234. border-right:0px;
  10235. border-radius:0px;
  10236. border-bottom-right-radius:0px;
  10237. border-bottom-left-radius:0px;
  10238. -moz-box-shadow:none;
  10239. -webkit-box-shadow:none;
  10240. box-shadow:none;
  10241. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10242. font-weight:400;
  10243. font-style:normal;
  10244. font-size:14px;
  10245. line-height:30px;
  10246. }
  10247. #u17544 {
  10248. border-width:0px;
  10249. position:absolute;
  10250. left:639px;
  10251. top:235px;
  10252. width:23px;
  10253. height:30px;
  10254. display:flex;
  10255. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10256. font-weight:400;
  10257. font-style:normal;
  10258. font-size:14px;
  10259. line-height:30px;
  10260. }
  10261. #u17544 .text {
  10262. position:absolute;
  10263. align-self:flex-start;
  10264. padding:0px 0px 0px 0px;
  10265. box-sizing:border-box;
  10266. width:100%;
  10267. }
  10268. #u17544_text {
  10269. border-width:0px;
  10270. white-space:nowrap;
  10271. text-transform:none;
  10272. }
  10273. #u17545_div {
  10274. border-width:0px;
  10275. position:absolute;
  10276. left:0px;
  10277. top:0px;
  10278. width:57px;
  10279. height:30px;
  10280. background:inherit;
  10281. background-color:rgba(255, 255, 255, 0);
  10282. border:none;
  10283. border-left:0px;
  10284. border-top:0px;
  10285. border-right:0px;
  10286. border-radius:0px;
  10287. border-bottom-right-radius:0px;
  10288. border-bottom-left-radius:0px;
  10289. -moz-box-shadow:none;
  10290. -webkit-box-shadow:none;
  10291. box-shadow:none;
  10292. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10293. font-weight:400;
  10294. font-style:normal;
  10295. font-size:14px;
  10296. color:#7F7F7F;
  10297. line-height:30px;
  10298. }
  10299. #u17545 {
  10300. border-width:0px;
  10301. position:absolute;
  10302. left:120px;
  10303. top:235px;
  10304. width:57px;
  10305. height:30px;
  10306. display:flex;
  10307. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10308. font-weight:400;
  10309. font-style:normal;
  10310. font-size:14px;
  10311. color:#7F7F7F;
  10312. line-height:30px;
  10313. }
  10314. #u17545 .text {
  10315. position:absolute;
  10316. align-self:flex-start;
  10317. padding:0px 0px 0px 0px;
  10318. box-sizing:border-box;
  10319. width:100%;
  10320. }
  10321. #u17545_text {
  10322. border-width:0px;
  10323. white-space:nowrap;
  10324. text-transform:none;
  10325. }
  10326. #u17546_div {
  10327. border-width:0px;
  10328. position:absolute;
  10329. left:0px;
  10330. top:0px;
  10331. width:41px;
  10332. height:30px;
  10333. background:inherit;
  10334. background-color:rgba(255, 255, 255, 0);
  10335. border:none;
  10336. border-left:0px;
  10337. border-top:0px;
  10338. border-right:0px;
  10339. border-radius:0px;
  10340. border-bottom-right-radius:0px;
  10341. border-bottom-left-radius:0px;
  10342. -moz-box-shadow:none;
  10343. -webkit-box-shadow:none;
  10344. box-shadow:none;
  10345. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10346. font-weight:400;
  10347. font-style:normal;
  10348. font-size:14px;
  10349. line-height:30px;
  10350. }
  10351. #u17546 {
  10352. border-width:0px;
  10353. position:absolute;
  10354. left:200px;
  10355. top:235px;
  10356. width:41px;
  10357. height:30px;
  10358. display:flex;
  10359. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10360. font-weight:400;
  10361. font-style:normal;
  10362. font-size:14px;
  10363. line-height:30px;
  10364. }
  10365. #u17546 .text {
  10366. position:absolute;
  10367. align-self:flex-start;
  10368. padding:0px 0px 0px 0px;
  10369. box-sizing:border-box;
  10370. width:100%;
  10371. }
  10372. #u17546_text {
  10373. border-width:0px;
  10374. white-space:nowrap;
  10375. text-transform:none;
  10376. }