styles.css 181 KB

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