styles.css 110 KB

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