styles.css 105 KB

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