styles.css 123 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-79px;
  6. width:2048px;
  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. #u17023 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u17024_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(255, 255, 255, 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. filter:drop-shadow(none);
  42. transition:none;
  43. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  44. font-weight:400;
  45. font-style:normal;
  46. font-size:14px;
  47. color:#AAAAAA;
  48. text-align:center;
  49. line-height:30px;
  50. }
  51. #u17024 {
  52. border-width:0px;
  53. position:absolute;
  54. left:79px;
  55. top:49px;
  56. width:1000px;
  57. height:1201px;
  58. display:flex;
  59. transition:none;
  60. transform-origin:50% 50%;
  61. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  62. font-weight:400;
  63. font-style:normal;
  64. font-size:14px;
  65. color:#AAAAAA;
  66. text-align:center;
  67. line-height:30px;
  68. }
  69. #u17024 .text {
  70. position:absolute;
  71. align-self:center;
  72. padding:5px 10px 5px 10px;
  73. box-sizing:border-box;
  74. width:100%;
  75. }
  76. #u17024_text {
  77. border-width:0px;
  78. word-wrap:break-word;
  79. text-transform:none;
  80. visibility:hidden;
  81. }
  82. #u17025_div {
  83. border-width:0px;
  84. position:absolute;
  85. left:0px;
  86. top:0px;
  87. width:119px;
  88. height:35px;
  89. background:inherit;
  90. background-color:rgba(255, 255, 255, 0);
  91. border-top:0px;
  92. border-right:0px;
  93. border-bottom:0px;
  94. border-radius:0px;
  95. border-top-left-radius:0px;
  96. border-bottom-left-radius:0px;
  97. filter:drop-shadow(none);
  98. transition:none;
  99. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  100. font-weight:500;
  101. font-style:normal;
  102. font-size:18px;
  103. }
  104. #u17025 {
  105. border-width:0px;
  106. position:absolute;
  107. left:99px;
  108. top:67px;
  109. width:119px;
  110. height:35px;
  111. display:flex;
  112. transition:none;
  113. transform-origin:50% 50%;
  114. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  115. font-weight:500;
  116. font-style:normal;
  117. font-size:18px;
  118. }
  119. #u17025 .text {
  120. position:absolute;
  121. align-self:center;
  122. padding:5px 10px 5px 0px;
  123. box-sizing:border-box;
  124. width:100%;
  125. }
  126. #u17025_text {
  127. border-width:0px;
  128. white-space:nowrap;
  129. text-transform:none;
  130. }
  131. #u17026 {
  132. border-width:0px;
  133. position:absolute;
  134. left:0px;
  135. top:0px;
  136. width:0px;
  137. height:0px;
  138. }
  139. #u17027_div {
  140. border-width:0px;
  141. position:absolute;
  142. left:0px;
  143. top:0px;
  144. width:40px;
  145. height:40px;
  146. background:inherit;
  147. background-color:rgba(255, 255, 255, 0);
  148. border-top:0px;
  149. border-right:0px;
  150. border-bottom:0px;
  151. border-radius:0px;
  152. border-top-left-radius:0px;
  153. border-bottom-left-radius:0px;
  154. filter:drop-shadow(none);
  155. transition:none;
  156. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  157. font-weight:500;
  158. font-style:normal;
  159. font-size:14px;
  160. text-align:center;
  161. }
  162. #u17027 {
  163. border-width:0px;
  164. position:absolute;
  165. left:1039px;
  166. top:49px;
  167. width:40px;
  168. height:40px;
  169. display:flex;
  170. transition:none;
  171. transform-origin:50% 50%;
  172. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  173. font-weight:500;
  174. font-style:normal;
  175. font-size:14px;
  176. text-align:center;
  177. }
  178. #u17027 .text {
  179. position:absolute;
  180. align-self:center;
  181. padding:5px 10px 5px 0px;
  182. box-sizing:border-box;
  183. width:100%;
  184. }
  185. #u17027_text {
  186. border-width:0px;
  187. word-wrap:break-word;
  188. text-transform:none;
  189. }
  190. #u17028 {
  191. border-width:0px;
  192. position:absolute;
  193. left:1027px;
  194. top:65px;
  195. width:13px;
  196. height:13px;
  197. display:flex;
  198. transition:none;
  199. font-size:14px;
  200. }
  201. #u17028 .text {
  202. position:absolute;
  203. align-self:center;
  204. padding:2px 2px 2px 2px;
  205. box-sizing:border-box;
  206. width:100%;
  207. }
  208. #u17028_img {
  209. border-width:0px;
  210. position:absolute;
  211. left:0px;
  212. top:0px;
  213. width:13px;
  214. height:13px;
  215. }
  216. #u17028_text {
  217. border-width:0px;
  218. word-wrap:break-word;
  219. text-transform:none;
  220. visibility:hidden;
  221. }
  222. #u17029_div {
  223. border-width:0px;
  224. position:absolute;
  225. left:0px;
  226. top:0px;
  227. width:213px;
  228. height:43px;
  229. background:inherit;
  230. background-color:rgba(255, 255, 255, 0);
  231. border-top:0px;
  232. border-right:0px;
  233. border-bottom:0px;
  234. border-radius:0px;
  235. border-top-left-radius:0px;
  236. border-bottom-left-radius:0px;
  237. filter:drop-shadow(none);
  238. transition:none;
  239. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  240. font-weight:500;
  241. font-style:normal;
  242. font-size:24px;
  243. }
  244. #u17029 {
  245. border-width:0px;
  246. position:absolute;
  247. left:109px;
  248. top:118px;
  249. width:213px;
  250. height:43px;
  251. display:flex;
  252. transition:none;
  253. transform-origin:50% 50%;
  254. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  255. font-weight:500;
  256. font-style:normal;
  257. font-size:24px;
  258. }
  259. #u17029 .text {
  260. position:absolute;
  261. align-self:center;
  262. padding:5px 10px 5px 0px;
  263. box-sizing:border-box;
  264. width:100%;
  265. }
  266. #u17029_text {
  267. border-width:0px;
  268. white-space:nowrap;
  269. text-transform:none;
  270. }
  271. #u17030 {
  272. border-width:0px;
  273. position:absolute;
  274. left:929px;
  275. top:119px;
  276. width:108px;
  277. height:108px;
  278. display:flex;
  279. -webkit-transform:rotate(315deg);
  280. -moz-transform:rotate(315deg);
  281. -ms-transform:rotate(315deg);
  282. transform:rotate(315deg);
  283. transition:none;
  284. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  285. font-weight:400;
  286. font-style:normal;
  287. font-size:28px;
  288. color:#F59A23;
  289. }
  290. #u17030 .text {
  291. position:absolute;
  292. align-self:center;
  293. padding:2px 2px 2px 2px;
  294. box-sizing:border-box;
  295. width:100%;
  296. }
  297. #u17030_img {
  298. border-width:0px;
  299. position:absolute;
  300. left:0px;
  301. top:0px;
  302. width:108px;
  303. height:108px;
  304. }
  305. #u17030_text {
  306. border-width:0px;
  307. word-wrap:break-word;
  308. text-transform:none;
  309. }
  310. #u17031 {
  311. border-width:0px;
  312. position:absolute;
  313. left:0px;
  314. top:0px;
  315. width:0px;
  316. height:0px;
  317. }
  318. #u17032_div {
  319. border-width:0px;
  320. position:absolute;
  321. left:0px;
  322. top:0px;
  323. width:1000px;
  324. height:60px;
  325. background:inherit;
  326. background-color:rgba(255, 255, 255, 1);
  327. box-sizing:border-box;
  328. border-width:1px;
  329. border-style:solid;
  330. border-color:rgba(215, 215, 215, 1);
  331. border-radius:0px;
  332. filter:drop-shadow(none);
  333. transition:none;
  334. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  335. font-weight:400;
  336. font-style:normal;
  337. font-size:14px;
  338. color:#AAAAAA;
  339. text-align:center;
  340. line-height:30px;
  341. }
  342. #u17032 {
  343. border-width:0px;
  344. position:absolute;
  345. left:79px;
  346. top:1190px;
  347. width:1000px;
  348. height:60px;
  349. display:flex;
  350. transition:none;
  351. transform-origin:50% 50%;
  352. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  353. font-weight:400;
  354. font-style:normal;
  355. font-size:14px;
  356. color:#AAAAAA;
  357. text-align:center;
  358. line-height:30px;
  359. }
  360. #u17032 .text {
  361. position:absolute;
  362. align-self:center;
  363. padding:5px 10px 5px 10px;
  364. box-sizing:border-box;
  365. width:100%;
  366. }
  367. #u17032_text {
  368. border-width:0px;
  369. word-wrap:break-word;
  370. text-transform:none;
  371. visibility:hidden;
  372. }
  373. #u17033_div {
  374. border-width:0px;
  375. position:absolute;
  376. left:0px;
  377. top:0px;
  378. width:80px;
  379. height:30px;
  380. background:inherit;
  381. background-color:rgba(24, 144, 255, 1);
  382. border-radius:4px;
  383. filter:drop-shadow(none);
  384. transition:none;
  385. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  386. font-weight:400;
  387. font-style:normal;
  388. font-size:14px;
  389. color:#FFFFFF;
  390. }
  391. #u17033 {
  392. border-width:0px;
  393. position:absolute;
  394. left:973px;
  395. top:1205px;
  396. width:80px;
  397. height:30px;
  398. display:flex;
  399. transition:none;
  400. transform-origin:50% 50%;
  401. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  402. font-weight:400;
  403. font-style:normal;
  404. font-size:14px;
  405. color:#FFFFFF;
  406. }
  407. #u17033 .text {
  408. position:absolute;
  409. align-self:center;
  410. padding:2px 2px 2px 2px;
  411. box-sizing:border-box;
  412. width:100%;
  413. }
  414. #u17033_text {
  415. border-width:0px;
  416. word-wrap:break-word;
  417. text-transform:none;
  418. }
  419. #u17034_div {
  420. border-width:0px;
  421. position:absolute;
  422. left:0px;
  423. top:0px;
  424. width:80px;
  425. height:30px;
  426. background:inherit;
  427. background-color:rgba(245, 154, 35, 1);
  428. border-radius:4px;
  429. filter:drop-shadow(none);
  430. transition:none;
  431. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  432. font-weight:400;
  433. font-style:normal;
  434. font-size:14px;
  435. color:#FFFFFF;
  436. }
  437. #u17034 {
  438. border-width:0px;
  439. position:absolute;
  440. left:883px;
  441. top:1205px;
  442. width:80px;
  443. height:30px;
  444. display:flex;
  445. transition:none;
  446. transform-origin:50% 50%;
  447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  448. font-weight:400;
  449. font-style:normal;
  450. font-size:14px;
  451. color:#FFFFFF;
  452. }
  453. #u17034 .text {
  454. position:absolute;
  455. align-self:center;
  456. padding:2px 2px 2px 2px;
  457. box-sizing:border-box;
  458. width:100%;
  459. }
  460. #u17034_text {
  461. border-width:0px;
  462. word-wrap:break-word;
  463. text-transform:none;
  464. }
  465. #u17035_div {
  466. border-width:0px;
  467. position:absolute;
  468. left:0px;
  469. top:0px;
  470. width:80px;
  471. height:30px;
  472. background:inherit;
  473. background-color:rgba(255, 255, 255, 1);
  474. box-sizing:border-box;
  475. border-width:1px;
  476. border-style:solid;
  477. border-color:rgba(170, 170, 170, 1);
  478. border-radius:4px;
  479. filter:drop-shadow(none);
  480. transition:none;
  481. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  482. font-weight:400;
  483. font-style:normal;
  484. font-size:14px;
  485. }
  486. #u17035 {
  487. border-width:0px;
  488. position:absolute;
  489. left:793px;
  490. top:1205px;
  491. width:80px;
  492. height:30px;
  493. display:flex;
  494. transition:none;
  495. transform-origin:50% 50%;
  496. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  497. font-weight:400;
  498. font-style:normal;
  499. font-size:14px;
  500. }
  501. #u17035 .text {
  502. position:absolute;
  503. align-self:center;
  504. padding:2px 2px 2px 2px;
  505. box-sizing:border-box;
  506. width:100%;
  507. }
  508. #u17035_text {
  509. border-width:0px;
  510. word-wrap:break-word;
  511. text-transform:none;
  512. }
  513. #u17036_div {
  514. border-width:0px;
  515. position:absolute;
  516. left:0px;
  517. top:0px;
  518. width:80px;
  519. height:30px;
  520. background:inherit;
  521. background-color:rgba(255, 255, 255, 0);
  522. border-left:0px;
  523. border-top:0px;
  524. border-right:0px;
  525. border-radius:0px;
  526. border-bottom-right-radius:0px;
  527. border-bottom-left-radius:0px;
  528. filter:drop-shadow(none);
  529. transition:none;
  530. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  531. font-weight:400;
  532. font-style:normal;
  533. font-size:14px;
  534. color:#7F7F7F;
  535. line-height:30px;
  536. }
  537. #u17036 {
  538. border-width:0px;
  539. position:absolute;
  540. left:109px;
  541. top:181px;
  542. width:80px;
  543. height:30px;
  544. display:flex;
  545. transition:none;
  546. transform-origin:50% 50%;
  547. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  548. font-weight:400;
  549. font-style:normal;
  550. font-size:14px;
  551. color:#7F7F7F;
  552. line-height:30px;
  553. }
  554. #u17036 .text {
  555. position:absolute;
  556. align-self:flex-start;
  557. padding:0px 0px 0px 0px;
  558. box-sizing:border-box;
  559. width:100%;
  560. }
  561. #u17036_text {
  562. border-width:0px;
  563. word-wrap:break-word;
  564. text-transform:none;
  565. }
  566. #u17037_div {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:85px;
  572. height:30px;
  573. background:inherit;
  574. background-color:rgba(255, 255, 255, 0);
  575. border-left:0px;
  576. border-top:0px;
  577. border-right:0px;
  578. border-radius:0px;
  579. border-bottom-right-radius:0px;
  580. border-bottom-left-radius:0px;
  581. filter:drop-shadow(none);
  582. transition:none;
  583. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  584. font-weight:400;
  585. font-style:normal;
  586. font-size:14px;
  587. line-height:30px;
  588. }
  589. #u17037 {
  590. border-width:0px;
  591. position:absolute;
  592. left:189px;
  593. top:181px;
  594. width:85px;
  595. height:30px;
  596. display:flex;
  597. transition:none;
  598. transform-origin:50% 50%;
  599. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  600. font-weight:400;
  601. font-style:normal;
  602. font-size:14px;
  603. line-height:30px;
  604. }
  605. #u17037 .text {
  606. position:absolute;
  607. align-self:flex-start;
  608. padding:0px 0px 0px 0px;
  609. box-sizing:border-box;
  610. width:100%;
  611. }
  612. #u17037_text {
  613. border-width:0px;
  614. white-space:nowrap;
  615. text-transform:none;
  616. }
  617. #u17038_div {
  618. border-width:0px;
  619. position:absolute;
  620. left:0px;
  621. top:0px;
  622. width:80px;
  623. height:30px;
  624. background:inherit;
  625. background-color:rgba(255, 255, 255, 0);
  626. border-left:0px;
  627. border-top:0px;
  628. border-right:0px;
  629. border-radius:0px;
  630. border-bottom-right-radius:0px;
  631. border-bottom-left-radius:0px;
  632. filter:drop-shadow(none);
  633. transition:none;
  634. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  635. font-weight:400;
  636. font-style:normal;
  637. font-size:14px;
  638. color:#7F7F7F;
  639. line-height:30px;
  640. }
  641. #u17038 {
  642. border-width:0px;
  643. position:absolute;
  644. left:109px;
  645. top:396px;
  646. width:80px;
  647. height:30px;
  648. display:flex;
  649. transition:none;
  650. transform-origin:50% 50%;
  651. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  652. font-weight:400;
  653. font-style:normal;
  654. font-size:14px;
  655. color:#7F7F7F;
  656. line-height:30px;
  657. }
  658. #u17038 .text {
  659. position:absolute;
  660. align-self:flex-start;
  661. padding:0px 0px 0px 0px;
  662. box-sizing:border-box;
  663. width:100%;
  664. }
  665. #u17038_text {
  666. border-width:0px;
  667. word-wrap:break-word;
  668. text-transform:none;
  669. }
  670. #u17039_div {
  671. border-width:0px;
  672. position:absolute;
  673. left:0px;
  674. top:0px;
  675. width:71px;
  676. height:30px;
  677. background:inherit;
  678. background-color:rgba(255, 255, 255, 0);
  679. border-left:0px;
  680. border-top:0px;
  681. border-right:0px;
  682. border-radius:0px;
  683. border-bottom-right-radius:0px;
  684. border-bottom-left-radius:0px;
  685. filter:drop-shadow(none);
  686. transition:none;
  687. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  688. font-weight:400;
  689. font-style:normal;
  690. font-size:14px;
  691. line-height:30px;
  692. }
  693. #u17039 {
  694. border-width:0px;
  695. position:absolute;
  696. left:189px;
  697. top:396px;
  698. width:71px;
  699. height:30px;
  700. display:flex;
  701. transition:none;
  702. transform-origin:50% 50%;
  703. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  704. font-weight:400;
  705. font-style:normal;
  706. font-size:14px;
  707. line-height:30px;
  708. }
  709. #u17039 .text {
  710. position:absolute;
  711. align-self:flex-start;
  712. padding:0px 0px 0px 0px;
  713. box-sizing:border-box;
  714. width:100%;
  715. }
  716. #u17039_text {
  717. border-width:0px;
  718. white-space:nowrap;
  719. text-transform:none;
  720. }
  721. #u17040_div {
  722. border-width:0px;
  723. position:absolute;
  724. left:0px;
  725. top:0px;
  726. width:40px;
  727. height:17px;
  728. background:inherit;
  729. background-color:rgba(85, 85, 85, 1);
  730. border-radius:20px;
  731. filter:drop-shadow(none);
  732. transition:none;
  733. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  734. font-weight:400;
  735. font-style:normal;
  736. font-size:12px;
  737. color:#FFFFFF;
  738. text-align:center;
  739. }
  740. #u17040 {
  741. border-width:0px;
  742. position:absolute;
  743. left:332px;
  744. top:131px;
  745. width:40px;
  746. height:17px;
  747. display:flex;
  748. transition:none;
  749. transform-origin:50% 50%;
  750. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  751. font-weight:400;
  752. font-style:normal;
  753. font-size:12px;
  754. color:#FFFFFF;
  755. text-align:center;
  756. }
  757. #u17040 .text {
  758. position:absolute;
  759. align-self:flex-start;
  760. padding:0px 0px 0px 0px;
  761. box-sizing:border-box;
  762. width:100%;
  763. }
  764. #u17040_text {
  765. border-width:0px;
  766. word-wrap:break-word;
  767. text-transform:none;
  768. }
  769. #u17041_div {
  770. border-width:0px;
  771. position:absolute;
  772. left:0px;
  773. top:0px;
  774. width:43px;
  775. height:30px;
  776. background:inherit;
  777. background-color:rgba(255, 255, 255, 0);
  778. border-left:0px;
  779. border-top:0px;
  780. border-right:0px;
  781. border-radius:0px;
  782. border-bottom-right-radius:0px;
  783. border-bottom-left-radius:0px;
  784. filter:drop-shadow(none);
  785. transition:none;
  786. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  787. font-weight:400;
  788. font-style:normal;
  789. font-size:14px;
  790. color:#7F7F7F;
  791. line-height:30px;
  792. }
  793. #u17041 {
  794. border-width:0px;
  795. position:absolute;
  796. left:109px;
  797. top:221px;
  798. width:43px;
  799. height:30px;
  800. display:flex;
  801. transition:none;
  802. transform-origin:50% 50%;
  803. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  804. font-weight:400;
  805. font-style:normal;
  806. font-size:14px;
  807. color:#7F7F7F;
  808. line-height:30px;
  809. }
  810. #u17041 .text {
  811. position:absolute;
  812. align-self:flex-start;
  813. padding:0px 0px 0px 0px;
  814. box-sizing:border-box;
  815. width:100%;
  816. }
  817. #u17041_text {
  818. border-width:0px;
  819. white-space:nowrap;
  820. text-transform:none;
  821. }
  822. #u17042_div {
  823. border-width:0px;
  824. position:absolute;
  825. left:0px;
  826. top:0px;
  827. width:32px;
  828. height:30px;
  829. background:inherit;
  830. background-color:rgba(255, 255, 255, 0);
  831. border-left:0px;
  832. border-top:0px;
  833. border-right:0px;
  834. border-radius:0px;
  835. border-bottom-right-radius:0px;
  836. border-bottom-left-radius:0px;
  837. filter:drop-shadow(none);
  838. transition:none;
  839. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  840. font-weight:400;
  841. font-style:normal;
  842. font-size:14px;
  843. line-height:30px;
  844. }
  845. #u17042 {
  846. border-width:0px;
  847. position:absolute;
  848. left:189px;
  849. top:221px;
  850. width:32px;
  851. height:30px;
  852. display:flex;
  853. transition:none;
  854. transform-origin:50% 50%;
  855. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  856. font-weight:400;
  857. font-style:normal;
  858. font-size:14px;
  859. line-height:30px;
  860. }
  861. #u17042 .text {
  862. position:absolute;
  863. align-self:flex-start;
  864. padding:0px 0px 0px 0px;
  865. box-sizing:border-box;
  866. width:100%;
  867. }
  868. #u17042_text {
  869. border-width:0px;
  870. white-space:nowrap;
  871. text-transform:none;
  872. }
  873. #u17043_div {
  874. border-width:0px;
  875. position:absolute;
  876. left:0px;
  877. top:0px;
  878. width:80px;
  879. height:30px;
  880. background:inherit;
  881. background-color:rgba(255, 255, 255, 0);
  882. border-left:0px;
  883. border-top:0px;
  884. border-right:0px;
  885. border-radius:0px;
  886. border-bottom-right-radius:0px;
  887. border-bottom-left-radius:0px;
  888. filter:drop-shadow(none);
  889. transition:none;
  890. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  891. font-weight:400;
  892. font-style:normal;
  893. font-size:14px;
  894. color:#7F7F7F;
  895. line-height:30px;
  896. }
  897. #u17043 {
  898. border-width:0px;
  899. position:absolute;
  900. left:548px;
  901. top:181px;
  902. width:80px;
  903. height:30px;
  904. display:flex;
  905. transition:none;
  906. transform-origin:50% 50%;
  907. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  908. font-weight:400;
  909. font-style:normal;
  910. font-size:14px;
  911. color:#7F7F7F;
  912. line-height:30px;
  913. }
  914. #u17043 .text {
  915. position:absolute;
  916. align-self:flex-start;
  917. padding:0px 0px 0px 0px;
  918. box-sizing:border-box;
  919. width:100%;
  920. }
  921. #u17043_text {
  922. border-width:0px;
  923. word-wrap:break-word;
  924. text-transform:none;
  925. }
  926. #u17044_div {
  927. border-width:0px;
  928. position:absolute;
  929. left:0px;
  930. top:0px;
  931. width:68px;
  932. height:30px;
  933. background:inherit;
  934. background-color:rgba(255, 255, 255, 0);
  935. border-left:0px;
  936. border-top:0px;
  937. border-right:0px;
  938. border-radius:0px;
  939. border-bottom-right-radius:0px;
  940. border-bottom-left-radius:0px;
  941. filter:drop-shadow(none);
  942. transition:none;
  943. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  944. font-weight:400;
  945. font-style:normal;
  946. font-size:14px;
  947. line-height:30px;
  948. }
  949. #u17044 {
  950. border-width:0px;
  951. position:absolute;
  952. left:628px;
  953. top:181px;
  954. width:68px;
  955. height:30px;
  956. display:flex;
  957. transition:none;
  958. transform-origin:50% 50%;
  959. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  960. font-weight:400;
  961. font-style:normal;
  962. font-size:14px;
  963. line-height:30px;
  964. }
  965. #u17044 .text {
  966. position:absolute;
  967. align-self:flex-start;
  968. padding:0px 0px 0px 0px;
  969. box-sizing:border-box;
  970. width:100%;
  971. }
  972. #u17044_text {
  973. border-width:0px;
  974. white-space:nowrap;
  975. text-transform:none;
  976. }
  977. #u17045_div {
  978. border-width:0px;
  979. position:absolute;
  980. left:0px;
  981. top:0px;
  982. width:71px;
  983. height:30px;
  984. background:inherit;
  985. background-color:rgba(255, 255, 255, 0);
  986. border-left:0px;
  987. border-top:0px;
  988. border-right:0px;
  989. border-radius:0px;
  990. border-bottom-right-radius:0px;
  991. border-bottom-left-radius:0px;
  992. filter:drop-shadow(none);
  993. transition:none;
  994. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  995. font-weight:400;
  996. font-style:normal;
  997. font-size:14px;
  998. color:#7F7F7F;
  999. line-height:30px;
  1000. }
  1001. #u17045 {
  1002. border-width:0px;
  1003. position:absolute;
  1004. left:547px;
  1005. top:276px;
  1006. width:71px;
  1007. height:30px;
  1008. display:flex;
  1009. transition:none;
  1010. transform-origin:50% 50%;
  1011. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1012. font-weight:400;
  1013. font-style:normal;
  1014. font-size:14px;
  1015. color:#7F7F7F;
  1016. line-height:30px;
  1017. }
  1018. #u17045 .text {
  1019. position:absolute;
  1020. align-self:flex-start;
  1021. padding:0px 0px 0px 0px;
  1022. box-sizing:border-box;
  1023. width:100%;
  1024. }
  1025. #u17045_text {
  1026. border-width:0px;
  1027. white-space:nowrap;
  1028. text-transform:none;
  1029. }
  1030. #u17046_div {
  1031. border-width:0px;
  1032. position:absolute;
  1033. left:0px;
  1034. top:0px;
  1035. width:29px;
  1036. height:30px;
  1037. background:inherit;
  1038. background-color:rgba(255, 255, 255, 0);
  1039. border-left:0px;
  1040. border-top:0px;
  1041. border-right:0px;
  1042. border-radius:0px;
  1043. border-bottom-right-radius:0px;
  1044. border-bottom-left-radius:0px;
  1045. filter:drop-shadow(none);
  1046. transition:none;
  1047. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1048. font-weight:400;
  1049. font-style:normal;
  1050. font-size:14px;
  1051. line-height:30px;
  1052. }
  1053. #u17046 {
  1054. border-width:0px;
  1055. position:absolute;
  1056. left:627px;
  1057. top:276px;
  1058. width:29px;
  1059. height:30px;
  1060. display:flex;
  1061. transition:none;
  1062. transform-origin:50% 50%;
  1063. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1064. font-weight:400;
  1065. font-style:normal;
  1066. font-size:14px;
  1067. line-height:30px;
  1068. }
  1069. #u17046 .text {
  1070. position:absolute;
  1071. align-self:flex-start;
  1072. padding:0px 0px 0px 0px;
  1073. box-sizing:border-box;
  1074. width:100%;
  1075. }
  1076. #u17046_text {
  1077. border-width:0px;
  1078. white-space:nowrap;
  1079. text-transform:none;
  1080. }
  1081. #u17047_div {
  1082. border-width:0px;
  1083. position:absolute;
  1084. left:0px;
  1085. top:0px;
  1086. width:43px;
  1087. height:30px;
  1088. background:inherit;
  1089. background-color:rgba(255, 255, 255, 0);
  1090. border-left:0px;
  1091. border-top:0px;
  1092. border-right:0px;
  1093. border-radius:0px;
  1094. border-bottom-right-radius:0px;
  1095. border-bottom-left-radius:0px;
  1096. filter:drop-shadow(none);
  1097. transition:none;
  1098. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1099. font-weight:400;
  1100. font-style:normal;
  1101. font-size:14px;
  1102. color:#7F7F7F;
  1103. line-height:30px;
  1104. }
  1105. #u17047 {
  1106. border-width:0px;
  1107. position:absolute;
  1108. left:109px;
  1109. top:316px;
  1110. width:43px;
  1111. height:30px;
  1112. display:flex;
  1113. transition:none;
  1114. transform-origin:50% 50%;
  1115. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1116. font-weight:400;
  1117. font-style:normal;
  1118. font-size:14px;
  1119. color:#7F7F7F;
  1120. line-height:30px;
  1121. }
  1122. #u17047 .text {
  1123. position:absolute;
  1124. align-self:flex-start;
  1125. padding:0px 0px 0px 0px;
  1126. box-sizing:border-box;
  1127. width:100%;
  1128. }
  1129. #u17047_text {
  1130. border-width:0px;
  1131. white-space:nowrap;
  1132. text-transform:none;
  1133. }
  1134. #u17048_div {
  1135. border-width:0px;
  1136. position:absolute;
  1137. left:0px;
  1138. top:0px;
  1139. width:15px;
  1140. height:30px;
  1141. background:inherit;
  1142. background-color:rgba(255, 255, 255, 0);
  1143. border-left:0px;
  1144. border-top:0px;
  1145. border-right:0px;
  1146. border-radius:0px;
  1147. border-bottom-right-radius:0px;
  1148. border-bottom-left-radius:0px;
  1149. filter:drop-shadow(none);
  1150. transition:none;
  1151. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1152. font-weight:400;
  1153. font-style:normal;
  1154. font-size:14px;
  1155. line-height:30px;
  1156. }
  1157. #u17048 {
  1158. border-width:0px;
  1159. position:absolute;
  1160. left:189px;
  1161. top:316px;
  1162. width:15px;
  1163. height:30px;
  1164. display:flex;
  1165. transition:none;
  1166. transform-origin:50% 50%;
  1167. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1168. font-weight:400;
  1169. font-style:normal;
  1170. font-size:14px;
  1171. line-height:30px;
  1172. }
  1173. #u17048 .text {
  1174. position:absolute;
  1175. align-self:flex-start;
  1176. padding:0px 0px 0px 0px;
  1177. box-sizing:border-box;
  1178. width:100%;
  1179. }
  1180. #u17048_text {
  1181. border-width:0px;
  1182. white-space:nowrap;
  1183. text-transform:none;
  1184. }
  1185. #u17049_div {
  1186. border-width:0px;
  1187. position:absolute;
  1188. left:0px;
  1189. top:0px;
  1190. width:71px;
  1191. height:30px;
  1192. background:inherit;
  1193. background-color:rgba(255, 255, 255, 0);
  1194. border-left:0px;
  1195. border-top:0px;
  1196. border-right:0px;
  1197. border-radius:0px;
  1198. border-bottom-right-radius:0px;
  1199. border-bottom-left-radius:0px;
  1200. filter:drop-shadow(none);
  1201. transition:none;
  1202. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1203. font-weight:400;
  1204. font-style:normal;
  1205. font-size:14px;
  1206. color:#7F7F7F;
  1207. line-height:30px;
  1208. }
  1209. #u17049 {
  1210. border-width:0px;
  1211. position:absolute;
  1212. left:109px;
  1213. top:356px;
  1214. width:71px;
  1215. height:30px;
  1216. display:flex;
  1217. transition:none;
  1218. transform-origin:50% 50%;
  1219. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1220. font-weight:400;
  1221. font-style:normal;
  1222. font-size:14px;
  1223. color:#7F7F7F;
  1224. line-height:30px;
  1225. }
  1226. #u17049 .text {
  1227. position:absolute;
  1228. align-self:flex-start;
  1229. padding:0px 0px 0px 0px;
  1230. box-sizing:border-box;
  1231. width:100%;
  1232. }
  1233. #u17049_text {
  1234. border-width:0px;
  1235. white-space:nowrap;
  1236. text-transform:none;
  1237. }
  1238. #u17050_div {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:43px;
  1244. height:30px;
  1245. background:inherit;
  1246. background-color:rgba(255, 255, 255, 0);
  1247. border-left:0px;
  1248. border-top:0px;
  1249. border-right:0px;
  1250. border-radius:0px;
  1251. border-bottom-right-radius:0px;
  1252. border-bottom-left-radius:0px;
  1253. filter:drop-shadow(none);
  1254. transition:none;
  1255. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1256. font-weight:400;
  1257. font-style:normal;
  1258. font-size:14px;
  1259. line-height:30px;
  1260. }
  1261. #u17050 {
  1262. border-width:0px;
  1263. position:absolute;
  1264. left:189px;
  1265. top:356px;
  1266. width:43px;
  1267. height:30px;
  1268. display:flex;
  1269. transition:none;
  1270. transform-origin:50% 50%;
  1271. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1272. font-weight:400;
  1273. font-style:normal;
  1274. font-size:14px;
  1275. line-height:30px;
  1276. }
  1277. #u17050 .text {
  1278. position:absolute;
  1279. align-self:flex-start;
  1280. padding:0px 0px 0px 0px;
  1281. box-sizing:border-box;
  1282. width:100%;
  1283. }
  1284. #u17050_text {
  1285. border-width:0px;
  1286. white-space:nowrap;
  1287. text-transform:none;
  1288. }
  1289. #u17051_div {
  1290. border-width:0px;
  1291. position:absolute;
  1292. left:0px;
  1293. top:0px;
  1294. width:71px;
  1295. height:30px;
  1296. background:inherit;
  1297. background-color:rgba(255, 255, 255, 0);
  1298. border-left:0px;
  1299. border-top:0px;
  1300. border-right:0px;
  1301. border-radius:0px;
  1302. border-bottom-right-radius:0px;
  1303. border-bottom-left-radius:0px;
  1304. filter:drop-shadow(none);
  1305. transition:none;
  1306. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1307. font-weight:400;
  1308. font-style:normal;
  1309. font-size:14px;
  1310. color:#7F7F7F;
  1311. line-height:30px;
  1312. }
  1313. #u17051 {
  1314. border-width:0px;
  1315. position:absolute;
  1316. left:547px;
  1317. top:356px;
  1318. width:71px;
  1319. height:30px;
  1320. display:flex;
  1321. transition:none;
  1322. transform-origin:50% 50%;
  1323. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1324. font-weight:400;
  1325. font-style:normal;
  1326. font-size:14px;
  1327. color:#7F7F7F;
  1328. line-height:30px;
  1329. }
  1330. #u17051 .text {
  1331. position:absolute;
  1332. align-self:flex-start;
  1333. padding:0px 0px 0px 0px;
  1334. box-sizing:border-box;
  1335. width:100%;
  1336. }
  1337. #u17051_text {
  1338. border-width:0px;
  1339. white-space:nowrap;
  1340. text-transform:none;
  1341. }
  1342. #u17052_div {
  1343. border-width:0px;
  1344. position:absolute;
  1345. left:0px;
  1346. top:0px;
  1347. width:57px;
  1348. height:30px;
  1349. background:inherit;
  1350. background-color:rgba(255, 255, 255, 0);
  1351. border-left:0px;
  1352. border-top:0px;
  1353. border-right:0px;
  1354. border-radius:0px;
  1355. border-bottom-right-radius:0px;
  1356. border-bottom-left-radius:0px;
  1357. filter:drop-shadow(none);
  1358. transition:none;
  1359. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1360. font-weight:400;
  1361. font-style:normal;
  1362. font-size:14px;
  1363. line-height:30px;
  1364. }
  1365. #u17052 {
  1366. border-width:0px;
  1367. position:absolute;
  1368. left:627px;
  1369. top:356px;
  1370. width:57px;
  1371. height:30px;
  1372. display:flex;
  1373. transition:none;
  1374. transform-origin:50% 50%;
  1375. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1376. font-weight:400;
  1377. font-style:normal;
  1378. font-size:14px;
  1379. line-height:30px;
  1380. }
  1381. #u17052 .text {
  1382. position:absolute;
  1383. align-self:flex-start;
  1384. padding:0px 0px 0px 0px;
  1385. box-sizing:border-box;
  1386. width:100%;
  1387. }
  1388. #u17052_text {
  1389. border-width:0px;
  1390. white-space:nowrap;
  1391. text-transform:none;
  1392. }
  1393. #u17053_div {
  1394. border-width:0px;
  1395. position:absolute;
  1396. left:0px;
  1397. top:0px;
  1398. width:71px;
  1399. height:30px;
  1400. background:inherit;
  1401. background-color:rgba(255, 255, 255, 0);
  1402. border-left:0px;
  1403. border-top:0px;
  1404. border-right:0px;
  1405. border-radius:0px;
  1406. border-bottom-right-radius:0px;
  1407. border-bottom-left-radius:0px;
  1408. filter:drop-shadow(none);
  1409. transition:none;
  1410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1411. font-weight:400;
  1412. font-style:normal;
  1413. font-size:14px;
  1414. color:#7F7F7F;
  1415. line-height:30px;
  1416. }
  1417. #u17053 {
  1418. border-width:0px;
  1419. position:absolute;
  1420. left:547px;
  1421. top:316px;
  1422. width:71px;
  1423. height:30px;
  1424. display:flex;
  1425. transition:none;
  1426. transform-origin:50% 50%;
  1427. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1428. font-weight:400;
  1429. font-style:normal;
  1430. font-size:14px;
  1431. color:#7F7F7F;
  1432. line-height:30px;
  1433. }
  1434. #u17053 .text {
  1435. position:absolute;
  1436. align-self:flex-start;
  1437. padding:0px 0px 0px 0px;
  1438. box-sizing:border-box;
  1439. width:100%;
  1440. }
  1441. #u17053_text {
  1442. border-width:0px;
  1443. white-space:nowrap;
  1444. text-transform:none;
  1445. }
  1446. #u17054_div {
  1447. border-width:0px;
  1448. position:absolute;
  1449. left:0px;
  1450. top:0px;
  1451. width:82px;
  1452. height:30px;
  1453. background:inherit;
  1454. background-color:rgba(255, 255, 255, 0);
  1455. border-left:0px;
  1456. border-top:0px;
  1457. border-right:0px;
  1458. border-radius:0px;
  1459. border-bottom-right-radius:0px;
  1460. border-bottom-left-radius:0px;
  1461. filter:drop-shadow(none);
  1462. transition:none;
  1463. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1464. font-weight:400;
  1465. font-style:normal;
  1466. font-size:14px;
  1467. line-height:30px;
  1468. }
  1469. #u17054 {
  1470. border-width:0px;
  1471. position:absolute;
  1472. left:627px;
  1473. top:316px;
  1474. width:82px;
  1475. height:30px;
  1476. display:flex;
  1477. transition:none;
  1478. transform-origin:50% 50%;
  1479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1480. font-weight:400;
  1481. font-style:normal;
  1482. font-size:14px;
  1483. line-height:30px;
  1484. }
  1485. #u17054 .text {
  1486. position:absolute;
  1487. align-self:flex-start;
  1488. padding:0px 0px 0px 0px;
  1489. box-sizing:border-box;
  1490. width:100%;
  1491. }
  1492. #u17054_text {
  1493. border-width:0px;
  1494. white-space:nowrap;
  1495. text-transform:none;
  1496. }
  1497. #u17055_div {
  1498. border-width:0px;
  1499. position:absolute;
  1500. left:0px;
  1501. top:0px;
  1502. width:71px;
  1503. height:30px;
  1504. background:inherit;
  1505. background-color:rgba(255, 255, 255, 0);
  1506. border-left:0px;
  1507. border-top:0px;
  1508. border-right:0px;
  1509. border-radius:0px;
  1510. border-bottom-right-radius:0px;
  1511. border-bottom-left-radius:0px;
  1512. filter:drop-shadow(none);
  1513. transition:none;
  1514. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1515. font-weight:400;
  1516. font-style:normal;
  1517. font-size:14px;
  1518. color:#7F7F7F;
  1519. line-height:30px;
  1520. }
  1521. #u17055 {
  1522. border-width:0px;
  1523. position:absolute;
  1524. left:109px;
  1525. top:276px;
  1526. width:71px;
  1527. height:30px;
  1528. display:flex;
  1529. transition:none;
  1530. transform-origin:50% 50%;
  1531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1532. font-weight:400;
  1533. font-style:normal;
  1534. font-size:14px;
  1535. color:#7F7F7F;
  1536. line-height:30px;
  1537. }
  1538. #u17055 .text {
  1539. position:absolute;
  1540. align-self:flex-start;
  1541. padding:0px 0px 0px 0px;
  1542. box-sizing:border-box;
  1543. width:100%;
  1544. }
  1545. #u17055_text {
  1546. border-width:0px;
  1547. white-space:nowrap;
  1548. text-transform:none;
  1549. }
  1550. #u17056_div {
  1551. border-width:0px;
  1552. position:absolute;
  1553. left:0px;
  1554. top:0px;
  1555. width:57px;
  1556. height:30px;
  1557. background:inherit;
  1558. background-color:rgba(255, 255, 255, 0);
  1559. border-left:0px;
  1560. border-top:0px;
  1561. border-right:0px;
  1562. border-radius:0px;
  1563. border-bottom-right-radius:0px;
  1564. border-bottom-left-radius:0px;
  1565. filter:drop-shadow(none);
  1566. transition:none;
  1567. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1568. font-weight:400;
  1569. font-style:normal;
  1570. font-size:14px;
  1571. line-height:30px;
  1572. }
  1573. #u17056 {
  1574. border-width:0px;
  1575. position:absolute;
  1576. left:189px;
  1577. top:276px;
  1578. width:57px;
  1579. height:30px;
  1580. display:flex;
  1581. transition:none;
  1582. transform-origin:50% 50%;
  1583. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1584. font-weight:400;
  1585. font-style:normal;
  1586. font-size:14px;
  1587. line-height:30px;
  1588. }
  1589. #u17056 .text {
  1590. position:absolute;
  1591. align-self:flex-start;
  1592. padding:0px 0px 0px 0px;
  1593. box-sizing:border-box;
  1594. width:100%;
  1595. }
  1596. #u17056_text {
  1597. border-width:0px;
  1598. white-space:nowrap;
  1599. text-transform:none;
  1600. }
  1601. #u17057_div {
  1602. border-width:0px;
  1603. position:absolute;
  1604. left:0px;
  1605. top:0px;
  1606. width:85px;
  1607. height:30px;
  1608. background:inherit;
  1609. background-color:rgba(255, 255, 255, 0);
  1610. border-left:0px;
  1611. border-top:0px;
  1612. border-right:0px;
  1613. border-radius:0px;
  1614. border-bottom-right-radius:0px;
  1615. border-bottom-left-radius:0px;
  1616. filter:drop-shadow(none);
  1617. transition:none;
  1618. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1619. font-weight:400;
  1620. font-style:normal;
  1621. font-size:14px;
  1622. color:#7F7F7F;
  1623. line-height:30px;
  1624. }
  1625. #u17057 {
  1626. border-width:0px;
  1627. position:absolute;
  1628. left:548px;
  1629. top:221px;
  1630. width:85px;
  1631. height:30px;
  1632. display:flex;
  1633. transition:none;
  1634. transform-origin:50% 50%;
  1635. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1636. font-weight:400;
  1637. font-style:normal;
  1638. font-size:14px;
  1639. color:#7F7F7F;
  1640. line-height:30px;
  1641. }
  1642. #u17057 .text {
  1643. position:absolute;
  1644. align-self:flex-start;
  1645. padding:0px 0px 0px 0px;
  1646. box-sizing:border-box;
  1647. width:100%;
  1648. }
  1649. #u17057_text {
  1650. border-width:0px;
  1651. white-space:nowrap;
  1652. text-transform:none;
  1653. }
  1654. #u17058_div {
  1655. border-width:0px;
  1656. position:absolute;
  1657. left:0px;
  1658. top:0px;
  1659. width:197px;
  1660. height:30px;
  1661. background:inherit;
  1662. background-color:rgba(255, 255, 255, 0);
  1663. border-left:0px;
  1664. border-top:0px;
  1665. border-right:0px;
  1666. border-radius:0px;
  1667. border-bottom-right-radius:0px;
  1668. border-bottom-left-radius:0px;
  1669. filter:drop-shadow(none);
  1670. transition:none;
  1671. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1672. font-weight:400;
  1673. font-style:normal;
  1674. font-size:14px;
  1675. line-height:30px;
  1676. }
  1677. #u17058 {
  1678. border-width:0px;
  1679. position:absolute;
  1680. left:628px;
  1681. top:221px;
  1682. width:197px;
  1683. height:30px;
  1684. display:flex;
  1685. transition:none;
  1686. transform-origin:50% 50%;
  1687. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1688. font-weight:400;
  1689. font-style:normal;
  1690. font-size:14px;
  1691. line-height:30px;
  1692. }
  1693. #u17058 .text {
  1694. position:absolute;
  1695. align-self:flex-start;
  1696. padding:0px 0px 0px 0px;
  1697. box-sizing:border-box;
  1698. width:100%;
  1699. }
  1700. #u17058_text {
  1701. border-width:0px;
  1702. white-space:nowrap;
  1703. text-transform:none;
  1704. }
  1705. #u17059_div {
  1706. border-width:0px;
  1707. position:absolute;
  1708. left:0px;
  1709. top:0px;
  1710. width:85px;
  1711. height:30px;
  1712. background:inherit;
  1713. background-color:rgba(255, 255, 255, 0);
  1714. border-left:0px;
  1715. border-top:0px;
  1716. border-right:0px;
  1717. border-radius:0px;
  1718. border-bottom-right-radius:0px;
  1719. border-bottom-left-radius:0px;
  1720. filter:drop-shadow(none);
  1721. transition:none;
  1722. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1723. font-weight:400;
  1724. font-style:normal;
  1725. font-size:14px;
  1726. color:#7F7F7F;
  1727. line-height:30px;
  1728. }
  1729. #u17059 {
  1730. border-width:0px;
  1731. position:absolute;
  1732. left:547px;
  1733. top:476px;
  1734. width:85px;
  1735. height:30px;
  1736. display:flex;
  1737. transition:none;
  1738. transform-origin:50% 50%;
  1739. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1740. font-weight:400;
  1741. font-style:normal;
  1742. font-size:14px;
  1743. color:#7F7F7F;
  1744. line-height:30px;
  1745. }
  1746. #u17059 .text {
  1747. position:absolute;
  1748. align-self:flex-start;
  1749. padding:0px 0px 0px 0px;
  1750. box-sizing:border-box;
  1751. width:100%;
  1752. }
  1753. #u17059_text {
  1754. border-width:0px;
  1755. white-space:nowrap;
  1756. text-transform:none;
  1757. }
  1758. #u17060 {
  1759. border-width:0px;
  1760. position:absolute;
  1761. left:547px;
  1762. top:506px;
  1763. width:153px;
  1764. height:107px;
  1765. display:flex;
  1766. transition:none;
  1767. }
  1768. #u17060 .text {
  1769. position:absolute;
  1770. align-self:center;
  1771. padding:2px 2px 2px 2px;
  1772. box-sizing:border-box;
  1773. width:100%;
  1774. }
  1775. #u17060_img {
  1776. border-width:0px;
  1777. position:absolute;
  1778. left:0px;
  1779. top:0px;
  1780. width:153px;
  1781. height:107px;
  1782. }
  1783. #u17060_text {
  1784. border-width:0px;
  1785. word-wrap:break-word;
  1786. text-transform:none;
  1787. visibility:hidden;
  1788. }
  1789. #u17061 {
  1790. border-width:0px;
  1791. position:absolute;
  1792. left:710px;
  1793. top:506px;
  1794. width:153px;
  1795. height:107px;
  1796. display:flex;
  1797. transition:none;
  1798. }
  1799. #u17061 .text {
  1800. position:absolute;
  1801. align-self:center;
  1802. padding:2px 2px 2px 2px;
  1803. box-sizing:border-box;
  1804. width:100%;
  1805. }
  1806. #u17061_img {
  1807. border-width:0px;
  1808. position:absolute;
  1809. left:0px;
  1810. top:0px;
  1811. width:153px;
  1812. height:107px;
  1813. }
  1814. #u17061_text {
  1815. border-width:0px;
  1816. word-wrap:break-word;
  1817. text-transform:none;
  1818. visibility:hidden;
  1819. }
  1820. #u17062_div {
  1821. border-width:0px;
  1822. position:absolute;
  1823. left:0px;
  1824. top:0px;
  1825. width:71px;
  1826. height:30px;
  1827. background:inherit;
  1828. background-color:rgba(255, 255, 255, 0);
  1829. border-left:0px;
  1830. border-top:0px;
  1831. border-right:0px;
  1832. border-radius:0px;
  1833. border-bottom-right-radius:0px;
  1834. border-bottom-left-radius:0px;
  1835. filter:drop-shadow(none);
  1836. transition:none;
  1837. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1838. font-weight:400;
  1839. font-style:normal;
  1840. font-size:14px;
  1841. color:#7F7F7F;
  1842. line-height:30px;
  1843. }
  1844. #u17062 {
  1845. border-width:0px;
  1846. position:absolute;
  1847. left:109px;
  1848. top:633px;
  1849. width:71px;
  1850. height:30px;
  1851. display:flex;
  1852. transition:none;
  1853. transform-origin:50% 50%;
  1854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1855. font-weight:400;
  1856. font-style:normal;
  1857. font-size:14px;
  1858. color:#7F7F7F;
  1859. line-height:30px;
  1860. }
  1861. #u17062 .text {
  1862. position:absolute;
  1863. align-self:flex-start;
  1864. padding:0px 0px 0px 0px;
  1865. box-sizing:border-box;
  1866. width:100%;
  1867. }
  1868. #u17062_text {
  1869. border-width:0px;
  1870. white-space:nowrap;
  1871. text-transform:none;
  1872. }
  1873. #u17063 {
  1874. border-width:0px;
  1875. position:absolute;
  1876. left:109px;
  1877. top:663px;
  1878. width:146px;
  1879. height:102px;
  1880. display:flex;
  1881. transition:none;
  1882. }
  1883. #u17063 .text {
  1884. position:absolute;
  1885. align-self:center;
  1886. padding:2px 2px 2px 2px;
  1887. box-sizing:border-box;
  1888. width:100%;
  1889. }
  1890. #u17063_img {
  1891. border-width:0px;
  1892. position:absolute;
  1893. left:0px;
  1894. top:0px;
  1895. width:146px;
  1896. height:102px;
  1897. }
  1898. #u17063_text {
  1899. border-width:0px;
  1900. word-wrap:break-word;
  1901. text-transform:none;
  1902. visibility:hidden;
  1903. }
  1904. #u17064 {
  1905. border-width:0px;
  1906. position:absolute;
  1907. left:265px;
  1908. top:663px;
  1909. width:146px;
  1910. height:102px;
  1911. display:flex;
  1912. transition:none;
  1913. }
  1914. #u17064 .text {
  1915. position:absolute;
  1916. align-self:center;
  1917. padding:2px 2px 2px 2px;
  1918. box-sizing:border-box;
  1919. width:100%;
  1920. }
  1921. #u17064_img {
  1922. border-width:0px;
  1923. position:absolute;
  1924. left:0px;
  1925. top:0px;
  1926. width:146px;
  1927. height:102px;
  1928. }
  1929. #u17064_text {
  1930. border-width:0px;
  1931. word-wrap:break-word;
  1932. text-transform:none;
  1933. visibility:hidden;
  1934. }
  1935. #u17065 {
  1936. border-width:0px;
  1937. position:absolute;
  1938. left:421px;
  1939. top:663px;
  1940. width:146px;
  1941. height:102px;
  1942. display:flex;
  1943. transition:none;
  1944. }
  1945. #u17065 .text {
  1946. position:absolute;
  1947. align-self:center;
  1948. padding:2px 2px 2px 2px;
  1949. box-sizing:border-box;
  1950. width:100%;
  1951. }
  1952. #u17065_img {
  1953. border-width:0px;
  1954. position:absolute;
  1955. left:0px;
  1956. top:0px;
  1957. width:146px;
  1958. height:102px;
  1959. }
  1960. #u17065_text {
  1961. border-width:0px;
  1962. word-wrap:break-word;
  1963. text-transform:none;
  1964. visibility:hidden;
  1965. }
  1966. #u17066_div {
  1967. border-width:0px;
  1968. position:absolute;
  1969. left:0px;
  1970. top:0px;
  1971. width:71px;
  1972. height:30px;
  1973. background:inherit;
  1974. background-color:rgba(255, 255, 255, 0);
  1975. border-left:0px;
  1976. border-top:0px;
  1977. border-right:0px;
  1978. border-radius:0px;
  1979. border-bottom-right-radius:0px;
  1980. border-bottom-left-radius:0px;
  1981. filter:drop-shadow(none);
  1982. transition:none;
  1983. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1984. font-weight:400;
  1985. font-style:normal;
  1986. font-size:14px;
  1987. color:#7F7F7F;
  1988. line-height:30px;
  1989. }
  1990. #u17066 {
  1991. border-width:0px;
  1992. position:absolute;
  1993. left:109px;
  1994. top:436px;
  1995. width:71px;
  1996. height:30px;
  1997. display:flex;
  1998. transition:none;
  1999. transform-origin:50% 50%;
  2000. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2001. font-weight:400;
  2002. font-style:normal;
  2003. font-size:14px;
  2004. color:#7F7F7F;
  2005. line-height:30px;
  2006. }
  2007. #u17066 .text {
  2008. position:absolute;
  2009. align-self:flex-start;
  2010. padding:0px 0px 0px 0px;
  2011. box-sizing:border-box;
  2012. width:100%;
  2013. }
  2014. #u17066_text {
  2015. border-width:0px;
  2016. white-space:nowrap;
  2017. text-transform:none;
  2018. }
  2019. #u17067_div {
  2020. border-width:0px;
  2021. position:absolute;
  2022. left:0px;
  2023. top:0px;
  2024. width:337px;
  2025. height:30px;
  2026. background:inherit;
  2027. background-color:rgba(255, 255, 255, 0);
  2028. border-left:0px;
  2029. border-top:0px;
  2030. border-right:0px;
  2031. border-radius:0px;
  2032. border-bottom-right-radius:0px;
  2033. border-bottom-left-radius:0px;
  2034. filter:drop-shadow(none);
  2035. transition:none;
  2036. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2037. font-weight:400;
  2038. font-style:normal;
  2039. font-size:14px;
  2040. line-height:30px;
  2041. }
  2042. #u17067 {
  2043. border-width:0px;
  2044. position:absolute;
  2045. left:189px;
  2046. top:436px;
  2047. width:337px;
  2048. height:30px;
  2049. display:flex;
  2050. transition:none;
  2051. transform-origin:50% 50%;
  2052. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2053. font-weight:400;
  2054. font-style:normal;
  2055. font-size:14px;
  2056. line-height:30px;
  2057. }
  2058. #u17067 .text {
  2059. position:absolute;
  2060. align-self:flex-start;
  2061. padding:0px 0px 0px 0px;
  2062. box-sizing:border-box;
  2063. width:100%;
  2064. }
  2065. #u17067_text {
  2066. border-width:0px;
  2067. white-space:nowrap;
  2068. text-transform:none;
  2069. }
  2070. #u17068_div {
  2071. border-width:0px;
  2072. position:absolute;
  2073. left:0px;
  2074. top:0px;
  2075. width:99px;
  2076. height:30px;
  2077. background:inherit;
  2078. background-color:rgba(255, 255, 255, 0);
  2079. border-left:0px;
  2080. border-top:0px;
  2081. border-right:0px;
  2082. border-radius:0px;
  2083. border-bottom-right-radius:0px;
  2084. border-bottom-left-radius:0px;
  2085. filter:drop-shadow(none);
  2086. transition:none;
  2087. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2088. font-weight:400;
  2089. font-style:normal;
  2090. font-size:14px;
  2091. color:#7F7F7F;
  2092. line-height:30px;
  2093. }
  2094. #u17068 {
  2095. border-width:0px;
  2096. position:absolute;
  2097. left:547px;
  2098. top:396px;
  2099. width:99px;
  2100. height:30px;
  2101. display:flex;
  2102. transition:none;
  2103. transform-origin:50% 50%;
  2104. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2105. font-weight:400;
  2106. font-style:normal;
  2107. font-size:14px;
  2108. color:#7F7F7F;
  2109. line-height:30px;
  2110. }
  2111. #u17068 .text {
  2112. position:absolute;
  2113. align-self:flex-start;
  2114. padding:0px 0px 0px 0px;
  2115. box-sizing:border-box;
  2116. width:100%;
  2117. }
  2118. #u17068_text {
  2119. border-width:0px;
  2120. white-space:nowrap;
  2121. text-transform:none;
  2122. }
  2123. #u17069_div {
  2124. border-width:0px;
  2125. position:absolute;
  2126. left:0px;
  2127. top:0px;
  2128. width:169px;
  2129. height:30px;
  2130. background:inherit;
  2131. background-color:rgba(255, 255, 255, 0);
  2132. border-left:0px;
  2133. border-top:0px;
  2134. border-right:0px;
  2135. border-radius:0px;
  2136. border-bottom-right-radius:0px;
  2137. border-bottom-left-radius:0px;
  2138. filter:drop-shadow(none);
  2139. transition:none;
  2140. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2141. font-weight:400;
  2142. font-style:normal;
  2143. font-size:14px;
  2144. line-height:30px;
  2145. }
  2146. #u17069 {
  2147. border-width:0px;
  2148. position:absolute;
  2149. left:646px;
  2150. top:396px;
  2151. width:169px;
  2152. height:30px;
  2153. display:flex;
  2154. transition:none;
  2155. transform-origin:50% 50%;
  2156. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2157. font-weight:400;
  2158. font-style:normal;
  2159. font-size:14px;
  2160. line-height:30px;
  2161. }
  2162. #u17069 .text {
  2163. position:absolute;
  2164. align-self:flex-start;
  2165. padding:0px 0px 0px 0px;
  2166. box-sizing:border-box;
  2167. width:100%;
  2168. }
  2169. #u17069_text {
  2170. border-width:0px;
  2171. white-space:nowrap;
  2172. text-transform:none;
  2173. }
  2174. #u17070_div {
  2175. border-width:0px;
  2176. position:absolute;
  2177. left:0px;
  2178. top:0px;
  2179. width:57px;
  2180. height:30px;
  2181. background:inherit;
  2182. background-color:rgba(255, 255, 255, 0);
  2183. border-left:0px;
  2184. border-top:0px;
  2185. border-right:0px;
  2186. border-radius:0px;
  2187. border-bottom-right-radius:0px;
  2188. border-bottom-left-radius:0px;
  2189. filter:drop-shadow(none);
  2190. transition:none;
  2191. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2192. font-weight:400;
  2193. font-style:normal;
  2194. font-size:14px;
  2195. color:#7F7F7F;
  2196. line-height:30px;
  2197. }
  2198. #u17070 {
  2199. border-width:0px;
  2200. position:absolute;
  2201. left:109px;
  2202. top:476px;
  2203. width:57px;
  2204. height:30px;
  2205. display:flex;
  2206. transition:none;
  2207. transform-origin:50% 50%;
  2208. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2209. font-weight:400;
  2210. font-style:normal;
  2211. font-size:14px;
  2212. color:#7F7F7F;
  2213. line-height:30px;
  2214. }
  2215. #u17070 .text {
  2216. position:absolute;
  2217. align-self:flex-start;
  2218. padding:0px 0px 0px 0px;
  2219. box-sizing:border-box;
  2220. width:100%;
  2221. }
  2222. #u17070_text {
  2223. border-width:0px;
  2224. white-space:nowrap;
  2225. text-transform:none;
  2226. }
  2227. #u17071 {
  2228. border-width:0px;
  2229. position:absolute;
  2230. left:109px;
  2231. top:506px;
  2232. width:153px;
  2233. height:107px;
  2234. display:flex;
  2235. transition:none;
  2236. }
  2237. #u17071 .text {
  2238. position:absolute;
  2239. align-self:center;
  2240. padding:2px 2px 2px 2px;
  2241. box-sizing:border-box;
  2242. width:100%;
  2243. }
  2244. #u17071_img {
  2245. border-width:0px;
  2246. position:absolute;
  2247. left:0px;
  2248. top:0px;
  2249. width:153px;
  2250. height:107px;
  2251. }
  2252. #u17071_text {
  2253. border-width:0px;
  2254. word-wrap:break-word;
  2255. text-transform:none;
  2256. visibility:hidden;
  2257. }
  2258. #u17072 {
  2259. border-width:0px;
  2260. position:absolute;
  2261. left:0px;
  2262. top:0px;
  2263. width:0px;
  2264. height:0px;
  2265. }
  2266. #u17073_div {
  2267. border-width:0px;
  2268. position:absolute;
  2269. left:0px;
  2270. top:0px;
  2271. width:360px;
  2272. height:300px;
  2273. background:inherit;
  2274. background-color:rgba(255, 255, 255, 1);
  2275. border-radius:6px;
  2276. filter:drop-shadow(0px 0px 2.5px rgba(0, 0, 0, 0.34901960784313724));
  2277. transition:none;
  2278. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2279. font-weight:400;
  2280. font-style:normal;
  2281. font-size:12px;
  2282. color:#FFFFFF;
  2283. }
  2284. #u17073 {
  2285. border-width:0px;
  2286. position:absolute;
  2287. left:674px;
  2288. top:819px;
  2289. width:360px;
  2290. height:300px;
  2291. display:flex;
  2292. transition:none;
  2293. transform-origin:50% 50%;
  2294. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2295. font-weight:400;
  2296. font-style:normal;
  2297. font-size:12px;
  2298. color:#FFFFFF;
  2299. }
  2300. #u17073 .text {
  2301. position:absolute;
  2302. align-self:center;
  2303. padding:2px 2px 2px 2px;
  2304. box-sizing:border-box;
  2305. width:100%;
  2306. }
  2307. #u17073_text {
  2308. border-width:0px;
  2309. word-wrap:break-word;
  2310. text-transform:none;
  2311. visibility:hidden;
  2312. }
  2313. #u17074_div {
  2314. border-width:0px;
  2315. position:absolute;
  2316. left:0px;
  2317. top:0px;
  2318. width:37px;
  2319. height:25px;
  2320. background:inherit;
  2321. background-color:rgba(255, 255, 255, 0);
  2322. border-radius:0px;
  2323. filter:drop-shadow(none);
  2324. transition:none;
  2325. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2326. font-weight:500;
  2327. font-style:normal;
  2328. font-size:18px;
  2329. }
  2330. #u17074 {
  2331. border-width:0px;
  2332. position:absolute;
  2333. left:697px;
  2334. top:835px;
  2335. width:37px;
  2336. height:25px;
  2337. display:flex;
  2338. transition:none;
  2339. transform-origin:50% 50%;
  2340. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2341. font-weight:500;
  2342. font-style:normal;
  2343. font-size:18px;
  2344. }
  2345. #u17074 .text {
  2346. position:absolute;
  2347. align-self:flex-start;
  2348. padding:0px 0px 0px 0px;
  2349. box-sizing:border-box;
  2350. width:100%;
  2351. }
  2352. #u17074_text {
  2353. border-width:0px;
  2354. white-space:nowrap;
  2355. text-transform:none;
  2356. }
  2357. #u17075 {
  2358. border-width:0px;
  2359. position:absolute;
  2360. left:1011px;
  2361. top:831px;
  2362. width:8px;
  2363. height:8px;
  2364. display:flex;
  2365. opacity:0.5;
  2366. transition:none;
  2367. }
  2368. #u17075 .text {
  2369. position:absolute;
  2370. align-self:center;
  2371. padding:2px 2px 2px 2px;
  2372. box-sizing:border-box;
  2373. width:100%;
  2374. }
  2375. #u17075_img {
  2376. border-width:0px;
  2377. position:absolute;
  2378. left:0px;
  2379. top:0px;
  2380. width:8px;
  2381. height:8px;
  2382. }
  2383. #u17075_text {
  2384. border-width:0px;
  2385. word-wrap:break-word;
  2386. text-transform:none;
  2387. visibility:hidden;
  2388. }
  2389. #u17076_div {
  2390. border-width:0px;
  2391. position:absolute;
  2392. left:0px;
  2393. top:0px;
  2394. width:80px;
  2395. height:30px;
  2396. background:inherit;
  2397. background-color:rgba(51, 153, 255, 1);
  2398. border-radius:4px;
  2399. filter:drop-shadow(none);
  2400. transition:none;
  2401. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2402. font-weight:400;
  2403. font-style:normal;
  2404. font-size:14px;
  2405. color:#FFFFFF;
  2406. }
  2407. #u17076 {
  2408. border-width:0px;
  2409. position:absolute;
  2410. left:939px;
  2411. top:1069px;
  2412. width:80px;
  2413. height:30px;
  2414. display:flex;
  2415. transition:none;
  2416. transform-origin:50% 50%;
  2417. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2418. font-weight:400;
  2419. font-style:normal;
  2420. font-size:14px;
  2421. color:#FFFFFF;
  2422. }
  2423. #u17076 .text {
  2424. position:absolute;
  2425. align-self:center;
  2426. padding:8px 0px 8px 0px;
  2427. box-sizing:border-box;
  2428. width:100%;
  2429. }
  2430. #u17076_text {
  2431. border-width:0px;
  2432. word-wrap:break-word;
  2433. text-transform:none;
  2434. }
  2435. #u17077 {
  2436. border-width:0px;
  2437. position:absolute;
  2438. left:0px;
  2439. top:0px;
  2440. width:0px;
  2441. height:0px;
  2442. }
  2443. #u17078_div {
  2444. border-width:0px;
  2445. position:absolute;
  2446. left:0px;
  2447. top:0px;
  2448. width:322px;
  2449. height:80px;
  2450. background:inherit;
  2451. background-color:rgba(255, 255, 255, 1);
  2452. box-sizing:border-box;
  2453. border-width:1px;
  2454. border-style:solid;
  2455. border-color:rgba(51, 153, 255, 1);
  2456. border-radius:2px;
  2457. filter:drop-shadow(none);
  2458. transition:none;
  2459. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2460. font-weight:400;
  2461. font-style:normal;
  2462. font-size:12px;
  2463. color:#FFFFFF;
  2464. text-align:left;
  2465. }
  2466. #u17078 {
  2467. border-width:0px;
  2468. position:absolute;
  2469. left:697px;
  2470. top:969px;
  2471. width:322px;
  2472. height:80px;
  2473. display:flex;
  2474. transition:none;
  2475. transform-origin:50% 50%;
  2476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2477. font-weight:400;
  2478. font-style:normal;
  2479. font-size:12px;
  2480. color:#FFFFFF;
  2481. text-align:left;
  2482. }
  2483. #u17078 .text {
  2484. position:absolute;
  2485. align-self:center;
  2486. padding:8px 15px 8px 15px;
  2487. box-sizing:border-box;
  2488. width:100%;
  2489. }
  2490. #u17078_text {
  2491. border-width:0px;
  2492. word-wrap:break-word;
  2493. text-transform:none;
  2494. }
  2495. #u17079_div {
  2496. border-width:0px;
  2497. position:absolute;
  2498. left:0px;
  2499. top:0px;
  2500. width:99px;
  2501. height:20px;
  2502. background:inherit;
  2503. background-color:rgba(255, 255, 255, 0);
  2504. border-radius:0px;
  2505. filter:drop-shadow(none);
  2506. transition:none;
  2507. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2508. font-weight:400;
  2509. font-style:normal;
  2510. color:#D7D7D7;
  2511. }
  2512. #u17079 {
  2513. border-width:0px;
  2514. position:absolute;
  2515. left:708px;
  2516. top:980px;
  2517. width:99px;
  2518. height:20px;
  2519. display:flex;
  2520. transition:none;
  2521. transform-origin:50% 50%;
  2522. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2523. font-weight:400;
  2524. font-style:normal;
  2525. color:#D7D7D7;
  2526. }
  2527. #u17079 .text {
  2528. position:absolute;
  2529. align-self:flex-start;
  2530. padding:0px 0px 0px 0px;
  2531. box-sizing:border-box;
  2532. width:100%;
  2533. }
  2534. #u17079_text {
  2535. border-width:0px;
  2536. white-space:nowrap;
  2537. text-transform:none;
  2538. }
  2539. #u17080_div {
  2540. border-width:0px;
  2541. position:absolute;
  2542. left:0px;
  2543. top:0px;
  2544. width:60px;
  2545. height:30px;
  2546. background:inherit;
  2547. background-color:rgba(255, 255, 255, 1);
  2548. box-sizing:border-box;
  2549. border-width:1px;
  2550. border-style:solid;
  2551. border-color:rgba(170, 170, 170, 1);
  2552. border-radius:4px;
  2553. filter:drop-shadow(none);
  2554. transition:none;
  2555. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2556. font-weight:400;
  2557. font-style:normal;
  2558. font-size:14px;
  2559. }
  2560. #u17080 {
  2561. border-width:0px;
  2562. position:absolute;
  2563. left:869px;
  2564. top:1069px;
  2565. width:60px;
  2566. height:30px;
  2567. display:flex;
  2568. transition:none;
  2569. transform-origin:50% 50%;
  2570. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2571. font-weight:400;
  2572. font-style:normal;
  2573. font-size:14px;
  2574. }
  2575. #u17080 .text {
  2576. position:absolute;
  2577. align-self:center;
  2578. padding:2px 2px 2px 2px;
  2579. box-sizing:border-box;
  2580. width:100%;
  2581. }
  2582. #u17080_text {
  2583. border-width:0px;
  2584. word-wrap:break-word;
  2585. text-transform:none;
  2586. }
  2587. #u17081_div {
  2588. border-width:0px;
  2589. position:absolute;
  2590. left:0px;
  2591. top:0px;
  2592. width:319px;
  2593. height:75px;
  2594. background:inherit;
  2595. background-color:rgba(255, 255, 255, 0);
  2596. border-radius:0px;
  2597. filter:drop-shadow(none);
  2598. transition:none;
  2599. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2600. font-weight:400;
  2601. font-style:normal;
  2602. font-size:14px;
  2603. line-height:25px;
  2604. }
  2605. #u17081 {
  2606. border-width:0px;
  2607. position:absolute;
  2608. left:697px;
  2609. top:874px;
  2610. width:319px;
  2611. height:75px;
  2612. display:flex;
  2613. transition:none;
  2614. transform-origin:50% 50%;
  2615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2616. font-weight:400;
  2617. font-style:normal;
  2618. font-size:14px;
  2619. line-height:25px;
  2620. }
  2621. #u17081 .text {
  2622. position:absolute;
  2623. align-self:flex-start;
  2624. padding:0px 0px 0px 0px;
  2625. box-sizing:border-box;
  2626. width:100%;
  2627. }
  2628. #u17081_text {
  2629. border-width:0px;
  2630. word-wrap:break-word;
  2631. text-transform:none;
  2632. }
  2633. #u17082 {
  2634. border-width:0px;
  2635. position:absolute;
  2636. left:0px;
  2637. top:0px;
  2638. width:0px;
  2639. height:0px;
  2640. }
  2641. #u17083_div {
  2642. border-width:0px;
  2643. position:absolute;
  2644. left:0px;
  2645. top:0px;
  2646. width:360px;
  2647. height:190px;
  2648. background:inherit;
  2649. background-color:rgba(255, 255, 255, 1);
  2650. border-radius:6px;
  2651. filter:drop-shadow(0px 0px 2.5px rgba(0, 0, 0, 0.34901960784313724));
  2652. transition:none;
  2653. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2654. font-weight:400;
  2655. font-style:normal;
  2656. font-size:12px;
  2657. color:#FFFFFF;
  2658. }
  2659. #u17083 {
  2660. border-width:0px;
  2661. position:absolute;
  2662. left:284px;
  2663. top:819px;
  2664. width:360px;
  2665. height:190px;
  2666. display:flex;
  2667. transition:none;
  2668. transform-origin:50% 50%;
  2669. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2670. font-weight:400;
  2671. font-style:normal;
  2672. font-size:12px;
  2673. color:#FFFFFF;
  2674. }
  2675. #u17083 .text {
  2676. position:absolute;
  2677. align-self:center;
  2678. padding:2px 2px 2px 2px;
  2679. box-sizing:border-box;
  2680. width:100%;
  2681. }
  2682. #u17083_text {
  2683. border-width:0px;
  2684. word-wrap:break-word;
  2685. text-transform:none;
  2686. visibility:hidden;
  2687. }
  2688. #u17084_div {
  2689. border-width:0px;
  2690. position:absolute;
  2691. left:0px;
  2692. top:0px;
  2693. width:37px;
  2694. height:25px;
  2695. background:inherit;
  2696. background-color:rgba(255, 255, 255, 0);
  2697. border-radius:0px;
  2698. filter:drop-shadow(none);
  2699. transition:none;
  2700. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2701. font-weight:500;
  2702. font-style:normal;
  2703. font-size:18px;
  2704. }
  2705. #u17084 {
  2706. border-width:0px;
  2707. position:absolute;
  2708. left:307px;
  2709. top:835px;
  2710. width:37px;
  2711. height:25px;
  2712. display:flex;
  2713. transition:none;
  2714. transform-origin:50% 50%;
  2715. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2716. font-weight:500;
  2717. font-style:normal;
  2718. font-size:18px;
  2719. }
  2720. #u17084 .text {
  2721. position:absolute;
  2722. align-self:flex-start;
  2723. padding:0px 0px 0px 0px;
  2724. box-sizing:border-box;
  2725. width:100%;
  2726. }
  2727. #u17084_text {
  2728. border-width:0px;
  2729. white-space:nowrap;
  2730. text-transform:none;
  2731. }
  2732. #u17085 {
  2733. border-width:0px;
  2734. position:absolute;
  2735. left:621px;
  2736. top:831px;
  2737. width:8px;
  2738. height:8px;
  2739. display:flex;
  2740. opacity:0.5;
  2741. transition:none;
  2742. }
  2743. #u17085 .text {
  2744. position:absolute;
  2745. align-self:center;
  2746. padding:2px 2px 2px 2px;
  2747. box-sizing:border-box;
  2748. width:100%;
  2749. }
  2750. #u17085_img {
  2751. border-width:0px;
  2752. position:absolute;
  2753. left:0px;
  2754. top:0px;
  2755. width:8px;
  2756. height:8px;
  2757. }
  2758. #u17085_text {
  2759. border-width:0px;
  2760. word-wrap:break-word;
  2761. text-transform:none;
  2762. visibility:hidden;
  2763. }
  2764. #u17086_div {
  2765. border-width:0px;
  2766. position:absolute;
  2767. left:0px;
  2768. top:0px;
  2769. width:80px;
  2770. height:30px;
  2771. background:inherit;
  2772. background-color:rgba(51, 153, 255, 1);
  2773. border-radius:4px;
  2774. filter:drop-shadow(none);
  2775. transition:none;
  2776. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2777. font-weight:400;
  2778. font-style:normal;
  2779. font-size:14px;
  2780. color:#FFFFFF;
  2781. }
  2782. #u17086 {
  2783. border-width:0px;
  2784. position:absolute;
  2785. left:549px;
  2786. top:963px;
  2787. width:80px;
  2788. height:30px;
  2789. display:flex;
  2790. transition:none;
  2791. transform-origin:50% 50%;
  2792. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2793. font-weight:400;
  2794. font-style:normal;
  2795. font-size:14px;
  2796. color:#FFFFFF;
  2797. }
  2798. #u17086 .text {
  2799. position:absolute;
  2800. align-self:center;
  2801. padding:8px 0px 8px 0px;
  2802. box-sizing:border-box;
  2803. width:100%;
  2804. }
  2805. #u17086_text {
  2806. border-width:0px;
  2807. word-wrap:break-word;
  2808. text-transform:none;
  2809. }
  2810. #u17087_div {
  2811. border-width:0px;
  2812. position:absolute;
  2813. left:0px;
  2814. top:0px;
  2815. width:322px;
  2816. height:80px;
  2817. background:inherit;
  2818. background-color:rgba(255, 255, 255, 1);
  2819. box-sizing:border-box;
  2820. border-width:1px;
  2821. border-style:solid;
  2822. border-color:rgba(51, 153, 255, 1);
  2823. border-radius:2px;
  2824. filter:drop-shadow(none);
  2825. transition:none;
  2826. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2827. font-weight:400;
  2828. font-style:normal;
  2829. font-size:12px;
  2830. color:#FFFFFF;
  2831. text-align:left;
  2832. }
  2833. #u17087 {
  2834. border-width:0px;
  2835. position:absolute;
  2836. left:307px;
  2837. top:870px;
  2838. width:322px;
  2839. height:80px;
  2840. display:flex;
  2841. transition:none;
  2842. transform-origin:50% 50%;
  2843. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2844. font-weight:400;
  2845. font-style:normal;
  2846. font-size:12px;
  2847. color:#FFFFFF;
  2848. text-align:left;
  2849. }
  2850. #u17087 .text {
  2851. position:absolute;
  2852. align-self:center;
  2853. padding:8px 15px 8px 15px;
  2854. box-sizing:border-box;
  2855. width:100%;
  2856. }
  2857. #u17087_text {
  2858. border-width:0px;
  2859. word-wrap:break-word;
  2860. text-transform:none;
  2861. }
  2862. #u17088_div {
  2863. border-width:0px;
  2864. position:absolute;
  2865. left:0px;
  2866. top:0px;
  2867. width:99px;
  2868. height:20px;
  2869. background:inherit;
  2870. background-color:rgba(255, 255, 255, 0);
  2871. border-radius:0px;
  2872. filter:drop-shadow(none);
  2873. transition:none;
  2874. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2875. font-weight:400;
  2876. font-style:normal;
  2877. color:#D7D7D7;
  2878. }
  2879. #u17088 {
  2880. border-width:0px;
  2881. position:absolute;
  2882. left:318px;
  2883. top:881px;
  2884. width:99px;
  2885. height:20px;
  2886. display:flex;
  2887. transition:none;
  2888. transform-origin:50% 50%;
  2889. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2890. font-weight:400;
  2891. font-style:normal;
  2892. color:#D7D7D7;
  2893. }
  2894. #u17088 .text {
  2895. position:absolute;
  2896. align-self:flex-start;
  2897. padding:0px 0px 0px 0px;
  2898. box-sizing:border-box;
  2899. width:100%;
  2900. }
  2901. #u17088_text {
  2902. border-width:0px;
  2903. white-space:nowrap;
  2904. text-transform:none;
  2905. }
  2906. #u17089_div {
  2907. border-width:0px;
  2908. position:absolute;
  2909. left:0px;
  2910. top:0px;
  2911. width:60px;
  2912. height:30px;
  2913. background:inherit;
  2914. background-color:rgba(255, 255, 255, 1);
  2915. box-sizing:border-box;
  2916. border-width:1px;
  2917. border-style:solid;
  2918. border-color:rgba(170, 170, 170, 1);
  2919. border-radius:4px;
  2920. filter:drop-shadow(none);
  2921. transition:none;
  2922. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2923. font-weight:400;
  2924. font-style:normal;
  2925. font-size:14px;
  2926. }
  2927. #u17089 {
  2928. border-width:0px;
  2929. position:absolute;
  2930. left:479px;
  2931. top:963px;
  2932. width:60px;
  2933. height:30px;
  2934. display:flex;
  2935. transition:none;
  2936. transform-origin:50% 50%;
  2937. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2938. font-weight:400;
  2939. font-style:normal;
  2940. font-size:14px;
  2941. }
  2942. #u17089 .text {
  2943. position:absolute;
  2944. align-self:center;
  2945. padding:2px 2px 2px 2px;
  2946. box-sizing:border-box;
  2947. width:100%;
  2948. }
  2949. #u17089_text {
  2950. border-width:0px;
  2951. word-wrap:break-word;
  2952. text-transform:none;
  2953. }
  2954. #u17090 {
  2955. border-width:0px;
  2956. position:absolute;
  2957. left:0px;
  2958. top:0px;
  2959. width:0px;
  2960. height:0px;
  2961. }
  2962. #u17091_div {
  2963. border-width:0px;
  2964. position:absolute;
  2965. left:0px;
  2966. top:0px;
  2967. width:1000px;
  2968. height:1201px;
  2969. background:inherit;
  2970. background-color:rgba(242, 242, 242, 1);
  2971. box-sizing:border-box;
  2972. border-width:1px;
  2973. border-style:solid;
  2974. border-color:rgba(215, 215, 215, 1);
  2975. border-radius:0px;
  2976. filter:drop-shadow(none);
  2977. transition:none;
  2978. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2979. font-weight:400;
  2980. font-style:normal;
  2981. font-size:14px;
  2982. color:#AAAAAA;
  2983. text-align:center;
  2984. line-height:30px;
  2985. }
  2986. #u17091 {
  2987. border-width:0px;
  2988. position:absolute;
  2989. left:1127px;
  2990. top:49px;
  2991. width:1000px;
  2992. height:1201px;
  2993. display:flex;
  2994. transition:none;
  2995. transform-origin:50% 50%;
  2996. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2997. font-weight:400;
  2998. font-style:normal;
  2999. font-size:14px;
  3000. color:#AAAAAA;
  3001. text-align:center;
  3002. line-height:30px;
  3003. }
  3004. #u17091 .text {
  3005. position:absolute;
  3006. align-self:center;
  3007. padding:5px 10px 5px 10px;
  3008. box-sizing:border-box;
  3009. width:100%;
  3010. }
  3011. #u17091_text {
  3012. border-width:0px;
  3013. word-wrap:break-word;
  3014. text-transform:none;
  3015. visibility:hidden;
  3016. }
  3017. #u17092_div {
  3018. border-width:0px;
  3019. position:absolute;
  3020. left:0px;
  3021. top:0px;
  3022. width:1000px;
  3023. height:1201px;
  3024. background:inherit;
  3025. background-color:rgba(255, 255, 255, 1);
  3026. box-sizing:border-box;
  3027. border-width:1px;
  3028. border-style:solid;
  3029. border-color:rgba(215, 215, 215, 1);
  3030. border-radius:0px;
  3031. filter:drop-shadow(none);
  3032. transition:none;
  3033. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3034. font-weight:400;
  3035. font-style:normal;
  3036. font-size:14px;
  3037. color:#AAAAAA;
  3038. text-align:center;
  3039. line-height:30px;
  3040. }
  3041. #u17092 {
  3042. border-width:0px;
  3043. position:absolute;
  3044. left:1127px;
  3045. top:49px;
  3046. width:1000px;
  3047. height:1201px;
  3048. display:flex;
  3049. transition:none;
  3050. transform-origin:50% 50%;
  3051. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3052. font-weight:400;
  3053. font-style:normal;
  3054. font-size:14px;
  3055. color:#AAAAAA;
  3056. text-align:center;
  3057. line-height:30px;
  3058. }
  3059. #u17092 .text {
  3060. position:absolute;
  3061. align-self:center;
  3062. padding:5px 10px 5px 10px;
  3063. box-sizing:border-box;
  3064. width:100%;
  3065. }
  3066. #u17092_text {
  3067. border-width:0px;
  3068. word-wrap:break-word;
  3069. text-transform:none;
  3070. visibility:hidden;
  3071. }
  3072. #u17093_div {
  3073. border-width:0px;
  3074. position:absolute;
  3075. left:0px;
  3076. top:0px;
  3077. width:119px;
  3078. height:35px;
  3079. background:inherit;
  3080. background-color:rgba(255, 255, 255, 0);
  3081. border-top:0px;
  3082. border-right:0px;
  3083. border-bottom:0px;
  3084. border-radius:0px;
  3085. border-top-left-radius:0px;
  3086. border-bottom-left-radius:0px;
  3087. filter:drop-shadow(none);
  3088. transition:none;
  3089. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3090. font-weight:500;
  3091. font-style:normal;
  3092. font-size:18px;
  3093. }
  3094. #u17093 {
  3095. border-width:0px;
  3096. position:absolute;
  3097. left:1147px;
  3098. top:67px;
  3099. width:119px;
  3100. height:35px;
  3101. display:flex;
  3102. transition:none;
  3103. transform-origin:50% 50%;
  3104. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3105. font-weight:500;
  3106. font-style:normal;
  3107. font-size:18px;
  3108. }
  3109. #u17093 .text {
  3110. position:absolute;
  3111. align-self:center;
  3112. padding:5px 10px 5px 0px;
  3113. box-sizing:border-box;
  3114. width:100%;
  3115. }
  3116. #u17093_text {
  3117. border-width:0px;
  3118. white-space:nowrap;
  3119. text-transform:none;
  3120. }
  3121. #u17094 {
  3122. border-width:0px;
  3123. position:absolute;
  3124. left:0px;
  3125. top:0px;
  3126. width:0px;
  3127. height:0px;
  3128. }
  3129. #u17095_div {
  3130. border-width:0px;
  3131. position:absolute;
  3132. left:0px;
  3133. top:0px;
  3134. width:40px;
  3135. height:40px;
  3136. background:inherit;
  3137. background-color:rgba(255, 255, 255, 0);
  3138. border-top:0px;
  3139. border-right:0px;
  3140. border-bottom:0px;
  3141. border-radius:0px;
  3142. border-top-left-radius:0px;
  3143. border-bottom-left-radius:0px;
  3144. filter:drop-shadow(none);
  3145. transition:none;
  3146. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3147. font-weight:500;
  3148. font-style:normal;
  3149. font-size:14px;
  3150. text-align:center;
  3151. }
  3152. #u17095 {
  3153. border-width:0px;
  3154. position:absolute;
  3155. left:2087px;
  3156. top:49px;
  3157. width:40px;
  3158. height:40px;
  3159. display:flex;
  3160. transition:none;
  3161. transform-origin:50% 50%;
  3162. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3163. font-weight:500;
  3164. font-style:normal;
  3165. font-size:14px;
  3166. text-align:center;
  3167. }
  3168. #u17095 .text {
  3169. position:absolute;
  3170. align-self:center;
  3171. padding:5px 10px 5px 0px;
  3172. box-sizing:border-box;
  3173. width:100%;
  3174. }
  3175. #u17095_text {
  3176. border-width:0px;
  3177. word-wrap:break-word;
  3178. text-transform:none;
  3179. }
  3180. #u17096 {
  3181. border-width:0px;
  3182. position:absolute;
  3183. left:2075px;
  3184. top:65px;
  3185. width:13px;
  3186. height:13px;
  3187. display:flex;
  3188. transition:none;
  3189. font-size:14px;
  3190. }
  3191. #u17096 .text {
  3192. position:absolute;
  3193. align-self:center;
  3194. padding:2px 2px 2px 2px;
  3195. box-sizing:border-box;
  3196. width:100%;
  3197. }
  3198. #u17096_img {
  3199. border-width:0px;
  3200. position:absolute;
  3201. left:0px;
  3202. top:0px;
  3203. width:13px;
  3204. height:13px;
  3205. }
  3206. #u17096_text {
  3207. border-width:0px;
  3208. word-wrap:break-word;
  3209. text-transform:none;
  3210. visibility:hidden;
  3211. }
  3212. #u17097_div {
  3213. border-width:0px;
  3214. position:absolute;
  3215. left:0px;
  3216. top:0px;
  3217. width:213px;
  3218. height:43px;
  3219. background:inherit;
  3220. background-color:rgba(255, 255, 255, 0);
  3221. border-top:0px;
  3222. border-right:0px;
  3223. border-bottom:0px;
  3224. border-radius:0px;
  3225. border-top-left-radius:0px;
  3226. border-bottom-left-radius:0px;
  3227. filter:drop-shadow(none);
  3228. transition:none;
  3229. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3230. font-weight:500;
  3231. font-style:normal;
  3232. font-size:24px;
  3233. }
  3234. #u17097 {
  3235. border-width:0px;
  3236. position:absolute;
  3237. left:1157px;
  3238. top:118px;
  3239. width:213px;
  3240. height:43px;
  3241. display:flex;
  3242. transition:none;
  3243. transform-origin:50% 50%;
  3244. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3245. font-weight:500;
  3246. font-style:normal;
  3247. font-size:24px;
  3248. }
  3249. #u17097 .text {
  3250. position:absolute;
  3251. align-self:center;
  3252. padding:5px 10px 5px 0px;
  3253. box-sizing:border-box;
  3254. width:100%;
  3255. }
  3256. #u17097_text {
  3257. border-width:0px;
  3258. white-space:nowrap;
  3259. text-transform:none;
  3260. }
  3261. #u17098 {
  3262. border-width:0px;
  3263. position:absolute;
  3264. left:1977px;
  3265. top:119px;
  3266. width:108px;
  3267. height:108px;
  3268. display:flex;
  3269. -webkit-transform:rotate(315deg);
  3270. -moz-transform:rotate(315deg);
  3271. -ms-transform:rotate(315deg);
  3272. transform:rotate(315deg);
  3273. transition:none;
  3274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3275. font-weight:400;
  3276. font-style:normal;
  3277. font-size:28px;
  3278. color:#F59A23;
  3279. }
  3280. #u17098 .text {
  3281. position:absolute;
  3282. align-self:center;
  3283. padding:2px 2px 2px 2px;
  3284. box-sizing:border-box;
  3285. width:100%;
  3286. }
  3287. #u17098_img {
  3288. border-width:0px;
  3289. position:absolute;
  3290. left:0px;
  3291. top:0px;
  3292. width:108px;
  3293. height:108px;
  3294. }
  3295. #u17098_text {
  3296. border-width:0px;
  3297. word-wrap:break-word;
  3298. text-transform:none;
  3299. }
  3300. #u17099 {
  3301. border-width:0px;
  3302. position:absolute;
  3303. left:0px;
  3304. top:0px;
  3305. width:0px;
  3306. height:0px;
  3307. }
  3308. #u17100_div {
  3309. border-width:0px;
  3310. position:absolute;
  3311. left:0px;
  3312. top:0px;
  3313. width:1000px;
  3314. height:60px;
  3315. background:inherit;
  3316. background-color:rgba(255, 255, 255, 1);
  3317. box-sizing:border-box;
  3318. border-width:1px;
  3319. border-style:solid;
  3320. border-color:rgba(215, 215, 215, 1);
  3321. border-radius:0px;
  3322. filter:drop-shadow(none);
  3323. transition:none;
  3324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3325. font-weight:400;
  3326. font-style:normal;
  3327. font-size:14px;
  3328. color:#AAAAAA;
  3329. text-align:center;
  3330. line-height:30px;
  3331. }
  3332. #u17100 {
  3333. border-width:0px;
  3334. position:absolute;
  3335. left:1127px;
  3336. top:1190px;
  3337. width:1000px;
  3338. height:60px;
  3339. display:flex;
  3340. transition:none;
  3341. transform-origin:50% 50%;
  3342. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3343. font-weight:400;
  3344. font-style:normal;
  3345. font-size:14px;
  3346. color:#AAAAAA;
  3347. text-align:center;
  3348. line-height:30px;
  3349. }
  3350. #u17100 .text {
  3351. position:absolute;
  3352. align-self:center;
  3353. padding:5px 10px 5px 10px;
  3354. box-sizing:border-box;
  3355. width:100%;
  3356. }
  3357. #u17100_text {
  3358. border-width:0px;
  3359. word-wrap:break-word;
  3360. text-transform:none;
  3361. visibility:hidden;
  3362. }
  3363. #u17101_div {
  3364. border-width:0px;
  3365. position:absolute;
  3366. left:0px;
  3367. top:0px;
  3368. width:80px;
  3369. height:30px;
  3370. background:inherit;
  3371. background-color:rgba(24, 144, 255, 1);
  3372. border-radius:4px;
  3373. filter:drop-shadow(none);
  3374. transition:none;
  3375. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3376. font-weight:400;
  3377. font-style:normal;
  3378. font-size:14px;
  3379. color:#FFFFFF;
  3380. }
  3381. #u17101 {
  3382. border-width:0px;
  3383. position:absolute;
  3384. left:2021px;
  3385. top:1205px;
  3386. width:80px;
  3387. height:30px;
  3388. display:flex;
  3389. transition:none;
  3390. transform-origin:50% 50%;
  3391. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3392. font-weight:400;
  3393. font-style:normal;
  3394. font-size:14px;
  3395. color:#FFFFFF;
  3396. }
  3397. #u17101 .text {
  3398. position:absolute;
  3399. align-self:center;
  3400. padding:2px 2px 2px 2px;
  3401. box-sizing:border-box;
  3402. width:100%;
  3403. }
  3404. #u17101_text {
  3405. border-width:0px;
  3406. word-wrap:break-word;
  3407. text-transform:none;
  3408. }
  3409. #u17102_div {
  3410. border-width:0px;
  3411. position:absolute;
  3412. left:0px;
  3413. top:0px;
  3414. width:80px;
  3415. height:30px;
  3416. background:inherit;
  3417. background-color:rgba(245, 154, 35, 1);
  3418. border-radius:4px;
  3419. filter:drop-shadow(none);
  3420. transition:none;
  3421. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3422. font-weight:400;
  3423. font-style:normal;
  3424. font-size:14px;
  3425. color:#FFFFFF;
  3426. }
  3427. #u17102 {
  3428. border-width:0px;
  3429. position:absolute;
  3430. left:1931px;
  3431. top:1205px;
  3432. width:80px;
  3433. height:30px;
  3434. display:flex;
  3435. transition:none;
  3436. transform-origin:50% 50%;
  3437. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3438. font-weight:400;
  3439. font-style:normal;
  3440. font-size:14px;
  3441. color:#FFFFFF;
  3442. }
  3443. #u17102 .text {
  3444. position:absolute;
  3445. align-self:center;
  3446. padding:2px 2px 2px 2px;
  3447. box-sizing:border-box;
  3448. width:100%;
  3449. }
  3450. #u17102_text {
  3451. border-width:0px;
  3452. word-wrap:break-word;
  3453. text-transform:none;
  3454. }
  3455. #u17103_div {
  3456. border-width:0px;
  3457. position:absolute;
  3458. left:0px;
  3459. top:0px;
  3460. width:80px;
  3461. height:30px;
  3462. background:inherit;
  3463. background-color:rgba(255, 255, 255, 1);
  3464. box-sizing:border-box;
  3465. border-width:1px;
  3466. border-style:solid;
  3467. border-color:rgba(170, 170, 170, 1);
  3468. border-radius:4px;
  3469. filter:drop-shadow(none);
  3470. transition:none;
  3471. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3472. font-weight:400;
  3473. font-style:normal;
  3474. font-size:14px;
  3475. }
  3476. #u17103 {
  3477. border-width:0px;
  3478. position:absolute;
  3479. left:1841px;
  3480. top:1205px;
  3481. width:80px;
  3482. height:30px;
  3483. display:flex;
  3484. transition:none;
  3485. transform-origin:50% 50%;
  3486. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3487. font-weight:400;
  3488. font-style:normal;
  3489. font-size:14px;
  3490. }
  3491. #u17103 .text {
  3492. position:absolute;
  3493. align-self:center;
  3494. padding:2px 2px 2px 2px;
  3495. box-sizing:border-box;
  3496. width:100%;
  3497. }
  3498. #u17103_text {
  3499. border-width:0px;
  3500. word-wrap:break-word;
  3501. text-transform:none;
  3502. }
  3503. #u17104_div {
  3504. border-width:0px;
  3505. position:absolute;
  3506. left:0px;
  3507. top:0px;
  3508. width:80px;
  3509. height:30px;
  3510. background:inherit;
  3511. background-color:rgba(255, 255, 255, 0);
  3512. border-left:0px;
  3513. border-top:0px;
  3514. border-right:0px;
  3515. border-radius:0px;
  3516. border-bottom-right-radius:0px;
  3517. border-bottom-left-radius:0px;
  3518. filter:drop-shadow(none);
  3519. transition:none;
  3520. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3521. font-weight:400;
  3522. font-style:normal;
  3523. font-size:14px;
  3524. color:#7F7F7F;
  3525. line-height:30px;
  3526. }
  3527. #u17104 {
  3528. border-width:0px;
  3529. position:absolute;
  3530. left:1157px;
  3531. top:181px;
  3532. width:80px;
  3533. height:30px;
  3534. display:flex;
  3535. transition:none;
  3536. transform-origin:50% 50%;
  3537. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3538. font-weight:400;
  3539. font-style:normal;
  3540. font-size:14px;
  3541. color:#7F7F7F;
  3542. line-height:30px;
  3543. }
  3544. #u17104 .text {
  3545. position:absolute;
  3546. align-self:flex-start;
  3547. padding:0px 0px 0px 0px;
  3548. box-sizing:border-box;
  3549. width:100%;
  3550. }
  3551. #u17104_text {
  3552. border-width:0px;
  3553. word-wrap:break-word;
  3554. text-transform:none;
  3555. }
  3556. #u17105_div {
  3557. border-width:0px;
  3558. position:absolute;
  3559. left:0px;
  3560. top:0px;
  3561. width:85px;
  3562. height:30px;
  3563. background:inherit;
  3564. background-color:rgba(255, 255, 255, 0);
  3565. border-left:0px;
  3566. border-top:0px;
  3567. border-right:0px;
  3568. border-radius:0px;
  3569. border-bottom-right-radius:0px;
  3570. border-bottom-left-radius:0px;
  3571. filter:drop-shadow(none);
  3572. transition:none;
  3573. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3574. font-weight:400;
  3575. font-style:normal;
  3576. font-size:14px;
  3577. line-height:30px;
  3578. }
  3579. #u17105 {
  3580. border-width:0px;
  3581. position:absolute;
  3582. left:1237px;
  3583. top:181px;
  3584. width:85px;
  3585. height:30px;
  3586. display:flex;
  3587. transition:none;
  3588. transform-origin:50% 50%;
  3589. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3590. font-weight:400;
  3591. font-style:normal;
  3592. font-size:14px;
  3593. line-height:30px;
  3594. }
  3595. #u17105 .text {
  3596. position:absolute;
  3597. align-self:flex-start;
  3598. padding:0px 0px 0px 0px;
  3599. box-sizing:border-box;
  3600. width:100%;
  3601. }
  3602. #u17105_text {
  3603. border-width:0px;
  3604. white-space:nowrap;
  3605. text-transform:none;
  3606. }
  3607. #u17106_div {
  3608. border-width:0px;
  3609. position:absolute;
  3610. left:0px;
  3611. top:0px;
  3612. width:80px;
  3613. height:30px;
  3614. background:inherit;
  3615. background-color:rgba(255, 255, 255, 0);
  3616. border-left:0px;
  3617. border-top:0px;
  3618. border-right:0px;
  3619. border-radius:0px;
  3620. border-bottom-right-radius:0px;
  3621. border-bottom-left-radius:0px;
  3622. filter:drop-shadow(none);
  3623. transition:none;
  3624. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3625. font-weight:400;
  3626. font-style:normal;
  3627. font-size:14px;
  3628. color:#7F7F7F;
  3629. line-height:30px;
  3630. }
  3631. #u17106 {
  3632. border-width:0px;
  3633. position:absolute;
  3634. left:1595px;
  3635. top:356px;
  3636. width:80px;
  3637. height:30px;
  3638. display:flex;
  3639. transition:none;
  3640. transform-origin:50% 50%;
  3641. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3642. font-weight:400;
  3643. font-style:normal;
  3644. font-size:14px;
  3645. color:#7F7F7F;
  3646. line-height:30px;
  3647. }
  3648. #u17106 .text {
  3649. position:absolute;
  3650. align-self:flex-start;
  3651. padding:0px 0px 0px 0px;
  3652. box-sizing:border-box;
  3653. width:100%;
  3654. }
  3655. #u17106_text {
  3656. border-width:0px;
  3657. word-wrap:break-word;
  3658. text-transform:none;
  3659. }
  3660. #u17107_div {
  3661. border-width:0px;
  3662. position:absolute;
  3663. left:0px;
  3664. top:0px;
  3665. width:71px;
  3666. height:30px;
  3667. background:inherit;
  3668. background-color:rgba(255, 255, 255, 0);
  3669. border-left:0px;
  3670. border-top:0px;
  3671. border-right:0px;
  3672. border-radius:0px;
  3673. border-bottom-right-radius:0px;
  3674. border-bottom-left-radius:0px;
  3675. filter:drop-shadow(none);
  3676. transition:none;
  3677. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3678. font-weight:400;
  3679. font-style:normal;
  3680. font-size:14px;
  3681. line-height:30px;
  3682. }
  3683. #u17107 {
  3684. border-width:0px;
  3685. position:absolute;
  3686. left:1675px;
  3687. top:356px;
  3688. width:71px;
  3689. height:30px;
  3690. display:flex;
  3691. transition:none;
  3692. transform-origin:50% 50%;
  3693. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3694. font-weight:400;
  3695. font-style:normal;
  3696. font-size:14px;
  3697. line-height:30px;
  3698. }
  3699. #u17107 .text {
  3700. position:absolute;
  3701. align-self:flex-start;
  3702. padding:0px 0px 0px 0px;
  3703. box-sizing:border-box;
  3704. width:100%;
  3705. }
  3706. #u17107_text {
  3707. border-width:0px;
  3708. white-space:nowrap;
  3709. text-transform:none;
  3710. }
  3711. #u17108_div {
  3712. border-width:0px;
  3713. position:absolute;
  3714. left:0px;
  3715. top:0px;
  3716. width:40px;
  3717. height:17px;
  3718. background:inherit;
  3719. background-color:rgba(85, 85, 85, 1);
  3720. border-radius:20px;
  3721. filter:drop-shadow(none);
  3722. transition:none;
  3723. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3724. font-weight:400;
  3725. font-style:normal;
  3726. font-size:12px;
  3727. color:#FFFFFF;
  3728. text-align:center;
  3729. }
  3730. #u17108 {
  3731. border-width:0px;
  3732. position:absolute;
  3733. left:1380px;
  3734. top:131px;
  3735. width:40px;
  3736. height:17px;
  3737. display:flex;
  3738. transition:none;
  3739. transform-origin:50% 50%;
  3740. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3741. font-weight:400;
  3742. font-style:normal;
  3743. font-size:12px;
  3744. color:#FFFFFF;
  3745. text-align:center;
  3746. }
  3747. #u17108 .text {
  3748. position:absolute;
  3749. align-self:flex-start;
  3750. padding:0px 0px 0px 0px;
  3751. box-sizing:border-box;
  3752. width:100%;
  3753. }
  3754. #u17108_text {
  3755. border-width:0px;
  3756. word-wrap:break-word;
  3757. text-transform:none;
  3758. }
  3759. #u17109_div {
  3760. border-width:0px;
  3761. position:absolute;
  3762. left:0px;
  3763. top:0px;
  3764. width:43px;
  3765. height:30px;
  3766. background:inherit;
  3767. background-color:rgba(255, 255, 255, 0);
  3768. border-left:0px;
  3769. border-top:0px;
  3770. border-right:0px;
  3771. border-radius:0px;
  3772. border-bottom-right-radius:0px;
  3773. border-bottom-left-radius:0px;
  3774. filter:drop-shadow(none);
  3775. transition:none;
  3776. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3777. font-weight:400;
  3778. font-style:normal;
  3779. font-size:14px;
  3780. color:#7F7F7F;
  3781. line-height:30px;
  3782. }
  3783. #u17109 {
  3784. border-width:0px;
  3785. position:absolute;
  3786. left:1157px;
  3787. top:221px;
  3788. width:43px;
  3789. height:30px;
  3790. display:flex;
  3791. transition:none;
  3792. transform-origin:50% 50%;
  3793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3794. font-weight:400;
  3795. font-style:normal;
  3796. font-size:14px;
  3797. color:#7F7F7F;
  3798. line-height:30px;
  3799. }
  3800. #u17109 .text {
  3801. position:absolute;
  3802. align-self:flex-start;
  3803. padding:0px 0px 0px 0px;
  3804. box-sizing:border-box;
  3805. width:100%;
  3806. }
  3807. #u17109_text {
  3808. border-width:0px;
  3809. white-space:nowrap;
  3810. text-transform:none;
  3811. }
  3812. #u17110_div {
  3813. border-width:0px;
  3814. position:absolute;
  3815. left:0px;
  3816. top:0px;
  3817. width:32px;
  3818. height:30px;
  3819. background:inherit;
  3820. background-color:rgba(255, 255, 255, 0);
  3821. border-left:0px;
  3822. border-top:0px;
  3823. border-right:0px;
  3824. border-radius:0px;
  3825. border-bottom-right-radius:0px;
  3826. border-bottom-left-radius:0px;
  3827. filter:drop-shadow(none);
  3828. transition:none;
  3829. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3830. font-weight:400;
  3831. font-style:normal;
  3832. font-size:14px;
  3833. line-height:30px;
  3834. }
  3835. #u17110 {
  3836. border-width:0px;
  3837. position:absolute;
  3838. left:1237px;
  3839. top:221px;
  3840. width:32px;
  3841. height:30px;
  3842. display:flex;
  3843. transition:none;
  3844. transform-origin:50% 50%;
  3845. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3846. font-weight:400;
  3847. font-style:normal;
  3848. font-size:14px;
  3849. line-height:30px;
  3850. }
  3851. #u17110 .text {
  3852. position:absolute;
  3853. align-self:flex-start;
  3854. padding:0px 0px 0px 0px;
  3855. box-sizing:border-box;
  3856. width:100%;
  3857. }
  3858. #u17110_text {
  3859. border-width:0px;
  3860. white-space:nowrap;
  3861. text-transform:none;
  3862. }
  3863. #u17111_div {
  3864. border-width:0px;
  3865. position:absolute;
  3866. left:0px;
  3867. top:0px;
  3868. width:80px;
  3869. height:30px;
  3870. background:inherit;
  3871. background-color:rgba(255, 255, 255, 0);
  3872. border-left:0px;
  3873. border-top:0px;
  3874. border-right:0px;
  3875. border-radius:0px;
  3876. border-bottom-right-radius:0px;
  3877. border-bottom-left-radius:0px;
  3878. filter:drop-shadow(none);
  3879. transition:none;
  3880. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3881. font-weight:400;
  3882. font-style:normal;
  3883. font-size:14px;
  3884. color:#7F7F7F;
  3885. line-height:30px;
  3886. }
  3887. #u17111 {
  3888. border-width:0px;
  3889. position:absolute;
  3890. left:1596px;
  3891. top:181px;
  3892. width:80px;
  3893. height:30px;
  3894. display:flex;
  3895. transition:none;
  3896. transform-origin:50% 50%;
  3897. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3898. font-weight:400;
  3899. font-style:normal;
  3900. font-size:14px;
  3901. color:#7F7F7F;
  3902. line-height:30px;
  3903. }
  3904. #u17111 .text {
  3905. position:absolute;
  3906. align-self:flex-start;
  3907. padding:0px 0px 0px 0px;
  3908. box-sizing:border-box;
  3909. width:100%;
  3910. }
  3911. #u17111_text {
  3912. border-width:0px;
  3913. word-wrap:break-word;
  3914. text-transform:none;
  3915. }
  3916. #u17112_div {
  3917. border-width:0px;
  3918. position:absolute;
  3919. left:0px;
  3920. top:0px;
  3921. width:68px;
  3922. height:30px;
  3923. background:inherit;
  3924. background-color:rgba(255, 255, 255, 0);
  3925. border-left:0px;
  3926. border-top:0px;
  3927. border-right:0px;
  3928. border-radius:0px;
  3929. border-bottom-right-radius:0px;
  3930. border-bottom-left-radius:0px;
  3931. filter:drop-shadow(none);
  3932. transition:none;
  3933. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3934. font-weight:400;
  3935. font-style:normal;
  3936. font-size:14px;
  3937. line-height:30px;
  3938. }
  3939. #u17112 {
  3940. border-width:0px;
  3941. position:absolute;
  3942. left:1676px;
  3943. top:181px;
  3944. width:68px;
  3945. height:30px;
  3946. display:flex;
  3947. transition:none;
  3948. transform-origin:50% 50%;
  3949. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3950. font-weight:400;
  3951. font-style:normal;
  3952. font-size:14px;
  3953. line-height:30px;
  3954. }
  3955. #u17112 .text {
  3956. position:absolute;
  3957. align-self:flex-start;
  3958. padding:0px 0px 0px 0px;
  3959. box-sizing:border-box;
  3960. width:100%;
  3961. }
  3962. #u17112_text {
  3963. border-width:0px;
  3964. white-space:nowrap;
  3965. text-transform:none;
  3966. }
  3967. #u17113_div {
  3968. border-width:0px;
  3969. position:absolute;
  3970. left:0px;
  3971. top:0px;
  3972. width:71px;
  3973. height:30px;
  3974. background:inherit;
  3975. background-color:rgba(255, 255, 255, 0);
  3976. border-left:0px;
  3977. border-top:0px;
  3978. border-right:0px;
  3979. border-radius:0px;
  3980. border-bottom-right-radius:0px;
  3981. border-bottom-left-radius:0px;
  3982. filter:drop-shadow(none);
  3983. transition:none;
  3984. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3985. font-weight:400;
  3986. font-style:normal;
  3987. font-size:14px;
  3988. color:#7F7F7F;
  3989. line-height:30px;
  3990. }
  3991. #u17113 {
  3992. border-width:0px;
  3993. position:absolute;
  3994. left:1595px;
  3995. top:276px;
  3996. width:71px;
  3997. height:30px;
  3998. display:flex;
  3999. transition:none;
  4000. transform-origin:50% 50%;
  4001. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4002. font-weight:400;
  4003. font-style:normal;
  4004. font-size:14px;
  4005. color:#7F7F7F;
  4006. line-height:30px;
  4007. }
  4008. #u17113 .text {
  4009. position:absolute;
  4010. align-self:flex-start;
  4011. padding:0px 0px 0px 0px;
  4012. box-sizing:border-box;
  4013. width:100%;
  4014. }
  4015. #u17113_text {
  4016. border-width:0px;
  4017. white-space:nowrap;
  4018. text-transform:none;
  4019. }
  4020. #u17114_div {
  4021. border-width:0px;
  4022. position:absolute;
  4023. left:0px;
  4024. top:0px;
  4025. width:141px;
  4026. height:30px;
  4027. background:inherit;
  4028. background-color:rgba(255, 255, 255, 0);
  4029. border-left:0px;
  4030. border-top:0px;
  4031. border-right:0px;
  4032. border-radius:0px;
  4033. border-bottom-right-radius:0px;
  4034. border-bottom-left-radius:0px;
  4035. filter:drop-shadow(none);
  4036. transition:none;
  4037. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4038. font-weight:400;
  4039. font-style:normal;
  4040. font-size:14px;
  4041. line-height:30px;
  4042. }
  4043. #u17114 {
  4044. border-width:0px;
  4045. position:absolute;
  4046. left:1675px;
  4047. top:276px;
  4048. width:141px;
  4049. height:30px;
  4050. display:flex;
  4051. transition:none;
  4052. transform-origin:50% 50%;
  4053. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4054. font-weight:400;
  4055. font-style:normal;
  4056. font-size:14px;
  4057. line-height:30px;
  4058. }
  4059. #u17114 .text {
  4060. position:absolute;
  4061. align-self:flex-start;
  4062. padding:0px 0px 0px 0px;
  4063. box-sizing:border-box;
  4064. width:100%;
  4065. }
  4066. #u17114_text {
  4067. border-width:0px;
  4068. white-space:nowrap;
  4069. text-transform:none;
  4070. }
  4071. #u17115_div {
  4072. border-width:0px;
  4073. position:absolute;
  4074. left:0px;
  4075. top:0px;
  4076. width:71px;
  4077. height:30px;
  4078. background:inherit;
  4079. background-color:rgba(255, 255, 255, 0);
  4080. border-left:0px;
  4081. border-top:0px;
  4082. border-right:0px;
  4083. border-radius:0px;
  4084. border-bottom-right-radius:0px;
  4085. border-bottom-left-radius:0px;
  4086. filter:drop-shadow(none);
  4087. transition:none;
  4088. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4089. font-weight:400;
  4090. font-style:normal;
  4091. font-size:14px;
  4092. color:#7F7F7F;
  4093. line-height:30px;
  4094. }
  4095. #u17115 {
  4096. border-width:0px;
  4097. position:absolute;
  4098. left:1157px;
  4099. top:356px;
  4100. width:71px;
  4101. height:30px;
  4102. display:flex;
  4103. transition:none;
  4104. transform-origin:50% 50%;
  4105. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4106. font-weight:400;
  4107. font-style:normal;
  4108. font-size:14px;
  4109. color:#7F7F7F;
  4110. line-height:30px;
  4111. }
  4112. #u17115 .text {
  4113. position:absolute;
  4114. align-self:flex-start;
  4115. padding:0px 0px 0px 0px;
  4116. box-sizing:border-box;
  4117. width:100%;
  4118. }
  4119. #u17115_text {
  4120. border-width:0px;
  4121. white-space:nowrap;
  4122. text-transform:none;
  4123. }
  4124. #u17116_div {
  4125. border-width:0px;
  4126. position:absolute;
  4127. left:0px;
  4128. top:0px;
  4129. width:29px;
  4130. height:30px;
  4131. background:inherit;
  4132. background-color:rgba(255, 255, 255, 0);
  4133. border-left:0px;
  4134. border-top:0px;
  4135. border-right:0px;
  4136. border-radius:0px;
  4137. border-bottom-right-radius:0px;
  4138. border-bottom-left-radius:0px;
  4139. filter:drop-shadow(none);
  4140. transition:none;
  4141. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4142. font-weight:400;
  4143. font-style:normal;
  4144. font-size:14px;
  4145. line-height:30px;
  4146. }
  4147. #u17116 {
  4148. border-width:0px;
  4149. position:absolute;
  4150. left:1237px;
  4151. top:356px;
  4152. width:29px;
  4153. height:30px;
  4154. display:flex;
  4155. transition:none;
  4156. transform-origin:50% 50%;
  4157. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4158. font-weight:400;
  4159. font-style:normal;
  4160. font-size:14px;
  4161. line-height:30px;
  4162. }
  4163. #u17116 .text {
  4164. position:absolute;
  4165. align-self:flex-start;
  4166. padding:0px 0px 0px 0px;
  4167. box-sizing:border-box;
  4168. width:100%;
  4169. }
  4170. #u17116_text {
  4171. border-width:0px;
  4172. white-space:nowrap;
  4173. text-transform:none;
  4174. }
  4175. #u17117_div {
  4176. border-width:0px;
  4177. position:absolute;
  4178. left:0px;
  4179. top:0px;
  4180. width:71px;
  4181. height:30px;
  4182. background:inherit;
  4183. background-color:rgba(255, 255, 255, 0);
  4184. border-left:0px;
  4185. border-top:0px;
  4186. border-right:0px;
  4187. border-radius:0px;
  4188. border-bottom-right-radius:0px;
  4189. border-bottom-left-radius:0px;
  4190. filter:drop-shadow(none);
  4191. transition:none;
  4192. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4193. font-weight:400;
  4194. font-style:normal;
  4195. font-size:14px;
  4196. color:#7F7F7F;
  4197. line-height:30px;
  4198. }
  4199. #u17117 {
  4200. border-width:0px;
  4201. position:absolute;
  4202. left:1157px;
  4203. top:316px;
  4204. width:71px;
  4205. height:30px;
  4206. display:flex;
  4207. transition:none;
  4208. transform-origin:50% 50%;
  4209. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4210. font-weight:400;
  4211. font-style:normal;
  4212. font-size:14px;
  4213. color:#7F7F7F;
  4214. line-height:30px;
  4215. }
  4216. #u17117 .text {
  4217. position:absolute;
  4218. align-self:flex-start;
  4219. padding:0px 0px 0px 0px;
  4220. box-sizing:border-box;
  4221. width:100%;
  4222. }
  4223. #u17117_text {
  4224. border-width:0px;
  4225. white-space:nowrap;
  4226. text-transform:none;
  4227. }
  4228. #u17118_div {
  4229. border-width:0px;
  4230. position:absolute;
  4231. left:0px;
  4232. top:0px;
  4233. width:57px;
  4234. height:30px;
  4235. background:inherit;
  4236. background-color:rgba(255, 255, 255, 0);
  4237. border-left:0px;
  4238. border-top:0px;
  4239. border-right:0px;
  4240. border-radius:0px;
  4241. border-bottom-right-radius:0px;
  4242. border-bottom-left-radius:0px;
  4243. filter:drop-shadow(none);
  4244. transition:none;
  4245. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4246. font-weight:400;
  4247. font-style:normal;
  4248. font-size:14px;
  4249. line-height:30px;
  4250. }
  4251. #u17118 {
  4252. border-width:0px;
  4253. position:absolute;
  4254. left:1237px;
  4255. top:316px;
  4256. width:57px;
  4257. height:30px;
  4258. display:flex;
  4259. transition:none;
  4260. transform-origin:50% 50%;
  4261. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4262. font-weight:400;
  4263. font-style:normal;
  4264. font-size:14px;
  4265. line-height:30px;
  4266. }
  4267. #u17118 .text {
  4268. position:absolute;
  4269. align-self:flex-start;
  4270. padding:0px 0px 0px 0px;
  4271. box-sizing:border-box;
  4272. width:100%;
  4273. }
  4274. #u17118_text {
  4275. border-width:0px;
  4276. white-space:nowrap;
  4277. text-transform:none;
  4278. }
  4279. #u17119_div {
  4280. border-width:0px;
  4281. position:absolute;
  4282. left:0px;
  4283. top:0px;
  4284. width:71px;
  4285. height:30px;
  4286. background:inherit;
  4287. background-color:rgba(255, 255, 255, 0);
  4288. border-left:0px;
  4289. border-top:0px;
  4290. border-right:0px;
  4291. border-radius:0px;
  4292. border-bottom-right-radius:0px;
  4293. border-bottom-left-radius:0px;
  4294. filter:drop-shadow(none);
  4295. transition:none;
  4296. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4297. font-weight:400;
  4298. font-style:normal;
  4299. font-size:14px;
  4300. color:#7F7F7F;
  4301. line-height:30px;
  4302. }
  4303. #u17119 {
  4304. border-width:0px;
  4305. position:absolute;
  4306. left:1595px;
  4307. top:316px;
  4308. width:71px;
  4309. height:30px;
  4310. display:flex;
  4311. transition:none;
  4312. transform-origin:50% 50%;
  4313. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4314. font-weight:400;
  4315. font-style:normal;
  4316. font-size:14px;
  4317. color:#7F7F7F;
  4318. line-height:30px;
  4319. }
  4320. #u17119 .text {
  4321. position:absolute;
  4322. align-self:flex-start;
  4323. padding:0px 0px 0px 0px;
  4324. box-sizing:border-box;
  4325. width:100%;
  4326. }
  4327. #u17119_text {
  4328. border-width:0px;
  4329. white-space:nowrap;
  4330. text-transform:none;
  4331. }
  4332. #u17120_div {
  4333. border-width:0px;
  4334. position:absolute;
  4335. left:0px;
  4336. top:0px;
  4337. width:57px;
  4338. height:30px;
  4339. background:inherit;
  4340. background-color:rgba(255, 255, 255, 0);
  4341. border-left:0px;
  4342. border-top:0px;
  4343. border-right:0px;
  4344. border-radius:0px;
  4345. border-bottom-right-radius:0px;
  4346. border-bottom-left-radius:0px;
  4347. filter:drop-shadow(none);
  4348. transition:none;
  4349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4350. font-weight:400;
  4351. font-style:normal;
  4352. font-size:14px;
  4353. line-height:30px;
  4354. }
  4355. #u17120 {
  4356. border-width:0px;
  4357. position:absolute;
  4358. left:1675px;
  4359. top:316px;
  4360. width:57px;
  4361. height:30px;
  4362. display:flex;
  4363. transition:none;
  4364. transform-origin:50% 50%;
  4365. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4366. font-weight:400;
  4367. font-style:normal;
  4368. font-size:14px;
  4369. line-height:30px;
  4370. }
  4371. #u17120 .text {
  4372. position:absolute;
  4373. align-self:flex-start;
  4374. padding:0px 0px 0px 0px;
  4375. box-sizing:border-box;
  4376. width:100%;
  4377. }
  4378. #u17120_text {
  4379. border-width:0px;
  4380. white-space:nowrap;
  4381. text-transform:none;
  4382. }
  4383. #u17121_div {
  4384. border-width:0px;
  4385. position:absolute;
  4386. left:0px;
  4387. top:0px;
  4388. width:71px;
  4389. height:30px;
  4390. background:inherit;
  4391. background-color:rgba(255, 255, 255, 0);
  4392. border-left:0px;
  4393. border-top:0px;
  4394. border-right:0px;
  4395. border-radius:0px;
  4396. border-bottom-right-radius:0px;
  4397. border-bottom-left-radius:0px;
  4398. filter:drop-shadow(none);
  4399. transition:none;
  4400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4401. font-weight:400;
  4402. font-style:normal;
  4403. font-size:14px;
  4404. color:#7F7F7F;
  4405. line-height:30px;
  4406. }
  4407. #u17121 {
  4408. border-width:0px;
  4409. position:absolute;
  4410. left:1157px;
  4411. top:276px;
  4412. width:71px;
  4413. height:30px;
  4414. display:flex;
  4415. transition:none;
  4416. transform-origin:50% 50%;
  4417. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4418. font-weight:400;
  4419. font-style:normal;
  4420. font-size:14px;
  4421. color:#7F7F7F;
  4422. line-height:30px;
  4423. }
  4424. #u17121 .text {
  4425. position:absolute;
  4426. align-self:flex-start;
  4427. padding:0px 0px 0px 0px;
  4428. box-sizing:border-box;
  4429. width:100%;
  4430. }
  4431. #u17121_text {
  4432. border-width:0px;
  4433. white-space:nowrap;
  4434. text-transform:none;
  4435. }
  4436. #u17122_div {
  4437. border-width:0px;
  4438. position:absolute;
  4439. left:0px;
  4440. top:0px;
  4441. width:57px;
  4442. height:30px;
  4443. background:inherit;
  4444. background-color:rgba(255, 255, 255, 0);
  4445. border-left:0px;
  4446. border-top:0px;
  4447. border-right:0px;
  4448. border-radius:0px;
  4449. border-bottom-right-radius:0px;
  4450. border-bottom-left-radius:0px;
  4451. filter:drop-shadow(none);
  4452. transition:none;
  4453. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4454. font-weight:400;
  4455. font-style:normal;
  4456. font-size:14px;
  4457. line-height:30px;
  4458. }
  4459. #u17122 {
  4460. border-width:0px;
  4461. position:absolute;
  4462. left:1237px;
  4463. top:276px;
  4464. width:57px;
  4465. height:30px;
  4466. display:flex;
  4467. transition:none;
  4468. transform-origin:50% 50%;
  4469. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4470. font-weight:400;
  4471. font-style:normal;
  4472. font-size:14px;
  4473. line-height:30px;
  4474. }
  4475. #u17122 .text {
  4476. position:absolute;
  4477. align-self:flex-start;
  4478. padding:0px 0px 0px 0px;
  4479. box-sizing:border-box;
  4480. width:100%;
  4481. }
  4482. #u17122_text {
  4483. border-width:0px;
  4484. white-space:nowrap;
  4485. text-transform:none;
  4486. }
  4487. #u17123_div {
  4488. border-width:0px;
  4489. position:absolute;
  4490. left:0px;
  4491. top:0px;
  4492. width:85px;
  4493. height:30px;
  4494. background:inherit;
  4495. background-color:rgba(255, 255, 255, 0);
  4496. border-left:0px;
  4497. border-top:0px;
  4498. border-right:0px;
  4499. border-radius:0px;
  4500. border-bottom-right-radius:0px;
  4501. border-bottom-left-radius:0px;
  4502. filter:drop-shadow(none);
  4503. transition:none;
  4504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4505. font-weight:400;
  4506. font-style:normal;
  4507. font-size:14px;
  4508. color:#7F7F7F;
  4509. line-height:30px;
  4510. }
  4511. #u17123 {
  4512. border-width:0px;
  4513. position:absolute;
  4514. left:1596px;
  4515. top:221px;
  4516. width:85px;
  4517. height:30px;
  4518. display:flex;
  4519. transition:none;
  4520. transform-origin:50% 50%;
  4521. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4522. font-weight:400;
  4523. font-style:normal;
  4524. font-size:14px;
  4525. color:#7F7F7F;
  4526. line-height:30px;
  4527. }
  4528. #u17123 .text {
  4529. position:absolute;
  4530. align-self:flex-start;
  4531. padding:0px 0px 0px 0px;
  4532. box-sizing:border-box;
  4533. width:100%;
  4534. }
  4535. #u17123_text {
  4536. border-width:0px;
  4537. white-space:nowrap;
  4538. text-transform:none;
  4539. }
  4540. #u17124_div {
  4541. border-width:0px;
  4542. position:absolute;
  4543. left:0px;
  4544. top:0px;
  4545. width:197px;
  4546. height:30px;
  4547. background:inherit;
  4548. background-color:rgba(255, 255, 255, 0);
  4549. border-left:0px;
  4550. border-top:0px;
  4551. border-right:0px;
  4552. border-radius:0px;
  4553. border-bottom-right-radius:0px;
  4554. border-bottom-left-radius:0px;
  4555. filter:drop-shadow(none);
  4556. transition:none;
  4557. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4558. font-weight:400;
  4559. font-style:normal;
  4560. font-size:14px;
  4561. line-height:30px;
  4562. }
  4563. #u17124 {
  4564. border-width:0px;
  4565. position:absolute;
  4566. left:1676px;
  4567. top:221px;
  4568. width:197px;
  4569. height:30px;
  4570. display:flex;
  4571. transition:none;
  4572. transform-origin:50% 50%;
  4573. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4574. font-weight:400;
  4575. font-style:normal;
  4576. font-size:14px;
  4577. line-height:30px;
  4578. }
  4579. #u17124 .text {
  4580. position:absolute;
  4581. align-self:flex-start;
  4582. padding:0px 0px 0px 0px;
  4583. box-sizing:border-box;
  4584. width:100%;
  4585. }
  4586. #u17124_text {
  4587. border-width:0px;
  4588. white-space:nowrap;
  4589. text-transform:none;
  4590. }
  4591. #u17125_div {
  4592. border-width:0px;
  4593. position:absolute;
  4594. left:0px;
  4595. top:0px;
  4596. width:85px;
  4597. height:30px;
  4598. background:inherit;
  4599. background-color:rgba(255, 255, 255, 0);
  4600. border-left:0px;
  4601. border-top:0px;
  4602. border-right:0px;
  4603. border-radius:0px;
  4604. border-bottom-right-radius:0px;
  4605. border-bottom-left-radius:0px;
  4606. filter:drop-shadow(none);
  4607. transition:none;
  4608. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4609. font-weight:400;
  4610. font-style:normal;
  4611. font-size:14px;
  4612. color:#7F7F7F;
  4613. line-height:30px;
  4614. }
  4615. #u17125 {
  4616. border-width:0px;
  4617. position:absolute;
  4618. left:1595px;
  4619. top:518px;
  4620. width:85px;
  4621. height:30px;
  4622. display:flex;
  4623. transition:none;
  4624. transform-origin:50% 50%;
  4625. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4626. font-weight:400;
  4627. font-style:normal;
  4628. font-size:14px;
  4629. color:#7F7F7F;
  4630. line-height:30px;
  4631. }
  4632. #u17125 .text {
  4633. position:absolute;
  4634. align-self:flex-start;
  4635. padding:0px 0px 0px 0px;
  4636. box-sizing:border-box;
  4637. width:100%;
  4638. }
  4639. #u17125_text {
  4640. border-width:0px;
  4641. white-space:nowrap;
  4642. text-transform:none;
  4643. }
  4644. #u17126 {
  4645. border-width:0px;
  4646. position:absolute;
  4647. left:1595px;
  4648. top:548px;
  4649. width:153px;
  4650. height:107px;
  4651. display:flex;
  4652. transition:none;
  4653. }
  4654. #u17126 .text {
  4655. position:absolute;
  4656. align-self:center;
  4657. padding:2px 2px 2px 2px;
  4658. box-sizing:border-box;
  4659. width:100%;
  4660. }
  4661. #u17126_img {
  4662. border-width:0px;
  4663. position:absolute;
  4664. left:0px;
  4665. top:0px;
  4666. width:153px;
  4667. height:107px;
  4668. }
  4669. #u17126_text {
  4670. border-width:0px;
  4671. word-wrap:break-word;
  4672. text-transform:none;
  4673. visibility:hidden;
  4674. }
  4675. #u17127 {
  4676. border-width:0px;
  4677. position:absolute;
  4678. left:1758px;
  4679. top:548px;
  4680. width:153px;
  4681. height:107px;
  4682. display:flex;
  4683. transition:none;
  4684. }
  4685. #u17127 .text {
  4686. position:absolute;
  4687. align-self:center;
  4688. padding:2px 2px 2px 2px;
  4689. box-sizing:border-box;
  4690. width:100%;
  4691. }
  4692. #u17127_img {
  4693. border-width:0px;
  4694. position:absolute;
  4695. left:0px;
  4696. top:0px;
  4697. width:153px;
  4698. height:107px;
  4699. }
  4700. #u17127_text {
  4701. border-width:0px;
  4702. word-wrap:break-word;
  4703. text-transform:none;
  4704. visibility:hidden;
  4705. }
  4706. #u17128_div {
  4707. border-width:0px;
  4708. position:absolute;
  4709. left:0px;
  4710. top:0px;
  4711. width:71px;
  4712. height:30px;
  4713. background:inherit;
  4714. background-color:rgba(255, 255, 255, 0);
  4715. border-left:0px;
  4716. border-top:0px;
  4717. border-right:0px;
  4718. border-radius:0px;
  4719. border-bottom-right-radius:0px;
  4720. border-bottom-left-radius:0px;
  4721. filter:drop-shadow(none);
  4722. transition:none;
  4723. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4724. font-weight:400;
  4725. font-style:normal;
  4726. font-size:14px;
  4727. color:#7F7F7F;
  4728. line-height:30px;
  4729. }
  4730. #u17128 {
  4731. border-width:0px;
  4732. position:absolute;
  4733. left:1157px;
  4734. top:675px;
  4735. width:71px;
  4736. height:30px;
  4737. display:flex;
  4738. transition:none;
  4739. transform-origin:50% 50%;
  4740. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4741. font-weight:400;
  4742. font-style:normal;
  4743. font-size:14px;
  4744. color:#7F7F7F;
  4745. line-height:30px;
  4746. }
  4747. #u17128 .text {
  4748. position:absolute;
  4749. align-self:flex-start;
  4750. padding:0px 0px 0px 0px;
  4751. box-sizing:border-box;
  4752. width:100%;
  4753. }
  4754. #u17128_text {
  4755. border-width:0px;
  4756. white-space:nowrap;
  4757. text-transform:none;
  4758. }
  4759. #u17129 {
  4760. border-width:0px;
  4761. position:absolute;
  4762. left:1157px;
  4763. top:705px;
  4764. width:146px;
  4765. height:102px;
  4766. display:flex;
  4767. transition:none;
  4768. }
  4769. #u17129 .text {
  4770. position:absolute;
  4771. align-self:center;
  4772. padding:2px 2px 2px 2px;
  4773. box-sizing:border-box;
  4774. width:100%;
  4775. }
  4776. #u17129_img {
  4777. border-width:0px;
  4778. position:absolute;
  4779. left:0px;
  4780. top:0px;
  4781. width:146px;
  4782. height:102px;
  4783. }
  4784. #u17129_text {
  4785. border-width:0px;
  4786. word-wrap:break-word;
  4787. text-transform:none;
  4788. visibility:hidden;
  4789. }
  4790. #u17130 {
  4791. border-width:0px;
  4792. position:absolute;
  4793. left:1313px;
  4794. top:705px;
  4795. width:146px;
  4796. height:102px;
  4797. display:flex;
  4798. transition:none;
  4799. }
  4800. #u17130 .text {
  4801. position:absolute;
  4802. align-self:center;
  4803. padding:2px 2px 2px 2px;
  4804. box-sizing:border-box;
  4805. width:100%;
  4806. }
  4807. #u17130_img {
  4808. border-width:0px;
  4809. position:absolute;
  4810. left:0px;
  4811. top:0px;
  4812. width:146px;
  4813. height:102px;
  4814. }
  4815. #u17130_text {
  4816. border-width:0px;
  4817. word-wrap:break-word;
  4818. text-transform:none;
  4819. visibility:hidden;
  4820. }
  4821. #u17131 {
  4822. border-width:0px;
  4823. position:absolute;
  4824. left:1469px;
  4825. top:705px;
  4826. width:146px;
  4827. height:102px;
  4828. display:flex;
  4829. transition:none;
  4830. }
  4831. #u17131 .text {
  4832. position:absolute;
  4833. align-self:center;
  4834. padding:2px 2px 2px 2px;
  4835. box-sizing:border-box;
  4836. width:100%;
  4837. }
  4838. #u17131_img {
  4839. border-width:0px;
  4840. position:absolute;
  4841. left:0px;
  4842. top:0px;
  4843. width:146px;
  4844. height:102px;
  4845. }
  4846. #u17131_text {
  4847. border-width:0px;
  4848. word-wrap:break-word;
  4849. text-transform:none;
  4850. visibility:hidden;
  4851. }
  4852. #u17132_div {
  4853. border-width:0px;
  4854. position:absolute;
  4855. left:0px;
  4856. top:0px;
  4857. width:71px;
  4858. height:30px;
  4859. background:inherit;
  4860. background-color:rgba(255, 255, 255, 0);
  4861. border-left:0px;
  4862. border-top:0px;
  4863. border-right:0px;
  4864. border-radius:0px;
  4865. border-bottom-right-radius:0px;
  4866. border-bottom-left-radius:0px;
  4867. filter:drop-shadow(none);
  4868. transition:none;
  4869. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4870. font-weight:400;
  4871. font-style:normal;
  4872. font-size:14px;
  4873. color:#7F7F7F;
  4874. line-height:30px;
  4875. }
  4876. #u17132 {
  4877. border-width:0px;
  4878. position:absolute;
  4879. left:1157px;
  4880. top:476px;
  4881. width:71px;
  4882. height:30px;
  4883. display:flex;
  4884. transition:none;
  4885. transform-origin:50% 50%;
  4886. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4887. font-weight:400;
  4888. font-style:normal;
  4889. font-size:14px;
  4890. color:#7F7F7F;
  4891. line-height:30px;
  4892. }
  4893. #u17132 .text {
  4894. position:absolute;
  4895. align-self:flex-start;
  4896. padding:0px 0px 0px 0px;
  4897. box-sizing:border-box;
  4898. width:100%;
  4899. }
  4900. #u17132_text {
  4901. border-width:0px;
  4902. white-space:nowrap;
  4903. text-transform:none;
  4904. }
  4905. #u17133_div {
  4906. border-width:0px;
  4907. position:absolute;
  4908. left:0px;
  4909. top:0px;
  4910. width:337px;
  4911. height:30px;
  4912. background:inherit;
  4913. background-color:rgba(255, 255, 255, 0);
  4914. border-left:0px;
  4915. border-top:0px;
  4916. border-right:0px;
  4917. border-radius:0px;
  4918. border-bottom-right-radius:0px;
  4919. border-bottom-left-radius:0px;
  4920. filter:drop-shadow(none);
  4921. transition:none;
  4922. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4923. font-weight:400;
  4924. font-style:normal;
  4925. font-size:14px;
  4926. line-height:30px;
  4927. }
  4928. #u17133 {
  4929. border-width:0px;
  4930. position:absolute;
  4931. left:1237px;
  4932. top:476px;
  4933. width:337px;
  4934. height:30px;
  4935. display:flex;
  4936. transition:none;
  4937. transform-origin:50% 50%;
  4938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4939. font-weight:400;
  4940. font-style:normal;
  4941. font-size:14px;
  4942. line-height:30px;
  4943. }
  4944. #u17133 .text {
  4945. position:absolute;
  4946. align-self:flex-start;
  4947. padding:0px 0px 0px 0px;
  4948. box-sizing:border-box;
  4949. width:100%;
  4950. }
  4951. #u17133_text {
  4952. border-width:0px;
  4953. white-space:nowrap;
  4954. text-transform:none;
  4955. }
  4956. #u17134_div {
  4957. border-width:0px;
  4958. position:absolute;
  4959. left:0px;
  4960. top:0px;
  4961. width:80px;
  4962. height:30px;
  4963. background:inherit;
  4964. background-color:rgba(255, 255, 255, 0);
  4965. border-left:0px;
  4966. border-top:0px;
  4967. border-right:0px;
  4968. border-radius:0px;
  4969. border-bottom-right-radius:0px;
  4970. border-bottom-left-radius:0px;
  4971. filter:drop-shadow(none);
  4972. transition:none;
  4973. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4974. font-weight:400;
  4975. font-style:normal;
  4976. font-size:14px;
  4977. color:#7F7F7F;
  4978. line-height:30px;
  4979. }
  4980. #u17134 {
  4981. border-width:0px;
  4982. position:absolute;
  4983. left:1595px;
  4984. top:396px;
  4985. width:80px;
  4986. height:30px;
  4987. display:flex;
  4988. transition:none;
  4989. transform-origin:50% 50%;
  4990. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4991. font-weight:400;
  4992. font-style:normal;
  4993. font-size:14px;
  4994. color:#7F7F7F;
  4995. line-height:30px;
  4996. }
  4997. #u17134 .text {
  4998. position:absolute;
  4999. align-self:flex-start;
  5000. padding:0px 0px 0px 0px;
  5001. box-sizing:border-box;
  5002. width:100%;
  5003. }
  5004. #u17134_text {
  5005. border-width:0px;
  5006. word-wrap:break-word;
  5007. text-transform:none;
  5008. }
  5009. #u17135_div {
  5010. border-width:0px;
  5011. position:absolute;
  5012. left:0px;
  5013. top:0px;
  5014. width:82px;
  5015. height:30px;
  5016. background:inherit;
  5017. background-color:rgba(255, 255, 255, 0);
  5018. border-left:0px;
  5019. border-top:0px;
  5020. border-right:0px;
  5021. border-radius:0px;
  5022. border-bottom-right-radius:0px;
  5023. border-bottom-left-radius:0px;
  5024. filter:drop-shadow(none);
  5025. transition:none;
  5026. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5027. font-weight:400;
  5028. font-style:normal;
  5029. font-size:14px;
  5030. line-height:30px;
  5031. }
  5032. #u17135 {
  5033. border-width:0px;
  5034. position:absolute;
  5035. left:1675px;
  5036. top:396px;
  5037. width:82px;
  5038. height:30px;
  5039. display:flex;
  5040. transition:none;
  5041. transform-origin:50% 50%;
  5042. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5043. font-weight:400;
  5044. font-style:normal;
  5045. font-size:14px;
  5046. line-height:30px;
  5047. }
  5048. #u17135 .text {
  5049. position:absolute;
  5050. align-self:flex-start;
  5051. padding:0px 0px 0px 0px;
  5052. box-sizing:border-box;
  5053. width:100%;
  5054. }
  5055. #u17135_text {
  5056. border-width:0px;
  5057. white-space:nowrap;
  5058. text-transform:none;
  5059. }
  5060. #u17136_div {
  5061. border-width:0px;
  5062. position:absolute;
  5063. left:0px;
  5064. top:0px;
  5065. width:57px;
  5066. height:30px;
  5067. background:inherit;
  5068. background-color:rgba(255, 255, 255, 0);
  5069. border-left:0px;
  5070. border-top:0px;
  5071. border-right:0px;
  5072. border-radius:0px;
  5073. border-bottom-right-radius:0px;
  5074. border-bottom-left-radius:0px;
  5075. filter:drop-shadow(none);
  5076. transition:none;
  5077. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5078. font-weight:400;
  5079. font-style:normal;
  5080. font-size:14px;
  5081. color:#7F7F7F;
  5082. line-height:30px;
  5083. }
  5084. #u17136 {
  5085. border-width:0px;
  5086. position:absolute;
  5087. left:1157px;
  5088. top:396px;
  5089. width:57px;
  5090. height:30px;
  5091. display:flex;
  5092. transition:none;
  5093. transform-origin:50% 50%;
  5094. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5095. font-weight:400;
  5096. font-style:normal;
  5097. font-size:14px;
  5098. color:#7F7F7F;
  5099. line-height:30px;
  5100. }
  5101. #u17136 .text {
  5102. position:absolute;
  5103. align-self:flex-start;
  5104. padding:0px 0px 0px 0px;
  5105. box-sizing:border-box;
  5106. width:100%;
  5107. }
  5108. #u17136_text {
  5109. border-width:0px;
  5110. white-space:nowrap;
  5111. text-transform:none;
  5112. }
  5113. #u17137_div {
  5114. border-width:0px;
  5115. position:absolute;
  5116. left:0px;
  5117. top:0px;
  5118. width:29px;
  5119. height:30px;
  5120. background:inherit;
  5121. background-color:rgba(255, 255, 255, 0);
  5122. border-left:0px;
  5123. border-top:0px;
  5124. border-right:0px;
  5125. border-radius:0px;
  5126. border-bottom-right-radius:0px;
  5127. border-bottom-left-radius:0px;
  5128. filter:drop-shadow(none);
  5129. transition:none;
  5130. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5131. font-weight:400;
  5132. font-style:normal;
  5133. font-size:14px;
  5134. line-height:30px;
  5135. }
  5136. #u17137 {
  5137. border-width:0px;
  5138. position:absolute;
  5139. left:1237px;
  5140. top:396px;
  5141. width:29px;
  5142. height:30px;
  5143. display:flex;
  5144. transition:none;
  5145. transform-origin:50% 50%;
  5146. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5147. font-weight:400;
  5148. font-style:normal;
  5149. font-size:14px;
  5150. line-height:30px;
  5151. }
  5152. #u17137 .text {
  5153. position:absolute;
  5154. align-self:flex-start;
  5155. padding:0px 0px 0px 0px;
  5156. box-sizing:border-box;
  5157. width:100%;
  5158. }
  5159. #u17137_text {
  5160. border-width:0px;
  5161. white-space:nowrap;
  5162. text-transform:none;
  5163. }
  5164. #u17138_div {
  5165. border-width:0px;
  5166. position:absolute;
  5167. left:0px;
  5168. top:0px;
  5169. width:80px;
  5170. height:30px;
  5171. background:inherit;
  5172. background-color:rgba(255, 255, 255, 0);
  5173. border-left:0px;
  5174. border-top:0px;
  5175. border-right:0px;
  5176. border-radius:0px;
  5177. border-bottom-right-radius:0px;
  5178. border-bottom-left-radius:0px;
  5179. filter:drop-shadow(none);
  5180. transition:none;
  5181. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5182. font-weight:400;
  5183. font-style:normal;
  5184. font-size:14px;
  5185. color:#7F7F7F;
  5186. line-height:30px;
  5187. }
  5188. #u17138 {
  5189. border-width:0px;
  5190. position:absolute;
  5191. left:1595px;
  5192. top:436px;
  5193. width:80px;
  5194. height:30px;
  5195. display:flex;
  5196. transition:none;
  5197. transform-origin:50% 50%;
  5198. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5199. font-weight:400;
  5200. font-style:normal;
  5201. font-size:14px;
  5202. color:#7F7F7F;
  5203. line-height:30px;
  5204. }
  5205. #u17138 .text {
  5206. position:absolute;
  5207. align-self:flex-start;
  5208. padding:0px 0px 0px 0px;
  5209. box-sizing:border-box;
  5210. width:100%;
  5211. }
  5212. #u17138_text {
  5213. border-width:0px;
  5214. word-wrap:break-word;
  5215. text-transform:none;
  5216. }
  5217. #u17139_div {
  5218. border-width:0px;
  5219. position:absolute;
  5220. left:0px;
  5221. top:0px;
  5222. width:239px;
  5223. height:30px;
  5224. background:inherit;
  5225. background-color:rgba(255, 255, 255, 0);
  5226. border-left:0px;
  5227. border-top:0px;
  5228. border-right:0px;
  5229. border-radius:0px;
  5230. border-bottom-right-radius:0px;
  5231. border-bottom-left-radius:0px;
  5232. filter:drop-shadow(none);
  5233. transition:none;
  5234. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5235. font-weight:400;
  5236. font-style:normal;
  5237. font-size:14px;
  5238. line-height:30px;
  5239. }
  5240. #u17139 {
  5241. border-width:0px;
  5242. position:absolute;
  5243. left:1675px;
  5244. top:436px;
  5245. width:239px;
  5246. height:30px;
  5247. display:flex;
  5248. transition:none;
  5249. transform-origin:50% 50%;
  5250. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5251. font-weight:400;
  5252. font-style:normal;
  5253. font-size:14px;
  5254. line-height:30px;
  5255. }
  5256. #u17139 .text {
  5257. position:absolute;
  5258. align-self:flex-start;
  5259. padding:0px 0px 0px 0px;
  5260. box-sizing:border-box;
  5261. width:100%;
  5262. }
  5263. #u17139_text {
  5264. border-width:0px;
  5265. white-space:nowrap;
  5266. text-transform:none;
  5267. }
  5268. #u17140_div {
  5269. border-width:0px;
  5270. position:absolute;
  5271. left:0px;
  5272. top:0px;
  5273. width:71px;
  5274. height:30px;
  5275. background:inherit;
  5276. background-color:rgba(255, 255, 255, 0);
  5277. border-left:0px;
  5278. border-top:0px;
  5279. border-right:0px;
  5280. border-radius:0px;
  5281. border-bottom-right-radius:0px;
  5282. border-bottom-left-radius:0px;
  5283. filter:drop-shadow(none);
  5284. transition:none;
  5285. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5286. font-weight:400;
  5287. font-style:normal;
  5288. font-size:14px;
  5289. color:#7F7F7F;
  5290. line-height:30px;
  5291. }
  5292. #u17140 {
  5293. border-width:0px;
  5294. position:absolute;
  5295. left:1157px;
  5296. top:436px;
  5297. width:71px;
  5298. height:30px;
  5299. display:flex;
  5300. transition:none;
  5301. transform-origin:50% 50%;
  5302. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5303. font-weight:400;
  5304. font-style:normal;
  5305. font-size:14px;
  5306. color:#7F7F7F;
  5307. line-height:30px;
  5308. }
  5309. #u17140 .text {
  5310. position:absolute;
  5311. align-self:flex-start;
  5312. padding:0px 0px 0px 0px;
  5313. box-sizing:border-box;
  5314. width:100%;
  5315. }
  5316. #u17140_text {
  5317. border-width:0px;
  5318. white-space:nowrap;
  5319. text-transform:none;
  5320. }
  5321. #u17141_div {
  5322. border-width:0px;
  5323. position:absolute;
  5324. left:0px;
  5325. top:0px;
  5326. width:43px;
  5327. height:30px;
  5328. background:inherit;
  5329. background-color:rgba(255, 255, 255, 0);
  5330. border-left:0px;
  5331. border-top:0px;
  5332. border-right:0px;
  5333. border-radius:0px;
  5334. border-bottom-right-radius:0px;
  5335. border-bottom-left-radius:0px;
  5336. filter:drop-shadow(none);
  5337. transition:none;
  5338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5339. font-weight:400;
  5340. font-style:normal;
  5341. font-size:14px;
  5342. line-height:30px;
  5343. }
  5344. #u17141 {
  5345. border-width:0px;
  5346. position:absolute;
  5347. left:1237px;
  5348. top:436px;
  5349. width:43px;
  5350. height:30px;
  5351. display:flex;
  5352. transition:none;
  5353. transform-origin:50% 50%;
  5354. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5355. font-weight:400;
  5356. font-style:normal;
  5357. font-size:14px;
  5358. line-height:30px;
  5359. }
  5360. #u17141 .text {
  5361. position:absolute;
  5362. align-self:flex-start;
  5363. padding:0px 0px 0px 0px;
  5364. box-sizing:border-box;
  5365. width:100%;
  5366. }
  5367. #u17141_text {
  5368. border-width:0px;
  5369. white-space:nowrap;
  5370. text-transform:none;
  5371. }
  5372. #u17142_div {
  5373. border-width:0px;
  5374. position:absolute;
  5375. left:0px;
  5376. top:0px;
  5377. width:57px;
  5378. height:30px;
  5379. background:inherit;
  5380. background-color:rgba(255, 255, 255, 0);
  5381. border-left:0px;
  5382. border-top:0px;
  5383. border-right:0px;
  5384. border-radius:0px;
  5385. border-bottom-right-radius:0px;
  5386. border-bottom-left-radius:0px;
  5387. filter:drop-shadow(none);
  5388. transition:none;
  5389. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5390. font-weight:400;
  5391. font-style:normal;
  5392. font-size:14px;
  5393. color:#7F7F7F;
  5394. line-height:30px;
  5395. }
  5396. #u17142 {
  5397. border-width:0px;
  5398. position:absolute;
  5399. left:1157px;
  5400. top:518px;
  5401. width:57px;
  5402. height:30px;
  5403. display:flex;
  5404. transition:none;
  5405. transform-origin:50% 50%;
  5406. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5407. font-weight:400;
  5408. font-style:normal;
  5409. font-size:14px;
  5410. color:#7F7F7F;
  5411. line-height:30px;
  5412. }
  5413. #u17142 .text {
  5414. position:absolute;
  5415. align-self:flex-start;
  5416. padding:0px 0px 0px 0px;
  5417. box-sizing:border-box;
  5418. width:100%;
  5419. }
  5420. #u17142_text {
  5421. border-width:0px;
  5422. white-space:nowrap;
  5423. text-transform:none;
  5424. }
  5425. #u17143 {
  5426. border-width:0px;
  5427. position:absolute;
  5428. left:1157px;
  5429. top:548px;
  5430. width:153px;
  5431. height:107px;
  5432. display:flex;
  5433. transition:none;
  5434. }
  5435. #u17143 .text {
  5436. position:absolute;
  5437. align-self:center;
  5438. padding:2px 2px 2px 2px;
  5439. box-sizing:border-box;
  5440. width:100%;
  5441. }
  5442. #u17143_img {
  5443. border-width:0px;
  5444. position:absolute;
  5445. left:0px;
  5446. top:0px;
  5447. width:153px;
  5448. height:107px;
  5449. }
  5450. #u17143_text {
  5451. border-width:0px;
  5452. word-wrap:break-word;
  5453. text-transform:none;
  5454. visibility:hidden;
  5455. }
  5456. #u17144 {
  5457. border-width:0px;
  5458. position:absolute;
  5459. left:0px;
  5460. top:0px;
  5461. width:0px;
  5462. height:0px;
  5463. }
  5464. #u17145_div {
  5465. border-width:0px;
  5466. position:absolute;
  5467. left:0px;
  5468. top:0px;
  5469. width:360px;
  5470. height:300px;
  5471. background:inherit;
  5472. background-color:rgba(255, 255, 255, 1);
  5473. border-radius:6px;
  5474. filter:drop-shadow(0px 0px 2.5px rgba(0, 0, 0, 0.34901960784313724));
  5475. transition:none;
  5476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5477. font-weight:400;
  5478. font-style:normal;
  5479. font-size:12px;
  5480. color:#FFFFFF;
  5481. }
  5482. #u17145 {
  5483. border-width:0px;
  5484. position:absolute;
  5485. left:1627px;
  5486. top:874px;
  5487. width:360px;
  5488. height:300px;
  5489. display:flex;
  5490. transition:none;
  5491. transform-origin:50% 50%;
  5492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5493. font-weight:400;
  5494. font-style:normal;
  5495. font-size:12px;
  5496. color:#FFFFFF;
  5497. }
  5498. #u17145 .text {
  5499. position:absolute;
  5500. align-self:center;
  5501. padding:2px 2px 2px 2px;
  5502. box-sizing:border-box;
  5503. width:100%;
  5504. }
  5505. #u17145_text {
  5506. border-width:0px;
  5507. word-wrap:break-word;
  5508. text-transform:none;
  5509. visibility:hidden;
  5510. }
  5511. #u17146_div {
  5512. border-width:0px;
  5513. position:absolute;
  5514. left:0px;
  5515. top:0px;
  5516. width:37px;
  5517. height:25px;
  5518. background:inherit;
  5519. background-color:rgba(255, 255, 255, 0);
  5520. border-radius:0px;
  5521. filter:drop-shadow(none);
  5522. transition:none;
  5523. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5524. font-weight:500;
  5525. font-style:normal;
  5526. font-size:18px;
  5527. }
  5528. #u17146 {
  5529. border-width:0px;
  5530. position:absolute;
  5531. left:1650px;
  5532. top:890px;
  5533. width:37px;
  5534. height:25px;
  5535. display:flex;
  5536. transition:none;
  5537. transform-origin:50% 50%;
  5538. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5539. font-weight:500;
  5540. font-style:normal;
  5541. font-size:18px;
  5542. }
  5543. #u17146 .text {
  5544. position:absolute;
  5545. align-self:flex-start;
  5546. padding:0px 0px 0px 0px;
  5547. box-sizing:border-box;
  5548. width:100%;
  5549. }
  5550. #u17146_text {
  5551. border-width:0px;
  5552. white-space:nowrap;
  5553. text-transform:none;
  5554. }
  5555. #u17147 {
  5556. border-width:0px;
  5557. position:absolute;
  5558. left:1964px;
  5559. top:886px;
  5560. width:8px;
  5561. height:8px;
  5562. display:flex;
  5563. opacity:0.5;
  5564. transition:none;
  5565. }
  5566. #u17147 .text {
  5567. position:absolute;
  5568. align-self:center;
  5569. padding:2px 2px 2px 2px;
  5570. box-sizing:border-box;
  5571. width:100%;
  5572. }
  5573. #u17147_img {
  5574. border-width:0px;
  5575. position:absolute;
  5576. left:0px;
  5577. top:0px;
  5578. width:8px;
  5579. height:8px;
  5580. }
  5581. #u17147_text {
  5582. border-width:0px;
  5583. word-wrap:break-word;
  5584. text-transform:none;
  5585. visibility:hidden;
  5586. }
  5587. #u17148_div {
  5588. border-width:0px;
  5589. position:absolute;
  5590. left:0px;
  5591. top:0px;
  5592. width:80px;
  5593. height:30px;
  5594. background:inherit;
  5595. background-color:rgba(51, 153, 255, 1);
  5596. border-radius:4px;
  5597. filter:drop-shadow(none);
  5598. transition:none;
  5599. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5600. font-weight:400;
  5601. font-style:normal;
  5602. font-size:14px;
  5603. color:#FFFFFF;
  5604. }
  5605. #u17148 {
  5606. border-width:0px;
  5607. position:absolute;
  5608. left:1892px;
  5609. top:1124px;
  5610. width:80px;
  5611. height:30px;
  5612. display:flex;
  5613. transition:none;
  5614. transform-origin:50% 50%;
  5615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5616. font-weight:400;
  5617. font-style:normal;
  5618. font-size:14px;
  5619. color:#FFFFFF;
  5620. }
  5621. #u17148 .text {
  5622. position:absolute;
  5623. align-self:center;
  5624. padding:8px 0px 8px 0px;
  5625. box-sizing:border-box;
  5626. width:100%;
  5627. }
  5628. #u17148_text {
  5629. border-width:0px;
  5630. word-wrap:break-word;
  5631. text-transform:none;
  5632. }
  5633. #u17149 {
  5634. border-width:0px;
  5635. position:absolute;
  5636. left:0px;
  5637. top:0px;
  5638. width:0px;
  5639. height:0px;
  5640. }
  5641. #u17150_div {
  5642. border-width:0px;
  5643. position:absolute;
  5644. left:0px;
  5645. top:0px;
  5646. width:322px;
  5647. height:80px;
  5648. background:inherit;
  5649. background-color:rgba(255, 255, 255, 1);
  5650. box-sizing:border-box;
  5651. border-width:1px;
  5652. border-style:solid;
  5653. border-color:rgba(51, 153, 255, 1);
  5654. border-radius:2px;
  5655. filter:drop-shadow(none);
  5656. transition:none;
  5657. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5658. font-weight:400;
  5659. font-style:normal;
  5660. font-size:12px;
  5661. color:#FFFFFF;
  5662. text-align:left;
  5663. }
  5664. #u17150 {
  5665. border-width:0px;
  5666. position:absolute;
  5667. left:1650px;
  5668. top:1024px;
  5669. width:322px;
  5670. height:80px;
  5671. display:flex;
  5672. transition:none;
  5673. transform-origin:50% 50%;
  5674. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5675. font-weight:400;
  5676. font-style:normal;
  5677. font-size:12px;
  5678. color:#FFFFFF;
  5679. text-align:left;
  5680. }
  5681. #u17150 .text {
  5682. position:absolute;
  5683. align-self:center;
  5684. padding:8px 15px 8px 15px;
  5685. box-sizing:border-box;
  5686. width:100%;
  5687. }
  5688. #u17150_text {
  5689. border-width:0px;
  5690. word-wrap:break-word;
  5691. text-transform:none;
  5692. }
  5693. #u17151_div {
  5694. border-width:0px;
  5695. position:absolute;
  5696. left:0px;
  5697. top:0px;
  5698. width:99px;
  5699. height:20px;
  5700. background:inherit;
  5701. background-color:rgba(255, 255, 255, 0);
  5702. border-radius:0px;
  5703. filter:drop-shadow(none);
  5704. transition:none;
  5705. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5706. font-weight:400;
  5707. font-style:normal;
  5708. color:#D7D7D7;
  5709. }
  5710. #u17151 {
  5711. border-width:0px;
  5712. position:absolute;
  5713. left:1661px;
  5714. top:1035px;
  5715. width:99px;
  5716. height:20px;
  5717. display:flex;
  5718. transition:none;
  5719. transform-origin:50% 50%;
  5720. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5721. font-weight:400;
  5722. font-style:normal;
  5723. color:#D7D7D7;
  5724. }
  5725. #u17151 .text {
  5726. position:absolute;
  5727. align-self:flex-start;
  5728. padding:0px 0px 0px 0px;
  5729. box-sizing:border-box;
  5730. width:100%;
  5731. }
  5732. #u17151_text {
  5733. border-width:0px;
  5734. white-space:nowrap;
  5735. text-transform:none;
  5736. }
  5737. #u17152_div {
  5738. border-width:0px;
  5739. position:absolute;
  5740. left:0px;
  5741. top:0px;
  5742. width:60px;
  5743. height:30px;
  5744. background:inherit;
  5745. background-color:rgba(255, 255, 255, 1);
  5746. box-sizing:border-box;
  5747. border-width:1px;
  5748. border-style:solid;
  5749. border-color:rgba(170, 170, 170, 1);
  5750. border-radius:4px;
  5751. filter:drop-shadow(none);
  5752. transition:none;
  5753. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5754. font-weight:400;
  5755. font-style:normal;
  5756. font-size:14px;
  5757. }
  5758. #u17152 {
  5759. border-width:0px;
  5760. position:absolute;
  5761. left:1822px;
  5762. top:1124px;
  5763. width:60px;
  5764. height:30px;
  5765. display:flex;
  5766. transition:none;
  5767. transform-origin:50% 50%;
  5768. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5769. font-weight:400;
  5770. font-style:normal;
  5771. font-size:14px;
  5772. }
  5773. #u17152 .text {
  5774. position:absolute;
  5775. align-self:center;
  5776. padding:2px 2px 2px 2px;
  5777. box-sizing:border-box;
  5778. width:100%;
  5779. }
  5780. #u17152_text {
  5781. border-width:0px;
  5782. word-wrap:break-word;
  5783. text-transform:none;
  5784. }
  5785. #u17153_div {
  5786. border-width:0px;
  5787. position:absolute;
  5788. left:0px;
  5789. top:0px;
  5790. width:319px;
  5791. height:75px;
  5792. background:inherit;
  5793. background-color:rgba(255, 255, 255, 0);
  5794. border-radius:0px;
  5795. filter:drop-shadow(none);
  5796. transition:none;
  5797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5798. font-weight:400;
  5799. font-style:normal;
  5800. font-size:14px;
  5801. line-height:25px;
  5802. }
  5803. #u17153 {
  5804. border-width:0px;
  5805. position:absolute;
  5806. left:1650px;
  5807. top:929px;
  5808. width:319px;
  5809. height:75px;
  5810. display:flex;
  5811. transition:none;
  5812. transform-origin:50% 50%;
  5813. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5814. font-weight:400;
  5815. font-style:normal;
  5816. font-size:14px;
  5817. line-height:25px;
  5818. }
  5819. #u17153 .text {
  5820. position:absolute;
  5821. align-self:flex-start;
  5822. padding:0px 0px 0px 0px;
  5823. box-sizing:border-box;
  5824. width:100%;
  5825. }
  5826. #u17153_text {
  5827. border-width:0px;
  5828. word-wrap:break-word;
  5829. text-transform:none;
  5830. }
  5831. #u17154 {
  5832. border-width:0px;
  5833. position:absolute;
  5834. left:0px;
  5835. top:0px;
  5836. width:0px;
  5837. height:0px;
  5838. }
  5839. #u17155 {
  5840. border-width:0px;
  5841. position:absolute;
  5842. left:0px;
  5843. top:0px;
  5844. width:0px;
  5845. height:0px;
  5846. }
  5847. #u17156_div {
  5848. border-width:0px;
  5849. position:absolute;
  5850. left:0px;
  5851. top:0px;
  5852. width:380px;
  5853. height:180px;
  5854. background:inherit;
  5855. background-color:rgba(255, 255, 255, 1);
  5856. box-sizing:border-box;
  5857. border-width:1px;
  5858. border-style:solid;
  5859. border-color:rgba(204, 204, 204, 1);
  5860. border-radius:4px;
  5861. filter:drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.4470588235294118));
  5862. transition:none;
  5863. font-family:"Microsoft YaHei", sans-serif;
  5864. font-weight:400;
  5865. font-style:normal;
  5866. }
  5867. #u17156 {
  5868. border-width:0px;
  5869. position:absolute;
  5870. left:654px;
  5871. top:1286px;
  5872. width:380px;
  5873. height:180px;
  5874. display:flex;
  5875. transition:none;
  5876. transform-origin:50% 50%;
  5877. font-family:"Microsoft YaHei", sans-serif;
  5878. font-weight:400;
  5879. font-style:normal;
  5880. }
  5881. #u17156 .text {
  5882. position:absolute;
  5883. align-self:center;
  5884. padding:2px 2px 2px 2px;
  5885. box-sizing:border-box;
  5886. width:100%;
  5887. }
  5888. #u17156_text {
  5889. border-width:0px;
  5890. word-wrap:break-word;
  5891. text-transform:none;
  5892. visibility:hidden;
  5893. }
  5894. #u17157_div {
  5895. border-width:0px;
  5896. position:absolute;
  5897. left:0px;
  5898. top:0px;
  5899. width:299px;
  5900. height:44px;
  5901. background:inherit;
  5902. background-color:rgba(255, 255, 255, 0);
  5903. border-radius:0px;
  5904. filter:drop-shadow(none);
  5905. transition:none;
  5906. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5907. font-weight:400;
  5908. font-style:normal;
  5909. font-size:14px;
  5910. color:#666666;
  5911. line-height:22px;
  5912. }
  5913. #u17157 {
  5914. border-width:0px;
  5915. position:absolute;
  5916. left:717px;
  5917. top:1345px;
  5918. width:299px;
  5919. height:44px;
  5920. display:flex;
  5921. transition:none;
  5922. transform-origin:50% 50%;
  5923. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5924. font-weight:400;
  5925. font-style:normal;
  5926. font-size:14px;
  5927. color:#666666;
  5928. line-height:22px;
  5929. }
  5930. #u17157 .text {
  5931. position:absolute;
  5932. align-self:flex-start;
  5933. padding:0px 0px 0px 0px;
  5934. box-sizing:border-box;
  5935. width:100%;
  5936. }
  5937. #u17157_text {
  5938. border-width:0px;
  5939. word-wrap:break-word;
  5940. text-transform:none;
  5941. }
  5942. #u17158_div {
  5943. border-width:0px;
  5944. position:absolute;
  5945. left:0px;
  5946. top:0px;
  5947. width:235px;
  5948. height:21px;
  5949. background:inherit;
  5950. background-color:rgba(255, 255, 255, 0);
  5951. border-radius:0px;
  5952. filter:drop-shadow(none);
  5953. transition:none;
  5954. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  5955. font-weight:650;
  5956. font-style:normal;
  5957. font-size:18px;
  5958. color:#000000;
  5959. line-height:22px;
  5960. }
  5961. #u17158 {
  5962. border-width:0px;
  5963. position:absolute;
  5964. left:713px;
  5965. top:1314px;
  5966. width:235px;
  5967. height:21px;
  5968. display:flex;
  5969. transition:none;
  5970. transform-origin:50% 50%;
  5971. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  5972. font-weight:650;
  5973. font-style:normal;
  5974. font-size:18px;
  5975. color:#000000;
  5976. line-height:22px;
  5977. }
  5978. #u17158 .text {
  5979. position:absolute;
  5980. align-self:flex-start;
  5981. padding:0px 0px 0px 0px;
  5982. box-sizing:border-box;
  5983. width:100%;
  5984. }
  5985. #u17158_text {
  5986. border-width:0px;
  5987. white-space:nowrap;
  5988. text-transform:none;
  5989. }
  5990. #u17159_div {
  5991. border-width:0px;
  5992. position:absolute;
  5993. left:0px;
  5994. top:0px;
  5995. width:89px;
  5996. height:30px;
  5997. background:inherit;
  5998. background-color:rgba(24, 144, 255, 1);
  5999. border-radius:4px;
  6000. filter:drop-shadow(none);
  6001. transition:none;
  6002. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6003. font-weight:400;
  6004. font-style:normal;
  6005. font-size:14px;
  6006. color:#FFFFFF;
  6007. }
  6008. #u17159 {
  6009. border-width:0px;
  6010. position:absolute;
  6011. left:922px;
  6012. top:1411px;
  6013. width:89px;
  6014. height:30px;
  6015. display:flex;
  6016. transition:none;
  6017. transform-origin:50% 50%;
  6018. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6019. font-weight:400;
  6020. font-style:normal;
  6021. font-size:14px;
  6022. color:#FFFFFF;
  6023. }
  6024. #u17159 .text {
  6025. position:absolute;
  6026. align-self:center;
  6027. padding:2px 16px 2px 16px;
  6028. box-sizing:border-box;
  6029. width:100%;
  6030. }
  6031. #u17159_text {
  6032. border-width:0px;
  6033. white-space:nowrap;
  6034. text-transform:none;
  6035. }
  6036. #u17160_div {
  6037. border-width:0px;
  6038. position:absolute;
  6039. left:0px;
  6040. top:0px;
  6041. width:66px;
  6042. height:30px;
  6043. background:inherit;
  6044. background-color:rgba(255, 255, 255, 1);
  6045. box-sizing:border-box;
  6046. border-width:1px;
  6047. border-style:solid;
  6048. border-color:rgba(217, 217, 217, 1);
  6049. border-radius:4px;
  6050. filter:drop-shadow(none);
  6051. transition:none;
  6052. font-family:"Microsoft YaHei", sans-serif;
  6053. font-weight:400;
  6054. font-style:normal;
  6055. font-size:14px;
  6056. color:rgba(0, 0, 0, 0.6470588235294118);
  6057. line-height:21px;
  6058. }
  6059. #u17160 {
  6060. border-width:0px;
  6061. position:absolute;
  6062. left:846px;
  6063. top:1411px;
  6064. width:66px;
  6065. height:30px;
  6066. display:flex;
  6067. transition:none;
  6068. transform-origin:50% 50%;
  6069. font-family:"Microsoft YaHei", sans-serif;
  6070. font-weight:400;
  6071. font-style:normal;
  6072. font-size:14px;
  6073. color:rgba(0, 0, 0, 0.6470588235294118);
  6074. line-height:21px;
  6075. }
  6076. #u17160 .text {
  6077. position:absolute;
  6078. align-self:center;
  6079. padding:2px 16px 2px 16px;
  6080. box-sizing:border-box;
  6081. width:100%;
  6082. }
  6083. #u17160_text {
  6084. border-width:0px;
  6085. white-space:nowrap;
  6086. text-transform:none;
  6087. }
  6088. #u17161 {
  6089. border-width:0px;
  6090. position:absolute;
  6091. left:683px;
  6092. top:1315px;
  6093. width:20px;
  6094. height:20px;
  6095. display:flex;
  6096. transition:none;
  6097. }
  6098. #u17161 .text {
  6099. position:absolute;
  6100. align-self:center;
  6101. padding:2px 2px 2px 2px;
  6102. box-sizing:border-box;
  6103. width:100%;
  6104. }
  6105. #u17161_img {
  6106. border-width:0px;
  6107. position:absolute;
  6108. left:0px;
  6109. top:0px;
  6110. width:20px;
  6111. height:20px;
  6112. }
  6113. #u17161_text {
  6114. border-width:0px;
  6115. word-wrap:break-word;
  6116. text-transform:none;
  6117. visibility:hidden;
  6118. }
  6119. #u17162 {
  6120. border-width:0px;
  6121. position:absolute;
  6122. left:0px;
  6123. top:0px;
  6124. width:0px;
  6125. height:0px;
  6126. }
  6127. #u17163 {
  6128. border-width:0px;
  6129. position:absolute;
  6130. left:0px;
  6131. top:0px;
  6132. width:0px;
  6133. height:0px;
  6134. }
  6135. #u17164_div {
  6136. border-width:0px;
  6137. position:absolute;
  6138. left:0px;
  6139. top:0px;
  6140. width:380px;
  6141. height:200px;
  6142. background:inherit;
  6143. background-color:rgba(255, 255, 255, 1);
  6144. box-sizing:border-box;
  6145. border-width:1px;
  6146. border-style:solid;
  6147. border-color:rgba(204, 204, 204, 1);
  6148. border-radius:4px;
  6149. filter:drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.4470588235294118));
  6150. transition:none;
  6151. font-family:"Microsoft YaHei", sans-serif;
  6152. font-weight:400;
  6153. font-style:normal;
  6154. }
  6155. #u17164 {
  6156. border-width:0px;
  6157. position:absolute;
  6158. left:1721px;
  6159. top:1314px;
  6160. width:380px;
  6161. height:200px;
  6162. display:flex;
  6163. transition:none;
  6164. transform-origin:50% 50%;
  6165. font-family:"Microsoft YaHei", sans-serif;
  6166. font-weight:400;
  6167. font-style:normal;
  6168. }
  6169. #u17164 .text {
  6170. position:absolute;
  6171. align-self:center;
  6172. padding:2px 2px 2px 2px;
  6173. box-sizing:border-box;
  6174. width:100%;
  6175. }
  6176. #u17164_text {
  6177. border-width:0px;
  6178. word-wrap:break-word;
  6179. text-transform:none;
  6180. visibility:hidden;
  6181. }
  6182. #u17165_div {
  6183. border-width:0px;
  6184. position:absolute;
  6185. left:0px;
  6186. top:0px;
  6187. width:299px;
  6188. height:66px;
  6189. background:inherit;
  6190. background-color:rgba(255, 255, 255, 0);
  6191. border-radius:0px;
  6192. filter:drop-shadow(none);
  6193. transition:none;
  6194. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6195. font-weight:400;
  6196. font-style:normal;
  6197. font-size:14px;
  6198. color:#666666;
  6199. line-height:22px;
  6200. }
  6201. #u17165 {
  6202. border-width:0px;
  6203. position:absolute;
  6204. left:1784px;
  6205. top:1373px;
  6206. width:299px;
  6207. height:66px;
  6208. display:flex;
  6209. transition:none;
  6210. transform-origin:50% 50%;
  6211. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6212. font-weight:400;
  6213. font-style:normal;
  6214. font-size:14px;
  6215. color:#666666;
  6216. line-height:22px;
  6217. }
  6218. #u17165 .text {
  6219. position:absolute;
  6220. align-self:flex-start;
  6221. padding:0px 0px 0px 0px;
  6222. box-sizing:border-box;
  6223. width:100%;
  6224. }
  6225. #u17165_text {
  6226. border-width:0px;
  6227. word-wrap:break-word;
  6228. text-transform:none;
  6229. }
  6230. #u17166_div {
  6231. border-width:0px;
  6232. position:absolute;
  6233. left:0px;
  6234. top:0px;
  6235. width:235px;
  6236. height:21px;
  6237. background:inherit;
  6238. background-color:rgba(255, 255, 255, 0);
  6239. border-radius:0px;
  6240. filter:drop-shadow(none);
  6241. transition:none;
  6242. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6243. font-weight:650;
  6244. font-style:normal;
  6245. font-size:18px;
  6246. color:#000000;
  6247. line-height:22px;
  6248. }
  6249. #u17166 {
  6250. border-width:0px;
  6251. position:absolute;
  6252. left:1780px;
  6253. top:1342px;
  6254. width:235px;
  6255. height:21px;
  6256. display:flex;
  6257. transition:none;
  6258. transform-origin:50% 50%;
  6259. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6260. font-weight:650;
  6261. font-style:normal;
  6262. font-size:18px;
  6263. color:#000000;
  6264. line-height:22px;
  6265. }
  6266. #u17166 .text {
  6267. position:absolute;
  6268. align-self:flex-start;
  6269. padding:0px 0px 0px 0px;
  6270. box-sizing:border-box;
  6271. width:100%;
  6272. }
  6273. #u17166_text {
  6274. border-width:0px;
  6275. white-space:nowrap;
  6276. text-transform:none;
  6277. }
  6278. #u17167_div {
  6279. border-width:0px;
  6280. position:absolute;
  6281. left:0px;
  6282. top:0px;
  6283. width:89px;
  6284. height:30px;
  6285. background:inherit;
  6286. background-color:rgba(24, 144, 255, 1);
  6287. border-radius:4px;
  6288. filter:drop-shadow(none);
  6289. transition:none;
  6290. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6291. font-weight:400;
  6292. font-style:normal;
  6293. font-size:14px;
  6294. color:#FFFFFF;
  6295. }
  6296. #u17167 {
  6297. border-width:0px;
  6298. position:absolute;
  6299. left:1989px;
  6300. top:1459px;
  6301. width:89px;
  6302. height:30px;
  6303. display:flex;
  6304. transition:none;
  6305. transform-origin:50% 50%;
  6306. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6307. font-weight:400;
  6308. font-style:normal;
  6309. font-size:14px;
  6310. color:#FFFFFF;
  6311. }
  6312. #u17167 .text {
  6313. position:absolute;
  6314. align-self:center;
  6315. padding:2px 16px 2px 16px;
  6316. box-sizing:border-box;
  6317. width:100%;
  6318. }
  6319. #u17167_text {
  6320. border-width:0px;
  6321. white-space:nowrap;
  6322. text-transform:none;
  6323. }
  6324. #u17168_div {
  6325. border-width:0px;
  6326. position:absolute;
  6327. left:0px;
  6328. top:0px;
  6329. width:66px;
  6330. height:30px;
  6331. background:inherit;
  6332. background-color:rgba(255, 255, 255, 1);
  6333. box-sizing:border-box;
  6334. border-width:1px;
  6335. border-style:solid;
  6336. border-color:rgba(217, 217, 217, 1);
  6337. border-radius:4px;
  6338. filter:drop-shadow(none);
  6339. transition:none;
  6340. font-family:"Microsoft YaHei", sans-serif;
  6341. font-weight:400;
  6342. font-style:normal;
  6343. font-size:14px;
  6344. color:rgba(0, 0, 0, 0.6470588235294118);
  6345. line-height:21px;
  6346. }
  6347. #u17168 {
  6348. border-width:0px;
  6349. position:absolute;
  6350. left:1913px;
  6351. top:1459px;
  6352. width:66px;
  6353. height:30px;
  6354. display:flex;
  6355. transition:none;
  6356. transform-origin:50% 50%;
  6357. font-family:"Microsoft YaHei", sans-serif;
  6358. font-weight:400;
  6359. font-style:normal;
  6360. font-size:14px;
  6361. color:rgba(0, 0, 0, 0.6470588235294118);
  6362. line-height:21px;
  6363. }
  6364. #u17168 .text {
  6365. position:absolute;
  6366. align-self:center;
  6367. padding:2px 16px 2px 16px;
  6368. box-sizing:border-box;
  6369. width:100%;
  6370. }
  6371. #u17168_text {
  6372. border-width:0px;
  6373. white-space:nowrap;
  6374. text-transform:none;
  6375. }
  6376. #u17169 {
  6377. border-width:0px;
  6378. position:absolute;
  6379. left:1750px;
  6380. top:1343px;
  6381. width:20px;
  6382. height:20px;
  6383. display:flex;
  6384. transition:none;
  6385. }
  6386. #u17169 .text {
  6387. position:absolute;
  6388. align-self:center;
  6389. padding:2px 2px 2px 2px;
  6390. box-sizing:border-box;
  6391. width:100%;
  6392. }
  6393. #u17169_img {
  6394. border-width:0px;
  6395. position:absolute;
  6396. left:0px;
  6397. top:0px;
  6398. width:20px;
  6399. height:20px;
  6400. }
  6401. #u17169_text {
  6402. border-width:0px;
  6403. word-wrap:break-word;
  6404. text-transform:none;
  6405. visibility:hidden;
  6406. }