styles.css 184 KB

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