styles.css 148 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1388px;
  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. #u5558_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u5558 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u5558 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u5558_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u5559_div {
  50. border-width:0px;
  51. position:absolute;
  52. left:0px;
  53. top:0px;
  54. width:375px;
  55. height:1058px;
  56. background:inherit;
  57. background-color:rgba(242, 242, 242, 1);
  58. border:none;
  59. border-radius:0px;
  60. -moz-box-shadow:none;
  61. -webkit-box-shadow:none;
  62. box-shadow:none;
  63. }
  64. #u5559 {
  65. border-width:0px;
  66. position:absolute;
  67. left:29px;
  68. top:107px;
  69. width:375px;
  70. height:1058px;
  71. display:flex;
  72. }
  73. #u5559 .text {
  74. position:absolute;
  75. align-self:center;
  76. padding:2px 2px 2px 2px;
  77. box-sizing:border-box;
  78. width:100%;
  79. }
  80. #u5559_text {
  81. border-width:0px;
  82. word-wrap:break-word;
  83. text-transform:none;
  84. visibility:hidden;
  85. }
  86. #u5560_div {
  87. border-width:0px;
  88. position:absolute;
  89. left:0px;
  90. top:0px;
  91. width:375px;
  92. height:40px;
  93. background:inherit;
  94. background-color:rgba(255, 255, 255, 1);
  95. box-sizing:border-box;
  96. border-width:1px;
  97. border-style:solid;
  98. border-color:rgba(215, 215, 215, 1);
  99. border-left:0px;
  100. border-top:0px;
  101. border-right:0px;
  102. border-radius:0px;
  103. border-bottom-right-radius:0px;
  104. border-bottom-left-radius:0px;
  105. -moz-box-shadow:none;
  106. -webkit-box-shadow:none;
  107. box-shadow:none;
  108. }
  109. #u5560 {
  110. border-width:0px;
  111. position:absolute;
  112. left:29px;
  113. top:67px;
  114. width:375px;
  115. height:40px;
  116. display:flex;
  117. }
  118. #u5560 .text {
  119. position:absolute;
  120. align-self:center;
  121. padding:2px 2px 2px 2px;
  122. box-sizing:border-box;
  123. width:100%;
  124. }
  125. #u5560_text {
  126. border-width:0px;
  127. word-wrap:break-word;
  128. text-transform:none;
  129. visibility:hidden;
  130. }
  131. #u5561 {
  132. border-width:0px;
  133. position:absolute;
  134. left:0px;
  135. top:0px;
  136. width:0px;
  137. height:0px;
  138. }
  139. #u5562_div {
  140. border-width:0px;
  141. position:absolute;
  142. left:0px;
  143. top:0px;
  144. width:88px;
  145. height:32px;
  146. background:inherit;
  147. background-color:rgba(255, 255, 255, 1);
  148. box-sizing:border-box;
  149. border-width:1px;
  150. border-style:solid;
  151. border-color:rgba(242, 242, 242, 1);
  152. border-radius:33px;
  153. -moz-box-shadow:none;
  154. -webkit-box-shadow:none;
  155. box-shadow:none;
  156. }
  157. #u5562 {
  158. border-width:0px;
  159. position:absolute;
  160. left:309px;
  161. top:71px;
  162. width:88px;
  163. height:32px;
  164. display:flex;
  165. }
  166. #u5562 .text {
  167. position:absolute;
  168. align-self:center;
  169. padding:2px 2px 2px 2px;
  170. box-sizing:border-box;
  171. width:100%;
  172. }
  173. #u5562_text {
  174. border-width:0px;
  175. word-wrap:break-word;
  176. text-transform:none;
  177. visibility:hidden;
  178. }
  179. #u5563 {
  180. border-width:0px;
  181. position:absolute;
  182. left:0px;
  183. top:0px;
  184. width:0px;
  185. height:0px;
  186. }
  187. #u5564_img {
  188. border-width:0px;
  189. position:absolute;
  190. left:0px;
  191. top:0px;
  192. width:18px;
  193. height:18px;
  194. }
  195. #u5564 {
  196. border-width:0px;
  197. position:absolute;
  198. left:372px;
  199. top:78px;
  200. width:18px;
  201. height:18px;
  202. display:flex;
  203. }
  204. #u5564 .text {
  205. position:absolute;
  206. align-self:center;
  207. padding:2px 2px 2px 2px;
  208. box-sizing:border-box;
  209. width:100%;
  210. }
  211. #u5564_text {
  212. border-width:0px;
  213. word-wrap:break-word;
  214. text-transform:none;
  215. visibility:hidden;
  216. }
  217. #u5565_img {
  218. border-width:0px;
  219. position:absolute;
  220. left:0px;
  221. top:0px;
  222. width:6px;
  223. height:6px;
  224. }
  225. #u5565 {
  226. border-width:0px;
  227. position:absolute;
  228. left:378px;
  229. top:84px;
  230. width:6px;
  231. height:6px;
  232. display:flex;
  233. }
  234. #u5565 .text {
  235. position:absolute;
  236. align-self:center;
  237. padding:2px 2px 2px 2px;
  238. box-sizing:border-box;
  239. width:100%;
  240. }
  241. #u5565_text {
  242. border-width:0px;
  243. word-wrap:break-word;
  244. text-transform:none;
  245. visibility:hidden;
  246. }
  247. #u5566 {
  248. border-width:0px;
  249. position:absolute;
  250. left:0px;
  251. top:0px;
  252. width:0px;
  253. height:0px;
  254. }
  255. #u5567_img {
  256. border-width:0px;
  257. position:absolute;
  258. left:0px;
  259. top:0px;
  260. width:5px;
  261. height:5px;
  262. }
  263. #u5567 {
  264. border-width:0px;
  265. position:absolute;
  266. left:323px;
  267. top:85px;
  268. width:5px;
  269. height:5px;
  270. display:flex;
  271. }
  272. #u5567 .text {
  273. position:absolute;
  274. align-self:center;
  275. padding:2px 2px 2px 2px;
  276. box-sizing:border-box;
  277. width:100%;
  278. }
  279. #u5567_text {
  280. border-width:0px;
  281. word-wrap:break-word;
  282. text-transform:none;
  283. visibility:hidden;
  284. }
  285. #u5568_img {
  286. border-width:0px;
  287. position:absolute;
  288. left:0px;
  289. top:0px;
  290. width:5px;
  291. height:5px;
  292. }
  293. #u5568 {
  294. border-width:0px;
  295. position:absolute;
  296. left:339px;
  297. top:85px;
  298. width:5px;
  299. height:5px;
  300. display:flex;
  301. }
  302. #u5568 .text {
  303. position:absolute;
  304. align-self:center;
  305. padding:2px 2px 2px 2px;
  306. box-sizing:border-box;
  307. width:100%;
  308. }
  309. #u5568_text {
  310. border-width:0px;
  311. word-wrap:break-word;
  312. text-transform:none;
  313. visibility:hidden;
  314. }
  315. #u5569_img {
  316. border-width:0px;
  317. position:absolute;
  318. left:0px;
  319. top:0px;
  320. width:7px;
  321. height:7px;
  322. }
  323. #u5569 {
  324. border-width:0px;
  325. position:absolute;
  326. left:330px;
  327. top:84px;
  328. width:7px;
  329. height:7px;
  330. display:flex;
  331. }
  332. #u5569 .text {
  333. position:absolute;
  334. align-self:center;
  335. padding:2px 2px 2px 2px;
  336. box-sizing:border-box;
  337. width:100%;
  338. }
  339. #u5569_text {
  340. border-width:0px;
  341. word-wrap:break-word;
  342. text-transform:none;
  343. visibility:hidden;
  344. }
  345. #u5570_img {
  346. border-width:0px;
  347. position:absolute;
  348. left:0px;
  349. top:0px;
  350. width:19px;
  351. height:2px;
  352. }
  353. #u5570 {
  354. border-width:0px;
  355. position:absolute;
  356. left:347px;
  357. top:87px;
  358. width:18px;
  359. height:1px;
  360. display:flex;
  361. -webkit-transform:rotate(90deg);
  362. -moz-transform:rotate(90deg);
  363. -ms-transform:rotate(90deg);
  364. transform:rotate(90deg);
  365. }
  366. #u5570 .text {
  367. position:absolute;
  368. align-self:center;
  369. padding:2px 2px 2px 2px;
  370. box-sizing:border-box;
  371. width:100%;
  372. }
  373. #u5570_text {
  374. border-width:0px;
  375. word-wrap:break-word;
  376. text-transform:none;
  377. visibility:hidden;
  378. }
  379. #u5571_img {
  380. border-width:0px;
  381. position:absolute;
  382. left:0px;
  383. top:0px;
  384. width:375px;
  385. height:44px;
  386. }
  387. #u5571 {
  388. border-width:0px;
  389. position:absolute;
  390. left:29px;
  391. top:24px;
  392. width:375px;
  393. height:44px;
  394. display:flex;
  395. }
  396. #u5571 .text {
  397. position:absolute;
  398. align-self:center;
  399. padding:2px 2px 2px 2px;
  400. box-sizing:border-box;
  401. width:100%;
  402. }
  403. #u5571_text {
  404. border-width:0px;
  405. word-wrap:break-word;
  406. text-transform:none;
  407. visibility:hidden;
  408. }
  409. #u5572_div {
  410. border-width:0px;
  411. position:absolute;
  412. left:0px;
  413. top:0px;
  414. width:73px;
  415. height:25px;
  416. background:inherit;
  417. background-color:rgba(255, 255, 255, 0);
  418. border:none;
  419. border-radius:0px;
  420. -moz-box-shadow:none;
  421. -webkit-box-shadow:none;
  422. box-shadow:none;
  423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  424. font-weight:400;
  425. font-style:normal;
  426. font-size:18px;
  427. }
  428. #u5572 {
  429. border-width:0px;
  430. position:absolute;
  431. left:181px;
  432. top:74px;
  433. width:73px;
  434. height:25px;
  435. display:flex;
  436. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  437. font-weight:400;
  438. font-style:normal;
  439. font-size:18px;
  440. }
  441. #u5572 .text {
  442. position:absolute;
  443. align-self:flex-start;
  444. padding:0px 0px 0px 0px;
  445. box-sizing:border-box;
  446. width:100%;
  447. }
  448. #u5572_text {
  449. border-width:0px;
  450. white-space:nowrap;
  451. text-transform:none;
  452. }
  453. #u5573 {
  454. border-width:0px;
  455. position:absolute;
  456. left:0px;
  457. top:0px;
  458. width:0px;
  459. height:0px;
  460. }
  461. #u5574_div {
  462. border-width:0px;
  463. position:absolute;
  464. left:0px;
  465. top:0px;
  466. width:355px;
  467. height:115px;
  468. background:inherit;
  469. background-color:rgba(255, 255, 255, 1);
  470. border:none;
  471. border-radius:4px;
  472. -moz-box-shadow:none;
  473. -webkit-box-shadow:none;
  474. box-shadow:none;
  475. }
  476. #u5574 {
  477. border-width:0px;
  478. position:absolute;
  479. left:39px;
  480. top:542px;
  481. width:355px;
  482. height:115px;
  483. display:flex;
  484. }
  485. #u5574 .text {
  486. position:absolute;
  487. align-self:center;
  488. padding:2px 2px 2px 2px;
  489. box-sizing:border-box;
  490. width:100%;
  491. }
  492. #u5574_text {
  493. border-width:0px;
  494. word-wrap:break-word;
  495. text-transform:none;
  496. visibility:hidden;
  497. }
  498. #u5575_div {
  499. border-width:0px;
  500. position:absolute;
  501. left:0px;
  502. top:0px;
  503. width:320px;
  504. height:69px;
  505. background:inherit;
  506. background-color:rgba(242, 242, 242, 1);
  507. border:none;
  508. border-radius:4px;
  509. -moz-box-shadow:none;
  510. -webkit-box-shadow:none;
  511. box-shadow:none;
  512. }
  513. #u5575 {
  514. border-width:0px;
  515. position:absolute;
  516. left:54px;
  517. top:577px;
  518. width:320px;
  519. height:69px;
  520. display:flex;
  521. }
  522. #u5575 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u5575_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. visibility:hidden;
  534. }
  535. #u5576_div {
  536. border-width:0px;
  537. position:absolute;
  538. left:0px;
  539. top:0px;
  540. width:57px;
  541. height:20px;
  542. background:inherit;
  543. background-color:rgba(255, 255, 255, 0);
  544. border:none;
  545. border-radius:0px;
  546. -moz-box-shadow:none;
  547. -webkit-box-shadow:none;
  548. box-shadow:none;
  549. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  550. font-weight:400;
  551. font-style:normal;
  552. font-size:14px;
  553. }
  554. #u5576 {
  555. border-width:0px;
  556. position:absolute;
  557. left:54px;
  558. top:552px;
  559. width:57px;
  560. height:20px;
  561. display:flex;
  562. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  563. font-weight:400;
  564. font-style:normal;
  565. font-size:14px;
  566. }
  567. #u5576 .text {
  568. position:absolute;
  569. align-self:flex-start;
  570. padding:0px 0px 0px 0px;
  571. box-sizing:border-box;
  572. width:100%;
  573. }
  574. #u5576_text {
  575. border-width:0px;
  576. white-space:nowrap;
  577. text-transform:none;
  578. }
  579. #u5577 {
  580. border-width:0px;
  581. position:absolute;
  582. left:0px;
  583. top:0px;
  584. width:0px;
  585. height:0px;
  586. }
  587. #u5578_div {
  588. border-width:0px;
  589. position:absolute;
  590. left:0px;
  591. top:0px;
  592. width:109px;
  593. height:20px;
  594. background:inherit;
  595. background-color:rgba(255, 255, 255, 0);
  596. border:none;
  597. border-radius:0px;
  598. -moz-box-shadow:none;
  599. -webkit-box-shadow:none;
  600. box-shadow:none;
  601. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  602. font-weight:500;
  603. font-style:normal;
  604. font-size:14px;
  605. }
  606. #u5578 {
  607. border-width:0px;
  608. position:absolute;
  609. left:170px;
  610. top:582px;
  611. width:109px;
  612. height:20px;
  613. display:flex;
  614. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  615. font-weight:500;
  616. font-style:normal;
  617. font-size:14px;
  618. }
  619. #u5578 .text {
  620. position:absolute;
  621. align-self:flex-start;
  622. padding:0px 0px 0px 0px;
  623. box-sizing:border-box;
  624. width:100%;
  625. }
  626. #u5578_text {
  627. border-width:0px;
  628. white-space:nowrap;
  629. text-transform:none;
  630. }
  631. #u5579_div {
  632. border-width:0px;
  633. position:absolute;
  634. left:0px;
  635. top:0px;
  636. width:150px;
  637. height:40px;
  638. background:inherit;
  639. background-color:rgba(255, 255, 255, 0);
  640. border:none;
  641. border-radius:0px;
  642. -moz-box-shadow:none;
  643. -webkit-box-shadow:none;
  644. box-shadow:none;
  645. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  646. font-weight:400;
  647. font-style:normal;
  648. font-size:10px;
  649. line-height:20px;
  650. }
  651. #u5579 {
  652. border-width:0px;
  653. position:absolute;
  654. left:170px;
  655. top:602px;
  656. width:150px;
  657. height:40px;
  658. display:flex;
  659. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  660. font-weight:400;
  661. font-style:normal;
  662. font-size:10px;
  663. line-height:20px;
  664. }
  665. #u5579 .text {
  666. position:absolute;
  667. align-self:flex-start;
  668. padding:0px 0px 0px 0px;
  669. box-sizing:border-box;
  670. width:100%;
  671. }
  672. #u5579_text {
  673. border-width:0px;
  674. white-space:nowrap;
  675. text-transform:none;
  676. }
  677. #u5580 {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:0px;
  683. height:0px;
  684. }
  685. #u5581_img {
  686. border-width:0px;
  687. position:absolute;
  688. left:0px;
  689. top:0px;
  690. width:8px;
  691. height:13px;
  692. }
  693. #u5581 {
  694. border-width:0px;
  695. position:absolute;
  696. left:376px;
  697. top:556px;
  698. width:8px;
  699. height:13px;
  700. display:flex;
  701. -webkit-transform:rotate(180deg);
  702. -moz-transform:rotate(180deg);
  703. -ms-transform:rotate(180deg);
  704. transform:rotate(180deg);
  705. }
  706. #u5581 .text {
  707. position:absolute;
  708. align-self:center;
  709. padding:2px 2px 2px 2px;
  710. box-sizing:border-box;
  711. width:100%;
  712. }
  713. #u5581_text {
  714. border-width:0px;
  715. word-wrap:break-word;
  716. text-transform:none;
  717. visibility:hidden;
  718. }
  719. #u5582 {
  720. border-width:0px;
  721. position:absolute;
  722. left:0px;
  723. top:0px;
  724. width:0px;
  725. height:0px;
  726. }
  727. #u5583_img {
  728. border-width:0px;
  729. position:absolute;
  730. left:0px;
  731. top:0px;
  732. width:69px;
  733. height:33px;
  734. }
  735. #u5583 {
  736. border-width:0px;
  737. position:absolute;
  738. left:66px;
  739. top:586px;
  740. width:69px;
  741. height:33px;
  742. display:flex;
  743. }
  744. #u5583 .text {
  745. position:absolute;
  746. align-self:center;
  747. padding:2px 2px 2px 2px;
  748. box-sizing:border-box;
  749. width:100%;
  750. }
  751. #u5583_text {
  752. border-width:0px;
  753. word-wrap:break-word;
  754. text-transform:none;
  755. visibility:hidden;
  756. }
  757. #u5584_div {
  758. border-width:0px;
  759. position:absolute;
  760. left:0px;
  761. top:0px;
  762. width:61px;
  763. height:13px;
  764. background:inherit;
  765. background-color:rgba(255, 255, 255, 0);
  766. border:none;
  767. border-radius:0px;
  768. -moz-box-shadow:none;
  769. -webkit-box-shadow:none;
  770. box-shadow:none;
  771. font-size:9px;
  772. text-align:center;
  773. }
  774. #u5584 {
  775. border-width:0px;
  776. position:absolute;
  777. left:70px;
  778. top:624px;
  779. width:61px;
  780. height:13px;
  781. display:flex;
  782. font-size:9px;
  783. text-align:center;
  784. }
  785. #u5584 .text {
  786. position:absolute;
  787. align-self:flex-start;
  788. padding:0px 0px 0px 0px;
  789. box-sizing:border-box;
  790. width:100%;
  791. }
  792. #u5584_text {
  793. border-width:0px;
  794. white-space:nowrap;
  795. text-transform:none;
  796. }
  797. #u5585 {
  798. border-width:0px;
  799. position:absolute;
  800. left:0px;
  801. top:0px;
  802. width:0px;
  803. height:0px;
  804. }
  805. #u5586_div {
  806. border-width:0px;
  807. position:absolute;
  808. left:0px;
  809. top:0px;
  810. width:355px;
  811. height:105px;
  812. background:inherit;
  813. background-color:rgba(255, 255, 255, 1);
  814. border:none;
  815. border-radius:4px;
  816. -moz-box-shadow:none;
  817. -webkit-box-shadow:none;
  818. box-shadow:none;
  819. }
  820. #u5586 {
  821. border-width:0px;
  822. position:absolute;
  823. left:39px;
  824. top:427px;
  825. width:355px;
  826. height:105px;
  827. display:flex;
  828. }
  829. #u5586 .text {
  830. position:absolute;
  831. align-self:center;
  832. padding:2px 2px 2px 2px;
  833. box-sizing:border-box;
  834. width:100%;
  835. }
  836. #u5586_text {
  837. border-width:0px;
  838. word-wrap:break-word;
  839. text-transform:none;
  840. visibility:hidden;
  841. }
  842. #u5587_div {
  843. border-width:0px;
  844. position:absolute;
  845. left:0px;
  846. top:0px;
  847. width:57px;
  848. height:20px;
  849. background:inherit;
  850. background-color:rgba(255, 255, 255, 0);
  851. border:none;
  852. border-radius:0px;
  853. -moz-box-shadow:none;
  854. -webkit-box-shadow:none;
  855. box-shadow:none;
  856. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  857. font-weight:400;
  858. font-style:normal;
  859. font-size:14px;
  860. }
  861. #u5587 {
  862. border-width:0px;
  863. position:absolute;
  864. left:53px;
  865. top:436px;
  866. width:57px;
  867. height:20px;
  868. display:flex;
  869. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  870. font-weight:400;
  871. font-style:normal;
  872. font-size:14px;
  873. }
  874. #u5587 .text {
  875. position:absolute;
  876. align-self:flex-start;
  877. padding:0px 0px 0px 0px;
  878. box-sizing:border-box;
  879. width:100%;
  880. }
  881. #u5587_text {
  882. border-width:0px;
  883. white-space:nowrap;
  884. text-transform:none;
  885. }
  886. #u5588 {
  887. border-width:0px;
  888. position:absolute;
  889. left:0px;
  890. top:0px;
  891. width:0px;
  892. height:0px;
  893. }
  894. #u5589_div {
  895. border-width:0px;
  896. position:absolute;
  897. left:0px;
  898. top:0px;
  899. width:320px;
  900. height:60px;
  901. background:inherit;
  902. background-color:rgba(242, 242, 242, 1);
  903. border:none;
  904. border-radius:4px;
  905. -moz-box-shadow:none;
  906. -webkit-box-shadow:none;
  907. box-shadow:none;
  908. }
  909. #u5589 {
  910. border-width:0px;
  911. position:absolute;
  912. left:53px;
  913. top:463px;
  914. width:320px;
  915. height:60px;
  916. display:flex;
  917. }
  918. #u5589 .text {
  919. position:absolute;
  920. align-self:center;
  921. padding:2px 2px 2px 2px;
  922. box-sizing:border-box;
  923. width:100%;
  924. }
  925. #u5589_text {
  926. border-width:0px;
  927. word-wrap:break-word;
  928. text-transform:none;
  929. visibility:hidden;
  930. }
  931. #u5590_div {
  932. border-width:0px;
  933. position:absolute;
  934. left:0px;
  935. top:0px;
  936. width:85px;
  937. height:20px;
  938. background:inherit;
  939. background-color:rgba(255, 255, 255, 0);
  940. border:none;
  941. border-radius:0px;
  942. -moz-box-shadow:none;
  943. -webkit-box-shadow:none;
  944. box-shadow:none;
  945. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  946. font-weight:500;
  947. font-style:normal;
  948. font-size:14px;
  949. }
  950. #u5590 {
  951. border-width:0px;
  952. position:absolute;
  953. left:63px;
  954. top:470px;
  955. width:85px;
  956. height:20px;
  957. display:flex;
  958. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  959. font-weight:500;
  960. font-style:normal;
  961. font-size:14px;
  962. }
  963. #u5590 .text {
  964. position:absolute;
  965. align-self:flex-start;
  966. padding:0px 0px 0px 0px;
  967. box-sizing:border-box;
  968. width:100%;
  969. }
  970. #u5590_text {
  971. border-width:0px;
  972. white-space:nowrap;
  973. text-transform:none;
  974. }
  975. #u5591_div {
  976. border-width:0px;
  977. position:absolute;
  978. left:0px;
  979. top:0px;
  980. width:284px;
  981. height:20px;
  982. background:inherit;
  983. background-color:rgba(0, 191, 191, 0);
  984. border:none;
  985. border-radius:0px;
  986. -moz-box-shadow:none;
  987. -webkit-box-shadow:none;
  988. box-shadow:none;
  989. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  990. font-weight:400;
  991. font-style:normal;
  992. font-size:12px;
  993. line-height:20px;
  994. }
  995. #u5591 {
  996. border-width:0px;
  997. position:absolute;
  998. left:63px;
  999. top:495px;
  1000. width:284px;
  1001. height:20px;
  1002. display:flex;
  1003. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1004. font-weight:400;
  1005. font-style:normal;
  1006. font-size:12px;
  1007. line-height:20px;
  1008. }
  1009. #u5591 .text {
  1010. position:absolute;
  1011. align-self:flex-start;
  1012. padding:0px 2px 0px 2px;
  1013. box-sizing:border-box;
  1014. width:100%;
  1015. }
  1016. #u5591_text {
  1017. border-width:0px;
  1018. word-wrap:break-word;
  1019. text-transform:none;
  1020. }
  1021. #u5592 {
  1022. border-width:0px;
  1023. position:absolute;
  1024. left:0px;
  1025. top:0px;
  1026. width:0px;
  1027. height:0px;
  1028. }
  1029. #u5593_div {
  1030. border-width:0px;
  1031. position:absolute;
  1032. left:0px;
  1033. top:0px;
  1034. width:106px;
  1035. height:17px;
  1036. background:inherit;
  1037. background-color:rgba(255, 255, 255, 0);
  1038. border:none;
  1039. border-radius:0px;
  1040. -moz-box-shadow:none;
  1041. -webkit-box-shadow:none;
  1042. box-shadow:none;
  1043. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1044. font-weight:400;
  1045. font-style:normal;
  1046. font-size:12px;
  1047. }
  1048. #u5593 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:260px;
  1052. top:436px;
  1053. width:106px;
  1054. height:17px;
  1055. display:flex;
  1056. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1057. font-weight:400;
  1058. font-style:normal;
  1059. font-size:12px;
  1060. }
  1061. #u5593 .text {
  1062. position:absolute;
  1063. align-self:flex-start;
  1064. padding:0px 0px 0px 0px;
  1065. box-sizing:border-box;
  1066. width:100%;
  1067. }
  1068. #u5593_text {
  1069. border-width:0px;
  1070. white-space:nowrap;
  1071. text-transform:none;
  1072. }
  1073. #u5594_img {
  1074. border-width:0px;
  1075. position:absolute;
  1076. left:0px;
  1077. top:0px;
  1078. width:8px;
  1079. height:13px;
  1080. }
  1081. #u5594 {
  1082. border-width:0px;
  1083. position:absolute;
  1084. left:376px;
  1085. top:438px;
  1086. width:8px;
  1087. height:13px;
  1088. display:flex;
  1089. -webkit-transform:rotate(180deg);
  1090. -moz-transform:rotate(180deg);
  1091. -ms-transform:rotate(180deg);
  1092. transform:rotate(180deg);
  1093. }
  1094. #u5594 .text {
  1095. position:absolute;
  1096. align-self:center;
  1097. padding:2px 2px 2px 2px;
  1098. box-sizing:border-box;
  1099. width:100%;
  1100. }
  1101. #u5594_text {
  1102. border-width:0px;
  1103. word-wrap:break-word;
  1104. text-transform:none;
  1105. visibility:hidden;
  1106. }
  1107. #u5595_div {
  1108. border-width:0px;
  1109. position:absolute;
  1110. left:0px;
  1111. top:0px;
  1112. width:375px;
  1113. height:140px;
  1114. background:inherit;
  1115. background-color:rgba(41, 143, 255, 1);
  1116. border:none;
  1117. border-radius:5px;
  1118. -moz-box-shadow:none;
  1119. -webkit-box-shadow:none;
  1120. box-shadow:none;
  1121. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1122. font-weight:400;
  1123. font-style:normal;
  1124. font-size:28px;
  1125. color:#FFFFFF;
  1126. }
  1127. #u5595 {
  1128. border-width:0px;
  1129. position:absolute;
  1130. left:29px;
  1131. top:107px;
  1132. width:375px;
  1133. height:140px;
  1134. display:flex;
  1135. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1136. font-weight:400;
  1137. font-style:normal;
  1138. font-size:28px;
  1139. color:#FFFFFF;
  1140. }
  1141. #u5595 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u5595_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. }
  1153. #u5596 {
  1154. border-width:0px;
  1155. position:absolute;
  1156. left:0px;
  1157. top:0px;
  1158. width:0px;
  1159. height:0px;
  1160. }
  1161. #u5597_img {
  1162. border-width:0px;
  1163. position:absolute;
  1164. left:0px;
  1165. top:0px;
  1166. width:10px;
  1167. height:10px;
  1168. }
  1169. #u5597 {
  1170. border-width:0px;
  1171. position:absolute;
  1172. left:168px;
  1173. top:231px;
  1174. width:10px;
  1175. height:10px;
  1176. display:flex;
  1177. }
  1178. #u5597 .text {
  1179. position:absolute;
  1180. align-self:center;
  1181. padding:2px 2px 2px 2px;
  1182. box-sizing:border-box;
  1183. width:100%;
  1184. }
  1185. #u5597_text {
  1186. border-width:0px;
  1187. word-wrap:break-word;
  1188. text-transform:none;
  1189. visibility:hidden;
  1190. }
  1191. #u5598_img {
  1192. border-width:0px;
  1193. position:absolute;
  1194. left:0px;
  1195. top:0px;
  1196. width:10px;
  1197. height:10px;
  1198. }
  1199. #u5598 {
  1200. border-width:0px;
  1201. position:absolute;
  1202. left:185px;
  1203. top:231px;
  1204. width:10px;
  1205. height:10px;
  1206. display:flex;
  1207. }
  1208. #u5598 .text {
  1209. position:absolute;
  1210. align-self:center;
  1211. padding:2px 2px 2px 2px;
  1212. box-sizing:border-box;
  1213. width:100%;
  1214. }
  1215. #u5598_text {
  1216. border-width:0px;
  1217. word-wrap:break-word;
  1218. text-transform:none;
  1219. visibility:hidden;
  1220. }
  1221. #u5599_img {
  1222. border-width:0px;
  1223. position:absolute;
  1224. left:0px;
  1225. top:0px;
  1226. width:10px;
  1227. height:10px;
  1228. }
  1229. #u5599 {
  1230. border-width:0px;
  1231. position:absolute;
  1232. left:202px;
  1233. top:231px;
  1234. width:10px;
  1235. height:10px;
  1236. display:flex;
  1237. }
  1238. #u5599 .text {
  1239. position:absolute;
  1240. align-self:center;
  1241. padding:2px 2px 2px 2px;
  1242. box-sizing:border-box;
  1243. width:100%;
  1244. }
  1245. #u5599_text {
  1246. border-width:0px;
  1247. word-wrap:break-word;
  1248. text-transform:none;
  1249. visibility:hidden;
  1250. }
  1251. #u5600_img {
  1252. border-width:0px;
  1253. position:absolute;
  1254. left:0px;
  1255. top:0px;
  1256. width:10px;
  1257. height:10px;
  1258. }
  1259. #u5600 {
  1260. border-width:0px;
  1261. position:absolute;
  1262. left:218px;
  1263. top:231px;
  1264. width:10px;
  1265. height:10px;
  1266. display:flex;
  1267. }
  1268. #u5600 .text {
  1269. position:absolute;
  1270. align-self:center;
  1271. padding:2px 2px 2px 2px;
  1272. box-sizing:border-box;
  1273. width:100%;
  1274. }
  1275. #u5600_text {
  1276. border-width:0px;
  1277. word-wrap:break-word;
  1278. text-transform:none;
  1279. visibility:hidden;
  1280. }
  1281. #u5601_img {
  1282. border-width:0px;
  1283. position:absolute;
  1284. left:0px;
  1285. top:0px;
  1286. width:10px;
  1287. height:10px;
  1288. }
  1289. #u5601 {
  1290. border-width:0px;
  1291. position:absolute;
  1292. left:235px;
  1293. top:231px;
  1294. width:10px;
  1295. height:10px;
  1296. display:flex;
  1297. }
  1298. #u5601 .text {
  1299. position:absolute;
  1300. align-self:center;
  1301. padding:2px 2px 2px 2px;
  1302. box-sizing:border-box;
  1303. width:100%;
  1304. }
  1305. #u5601_text {
  1306. border-width:0px;
  1307. word-wrap:break-word;
  1308. text-transform:none;
  1309. visibility:hidden;
  1310. }
  1311. #u5602 {
  1312. border-width:0px;
  1313. position:absolute;
  1314. left:0px;
  1315. top:0px;
  1316. width:0px;
  1317. height:0px;
  1318. }
  1319. #u5603_div {
  1320. border-width:0px;
  1321. position:absolute;
  1322. left:0px;
  1323. top:0px;
  1324. width:375px;
  1325. height:100px;
  1326. background:inherit;
  1327. background-color:rgba(255, 255, 255, 1);
  1328. border:none;
  1329. border-radius:0px;
  1330. -moz-box-shadow:none;
  1331. -webkit-box-shadow:none;
  1332. box-shadow:none;
  1333. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1334. font-weight:400;
  1335. font-style:normal;
  1336. font-size:28px;
  1337. }
  1338. #u5603 {
  1339. border-width:0px;
  1340. position:absolute;
  1341. left:29px;
  1342. top:317px;
  1343. width:375px;
  1344. height:100px;
  1345. display:flex;
  1346. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1347. font-weight:400;
  1348. font-style:normal;
  1349. font-size:28px;
  1350. }
  1351. #u5603 .text {
  1352. position:absolute;
  1353. align-self:center;
  1354. padding:2px 2px 2px 2px;
  1355. box-sizing:border-box;
  1356. width:100%;
  1357. }
  1358. #u5603_text {
  1359. border-width:0px;
  1360. word-wrap:break-word;
  1361. text-transform:none;
  1362. visibility:hidden;
  1363. }
  1364. #u5604 {
  1365. border-width:0px;
  1366. position:absolute;
  1367. left:0px;
  1368. top:0px;
  1369. width:0px;
  1370. height:0px;
  1371. }
  1372. #u5605_div {
  1373. border-width:0px;
  1374. position:absolute;
  1375. left:0px;
  1376. top:0px;
  1377. width:61px;
  1378. height:17px;
  1379. background:inherit;
  1380. background-color:rgba(255, 255, 255, 0);
  1381. border:none;
  1382. border-radius:0px;
  1383. -moz-box-shadow:none;
  1384. -webkit-box-shadow:none;
  1385. box-shadow:none;
  1386. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1387. font-weight:400;
  1388. font-style:normal;
  1389. font-size:12px;
  1390. }
  1391. #u5605 {
  1392. border-width:0px;
  1393. position:absolute;
  1394. left:233px;
  1395. top:384px;
  1396. width:61px;
  1397. height:17px;
  1398. display:flex;
  1399. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1400. font-weight:400;
  1401. font-style:normal;
  1402. font-size:12px;
  1403. }
  1404. #u5605 .text {
  1405. position:absolute;
  1406. align-self:flex-start;
  1407. padding:0px 0px 0px 0px;
  1408. box-sizing:border-box;
  1409. width:100%;
  1410. }
  1411. #u5605_text {
  1412. border-width:0px;
  1413. white-space:nowrap;
  1414. text-transform:none;
  1415. }
  1416. #u5606_div {
  1417. border-width:0px;
  1418. position:absolute;
  1419. left:0px;
  1420. top:0px;
  1421. width:41px;
  1422. height:41px;
  1423. background:inherit;
  1424. background-color:rgba(191, 191, 0, 1);
  1425. border:none;
  1426. border-radius:4px;
  1427. -moz-box-shadow:none;
  1428. -webkit-box-shadow:none;
  1429. box-shadow:none;
  1430. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1431. font-weight:400;
  1432. font-style:normal;
  1433. font-size:12px;
  1434. color:#FFFFFF;
  1435. }
  1436. #u5606 {
  1437. border-width:0px;
  1438. position:absolute;
  1439. left:243px;
  1440. top:333px;
  1441. width:41px;
  1442. height:41px;
  1443. display:flex;
  1444. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1445. font-weight:400;
  1446. font-style:normal;
  1447. font-size:12px;
  1448. color:#FFFFFF;
  1449. }
  1450. #u5606 .text {
  1451. position:absolute;
  1452. align-self:center;
  1453. padding:2px 2px 2px 2px;
  1454. box-sizing:border-box;
  1455. width:100%;
  1456. }
  1457. #u5606_text {
  1458. border-width:0px;
  1459. word-wrap:break-word;
  1460. text-transform:none;
  1461. }
  1462. #u5607 {
  1463. border-width:0px;
  1464. position:absolute;
  1465. left:0px;
  1466. top:0px;
  1467. width:0px;
  1468. height:0px;
  1469. }
  1470. #u5608_div {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:49px;
  1476. height:17px;
  1477. background:inherit;
  1478. background-color:rgba(255, 255, 255, 0);
  1479. border:none;
  1480. border-radius:0px;
  1481. -moz-box-shadow:none;
  1482. -webkit-box-shadow:none;
  1483. box-shadow:none;
  1484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1485. font-weight:400;
  1486. font-style:normal;
  1487. font-size:12px;
  1488. }
  1489. #u5608 {
  1490. border-width:0px;
  1491. position:absolute;
  1492. left:55px;
  1493. top:384px;
  1494. width:49px;
  1495. height:17px;
  1496. display:flex;
  1497. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1498. font-weight:400;
  1499. font-style:normal;
  1500. font-size:12px;
  1501. }
  1502. #u5608 .text {
  1503. position:absolute;
  1504. align-self:flex-start;
  1505. padding:0px 0px 0px 0px;
  1506. box-sizing:border-box;
  1507. width:100%;
  1508. }
  1509. #u5608_text {
  1510. border-width:0px;
  1511. white-space:nowrap;
  1512. text-transform:none;
  1513. }
  1514. #u5609_div {
  1515. border-width:0px;
  1516. position:absolute;
  1517. left:0px;
  1518. top:0px;
  1519. width:41px;
  1520. height:41px;
  1521. background:inherit;
  1522. background-color:rgba(0, 137, 254, 1);
  1523. border:none;
  1524. border-radius:4px;
  1525. -moz-box-shadow:none;
  1526. -webkit-box-shadow:none;
  1527. box-shadow:none;
  1528. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1529. font-weight:400;
  1530. font-style:normal;
  1531. font-size:12px;
  1532. color:#FFFFFF;
  1533. }
  1534. #u5609 {
  1535. border-width:0px;
  1536. position:absolute;
  1537. left:59px;
  1538. top:333px;
  1539. width:41px;
  1540. height:41px;
  1541. display:flex;
  1542. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1543. font-weight:400;
  1544. font-style:normal;
  1545. font-size:12px;
  1546. color:#FFFFFF;
  1547. }
  1548. #u5609 .text {
  1549. position:absolute;
  1550. align-self:center;
  1551. padding:2px 2px 2px 2px;
  1552. box-sizing:border-box;
  1553. width:100%;
  1554. }
  1555. #u5609_text {
  1556. border-width:0px;
  1557. word-wrap:break-word;
  1558. text-transform:none;
  1559. }
  1560. #u5610 {
  1561. border-width:0px;
  1562. position:absolute;
  1563. left:0px;
  1564. top:0px;
  1565. width:0px;
  1566. height:0px;
  1567. }
  1568. #u5611_div {
  1569. border-width:0px;
  1570. position:absolute;
  1571. left:0px;
  1572. top:0px;
  1573. width:49px;
  1574. height:17px;
  1575. background:inherit;
  1576. background-color:rgba(255, 255, 255, 0);
  1577. border:none;
  1578. border-radius:0px;
  1579. -moz-box-shadow:none;
  1580. -webkit-box-shadow:none;
  1581. box-shadow:none;
  1582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1583. font-weight:400;
  1584. font-style:normal;
  1585. font-size:12px;
  1586. }
  1587. #u5611 {
  1588. border-width:0px;
  1589. position:absolute;
  1590. left:144px;
  1591. top:384px;
  1592. width:49px;
  1593. height:17px;
  1594. display:flex;
  1595. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1596. font-weight:400;
  1597. font-style:normal;
  1598. font-size:12px;
  1599. }
  1600. #u5611 .text {
  1601. position:absolute;
  1602. align-self:flex-start;
  1603. padding:0px 0px 0px 0px;
  1604. box-sizing:border-box;
  1605. width:100%;
  1606. }
  1607. #u5611_text {
  1608. border-width:0px;
  1609. white-space:nowrap;
  1610. text-transform:none;
  1611. }
  1612. #u5612_div {
  1613. border-width:0px;
  1614. position:absolute;
  1615. left:0px;
  1616. top:0px;
  1617. width:41px;
  1618. height:41px;
  1619. background:inherit;
  1620. background-color:rgba(0, 191, 191, 1);
  1621. border:none;
  1622. border-radius:4px;
  1623. -moz-box-shadow:none;
  1624. -webkit-box-shadow:none;
  1625. box-shadow:none;
  1626. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1627. font-weight:400;
  1628. font-style:normal;
  1629. font-size:12px;
  1630. color:#FFFFFF;
  1631. }
  1632. #u5612 {
  1633. border-width:0px;
  1634. position:absolute;
  1635. left:148px;
  1636. top:333px;
  1637. width:41px;
  1638. height:41px;
  1639. display:flex;
  1640. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1641. font-weight:400;
  1642. font-style:normal;
  1643. font-size:12px;
  1644. color:#FFFFFF;
  1645. }
  1646. #u5612 .text {
  1647. position:absolute;
  1648. align-self:center;
  1649. padding:2px 2px 2px 2px;
  1650. box-sizing:border-box;
  1651. width:100%;
  1652. }
  1653. #u5612_text {
  1654. border-width:0px;
  1655. word-wrap:break-word;
  1656. text-transform:none;
  1657. }
  1658. #u5613 {
  1659. border-width:0px;
  1660. position:absolute;
  1661. left:0px;
  1662. top:0px;
  1663. width:0px;
  1664. height:0px;
  1665. }
  1666. #u5614_div {
  1667. border-width:0px;
  1668. position:absolute;
  1669. left:0px;
  1670. top:0px;
  1671. width:49px;
  1672. height:17px;
  1673. background:inherit;
  1674. background-color:rgba(255, 255, 255, 0);
  1675. border:none;
  1676. border-radius:0px;
  1677. -moz-box-shadow:none;
  1678. -webkit-box-shadow:none;
  1679. box-shadow:none;
  1680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1681. font-weight:400;
  1682. font-style:normal;
  1683. font-size:12px;
  1684. }
  1685. #u5614 {
  1686. border-width:0px;
  1687. position:absolute;
  1688. left:334px;
  1689. top:384px;
  1690. width:49px;
  1691. height:17px;
  1692. display:flex;
  1693. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1694. font-weight:400;
  1695. font-style:normal;
  1696. font-size:12px;
  1697. }
  1698. #u5614 .text {
  1699. position:absolute;
  1700. align-self:flex-start;
  1701. padding:0px 0px 0px 0px;
  1702. box-sizing:border-box;
  1703. width:100%;
  1704. }
  1705. #u5614_text {
  1706. border-width:0px;
  1707. white-space:nowrap;
  1708. text-transform:none;
  1709. }
  1710. #u5615_div {
  1711. border-width:0px;
  1712. position:absolute;
  1713. left:0px;
  1714. top:0px;
  1715. width:41px;
  1716. height:41px;
  1717. background:inherit;
  1718. background-color:rgba(128, 128, 255, 1);
  1719. border:none;
  1720. border-radius:4px;
  1721. -moz-box-shadow:none;
  1722. -webkit-box-shadow:none;
  1723. box-shadow:none;
  1724. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1725. font-weight:400;
  1726. font-style:normal;
  1727. font-size:12px;
  1728. color:#FFFFFF;
  1729. }
  1730. #u5615 {
  1731. border-width:0px;
  1732. position:absolute;
  1733. left:338px;
  1734. top:333px;
  1735. width:41px;
  1736. height:41px;
  1737. display:flex;
  1738. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1739. font-weight:400;
  1740. font-style:normal;
  1741. font-size:12px;
  1742. color:#FFFFFF;
  1743. }
  1744. #u5615 .text {
  1745. position:absolute;
  1746. align-self:center;
  1747. padding:2px 2px 2px 2px;
  1748. box-sizing:border-box;
  1749. width:100%;
  1750. }
  1751. #u5615_text {
  1752. border-width:0px;
  1753. word-wrap:break-word;
  1754. text-transform:none;
  1755. }
  1756. #u5616 {
  1757. border-width:0px;
  1758. position:absolute;
  1759. left:0px;
  1760. top:0px;
  1761. width:0px;
  1762. height:0px;
  1763. }
  1764. #u5617_div {
  1765. border-width:0px;
  1766. position:absolute;
  1767. left:0px;
  1768. top:0px;
  1769. width:375px;
  1770. height:130px;
  1771. background:inherit;
  1772. background-color:rgba(255, 255, 255, 1);
  1773. box-sizing:border-box;
  1774. border-width:1px;
  1775. border-style:solid;
  1776. border-color:rgba(242, 242, 242, 1);
  1777. border-left:0px;
  1778. border-top:0px;
  1779. border-right:0px;
  1780. border-radius:0px;
  1781. border-bottom-right-radius:0px;
  1782. border-bottom-left-radius:0px;
  1783. -moz-box-shadow:none;
  1784. -webkit-box-shadow:none;
  1785. box-shadow:none;
  1786. }
  1787. #u5617 {
  1788. border-width:0px;
  1789. position:absolute;
  1790. left:29px;
  1791. top:734px;
  1792. width:375px;
  1793. height:130px;
  1794. display:flex;
  1795. }
  1796. #u5617 .text {
  1797. position:absolute;
  1798. align-self:center;
  1799. padding:2px 2px 2px 2px;
  1800. box-sizing:border-box;
  1801. width:100%;
  1802. }
  1803. #u5617_text {
  1804. border-width:0px;
  1805. word-wrap:break-word;
  1806. text-transform:none;
  1807. visibility:hidden;
  1808. }
  1809. #u5618_div {
  1810. border-width:0px;
  1811. position:absolute;
  1812. left:0px;
  1813. top:0px;
  1814. width:147px;
  1815. height:17px;
  1816. background:inherit;
  1817. background-color:rgba(255, 255, 255, 0);
  1818. border:none;
  1819. border-radius:0px;
  1820. -moz-box-shadow:none;
  1821. -webkit-box-shadow:none;
  1822. box-shadow:none;
  1823. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1824. font-weight:400;
  1825. font-style:normal;
  1826. font-size:12px;
  1827. color:#AAAAAA;
  1828. }
  1829. #u5618 {
  1830. border-width:0px;
  1831. position:absolute;
  1832. left:41px;
  1833. top:767px;
  1834. width:147px;
  1835. height:17px;
  1836. display:flex;
  1837. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1838. font-weight:400;
  1839. font-style:normal;
  1840. font-size:12px;
  1841. color:#AAAAAA;
  1842. }
  1843. #u5618 .text {
  1844. position:absolute;
  1845. align-self:flex-start;
  1846. padding:0px 0px 0px 0px;
  1847. box-sizing:border-box;
  1848. width:100%;
  1849. }
  1850. #u5618_text {
  1851. border-width:0px;
  1852. white-space:nowrap;
  1853. text-transform:none;
  1854. }
  1855. #u5619_div {
  1856. border-width:0px;
  1857. position:absolute;
  1858. left:0px;
  1859. top:0px;
  1860. width:41px;
  1861. height:20px;
  1862. background:inherit;
  1863. background-color:rgba(255, 255, 255, 0);
  1864. border:none;
  1865. border-radius:0px;
  1866. -moz-box-shadow:none;
  1867. -webkit-box-shadow:none;
  1868. box-shadow:none;
  1869. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1870. font-weight:500;
  1871. font-style:normal;
  1872. font-size:14px;
  1873. text-align:right;
  1874. }
  1875. #u5619 {
  1876. border-width:0px;
  1877. position:absolute;
  1878. left:353px;
  1879. top:742px;
  1880. width:41px;
  1881. height:20px;
  1882. display:flex;
  1883. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1884. font-weight:500;
  1885. font-style:normal;
  1886. font-size:14px;
  1887. text-align:right;
  1888. }
  1889. #u5619 .text {
  1890. position:absolute;
  1891. align-self:flex-start;
  1892. padding:0px 0px 0px 0px;
  1893. box-sizing:border-box;
  1894. width:100%;
  1895. }
  1896. #u5619_text {
  1897. border-width:0px;
  1898. white-space:nowrap;
  1899. text-transform:none;
  1900. }
  1901. #u5620_div {
  1902. border-width:0px;
  1903. position:absolute;
  1904. left:0px;
  1905. top:0px;
  1906. width:50px;
  1907. height:21px;
  1908. background:inherit;
  1909. background-color:rgba(0, 137, 254, 1);
  1910. border:none;
  1911. border-radius:21px;
  1912. -moz-box-shadow:none;
  1913. -webkit-box-shadow:none;
  1914. box-shadow:none;
  1915. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1916. font-weight:400;
  1917. font-style:normal;
  1918. font-size:12px;
  1919. color:#FFFFFF;
  1920. text-align:center;
  1921. }
  1922. #u5620 {
  1923. border-width:0px;
  1924. position:absolute;
  1925. left:347px;
  1926. top:786px;
  1927. width:50px;
  1928. height:21px;
  1929. display:flex;
  1930. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1931. font-weight:400;
  1932. font-style:normal;
  1933. font-size:12px;
  1934. color:#FFFFFF;
  1935. text-align:center;
  1936. }
  1937. #u5620 .text {
  1938. position:absolute;
  1939. align-self:flex-start;
  1940. padding:2px 2px 2px 2px;
  1941. box-sizing:border-box;
  1942. width:100%;
  1943. }
  1944. #u5620_text {
  1945. border-width:0px;
  1946. word-wrap:break-word;
  1947. text-transform:none;
  1948. }
  1949. #u5621 {
  1950. border-width:0px;
  1951. position:absolute;
  1952. left:0px;
  1953. top:0px;
  1954. width:0px;
  1955. height:0px;
  1956. }
  1957. #u5622_div {
  1958. border-width:0px;
  1959. position:absolute;
  1960. left:0px;
  1961. top:0px;
  1962. width:20px;
  1963. height:18px;
  1964. background:inherit;
  1965. background-color:rgba(245, 154, 35, 1);
  1966. border:none;
  1967. border-right:0px;
  1968. border-radius:2px;
  1969. border-top-right-radius:0px;
  1970. border-bottom-right-radius:0px;
  1971. -moz-box-shadow:none;
  1972. -webkit-box-shadow:none;
  1973. box-shadow:none;
  1974. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1975. font-weight:400;
  1976. font-style:normal;
  1977. font-size:10px;
  1978. color:#FFFFFF;
  1979. text-align:center;
  1980. }
  1981. #u5622 {
  1982. border-width:0px;
  1983. position:absolute;
  1984. left:106px;
  1985. top:789px;
  1986. width:20px;
  1987. height:18px;
  1988. display:flex;
  1989. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1990. font-weight:400;
  1991. font-style:normal;
  1992. font-size:10px;
  1993. color:#FFFFFF;
  1994. text-align:center;
  1995. }
  1996. #u5622 .text {
  1997. position:absolute;
  1998. align-self:center;
  1999. padding:2px 2px 2px 2px;
  2000. box-sizing:border-box;
  2001. width:100%;
  2002. }
  2003. #u5622_text {
  2004. border-width:0px;
  2005. word-wrap:break-word;
  2006. text-transform:none;
  2007. }
  2008. #u5623_div {
  2009. border-width:0px;
  2010. position:absolute;
  2011. left:0px;
  2012. top:0px;
  2013. width:35px;
  2014. height:18px;
  2015. background:inherit;
  2016. background-color:rgba(255, 255, 255, 1);
  2017. box-sizing:border-box;
  2018. border-width:1px;
  2019. border-style:solid;
  2020. border-color:rgba(245, 154, 35, 1);
  2021. border-left:0px;
  2022. border-radius:2px;
  2023. border-top-left-radius:0px;
  2024. border-bottom-left-radius:0px;
  2025. -moz-box-shadow:none;
  2026. -webkit-box-shadow:none;
  2027. box-shadow:none;
  2028. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2029. font-weight:400;
  2030. font-style:normal;
  2031. font-size:10px;
  2032. color:#AAAAAA;
  2033. }
  2034. #u5623 {
  2035. border-width:0px;
  2036. position:absolute;
  2037. left:126px;
  2038. top:789px;
  2039. width:35px;
  2040. height:18px;
  2041. display:flex;
  2042. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2043. font-weight:400;
  2044. font-style:normal;
  2045. font-size:10px;
  2046. color:#AAAAAA;
  2047. }
  2048. #u5623 .text {
  2049. position:absolute;
  2050. align-self:center;
  2051. padding:2px 2px 2px 2px;
  2052. box-sizing:border-box;
  2053. width:100%;
  2054. }
  2055. #u5623_text {
  2056. border-width:0px;
  2057. word-wrap:break-word;
  2058. text-transform:none;
  2059. }
  2060. #u5624 {
  2061. border-width:0px;
  2062. position:absolute;
  2063. left:0px;
  2064. top:0px;
  2065. width:0px;
  2066. height:0px;
  2067. }
  2068. #u5625_div {
  2069. border-width:0px;
  2070. position:absolute;
  2071. left:0px;
  2072. top:0px;
  2073. width:20px;
  2074. height:18px;
  2075. background:inherit;
  2076. background-color:rgba(0, 191, 191, 1);
  2077. border:none;
  2078. border-right:0px;
  2079. border-radius:2px;
  2080. border-top-right-radius:0px;
  2081. border-bottom-right-radius:0px;
  2082. -moz-box-shadow:none;
  2083. -webkit-box-shadow:none;
  2084. box-shadow:none;
  2085. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2086. font-weight:400;
  2087. font-style:normal;
  2088. font-size:10px;
  2089. color:#FFFFFF;
  2090. text-align:center;
  2091. }
  2092. #u5625 {
  2093. border-width:0px;
  2094. position:absolute;
  2095. left:41px;
  2096. top:789px;
  2097. width:20px;
  2098. height:18px;
  2099. display:flex;
  2100. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2101. font-weight:400;
  2102. font-style:normal;
  2103. font-size:10px;
  2104. color:#FFFFFF;
  2105. text-align:center;
  2106. }
  2107. #u5625 .text {
  2108. position:absolute;
  2109. align-self:center;
  2110. padding:2px 2px 2px 2px;
  2111. box-sizing:border-box;
  2112. width:100%;
  2113. }
  2114. #u5625_text {
  2115. border-width:0px;
  2116. word-wrap:break-word;
  2117. text-transform:none;
  2118. }
  2119. #u5626_div {
  2120. border-width:0px;
  2121. position:absolute;
  2122. left:0px;
  2123. top:0px;
  2124. width:35px;
  2125. height:18px;
  2126. background:inherit;
  2127. background-color:rgba(255, 255, 255, 1);
  2128. box-sizing:border-box;
  2129. border-width:1px;
  2130. border-style:solid;
  2131. border-color:rgba(0, 191, 191, 1);
  2132. border-left:0px;
  2133. border-radius:2px;
  2134. border-top-left-radius:0px;
  2135. border-bottom-left-radius:0px;
  2136. -moz-box-shadow:none;
  2137. -webkit-box-shadow:none;
  2138. box-shadow:none;
  2139. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2140. font-weight:400;
  2141. font-style:normal;
  2142. font-size:10px;
  2143. color:#AAAAAA;
  2144. }
  2145. #u5626 {
  2146. border-width:0px;
  2147. position:absolute;
  2148. left:61px;
  2149. top:789px;
  2150. width:35px;
  2151. height:18px;
  2152. display:flex;
  2153. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2154. font-weight:400;
  2155. font-style:normal;
  2156. font-size:10px;
  2157. color:#AAAAAA;
  2158. }
  2159. #u5626 .text {
  2160. position:absolute;
  2161. align-self:center;
  2162. padding:2px 2px 2px 2px;
  2163. box-sizing:border-box;
  2164. width:100%;
  2165. }
  2166. #u5626_text {
  2167. border-width:0px;
  2168. word-wrap:break-word;
  2169. text-transform:none;
  2170. }
  2171. #u5627 {
  2172. border-width:0px;
  2173. position:absolute;
  2174. left:0px;
  2175. top:0px;
  2176. width:0px;
  2177. height:0px;
  2178. }
  2179. #u5628_div {
  2180. border-width:0px;
  2181. position:absolute;
  2182. left:0px;
  2183. top:0px;
  2184. width:113px;
  2185. height:20px;
  2186. background:inherit;
  2187. background-color:rgba(255, 255, 255, 0);
  2188. border:none;
  2189. border-radius:0px;
  2190. -moz-box-shadow:none;
  2191. -webkit-box-shadow:none;
  2192. box-shadow:none;
  2193. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2194. font-weight:500;
  2195. font-style:normal;
  2196. font-size:14px;
  2197. }
  2198. #u5628 {
  2199. border-width:0px;
  2200. position:absolute;
  2201. left:41px;
  2202. top:742px;
  2203. width:113px;
  2204. height:20px;
  2205. display:flex;
  2206. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2207. font-weight:500;
  2208. font-style:normal;
  2209. font-size:14px;
  2210. }
  2211. #u5628 .text {
  2212. position:absolute;
  2213. align-self:flex-start;
  2214. padding:0px 0px 0px 0px;
  2215. box-sizing:border-box;
  2216. width:100%;
  2217. }
  2218. #u5628_text {
  2219. border-width:0px;
  2220. white-space:nowrap;
  2221. text-transform:none;
  2222. }
  2223. #u5629_img {
  2224. border-width:0px;
  2225. position:absolute;
  2226. left:0px;
  2227. top:0px;
  2228. width:7px;
  2229. height:12px;
  2230. }
  2231. #u5629 {
  2232. border-width:0px;
  2233. position:absolute;
  2234. left:158px;
  2235. top:746px;
  2236. width:7px;
  2237. height:12px;
  2238. display:flex;
  2239. -webkit-transform:rotate(180deg);
  2240. -moz-transform:rotate(180deg);
  2241. -ms-transform:rotate(180deg);
  2242. transform:rotate(180deg);
  2243. }
  2244. #u5629 .text {
  2245. position:absolute;
  2246. align-self:center;
  2247. padding:2px 2px 2px 2px;
  2248. box-sizing:border-box;
  2249. width:100%;
  2250. }
  2251. #u5629_text {
  2252. border-width:0px;
  2253. word-wrap:break-word;
  2254. text-transform:none;
  2255. visibility:hidden;
  2256. }
  2257. #u5630 {
  2258. border-width:0px;
  2259. position:absolute;
  2260. left:0px;
  2261. top:0px;
  2262. width:0px;
  2263. height:0px;
  2264. }
  2265. #u5631_div {
  2266. border-width:0px;
  2267. position:absolute;
  2268. left:0px;
  2269. top:0px;
  2270. width:256px;
  2271. height:34px;
  2272. background:inherit;
  2273. background-color:rgba(255, 255, 255, 0);
  2274. border:none;
  2275. border-radius:0px;
  2276. -moz-box-shadow:none;
  2277. -webkit-box-shadow:none;
  2278. box-shadow:none;
  2279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2280. font-weight:400;
  2281. font-style:normal;
  2282. font-size:12px;
  2283. color:#555555;
  2284. }
  2285. #u5631 {
  2286. border-width:0px;
  2287. position:absolute;
  2288. left:60px;
  2289. top:817px;
  2290. width:256px;
  2291. height:34px;
  2292. display:flex;
  2293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2294. font-weight:400;
  2295. font-style:normal;
  2296. font-size:12px;
  2297. color:#555555;
  2298. }
  2299. #u5631 .text {
  2300. position:absolute;
  2301. align-self:flex-start;
  2302. padding:0px 0px 0px 0px;
  2303. box-sizing:border-box;
  2304. width:100%;
  2305. }
  2306. #u5631_text {
  2307. border-width:0px;
  2308. word-wrap:break-word;
  2309. text-transform:none;
  2310. }
  2311. #u5632_img {
  2312. border-width:0px;
  2313. position:absolute;
  2314. left:0px;
  2315. top:0px;
  2316. width:14px;
  2317. height:15px;
  2318. }
  2319. #u5632 {
  2320. border-width:0px;
  2321. position:absolute;
  2322. left:41px;
  2323. top:817px;
  2324. width:14px;
  2325. height:15px;
  2326. display:flex;
  2327. }
  2328. #u5632 .text {
  2329. position:absolute;
  2330. align-self:center;
  2331. padding:2px 2px 2px 2px;
  2332. box-sizing:border-box;
  2333. width:100%;
  2334. }
  2335. #u5632_text {
  2336. border-width:0px;
  2337. word-wrap:break-word;
  2338. text-transform:none;
  2339. visibility:hidden;
  2340. }
  2341. #u5633 {
  2342. border-width:0px;
  2343. position:absolute;
  2344. left:0px;
  2345. top:0px;
  2346. width:0px;
  2347. height:0px;
  2348. }
  2349. #u5634_div {
  2350. border-width:0px;
  2351. position:absolute;
  2352. left:0px;
  2353. top:0px;
  2354. width:375px;
  2355. height:110px;
  2356. background:inherit;
  2357. background-color:rgba(255, 255, 255, 1);
  2358. box-sizing:border-box;
  2359. border-width:1px;
  2360. border-style:solid;
  2361. border-color:rgba(242, 242, 242, 1);
  2362. border-left:0px;
  2363. border-top:0px;
  2364. border-right:0px;
  2365. border-radius:0px;
  2366. border-bottom-right-radius:0px;
  2367. border-bottom-left-radius:0px;
  2368. -moz-box-shadow:none;
  2369. -webkit-box-shadow:none;
  2370. box-shadow:none;
  2371. }
  2372. #u5634 {
  2373. border-width:0px;
  2374. position:absolute;
  2375. left:29px;
  2376. top:874px;
  2377. width:375px;
  2378. height:110px;
  2379. display:flex;
  2380. }
  2381. #u5634 .text {
  2382. position:absolute;
  2383. align-self:center;
  2384. padding:2px 2px 2px 2px;
  2385. box-sizing:border-box;
  2386. width:100%;
  2387. }
  2388. #u5634_text {
  2389. border-width:0px;
  2390. word-wrap:break-word;
  2391. text-transform:none;
  2392. visibility:hidden;
  2393. }
  2394. #u5635_div {
  2395. border-width:0px;
  2396. position:absolute;
  2397. left:0px;
  2398. top:0px;
  2399. width:147px;
  2400. height:17px;
  2401. background:inherit;
  2402. background-color:rgba(255, 255, 255, 0);
  2403. border:none;
  2404. border-radius:0px;
  2405. -moz-box-shadow:none;
  2406. -webkit-box-shadow:none;
  2407. box-shadow:none;
  2408. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2409. font-weight:400;
  2410. font-style:normal;
  2411. font-size:12px;
  2412. color:#AAAAAA;
  2413. }
  2414. #u5635 {
  2415. border-width:0px;
  2416. position:absolute;
  2417. left:41px;
  2418. top:907px;
  2419. width:147px;
  2420. height:17px;
  2421. display:flex;
  2422. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2423. font-weight:400;
  2424. font-style:normal;
  2425. font-size:12px;
  2426. color:#AAAAAA;
  2427. }
  2428. #u5635 .text {
  2429. position:absolute;
  2430. align-self:flex-start;
  2431. padding:0px 0px 0px 0px;
  2432. box-sizing:border-box;
  2433. width:100%;
  2434. }
  2435. #u5635_text {
  2436. border-width:0px;
  2437. white-space:nowrap;
  2438. text-transform:none;
  2439. }
  2440. #u5636_div {
  2441. border-width:0px;
  2442. position:absolute;
  2443. left:0px;
  2444. top:0px;
  2445. width:44px;
  2446. height:20px;
  2447. background:inherit;
  2448. background-color:rgba(255, 255, 255, 0);
  2449. border:none;
  2450. border-radius:0px;
  2451. -moz-box-shadow:none;
  2452. -webkit-box-shadow:none;
  2453. box-shadow:none;
  2454. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2455. font-weight:500;
  2456. font-style:normal;
  2457. font-size:14px;
  2458. text-align:right;
  2459. }
  2460. #u5636 {
  2461. border-width:0px;
  2462. position:absolute;
  2463. left:350px;
  2464. top:882px;
  2465. width:44px;
  2466. height:20px;
  2467. display:flex;
  2468. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2469. font-weight:500;
  2470. font-style:normal;
  2471. font-size:14px;
  2472. text-align:right;
  2473. }
  2474. #u5636 .text {
  2475. position:absolute;
  2476. align-self:flex-start;
  2477. padding:0px 0px 0px 0px;
  2478. box-sizing:border-box;
  2479. width:100%;
  2480. }
  2481. #u5636_text {
  2482. border-width:0px;
  2483. white-space:nowrap;
  2484. text-transform:none;
  2485. }
  2486. #u5637_div {
  2487. border-width:0px;
  2488. position:absolute;
  2489. left:0px;
  2490. top:0px;
  2491. width:50px;
  2492. height:21px;
  2493. background:inherit;
  2494. background-color:rgba(0, 137, 254, 1);
  2495. border:none;
  2496. border-radius:21px;
  2497. -moz-box-shadow:none;
  2498. -webkit-box-shadow:none;
  2499. box-shadow:none;
  2500. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2501. font-weight:400;
  2502. font-style:normal;
  2503. font-size:12px;
  2504. color:#FFFFFF;
  2505. text-align:center;
  2506. }
  2507. #u5637 {
  2508. border-width:0px;
  2509. position:absolute;
  2510. left:347px;
  2511. top:926px;
  2512. width:50px;
  2513. height:21px;
  2514. display:flex;
  2515. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2516. font-weight:400;
  2517. font-style:normal;
  2518. font-size:12px;
  2519. color:#FFFFFF;
  2520. text-align:center;
  2521. }
  2522. #u5637 .text {
  2523. position:absolute;
  2524. align-self:flex-start;
  2525. padding:2px 2px 2px 2px;
  2526. box-sizing:border-box;
  2527. width:100%;
  2528. }
  2529. #u5637_text {
  2530. border-width:0px;
  2531. word-wrap:break-word;
  2532. text-transform:none;
  2533. }
  2534. #u5638 {
  2535. border-width:0px;
  2536. position:absolute;
  2537. left:0px;
  2538. top:0px;
  2539. width:0px;
  2540. height:0px;
  2541. }
  2542. #u5639_div {
  2543. border-width:0px;
  2544. position:absolute;
  2545. left:0px;
  2546. top:0px;
  2547. width:113px;
  2548. height:20px;
  2549. background:inherit;
  2550. background-color:rgba(255, 255, 255, 0);
  2551. border:none;
  2552. border-radius:0px;
  2553. -moz-box-shadow:none;
  2554. -webkit-box-shadow:none;
  2555. box-shadow:none;
  2556. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2557. font-weight:500;
  2558. font-style:normal;
  2559. font-size:14px;
  2560. }
  2561. #u5639 {
  2562. border-width:0px;
  2563. position:absolute;
  2564. left:41px;
  2565. top:882px;
  2566. width:113px;
  2567. height:20px;
  2568. display:flex;
  2569. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2570. font-weight:500;
  2571. font-style:normal;
  2572. font-size:14px;
  2573. }
  2574. #u5639 .text {
  2575. position:absolute;
  2576. align-self:flex-start;
  2577. padding:0px 0px 0px 0px;
  2578. box-sizing:border-box;
  2579. width:100%;
  2580. }
  2581. #u5639_text {
  2582. border-width:0px;
  2583. white-space:nowrap;
  2584. text-transform:none;
  2585. }
  2586. #u5640_img {
  2587. border-width:0px;
  2588. position:absolute;
  2589. left:0px;
  2590. top:0px;
  2591. width:7px;
  2592. height:12px;
  2593. }
  2594. #u5640 {
  2595. border-width:0px;
  2596. position:absolute;
  2597. left:158px;
  2598. top:886px;
  2599. width:7px;
  2600. height:12px;
  2601. display:flex;
  2602. -webkit-transform:rotate(180deg);
  2603. -moz-transform:rotate(180deg);
  2604. -ms-transform:rotate(180deg);
  2605. transform:rotate(180deg);
  2606. }
  2607. #u5640 .text {
  2608. position:absolute;
  2609. align-self:center;
  2610. padding:2px 2px 2px 2px;
  2611. box-sizing:border-box;
  2612. width:100%;
  2613. }
  2614. #u5640_text {
  2615. border-width:0px;
  2616. word-wrap:break-word;
  2617. text-transform:none;
  2618. visibility:hidden;
  2619. }
  2620. #u5641 {
  2621. border-width:0px;
  2622. position:absolute;
  2623. left:0px;
  2624. top:0px;
  2625. width:0px;
  2626. height:0px;
  2627. }
  2628. #u5642_div {
  2629. border-width:0px;
  2630. position:absolute;
  2631. left:0px;
  2632. top:0px;
  2633. width:20px;
  2634. height:18px;
  2635. background:inherit;
  2636. background-color:rgba(245, 154, 35, 1);
  2637. border:none;
  2638. border-right:0px;
  2639. border-radius:2px;
  2640. border-top-right-radius:0px;
  2641. border-bottom-right-radius:0px;
  2642. -moz-box-shadow:none;
  2643. -webkit-box-shadow:none;
  2644. box-shadow:none;
  2645. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2646. font-weight:400;
  2647. font-style:normal;
  2648. font-size:10px;
  2649. color:#FFFFFF;
  2650. text-align:center;
  2651. }
  2652. #u5642 {
  2653. border-width:0px;
  2654. position:absolute;
  2655. left:106px;
  2656. top:929px;
  2657. width:20px;
  2658. height:18px;
  2659. display:flex;
  2660. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2661. font-weight:400;
  2662. font-style:normal;
  2663. font-size:10px;
  2664. color:#FFFFFF;
  2665. text-align:center;
  2666. }
  2667. #u5642 .text {
  2668. position:absolute;
  2669. align-self:center;
  2670. padding:2px 2px 2px 2px;
  2671. box-sizing:border-box;
  2672. width:100%;
  2673. }
  2674. #u5642_text {
  2675. border-width:0px;
  2676. word-wrap:break-word;
  2677. text-transform:none;
  2678. }
  2679. #u5643_div {
  2680. border-width:0px;
  2681. position:absolute;
  2682. left:0px;
  2683. top:0px;
  2684. width:35px;
  2685. height:18px;
  2686. background:inherit;
  2687. background-color:rgba(255, 255, 255, 1);
  2688. box-sizing:border-box;
  2689. border-width:1px;
  2690. border-style:solid;
  2691. border-color:rgba(245, 154, 35, 1);
  2692. border-left:0px;
  2693. border-radius:2px;
  2694. border-top-left-radius:0px;
  2695. border-bottom-left-radius:0px;
  2696. -moz-box-shadow:none;
  2697. -webkit-box-shadow:none;
  2698. box-shadow:none;
  2699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2700. font-weight:400;
  2701. font-style:normal;
  2702. font-size:10px;
  2703. color:#AAAAAA;
  2704. }
  2705. #u5643 {
  2706. border-width:0px;
  2707. position:absolute;
  2708. left:126px;
  2709. top:929px;
  2710. width:35px;
  2711. height:18px;
  2712. display:flex;
  2713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2714. font-weight:400;
  2715. font-style:normal;
  2716. font-size:10px;
  2717. color:#AAAAAA;
  2718. }
  2719. #u5643 .text {
  2720. position:absolute;
  2721. align-self:center;
  2722. padding:2px 2px 2px 2px;
  2723. box-sizing:border-box;
  2724. width:100%;
  2725. }
  2726. #u5643_text {
  2727. border-width:0px;
  2728. word-wrap:break-word;
  2729. text-transform:none;
  2730. }
  2731. #u5644 {
  2732. border-width:0px;
  2733. position:absolute;
  2734. left:0px;
  2735. top:0px;
  2736. width:0px;
  2737. height:0px;
  2738. }
  2739. #u5645_div {
  2740. border-width:0px;
  2741. position:absolute;
  2742. left:0px;
  2743. top:0px;
  2744. width:20px;
  2745. height:18px;
  2746. background:inherit;
  2747. background-color:rgba(0, 191, 191, 1);
  2748. border:none;
  2749. border-right:0px;
  2750. border-radius:2px;
  2751. border-top-right-radius:0px;
  2752. border-bottom-right-radius:0px;
  2753. -moz-box-shadow:none;
  2754. -webkit-box-shadow:none;
  2755. box-shadow:none;
  2756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2757. font-weight:400;
  2758. font-style:normal;
  2759. font-size:10px;
  2760. color:#FFFFFF;
  2761. text-align:center;
  2762. }
  2763. #u5645 {
  2764. border-width:0px;
  2765. position:absolute;
  2766. left:41px;
  2767. top:929px;
  2768. width:20px;
  2769. height:18px;
  2770. display:flex;
  2771. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2772. font-weight:400;
  2773. font-style:normal;
  2774. font-size:10px;
  2775. color:#FFFFFF;
  2776. text-align:center;
  2777. }
  2778. #u5645 .text {
  2779. position:absolute;
  2780. align-self:center;
  2781. padding:2px 2px 2px 2px;
  2782. box-sizing:border-box;
  2783. width:100%;
  2784. }
  2785. #u5645_text {
  2786. border-width:0px;
  2787. word-wrap:break-word;
  2788. text-transform:none;
  2789. }
  2790. #u5646_div {
  2791. border-width:0px;
  2792. position:absolute;
  2793. left:0px;
  2794. top:0px;
  2795. width:35px;
  2796. height:18px;
  2797. background:inherit;
  2798. background-color:rgba(255, 255, 255, 1);
  2799. box-sizing:border-box;
  2800. border-width:1px;
  2801. border-style:solid;
  2802. border-color:rgba(0, 191, 191, 1);
  2803. border-left:0px;
  2804. border-radius:2px;
  2805. border-top-left-radius:0px;
  2806. border-bottom-left-radius:0px;
  2807. -moz-box-shadow:none;
  2808. -webkit-box-shadow:none;
  2809. box-shadow:none;
  2810. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2811. font-weight:400;
  2812. font-style:normal;
  2813. font-size:10px;
  2814. color:#AAAAAA;
  2815. }
  2816. #u5646 {
  2817. border-width:0px;
  2818. position:absolute;
  2819. left:61px;
  2820. top:929px;
  2821. width:35px;
  2822. height:18px;
  2823. display:flex;
  2824. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2825. font-weight:400;
  2826. font-style:normal;
  2827. font-size:10px;
  2828. color:#AAAAAA;
  2829. }
  2830. #u5646 .text {
  2831. position:absolute;
  2832. align-self:center;
  2833. padding:2px 2px 2px 2px;
  2834. box-sizing:border-box;
  2835. width:100%;
  2836. }
  2837. #u5646_text {
  2838. border-width:0px;
  2839. word-wrap:break-word;
  2840. text-transform:none;
  2841. }
  2842. #u5647 {
  2843. border-width:0px;
  2844. position:absolute;
  2845. left:0px;
  2846. top:0px;
  2847. width:0px;
  2848. height:0px;
  2849. }
  2850. #u5648_div {
  2851. border-width:0px;
  2852. position:absolute;
  2853. left:0px;
  2854. top:0px;
  2855. width:256px;
  2856. height:17px;
  2857. background:inherit;
  2858. background-color:rgba(255, 255, 255, 0);
  2859. border:none;
  2860. border-radius:0px;
  2861. -moz-box-shadow:none;
  2862. -webkit-box-shadow:none;
  2863. box-shadow:none;
  2864. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2865. font-weight:400;
  2866. font-style:normal;
  2867. font-size:12px;
  2868. color:#555555;
  2869. }
  2870. #u5648 {
  2871. border-width:0px;
  2872. position:absolute;
  2873. left:60px;
  2874. top:957px;
  2875. width:256px;
  2876. height:17px;
  2877. display:flex;
  2878. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2879. font-weight:400;
  2880. font-style:normal;
  2881. font-size:12px;
  2882. color:#555555;
  2883. }
  2884. #u5648 .text {
  2885. position:absolute;
  2886. align-self:flex-start;
  2887. padding:0px 0px 0px 0px;
  2888. box-sizing:border-box;
  2889. width:100%;
  2890. }
  2891. #u5648_text {
  2892. border-width:0px;
  2893. word-wrap:break-word;
  2894. text-transform:none;
  2895. }
  2896. #u5649_img {
  2897. border-width:0px;
  2898. position:absolute;
  2899. left:0px;
  2900. top:0px;
  2901. width:14px;
  2902. height:15px;
  2903. }
  2904. #u5649 {
  2905. border-width:0px;
  2906. position:absolute;
  2907. left:41px;
  2908. top:957px;
  2909. width:14px;
  2910. height:15px;
  2911. display:flex;
  2912. }
  2913. #u5649 .text {
  2914. position:absolute;
  2915. align-self:center;
  2916. padding:2px 2px 2px 2px;
  2917. box-sizing:border-box;
  2918. width:100%;
  2919. }
  2920. #u5649_text {
  2921. border-width:0px;
  2922. word-wrap:break-word;
  2923. text-transform:none;
  2924. visibility:hidden;
  2925. }
  2926. #u5650_div {
  2927. border-width:0px;
  2928. position:absolute;
  2929. left:0px;
  2930. top:0px;
  2931. width:57px;
  2932. height:21px;
  2933. background:inherit;
  2934. background-color:rgba(215, 215, 215, 1);
  2935. border:none;
  2936. border-radius:2px;
  2937. -moz-box-shadow:none;
  2938. -webkit-box-shadow:none;
  2939. box-shadow:none;
  2940. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2941. font-weight:400;
  2942. font-style:normal;
  2943. font-size:12px;
  2944. color:#555555;
  2945. }
  2946. #u5650 {
  2947. border-width:0px;
  2948. position:absolute;
  2949. left:87px;
  2950. top:705px;
  2951. width:57px;
  2952. height:21px;
  2953. display:flex;
  2954. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2955. font-weight:400;
  2956. font-style:normal;
  2957. font-size:12px;
  2958. color:#555555;
  2959. }
  2960. #u5650 .text {
  2961. position:absolute;
  2962. align-self:flex-start;
  2963. padding:2px 4px 2px 4px;
  2964. box-sizing:border-box;
  2965. width:100%;
  2966. }
  2967. #u5650_text {
  2968. border-width:0px;
  2969. white-space:nowrap;
  2970. text-transform:none;
  2971. }
  2972. #u5651 {
  2973. border-width:0px;
  2974. position:absolute;
  2975. left:0px;
  2976. top:0px;
  2977. width:0px;
  2978. height:0px;
  2979. }
  2980. #u5652_img {
  2981. border-width:0px;
  2982. position:absolute;
  2983. left:0px;
  2984. top:0px;
  2985. width:14px;
  2986. height:14px;
  2987. }
  2988. #u5652 {
  2989. border-width:0px;
  2990. position:absolute;
  2991. left:330px;
  2992. top:667px;
  2993. width:14px;
  2994. height:14px;
  2995. display:flex;
  2996. }
  2997. #u5652 .text {
  2998. position:absolute;
  2999. align-self:center;
  3000. padding:2px 2px 2px 2px;
  3001. box-sizing:border-box;
  3002. width:100%;
  3003. }
  3004. #u5652_text {
  3005. border-width:0px;
  3006. word-wrap:break-word;
  3007. text-transform:none;
  3008. visibility:hidden;
  3009. }
  3010. #u5653_div {
  3011. border-width:0px;
  3012. position:absolute;
  3013. left:0px;
  3014. top:0px;
  3015. width:49px;
  3016. height:17px;
  3017. background:inherit;
  3018. background-color:rgba(255, 255, 255, 0);
  3019. border:none;
  3020. border-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:#7F7F7F;
  3029. text-align:right;
  3030. }
  3031. #u5653 {
  3032. border-width:0px;
  3033. position:absolute;
  3034. left:348px;
  3035. top:665px;
  3036. width:49px;
  3037. height:17px;
  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:#7F7F7F;
  3044. text-align:right;
  3045. }
  3046. #u5653 .text {
  3047. position:absolute;
  3048. align-self:flex-start;
  3049. padding:0px 0px 0px 0px;
  3050. box-sizing:border-box;
  3051. width:100%;
  3052. }
  3053. #u5653_text {
  3054. border-width:0px;
  3055. white-space:nowrap;
  3056. text-transform:none;
  3057. }
  3058. #u5654_div {
  3059. border-width:0px;
  3060. position:absolute;
  3061. left:0px;
  3062. top:0px;
  3063. width:61px;
  3064. height:17px;
  3065. background:inherit;
  3066. background-color:rgba(255, 255, 255, 0);
  3067. border:none;
  3068. border-radius:0px;
  3069. -moz-box-shadow:none;
  3070. -webkit-box-shadow:none;
  3071. box-shadow:none;
  3072. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3073. font-weight:400;
  3074. font-style:normal;
  3075. font-size:12px;
  3076. color:#7F7F7F;
  3077. text-align:right;
  3078. }
  3079. #u5654 {
  3080. border-width:0px;
  3081. position:absolute;
  3082. left:171px;
  3083. top:1114px;
  3084. width:61px;
  3085. height:17px;
  3086. display:flex;
  3087. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3088. font-weight:400;
  3089. font-style:normal;
  3090. font-size:12px;
  3091. color:#7F7F7F;
  3092. text-align:right;
  3093. }
  3094. #u5654 .text {
  3095. position:absolute;
  3096. align-self:flex-start;
  3097. padding:0px 0px 0px 0px;
  3098. box-sizing:border-box;
  3099. width:100%;
  3100. }
  3101. #u5654_text {
  3102. border-width:0px;
  3103. white-space:nowrap;
  3104. text-transform:none;
  3105. }
  3106. #u5655_div {
  3107. border-width:0px;
  3108. position:absolute;
  3109. left:0px;
  3110. top:0px;
  3111. width:69px;
  3112. height:21px;
  3113. background:inherit;
  3114. background-color:rgba(215, 215, 215, 1);
  3115. border:none;
  3116. border-radius:2px;
  3117. -moz-box-shadow:none;
  3118. -webkit-box-shadow:none;
  3119. box-shadow:none;
  3120. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3121. font-weight:400;
  3122. font-style:normal;
  3123. font-size:12px;
  3124. color:#555555;
  3125. }
  3126. #u5655 {
  3127. border-width:0px;
  3128. position:absolute;
  3129. left:154px;
  3130. top:705px;
  3131. width:69px;
  3132. height:21px;
  3133. display:flex;
  3134. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3135. font-weight:400;
  3136. font-style:normal;
  3137. font-size:12px;
  3138. color:#555555;
  3139. }
  3140. #u5655 .text {
  3141. position:absolute;
  3142. align-self:flex-start;
  3143. padding:2px 4px 2px 4px;
  3144. box-sizing:border-box;
  3145. width:100%;
  3146. }
  3147. #u5655_text {
  3148. border-width:0px;
  3149. white-space:nowrap;
  3150. text-transform:none;
  3151. }
  3152. #u5656_div {
  3153. border-width:0px;
  3154. position:absolute;
  3155. left:0px;
  3156. top:0px;
  3157. width:45px;
  3158. height:21px;
  3159. background:inherit;
  3160. background-color:rgba(215, 215, 215, 1);
  3161. border:none;
  3162. border-radius:2px;
  3163. -moz-box-shadow:none;
  3164. -webkit-box-shadow:none;
  3165. box-shadow:none;
  3166. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3167. font-weight:400;
  3168. font-style:normal;
  3169. font-size:12px;
  3170. color:#555555;
  3171. }
  3172. #u5656 {
  3173. border-width:0px;
  3174. position:absolute;
  3175. left:233px;
  3176. top:705px;
  3177. width:45px;
  3178. height:21px;
  3179. display:flex;
  3180. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3181. font-weight:400;
  3182. font-style:normal;
  3183. font-size:12px;
  3184. color:#555555;
  3185. }
  3186. #u5656 .text {
  3187. position:absolute;
  3188. align-self:flex-start;
  3189. padding:2px 4px 2px 4px;
  3190. box-sizing:border-box;
  3191. width:100%;
  3192. }
  3193. #u5656_text {
  3194. border-width:0px;
  3195. white-space:nowrap;
  3196. text-transform:none;
  3197. }
  3198. #u5657_div {
  3199. border-width:0px;
  3200. position:absolute;
  3201. left:0px;
  3202. top:0px;
  3203. width:73px;
  3204. height:40px;
  3205. background:inherit;
  3206. background-color:rgba(255, 255, 255, 0);
  3207. box-sizing:border-box;
  3208. border-width:2px;
  3209. border-style:solid;
  3210. border-color:rgba(0, 191, 191, 1);
  3211. border-left:0px;
  3212. border-top:0px;
  3213. border-right:0px;
  3214. border-radius:0px;
  3215. border-bottom-right-radius:0px;
  3216. border-bottom-left-radius:0px;
  3217. -moz-box-shadow:none;
  3218. -webkit-box-shadow:none;
  3219. box-shadow:none;
  3220. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3221. font-weight:500;
  3222. font-style:normal;
  3223. font-size:18px;
  3224. }
  3225. #u5657 {
  3226. border-width:0px;
  3227. position:absolute;
  3228. left:41px;
  3229. top:657px;
  3230. width:73px;
  3231. height:40px;
  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. }
  3238. #u5657 .text {
  3239. position:absolute;
  3240. align-self:flex-start;
  3241. padding:5px 0px 5px 0px;
  3242. box-sizing:border-box;
  3243. width:100%;
  3244. }
  3245. #u5657_text {
  3246. border-width:0px;
  3247. white-space:nowrap;
  3248. text-transform:none;
  3249. }
  3250. #u5658_div {
  3251. border-width:0px;
  3252. position:absolute;
  3253. left:0px;
  3254. top:0px;
  3255. width:33px;
  3256. height:21px;
  3257. background:inherit;
  3258. background-color:rgba(24, 144, 255, 1);
  3259. border:none;
  3260. border-radius:2px;
  3261. -moz-box-shadow:none;
  3262. -webkit-box-shadow:none;
  3263. box-shadow:none;
  3264. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3265. font-weight:400;
  3266. font-style:normal;
  3267. font-size:12px;
  3268. color:#FFFFFF;
  3269. }
  3270. #u5658 {
  3271. border-width:0px;
  3272. position:absolute;
  3273. left:44px;
  3274. top:705px;
  3275. width:33px;
  3276. height:21px;
  3277. display:flex;
  3278. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3279. font-weight:400;
  3280. font-style:normal;
  3281. font-size:12px;
  3282. color:#FFFFFF;
  3283. }
  3284. #u5658 .text {
  3285. position:absolute;
  3286. align-self:flex-start;
  3287. padding:2px 4px 2px 4px;
  3288. box-sizing:border-box;
  3289. width:100%;
  3290. }
  3291. #u5658_text {
  3292. border-width:0px;
  3293. white-space:nowrap;
  3294. text-transform:none;
  3295. }
  3296. #u5659_div {
  3297. border-width:0px;
  3298. position:absolute;
  3299. left:0px;
  3300. top:0px;
  3301. width:65px;
  3302. height:32px;
  3303. background:inherit;
  3304. background-color:rgba(255, 255, 255, 0);
  3305. border:none;
  3306. border-radius:0px;
  3307. -moz-box-shadow:none;
  3308. -webkit-box-shadow:none;
  3309. box-shadow:none;
  3310. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3311. font-weight:400;
  3312. font-style:normal;
  3313. font-size:16px;
  3314. }
  3315. #u5659 {
  3316. border-width:0px;
  3317. position:absolute;
  3318. left:134px;
  3319. top:660px;
  3320. width:65px;
  3321. height:32px;
  3322. display:flex;
  3323. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3324. font-weight:400;
  3325. font-style:normal;
  3326. font-size:16px;
  3327. }
  3328. #u5659 .text {
  3329. position:absolute;
  3330. align-self:flex-start;
  3331. padding:5px 0px 5px 0px;
  3332. box-sizing:border-box;
  3333. width:100%;
  3334. }
  3335. #u5659_text {
  3336. border-width:0px;
  3337. white-space:nowrap;
  3338. text-transform:none;
  3339. }
  3340. #u5660 {
  3341. border-width:0px;
  3342. position:absolute;
  3343. left:0px;
  3344. top:0px;
  3345. width:0px;
  3346. height:0px;
  3347. }
  3348. #u5661_div {
  3349. border-width:0px;
  3350. position:absolute;
  3351. left:0px;
  3352. top:0px;
  3353. width:375px;
  3354. height:110px;
  3355. background:inherit;
  3356. background-color:rgba(255, 255, 255, 1);
  3357. box-sizing:border-box;
  3358. border-width:1px;
  3359. border-style:solid;
  3360. border-color:rgba(242, 242, 242, 1);
  3361. border-left:0px;
  3362. border-top:0px;
  3363. border-right:0px;
  3364. border-radius:0px;
  3365. border-bottom-right-radius:0px;
  3366. border-bottom-left-radius:0px;
  3367. -moz-box-shadow:none;
  3368. -webkit-box-shadow:none;
  3369. box-shadow:none;
  3370. }
  3371. #u5661 {
  3372. border-width:0px;
  3373. position:absolute;
  3374. left:29px;
  3375. top:994px;
  3376. width:375px;
  3377. height:110px;
  3378. display:flex;
  3379. }
  3380. #u5661 .text {
  3381. position:absolute;
  3382. align-self:center;
  3383. padding:2px 2px 2px 2px;
  3384. box-sizing:border-box;
  3385. width:100%;
  3386. }
  3387. #u5661_text {
  3388. border-width:0px;
  3389. word-wrap:break-word;
  3390. text-transform:none;
  3391. visibility:hidden;
  3392. }
  3393. #u5662_div {
  3394. border-width:0px;
  3395. position:absolute;
  3396. left:0px;
  3397. top:0px;
  3398. width:147px;
  3399. height:17px;
  3400. background:inherit;
  3401. background-color:rgba(255, 255, 255, 0);
  3402. border:none;
  3403. border-radius:0px;
  3404. -moz-box-shadow:none;
  3405. -webkit-box-shadow:none;
  3406. box-shadow:none;
  3407. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3408. font-weight:400;
  3409. font-style:normal;
  3410. font-size:12px;
  3411. color:#AAAAAA;
  3412. }
  3413. #u5662 {
  3414. border-width:0px;
  3415. position:absolute;
  3416. left:41px;
  3417. top:1027px;
  3418. width:147px;
  3419. height:17px;
  3420. display:flex;
  3421. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3422. font-weight:400;
  3423. font-style:normal;
  3424. font-size:12px;
  3425. color:#AAAAAA;
  3426. }
  3427. #u5662 .text {
  3428. position:absolute;
  3429. align-self:flex-start;
  3430. padding:0px 0px 0px 0px;
  3431. box-sizing:border-box;
  3432. width:100%;
  3433. }
  3434. #u5662_text {
  3435. border-width:0px;
  3436. white-space:nowrap;
  3437. text-transform:none;
  3438. }
  3439. #u5663_div {
  3440. border-width:0px;
  3441. position:absolute;
  3442. left:0px;
  3443. top:0px;
  3444. width:44px;
  3445. height:20px;
  3446. background:inherit;
  3447. background-color:rgba(255, 255, 255, 0);
  3448. border:none;
  3449. border-radius:0px;
  3450. -moz-box-shadow:none;
  3451. -webkit-box-shadow:none;
  3452. box-shadow:none;
  3453. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3454. font-weight:500;
  3455. font-style:normal;
  3456. font-size:14px;
  3457. text-align:right;
  3458. }
  3459. #u5663 {
  3460. border-width:0px;
  3461. position:absolute;
  3462. left:350px;
  3463. top:1002px;
  3464. width:44px;
  3465. height:20px;
  3466. display:flex;
  3467. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3468. font-weight:500;
  3469. font-style:normal;
  3470. font-size:14px;
  3471. text-align:right;
  3472. }
  3473. #u5663 .text {
  3474. position:absolute;
  3475. align-self:flex-start;
  3476. padding:0px 0px 0px 0px;
  3477. box-sizing:border-box;
  3478. width:100%;
  3479. }
  3480. #u5663_text {
  3481. border-width:0px;
  3482. white-space:nowrap;
  3483. text-transform:none;
  3484. }
  3485. #u5664_div {
  3486. border-width:0px;
  3487. position:absolute;
  3488. left:0px;
  3489. top:0px;
  3490. width:50px;
  3491. height:21px;
  3492. background:inherit;
  3493. background-color:rgba(0, 137, 254, 1);
  3494. border:none;
  3495. border-radius:21px;
  3496. -moz-box-shadow:none;
  3497. -webkit-box-shadow:none;
  3498. box-shadow:none;
  3499. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3500. font-weight:400;
  3501. font-style:normal;
  3502. font-size:12px;
  3503. color:#FFFFFF;
  3504. text-align:center;
  3505. }
  3506. #u5664 {
  3507. border-width:0px;
  3508. position:absolute;
  3509. left:347px;
  3510. top:1046px;
  3511. width:50px;
  3512. height:21px;
  3513. display:flex;
  3514. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3515. font-weight:400;
  3516. font-style:normal;
  3517. font-size:12px;
  3518. color:#FFFFFF;
  3519. text-align:center;
  3520. }
  3521. #u5664 .text {
  3522. position:absolute;
  3523. align-self:flex-start;
  3524. padding:2px 2px 2px 2px;
  3525. box-sizing:border-box;
  3526. width:100%;
  3527. }
  3528. #u5664_text {
  3529. border-width:0px;
  3530. word-wrap:break-word;
  3531. text-transform:none;
  3532. }
  3533. #u5665 {
  3534. border-width:0px;
  3535. position:absolute;
  3536. left:0px;
  3537. top:0px;
  3538. width:0px;
  3539. height:0px;
  3540. }
  3541. #u5666_div {
  3542. border-width:0px;
  3543. position:absolute;
  3544. left:0px;
  3545. top:0px;
  3546. width:113px;
  3547. height:20px;
  3548. background:inherit;
  3549. background-color:rgba(255, 255, 255, 0);
  3550. border:none;
  3551. border-radius:0px;
  3552. -moz-box-shadow:none;
  3553. -webkit-box-shadow:none;
  3554. box-shadow:none;
  3555. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3556. font-weight:500;
  3557. font-style:normal;
  3558. font-size:14px;
  3559. }
  3560. #u5666 {
  3561. border-width:0px;
  3562. position:absolute;
  3563. left:41px;
  3564. top:1002px;
  3565. width:113px;
  3566. height:20px;
  3567. display:flex;
  3568. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3569. font-weight:500;
  3570. font-style:normal;
  3571. font-size:14px;
  3572. }
  3573. #u5666 .text {
  3574. position:absolute;
  3575. align-self:flex-start;
  3576. padding:0px 0px 0px 0px;
  3577. box-sizing:border-box;
  3578. width:100%;
  3579. }
  3580. #u5666_text {
  3581. border-width:0px;
  3582. white-space:nowrap;
  3583. text-transform:none;
  3584. }
  3585. #u5667_img {
  3586. border-width:0px;
  3587. position:absolute;
  3588. left:0px;
  3589. top:0px;
  3590. width:7px;
  3591. height:12px;
  3592. }
  3593. #u5667 {
  3594. border-width:0px;
  3595. position:absolute;
  3596. left:158px;
  3597. top:1006px;
  3598. width:7px;
  3599. height:12px;
  3600. display:flex;
  3601. -webkit-transform:rotate(180deg);
  3602. -moz-transform:rotate(180deg);
  3603. -ms-transform:rotate(180deg);
  3604. transform:rotate(180deg);
  3605. }
  3606. #u5667 .text {
  3607. position:absolute;
  3608. align-self:center;
  3609. padding:2px 2px 2px 2px;
  3610. box-sizing:border-box;
  3611. width:100%;
  3612. }
  3613. #u5667_text {
  3614. border-width:0px;
  3615. word-wrap:break-word;
  3616. text-transform:none;
  3617. visibility:hidden;
  3618. }
  3619. #u5668 {
  3620. border-width:0px;
  3621. position:absolute;
  3622. left:0px;
  3623. top:0px;
  3624. width:0px;
  3625. height:0px;
  3626. }
  3627. #u5669_div {
  3628. border-width:0px;
  3629. position:absolute;
  3630. left:0px;
  3631. top:0px;
  3632. width:20px;
  3633. height:18px;
  3634. background:inherit;
  3635. background-color:rgba(245, 154, 35, 1);
  3636. border:none;
  3637. border-right:0px;
  3638. border-radius:2px;
  3639. border-top-right-radius:0px;
  3640. border-bottom-right-radius:0px;
  3641. -moz-box-shadow:none;
  3642. -webkit-box-shadow:none;
  3643. box-shadow:none;
  3644. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3645. font-weight:400;
  3646. font-style:normal;
  3647. font-size:10px;
  3648. color:#FFFFFF;
  3649. text-align:center;
  3650. }
  3651. #u5669 {
  3652. border-width:0px;
  3653. position:absolute;
  3654. left:106px;
  3655. top:1049px;
  3656. width:20px;
  3657. height:18px;
  3658. display:flex;
  3659. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3660. font-weight:400;
  3661. font-style:normal;
  3662. font-size:10px;
  3663. color:#FFFFFF;
  3664. text-align:center;
  3665. }
  3666. #u5669 .text {
  3667. position:absolute;
  3668. align-self:center;
  3669. padding:2px 2px 2px 2px;
  3670. box-sizing:border-box;
  3671. width:100%;
  3672. }
  3673. #u5669_text {
  3674. border-width:0px;
  3675. word-wrap:break-word;
  3676. text-transform:none;
  3677. }
  3678. #u5670_div {
  3679. border-width:0px;
  3680. position:absolute;
  3681. left:0px;
  3682. top:0px;
  3683. width:35px;
  3684. height:18px;
  3685. background:inherit;
  3686. background-color:rgba(255, 255, 255, 1);
  3687. box-sizing:border-box;
  3688. border-width:1px;
  3689. border-style:solid;
  3690. border-color:rgba(245, 154, 35, 1);
  3691. border-left:0px;
  3692. border-radius:2px;
  3693. border-top-left-radius:0px;
  3694. border-bottom-left-radius:0px;
  3695. -moz-box-shadow:none;
  3696. -webkit-box-shadow:none;
  3697. box-shadow:none;
  3698. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3699. font-weight:400;
  3700. font-style:normal;
  3701. font-size:10px;
  3702. color:#AAAAAA;
  3703. }
  3704. #u5670 {
  3705. border-width:0px;
  3706. position:absolute;
  3707. left:126px;
  3708. top:1049px;
  3709. width:35px;
  3710. height:18px;
  3711. display:flex;
  3712. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3713. font-weight:400;
  3714. font-style:normal;
  3715. font-size:10px;
  3716. color:#AAAAAA;
  3717. }
  3718. #u5670 .text {
  3719. position:absolute;
  3720. align-self:center;
  3721. padding:2px 2px 2px 2px;
  3722. box-sizing:border-box;
  3723. width:100%;
  3724. }
  3725. #u5670_text {
  3726. border-width:0px;
  3727. word-wrap:break-word;
  3728. text-transform:none;
  3729. }
  3730. #u5671 {
  3731. border-width:0px;
  3732. position:absolute;
  3733. left:0px;
  3734. top:0px;
  3735. width:0px;
  3736. height:0px;
  3737. }
  3738. #u5672_div {
  3739. border-width:0px;
  3740. position:absolute;
  3741. left:0px;
  3742. top:0px;
  3743. width:20px;
  3744. height:18px;
  3745. background:inherit;
  3746. background-color:rgba(0, 191, 191, 1);
  3747. border:none;
  3748. border-right:0px;
  3749. border-radius:2px;
  3750. border-top-right-radius:0px;
  3751. border-bottom-right-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:10px;
  3759. color:#FFFFFF;
  3760. text-align:center;
  3761. }
  3762. #u5672 {
  3763. border-width:0px;
  3764. position:absolute;
  3765. left:41px;
  3766. top:1049px;
  3767. width:20px;
  3768. height:18px;
  3769. display:flex;
  3770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3771. font-weight:400;
  3772. font-style:normal;
  3773. font-size:10px;
  3774. color:#FFFFFF;
  3775. text-align:center;
  3776. }
  3777. #u5672 .text {
  3778. position:absolute;
  3779. align-self:center;
  3780. padding:2px 2px 2px 2px;
  3781. box-sizing:border-box;
  3782. width:100%;
  3783. }
  3784. #u5672_text {
  3785. border-width:0px;
  3786. word-wrap:break-word;
  3787. text-transform:none;
  3788. }
  3789. #u5673_div {
  3790. border-width:0px;
  3791. position:absolute;
  3792. left:0px;
  3793. top:0px;
  3794. width:35px;
  3795. height:18px;
  3796. background:inherit;
  3797. background-color:rgba(255, 255, 255, 1);
  3798. box-sizing:border-box;
  3799. border-width:1px;
  3800. border-style:solid;
  3801. border-color:rgba(0, 191, 191, 1);
  3802. border-left:0px;
  3803. border-radius:2px;
  3804. border-top-left-radius:0px;
  3805. border-bottom-left-radius:0px;
  3806. -moz-box-shadow:none;
  3807. -webkit-box-shadow:none;
  3808. box-shadow:none;
  3809. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3810. font-weight:400;
  3811. font-style:normal;
  3812. font-size:10px;
  3813. color:#AAAAAA;
  3814. }
  3815. #u5673 {
  3816. border-width:0px;
  3817. position:absolute;
  3818. left:61px;
  3819. top:1049px;
  3820. width:35px;
  3821. height:18px;
  3822. display:flex;
  3823. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3824. font-weight:400;
  3825. font-style:normal;
  3826. font-size:10px;
  3827. color:#AAAAAA;
  3828. }
  3829. #u5673 .text {
  3830. position:absolute;
  3831. align-self:center;
  3832. padding:2px 2px 2px 2px;
  3833. box-sizing:border-box;
  3834. width:100%;
  3835. }
  3836. #u5673_text {
  3837. border-width:0px;
  3838. word-wrap:break-word;
  3839. text-transform:none;
  3840. }
  3841. #u5674 {
  3842. border-width:0px;
  3843. position:absolute;
  3844. left:0px;
  3845. top:0px;
  3846. width:0px;
  3847. height:0px;
  3848. }
  3849. #u5675_div {
  3850. border-width:0px;
  3851. position:absolute;
  3852. left:0px;
  3853. top:0px;
  3854. width:256px;
  3855. height:17px;
  3856. background:inherit;
  3857. background-color:rgba(255, 255, 255, 0);
  3858. border:none;
  3859. border-radius:0px;
  3860. -moz-box-shadow:none;
  3861. -webkit-box-shadow:none;
  3862. box-shadow:none;
  3863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3864. font-weight:400;
  3865. font-style:normal;
  3866. font-size:12px;
  3867. color:#555555;
  3868. }
  3869. #u5675 {
  3870. border-width:0px;
  3871. position:absolute;
  3872. left:60px;
  3873. top:1077px;
  3874. width:256px;
  3875. height:17px;
  3876. display:flex;
  3877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3878. font-weight:400;
  3879. font-style:normal;
  3880. font-size:12px;
  3881. color:#555555;
  3882. }
  3883. #u5675 .text {
  3884. position:absolute;
  3885. align-self:flex-start;
  3886. padding:0px 0px 0px 0px;
  3887. box-sizing:border-box;
  3888. width:100%;
  3889. }
  3890. #u5675_text {
  3891. border-width:0px;
  3892. word-wrap:break-word;
  3893. text-transform:none;
  3894. }
  3895. #u5676_img {
  3896. border-width:0px;
  3897. position:absolute;
  3898. left:0px;
  3899. top:0px;
  3900. width:14px;
  3901. height:15px;
  3902. }
  3903. #u5676 {
  3904. border-width:0px;
  3905. position:absolute;
  3906. left:41px;
  3907. top:1077px;
  3908. width:14px;
  3909. height:15px;
  3910. display:flex;
  3911. }
  3912. #u5676 .text {
  3913. position:absolute;
  3914. align-self:center;
  3915. padding:2px 2px 2px 2px;
  3916. box-sizing:border-box;
  3917. width:100%;
  3918. }
  3919. #u5676_text {
  3920. border-width:0px;
  3921. word-wrap:break-word;
  3922. text-transform:none;
  3923. visibility:hidden;
  3924. }
  3925. #u5677 {
  3926. border-width:0px;
  3927. position:absolute;
  3928. left:0px;
  3929. top:0px;
  3930. width:0px;
  3931. height:0px;
  3932. }
  3933. #u5678_div {
  3934. border-width:0px;
  3935. position:absolute;
  3936. left:0px;
  3937. top:0px;
  3938. width:375px;
  3939. height:60px;
  3940. background:inherit;
  3941. background-color:rgba(255, 255, 255, 1);
  3942. box-sizing:border-box;
  3943. border-width:1px;
  3944. border-style:solid;
  3945. border-color:rgba(242, 242, 242, 1);
  3946. border-radius:4px;
  3947. -moz-box-shadow:none;
  3948. -webkit-box-shadow:none;
  3949. box-shadow:none;
  3950. }
  3951. #u5678 {
  3952. border-width:0px;
  3953. position:absolute;
  3954. left:29px;
  3955. top:247px;
  3956. width:375px;
  3957. height:60px;
  3958. display:flex;
  3959. }
  3960. #u5678 .text {
  3961. position:absolute;
  3962. align-self:center;
  3963. padding:2px 2px 2px 2px;
  3964. box-sizing:border-box;
  3965. width:100%;
  3966. }
  3967. #u5678_text {
  3968. border-width:0px;
  3969. word-wrap:break-word;
  3970. text-transform:none;
  3971. visibility:hidden;
  3972. }
  3973. #u5679_div {
  3974. border-width:0px;
  3975. position:absolute;
  3976. left:0px;
  3977. top:0px;
  3978. width:43px;
  3979. height:20px;
  3980. background:inherit;
  3981. background-color:rgba(255, 255, 255, 0);
  3982. border:none;
  3983. border-radius:0px;
  3984. -moz-box-shadow:none;
  3985. -webkit-box-shadow:none;
  3986. box-shadow:none;
  3987. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3988. font-weight:400;
  3989. font-style:normal;
  3990. }
  3991. #u5679 {
  3992. border-width:0px;
  3993. position:absolute;
  3994. left:89px;
  3995. top:267px;
  3996. width:43px;
  3997. height:20px;
  3998. display:flex;
  3999. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4000. font-weight:400;
  4001. font-style:normal;
  4002. }
  4003. #u5679 .text {
  4004. position:absolute;
  4005. align-self:flex-start;
  4006. padding:0px 0px 0px 0px;
  4007. box-sizing:border-box;
  4008. width:100%;
  4009. }
  4010. #u5679_text {
  4011. border-width:0px;
  4012. white-space:nowrap;
  4013. text-transform:none;
  4014. }
  4015. #u5680_div {
  4016. border-width:0px;
  4017. position:absolute;
  4018. left:0px;
  4019. top:0px;
  4020. width:30px;
  4021. height:30px;
  4022. background:inherit;
  4023. background-color:rgba(255, 255, 255, 1);
  4024. box-sizing:border-box;
  4025. border-width:1px;
  4026. border-style:solid;
  4027. border-color:rgba(121, 121, 121, 1);
  4028. border-radius:4px;
  4029. -moz-box-shadow:none;
  4030. -webkit-box-shadow:none;
  4031. box-shadow:none;
  4032. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4033. font-weight:400;
  4034. font-style:normal;
  4035. font-size:8px;
  4036. }
  4037. #u5680 {
  4038. border-width:0px;
  4039. position:absolute;
  4040. left:49px;
  4041. top:262px;
  4042. width:30px;
  4043. height:30px;
  4044. display:flex;
  4045. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4046. font-weight:400;
  4047. font-style:normal;
  4048. font-size:8px;
  4049. }
  4050. #u5680 .text {
  4051. position:absolute;
  4052. align-self:center;
  4053. padding:2px 2px 2px 2px;
  4054. box-sizing:border-box;
  4055. width:100%;
  4056. }
  4057. #u5680_text {
  4058. border-width:0px;
  4059. word-wrap:break-word;
  4060. text-transform:none;
  4061. }
  4062. #u5681_div {
  4063. border-width:0px;
  4064. position:absolute;
  4065. left:0px;
  4066. top:0px;
  4067. width:50px;
  4068. height:24px;
  4069. background:inherit;
  4070. background-color:rgba(255, 255, 255, 1);
  4071. box-sizing:border-box;
  4072. border-width:1px;
  4073. border-style:solid;
  4074. border-color:rgba(121, 121, 121, 1);
  4075. border-radius:4px;
  4076. -moz-box-shadow:none;
  4077. -webkit-box-shadow:none;
  4078. box-shadow:none;
  4079. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4080. font-weight:400;
  4081. font-style:normal;
  4082. font-size:12px;
  4083. }
  4084. #u5681 {
  4085. border-width:0px;
  4086. position:absolute;
  4087. left:339px;
  4088. top:265px;
  4089. width:50px;
  4090. height:24px;
  4091. display:flex;
  4092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4093. font-weight:400;
  4094. font-style:normal;
  4095. font-size:12px;
  4096. }
  4097. #u5681 .text {
  4098. position:absolute;
  4099. align-self:center;
  4100. padding:2px 2px 2px 2px;
  4101. box-sizing:border-box;
  4102. width:100%;
  4103. }
  4104. #u5681_text {
  4105. border-width:0px;
  4106. word-wrap:break-word;
  4107. text-transform:none;
  4108. }
  4109. #u5682_img {
  4110. border-width:0px;
  4111. position:absolute;
  4112. left:0px;
  4113. top:0px;
  4114. width:6px;
  4115. height:6px;
  4116. }
  4117. #u5682 {
  4118. border-width:0px;
  4119. position:absolute;
  4120. left:393px;
  4121. top:252px;
  4122. width:6px;
  4123. height:6px;
  4124. display:flex;
  4125. }
  4126. #u5682 .text {
  4127. position:absolute;
  4128. align-self:center;
  4129. padding:2px 2px 2px 2px;
  4130. box-sizing:border-box;
  4131. width:100%;
  4132. }
  4133. #u5682_text {
  4134. border-width:0px;
  4135. word-wrap:break-word;
  4136. text-transform:none;
  4137. visibility:hidden;
  4138. }
  4139. #u5683_img {
  4140. border-width:0px;
  4141. position:absolute;
  4142. left:0px;
  4143. top:0px;
  4144. width:433px;
  4145. height:865px;
  4146. }
  4147. #u5683 {
  4148. border-width:0px;
  4149. position:absolute;
  4150. left:470px;
  4151. top:0px;
  4152. width:433px;
  4153. height:865px;
  4154. display:flex;
  4155. }
  4156. #u5683 .text {
  4157. position:absolute;
  4158. align-self:center;
  4159. padding:2px 2px 2px 2px;
  4160. box-sizing:border-box;
  4161. width:100%;
  4162. }
  4163. #u5683_text {
  4164. border-width:0px;
  4165. word-wrap:break-word;
  4166. text-transform:none;
  4167. visibility:hidden;
  4168. }
  4169. #u5684_div {
  4170. border-width:0px;
  4171. position:absolute;
  4172. left:0px;
  4173. top:0px;
  4174. width:375px;
  4175. height:697px;
  4176. background:inherit;
  4177. background-color:rgba(242, 242, 242, 1);
  4178. border:none;
  4179. border-radius:0px;
  4180. -moz-box-shadow:none;
  4181. -webkit-box-shadow:none;
  4182. box-shadow:none;
  4183. }
  4184. #u5684 {
  4185. border-width:0px;
  4186. position:absolute;
  4187. left:499px;
  4188. top:107px;
  4189. width:375px;
  4190. height:697px;
  4191. display:flex;
  4192. }
  4193. #u5684 .text {
  4194. position:absolute;
  4195. align-self:center;
  4196. padding:2px 2px 2px 2px;
  4197. box-sizing:border-box;
  4198. width:100%;
  4199. }
  4200. #u5684_text {
  4201. border-width:0px;
  4202. word-wrap:break-word;
  4203. text-transform:none;
  4204. visibility:hidden;
  4205. }
  4206. #u5685_div {
  4207. border-width:0px;
  4208. position:absolute;
  4209. left:0px;
  4210. top:0px;
  4211. width:375px;
  4212. height:40px;
  4213. background:inherit;
  4214. background-color:rgba(255, 255, 255, 1);
  4215. box-sizing:border-box;
  4216. border-width:1px;
  4217. border-style:solid;
  4218. border-color:rgba(215, 215, 215, 1);
  4219. border-left:0px;
  4220. border-top:0px;
  4221. border-right:0px;
  4222. border-radius:0px;
  4223. border-bottom-right-radius:0px;
  4224. border-bottom-left-radius:0px;
  4225. -moz-box-shadow:none;
  4226. -webkit-box-shadow:none;
  4227. box-shadow:none;
  4228. }
  4229. #u5685 {
  4230. border-width:0px;
  4231. position:absolute;
  4232. left:499px;
  4233. top:67px;
  4234. width:375px;
  4235. height:40px;
  4236. display:flex;
  4237. }
  4238. #u5685 .text {
  4239. position:absolute;
  4240. align-self:center;
  4241. padding:2px 2px 2px 2px;
  4242. box-sizing:border-box;
  4243. width:100%;
  4244. }
  4245. #u5685_text {
  4246. border-width:0px;
  4247. word-wrap:break-word;
  4248. text-transform:none;
  4249. visibility:hidden;
  4250. }
  4251. #u5686 {
  4252. border-width:0px;
  4253. position:absolute;
  4254. left:0px;
  4255. top:0px;
  4256. width:0px;
  4257. height:0px;
  4258. }
  4259. #u5687_div {
  4260. border-width:0px;
  4261. position:absolute;
  4262. left:0px;
  4263. top:0px;
  4264. width:88px;
  4265. height:32px;
  4266. background:inherit;
  4267. background-color:rgba(255, 255, 255, 1);
  4268. box-sizing:border-box;
  4269. border-width:1px;
  4270. border-style:solid;
  4271. border-color:rgba(242, 242, 242, 1);
  4272. border-radius:33px;
  4273. -moz-box-shadow:none;
  4274. -webkit-box-shadow:none;
  4275. box-shadow:none;
  4276. }
  4277. #u5687 {
  4278. border-width:0px;
  4279. position:absolute;
  4280. left:779px;
  4281. top:71px;
  4282. width:88px;
  4283. height:32px;
  4284. display:flex;
  4285. }
  4286. #u5687 .text {
  4287. position:absolute;
  4288. align-self:center;
  4289. padding:2px 2px 2px 2px;
  4290. box-sizing:border-box;
  4291. width:100%;
  4292. }
  4293. #u5687_text {
  4294. border-width:0px;
  4295. word-wrap:break-word;
  4296. text-transform:none;
  4297. visibility:hidden;
  4298. }
  4299. #u5688 {
  4300. border-width:0px;
  4301. position:absolute;
  4302. left:0px;
  4303. top:0px;
  4304. width:0px;
  4305. height:0px;
  4306. }
  4307. #u5689_img {
  4308. border-width:0px;
  4309. position:absolute;
  4310. left:0px;
  4311. top:0px;
  4312. width:18px;
  4313. height:18px;
  4314. }
  4315. #u5689 {
  4316. border-width:0px;
  4317. position:absolute;
  4318. left:842px;
  4319. top:78px;
  4320. width:18px;
  4321. height:18px;
  4322. display:flex;
  4323. }
  4324. #u5689 .text {
  4325. position:absolute;
  4326. align-self:center;
  4327. padding:2px 2px 2px 2px;
  4328. box-sizing:border-box;
  4329. width:100%;
  4330. }
  4331. #u5689_text {
  4332. border-width:0px;
  4333. word-wrap:break-word;
  4334. text-transform:none;
  4335. visibility:hidden;
  4336. }
  4337. #u5690_img {
  4338. border-width:0px;
  4339. position:absolute;
  4340. left:0px;
  4341. top:0px;
  4342. width:6px;
  4343. height:6px;
  4344. }
  4345. #u5690 {
  4346. border-width:0px;
  4347. position:absolute;
  4348. left:848px;
  4349. top:84px;
  4350. width:6px;
  4351. height:6px;
  4352. display:flex;
  4353. }
  4354. #u5690 .text {
  4355. position:absolute;
  4356. align-self:center;
  4357. padding:2px 2px 2px 2px;
  4358. box-sizing:border-box;
  4359. width:100%;
  4360. }
  4361. #u5690_text {
  4362. border-width:0px;
  4363. word-wrap:break-word;
  4364. text-transform:none;
  4365. visibility:hidden;
  4366. }
  4367. #u5691 {
  4368. border-width:0px;
  4369. position:absolute;
  4370. left:0px;
  4371. top:0px;
  4372. width:0px;
  4373. height:0px;
  4374. }
  4375. #u5692_img {
  4376. border-width:0px;
  4377. position:absolute;
  4378. left:0px;
  4379. top:0px;
  4380. width:5px;
  4381. height:5px;
  4382. }
  4383. #u5692 {
  4384. border-width:0px;
  4385. position:absolute;
  4386. left:793px;
  4387. top:85px;
  4388. width:5px;
  4389. height:5px;
  4390. display:flex;
  4391. }
  4392. #u5692 .text {
  4393. position:absolute;
  4394. align-self:center;
  4395. padding:2px 2px 2px 2px;
  4396. box-sizing:border-box;
  4397. width:100%;
  4398. }
  4399. #u5692_text {
  4400. border-width:0px;
  4401. word-wrap:break-word;
  4402. text-transform:none;
  4403. visibility:hidden;
  4404. }
  4405. #u5693_img {
  4406. border-width:0px;
  4407. position:absolute;
  4408. left:0px;
  4409. top:0px;
  4410. width:5px;
  4411. height:5px;
  4412. }
  4413. #u5693 {
  4414. border-width:0px;
  4415. position:absolute;
  4416. left:809px;
  4417. top:85px;
  4418. width:5px;
  4419. height:5px;
  4420. display:flex;
  4421. }
  4422. #u5693 .text {
  4423. position:absolute;
  4424. align-self:center;
  4425. padding:2px 2px 2px 2px;
  4426. box-sizing:border-box;
  4427. width:100%;
  4428. }
  4429. #u5693_text {
  4430. border-width:0px;
  4431. word-wrap:break-word;
  4432. text-transform:none;
  4433. visibility:hidden;
  4434. }
  4435. #u5694_img {
  4436. border-width:0px;
  4437. position:absolute;
  4438. left:0px;
  4439. top:0px;
  4440. width:7px;
  4441. height:7px;
  4442. }
  4443. #u5694 {
  4444. border-width:0px;
  4445. position:absolute;
  4446. left:800px;
  4447. top:84px;
  4448. width:7px;
  4449. height:7px;
  4450. display:flex;
  4451. }
  4452. #u5694 .text {
  4453. position:absolute;
  4454. align-self:center;
  4455. padding:2px 2px 2px 2px;
  4456. box-sizing:border-box;
  4457. width:100%;
  4458. }
  4459. #u5694_text {
  4460. border-width:0px;
  4461. word-wrap:break-word;
  4462. text-transform:none;
  4463. visibility:hidden;
  4464. }
  4465. #u5695_img {
  4466. border-width:0px;
  4467. position:absolute;
  4468. left:0px;
  4469. top:0px;
  4470. width:19px;
  4471. height:2px;
  4472. }
  4473. #u5695 {
  4474. border-width:0px;
  4475. position:absolute;
  4476. left:817px;
  4477. top:87px;
  4478. width:18px;
  4479. height:1px;
  4480. display:flex;
  4481. -webkit-transform:rotate(90deg);
  4482. -moz-transform:rotate(90deg);
  4483. -ms-transform:rotate(90deg);
  4484. transform:rotate(90deg);
  4485. }
  4486. #u5695 .text {
  4487. position:absolute;
  4488. align-self:center;
  4489. padding:2px 2px 2px 2px;
  4490. box-sizing:border-box;
  4491. width:100%;
  4492. }
  4493. #u5695_text {
  4494. border-width:0px;
  4495. word-wrap:break-word;
  4496. text-transform:none;
  4497. visibility:hidden;
  4498. }
  4499. #u5696_img {
  4500. border-width:0px;
  4501. position:absolute;
  4502. left:0px;
  4503. top:0px;
  4504. width:375px;
  4505. height:44px;
  4506. }
  4507. #u5696 {
  4508. border-width:0px;
  4509. position:absolute;
  4510. left:499px;
  4511. top:24px;
  4512. width:375px;
  4513. height:44px;
  4514. display:flex;
  4515. }
  4516. #u5696 .text {
  4517. position:absolute;
  4518. align-self:center;
  4519. padding:2px 2px 2px 2px;
  4520. box-sizing:border-box;
  4521. width:100%;
  4522. }
  4523. #u5696_text {
  4524. border-width:0px;
  4525. word-wrap:break-word;
  4526. text-transform:none;
  4527. visibility:hidden;
  4528. }
  4529. #u5697_div {
  4530. border-width:0px;
  4531. position:absolute;
  4532. left:0px;
  4533. top:0px;
  4534. width:73px;
  4535. height:25px;
  4536. background:inherit;
  4537. background-color:rgba(255, 255, 255, 0);
  4538. border:none;
  4539. border-radius:0px;
  4540. -moz-box-shadow:none;
  4541. -webkit-box-shadow:none;
  4542. box-shadow:none;
  4543. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4544. font-weight:400;
  4545. font-style:normal;
  4546. font-size:18px;
  4547. }
  4548. #u5697 {
  4549. border-width:0px;
  4550. position:absolute;
  4551. left:651px;
  4552. top:74px;
  4553. width:73px;
  4554. height:25px;
  4555. display:flex;
  4556. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4557. font-weight:400;
  4558. font-style:normal;
  4559. font-size:18px;
  4560. }
  4561. #u5697 .text {
  4562. position:absolute;
  4563. align-self:flex-start;
  4564. padding:0px 0px 0px 0px;
  4565. box-sizing:border-box;
  4566. width:100%;
  4567. }
  4568. #u5697_text {
  4569. border-width:0px;
  4570. white-space:nowrap;
  4571. text-transform:none;
  4572. }
  4573. #u5698_div {
  4574. border-width:0px;
  4575. position:absolute;
  4576. left:0px;
  4577. top:0px;
  4578. width:375px;
  4579. height:140px;
  4580. background:inherit;
  4581. background-color:rgba(41, 143, 255, 1);
  4582. border:none;
  4583. border-radius:5px;
  4584. -moz-box-shadow:none;
  4585. -webkit-box-shadow:none;
  4586. box-shadow:none;
  4587. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4588. font-weight:400;
  4589. font-style:normal;
  4590. font-size:28px;
  4591. color:#FFFFFF;
  4592. }
  4593. #u5698 {
  4594. border-width:0px;
  4595. position:absolute;
  4596. left:499px;
  4597. top:107px;
  4598. width:375px;
  4599. height:140px;
  4600. display:flex;
  4601. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4602. font-weight:400;
  4603. font-style:normal;
  4604. font-size:28px;
  4605. color:#FFFFFF;
  4606. }
  4607. #u5698 .text {
  4608. position:absolute;
  4609. align-self:center;
  4610. padding:2px 2px 2px 2px;
  4611. box-sizing:border-box;
  4612. width:100%;
  4613. }
  4614. #u5698_text {
  4615. border-width:0px;
  4616. word-wrap:break-word;
  4617. text-transform:none;
  4618. }
  4619. #u5699 {
  4620. border-width:0px;
  4621. position:absolute;
  4622. left:0px;
  4623. top:0px;
  4624. width:0px;
  4625. height:0px;
  4626. }
  4627. #u5700_img {
  4628. border-width:0px;
  4629. position:absolute;
  4630. left:0px;
  4631. top:0px;
  4632. width:10px;
  4633. height:10px;
  4634. }
  4635. #u5700 {
  4636. border-width:0px;
  4637. position:absolute;
  4638. left:638px;
  4639. top:231px;
  4640. width:10px;
  4641. height:10px;
  4642. display:flex;
  4643. }
  4644. #u5700 .text {
  4645. position:absolute;
  4646. align-self:center;
  4647. padding:2px 2px 2px 2px;
  4648. box-sizing:border-box;
  4649. width:100%;
  4650. }
  4651. #u5700_text {
  4652. border-width:0px;
  4653. word-wrap:break-word;
  4654. text-transform:none;
  4655. visibility:hidden;
  4656. }
  4657. #u5701_img {
  4658. border-width:0px;
  4659. position:absolute;
  4660. left:0px;
  4661. top:0px;
  4662. width:10px;
  4663. height:10px;
  4664. }
  4665. #u5701 {
  4666. border-width:0px;
  4667. position:absolute;
  4668. left:655px;
  4669. top:231px;
  4670. width:10px;
  4671. height:10px;
  4672. display:flex;
  4673. }
  4674. #u5701 .text {
  4675. position:absolute;
  4676. align-self:center;
  4677. padding:2px 2px 2px 2px;
  4678. box-sizing:border-box;
  4679. width:100%;
  4680. }
  4681. #u5701_text {
  4682. border-width:0px;
  4683. word-wrap:break-word;
  4684. text-transform:none;
  4685. visibility:hidden;
  4686. }
  4687. #u5702_img {
  4688. border-width:0px;
  4689. position:absolute;
  4690. left:0px;
  4691. top:0px;
  4692. width:10px;
  4693. height:10px;
  4694. }
  4695. #u5702 {
  4696. border-width:0px;
  4697. position:absolute;
  4698. left:672px;
  4699. top:231px;
  4700. width:10px;
  4701. height:10px;
  4702. display:flex;
  4703. }
  4704. #u5702 .text {
  4705. position:absolute;
  4706. align-self:center;
  4707. padding:2px 2px 2px 2px;
  4708. box-sizing:border-box;
  4709. width:100%;
  4710. }
  4711. #u5702_text {
  4712. border-width:0px;
  4713. word-wrap:break-word;
  4714. text-transform:none;
  4715. visibility:hidden;
  4716. }
  4717. #u5703_img {
  4718. border-width:0px;
  4719. position:absolute;
  4720. left:0px;
  4721. top:0px;
  4722. width:10px;
  4723. height:10px;
  4724. }
  4725. #u5703 {
  4726. border-width:0px;
  4727. position:absolute;
  4728. left:688px;
  4729. top:231px;
  4730. width:10px;
  4731. height:10px;
  4732. display:flex;
  4733. }
  4734. #u5703 .text {
  4735. position:absolute;
  4736. align-self:center;
  4737. padding:2px 2px 2px 2px;
  4738. box-sizing:border-box;
  4739. width:100%;
  4740. }
  4741. #u5703_text {
  4742. border-width:0px;
  4743. word-wrap:break-word;
  4744. text-transform:none;
  4745. visibility:hidden;
  4746. }
  4747. #u5704_img {
  4748. border-width:0px;
  4749. position:absolute;
  4750. left:0px;
  4751. top:0px;
  4752. width:10px;
  4753. height:10px;
  4754. }
  4755. #u5704 {
  4756. border-width:0px;
  4757. position:absolute;
  4758. left:705px;
  4759. top:231px;
  4760. width:10px;
  4761. height:10px;
  4762. display:flex;
  4763. }
  4764. #u5704 .text {
  4765. position:absolute;
  4766. align-self:center;
  4767. padding:2px 2px 2px 2px;
  4768. box-sizing:border-box;
  4769. width:100%;
  4770. }
  4771. #u5704_text {
  4772. border-width:0px;
  4773. word-wrap:break-word;
  4774. text-transform:none;
  4775. visibility:hidden;
  4776. }
  4777. #u5705 {
  4778. border-width:0px;
  4779. position:absolute;
  4780. left:0px;
  4781. top:0px;
  4782. width:0px;
  4783. height:0px;
  4784. }
  4785. #u5706_div {
  4786. border-width:0px;
  4787. position:absolute;
  4788. left:0px;
  4789. top:0px;
  4790. width:375px;
  4791. height:100px;
  4792. background:inherit;
  4793. background-color:rgba(255, 255, 255, 1);
  4794. border:none;
  4795. border-radius:0px;
  4796. -moz-box-shadow:none;
  4797. -webkit-box-shadow:none;
  4798. box-shadow:none;
  4799. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4800. font-weight:400;
  4801. font-style:normal;
  4802. font-size:28px;
  4803. }
  4804. #u5706 {
  4805. border-width:0px;
  4806. position:absolute;
  4807. left:499px;
  4808. top:257px;
  4809. width:375px;
  4810. height:100px;
  4811. display:flex;
  4812. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4813. font-weight:400;
  4814. font-style:normal;
  4815. font-size:28px;
  4816. }
  4817. #u5706 .text {
  4818. position:absolute;
  4819. align-self:center;
  4820. padding:2px 2px 2px 2px;
  4821. box-sizing:border-box;
  4822. width:100%;
  4823. }
  4824. #u5706_text {
  4825. border-width:0px;
  4826. word-wrap:break-word;
  4827. text-transform:none;
  4828. visibility:hidden;
  4829. }
  4830. #u5707 {
  4831. border-width:0px;
  4832. position:absolute;
  4833. left:0px;
  4834. top:0px;
  4835. width:0px;
  4836. height:0px;
  4837. }
  4838. #u5708_div {
  4839. border-width:0px;
  4840. position:absolute;
  4841. left:0px;
  4842. top:0px;
  4843. width:61px;
  4844. height:17px;
  4845. background:inherit;
  4846. background-color:rgba(255, 255, 255, 0);
  4847. border:none;
  4848. border-radius:0px;
  4849. -moz-box-shadow:none;
  4850. -webkit-box-shadow:none;
  4851. box-shadow:none;
  4852. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4853. font-weight:400;
  4854. font-style:normal;
  4855. font-size:12px;
  4856. }
  4857. #u5708 {
  4858. border-width:0px;
  4859. position:absolute;
  4860. left:703px;
  4861. top:324px;
  4862. width:61px;
  4863. height:17px;
  4864. display:flex;
  4865. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4866. font-weight:400;
  4867. font-style:normal;
  4868. font-size:12px;
  4869. }
  4870. #u5708 .text {
  4871. position:absolute;
  4872. align-self:flex-start;
  4873. padding:0px 0px 0px 0px;
  4874. box-sizing:border-box;
  4875. width:100%;
  4876. }
  4877. #u5708_text {
  4878. border-width:0px;
  4879. white-space:nowrap;
  4880. text-transform:none;
  4881. }
  4882. #u5709_div {
  4883. border-width:0px;
  4884. position:absolute;
  4885. left:0px;
  4886. top:0px;
  4887. width:41px;
  4888. height:41px;
  4889. background:inherit;
  4890. background-color:rgba(191, 191, 0, 1);
  4891. border:none;
  4892. border-radius:4px;
  4893. -moz-box-shadow:none;
  4894. -webkit-box-shadow:none;
  4895. box-shadow:none;
  4896. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4897. font-weight:400;
  4898. font-style:normal;
  4899. font-size:12px;
  4900. color:#FFFFFF;
  4901. }
  4902. #u5709 {
  4903. border-width:0px;
  4904. position:absolute;
  4905. left:713px;
  4906. top:273px;
  4907. width:41px;
  4908. height:41px;
  4909. display:flex;
  4910. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4911. font-weight:400;
  4912. font-style:normal;
  4913. font-size:12px;
  4914. color:#FFFFFF;
  4915. }
  4916. #u5709 .text {
  4917. position:absolute;
  4918. align-self:center;
  4919. padding:2px 2px 2px 2px;
  4920. box-sizing:border-box;
  4921. width:100%;
  4922. }
  4923. #u5709_text {
  4924. border-width:0px;
  4925. word-wrap:break-word;
  4926. text-transform:none;
  4927. }
  4928. #u5710 {
  4929. border-width:0px;
  4930. position:absolute;
  4931. left:0px;
  4932. top:0px;
  4933. width:0px;
  4934. height:0px;
  4935. }
  4936. #u5711_div {
  4937. border-width:0px;
  4938. position:absolute;
  4939. left:0px;
  4940. top:0px;
  4941. width:49px;
  4942. height:17px;
  4943. background:inherit;
  4944. background-color:rgba(255, 255, 255, 0);
  4945. border:none;
  4946. border-radius:0px;
  4947. -moz-box-shadow:none;
  4948. -webkit-box-shadow:none;
  4949. box-shadow:none;
  4950. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4951. font-weight:400;
  4952. font-style:normal;
  4953. font-size:12px;
  4954. }
  4955. #u5711 {
  4956. border-width:0px;
  4957. position:absolute;
  4958. left:525px;
  4959. top:324px;
  4960. width:49px;
  4961. height:17px;
  4962. display:flex;
  4963. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4964. font-weight:400;
  4965. font-style:normal;
  4966. font-size:12px;
  4967. }
  4968. #u5711 .text {
  4969. position:absolute;
  4970. align-self:flex-start;
  4971. padding:0px 0px 0px 0px;
  4972. box-sizing:border-box;
  4973. width:100%;
  4974. }
  4975. #u5711_text {
  4976. border-width:0px;
  4977. white-space:nowrap;
  4978. text-transform:none;
  4979. }
  4980. #u5712_div {
  4981. border-width:0px;
  4982. position:absolute;
  4983. left:0px;
  4984. top:0px;
  4985. width:41px;
  4986. height:41px;
  4987. background:inherit;
  4988. background-color:rgba(0, 137, 254, 1);
  4989. border:none;
  4990. border-radius:4px;
  4991. -moz-box-shadow:none;
  4992. -webkit-box-shadow:none;
  4993. box-shadow:none;
  4994. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4995. font-weight:400;
  4996. font-style:normal;
  4997. font-size:12px;
  4998. color:#FFFFFF;
  4999. }
  5000. #u5712 {
  5001. border-width:0px;
  5002. position:absolute;
  5003. left:529px;
  5004. top:273px;
  5005. width:41px;
  5006. height:41px;
  5007. display:flex;
  5008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5009. font-weight:400;
  5010. font-style:normal;
  5011. font-size:12px;
  5012. color:#FFFFFF;
  5013. }
  5014. #u5712 .text {
  5015. position:absolute;
  5016. align-self:center;
  5017. padding:2px 2px 2px 2px;
  5018. box-sizing:border-box;
  5019. width:100%;
  5020. }
  5021. #u5712_text {
  5022. border-width:0px;
  5023. word-wrap:break-word;
  5024. text-transform:none;
  5025. }
  5026. #u5713 {
  5027. border-width:0px;
  5028. position:absolute;
  5029. left:0px;
  5030. top:0px;
  5031. width:0px;
  5032. height:0px;
  5033. }
  5034. #u5714_div {
  5035. border-width:0px;
  5036. position:absolute;
  5037. left:0px;
  5038. top:0px;
  5039. width:49px;
  5040. height:17px;
  5041. background:inherit;
  5042. background-color:rgba(255, 255, 255, 0);
  5043. border:none;
  5044. border-radius:0px;
  5045. -moz-box-shadow:none;
  5046. -webkit-box-shadow:none;
  5047. box-shadow:none;
  5048. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5049. font-weight:400;
  5050. font-style:normal;
  5051. font-size:12px;
  5052. }
  5053. #u5714 {
  5054. border-width:0px;
  5055. position:absolute;
  5056. left:614px;
  5057. top:324px;
  5058. width:49px;
  5059. height:17px;
  5060. display:flex;
  5061. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5062. font-weight:400;
  5063. font-style:normal;
  5064. font-size:12px;
  5065. }
  5066. #u5714 .text {
  5067. position:absolute;
  5068. align-self:flex-start;
  5069. padding:0px 0px 0px 0px;
  5070. box-sizing:border-box;
  5071. width:100%;
  5072. }
  5073. #u5714_text {
  5074. border-width:0px;
  5075. white-space:nowrap;
  5076. text-transform:none;
  5077. }
  5078. #u5715_div {
  5079. border-width:0px;
  5080. position:absolute;
  5081. left:0px;
  5082. top:0px;
  5083. width:41px;
  5084. height:41px;
  5085. background:inherit;
  5086. background-color:rgba(0, 191, 191, 1);
  5087. border:none;
  5088. border-radius:4px;
  5089. -moz-box-shadow:none;
  5090. -webkit-box-shadow:none;
  5091. box-shadow:none;
  5092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5093. font-weight:400;
  5094. font-style:normal;
  5095. font-size:12px;
  5096. color:#FFFFFF;
  5097. }
  5098. #u5715 {
  5099. border-width:0px;
  5100. position:absolute;
  5101. left:618px;
  5102. top:273px;
  5103. width:41px;
  5104. height:41px;
  5105. display:flex;
  5106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5107. font-weight:400;
  5108. font-style:normal;
  5109. font-size:12px;
  5110. color:#FFFFFF;
  5111. }
  5112. #u5715 .text {
  5113. position:absolute;
  5114. align-self:center;
  5115. padding:2px 2px 2px 2px;
  5116. box-sizing:border-box;
  5117. width:100%;
  5118. }
  5119. #u5715_text {
  5120. border-width:0px;
  5121. word-wrap:break-word;
  5122. text-transform:none;
  5123. }
  5124. #u5716 {
  5125. border-width:0px;
  5126. position:absolute;
  5127. left:0px;
  5128. top:0px;
  5129. width:0px;
  5130. height:0px;
  5131. }
  5132. #u5717_div {
  5133. border-width:0px;
  5134. position:absolute;
  5135. left:0px;
  5136. top:0px;
  5137. width:49px;
  5138. height:17px;
  5139. background:inherit;
  5140. background-color:rgba(255, 255, 255, 0);
  5141. border:none;
  5142. border-radius:0px;
  5143. -moz-box-shadow:none;
  5144. -webkit-box-shadow:none;
  5145. box-shadow:none;
  5146. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5147. font-weight:400;
  5148. font-style:normal;
  5149. font-size:12px;
  5150. }
  5151. #u5717 {
  5152. border-width:0px;
  5153. position:absolute;
  5154. left:804px;
  5155. top:324px;
  5156. width:49px;
  5157. height:17px;
  5158. display:flex;
  5159. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5160. font-weight:400;
  5161. font-style:normal;
  5162. font-size:12px;
  5163. }
  5164. #u5717 .text {
  5165. position:absolute;
  5166. align-self:flex-start;
  5167. padding:0px 0px 0px 0px;
  5168. box-sizing:border-box;
  5169. width:100%;
  5170. }
  5171. #u5717_text {
  5172. border-width:0px;
  5173. white-space:nowrap;
  5174. text-transform:none;
  5175. }
  5176. #u5718_div {
  5177. border-width:0px;
  5178. position:absolute;
  5179. left:0px;
  5180. top:0px;
  5181. width:41px;
  5182. height:41px;
  5183. background:inherit;
  5184. background-color:rgba(128, 128, 255, 1);
  5185. border:none;
  5186. border-radius:4px;
  5187. -moz-box-shadow:none;
  5188. -webkit-box-shadow:none;
  5189. box-shadow:none;
  5190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5191. font-weight:400;
  5192. font-style:normal;
  5193. font-size:12px;
  5194. color:#FFFFFF;
  5195. }
  5196. #u5718 {
  5197. border-width:0px;
  5198. position:absolute;
  5199. left:808px;
  5200. top:273px;
  5201. width:41px;
  5202. height:41px;
  5203. display:flex;
  5204. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5205. font-weight:400;
  5206. font-style:normal;
  5207. font-size:12px;
  5208. color:#FFFFFF;
  5209. }
  5210. #u5718 .text {
  5211. position:absolute;
  5212. align-self:center;
  5213. padding:2px 2px 2px 2px;
  5214. box-sizing:border-box;
  5215. width:100%;
  5216. }
  5217. #u5718_text {
  5218. border-width:0px;
  5219. word-wrap:break-word;
  5220. text-transform:none;
  5221. }
  5222. #u5719 {
  5223. border-width:0px;
  5224. position:absolute;
  5225. left:0px;
  5226. top:0px;
  5227. width:0px;
  5228. height:0px;
  5229. }
  5230. #u5720 {
  5231. border-width:0px;
  5232. position:absolute;
  5233. left:0px;
  5234. top:0px;
  5235. width:0px;
  5236. height:0px;
  5237. }
  5238. #u5721_div {
  5239. border-width:0px;
  5240. position:absolute;
  5241. left:0px;
  5242. top:0px;
  5243. width:375px;
  5244. height:130px;
  5245. background:inherit;
  5246. background-color:rgba(255, 255, 255, 1);
  5247. box-sizing:border-box;
  5248. border-width:1px;
  5249. border-style:solid;
  5250. border-color:rgba(242, 242, 242, 1);
  5251. border-left:0px;
  5252. border-top:0px;
  5253. border-right:0px;
  5254. border-radius:0px;
  5255. border-bottom-right-radius:0px;
  5256. border-bottom-left-radius:0px;
  5257. -moz-box-shadow:none;
  5258. -webkit-box-shadow:none;
  5259. box-shadow:none;
  5260. }
  5261. #u5721 {
  5262. border-width:0px;
  5263. position:absolute;
  5264. left:499px;
  5265. top:434px;
  5266. width:375px;
  5267. height:130px;
  5268. display:flex;
  5269. }
  5270. #u5721 .text {
  5271. position:absolute;
  5272. align-self:center;
  5273. padding:2px 2px 2px 2px;
  5274. box-sizing:border-box;
  5275. width:100%;
  5276. }
  5277. #u5721_text {
  5278. border-width:0px;
  5279. word-wrap:break-word;
  5280. text-transform:none;
  5281. visibility:hidden;
  5282. }
  5283. #u5722_div {
  5284. border-width:0px;
  5285. position:absolute;
  5286. left:0px;
  5287. top:0px;
  5288. width:147px;
  5289. height:17px;
  5290. background:inherit;
  5291. background-color:rgba(255, 255, 255, 0);
  5292. border:none;
  5293. border-radius:0px;
  5294. -moz-box-shadow:none;
  5295. -webkit-box-shadow:none;
  5296. box-shadow:none;
  5297. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5298. font-weight:400;
  5299. font-style:normal;
  5300. font-size:12px;
  5301. color:#AAAAAA;
  5302. }
  5303. #u5722 {
  5304. border-width:0px;
  5305. position:absolute;
  5306. left:511px;
  5307. top:467px;
  5308. width:147px;
  5309. height:17px;
  5310. display:flex;
  5311. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5312. font-weight:400;
  5313. font-style:normal;
  5314. font-size:12px;
  5315. color:#AAAAAA;
  5316. }
  5317. #u5722 .text {
  5318. position:absolute;
  5319. align-self:flex-start;
  5320. padding:0px 0px 0px 0px;
  5321. box-sizing:border-box;
  5322. width:100%;
  5323. }
  5324. #u5722_text {
  5325. border-width:0px;
  5326. white-space:nowrap;
  5327. text-transform:none;
  5328. }
  5329. #u5723_div {
  5330. border-width:0px;
  5331. position:absolute;
  5332. left:0px;
  5333. top:0px;
  5334. width:41px;
  5335. height:20px;
  5336. background:inherit;
  5337. background-color:rgba(255, 255, 255, 0);
  5338. border:none;
  5339. border-radius:0px;
  5340. -moz-box-shadow:none;
  5341. -webkit-box-shadow:none;
  5342. box-shadow:none;
  5343. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5344. font-weight:500;
  5345. font-style:normal;
  5346. font-size:14px;
  5347. text-align:right;
  5348. }
  5349. #u5723 {
  5350. border-width:0px;
  5351. position:absolute;
  5352. left:823px;
  5353. top:442px;
  5354. width:41px;
  5355. height:20px;
  5356. display:flex;
  5357. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5358. font-weight:500;
  5359. font-style:normal;
  5360. font-size:14px;
  5361. text-align:right;
  5362. }
  5363. #u5723 .text {
  5364. position:absolute;
  5365. align-self:flex-start;
  5366. padding:0px 0px 0px 0px;
  5367. box-sizing:border-box;
  5368. width:100%;
  5369. }
  5370. #u5723_text {
  5371. border-width:0px;
  5372. white-space:nowrap;
  5373. text-transform:none;
  5374. }
  5375. #u5724_div {
  5376. border-width:0px;
  5377. position:absolute;
  5378. left:0px;
  5379. top:0px;
  5380. width:50px;
  5381. height:21px;
  5382. background:inherit;
  5383. background-color:rgba(0, 137, 254, 1);
  5384. border:none;
  5385. border-radius:21px;
  5386. -moz-box-shadow:none;
  5387. -webkit-box-shadow:none;
  5388. box-shadow:none;
  5389. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5390. font-weight:400;
  5391. font-style:normal;
  5392. font-size:12px;
  5393. color:#FFFFFF;
  5394. text-align:center;
  5395. }
  5396. #u5724 {
  5397. border-width:0px;
  5398. position:absolute;
  5399. left:817px;
  5400. top:486px;
  5401. width:50px;
  5402. height:21px;
  5403. display:flex;
  5404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5405. font-weight:400;
  5406. font-style:normal;
  5407. font-size:12px;
  5408. color:#FFFFFF;
  5409. text-align:center;
  5410. }
  5411. #u5724 .text {
  5412. position:absolute;
  5413. align-self:flex-start;
  5414. padding:2px 2px 2px 2px;
  5415. box-sizing:border-box;
  5416. width:100%;
  5417. }
  5418. #u5724_text {
  5419. border-width:0px;
  5420. word-wrap:break-word;
  5421. text-transform:none;
  5422. }
  5423. #u5725 {
  5424. border-width:0px;
  5425. position:absolute;
  5426. left:0px;
  5427. top:0px;
  5428. width:0px;
  5429. height:0px;
  5430. }
  5431. #u5726_div {
  5432. border-width:0px;
  5433. position:absolute;
  5434. left:0px;
  5435. top:0px;
  5436. width:20px;
  5437. height:18px;
  5438. background:inherit;
  5439. background-color:rgba(245, 154, 35, 1);
  5440. border:none;
  5441. border-right:0px;
  5442. border-radius:2px;
  5443. border-top-right-radius:0px;
  5444. border-bottom-right-radius:0px;
  5445. -moz-box-shadow:none;
  5446. -webkit-box-shadow:none;
  5447. box-shadow:none;
  5448. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5449. font-weight:400;
  5450. font-style:normal;
  5451. font-size:10px;
  5452. color:#FFFFFF;
  5453. text-align:center;
  5454. }
  5455. #u5726 {
  5456. border-width:0px;
  5457. position:absolute;
  5458. left:576px;
  5459. top:489px;
  5460. width:20px;
  5461. height:18px;
  5462. display:flex;
  5463. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5464. font-weight:400;
  5465. font-style:normal;
  5466. font-size:10px;
  5467. color:#FFFFFF;
  5468. text-align:center;
  5469. }
  5470. #u5726 .text {
  5471. position:absolute;
  5472. align-self:center;
  5473. padding:2px 2px 2px 2px;
  5474. box-sizing:border-box;
  5475. width:100%;
  5476. }
  5477. #u5726_text {
  5478. border-width:0px;
  5479. word-wrap:break-word;
  5480. text-transform:none;
  5481. }
  5482. #u5727_div {
  5483. border-width:0px;
  5484. position:absolute;
  5485. left:0px;
  5486. top:0px;
  5487. width:35px;
  5488. height:18px;
  5489. background:inherit;
  5490. background-color:rgba(255, 255, 255, 1);
  5491. box-sizing:border-box;
  5492. border-width:1px;
  5493. border-style:solid;
  5494. border-color:rgba(245, 154, 35, 1);
  5495. border-left:0px;
  5496. border-radius:2px;
  5497. border-top-left-radius:0px;
  5498. border-bottom-left-radius:0px;
  5499. -moz-box-shadow:none;
  5500. -webkit-box-shadow:none;
  5501. box-shadow:none;
  5502. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5503. font-weight:400;
  5504. font-style:normal;
  5505. font-size:10px;
  5506. color:#AAAAAA;
  5507. }
  5508. #u5727 {
  5509. border-width:0px;
  5510. position:absolute;
  5511. left:596px;
  5512. top:489px;
  5513. width:35px;
  5514. height:18px;
  5515. display:flex;
  5516. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5517. font-weight:400;
  5518. font-style:normal;
  5519. font-size:10px;
  5520. color:#AAAAAA;
  5521. }
  5522. #u5727 .text {
  5523. position:absolute;
  5524. align-self:center;
  5525. padding:2px 2px 2px 2px;
  5526. box-sizing:border-box;
  5527. width:100%;
  5528. }
  5529. #u5727_text {
  5530. border-width:0px;
  5531. word-wrap:break-word;
  5532. text-transform:none;
  5533. }
  5534. #u5728 {
  5535. border-width:0px;
  5536. position:absolute;
  5537. left:0px;
  5538. top:0px;
  5539. width:0px;
  5540. height:0px;
  5541. }
  5542. #u5729_div {
  5543. border-width:0px;
  5544. position:absolute;
  5545. left:0px;
  5546. top:0px;
  5547. width:20px;
  5548. height:18px;
  5549. background:inherit;
  5550. background-color:rgba(0, 191, 191, 1);
  5551. border:none;
  5552. border-right:0px;
  5553. border-radius:2px;
  5554. border-top-right-radius:0px;
  5555. border-bottom-right-radius:0px;
  5556. -moz-box-shadow:none;
  5557. -webkit-box-shadow:none;
  5558. box-shadow:none;
  5559. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5560. font-weight:400;
  5561. font-style:normal;
  5562. font-size:10px;
  5563. color:#FFFFFF;
  5564. text-align:center;
  5565. }
  5566. #u5729 {
  5567. border-width:0px;
  5568. position:absolute;
  5569. left:511px;
  5570. top:489px;
  5571. width:20px;
  5572. height:18px;
  5573. display:flex;
  5574. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5575. font-weight:400;
  5576. font-style:normal;
  5577. font-size:10px;
  5578. color:#FFFFFF;
  5579. text-align:center;
  5580. }
  5581. #u5729 .text {
  5582. position:absolute;
  5583. align-self:center;
  5584. padding:2px 2px 2px 2px;
  5585. box-sizing:border-box;
  5586. width:100%;
  5587. }
  5588. #u5729_text {
  5589. border-width:0px;
  5590. word-wrap:break-word;
  5591. text-transform:none;
  5592. }
  5593. #u5730_div {
  5594. border-width:0px;
  5595. position:absolute;
  5596. left:0px;
  5597. top:0px;
  5598. width:35px;
  5599. height:18px;
  5600. background:inherit;
  5601. background-color:rgba(255, 255, 255, 1);
  5602. box-sizing:border-box;
  5603. border-width:1px;
  5604. border-style:solid;
  5605. border-color:rgba(0, 191, 191, 1);
  5606. border-left:0px;
  5607. border-radius:2px;
  5608. border-top-left-radius:0px;
  5609. border-bottom-left-radius:0px;
  5610. -moz-box-shadow:none;
  5611. -webkit-box-shadow:none;
  5612. box-shadow:none;
  5613. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5614. font-weight:400;
  5615. font-style:normal;
  5616. font-size:10px;
  5617. color:#AAAAAA;
  5618. }
  5619. #u5730 {
  5620. border-width:0px;
  5621. position:absolute;
  5622. left:531px;
  5623. top:489px;
  5624. width:35px;
  5625. height:18px;
  5626. display:flex;
  5627. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5628. font-weight:400;
  5629. font-style:normal;
  5630. font-size:10px;
  5631. color:#AAAAAA;
  5632. }
  5633. #u5730 .text {
  5634. position:absolute;
  5635. align-self:center;
  5636. padding:2px 2px 2px 2px;
  5637. box-sizing:border-box;
  5638. width:100%;
  5639. }
  5640. #u5730_text {
  5641. border-width:0px;
  5642. word-wrap:break-word;
  5643. text-transform:none;
  5644. }
  5645. #u5731 {
  5646. border-width:0px;
  5647. position:absolute;
  5648. left:0px;
  5649. top:0px;
  5650. width:0px;
  5651. height:0px;
  5652. }
  5653. #u5732_div {
  5654. border-width:0px;
  5655. position:absolute;
  5656. left:0px;
  5657. top:0px;
  5658. width:113px;
  5659. height:20px;
  5660. background:inherit;
  5661. background-color:rgba(255, 255, 255, 0);
  5662. border:none;
  5663. border-radius:0px;
  5664. -moz-box-shadow:none;
  5665. -webkit-box-shadow:none;
  5666. box-shadow:none;
  5667. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5668. font-weight:500;
  5669. font-style:normal;
  5670. font-size:14px;
  5671. }
  5672. #u5732 {
  5673. border-width:0px;
  5674. position:absolute;
  5675. left:511px;
  5676. top:442px;
  5677. width:113px;
  5678. height:20px;
  5679. display:flex;
  5680. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5681. font-weight:500;
  5682. font-style:normal;
  5683. font-size:14px;
  5684. }
  5685. #u5732 .text {
  5686. position:absolute;
  5687. align-self:flex-start;
  5688. padding:0px 0px 0px 0px;
  5689. box-sizing:border-box;
  5690. width:100%;
  5691. }
  5692. #u5732_text {
  5693. border-width:0px;
  5694. white-space:nowrap;
  5695. text-transform:none;
  5696. }
  5697. #u5733_img {
  5698. border-width:0px;
  5699. position:absolute;
  5700. left:0px;
  5701. top:0px;
  5702. width:7px;
  5703. height:12px;
  5704. }
  5705. #u5733 {
  5706. border-width:0px;
  5707. position:absolute;
  5708. left:628px;
  5709. top:446px;
  5710. width:7px;
  5711. height:12px;
  5712. display:flex;
  5713. -webkit-transform:rotate(180deg);
  5714. -moz-transform:rotate(180deg);
  5715. -ms-transform:rotate(180deg);
  5716. transform:rotate(180deg);
  5717. }
  5718. #u5733 .text {
  5719. position:absolute;
  5720. align-self:center;
  5721. padding:2px 2px 2px 2px;
  5722. box-sizing:border-box;
  5723. width:100%;
  5724. }
  5725. #u5733_text {
  5726. border-width:0px;
  5727. word-wrap:break-word;
  5728. text-transform:none;
  5729. visibility:hidden;
  5730. }
  5731. #u5734 {
  5732. border-width:0px;
  5733. position:absolute;
  5734. left:0px;
  5735. top:0px;
  5736. width:0px;
  5737. height:0px;
  5738. }
  5739. #u5735_div {
  5740. border-width:0px;
  5741. position:absolute;
  5742. left:0px;
  5743. top:0px;
  5744. width:256px;
  5745. height:34px;
  5746. background:inherit;
  5747. background-color:rgba(255, 255, 255, 0);
  5748. border:none;
  5749. border-radius:0px;
  5750. -moz-box-shadow:none;
  5751. -webkit-box-shadow:none;
  5752. box-shadow:none;
  5753. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5754. font-weight:400;
  5755. font-style:normal;
  5756. font-size:12px;
  5757. color:#555555;
  5758. }
  5759. #u5735 {
  5760. border-width:0px;
  5761. position:absolute;
  5762. left:530px;
  5763. top:517px;
  5764. width:256px;
  5765. height:34px;
  5766. display:flex;
  5767. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5768. font-weight:400;
  5769. font-style:normal;
  5770. font-size:12px;
  5771. color:#555555;
  5772. }
  5773. #u5735 .text {
  5774. position:absolute;
  5775. align-self:flex-start;
  5776. padding:0px 0px 0px 0px;
  5777. box-sizing:border-box;
  5778. width:100%;
  5779. }
  5780. #u5735_text {
  5781. border-width:0px;
  5782. word-wrap:break-word;
  5783. text-transform:none;
  5784. }
  5785. #u5736_img {
  5786. border-width:0px;
  5787. position:absolute;
  5788. left:0px;
  5789. top:0px;
  5790. width:14px;
  5791. height:15px;
  5792. }
  5793. #u5736 {
  5794. border-width:0px;
  5795. position:absolute;
  5796. left:511px;
  5797. top:517px;
  5798. width:14px;
  5799. height:15px;
  5800. display:flex;
  5801. }
  5802. #u5736 .text {
  5803. position:absolute;
  5804. align-self:center;
  5805. padding:2px 2px 2px 2px;
  5806. box-sizing:border-box;
  5807. width:100%;
  5808. }
  5809. #u5736_text {
  5810. border-width:0px;
  5811. word-wrap:break-word;
  5812. text-transform:none;
  5813. visibility:hidden;
  5814. }
  5815. #u5737 {
  5816. border-width:0px;
  5817. position:absolute;
  5818. left:0px;
  5819. top:0px;
  5820. width:0px;
  5821. height:0px;
  5822. }
  5823. #u5738_div {
  5824. border-width:0px;
  5825. position:absolute;
  5826. left:0px;
  5827. top:0px;
  5828. width:375px;
  5829. height:110px;
  5830. background:inherit;
  5831. background-color:rgba(255, 255, 255, 1);
  5832. box-sizing:border-box;
  5833. border-width:1px;
  5834. border-style:solid;
  5835. border-color:rgba(242, 242, 242, 1);
  5836. border-left:0px;
  5837. border-top:0px;
  5838. border-right:0px;
  5839. border-radius:0px;
  5840. border-bottom-right-radius:0px;
  5841. border-bottom-left-radius:0px;
  5842. -moz-box-shadow:none;
  5843. -webkit-box-shadow:none;
  5844. box-shadow:none;
  5845. }
  5846. #u5738 {
  5847. border-width:0px;
  5848. position:absolute;
  5849. left:499px;
  5850. top:574px;
  5851. width:375px;
  5852. height:110px;
  5853. display:flex;
  5854. }
  5855. #u5738 .text {
  5856. position:absolute;
  5857. align-self:center;
  5858. padding:2px 2px 2px 2px;
  5859. box-sizing:border-box;
  5860. width:100%;
  5861. }
  5862. #u5738_text {
  5863. border-width:0px;
  5864. word-wrap:break-word;
  5865. text-transform:none;
  5866. visibility:hidden;
  5867. }
  5868. #u5739_div {
  5869. border-width:0px;
  5870. position:absolute;
  5871. left:0px;
  5872. top:0px;
  5873. width:147px;
  5874. height:17px;
  5875. background:inherit;
  5876. background-color:rgba(255, 255, 255, 0);
  5877. border:none;
  5878. border-radius:0px;
  5879. -moz-box-shadow:none;
  5880. -webkit-box-shadow:none;
  5881. box-shadow:none;
  5882. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5883. font-weight:400;
  5884. font-style:normal;
  5885. font-size:12px;
  5886. color:#AAAAAA;
  5887. }
  5888. #u5739 {
  5889. border-width:0px;
  5890. position:absolute;
  5891. left:511px;
  5892. top:607px;
  5893. width:147px;
  5894. height:17px;
  5895. display:flex;
  5896. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5897. font-weight:400;
  5898. font-style:normal;
  5899. font-size:12px;
  5900. color:#AAAAAA;
  5901. }
  5902. #u5739 .text {
  5903. position:absolute;
  5904. align-self:flex-start;
  5905. padding:0px 0px 0px 0px;
  5906. box-sizing:border-box;
  5907. width:100%;
  5908. }
  5909. #u5739_text {
  5910. border-width:0px;
  5911. white-space:nowrap;
  5912. text-transform:none;
  5913. }
  5914. #u5740_div {
  5915. border-width:0px;
  5916. position:absolute;
  5917. left:0px;
  5918. top:0px;
  5919. width:44px;
  5920. height:20px;
  5921. background:inherit;
  5922. background-color:rgba(255, 255, 255, 0);
  5923. border:none;
  5924. border-radius:0px;
  5925. -moz-box-shadow:none;
  5926. -webkit-box-shadow:none;
  5927. box-shadow:none;
  5928. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5929. font-weight:500;
  5930. font-style:normal;
  5931. font-size:14px;
  5932. text-align:right;
  5933. }
  5934. #u5740 {
  5935. border-width:0px;
  5936. position:absolute;
  5937. left:820px;
  5938. top:582px;
  5939. width:44px;
  5940. height:20px;
  5941. display:flex;
  5942. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5943. font-weight:500;
  5944. font-style:normal;
  5945. font-size:14px;
  5946. text-align:right;
  5947. }
  5948. #u5740 .text {
  5949. position:absolute;
  5950. align-self:flex-start;
  5951. padding:0px 0px 0px 0px;
  5952. box-sizing:border-box;
  5953. width:100%;
  5954. }
  5955. #u5740_text {
  5956. border-width:0px;
  5957. white-space:nowrap;
  5958. text-transform:none;
  5959. }
  5960. #u5741_div {
  5961. border-width:0px;
  5962. position:absolute;
  5963. left:0px;
  5964. top:0px;
  5965. width:50px;
  5966. height:21px;
  5967. background:inherit;
  5968. background-color:rgba(0, 137, 254, 1);
  5969. border:none;
  5970. border-radius:21px;
  5971. -moz-box-shadow:none;
  5972. -webkit-box-shadow:none;
  5973. box-shadow:none;
  5974. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5975. font-weight:400;
  5976. font-style:normal;
  5977. font-size:12px;
  5978. color:#FFFFFF;
  5979. text-align:center;
  5980. }
  5981. #u5741 {
  5982. border-width:0px;
  5983. position:absolute;
  5984. left:817px;
  5985. top:626px;
  5986. width:50px;
  5987. height:21px;
  5988. display:flex;
  5989. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5990. font-weight:400;
  5991. font-style:normal;
  5992. font-size:12px;
  5993. color:#FFFFFF;
  5994. text-align:center;
  5995. }
  5996. #u5741 .text {
  5997. position:absolute;
  5998. align-self:flex-start;
  5999. padding:2px 2px 2px 2px;
  6000. box-sizing:border-box;
  6001. width:100%;
  6002. }
  6003. #u5741_text {
  6004. border-width:0px;
  6005. word-wrap:break-word;
  6006. text-transform:none;
  6007. }
  6008. #u5742 {
  6009. border-width:0px;
  6010. position:absolute;
  6011. left:0px;
  6012. top:0px;
  6013. width:0px;
  6014. height:0px;
  6015. }
  6016. #u5743_div {
  6017. border-width:0px;
  6018. position:absolute;
  6019. left:0px;
  6020. top:0px;
  6021. width:113px;
  6022. height:20px;
  6023. background:inherit;
  6024. background-color:rgba(255, 255, 255, 0);
  6025. border:none;
  6026. border-radius:0px;
  6027. -moz-box-shadow:none;
  6028. -webkit-box-shadow:none;
  6029. box-shadow:none;
  6030. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6031. font-weight:500;
  6032. font-style:normal;
  6033. font-size:14px;
  6034. }
  6035. #u5743 {
  6036. border-width:0px;
  6037. position:absolute;
  6038. left:511px;
  6039. top:582px;
  6040. width:113px;
  6041. height:20px;
  6042. display:flex;
  6043. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6044. font-weight:500;
  6045. font-style:normal;
  6046. font-size:14px;
  6047. }
  6048. #u5743 .text {
  6049. position:absolute;
  6050. align-self:flex-start;
  6051. padding:0px 0px 0px 0px;
  6052. box-sizing:border-box;
  6053. width:100%;
  6054. }
  6055. #u5743_text {
  6056. border-width:0px;
  6057. white-space:nowrap;
  6058. text-transform:none;
  6059. }
  6060. #u5744_img {
  6061. border-width:0px;
  6062. position:absolute;
  6063. left:0px;
  6064. top:0px;
  6065. width:7px;
  6066. height:12px;
  6067. }
  6068. #u5744 {
  6069. border-width:0px;
  6070. position:absolute;
  6071. left:628px;
  6072. top:586px;
  6073. width:7px;
  6074. height:12px;
  6075. display:flex;
  6076. -webkit-transform:rotate(180deg);
  6077. -moz-transform:rotate(180deg);
  6078. -ms-transform:rotate(180deg);
  6079. transform:rotate(180deg);
  6080. }
  6081. #u5744 .text {
  6082. position:absolute;
  6083. align-self:center;
  6084. padding:2px 2px 2px 2px;
  6085. box-sizing:border-box;
  6086. width:100%;
  6087. }
  6088. #u5744_text {
  6089. border-width:0px;
  6090. word-wrap:break-word;
  6091. text-transform:none;
  6092. visibility:hidden;
  6093. }
  6094. #u5745 {
  6095. border-width:0px;
  6096. position:absolute;
  6097. left:0px;
  6098. top:0px;
  6099. width:0px;
  6100. height:0px;
  6101. }
  6102. #u5746_div {
  6103. border-width:0px;
  6104. position:absolute;
  6105. left:0px;
  6106. top:0px;
  6107. width:20px;
  6108. height:18px;
  6109. background:inherit;
  6110. background-color:rgba(245, 154, 35, 1);
  6111. border:none;
  6112. border-right:0px;
  6113. border-radius:2px;
  6114. border-top-right-radius:0px;
  6115. border-bottom-right-radius:0px;
  6116. -moz-box-shadow:none;
  6117. -webkit-box-shadow:none;
  6118. box-shadow:none;
  6119. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6120. font-weight:400;
  6121. font-style:normal;
  6122. font-size:10px;
  6123. color:#FFFFFF;
  6124. text-align:center;
  6125. }
  6126. #u5746 {
  6127. border-width:0px;
  6128. position:absolute;
  6129. left:576px;
  6130. top:629px;
  6131. width:20px;
  6132. height:18px;
  6133. display:flex;
  6134. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6135. font-weight:400;
  6136. font-style:normal;
  6137. font-size:10px;
  6138. color:#FFFFFF;
  6139. text-align:center;
  6140. }
  6141. #u5746 .text {
  6142. position:absolute;
  6143. align-self:center;
  6144. padding:2px 2px 2px 2px;
  6145. box-sizing:border-box;
  6146. width:100%;
  6147. }
  6148. #u5746_text {
  6149. border-width:0px;
  6150. word-wrap:break-word;
  6151. text-transform:none;
  6152. }
  6153. #u5747_div {
  6154. border-width:0px;
  6155. position:absolute;
  6156. left:0px;
  6157. top:0px;
  6158. width:35px;
  6159. height:18px;
  6160. background:inherit;
  6161. background-color:rgba(255, 255, 255, 1);
  6162. box-sizing:border-box;
  6163. border-width:1px;
  6164. border-style:solid;
  6165. border-color:rgba(245, 154, 35, 1);
  6166. border-left:0px;
  6167. border-radius:2px;
  6168. border-top-left-radius:0px;
  6169. border-bottom-left-radius:0px;
  6170. -moz-box-shadow:none;
  6171. -webkit-box-shadow:none;
  6172. box-shadow:none;
  6173. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6174. font-weight:400;
  6175. font-style:normal;
  6176. font-size:10px;
  6177. color:#AAAAAA;
  6178. }
  6179. #u5747 {
  6180. border-width:0px;
  6181. position:absolute;
  6182. left:596px;
  6183. top:629px;
  6184. width:35px;
  6185. height:18px;
  6186. display:flex;
  6187. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6188. font-weight:400;
  6189. font-style:normal;
  6190. font-size:10px;
  6191. color:#AAAAAA;
  6192. }
  6193. #u5747 .text {
  6194. position:absolute;
  6195. align-self:center;
  6196. padding:2px 2px 2px 2px;
  6197. box-sizing:border-box;
  6198. width:100%;
  6199. }
  6200. #u5747_text {
  6201. border-width:0px;
  6202. word-wrap:break-word;
  6203. text-transform:none;
  6204. }
  6205. #u5748 {
  6206. border-width:0px;
  6207. position:absolute;
  6208. left:0px;
  6209. top:0px;
  6210. width:0px;
  6211. height:0px;
  6212. }
  6213. #u5749_div {
  6214. border-width:0px;
  6215. position:absolute;
  6216. left:0px;
  6217. top:0px;
  6218. width:20px;
  6219. height:18px;
  6220. background:inherit;
  6221. background-color:rgba(0, 191, 191, 1);
  6222. border:none;
  6223. border-right:0px;
  6224. border-radius:2px;
  6225. border-top-right-radius:0px;
  6226. border-bottom-right-radius:0px;
  6227. -moz-box-shadow:none;
  6228. -webkit-box-shadow:none;
  6229. box-shadow:none;
  6230. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6231. font-weight:400;
  6232. font-style:normal;
  6233. font-size:10px;
  6234. color:#FFFFFF;
  6235. text-align:center;
  6236. }
  6237. #u5749 {
  6238. border-width:0px;
  6239. position:absolute;
  6240. left:511px;
  6241. top:629px;
  6242. width:20px;
  6243. height:18px;
  6244. display:flex;
  6245. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6246. font-weight:400;
  6247. font-style:normal;
  6248. font-size:10px;
  6249. color:#FFFFFF;
  6250. text-align:center;
  6251. }
  6252. #u5749 .text {
  6253. position:absolute;
  6254. align-self:center;
  6255. padding:2px 2px 2px 2px;
  6256. box-sizing:border-box;
  6257. width:100%;
  6258. }
  6259. #u5749_text {
  6260. border-width:0px;
  6261. word-wrap:break-word;
  6262. text-transform:none;
  6263. }
  6264. #u5750_div {
  6265. border-width:0px;
  6266. position:absolute;
  6267. left:0px;
  6268. top:0px;
  6269. width:35px;
  6270. height:18px;
  6271. background:inherit;
  6272. background-color:rgba(255, 255, 255, 1);
  6273. box-sizing:border-box;
  6274. border-width:1px;
  6275. border-style:solid;
  6276. border-color:rgba(0, 191, 191, 1);
  6277. border-left:0px;
  6278. border-radius:2px;
  6279. border-top-left-radius:0px;
  6280. border-bottom-left-radius:0px;
  6281. -moz-box-shadow:none;
  6282. -webkit-box-shadow:none;
  6283. box-shadow:none;
  6284. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6285. font-weight:400;
  6286. font-style:normal;
  6287. font-size:10px;
  6288. color:#AAAAAA;
  6289. }
  6290. #u5750 {
  6291. border-width:0px;
  6292. position:absolute;
  6293. left:531px;
  6294. top:629px;
  6295. width:35px;
  6296. height:18px;
  6297. display:flex;
  6298. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6299. font-weight:400;
  6300. font-style:normal;
  6301. font-size:10px;
  6302. color:#AAAAAA;
  6303. }
  6304. #u5750 .text {
  6305. position:absolute;
  6306. align-self:center;
  6307. padding:2px 2px 2px 2px;
  6308. box-sizing:border-box;
  6309. width:100%;
  6310. }
  6311. #u5750_text {
  6312. border-width:0px;
  6313. word-wrap:break-word;
  6314. text-transform:none;
  6315. }
  6316. #u5751 {
  6317. border-width:0px;
  6318. position:absolute;
  6319. left:0px;
  6320. top:0px;
  6321. width:0px;
  6322. height:0px;
  6323. }
  6324. #u5752_div {
  6325. border-width:0px;
  6326. position:absolute;
  6327. left:0px;
  6328. top:0px;
  6329. width:256px;
  6330. height:17px;
  6331. background:inherit;
  6332. background-color:rgba(255, 255, 255, 0);
  6333. border:none;
  6334. border-radius:0px;
  6335. -moz-box-shadow:none;
  6336. -webkit-box-shadow:none;
  6337. box-shadow:none;
  6338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6339. font-weight:400;
  6340. font-style:normal;
  6341. font-size:12px;
  6342. color:#555555;
  6343. }
  6344. #u5752 {
  6345. border-width:0px;
  6346. position:absolute;
  6347. left:530px;
  6348. top:657px;
  6349. width:256px;
  6350. height:17px;
  6351. display:flex;
  6352. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6353. font-weight:400;
  6354. font-style:normal;
  6355. font-size:12px;
  6356. color:#555555;
  6357. }
  6358. #u5752 .text {
  6359. position:absolute;
  6360. align-self:flex-start;
  6361. padding:0px 0px 0px 0px;
  6362. box-sizing:border-box;
  6363. width:100%;
  6364. }
  6365. #u5752_text {
  6366. border-width:0px;
  6367. word-wrap:break-word;
  6368. text-transform:none;
  6369. }
  6370. #u5753_img {
  6371. border-width:0px;
  6372. position:absolute;
  6373. left:0px;
  6374. top:0px;
  6375. width:14px;
  6376. height:15px;
  6377. }
  6378. #u5753 {
  6379. border-width:0px;
  6380. position:absolute;
  6381. left:511px;
  6382. top:657px;
  6383. width:14px;
  6384. height:15px;
  6385. display:flex;
  6386. }
  6387. #u5753 .text {
  6388. position:absolute;
  6389. align-self:center;
  6390. padding:2px 2px 2px 2px;
  6391. box-sizing:border-box;
  6392. width:100%;
  6393. }
  6394. #u5753_text {
  6395. border-width:0px;
  6396. word-wrap:break-word;
  6397. text-transform:none;
  6398. visibility:hidden;
  6399. }
  6400. #u5754_div {
  6401. border-width:0px;
  6402. position:absolute;
  6403. left:0px;
  6404. top:0px;
  6405. width:57px;
  6406. height:21px;
  6407. background:inherit;
  6408. background-color:rgba(215, 215, 215, 1);
  6409. border:none;
  6410. border-radius:2px;
  6411. -moz-box-shadow:none;
  6412. -webkit-box-shadow:none;
  6413. box-shadow:none;
  6414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6415. font-weight:400;
  6416. font-style:normal;
  6417. font-size:12px;
  6418. color:#555555;
  6419. }
  6420. #u5754 {
  6421. border-width:0px;
  6422. position:absolute;
  6423. left:557px;
  6424. top:405px;
  6425. width:57px;
  6426. height:21px;
  6427. display:flex;
  6428. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6429. font-weight:400;
  6430. font-style:normal;
  6431. font-size:12px;
  6432. color:#555555;
  6433. }
  6434. #u5754 .text {
  6435. position:absolute;
  6436. align-self:flex-start;
  6437. padding:2px 4px 2px 4px;
  6438. box-sizing:border-box;
  6439. width:100%;
  6440. }
  6441. #u5754_text {
  6442. border-width:0px;
  6443. white-space:nowrap;
  6444. text-transform:none;
  6445. }
  6446. #u5755 {
  6447. border-width:0px;
  6448. position:absolute;
  6449. left:0px;
  6450. top:0px;
  6451. width:0px;
  6452. height:0px;
  6453. }
  6454. #u5756_img {
  6455. border-width:0px;
  6456. position:absolute;
  6457. left:0px;
  6458. top:0px;
  6459. width:14px;
  6460. height:14px;
  6461. }
  6462. #u5756 {
  6463. border-width:0px;
  6464. position:absolute;
  6465. left:800px;
  6466. top:367px;
  6467. width:14px;
  6468. height:14px;
  6469. display:flex;
  6470. }
  6471. #u5756 .text {
  6472. position:absolute;
  6473. align-self:center;
  6474. padding:2px 2px 2px 2px;
  6475. box-sizing:border-box;
  6476. width:100%;
  6477. }
  6478. #u5756_text {
  6479. border-width:0px;
  6480. word-wrap:break-word;
  6481. text-transform:none;
  6482. visibility:hidden;
  6483. }
  6484. #u5757_div {
  6485. border-width:0px;
  6486. position:absolute;
  6487. left:0px;
  6488. top:0px;
  6489. width:49px;
  6490. height:17px;
  6491. background:inherit;
  6492. background-color:rgba(255, 255, 255, 0);
  6493. border:none;
  6494. border-radius:0px;
  6495. -moz-box-shadow:none;
  6496. -webkit-box-shadow:none;
  6497. box-shadow:none;
  6498. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6499. font-weight:400;
  6500. font-style:normal;
  6501. font-size:12px;
  6502. color:#7F7F7F;
  6503. text-align:right;
  6504. }
  6505. #u5757 {
  6506. border-width:0px;
  6507. position:absolute;
  6508. left:818px;
  6509. top:365px;
  6510. width:49px;
  6511. height:17px;
  6512. display:flex;
  6513. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6514. font-weight:400;
  6515. font-style:normal;
  6516. font-size:12px;
  6517. color:#7F7F7F;
  6518. text-align:right;
  6519. }
  6520. #u5757 .text {
  6521. position:absolute;
  6522. align-self:flex-start;
  6523. padding:0px 0px 0px 0px;
  6524. box-sizing:border-box;
  6525. width:100%;
  6526. }
  6527. #u5757_text {
  6528. border-width:0px;
  6529. white-space:nowrap;
  6530. text-transform:none;
  6531. }
  6532. #u5758_div {
  6533. border-width:0px;
  6534. position:absolute;
  6535. left:0px;
  6536. top:0px;
  6537. width:69px;
  6538. height:21px;
  6539. background:inherit;
  6540. background-color:rgba(215, 215, 215, 1);
  6541. border:none;
  6542. border-radius:2px;
  6543. -moz-box-shadow:none;
  6544. -webkit-box-shadow:none;
  6545. box-shadow:none;
  6546. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6547. font-weight:400;
  6548. font-style:normal;
  6549. font-size:12px;
  6550. color:#555555;
  6551. }
  6552. #u5758 {
  6553. border-width:0px;
  6554. position:absolute;
  6555. left:624px;
  6556. top:405px;
  6557. width:69px;
  6558. height:21px;
  6559. display:flex;
  6560. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6561. font-weight:400;
  6562. font-style:normal;
  6563. font-size:12px;
  6564. color:#555555;
  6565. }
  6566. #u5758 .text {
  6567. position:absolute;
  6568. align-self:flex-start;
  6569. padding:2px 4px 2px 4px;
  6570. box-sizing:border-box;
  6571. width:100%;
  6572. }
  6573. #u5758_text {
  6574. border-width:0px;
  6575. white-space:nowrap;
  6576. text-transform:none;
  6577. }
  6578. #u5759_div {
  6579. border-width:0px;
  6580. position:absolute;
  6581. left:0px;
  6582. top:0px;
  6583. width:45px;
  6584. height:21px;
  6585. background:inherit;
  6586. background-color:rgba(215, 215, 215, 1);
  6587. border:none;
  6588. border-radius:2px;
  6589. -moz-box-shadow:none;
  6590. -webkit-box-shadow:none;
  6591. box-shadow:none;
  6592. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6593. font-weight:400;
  6594. font-style:normal;
  6595. font-size:12px;
  6596. color:#555555;
  6597. }
  6598. #u5759 {
  6599. border-width:0px;
  6600. position:absolute;
  6601. left:703px;
  6602. top:405px;
  6603. width:45px;
  6604. height:21px;
  6605. display:flex;
  6606. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6607. font-weight:400;
  6608. font-style:normal;
  6609. font-size:12px;
  6610. color:#555555;
  6611. }
  6612. #u5759 .text {
  6613. position:absolute;
  6614. align-self:flex-start;
  6615. padding:2px 4px 2px 4px;
  6616. box-sizing:border-box;
  6617. width:100%;
  6618. }
  6619. #u5759_text {
  6620. border-width:0px;
  6621. white-space:nowrap;
  6622. text-transform:none;
  6623. }
  6624. #u5760_div {
  6625. border-width:0px;
  6626. position:absolute;
  6627. left:0px;
  6628. top:0px;
  6629. width:73px;
  6630. height:35px;
  6631. background:inherit;
  6632. background-color:rgba(255, 255, 255, 0);
  6633. box-sizing:border-box;
  6634. border-width:2px;
  6635. border-style:solid;
  6636. border-color:rgba(0, 191, 191, 1);
  6637. border-left:0px;
  6638. border-top:0px;
  6639. border-right:0px;
  6640. border-radius:0px;
  6641. border-bottom-right-radius:0px;
  6642. border-bottom-left-radius:0px;
  6643. -moz-box-shadow:none;
  6644. -webkit-box-shadow:none;
  6645. box-shadow:none;
  6646. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6647. font-weight:500;
  6648. font-style:normal;
  6649. font-size:18px;
  6650. }
  6651. #u5760 {
  6652. border-width:0px;
  6653. position:absolute;
  6654. left:511px;
  6655. top:357px;
  6656. width:73px;
  6657. height:35px;
  6658. display:flex;
  6659. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6660. font-weight:500;
  6661. font-style:normal;
  6662. font-size:18px;
  6663. }
  6664. #u5760 .text {
  6665. position:absolute;
  6666. align-self:flex-start;
  6667. padding:5px 0px 5px 0px;
  6668. box-sizing:border-box;
  6669. width:100%;
  6670. }
  6671. #u5760_text {
  6672. border-width:0px;
  6673. white-space:nowrap;
  6674. text-transform:none;
  6675. }
  6676. #u5761_div {
  6677. border-width:0px;
  6678. position:absolute;
  6679. left:0px;
  6680. top:0px;
  6681. width:33px;
  6682. height:21px;
  6683. background:inherit;
  6684. background-color:rgba(24, 144, 255, 1);
  6685. border:none;
  6686. border-radius:2px;
  6687. -moz-box-shadow:none;
  6688. -webkit-box-shadow:none;
  6689. box-shadow:none;
  6690. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6691. font-weight:400;
  6692. font-style:normal;
  6693. font-size:12px;
  6694. color:#FFFFFF;
  6695. }
  6696. #u5761 {
  6697. border-width:0px;
  6698. position:absolute;
  6699. left:514px;
  6700. top:405px;
  6701. width:33px;
  6702. height:21px;
  6703. display:flex;
  6704. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6705. font-weight:400;
  6706. font-style:normal;
  6707. font-size:12px;
  6708. color:#FFFFFF;
  6709. }
  6710. #u5761 .text {
  6711. position:absolute;
  6712. align-self:flex-start;
  6713. padding:2px 4px 2px 4px;
  6714. box-sizing:border-box;
  6715. width:100%;
  6716. }
  6717. #u5761_text {
  6718. border-width:0px;
  6719. white-space:nowrap;
  6720. text-transform:none;
  6721. }
  6722. #u5762_div {
  6723. border-width:0px;
  6724. position:absolute;
  6725. left:0px;
  6726. top:0px;
  6727. width:65px;
  6728. height:32px;
  6729. background:inherit;
  6730. background-color:rgba(255, 255, 255, 0);
  6731. border:none;
  6732. border-radius:0px;
  6733. -moz-box-shadow:none;
  6734. -webkit-box-shadow:none;
  6735. box-shadow:none;
  6736. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6737. font-weight:400;
  6738. font-style:normal;
  6739. font-size:16px;
  6740. }
  6741. #u5762 {
  6742. border-width:0px;
  6743. position:absolute;
  6744. left:604px;
  6745. top:357px;
  6746. width:65px;
  6747. height:32px;
  6748. display:flex;
  6749. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6750. font-weight:400;
  6751. font-style:normal;
  6752. font-size:16px;
  6753. }
  6754. #u5762 .text {
  6755. position:absolute;
  6756. align-self:flex-start;
  6757. padding:5px 0px 5px 0px;
  6758. box-sizing:border-box;
  6759. width:100%;
  6760. }
  6761. #u5762_text {
  6762. border-width:0px;
  6763. white-space:nowrap;
  6764. text-transform:none;
  6765. }
  6766. #u5763 {
  6767. border-width:0px;
  6768. position:absolute;
  6769. left:0px;
  6770. top:0px;
  6771. width:0px;
  6772. height:0px;
  6773. }
  6774. #u5764_div {
  6775. border-width:0px;
  6776. position:absolute;
  6777. left:0px;
  6778. top:0px;
  6779. width:375px;
  6780. height:110px;
  6781. background:inherit;
  6782. background-color:rgba(255, 255, 255, 1);
  6783. box-sizing:border-box;
  6784. border-width:1px;
  6785. border-style:solid;
  6786. border-color:rgba(242, 242, 242, 1);
  6787. border-left:0px;
  6788. border-top:0px;
  6789. border-right:0px;
  6790. border-radius:0px;
  6791. border-bottom-right-radius:0px;
  6792. border-bottom-left-radius:0px;
  6793. -moz-box-shadow:none;
  6794. -webkit-box-shadow:none;
  6795. box-shadow:none;
  6796. }
  6797. #u5764 {
  6798. border-width:0px;
  6799. position:absolute;
  6800. left:499px;
  6801. top:694px;
  6802. width:375px;
  6803. height:110px;
  6804. display:flex;
  6805. }
  6806. #u5764 .text {
  6807. position:absolute;
  6808. align-self:center;
  6809. padding:2px 2px 2px 2px;
  6810. box-sizing:border-box;
  6811. width:100%;
  6812. }
  6813. #u5764_text {
  6814. border-width:0px;
  6815. word-wrap:break-word;
  6816. text-transform:none;
  6817. visibility:hidden;
  6818. }
  6819. #u5765_div {
  6820. border-width:0px;
  6821. position:absolute;
  6822. left:0px;
  6823. top:0px;
  6824. width:147px;
  6825. height:17px;
  6826. background:inherit;
  6827. background-color:rgba(255, 255, 255, 0);
  6828. border:none;
  6829. border-radius:0px;
  6830. -moz-box-shadow:none;
  6831. -webkit-box-shadow:none;
  6832. box-shadow:none;
  6833. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6834. font-weight:400;
  6835. font-style:normal;
  6836. font-size:12px;
  6837. color:#AAAAAA;
  6838. }
  6839. #u5765 {
  6840. border-width:0px;
  6841. position:absolute;
  6842. left:511px;
  6843. top:727px;
  6844. width:147px;
  6845. height:17px;
  6846. display:flex;
  6847. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6848. font-weight:400;
  6849. font-style:normal;
  6850. font-size:12px;
  6851. color:#AAAAAA;
  6852. }
  6853. #u5765 .text {
  6854. position:absolute;
  6855. align-self:flex-start;
  6856. padding:0px 0px 0px 0px;
  6857. box-sizing:border-box;
  6858. width:100%;
  6859. }
  6860. #u5765_text {
  6861. border-width:0px;
  6862. white-space:nowrap;
  6863. text-transform:none;
  6864. }
  6865. #u5766_div {
  6866. border-width:0px;
  6867. position:absolute;
  6868. left:0px;
  6869. top:0px;
  6870. width:44px;
  6871. height:20px;
  6872. background:inherit;
  6873. background-color:rgba(255, 255, 255, 0);
  6874. border:none;
  6875. border-radius:0px;
  6876. -moz-box-shadow:none;
  6877. -webkit-box-shadow:none;
  6878. box-shadow:none;
  6879. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6880. font-weight:500;
  6881. font-style:normal;
  6882. font-size:14px;
  6883. text-align:right;
  6884. }
  6885. #u5766 {
  6886. border-width:0px;
  6887. position:absolute;
  6888. left:820px;
  6889. top:702px;
  6890. width:44px;
  6891. height:20px;
  6892. display:flex;
  6893. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6894. font-weight:500;
  6895. font-style:normal;
  6896. font-size:14px;
  6897. text-align:right;
  6898. }
  6899. #u5766 .text {
  6900. position:absolute;
  6901. align-self:flex-start;
  6902. padding:0px 0px 0px 0px;
  6903. box-sizing:border-box;
  6904. width:100%;
  6905. }
  6906. #u5766_text {
  6907. border-width:0px;
  6908. white-space:nowrap;
  6909. text-transform:none;
  6910. }
  6911. #u5767_div {
  6912. border-width:0px;
  6913. position:absolute;
  6914. left:0px;
  6915. top:0px;
  6916. width:50px;
  6917. height:21px;
  6918. background:inherit;
  6919. background-color:rgba(0, 137, 254, 1);
  6920. border:none;
  6921. border-radius:21px;
  6922. -moz-box-shadow:none;
  6923. -webkit-box-shadow:none;
  6924. box-shadow:none;
  6925. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6926. font-weight:400;
  6927. font-style:normal;
  6928. font-size:12px;
  6929. color:#FFFFFF;
  6930. text-align:center;
  6931. }
  6932. #u5767 {
  6933. border-width:0px;
  6934. position:absolute;
  6935. left:817px;
  6936. top:746px;
  6937. width:50px;
  6938. height:21px;
  6939. display:flex;
  6940. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6941. font-weight:400;
  6942. font-style:normal;
  6943. font-size:12px;
  6944. color:#FFFFFF;
  6945. text-align:center;
  6946. }
  6947. #u5767 .text {
  6948. position:absolute;
  6949. align-self:flex-start;
  6950. padding:2px 2px 2px 2px;
  6951. box-sizing:border-box;
  6952. width:100%;
  6953. }
  6954. #u5767_text {
  6955. border-width:0px;
  6956. word-wrap:break-word;
  6957. text-transform:none;
  6958. }
  6959. #u5768 {
  6960. border-width:0px;
  6961. position:absolute;
  6962. left:0px;
  6963. top:0px;
  6964. width:0px;
  6965. height:0px;
  6966. }
  6967. #u5769_div {
  6968. border-width:0px;
  6969. position:absolute;
  6970. left:0px;
  6971. top:0px;
  6972. width:113px;
  6973. height:20px;
  6974. background:inherit;
  6975. background-color:rgba(255, 255, 255, 0);
  6976. border:none;
  6977. border-radius:0px;
  6978. -moz-box-shadow:none;
  6979. -webkit-box-shadow:none;
  6980. box-shadow:none;
  6981. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6982. font-weight:500;
  6983. font-style:normal;
  6984. font-size:14px;
  6985. }
  6986. #u5769 {
  6987. border-width:0px;
  6988. position:absolute;
  6989. left:511px;
  6990. top:702px;
  6991. width:113px;
  6992. height:20px;
  6993. display:flex;
  6994. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6995. font-weight:500;
  6996. font-style:normal;
  6997. font-size:14px;
  6998. }
  6999. #u5769 .text {
  7000. position:absolute;
  7001. align-self:flex-start;
  7002. padding:0px 0px 0px 0px;
  7003. box-sizing:border-box;
  7004. width:100%;
  7005. }
  7006. #u5769_text {
  7007. border-width:0px;
  7008. white-space:nowrap;
  7009. text-transform:none;
  7010. }
  7011. #u5770_img {
  7012. border-width:0px;
  7013. position:absolute;
  7014. left:0px;
  7015. top:0px;
  7016. width:7px;
  7017. height:12px;
  7018. }
  7019. #u5770 {
  7020. border-width:0px;
  7021. position:absolute;
  7022. left:628px;
  7023. top:706px;
  7024. width:7px;
  7025. height:12px;
  7026. display:flex;
  7027. -webkit-transform:rotate(180deg);
  7028. -moz-transform:rotate(180deg);
  7029. -ms-transform:rotate(180deg);
  7030. transform:rotate(180deg);
  7031. }
  7032. #u5770 .text {
  7033. position:absolute;
  7034. align-self:center;
  7035. padding:2px 2px 2px 2px;
  7036. box-sizing:border-box;
  7037. width:100%;
  7038. }
  7039. #u5770_text {
  7040. border-width:0px;
  7041. word-wrap:break-word;
  7042. text-transform:none;
  7043. visibility:hidden;
  7044. }
  7045. #u5771 {
  7046. border-width:0px;
  7047. position:absolute;
  7048. left:0px;
  7049. top:0px;
  7050. width:0px;
  7051. height:0px;
  7052. }
  7053. #u5772_div {
  7054. border-width:0px;
  7055. position:absolute;
  7056. left:0px;
  7057. top:0px;
  7058. width:20px;
  7059. height:18px;
  7060. background:inherit;
  7061. background-color:rgba(245, 154, 35, 1);
  7062. border:none;
  7063. border-right:0px;
  7064. border-radius:2px;
  7065. border-top-right-radius:0px;
  7066. border-bottom-right-radius:0px;
  7067. -moz-box-shadow:none;
  7068. -webkit-box-shadow:none;
  7069. box-shadow:none;
  7070. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7071. font-weight:400;
  7072. font-style:normal;
  7073. font-size:10px;
  7074. color:#FFFFFF;
  7075. text-align:center;
  7076. }
  7077. #u5772 {
  7078. border-width:0px;
  7079. position:absolute;
  7080. left:576px;
  7081. top:749px;
  7082. width:20px;
  7083. height:18px;
  7084. display:flex;
  7085. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7086. font-weight:400;
  7087. font-style:normal;
  7088. font-size:10px;
  7089. color:#FFFFFF;
  7090. text-align:center;
  7091. }
  7092. #u5772 .text {
  7093. position:absolute;
  7094. align-self:center;
  7095. padding:2px 2px 2px 2px;
  7096. box-sizing:border-box;
  7097. width:100%;
  7098. }
  7099. #u5772_text {
  7100. border-width:0px;
  7101. word-wrap:break-word;
  7102. text-transform:none;
  7103. }
  7104. #u5773_div {
  7105. border-width:0px;
  7106. position:absolute;
  7107. left:0px;
  7108. top:0px;
  7109. width:35px;
  7110. height:18px;
  7111. background:inherit;
  7112. background-color:rgba(255, 255, 255, 1);
  7113. box-sizing:border-box;
  7114. border-width:1px;
  7115. border-style:solid;
  7116. border-color:rgba(245, 154, 35, 1);
  7117. border-left:0px;
  7118. border-radius:2px;
  7119. border-top-left-radius:0px;
  7120. border-bottom-left-radius:0px;
  7121. -moz-box-shadow:none;
  7122. -webkit-box-shadow:none;
  7123. box-shadow:none;
  7124. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7125. font-weight:400;
  7126. font-style:normal;
  7127. font-size:10px;
  7128. color:#AAAAAA;
  7129. }
  7130. #u5773 {
  7131. border-width:0px;
  7132. position:absolute;
  7133. left:596px;
  7134. top:749px;
  7135. width:35px;
  7136. height:18px;
  7137. display:flex;
  7138. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7139. font-weight:400;
  7140. font-style:normal;
  7141. font-size:10px;
  7142. color:#AAAAAA;
  7143. }
  7144. #u5773 .text {
  7145. position:absolute;
  7146. align-self:center;
  7147. padding:2px 2px 2px 2px;
  7148. box-sizing:border-box;
  7149. width:100%;
  7150. }
  7151. #u5773_text {
  7152. border-width:0px;
  7153. word-wrap:break-word;
  7154. text-transform:none;
  7155. }
  7156. #u5774 {
  7157. border-width:0px;
  7158. position:absolute;
  7159. left:0px;
  7160. top:0px;
  7161. width:0px;
  7162. height:0px;
  7163. }
  7164. #u5775_div {
  7165. border-width:0px;
  7166. position:absolute;
  7167. left:0px;
  7168. top:0px;
  7169. width:20px;
  7170. height:18px;
  7171. background:inherit;
  7172. background-color:rgba(0, 191, 191, 1);
  7173. border:none;
  7174. border-right:0px;
  7175. border-radius:2px;
  7176. border-top-right-radius:0px;
  7177. border-bottom-right-radius:0px;
  7178. -moz-box-shadow:none;
  7179. -webkit-box-shadow:none;
  7180. box-shadow:none;
  7181. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7182. font-weight:400;
  7183. font-style:normal;
  7184. font-size:10px;
  7185. color:#FFFFFF;
  7186. text-align:center;
  7187. }
  7188. #u5775 {
  7189. border-width:0px;
  7190. position:absolute;
  7191. left:511px;
  7192. top:749px;
  7193. width:20px;
  7194. height:18px;
  7195. display:flex;
  7196. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7197. font-weight:400;
  7198. font-style:normal;
  7199. font-size:10px;
  7200. color:#FFFFFF;
  7201. text-align:center;
  7202. }
  7203. #u5775 .text {
  7204. position:absolute;
  7205. align-self:center;
  7206. padding:2px 2px 2px 2px;
  7207. box-sizing:border-box;
  7208. width:100%;
  7209. }
  7210. #u5775_text {
  7211. border-width:0px;
  7212. word-wrap:break-word;
  7213. text-transform:none;
  7214. }
  7215. #u5776_div {
  7216. border-width:0px;
  7217. position:absolute;
  7218. left:0px;
  7219. top:0px;
  7220. width:35px;
  7221. height:18px;
  7222. background:inherit;
  7223. background-color:rgba(255, 255, 255, 1);
  7224. box-sizing:border-box;
  7225. border-width:1px;
  7226. border-style:solid;
  7227. border-color:rgba(0, 191, 191, 1);
  7228. border-left:0px;
  7229. border-radius:2px;
  7230. border-top-left-radius:0px;
  7231. border-bottom-left-radius:0px;
  7232. -moz-box-shadow:none;
  7233. -webkit-box-shadow:none;
  7234. box-shadow:none;
  7235. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7236. font-weight:400;
  7237. font-style:normal;
  7238. font-size:10px;
  7239. color:#AAAAAA;
  7240. }
  7241. #u5776 {
  7242. border-width:0px;
  7243. position:absolute;
  7244. left:531px;
  7245. top:749px;
  7246. width:35px;
  7247. height:18px;
  7248. display:flex;
  7249. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7250. font-weight:400;
  7251. font-style:normal;
  7252. font-size:10px;
  7253. color:#AAAAAA;
  7254. }
  7255. #u5776 .text {
  7256. position:absolute;
  7257. align-self:center;
  7258. padding:2px 2px 2px 2px;
  7259. box-sizing:border-box;
  7260. width:100%;
  7261. }
  7262. #u5776_text {
  7263. border-width:0px;
  7264. word-wrap:break-word;
  7265. text-transform:none;
  7266. }
  7267. #u5777 {
  7268. border-width:0px;
  7269. position:absolute;
  7270. left:0px;
  7271. top:0px;
  7272. width:0px;
  7273. height:0px;
  7274. }
  7275. #u5778_div {
  7276. border-width:0px;
  7277. position:absolute;
  7278. left:0px;
  7279. top:0px;
  7280. width:256px;
  7281. height:17px;
  7282. background:inherit;
  7283. background-color:rgba(255, 255, 255, 0);
  7284. border:none;
  7285. border-radius:0px;
  7286. -moz-box-shadow:none;
  7287. -webkit-box-shadow:none;
  7288. box-shadow:none;
  7289. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7290. font-weight:400;
  7291. font-style:normal;
  7292. font-size:12px;
  7293. color:#555555;
  7294. }
  7295. #u5778 {
  7296. border-width:0px;
  7297. position:absolute;
  7298. left:530px;
  7299. top:777px;
  7300. width:256px;
  7301. height:17px;
  7302. display:flex;
  7303. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7304. font-weight:400;
  7305. font-style:normal;
  7306. font-size:12px;
  7307. color:#555555;
  7308. }
  7309. #u5778 .text {
  7310. position:absolute;
  7311. align-self:flex-start;
  7312. padding:0px 0px 0px 0px;
  7313. box-sizing:border-box;
  7314. width:100%;
  7315. }
  7316. #u5778_text {
  7317. border-width:0px;
  7318. word-wrap:break-word;
  7319. text-transform:none;
  7320. }
  7321. #u5779_img {
  7322. border-width:0px;
  7323. position:absolute;
  7324. left:0px;
  7325. top:0px;
  7326. width:14px;
  7327. height:15px;
  7328. }
  7329. #u5779 {
  7330. border-width:0px;
  7331. position:absolute;
  7332. left:511px;
  7333. top:777px;
  7334. width:14px;
  7335. height:15px;
  7336. display:flex;
  7337. }
  7338. #u5779 .text {
  7339. position:absolute;
  7340. align-self:center;
  7341. padding:2px 2px 2px 2px;
  7342. box-sizing:border-box;
  7343. width:100%;
  7344. }
  7345. #u5779_text {
  7346. border-width:0px;
  7347. word-wrap:break-word;
  7348. text-transform:none;
  7349. visibility:hidden;
  7350. }
  7351. #u5780 {
  7352. border-width:0px;
  7353. position:absolute;
  7354. left:0px;
  7355. top:0px;
  7356. width:0px;
  7357. height:0px;
  7358. }
  7359. #u5781_div {
  7360. border-width:0px;
  7361. position:absolute;
  7362. left:0px;
  7363. top:0px;
  7364. width:375px;
  7365. height:50px;
  7366. background:inherit;
  7367. background-color:rgba(255, 255, 255, 1);
  7368. box-sizing:border-box;
  7369. border-width:1px;
  7370. border-style:solid;
  7371. border-color:rgba(242, 242, 242, 1);
  7372. border-radius:26px;
  7373. border-top-left-radius:0px;
  7374. border-top-right-radius:0px;
  7375. -moz-box-shadow:none;
  7376. -webkit-box-shadow:none;
  7377. box-shadow:none;
  7378. }
  7379. #u5781 {
  7380. border-width:0px;
  7381. position:absolute;
  7382. left:499px;
  7383. top:789px;
  7384. width:375px;
  7385. height:50px;
  7386. display:flex;
  7387. }
  7388. #u5781 .text {
  7389. position:absolute;
  7390. align-self:center;
  7391. padding:2px 2px 2px 2px;
  7392. box-sizing:border-box;
  7393. width:100%;
  7394. }
  7395. #u5781_text {
  7396. border-width:0px;
  7397. word-wrap:break-word;
  7398. text-transform:none;
  7399. visibility:hidden;
  7400. }
  7401. #u5782 {
  7402. border-width:0px;
  7403. position:absolute;
  7404. left:0px;
  7405. top:0px;
  7406. width:0px;
  7407. height:0px;
  7408. }
  7409. #u5783_img {
  7410. border-width:0px;
  7411. position:absolute;
  7412. left:0px;
  7413. top:0px;
  7414. width:24px;
  7415. height:24px;
  7416. }
  7417. #u5783 {
  7418. border-width:0px;
  7419. position:absolute;
  7420. left:529px;
  7421. top:793px;
  7422. width:24px;
  7423. height:24px;
  7424. display:flex;
  7425. font-size:8px;
  7426. color:#FFFFFF;
  7427. }
  7428. #u5783 .text {
  7429. position:absolute;
  7430. align-self:center;
  7431. padding:2px 2px 2px 2px;
  7432. box-sizing:border-box;
  7433. width:100%;
  7434. }
  7435. #u5783_text {
  7436. border-width:0px;
  7437. word-wrap:break-word;
  7438. text-transform:none;
  7439. }
  7440. #u5784_div {
  7441. border-width:0px;
  7442. position:absolute;
  7443. left:0px;
  7444. top:0px;
  7445. width:25px;
  7446. height:17px;
  7447. background:inherit;
  7448. background-color:rgba(255, 255, 255, 0);
  7449. border:none;
  7450. border-radius:0px;
  7451. -moz-box-shadow:none;
  7452. -webkit-box-shadow:none;
  7453. box-shadow:none;
  7454. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7455. font-weight:400;
  7456. font-style:normal;
  7457. font-size:12px;
  7458. }
  7459. #u5784 {
  7460. border-width:0px;
  7461. position:absolute;
  7462. left:529px;
  7463. top:818px;
  7464. width:25px;
  7465. height:17px;
  7466. display:flex;
  7467. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7468. font-weight:400;
  7469. font-style:normal;
  7470. font-size:12px;
  7471. }
  7472. #u5784 .text {
  7473. position:absolute;
  7474. align-self:flex-start;
  7475. padding:0px 0px 0px 0px;
  7476. box-sizing:border-box;
  7477. width:100%;
  7478. }
  7479. #u5784_text {
  7480. border-width:0px;
  7481. white-space:nowrap;
  7482. text-transform:none;
  7483. }
  7484. #u5785 {
  7485. border-width:0px;
  7486. position:absolute;
  7487. left:0px;
  7488. top:0px;
  7489. width:0px;
  7490. height:0px;
  7491. }
  7492. #u5786_img {
  7493. border-width:0px;
  7494. position:absolute;
  7495. left:0px;
  7496. top:0px;
  7497. width:24px;
  7498. height:24px;
  7499. }
  7500. #u5786 {
  7501. border-width:0px;
  7502. position:absolute;
  7503. left:819px;
  7504. top:793px;
  7505. width:24px;
  7506. height:24px;
  7507. display:flex;
  7508. font-size:8px;
  7509. }
  7510. #u5786 .text {
  7511. position:absolute;
  7512. align-self:center;
  7513. padding:2px 2px 2px 2px;
  7514. box-sizing:border-box;
  7515. width:100%;
  7516. }
  7517. #u5786_text {
  7518. border-width:0px;
  7519. word-wrap:break-word;
  7520. text-transform:none;
  7521. }
  7522. #u5787_div {
  7523. border-width:0px;
  7524. position:absolute;
  7525. left:0px;
  7526. top:0px;
  7527. width:25px;
  7528. height:17px;
  7529. background:inherit;
  7530. background-color:rgba(255, 255, 255, 0);
  7531. border:none;
  7532. border-radius:0px;
  7533. -moz-box-shadow:none;
  7534. -webkit-box-shadow:none;
  7535. box-shadow:none;
  7536. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7537. font-weight:400;
  7538. font-style:normal;
  7539. font-size:12px;
  7540. }
  7541. #u5787 {
  7542. border-width:0px;
  7543. position:absolute;
  7544. left:819px;
  7545. top:818px;
  7546. width:25px;
  7547. height:17px;
  7548. display:flex;
  7549. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7550. font-weight:400;
  7551. font-style:normal;
  7552. font-size:12px;
  7553. }
  7554. #u5787 .text {
  7555. position:absolute;
  7556. align-self:flex-start;
  7557. padding:0px 0px 0px 0px;
  7558. box-sizing:border-box;
  7559. width:100%;
  7560. }
  7561. #u5787_text {
  7562. border-width:0px;
  7563. white-space:nowrap;
  7564. text-transform:none;
  7565. }
  7566. #u5788 {
  7567. border-width:0px;
  7568. position:absolute;
  7569. left:0px;
  7570. top:0px;
  7571. width:0px;
  7572. height:0px;
  7573. }
  7574. #u5789_img {
  7575. border-width:0px;
  7576. position:absolute;
  7577. left:0px;
  7578. top:0px;
  7579. width:24px;
  7580. height:24px;
  7581. }
  7582. #u5789 {
  7583. border-width:0px;
  7584. position:absolute;
  7585. left:744px;
  7586. top:793px;
  7587. width:24px;
  7588. height:24px;
  7589. display:flex;
  7590. font-size:8px;
  7591. }
  7592. #u5789 .text {
  7593. position:absolute;
  7594. align-self:center;
  7595. padding:2px 2px 2px 2px;
  7596. box-sizing:border-box;
  7597. width:100%;
  7598. }
  7599. #u5789_text {
  7600. border-width:0px;
  7601. word-wrap:break-word;
  7602. text-transform:none;
  7603. }
  7604. #u5790_div {
  7605. border-width:0px;
  7606. position:absolute;
  7607. left:0px;
  7608. top:0px;
  7609. width:37px;
  7610. height:17px;
  7611. background:inherit;
  7612. background-color:rgba(255, 255, 255, 0);
  7613. border:none;
  7614. border-radius:0px;
  7615. -moz-box-shadow:none;
  7616. -webkit-box-shadow:none;
  7617. box-shadow:none;
  7618. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7619. font-weight:400;
  7620. font-style:normal;
  7621. font-size:12px;
  7622. }
  7623. #u5790 {
  7624. border-width:0px;
  7625. position:absolute;
  7626. left:737px;
  7627. top:818px;
  7628. width:37px;
  7629. height:17px;
  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. }
  7636. #u5790 .text {
  7637. position:absolute;
  7638. align-self:flex-start;
  7639. padding:0px 0px 0px 0px;
  7640. box-sizing:border-box;
  7641. width:100%;
  7642. }
  7643. #u5790_text {
  7644. border-width:0px;
  7645. white-space:nowrap;
  7646. text-transform:none;
  7647. }
  7648. #u5791 {
  7649. border-width:0px;
  7650. position:absolute;
  7651. left:0px;
  7652. top:0px;
  7653. width:0px;
  7654. height:0px;
  7655. }
  7656. #u5792_img {
  7657. border-width:0px;
  7658. position:absolute;
  7659. left:0px;
  7660. top:0px;
  7661. width:24px;
  7662. height:24px;
  7663. }
  7664. #u5792 {
  7665. border-width:0px;
  7666. position:absolute;
  7667. left:604px;
  7668. top:793px;
  7669. width:24px;
  7670. height:24px;
  7671. display:flex;
  7672. font-size:8px;
  7673. }
  7674. #u5792 .text {
  7675. position:absolute;
  7676. align-self:center;
  7677. padding:2px 2px 2px 2px;
  7678. box-sizing:border-box;
  7679. width:100%;
  7680. }
  7681. #u5792_text {
  7682. border-width:0px;
  7683. word-wrap:break-word;
  7684. text-transform:none;
  7685. }
  7686. #u5793_div {
  7687. border-width:0px;
  7688. position:absolute;
  7689. left:0px;
  7690. top:0px;
  7691. width:25px;
  7692. height:17px;
  7693. background:inherit;
  7694. background-color:rgba(255, 255, 255, 0);
  7695. border:none;
  7696. border-radius:0px;
  7697. -moz-box-shadow:none;
  7698. -webkit-box-shadow:none;
  7699. box-shadow:none;
  7700. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7701. font-weight:400;
  7702. font-style:normal;
  7703. font-size:12px;
  7704. }
  7705. #u5793 {
  7706. border-width:0px;
  7707. position:absolute;
  7708. left:604px;
  7709. top:818px;
  7710. width:25px;
  7711. height:17px;
  7712. display:flex;
  7713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7714. font-weight:400;
  7715. font-style:normal;
  7716. font-size:12px;
  7717. }
  7718. #u5793 .text {
  7719. position:absolute;
  7720. align-self:flex-start;
  7721. padding:0px 0px 0px 0px;
  7722. box-sizing:border-box;
  7723. width:100%;
  7724. }
  7725. #u5793_text {
  7726. border-width:0px;
  7727. white-space:nowrap;
  7728. text-transform:none;
  7729. }
  7730. #u5794_img {
  7731. border-width:0px;
  7732. position:absolute;
  7733. left:0px;
  7734. top:0px;
  7735. width:49px;
  7736. height:49px;
  7737. }
  7738. #u5794 {
  7739. border-width:0px;
  7740. position:absolute;
  7741. left:662px;
  7742. top:778px;
  7743. width:49px;
  7744. height:49px;
  7745. display:flex;
  7746. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7747. font-weight:400;
  7748. font-style:normal;
  7749. font-size:12px;
  7750. color:#FFFFFF;
  7751. }
  7752. #u5794 .text {
  7753. position:absolute;
  7754. align-self:center;
  7755. padding:2px 2px 2px 2px;
  7756. box-sizing:border-box;
  7757. width:100%;
  7758. }
  7759. #u5794_text {
  7760. border-width:0px;
  7761. word-wrap:break-word;
  7762. text-transform:none;
  7763. }
  7764. #u5795 {
  7765. border-width:0px;
  7766. position:absolute;
  7767. left:0px;
  7768. top:0px;
  7769. width:0px;
  7770. height:0px;
  7771. }
  7772. #u5796_div {
  7773. border-width:0px;
  7774. position:absolute;
  7775. left:0px;
  7776. top:0px;
  7777. width:375px;
  7778. height:50px;
  7779. background:inherit;
  7780. background-color:rgba(255, 255, 255, 1);
  7781. box-sizing:border-box;
  7782. border-width:1px;
  7783. border-style:solid;
  7784. border-color:rgba(242, 242, 242, 1);
  7785. border-radius:26px;
  7786. border-top-left-radius:0px;
  7787. border-top-right-radius:0px;
  7788. -moz-box-shadow:none;
  7789. -webkit-box-shadow:none;
  7790. box-shadow:none;
  7791. }
  7792. #u5796 {
  7793. border-width:0px;
  7794. position:absolute;
  7795. left:29px;
  7796. top:1151px;
  7797. width:375px;
  7798. height:50px;
  7799. display:flex;
  7800. }
  7801. #u5796 .text {
  7802. position:absolute;
  7803. align-self:center;
  7804. padding:2px 2px 2px 2px;
  7805. box-sizing:border-box;
  7806. width:100%;
  7807. }
  7808. #u5796_text {
  7809. border-width:0px;
  7810. word-wrap:break-word;
  7811. text-transform:none;
  7812. visibility:hidden;
  7813. }
  7814. #u5797 {
  7815. border-width:0px;
  7816. position:absolute;
  7817. left:0px;
  7818. top:0px;
  7819. width:0px;
  7820. height:0px;
  7821. }
  7822. #u5798_img {
  7823. border-width:0px;
  7824. position:absolute;
  7825. left:0px;
  7826. top:0px;
  7827. width:24px;
  7828. height:24px;
  7829. }
  7830. #u5798 {
  7831. border-width:0px;
  7832. position:absolute;
  7833. left:59px;
  7834. top:1155px;
  7835. width:24px;
  7836. height:24px;
  7837. display:flex;
  7838. font-size:8px;
  7839. color:#FFFFFF;
  7840. }
  7841. #u5798 .text {
  7842. position:absolute;
  7843. align-self:center;
  7844. padding:2px 2px 2px 2px;
  7845. box-sizing:border-box;
  7846. width:100%;
  7847. }
  7848. #u5798_text {
  7849. border-width:0px;
  7850. word-wrap:break-word;
  7851. text-transform:none;
  7852. }
  7853. #u5799_div {
  7854. border-width:0px;
  7855. position:absolute;
  7856. left:0px;
  7857. top:0px;
  7858. width:25px;
  7859. height:17px;
  7860. background:inherit;
  7861. background-color:rgba(255, 255, 255, 0);
  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. }
  7872. #u5799 {
  7873. border-width:0px;
  7874. position:absolute;
  7875. left:59px;
  7876. top:1180px;
  7877. width:25px;
  7878. height:17px;
  7879. display:flex;
  7880. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7881. font-weight:400;
  7882. font-style:normal;
  7883. font-size:12px;
  7884. }
  7885. #u5799 .text {
  7886. position:absolute;
  7887. align-self:flex-start;
  7888. padding:0px 0px 0px 0px;
  7889. box-sizing:border-box;
  7890. width:100%;
  7891. }
  7892. #u5799_text {
  7893. border-width:0px;
  7894. white-space:nowrap;
  7895. text-transform:none;
  7896. }
  7897. #u5800 {
  7898. border-width:0px;
  7899. position:absolute;
  7900. left:0px;
  7901. top:0px;
  7902. width:0px;
  7903. height:0px;
  7904. }
  7905. #u5801_img {
  7906. border-width:0px;
  7907. position:absolute;
  7908. left:0px;
  7909. top:0px;
  7910. width:24px;
  7911. height:24px;
  7912. }
  7913. #u5801 {
  7914. border-width:0px;
  7915. position:absolute;
  7916. left:349px;
  7917. top:1155px;
  7918. width:24px;
  7919. height:24px;
  7920. display:flex;
  7921. font-size:8px;
  7922. }
  7923. #u5801 .text {
  7924. position:absolute;
  7925. align-self:center;
  7926. padding:2px 2px 2px 2px;
  7927. box-sizing:border-box;
  7928. width:100%;
  7929. }
  7930. #u5801_text {
  7931. border-width:0px;
  7932. word-wrap:break-word;
  7933. text-transform:none;
  7934. }
  7935. #u5802_div {
  7936. border-width:0px;
  7937. position:absolute;
  7938. left:0px;
  7939. top:0px;
  7940. width:25px;
  7941. height:17px;
  7942. background:inherit;
  7943. background-color:rgba(255, 255, 255, 0);
  7944. border:none;
  7945. border-radius:0px;
  7946. -moz-box-shadow:none;
  7947. -webkit-box-shadow:none;
  7948. box-shadow:none;
  7949. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7950. font-weight:400;
  7951. font-style:normal;
  7952. font-size:12px;
  7953. }
  7954. #u5802 {
  7955. border-width:0px;
  7956. position:absolute;
  7957. left:349px;
  7958. top:1180px;
  7959. width:25px;
  7960. height:17px;
  7961. display:flex;
  7962. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7963. font-weight:400;
  7964. font-style:normal;
  7965. font-size:12px;
  7966. }
  7967. #u5802 .text {
  7968. position:absolute;
  7969. align-self:flex-start;
  7970. padding:0px 0px 0px 0px;
  7971. box-sizing:border-box;
  7972. width:100%;
  7973. }
  7974. #u5802_text {
  7975. border-width:0px;
  7976. white-space:nowrap;
  7977. text-transform:none;
  7978. }
  7979. #u5803 {
  7980. border-width:0px;
  7981. position:absolute;
  7982. left:0px;
  7983. top:0px;
  7984. width:0px;
  7985. height:0px;
  7986. }
  7987. #u5804_img {
  7988. border-width:0px;
  7989. position:absolute;
  7990. left:0px;
  7991. top:0px;
  7992. width:24px;
  7993. height:24px;
  7994. }
  7995. #u5804 {
  7996. border-width:0px;
  7997. position:absolute;
  7998. left:274px;
  7999. top:1155px;
  8000. width:24px;
  8001. height:24px;
  8002. display:flex;
  8003. font-size:8px;
  8004. }
  8005. #u5804 .text {
  8006. position:absolute;
  8007. align-self:center;
  8008. padding:2px 2px 2px 2px;
  8009. box-sizing:border-box;
  8010. width:100%;
  8011. }
  8012. #u5804_text {
  8013. border-width:0px;
  8014. word-wrap:break-word;
  8015. text-transform:none;
  8016. }
  8017. #u5805_div {
  8018. border-width:0px;
  8019. position:absolute;
  8020. left:0px;
  8021. top:0px;
  8022. width:37px;
  8023. height:17px;
  8024. background:inherit;
  8025. background-color:rgba(255, 255, 255, 0);
  8026. border:none;
  8027. border-radius:0px;
  8028. -moz-box-shadow:none;
  8029. -webkit-box-shadow:none;
  8030. box-shadow:none;
  8031. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8032. font-weight:400;
  8033. font-style:normal;
  8034. font-size:12px;
  8035. }
  8036. #u5805 {
  8037. border-width:0px;
  8038. position:absolute;
  8039. left:267px;
  8040. top:1180px;
  8041. width:37px;
  8042. height:17px;
  8043. display:flex;
  8044. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8045. font-weight:400;
  8046. font-style:normal;
  8047. font-size:12px;
  8048. }
  8049. #u5805 .text {
  8050. position:absolute;
  8051. align-self:flex-start;
  8052. padding:0px 0px 0px 0px;
  8053. box-sizing:border-box;
  8054. width:100%;
  8055. }
  8056. #u5805_text {
  8057. border-width:0px;
  8058. white-space:nowrap;
  8059. text-transform:none;
  8060. }
  8061. #u5806 {
  8062. border-width:0px;
  8063. position:absolute;
  8064. left:0px;
  8065. top:0px;
  8066. width:0px;
  8067. height:0px;
  8068. }
  8069. #u5807_img {
  8070. border-width:0px;
  8071. position:absolute;
  8072. left:0px;
  8073. top:0px;
  8074. width:24px;
  8075. height:24px;
  8076. }
  8077. #u5807 {
  8078. border-width:0px;
  8079. position:absolute;
  8080. left:134px;
  8081. top:1155px;
  8082. width:24px;
  8083. height:24px;
  8084. display:flex;
  8085. font-size:8px;
  8086. }
  8087. #u5807 .text {
  8088. position:absolute;
  8089. align-self:center;
  8090. padding:2px 2px 2px 2px;
  8091. box-sizing:border-box;
  8092. width:100%;
  8093. }
  8094. #u5807_text {
  8095. border-width:0px;
  8096. word-wrap:break-word;
  8097. text-transform:none;
  8098. }
  8099. #u5808_div {
  8100. border-width:0px;
  8101. position:absolute;
  8102. left:0px;
  8103. top:0px;
  8104. width:25px;
  8105. height:17px;
  8106. background:inherit;
  8107. background-color:rgba(255, 255, 255, 0);
  8108. border:none;
  8109. border-radius:0px;
  8110. -moz-box-shadow:none;
  8111. -webkit-box-shadow:none;
  8112. box-shadow:none;
  8113. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8114. font-weight:400;
  8115. font-style:normal;
  8116. font-size:12px;
  8117. }
  8118. #u5808 {
  8119. border-width:0px;
  8120. position:absolute;
  8121. left:134px;
  8122. top:1180px;
  8123. width:25px;
  8124. height:17px;
  8125. display:flex;
  8126. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8127. font-weight:400;
  8128. font-style:normal;
  8129. font-size:12px;
  8130. }
  8131. #u5808 .text {
  8132. position:absolute;
  8133. align-self:flex-start;
  8134. padding:0px 0px 0px 0px;
  8135. box-sizing:border-box;
  8136. width:100%;
  8137. }
  8138. #u5808_text {
  8139. border-width:0px;
  8140. white-space:nowrap;
  8141. text-transform:none;
  8142. }
  8143. #u5809_img {
  8144. border-width:0px;
  8145. position:absolute;
  8146. left:0px;
  8147. top:0px;
  8148. width:49px;
  8149. height:49px;
  8150. }
  8151. #u5809 {
  8152. border-width:0px;
  8153. position:absolute;
  8154. left:192px;
  8155. top:1140px;
  8156. width:49px;
  8157. height:49px;
  8158. display:flex;
  8159. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8160. font-weight:400;
  8161. font-style:normal;
  8162. font-size:12px;
  8163. color:#FFFFFF;
  8164. }
  8165. #u5809 .text {
  8166. position:absolute;
  8167. align-self:center;
  8168. padding:2px 2px 2px 2px;
  8169. box-sizing:border-box;
  8170. width:100%;
  8171. }
  8172. #u5809_text {
  8173. border-width:0px;
  8174. word-wrap:break-word;
  8175. text-transform:none;
  8176. }
  8177. #u5810_img {
  8178. border-width:0px;
  8179. position:absolute;
  8180. left:0px;
  8181. top:0px;
  8182. width:21px;
  8183. height:22px;
  8184. }
  8185. #u5810 {
  8186. border-width:0px;
  8187. position:absolute;
  8188. left:49px;
  8189. top:77px;
  8190. width:21px;
  8191. height:22px;
  8192. display:flex;
  8193. }
  8194. #u5810 .text {
  8195. position:absolute;
  8196. align-self:center;
  8197. padding:2px 2px 2px 2px;
  8198. box-sizing:border-box;
  8199. width:100%;
  8200. }
  8201. #u5810_text {
  8202. border-width:0px;
  8203. word-wrap:break-word;
  8204. text-transform:none;
  8205. visibility:hidden;
  8206. }
  8207. #u5811_img {
  8208. border-width:0px;
  8209. position:absolute;
  8210. left:0px;
  8211. top:0px;
  8212. width:21px;
  8213. height:22px;
  8214. }
  8215. #u5811 {
  8216. border-width:0px;
  8217. position:absolute;
  8218. left:511px;
  8219. top:77px;
  8220. width:21px;
  8221. height:22px;
  8222. display:flex;
  8223. }
  8224. #u5811 .text {
  8225. position:absolute;
  8226. align-self:center;
  8227. padding:2px 2px 2px 2px;
  8228. box-sizing:border-box;
  8229. width:100%;
  8230. }
  8231. #u5811_text {
  8232. border-width:0px;
  8233. word-wrap:break-word;
  8234. text-transform:none;
  8235. visibility:hidden;
  8236. }
  8237. #u5812_div {
  8238. border-width:0px;
  8239. position:absolute;
  8240. left:0px;
  8241. top:0px;
  8242. width:907px;
  8243. height:360px;
  8244. background:inherit;
  8245. background-color:rgba(255, 255, 255, 0);
  8246. border:none;
  8247. border-radius:0px;
  8248. -moz-box-shadow:none;
  8249. -webkit-box-shadow:none;
  8250. box-shadow:none;
  8251. font-size:14px;
  8252. color:#D9001B;
  8253. line-height:30px;
  8254. }
  8255. #u5812 {
  8256. border-width:0px;
  8257. position:absolute;
  8258. left:481px;
  8259. top:882px;
  8260. width:907px;
  8261. height:360px;
  8262. display:flex;
  8263. font-size:14px;
  8264. color:#D9001B;
  8265. line-height:30px;
  8266. }
  8267. #u5812 .text {
  8268. position:absolute;
  8269. align-self:flex-start;
  8270. padding:0px 0px 0px 0px;
  8271. box-sizing:border-box;
  8272. width:100%;
  8273. }
  8274. #u5812_text {
  8275. border-width:0px;
  8276. white-space:nowrap;
  8277. text-transform:none;
  8278. }