styles.css 110 KB

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