styles.css 108 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650
  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. #u16478 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u16479_div {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:1000px;
  33. height:1201px;
  34. background:inherit;
  35. background-color:rgba(242, 242, 242, 1);
  36. box-sizing:border-box;
  37. border-width:1px;
  38. border-style:solid;
  39. border-color:rgba(215, 215, 215, 1);
  40. border-radius:0px;
  41. -moz-box-shadow:none;
  42. -webkit-box-shadow:none;
  43. box-shadow:none;
  44. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  45. font-weight:400;
  46. font-style:normal;
  47. font-size:14px;
  48. color:#AAAAAA;
  49. text-align:center;
  50. line-height:30px;
  51. }
  52. #u16479 {
  53. border-width:0px;
  54. position:absolute;
  55. left:79px;
  56. top:49px;
  57. width:1000px;
  58. height:1201px;
  59. display:flex;
  60. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  61. font-weight:400;
  62. font-style:normal;
  63. font-size:14px;
  64. color:#AAAAAA;
  65. text-align:center;
  66. line-height:30px;
  67. }
  68. #u16479 .text {
  69. position:absolute;
  70. align-self:center;
  71. padding:5px 10px 5px 10px;
  72. box-sizing:border-box;
  73. width:100%;
  74. }
  75. #u16479_text {
  76. border-width:0px;
  77. word-wrap:break-word;
  78. text-transform:none;
  79. visibility:hidden;
  80. }
  81. #u16480_div {
  82. border-width:0px;
  83. position:absolute;
  84. left:0px;
  85. top:0px;
  86. width:1000px;
  87. height:1201px;
  88. background:inherit;
  89. background-color:rgba(255, 255, 255, 1);
  90. box-sizing:border-box;
  91. border-width:1px;
  92. border-style:solid;
  93. border-color:rgba(215, 215, 215, 1);
  94. border-radius:0px;
  95. -moz-box-shadow:none;
  96. -webkit-box-shadow:none;
  97. box-shadow:none;
  98. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  99. font-weight:400;
  100. font-style:normal;
  101. font-size:14px;
  102. color:#AAAAAA;
  103. text-align:center;
  104. line-height:30px;
  105. }
  106. #u16480 {
  107. border-width:0px;
  108. position:absolute;
  109. left:79px;
  110. top:49px;
  111. width:1000px;
  112. height:1201px;
  113. display:flex;
  114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  115. font-weight:400;
  116. font-style:normal;
  117. font-size:14px;
  118. color:#AAAAAA;
  119. text-align:center;
  120. line-height:30px;
  121. }
  122. #u16480 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:5px 10px 5px 10px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u16480_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u16481_div {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:119px;
  141. height:35px;
  142. background:inherit;
  143. background-color:rgba(255, 255, 255, 0);
  144. border:none;
  145. border-top:0px;
  146. border-right:0px;
  147. border-bottom:0px;
  148. border-radius:0px;
  149. border-top-left-radius:0px;
  150. border-bottom-left-radius:0px;
  151. -moz-box-shadow:none;
  152. -webkit-box-shadow:none;
  153. box-shadow:none;
  154. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  155. font-weight:500;
  156. font-style:normal;
  157. font-size:18px;
  158. }
  159. #u16481 {
  160. border-width:0px;
  161. position:absolute;
  162. left:99px;
  163. top:67px;
  164. width:119px;
  165. height:35px;
  166. display:flex;
  167. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  168. font-weight:500;
  169. font-style:normal;
  170. font-size:18px;
  171. }
  172. #u16481 .text {
  173. position:absolute;
  174. align-self:center;
  175. padding:5px 10px 5px 0px;
  176. box-sizing:border-box;
  177. width:100%;
  178. }
  179. #u16481_text {
  180. border-width:0px;
  181. white-space:nowrap;
  182. text-transform:none;
  183. }
  184. #u16482 {
  185. border-width:0px;
  186. position:absolute;
  187. left:0px;
  188. top:0px;
  189. width:0px;
  190. height:0px;
  191. }
  192. #u16483_div {
  193. border-width:0px;
  194. position:absolute;
  195. left:0px;
  196. top:0px;
  197. width:40px;
  198. height:40px;
  199. background:inherit;
  200. background-color:rgba(255, 255, 255, 0);
  201. border:none;
  202. border-top:0px;
  203. border-right:0px;
  204. border-bottom:0px;
  205. border-radius:0px;
  206. border-top-left-radius:0px;
  207. border-bottom-left-radius:0px;
  208. -moz-box-shadow:none;
  209. -webkit-box-shadow:none;
  210. box-shadow:none;
  211. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  212. font-weight:500;
  213. font-style:normal;
  214. font-size:14px;
  215. text-align:center;
  216. }
  217. #u16483 {
  218. border-width:0px;
  219. position:absolute;
  220. left:1039px;
  221. top:49px;
  222. width:40px;
  223. height:40px;
  224. display:flex;
  225. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  226. font-weight:500;
  227. font-style:normal;
  228. font-size:14px;
  229. text-align:center;
  230. }
  231. #u16483 .text {
  232. position:absolute;
  233. align-self:center;
  234. padding:5px 10px 5px 0px;
  235. box-sizing:border-box;
  236. width:100%;
  237. }
  238. #u16483_text {
  239. border-width:0px;
  240. word-wrap:break-word;
  241. text-transform:none;
  242. }
  243. #u16484_img {
  244. border-width:0px;
  245. position:absolute;
  246. left:0px;
  247. top:0px;
  248. width:13px;
  249. height:13px;
  250. }
  251. #u16484 {
  252. border-width:0px;
  253. position:absolute;
  254. left:1027px;
  255. top:65px;
  256. width:13px;
  257. height:13px;
  258. display:flex;
  259. font-size:14px;
  260. }
  261. #u16484 .text {
  262. position:absolute;
  263. align-self:center;
  264. padding:2px 2px 2px 2px;
  265. box-sizing:border-box;
  266. width:100%;
  267. }
  268. #u16484_text {
  269. border-width:0px;
  270. word-wrap:break-word;
  271. text-transform:none;
  272. visibility:hidden;
  273. }
  274. #u16485_div {
  275. border-width:0px;
  276. position:absolute;
  277. left:0px;
  278. top:0px;
  279. width:213px;
  280. height:43px;
  281. background:inherit;
  282. background-color:rgba(255, 255, 255, 0);
  283. border:none;
  284. border-top:0px;
  285. border-right:0px;
  286. border-bottom:0px;
  287. border-radius:0px;
  288. border-top-left-radius:0px;
  289. border-bottom-left-radius:0px;
  290. -moz-box-shadow:none;
  291. -webkit-box-shadow:none;
  292. box-shadow:none;
  293. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  294. font-weight:500;
  295. font-style:normal;
  296. font-size:24px;
  297. }
  298. #u16485 {
  299. border-width:0px;
  300. position:absolute;
  301. left:109px;
  302. top:118px;
  303. width:213px;
  304. height:43px;
  305. display:flex;
  306. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  307. font-weight:500;
  308. font-style:normal;
  309. font-size:24px;
  310. }
  311. #u16485 .text {
  312. position:absolute;
  313. align-self:center;
  314. padding:5px 10px 5px 0px;
  315. box-sizing:border-box;
  316. width:100%;
  317. }
  318. #u16485_text {
  319. border-width:0px;
  320. white-space:nowrap;
  321. text-transform:none;
  322. }
  323. #u16486_img {
  324. border-width:0px;
  325. position:absolute;
  326. left:0px;
  327. top:0px;
  328. width:108px;
  329. height:108px;
  330. }
  331. #u16486 {
  332. border-width:0px;
  333. position:absolute;
  334. left:929px;
  335. top:119px;
  336. width:108px;
  337. height:108px;
  338. display:flex;
  339. -webkit-transform:rotate(315deg);
  340. -moz-transform:rotate(315deg);
  341. -ms-transform:rotate(315deg);
  342. transform:rotate(315deg);
  343. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  344. font-weight:400;
  345. font-style:normal;
  346. font-size:28px;
  347. color:#F59A23;
  348. }
  349. #u16486 .text {
  350. position:absolute;
  351. align-self:center;
  352. padding:2px 2px 2px 2px;
  353. box-sizing:border-box;
  354. width:100%;
  355. }
  356. #u16486_text {
  357. border-width:0px;
  358. word-wrap:break-word;
  359. text-transform:none;
  360. }
  361. #u16487 {
  362. border-width:0px;
  363. position:absolute;
  364. left:0px;
  365. top:0px;
  366. width:0px;
  367. height:0px;
  368. }
  369. #u16488_div {
  370. border-width:0px;
  371. position:absolute;
  372. left:0px;
  373. top:0px;
  374. width:1000px;
  375. height:60px;
  376. background:inherit;
  377. background-color:rgba(255, 255, 255, 1);
  378. box-sizing:border-box;
  379. border-width:1px;
  380. border-style:solid;
  381. border-color:rgba(215, 215, 215, 1);
  382. border-radius:0px;
  383. -moz-box-shadow:none;
  384. -webkit-box-shadow:none;
  385. box-shadow:none;
  386. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  387. font-weight:400;
  388. font-style:normal;
  389. font-size:14px;
  390. color:#AAAAAA;
  391. text-align:center;
  392. line-height:30px;
  393. }
  394. #u16488 {
  395. border-width:0px;
  396. position:absolute;
  397. left:79px;
  398. top:1190px;
  399. width:1000px;
  400. height:60px;
  401. display:flex;
  402. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  403. font-weight:400;
  404. font-style:normal;
  405. font-size:14px;
  406. color:#AAAAAA;
  407. text-align:center;
  408. line-height:30px;
  409. }
  410. #u16488 .text {
  411. position:absolute;
  412. align-self:center;
  413. padding:5px 10px 5px 10px;
  414. box-sizing:border-box;
  415. width:100%;
  416. }
  417. #u16488_text {
  418. border-width:0px;
  419. word-wrap:break-word;
  420. text-transform:none;
  421. visibility:hidden;
  422. }
  423. #u16489_div {
  424. border-width:0px;
  425. position:absolute;
  426. left:0px;
  427. top:0px;
  428. width:80px;
  429. height:30px;
  430. background:inherit;
  431. background-color:rgba(24, 144, 255, 1);
  432. border:none;
  433. border-radius:4px;
  434. -moz-box-shadow:none;
  435. -webkit-box-shadow:none;
  436. box-shadow:none;
  437. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  438. font-weight:400;
  439. font-style:normal;
  440. font-size:14px;
  441. color:#FFFFFF;
  442. }
  443. #u16489 {
  444. border-width:0px;
  445. position:absolute;
  446. left:973px;
  447. top:1205px;
  448. width:80px;
  449. height:30px;
  450. display:flex;
  451. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  452. font-weight:400;
  453. font-style:normal;
  454. font-size:14px;
  455. color:#FFFFFF;
  456. }
  457. #u16489 .text {
  458. position:absolute;
  459. align-self:center;
  460. padding:2px 2px 2px 2px;
  461. box-sizing:border-box;
  462. width:100%;
  463. }
  464. #u16489_text {
  465. border-width:0px;
  466. word-wrap:break-word;
  467. text-transform:none;
  468. }
  469. #u16490_div {
  470. border-width:0px;
  471. position:absolute;
  472. left:0px;
  473. top:0px;
  474. width:80px;
  475. height:30px;
  476. background:inherit;
  477. background-color:rgba(245, 154, 35, 1);
  478. border:none;
  479. border-radius:4px;
  480. -moz-box-shadow:none;
  481. -webkit-box-shadow:none;
  482. box-shadow:none;
  483. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  484. font-weight:400;
  485. font-style:normal;
  486. font-size:14px;
  487. color:#FFFFFF;
  488. }
  489. #u16490 {
  490. border-width:0px;
  491. position:absolute;
  492. left:883px;
  493. top:1205px;
  494. width:80px;
  495. height:30px;
  496. display:flex;
  497. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  498. font-weight:400;
  499. font-style:normal;
  500. font-size:14px;
  501. color:#FFFFFF;
  502. }
  503. #u16490 .text {
  504. position:absolute;
  505. align-self:center;
  506. padding:2px 2px 2px 2px;
  507. box-sizing:border-box;
  508. width:100%;
  509. }
  510. #u16490_text {
  511. border-width:0px;
  512. word-wrap:break-word;
  513. text-transform:none;
  514. }
  515. #u16491_div {
  516. border-width:0px;
  517. position:absolute;
  518. left:0px;
  519. top:0px;
  520. width:80px;
  521. height:30px;
  522. background:inherit;
  523. background-color:rgba(255, 255, 255, 1);
  524. box-sizing:border-box;
  525. border-width:1px;
  526. border-style:solid;
  527. border-color:rgba(170, 170, 170, 1);
  528. border-radius:4px;
  529. -moz-box-shadow:none;
  530. -webkit-box-shadow:none;
  531. box-shadow:none;
  532. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  533. font-weight:400;
  534. font-style:normal;
  535. font-size:14px;
  536. }
  537. #u16491 {
  538. border-width:0px;
  539. position:absolute;
  540. left:793px;
  541. top:1205px;
  542. width:80px;
  543. height:30px;
  544. display:flex;
  545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  546. font-weight:400;
  547. font-style:normal;
  548. font-size:14px;
  549. }
  550. #u16491 .text {
  551. position:absolute;
  552. align-self:center;
  553. padding:2px 2px 2px 2px;
  554. box-sizing:border-box;
  555. width:100%;
  556. }
  557. #u16491_text {
  558. border-width:0px;
  559. word-wrap:break-word;
  560. text-transform:none;
  561. }
  562. #u16492_div {
  563. border-width:0px;
  564. position:absolute;
  565. left:0px;
  566. top:0px;
  567. width:80px;
  568. height:30px;
  569. background:inherit;
  570. background-color:rgba(255, 255, 255, 0);
  571. border:none;
  572. border-left:0px;
  573. border-top:0px;
  574. border-right:0px;
  575. border-radius:0px;
  576. border-bottom-right-radius:0px;
  577. border-bottom-left-radius:0px;
  578. -moz-box-shadow:none;
  579. -webkit-box-shadow:none;
  580. box-shadow:none;
  581. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  582. font-weight:400;
  583. font-style:normal;
  584. font-size:14px;
  585. color:#7F7F7F;
  586. line-height:30px;
  587. }
  588. #u16492 {
  589. border-width:0px;
  590. position:absolute;
  591. left:109px;
  592. top:181px;
  593. width:80px;
  594. height:30px;
  595. display:flex;
  596. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  597. font-weight:400;
  598. font-style:normal;
  599. font-size:14px;
  600. color:#7F7F7F;
  601. line-height:30px;
  602. }
  603. #u16492 .text {
  604. position:absolute;
  605. align-self:flex-start;
  606. padding:0px 0px 0px 0px;
  607. box-sizing:border-box;
  608. width:100%;
  609. }
  610. #u16492_text {
  611. border-width:0px;
  612. word-wrap:break-word;
  613. text-transform:none;
  614. }
  615. #u16493_div {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:85px;
  621. height:30px;
  622. background:inherit;
  623. background-color:rgba(255, 255, 255, 0);
  624. border:none;
  625. border-left:0px;
  626. border-top:0px;
  627. border-right:0px;
  628. border-radius:0px;
  629. border-bottom-right-radius:0px;
  630. border-bottom-left-radius:0px;
  631. -moz-box-shadow:none;
  632. -webkit-box-shadow:none;
  633. box-shadow:none;
  634. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  635. font-weight:400;
  636. font-style:normal;
  637. font-size:14px;
  638. line-height:30px;
  639. }
  640. #u16493 {
  641. border-width:0px;
  642. position:absolute;
  643. left:189px;
  644. top:181px;
  645. width:85px;
  646. height:30px;
  647. display:flex;
  648. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  649. font-weight:400;
  650. font-style:normal;
  651. font-size:14px;
  652. line-height:30px;
  653. }
  654. #u16493 .text {
  655. position:absolute;
  656. align-self:flex-start;
  657. padding:0px 0px 0px 0px;
  658. box-sizing:border-box;
  659. width:100%;
  660. }
  661. #u16493_text {
  662. border-width:0px;
  663. white-space:nowrap;
  664. text-transform:none;
  665. }
  666. #u16494_div {
  667. border-width:0px;
  668. position:absolute;
  669. left:0px;
  670. top:0px;
  671. width:80px;
  672. height:30px;
  673. background:inherit;
  674. background-color:rgba(255, 255, 255, 0);
  675. border:none;
  676. border-left:0px;
  677. border-top:0px;
  678. border-right:0px;
  679. border-radius:0px;
  680. border-bottom-right-radius:0px;
  681. border-bottom-left-radius:0px;
  682. -moz-box-shadow:none;
  683. -webkit-box-shadow:none;
  684. box-shadow:none;
  685. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  686. font-weight:400;
  687. font-style:normal;
  688. font-size:14px;
  689. color:#7F7F7F;
  690. line-height:30px;
  691. }
  692. #u16494 {
  693. border-width:0px;
  694. position:absolute;
  695. left:109px;
  696. top:396px;
  697. width:80px;
  698. height:30px;
  699. display:flex;
  700. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  701. font-weight:400;
  702. font-style:normal;
  703. font-size:14px;
  704. color:#7F7F7F;
  705. line-height:30px;
  706. }
  707. #u16494 .text {
  708. position:absolute;
  709. align-self:flex-start;
  710. padding:0px 0px 0px 0px;
  711. box-sizing:border-box;
  712. width:100%;
  713. }
  714. #u16494_text {
  715. border-width:0px;
  716. word-wrap:break-word;
  717. text-transform:none;
  718. }
  719. #u16495_div {
  720. border-width:0px;
  721. position:absolute;
  722. left:0px;
  723. top:0px;
  724. width:71px;
  725. height:30px;
  726. background:inherit;
  727. background-color:rgba(255, 255, 255, 0);
  728. border:none;
  729. border-left:0px;
  730. border-top:0px;
  731. border-right:0px;
  732. border-radius:0px;
  733. border-bottom-right-radius:0px;
  734. border-bottom-left-radius:0px;
  735. -moz-box-shadow:none;
  736. -webkit-box-shadow:none;
  737. box-shadow:none;
  738. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  739. font-weight:400;
  740. font-style:normal;
  741. font-size:14px;
  742. line-height:30px;
  743. }
  744. #u16495 {
  745. border-width:0px;
  746. position:absolute;
  747. left:189px;
  748. top:396px;
  749. width:71px;
  750. height:30px;
  751. display:flex;
  752. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  753. font-weight:400;
  754. font-style:normal;
  755. font-size:14px;
  756. line-height:30px;
  757. }
  758. #u16495 .text {
  759. position:absolute;
  760. align-self:flex-start;
  761. padding:0px 0px 0px 0px;
  762. box-sizing:border-box;
  763. width:100%;
  764. }
  765. #u16495_text {
  766. border-width:0px;
  767. white-space:nowrap;
  768. text-transform:none;
  769. }
  770. #u16496_div {
  771. border-width:0px;
  772. position:absolute;
  773. left:0px;
  774. top:0px;
  775. width:40px;
  776. height:17px;
  777. background:inherit;
  778. background-color:rgba(85, 85, 85, 1);
  779. border:none;
  780. border-radius:20px;
  781. -moz-box-shadow:none;
  782. -webkit-box-shadow:none;
  783. box-shadow:none;
  784. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  785. font-weight:400;
  786. font-style:normal;
  787. font-size:12px;
  788. color:#FFFFFF;
  789. text-align:center;
  790. }
  791. #u16496 {
  792. border-width:0px;
  793. position:absolute;
  794. left:332px;
  795. top:131px;
  796. width:40px;
  797. height:17px;
  798. display:flex;
  799. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  800. font-weight:400;
  801. font-style:normal;
  802. font-size:12px;
  803. color:#FFFFFF;
  804. text-align:center;
  805. }
  806. #u16496 .text {
  807. position:absolute;
  808. align-self:flex-start;
  809. padding:0px 0px 0px 0px;
  810. box-sizing:border-box;
  811. width:100%;
  812. }
  813. #u16496_text {
  814. border-width:0px;
  815. word-wrap:break-word;
  816. text-transform:none;
  817. }
  818. #u16497_div {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:43px;
  824. height:30px;
  825. background:inherit;
  826. background-color:rgba(255, 255, 255, 0);
  827. border:none;
  828. border-left:0px;
  829. border-top:0px;
  830. border-right:0px;
  831. border-radius:0px;
  832. border-bottom-right-radius:0px;
  833. border-bottom-left-radius:0px;
  834. -moz-box-shadow:none;
  835. -webkit-box-shadow:none;
  836. box-shadow:none;
  837. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  838. font-weight:400;
  839. font-style:normal;
  840. font-size:14px;
  841. color:#7F7F7F;
  842. line-height:30px;
  843. }
  844. #u16497 {
  845. border-width:0px;
  846. position:absolute;
  847. left:109px;
  848. top:221px;
  849. width:43px;
  850. height:30px;
  851. display:flex;
  852. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  853. font-weight:400;
  854. font-style:normal;
  855. font-size:14px;
  856. color:#7F7F7F;
  857. line-height:30px;
  858. }
  859. #u16497 .text {
  860. position:absolute;
  861. align-self:flex-start;
  862. padding:0px 0px 0px 0px;
  863. box-sizing:border-box;
  864. width:100%;
  865. }
  866. #u16497_text {
  867. border-width:0px;
  868. white-space:nowrap;
  869. text-transform:none;
  870. }
  871. #u16498_div {
  872. border-width:0px;
  873. position:absolute;
  874. left:0px;
  875. top:0px;
  876. width:32px;
  877. height:30px;
  878. background:inherit;
  879. background-color:rgba(255, 255, 255, 0);
  880. border:none;
  881. border-left:0px;
  882. border-top:0px;
  883. border-right:0px;
  884. border-radius:0px;
  885. border-bottom-right-radius:0px;
  886. border-bottom-left-radius:0px;
  887. -moz-box-shadow:none;
  888. -webkit-box-shadow:none;
  889. box-shadow:none;
  890. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  891. font-weight:400;
  892. font-style:normal;
  893. font-size:14px;
  894. line-height:30px;
  895. }
  896. #u16498 {
  897. border-width:0px;
  898. position:absolute;
  899. left:189px;
  900. top:221px;
  901. width:32px;
  902. height:30px;
  903. display:flex;
  904. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  905. font-weight:400;
  906. font-style:normal;
  907. font-size:14px;
  908. line-height:30px;
  909. }
  910. #u16498 .text {
  911. position:absolute;
  912. align-self:flex-start;
  913. padding:0px 0px 0px 0px;
  914. box-sizing:border-box;
  915. width:100%;
  916. }
  917. #u16498_text {
  918. border-width:0px;
  919. white-space:nowrap;
  920. text-transform:none;
  921. }
  922. #u16499_div {
  923. border-width:0px;
  924. position:absolute;
  925. left:0px;
  926. top:0px;
  927. width:80px;
  928. height:30px;
  929. background:inherit;
  930. background-color:rgba(255, 255, 255, 0);
  931. border:none;
  932. border-left:0px;
  933. border-top:0px;
  934. border-right:0px;
  935. border-radius:0px;
  936. border-bottom-right-radius:0px;
  937. border-bottom-left-radius:0px;
  938. -moz-box-shadow:none;
  939. -webkit-box-shadow:none;
  940. box-shadow:none;
  941. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  942. font-weight:400;
  943. font-style:normal;
  944. font-size:14px;
  945. color:#7F7F7F;
  946. line-height:30px;
  947. }
  948. #u16499 {
  949. border-width:0px;
  950. position:absolute;
  951. left:548px;
  952. top:181px;
  953. width:80px;
  954. height:30px;
  955. display:flex;
  956. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  957. font-weight:400;
  958. font-style:normal;
  959. font-size:14px;
  960. color:#7F7F7F;
  961. line-height:30px;
  962. }
  963. #u16499 .text {
  964. position:absolute;
  965. align-self:flex-start;
  966. padding:0px 0px 0px 0px;
  967. box-sizing:border-box;
  968. width:100%;
  969. }
  970. #u16499_text {
  971. border-width:0px;
  972. word-wrap:break-word;
  973. text-transform:none;
  974. }
  975. #u16500_div {
  976. border-width:0px;
  977. position:absolute;
  978. left:0px;
  979. top:0px;
  980. width:68px;
  981. height:30px;
  982. background:inherit;
  983. background-color:rgba(255, 255, 255, 0);
  984. border:none;
  985. border-left:0px;
  986. border-top:0px;
  987. border-right:0px;
  988. border-radius:0px;
  989. border-bottom-right-radius:0px;
  990. border-bottom-left-radius:0px;
  991. -moz-box-shadow:none;
  992. -webkit-box-shadow:none;
  993. box-shadow:none;
  994. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  995. font-weight:400;
  996. font-style:normal;
  997. font-size:14px;
  998. line-height:30px;
  999. }
  1000. #u16500 {
  1001. border-width:0px;
  1002. position:absolute;
  1003. left:628px;
  1004. top:181px;
  1005. width:68px;
  1006. height:30px;
  1007. display:flex;
  1008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1009. font-weight:400;
  1010. font-style:normal;
  1011. font-size:14px;
  1012. line-height:30px;
  1013. }
  1014. #u16500 .text {
  1015. position:absolute;
  1016. align-self:flex-start;
  1017. padding:0px 0px 0px 0px;
  1018. box-sizing:border-box;
  1019. width:100%;
  1020. }
  1021. #u16500_text {
  1022. border-width:0px;
  1023. white-space:nowrap;
  1024. text-transform:none;
  1025. }
  1026. #u16501_div {
  1027. border-width:0px;
  1028. position:absolute;
  1029. left:0px;
  1030. top:0px;
  1031. width:71px;
  1032. height:30px;
  1033. background:inherit;
  1034. background-color:rgba(255, 255, 255, 0);
  1035. border:none;
  1036. border-left:0px;
  1037. border-top:0px;
  1038. border-right:0px;
  1039. border-radius:0px;
  1040. border-bottom-right-radius:0px;
  1041. border-bottom-left-radius:0px;
  1042. -moz-box-shadow:none;
  1043. -webkit-box-shadow:none;
  1044. box-shadow:none;
  1045. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1046. font-weight:400;
  1047. font-style:normal;
  1048. font-size:14px;
  1049. color:#7F7F7F;
  1050. line-height:30px;
  1051. }
  1052. #u16501 {
  1053. border-width:0px;
  1054. position:absolute;
  1055. left:547px;
  1056. top:276px;
  1057. width:71px;
  1058. height:30px;
  1059. display:flex;
  1060. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1061. font-weight:400;
  1062. font-style:normal;
  1063. font-size:14px;
  1064. color:#7F7F7F;
  1065. line-height:30px;
  1066. }
  1067. #u16501 .text {
  1068. position:absolute;
  1069. align-self:flex-start;
  1070. padding:0px 0px 0px 0px;
  1071. box-sizing:border-box;
  1072. width:100%;
  1073. }
  1074. #u16501_text {
  1075. border-width:0px;
  1076. white-space:nowrap;
  1077. text-transform:none;
  1078. }
  1079. #u16502_div {
  1080. border-width:0px;
  1081. position:absolute;
  1082. left:0px;
  1083. top:0px;
  1084. width:29px;
  1085. height:30px;
  1086. background:inherit;
  1087. background-color:rgba(255, 255, 255, 0);
  1088. border:none;
  1089. border-left:0px;
  1090. border-top:0px;
  1091. border-right:0px;
  1092. border-radius:0px;
  1093. border-bottom-right-radius:0px;
  1094. border-bottom-left-radius:0px;
  1095. -moz-box-shadow:none;
  1096. -webkit-box-shadow:none;
  1097. box-shadow:none;
  1098. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1099. font-weight:400;
  1100. font-style:normal;
  1101. font-size:14px;
  1102. line-height:30px;
  1103. }
  1104. #u16502 {
  1105. border-width:0px;
  1106. position:absolute;
  1107. left:627px;
  1108. top:276px;
  1109. width:29px;
  1110. height:30px;
  1111. display:flex;
  1112. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1113. font-weight:400;
  1114. font-style:normal;
  1115. font-size:14px;
  1116. line-height:30px;
  1117. }
  1118. #u16502 .text {
  1119. position:absolute;
  1120. align-self:flex-start;
  1121. padding:0px 0px 0px 0px;
  1122. box-sizing:border-box;
  1123. width:100%;
  1124. }
  1125. #u16502_text {
  1126. border-width:0px;
  1127. white-space:nowrap;
  1128. text-transform:none;
  1129. }
  1130. #u16503_div {
  1131. border-width:0px;
  1132. position:absolute;
  1133. left:0px;
  1134. top:0px;
  1135. width:43px;
  1136. height:30px;
  1137. background:inherit;
  1138. background-color:rgba(255, 255, 255, 0);
  1139. border:none;
  1140. border-left:0px;
  1141. border-top:0px;
  1142. border-right:0px;
  1143. border-radius:0px;
  1144. border-bottom-right-radius:0px;
  1145. border-bottom-left-radius:0px;
  1146. -moz-box-shadow:none;
  1147. -webkit-box-shadow:none;
  1148. box-shadow:none;
  1149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1150. font-weight:400;
  1151. font-style:normal;
  1152. font-size:14px;
  1153. color:#7F7F7F;
  1154. line-height:30px;
  1155. }
  1156. #u16503 {
  1157. border-width:0px;
  1158. position:absolute;
  1159. left:109px;
  1160. top:316px;
  1161. width:43px;
  1162. height:30px;
  1163. display:flex;
  1164. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1165. font-weight:400;
  1166. font-style:normal;
  1167. font-size:14px;
  1168. color:#7F7F7F;
  1169. line-height:30px;
  1170. }
  1171. #u16503 .text {
  1172. position:absolute;
  1173. align-self:flex-start;
  1174. padding:0px 0px 0px 0px;
  1175. box-sizing:border-box;
  1176. width:100%;
  1177. }
  1178. #u16503_text {
  1179. border-width:0px;
  1180. white-space:nowrap;
  1181. text-transform:none;
  1182. }
  1183. #u16504_div {
  1184. border-width:0px;
  1185. position:absolute;
  1186. left:0px;
  1187. top:0px;
  1188. width:15px;
  1189. height:30px;
  1190. background:inherit;
  1191. background-color:rgba(255, 255, 255, 0);
  1192. border:none;
  1193. border-left:0px;
  1194. border-top:0px;
  1195. border-right:0px;
  1196. border-radius:0px;
  1197. border-bottom-right-radius:0px;
  1198. border-bottom-left-radius:0px;
  1199. -moz-box-shadow:none;
  1200. -webkit-box-shadow:none;
  1201. box-shadow:none;
  1202. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1203. font-weight:400;
  1204. font-style:normal;
  1205. font-size:14px;
  1206. line-height:30px;
  1207. }
  1208. #u16504 {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:189px;
  1212. top:316px;
  1213. width:15px;
  1214. height:30px;
  1215. display:flex;
  1216. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1217. font-weight:400;
  1218. font-style:normal;
  1219. font-size:14px;
  1220. line-height:30px;
  1221. }
  1222. #u16504 .text {
  1223. position:absolute;
  1224. align-self:flex-start;
  1225. padding:0px 0px 0px 0px;
  1226. box-sizing:border-box;
  1227. width:100%;
  1228. }
  1229. #u16504_text {
  1230. border-width:0px;
  1231. white-space:nowrap;
  1232. text-transform:none;
  1233. }
  1234. #u16505_div {
  1235. border-width:0px;
  1236. position:absolute;
  1237. left:0px;
  1238. top:0px;
  1239. width:71px;
  1240. height:30px;
  1241. background:inherit;
  1242. background-color:rgba(255, 255, 255, 0);
  1243. border:none;
  1244. border-left:0px;
  1245. border-top:0px;
  1246. border-right:0px;
  1247. border-radius:0px;
  1248. border-bottom-right-radius:0px;
  1249. border-bottom-left-radius:0px;
  1250. -moz-box-shadow:none;
  1251. -webkit-box-shadow:none;
  1252. box-shadow:none;
  1253. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1254. font-weight:400;
  1255. font-style:normal;
  1256. font-size:14px;
  1257. color:#7F7F7F;
  1258. line-height:30px;
  1259. }
  1260. #u16505 {
  1261. border-width:0px;
  1262. position:absolute;
  1263. left:109px;
  1264. top:356px;
  1265. width:71px;
  1266. height:30px;
  1267. display:flex;
  1268. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1269. font-weight:400;
  1270. font-style:normal;
  1271. font-size:14px;
  1272. color:#7F7F7F;
  1273. line-height:30px;
  1274. }
  1275. #u16505 .text {
  1276. position:absolute;
  1277. align-self:flex-start;
  1278. padding:0px 0px 0px 0px;
  1279. box-sizing:border-box;
  1280. width:100%;
  1281. }
  1282. #u16505_text {
  1283. border-width:0px;
  1284. white-space:nowrap;
  1285. text-transform:none;
  1286. }
  1287. #u16506_div {
  1288. border-width:0px;
  1289. position:absolute;
  1290. left:0px;
  1291. top:0px;
  1292. width:43px;
  1293. height:30px;
  1294. background:inherit;
  1295. background-color:rgba(255, 255, 255, 0);
  1296. border:none;
  1297. border-left:0px;
  1298. border-top:0px;
  1299. border-right:0px;
  1300. border-radius:0px;
  1301. border-bottom-right-radius:0px;
  1302. border-bottom-left-radius:0px;
  1303. -moz-box-shadow:none;
  1304. -webkit-box-shadow:none;
  1305. box-shadow:none;
  1306. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1307. font-weight:400;
  1308. font-style:normal;
  1309. font-size:14px;
  1310. line-height:30px;
  1311. }
  1312. #u16506 {
  1313. border-width:0px;
  1314. position:absolute;
  1315. left:189px;
  1316. top:356px;
  1317. width:43px;
  1318. height:30px;
  1319. display:flex;
  1320. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1321. font-weight:400;
  1322. font-style:normal;
  1323. font-size:14px;
  1324. line-height:30px;
  1325. }
  1326. #u16506 .text {
  1327. position:absolute;
  1328. align-self:flex-start;
  1329. padding:0px 0px 0px 0px;
  1330. box-sizing:border-box;
  1331. width:100%;
  1332. }
  1333. #u16506_text {
  1334. border-width:0px;
  1335. white-space:nowrap;
  1336. text-transform:none;
  1337. }
  1338. #u16507_div {
  1339. border-width:0px;
  1340. position:absolute;
  1341. left:0px;
  1342. top:0px;
  1343. width:71px;
  1344. height:30px;
  1345. background:inherit;
  1346. background-color:rgba(255, 255, 255, 0);
  1347. border:none;
  1348. border-left:0px;
  1349. border-top:0px;
  1350. border-right:0px;
  1351. border-radius:0px;
  1352. border-bottom-right-radius:0px;
  1353. border-bottom-left-radius:0px;
  1354. -moz-box-shadow:none;
  1355. -webkit-box-shadow:none;
  1356. box-shadow:none;
  1357. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1358. font-weight:400;
  1359. font-style:normal;
  1360. font-size:14px;
  1361. color:#7F7F7F;
  1362. line-height:30px;
  1363. }
  1364. #u16507 {
  1365. border-width:0px;
  1366. position:absolute;
  1367. left:547px;
  1368. top:356px;
  1369. width:71px;
  1370. height:30px;
  1371. display:flex;
  1372. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1373. font-weight:400;
  1374. font-style:normal;
  1375. font-size:14px;
  1376. color:#7F7F7F;
  1377. line-height:30px;
  1378. }
  1379. #u16507 .text {
  1380. position:absolute;
  1381. align-self:flex-start;
  1382. padding:0px 0px 0px 0px;
  1383. box-sizing:border-box;
  1384. width:100%;
  1385. }
  1386. #u16507_text {
  1387. border-width:0px;
  1388. white-space:nowrap;
  1389. text-transform:none;
  1390. }
  1391. #u16508_div {
  1392. border-width:0px;
  1393. position:absolute;
  1394. left:0px;
  1395. top:0px;
  1396. width:57px;
  1397. height:30px;
  1398. background:inherit;
  1399. background-color:rgba(255, 255, 255, 0);
  1400. border:none;
  1401. border-left:0px;
  1402. border-top:0px;
  1403. border-right:0px;
  1404. border-radius:0px;
  1405. border-bottom-right-radius:0px;
  1406. border-bottom-left-radius:0px;
  1407. -moz-box-shadow:none;
  1408. -webkit-box-shadow:none;
  1409. box-shadow:none;
  1410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1411. font-weight:400;
  1412. font-style:normal;
  1413. font-size:14px;
  1414. line-height:30px;
  1415. }
  1416. #u16508 {
  1417. border-width:0px;
  1418. position:absolute;
  1419. left:627px;
  1420. top:356px;
  1421. width:57px;
  1422. height:30px;
  1423. display:flex;
  1424. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1425. font-weight:400;
  1426. font-style:normal;
  1427. font-size:14px;
  1428. line-height:30px;
  1429. }
  1430. #u16508 .text {
  1431. position:absolute;
  1432. align-self:flex-start;
  1433. padding:0px 0px 0px 0px;
  1434. box-sizing:border-box;
  1435. width:100%;
  1436. }
  1437. #u16508_text {
  1438. border-width:0px;
  1439. white-space:nowrap;
  1440. text-transform:none;
  1441. }
  1442. #u16509_div {
  1443. border-width:0px;
  1444. position:absolute;
  1445. left:0px;
  1446. top:0px;
  1447. width:71px;
  1448. height:30px;
  1449. background:inherit;
  1450. background-color:rgba(255, 255, 255, 0);
  1451. border:none;
  1452. border-left:0px;
  1453. border-top:0px;
  1454. border-right:0px;
  1455. border-radius:0px;
  1456. border-bottom-right-radius:0px;
  1457. border-bottom-left-radius:0px;
  1458. -moz-box-shadow:none;
  1459. -webkit-box-shadow:none;
  1460. box-shadow:none;
  1461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1462. font-weight:400;
  1463. font-style:normal;
  1464. font-size:14px;
  1465. color:#7F7F7F;
  1466. line-height:30px;
  1467. }
  1468. #u16509 {
  1469. border-width:0px;
  1470. position:absolute;
  1471. left:547px;
  1472. top:316px;
  1473. width:71px;
  1474. height:30px;
  1475. display:flex;
  1476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1477. font-weight:400;
  1478. font-style:normal;
  1479. font-size:14px;
  1480. color:#7F7F7F;
  1481. line-height:30px;
  1482. }
  1483. #u16509 .text {
  1484. position:absolute;
  1485. align-self:flex-start;
  1486. padding:0px 0px 0px 0px;
  1487. box-sizing:border-box;
  1488. width:100%;
  1489. }
  1490. #u16509_text {
  1491. border-width:0px;
  1492. white-space:nowrap;
  1493. text-transform:none;
  1494. }
  1495. #u16510_div {
  1496. border-width:0px;
  1497. position:absolute;
  1498. left:0px;
  1499. top:0px;
  1500. width:82px;
  1501. height:30px;
  1502. background:inherit;
  1503. background-color:rgba(255, 255, 255, 0);
  1504. border:none;
  1505. border-left:0px;
  1506. border-top:0px;
  1507. border-right:0px;
  1508. border-radius:0px;
  1509. border-bottom-right-radius:0px;
  1510. border-bottom-left-radius:0px;
  1511. -moz-box-shadow:none;
  1512. -webkit-box-shadow:none;
  1513. box-shadow:none;
  1514. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1515. font-weight:400;
  1516. font-style:normal;
  1517. font-size:14px;
  1518. line-height:30px;
  1519. }
  1520. #u16510 {
  1521. border-width:0px;
  1522. position:absolute;
  1523. left:627px;
  1524. top:316px;
  1525. width:82px;
  1526. height:30px;
  1527. display:flex;
  1528. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1529. font-weight:400;
  1530. font-style:normal;
  1531. font-size:14px;
  1532. line-height:30px;
  1533. }
  1534. #u16510 .text {
  1535. position:absolute;
  1536. align-self:flex-start;
  1537. padding:0px 0px 0px 0px;
  1538. box-sizing:border-box;
  1539. width:100%;
  1540. }
  1541. #u16510_text {
  1542. border-width:0px;
  1543. white-space:nowrap;
  1544. text-transform:none;
  1545. }
  1546. #u16511_div {
  1547. border-width:0px;
  1548. position:absolute;
  1549. left:0px;
  1550. top:0px;
  1551. width:71px;
  1552. height:30px;
  1553. background:inherit;
  1554. background-color:rgba(255, 255, 255, 0);
  1555. border:none;
  1556. border-left:0px;
  1557. border-top:0px;
  1558. border-right:0px;
  1559. border-radius:0px;
  1560. border-bottom-right-radius:0px;
  1561. border-bottom-left-radius:0px;
  1562. -moz-box-shadow:none;
  1563. -webkit-box-shadow:none;
  1564. box-shadow:none;
  1565. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1566. font-weight:400;
  1567. font-style:normal;
  1568. font-size:14px;
  1569. color:#7F7F7F;
  1570. line-height:30px;
  1571. }
  1572. #u16511 {
  1573. border-width:0px;
  1574. position:absolute;
  1575. left:109px;
  1576. top:276px;
  1577. width:71px;
  1578. height:30px;
  1579. display:flex;
  1580. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1581. font-weight:400;
  1582. font-style:normal;
  1583. font-size:14px;
  1584. color:#7F7F7F;
  1585. line-height:30px;
  1586. }
  1587. #u16511 .text {
  1588. position:absolute;
  1589. align-self:flex-start;
  1590. padding:0px 0px 0px 0px;
  1591. box-sizing:border-box;
  1592. width:100%;
  1593. }
  1594. #u16511_text {
  1595. border-width:0px;
  1596. white-space:nowrap;
  1597. text-transform:none;
  1598. }
  1599. #u16512_div {
  1600. border-width:0px;
  1601. position:absolute;
  1602. left:0px;
  1603. top:0px;
  1604. width:57px;
  1605. height:30px;
  1606. background:inherit;
  1607. background-color:rgba(255, 255, 255, 0);
  1608. border:none;
  1609. border-left:0px;
  1610. border-top:0px;
  1611. border-right:0px;
  1612. border-radius:0px;
  1613. border-bottom-right-radius:0px;
  1614. border-bottom-left-radius:0px;
  1615. -moz-box-shadow:none;
  1616. -webkit-box-shadow:none;
  1617. box-shadow:none;
  1618. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1619. font-weight:400;
  1620. font-style:normal;
  1621. font-size:14px;
  1622. line-height:30px;
  1623. }
  1624. #u16512 {
  1625. border-width:0px;
  1626. position:absolute;
  1627. left:189px;
  1628. top:276px;
  1629. width:57px;
  1630. height:30px;
  1631. display:flex;
  1632. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1633. font-weight:400;
  1634. font-style:normal;
  1635. font-size:14px;
  1636. line-height:30px;
  1637. }
  1638. #u16512 .text {
  1639. position:absolute;
  1640. align-self:flex-start;
  1641. padding:0px 0px 0px 0px;
  1642. box-sizing:border-box;
  1643. width:100%;
  1644. }
  1645. #u16512_text {
  1646. border-width:0px;
  1647. white-space:nowrap;
  1648. text-transform:none;
  1649. }
  1650. #u16513_div {
  1651. border-width:0px;
  1652. position:absolute;
  1653. left:0px;
  1654. top:0px;
  1655. width:85px;
  1656. height:30px;
  1657. background:inherit;
  1658. background-color:rgba(255, 255, 255, 0);
  1659. border:none;
  1660. border-left:0px;
  1661. border-top:0px;
  1662. border-right:0px;
  1663. border-radius:0px;
  1664. border-bottom-right-radius:0px;
  1665. border-bottom-left-radius:0px;
  1666. -moz-box-shadow:none;
  1667. -webkit-box-shadow:none;
  1668. box-shadow:none;
  1669. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1670. font-weight:400;
  1671. font-style:normal;
  1672. font-size:14px;
  1673. color:#7F7F7F;
  1674. line-height:30px;
  1675. }
  1676. #u16513 {
  1677. border-width:0px;
  1678. position:absolute;
  1679. left:548px;
  1680. top:221px;
  1681. width:85px;
  1682. height:30px;
  1683. display:flex;
  1684. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1685. font-weight:400;
  1686. font-style:normal;
  1687. font-size:14px;
  1688. color:#7F7F7F;
  1689. line-height:30px;
  1690. }
  1691. #u16513 .text {
  1692. position:absolute;
  1693. align-self:flex-start;
  1694. padding:0px 0px 0px 0px;
  1695. box-sizing:border-box;
  1696. width:100%;
  1697. }
  1698. #u16513_text {
  1699. border-width:0px;
  1700. white-space:nowrap;
  1701. text-transform:none;
  1702. }
  1703. #u16514_div {
  1704. border-width:0px;
  1705. position:absolute;
  1706. left:0px;
  1707. top:0px;
  1708. width:197px;
  1709. height:30px;
  1710. background:inherit;
  1711. background-color:rgba(255, 255, 255, 0);
  1712. border:none;
  1713. border-left:0px;
  1714. border-top:0px;
  1715. border-right:0px;
  1716. border-radius:0px;
  1717. border-bottom-right-radius:0px;
  1718. border-bottom-left-radius:0px;
  1719. -moz-box-shadow:none;
  1720. -webkit-box-shadow:none;
  1721. box-shadow:none;
  1722. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1723. font-weight:400;
  1724. font-style:normal;
  1725. font-size:14px;
  1726. line-height:30px;
  1727. }
  1728. #u16514 {
  1729. border-width:0px;
  1730. position:absolute;
  1731. left:628px;
  1732. top:221px;
  1733. width:197px;
  1734. height:30px;
  1735. display:flex;
  1736. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1737. font-weight:400;
  1738. font-style:normal;
  1739. font-size:14px;
  1740. line-height:30px;
  1741. }
  1742. #u16514 .text {
  1743. position:absolute;
  1744. align-self:flex-start;
  1745. padding:0px 0px 0px 0px;
  1746. box-sizing:border-box;
  1747. width:100%;
  1748. }
  1749. #u16514_text {
  1750. border-width:0px;
  1751. white-space:nowrap;
  1752. text-transform:none;
  1753. }
  1754. #u16515_div {
  1755. border-width:0px;
  1756. position:absolute;
  1757. left:0px;
  1758. top:0px;
  1759. width:85px;
  1760. height:30px;
  1761. background:inherit;
  1762. background-color:rgba(255, 255, 255, 0);
  1763. border:none;
  1764. border-left:0px;
  1765. border-top:0px;
  1766. border-right:0px;
  1767. border-radius:0px;
  1768. border-bottom-right-radius:0px;
  1769. border-bottom-left-radius:0px;
  1770. -moz-box-shadow:none;
  1771. -webkit-box-shadow:none;
  1772. box-shadow:none;
  1773. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1774. font-weight:400;
  1775. font-style:normal;
  1776. font-size:14px;
  1777. color:#7F7F7F;
  1778. line-height:30px;
  1779. }
  1780. #u16515 {
  1781. border-width:0px;
  1782. position:absolute;
  1783. left:109px;
  1784. top:513px;
  1785. width:85px;
  1786. height:30px;
  1787. display:flex;
  1788. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1789. font-weight:400;
  1790. font-style:normal;
  1791. font-size:14px;
  1792. color:#7F7F7F;
  1793. line-height:30px;
  1794. }
  1795. #u16515 .text {
  1796. position:absolute;
  1797. align-self:flex-start;
  1798. padding:0px 0px 0px 0px;
  1799. box-sizing:border-box;
  1800. width:100%;
  1801. }
  1802. #u16515_text {
  1803. border-width:0px;
  1804. white-space:nowrap;
  1805. text-transform:none;
  1806. }
  1807. #u16516_img {
  1808. border-width:0px;
  1809. position:absolute;
  1810. left:0px;
  1811. top:0px;
  1812. width:153px;
  1813. height:107px;
  1814. }
  1815. #u16516 {
  1816. border-width:0px;
  1817. position:absolute;
  1818. left:109px;
  1819. top:543px;
  1820. width:153px;
  1821. height:107px;
  1822. display:flex;
  1823. }
  1824. #u16516 .text {
  1825. position:absolute;
  1826. align-self:center;
  1827. padding:2px 2px 2px 2px;
  1828. box-sizing:border-box;
  1829. width:100%;
  1830. }
  1831. #u16516_text {
  1832. border-width:0px;
  1833. word-wrap:break-word;
  1834. text-transform:none;
  1835. visibility:hidden;
  1836. }
  1837. #u16517_img {
  1838. border-width:0px;
  1839. position:absolute;
  1840. left:0px;
  1841. top:0px;
  1842. width:153px;
  1843. height:107px;
  1844. }
  1845. #u16517 {
  1846. border-width:0px;
  1847. position:absolute;
  1848. left:272px;
  1849. top:543px;
  1850. width:153px;
  1851. height:107px;
  1852. display:flex;
  1853. }
  1854. #u16517 .text {
  1855. position:absolute;
  1856. align-self:center;
  1857. padding:2px 2px 2px 2px;
  1858. box-sizing:border-box;
  1859. width:100%;
  1860. }
  1861. #u16517_text {
  1862. border-width:0px;
  1863. word-wrap:break-word;
  1864. text-transform:none;
  1865. visibility:hidden;
  1866. }
  1867. #u16518_div {
  1868. border-width:0px;
  1869. position:absolute;
  1870. left:0px;
  1871. top:0px;
  1872. width:71px;
  1873. height:30px;
  1874. background:inherit;
  1875. background-color:rgba(255, 255, 255, 0);
  1876. border:none;
  1877. border-left:0px;
  1878. border-top:0px;
  1879. border-right:0px;
  1880. border-radius:0px;
  1881. border-bottom-right-radius:0px;
  1882. border-bottom-left-radius:0px;
  1883. -moz-box-shadow:none;
  1884. -webkit-box-shadow:none;
  1885. box-shadow:none;
  1886. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1887. font-weight:400;
  1888. font-style:normal;
  1889. font-size:14px;
  1890. color:#7F7F7F;
  1891. line-height:30px;
  1892. }
  1893. #u16518 {
  1894. border-width:0px;
  1895. position:absolute;
  1896. left:523px;
  1897. top:513px;
  1898. width:71px;
  1899. height:30px;
  1900. display:flex;
  1901. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1902. font-weight:400;
  1903. font-style:normal;
  1904. font-size:14px;
  1905. color:#7F7F7F;
  1906. line-height:30px;
  1907. }
  1908. #u16518 .text {
  1909. position:absolute;
  1910. align-self:flex-start;
  1911. padding:0px 0px 0px 0px;
  1912. box-sizing:border-box;
  1913. width:100%;
  1914. }
  1915. #u16518_text {
  1916. border-width:0px;
  1917. white-space:nowrap;
  1918. text-transform:none;
  1919. }
  1920. #u16519_img {
  1921. border-width:0px;
  1922. position:absolute;
  1923. left:0px;
  1924. top:0px;
  1925. width:146px;
  1926. height:102px;
  1927. }
  1928. #u16519 {
  1929. border-width:0px;
  1930. position:absolute;
  1931. left:523px;
  1932. top:543px;
  1933. width:146px;
  1934. height:102px;
  1935. display:flex;
  1936. }
  1937. #u16519 .text {
  1938. position:absolute;
  1939. align-self:center;
  1940. padding:2px 2px 2px 2px;
  1941. box-sizing:border-box;
  1942. width:100%;
  1943. }
  1944. #u16519_text {
  1945. border-width:0px;
  1946. word-wrap:break-word;
  1947. text-transform:none;
  1948. visibility:hidden;
  1949. }
  1950. #u16520_img {
  1951. border-width:0px;
  1952. position:absolute;
  1953. left:0px;
  1954. top:0px;
  1955. width:146px;
  1956. height:102px;
  1957. }
  1958. #u16520 {
  1959. border-width:0px;
  1960. position:absolute;
  1961. left:679px;
  1962. top:543px;
  1963. width:146px;
  1964. height:102px;
  1965. display:flex;
  1966. }
  1967. #u16520 .text {
  1968. position:absolute;
  1969. align-self:center;
  1970. padding:2px 2px 2px 2px;
  1971. box-sizing:border-box;
  1972. width:100%;
  1973. }
  1974. #u16520_text {
  1975. border-width:0px;
  1976. word-wrap:break-word;
  1977. text-transform:none;
  1978. visibility:hidden;
  1979. }
  1980. #u16521_img {
  1981. border-width:0px;
  1982. position:absolute;
  1983. left:0px;
  1984. top:0px;
  1985. width:146px;
  1986. height:102px;
  1987. }
  1988. #u16521 {
  1989. border-width:0px;
  1990. position:absolute;
  1991. left:835px;
  1992. top:543px;
  1993. width:146px;
  1994. height:102px;
  1995. display:flex;
  1996. }
  1997. #u16521 .text {
  1998. position:absolute;
  1999. align-self:center;
  2000. padding:2px 2px 2px 2px;
  2001. box-sizing:border-box;
  2002. width:100%;
  2003. }
  2004. #u16521_text {
  2005. border-width:0px;
  2006. word-wrap:break-word;
  2007. text-transform:none;
  2008. visibility:hidden;
  2009. }
  2010. #u16522_div {
  2011. border-width:0px;
  2012. position:absolute;
  2013. left:0px;
  2014. top:0px;
  2015. width:71px;
  2016. height:30px;
  2017. background:inherit;
  2018. background-color:rgba(255, 255, 255, 0);
  2019. border:none;
  2020. border-left:0px;
  2021. border-top:0px;
  2022. border-right:0px;
  2023. border-radius:0px;
  2024. border-bottom-right-radius:0px;
  2025. border-bottom-left-radius:0px;
  2026. -moz-box-shadow:none;
  2027. -webkit-box-shadow:none;
  2028. box-shadow:none;
  2029. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2030. font-weight:400;
  2031. font-style:normal;
  2032. font-size:14px;
  2033. color:#7F7F7F;
  2034. line-height:30px;
  2035. }
  2036. #u16522 {
  2037. border-width:0px;
  2038. position:absolute;
  2039. left:109px;
  2040. top:436px;
  2041. width:71px;
  2042. height:30px;
  2043. display:flex;
  2044. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2045. font-weight:400;
  2046. font-style:normal;
  2047. font-size:14px;
  2048. color:#7F7F7F;
  2049. line-height:30px;
  2050. }
  2051. #u16522 .text {
  2052. position:absolute;
  2053. align-self:flex-start;
  2054. padding:0px 0px 0px 0px;
  2055. box-sizing:border-box;
  2056. width:100%;
  2057. }
  2058. #u16522_text {
  2059. border-width:0px;
  2060. white-space:nowrap;
  2061. text-transform:none;
  2062. }
  2063. #u16523_div {
  2064. border-width:0px;
  2065. position:absolute;
  2066. left:0px;
  2067. top:0px;
  2068. width:337px;
  2069. height:30px;
  2070. background:inherit;
  2071. background-color:rgba(255, 255, 255, 0);
  2072. border:none;
  2073. border-left:0px;
  2074. border-top:0px;
  2075. border-right:0px;
  2076. border-radius:0px;
  2077. border-bottom-right-radius:0px;
  2078. border-bottom-left-radius:0px;
  2079. -moz-box-shadow:none;
  2080. -webkit-box-shadow:none;
  2081. box-shadow:none;
  2082. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2083. font-weight:400;
  2084. font-style:normal;
  2085. font-size:14px;
  2086. line-height:30px;
  2087. }
  2088. #u16523 {
  2089. border-width:0px;
  2090. position:absolute;
  2091. left:189px;
  2092. top:436px;
  2093. width:337px;
  2094. height:30px;
  2095. display:flex;
  2096. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2097. font-weight:400;
  2098. font-style:normal;
  2099. font-size:14px;
  2100. line-height:30px;
  2101. }
  2102. #u16523 .text {
  2103. position:absolute;
  2104. align-self:flex-start;
  2105. padding:0px 0px 0px 0px;
  2106. box-sizing:border-box;
  2107. width:100%;
  2108. }
  2109. #u16523_text {
  2110. border-width:0px;
  2111. white-space:nowrap;
  2112. text-transform:none;
  2113. }
  2114. #u16524_div {
  2115. border-width:0px;
  2116. position:absolute;
  2117. left:0px;
  2118. top:0px;
  2119. width:99px;
  2120. height:30px;
  2121. background:inherit;
  2122. background-color:rgba(255, 255, 255, 0);
  2123. border:none;
  2124. border-left:0px;
  2125. border-top:0px;
  2126. border-right:0px;
  2127. border-radius:0px;
  2128. border-bottom-right-radius:0px;
  2129. border-bottom-left-radius:0px;
  2130. -moz-box-shadow:none;
  2131. -webkit-box-shadow:none;
  2132. box-shadow:none;
  2133. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2134. font-weight:400;
  2135. font-style:normal;
  2136. font-size:14px;
  2137. color:#7F7F7F;
  2138. line-height:30px;
  2139. }
  2140. #u16524 {
  2141. border-width:0px;
  2142. position:absolute;
  2143. left:547px;
  2144. top:396px;
  2145. width:99px;
  2146. height:30px;
  2147. display:flex;
  2148. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2149. font-weight:400;
  2150. font-style:normal;
  2151. font-size:14px;
  2152. color:#7F7F7F;
  2153. line-height:30px;
  2154. }
  2155. #u16524 .text {
  2156. position:absolute;
  2157. align-self:flex-start;
  2158. padding:0px 0px 0px 0px;
  2159. box-sizing:border-box;
  2160. width:100%;
  2161. }
  2162. #u16524_text {
  2163. border-width:0px;
  2164. white-space:nowrap;
  2165. text-transform:none;
  2166. }
  2167. #u16525_div {
  2168. border-width:0px;
  2169. position:absolute;
  2170. left:0px;
  2171. top:0px;
  2172. width:169px;
  2173. height:30px;
  2174. background:inherit;
  2175. background-color:rgba(255, 255, 255, 0);
  2176. border:none;
  2177. border-left:0px;
  2178. border-top:0px;
  2179. border-right:0px;
  2180. border-radius:0px;
  2181. border-bottom-right-radius:0px;
  2182. border-bottom-left-radius:0px;
  2183. -moz-box-shadow:none;
  2184. -webkit-box-shadow:none;
  2185. box-shadow:none;
  2186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2187. font-weight:400;
  2188. font-style:normal;
  2189. font-size:14px;
  2190. line-height:30px;
  2191. }
  2192. #u16525 {
  2193. border-width:0px;
  2194. position:absolute;
  2195. left:646px;
  2196. top:396px;
  2197. width:169px;
  2198. height:30px;
  2199. display:flex;
  2200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2201. font-weight:400;
  2202. font-style:normal;
  2203. font-size:14px;
  2204. line-height:30px;
  2205. }
  2206. #u16525 .text {
  2207. position:absolute;
  2208. align-self:flex-start;
  2209. padding:0px 0px 0px 0px;
  2210. box-sizing:border-box;
  2211. width:100%;
  2212. }
  2213. #u16525_text {
  2214. border-width:0px;
  2215. white-space:nowrap;
  2216. text-transform:none;
  2217. }
  2218. #u16526 {
  2219. border-width:0px;
  2220. position:absolute;
  2221. left:0px;
  2222. top:0px;
  2223. width:0px;
  2224. height:0px;
  2225. }
  2226. #u16527_img {
  2227. border-width:0px;
  2228. position:absolute;
  2229. left:-5px;
  2230. top:-5px;
  2231. width:370px;
  2232. height:310px;
  2233. }
  2234. #u16527 {
  2235. border-width:0px;
  2236. position:absolute;
  2237. left:674px;
  2238. top:819px;
  2239. width:360px;
  2240. height:300px;
  2241. display:flex;
  2242. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2243. font-weight:400;
  2244. font-style:normal;
  2245. font-size:12px;
  2246. color:#FFFFFF;
  2247. }
  2248. #u16527 .text {
  2249. position:absolute;
  2250. align-self:center;
  2251. padding:2px 2px 2px 2px;
  2252. box-sizing:border-box;
  2253. width:100%;
  2254. }
  2255. #u16527_text {
  2256. border-width:0px;
  2257. word-wrap:break-word;
  2258. text-transform:none;
  2259. visibility:hidden;
  2260. }
  2261. #u16528_div {
  2262. border-width:0px;
  2263. position:absolute;
  2264. left:0px;
  2265. top:0px;
  2266. width:37px;
  2267. height:25px;
  2268. background:inherit;
  2269. background-color:rgba(255, 255, 255, 0);
  2270. border:none;
  2271. border-radius:0px;
  2272. -moz-box-shadow:none;
  2273. -webkit-box-shadow:none;
  2274. box-shadow:none;
  2275. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2276. font-weight:500;
  2277. font-style:normal;
  2278. font-size:18px;
  2279. }
  2280. #u16528 {
  2281. border-width:0px;
  2282. position:absolute;
  2283. left:697px;
  2284. top:835px;
  2285. width:37px;
  2286. height:25px;
  2287. display:flex;
  2288. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2289. font-weight:500;
  2290. font-style:normal;
  2291. font-size:18px;
  2292. }
  2293. #u16528 .text {
  2294. position:absolute;
  2295. align-self:flex-start;
  2296. padding:0px 0px 0px 0px;
  2297. box-sizing:border-box;
  2298. width:100%;
  2299. }
  2300. #u16528_text {
  2301. border-width:0px;
  2302. white-space:nowrap;
  2303. text-transform:none;
  2304. }
  2305. #u16529_img {
  2306. border-width:0px;
  2307. position:absolute;
  2308. left:0px;
  2309. top:0px;
  2310. width:8px;
  2311. height:8px;
  2312. }
  2313. #u16529 {
  2314. border-width:0px;
  2315. position:absolute;
  2316. left:1011px;
  2317. top:831px;
  2318. width:8px;
  2319. height:8px;
  2320. display:flex;
  2321. opacity:0.5;
  2322. }
  2323. #u16529 .text {
  2324. position:absolute;
  2325. align-self:center;
  2326. padding:2px 2px 2px 2px;
  2327. box-sizing:border-box;
  2328. width:100%;
  2329. }
  2330. #u16529_text {
  2331. border-width:0px;
  2332. word-wrap:break-word;
  2333. text-transform:none;
  2334. visibility:hidden;
  2335. }
  2336. #u16530_div {
  2337. border-width:0px;
  2338. position:absolute;
  2339. left:0px;
  2340. top:0px;
  2341. width:80px;
  2342. height:30px;
  2343. background:inherit;
  2344. background-color:rgba(51, 153, 255, 1);
  2345. border:none;
  2346. border-radius:4px;
  2347. -moz-box-shadow:none;
  2348. -webkit-box-shadow:none;
  2349. box-shadow:none;
  2350. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2351. font-weight:400;
  2352. font-style:normal;
  2353. font-size:14px;
  2354. color:#FFFFFF;
  2355. }
  2356. #u16530 {
  2357. border-width:0px;
  2358. position:absolute;
  2359. left:939px;
  2360. top:1069px;
  2361. width:80px;
  2362. height:30px;
  2363. display:flex;
  2364. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2365. font-weight:400;
  2366. font-style:normal;
  2367. font-size:14px;
  2368. color:#FFFFFF;
  2369. }
  2370. #u16530 .text {
  2371. position:absolute;
  2372. align-self:center;
  2373. padding:8px 0px 8px 0px;
  2374. box-sizing:border-box;
  2375. width:100%;
  2376. }
  2377. #u16530_text {
  2378. border-width:0px;
  2379. word-wrap:break-word;
  2380. text-transform:none;
  2381. }
  2382. #u16531 {
  2383. border-width:0px;
  2384. position:absolute;
  2385. left:0px;
  2386. top:0px;
  2387. width:0px;
  2388. height:0px;
  2389. }
  2390. #u16532_div {
  2391. border-width:0px;
  2392. position:absolute;
  2393. left:0px;
  2394. top:0px;
  2395. width:322px;
  2396. height:80px;
  2397. background:inherit;
  2398. background-color:rgba(255, 255, 255, 1);
  2399. box-sizing:border-box;
  2400. border-width:1px;
  2401. border-style:solid;
  2402. border-color:rgba(51, 153, 255, 1);
  2403. border-radius:2px;
  2404. -moz-box-shadow:none;
  2405. -webkit-box-shadow:none;
  2406. box-shadow:none;
  2407. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2408. font-weight:400;
  2409. font-style:normal;
  2410. font-size:12px;
  2411. color:#FFFFFF;
  2412. text-align:left;
  2413. }
  2414. #u16532 {
  2415. border-width:0px;
  2416. position:absolute;
  2417. left:697px;
  2418. top:969px;
  2419. width:322px;
  2420. height:80px;
  2421. display:flex;
  2422. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2423. font-weight:400;
  2424. font-style:normal;
  2425. font-size:12px;
  2426. color:#FFFFFF;
  2427. text-align:left;
  2428. }
  2429. #u16532 .text {
  2430. position:absolute;
  2431. align-self:center;
  2432. padding:8px 15px 8px 15px;
  2433. box-sizing:border-box;
  2434. width:100%;
  2435. }
  2436. #u16532_text {
  2437. border-width:0px;
  2438. word-wrap:break-word;
  2439. text-transform:none;
  2440. }
  2441. #u16533_div {
  2442. border-width:0px;
  2443. position:absolute;
  2444. left:0px;
  2445. top:0px;
  2446. width:99px;
  2447. height:20px;
  2448. background:inherit;
  2449. background-color:rgba(255, 255, 255, 0);
  2450. border:none;
  2451. border-radius:0px;
  2452. -moz-box-shadow:none;
  2453. -webkit-box-shadow:none;
  2454. box-shadow:none;
  2455. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2456. font-weight:400;
  2457. font-style:normal;
  2458. color:#D7D7D7;
  2459. }
  2460. #u16533 {
  2461. border-width:0px;
  2462. position:absolute;
  2463. left:708px;
  2464. top:980px;
  2465. width:99px;
  2466. height:20px;
  2467. display:flex;
  2468. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2469. font-weight:400;
  2470. font-style:normal;
  2471. color:#D7D7D7;
  2472. }
  2473. #u16533 .text {
  2474. position:absolute;
  2475. align-self:flex-start;
  2476. padding:0px 0px 0px 0px;
  2477. box-sizing:border-box;
  2478. width:100%;
  2479. }
  2480. #u16533_text {
  2481. border-width:0px;
  2482. white-space:nowrap;
  2483. text-transform:none;
  2484. }
  2485. #u16534_div {
  2486. border-width:0px;
  2487. position:absolute;
  2488. left:0px;
  2489. top:0px;
  2490. width:60px;
  2491. height:30px;
  2492. background:inherit;
  2493. background-color:rgba(255, 255, 255, 1);
  2494. box-sizing:border-box;
  2495. border-width:1px;
  2496. border-style:solid;
  2497. border-color:rgba(170, 170, 170, 1);
  2498. border-radius:4px;
  2499. -moz-box-shadow:none;
  2500. -webkit-box-shadow:none;
  2501. box-shadow:none;
  2502. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2503. font-weight:400;
  2504. font-style:normal;
  2505. font-size:14px;
  2506. }
  2507. #u16534 {
  2508. border-width:0px;
  2509. position:absolute;
  2510. left:869px;
  2511. top:1069px;
  2512. width:60px;
  2513. height:30px;
  2514. display:flex;
  2515. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2516. font-weight:400;
  2517. font-style:normal;
  2518. font-size:14px;
  2519. }
  2520. #u16534 .text {
  2521. position:absolute;
  2522. align-self:center;
  2523. padding:2px 2px 2px 2px;
  2524. box-sizing:border-box;
  2525. width:100%;
  2526. }
  2527. #u16534_text {
  2528. border-width:0px;
  2529. word-wrap:break-word;
  2530. text-transform:none;
  2531. }
  2532. #u16535_div {
  2533. border-width:0px;
  2534. position:absolute;
  2535. left:0px;
  2536. top:0px;
  2537. width:319px;
  2538. height:75px;
  2539. background:inherit;
  2540. background-color:rgba(255, 255, 255, 0);
  2541. border:none;
  2542. border-radius:0px;
  2543. -moz-box-shadow:none;
  2544. -webkit-box-shadow:none;
  2545. box-shadow:none;
  2546. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2547. font-weight:400;
  2548. font-style:normal;
  2549. font-size:14px;
  2550. line-height:25px;
  2551. }
  2552. #u16535 {
  2553. border-width:0px;
  2554. position:absolute;
  2555. left:697px;
  2556. top:874px;
  2557. width:319px;
  2558. height:75px;
  2559. display:flex;
  2560. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2561. font-weight:400;
  2562. font-style:normal;
  2563. font-size:14px;
  2564. line-height:25px;
  2565. }
  2566. #u16535 .text {
  2567. position:absolute;
  2568. align-self:flex-start;
  2569. padding:0px 0px 0px 0px;
  2570. box-sizing:border-box;
  2571. width:100%;
  2572. }
  2573. #u16535_text {
  2574. border-width:0px;
  2575. word-wrap:break-word;
  2576. text-transform:none;
  2577. }
  2578. #u16536 {
  2579. border-width:0px;
  2580. position:absolute;
  2581. left:0px;
  2582. top:0px;
  2583. width:0px;
  2584. height:0px;
  2585. }
  2586. #u16537_img {
  2587. border-width:0px;
  2588. position:absolute;
  2589. left:-5px;
  2590. top:-5px;
  2591. width:370px;
  2592. height:200px;
  2593. }
  2594. #u16537 {
  2595. border-width:0px;
  2596. position:absolute;
  2597. left:284px;
  2598. top:819px;
  2599. width:360px;
  2600. height:190px;
  2601. display:flex;
  2602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2603. font-weight:400;
  2604. font-style:normal;
  2605. font-size:12px;
  2606. color:#FFFFFF;
  2607. }
  2608. #u16537 .text {
  2609. position:absolute;
  2610. align-self:center;
  2611. padding:2px 2px 2px 2px;
  2612. box-sizing:border-box;
  2613. width:100%;
  2614. }
  2615. #u16537_text {
  2616. border-width:0px;
  2617. word-wrap:break-word;
  2618. text-transform:none;
  2619. visibility:hidden;
  2620. }
  2621. #u16538_div {
  2622. border-width:0px;
  2623. position:absolute;
  2624. left:0px;
  2625. top:0px;
  2626. width:37px;
  2627. height:25px;
  2628. background:inherit;
  2629. background-color:rgba(255, 255, 255, 0);
  2630. border:none;
  2631. border-radius:0px;
  2632. -moz-box-shadow:none;
  2633. -webkit-box-shadow:none;
  2634. box-shadow:none;
  2635. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2636. font-weight:500;
  2637. font-style:normal;
  2638. font-size:18px;
  2639. }
  2640. #u16538 {
  2641. border-width:0px;
  2642. position:absolute;
  2643. left:307px;
  2644. top:835px;
  2645. width:37px;
  2646. height:25px;
  2647. display:flex;
  2648. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2649. font-weight:500;
  2650. font-style:normal;
  2651. font-size:18px;
  2652. }
  2653. #u16538 .text {
  2654. position:absolute;
  2655. align-self:flex-start;
  2656. padding:0px 0px 0px 0px;
  2657. box-sizing:border-box;
  2658. width:100%;
  2659. }
  2660. #u16538_text {
  2661. border-width:0px;
  2662. white-space:nowrap;
  2663. text-transform:none;
  2664. }
  2665. #u16539_img {
  2666. border-width:0px;
  2667. position:absolute;
  2668. left:0px;
  2669. top:0px;
  2670. width:8px;
  2671. height:8px;
  2672. }
  2673. #u16539 {
  2674. border-width:0px;
  2675. position:absolute;
  2676. left:621px;
  2677. top:831px;
  2678. width:8px;
  2679. height:8px;
  2680. display:flex;
  2681. opacity:0.5;
  2682. }
  2683. #u16539 .text {
  2684. position:absolute;
  2685. align-self:center;
  2686. padding:2px 2px 2px 2px;
  2687. box-sizing:border-box;
  2688. width:100%;
  2689. }
  2690. #u16539_text {
  2691. border-width:0px;
  2692. word-wrap:break-word;
  2693. text-transform:none;
  2694. visibility:hidden;
  2695. }
  2696. #u16540_div {
  2697. border-width:0px;
  2698. position:absolute;
  2699. left:0px;
  2700. top:0px;
  2701. width:80px;
  2702. height:30px;
  2703. background:inherit;
  2704. background-color:rgba(51, 153, 255, 1);
  2705. border:none;
  2706. border-radius:4px;
  2707. -moz-box-shadow:none;
  2708. -webkit-box-shadow:none;
  2709. box-shadow:none;
  2710. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2711. font-weight:400;
  2712. font-style:normal;
  2713. font-size:14px;
  2714. color:#FFFFFF;
  2715. }
  2716. #u16540 {
  2717. border-width:0px;
  2718. position:absolute;
  2719. left:549px;
  2720. top:963px;
  2721. width:80px;
  2722. height:30px;
  2723. display:flex;
  2724. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2725. font-weight:400;
  2726. font-style:normal;
  2727. font-size:14px;
  2728. color:#FFFFFF;
  2729. }
  2730. #u16540 .text {
  2731. position:absolute;
  2732. align-self:center;
  2733. padding:8px 0px 8px 0px;
  2734. box-sizing:border-box;
  2735. width:100%;
  2736. }
  2737. #u16540_text {
  2738. border-width:0px;
  2739. word-wrap:break-word;
  2740. text-transform:none;
  2741. }
  2742. #u16541_div {
  2743. border-width:0px;
  2744. position:absolute;
  2745. left:0px;
  2746. top:0px;
  2747. width:322px;
  2748. height:80px;
  2749. background:inherit;
  2750. background-color:rgba(255, 255, 255, 1);
  2751. box-sizing:border-box;
  2752. border-width:1px;
  2753. border-style:solid;
  2754. border-color:rgba(51, 153, 255, 1);
  2755. border-radius:2px;
  2756. -moz-box-shadow:none;
  2757. -webkit-box-shadow:none;
  2758. box-shadow:none;
  2759. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2760. font-weight:400;
  2761. font-style:normal;
  2762. font-size:12px;
  2763. color:#FFFFFF;
  2764. text-align:left;
  2765. }
  2766. #u16541 {
  2767. border-width:0px;
  2768. position:absolute;
  2769. left:307px;
  2770. top:870px;
  2771. width:322px;
  2772. height:80px;
  2773. display:flex;
  2774. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2775. font-weight:400;
  2776. font-style:normal;
  2777. font-size:12px;
  2778. color:#FFFFFF;
  2779. text-align:left;
  2780. }
  2781. #u16541 .text {
  2782. position:absolute;
  2783. align-self:center;
  2784. padding:8px 15px 8px 15px;
  2785. box-sizing:border-box;
  2786. width:100%;
  2787. }
  2788. #u16541_text {
  2789. border-width:0px;
  2790. word-wrap:break-word;
  2791. text-transform:none;
  2792. }
  2793. #u16542_div {
  2794. border-width:0px;
  2795. position:absolute;
  2796. left:0px;
  2797. top:0px;
  2798. width:99px;
  2799. height:20px;
  2800. background:inherit;
  2801. background-color:rgba(255, 255, 255, 0);
  2802. border:none;
  2803. border-radius:0px;
  2804. -moz-box-shadow:none;
  2805. -webkit-box-shadow:none;
  2806. box-shadow:none;
  2807. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2808. font-weight:400;
  2809. font-style:normal;
  2810. color:#D7D7D7;
  2811. }
  2812. #u16542 {
  2813. border-width:0px;
  2814. position:absolute;
  2815. left:318px;
  2816. top:881px;
  2817. width:99px;
  2818. height:20px;
  2819. display:flex;
  2820. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2821. font-weight:400;
  2822. font-style:normal;
  2823. color:#D7D7D7;
  2824. }
  2825. #u16542 .text {
  2826. position:absolute;
  2827. align-self:flex-start;
  2828. padding:0px 0px 0px 0px;
  2829. box-sizing:border-box;
  2830. width:100%;
  2831. }
  2832. #u16542_text {
  2833. border-width:0px;
  2834. white-space:nowrap;
  2835. text-transform:none;
  2836. }
  2837. #u16543_div {
  2838. border-width:0px;
  2839. position:absolute;
  2840. left:0px;
  2841. top:0px;
  2842. width:60px;
  2843. height:30px;
  2844. background:inherit;
  2845. background-color:rgba(255, 255, 255, 1);
  2846. box-sizing:border-box;
  2847. border-width:1px;
  2848. border-style:solid;
  2849. border-color:rgba(170, 170, 170, 1);
  2850. border-radius:4px;
  2851. -moz-box-shadow:none;
  2852. -webkit-box-shadow:none;
  2853. box-shadow:none;
  2854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2855. font-weight:400;
  2856. font-style:normal;
  2857. font-size:14px;
  2858. }
  2859. #u16543 {
  2860. border-width:0px;
  2861. position:absolute;
  2862. left:479px;
  2863. top:963px;
  2864. width:60px;
  2865. height:30px;
  2866. display:flex;
  2867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2868. font-weight:400;
  2869. font-style:normal;
  2870. font-size:14px;
  2871. }
  2872. #u16543 .text {
  2873. position:absolute;
  2874. align-self:center;
  2875. padding:2px 2px 2px 2px;
  2876. box-sizing:border-box;
  2877. width:100%;
  2878. }
  2879. #u16543_text {
  2880. border-width:0px;
  2881. word-wrap:break-word;
  2882. text-transform:none;
  2883. }
  2884. #u16544 {
  2885. border-width:0px;
  2886. position:absolute;
  2887. left:0px;
  2888. top:0px;
  2889. width:0px;
  2890. height:0px;
  2891. }
  2892. #u16545_div {
  2893. border-width:0px;
  2894. position:absolute;
  2895. left:0px;
  2896. top:0px;
  2897. width:1000px;
  2898. height:1201px;
  2899. background:inherit;
  2900. background-color:rgba(242, 242, 242, 1);
  2901. box-sizing:border-box;
  2902. border-width:1px;
  2903. border-style:solid;
  2904. border-color:rgba(215, 215, 215, 1);
  2905. border-radius:0px;
  2906. -moz-box-shadow:none;
  2907. -webkit-box-shadow:none;
  2908. box-shadow:none;
  2909. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2910. font-weight:400;
  2911. font-style:normal;
  2912. font-size:14px;
  2913. color:#AAAAAA;
  2914. text-align:center;
  2915. line-height:30px;
  2916. }
  2917. #u16545 {
  2918. border-width:0px;
  2919. position:absolute;
  2920. left:1127px;
  2921. top:49px;
  2922. width:1000px;
  2923. height:1201px;
  2924. display:flex;
  2925. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2926. font-weight:400;
  2927. font-style:normal;
  2928. font-size:14px;
  2929. color:#AAAAAA;
  2930. text-align:center;
  2931. line-height:30px;
  2932. }
  2933. #u16545 .text {
  2934. position:absolute;
  2935. align-self:center;
  2936. padding:5px 10px 5px 10px;
  2937. box-sizing:border-box;
  2938. width:100%;
  2939. }
  2940. #u16545_text {
  2941. border-width:0px;
  2942. word-wrap:break-word;
  2943. text-transform:none;
  2944. visibility:hidden;
  2945. }
  2946. #u16546_div {
  2947. border-width:0px;
  2948. position:absolute;
  2949. left:0px;
  2950. top:0px;
  2951. width:1000px;
  2952. height:1201px;
  2953. background:inherit;
  2954. background-color:rgba(255, 255, 255, 1);
  2955. box-sizing:border-box;
  2956. border-width:1px;
  2957. border-style:solid;
  2958. border-color:rgba(215, 215, 215, 1);
  2959. border-radius:0px;
  2960. -moz-box-shadow:none;
  2961. -webkit-box-shadow:none;
  2962. box-shadow:none;
  2963. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2964. font-weight:400;
  2965. font-style:normal;
  2966. font-size:14px;
  2967. color:#AAAAAA;
  2968. text-align:center;
  2969. line-height:30px;
  2970. }
  2971. #u16546 {
  2972. border-width:0px;
  2973. position:absolute;
  2974. left:1127px;
  2975. top:49px;
  2976. width:1000px;
  2977. height:1201px;
  2978. display:flex;
  2979. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2980. font-weight:400;
  2981. font-style:normal;
  2982. font-size:14px;
  2983. color:#AAAAAA;
  2984. text-align:center;
  2985. line-height:30px;
  2986. }
  2987. #u16546 .text {
  2988. position:absolute;
  2989. align-self:center;
  2990. padding:5px 10px 5px 10px;
  2991. box-sizing:border-box;
  2992. width:100%;
  2993. }
  2994. #u16546_text {
  2995. border-width:0px;
  2996. word-wrap:break-word;
  2997. text-transform:none;
  2998. visibility:hidden;
  2999. }
  3000. #u16547_div {
  3001. border-width:0px;
  3002. position:absolute;
  3003. left:0px;
  3004. top:0px;
  3005. width:119px;
  3006. height:35px;
  3007. background:inherit;
  3008. background-color:rgba(255, 255, 255, 0);
  3009. border:none;
  3010. border-top:0px;
  3011. border-right:0px;
  3012. border-bottom:0px;
  3013. border-radius:0px;
  3014. border-top-left-radius:0px;
  3015. border-bottom-left-radius:0px;
  3016. -moz-box-shadow:none;
  3017. -webkit-box-shadow:none;
  3018. box-shadow:none;
  3019. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3020. font-weight:500;
  3021. font-style:normal;
  3022. font-size:18px;
  3023. }
  3024. #u16547 {
  3025. border-width:0px;
  3026. position:absolute;
  3027. left:1147px;
  3028. top:67px;
  3029. width:119px;
  3030. height:35px;
  3031. display:flex;
  3032. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3033. font-weight:500;
  3034. font-style:normal;
  3035. font-size:18px;
  3036. }
  3037. #u16547 .text {
  3038. position:absolute;
  3039. align-self:center;
  3040. padding:5px 10px 5px 0px;
  3041. box-sizing:border-box;
  3042. width:100%;
  3043. }
  3044. #u16547_text {
  3045. border-width:0px;
  3046. white-space:nowrap;
  3047. text-transform:none;
  3048. }
  3049. #u16548 {
  3050. border-width:0px;
  3051. position:absolute;
  3052. left:0px;
  3053. top:0px;
  3054. width:0px;
  3055. height:0px;
  3056. }
  3057. #u16549_div {
  3058. border-width:0px;
  3059. position:absolute;
  3060. left:0px;
  3061. top:0px;
  3062. width:40px;
  3063. height:40px;
  3064. background:inherit;
  3065. background-color:rgba(255, 255, 255, 0);
  3066. border:none;
  3067. border-top:0px;
  3068. border-right:0px;
  3069. border-bottom:0px;
  3070. border-radius:0px;
  3071. border-top-left-radius:0px;
  3072. border-bottom-left-radius:0px;
  3073. -moz-box-shadow:none;
  3074. -webkit-box-shadow:none;
  3075. box-shadow:none;
  3076. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3077. font-weight:500;
  3078. font-style:normal;
  3079. font-size:14px;
  3080. text-align:center;
  3081. }
  3082. #u16549 {
  3083. border-width:0px;
  3084. position:absolute;
  3085. left:2087px;
  3086. top:49px;
  3087. width:40px;
  3088. height:40px;
  3089. display:flex;
  3090. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3091. font-weight:500;
  3092. font-style:normal;
  3093. font-size:14px;
  3094. text-align:center;
  3095. }
  3096. #u16549 .text {
  3097. position:absolute;
  3098. align-self:center;
  3099. padding:5px 10px 5px 0px;
  3100. box-sizing:border-box;
  3101. width:100%;
  3102. }
  3103. #u16549_text {
  3104. border-width:0px;
  3105. word-wrap:break-word;
  3106. text-transform:none;
  3107. }
  3108. #u16550_img {
  3109. border-width:0px;
  3110. position:absolute;
  3111. left:0px;
  3112. top:0px;
  3113. width:13px;
  3114. height:13px;
  3115. }
  3116. #u16550 {
  3117. border-width:0px;
  3118. position:absolute;
  3119. left:2075px;
  3120. top:65px;
  3121. width:13px;
  3122. height:13px;
  3123. display:flex;
  3124. font-size:14px;
  3125. }
  3126. #u16550 .text {
  3127. position:absolute;
  3128. align-self:center;
  3129. padding:2px 2px 2px 2px;
  3130. box-sizing:border-box;
  3131. width:100%;
  3132. }
  3133. #u16550_text {
  3134. border-width:0px;
  3135. word-wrap:break-word;
  3136. text-transform:none;
  3137. visibility:hidden;
  3138. }
  3139. #u16551_div {
  3140. border-width:0px;
  3141. position:absolute;
  3142. left:0px;
  3143. top:0px;
  3144. width:213px;
  3145. height:43px;
  3146. background:inherit;
  3147. background-color:rgba(255, 255, 255, 0);
  3148. border:none;
  3149. border-top:0px;
  3150. border-right:0px;
  3151. border-bottom:0px;
  3152. border-radius:0px;
  3153. border-top-left-radius:0px;
  3154. border-bottom-left-radius:0px;
  3155. -moz-box-shadow:none;
  3156. -webkit-box-shadow:none;
  3157. box-shadow:none;
  3158. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3159. font-weight:500;
  3160. font-style:normal;
  3161. font-size:24px;
  3162. }
  3163. #u16551 {
  3164. border-width:0px;
  3165. position:absolute;
  3166. left:1157px;
  3167. top:118px;
  3168. width:213px;
  3169. height:43px;
  3170. display:flex;
  3171. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3172. font-weight:500;
  3173. font-style:normal;
  3174. font-size:24px;
  3175. }
  3176. #u16551 .text {
  3177. position:absolute;
  3178. align-self:center;
  3179. padding:5px 10px 5px 0px;
  3180. box-sizing:border-box;
  3181. width:100%;
  3182. }
  3183. #u16551_text {
  3184. border-width:0px;
  3185. white-space:nowrap;
  3186. text-transform:none;
  3187. }
  3188. #u16552_img {
  3189. border-width:0px;
  3190. position:absolute;
  3191. left:0px;
  3192. top:0px;
  3193. width:108px;
  3194. height:108px;
  3195. }
  3196. #u16552 {
  3197. border-width:0px;
  3198. position:absolute;
  3199. left:1977px;
  3200. top:119px;
  3201. width:108px;
  3202. height:108px;
  3203. display:flex;
  3204. -webkit-transform:rotate(315deg);
  3205. -moz-transform:rotate(315deg);
  3206. -ms-transform:rotate(315deg);
  3207. transform:rotate(315deg);
  3208. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3209. font-weight:400;
  3210. font-style:normal;
  3211. font-size:28px;
  3212. color:#F59A23;
  3213. }
  3214. #u16552 .text {
  3215. position:absolute;
  3216. align-self:center;
  3217. padding:2px 2px 2px 2px;
  3218. box-sizing:border-box;
  3219. width:100%;
  3220. }
  3221. #u16552_text {
  3222. border-width:0px;
  3223. word-wrap:break-word;
  3224. text-transform:none;
  3225. }
  3226. #u16553 {
  3227. border-width:0px;
  3228. position:absolute;
  3229. left:0px;
  3230. top:0px;
  3231. width:0px;
  3232. height:0px;
  3233. }
  3234. #u16554_div {
  3235. border-width:0px;
  3236. position:absolute;
  3237. left:0px;
  3238. top:0px;
  3239. width:1000px;
  3240. height:60px;
  3241. background:inherit;
  3242. background-color:rgba(255, 255, 255, 1);
  3243. box-sizing:border-box;
  3244. border-width:1px;
  3245. border-style:solid;
  3246. border-color:rgba(215, 215, 215, 1);
  3247. border-radius:0px;
  3248. -moz-box-shadow:none;
  3249. -webkit-box-shadow:none;
  3250. box-shadow:none;
  3251. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3252. font-weight:400;
  3253. font-style:normal;
  3254. font-size:14px;
  3255. color:#AAAAAA;
  3256. text-align:center;
  3257. line-height:30px;
  3258. }
  3259. #u16554 {
  3260. border-width:0px;
  3261. position:absolute;
  3262. left:1127px;
  3263. top:1190px;
  3264. width:1000px;
  3265. height:60px;
  3266. display:flex;
  3267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3268. font-weight:400;
  3269. font-style:normal;
  3270. font-size:14px;
  3271. color:#AAAAAA;
  3272. text-align:center;
  3273. line-height:30px;
  3274. }
  3275. #u16554 .text {
  3276. position:absolute;
  3277. align-self:center;
  3278. padding:5px 10px 5px 10px;
  3279. box-sizing:border-box;
  3280. width:100%;
  3281. }
  3282. #u16554_text {
  3283. border-width:0px;
  3284. word-wrap:break-word;
  3285. text-transform:none;
  3286. visibility:hidden;
  3287. }
  3288. #u16555_div {
  3289. border-width:0px;
  3290. position:absolute;
  3291. left:0px;
  3292. top:0px;
  3293. width:80px;
  3294. height:30px;
  3295. background:inherit;
  3296. background-color:rgba(24, 144, 255, 1);
  3297. border:none;
  3298. border-radius:4px;
  3299. -moz-box-shadow:none;
  3300. -webkit-box-shadow:none;
  3301. box-shadow:none;
  3302. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3303. font-weight:400;
  3304. font-style:normal;
  3305. font-size:14px;
  3306. color:#FFFFFF;
  3307. }
  3308. #u16555 {
  3309. border-width:0px;
  3310. position:absolute;
  3311. left:2021px;
  3312. top:1205px;
  3313. width:80px;
  3314. height:30px;
  3315. display:flex;
  3316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3317. font-weight:400;
  3318. font-style:normal;
  3319. font-size:14px;
  3320. color:#FFFFFF;
  3321. }
  3322. #u16555 .text {
  3323. position:absolute;
  3324. align-self:center;
  3325. padding:2px 2px 2px 2px;
  3326. box-sizing:border-box;
  3327. width:100%;
  3328. }
  3329. #u16555_text {
  3330. border-width:0px;
  3331. word-wrap:break-word;
  3332. text-transform:none;
  3333. }
  3334. #u16556_div {
  3335. border-width:0px;
  3336. position:absolute;
  3337. left:0px;
  3338. top:0px;
  3339. width:80px;
  3340. height:30px;
  3341. background:inherit;
  3342. background-color:rgba(245, 154, 35, 1);
  3343. border:none;
  3344. border-radius:4px;
  3345. -moz-box-shadow:none;
  3346. -webkit-box-shadow:none;
  3347. box-shadow:none;
  3348. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3349. font-weight:400;
  3350. font-style:normal;
  3351. font-size:14px;
  3352. color:#FFFFFF;
  3353. }
  3354. #u16556 {
  3355. border-width:0px;
  3356. position:absolute;
  3357. left:1931px;
  3358. top:1205px;
  3359. width:80px;
  3360. height:30px;
  3361. display:flex;
  3362. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3363. font-weight:400;
  3364. font-style:normal;
  3365. font-size:14px;
  3366. color:#FFFFFF;
  3367. }
  3368. #u16556 .text {
  3369. position:absolute;
  3370. align-self:center;
  3371. padding:2px 2px 2px 2px;
  3372. box-sizing:border-box;
  3373. width:100%;
  3374. }
  3375. #u16556_text {
  3376. border-width:0px;
  3377. word-wrap:break-word;
  3378. text-transform:none;
  3379. }
  3380. #u16557_div {
  3381. border-width:0px;
  3382. position:absolute;
  3383. left:0px;
  3384. top:0px;
  3385. width:80px;
  3386. height:30px;
  3387. background:inherit;
  3388. background-color:rgba(255, 255, 255, 1);
  3389. box-sizing:border-box;
  3390. border-width:1px;
  3391. border-style:solid;
  3392. border-color:rgba(170, 170, 170, 1);
  3393. border-radius:4px;
  3394. -moz-box-shadow:none;
  3395. -webkit-box-shadow:none;
  3396. box-shadow:none;
  3397. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3398. font-weight:400;
  3399. font-style:normal;
  3400. font-size:14px;
  3401. }
  3402. #u16557 {
  3403. border-width:0px;
  3404. position:absolute;
  3405. left:1841px;
  3406. top:1205px;
  3407. width:80px;
  3408. height:30px;
  3409. display:flex;
  3410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3411. font-weight:400;
  3412. font-style:normal;
  3413. font-size:14px;
  3414. }
  3415. #u16557 .text {
  3416. position:absolute;
  3417. align-self:center;
  3418. padding:2px 2px 2px 2px;
  3419. box-sizing:border-box;
  3420. width:100%;
  3421. }
  3422. #u16557_text {
  3423. border-width:0px;
  3424. word-wrap:break-word;
  3425. text-transform:none;
  3426. }
  3427. #u16558_div {
  3428. border-width:0px;
  3429. position:absolute;
  3430. left:0px;
  3431. top:0px;
  3432. width:80px;
  3433. height:30px;
  3434. background:inherit;
  3435. background-color:rgba(255, 255, 255, 0);
  3436. border:none;
  3437. border-left:0px;
  3438. border-top:0px;
  3439. border-right:0px;
  3440. border-radius:0px;
  3441. border-bottom-right-radius:0px;
  3442. border-bottom-left-radius:0px;
  3443. -moz-box-shadow:none;
  3444. -webkit-box-shadow:none;
  3445. box-shadow:none;
  3446. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3447. font-weight:400;
  3448. font-style:normal;
  3449. font-size:14px;
  3450. color:#7F7F7F;
  3451. line-height:30px;
  3452. }
  3453. #u16558 {
  3454. border-width:0px;
  3455. position:absolute;
  3456. left:1157px;
  3457. top:181px;
  3458. width:80px;
  3459. height:30px;
  3460. display:flex;
  3461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3462. font-weight:400;
  3463. font-style:normal;
  3464. font-size:14px;
  3465. color:#7F7F7F;
  3466. line-height:30px;
  3467. }
  3468. #u16558 .text {
  3469. position:absolute;
  3470. align-self:flex-start;
  3471. padding:0px 0px 0px 0px;
  3472. box-sizing:border-box;
  3473. width:100%;
  3474. }
  3475. #u16558_text {
  3476. border-width:0px;
  3477. word-wrap:break-word;
  3478. text-transform:none;
  3479. }
  3480. #u16559_div {
  3481. border-width:0px;
  3482. position:absolute;
  3483. left:0px;
  3484. top:0px;
  3485. width:85px;
  3486. height:30px;
  3487. background:inherit;
  3488. background-color:rgba(255, 255, 255, 0);
  3489. border:none;
  3490. border-left:0px;
  3491. border-top:0px;
  3492. border-right:0px;
  3493. border-radius:0px;
  3494. border-bottom-right-radius:0px;
  3495. border-bottom-left-radius:0px;
  3496. -moz-box-shadow:none;
  3497. -webkit-box-shadow:none;
  3498. box-shadow:none;
  3499. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3500. font-weight:400;
  3501. font-style:normal;
  3502. font-size:14px;
  3503. line-height:30px;
  3504. }
  3505. #u16559 {
  3506. border-width:0px;
  3507. position:absolute;
  3508. left:1237px;
  3509. top:181px;
  3510. width:85px;
  3511. height:30px;
  3512. display:flex;
  3513. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3514. font-weight:400;
  3515. font-style:normal;
  3516. font-size:14px;
  3517. line-height:30px;
  3518. }
  3519. #u16559 .text {
  3520. position:absolute;
  3521. align-self:flex-start;
  3522. padding:0px 0px 0px 0px;
  3523. box-sizing:border-box;
  3524. width:100%;
  3525. }
  3526. #u16559_text {
  3527. border-width:0px;
  3528. white-space:nowrap;
  3529. text-transform:none;
  3530. }
  3531. #u16560_div {
  3532. border-width:0px;
  3533. position:absolute;
  3534. left:0px;
  3535. top:0px;
  3536. width:80px;
  3537. height:30px;
  3538. background:inherit;
  3539. background-color:rgba(255, 255, 255, 0);
  3540. border:none;
  3541. border-left:0px;
  3542. border-top:0px;
  3543. border-right:0px;
  3544. border-radius:0px;
  3545. border-bottom-right-radius:0px;
  3546. border-bottom-left-radius:0px;
  3547. -moz-box-shadow:none;
  3548. -webkit-box-shadow:none;
  3549. box-shadow:none;
  3550. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3551. font-weight:400;
  3552. font-style:normal;
  3553. font-size:14px;
  3554. color:#7F7F7F;
  3555. line-height:30px;
  3556. }
  3557. #u16560 {
  3558. border-width:0px;
  3559. position:absolute;
  3560. left:1595px;
  3561. top:356px;
  3562. width:80px;
  3563. height:30px;
  3564. display:flex;
  3565. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3566. font-weight:400;
  3567. font-style:normal;
  3568. font-size:14px;
  3569. color:#7F7F7F;
  3570. line-height:30px;
  3571. }
  3572. #u16560 .text {
  3573. position:absolute;
  3574. align-self:flex-start;
  3575. padding:0px 0px 0px 0px;
  3576. box-sizing:border-box;
  3577. width:100%;
  3578. }
  3579. #u16560_text {
  3580. border-width:0px;
  3581. word-wrap:break-word;
  3582. text-transform:none;
  3583. }
  3584. #u16561_div {
  3585. border-width:0px;
  3586. position:absolute;
  3587. left:0px;
  3588. top:0px;
  3589. width:71px;
  3590. height:30px;
  3591. background:inherit;
  3592. background-color:rgba(255, 255, 255, 0);
  3593. border:none;
  3594. border-left:0px;
  3595. border-top:0px;
  3596. border-right:0px;
  3597. border-radius:0px;
  3598. border-bottom-right-radius:0px;
  3599. border-bottom-left-radius:0px;
  3600. -moz-box-shadow:none;
  3601. -webkit-box-shadow:none;
  3602. box-shadow:none;
  3603. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3604. font-weight:400;
  3605. font-style:normal;
  3606. font-size:14px;
  3607. line-height:30px;
  3608. }
  3609. #u16561 {
  3610. border-width:0px;
  3611. position:absolute;
  3612. left:1675px;
  3613. top:356px;
  3614. width:71px;
  3615. height:30px;
  3616. display:flex;
  3617. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3618. font-weight:400;
  3619. font-style:normal;
  3620. font-size:14px;
  3621. line-height:30px;
  3622. }
  3623. #u16561 .text {
  3624. position:absolute;
  3625. align-self:flex-start;
  3626. padding:0px 0px 0px 0px;
  3627. box-sizing:border-box;
  3628. width:100%;
  3629. }
  3630. #u16561_text {
  3631. border-width:0px;
  3632. white-space:nowrap;
  3633. text-transform:none;
  3634. }
  3635. #u16562_div {
  3636. border-width:0px;
  3637. position:absolute;
  3638. left:0px;
  3639. top:0px;
  3640. width:40px;
  3641. height:17px;
  3642. background:inherit;
  3643. background-color:rgba(85, 85, 85, 1);
  3644. border:none;
  3645. border-radius:20px;
  3646. -moz-box-shadow:none;
  3647. -webkit-box-shadow:none;
  3648. box-shadow:none;
  3649. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3650. font-weight:400;
  3651. font-style:normal;
  3652. font-size:12px;
  3653. color:#FFFFFF;
  3654. text-align:center;
  3655. }
  3656. #u16562 {
  3657. border-width:0px;
  3658. position:absolute;
  3659. left:1380px;
  3660. top:131px;
  3661. width:40px;
  3662. height:17px;
  3663. display:flex;
  3664. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3665. font-weight:400;
  3666. font-style:normal;
  3667. font-size:12px;
  3668. color:#FFFFFF;
  3669. text-align:center;
  3670. }
  3671. #u16562 .text {
  3672. position:absolute;
  3673. align-self:flex-start;
  3674. padding:0px 0px 0px 0px;
  3675. box-sizing:border-box;
  3676. width:100%;
  3677. }
  3678. #u16562_text {
  3679. border-width:0px;
  3680. word-wrap:break-word;
  3681. text-transform:none;
  3682. }
  3683. #u16563_div {
  3684. border-width:0px;
  3685. position:absolute;
  3686. left:0px;
  3687. top:0px;
  3688. width:43px;
  3689. height:30px;
  3690. background:inherit;
  3691. background-color:rgba(255, 255, 255, 0);
  3692. border:none;
  3693. border-left:0px;
  3694. border-top:0px;
  3695. border-right:0px;
  3696. border-radius:0px;
  3697. border-bottom-right-radius:0px;
  3698. border-bottom-left-radius:0px;
  3699. -moz-box-shadow:none;
  3700. -webkit-box-shadow:none;
  3701. box-shadow:none;
  3702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3703. font-weight:400;
  3704. font-style:normal;
  3705. font-size:14px;
  3706. color:#7F7F7F;
  3707. line-height:30px;
  3708. }
  3709. #u16563 {
  3710. border-width:0px;
  3711. position:absolute;
  3712. left:1157px;
  3713. top:221px;
  3714. width:43px;
  3715. height:30px;
  3716. display:flex;
  3717. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3718. font-weight:400;
  3719. font-style:normal;
  3720. font-size:14px;
  3721. color:#7F7F7F;
  3722. line-height:30px;
  3723. }
  3724. #u16563 .text {
  3725. position:absolute;
  3726. align-self:flex-start;
  3727. padding:0px 0px 0px 0px;
  3728. box-sizing:border-box;
  3729. width:100%;
  3730. }
  3731. #u16563_text {
  3732. border-width:0px;
  3733. white-space:nowrap;
  3734. text-transform:none;
  3735. }
  3736. #u16564_div {
  3737. border-width:0px;
  3738. position:absolute;
  3739. left:0px;
  3740. top:0px;
  3741. width:32px;
  3742. height:30px;
  3743. background:inherit;
  3744. background-color:rgba(255, 255, 255, 0);
  3745. border:none;
  3746. border-left:0px;
  3747. border-top:0px;
  3748. border-right:0px;
  3749. border-radius:0px;
  3750. border-bottom-right-radius:0px;
  3751. border-bottom-left-radius:0px;
  3752. -moz-box-shadow:none;
  3753. -webkit-box-shadow:none;
  3754. box-shadow:none;
  3755. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3756. font-weight:400;
  3757. font-style:normal;
  3758. font-size:14px;
  3759. line-height:30px;
  3760. }
  3761. #u16564 {
  3762. border-width:0px;
  3763. position:absolute;
  3764. left:1237px;
  3765. top:221px;
  3766. width:32px;
  3767. height:30px;
  3768. display:flex;
  3769. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3770. font-weight:400;
  3771. font-style:normal;
  3772. font-size:14px;
  3773. line-height:30px;
  3774. }
  3775. #u16564 .text {
  3776. position:absolute;
  3777. align-self:flex-start;
  3778. padding:0px 0px 0px 0px;
  3779. box-sizing:border-box;
  3780. width:100%;
  3781. }
  3782. #u16564_text {
  3783. border-width:0px;
  3784. white-space:nowrap;
  3785. text-transform:none;
  3786. }
  3787. #u16565_div {
  3788. border-width:0px;
  3789. position:absolute;
  3790. left:0px;
  3791. top:0px;
  3792. width:80px;
  3793. height:30px;
  3794. background:inherit;
  3795. background-color:rgba(255, 255, 255, 0);
  3796. border:none;
  3797. border-left:0px;
  3798. border-top:0px;
  3799. border-right:0px;
  3800. border-radius:0px;
  3801. border-bottom-right-radius:0px;
  3802. border-bottom-left-radius:0px;
  3803. -moz-box-shadow:none;
  3804. -webkit-box-shadow:none;
  3805. box-shadow:none;
  3806. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3807. font-weight:400;
  3808. font-style:normal;
  3809. font-size:14px;
  3810. color:#7F7F7F;
  3811. line-height:30px;
  3812. }
  3813. #u16565 {
  3814. border-width:0px;
  3815. position:absolute;
  3816. left:1596px;
  3817. top:181px;
  3818. width:80px;
  3819. height:30px;
  3820. display:flex;
  3821. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3822. font-weight:400;
  3823. font-style:normal;
  3824. font-size:14px;
  3825. color:#7F7F7F;
  3826. line-height:30px;
  3827. }
  3828. #u16565 .text {
  3829. position:absolute;
  3830. align-self:flex-start;
  3831. padding:0px 0px 0px 0px;
  3832. box-sizing:border-box;
  3833. width:100%;
  3834. }
  3835. #u16565_text {
  3836. border-width:0px;
  3837. word-wrap:break-word;
  3838. text-transform:none;
  3839. }
  3840. #u16566_div {
  3841. border-width:0px;
  3842. position:absolute;
  3843. left:0px;
  3844. top:0px;
  3845. width:68px;
  3846. height:30px;
  3847. background:inherit;
  3848. background-color:rgba(255, 255, 255, 0);
  3849. border:none;
  3850. border-left:0px;
  3851. border-top:0px;
  3852. border-right:0px;
  3853. border-radius:0px;
  3854. border-bottom-right-radius:0px;
  3855. border-bottom-left-radius:0px;
  3856. -moz-box-shadow:none;
  3857. -webkit-box-shadow:none;
  3858. box-shadow:none;
  3859. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3860. font-weight:400;
  3861. font-style:normal;
  3862. font-size:14px;
  3863. line-height:30px;
  3864. }
  3865. #u16566 {
  3866. border-width:0px;
  3867. position:absolute;
  3868. left:1676px;
  3869. top:181px;
  3870. width:68px;
  3871. height:30px;
  3872. display:flex;
  3873. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3874. font-weight:400;
  3875. font-style:normal;
  3876. font-size:14px;
  3877. line-height:30px;
  3878. }
  3879. #u16566 .text {
  3880. position:absolute;
  3881. align-self:flex-start;
  3882. padding:0px 0px 0px 0px;
  3883. box-sizing:border-box;
  3884. width:100%;
  3885. }
  3886. #u16566_text {
  3887. border-width:0px;
  3888. white-space:nowrap;
  3889. text-transform:none;
  3890. }
  3891. #u16567_div {
  3892. border-width:0px;
  3893. position:absolute;
  3894. left:0px;
  3895. top:0px;
  3896. width:71px;
  3897. height:30px;
  3898. background:inherit;
  3899. background-color:rgba(255, 255, 255, 0);
  3900. border:none;
  3901. border-left:0px;
  3902. border-top:0px;
  3903. border-right:0px;
  3904. border-radius:0px;
  3905. border-bottom-right-radius:0px;
  3906. border-bottom-left-radius:0px;
  3907. -moz-box-shadow:none;
  3908. -webkit-box-shadow:none;
  3909. box-shadow:none;
  3910. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3911. font-weight:400;
  3912. font-style:normal;
  3913. font-size:14px;
  3914. color:#7F7F7F;
  3915. line-height:30px;
  3916. }
  3917. #u16567 {
  3918. border-width:0px;
  3919. position:absolute;
  3920. left:1595px;
  3921. top:276px;
  3922. width:71px;
  3923. height:30px;
  3924. display:flex;
  3925. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3926. font-weight:400;
  3927. font-style:normal;
  3928. font-size:14px;
  3929. color:#7F7F7F;
  3930. line-height:30px;
  3931. }
  3932. #u16567 .text {
  3933. position:absolute;
  3934. align-self:flex-start;
  3935. padding:0px 0px 0px 0px;
  3936. box-sizing:border-box;
  3937. width:100%;
  3938. }
  3939. #u16567_text {
  3940. border-width:0px;
  3941. white-space:nowrap;
  3942. text-transform:none;
  3943. }
  3944. #u16568_div {
  3945. border-width:0px;
  3946. position:absolute;
  3947. left:0px;
  3948. top:0px;
  3949. width:141px;
  3950. height:30px;
  3951. background:inherit;
  3952. background-color:rgba(255, 255, 255, 0);
  3953. border:none;
  3954. border-left:0px;
  3955. border-top:0px;
  3956. border-right:0px;
  3957. border-radius:0px;
  3958. border-bottom-right-radius:0px;
  3959. border-bottom-left-radius:0px;
  3960. -moz-box-shadow:none;
  3961. -webkit-box-shadow:none;
  3962. box-shadow:none;
  3963. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3964. font-weight:400;
  3965. font-style:normal;
  3966. font-size:14px;
  3967. line-height:30px;
  3968. }
  3969. #u16568 {
  3970. border-width:0px;
  3971. position:absolute;
  3972. left:1675px;
  3973. top:276px;
  3974. width:141px;
  3975. height:30px;
  3976. display:flex;
  3977. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3978. font-weight:400;
  3979. font-style:normal;
  3980. font-size:14px;
  3981. line-height:30px;
  3982. }
  3983. #u16568 .text {
  3984. position:absolute;
  3985. align-self:flex-start;
  3986. padding:0px 0px 0px 0px;
  3987. box-sizing:border-box;
  3988. width:100%;
  3989. }
  3990. #u16568_text {
  3991. border-width:0px;
  3992. white-space:nowrap;
  3993. text-transform:none;
  3994. }
  3995. #u16569_div {
  3996. border-width:0px;
  3997. position:absolute;
  3998. left:0px;
  3999. top:0px;
  4000. width:71px;
  4001. height:30px;
  4002. background:inherit;
  4003. background-color:rgba(255, 255, 255, 0);
  4004. border:none;
  4005. border-left:0px;
  4006. border-top:0px;
  4007. border-right:0px;
  4008. border-radius:0px;
  4009. border-bottom-right-radius:0px;
  4010. border-bottom-left-radius:0px;
  4011. -moz-box-shadow:none;
  4012. -webkit-box-shadow:none;
  4013. box-shadow:none;
  4014. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4015. font-weight:400;
  4016. font-style:normal;
  4017. font-size:14px;
  4018. color:#7F7F7F;
  4019. line-height:30px;
  4020. }
  4021. #u16569 {
  4022. border-width:0px;
  4023. position:absolute;
  4024. left:1157px;
  4025. top:356px;
  4026. width:71px;
  4027. height:30px;
  4028. display:flex;
  4029. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4030. font-weight:400;
  4031. font-style:normal;
  4032. font-size:14px;
  4033. color:#7F7F7F;
  4034. line-height:30px;
  4035. }
  4036. #u16569 .text {
  4037. position:absolute;
  4038. align-self:flex-start;
  4039. padding:0px 0px 0px 0px;
  4040. box-sizing:border-box;
  4041. width:100%;
  4042. }
  4043. #u16569_text {
  4044. border-width:0px;
  4045. white-space:nowrap;
  4046. text-transform:none;
  4047. }
  4048. #u16570_div {
  4049. border-width:0px;
  4050. position:absolute;
  4051. left:0px;
  4052. top:0px;
  4053. width:29px;
  4054. height:30px;
  4055. background:inherit;
  4056. background-color:rgba(255, 255, 255, 0);
  4057. border:none;
  4058. border-left:0px;
  4059. border-top:0px;
  4060. border-right:0px;
  4061. border-radius:0px;
  4062. border-bottom-right-radius:0px;
  4063. border-bottom-left-radius:0px;
  4064. -moz-box-shadow:none;
  4065. -webkit-box-shadow:none;
  4066. box-shadow:none;
  4067. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4068. font-weight:400;
  4069. font-style:normal;
  4070. font-size:14px;
  4071. line-height:30px;
  4072. }
  4073. #u16570 {
  4074. border-width:0px;
  4075. position:absolute;
  4076. left:1237px;
  4077. top:356px;
  4078. width:29px;
  4079. height:30px;
  4080. display:flex;
  4081. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4082. font-weight:400;
  4083. font-style:normal;
  4084. font-size:14px;
  4085. line-height:30px;
  4086. }
  4087. #u16570 .text {
  4088. position:absolute;
  4089. align-self:flex-start;
  4090. padding:0px 0px 0px 0px;
  4091. box-sizing:border-box;
  4092. width:100%;
  4093. }
  4094. #u16570_text {
  4095. border-width:0px;
  4096. white-space:nowrap;
  4097. text-transform:none;
  4098. }
  4099. #u16571_div {
  4100. border-width:0px;
  4101. position:absolute;
  4102. left:0px;
  4103. top:0px;
  4104. width:71px;
  4105. height:30px;
  4106. background:inherit;
  4107. background-color:rgba(255, 255, 255, 0);
  4108. border:none;
  4109. border-left:0px;
  4110. border-top:0px;
  4111. border-right:0px;
  4112. border-radius:0px;
  4113. border-bottom-right-radius:0px;
  4114. border-bottom-left-radius:0px;
  4115. -moz-box-shadow:none;
  4116. -webkit-box-shadow:none;
  4117. box-shadow:none;
  4118. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4119. font-weight:400;
  4120. font-style:normal;
  4121. font-size:14px;
  4122. color:#7F7F7F;
  4123. line-height:30px;
  4124. }
  4125. #u16571 {
  4126. border-width:0px;
  4127. position:absolute;
  4128. left:1157px;
  4129. top:316px;
  4130. width:71px;
  4131. height:30px;
  4132. display:flex;
  4133. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4134. font-weight:400;
  4135. font-style:normal;
  4136. font-size:14px;
  4137. color:#7F7F7F;
  4138. line-height:30px;
  4139. }
  4140. #u16571 .text {
  4141. position:absolute;
  4142. align-self:flex-start;
  4143. padding:0px 0px 0px 0px;
  4144. box-sizing:border-box;
  4145. width:100%;
  4146. }
  4147. #u16571_text {
  4148. border-width:0px;
  4149. white-space:nowrap;
  4150. text-transform:none;
  4151. }
  4152. #u16572_div {
  4153. border-width:0px;
  4154. position:absolute;
  4155. left:0px;
  4156. top:0px;
  4157. width:57px;
  4158. height:30px;
  4159. background:inherit;
  4160. background-color:rgba(255, 255, 255, 0);
  4161. border:none;
  4162. border-left:0px;
  4163. border-top:0px;
  4164. border-right:0px;
  4165. border-radius:0px;
  4166. border-bottom-right-radius:0px;
  4167. border-bottom-left-radius:0px;
  4168. -moz-box-shadow:none;
  4169. -webkit-box-shadow:none;
  4170. box-shadow:none;
  4171. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4172. font-weight:400;
  4173. font-style:normal;
  4174. font-size:14px;
  4175. line-height:30px;
  4176. }
  4177. #u16572 {
  4178. border-width:0px;
  4179. position:absolute;
  4180. left:1237px;
  4181. top:316px;
  4182. width:57px;
  4183. height:30px;
  4184. display:flex;
  4185. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4186. font-weight:400;
  4187. font-style:normal;
  4188. font-size:14px;
  4189. line-height:30px;
  4190. }
  4191. #u16572 .text {
  4192. position:absolute;
  4193. align-self:flex-start;
  4194. padding:0px 0px 0px 0px;
  4195. box-sizing:border-box;
  4196. width:100%;
  4197. }
  4198. #u16572_text {
  4199. border-width:0px;
  4200. white-space:nowrap;
  4201. text-transform:none;
  4202. }
  4203. #u16573_div {
  4204. border-width:0px;
  4205. position:absolute;
  4206. left:0px;
  4207. top:0px;
  4208. width:71px;
  4209. height:30px;
  4210. background:inherit;
  4211. background-color:rgba(255, 255, 255, 0);
  4212. border:none;
  4213. border-left:0px;
  4214. border-top:0px;
  4215. border-right:0px;
  4216. border-radius:0px;
  4217. border-bottom-right-radius:0px;
  4218. border-bottom-left-radius:0px;
  4219. -moz-box-shadow:none;
  4220. -webkit-box-shadow:none;
  4221. box-shadow:none;
  4222. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4223. font-weight:400;
  4224. font-style:normal;
  4225. font-size:14px;
  4226. color:#7F7F7F;
  4227. line-height:30px;
  4228. }
  4229. #u16573 {
  4230. border-width:0px;
  4231. position:absolute;
  4232. left:1595px;
  4233. top:316px;
  4234. width:71px;
  4235. height:30px;
  4236. display:flex;
  4237. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4238. font-weight:400;
  4239. font-style:normal;
  4240. font-size:14px;
  4241. color:#7F7F7F;
  4242. line-height:30px;
  4243. }
  4244. #u16573 .text {
  4245. position:absolute;
  4246. align-self:flex-start;
  4247. padding:0px 0px 0px 0px;
  4248. box-sizing:border-box;
  4249. width:100%;
  4250. }
  4251. #u16573_text {
  4252. border-width:0px;
  4253. white-space:nowrap;
  4254. text-transform:none;
  4255. }
  4256. #u16574_div {
  4257. border-width:0px;
  4258. position:absolute;
  4259. left:0px;
  4260. top:0px;
  4261. width:57px;
  4262. height:30px;
  4263. background:inherit;
  4264. background-color:rgba(255, 255, 255, 0);
  4265. border:none;
  4266. border-left:0px;
  4267. border-top:0px;
  4268. border-right:0px;
  4269. border-radius:0px;
  4270. border-bottom-right-radius:0px;
  4271. border-bottom-left-radius:0px;
  4272. -moz-box-shadow:none;
  4273. -webkit-box-shadow:none;
  4274. box-shadow:none;
  4275. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4276. font-weight:400;
  4277. font-style:normal;
  4278. font-size:14px;
  4279. line-height:30px;
  4280. }
  4281. #u16574 {
  4282. border-width:0px;
  4283. position:absolute;
  4284. left:1675px;
  4285. top:316px;
  4286. width:57px;
  4287. height:30px;
  4288. display:flex;
  4289. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4290. font-weight:400;
  4291. font-style:normal;
  4292. font-size:14px;
  4293. line-height:30px;
  4294. }
  4295. #u16574 .text {
  4296. position:absolute;
  4297. align-self:flex-start;
  4298. padding:0px 0px 0px 0px;
  4299. box-sizing:border-box;
  4300. width:100%;
  4301. }
  4302. #u16574_text {
  4303. border-width:0px;
  4304. white-space:nowrap;
  4305. text-transform:none;
  4306. }
  4307. #u16575_div {
  4308. border-width:0px;
  4309. position:absolute;
  4310. left:0px;
  4311. top:0px;
  4312. width:71px;
  4313. height:30px;
  4314. background:inherit;
  4315. background-color:rgba(255, 255, 255, 0);
  4316. border:none;
  4317. border-left:0px;
  4318. border-top:0px;
  4319. border-right:0px;
  4320. border-radius:0px;
  4321. border-bottom-right-radius:0px;
  4322. border-bottom-left-radius:0px;
  4323. -moz-box-shadow:none;
  4324. -webkit-box-shadow:none;
  4325. box-shadow:none;
  4326. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4327. font-weight:400;
  4328. font-style:normal;
  4329. font-size:14px;
  4330. color:#7F7F7F;
  4331. line-height:30px;
  4332. }
  4333. #u16575 {
  4334. border-width:0px;
  4335. position:absolute;
  4336. left:1157px;
  4337. top:276px;
  4338. width:71px;
  4339. height:30px;
  4340. display:flex;
  4341. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4342. font-weight:400;
  4343. font-style:normal;
  4344. font-size:14px;
  4345. color:#7F7F7F;
  4346. line-height:30px;
  4347. }
  4348. #u16575 .text {
  4349. position:absolute;
  4350. align-self:flex-start;
  4351. padding:0px 0px 0px 0px;
  4352. box-sizing:border-box;
  4353. width:100%;
  4354. }
  4355. #u16575_text {
  4356. border-width:0px;
  4357. white-space:nowrap;
  4358. text-transform:none;
  4359. }
  4360. #u16576_div {
  4361. border-width:0px;
  4362. position:absolute;
  4363. left:0px;
  4364. top:0px;
  4365. width:57px;
  4366. height:30px;
  4367. background:inherit;
  4368. background-color:rgba(255, 255, 255, 0);
  4369. border:none;
  4370. border-left:0px;
  4371. border-top:0px;
  4372. border-right:0px;
  4373. border-radius:0px;
  4374. border-bottom-right-radius:0px;
  4375. border-bottom-left-radius:0px;
  4376. -moz-box-shadow:none;
  4377. -webkit-box-shadow:none;
  4378. box-shadow:none;
  4379. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4380. font-weight:400;
  4381. font-style:normal;
  4382. font-size:14px;
  4383. line-height:30px;
  4384. }
  4385. #u16576 {
  4386. border-width:0px;
  4387. position:absolute;
  4388. left:1237px;
  4389. top:276px;
  4390. width:57px;
  4391. height:30px;
  4392. display:flex;
  4393. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4394. font-weight:400;
  4395. font-style:normal;
  4396. font-size:14px;
  4397. line-height:30px;
  4398. }
  4399. #u16576 .text {
  4400. position:absolute;
  4401. align-self:flex-start;
  4402. padding:0px 0px 0px 0px;
  4403. box-sizing:border-box;
  4404. width:100%;
  4405. }
  4406. #u16576_text {
  4407. border-width:0px;
  4408. white-space:nowrap;
  4409. text-transform:none;
  4410. }
  4411. #u16577_div {
  4412. border-width:0px;
  4413. position:absolute;
  4414. left:0px;
  4415. top:0px;
  4416. width:85px;
  4417. height:30px;
  4418. background:inherit;
  4419. background-color:rgba(255, 255, 255, 0);
  4420. border:none;
  4421. border-left:0px;
  4422. border-top:0px;
  4423. border-right:0px;
  4424. border-radius:0px;
  4425. border-bottom-right-radius:0px;
  4426. border-bottom-left-radius:0px;
  4427. -moz-box-shadow:none;
  4428. -webkit-box-shadow:none;
  4429. box-shadow:none;
  4430. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4431. font-weight:400;
  4432. font-style:normal;
  4433. font-size:14px;
  4434. color:#7F7F7F;
  4435. line-height:30px;
  4436. }
  4437. #u16577 {
  4438. border-width:0px;
  4439. position:absolute;
  4440. left:1596px;
  4441. top:221px;
  4442. width:85px;
  4443. height:30px;
  4444. display:flex;
  4445. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4446. font-weight:400;
  4447. font-style:normal;
  4448. font-size:14px;
  4449. color:#7F7F7F;
  4450. line-height:30px;
  4451. }
  4452. #u16577 .text {
  4453. position:absolute;
  4454. align-self:flex-start;
  4455. padding:0px 0px 0px 0px;
  4456. box-sizing:border-box;
  4457. width:100%;
  4458. }
  4459. #u16577_text {
  4460. border-width:0px;
  4461. white-space:nowrap;
  4462. text-transform:none;
  4463. }
  4464. #u16578_div {
  4465. border-width:0px;
  4466. position:absolute;
  4467. left:0px;
  4468. top:0px;
  4469. width:197px;
  4470. height:30px;
  4471. background:inherit;
  4472. background-color:rgba(255, 255, 255, 0);
  4473. border:none;
  4474. border-left:0px;
  4475. border-top:0px;
  4476. border-right:0px;
  4477. border-radius:0px;
  4478. border-bottom-right-radius:0px;
  4479. border-bottom-left-radius:0px;
  4480. -moz-box-shadow:none;
  4481. -webkit-box-shadow:none;
  4482. box-shadow:none;
  4483. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4484. font-weight:400;
  4485. font-style:normal;
  4486. font-size:14px;
  4487. line-height:30px;
  4488. }
  4489. #u16578 {
  4490. border-width:0px;
  4491. position:absolute;
  4492. left:1676px;
  4493. top:221px;
  4494. width:197px;
  4495. height:30px;
  4496. display:flex;
  4497. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4498. font-weight:400;
  4499. font-style:normal;
  4500. font-size:14px;
  4501. line-height:30px;
  4502. }
  4503. #u16578 .text {
  4504. position:absolute;
  4505. align-self:flex-start;
  4506. padding:0px 0px 0px 0px;
  4507. box-sizing:border-box;
  4508. width:100%;
  4509. }
  4510. #u16578_text {
  4511. border-width:0px;
  4512. white-space:nowrap;
  4513. text-transform:none;
  4514. }
  4515. #u16579_div {
  4516. border-width:0px;
  4517. position:absolute;
  4518. left:0px;
  4519. top:0px;
  4520. width:85px;
  4521. height:30px;
  4522. background:inherit;
  4523. background-color:rgba(255, 255, 255, 0);
  4524. border:none;
  4525. border-left:0px;
  4526. border-top:0px;
  4527. border-right:0px;
  4528. border-radius:0px;
  4529. border-bottom-right-radius:0px;
  4530. border-bottom-left-radius:0px;
  4531. -moz-box-shadow:none;
  4532. -webkit-box-shadow:none;
  4533. box-shadow:none;
  4534. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4535. font-weight:400;
  4536. font-style:normal;
  4537. font-size:14px;
  4538. color:#7F7F7F;
  4539. line-height:30px;
  4540. }
  4541. #u16579 {
  4542. border-width:0px;
  4543. position:absolute;
  4544. left:1157px;
  4545. top:553px;
  4546. width:85px;
  4547. height:30px;
  4548. display:flex;
  4549. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4550. font-weight:400;
  4551. font-style:normal;
  4552. font-size:14px;
  4553. color:#7F7F7F;
  4554. line-height:30px;
  4555. }
  4556. #u16579 .text {
  4557. position:absolute;
  4558. align-self:flex-start;
  4559. padding:0px 0px 0px 0px;
  4560. box-sizing:border-box;
  4561. width:100%;
  4562. }
  4563. #u16579_text {
  4564. border-width:0px;
  4565. white-space:nowrap;
  4566. text-transform:none;
  4567. }
  4568. #u16580_img {
  4569. border-width:0px;
  4570. position:absolute;
  4571. left:0px;
  4572. top:0px;
  4573. width:153px;
  4574. height:107px;
  4575. }
  4576. #u16580 {
  4577. border-width:0px;
  4578. position:absolute;
  4579. left:1157px;
  4580. top:583px;
  4581. width:153px;
  4582. height:107px;
  4583. display:flex;
  4584. }
  4585. #u16580 .text {
  4586. position:absolute;
  4587. align-self:center;
  4588. padding:2px 2px 2px 2px;
  4589. box-sizing:border-box;
  4590. width:100%;
  4591. }
  4592. #u16580_text {
  4593. border-width:0px;
  4594. word-wrap:break-word;
  4595. text-transform:none;
  4596. visibility:hidden;
  4597. }
  4598. #u16581_img {
  4599. border-width:0px;
  4600. position:absolute;
  4601. left:0px;
  4602. top:0px;
  4603. width:153px;
  4604. height:107px;
  4605. }
  4606. #u16581 {
  4607. border-width:0px;
  4608. position:absolute;
  4609. left:1320px;
  4610. top:583px;
  4611. width:153px;
  4612. height:107px;
  4613. display:flex;
  4614. }
  4615. #u16581 .text {
  4616. position:absolute;
  4617. align-self:center;
  4618. padding:2px 2px 2px 2px;
  4619. box-sizing:border-box;
  4620. width:100%;
  4621. }
  4622. #u16581_text {
  4623. border-width:0px;
  4624. word-wrap:break-word;
  4625. text-transform:none;
  4626. visibility:hidden;
  4627. }
  4628. #u16582_div {
  4629. border-width:0px;
  4630. position:absolute;
  4631. left:0px;
  4632. top:0px;
  4633. width:71px;
  4634. height:30px;
  4635. background:inherit;
  4636. background-color:rgba(255, 255, 255, 0);
  4637. border:none;
  4638. border-left:0px;
  4639. border-top:0px;
  4640. border-right:0px;
  4641. border-radius:0px;
  4642. border-bottom-right-radius:0px;
  4643. border-bottom-left-radius:0px;
  4644. -moz-box-shadow:none;
  4645. -webkit-box-shadow:none;
  4646. box-shadow:none;
  4647. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4648. font-weight:400;
  4649. font-style:normal;
  4650. font-size:14px;
  4651. color:#7F7F7F;
  4652. line-height:30px;
  4653. }
  4654. #u16582 {
  4655. border-width:0px;
  4656. position:absolute;
  4657. left:1571px;
  4658. top:553px;
  4659. width:71px;
  4660. height:30px;
  4661. display:flex;
  4662. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4663. font-weight:400;
  4664. font-style:normal;
  4665. font-size:14px;
  4666. color:#7F7F7F;
  4667. line-height:30px;
  4668. }
  4669. #u16582 .text {
  4670. position:absolute;
  4671. align-self:flex-start;
  4672. padding:0px 0px 0px 0px;
  4673. box-sizing:border-box;
  4674. width:100%;
  4675. }
  4676. #u16582_text {
  4677. border-width:0px;
  4678. white-space:nowrap;
  4679. text-transform:none;
  4680. }
  4681. #u16583_img {
  4682. border-width:0px;
  4683. position:absolute;
  4684. left:0px;
  4685. top:0px;
  4686. width:146px;
  4687. height:102px;
  4688. }
  4689. #u16583 {
  4690. border-width:0px;
  4691. position:absolute;
  4692. left:1571px;
  4693. top:583px;
  4694. width:146px;
  4695. height:102px;
  4696. display:flex;
  4697. }
  4698. #u16583 .text {
  4699. position:absolute;
  4700. align-self:center;
  4701. padding:2px 2px 2px 2px;
  4702. box-sizing:border-box;
  4703. width:100%;
  4704. }
  4705. #u16583_text {
  4706. border-width:0px;
  4707. word-wrap:break-word;
  4708. text-transform:none;
  4709. visibility:hidden;
  4710. }
  4711. #u16584_img {
  4712. border-width:0px;
  4713. position:absolute;
  4714. left:0px;
  4715. top:0px;
  4716. width:146px;
  4717. height:102px;
  4718. }
  4719. #u16584 {
  4720. border-width:0px;
  4721. position:absolute;
  4722. left:1727px;
  4723. top:583px;
  4724. width:146px;
  4725. height:102px;
  4726. display:flex;
  4727. }
  4728. #u16584 .text {
  4729. position:absolute;
  4730. align-self:center;
  4731. padding:2px 2px 2px 2px;
  4732. box-sizing:border-box;
  4733. width:100%;
  4734. }
  4735. #u16584_text {
  4736. border-width:0px;
  4737. word-wrap:break-word;
  4738. text-transform:none;
  4739. visibility:hidden;
  4740. }
  4741. #u16585_img {
  4742. border-width:0px;
  4743. position:absolute;
  4744. left:0px;
  4745. top:0px;
  4746. width:146px;
  4747. height:102px;
  4748. }
  4749. #u16585 {
  4750. border-width:0px;
  4751. position:absolute;
  4752. left:1883px;
  4753. top:583px;
  4754. width:146px;
  4755. height:102px;
  4756. display:flex;
  4757. }
  4758. #u16585 .text {
  4759. position:absolute;
  4760. align-self:center;
  4761. padding:2px 2px 2px 2px;
  4762. box-sizing:border-box;
  4763. width:100%;
  4764. }
  4765. #u16585_text {
  4766. border-width:0px;
  4767. word-wrap:break-word;
  4768. text-transform:none;
  4769. visibility:hidden;
  4770. }
  4771. #u16586_div {
  4772. border-width:0px;
  4773. position:absolute;
  4774. left:0px;
  4775. top:0px;
  4776. width:71px;
  4777. height:30px;
  4778. background:inherit;
  4779. background-color:rgba(255, 255, 255, 0);
  4780. border:none;
  4781. border-left:0px;
  4782. border-top:0px;
  4783. border-right:0px;
  4784. border-radius:0px;
  4785. border-bottom-right-radius:0px;
  4786. border-bottom-left-radius:0px;
  4787. -moz-box-shadow:none;
  4788. -webkit-box-shadow:none;
  4789. box-shadow:none;
  4790. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4791. font-weight:400;
  4792. font-style:normal;
  4793. font-size:14px;
  4794. color:#7F7F7F;
  4795. line-height:30px;
  4796. }
  4797. #u16586 {
  4798. border-width:0px;
  4799. position:absolute;
  4800. left:1157px;
  4801. top:476px;
  4802. width:71px;
  4803. height:30px;
  4804. display:flex;
  4805. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4806. font-weight:400;
  4807. font-style:normal;
  4808. font-size:14px;
  4809. color:#7F7F7F;
  4810. line-height:30px;
  4811. }
  4812. #u16586 .text {
  4813. position:absolute;
  4814. align-self:flex-start;
  4815. padding:0px 0px 0px 0px;
  4816. box-sizing:border-box;
  4817. width:100%;
  4818. }
  4819. #u16586_text {
  4820. border-width:0px;
  4821. white-space:nowrap;
  4822. text-transform:none;
  4823. }
  4824. #u16587_div {
  4825. border-width:0px;
  4826. position:absolute;
  4827. left:0px;
  4828. top:0px;
  4829. width:337px;
  4830. height:30px;
  4831. background:inherit;
  4832. background-color:rgba(255, 255, 255, 0);
  4833. border:none;
  4834. border-left:0px;
  4835. border-top:0px;
  4836. border-right:0px;
  4837. border-radius:0px;
  4838. border-bottom-right-radius:0px;
  4839. border-bottom-left-radius:0px;
  4840. -moz-box-shadow:none;
  4841. -webkit-box-shadow:none;
  4842. box-shadow:none;
  4843. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4844. font-weight:400;
  4845. font-style:normal;
  4846. font-size:14px;
  4847. line-height:30px;
  4848. }
  4849. #u16587 {
  4850. border-width:0px;
  4851. position:absolute;
  4852. left:1237px;
  4853. top:476px;
  4854. width:337px;
  4855. height:30px;
  4856. display:flex;
  4857. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4858. font-weight:400;
  4859. font-style:normal;
  4860. font-size:14px;
  4861. line-height:30px;
  4862. }
  4863. #u16587 .text {
  4864. position:absolute;
  4865. align-self:flex-start;
  4866. padding:0px 0px 0px 0px;
  4867. box-sizing:border-box;
  4868. width:100%;
  4869. }
  4870. #u16587_text {
  4871. border-width:0px;
  4872. white-space:nowrap;
  4873. text-transform:none;
  4874. }
  4875. #u16588_div {
  4876. border-width:0px;
  4877. position:absolute;
  4878. left:0px;
  4879. top:0px;
  4880. width:80px;
  4881. height:30px;
  4882. background:inherit;
  4883. background-color:rgba(255, 255, 255, 0);
  4884. border:none;
  4885. border-left:0px;
  4886. border-top:0px;
  4887. border-right:0px;
  4888. border-radius:0px;
  4889. border-bottom-right-radius:0px;
  4890. border-bottom-left-radius:0px;
  4891. -moz-box-shadow:none;
  4892. -webkit-box-shadow:none;
  4893. box-shadow:none;
  4894. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4895. font-weight:400;
  4896. font-style:normal;
  4897. font-size:14px;
  4898. color:#7F7F7F;
  4899. line-height:30px;
  4900. }
  4901. #u16588 {
  4902. border-width:0px;
  4903. position:absolute;
  4904. left:1595px;
  4905. top:396px;
  4906. width:80px;
  4907. height:30px;
  4908. display:flex;
  4909. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4910. font-weight:400;
  4911. font-style:normal;
  4912. font-size:14px;
  4913. color:#7F7F7F;
  4914. line-height:30px;
  4915. }
  4916. #u16588 .text {
  4917. position:absolute;
  4918. align-self:flex-start;
  4919. padding:0px 0px 0px 0px;
  4920. box-sizing:border-box;
  4921. width:100%;
  4922. }
  4923. #u16588_text {
  4924. border-width:0px;
  4925. word-wrap:break-word;
  4926. text-transform:none;
  4927. }
  4928. #u16589_div {
  4929. border-width:0px;
  4930. position:absolute;
  4931. left:0px;
  4932. top:0px;
  4933. width:82px;
  4934. height:30px;
  4935. background:inherit;
  4936. background-color:rgba(255, 255, 255, 0);
  4937. border:none;
  4938. border-left:0px;
  4939. border-top:0px;
  4940. border-right:0px;
  4941. border-radius:0px;
  4942. border-bottom-right-radius:0px;
  4943. border-bottom-left-radius:0px;
  4944. -moz-box-shadow:none;
  4945. -webkit-box-shadow:none;
  4946. box-shadow:none;
  4947. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4948. font-weight:400;
  4949. font-style:normal;
  4950. font-size:14px;
  4951. line-height:30px;
  4952. }
  4953. #u16589 {
  4954. border-width:0px;
  4955. position:absolute;
  4956. left:1675px;
  4957. top:396px;
  4958. width:82px;
  4959. height:30px;
  4960. display:flex;
  4961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4962. font-weight:400;
  4963. font-style:normal;
  4964. font-size:14px;
  4965. line-height:30px;
  4966. }
  4967. #u16589 .text {
  4968. position:absolute;
  4969. align-self:flex-start;
  4970. padding:0px 0px 0px 0px;
  4971. box-sizing:border-box;
  4972. width:100%;
  4973. }
  4974. #u16589_text {
  4975. border-width:0px;
  4976. white-space:nowrap;
  4977. text-transform:none;
  4978. }
  4979. #u16590_div {
  4980. border-width:0px;
  4981. position:absolute;
  4982. left:0px;
  4983. top:0px;
  4984. width:57px;
  4985. height:30px;
  4986. background:inherit;
  4987. background-color:rgba(255, 255, 255, 0);
  4988. border:none;
  4989. border-left:0px;
  4990. border-top:0px;
  4991. border-right:0px;
  4992. border-radius:0px;
  4993. border-bottom-right-radius:0px;
  4994. border-bottom-left-radius:0px;
  4995. -moz-box-shadow:none;
  4996. -webkit-box-shadow:none;
  4997. box-shadow:none;
  4998. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4999. font-weight:400;
  5000. font-style:normal;
  5001. font-size:14px;
  5002. color:#7F7F7F;
  5003. line-height:30px;
  5004. }
  5005. #u16590 {
  5006. border-width:0px;
  5007. position:absolute;
  5008. left:1157px;
  5009. top:396px;
  5010. width:57px;
  5011. height:30px;
  5012. display:flex;
  5013. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5014. font-weight:400;
  5015. font-style:normal;
  5016. font-size:14px;
  5017. color:#7F7F7F;
  5018. line-height:30px;
  5019. }
  5020. #u16590 .text {
  5021. position:absolute;
  5022. align-self:flex-start;
  5023. padding:0px 0px 0px 0px;
  5024. box-sizing:border-box;
  5025. width:100%;
  5026. }
  5027. #u16590_text {
  5028. border-width:0px;
  5029. white-space:nowrap;
  5030. text-transform:none;
  5031. }
  5032. #u16591_div {
  5033. border-width:0px;
  5034. position:absolute;
  5035. left:0px;
  5036. top:0px;
  5037. width:29px;
  5038. height:30px;
  5039. background:inherit;
  5040. background-color:rgba(255, 255, 255, 0);
  5041. border:none;
  5042. border-left:0px;
  5043. border-top:0px;
  5044. border-right:0px;
  5045. border-radius:0px;
  5046. border-bottom-right-radius:0px;
  5047. border-bottom-left-radius:0px;
  5048. -moz-box-shadow:none;
  5049. -webkit-box-shadow:none;
  5050. box-shadow:none;
  5051. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5052. font-weight:400;
  5053. font-style:normal;
  5054. font-size:14px;
  5055. line-height:30px;
  5056. }
  5057. #u16591 {
  5058. border-width:0px;
  5059. position:absolute;
  5060. left:1237px;
  5061. top:396px;
  5062. width:29px;
  5063. height:30px;
  5064. display:flex;
  5065. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5066. font-weight:400;
  5067. font-style:normal;
  5068. font-size:14px;
  5069. line-height:30px;
  5070. }
  5071. #u16591 .text {
  5072. position:absolute;
  5073. align-self:flex-start;
  5074. padding:0px 0px 0px 0px;
  5075. box-sizing:border-box;
  5076. width:100%;
  5077. }
  5078. #u16591_text {
  5079. border-width:0px;
  5080. white-space:nowrap;
  5081. text-transform:none;
  5082. }
  5083. #u16592_div {
  5084. border-width:0px;
  5085. position:absolute;
  5086. left:0px;
  5087. top:0px;
  5088. width:80px;
  5089. height:30px;
  5090. background:inherit;
  5091. background-color:rgba(255, 255, 255, 0);
  5092. border:none;
  5093. border-left:0px;
  5094. border-top:0px;
  5095. border-right:0px;
  5096. border-radius:0px;
  5097. border-bottom-right-radius:0px;
  5098. border-bottom-left-radius:0px;
  5099. -moz-box-shadow:none;
  5100. -webkit-box-shadow:none;
  5101. box-shadow:none;
  5102. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5103. font-weight:400;
  5104. font-style:normal;
  5105. font-size:14px;
  5106. color:#7F7F7F;
  5107. line-height:30px;
  5108. }
  5109. #u16592 {
  5110. border-width:0px;
  5111. position:absolute;
  5112. left:1595px;
  5113. top:436px;
  5114. width:80px;
  5115. height:30px;
  5116. display:flex;
  5117. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5118. font-weight:400;
  5119. font-style:normal;
  5120. font-size:14px;
  5121. color:#7F7F7F;
  5122. line-height:30px;
  5123. }
  5124. #u16592 .text {
  5125. position:absolute;
  5126. align-self:flex-start;
  5127. padding:0px 0px 0px 0px;
  5128. box-sizing:border-box;
  5129. width:100%;
  5130. }
  5131. #u16592_text {
  5132. border-width:0px;
  5133. word-wrap:break-word;
  5134. text-transform:none;
  5135. }
  5136. #u16593_div {
  5137. border-width:0px;
  5138. position:absolute;
  5139. left:0px;
  5140. top:0px;
  5141. width:239px;
  5142. height:30px;
  5143. background:inherit;
  5144. background-color:rgba(255, 255, 255, 0);
  5145. border:none;
  5146. border-left:0px;
  5147. border-top:0px;
  5148. border-right:0px;
  5149. border-radius:0px;
  5150. border-bottom-right-radius:0px;
  5151. border-bottom-left-radius:0px;
  5152. -moz-box-shadow:none;
  5153. -webkit-box-shadow:none;
  5154. box-shadow:none;
  5155. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5156. font-weight:400;
  5157. font-style:normal;
  5158. font-size:14px;
  5159. line-height:30px;
  5160. }
  5161. #u16593 {
  5162. border-width:0px;
  5163. position:absolute;
  5164. left:1675px;
  5165. top:436px;
  5166. width:239px;
  5167. height:30px;
  5168. display:flex;
  5169. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5170. font-weight:400;
  5171. font-style:normal;
  5172. font-size:14px;
  5173. line-height:30px;
  5174. }
  5175. #u16593 .text {
  5176. position:absolute;
  5177. align-self:flex-start;
  5178. padding:0px 0px 0px 0px;
  5179. box-sizing:border-box;
  5180. width:100%;
  5181. }
  5182. #u16593_text {
  5183. border-width:0px;
  5184. white-space:nowrap;
  5185. text-transform:none;
  5186. }
  5187. #u16594_div {
  5188. border-width:0px;
  5189. position:absolute;
  5190. left:0px;
  5191. top:0px;
  5192. width:71px;
  5193. height:30px;
  5194. background:inherit;
  5195. background-color:rgba(255, 255, 255, 0);
  5196. border:none;
  5197. border-left:0px;
  5198. border-top:0px;
  5199. border-right:0px;
  5200. border-radius:0px;
  5201. border-bottom-right-radius:0px;
  5202. border-bottom-left-radius:0px;
  5203. -moz-box-shadow:none;
  5204. -webkit-box-shadow:none;
  5205. box-shadow:none;
  5206. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5207. font-weight:400;
  5208. font-style:normal;
  5209. font-size:14px;
  5210. color:#7F7F7F;
  5211. line-height:30px;
  5212. }
  5213. #u16594 {
  5214. border-width:0px;
  5215. position:absolute;
  5216. left:1157px;
  5217. top:436px;
  5218. width:71px;
  5219. height:30px;
  5220. display:flex;
  5221. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5222. font-weight:400;
  5223. font-style:normal;
  5224. font-size:14px;
  5225. color:#7F7F7F;
  5226. line-height:30px;
  5227. }
  5228. #u16594 .text {
  5229. position:absolute;
  5230. align-self:flex-start;
  5231. padding:0px 0px 0px 0px;
  5232. box-sizing:border-box;
  5233. width:100%;
  5234. }
  5235. #u16594_text {
  5236. border-width:0px;
  5237. white-space:nowrap;
  5238. text-transform:none;
  5239. }
  5240. #u16595_div {
  5241. border-width:0px;
  5242. position:absolute;
  5243. left:0px;
  5244. top:0px;
  5245. width:43px;
  5246. height:30px;
  5247. background:inherit;
  5248. background-color:rgba(255, 255, 255, 0);
  5249. border:none;
  5250. border-left:0px;
  5251. border-top:0px;
  5252. border-right:0px;
  5253. border-radius:0px;
  5254. border-bottom-right-radius:0px;
  5255. border-bottom-left-radius:0px;
  5256. -moz-box-shadow:none;
  5257. -webkit-box-shadow:none;
  5258. box-shadow:none;
  5259. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5260. font-weight:400;
  5261. font-style:normal;
  5262. font-size:14px;
  5263. line-height:30px;
  5264. }
  5265. #u16595 {
  5266. border-width:0px;
  5267. position:absolute;
  5268. left:1237px;
  5269. top:436px;
  5270. width:43px;
  5271. height:30px;
  5272. display:flex;
  5273. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5274. font-weight:400;
  5275. font-style:normal;
  5276. font-size:14px;
  5277. line-height:30px;
  5278. }
  5279. #u16595 .text {
  5280. position:absolute;
  5281. align-self:flex-start;
  5282. padding:0px 0px 0px 0px;
  5283. box-sizing:border-box;
  5284. width:100%;
  5285. }
  5286. #u16595_text {
  5287. border-width:0px;
  5288. white-space:nowrap;
  5289. text-transform:none;
  5290. }
  5291. #u16596 {
  5292. border-width:0px;
  5293. position:absolute;
  5294. left:0px;
  5295. top:0px;
  5296. width:0px;
  5297. height:0px;
  5298. }
  5299. #u16597_img {
  5300. border-width:0px;
  5301. position:absolute;
  5302. left:-5px;
  5303. top:-5px;
  5304. width:370px;
  5305. height:310px;
  5306. }
  5307. #u16597 {
  5308. border-width:0px;
  5309. position:absolute;
  5310. left:1627px;
  5311. top:874px;
  5312. width:360px;
  5313. height:300px;
  5314. display:flex;
  5315. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5316. font-weight:400;
  5317. font-style:normal;
  5318. font-size:12px;
  5319. color:#FFFFFF;
  5320. }
  5321. #u16597 .text {
  5322. position:absolute;
  5323. align-self:center;
  5324. padding:2px 2px 2px 2px;
  5325. box-sizing:border-box;
  5326. width:100%;
  5327. }
  5328. #u16597_text {
  5329. border-width:0px;
  5330. word-wrap:break-word;
  5331. text-transform:none;
  5332. visibility:hidden;
  5333. }
  5334. #u16598_div {
  5335. border-width:0px;
  5336. position:absolute;
  5337. left:0px;
  5338. top:0px;
  5339. width:37px;
  5340. height:25px;
  5341. background:inherit;
  5342. background-color:rgba(255, 255, 255, 0);
  5343. border:none;
  5344. border-radius:0px;
  5345. -moz-box-shadow:none;
  5346. -webkit-box-shadow:none;
  5347. box-shadow:none;
  5348. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5349. font-weight:500;
  5350. font-style:normal;
  5351. font-size:18px;
  5352. }
  5353. #u16598 {
  5354. border-width:0px;
  5355. position:absolute;
  5356. left:1650px;
  5357. top:890px;
  5358. width:37px;
  5359. height:25px;
  5360. display:flex;
  5361. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5362. font-weight:500;
  5363. font-style:normal;
  5364. font-size:18px;
  5365. }
  5366. #u16598 .text {
  5367. position:absolute;
  5368. align-self:flex-start;
  5369. padding:0px 0px 0px 0px;
  5370. box-sizing:border-box;
  5371. width:100%;
  5372. }
  5373. #u16598_text {
  5374. border-width:0px;
  5375. white-space:nowrap;
  5376. text-transform:none;
  5377. }
  5378. #u16599_img {
  5379. border-width:0px;
  5380. position:absolute;
  5381. left:0px;
  5382. top:0px;
  5383. width:8px;
  5384. height:8px;
  5385. }
  5386. #u16599 {
  5387. border-width:0px;
  5388. position:absolute;
  5389. left:1964px;
  5390. top:886px;
  5391. width:8px;
  5392. height:8px;
  5393. display:flex;
  5394. opacity:0.5;
  5395. }
  5396. #u16599 .text {
  5397. position:absolute;
  5398. align-self:center;
  5399. padding:2px 2px 2px 2px;
  5400. box-sizing:border-box;
  5401. width:100%;
  5402. }
  5403. #u16599_text {
  5404. border-width:0px;
  5405. word-wrap:break-word;
  5406. text-transform:none;
  5407. visibility:hidden;
  5408. }
  5409. #u16600_div {
  5410. border-width:0px;
  5411. position:absolute;
  5412. left:0px;
  5413. top:0px;
  5414. width:80px;
  5415. height:30px;
  5416. background:inherit;
  5417. background-color:rgba(51, 153, 255, 1);
  5418. border:none;
  5419. border-radius:4px;
  5420. -moz-box-shadow:none;
  5421. -webkit-box-shadow:none;
  5422. box-shadow:none;
  5423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5424. font-weight:400;
  5425. font-style:normal;
  5426. font-size:14px;
  5427. color:#FFFFFF;
  5428. }
  5429. #u16600 {
  5430. border-width:0px;
  5431. position:absolute;
  5432. left:1892px;
  5433. top:1124px;
  5434. width:80px;
  5435. height:30px;
  5436. display:flex;
  5437. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5438. font-weight:400;
  5439. font-style:normal;
  5440. font-size:14px;
  5441. color:#FFFFFF;
  5442. }
  5443. #u16600 .text {
  5444. position:absolute;
  5445. align-self:center;
  5446. padding:8px 0px 8px 0px;
  5447. box-sizing:border-box;
  5448. width:100%;
  5449. }
  5450. #u16600_text {
  5451. border-width:0px;
  5452. word-wrap:break-word;
  5453. text-transform:none;
  5454. }
  5455. #u16601 {
  5456. border-width:0px;
  5457. position:absolute;
  5458. left:0px;
  5459. top:0px;
  5460. width:0px;
  5461. height:0px;
  5462. }
  5463. #u16602_div {
  5464. border-width:0px;
  5465. position:absolute;
  5466. left:0px;
  5467. top:0px;
  5468. width:322px;
  5469. height:80px;
  5470. background:inherit;
  5471. background-color:rgba(255, 255, 255, 1);
  5472. box-sizing:border-box;
  5473. border-width:1px;
  5474. border-style:solid;
  5475. border-color:rgba(51, 153, 255, 1);
  5476. border-radius:2px;
  5477. -moz-box-shadow:none;
  5478. -webkit-box-shadow:none;
  5479. box-shadow:none;
  5480. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5481. font-weight:400;
  5482. font-style:normal;
  5483. font-size:12px;
  5484. color:#FFFFFF;
  5485. text-align:left;
  5486. }
  5487. #u16602 {
  5488. border-width:0px;
  5489. position:absolute;
  5490. left:1650px;
  5491. top:1024px;
  5492. width:322px;
  5493. height:80px;
  5494. display:flex;
  5495. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5496. font-weight:400;
  5497. font-style:normal;
  5498. font-size:12px;
  5499. color:#FFFFFF;
  5500. text-align:left;
  5501. }
  5502. #u16602 .text {
  5503. position:absolute;
  5504. align-self:center;
  5505. padding:8px 15px 8px 15px;
  5506. box-sizing:border-box;
  5507. width:100%;
  5508. }
  5509. #u16602_text {
  5510. border-width:0px;
  5511. word-wrap:break-word;
  5512. text-transform:none;
  5513. }
  5514. #u16603_div {
  5515. border-width:0px;
  5516. position:absolute;
  5517. left:0px;
  5518. top:0px;
  5519. width:99px;
  5520. height:20px;
  5521. background:inherit;
  5522. background-color:rgba(255, 255, 255, 0);
  5523. border:none;
  5524. border-radius:0px;
  5525. -moz-box-shadow:none;
  5526. -webkit-box-shadow:none;
  5527. box-shadow:none;
  5528. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5529. font-weight:400;
  5530. font-style:normal;
  5531. color:#D7D7D7;
  5532. }
  5533. #u16603 {
  5534. border-width:0px;
  5535. position:absolute;
  5536. left:1661px;
  5537. top:1035px;
  5538. width:99px;
  5539. height:20px;
  5540. display:flex;
  5541. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5542. font-weight:400;
  5543. font-style:normal;
  5544. color:#D7D7D7;
  5545. }
  5546. #u16603 .text {
  5547. position:absolute;
  5548. align-self:flex-start;
  5549. padding:0px 0px 0px 0px;
  5550. box-sizing:border-box;
  5551. width:100%;
  5552. }
  5553. #u16603_text {
  5554. border-width:0px;
  5555. white-space:nowrap;
  5556. text-transform:none;
  5557. }
  5558. #u16604_div {
  5559. border-width:0px;
  5560. position:absolute;
  5561. left:0px;
  5562. top:0px;
  5563. width:60px;
  5564. height:30px;
  5565. background:inherit;
  5566. background-color:rgba(255, 255, 255, 1);
  5567. box-sizing:border-box;
  5568. border-width:1px;
  5569. border-style:solid;
  5570. border-color:rgba(170, 170, 170, 1);
  5571. border-radius:4px;
  5572. -moz-box-shadow:none;
  5573. -webkit-box-shadow:none;
  5574. box-shadow:none;
  5575. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5576. font-weight:400;
  5577. font-style:normal;
  5578. font-size:14px;
  5579. }
  5580. #u16604 {
  5581. border-width:0px;
  5582. position:absolute;
  5583. left:1822px;
  5584. top:1124px;
  5585. width:60px;
  5586. height:30px;
  5587. display:flex;
  5588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5589. font-weight:400;
  5590. font-style:normal;
  5591. font-size:14px;
  5592. }
  5593. #u16604 .text {
  5594. position:absolute;
  5595. align-self:center;
  5596. padding:2px 2px 2px 2px;
  5597. box-sizing:border-box;
  5598. width:100%;
  5599. }
  5600. #u16604_text {
  5601. border-width:0px;
  5602. word-wrap:break-word;
  5603. text-transform:none;
  5604. }
  5605. #u16605_div {
  5606. border-width:0px;
  5607. position:absolute;
  5608. left:0px;
  5609. top:0px;
  5610. width:319px;
  5611. height:75px;
  5612. background:inherit;
  5613. background-color:rgba(255, 255, 255, 0);
  5614. border:none;
  5615. border-radius:0px;
  5616. -moz-box-shadow:none;
  5617. -webkit-box-shadow:none;
  5618. box-shadow:none;
  5619. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5620. font-weight:400;
  5621. font-style:normal;
  5622. font-size:14px;
  5623. line-height:25px;
  5624. }
  5625. #u16605 {
  5626. border-width:0px;
  5627. position:absolute;
  5628. left:1650px;
  5629. top:929px;
  5630. width:319px;
  5631. height:75px;
  5632. display:flex;
  5633. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5634. font-weight:400;
  5635. font-style:normal;
  5636. font-size:14px;
  5637. line-height:25px;
  5638. }
  5639. #u16605 .text {
  5640. position:absolute;
  5641. align-self:flex-start;
  5642. padding:0px 0px 0px 0px;
  5643. box-sizing:border-box;
  5644. width:100%;
  5645. }
  5646. #u16605_text {
  5647. border-width:0px;
  5648. word-wrap:break-word;
  5649. text-transform:none;
  5650. }