styles.css 225 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251122521225312254122551225612257122581225912260122611226212263122641226512266122671226812269122701227112272122731227412275122761227712278122791228012281122821228312284122851228612287122881228912290122911229212293122941229512296122971229812299123001230112302123031230412305123061230712308123091231012311123121231312314123151231612317123181231912320123211232212323123241232512326123271232812329123301233112332123331233412335123361233712338123391234012341123421234312344123451234612347123481234912350123511235212353123541235512356123571235812359123601236112362123631236412365123661236712368123691237012371123721237312374123751237612377123781237912380123811238212383123841238512386123871238812389123901239112392123931239412395123961239712398123991240012401124021240312404124051240612407124081240912410124111241212413124141241512416124171241812419124201242112422124231242412425124261242712428124291243012431124321243312434124351243612437124381243912440124411244212443124441244512446124471244812449124501245112452124531245412455124561245712458124591246012461124621246312464124651246612467124681246912470124711247212473124741247512476124771247812479124801248112482124831248412485124861248712488124891249012491124921249312494124951249612497124981249912500125011250212503125041250512506125071250812509125101251112512125131251412515125161251712518125191252012521125221252312524125251252612527125281252912530125311253212533125341253512536125371253812539125401254112542125431254412545125461254712548125491255012551125521255312554125551255612557125581255912560125611256212563
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:2905px;
  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. #u47351_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. #u47351 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u47351 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u47351_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u47352_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. #u47352 {
  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. #u47352 .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. #u47352_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u47353_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. #u47353 {
  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. #u47353 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u47353_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u47354 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u47355_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u47355 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u47355 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u47355_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u47356_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. #u47356 {
  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. #u47356 .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. #u47356_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u47357_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. #u47357 {
  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. #u47357 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u47357_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u47358 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u47359_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. #u47359 {
  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. #u47359 .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. #u47359_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u47360_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u47360 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:75px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u47360 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u47360_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u47361 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u47362_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. #u47362 {
  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. #u47362 .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. #u47362_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u47363_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u47363 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:151px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u47363 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u47363_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u47364 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u47365_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. #u47365 {
  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. #u47365 .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. #u47365_text {
  475. border-width:0px;
  476. white-space:nowrap;
  477. text-transform:none;
  478. }
  479. #u47366_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:14px;
  485. height:14px;
  486. }
  487. #u47366 {
  488. border-width:0px;
  489. position:absolute;
  490. left:20px;
  491. top:403px;
  492. width:14px;
  493. height:14px;
  494. display:flex;
  495. }
  496. #u47366 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u47366_text {
  504. border-width:0px;
  505. word-wrap:break-word;
  506. text-transform:none;
  507. visibility:hidden;
  508. }
  509. #u47367 {
  510. border-width:0px;
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:0px;
  515. height:0px;
  516. }
  517. #u47368_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. #u47368 {
  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. #u47368 .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. #u47368_text {
  559. border-width:0px;
  560. white-space:nowrap;
  561. text-transform:none;
  562. }
  563. #u47369_img {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:14px;
  569. height:14px;
  570. }
  571. #u47369 {
  572. border-width:0px;
  573. position:absolute;
  574. left:20px;
  575. top:113px;
  576. width:14px;
  577. height:14px;
  578. display:flex;
  579. }
  580. #u47369 .text {
  581. position:absolute;
  582. align-self:center;
  583. padding:2px 2px 2px 2px;
  584. box-sizing:border-box;
  585. width:100%;
  586. }
  587. #u47369_text {
  588. border-width:0px;
  589. word-wrap:break-word;
  590. text-transform:none;
  591. visibility:hidden;
  592. }
  593. #u47370 {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:0px;
  599. height:0px;
  600. }
  601. #u47371_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. #u47371 {
  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. #u47371 .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. #u47371_text {
  643. border-width:0px;
  644. white-space:nowrap;
  645. text-transform:none;
  646. }
  647. #u47372_img {
  648. border-width:0px;
  649. position:absolute;
  650. left:0px;
  651. top:0px;
  652. width:14px;
  653. height:14px;
  654. }
  655. #u47372 {
  656. border-width:0px;
  657. position:absolute;
  658. left:20px;
  659. top:445px;
  660. width:14px;
  661. height:14px;
  662. display:flex;
  663. }
  664. #u47372 .text {
  665. position:absolute;
  666. align-self:center;
  667. padding:2px 2px 2px 2px;
  668. box-sizing:border-box;
  669. width:100%;
  670. }
  671. #u47372_text {
  672. border-width:0px;
  673. word-wrap:break-word;
  674. text-transform:none;
  675. visibility:hidden;
  676. }
  677. #u47373 {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:0px;
  683. height:0px;
  684. }
  685. #u47374_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. #u47374 {
  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. #u47374 .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. #u47374_text {
  727. border-width:0px;
  728. white-space:nowrap;
  729. text-transform:none;
  730. }
  731. #u47375_img {
  732. border-width:0px;
  733. position:absolute;
  734. left:0px;
  735. top:0px;
  736. width:14px;
  737. height:14px;
  738. }
  739. #u47375 {
  740. border-width:0px;
  741. position:absolute;
  742. left:20px;
  743. top:319px;
  744. width:14px;
  745. height:14px;
  746. display:flex;
  747. }
  748. #u47375 .text {
  749. position:absolute;
  750. align-self:center;
  751. padding:2px 2px 2px 2px;
  752. box-sizing:border-box;
  753. width:100%;
  754. }
  755. #u47375_text {
  756. border-width:0px;
  757. word-wrap:break-word;
  758. text-transform:none;
  759. visibility:hidden;
  760. }
  761. #u47376 {
  762. border-width:0px;
  763. position:absolute;
  764. left:0px;
  765. top:0px;
  766. width:0px;
  767. height:0px;
  768. }
  769. #u47377_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. #u47377 {
  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. #u47377 .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. #u47377_text {
  811. border-width:0px;
  812. white-space:nowrap;
  813. text-transform:none;
  814. }
  815. #u47378_img {
  816. border-width:0px;
  817. position:absolute;
  818. left:0px;
  819. top:0px;
  820. width:14px;
  821. height:14px;
  822. }
  823. #u47378 {
  824. border-width:0px;
  825. position:absolute;
  826. left:20px;
  827. top:193px;
  828. width:14px;
  829. height:14px;
  830. display:flex;
  831. }
  832. #u47378 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 2px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u47378_text {
  840. border-width:0px;
  841. word-wrap:break-word;
  842. text-transform:none;
  843. visibility:hidden;
  844. }
  845. #u47379 {
  846. border-width:0px;
  847. position:absolute;
  848. left:0px;
  849. top:0px;
  850. width:0px;
  851. height:0px;
  852. }
  853. #u47380_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. #u47380 {
  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. #u47380 .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. #u47380_text {
  895. border-width:0px;
  896. white-space:nowrap;
  897. text-transform:none;
  898. }
  899. #u47381_img {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:14px;
  905. height:14px;
  906. }
  907. #u47381 {
  908. border-width:0px;
  909. position:absolute;
  910. left:20px;
  911. top:361px;
  912. width:14px;
  913. height:14px;
  914. display:flex;
  915. }
  916. #u47381 .text {
  917. position:absolute;
  918. align-self:center;
  919. padding:2px 2px 2px 2px;
  920. box-sizing:border-box;
  921. width:100%;
  922. }
  923. #u47381_text {
  924. border-width:0px;
  925. word-wrap:break-word;
  926. text-transform:none;
  927. visibility:hidden;
  928. }
  929. #u47382 {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:0px;
  935. height:0px;
  936. }
  937. #u47383_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. #u47383 {
  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. #u47383 .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. #u47383_text {
  979. border-width:0px;
  980. white-space:nowrap;
  981. text-transform:none;
  982. }
  983. #u47384_img {
  984. border-width:0px;
  985. position:absolute;
  986. left:0px;
  987. top:0px;
  988. width:14px;
  989. height:14px;
  990. }
  991. #u47384 {
  992. border-width:0px;
  993. position:absolute;
  994. left:20px;
  995. top:487px;
  996. width:14px;
  997. height:14px;
  998. display:flex;
  999. }
  1000. #u47384 .text {
  1001. position:absolute;
  1002. align-self:center;
  1003. padding:2px 2px 2px 2px;
  1004. box-sizing:border-box;
  1005. width:100%;
  1006. }
  1007. #u47384_text {
  1008. border-width:0px;
  1009. word-wrap:break-word;
  1010. text-transform:none;
  1011. visibility:hidden;
  1012. }
  1013. #u47385_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. #u47385 {
  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. #u47385 .text {
  1046. position:absolute;
  1047. align-self:center;
  1048. padding:0px 0px 0px 0px;
  1049. box-sizing:border-box;
  1050. width:100%;
  1051. }
  1052. #u47385_text {
  1053. border-width:0px;
  1054. white-space:nowrap;
  1055. text-transform:none;
  1056. }
  1057. #u47386_img {
  1058. border-width:0px;
  1059. position:absolute;
  1060. left:0px;
  1061. top:0px;
  1062. width:22px;
  1063. height:22px;
  1064. }
  1065. #u47386 {
  1066. border-width:0px;
  1067. position:absolute;
  1068. left:20px;
  1069. top:1144px;
  1070. width:22px;
  1071. height:22px;
  1072. display:flex;
  1073. }
  1074. #u47386 .text {
  1075. position:absolute;
  1076. align-self:center;
  1077. padding:2px 2px 2px 2px;
  1078. box-sizing:border-box;
  1079. width:100%;
  1080. }
  1081. #u47386_text {
  1082. border-width:0px;
  1083. word-wrap:break-word;
  1084. text-transform:none;
  1085. visibility:hidden;
  1086. }
  1087. #u47387_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. #u47387 {
  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. #u47387 .text {
  1120. position:absolute;
  1121. align-self:center;
  1122. padding:0px 0px 0px 0px;
  1123. box-sizing:border-box;
  1124. width:100%;
  1125. }
  1126. #u47387_text {
  1127. border-width:0px;
  1128. white-space:nowrap;
  1129. text-transform:none;
  1130. }
  1131. #u47388_img {
  1132. border-width:0px;
  1133. position:absolute;
  1134. left:0px;
  1135. top:0px;
  1136. width:22px;
  1137. height:22px;
  1138. }
  1139. #u47388 {
  1140. border-width:0px;
  1141. position:absolute;
  1142. left:20px;
  1143. top:1186px;
  1144. width:22px;
  1145. height:22px;
  1146. display:flex;
  1147. }
  1148. #u47388 .text {
  1149. position:absolute;
  1150. align-self:center;
  1151. padding:2px 2px 2px 2px;
  1152. box-sizing:border-box;
  1153. width:100%;
  1154. }
  1155. #u47388_text {
  1156. border-width:0px;
  1157. word-wrap:break-word;
  1158. text-transform:none;
  1159. visibility:hidden;
  1160. }
  1161. #u47389 {
  1162. border-width:0px;
  1163. position:absolute;
  1164. left:0px;
  1165. top:0px;
  1166. width:0px;
  1167. height:0px;
  1168. }
  1169. #u47390_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. #u47390 {
  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. #u47390 .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. #u47390_text {
  1211. border-width:0px;
  1212. white-space:nowrap;
  1213. text-transform:none;
  1214. }
  1215. #u47391_img {
  1216. border-width:0px;
  1217. position:absolute;
  1218. left:0px;
  1219. top:0px;
  1220. width:14px;
  1221. height:14px;
  1222. }
  1223. #u47391 {
  1224. border-width:0px;
  1225. position:absolute;
  1226. left:20px;
  1227. top:235px;
  1228. width:14px;
  1229. height:14px;
  1230. display:flex;
  1231. }
  1232. #u47391 .text {
  1233. position:absolute;
  1234. align-self:center;
  1235. padding:2px 2px 2px 2px;
  1236. box-sizing:border-box;
  1237. width:100%;
  1238. }
  1239. #u47391_text {
  1240. border-width:0px;
  1241. word-wrap:break-word;
  1242. text-transform:none;
  1243. visibility:hidden;
  1244. }
  1245. #u47392 {
  1246. border-width:0px;
  1247. position:absolute;
  1248. left:0px;
  1249. top:0px;
  1250. width:0px;
  1251. height:0px;
  1252. }
  1253. #u47393_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. #u47393 {
  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. #u47393 .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. #u47393_text {
  1295. border-width:0px;
  1296. white-space:nowrap;
  1297. text-transform:none;
  1298. }
  1299. #u47394_img {
  1300. border-width:0px;
  1301. position:absolute;
  1302. left:0px;
  1303. top:0px;
  1304. width:14px;
  1305. height:14px;
  1306. }
  1307. #u47394 {
  1308. border-width:0px;
  1309. position:absolute;
  1310. left:20px;
  1311. top:277px;
  1312. width:14px;
  1313. height:14px;
  1314. display:flex;
  1315. }
  1316. #u47394 .text {
  1317. position:absolute;
  1318. align-self:center;
  1319. padding:2px 2px 2px 2px;
  1320. box-sizing:border-box;
  1321. width:100%;
  1322. }
  1323. #u47394_text {
  1324. border-width:0px;
  1325. word-wrap:break-word;
  1326. text-transform:none;
  1327. visibility:hidden;
  1328. }
  1329. #u47395 {
  1330. border-width:0px;
  1331. position:absolute;
  1332. left:0px;
  1333. top:0px;
  1334. width:0px;
  1335. height:0px;
  1336. }
  1337. #u47396_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. #u47396_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. #u47396_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. #u47396 {
  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. #u47396 .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. #u47396_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. #u47396.disabled {
  1428. }
  1429. .u47396_input_option {
  1430. font-size:14px;
  1431. }
  1432. #u47397_img {
  1433. border-width:0px;
  1434. position:absolute;
  1435. left:0px;
  1436. top:0px;
  1437. width:22px;
  1438. height:22px;
  1439. }
  1440. #u47397 {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:1194px;
  1444. top:14px;
  1445. width:22px;
  1446. height:22px;
  1447. display:flex;
  1448. }
  1449. #u47397 .text {
  1450. position:absolute;
  1451. align-self:center;
  1452. padding:2px 2px 2px 2px;
  1453. box-sizing:border-box;
  1454. width:100%;
  1455. }
  1456. #u47397_text {
  1457. border-width:0px;
  1458. word-wrap:break-word;
  1459. text-transform:none;
  1460. visibility:hidden;
  1461. }
  1462. #u47398_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. #u47398 {
  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. #u47398 .text {
  1497. position:absolute;
  1498. align-self:center;
  1499. padding:0px 0px 0px 0px;
  1500. box-sizing:border-box;
  1501. width:100%;
  1502. }
  1503. #u47398_text {
  1504. border-width:0px;
  1505. word-wrap:break-word;
  1506. text-transform:none;
  1507. }
  1508. #u47399_img {
  1509. border-width:0px;
  1510. position:absolute;
  1511. left:0px;
  1512. top:0px;
  1513. width:2px;
  1514. height:12px;
  1515. }
  1516. #u47399 {
  1517. border-width:0px;
  1518. position:absolute;
  1519. left:1452px;
  1520. top:19px;
  1521. width:1px;
  1522. height:11px;
  1523. display:flex;
  1524. }
  1525. #u47399 .text {
  1526. position:absolute;
  1527. align-self:center;
  1528. padding:2px 2px 2px 2px;
  1529. box-sizing:border-box;
  1530. width:100%;
  1531. }
  1532. #u47399_text {
  1533. border-width:0px;
  1534. word-wrap:break-word;
  1535. text-transform:none;
  1536. visibility:hidden;
  1537. }
  1538. #u47400 {
  1539. border-width:0px;
  1540. position:absolute;
  1541. left:0px;
  1542. top:0px;
  1543. width:0px;
  1544. height:0px;
  1545. }
  1546. #u47401_div {
  1547. border-width:0px;
  1548. position:absolute;
  1549. left:0px;
  1550. top:0px;
  1551. width:1265px;
  1552. height:1193px;
  1553. background:inherit;
  1554. background-color:rgba(255, 255, 255, 1);
  1555. border:none;
  1556. border-radius:0px;
  1557. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1558. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1559. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1560. color:#1890FF;
  1561. }
  1562. #u47401 {
  1563. border-width:0px;
  1564. position:absolute;
  1565. left:329px;
  1566. top:50px;
  1567. width:1265px;
  1568. height:1193px;
  1569. display:flex;
  1570. color:#1890FF;
  1571. }
  1572. #u47401 .text {
  1573. position:absolute;
  1574. align-self:center;
  1575. padding:2px 2px 2px 2px;
  1576. box-sizing:border-box;
  1577. width:100%;
  1578. }
  1579. #u47401_text {
  1580. border-width:0px;
  1581. word-wrap:break-word;
  1582. text-transform:none;
  1583. visibility:hidden;
  1584. }
  1585. #u47402_div {
  1586. border-width:0px;
  1587. position:absolute;
  1588. left:0px;
  1589. top:0px;
  1590. width:73px;
  1591. height:50px;
  1592. background:inherit;
  1593. background-color:rgba(255, 255, 255, 0);
  1594. border:none;
  1595. border-left:0px;
  1596. border-top:0px;
  1597. border-right:0px;
  1598. border-radius:0px;
  1599. border-bottom-right-radius:0px;
  1600. border-bottom-left-radius:0px;
  1601. -moz-box-shadow:none;
  1602. -webkit-box-shadow:none;
  1603. box-shadow:none;
  1604. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1605. font-weight:500;
  1606. font-style:normal;
  1607. font-size:18px;
  1608. color:#1890FF;
  1609. }
  1610. #u47402 {
  1611. border-width:0px;
  1612. position:absolute;
  1613. left:348px;
  1614. top:50px;
  1615. width:73px;
  1616. height:50px;
  1617. display:flex;
  1618. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1619. font-weight:500;
  1620. font-style:normal;
  1621. font-size:18px;
  1622. color:#1890FF;
  1623. }
  1624. #u47402 .text {
  1625. position:absolute;
  1626. align-self:center;
  1627. padding:0px 0px 0px 0px;
  1628. box-sizing:border-box;
  1629. width:100%;
  1630. }
  1631. #u47402_text {
  1632. border-width:0px;
  1633. white-space:nowrap;
  1634. text-transform:none;
  1635. }
  1636. #u47403 {
  1637. border-width:0px;
  1638. position:absolute;
  1639. left:0px;
  1640. top:0px;
  1641. width:0px;
  1642. height:0px;
  1643. }
  1644. #u47404_div {
  1645. border-width:0px;
  1646. position:absolute;
  1647. left:0px;
  1648. top:0px;
  1649. width:220px;
  1650. height:250px;
  1651. background:inherit;
  1652. background-color:rgba(255, 255, 255, 1);
  1653. box-sizing:border-box;
  1654. border-width:1px;
  1655. border-style:solid;
  1656. border-color:rgba(121, 121, 121, 1);
  1657. border-radius:0px;
  1658. -moz-box-shadow:none;
  1659. -webkit-box-shadow:none;
  1660. box-shadow:none;
  1661. }
  1662. #u47404 {
  1663. border-width:0px;
  1664. position:absolute;
  1665. left:349px;
  1666. top:160px;
  1667. width:220px;
  1668. height:250px;
  1669. display:flex;
  1670. }
  1671. #u47404 .text {
  1672. position:absolute;
  1673. align-self:center;
  1674. padding:2px 2px 2px 2px;
  1675. box-sizing:border-box;
  1676. width:100%;
  1677. }
  1678. #u47404_text {
  1679. border-width:0px;
  1680. word-wrap:break-word;
  1681. text-transform:none;
  1682. visibility:hidden;
  1683. }
  1684. #u47405_div {
  1685. border-width:0px;
  1686. position:absolute;
  1687. left:0px;
  1688. top:0px;
  1689. width:220px;
  1690. height:50px;
  1691. background:inherit;
  1692. background-color:rgba(170, 170, 170, 1);
  1693. box-sizing:border-box;
  1694. border-width:1px;
  1695. border-style:solid;
  1696. border-color:rgba(242, 242, 242, 1);
  1697. border-left:0px;
  1698. border-top:0px;
  1699. border-right:0px;
  1700. border-radius:0px;
  1701. border-bottom-right-radius:0px;
  1702. border-bottom-left-radius:0px;
  1703. -moz-box-shadow:none;
  1704. -webkit-box-shadow:none;
  1705. box-shadow:none;
  1706. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1707. font-weight:500;
  1708. font-style:normal;
  1709. font-size:18px;
  1710. }
  1711. #u47405 {
  1712. border-width:0px;
  1713. position:absolute;
  1714. left:349px;
  1715. top:160px;
  1716. width:220px;
  1717. height:50px;
  1718. display:flex;
  1719. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1720. font-weight:500;
  1721. font-style:normal;
  1722. font-size:18px;
  1723. }
  1724. #u47405 .text {
  1725. position:absolute;
  1726. align-self:center;
  1727. padding:0px 0px 0px 20px;
  1728. box-sizing:border-box;
  1729. width:100%;
  1730. }
  1731. #u47405_text {
  1732. border-width:0px;
  1733. word-wrap:break-word;
  1734. text-transform:none;
  1735. }
  1736. #u47406_div {
  1737. border-width:0px;
  1738. position:absolute;
  1739. left:0px;
  1740. top:0px;
  1741. width:75px;
  1742. height:75px;
  1743. background:inherit;
  1744. background-color:rgba(255, 255, 255, 0);
  1745. border:none;
  1746. border-left:0px;
  1747. border-top:0px;
  1748. border-right:0px;
  1749. border-radius:0px;
  1750. border-bottom-right-radius:0px;
  1751. border-bottom-left-radius:0px;
  1752. -moz-box-shadow:none;
  1753. -webkit-box-shadow:none;
  1754. box-shadow:none;
  1755. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1756. font-weight:400;
  1757. font-style:normal;
  1758. font-size:12px;
  1759. line-height:25px;
  1760. }
  1761. #u47406 {
  1762. border-width:0px;
  1763. position:absolute;
  1764. left:465px;
  1765. top:225px;
  1766. width:75px;
  1767. height:75px;
  1768. display:flex;
  1769. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1770. font-weight:400;
  1771. font-style:normal;
  1772. font-size:12px;
  1773. line-height:25px;
  1774. }
  1775. #u47406 .text {
  1776. position:absolute;
  1777. align-self:center;
  1778. padding:0px 0px 0px 0px;
  1779. box-sizing:border-box;
  1780. width:100%;
  1781. }
  1782. #u47406_text {
  1783. border-width:0px;
  1784. white-space:nowrap;
  1785. text-transform:none;
  1786. }
  1787. #u47407_div {
  1788. border-width:0px;
  1789. position:absolute;
  1790. left:0px;
  1791. top:0px;
  1792. width:85px;
  1793. height:25px;
  1794. background:inherit;
  1795. background-color:rgba(255, 255, 255, 0);
  1796. border:none;
  1797. border-left:0px;
  1798. border-top:0px;
  1799. border-right:0px;
  1800. border-radius:0px;
  1801. border-bottom-right-radius:0px;
  1802. border-bottom-left-radius:0px;
  1803. -moz-box-shadow:none;
  1804. -webkit-box-shadow:none;
  1805. box-shadow:none;
  1806. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1807. font-weight:400;
  1808. font-style:normal;
  1809. font-size:12px;
  1810. line-height:25px;
  1811. }
  1812. #u47407 {
  1813. border-width:0px;
  1814. position:absolute;
  1815. left:360px;
  1816. top:314px;
  1817. width:85px;
  1818. height:25px;
  1819. display:flex;
  1820. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1821. font-weight:400;
  1822. font-style:normal;
  1823. font-size:12px;
  1824. line-height:25px;
  1825. }
  1826. #u47407 .text {
  1827. position:absolute;
  1828. align-self:center;
  1829. padding:0px 0px 0px 0px;
  1830. box-sizing:border-box;
  1831. width:100%;
  1832. }
  1833. #u47407_text {
  1834. border-width:0px;
  1835. white-space:nowrap;
  1836. text-transform:none;
  1837. }
  1838. #u47408_div {
  1839. border-width:0px;
  1840. position:absolute;
  1841. left:0px;
  1842. top:0px;
  1843. width:85px;
  1844. height:25px;
  1845. background:inherit;
  1846. background-color:rgba(255, 255, 255, 0);
  1847. border:none;
  1848. border-left:0px;
  1849. border-top:0px;
  1850. border-right:0px;
  1851. border-radius:0px;
  1852. border-bottom-right-radius:0px;
  1853. border-bottom-left-radius:0px;
  1854. -moz-box-shadow:none;
  1855. -webkit-box-shadow:none;
  1856. box-shadow:none;
  1857. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1858. font-weight:400;
  1859. font-style:normal;
  1860. font-size:12px;
  1861. line-height:25px;
  1862. }
  1863. #u47408 {
  1864. border-width:0px;
  1865. position:absolute;
  1866. left:465px;
  1867. top:314px;
  1868. width:85px;
  1869. height:25px;
  1870. display:flex;
  1871. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1872. font-weight:400;
  1873. font-style:normal;
  1874. font-size:12px;
  1875. line-height:25px;
  1876. }
  1877. #u47408 .text {
  1878. position:absolute;
  1879. align-self:center;
  1880. padding:0px 0px 0px 0px;
  1881. box-sizing:border-box;
  1882. width:100%;
  1883. }
  1884. #u47408_text {
  1885. border-width:0px;
  1886. white-space:nowrap;
  1887. text-transform:none;
  1888. }
  1889. #u47409_div {
  1890. border-width:0px;
  1891. position:absolute;
  1892. left:0px;
  1893. top:0px;
  1894. width:85px;
  1895. height:25px;
  1896. background:inherit;
  1897. background-color:rgba(255, 255, 255, 0);
  1898. border:none;
  1899. border-left:0px;
  1900. border-top:0px;
  1901. border-right:0px;
  1902. border-radius:0px;
  1903. border-bottom-right-radius:0px;
  1904. border-bottom-left-radius:0px;
  1905. -moz-box-shadow:none;
  1906. -webkit-box-shadow:none;
  1907. box-shadow:none;
  1908. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1909. font-weight:400;
  1910. font-style:normal;
  1911. font-size:12px;
  1912. line-height:25px;
  1913. }
  1914. #u47409 {
  1915. border-width:0px;
  1916. position:absolute;
  1917. left:360px;
  1918. top:339px;
  1919. width:85px;
  1920. height:25px;
  1921. display:flex;
  1922. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1923. font-weight:400;
  1924. font-style:normal;
  1925. font-size:12px;
  1926. line-height:25px;
  1927. }
  1928. #u47409 .text {
  1929. position:absolute;
  1930. align-self:center;
  1931. padding:0px 0px 0px 0px;
  1932. box-sizing:border-box;
  1933. width:100%;
  1934. }
  1935. #u47409_text {
  1936. border-width:0px;
  1937. white-space:nowrap;
  1938. text-transform:none;
  1939. }
  1940. #u47410_div {
  1941. border-width:0px;
  1942. position:absolute;
  1943. left:0px;
  1944. top:0px;
  1945. width:85px;
  1946. height:25px;
  1947. background:inherit;
  1948. background-color:rgba(255, 255, 255, 0);
  1949. border:none;
  1950. border-left:0px;
  1951. border-top:0px;
  1952. border-right:0px;
  1953. border-radius:0px;
  1954. border-bottom-right-radius:0px;
  1955. border-bottom-left-radius:0px;
  1956. -moz-box-shadow:none;
  1957. -webkit-box-shadow:none;
  1958. box-shadow:none;
  1959. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1960. font-weight:400;
  1961. font-style:normal;
  1962. font-size:12px;
  1963. line-height:25px;
  1964. }
  1965. #u47410 {
  1966. border-width:0px;
  1967. position:absolute;
  1968. left:465px;
  1969. top:339px;
  1970. width:85px;
  1971. height:25px;
  1972. display:flex;
  1973. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1974. font-weight:400;
  1975. font-style:normal;
  1976. font-size:12px;
  1977. line-height:25px;
  1978. }
  1979. #u47410 .text {
  1980. position:absolute;
  1981. align-self:center;
  1982. padding:0px 0px 0px 0px;
  1983. box-sizing:border-box;
  1984. width:100%;
  1985. }
  1986. #u47410_text {
  1987. border-width:0px;
  1988. white-space:nowrap;
  1989. text-transform:none;
  1990. }
  1991. #u47411_img {
  1992. border-width:0px;
  1993. position:absolute;
  1994. left:0px;
  1995. top:0px;
  1996. width:75px;
  1997. height:90px;
  1998. }
  1999. #u47411 {
  2000. border-width:0px;
  2001. position:absolute;
  2002. left:360px;
  2003. top:218px;
  2004. width:75px;
  2005. height:90px;
  2006. display:flex;
  2007. }
  2008. #u47411 .text {
  2009. position:absolute;
  2010. align-self:center;
  2011. padding:2px 2px 2px 2px;
  2012. box-sizing:border-box;
  2013. width:100%;
  2014. }
  2015. #u47411_text {
  2016. border-width:0px;
  2017. word-wrap:break-word;
  2018. text-transform:none;
  2019. visibility:hidden;
  2020. }
  2021. #u47412_img {
  2022. border-width:0px;
  2023. position:absolute;
  2024. left:0px;
  2025. top:0px;
  2026. width:30px;
  2027. height:30px;
  2028. }
  2029. #u47412 {
  2030. border-width:0px;
  2031. position:absolute;
  2032. left:527px;
  2033. top:170px;
  2034. width:30px;
  2035. height:30px;
  2036. display:flex;
  2037. }
  2038. #u47412 .text {
  2039. position:absolute;
  2040. align-self:center;
  2041. padding:2px 2px 2px 2px;
  2042. box-sizing:border-box;
  2043. width:100%;
  2044. }
  2045. #u47412_text {
  2046. border-width:0px;
  2047. word-wrap:break-word;
  2048. text-transform:none;
  2049. visibility:hidden;
  2050. }
  2051. #u47413_div {
  2052. border-width:0px;
  2053. position:absolute;
  2054. left:0px;
  2055. top:0px;
  2056. width:220px;
  2057. height:250px;
  2058. background:inherit;
  2059. background-color:rgba(236, 128, 141, 0.0980392156862745);
  2060. box-sizing:border-box;
  2061. border-width:1px;
  2062. border-style:solid;
  2063. border-color:rgba(236, 128, 141, 1);
  2064. border-radius:0px;
  2065. -moz-box-shadow:none;
  2066. -webkit-box-shadow:none;
  2067. box-shadow:none;
  2068. }
  2069. #u47413 {
  2070. border-width:0px;
  2071. position:absolute;
  2072. left:595px;
  2073. top:160px;
  2074. width:220px;
  2075. height:250px;
  2076. display:flex;
  2077. }
  2078. #u47413 .text {
  2079. position:absolute;
  2080. align-self:center;
  2081. padding:2px 2px 2px 2px;
  2082. box-sizing:border-box;
  2083. width:100%;
  2084. }
  2085. #u47413_text {
  2086. border-width:0px;
  2087. word-wrap:break-word;
  2088. text-transform:none;
  2089. visibility:hidden;
  2090. }
  2091. #u47414_div {
  2092. border-width:0px;
  2093. position:absolute;
  2094. left:0px;
  2095. top:0px;
  2096. width:220px;
  2097. height:50px;
  2098. background:inherit;
  2099. background-color:rgba(236, 128, 141, 1);
  2100. box-sizing:border-box;
  2101. border-width:1px;
  2102. border-style:solid;
  2103. border-color:rgba(236, 128, 141, 1);
  2104. border-left:0px;
  2105. border-top:0px;
  2106. border-right:0px;
  2107. border-radius:0px;
  2108. border-bottom-right-radius:0px;
  2109. border-bottom-left-radius:0px;
  2110. -moz-box-shadow:none;
  2111. -webkit-box-shadow:none;
  2112. box-shadow:none;
  2113. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2114. font-weight:500;
  2115. font-style:normal;
  2116. font-size:18px;
  2117. }
  2118. #u47414 {
  2119. border-width:0px;
  2120. position:absolute;
  2121. left:595px;
  2122. top:160px;
  2123. width:220px;
  2124. height:50px;
  2125. display:flex;
  2126. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2127. font-weight:500;
  2128. font-style:normal;
  2129. font-size:18px;
  2130. }
  2131. #u47414 .text {
  2132. position:absolute;
  2133. align-self:center;
  2134. padding:0px 0px 0px 20px;
  2135. box-sizing:border-box;
  2136. width:100%;
  2137. }
  2138. #u47414_text {
  2139. border-width:0px;
  2140. word-wrap:break-word;
  2141. text-transform:none;
  2142. }
  2143. #u47415_div {
  2144. border-width:0px;
  2145. position:absolute;
  2146. left:0px;
  2147. top:0px;
  2148. width:75px;
  2149. height:75px;
  2150. background:inherit;
  2151. background-color:rgba(255, 255, 255, 0);
  2152. border:none;
  2153. border-left:0px;
  2154. border-top:0px;
  2155. border-right:0px;
  2156. border-radius:0px;
  2157. border-bottom-right-radius:0px;
  2158. border-bottom-left-radius:0px;
  2159. -moz-box-shadow:none;
  2160. -webkit-box-shadow:none;
  2161. box-shadow:none;
  2162. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2163. font-weight:400;
  2164. font-style:normal;
  2165. font-size:12px;
  2166. line-height:25px;
  2167. }
  2168. #u47415 {
  2169. border-width:0px;
  2170. position:absolute;
  2171. left:711px;
  2172. top:225px;
  2173. width:75px;
  2174. height:75px;
  2175. display:flex;
  2176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2177. font-weight:400;
  2178. font-style:normal;
  2179. font-size:12px;
  2180. line-height:25px;
  2181. }
  2182. #u47415 .text {
  2183. position:absolute;
  2184. align-self:center;
  2185. padding:0px 0px 0px 0px;
  2186. box-sizing:border-box;
  2187. width:100%;
  2188. }
  2189. #u47415_text {
  2190. border-width:0px;
  2191. white-space:nowrap;
  2192. text-transform:none;
  2193. }
  2194. #u47416_div {
  2195. border-width:0px;
  2196. position:absolute;
  2197. left:0px;
  2198. top:0px;
  2199. width:85px;
  2200. height:25px;
  2201. background:inherit;
  2202. background-color:rgba(255, 255, 255, 0);
  2203. border:none;
  2204. border-left:0px;
  2205. border-top:0px;
  2206. border-right:0px;
  2207. border-radius:0px;
  2208. border-bottom-right-radius:0px;
  2209. border-bottom-left-radius:0px;
  2210. -moz-box-shadow:none;
  2211. -webkit-box-shadow:none;
  2212. box-shadow:none;
  2213. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2214. font-weight:400;
  2215. font-style:normal;
  2216. font-size:12px;
  2217. line-height:25px;
  2218. }
  2219. #u47416 {
  2220. border-width:0px;
  2221. position:absolute;
  2222. left:606px;
  2223. top:314px;
  2224. width:85px;
  2225. height:25px;
  2226. display:flex;
  2227. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2228. font-weight:400;
  2229. font-style:normal;
  2230. font-size:12px;
  2231. line-height:25px;
  2232. }
  2233. #u47416 .text {
  2234. position:absolute;
  2235. align-self:center;
  2236. padding:0px 0px 0px 0px;
  2237. box-sizing:border-box;
  2238. width:100%;
  2239. }
  2240. #u47416_text {
  2241. border-width:0px;
  2242. white-space:nowrap;
  2243. text-transform:none;
  2244. }
  2245. #u47417_div {
  2246. border-width:0px;
  2247. position:absolute;
  2248. left:0px;
  2249. top:0px;
  2250. width:85px;
  2251. height:25px;
  2252. background:inherit;
  2253. background-color:rgba(255, 255, 255, 0);
  2254. border:none;
  2255. border-left:0px;
  2256. border-top:0px;
  2257. border-right:0px;
  2258. border-radius:0px;
  2259. border-bottom-right-radius:0px;
  2260. border-bottom-left-radius:0px;
  2261. -moz-box-shadow:none;
  2262. -webkit-box-shadow:none;
  2263. box-shadow:none;
  2264. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2265. font-weight:400;
  2266. font-style:normal;
  2267. font-size:12px;
  2268. line-height:25px;
  2269. }
  2270. #u47417 {
  2271. border-width:0px;
  2272. position:absolute;
  2273. left:711px;
  2274. top:314px;
  2275. width:85px;
  2276. height:25px;
  2277. display:flex;
  2278. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2279. font-weight:400;
  2280. font-style:normal;
  2281. font-size:12px;
  2282. line-height:25px;
  2283. }
  2284. #u47417 .text {
  2285. position:absolute;
  2286. align-self:center;
  2287. padding:0px 0px 0px 0px;
  2288. box-sizing:border-box;
  2289. width:100%;
  2290. }
  2291. #u47417_text {
  2292. border-width:0px;
  2293. white-space:nowrap;
  2294. text-transform:none;
  2295. }
  2296. #u47418_div {
  2297. border-width:0px;
  2298. position:absolute;
  2299. left:0px;
  2300. top:0px;
  2301. width:85px;
  2302. height:25px;
  2303. background:inherit;
  2304. background-color:rgba(255, 255, 255, 0);
  2305. border:none;
  2306. border-left:0px;
  2307. border-top:0px;
  2308. border-right:0px;
  2309. border-radius:0px;
  2310. border-bottom-right-radius:0px;
  2311. border-bottom-left-radius:0px;
  2312. -moz-box-shadow:none;
  2313. -webkit-box-shadow:none;
  2314. box-shadow:none;
  2315. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2316. font-weight:400;
  2317. font-style:normal;
  2318. font-size:12px;
  2319. line-height:25px;
  2320. }
  2321. #u47418 {
  2322. border-width:0px;
  2323. position:absolute;
  2324. left:606px;
  2325. top:339px;
  2326. width:85px;
  2327. height:25px;
  2328. display:flex;
  2329. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2330. font-weight:400;
  2331. font-style:normal;
  2332. font-size:12px;
  2333. line-height:25px;
  2334. }
  2335. #u47418 .text {
  2336. position:absolute;
  2337. align-self:center;
  2338. padding:0px 0px 0px 0px;
  2339. box-sizing:border-box;
  2340. width:100%;
  2341. }
  2342. #u47418_text {
  2343. border-width:0px;
  2344. white-space:nowrap;
  2345. text-transform:none;
  2346. }
  2347. #u47419_div {
  2348. border-width:0px;
  2349. position:absolute;
  2350. left:0px;
  2351. top:0px;
  2352. width:85px;
  2353. height:25px;
  2354. background:inherit;
  2355. background-color:rgba(255, 255, 255, 0);
  2356. border:none;
  2357. border-left:0px;
  2358. border-top:0px;
  2359. border-right:0px;
  2360. border-radius:0px;
  2361. border-bottom-right-radius:0px;
  2362. border-bottom-left-radius:0px;
  2363. -moz-box-shadow:none;
  2364. -webkit-box-shadow:none;
  2365. box-shadow:none;
  2366. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2367. font-weight:400;
  2368. font-style:normal;
  2369. font-size:12px;
  2370. line-height:25px;
  2371. }
  2372. #u47419 {
  2373. border-width:0px;
  2374. position:absolute;
  2375. left:711px;
  2376. top:339px;
  2377. width:85px;
  2378. height:25px;
  2379. display:flex;
  2380. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2381. font-weight:400;
  2382. font-style:normal;
  2383. font-size:12px;
  2384. line-height:25px;
  2385. }
  2386. #u47419 .text {
  2387. position:absolute;
  2388. align-self:center;
  2389. padding:0px 0px 0px 0px;
  2390. box-sizing:border-box;
  2391. width:100%;
  2392. }
  2393. #u47419_text {
  2394. border-width:0px;
  2395. white-space:nowrap;
  2396. text-transform:none;
  2397. }
  2398. #u47420_img {
  2399. border-width:0px;
  2400. position:absolute;
  2401. left:0px;
  2402. top:0px;
  2403. width:75px;
  2404. height:90px;
  2405. }
  2406. #u47420 {
  2407. border-width:0px;
  2408. position:absolute;
  2409. left:606px;
  2410. top:218px;
  2411. width:75px;
  2412. height:90px;
  2413. display:flex;
  2414. }
  2415. #u47420 .text {
  2416. position:absolute;
  2417. align-self:center;
  2418. padding:2px 2px 2px 2px;
  2419. box-sizing:border-box;
  2420. width:100%;
  2421. }
  2422. #u47420_text {
  2423. border-width:0px;
  2424. word-wrap:break-word;
  2425. text-transform:none;
  2426. visibility:hidden;
  2427. }
  2428. #u47421_img {
  2429. border-width:0px;
  2430. position:absolute;
  2431. left:0px;
  2432. top:0px;
  2433. width:30px;
  2434. height:30px;
  2435. }
  2436. #u47421 {
  2437. border-width:0px;
  2438. position:absolute;
  2439. left:775px;
  2440. top:169px;
  2441. width:30px;
  2442. height:30px;
  2443. display:flex;
  2444. }
  2445. #u47421 .text {
  2446. position:absolute;
  2447. align-self:center;
  2448. padding:2px 2px 2px 2px;
  2449. box-sizing:border-box;
  2450. width:100%;
  2451. }
  2452. #u47421_text {
  2453. border-width:0px;
  2454. word-wrap:break-word;
  2455. text-transform:none;
  2456. visibility:hidden;
  2457. }
  2458. #u47422_div {
  2459. border-width:0px;
  2460. position:absolute;
  2461. left:0px;
  2462. top:0px;
  2463. width:220px;
  2464. height:250px;
  2465. background:inherit;
  2466. background-color:rgba(255, 255, 255, 1);
  2467. box-sizing:border-box;
  2468. border-width:1px;
  2469. border-style:solid;
  2470. border-color:rgba(121, 121, 121, 1);
  2471. border-radius:0px;
  2472. -moz-box-shadow:none;
  2473. -webkit-box-shadow:none;
  2474. box-shadow:none;
  2475. }
  2476. #u47422 {
  2477. border-width:0px;
  2478. position:absolute;
  2479. left:840px;
  2480. top:160px;
  2481. width:220px;
  2482. height:250px;
  2483. display:flex;
  2484. }
  2485. #u47422 .text {
  2486. position:absolute;
  2487. align-self:center;
  2488. padding:2px 2px 2px 2px;
  2489. box-sizing:border-box;
  2490. width:100%;
  2491. }
  2492. #u47422_text {
  2493. border-width:0px;
  2494. word-wrap:break-word;
  2495. text-transform:none;
  2496. visibility:hidden;
  2497. }
  2498. #u47423_div {
  2499. border-width:0px;
  2500. position:absolute;
  2501. left:0px;
  2502. top:0px;
  2503. width:220px;
  2504. height:50px;
  2505. background:inherit;
  2506. background-color:rgba(170, 170, 170, 1);
  2507. box-sizing:border-box;
  2508. border-width:1px;
  2509. border-style:solid;
  2510. border-color:rgba(242, 242, 242, 1);
  2511. border-left:0px;
  2512. border-top:0px;
  2513. border-right:0px;
  2514. border-radius:0px;
  2515. border-bottom-right-radius:0px;
  2516. border-bottom-left-radius:0px;
  2517. -moz-box-shadow:none;
  2518. -webkit-box-shadow:none;
  2519. box-shadow:none;
  2520. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2521. font-weight:500;
  2522. font-style:normal;
  2523. font-size:18px;
  2524. }
  2525. #u47423 {
  2526. border-width:0px;
  2527. position:absolute;
  2528. left:840px;
  2529. top:160px;
  2530. width:220px;
  2531. height:50px;
  2532. display:flex;
  2533. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2534. font-weight:500;
  2535. font-style:normal;
  2536. font-size:18px;
  2537. }
  2538. #u47423 .text {
  2539. position:absolute;
  2540. align-self:center;
  2541. padding:0px 0px 0px 20px;
  2542. box-sizing:border-box;
  2543. width:100%;
  2544. }
  2545. #u47423_text {
  2546. border-width:0px;
  2547. word-wrap:break-word;
  2548. text-transform:none;
  2549. }
  2550. #u47424_div {
  2551. border-width:0px;
  2552. position:absolute;
  2553. left:0px;
  2554. top:0px;
  2555. width:80px;
  2556. height:75px;
  2557. background:inherit;
  2558. background-color:rgba(255, 255, 255, 0);
  2559. border:none;
  2560. border-left:0px;
  2561. border-top:0px;
  2562. border-right:0px;
  2563. border-radius:0px;
  2564. border-bottom-right-radius:0px;
  2565. border-bottom-left-radius:0px;
  2566. -moz-box-shadow:none;
  2567. -webkit-box-shadow:none;
  2568. box-shadow:none;
  2569. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2570. font-weight:400;
  2571. font-style:normal;
  2572. font-size:12px;
  2573. line-height:25px;
  2574. }
  2575. #u47424 {
  2576. border-width:0px;
  2577. position:absolute;
  2578. left:956px;
  2579. top:225px;
  2580. width:80px;
  2581. height:75px;
  2582. display:flex;
  2583. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2584. font-weight:400;
  2585. font-style:normal;
  2586. font-size:12px;
  2587. line-height:25px;
  2588. }
  2589. #u47424 .text {
  2590. position:absolute;
  2591. align-self:center;
  2592. padding:0px 0px 0px 0px;
  2593. box-sizing:border-box;
  2594. width:100%;
  2595. }
  2596. #u47424_text {
  2597. border-width:0px;
  2598. white-space:nowrap;
  2599. text-transform:none;
  2600. }
  2601. #u47425_div {
  2602. border-width:0px;
  2603. position:absolute;
  2604. left:0px;
  2605. top:0px;
  2606. width:85px;
  2607. height:25px;
  2608. background:inherit;
  2609. background-color:rgba(255, 255, 255, 0);
  2610. border:none;
  2611. border-left:0px;
  2612. border-top:0px;
  2613. border-right:0px;
  2614. border-radius:0px;
  2615. border-bottom-right-radius:0px;
  2616. border-bottom-left-radius:0px;
  2617. -moz-box-shadow:none;
  2618. -webkit-box-shadow:none;
  2619. box-shadow:none;
  2620. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2621. font-weight:400;
  2622. font-style:normal;
  2623. font-size:12px;
  2624. line-height:25px;
  2625. }
  2626. #u47425 {
  2627. border-width:0px;
  2628. position:absolute;
  2629. left:851px;
  2630. top:314px;
  2631. width:85px;
  2632. height:25px;
  2633. display:flex;
  2634. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2635. font-weight:400;
  2636. font-style:normal;
  2637. font-size:12px;
  2638. line-height:25px;
  2639. }
  2640. #u47425 .text {
  2641. position:absolute;
  2642. align-self:center;
  2643. padding:0px 0px 0px 0px;
  2644. box-sizing:border-box;
  2645. width:100%;
  2646. }
  2647. #u47425_text {
  2648. border-width:0px;
  2649. white-space:nowrap;
  2650. text-transform:none;
  2651. }
  2652. #u47426_div {
  2653. border-width:0px;
  2654. position:absolute;
  2655. left:0px;
  2656. top:0px;
  2657. width:85px;
  2658. height:25px;
  2659. background:inherit;
  2660. background-color:rgba(255, 255, 255, 0);
  2661. border:none;
  2662. border-left:0px;
  2663. border-top:0px;
  2664. border-right:0px;
  2665. border-radius:0px;
  2666. border-bottom-right-radius:0px;
  2667. border-bottom-left-radius:0px;
  2668. -moz-box-shadow:none;
  2669. -webkit-box-shadow:none;
  2670. box-shadow:none;
  2671. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2672. font-weight:400;
  2673. font-style:normal;
  2674. font-size:12px;
  2675. line-height:25px;
  2676. }
  2677. #u47426 {
  2678. border-width:0px;
  2679. position:absolute;
  2680. left:956px;
  2681. top:314px;
  2682. width:85px;
  2683. height:25px;
  2684. display:flex;
  2685. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2686. font-weight:400;
  2687. font-style:normal;
  2688. font-size:12px;
  2689. line-height:25px;
  2690. }
  2691. #u47426 .text {
  2692. position:absolute;
  2693. align-self:center;
  2694. padding:0px 0px 0px 0px;
  2695. box-sizing:border-box;
  2696. width:100%;
  2697. }
  2698. #u47426_text {
  2699. border-width:0px;
  2700. white-space:nowrap;
  2701. text-transform:none;
  2702. }
  2703. #u47427_div {
  2704. border-width:0px;
  2705. position:absolute;
  2706. left:0px;
  2707. top:0px;
  2708. width:85px;
  2709. height:25px;
  2710. background:inherit;
  2711. background-color:rgba(255, 255, 255, 0);
  2712. border:none;
  2713. border-left:0px;
  2714. border-top:0px;
  2715. border-right:0px;
  2716. border-radius:0px;
  2717. border-bottom-right-radius:0px;
  2718. border-bottom-left-radius:0px;
  2719. -moz-box-shadow:none;
  2720. -webkit-box-shadow:none;
  2721. box-shadow:none;
  2722. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2723. font-weight:400;
  2724. font-style:normal;
  2725. font-size:12px;
  2726. line-height:25px;
  2727. }
  2728. #u47427 {
  2729. border-width:0px;
  2730. position:absolute;
  2731. left:851px;
  2732. top:339px;
  2733. width:85px;
  2734. height:25px;
  2735. display:flex;
  2736. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2737. font-weight:400;
  2738. font-style:normal;
  2739. font-size:12px;
  2740. line-height:25px;
  2741. }
  2742. #u47427 .text {
  2743. position:absolute;
  2744. align-self:center;
  2745. padding:0px 0px 0px 0px;
  2746. box-sizing:border-box;
  2747. width:100%;
  2748. }
  2749. #u47427_text {
  2750. border-width:0px;
  2751. white-space:nowrap;
  2752. text-transform:none;
  2753. }
  2754. #u47428_div {
  2755. border-width:0px;
  2756. position:absolute;
  2757. left:0px;
  2758. top:0px;
  2759. width:85px;
  2760. height:25px;
  2761. background:inherit;
  2762. background-color:rgba(255, 255, 255, 0);
  2763. border:none;
  2764. border-left:0px;
  2765. border-top:0px;
  2766. border-right:0px;
  2767. border-radius:0px;
  2768. border-bottom-right-radius:0px;
  2769. border-bottom-left-radius:0px;
  2770. -moz-box-shadow:none;
  2771. -webkit-box-shadow:none;
  2772. box-shadow:none;
  2773. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2774. font-weight:400;
  2775. font-style:normal;
  2776. font-size:12px;
  2777. line-height:25px;
  2778. }
  2779. #u47428 {
  2780. border-width:0px;
  2781. position:absolute;
  2782. left:956px;
  2783. top:339px;
  2784. width:85px;
  2785. height:25px;
  2786. display:flex;
  2787. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2788. font-weight:400;
  2789. font-style:normal;
  2790. font-size:12px;
  2791. line-height:25px;
  2792. }
  2793. #u47428 .text {
  2794. position:absolute;
  2795. align-self:center;
  2796. padding:0px 0px 0px 0px;
  2797. box-sizing:border-box;
  2798. width:100%;
  2799. }
  2800. #u47428_text {
  2801. border-width:0px;
  2802. white-space:nowrap;
  2803. text-transform:none;
  2804. }
  2805. #u47429_img {
  2806. border-width:0px;
  2807. position:absolute;
  2808. left:0px;
  2809. top:0px;
  2810. width:75px;
  2811. height:90px;
  2812. }
  2813. #u47429 {
  2814. border-width:0px;
  2815. position:absolute;
  2816. left:851px;
  2817. top:218px;
  2818. width:75px;
  2819. height:90px;
  2820. display:flex;
  2821. }
  2822. #u47429 .text {
  2823. position:absolute;
  2824. align-self:center;
  2825. padding:2px 2px 2px 2px;
  2826. box-sizing:border-box;
  2827. width:100%;
  2828. }
  2829. #u47429_text {
  2830. border-width:0px;
  2831. word-wrap:break-word;
  2832. text-transform:none;
  2833. visibility:hidden;
  2834. }
  2835. #u47430_img {
  2836. border-width:0px;
  2837. position:absolute;
  2838. left:0px;
  2839. top:0px;
  2840. width:30px;
  2841. height:30px;
  2842. }
  2843. #u47430 {
  2844. border-width:0px;
  2845. position:absolute;
  2846. left:1015px;
  2847. top:170px;
  2848. width:30px;
  2849. height:30px;
  2850. display:flex;
  2851. }
  2852. #u47430 .text {
  2853. position:absolute;
  2854. align-self:center;
  2855. padding:2px 2px 2px 2px;
  2856. box-sizing:border-box;
  2857. width:100%;
  2858. }
  2859. #u47430_text {
  2860. border-width:0px;
  2861. word-wrap:break-word;
  2862. text-transform:none;
  2863. visibility:hidden;
  2864. }
  2865. #u47431_div {
  2866. border-width:0px;
  2867. position:absolute;
  2868. left:0px;
  2869. top:0px;
  2870. width:220px;
  2871. height:250px;
  2872. background:inherit;
  2873. background-color:rgba(255, 255, 255, 1);
  2874. box-sizing:border-box;
  2875. border-width:1px;
  2876. border-style:solid;
  2877. border-color:rgba(121, 121, 121, 1);
  2878. border-radius:0px;
  2879. -moz-box-shadow:none;
  2880. -webkit-box-shadow:none;
  2881. box-shadow:none;
  2882. }
  2883. #u47431 {
  2884. border-width:0px;
  2885. position:absolute;
  2886. left:1086px;
  2887. top:160px;
  2888. width:220px;
  2889. height:250px;
  2890. display:flex;
  2891. }
  2892. #u47431 .text {
  2893. position:absolute;
  2894. align-self:center;
  2895. padding:2px 2px 2px 2px;
  2896. box-sizing:border-box;
  2897. width:100%;
  2898. }
  2899. #u47431_text {
  2900. border-width:0px;
  2901. word-wrap:break-word;
  2902. text-transform:none;
  2903. visibility:hidden;
  2904. }
  2905. #u47432_div {
  2906. border-width:0px;
  2907. position:absolute;
  2908. left:0px;
  2909. top:0px;
  2910. width:220px;
  2911. height:50px;
  2912. background:inherit;
  2913. background-color:rgba(170, 170, 170, 1);
  2914. box-sizing:border-box;
  2915. border-width:1px;
  2916. border-style:solid;
  2917. border-color:rgba(242, 242, 242, 1);
  2918. border-left:0px;
  2919. border-top:0px;
  2920. border-right:0px;
  2921. border-radius:0px;
  2922. border-bottom-right-radius:0px;
  2923. border-bottom-left-radius:0px;
  2924. -moz-box-shadow:none;
  2925. -webkit-box-shadow:none;
  2926. box-shadow:none;
  2927. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2928. font-weight:500;
  2929. font-style:normal;
  2930. font-size:18px;
  2931. }
  2932. #u47432 {
  2933. border-width:0px;
  2934. position:absolute;
  2935. left:1086px;
  2936. top:160px;
  2937. width:220px;
  2938. height:50px;
  2939. display:flex;
  2940. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2941. font-weight:500;
  2942. font-style:normal;
  2943. font-size:18px;
  2944. }
  2945. #u47432 .text {
  2946. position:absolute;
  2947. align-self:center;
  2948. padding:0px 0px 0px 20px;
  2949. box-sizing:border-box;
  2950. width:100%;
  2951. }
  2952. #u47432_text {
  2953. border-width:0px;
  2954. word-wrap:break-word;
  2955. text-transform:none;
  2956. }
  2957. #u47433_div {
  2958. border-width:0px;
  2959. position:absolute;
  2960. left:0px;
  2961. top:0px;
  2962. width:80px;
  2963. height:75px;
  2964. background:inherit;
  2965. background-color:rgba(255, 255, 255, 0);
  2966. border:none;
  2967. border-left:0px;
  2968. border-top:0px;
  2969. border-right:0px;
  2970. border-radius:0px;
  2971. border-bottom-right-radius:0px;
  2972. border-bottom-left-radius:0px;
  2973. -moz-box-shadow:none;
  2974. -webkit-box-shadow:none;
  2975. box-shadow:none;
  2976. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2977. font-weight:400;
  2978. font-style:normal;
  2979. font-size:12px;
  2980. line-height:25px;
  2981. }
  2982. #u47433 {
  2983. border-width:0px;
  2984. position:absolute;
  2985. left:1202px;
  2986. top:225px;
  2987. width:80px;
  2988. height:75px;
  2989. display:flex;
  2990. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2991. font-weight:400;
  2992. font-style:normal;
  2993. font-size:12px;
  2994. line-height:25px;
  2995. }
  2996. #u47433 .text {
  2997. position:absolute;
  2998. align-self:center;
  2999. padding:0px 0px 0px 0px;
  3000. box-sizing:border-box;
  3001. width:100%;
  3002. }
  3003. #u47433_text {
  3004. border-width:0px;
  3005. white-space:nowrap;
  3006. text-transform:none;
  3007. }
  3008. #u47434_div {
  3009. border-width:0px;
  3010. position:absolute;
  3011. left:0px;
  3012. top:0px;
  3013. width:85px;
  3014. height:25px;
  3015. background:inherit;
  3016. background-color:rgba(255, 255, 255, 0);
  3017. border:none;
  3018. border-left:0px;
  3019. border-top:0px;
  3020. border-right:0px;
  3021. border-radius:0px;
  3022. border-bottom-right-radius:0px;
  3023. border-bottom-left-radius:0px;
  3024. -moz-box-shadow:none;
  3025. -webkit-box-shadow:none;
  3026. box-shadow:none;
  3027. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3028. font-weight:400;
  3029. font-style:normal;
  3030. font-size:12px;
  3031. line-height:25px;
  3032. }
  3033. #u47434 {
  3034. border-width:0px;
  3035. position:absolute;
  3036. left:1097px;
  3037. top:314px;
  3038. width:85px;
  3039. height:25px;
  3040. display:flex;
  3041. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3042. font-weight:400;
  3043. font-style:normal;
  3044. font-size:12px;
  3045. line-height:25px;
  3046. }
  3047. #u47434 .text {
  3048. position:absolute;
  3049. align-self:center;
  3050. padding:0px 0px 0px 0px;
  3051. box-sizing:border-box;
  3052. width:100%;
  3053. }
  3054. #u47434_text {
  3055. border-width:0px;
  3056. white-space:nowrap;
  3057. text-transform:none;
  3058. }
  3059. #u47435_div {
  3060. border-width:0px;
  3061. position:absolute;
  3062. left:0px;
  3063. top:0px;
  3064. width:85px;
  3065. height:25px;
  3066. background:inherit;
  3067. background-color:rgba(255, 255, 255, 0);
  3068. border:none;
  3069. border-left:0px;
  3070. border-top:0px;
  3071. border-right:0px;
  3072. border-radius:0px;
  3073. border-bottom-right-radius:0px;
  3074. border-bottom-left-radius:0px;
  3075. -moz-box-shadow:none;
  3076. -webkit-box-shadow:none;
  3077. box-shadow:none;
  3078. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3079. font-weight:400;
  3080. font-style:normal;
  3081. font-size:12px;
  3082. line-height:25px;
  3083. }
  3084. #u47435 {
  3085. border-width:0px;
  3086. position:absolute;
  3087. left:1202px;
  3088. top:314px;
  3089. width:85px;
  3090. height:25px;
  3091. display:flex;
  3092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3093. font-weight:400;
  3094. font-style:normal;
  3095. font-size:12px;
  3096. line-height:25px;
  3097. }
  3098. #u47435 .text {
  3099. position:absolute;
  3100. align-self:center;
  3101. padding:0px 0px 0px 0px;
  3102. box-sizing:border-box;
  3103. width:100%;
  3104. }
  3105. #u47435_text {
  3106. border-width:0px;
  3107. white-space:nowrap;
  3108. text-transform:none;
  3109. }
  3110. #u47436_div {
  3111. border-width:0px;
  3112. position:absolute;
  3113. left:0px;
  3114. top:0px;
  3115. width:85px;
  3116. height:25px;
  3117. background:inherit;
  3118. background-color:rgba(255, 255, 255, 0);
  3119. border:none;
  3120. border-left:0px;
  3121. border-top:0px;
  3122. border-right:0px;
  3123. border-radius:0px;
  3124. border-bottom-right-radius:0px;
  3125. border-bottom-left-radius:0px;
  3126. -moz-box-shadow:none;
  3127. -webkit-box-shadow:none;
  3128. box-shadow:none;
  3129. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3130. font-weight:400;
  3131. font-style:normal;
  3132. font-size:12px;
  3133. line-height:25px;
  3134. }
  3135. #u47436 {
  3136. border-width:0px;
  3137. position:absolute;
  3138. left:1097px;
  3139. top:339px;
  3140. width:85px;
  3141. height:25px;
  3142. display:flex;
  3143. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3144. font-weight:400;
  3145. font-style:normal;
  3146. font-size:12px;
  3147. line-height:25px;
  3148. }
  3149. #u47436 .text {
  3150. position:absolute;
  3151. align-self:center;
  3152. padding:0px 0px 0px 0px;
  3153. box-sizing:border-box;
  3154. width:100%;
  3155. }
  3156. #u47436_text {
  3157. border-width:0px;
  3158. white-space:nowrap;
  3159. text-transform:none;
  3160. }
  3161. #u47437_div {
  3162. border-width:0px;
  3163. position:absolute;
  3164. left:0px;
  3165. top:0px;
  3166. width:85px;
  3167. height:25px;
  3168. background:inherit;
  3169. background-color:rgba(255, 255, 255, 0);
  3170. border:none;
  3171. border-left:0px;
  3172. border-top:0px;
  3173. border-right:0px;
  3174. border-radius:0px;
  3175. border-bottom-right-radius:0px;
  3176. border-bottom-left-radius:0px;
  3177. -moz-box-shadow:none;
  3178. -webkit-box-shadow:none;
  3179. box-shadow:none;
  3180. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3181. font-weight:400;
  3182. font-style:normal;
  3183. font-size:12px;
  3184. line-height:25px;
  3185. }
  3186. #u47437 {
  3187. border-width:0px;
  3188. position:absolute;
  3189. left:1202px;
  3190. top:339px;
  3191. width:85px;
  3192. height:25px;
  3193. display:flex;
  3194. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3195. font-weight:400;
  3196. font-style:normal;
  3197. font-size:12px;
  3198. line-height:25px;
  3199. }
  3200. #u47437 .text {
  3201. position:absolute;
  3202. align-self:center;
  3203. padding:0px 0px 0px 0px;
  3204. box-sizing:border-box;
  3205. width:100%;
  3206. }
  3207. #u47437_text {
  3208. border-width:0px;
  3209. white-space:nowrap;
  3210. text-transform:none;
  3211. }
  3212. #u47438_img {
  3213. border-width:0px;
  3214. position:absolute;
  3215. left:0px;
  3216. top:0px;
  3217. width:75px;
  3218. height:90px;
  3219. }
  3220. #u47438 {
  3221. border-width:0px;
  3222. position:absolute;
  3223. left:1097px;
  3224. top:218px;
  3225. width:75px;
  3226. height:90px;
  3227. display:flex;
  3228. }
  3229. #u47438 .text {
  3230. position:absolute;
  3231. align-self:center;
  3232. padding:2px 2px 2px 2px;
  3233. box-sizing:border-box;
  3234. width:100%;
  3235. }
  3236. #u47438_text {
  3237. border-width:0px;
  3238. word-wrap:break-word;
  3239. text-transform:none;
  3240. visibility:hidden;
  3241. }
  3242. #u47439_img {
  3243. border-width:0px;
  3244. position:absolute;
  3245. left:0px;
  3246. top:0px;
  3247. width:30px;
  3248. height:30px;
  3249. }
  3250. #u47439 {
  3251. border-width:0px;
  3252. position:absolute;
  3253. left:1261px;
  3254. top:170px;
  3255. width:30px;
  3256. height:30px;
  3257. display:flex;
  3258. }
  3259. #u47439 .text {
  3260. position:absolute;
  3261. align-self:center;
  3262. padding:2px 2px 2px 2px;
  3263. box-sizing:border-box;
  3264. width:100%;
  3265. }
  3266. #u47439_text {
  3267. border-width:0px;
  3268. word-wrap:break-word;
  3269. text-transform:none;
  3270. visibility:hidden;
  3271. }
  3272. #u47440_div {
  3273. border-width:0px;
  3274. position:absolute;
  3275. left:0px;
  3276. top:0px;
  3277. width:220px;
  3278. height:250px;
  3279. background:inherit;
  3280. background-color:rgba(255, 255, 255, 1);
  3281. box-sizing:border-box;
  3282. border-width:1px;
  3283. border-style:solid;
  3284. border-color:rgba(121, 121, 121, 1);
  3285. border-radius:0px;
  3286. -moz-box-shadow:none;
  3287. -webkit-box-shadow:none;
  3288. box-shadow:none;
  3289. }
  3290. #u47440 {
  3291. border-width:0px;
  3292. position:absolute;
  3293. left:1331px;
  3294. top:160px;
  3295. width:220px;
  3296. height:250px;
  3297. display:flex;
  3298. }
  3299. #u47440 .text {
  3300. position:absolute;
  3301. align-self:center;
  3302. padding:2px 2px 2px 2px;
  3303. box-sizing:border-box;
  3304. width:100%;
  3305. }
  3306. #u47440_text {
  3307. border-width:0px;
  3308. word-wrap:break-word;
  3309. text-transform:none;
  3310. visibility:hidden;
  3311. }
  3312. #u47441_div {
  3313. border-width:0px;
  3314. position:absolute;
  3315. left:0px;
  3316. top:0px;
  3317. width:220px;
  3318. height:50px;
  3319. background:inherit;
  3320. background-color:rgba(170, 170, 170, 1);
  3321. box-sizing:border-box;
  3322. border-width:1px;
  3323. border-style:solid;
  3324. border-color:rgba(242, 242, 242, 1);
  3325. border-left:0px;
  3326. border-top:0px;
  3327. border-right:0px;
  3328. border-radius:0px;
  3329. border-bottom-right-radius:0px;
  3330. border-bottom-left-radius:0px;
  3331. -moz-box-shadow:none;
  3332. -webkit-box-shadow:none;
  3333. box-shadow:none;
  3334. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3335. font-weight:500;
  3336. font-style:normal;
  3337. font-size:18px;
  3338. }
  3339. #u47441 {
  3340. border-width:0px;
  3341. position:absolute;
  3342. left:1331px;
  3343. top:160px;
  3344. width:220px;
  3345. height:50px;
  3346. display:flex;
  3347. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3348. font-weight:500;
  3349. font-style:normal;
  3350. font-size:18px;
  3351. }
  3352. #u47441 .text {
  3353. position:absolute;
  3354. align-self:center;
  3355. padding:0px 0px 0px 20px;
  3356. box-sizing:border-box;
  3357. width:100%;
  3358. }
  3359. #u47441_text {
  3360. border-width:0px;
  3361. word-wrap:break-word;
  3362. text-transform:none;
  3363. }
  3364. #u47442_div {
  3365. border-width:0px;
  3366. position:absolute;
  3367. left:0px;
  3368. top:0px;
  3369. width:80px;
  3370. height:75px;
  3371. background:inherit;
  3372. background-color:rgba(255, 255, 255, 0);
  3373. border:none;
  3374. border-left:0px;
  3375. border-top:0px;
  3376. border-right:0px;
  3377. border-radius:0px;
  3378. border-bottom-right-radius:0px;
  3379. border-bottom-left-radius:0px;
  3380. -moz-box-shadow:none;
  3381. -webkit-box-shadow:none;
  3382. box-shadow:none;
  3383. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3384. font-weight:400;
  3385. font-style:normal;
  3386. font-size:12px;
  3387. line-height:25px;
  3388. }
  3389. #u47442 {
  3390. border-width:0px;
  3391. position:absolute;
  3392. left:1447px;
  3393. top:225px;
  3394. width:80px;
  3395. height:75px;
  3396. display:flex;
  3397. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3398. font-weight:400;
  3399. font-style:normal;
  3400. font-size:12px;
  3401. line-height:25px;
  3402. }
  3403. #u47442 .text {
  3404. position:absolute;
  3405. align-self:center;
  3406. padding:0px 0px 0px 0px;
  3407. box-sizing:border-box;
  3408. width:100%;
  3409. }
  3410. #u47442_text {
  3411. border-width:0px;
  3412. white-space:nowrap;
  3413. text-transform:none;
  3414. }
  3415. #u47443_div {
  3416. border-width:0px;
  3417. position:absolute;
  3418. left:0px;
  3419. top:0px;
  3420. width:85px;
  3421. height:25px;
  3422. background:inherit;
  3423. background-color:rgba(255, 255, 255, 0);
  3424. border:none;
  3425. border-left:0px;
  3426. border-top:0px;
  3427. border-right:0px;
  3428. border-radius:0px;
  3429. border-bottom-right-radius:0px;
  3430. border-bottom-left-radius:0px;
  3431. -moz-box-shadow:none;
  3432. -webkit-box-shadow:none;
  3433. box-shadow:none;
  3434. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3435. font-weight:400;
  3436. font-style:normal;
  3437. font-size:12px;
  3438. line-height:25px;
  3439. }
  3440. #u47443 {
  3441. border-width:0px;
  3442. position:absolute;
  3443. left:1342px;
  3444. top:314px;
  3445. width:85px;
  3446. height:25px;
  3447. display:flex;
  3448. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3449. font-weight:400;
  3450. font-style:normal;
  3451. font-size:12px;
  3452. line-height:25px;
  3453. }
  3454. #u47443 .text {
  3455. position:absolute;
  3456. align-self:center;
  3457. padding:0px 0px 0px 0px;
  3458. box-sizing:border-box;
  3459. width:100%;
  3460. }
  3461. #u47443_text {
  3462. border-width:0px;
  3463. white-space:nowrap;
  3464. text-transform:none;
  3465. }
  3466. #u47444_div {
  3467. border-width:0px;
  3468. position:absolute;
  3469. left:0px;
  3470. top:0px;
  3471. width:85px;
  3472. height:25px;
  3473. background:inherit;
  3474. background-color:rgba(255, 255, 255, 0);
  3475. border:none;
  3476. border-left:0px;
  3477. border-top:0px;
  3478. border-right:0px;
  3479. border-radius:0px;
  3480. border-bottom-right-radius:0px;
  3481. border-bottom-left-radius:0px;
  3482. -moz-box-shadow:none;
  3483. -webkit-box-shadow:none;
  3484. box-shadow:none;
  3485. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3486. font-weight:400;
  3487. font-style:normal;
  3488. font-size:12px;
  3489. line-height:25px;
  3490. }
  3491. #u47444 {
  3492. border-width:0px;
  3493. position:absolute;
  3494. left:1447px;
  3495. top:314px;
  3496. width:85px;
  3497. height:25px;
  3498. display:flex;
  3499. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3500. font-weight:400;
  3501. font-style:normal;
  3502. font-size:12px;
  3503. line-height:25px;
  3504. }
  3505. #u47444 .text {
  3506. position:absolute;
  3507. align-self:center;
  3508. padding:0px 0px 0px 0px;
  3509. box-sizing:border-box;
  3510. width:100%;
  3511. }
  3512. #u47444_text {
  3513. border-width:0px;
  3514. white-space:nowrap;
  3515. text-transform:none;
  3516. }
  3517. #u47445_div {
  3518. border-width:0px;
  3519. position:absolute;
  3520. left:0px;
  3521. top:0px;
  3522. width:85px;
  3523. height:25px;
  3524. background:inherit;
  3525. background-color:rgba(255, 255, 255, 0);
  3526. border:none;
  3527. border-left:0px;
  3528. border-top:0px;
  3529. border-right:0px;
  3530. border-radius:0px;
  3531. border-bottom-right-radius:0px;
  3532. border-bottom-left-radius:0px;
  3533. -moz-box-shadow:none;
  3534. -webkit-box-shadow:none;
  3535. box-shadow:none;
  3536. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3537. font-weight:400;
  3538. font-style:normal;
  3539. font-size:12px;
  3540. line-height:25px;
  3541. }
  3542. #u47445 {
  3543. border-width:0px;
  3544. position:absolute;
  3545. left:1342px;
  3546. top:339px;
  3547. width:85px;
  3548. height:25px;
  3549. display:flex;
  3550. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3551. font-weight:400;
  3552. font-style:normal;
  3553. font-size:12px;
  3554. line-height:25px;
  3555. }
  3556. #u47445 .text {
  3557. position:absolute;
  3558. align-self:center;
  3559. padding:0px 0px 0px 0px;
  3560. box-sizing:border-box;
  3561. width:100%;
  3562. }
  3563. #u47445_text {
  3564. border-width:0px;
  3565. white-space:nowrap;
  3566. text-transform:none;
  3567. }
  3568. #u47446_div {
  3569. border-width:0px;
  3570. position:absolute;
  3571. left:0px;
  3572. top:0px;
  3573. width:85px;
  3574. height:25px;
  3575. background:inherit;
  3576. background-color:rgba(255, 255, 255, 0);
  3577. border:none;
  3578. border-left:0px;
  3579. border-top:0px;
  3580. border-right:0px;
  3581. border-radius:0px;
  3582. border-bottom-right-radius:0px;
  3583. border-bottom-left-radius:0px;
  3584. -moz-box-shadow:none;
  3585. -webkit-box-shadow:none;
  3586. box-shadow:none;
  3587. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3588. font-weight:400;
  3589. font-style:normal;
  3590. font-size:12px;
  3591. line-height:25px;
  3592. }
  3593. #u47446 {
  3594. border-width:0px;
  3595. position:absolute;
  3596. left:1447px;
  3597. top:339px;
  3598. width:85px;
  3599. height:25px;
  3600. display:flex;
  3601. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3602. font-weight:400;
  3603. font-style:normal;
  3604. font-size:12px;
  3605. line-height:25px;
  3606. }
  3607. #u47446 .text {
  3608. position:absolute;
  3609. align-self:center;
  3610. padding:0px 0px 0px 0px;
  3611. box-sizing:border-box;
  3612. width:100%;
  3613. }
  3614. #u47446_text {
  3615. border-width:0px;
  3616. white-space:nowrap;
  3617. text-transform:none;
  3618. }
  3619. #u47447_img {
  3620. border-width:0px;
  3621. position:absolute;
  3622. left:0px;
  3623. top:0px;
  3624. width:75px;
  3625. height:90px;
  3626. }
  3627. #u47447 {
  3628. border-width:0px;
  3629. position:absolute;
  3630. left:1342px;
  3631. top:218px;
  3632. width:75px;
  3633. height:90px;
  3634. display:flex;
  3635. }
  3636. #u47447 .text {
  3637. position:absolute;
  3638. align-self:center;
  3639. padding:2px 2px 2px 2px;
  3640. box-sizing:border-box;
  3641. width:100%;
  3642. }
  3643. #u47447_text {
  3644. border-width:0px;
  3645. word-wrap:break-word;
  3646. text-transform:none;
  3647. visibility:hidden;
  3648. }
  3649. #u47448_img {
  3650. border-width:0px;
  3651. position:absolute;
  3652. left:0px;
  3653. top:0px;
  3654. width:30px;
  3655. height:30px;
  3656. }
  3657. #u47448 {
  3658. border-width:0px;
  3659. position:absolute;
  3660. left:1506px;
  3661. top:170px;
  3662. width:30px;
  3663. height:30px;
  3664. display:flex;
  3665. }
  3666. #u47448 .text {
  3667. position:absolute;
  3668. align-self:center;
  3669. padding:2px 2px 2px 2px;
  3670. box-sizing:border-box;
  3671. width:100%;
  3672. }
  3673. #u47448_text {
  3674. border-width:0px;
  3675. word-wrap:break-word;
  3676. text-transform:none;
  3677. visibility:hidden;
  3678. }
  3679. #u47449_div {
  3680. border-width:0px;
  3681. position:absolute;
  3682. left:0px;
  3683. top:0px;
  3684. width:100px;
  3685. height:25px;
  3686. background:inherit;
  3687. background-color:rgba(0, 137, 254, 1);
  3688. border:none;
  3689. border-radius:4px;
  3690. -moz-box-shadow:none;
  3691. -webkit-box-shadow:none;
  3692. box-shadow:none;
  3693. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3694. font-weight:400;
  3695. font-style:normal;
  3696. font-size:12px;
  3697. color:#FFFFFF;
  3698. text-align:center;
  3699. line-height:25px;
  3700. }
  3701. #u47449 {
  3702. border-width:0px;
  3703. position:absolute;
  3704. left:705px;
  3705. top:372px;
  3706. width:100px;
  3707. height:25px;
  3708. display:flex;
  3709. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3710. font-weight:400;
  3711. font-style:normal;
  3712. font-size:12px;
  3713. color:#FFFFFF;
  3714. text-align:center;
  3715. line-height:25px;
  3716. }
  3717. #u47449 .text {
  3718. position:absolute;
  3719. align-self:center;
  3720. padding:0px 0px 0px 0px;
  3721. box-sizing:border-box;
  3722. width:100%;
  3723. }
  3724. #u47449_text {
  3725. border-width:0px;
  3726. word-wrap:break-word;
  3727. text-transform:none;
  3728. }
  3729. #u47450_div {
  3730. border-width:0px;
  3731. position:absolute;
  3732. left:0px;
  3733. top:0px;
  3734. width:100px;
  3735. height:25px;
  3736. background:inherit;
  3737. background-color:rgba(0, 137, 254, 1);
  3738. border:none;
  3739. border-radius:4px;
  3740. -moz-box-shadow:none;
  3741. -webkit-box-shadow:none;
  3742. box-shadow:none;
  3743. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3744. font-weight:400;
  3745. font-style:normal;
  3746. font-size:12px;
  3747. color:#FFFFFF;
  3748. text-align:center;
  3749. line-height:25px;
  3750. }
  3751. #u47450 {
  3752. border-width:0px;
  3753. position:absolute;
  3754. left:941px;
  3755. top:372px;
  3756. width:100px;
  3757. height:25px;
  3758. display:flex;
  3759. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3760. font-weight:400;
  3761. font-style:normal;
  3762. font-size:12px;
  3763. color:#FFFFFF;
  3764. text-align:center;
  3765. line-height:25px;
  3766. }
  3767. #u47450 .text {
  3768. position:absolute;
  3769. align-self:center;
  3770. padding:0px 0px 0px 0px;
  3771. box-sizing:border-box;
  3772. width:100%;
  3773. }
  3774. #u47450_text {
  3775. border-width:0px;
  3776. word-wrap:break-word;
  3777. text-transform:none;
  3778. }
  3779. #u47451_div {
  3780. border-width:0px;
  3781. position:absolute;
  3782. left:0px;
  3783. top:0px;
  3784. width:100px;
  3785. height:25px;
  3786. background:inherit;
  3787. background-color:rgba(0, 137, 254, 1);
  3788. border:none;
  3789. border-radius:4px;
  3790. -moz-box-shadow:none;
  3791. -webkit-box-shadow:none;
  3792. box-shadow:none;
  3793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3794. font-weight:400;
  3795. font-style:normal;
  3796. font-size:12px;
  3797. color:#FFFFFF;
  3798. text-align:center;
  3799. line-height:25px;
  3800. }
  3801. #u47451 {
  3802. border-width:0px;
  3803. position:absolute;
  3804. left:1187px;
  3805. top:372px;
  3806. width:100px;
  3807. height:25px;
  3808. display:flex;
  3809. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3810. font-weight:400;
  3811. font-style:normal;
  3812. font-size:12px;
  3813. color:#FFFFFF;
  3814. text-align:center;
  3815. line-height:25px;
  3816. }
  3817. #u47451 .text {
  3818. position:absolute;
  3819. align-self:center;
  3820. padding:0px 0px 0px 0px;
  3821. box-sizing:border-box;
  3822. width:100%;
  3823. }
  3824. #u47451_text {
  3825. border-width:0px;
  3826. word-wrap:break-word;
  3827. text-transform:none;
  3828. }
  3829. #u47452_div {
  3830. border-width:0px;
  3831. position:absolute;
  3832. left:0px;
  3833. top:0px;
  3834. width:100px;
  3835. height:25px;
  3836. background:inherit;
  3837. background-color:rgba(0, 137, 254, 1);
  3838. border:none;
  3839. border-radius:4px;
  3840. -moz-box-shadow:none;
  3841. -webkit-box-shadow:none;
  3842. box-shadow:none;
  3843. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3844. font-weight:400;
  3845. font-style:normal;
  3846. font-size:12px;
  3847. color:#FFFFFF;
  3848. text-align:center;
  3849. line-height:25px;
  3850. }
  3851. #u47452 {
  3852. border-width:0px;
  3853. position:absolute;
  3854. left:1436px;
  3855. top:372px;
  3856. width:100px;
  3857. height:25px;
  3858. display:flex;
  3859. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3860. font-weight:400;
  3861. font-style:normal;
  3862. font-size:12px;
  3863. color:#FFFFFF;
  3864. text-align:center;
  3865. line-height:25px;
  3866. }
  3867. #u47452 .text {
  3868. position:absolute;
  3869. align-self:center;
  3870. padding:0px 0px 0px 0px;
  3871. box-sizing:border-box;
  3872. width:100%;
  3873. }
  3874. #u47452_text {
  3875. border-width:0px;
  3876. word-wrap:break-word;
  3877. text-transform:none;
  3878. }
  3879. #u47453_div {
  3880. border-width:0px;
  3881. position:absolute;
  3882. left:0px;
  3883. top:0px;
  3884. width:100px;
  3885. height:25px;
  3886. background:inherit;
  3887. background-color:rgba(0, 137, 254, 1);
  3888. border:none;
  3889. border-radius:4px;
  3890. -moz-box-shadow:none;
  3891. -webkit-box-shadow:none;
  3892. box-shadow:none;
  3893. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3894. font-weight:400;
  3895. font-style:normal;
  3896. font-size:12px;
  3897. color:#FFFFFF;
  3898. text-align:center;
  3899. line-height:25px;
  3900. }
  3901. #u47453 {
  3902. border-width:0px;
  3903. position:absolute;
  3904. left:450px;
  3905. top:372px;
  3906. width:100px;
  3907. height:25px;
  3908. display:flex;
  3909. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3910. font-weight:400;
  3911. font-style:normal;
  3912. font-size:12px;
  3913. color:#FFFFFF;
  3914. text-align:center;
  3915. line-height:25px;
  3916. }
  3917. #u47453 .text {
  3918. position:absolute;
  3919. align-self:center;
  3920. padding:0px 0px 0px 0px;
  3921. box-sizing:border-box;
  3922. width:100%;
  3923. }
  3924. #u47453_text {
  3925. border-width:0px;
  3926. word-wrap:break-word;
  3927. text-transform:none;
  3928. }
  3929. #u47454 {
  3930. border-width:0px;
  3931. position:absolute;
  3932. left:0px;
  3933. top:0px;
  3934. width:0px;
  3935. height:0px;
  3936. }
  3937. #u47455_div {
  3938. border-width:0px;
  3939. position:absolute;
  3940. left:0px;
  3941. top:0px;
  3942. width:220px;
  3943. height:250px;
  3944. background:inherit;
  3945. background-color:rgba(255, 255, 255, 1);
  3946. box-sizing:border-box;
  3947. border-width:1px;
  3948. border-style:solid;
  3949. border-color:rgba(121, 121, 121, 1);
  3950. border-radius:0px;
  3951. -moz-box-shadow:none;
  3952. -webkit-box-shadow:none;
  3953. box-shadow:none;
  3954. }
  3955. #u47455 {
  3956. border-width:0px;
  3957. position:absolute;
  3958. left:349px;
  3959. top:430px;
  3960. width:220px;
  3961. height:250px;
  3962. display:flex;
  3963. }
  3964. #u47455 .text {
  3965. position:absolute;
  3966. align-self:center;
  3967. padding:2px 2px 2px 2px;
  3968. box-sizing:border-box;
  3969. width:100%;
  3970. }
  3971. #u47455_text {
  3972. border-width:0px;
  3973. word-wrap:break-word;
  3974. text-transform:none;
  3975. visibility:hidden;
  3976. }
  3977. #u47456_div {
  3978. border-width:0px;
  3979. position:absolute;
  3980. left:0px;
  3981. top:0px;
  3982. width:220px;
  3983. height:50px;
  3984. background:inherit;
  3985. background-color:rgba(170, 170, 170, 1);
  3986. box-sizing:border-box;
  3987. border-width:1px;
  3988. border-style:solid;
  3989. border-color:rgba(242, 242, 242, 1);
  3990. border-left:0px;
  3991. border-top:0px;
  3992. border-right:0px;
  3993. border-radius:0px;
  3994. border-bottom-right-radius:0px;
  3995. border-bottom-left-radius:0px;
  3996. -moz-box-shadow:none;
  3997. -webkit-box-shadow:none;
  3998. box-shadow:none;
  3999. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4000. font-weight:500;
  4001. font-style:normal;
  4002. font-size:18px;
  4003. }
  4004. #u47456 {
  4005. border-width:0px;
  4006. position:absolute;
  4007. left:349px;
  4008. top:430px;
  4009. width:220px;
  4010. height:50px;
  4011. display:flex;
  4012. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4013. font-weight:500;
  4014. font-style:normal;
  4015. font-size:18px;
  4016. }
  4017. #u47456 .text {
  4018. position:absolute;
  4019. align-self:center;
  4020. padding:0px 0px 0px 20px;
  4021. box-sizing:border-box;
  4022. width:100%;
  4023. }
  4024. #u47456_text {
  4025. border-width:0px;
  4026. word-wrap:break-word;
  4027. text-transform:none;
  4028. }
  4029. #u47457_div {
  4030. border-width:0px;
  4031. position:absolute;
  4032. left:0px;
  4033. top:0px;
  4034. width:75px;
  4035. height:75px;
  4036. background:inherit;
  4037. background-color:rgba(255, 255, 255, 0);
  4038. border:none;
  4039. border-left:0px;
  4040. border-top:0px;
  4041. border-right:0px;
  4042. border-radius:0px;
  4043. border-bottom-right-radius:0px;
  4044. border-bottom-left-radius:0px;
  4045. -moz-box-shadow:none;
  4046. -webkit-box-shadow:none;
  4047. box-shadow:none;
  4048. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4049. font-weight:400;
  4050. font-style:normal;
  4051. font-size:12px;
  4052. line-height:25px;
  4053. }
  4054. #u47457 {
  4055. border-width:0px;
  4056. position:absolute;
  4057. left:465px;
  4058. top:495px;
  4059. width:75px;
  4060. height:75px;
  4061. display:flex;
  4062. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4063. font-weight:400;
  4064. font-style:normal;
  4065. font-size:12px;
  4066. line-height:25px;
  4067. }
  4068. #u47457 .text {
  4069. position:absolute;
  4070. align-self:center;
  4071. padding:0px 0px 0px 0px;
  4072. box-sizing:border-box;
  4073. width:100%;
  4074. }
  4075. #u47457_text {
  4076. border-width:0px;
  4077. white-space:nowrap;
  4078. text-transform:none;
  4079. }
  4080. #u47458_div {
  4081. border-width:0px;
  4082. position:absolute;
  4083. left:0px;
  4084. top:0px;
  4085. width:85px;
  4086. height:25px;
  4087. background:inherit;
  4088. background-color:rgba(255, 255, 255, 0);
  4089. border:none;
  4090. border-left:0px;
  4091. border-top:0px;
  4092. border-right:0px;
  4093. border-radius:0px;
  4094. border-bottom-right-radius:0px;
  4095. border-bottom-left-radius:0px;
  4096. -moz-box-shadow:none;
  4097. -webkit-box-shadow:none;
  4098. box-shadow:none;
  4099. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4100. font-weight:400;
  4101. font-style:normal;
  4102. font-size:12px;
  4103. line-height:25px;
  4104. }
  4105. #u47458 {
  4106. border-width:0px;
  4107. position:absolute;
  4108. left:360px;
  4109. top:584px;
  4110. width:85px;
  4111. height:25px;
  4112. display:flex;
  4113. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4114. font-weight:400;
  4115. font-style:normal;
  4116. font-size:12px;
  4117. line-height:25px;
  4118. }
  4119. #u47458 .text {
  4120. position:absolute;
  4121. align-self:center;
  4122. padding:0px 0px 0px 0px;
  4123. box-sizing:border-box;
  4124. width:100%;
  4125. }
  4126. #u47458_text {
  4127. border-width:0px;
  4128. white-space:nowrap;
  4129. text-transform:none;
  4130. }
  4131. #u47459_div {
  4132. border-width:0px;
  4133. position:absolute;
  4134. left:0px;
  4135. top:0px;
  4136. width:85px;
  4137. height:25px;
  4138. background:inherit;
  4139. background-color:rgba(255, 255, 255, 0);
  4140. border:none;
  4141. border-left:0px;
  4142. border-top:0px;
  4143. border-right:0px;
  4144. border-radius:0px;
  4145. border-bottom-right-radius:0px;
  4146. border-bottom-left-radius:0px;
  4147. -moz-box-shadow:none;
  4148. -webkit-box-shadow:none;
  4149. box-shadow:none;
  4150. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4151. font-weight:400;
  4152. font-style:normal;
  4153. font-size:12px;
  4154. line-height:25px;
  4155. }
  4156. #u47459 {
  4157. border-width:0px;
  4158. position:absolute;
  4159. left:465px;
  4160. top:584px;
  4161. width:85px;
  4162. height:25px;
  4163. display:flex;
  4164. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4165. font-weight:400;
  4166. font-style:normal;
  4167. font-size:12px;
  4168. line-height:25px;
  4169. }
  4170. #u47459 .text {
  4171. position:absolute;
  4172. align-self:center;
  4173. padding:0px 0px 0px 0px;
  4174. box-sizing:border-box;
  4175. width:100%;
  4176. }
  4177. #u47459_text {
  4178. border-width:0px;
  4179. white-space:nowrap;
  4180. text-transform:none;
  4181. }
  4182. #u47460_div {
  4183. border-width:0px;
  4184. position:absolute;
  4185. left:0px;
  4186. top:0px;
  4187. width:85px;
  4188. height:25px;
  4189. background:inherit;
  4190. background-color:rgba(255, 255, 255, 0);
  4191. border:none;
  4192. border-left:0px;
  4193. border-top:0px;
  4194. border-right:0px;
  4195. border-radius:0px;
  4196. border-bottom-right-radius:0px;
  4197. border-bottom-left-radius:0px;
  4198. -moz-box-shadow:none;
  4199. -webkit-box-shadow:none;
  4200. box-shadow:none;
  4201. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4202. font-weight:400;
  4203. font-style:normal;
  4204. font-size:12px;
  4205. line-height:25px;
  4206. }
  4207. #u47460 {
  4208. border-width:0px;
  4209. position:absolute;
  4210. left:360px;
  4211. top:609px;
  4212. width:85px;
  4213. height:25px;
  4214. display:flex;
  4215. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4216. font-weight:400;
  4217. font-style:normal;
  4218. font-size:12px;
  4219. line-height:25px;
  4220. }
  4221. #u47460 .text {
  4222. position:absolute;
  4223. align-self:center;
  4224. padding:0px 0px 0px 0px;
  4225. box-sizing:border-box;
  4226. width:100%;
  4227. }
  4228. #u47460_text {
  4229. border-width:0px;
  4230. white-space:nowrap;
  4231. text-transform:none;
  4232. }
  4233. #u47461_div {
  4234. border-width:0px;
  4235. position:absolute;
  4236. left:0px;
  4237. top:0px;
  4238. width:85px;
  4239. height:25px;
  4240. background:inherit;
  4241. background-color:rgba(255, 255, 255, 0);
  4242. border:none;
  4243. border-left:0px;
  4244. border-top:0px;
  4245. border-right:0px;
  4246. border-radius:0px;
  4247. border-bottom-right-radius:0px;
  4248. border-bottom-left-radius:0px;
  4249. -moz-box-shadow:none;
  4250. -webkit-box-shadow:none;
  4251. box-shadow:none;
  4252. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4253. font-weight:400;
  4254. font-style:normal;
  4255. font-size:12px;
  4256. line-height:25px;
  4257. }
  4258. #u47461 {
  4259. border-width:0px;
  4260. position:absolute;
  4261. left:465px;
  4262. top:609px;
  4263. width:85px;
  4264. height:25px;
  4265. display:flex;
  4266. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4267. font-weight:400;
  4268. font-style:normal;
  4269. font-size:12px;
  4270. line-height:25px;
  4271. }
  4272. #u47461 .text {
  4273. position:absolute;
  4274. align-self:center;
  4275. padding:0px 0px 0px 0px;
  4276. box-sizing:border-box;
  4277. width:100%;
  4278. }
  4279. #u47461_text {
  4280. border-width:0px;
  4281. white-space:nowrap;
  4282. text-transform:none;
  4283. }
  4284. #u47462_img {
  4285. border-width:0px;
  4286. position:absolute;
  4287. left:0px;
  4288. top:0px;
  4289. width:75px;
  4290. height:90px;
  4291. }
  4292. #u47462 {
  4293. border-width:0px;
  4294. position:absolute;
  4295. left:360px;
  4296. top:488px;
  4297. width:75px;
  4298. height:90px;
  4299. display:flex;
  4300. }
  4301. #u47462 .text {
  4302. position:absolute;
  4303. align-self:center;
  4304. padding:2px 2px 2px 2px;
  4305. box-sizing:border-box;
  4306. width:100%;
  4307. }
  4308. #u47462_text {
  4309. border-width:0px;
  4310. word-wrap:break-word;
  4311. text-transform:none;
  4312. visibility:hidden;
  4313. }
  4314. #u47463_img {
  4315. border-width:0px;
  4316. position:absolute;
  4317. left:0px;
  4318. top:0px;
  4319. width:30px;
  4320. height:30px;
  4321. }
  4322. #u47463 {
  4323. border-width:0px;
  4324. position:absolute;
  4325. left:527px;
  4326. top:440px;
  4327. width:30px;
  4328. height:30px;
  4329. display:flex;
  4330. }
  4331. #u47463 .text {
  4332. position:absolute;
  4333. align-self:center;
  4334. padding:2px 2px 2px 2px;
  4335. box-sizing:border-box;
  4336. width:100%;
  4337. }
  4338. #u47463_text {
  4339. border-width:0px;
  4340. word-wrap:break-word;
  4341. text-transform:none;
  4342. visibility:hidden;
  4343. }
  4344. #u47464_div {
  4345. border-width:0px;
  4346. position:absolute;
  4347. left:0px;
  4348. top:0px;
  4349. width:220px;
  4350. height:250px;
  4351. background:inherit;
  4352. background-color:rgba(255, 255, 255, 1);
  4353. box-sizing:border-box;
  4354. border-width:1px;
  4355. border-style:solid;
  4356. border-color:rgba(121, 121, 121, 1);
  4357. border-radius:0px;
  4358. -moz-box-shadow:none;
  4359. -webkit-box-shadow:none;
  4360. box-shadow:none;
  4361. }
  4362. #u47464 {
  4363. border-width:0px;
  4364. position:absolute;
  4365. left:595px;
  4366. top:430px;
  4367. width:220px;
  4368. height:250px;
  4369. display:flex;
  4370. }
  4371. #u47464 .text {
  4372. position:absolute;
  4373. align-self:center;
  4374. padding:2px 2px 2px 2px;
  4375. box-sizing:border-box;
  4376. width:100%;
  4377. }
  4378. #u47464_text {
  4379. border-width:0px;
  4380. word-wrap:break-word;
  4381. text-transform:none;
  4382. visibility:hidden;
  4383. }
  4384. #u47465_div {
  4385. border-width:0px;
  4386. position:absolute;
  4387. left:0px;
  4388. top:0px;
  4389. width:220px;
  4390. height:50px;
  4391. background:inherit;
  4392. background-color:rgba(170, 170, 170, 1);
  4393. box-sizing:border-box;
  4394. border-width:1px;
  4395. border-style:solid;
  4396. border-color:rgba(242, 242, 242, 1);
  4397. border-left:0px;
  4398. border-top:0px;
  4399. border-right:0px;
  4400. border-radius:0px;
  4401. border-bottom-right-radius:0px;
  4402. border-bottom-left-radius:0px;
  4403. -moz-box-shadow:none;
  4404. -webkit-box-shadow:none;
  4405. box-shadow:none;
  4406. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4407. font-weight:500;
  4408. font-style:normal;
  4409. font-size:18px;
  4410. }
  4411. #u47465 {
  4412. border-width:0px;
  4413. position:absolute;
  4414. left:595px;
  4415. top:430px;
  4416. width:220px;
  4417. height:50px;
  4418. display:flex;
  4419. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4420. font-weight:500;
  4421. font-style:normal;
  4422. font-size:18px;
  4423. }
  4424. #u47465 .text {
  4425. position:absolute;
  4426. align-self:center;
  4427. padding:0px 0px 0px 20px;
  4428. box-sizing:border-box;
  4429. width:100%;
  4430. }
  4431. #u47465_text {
  4432. border-width:0px;
  4433. word-wrap:break-word;
  4434. text-transform:none;
  4435. }
  4436. #u47466_div {
  4437. border-width:0px;
  4438. position:absolute;
  4439. left:0px;
  4440. top:0px;
  4441. width:80px;
  4442. height:75px;
  4443. background:inherit;
  4444. background-color:rgba(255, 255, 255, 0);
  4445. border:none;
  4446. border-left:0px;
  4447. border-top:0px;
  4448. border-right:0px;
  4449. border-radius:0px;
  4450. border-bottom-right-radius:0px;
  4451. border-bottom-left-radius:0px;
  4452. -moz-box-shadow:none;
  4453. -webkit-box-shadow:none;
  4454. box-shadow:none;
  4455. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4456. font-weight:400;
  4457. font-style:normal;
  4458. font-size:12px;
  4459. line-height:25px;
  4460. }
  4461. #u47466 {
  4462. border-width:0px;
  4463. position:absolute;
  4464. left:711px;
  4465. top:495px;
  4466. width:80px;
  4467. height:75px;
  4468. display:flex;
  4469. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4470. font-weight:400;
  4471. font-style:normal;
  4472. font-size:12px;
  4473. line-height:25px;
  4474. }
  4475. #u47466 .text {
  4476. position:absolute;
  4477. align-self:center;
  4478. padding:0px 0px 0px 0px;
  4479. box-sizing:border-box;
  4480. width:100%;
  4481. }
  4482. #u47466_text {
  4483. border-width:0px;
  4484. white-space:nowrap;
  4485. text-transform:none;
  4486. }
  4487. #u47467_div {
  4488. border-width:0px;
  4489. position:absolute;
  4490. left:0px;
  4491. top:0px;
  4492. width:85px;
  4493. height:25px;
  4494. background:inherit;
  4495. background-color:rgba(255, 255, 255, 0);
  4496. border:none;
  4497. border-left:0px;
  4498. border-top:0px;
  4499. border-right:0px;
  4500. border-radius:0px;
  4501. border-bottom-right-radius:0px;
  4502. border-bottom-left-radius:0px;
  4503. -moz-box-shadow:none;
  4504. -webkit-box-shadow:none;
  4505. box-shadow:none;
  4506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4507. font-weight:400;
  4508. font-style:normal;
  4509. font-size:12px;
  4510. line-height:25px;
  4511. }
  4512. #u47467 {
  4513. border-width:0px;
  4514. position:absolute;
  4515. left:606px;
  4516. top:584px;
  4517. width:85px;
  4518. height:25px;
  4519. display:flex;
  4520. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4521. font-weight:400;
  4522. font-style:normal;
  4523. font-size:12px;
  4524. line-height:25px;
  4525. }
  4526. #u47467 .text {
  4527. position:absolute;
  4528. align-self:center;
  4529. padding:0px 0px 0px 0px;
  4530. box-sizing:border-box;
  4531. width:100%;
  4532. }
  4533. #u47467_text {
  4534. border-width:0px;
  4535. white-space:nowrap;
  4536. text-transform:none;
  4537. }
  4538. #u47468_div {
  4539. border-width:0px;
  4540. position:absolute;
  4541. left:0px;
  4542. top:0px;
  4543. width:85px;
  4544. height:25px;
  4545. background:inherit;
  4546. background-color:rgba(255, 255, 255, 0);
  4547. border:none;
  4548. border-left:0px;
  4549. border-top:0px;
  4550. border-right:0px;
  4551. border-radius:0px;
  4552. border-bottom-right-radius:0px;
  4553. border-bottom-left-radius:0px;
  4554. -moz-box-shadow:none;
  4555. -webkit-box-shadow:none;
  4556. box-shadow:none;
  4557. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4558. font-weight:400;
  4559. font-style:normal;
  4560. font-size:12px;
  4561. line-height:25px;
  4562. }
  4563. #u47468 {
  4564. border-width:0px;
  4565. position:absolute;
  4566. left:711px;
  4567. top:584px;
  4568. width:85px;
  4569. height:25px;
  4570. display:flex;
  4571. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4572. font-weight:400;
  4573. font-style:normal;
  4574. font-size:12px;
  4575. line-height:25px;
  4576. }
  4577. #u47468 .text {
  4578. position:absolute;
  4579. align-self:center;
  4580. padding:0px 0px 0px 0px;
  4581. box-sizing:border-box;
  4582. width:100%;
  4583. }
  4584. #u47468_text {
  4585. border-width:0px;
  4586. white-space:nowrap;
  4587. text-transform:none;
  4588. }
  4589. #u47469_div {
  4590. border-width:0px;
  4591. position:absolute;
  4592. left:0px;
  4593. top:0px;
  4594. width:85px;
  4595. height:25px;
  4596. background:inherit;
  4597. background-color:rgba(255, 255, 255, 0);
  4598. border:none;
  4599. border-left:0px;
  4600. border-top:0px;
  4601. border-right:0px;
  4602. border-radius:0px;
  4603. border-bottom-right-radius:0px;
  4604. border-bottom-left-radius:0px;
  4605. -moz-box-shadow:none;
  4606. -webkit-box-shadow:none;
  4607. box-shadow:none;
  4608. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4609. font-weight:400;
  4610. font-style:normal;
  4611. font-size:12px;
  4612. line-height:25px;
  4613. }
  4614. #u47469 {
  4615. border-width:0px;
  4616. position:absolute;
  4617. left:606px;
  4618. top:609px;
  4619. width:85px;
  4620. height:25px;
  4621. display:flex;
  4622. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4623. font-weight:400;
  4624. font-style:normal;
  4625. font-size:12px;
  4626. line-height:25px;
  4627. }
  4628. #u47469 .text {
  4629. position:absolute;
  4630. align-self:center;
  4631. padding:0px 0px 0px 0px;
  4632. box-sizing:border-box;
  4633. width:100%;
  4634. }
  4635. #u47469_text {
  4636. border-width:0px;
  4637. white-space:nowrap;
  4638. text-transform:none;
  4639. }
  4640. #u47470_div {
  4641. border-width:0px;
  4642. position:absolute;
  4643. left:0px;
  4644. top:0px;
  4645. width:85px;
  4646. height:25px;
  4647. background:inherit;
  4648. background-color:rgba(255, 255, 255, 0);
  4649. border:none;
  4650. border-left:0px;
  4651. border-top:0px;
  4652. border-right:0px;
  4653. border-radius:0px;
  4654. border-bottom-right-radius:0px;
  4655. border-bottom-left-radius:0px;
  4656. -moz-box-shadow:none;
  4657. -webkit-box-shadow:none;
  4658. box-shadow:none;
  4659. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4660. font-weight:400;
  4661. font-style:normal;
  4662. font-size:12px;
  4663. line-height:25px;
  4664. }
  4665. #u47470 {
  4666. border-width:0px;
  4667. position:absolute;
  4668. left:711px;
  4669. top:609px;
  4670. width:85px;
  4671. height:25px;
  4672. display:flex;
  4673. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4674. font-weight:400;
  4675. font-style:normal;
  4676. font-size:12px;
  4677. line-height:25px;
  4678. }
  4679. #u47470 .text {
  4680. position:absolute;
  4681. align-self:center;
  4682. padding:0px 0px 0px 0px;
  4683. box-sizing:border-box;
  4684. width:100%;
  4685. }
  4686. #u47470_text {
  4687. border-width:0px;
  4688. white-space:nowrap;
  4689. text-transform:none;
  4690. }
  4691. #u47471_img {
  4692. border-width:0px;
  4693. position:absolute;
  4694. left:0px;
  4695. top:0px;
  4696. width:75px;
  4697. height:90px;
  4698. }
  4699. #u47471 {
  4700. border-width:0px;
  4701. position:absolute;
  4702. left:606px;
  4703. top:488px;
  4704. width:75px;
  4705. height:90px;
  4706. display:flex;
  4707. }
  4708. #u47471 .text {
  4709. position:absolute;
  4710. align-self:center;
  4711. padding:2px 2px 2px 2px;
  4712. box-sizing:border-box;
  4713. width:100%;
  4714. }
  4715. #u47471_text {
  4716. border-width:0px;
  4717. word-wrap:break-word;
  4718. text-transform:none;
  4719. visibility:hidden;
  4720. }
  4721. #u47472_img {
  4722. border-width:0px;
  4723. position:absolute;
  4724. left:0px;
  4725. top:0px;
  4726. width:30px;
  4727. height:30px;
  4728. }
  4729. #u47472 {
  4730. border-width:0px;
  4731. position:absolute;
  4732. left:770px;
  4733. top:440px;
  4734. width:30px;
  4735. height:30px;
  4736. display:flex;
  4737. }
  4738. #u47472 .text {
  4739. position:absolute;
  4740. align-self:center;
  4741. padding:2px 2px 2px 2px;
  4742. box-sizing:border-box;
  4743. width:100%;
  4744. }
  4745. #u47472_text {
  4746. border-width:0px;
  4747. word-wrap:break-word;
  4748. text-transform:none;
  4749. visibility:hidden;
  4750. }
  4751. #u47473_div {
  4752. border-width:0px;
  4753. position:absolute;
  4754. left:0px;
  4755. top:0px;
  4756. width:220px;
  4757. height:250px;
  4758. background:inherit;
  4759. background-color:rgba(255, 255, 255, 1);
  4760. box-sizing:border-box;
  4761. border-width:1px;
  4762. border-style:solid;
  4763. border-color:rgba(121, 121, 121, 1);
  4764. border-radius:0px;
  4765. -moz-box-shadow:none;
  4766. -webkit-box-shadow:none;
  4767. box-shadow:none;
  4768. }
  4769. #u47473 {
  4770. border-width:0px;
  4771. position:absolute;
  4772. left:840px;
  4773. top:430px;
  4774. width:220px;
  4775. height:250px;
  4776. display:flex;
  4777. }
  4778. #u47473 .text {
  4779. position:absolute;
  4780. align-self:center;
  4781. padding:2px 2px 2px 2px;
  4782. box-sizing:border-box;
  4783. width:100%;
  4784. }
  4785. #u47473_text {
  4786. border-width:0px;
  4787. word-wrap:break-word;
  4788. text-transform:none;
  4789. visibility:hidden;
  4790. }
  4791. #u47474_div {
  4792. border-width:0px;
  4793. position:absolute;
  4794. left:0px;
  4795. top:0px;
  4796. width:220px;
  4797. height:50px;
  4798. background:inherit;
  4799. background-color:rgba(170, 170, 170, 1);
  4800. box-sizing:border-box;
  4801. border-width:1px;
  4802. border-style:solid;
  4803. border-color:rgba(242, 242, 242, 1);
  4804. border-left:0px;
  4805. border-top:0px;
  4806. border-right:0px;
  4807. border-radius:0px;
  4808. border-bottom-right-radius:0px;
  4809. border-bottom-left-radius:0px;
  4810. -moz-box-shadow:none;
  4811. -webkit-box-shadow:none;
  4812. box-shadow:none;
  4813. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4814. font-weight:500;
  4815. font-style:normal;
  4816. font-size:18px;
  4817. }
  4818. #u47474 {
  4819. border-width:0px;
  4820. position:absolute;
  4821. left:840px;
  4822. top:430px;
  4823. width:220px;
  4824. height:50px;
  4825. display:flex;
  4826. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4827. font-weight:500;
  4828. font-style:normal;
  4829. font-size:18px;
  4830. }
  4831. #u47474 .text {
  4832. position:absolute;
  4833. align-self:center;
  4834. padding:0px 0px 0px 20px;
  4835. box-sizing:border-box;
  4836. width:100%;
  4837. }
  4838. #u47474_text {
  4839. border-width:0px;
  4840. word-wrap:break-word;
  4841. text-transform:none;
  4842. }
  4843. #u47475_div {
  4844. border-width:0px;
  4845. position:absolute;
  4846. left:0px;
  4847. top:0px;
  4848. width:75px;
  4849. height:75px;
  4850. background:inherit;
  4851. background-color:rgba(255, 255, 255, 0);
  4852. border:none;
  4853. border-left:0px;
  4854. border-top:0px;
  4855. border-right:0px;
  4856. border-radius:0px;
  4857. border-bottom-right-radius:0px;
  4858. border-bottom-left-radius:0px;
  4859. -moz-box-shadow:none;
  4860. -webkit-box-shadow:none;
  4861. box-shadow:none;
  4862. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4863. font-weight:400;
  4864. font-style:normal;
  4865. font-size:12px;
  4866. line-height:25px;
  4867. }
  4868. #u47475 {
  4869. border-width:0px;
  4870. position:absolute;
  4871. left:956px;
  4872. top:495px;
  4873. width:75px;
  4874. height:75px;
  4875. display:flex;
  4876. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4877. font-weight:400;
  4878. font-style:normal;
  4879. font-size:12px;
  4880. line-height:25px;
  4881. }
  4882. #u47475 .text {
  4883. position:absolute;
  4884. align-self:center;
  4885. padding:0px 0px 0px 0px;
  4886. box-sizing:border-box;
  4887. width:100%;
  4888. }
  4889. #u47475_text {
  4890. border-width:0px;
  4891. white-space:nowrap;
  4892. text-transform:none;
  4893. }
  4894. #u47476_div {
  4895. border-width:0px;
  4896. position:absolute;
  4897. left:0px;
  4898. top:0px;
  4899. width:85px;
  4900. height:25px;
  4901. background:inherit;
  4902. background-color:rgba(255, 255, 255, 0);
  4903. border:none;
  4904. border-left:0px;
  4905. border-top:0px;
  4906. border-right:0px;
  4907. border-radius:0px;
  4908. border-bottom-right-radius:0px;
  4909. border-bottom-left-radius:0px;
  4910. -moz-box-shadow:none;
  4911. -webkit-box-shadow:none;
  4912. box-shadow:none;
  4913. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4914. font-weight:400;
  4915. font-style:normal;
  4916. font-size:12px;
  4917. line-height:25px;
  4918. }
  4919. #u47476 {
  4920. border-width:0px;
  4921. position:absolute;
  4922. left:851px;
  4923. top:584px;
  4924. width:85px;
  4925. height:25px;
  4926. display:flex;
  4927. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4928. font-weight:400;
  4929. font-style:normal;
  4930. font-size:12px;
  4931. line-height:25px;
  4932. }
  4933. #u47476 .text {
  4934. position:absolute;
  4935. align-self:center;
  4936. padding:0px 0px 0px 0px;
  4937. box-sizing:border-box;
  4938. width:100%;
  4939. }
  4940. #u47476_text {
  4941. border-width:0px;
  4942. white-space:nowrap;
  4943. text-transform:none;
  4944. }
  4945. #u47477_div {
  4946. border-width:0px;
  4947. position:absolute;
  4948. left:0px;
  4949. top:0px;
  4950. width:85px;
  4951. height:25px;
  4952. background:inherit;
  4953. background-color:rgba(255, 255, 255, 0);
  4954. border:none;
  4955. border-left:0px;
  4956. border-top:0px;
  4957. border-right:0px;
  4958. border-radius:0px;
  4959. border-bottom-right-radius:0px;
  4960. border-bottom-left-radius:0px;
  4961. -moz-box-shadow:none;
  4962. -webkit-box-shadow:none;
  4963. box-shadow:none;
  4964. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4965. font-weight:400;
  4966. font-style:normal;
  4967. font-size:12px;
  4968. line-height:25px;
  4969. }
  4970. #u47477 {
  4971. border-width:0px;
  4972. position:absolute;
  4973. left:956px;
  4974. top:584px;
  4975. width:85px;
  4976. height:25px;
  4977. display:flex;
  4978. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4979. font-weight:400;
  4980. font-style:normal;
  4981. font-size:12px;
  4982. line-height:25px;
  4983. }
  4984. #u47477 .text {
  4985. position:absolute;
  4986. align-self:center;
  4987. padding:0px 0px 0px 0px;
  4988. box-sizing:border-box;
  4989. width:100%;
  4990. }
  4991. #u47477_text {
  4992. border-width:0px;
  4993. white-space:nowrap;
  4994. text-transform:none;
  4995. }
  4996. #u47478_div {
  4997. border-width:0px;
  4998. position:absolute;
  4999. left:0px;
  5000. top:0px;
  5001. width:85px;
  5002. height:25px;
  5003. background:inherit;
  5004. background-color:rgba(255, 255, 255, 0);
  5005. border:none;
  5006. border-left:0px;
  5007. border-top:0px;
  5008. border-right:0px;
  5009. border-radius:0px;
  5010. border-bottom-right-radius:0px;
  5011. border-bottom-left-radius:0px;
  5012. -moz-box-shadow:none;
  5013. -webkit-box-shadow:none;
  5014. box-shadow:none;
  5015. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5016. font-weight:400;
  5017. font-style:normal;
  5018. font-size:12px;
  5019. line-height:25px;
  5020. }
  5021. #u47478 {
  5022. border-width:0px;
  5023. position:absolute;
  5024. left:851px;
  5025. top:609px;
  5026. width:85px;
  5027. height:25px;
  5028. display:flex;
  5029. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5030. font-weight:400;
  5031. font-style:normal;
  5032. font-size:12px;
  5033. line-height:25px;
  5034. }
  5035. #u47478 .text {
  5036. position:absolute;
  5037. align-self:center;
  5038. padding:0px 0px 0px 0px;
  5039. box-sizing:border-box;
  5040. width:100%;
  5041. }
  5042. #u47478_text {
  5043. border-width:0px;
  5044. white-space:nowrap;
  5045. text-transform:none;
  5046. }
  5047. #u47479_div {
  5048. border-width:0px;
  5049. position:absolute;
  5050. left:0px;
  5051. top:0px;
  5052. width:85px;
  5053. height:25px;
  5054. background:inherit;
  5055. background-color:rgba(255, 255, 255, 0);
  5056. border:none;
  5057. border-left:0px;
  5058. border-top:0px;
  5059. border-right:0px;
  5060. border-radius:0px;
  5061. border-bottom-right-radius:0px;
  5062. border-bottom-left-radius:0px;
  5063. -moz-box-shadow:none;
  5064. -webkit-box-shadow:none;
  5065. box-shadow:none;
  5066. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5067. font-weight:400;
  5068. font-style:normal;
  5069. font-size:12px;
  5070. line-height:25px;
  5071. }
  5072. #u47479 {
  5073. border-width:0px;
  5074. position:absolute;
  5075. left:956px;
  5076. top:609px;
  5077. width:85px;
  5078. height:25px;
  5079. display:flex;
  5080. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5081. font-weight:400;
  5082. font-style:normal;
  5083. font-size:12px;
  5084. line-height:25px;
  5085. }
  5086. #u47479 .text {
  5087. position:absolute;
  5088. align-self:center;
  5089. padding:0px 0px 0px 0px;
  5090. box-sizing:border-box;
  5091. width:100%;
  5092. }
  5093. #u47479_text {
  5094. border-width:0px;
  5095. white-space:nowrap;
  5096. text-transform:none;
  5097. }
  5098. #u47480_img {
  5099. border-width:0px;
  5100. position:absolute;
  5101. left:0px;
  5102. top:0px;
  5103. width:75px;
  5104. height:90px;
  5105. }
  5106. #u47480 {
  5107. border-width:0px;
  5108. position:absolute;
  5109. left:851px;
  5110. top:488px;
  5111. width:75px;
  5112. height:90px;
  5113. display:flex;
  5114. }
  5115. #u47480 .text {
  5116. position:absolute;
  5117. align-self:center;
  5118. padding:2px 2px 2px 2px;
  5119. box-sizing:border-box;
  5120. width:100%;
  5121. }
  5122. #u47480_text {
  5123. border-width:0px;
  5124. word-wrap:break-word;
  5125. text-transform:none;
  5126. visibility:hidden;
  5127. }
  5128. #u47481_img {
  5129. border-width:0px;
  5130. position:absolute;
  5131. left:0px;
  5132. top:0px;
  5133. width:30px;
  5134. height:30px;
  5135. }
  5136. #u47481 {
  5137. border-width:0px;
  5138. position:absolute;
  5139. left:1018px;
  5140. top:440px;
  5141. width:30px;
  5142. height:30px;
  5143. display:flex;
  5144. }
  5145. #u47481 .text {
  5146. position:absolute;
  5147. align-self:center;
  5148. padding:2px 2px 2px 2px;
  5149. box-sizing:border-box;
  5150. width:100%;
  5151. }
  5152. #u47481_text {
  5153. border-width:0px;
  5154. word-wrap:break-word;
  5155. text-transform:none;
  5156. visibility:hidden;
  5157. }
  5158. #u47482_div {
  5159. border-width:0px;
  5160. position:absolute;
  5161. left:0px;
  5162. top:0px;
  5163. width:220px;
  5164. height:250px;
  5165. background:inherit;
  5166. background-color:rgba(255, 255, 255, 1);
  5167. box-sizing:border-box;
  5168. border-width:1px;
  5169. border-style:solid;
  5170. border-color:rgba(121, 121, 121, 1);
  5171. border-radius:0px;
  5172. -moz-box-shadow:none;
  5173. -webkit-box-shadow:none;
  5174. box-shadow:none;
  5175. }
  5176. #u47482 {
  5177. border-width:0px;
  5178. position:absolute;
  5179. left:1086px;
  5180. top:430px;
  5181. width:220px;
  5182. height:250px;
  5183. display:flex;
  5184. }
  5185. #u47482 .text {
  5186. position:absolute;
  5187. align-self:center;
  5188. padding:2px 2px 2px 2px;
  5189. box-sizing:border-box;
  5190. width:100%;
  5191. }
  5192. #u47482_text {
  5193. border-width:0px;
  5194. word-wrap:break-word;
  5195. text-transform:none;
  5196. visibility:hidden;
  5197. }
  5198. #u47483_div {
  5199. border-width:0px;
  5200. position:absolute;
  5201. left:0px;
  5202. top:0px;
  5203. width:220px;
  5204. height:50px;
  5205. background:inherit;
  5206. background-color:rgba(170, 170, 170, 1);
  5207. box-sizing:border-box;
  5208. border-width:1px;
  5209. border-style:solid;
  5210. border-color:rgba(242, 242, 242, 1);
  5211. border-left:0px;
  5212. border-top:0px;
  5213. border-right:0px;
  5214. border-radius:0px;
  5215. border-bottom-right-radius:0px;
  5216. border-bottom-left-radius:0px;
  5217. -moz-box-shadow:none;
  5218. -webkit-box-shadow:none;
  5219. box-shadow:none;
  5220. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5221. font-weight:500;
  5222. font-style:normal;
  5223. font-size:18px;
  5224. }
  5225. #u47483 {
  5226. border-width:0px;
  5227. position:absolute;
  5228. left:1086px;
  5229. top:430px;
  5230. width:220px;
  5231. height:50px;
  5232. display:flex;
  5233. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5234. font-weight:500;
  5235. font-style:normal;
  5236. font-size:18px;
  5237. }
  5238. #u47483 .text {
  5239. position:absolute;
  5240. align-self:center;
  5241. padding:0px 0px 0px 20px;
  5242. box-sizing:border-box;
  5243. width:100%;
  5244. }
  5245. #u47483_text {
  5246. border-width:0px;
  5247. word-wrap:break-word;
  5248. text-transform:none;
  5249. }
  5250. #u47484_div {
  5251. border-width:0px;
  5252. position:absolute;
  5253. left:0px;
  5254. top:0px;
  5255. width:75px;
  5256. height:75px;
  5257. background:inherit;
  5258. background-color:rgba(255, 255, 255, 0);
  5259. border:none;
  5260. border-left:0px;
  5261. border-top:0px;
  5262. border-right:0px;
  5263. border-radius:0px;
  5264. border-bottom-right-radius:0px;
  5265. border-bottom-left-radius:0px;
  5266. -moz-box-shadow:none;
  5267. -webkit-box-shadow:none;
  5268. box-shadow:none;
  5269. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5270. font-weight:400;
  5271. font-style:normal;
  5272. font-size:12px;
  5273. line-height:25px;
  5274. }
  5275. #u47484 {
  5276. border-width:0px;
  5277. position:absolute;
  5278. left:1202px;
  5279. top:495px;
  5280. width:75px;
  5281. height:75px;
  5282. display:flex;
  5283. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5284. font-weight:400;
  5285. font-style:normal;
  5286. font-size:12px;
  5287. line-height:25px;
  5288. }
  5289. #u47484 .text {
  5290. position:absolute;
  5291. align-self:center;
  5292. padding:0px 0px 0px 0px;
  5293. box-sizing:border-box;
  5294. width:100%;
  5295. }
  5296. #u47484_text {
  5297. border-width:0px;
  5298. white-space:nowrap;
  5299. text-transform:none;
  5300. }
  5301. #u47485_div {
  5302. border-width:0px;
  5303. position:absolute;
  5304. left:0px;
  5305. top:0px;
  5306. width:85px;
  5307. height:25px;
  5308. background:inherit;
  5309. background-color:rgba(255, 255, 255, 0);
  5310. border:none;
  5311. border-left:0px;
  5312. border-top:0px;
  5313. border-right:0px;
  5314. border-radius:0px;
  5315. border-bottom-right-radius:0px;
  5316. border-bottom-left-radius:0px;
  5317. -moz-box-shadow:none;
  5318. -webkit-box-shadow:none;
  5319. box-shadow:none;
  5320. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5321. font-weight:400;
  5322. font-style:normal;
  5323. font-size:12px;
  5324. line-height:25px;
  5325. }
  5326. #u47485 {
  5327. border-width:0px;
  5328. position:absolute;
  5329. left:1097px;
  5330. top:584px;
  5331. width:85px;
  5332. height:25px;
  5333. display:flex;
  5334. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5335. font-weight:400;
  5336. font-style:normal;
  5337. font-size:12px;
  5338. line-height:25px;
  5339. }
  5340. #u47485 .text {
  5341. position:absolute;
  5342. align-self:center;
  5343. padding:0px 0px 0px 0px;
  5344. box-sizing:border-box;
  5345. width:100%;
  5346. }
  5347. #u47485_text {
  5348. border-width:0px;
  5349. white-space:nowrap;
  5350. text-transform:none;
  5351. }
  5352. #u47486_div {
  5353. border-width:0px;
  5354. position:absolute;
  5355. left:0px;
  5356. top:0px;
  5357. width:85px;
  5358. height:25px;
  5359. background:inherit;
  5360. background-color:rgba(255, 255, 255, 0);
  5361. border:none;
  5362. border-left:0px;
  5363. border-top:0px;
  5364. border-right:0px;
  5365. border-radius:0px;
  5366. border-bottom-right-radius:0px;
  5367. border-bottom-left-radius:0px;
  5368. -moz-box-shadow:none;
  5369. -webkit-box-shadow:none;
  5370. box-shadow:none;
  5371. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5372. font-weight:400;
  5373. font-style:normal;
  5374. font-size:12px;
  5375. line-height:25px;
  5376. }
  5377. #u47486 {
  5378. border-width:0px;
  5379. position:absolute;
  5380. left:1202px;
  5381. top:584px;
  5382. width:85px;
  5383. height:25px;
  5384. display:flex;
  5385. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5386. font-weight:400;
  5387. font-style:normal;
  5388. font-size:12px;
  5389. line-height:25px;
  5390. }
  5391. #u47486 .text {
  5392. position:absolute;
  5393. align-self:center;
  5394. padding:0px 0px 0px 0px;
  5395. box-sizing:border-box;
  5396. width:100%;
  5397. }
  5398. #u47486_text {
  5399. border-width:0px;
  5400. white-space:nowrap;
  5401. text-transform:none;
  5402. }
  5403. #u47487_div {
  5404. border-width:0px;
  5405. position:absolute;
  5406. left:0px;
  5407. top:0px;
  5408. width:85px;
  5409. height:25px;
  5410. background:inherit;
  5411. background-color:rgba(255, 255, 255, 0);
  5412. border:none;
  5413. border-left:0px;
  5414. border-top:0px;
  5415. border-right:0px;
  5416. border-radius:0px;
  5417. border-bottom-right-radius:0px;
  5418. border-bottom-left-radius:0px;
  5419. -moz-box-shadow:none;
  5420. -webkit-box-shadow:none;
  5421. box-shadow:none;
  5422. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5423. font-weight:400;
  5424. font-style:normal;
  5425. font-size:12px;
  5426. line-height:25px;
  5427. }
  5428. #u47487 {
  5429. border-width:0px;
  5430. position:absolute;
  5431. left:1097px;
  5432. top:609px;
  5433. width:85px;
  5434. height:25px;
  5435. display:flex;
  5436. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5437. font-weight:400;
  5438. font-style:normal;
  5439. font-size:12px;
  5440. line-height:25px;
  5441. }
  5442. #u47487 .text {
  5443. position:absolute;
  5444. align-self:center;
  5445. padding:0px 0px 0px 0px;
  5446. box-sizing:border-box;
  5447. width:100%;
  5448. }
  5449. #u47487_text {
  5450. border-width:0px;
  5451. white-space:nowrap;
  5452. text-transform:none;
  5453. }
  5454. #u47488_div {
  5455. border-width:0px;
  5456. position:absolute;
  5457. left:0px;
  5458. top:0px;
  5459. width:85px;
  5460. height:25px;
  5461. background:inherit;
  5462. background-color:rgba(255, 255, 255, 0);
  5463. border:none;
  5464. border-left:0px;
  5465. border-top:0px;
  5466. border-right:0px;
  5467. border-radius:0px;
  5468. border-bottom-right-radius:0px;
  5469. border-bottom-left-radius:0px;
  5470. -moz-box-shadow:none;
  5471. -webkit-box-shadow:none;
  5472. box-shadow:none;
  5473. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5474. font-weight:400;
  5475. font-style:normal;
  5476. font-size:12px;
  5477. line-height:25px;
  5478. }
  5479. #u47488 {
  5480. border-width:0px;
  5481. position:absolute;
  5482. left:1202px;
  5483. top:609px;
  5484. width:85px;
  5485. height:25px;
  5486. display:flex;
  5487. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5488. font-weight:400;
  5489. font-style:normal;
  5490. font-size:12px;
  5491. line-height:25px;
  5492. }
  5493. #u47488 .text {
  5494. position:absolute;
  5495. align-self:center;
  5496. padding:0px 0px 0px 0px;
  5497. box-sizing:border-box;
  5498. width:100%;
  5499. }
  5500. #u47488_text {
  5501. border-width:0px;
  5502. white-space:nowrap;
  5503. text-transform:none;
  5504. }
  5505. #u47489_img {
  5506. border-width:0px;
  5507. position:absolute;
  5508. left:0px;
  5509. top:0px;
  5510. width:75px;
  5511. height:90px;
  5512. }
  5513. #u47489 {
  5514. border-width:0px;
  5515. position:absolute;
  5516. left:1097px;
  5517. top:488px;
  5518. width:75px;
  5519. height:90px;
  5520. display:flex;
  5521. }
  5522. #u47489 .text {
  5523. position:absolute;
  5524. align-self:center;
  5525. padding:2px 2px 2px 2px;
  5526. box-sizing:border-box;
  5527. width:100%;
  5528. }
  5529. #u47489_text {
  5530. border-width:0px;
  5531. word-wrap:break-word;
  5532. text-transform:none;
  5533. visibility:hidden;
  5534. }
  5535. #u47490_img {
  5536. border-width:0px;
  5537. position:absolute;
  5538. left:0px;
  5539. top:0px;
  5540. width:30px;
  5541. height:30px;
  5542. }
  5543. #u47490 {
  5544. border-width:0px;
  5545. position:absolute;
  5546. left:1264px;
  5547. top:440px;
  5548. width:30px;
  5549. height:30px;
  5550. display:flex;
  5551. }
  5552. #u47490 .text {
  5553. position:absolute;
  5554. align-self:center;
  5555. padding:2px 2px 2px 2px;
  5556. box-sizing:border-box;
  5557. width:100%;
  5558. }
  5559. #u47490_text {
  5560. border-width:0px;
  5561. word-wrap:break-word;
  5562. text-transform:none;
  5563. visibility:hidden;
  5564. }
  5565. #u47491_div {
  5566. border-width:0px;
  5567. position:absolute;
  5568. left:0px;
  5569. top:0px;
  5570. width:220px;
  5571. height:250px;
  5572. background:inherit;
  5573. background-color:rgba(255, 255, 255, 1);
  5574. box-sizing:border-box;
  5575. border-width:1px;
  5576. border-style:solid;
  5577. border-color:rgba(121, 121, 121, 1);
  5578. border-radius:0px;
  5579. -moz-box-shadow:none;
  5580. -webkit-box-shadow:none;
  5581. box-shadow:none;
  5582. }
  5583. #u47491 {
  5584. border-width:0px;
  5585. position:absolute;
  5586. left:1331px;
  5587. top:430px;
  5588. width:220px;
  5589. height:250px;
  5590. display:flex;
  5591. }
  5592. #u47491 .text {
  5593. position:absolute;
  5594. align-self:center;
  5595. padding:2px 2px 2px 2px;
  5596. box-sizing:border-box;
  5597. width:100%;
  5598. }
  5599. #u47491_text {
  5600. border-width:0px;
  5601. word-wrap:break-word;
  5602. text-transform:none;
  5603. visibility:hidden;
  5604. }
  5605. #u47492_div {
  5606. border-width:0px;
  5607. position:absolute;
  5608. left:0px;
  5609. top:0px;
  5610. width:220px;
  5611. height:50px;
  5612. background:inherit;
  5613. background-color:rgba(170, 170, 170, 1);
  5614. box-sizing:border-box;
  5615. border-width:1px;
  5616. border-style:solid;
  5617. border-color:rgba(242, 242, 242, 1);
  5618. border-left:0px;
  5619. border-top:0px;
  5620. border-right:0px;
  5621. border-radius:0px;
  5622. border-bottom-right-radius:0px;
  5623. border-bottom-left-radius:0px;
  5624. -moz-box-shadow:none;
  5625. -webkit-box-shadow:none;
  5626. box-shadow:none;
  5627. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5628. font-weight:500;
  5629. font-style:normal;
  5630. font-size:18px;
  5631. }
  5632. #u47492 {
  5633. border-width:0px;
  5634. position:absolute;
  5635. left:1331px;
  5636. top:430px;
  5637. width:220px;
  5638. height:50px;
  5639. display:flex;
  5640. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5641. font-weight:500;
  5642. font-style:normal;
  5643. font-size:18px;
  5644. }
  5645. #u47492 .text {
  5646. position:absolute;
  5647. align-self:center;
  5648. padding:0px 0px 0px 20px;
  5649. box-sizing:border-box;
  5650. width:100%;
  5651. }
  5652. #u47492_text {
  5653. border-width:0px;
  5654. word-wrap:break-word;
  5655. text-transform:none;
  5656. }
  5657. #u47493_div {
  5658. border-width:0px;
  5659. position:absolute;
  5660. left:0px;
  5661. top:0px;
  5662. width:75px;
  5663. height:75px;
  5664. background:inherit;
  5665. background-color:rgba(255, 255, 255, 0);
  5666. border:none;
  5667. border-left:0px;
  5668. border-top:0px;
  5669. border-right:0px;
  5670. border-radius:0px;
  5671. border-bottom-right-radius:0px;
  5672. border-bottom-left-radius:0px;
  5673. -moz-box-shadow:none;
  5674. -webkit-box-shadow:none;
  5675. box-shadow:none;
  5676. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5677. font-weight:400;
  5678. font-style:normal;
  5679. font-size:12px;
  5680. line-height:25px;
  5681. }
  5682. #u47493 {
  5683. border-width:0px;
  5684. position:absolute;
  5685. left:1447px;
  5686. top:495px;
  5687. width:75px;
  5688. height:75px;
  5689. display:flex;
  5690. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5691. font-weight:400;
  5692. font-style:normal;
  5693. font-size:12px;
  5694. line-height:25px;
  5695. }
  5696. #u47493 .text {
  5697. position:absolute;
  5698. align-self:center;
  5699. padding:0px 0px 0px 0px;
  5700. box-sizing:border-box;
  5701. width:100%;
  5702. }
  5703. #u47493_text {
  5704. border-width:0px;
  5705. white-space:nowrap;
  5706. text-transform:none;
  5707. }
  5708. #u47494_div {
  5709. border-width:0px;
  5710. position:absolute;
  5711. left:0px;
  5712. top:0px;
  5713. width:85px;
  5714. height:25px;
  5715. background:inherit;
  5716. background-color:rgba(255, 255, 255, 0);
  5717. border:none;
  5718. border-left:0px;
  5719. border-top:0px;
  5720. border-right:0px;
  5721. border-radius:0px;
  5722. border-bottom-right-radius:0px;
  5723. border-bottom-left-radius:0px;
  5724. -moz-box-shadow:none;
  5725. -webkit-box-shadow:none;
  5726. box-shadow:none;
  5727. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5728. font-weight:400;
  5729. font-style:normal;
  5730. font-size:12px;
  5731. line-height:25px;
  5732. }
  5733. #u47494 {
  5734. border-width:0px;
  5735. position:absolute;
  5736. left:1342px;
  5737. top:584px;
  5738. width:85px;
  5739. height:25px;
  5740. display:flex;
  5741. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5742. font-weight:400;
  5743. font-style:normal;
  5744. font-size:12px;
  5745. line-height:25px;
  5746. }
  5747. #u47494 .text {
  5748. position:absolute;
  5749. align-self:center;
  5750. padding:0px 0px 0px 0px;
  5751. box-sizing:border-box;
  5752. width:100%;
  5753. }
  5754. #u47494_text {
  5755. border-width:0px;
  5756. white-space:nowrap;
  5757. text-transform:none;
  5758. }
  5759. #u47495_div {
  5760. border-width:0px;
  5761. position:absolute;
  5762. left:0px;
  5763. top:0px;
  5764. width:85px;
  5765. height:25px;
  5766. background:inherit;
  5767. background-color:rgba(255, 255, 255, 0);
  5768. border:none;
  5769. border-left:0px;
  5770. border-top:0px;
  5771. border-right:0px;
  5772. border-radius:0px;
  5773. border-bottom-right-radius:0px;
  5774. border-bottom-left-radius:0px;
  5775. -moz-box-shadow:none;
  5776. -webkit-box-shadow:none;
  5777. box-shadow:none;
  5778. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5779. font-weight:400;
  5780. font-style:normal;
  5781. font-size:12px;
  5782. line-height:25px;
  5783. }
  5784. #u47495 {
  5785. border-width:0px;
  5786. position:absolute;
  5787. left:1447px;
  5788. top:584px;
  5789. width:85px;
  5790. height:25px;
  5791. display:flex;
  5792. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5793. font-weight:400;
  5794. font-style:normal;
  5795. font-size:12px;
  5796. line-height:25px;
  5797. }
  5798. #u47495 .text {
  5799. position:absolute;
  5800. align-self:center;
  5801. padding:0px 0px 0px 0px;
  5802. box-sizing:border-box;
  5803. width:100%;
  5804. }
  5805. #u47495_text {
  5806. border-width:0px;
  5807. white-space:nowrap;
  5808. text-transform:none;
  5809. }
  5810. #u47496_div {
  5811. border-width:0px;
  5812. position:absolute;
  5813. left:0px;
  5814. top:0px;
  5815. width:85px;
  5816. height:25px;
  5817. background:inherit;
  5818. background-color:rgba(255, 255, 255, 0);
  5819. border:none;
  5820. border-left:0px;
  5821. border-top:0px;
  5822. border-right:0px;
  5823. border-radius:0px;
  5824. border-bottom-right-radius:0px;
  5825. border-bottom-left-radius:0px;
  5826. -moz-box-shadow:none;
  5827. -webkit-box-shadow:none;
  5828. box-shadow:none;
  5829. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5830. font-weight:400;
  5831. font-style:normal;
  5832. font-size:12px;
  5833. line-height:25px;
  5834. }
  5835. #u47496 {
  5836. border-width:0px;
  5837. position:absolute;
  5838. left:1342px;
  5839. top:609px;
  5840. width:85px;
  5841. height:25px;
  5842. display:flex;
  5843. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5844. font-weight:400;
  5845. font-style:normal;
  5846. font-size:12px;
  5847. line-height:25px;
  5848. }
  5849. #u47496 .text {
  5850. position:absolute;
  5851. align-self:center;
  5852. padding:0px 0px 0px 0px;
  5853. box-sizing:border-box;
  5854. width:100%;
  5855. }
  5856. #u47496_text {
  5857. border-width:0px;
  5858. white-space:nowrap;
  5859. text-transform:none;
  5860. }
  5861. #u47497_div {
  5862. border-width:0px;
  5863. position:absolute;
  5864. left:0px;
  5865. top:0px;
  5866. width:85px;
  5867. height:25px;
  5868. background:inherit;
  5869. background-color:rgba(255, 255, 255, 0);
  5870. border:none;
  5871. border-left:0px;
  5872. border-top:0px;
  5873. border-right:0px;
  5874. border-radius:0px;
  5875. border-bottom-right-radius:0px;
  5876. border-bottom-left-radius:0px;
  5877. -moz-box-shadow:none;
  5878. -webkit-box-shadow:none;
  5879. box-shadow:none;
  5880. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5881. font-weight:400;
  5882. font-style:normal;
  5883. font-size:12px;
  5884. line-height:25px;
  5885. }
  5886. #u47497 {
  5887. border-width:0px;
  5888. position:absolute;
  5889. left:1447px;
  5890. top:609px;
  5891. width:85px;
  5892. height:25px;
  5893. display:flex;
  5894. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5895. font-weight:400;
  5896. font-style:normal;
  5897. font-size:12px;
  5898. line-height:25px;
  5899. }
  5900. #u47497 .text {
  5901. position:absolute;
  5902. align-self:center;
  5903. padding:0px 0px 0px 0px;
  5904. box-sizing:border-box;
  5905. width:100%;
  5906. }
  5907. #u47497_text {
  5908. border-width:0px;
  5909. white-space:nowrap;
  5910. text-transform:none;
  5911. }
  5912. #u47498_img {
  5913. border-width:0px;
  5914. position:absolute;
  5915. left:0px;
  5916. top:0px;
  5917. width:75px;
  5918. height:90px;
  5919. }
  5920. #u47498 {
  5921. border-width:0px;
  5922. position:absolute;
  5923. left:1342px;
  5924. top:488px;
  5925. width:75px;
  5926. height:90px;
  5927. display:flex;
  5928. }
  5929. #u47498 .text {
  5930. position:absolute;
  5931. align-self:center;
  5932. padding:2px 2px 2px 2px;
  5933. box-sizing:border-box;
  5934. width:100%;
  5935. }
  5936. #u47498_text {
  5937. border-width:0px;
  5938. word-wrap:break-word;
  5939. text-transform:none;
  5940. visibility:hidden;
  5941. }
  5942. #u47499_img {
  5943. border-width:0px;
  5944. position:absolute;
  5945. left:0px;
  5946. top:0px;
  5947. width:30px;
  5948. height:30px;
  5949. }
  5950. #u47499 {
  5951. border-width:0px;
  5952. position:absolute;
  5953. left:1506px;
  5954. top:440px;
  5955. width:30px;
  5956. height:30px;
  5957. display:flex;
  5958. }
  5959. #u47499 .text {
  5960. position:absolute;
  5961. align-self:center;
  5962. padding:2px 2px 2px 2px;
  5963. box-sizing:border-box;
  5964. width:100%;
  5965. }
  5966. #u47499_text {
  5967. border-width:0px;
  5968. word-wrap:break-word;
  5969. text-transform:none;
  5970. visibility:hidden;
  5971. }
  5972. #u47500_div {
  5973. border-width:0px;
  5974. position:absolute;
  5975. left:0px;
  5976. top:0px;
  5977. width:100px;
  5978. height:25px;
  5979. background:inherit;
  5980. background-color:rgba(0, 137, 254, 1);
  5981. border:none;
  5982. border-radius:4px;
  5983. -moz-box-shadow:none;
  5984. -webkit-box-shadow:none;
  5985. box-shadow:none;
  5986. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5987. font-weight:400;
  5988. font-style:normal;
  5989. font-size:12px;
  5990. color:#FFFFFF;
  5991. text-align:center;
  5992. line-height:25px;
  5993. }
  5994. #u47500 {
  5995. border-width:0px;
  5996. position:absolute;
  5997. left:705px;
  5998. top:645px;
  5999. width:100px;
  6000. height:25px;
  6001. display:flex;
  6002. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6003. font-weight:400;
  6004. font-style:normal;
  6005. font-size:12px;
  6006. color:#FFFFFF;
  6007. text-align:center;
  6008. line-height:25px;
  6009. }
  6010. #u47500 .text {
  6011. position:absolute;
  6012. align-self:center;
  6013. padding:0px 0px 0px 0px;
  6014. box-sizing:border-box;
  6015. width:100%;
  6016. }
  6017. #u47500_text {
  6018. border-width:0px;
  6019. word-wrap:break-word;
  6020. text-transform:none;
  6021. }
  6022. #u47501_div {
  6023. border-width:0px;
  6024. position:absolute;
  6025. left:0px;
  6026. top:0px;
  6027. width:100px;
  6028. height:25px;
  6029. background:inherit;
  6030. background-color:rgba(0, 137, 254, 1);
  6031. border:none;
  6032. border-radius:4px;
  6033. -moz-box-shadow:none;
  6034. -webkit-box-shadow:none;
  6035. box-shadow:none;
  6036. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6037. font-weight:400;
  6038. font-style:normal;
  6039. font-size:12px;
  6040. color:#FFFFFF;
  6041. text-align:center;
  6042. line-height:25px;
  6043. }
  6044. #u47501 {
  6045. border-width:0px;
  6046. position:absolute;
  6047. left:941px;
  6048. top:645px;
  6049. width:100px;
  6050. height:25px;
  6051. display:flex;
  6052. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6053. font-weight:400;
  6054. font-style:normal;
  6055. font-size:12px;
  6056. color:#FFFFFF;
  6057. text-align:center;
  6058. line-height:25px;
  6059. }
  6060. #u47501 .text {
  6061. position:absolute;
  6062. align-self:center;
  6063. padding:0px 0px 0px 0px;
  6064. box-sizing:border-box;
  6065. width:100%;
  6066. }
  6067. #u47501_text {
  6068. border-width:0px;
  6069. word-wrap:break-word;
  6070. text-transform:none;
  6071. }
  6072. #u47502_div {
  6073. border-width:0px;
  6074. position:absolute;
  6075. left:0px;
  6076. top:0px;
  6077. width:100px;
  6078. height:25px;
  6079. background:inherit;
  6080. background-color:rgba(0, 137, 254, 1);
  6081. border:none;
  6082. border-radius:4px;
  6083. -moz-box-shadow:none;
  6084. -webkit-box-shadow:none;
  6085. box-shadow:none;
  6086. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6087. font-weight:400;
  6088. font-style:normal;
  6089. font-size:12px;
  6090. color:#FFFFFF;
  6091. text-align:center;
  6092. line-height:25px;
  6093. }
  6094. #u47502 {
  6095. border-width:0px;
  6096. position:absolute;
  6097. left:1187px;
  6098. top:645px;
  6099. width:100px;
  6100. height:25px;
  6101. display:flex;
  6102. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6103. font-weight:400;
  6104. font-style:normal;
  6105. font-size:12px;
  6106. color:#FFFFFF;
  6107. text-align:center;
  6108. line-height:25px;
  6109. }
  6110. #u47502 .text {
  6111. position:absolute;
  6112. align-self:center;
  6113. padding:0px 0px 0px 0px;
  6114. box-sizing:border-box;
  6115. width:100%;
  6116. }
  6117. #u47502_text {
  6118. border-width:0px;
  6119. word-wrap:break-word;
  6120. text-transform:none;
  6121. }
  6122. #u47503_div {
  6123. border-width:0px;
  6124. position:absolute;
  6125. left:0px;
  6126. top:0px;
  6127. width:100px;
  6128. height:25px;
  6129. background:inherit;
  6130. background-color:rgba(0, 137, 254, 1);
  6131. border:none;
  6132. border-radius:4px;
  6133. -moz-box-shadow:none;
  6134. -webkit-box-shadow:none;
  6135. box-shadow:none;
  6136. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6137. font-weight:400;
  6138. font-style:normal;
  6139. font-size:12px;
  6140. color:#FFFFFF;
  6141. text-align:center;
  6142. line-height:25px;
  6143. }
  6144. #u47503 {
  6145. border-width:0px;
  6146. position:absolute;
  6147. left:1436px;
  6148. top:645px;
  6149. width:100px;
  6150. height:25px;
  6151. display:flex;
  6152. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6153. font-weight:400;
  6154. font-style:normal;
  6155. font-size:12px;
  6156. color:#FFFFFF;
  6157. text-align:center;
  6158. line-height:25px;
  6159. }
  6160. #u47503 .text {
  6161. position:absolute;
  6162. align-self:center;
  6163. padding:0px 0px 0px 0px;
  6164. box-sizing:border-box;
  6165. width:100%;
  6166. }
  6167. #u47503_text {
  6168. border-width:0px;
  6169. word-wrap:break-word;
  6170. text-transform:none;
  6171. }
  6172. #u47504_div {
  6173. border-width:0px;
  6174. position:absolute;
  6175. left:0px;
  6176. top:0px;
  6177. width:100px;
  6178. height:25px;
  6179. background:inherit;
  6180. background-color:rgba(0, 137, 254, 1);
  6181. border:none;
  6182. border-radius:4px;
  6183. -moz-box-shadow:none;
  6184. -webkit-box-shadow:none;
  6185. box-shadow:none;
  6186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6187. font-weight:400;
  6188. font-style:normal;
  6189. font-size:12px;
  6190. color:#FFFFFF;
  6191. text-align:center;
  6192. line-height:25px;
  6193. }
  6194. #u47504 {
  6195. border-width:0px;
  6196. position:absolute;
  6197. left:450px;
  6198. top:645px;
  6199. width:100px;
  6200. height:25px;
  6201. display:flex;
  6202. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6203. font-weight:400;
  6204. font-style:normal;
  6205. font-size:12px;
  6206. color:#FFFFFF;
  6207. text-align:center;
  6208. line-height:25px;
  6209. }
  6210. #u47504 .text {
  6211. position:absolute;
  6212. align-self:center;
  6213. padding:0px 0px 0px 0px;
  6214. box-sizing:border-box;
  6215. width:100%;
  6216. }
  6217. #u47504_text {
  6218. border-width:0px;
  6219. word-wrap:break-word;
  6220. text-transform:none;
  6221. }
  6222. #u47505_div {
  6223. border-width:0px;
  6224. position:absolute;
  6225. left:0px;
  6226. top:0px;
  6227. width:73px;
  6228. height:50px;
  6229. background:inherit;
  6230. background-color:rgba(255, 255, 255, 0);
  6231. border:none;
  6232. border-left:0px;
  6233. border-top:0px;
  6234. border-right:0px;
  6235. border-radius:0px;
  6236. border-bottom-right-radius:0px;
  6237. border-bottom-left-radius:0px;
  6238. -moz-box-shadow:none;
  6239. -webkit-box-shadow:none;
  6240. box-shadow:none;
  6241. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6242. font-weight:500;
  6243. font-style:normal;
  6244. font-size:18px;
  6245. }
  6246. #u47505 {
  6247. border-width:0px;
  6248. position:absolute;
  6249. left:451px;
  6250. top:50px;
  6251. width:73px;
  6252. height:50px;
  6253. display:flex;
  6254. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6255. font-weight:500;
  6256. font-style:normal;
  6257. font-size:18px;
  6258. }
  6259. #u47505 .text {
  6260. position:absolute;
  6261. align-self:center;
  6262. padding:0px 0px 0px 0px;
  6263. box-sizing:border-box;
  6264. width:100%;
  6265. }
  6266. #u47505_text {
  6267. border-width:0px;
  6268. white-space:nowrap;
  6269. text-transform:none;
  6270. }
  6271. #u47506 {
  6272. border-width:0px;
  6273. position:absolute;
  6274. left:0px;
  6275. top:0px;
  6276. width:0px;
  6277. height:0px;
  6278. }
  6279. #u47507_div {
  6280. border-width:0px;
  6281. position:absolute;
  6282. left:0px;
  6283. top:0px;
  6284. width:140px;
  6285. height:30px;
  6286. background:inherit;
  6287. background-color:rgba(255, 255, 255, 1);
  6288. box-sizing:border-box;
  6289. border-width:1px;
  6290. border-style:solid;
  6291. border-color:rgba(215, 215, 215, 1);
  6292. border-radius:4px;
  6293. -moz-box-shadow:none;
  6294. -webkit-box-shadow:none;
  6295. box-shadow:none;
  6296. font-size:14px;
  6297. }
  6298. #u47507 {
  6299. border-width:0px;
  6300. position:absolute;
  6301. left:348px;
  6302. top:110px;
  6303. width:140px;
  6304. height:30px;
  6305. display:flex;
  6306. font-size:14px;
  6307. }
  6308. #u47507 .text {
  6309. position:absolute;
  6310. align-self:center;
  6311. padding:2px 2px 2px 2px;
  6312. box-sizing:border-box;
  6313. width:100%;
  6314. }
  6315. #u47507_text {
  6316. border-width:0px;
  6317. word-wrap:break-word;
  6318. text-transform:none;
  6319. visibility:hidden;
  6320. }
  6321. #u47508_input {
  6322. position:absolute;
  6323. left:0px;
  6324. top:0px;
  6325. width:134px;
  6326. height:23px;
  6327. padding:2px 2px 2px 2px;
  6328. font-family:'ArialMT', 'Arial', sans-serif;
  6329. font-weight:400;
  6330. font-style:normal;
  6331. font-size:12px;
  6332. letter-spacing:normal;
  6333. color:#AAAAAA;
  6334. vertical-align:none;
  6335. text-align:left;
  6336. text-transform:none;
  6337. background-color:transparent;
  6338. border-color:transparent;
  6339. }
  6340. #u47508_input.disabled {
  6341. position:absolute;
  6342. left:0px;
  6343. top:0px;
  6344. width:134px;
  6345. height:23px;
  6346. padding:2px 2px 2px 2px;
  6347. font-family:'ArialMT', 'Arial', sans-serif;
  6348. font-weight:400;
  6349. font-style:normal;
  6350. font-size:12px;
  6351. letter-spacing:normal;
  6352. color:#AAAAAA;
  6353. vertical-align:none;
  6354. text-align:left;
  6355. text-transform:none;
  6356. background-color:transparent;
  6357. border-color:transparent;
  6358. }
  6359. #u47508_div {
  6360. border-width:0px;
  6361. position:absolute;
  6362. left:0px;
  6363. top:0px;
  6364. width:134px;
  6365. height:23px;
  6366. background:inherit;
  6367. background-color:rgba(255, 255, 255, 1);
  6368. border:none;
  6369. border-radius:0px;
  6370. -moz-box-shadow:none;
  6371. -webkit-box-shadow:none;
  6372. box-shadow:none;
  6373. font-size:12px;
  6374. color:#AAAAAA;
  6375. }
  6376. #u47508 {
  6377. border-width:0px;
  6378. position:absolute;
  6379. left:352px;
  6380. top:112px;
  6381. width:134px;
  6382. height:23px;
  6383. display:flex;
  6384. font-size:12px;
  6385. color:#AAAAAA;
  6386. }
  6387. #u47508 .text {
  6388. position:absolute;
  6389. align-self:flex-start;
  6390. padding:2px 2px 2px 2px;
  6391. box-sizing:border-box;
  6392. width:100%;
  6393. }
  6394. #u47508_div.disabled {
  6395. border-width:0px;
  6396. position:absolute;
  6397. left:0px;
  6398. top:0px;
  6399. width:134px;
  6400. height:23px;
  6401. background:inherit;
  6402. background-color:rgba(240, 240, 240, 1);
  6403. border:none;
  6404. border-radius:0px;
  6405. -moz-box-shadow:none;
  6406. -webkit-box-shadow:none;
  6407. box-shadow:none;
  6408. font-size:12px;
  6409. color:#AAAAAA;
  6410. }
  6411. #u47508.disabled {
  6412. }
  6413. .u47508_input_option {
  6414. font-size:12px;
  6415. }
  6416. #u47509 {
  6417. border-width:0px;
  6418. position:absolute;
  6419. left:0px;
  6420. top:0px;
  6421. width:0px;
  6422. height:0px;
  6423. }
  6424. #u47510_div {
  6425. border-width:0px;
  6426. position:absolute;
  6427. left:0px;
  6428. top:0px;
  6429. width:59px;
  6430. height:30px;
  6431. background:inherit;
  6432. background-color:rgba(24, 144, 255, 1);
  6433. box-sizing:border-box;
  6434. border-width:1px;
  6435. border-style:solid;
  6436. border-color:rgba(0, 153, 255, 1);
  6437. border-radius:4px;
  6438. -moz-box-shadow:none;
  6439. -webkit-box-shadow:none;
  6440. box-shadow:none;
  6441. font-family:'Microsoft YaHei', sans-serif;
  6442. font-weight:400;
  6443. font-style:normal;
  6444. font-size:14px;
  6445. color:#FFFFFF;
  6446. }
  6447. #u47510 {
  6448. border-width:0px;
  6449. position:absolute;
  6450. left:1268px;
  6451. top:110px;
  6452. width:59px;
  6453. height:30px;
  6454. display:flex;
  6455. font-family:'Microsoft YaHei', sans-serif;
  6456. font-weight:400;
  6457. font-style:normal;
  6458. font-size:14px;
  6459. color:#FFFFFF;
  6460. }
  6461. #u47510 .text {
  6462. position:absolute;
  6463. align-self:center;
  6464. padding:5px 15px 5px 15px;
  6465. box-sizing:border-box;
  6466. width:100%;
  6467. }
  6468. #u47510_text {
  6469. border-width:0px;
  6470. white-space:nowrap;
  6471. text-transform:none;
  6472. }
  6473. #u47511_div {
  6474. border-width:0px;
  6475. position:absolute;
  6476. left:0px;
  6477. top:0px;
  6478. width:55px;
  6479. height:30px;
  6480. background:inherit;
  6481. background-color:rgba(255, 255, 255, 1);
  6482. box-sizing:border-box;
  6483. border-width:1px;
  6484. border-style:solid;
  6485. border-color:rgba(170, 170, 170, 1);
  6486. border-radius:4px;
  6487. -moz-box-shadow:none;
  6488. -webkit-box-shadow:none;
  6489. box-shadow:none;
  6490. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6491. font-weight:400;
  6492. font-style:normal;
  6493. font-size:12px;
  6494. color:#555555;
  6495. }
  6496. #u47511 {
  6497. border-width:0px;
  6498. position:absolute;
  6499. left:1337px;
  6500. top:110px;
  6501. width:55px;
  6502. height:30px;
  6503. display:flex;
  6504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6505. font-weight:400;
  6506. font-style:normal;
  6507. font-size:12px;
  6508. color:#555555;
  6509. }
  6510. #u47511 .text {
  6511. position:absolute;
  6512. align-self:center;
  6513. padding:5px 15px 5px 15px;
  6514. box-sizing:border-box;
  6515. width:100%;
  6516. }
  6517. #u47511_text {
  6518. border-width:0px;
  6519. white-space:nowrap;
  6520. text-transform:none;
  6521. }
  6522. #u47512 {
  6523. border-width:0px;
  6524. position:absolute;
  6525. left:0px;
  6526. top:0px;
  6527. width:0px;
  6528. height:0px;
  6529. }
  6530. #u47513_div {
  6531. border-width:0px;
  6532. position:absolute;
  6533. left:0px;
  6534. top:0px;
  6535. width:140px;
  6536. height:30px;
  6537. background:inherit;
  6538. background-color:rgba(255, 255, 255, 1);
  6539. box-sizing:border-box;
  6540. border-width:1px;
  6541. border-style:solid;
  6542. border-color:rgba(215, 215, 215, 1);
  6543. border-radius:4px;
  6544. -moz-box-shadow:none;
  6545. -webkit-box-shadow:none;
  6546. box-shadow:none;
  6547. font-size:11px;
  6548. }
  6549. #u47513 {
  6550. border-width:0px;
  6551. position:absolute;
  6552. left:818px;
  6553. top:110px;
  6554. width:140px;
  6555. height:30px;
  6556. display:flex;
  6557. font-size:11px;
  6558. }
  6559. #u47513 .text {
  6560. position:absolute;
  6561. align-self:center;
  6562. padding:2px 2px 2px 2px;
  6563. box-sizing:border-box;
  6564. width:100%;
  6565. }
  6566. #u47513_text {
  6567. border-width:0px;
  6568. word-wrap:break-word;
  6569. text-transform:none;
  6570. visibility:hidden;
  6571. }
  6572. #u47514_input {
  6573. position:absolute;
  6574. left:0px;
  6575. top:0px;
  6576. width:120px;
  6577. height:23px;
  6578. padding:2px 2px 2px 2px;
  6579. font-family:'ArialMT', 'Arial', sans-serif;
  6580. font-weight:400;
  6581. font-style:normal;
  6582. font-size:12px;
  6583. letter-spacing:normal;
  6584. color:#AAAAAA;
  6585. vertical-align:none;
  6586. text-align:left;
  6587. text-transform:none;
  6588. background-color:transparent;
  6589. border-color:transparent;
  6590. }
  6591. #u47514_input.disabled {
  6592. position:absolute;
  6593. left:0px;
  6594. top:0px;
  6595. width:120px;
  6596. height:23px;
  6597. padding:2px 2px 2px 2px;
  6598. font-family:'ArialMT', 'Arial', sans-serif;
  6599. font-weight:400;
  6600. font-style:normal;
  6601. font-size:12px;
  6602. letter-spacing:normal;
  6603. color:#AAAAAA;
  6604. vertical-align:none;
  6605. text-align:left;
  6606. text-transform:none;
  6607. background-color:transparent;
  6608. border-color:transparent;
  6609. }
  6610. #u47514_div {
  6611. border-width:0px;
  6612. position:absolute;
  6613. left:0px;
  6614. top:0px;
  6615. width:120px;
  6616. height:23px;
  6617. background:inherit;
  6618. background-color:rgba(255, 255, 255, 1);
  6619. border:none;
  6620. border-radius:0px;
  6621. -moz-box-shadow:none;
  6622. -webkit-box-shadow:none;
  6623. box-shadow:none;
  6624. font-size:12px;
  6625. color:#AAAAAA;
  6626. }
  6627. #u47514 {
  6628. border-width:0px;
  6629. position:absolute;
  6630. left:825px;
  6631. top:112px;
  6632. width:120px;
  6633. height:23px;
  6634. display:flex;
  6635. font-size:12px;
  6636. color:#AAAAAA;
  6637. }
  6638. #u47514 .text {
  6639. position:absolute;
  6640. align-self:flex-start;
  6641. padding:2px 2px 2px 2px;
  6642. box-sizing:border-box;
  6643. width:100%;
  6644. }
  6645. #u47514_div.disabled {
  6646. border-width:0px;
  6647. position:absolute;
  6648. left:0px;
  6649. top:0px;
  6650. width:120px;
  6651. height:23px;
  6652. background:inherit;
  6653. background-color:rgba(240, 240, 240, 1);
  6654. border:none;
  6655. border-radius:0px;
  6656. -moz-box-shadow:none;
  6657. -webkit-box-shadow:none;
  6658. box-shadow:none;
  6659. font-size:12px;
  6660. color:#AAAAAA;
  6661. }
  6662. #u47514.disabled {
  6663. }
  6664. .u47514_input_option {
  6665. font-size:12px;
  6666. }
  6667. #u47515 {
  6668. border-width:0px;
  6669. position:absolute;
  6670. left:0px;
  6671. top:0px;
  6672. width:0px;
  6673. height:0px;
  6674. }
  6675. #u47516_div {
  6676. border-width:0px;
  6677. position:absolute;
  6678. left:0px;
  6679. top:0px;
  6680. width:160px;
  6681. height:30px;
  6682. background:inherit;
  6683. background-color:rgba(255, 255, 255, 1);
  6684. box-sizing:border-box;
  6685. border-width:1px;
  6686. border-style:solid;
  6687. border-color:rgba(215, 215, 215, 1);
  6688. border-radius:4px;
  6689. -moz-box-shadow:none;
  6690. -webkit-box-shadow:none;
  6691. box-shadow:none;
  6692. font-size:14px;
  6693. }
  6694. #u47516 {
  6695. border-width:0px;
  6696. position:absolute;
  6697. left:648px;
  6698. top:110px;
  6699. width:160px;
  6700. height:30px;
  6701. display:flex;
  6702. font-size:14px;
  6703. }
  6704. #u47516 .text {
  6705. position:absolute;
  6706. align-self:center;
  6707. padding:2px 2px 2px 2px;
  6708. box-sizing:border-box;
  6709. width:100%;
  6710. }
  6711. #u47516_text {
  6712. border-width:0px;
  6713. word-wrap:break-word;
  6714. text-transform:none;
  6715. visibility:hidden;
  6716. }
  6717. #u47517_input {
  6718. position:absolute;
  6719. left:0px;
  6720. top:0px;
  6721. width:153px;
  6722. height:23px;
  6723. padding:2px 2px 2px 2px;
  6724. font-family:'ArialMT', 'Arial', sans-serif;
  6725. font-weight:400;
  6726. font-style:normal;
  6727. font-size:14px;
  6728. letter-spacing:normal;
  6729. color:#AAAAAA;
  6730. vertical-align:none;
  6731. text-align:left;
  6732. text-transform:none;
  6733. background-color:transparent;
  6734. border-color:transparent;
  6735. }
  6736. #u47517_input.disabled {
  6737. position:absolute;
  6738. left:0px;
  6739. top:0px;
  6740. width:153px;
  6741. height:23px;
  6742. padding:2px 2px 2px 2px;
  6743. font-family:'ArialMT', 'Arial', sans-serif;
  6744. font-weight:400;
  6745. font-style:normal;
  6746. font-size:14px;
  6747. letter-spacing:normal;
  6748. color:#AAAAAA;
  6749. vertical-align:none;
  6750. text-align:left;
  6751. text-transform:none;
  6752. background-color:transparent;
  6753. border-color:transparent;
  6754. }
  6755. #u47517_div {
  6756. border-width:0px;
  6757. position:absolute;
  6758. left:0px;
  6759. top:0px;
  6760. width:153px;
  6761. height:23px;
  6762. background:inherit;
  6763. background-color:rgba(255, 255, 255, 1);
  6764. border:none;
  6765. border-radius:0px;
  6766. -moz-box-shadow:none;
  6767. -webkit-box-shadow:none;
  6768. box-shadow:none;
  6769. font-size:14px;
  6770. color:#AAAAAA;
  6771. }
  6772. #u47517 {
  6773. border-width:0px;
  6774. position:absolute;
  6775. left:653px;
  6776. top:112px;
  6777. width:153px;
  6778. height:23px;
  6779. display:flex;
  6780. font-size:14px;
  6781. color:#AAAAAA;
  6782. }
  6783. #u47517 .text {
  6784. position:absolute;
  6785. align-self:flex-start;
  6786. padding:2px 2px 2px 2px;
  6787. box-sizing:border-box;
  6788. width:100%;
  6789. }
  6790. #u47517_div.disabled {
  6791. border-width:0px;
  6792. position:absolute;
  6793. left:0px;
  6794. top:0px;
  6795. width:153px;
  6796. height:23px;
  6797. background:inherit;
  6798. background-color:rgba(240, 240, 240, 1);
  6799. border:none;
  6800. border-radius:0px;
  6801. -moz-box-shadow:none;
  6802. -webkit-box-shadow:none;
  6803. box-shadow:none;
  6804. font-size:14px;
  6805. color:#AAAAAA;
  6806. }
  6807. #u47517.disabled {
  6808. }
  6809. .u47517_input_option {
  6810. font-size:14px;
  6811. }
  6812. #u47518 {
  6813. border-width:0px;
  6814. position:absolute;
  6815. left:0px;
  6816. top:0px;
  6817. width:0px;
  6818. height:0px;
  6819. }
  6820. #u47519_div {
  6821. border-width:0px;
  6822. position:absolute;
  6823. left:0px;
  6824. top:0px;
  6825. width:140px;
  6826. height:30px;
  6827. background:inherit;
  6828. background-color:rgba(255, 255, 255, 1);
  6829. box-sizing:border-box;
  6830. border-width:1px;
  6831. border-style:solid;
  6832. border-color:rgba(215, 215, 215, 1);
  6833. border-radius:4px;
  6834. -moz-box-shadow:none;
  6835. -webkit-box-shadow:none;
  6836. box-shadow:none;
  6837. font-size:11px;
  6838. }
  6839. #u47519 {
  6840. border-width:0px;
  6841. position:absolute;
  6842. left:498px;
  6843. top:110px;
  6844. width:140px;
  6845. height:30px;
  6846. display:flex;
  6847. font-size:11px;
  6848. }
  6849. #u47519 .text {
  6850. position:absolute;
  6851. align-self:center;
  6852. padding:2px 2px 2px 2px;
  6853. box-sizing:border-box;
  6854. width:100%;
  6855. }
  6856. #u47519_text {
  6857. border-width:0px;
  6858. word-wrap:break-word;
  6859. text-transform:none;
  6860. visibility:hidden;
  6861. }
  6862. #u47520_input {
  6863. position:absolute;
  6864. left:0px;
  6865. top:0px;
  6866. width:120px;
  6867. height:23px;
  6868. padding:2px 2px 2px 2px;
  6869. font-family:'ArialMT', 'Arial', sans-serif;
  6870. font-weight:400;
  6871. font-style:normal;
  6872. font-size:11px;
  6873. letter-spacing:normal;
  6874. color:#AAAAAA;
  6875. vertical-align:none;
  6876. text-align:left;
  6877. text-transform:none;
  6878. background-color:transparent;
  6879. border-color:transparent;
  6880. }
  6881. #u47520_input.disabled {
  6882. position:absolute;
  6883. left:0px;
  6884. top:0px;
  6885. width:120px;
  6886. height:23px;
  6887. padding:2px 2px 2px 2px;
  6888. font-family:'ArialMT', 'Arial', sans-serif;
  6889. font-weight:400;
  6890. font-style:normal;
  6891. font-size:11px;
  6892. letter-spacing:normal;
  6893. color:#AAAAAA;
  6894. vertical-align:none;
  6895. text-align:left;
  6896. text-transform:none;
  6897. background-color:transparent;
  6898. border-color:transparent;
  6899. }
  6900. #u47520_div {
  6901. border-width:0px;
  6902. position:absolute;
  6903. left:0px;
  6904. top:0px;
  6905. width:120px;
  6906. height:23px;
  6907. background:inherit;
  6908. background-color:rgba(255, 255, 255, 1);
  6909. border:none;
  6910. border-radius:0px;
  6911. -moz-box-shadow:none;
  6912. -webkit-box-shadow:none;
  6913. box-shadow:none;
  6914. font-size:11px;
  6915. color:#AAAAAA;
  6916. }
  6917. #u47520 {
  6918. border-width:0px;
  6919. position:absolute;
  6920. left:505px;
  6921. top:112px;
  6922. width:120px;
  6923. height:23px;
  6924. display:flex;
  6925. font-size:11px;
  6926. color:#AAAAAA;
  6927. }
  6928. #u47520 .text {
  6929. position:absolute;
  6930. align-self:flex-start;
  6931. padding:2px 2px 2px 2px;
  6932. box-sizing:border-box;
  6933. width:100%;
  6934. }
  6935. #u47520_div.disabled {
  6936. border-width:0px;
  6937. position:absolute;
  6938. left:0px;
  6939. top:0px;
  6940. width:120px;
  6941. height:23px;
  6942. background:inherit;
  6943. background-color:rgba(240, 240, 240, 1);
  6944. border:none;
  6945. border-radius:0px;
  6946. -moz-box-shadow:none;
  6947. -webkit-box-shadow:none;
  6948. box-shadow:none;
  6949. font-size:11px;
  6950. color:#AAAAAA;
  6951. }
  6952. #u47520.disabled {
  6953. }
  6954. .u47520_input_option {
  6955. font-size:11px;
  6956. }
  6957. #u47521 {
  6958. border-width:0px;
  6959. position:absolute;
  6960. left:0px;
  6961. top:0px;
  6962. width:0px;
  6963. height:0px;
  6964. }
  6965. #u47522_div {
  6966. border-width:0px;
  6967. position:absolute;
  6968. left:0px;
  6969. top:0px;
  6970. width:140px;
  6971. height:30px;
  6972. background:inherit;
  6973. background-color:rgba(255, 255, 255, 1);
  6974. box-sizing:border-box;
  6975. border-width:1px;
  6976. border-style:solid;
  6977. border-color:rgba(215, 215, 215, 1);
  6978. border-radius:4px;
  6979. -moz-box-shadow:none;
  6980. -webkit-box-shadow:none;
  6981. box-shadow:none;
  6982. font-size:11px;
  6983. }
  6984. #u47522 {
  6985. border-width:0px;
  6986. position:absolute;
  6987. left:968px;
  6988. top:110px;
  6989. width:140px;
  6990. height:30px;
  6991. display:flex;
  6992. font-size:11px;
  6993. }
  6994. #u47522 .text {
  6995. position:absolute;
  6996. align-self:center;
  6997. padding:2px 2px 2px 2px;
  6998. box-sizing:border-box;
  6999. width:100%;
  7000. }
  7001. #u47522_text {
  7002. border-width:0px;
  7003. word-wrap:break-word;
  7004. text-transform:none;
  7005. visibility:hidden;
  7006. }
  7007. #u47523_input {
  7008. position:absolute;
  7009. left:0px;
  7010. top:0px;
  7011. width:120px;
  7012. height:23px;
  7013. padding:2px 2px 2px 2px;
  7014. font-family:'ArialMT', 'Arial', sans-serif;
  7015. font-weight:400;
  7016. font-style:normal;
  7017. font-size:12px;
  7018. letter-spacing:normal;
  7019. color:#AAAAAA;
  7020. vertical-align:none;
  7021. text-align:left;
  7022. text-transform:none;
  7023. background-color:transparent;
  7024. border-color:transparent;
  7025. }
  7026. #u47523_input.disabled {
  7027. position:absolute;
  7028. left:0px;
  7029. top:0px;
  7030. width:120px;
  7031. height:23px;
  7032. padding:2px 2px 2px 2px;
  7033. font-family:'ArialMT', 'Arial', sans-serif;
  7034. font-weight:400;
  7035. font-style:normal;
  7036. font-size:12px;
  7037. letter-spacing:normal;
  7038. color:#AAAAAA;
  7039. vertical-align:none;
  7040. text-align:left;
  7041. text-transform:none;
  7042. background-color:transparent;
  7043. border-color:transparent;
  7044. }
  7045. #u47523_div {
  7046. border-width:0px;
  7047. position:absolute;
  7048. left:0px;
  7049. top:0px;
  7050. width:120px;
  7051. height:23px;
  7052. background:inherit;
  7053. background-color:rgba(255, 255, 255, 1);
  7054. border:none;
  7055. border-radius:0px;
  7056. -moz-box-shadow:none;
  7057. -webkit-box-shadow:none;
  7058. box-shadow:none;
  7059. font-size:12px;
  7060. color:#AAAAAA;
  7061. }
  7062. #u47523 {
  7063. border-width:0px;
  7064. position:absolute;
  7065. left:975px;
  7066. top:112px;
  7067. width:120px;
  7068. height:23px;
  7069. display:flex;
  7070. font-size:12px;
  7071. color:#AAAAAA;
  7072. }
  7073. #u47523 .text {
  7074. position:absolute;
  7075. align-self:flex-start;
  7076. padding:2px 2px 2px 2px;
  7077. box-sizing:border-box;
  7078. width:100%;
  7079. }
  7080. #u47523_div.disabled {
  7081. border-width:0px;
  7082. position:absolute;
  7083. left:0px;
  7084. top:0px;
  7085. width:120px;
  7086. height:23px;
  7087. background:inherit;
  7088. background-color:rgba(240, 240, 240, 1);
  7089. border:none;
  7090. border-radius:0px;
  7091. -moz-box-shadow:none;
  7092. -webkit-box-shadow:none;
  7093. box-shadow:none;
  7094. font-size:12px;
  7095. color:#AAAAAA;
  7096. }
  7097. #u47523.disabled {
  7098. }
  7099. .u47523_input_option {
  7100. font-size:12px;
  7101. }
  7102. #u47524 {
  7103. border-width:0px;
  7104. position:absolute;
  7105. left:0px;
  7106. top:0px;
  7107. width:0px;
  7108. height:0px;
  7109. }
  7110. #u47525_div {
  7111. border-width:0px;
  7112. position:absolute;
  7113. left:0px;
  7114. top:0px;
  7115. width:140px;
  7116. height:30px;
  7117. background:inherit;
  7118. background-color:rgba(255, 255, 255, 1);
  7119. box-sizing:border-box;
  7120. border-width:1px;
  7121. border-style:solid;
  7122. border-color:rgba(215, 215, 215, 1);
  7123. border-radius:4px;
  7124. -moz-box-shadow:none;
  7125. -webkit-box-shadow:none;
  7126. box-shadow:none;
  7127. font-size:11px;
  7128. }
  7129. #u47525 {
  7130. border-width:0px;
  7131. position:absolute;
  7132. left:1118px;
  7133. top:110px;
  7134. width:140px;
  7135. height:30px;
  7136. display:flex;
  7137. font-size:11px;
  7138. }
  7139. #u47525 .text {
  7140. position:absolute;
  7141. align-self:center;
  7142. padding:2px 2px 2px 2px;
  7143. box-sizing:border-box;
  7144. width:100%;
  7145. }
  7146. #u47525_text {
  7147. border-width:0px;
  7148. word-wrap:break-word;
  7149. text-transform:none;
  7150. visibility:hidden;
  7151. }
  7152. #u47526_input {
  7153. position:absolute;
  7154. left:0px;
  7155. top:0px;
  7156. width:120px;
  7157. height:23px;
  7158. padding:2px 2px 2px 2px;
  7159. font-family:'ArialMT', 'Arial', sans-serif;
  7160. font-weight:400;
  7161. font-style:normal;
  7162. font-size:12px;
  7163. letter-spacing:normal;
  7164. color:#AAAAAA;
  7165. vertical-align:none;
  7166. text-align:left;
  7167. text-transform:none;
  7168. background-color:transparent;
  7169. border-color:transparent;
  7170. }
  7171. #u47526_input.disabled {
  7172. position:absolute;
  7173. left:0px;
  7174. top:0px;
  7175. width:120px;
  7176. height:23px;
  7177. padding:2px 2px 2px 2px;
  7178. font-family:'ArialMT', 'Arial', sans-serif;
  7179. font-weight:400;
  7180. font-style:normal;
  7181. font-size:12px;
  7182. letter-spacing:normal;
  7183. color:#AAAAAA;
  7184. vertical-align:none;
  7185. text-align:left;
  7186. text-transform:none;
  7187. background-color:transparent;
  7188. border-color:transparent;
  7189. }
  7190. #u47526_div {
  7191. border-width:0px;
  7192. position:absolute;
  7193. left:0px;
  7194. top:0px;
  7195. width:120px;
  7196. height:23px;
  7197. background:inherit;
  7198. background-color:rgba(255, 255, 255, 1);
  7199. border:none;
  7200. border-radius:0px;
  7201. -moz-box-shadow:none;
  7202. -webkit-box-shadow:none;
  7203. box-shadow:none;
  7204. font-size:12px;
  7205. color:#AAAAAA;
  7206. }
  7207. #u47526 {
  7208. border-width:0px;
  7209. position:absolute;
  7210. left:1125px;
  7211. top:112px;
  7212. width:120px;
  7213. height:23px;
  7214. display:flex;
  7215. font-size:12px;
  7216. color:#AAAAAA;
  7217. }
  7218. #u47526 .text {
  7219. position:absolute;
  7220. align-self:flex-start;
  7221. padding:2px 2px 2px 2px;
  7222. box-sizing:border-box;
  7223. width:100%;
  7224. }
  7225. #u47526_div.disabled {
  7226. border-width:0px;
  7227. position:absolute;
  7228. left:0px;
  7229. top:0px;
  7230. width:120px;
  7231. height:23px;
  7232. background:inherit;
  7233. background-color:rgba(240, 240, 240, 1);
  7234. border:none;
  7235. border-radius:0px;
  7236. -moz-box-shadow:none;
  7237. -webkit-box-shadow:none;
  7238. box-shadow:none;
  7239. font-size:12px;
  7240. color:#AAAAAA;
  7241. }
  7242. #u47526.disabled {
  7243. }
  7244. .u47526_input_option {
  7245. font-size:12px;
  7246. }
  7247. #u47527 {
  7248. border-width:0px;
  7249. position:absolute;
  7250. left:0px;
  7251. top:0px;
  7252. width:0px;
  7253. height:0px;
  7254. }
  7255. #u47528_div {
  7256. border-width:0px;
  7257. position:absolute;
  7258. left:0px;
  7259. top:0px;
  7260. width:1265px;
  7261. height:1193px;
  7262. background:inherit;
  7263. background-color:rgba(255, 255, 255, 1);
  7264. border:none;
  7265. border-radius:0px;
  7266. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  7267. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  7268. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  7269. color:#1890FF;
  7270. }
  7271. #u47528 {
  7272. border-width:0px;
  7273. position:absolute;
  7274. left:1640px;
  7275. top:50px;
  7276. width:1265px;
  7277. height:1193px;
  7278. display:flex;
  7279. color:#1890FF;
  7280. }
  7281. #u47528 .text {
  7282. position:absolute;
  7283. align-self:center;
  7284. padding:2px 2px 2px 2px;
  7285. box-sizing:border-box;
  7286. width:100%;
  7287. }
  7288. #u47528_text {
  7289. border-width:0px;
  7290. word-wrap:break-word;
  7291. text-transform:none;
  7292. visibility:hidden;
  7293. }
  7294. #u47529_div {
  7295. border-width:0px;
  7296. position:absolute;
  7297. left:0px;
  7298. top:0px;
  7299. width:73px;
  7300. height:50px;
  7301. background:inherit;
  7302. background-color:rgba(255, 255, 255, 0);
  7303. border:none;
  7304. border-left:0px;
  7305. border-top:0px;
  7306. border-right:0px;
  7307. border-radius:0px;
  7308. border-bottom-right-radius:0px;
  7309. border-bottom-left-radius:0px;
  7310. -moz-box-shadow:none;
  7311. -webkit-box-shadow:none;
  7312. box-shadow:none;
  7313. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7314. font-weight:500;
  7315. font-style:normal;
  7316. font-size:18px;
  7317. }
  7318. #u47529 {
  7319. border-width:0px;
  7320. position:absolute;
  7321. left:1659px;
  7322. top:50px;
  7323. width:73px;
  7324. height:50px;
  7325. display:flex;
  7326. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7327. font-weight:500;
  7328. font-style:normal;
  7329. font-size:18px;
  7330. }
  7331. #u47529 .text {
  7332. position:absolute;
  7333. align-self:center;
  7334. padding:0px 0px 0px 0px;
  7335. box-sizing:border-box;
  7336. width:100%;
  7337. }
  7338. #u47529_text {
  7339. border-width:0px;
  7340. white-space:nowrap;
  7341. text-transform:none;
  7342. }
  7343. #u47530_div {
  7344. border-width:0px;
  7345. position:absolute;
  7346. left:0px;
  7347. top:0px;
  7348. width:73px;
  7349. height:50px;
  7350. background:inherit;
  7351. background-color:rgba(255, 255, 255, 0);
  7352. border:none;
  7353. border-left:0px;
  7354. border-top:0px;
  7355. border-right:0px;
  7356. border-radius:0px;
  7357. border-bottom-right-radius:0px;
  7358. border-bottom-left-radius:0px;
  7359. -moz-box-shadow:none;
  7360. -webkit-box-shadow:none;
  7361. box-shadow:none;
  7362. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7363. font-weight:500;
  7364. font-style:normal;
  7365. font-size:18px;
  7366. color:#1890FF;
  7367. }
  7368. #u47530 {
  7369. border-width:0px;
  7370. position:absolute;
  7371. left:1762px;
  7372. top:50px;
  7373. width:73px;
  7374. height:50px;
  7375. display:flex;
  7376. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7377. font-weight:500;
  7378. font-style:normal;
  7379. font-size:18px;
  7380. color:#1890FF;
  7381. }
  7382. #u47530 .text {
  7383. position:absolute;
  7384. align-self:center;
  7385. padding:0px 0px 0px 0px;
  7386. box-sizing:border-box;
  7387. width:100%;
  7388. }
  7389. #u47530_text {
  7390. border-width:0px;
  7391. white-space:nowrap;
  7392. text-transform:none;
  7393. }
  7394. #u47531 {
  7395. border-width:0px;
  7396. position:absolute;
  7397. left:0px;
  7398. top:0px;
  7399. width:0px;
  7400. height:0px;
  7401. }
  7402. #u47532 {
  7403. border-width:0px;
  7404. position:absolute;
  7405. left:0px;
  7406. top:0px;
  7407. width:0px;
  7408. height:0px;
  7409. }
  7410. #u47533_img {
  7411. border-width:0px;
  7412. position:absolute;
  7413. left:0px;
  7414. top:0px;
  7415. width:993px;
  7416. height:950px;
  7417. }
  7418. #u47533 {
  7419. border-width:0px;
  7420. position:absolute;
  7421. left:1889px;
  7422. top:115px;
  7423. width:993px;
  7424. height:950px;
  7425. display:flex;
  7426. }
  7427. #u47533 .text {
  7428. position:absolute;
  7429. align-self:center;
  7430. padding:2px 2px 2px 2px;
  7431. box-sizing:border-box;
  7432. width:100%;
  7433. }
  7434. #u47533_text {
  7435. border-width:0px;
  7436. word-wrap:break-word;
  7437. text-transform:none;
  7438. visibility:hidden;
  7439. }
  7440. #u47534_div {
  7441. border-width:0px;
  7442. position:absolute;
  7443. left:0px;
  7444. top:0px;
  7445. width:29px;
  7446. height:17px;
  7447. background:inherit;
  7448. background-color:rgba(0, 191, 191, 1);
  7449. border:none;
  7450. border-radius:4px;
  7451. -moz-box-shadow:none;
  7452. -webkit-box-shadow:none;
  7453. box-shadow:none;
  7454. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7455. font-weight:400;
  7456. font-style:normal;
  7457. font-size:10px;
  7458. color:#FFFFFF;
  7459. }
  7460. #u47534 {
  7461. border-width:0px;
  7462. position:absolute;
  7463. left:1889px;
  7464. top:118px;
  7465. width:29px;
  7466. height:17px;
  7467. display:flex;
  7468. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7469. font-weight:400;
  7470. font-style:normal;
  7471. font-size:10px;
  7472. color:#FFFFFF;
  7473. }
  7474. #u47534 .text {
  7475. position:absolute;
  7476. align-self:center;
  7477. padding:5px 0px 5px 0px;
  7478. box-sizing:border-box;
  7479. width:100%;
  7480. }
  7481. #u47534_text {
  7482. border-width:0px;
  7483. word-wrap:break-word;
  7484. text-transform:none;
  7485. }
  7486. #u47535_div {
  7487. border-width:0px;
  7488. position:absolute;
  7489. left:0px;
  7490. top:0px;
  7491. width:29px;
  7492. height:17px;
  7493. background:inherit;
  7494. background-color:rgba(217, 0, 27, 1);
  7495. border:none;
  7496. border-radius:4px;
  7497. -moz-box-shadow:none;
  7498. -webkit-box-shadow:none;
  7499. box-shadow:none;
  7500. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7501. font-weight:400;
  7502. font-style:normal;
  7503. font-size:10px;
  7504. color:#FFFFFF;
  7505. }
  7506. #u47535 {
  7507. border-width:0px;
  7508. position:absolute;
  7509. left:2556px;
  7510. top:115px;
  7511. width:29px;
  7512. height:17px;
  7513. display:flex;
  7514. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7515. font-weight:400;
  7516. font-style:normal;
  7517. font-size:10px;
  7518. color:#FFFFFF;
  7519. }
  7520. #u47535 .text {
  7521. position:absolute;
  7522. align-self:center;
  7523. padding:5px 0px 5px 0px;
  7524. box-sizing:border-box;
  7525. width:100%;
  7526. }
  7527. #u47535_text {
  7528. border-width:0px;
  7529. word-wrap:break-word;
  7530. text-transform:none;
  7531. }
  7532. #u47536_div {
  7533. border-width:0px;
  7534. position:absolute;
  7535. left:0px;
  7536. top:0px;
  7537. width:29px;
  7538. height:17px;
  7539. background:inherit;
  7540. background-color:rgba(245, 154, 35, 1);
  7541. border:none;
  7542. border-radius:4px;
  7543. -moz-box-shadow:none;
  7544. -webkit-box-shadow:none;
  7545. box-shadow:none;
  7546. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7547. font-weight:400;
  7548. font-style:normal;
  7549. font-size:10px;
  7550. color:#FFFFFF;
  7551. }
  7552. #u47536 {
  7553. border-width:0px;
  7554. position:absolute;
  7555. left:1889px;
  7556. top:346px;
  7557. width:29px;
  7558. height:17px;
  7559. display:flex;
  7560. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7561. font-weight:400;
  7562. font-style:normal;
  7563. font-size:10px;
  7564. color:#FFFFFF;
  7565. }
  7566. #u47536 .text {
  7567. position:absolute;
  7568. align-self:center;
  7569. padding:5px 0px 5px 0px;
  7570. box-sizing:border-box;
  7571. width:100%;
  7572. }
  7573. #u47536_text {
  7574. border-width:0px;
  7575. word-wrap:break-word;
  7576. text-transform:none;
  7577. }
  7578. #u47537_div {
  7579. border-width:0px;
  7580. position:absolute;
  7581. left:0px;
  7582. top:0px;
  7583. width:29px;
  7584. height:17px;
  7585. background:inherit;
  7586. background-color:rgba(0, 191, 191, 1);
  7587. border:none;
  7588. border-radius:4px;
  7589. -moz-box-shadow:none;
  7590. -webkit-box-shadow:none;
  7591. box-shadow:none;
  7592. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7593. font-weight:400;
  7594. font-style:normal;
  7595. font-size:10px;
  7596. color:#FFFFFF;
  7597. }
  7598. #u47537 {
  7599. border-width:0px;
  7600. position:absolute;
  7601. left:2220px;
  7602. top:115px;
  7603. width:29px;
  7604. height:17px;
  7605. display:flex;
  7606. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7607. font-weight:400;
  7608. font-style:normal;
  7609. font-size:10px;
  7610. color:#FFFFFF;
  7611. }
  7612. #u47537 .text {
  7613. position:absolute;
  7614. align-self:center;
  7615. padding:5px 0px 5px 0px;
  7616. box-sizing:border-box;
  7617. width:100%;
  7618. }
  7619. #u47537_text {
  7620. border-width:0px;
  7621. word-wrap:break-word;
  7622. text-transform:none;
  7623. }
  7624. #u47538_div {
  7625. border-width:0px;
  7626. position:absolute;
  7627. left:0px;
  7628. top:0px;
  7629. width:29px;
  7630. height:17px;
  7631. background:inherit;
  7632. background-color:rgba(0, 191, 191, 1);
  7633. border:none;
  7634. border-radius:4px;
  7635. -moz-box-shadow:none;
  7636. -webkit-box-shadow:none;
  7637. box-shadow:none;
  7638. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7639. font-weight:400;
  7640. font-style:normal;
  7641. font-size:10px;
  7642. color:#FFFFFF;
  7643. }
  7644. #u47538 {
  7645. border-width:0px;
  7646. position:absolute;
  7647. left:2220px;
  7648. top:349px;
  7649. width:29px;
  7650. height:17px;
  7651. display:flex;
  7652. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7653. font-weight:400;
  7654. font-style:normal;
  7655. font-size:10px;
  7656. color:#FFFFFF;
  7657. }
  7658. #u47538 .text {
  7659. position:absolute;
  7660. align-self:center;
  7661. padding:5px 0px 5px 0px;
  7662. box-sizing:border-box;
  7663. width:100%;
  7664. }
  7665. #u47538_text {
  7666. border-width:0px;
  7667. word-wrap:break-word;
  7668. text-transform:none;
  7669. }
  7670. #u47539_div {
  7671. border-width:0px;
  7672. position:absolute;
  7673. left:0px;
  7674. top:0px;
  7675. width:29px;
  7676. height:17px;
  7677. background:inherit;
  7678. background-color:rgba(0, 191, 191, 1);
  7679. border:none;
  7680. border-radius:4px;
  7681. -moz-box-shadow:none;
  7682. -webkit-box-shadow:none;
  7683. box-shadow:none;
  7684. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7685. font-weight:400;
  7686. font-style:normal;
  7687. font-size:10px;
  7688. color:#FFFFFF;
  7689. }
  7690. #u47539 {
  7691. border-width:0px;
  7692. position:absolute;
  7693. left:2550px;
  7694. top:346px;
  7695. width:29px;
  7696. height:17px;
  7697. display:flex;
  7698. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7699. font-weight:400;
  7700. font-style:normal;
  7701. font-size:10px;
  7702. color:#FFFFFF;
  7703. }
  7704. #u47539 .text {
  7705. position:absolute;
  7706. align-self:center;
  7707. padding:5px 0px 5px 0px;
  7708. box-sizing:border-box;
  7709. width:100%;
  7710. }
  7711. #u47539_text {
  7712. border-width:0px;
  7713. word-wrap:break-word;
  7714. text-transform:none;
  7715. }
  7716. #u47540_div {
  7717. border-width:0px;
  7718. position:absolute;
  7719. left:0px;
  7720. top:0px;
  7721. width:29px;
  7722. height:17px;
  7723. background:inherit;
  7724. background-color:rgba(0, 191, 191, 1);
  7725. border:none;
  7726. border-radius:4px;
  7727. -moz-box-shadow:none;
  7728. -webkit-box-shadow:none;
  7729. box-shadow:none;
  7730. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7731. font-weight:400;
  7732. font-style:normal;
  7733. font-size:10px;
  7734. color:#FFFFFF;
  7735. }
  7736. #u47540 {
  7737. border-width:0px;
  7738. position:absolute;
  7739. left:2220px;
  7740. top:602px;
  7741. width:29px;
  7742. height:17px;
  7743. display:flex;
  7744. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7745. font-weight:400;
  7746. font-style:normal;
  7747. font-size:10px;
  7748. color:#FFFFFF;
  7749. }
  7750. #u47540 .text {
  7751. position:absolute;
  7752. align-self:center;
  7753. padding:5px 0px 5px 0px;
  7754. box-sizing:border-box;
  7755. width:100%;
  7756. }
  7757. #u47540_text {
  7758. border-width:0px;
  7759. word-wrap:break-word;
  7760. text-transform:none;
  7761. }
  7762. #u47541_div {
  7763. border-width:0px;
  7764. position:absolute;
  7765. left:0px;
  7766. top:0px;
  7767. width:29px;
  7768. height:17px;
  7769. background:inherit;
  7770. background-color:rgba(0, 191, 191, 1);
  7771. border:none;
  7772. border-radius:4px;
  7773. -moz-box-shadow:none;
  7774. -webkit-box-shadow:none;
  7775. box-shadow:none;
  7776. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7777. font-weight:400;
  7778. font-style:normal;
  7779. font-size:10px;
  7780. color:#FFFFFF;
  7781. }
  7782. #u47541 {
  7783. border-width:0px;
  7784. position:absolute;
  7785. left:2550px;
  7786. top:598px;
  7787. width:29px;
  7788. height:17px;
  7789. display:flex;
  7790. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7791. font-weight:400;
  7792. font-style:normal;
  7793. font-size:10px;
  7794. color:#FFFFFF;
  7795. }
  7796. #u47541 .text {
  7797. position:absolute;
  7798. align-self:center;
  7799. padding:5px 0px 5px 0px;
  7800. box-sizing:border-box;
  7801. width:100%;
  7802. }
  7803. #u47541_text {
  7804. border-width:0px;
  7805. word-wrap:break-word;
  7806. text-transform:none;
  7807. }
  7808. #u47542_div {
  7809. border-width:0px;
  7810. position:absolute;
  7811. left:0px;
  7812. top:0px;
  7813. width:29px;
  7814. height:17px;
  7815. background:inherit;
  7816. background-color:rgba(0, 191, 191, 1);
  7817. border:none;
  7818. border-radius:4px;
  7819. -moz-box-shadow:none;
  7820. -webkit-box-shadow:none;
  7821. box-shadow:none;
  7822. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7823. font-weight:400;
  7824. font-style:normal;
  7825. font-size:10px;
  7826. color:#FFFFFF;
  7827. }
  7828. #u47542 {
  7829. border-width:0px;
  7830. position:absolute;
  7831. left:1889px;
  7832. top:602px;
  7833. width:29px;
  7834. height:17px;
  7835. display:flex;
  7836. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7837. font-weight:400;
  7838. font-style:normal;
  7839. font-size:10px;
  7840. color:#FFFFFF;
  7841. }
  7842. #u47542 .text {
  7843. position:absolute;
  7844. align-self:center;
  7845. padding:5px 0px 5px 0px;
  7846. box-sizing:border-box;
  7847. width:100%;
  7848. }
  7849. #u47542_text {
  7850. border-width:0px;
  7851. word-wrap:break-word;
  7852. text-transform:none;
  7853. }
  7854. #u47543_div {
  7855. border-width:0px;
  7856. position:absolute;
  7857. left:0px;
  7858. top:0px;
  7859. width:29px;
  7860. height:17px;
  7861. background:inherit;
  7862. background-color:rgba(0, 191, 191, 1);
  7863. border:none;
  7864. border-radius:4px;
  7865. -moz-box-shadow:none;
  7866. -webkit-box-shadow:none;
  7867. box-shadow:none;
  7868. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7869. font-weight:400;
  7870. font-style:normal;
  7871. font-size:10px;
  7872. color:#FFFFFF;
  7873. }
  7874. #u47543 {
  7875. border-width:0px;
  7876. position:absolute;
  7877. left:2220px;
  7878. top:848px;
  7879. width:29px;
  7880. height:17px;
  7881. display:flex;
  7882. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7883. font-weight:400;
  7884. font-style:normal;
  7885. font-size:10px;
  7886. color:#FFFFFF;
  7887. }
  7888. #u47543 .text {
  7889. position:absolute;
  7890. align-self:center;
  7891. padding:5px 0px 5px 0px;
  7892. box-sizing:border-box;
  7893. width:100%;
  7894. }
  7895. #u47543_text {
  7896. border-width:0px;
  7897. word-wrap:break-word;
  7898. text-transform:none;
  7899. }
  7900. #u47544_div {
  7901. border-width:0px;
  7902. position:absolute;
  7903. left:0px;
  7904. top:0px;
  7905. width:29px;
  7906. height:17px;
  7907. background:inherit;
  7908. background-color:rgba(0, 191, 191, 1);
  7909. border:none;
  7910. border-radius:4px;
  7911. -moz-box-shadow:none;
  7912. -webkit-box-shadow:none;
  7913. box-shadow:none;
  7914. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7915. font-weight:400;
  7916. font-style:normal;
  7917. font-size:10px;
  7918. color:#FFFFFF;
  7919. }
  7920. #u47544 {
  7921. border-width:0px;
  7922. position:absolute;
  7923. left:2550px;
  7924. top:845px;
  7925. width:29px;
  7926. height:17px;
  7927. display:flex;
  7928. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7929. font-weight:400;
  7930. font-style:normal;
  7931. font-size:10px;
  7932. color:#FFFFFF;
  7933. }
  7934. #u47544 .text {
  7935. position:absolute;
  7936. align-self:center;
  7937. padding:5px 0px 5px 0px;
  7938. box-sizing:border-box;
  7939. width:100%;
  7940. }
  7941. #u47544_text {
  7942. border-width:0px;
  7943. word-wrap:break-word;
  7944. text-transform:none;
  7945. }
  7946. #u47545_div {
  7947. border-width:0px;
  7948. position:absolute;
  7949. left:0px;
  7950. top:0px;
  7951. width:29px;
  7952. height:17px;
  7953. background:inherit;
  7954. background-color:rgba(0, 191, 191, 1);
  7955. border:none;
  7956. border-radius:4px;
  7957. -moz-box-shadow:none;
  7958. -webkit-box-shadow:none;
  7959. box-shadow:none;
  7960. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7961. font-weight:400;
  7962. font-style:normal;
  7963. font-size:10px;
  7964. color:#FFFFFF;
  7965. }
  7966. #u47545 {
  7967. border-width:0px;
  7968. position:absolute;
  7969. left:1889px;
  7970. top:848px;
  7971. width:29px;
  7972. height:17px;
  7973. display:flex;
  7974. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7975. font-weight:400;
  7976. font-style:normal;
  7977. font-size:10px;
  7978. color:#FFFFFF;
  7979. }
  7980. #u47545 .text {
  7981. position:absolute;
  7982. align-self:center;
  7983. padding:5px 0px 5px 0px;
  7984. box-sizing:border-box;
  7985. width:100%;
  7986. }
  7987. #u47545_text {
  7988. border-width:0px;
  7989. word-wrap:break-word;
  7990. text-transform:none;
  7991. }
  7992. #u47546_div {
  7993. border-width:0px;
  7994. position:absolute;
  7995. left:0px;
  7996. top:0px;
  7997. width:191px;
  7998. height:435px;
  7999. background:inherit;
  8000. background-color:rgba(242, 242, 242, 1);
  8001. border:none;
  8002. border-radius:7px;
  8003. -moz-box-shadow:none;
  8004. -webkit-box-shadow:none;
  8005. box-shadow:none;
  8006. }
  8007. #u47546 {
  8008. border-width:0px;
  8009. position:absolute;
  8010. left:1658px;
  8011. top:321px;
  8012. width:191px;
  8013. height:435px;
  8014. display:flex;
  8015. }
  8016. #u47546 .text {
  8017. position:absolute;
  8018. align-self:center;
  8019. padding:2px 2px 2px 2px;
  8020. box-sizing:border-box;
  8021. width:100%;
  8022. }
  8023. #u47546_text {
  8024. border-width:0px;
  8025. word-wrap:break-word;
  8026. text-transform:none;
  8027. visibility:hidden;
  8028. }
  8029. #u47547_div {
  8030. border-width:0px;
  8031. position:absolute;
  8032. left:0px;
  8033. top:0px;
  8034. width:57px;
  8035. height:30px;
  8036. background:inherit;
  8037. background-color:rgba(255, 255, 255, 0);
  8038. border:none;
  8039. border-radius:0px;
  8040. -moz-box-shadow:none;
  8041. -webkit-box-shadow:none;
  8042. box-shadow:none;
  8043. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8044. font-weight:500;
  8045. font-style:normal;
  8046. font-size:14px;
  8047. color:#000000;
  8048. line-height:30px;
  8049. }
  8050. #u47547 {
  8051. border-width:0px;
  8052. position:absolute;
  8053. left:1658px;
  8054. top:99px;
  8055. width:57px;
  8056. height:30px;
  8057. display:flex;
  8058. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8059. font-weight:500;
  8060. font-style:normal;
  8061. font-size:14px;
  8062. color:#000000;
  8063. line-height:30px;
  8064. }
  8065. #u47547 .text {
  8066. position:absolute;
  8067. align-self:flex-start;
  8068. padding:0px 0px 0px 0px;
  8069. box-sizing:border-box;
  8070. width:100%;
  8071. }
  8072. #u47547_text {
  8073. border-width:0px;
  8074. white-space:nowrap;
  8075. text-transform:none;
  8076. }
  8077. #u47548 {
  8078. border-width:0px;
  8079. position:absolute;
  8080. left:0px;
  8081. top:0px;
  8082. width:0px;
  8083. height:0px;
  8084. }
  8085. #u47549_img {
  8086. border-width:0px;
  8087. position:absolute;
  8088. left:0px;
  8089. top:0px;
  8090. width:18px;
  8091. height:18px;
  8092. }
  8093. #u47549 {
  8094. border-width:0px;
  8095. position:absolute;
  8096. left:2857px;
  8097. top:67px;
  8098. width:18px;
  8099. height:18px;
  8100. display:flex;
  8101. }
  8102. #u47549 .text {
  8103. position:absolute;
  8104. align-self:center;
  8105. padding:2px 2px 2px 2px;
  8106. box-sizing:border-box;
  8107. width:100%;
  8108. }
  8109. #u47549_text {
  8110. border-width:0px;
  8111. word-wrap:break-word;
  8112. text-transform:none;
  8113. visibility:hidden;
  8114. }
  8115. #u47550_img {
  8116. border-width:0px;
  8117. position:absolute;
  8118. left:0px;
  8119. top:0px;
  8120. width:2px;
  8121. height:15px;
  8122. }
  8123. #u47550 {
  8124. border-width:0px;
  8125. position:absolute;
  8126. left:2842px;
  8127. top:69px;
  8128. width:1px;
  8129. height:14px;
  8130. display:flex;
  8131. }
  8132. #u47550 .text {
  8133. position:absolute;
  8134. align-self:center;
  8135. padding:2px 2px 2px 2px;
  8136. box-sizing:border-box;
  8137. width:100%;
  8138. }
  8139. #u47550_text {
  8140. border-width:0px;
  8141. word-wrap:break-word;
  8142. text-transform:none;
  8143. visibility:hidden;
  8144. }
  8145. #u47551 {
  8146. border-width:0px;
  8147. position:absolute;
  8148. left:0px;
  8149. top:0px;
  8150. width:0px;
  8151. height:0px;
  8152. }
  8153. #u47552_img {
  8154. border-width:0px;
  8155. position:absolute;
  8156. left:0px;
  8157. top:0px;
  8158. width:9px;
  8159. height:9px;
  8160. }
  8161. #u47552 {
  8162. border-width:0px;
  8163. position:absolute;
  8164. left:2719px;
  8165. top:66px;
  8166. width:9px;
  8167. height:9px;
  8168. display:flex;
  8169. }
  8170. #u47552 .text {
  8171. position:absolute;
  8172. align-self:center;
  8173. padding:2px 2px 2px 2px;
  8174. box-sizing:border-box;
  8175. width:100%;
  8176. }
  8177. #u47552_text {
  8178. border-width:0px;
  8179. word-wrap:break-word;
  8180. text-transform:none;
  8181. visibility:hidden;
  8182. }
  8183. #u47553_img {
  8184. border-width:0px;
  8185. position:absolute;
  8186. left:0px;
  8187. top:0px;
  8188. width:9px;
  8189. height:9px;
  8190. }
  8191. #u47553 {
  8192. border-width:0px;
  8193. position:absolute;
  8194. left:2731px;
  8195. top:66px;
  8196. width:9px;
  8197. height:9px;
  8198. display:flex;
  8199. }
  8200. #u47553 .text {
  8201. position:absolute;
  8202. align-self:center;
  8203. padding:2px 2px 2px 2px;
  8204. box-sizing:border-box;
  8205. width:100%;
  8206. }
  8207. #u47553_text {
  8208. border-width:0px;
  8209. word-wrap:break-word;
  8210. text-transform:none;
  8211. visibility:hidden;
  8212. }
  8213. #u47554_img {
  8214. border-width:0px;
  8215. position:absolute;
  8216. left:0px;
  8217. top:0px;
  8218. width:9px;
  8219. height:9px;
  8220. }
  8221. #u47554 {
  8222. border-width:0px;
  8223. position:absolute;
  8224. left:2719px;
  8225. top:78px;
  8226. width:9px;
  8227. height:9px;
  8228. display:flex;
  8229. }
  8230. #u47554 .text {
  8231. position:absolute;
  8232. align-self:center;
  8233. padding:2px 2px 2px 2px;
  8234. box-sizing:border-box;
  8235. width:100%;
  8236. }
  8237. #u47554_text {
  8238. border-width:0px;
  8239. word-wrap:break-word;
  8240. text-transform:none;
  8241. visibility:hidden;
  8242. }
  8243. #u47555_img {
  8244. border-width:0px;
  8245. position:absolute;
  8246. left:0px;
  8247. top:0px;
  8248. width:9px;
  8249. height:9px;
  8250. }
  8251. #u47555 {
  8252. border-width:0px;
  8253. position:absolute;
  8254. left:2731px;
  8255. top:78px;
  8256. width:9px;
  8257. height:9px;
  8258. display:flex;
  8259. }
  8260. #u47555 .text {
  8261. position:absolute;
  8262. align-self:center;
  8263. padding:2px 2px 2px 2px;
  8264. box-sizing:border-box;
  8265. width:100%;
  8266. }
  8267. #u47555_text {
  8268. border-width:0px;
  8269. word-wrap:break-word;
  8270. text-transform:none;
  8271. visibility:hidden;
  8272. }
  8273. #u47556 {
  8274. border-width:0px;
  8275. position:absolute;
  8276. left:0px;
  8277. top:0px;
  8278. width:0px;
  8279. height:0px;
  8280. }
  8281. #u47557_img {
  8282. border-width:0px;
  8283. position:absolute;
  8284. left:0px;
  8285. top:0px;
  8286. width:6px;
  8287. height:6px;
  8288. }
  8289. #u47557 {
  8290. border-width:0px;
  8291. position:absolute;
  8292. left:2679px;
  8293. top:66px;
  8294. width:6px;
  8295. height:6px;
  8296. display:flex;
  8297. }
  8298. #u47557 .text {
  8299. position:absolute;
  8300. align-self:center;
  8301. padding:2px 2px 2px 2px;
  8302. box-sizing:border-box;
  8303. width:100%;
  8304. }
  8305. #u47557_text {
  8306. border-width:0px;
  8307. word-wrap:break-word;
  8308. text-transform:none;
  8309. visibility:hidden;
  8310. }
  8311. #u47558_img {
  8312. border-width:0px;
  8313. position:absolute;
  8314. left:0px;
  8315. top:0px;
  8316. width:6px;
  8317. height:6px;
  8318. }
  8319. #u47558 {
  8320. border-width:0px;
  8321. position:absolute;
  8322. left:2686px;
  8323. top:66px;
  8324. width:6px;
  8325. height:6px;
  8326. display:flex;
  8327. }
  8328. #u47558 .text {
  8329. position:absolute;
  8330. align-self:center;
  8331. padding:2px 2px 2px 2px;
  8332. box-sizing:border-box;
  8333. width:100%;
  8334. }
  8335. #u47558_text {
  8336. border-width:0px;
  8337. word-wrap:break-word;
  8338. text-transform:none;
  8339. visibility:hidden;
  8340. }
  8341. #u47559_img {
  8342. border-width:0px;
  8343. position:absolute;
  8344. left:0px;
  8345. top:0px;
  8346. width:6px;
  8347. height:6px;
  8348. }
  8349. #u47559 {
  8350. border-width:0px;
  8351. position:absolute;
  8352. left:2693px;
  8353. top:66px;
  8354. width:6px;
  8355. height:6px;
  8356. display:flex;
  8357. }
  8358. #u47559 .text {
  8359. position:absolute;
  8360. align-self:center;
  8361. padding:2px 2px 2px 2px;
  8362. box-sizing:border-box;
  8363. width:100%;
  8364. }
  8365. #u47559_text {
  8366. border-width:0px;
  8367. word-wrap:break-word;
  8368. text-transform:none;
  8369. visibility:hidden;
  8370. }
  8371. #u47560_img {
  8372. border-width:0px;
  8373. position:absolute;
  8374. left:0px;
  8375. top:0px;
  8376. width:6px;
  8377. height:6px;
  8378. }
  8379. #u47560 {
  8380. border-width:0px;
  8381. position:absolute;
  8382. left:2679px;
  8383. top:73px;
  8384. width:6px;
  8385. height:6px;
  8386. display:flex;
  8387. }
  8388. #u47560 .text {
  8389. position:absolute;
  8390. align-self:center;
  8391. padding:2px 2px 2px 2px;
  8392. box-sizing:border-box;
  8393. width:100%;
  8394. }
  8395. #u47560_text {
  8396. border-width:0px;
  8397. word-wrap:break-word;
  8398. text-transform:none;
  8399. visibility:hidden;
  8400. }
  8401. #u47561_img {
  8402. border-width:0px;
  8403. position:absolute;
  8404. left:0px;
  8405. top:0px;
  8406. width:6px;
  8407. height:6px;
  8408. }
  8409. #u47561 {
  8410. border-width:0px;
  8411. position:absolute;
  8412. left:2686px;
  8413. top:73px;
  8414. width:6px;
  8415. height:6px;
  8416. display:flex;
  8417. }
  8418. #u47561 .text {
  8419. position:absolute;
  8420. align-self:center;
  8421. padding:2px 2px 2px 2px;
  8422. box-sizing:border-box;
  8423. width:100%;
  8424. }
  8425. #u47561_text {
  8426. border-width:0px;
  8427. word-wrap:break-word;
  8428. text-transform:none;
  8429. visibility:hidden;
  8430. }
  8431. #u47562_img {
  8432. border-width:0px;
  8433. position:absolute;
  8434. left:0px;
  8435. top:0px;
  8436. width:6px;
  8437. height:6px;
  8438. }
  8439. #u47562 {
  8440. border-width:0px;
  8441. position:absolute;
  8442. left:2693px;
  8443. top:73px;
  8444. width:6px;
  8445. height:6px;
  8446. display:flex;
  8447. }
  8448. #u47562 .text {
  8449. position:absolute;
  8450. align-self:center;
  8451. padding:2px 2px 2px 2px;
  8452. box-sizing:border-box;
  8453. width:100%;
  8454. }
  8455. #u47562_text {
  8456. border-width:0px;
  8457. word-wrap:break-word;
  8458. text-transform:none;
  8459. visibility:hidden;
  8460. }
  8461. #u47563_img {
  8462. border-width:0px;
  8463. position:absolute;
  8464. left:0px;
  8465. top:0px;
  8466. width:6px;
  8467. height:6px;
  8468. }
  8469. #u47563 {
  8470. border-width:0px;
  8471. position:absolute;
  8472. left:2679px;
  8473. top:80px;
  8474. width:6px;
  8475. height:6px;
  8476. display:flex;
  8477. }
  8478. #u47563 .text {
  8479. position:absolute;
  8480. align-self:center;
  8481. padding:2px 2px 2px 2px;
  8482. box-sizing:border-box;
  8483. width:100%;
  8484. }
  8485. #u47563_text {
  8486. border-width:0px;
  8487. word-wrap:break-word;
  8488. text-transform:none;
  8489. visibility:hidden;
  8490. }
  8491. #u47564_img {
  8492. border-width:0px;
  8493. position:absolute;
  8494. left:0px;
  8495. top:0px;
  8496. width:6px;
  8497. height:6px;
  8498. }
  8499. #u47564 {
  8500. border-width:0px;
  8501. position:absolute;
  8502. left:2686px;
  8503. top:80px;
  8504. width:6px;
  8505. height:6px;
  8506. display:flex;
  8507. }
  8508. #u47564 .text {
  8509. position:absolute;
  8510. align-self:center;
  8511. padding:2px 2px 2px 2px;
  8512. box-sizing:border-box;
  8513. width:100%;
  8514. }
  8515. #u47564_text {
  8516. border-width:0px;
  8517. word-wrap:break-word;
  8518. text-transform:none;
  8519. visibility:hidden;
  8520. }
  8521. #u47565_img {
  8522. border-width:0px;
  8523. position:absolute;
  8524. left:0px;
  8525. top:0px;
  8526. width:6px;
  8527. height:6px;
  8528. }
  8529. #u47565 {
  8530. border-width:0px;
  8531. position:absolute;
  8532. left:2693px;
  8533. top:80px;
  8534. width:6px;
  8535. height:6px;
  8536. display:flex;
  8537. }
  8538. #u47565 .text {
  8539. position:absolute;
  8540. align-self:center;
  8541. padding:2px 2px 2px 2px;
  8542. box-sizing:border-box;
  8543. width:100%;
  8544. }
  8545. #u47565_text {
  8546. border-width:0px;
  8547. word-wrap:break-word;
  8548. text-transform:none;
  8549. visibility:hidden;
  8550. }
  8551. #u47566 {
  8552. border-width:0px;
  8553. position:absolute;
  8554. left:0px;
  8555. top:0px;
  8556. width:0px;
  8557. height:0px;
  8558. }
  8559. #u47567_img {
  8560. border-width:0px;
  8561. position:absolute;
  8562. left:0px;
  8563. top:0px;
  8564. width:4px;
  8565. height:4px;
  8566. }
  8567. #u47567 {
  8568. border-width:0px;
  8569. position:absolute;
  8570. left:2639px;
  8571. top:67px;
  8572. width:4px;
  8573. height:4px;
  8574. display:flex;
  8575. }
  8576. #u47567 .text {
  8577. position:absolute;
  8578. align-self:center;
  8579. padding:2px 2px 2px 2px;
  8580. box-sizing:border-box;
  8581. width:100%;
  8582. }
  8583. #u47567_text {
  8584. border-width:0px;
  8585. word-wrap:break-word;
  8586. text-transform:none;
  8587. visibility:hidden;
  8588. }
  8589. #u47568_img {
  8590. border-width:0px;
  8591. position:absolute;
  8592. left:0px;
  8593. top:0px;
  8594. width:4px;
  8595. height:4px;
  8596. }
  8597. #u47568 {
  8598. border-width:0px;
  8599. position:absolute;
  8600. left:2644px;
  8601. top:67px;
  8602. width:4px;
  8603. height:4px;
  8604. display:flex;
  8605. }
  8606. #u47568 .text {
  8607. position:absolute;
  8608. align-self:center;
  8609. padding:2px 2px 2px 2px;
  8610. box-sizing:border-box;
  8611. width:100%;
  8612. }
  8613. #u47568_text {
  8614. border-width:0px;
  8615. word-wrap:break-word;
  8616. text-transform:none;
  8617. visibility:hidden;
  8618. }
  8619. #u47569_img {
  8620. border-width:0px;
  8621. position:absolute;
  8622. left:0px;
  8623. top:0px;
  8624. width:4px;
  8625. height:4px;
  8626. }
  8627. #u47569 {
  8628. border-width:0px;
  8629. position:absolute;
  8630. left:2649px;
  8631. top:67px;
  8632. width:4px;
  8633. height:4px;
  8634. display:flex;
  8635. }
  8636. #u47569 .text {
  8637. position:absolute;
  8638. align-self:center;
  8639. padding:2px 2px 2px 2px;
  8640. box-sizing:border-box;
  8641. width:100%;
  8642. }
  8643. #u47569_text {
  8644. border-width:0px;
  8645. word-wrap:break-word;
  8646. text-transform:none;
  8647. visibility:hidden;
  8648. }
  8649. #u47570_img {
  8650. border-width:0px;
  8651. position:absolute;
  8652. left:0px;
  8653. top:0px;
  8654. width:4px;
  8655. height:4px;
  8656. }
  8657. #u47570 {
  8658. border-width:0px;
  8659. position:absolute;
  8660. left:2654px;
  8661. top:67px;
  8662. width:4px;
  8663. height:4px;
  8664. display:flex;
  8665. }
  8666. #u47570 .text {
  8667. position:absolute;
  8668. align-self:center;
  8669. padding:2px 2px 2px 2px;
  8670. box-sizing:border-box;
  8671. width:100%;
  8672. }
  8673. #u47570_text {
  8674. border-width:0px;
  8675. word-wrap:break-word;
  8676. text-transform:none;
  8677. visibility:hidden;
  8678. }
  8679. #u47571_img {
  8680. border-width:0px;
  8681. position:absolute;
  8682. left:0px;
  8683. top:0px;
  8684. width:4px;
  8685. height:4px;
  8686. }
  8687. #u47571 {
  8688. border-width:0px;
  8689. position:absolute;
  8690. left:2639px;
  8691. top:72px;
  8692. width:4px;
  8693. height:4px;
  8694. display:flex;
  8695. }
  8696. #u47571 .text {
  8697. position:absolute;
  8698. align-self:center;
  8699. padding:2px 2px 2px 2px;
  8700. box-sizing:border-box;
  8701. width:100%;
  8702. }
  8703. #u47571_text {
  8704. border-width:0px;
  8705. word-wrap:break-word;
  8706. text-transform:none;
  8707. visibility:hidden;
  8708. }
  8709. #u47572_img {
  8710. border-width:0px;
  8711. position:absolute;
  8712. left:0px;
  8713. top:0px;
  8714. width:4px;
  8715. height:4px;
  8716. }
  8717. #u47572 {
  8718. border-width:0px;
  8719. position:absolute;
  8720. left:2644px;
  8721. top:72px;
  8722. width:4px;
  8723. height:4px;
  8724. display:flex;
  8725. }
  8726. #u47572 .text {
  8727. position:absolute;
  8728. align-self:center;
  8729. padding:2px 2px 2px 2px;
  8730. box-sizing:border-box;
  8731. width:100%;
  8732. }
  8733. #u47572_text {
  8734. border-width:0px;
  8735. word-wrap:break-word;
  8736. text-transform:none;
  8737. visibility:hidden;
  8738. }
  8739. #u47573_img {
  8740. border-width:0px;
  8741. position:absolute;
  8742. left:0px;
  8743. top:0px;
  8744. width:4px;
  8745. height:4px;
  8746. }
  8747. #u47573 {
  8748. border-width:0px;
  8749. position:absolute;
  8750. left:2649px;
  8751. top:72px;
  8752. width:4px;
  8753. height:4px;
  8754. display:flex;
  8755. }
  8756. #u47573 .text {
  8757. position:absolute;
  8758. align-self:center;
  8759. padding:2px 2px 2px 2px;
  8760. box-sizing:border-box;
  8761. width:100%;
  8762. }
  8763. #u47573_text {
  8764. border-width:0px;
  8765. word-wrap:break-word;
  8766. text-transform:none;
  8767. visibility:hidden;
  8768. }
  8769. #u47574_img {
  8770. border-width:0px;
  8771. position:absolute;
  8772. left:0px;
  8773. top:0px;
  8774. width:4px;
  8775. height:4px;
  8776. }
  8777. #u47574 {
  8778. border-width:0px;
  8779. position:absolute;
  8780. left:2654px;
  8781. top:72px;
  8782. width:4px;
  8783. height:4px;
  8784. display:flex;
  8785. }
  8786. #u47574 .text {
  8787. position:absolute;
  8788. align-self:center;
  8789. padding:2px 2px 2px 2px;
  8790. box-sizing:border-box;
  8791. width:100%;
  8792. }
  8793. #u47574_text {
  8794. border-width:0px;
  8795. word-wrap:break-word;
  8796. text-transform:none;
  8797. visibility:hidden;
  8798. }
  8799. #u47575_img {
  8800. border-width:0px;
  8801. position:absolute;
  8802. left:0px;
  8803. top:0px;
  8804. width:4px;
  8805. height:4px;
  8806. }
  8807. #u47575 {
  8808. border-width:0px;
  8809. position:absolute;
  8810. left:2639px;
  8811. top:77px;
  8812. width:4px;
  8813. height:4px;
  8814. display:flex;
  8815. }
  8816. #u47575 .text {
  8817. position:absolute;
  8818. align-self:center;
  8819. padding:2px 2px 2px 2px;
  8820. box-sizing:border-box;
  8821. width:100%;
  8822. }
  8823. #u47575_text {
  8824. border-width:0px;
  8825. word-wrap:break-word;
  8826. text-transform:none;
  8827. visibility:hidden;
  8828. }
  8829. #u47576_img {
  8830. border-width:0px;
  8831. position:absolute;
  8832. left:0px;
  8833. top:0px;
  8834. width:4px;
  8835. height:4px;
  8836. }
  8837. #u47576 {
  8838. border-width:0px;
  8839. position:absolute;
  8840. left:2644px;
  8841. top:77px;
  8842. width:4px;
  8843. height:4px;
  8844. display:flex;
  8845. }
  8846. #u47576 .text {
  8847. position:absolute;
  8848. align-self:center;
  8849. padding:2px 2px 2px 2px;
  8850. box-sizing:border-box;
  8851. width:100%;
  8852. }
  8853. #u47576_text {
  8854. border-width:0px;
  8855. word-wrap:break-word;
  8856. text-transform:none;
  8857. visibility:hidden;
  8858. }
  8859. #u47577_img {
  8860. border-width:0px;
  8861. position:absolute;
  8862. left:0px;
  8863. top:0px;
  8864. width:4px;
  8865. height:4px;
  8866. }
  8867. #u47577 {
  8868. border-width:0px;
  8869. position:absolute;
  8870. left:2649px;
  8871. top:77px;
  8872. width:4px;
  8873. height:4px;
  8874. display:flex;
  8875. }
  8876. #u47577 .text {
  8877. position:absolute;
  8878. align-self:center;
  8879. padding:2px 2px 2px 2px;
  8880. box-sizing:border-box;
  8881. width:100%;
  8882. }
  8883. #u47577_text {
  8884. border-width:0px;
  8885. word-wrap:break-word;
  8886. text-transform:none;
  8887. visibility:hidden;
  8888. }
  8889. #u47578_img {
  8890. border-width:0px;
  8891. position:absolute;
  8892. left:0px;
  8893. top:0px;
  8894. width:4px;
  8895. height:4px;
  8896. }
  8897. #u47578 {
  8898. border-width:0px;
  8899. position:absolute;
  8900. left:2654px;
  8901. top:77px;
  8902. width:4px;
  8903. height:4px;
  8904. display:flex;
  8905. }
  8906. #u47578 .text {
  8907. position:absolute;
  8908. align-self:center;
  8909. padding:2px 2px 2px 2px;
  8910. box-sizing:border-box;
  8911. width:100%;
  8912. }
  8913. #u47578_text {
  8914. border-width:0px;
  8915. word-wrap:break-word;
  8916. text-transform:none;
  8917. visibility:hidden;
  8918. }
  8919. #u47579_img {
  8920. border-width:0px;
  8921. position:absolute;
  8922. left:0px;
  8923. top:0px;
  8924. width:4px;
  8925. height:4px;
  8926. }
  8927. #u47579 {
  8928. border-width:0px;
  8929. position:absolute;
  8930. left:2639px;
  8931. top:82px;
  8932. width:4px;
  8933. height:4px;
  8934. display:flex;
  8935. }
  8936. #u47579 .text {
  8937. position:absolute;
  8938. align-self:center;
  8939. padding:2px 2px 2px 2px;
  8940. box-sizing:border-box;
  8941. width:100%;
  8942. }
  8943. #u47579_text {
  8944. border-width:0px;
  8945. word-wrap:break-word;
  8946. text-transform:none;
  8947. visibility:hidden;
  8948. }
  8949. #u47580_img {
  8950. border-width:0px;
  8951. position:absolute;
  8952. left:0px;
  8953. top:0px;
  8954. width:4px;
  8955. height:4px;
  8956. }
  8957. #u47580 {
  8958. border-width:0px;
  8959. position:absolute;
  8960. left:2644px;
  8961. top:82px;
  8962. width:4px;
  8963. height:4px;
  8964. display:flex;
  8965. }
  8966. #u47580 .text {
  8967. position:absolute;
  8968. align-self:center;
  8969. padding:2px 2px 2px 2px;
  8970. box-sizing:border-box;
  8971. width:100%;
  8972. }
  8973. #u47580_text {
  8974. border-width:0px;
  8975. word-wrap:break-word;
  8976. text-transform:none;
  8977. visibility:hidden;
  8978. }
  8979. #u47581_img {
  8980. border-width:0px;
  8981. position:absolute;
  8982. left:0px;
  8983. top:0px;
  8984. width:4px;
  8985. height:4px;
  8986. }
  8987. #u47581 {
  8988. border-width:0px;
  8989. position:absolute;
  8990. left:2649px;
  8991. top:82px;
  8992. width:4px;
  8993. height:4px;
  8994. display:flex;
  8995. }
  8996. #u47581 .text {
  8997. position:absolute;
  8998. align-self:center;
  8999. padding:2px 2px 2px 2px;
  9000. box-sizing:border-box;
  9001. width:100%;
  9002. }
  9003. #u47581_text {
  9004. border-width:0px;
  9005. word-wrap:break-word;
  9006. text-transform:none;
  9007. visibility:hidden;
  9008. }
  9009. #u47582_img {
  9010. border-width:0px;
  9011. position:absolute;
  9012. left:0px;
  9013. top:0px;
  9014. width:4px;
  9015. height:4px;
  9016. }
  9017. #u47582 {
  9018. border-width:0px;
  9019. position:absolute;
  9020. left:2654px;
  9021. top:82px;
  9022. width:4px;
  9023. height:4px;
  9024. display:flex;
  9025. }
  9026. #u47582 .text {
  9027. position:absolute;
  9028. align-self:center;
  9029. padding:2px 2px 2px 2px;
  9030. box-sizing:border-box;
  9031. width:100%;
  9032. }
  9033. #u47582_text {
  9034. border-width:0px;
  9035. word-wrap:break-word;
  9036. text-transform:none;
  9037. visibility:hidden;
  9038. }
  9039. #u47583_img {
  9040. border-width:0px;
  9041. position:absolute;
  9042. left:0px;
  9043. top:0px;
  9044. width:20px;
  9045. height:20px;
  9046. }
  9047. #u47583 {
  9048. border-width:0px;
  9049. position:absolute;
  9050. left:2761px;
  9051. top:66px;
  9052. width:20px;
  9053. height:20px;
  9054. display:flex;
  9055. }
  9056. #u47583 .text {
  9057. position:absolute;
  9058. align-self:center;
  9059. padding:2px 2px 2px 2px;
  9060. box-sizing:border-box;
  9061. width:100%;
  9062. }
  9063. #u47583_text {
  9064. border-width:0px;
  9065. word-wrap:break-word;
  9066. text-transform:none;
  9067. visibility:hidden;
  9068. }
  9069. #u47584_img {
  9070. border-width:0px;
  9071. position:absolute;
  9072. left:0px;
  9073. top:0px;
  9074. width:18px;
  9075. height:18px;
  9076. }
  9077. #u47584 {
  9078. border-width:0px;
  9079. position:absolute;
  9080. left:2810px;
  9081. top:67px;
  9082. width:18px;
  9083. height:18px;
  9084. display:flex;
  9085. }
  9086. #u47584 .text {
  9087. position:absolute;
  9088. align-self:center;
  9089. padding:2px 2px 2px 2px;
  9090. box-sizing:border-box;
  9091. width:100%;
  9092. }
  9093. #u47584_text {
  9094. border-width:0px;
  9095. word-wrap:break-word;
  9096. text-transform:none;
  9097. visibility:hidden;
  9098. }
  9099. #u47585_img {
  9100. border-width:0px;
  9101. position:absolute;
  9102. left:0px;
  9103. top:0px;
  9104. width:2px;
  9105. height:15px;
  9106. }
  9107. #u47585 {
  9108. border-width:0px;
  9109. position:absolute;
  9110. left:2795px;
  9111. top:69px;
  9112. width:1px;
  9113. height:14px;
  9114. display:flex;
  9115. }
  9116. #u47585 .text {
  9117. position:absolute;
  9118. align-self:center;
  9119. padding:2px 2px 2px 2px;
  9120. box-sizing:border-box;
  9121. width:100%;
  9122. }
  9123. #u47585_text {
  9124. border-width:0px;
  9125. word-wrap:break-word;
  9126. text-transform:none;
  9127. visibility:hidden;
  9128. }
  9129. #u47586_div {
  9130. border-width:0px;
  9131. position:absolute;
  9132. left:0px;
  9133. top:0px;
  9134. width:43px;
  9135. height:30px;
  9136. background:inherit;
  9137. background-color:rgba(255, 255, 255, 0);
  9138. border:none;
  9139. border-radius:0px;
  9140. -moz-box-shadow:none;
  9141. -webkit-box-shadow:none;
  9142. box-shadow:none;
  9143. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9144. font-weight:500;
  9145. font-style:normal;
  9146. font-size:14px;
  9147. color:#000000;
  9148. line-height:30px;
  9149. }
  9150. #u47586 {
  9151. border-width:0px;
  9152. position:absolute;
  9153. left:1658px;
  9154. top:291px;
  9155. width:43px;
  9156. height:30px;
  9157. display:flex;
  9158. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9159. font-weight:500;
  9160. font-style:normal;
  9161. font-size:14px;
  9162. color:#000000;
  9163. line-height:30px;
  9164. }
  9165. #u47586 .text {
  9166. position:absolute;
  9167. align-self:flex-start;
  9168. padding:0px 0px 0px 0px;
  9169. box-sizing:border-box;
  9170. width:100%;
  9171. }
  9172. #u47586_text {
  9173. border-width:0px;
  9174. white-space:nowrap;
  9175. text-transform:none;
  9176. }
  9177. #u47587 {
  9178. border-width:0px;
  9179. position:absolute;
  9180. left:0px;
  9181. top:0px;
  9182. width:0px;
  9183. height:0px;
  9184. }
  9185. #u47588_div {
  9186. border-width:0px;
  9187. position:absolute;
  9188. left:0px;
  9189. top:0px;
  9190. width:30px;
  9191. height:30px;
  9192. background:inherit;
  9193. background-color:rgba(255, 255, 255, 1);
  9194. box-sizing:border-box;
  9195. border-width:1px;
  9196. border-style:solid;
  9197. border-color:rgba(121, 121, 121, 1);
  9198. border-radius:0px;
  9199. -moz-box-shadow:none;
  9200. -webkit-box-shadow:none;
  9201. box-shadow:none;
  9202. }
  9203. #u47588 {
  9204. border-width:0px;
  9205. position:absolute;
  9206. left:1659px;
  9207. top:134px;
  9208. width:30px;
  9209. height:30px;
  9210. display:flex;
  9211. }
  9212. #u47588 .text {
  9213. position:absolute;
  9214. align-self:center;
  9215. padding:2px 2px 2px 2px;
  9216. box-sizing:border-box;
  9217. width:100%;
  9218. }
  9219. #u47588_text {
  9220. border-width:0px;
  9221. word-wrap:break-word;
  9222. text-transform:none;
  9223. visibility:hidden;
  9224. }
  9225. #u47589_img {
  9226. border-width:0px;
  9227. position:absolute;
  9228. left:0px;
  9229. top:0px;
  9230. width:19px;
  9231. height:18px;
  9232. }
  9233. #u47589 {
  9234. border-width:0px;
  9235. position:absolute;
  9236. left:1665px;
  9237. top:140px;
  9238. width:19px;
  9239. height:18px;
  9240. display:flex;
  9241. -webkit-transform:rotate(135deg);
  9242. -moz-transform:rotate(135deg);
  9243. -ms-transform:rotate(135deg);
  9244. transform:rotate(135deg);
  9245. }
  9246. #u47589 .text {
  9247. position:absolute;
  9248. align-self:center;
  9249. padding:2px 2px 2px 2px;
  9250. box-sizing:border-box;
  9251. width:100%;
  9252. }
  9253. #u47589_text {
  9254. border-width:0px;
  9255. word-wrap:break-word;
  9256. text-transform:none;
  9257. visibility:hidden;
  9258. }
  9259. #u47590 {
  9260. border-width:0px;
  9261. position:absolute;
  9262. left:0px;
  9263. top:0px;
  9264. width:0px;
  9265. height:0px;
  9266. }
  9267. #u47591_div {
  9268. border-width:0px;
  9269. position:absolute;
  9270. left:0px;
  9271. top:0px;
  9272. width:30px;
  9273. height:30px;
  9274. background:inherit;
  9275. background-color:rgba(255, 255, 255, 1);
  9276. box-sizing:border-box;
  9277. border-width:1px;
  9278. border-style:solid;
  9279. border-color:rgba(121, 121, 121, 1);
  9280. border-radius:0px;
  9281. -moz-box-shadow:none;
  9282. -webkit-box-shadow:none;
  9283. box-shadow:none;
  9284. }
  9285. #u47591 {
  9286. border-width:0px;
  9287. position:absolute;
  9288. left:1699px;
  9289. top:134px;
  9290. width:30px;
  9291. height:30px;
  9292. display:flex;
  9293. }
  9294. #u47591 .text {
  9295. position:absolute;
  9296. align-self:center;
  9297. padding:2px 2px 2px 2px;
  9298. box-sizing:border-box;
  9299. width:100%;
  9300. }
  9301. #u47591_text {
  9302. border-width:0px;
  9303. word-wrap:break-word;
  9304. text-transform:none;
  9305. visibility:hidden;
  9306. }
  9307. #u47592_img {
  9308. border-width:0px;
  9309. position:absolute;
  9310. left:0px;
  9311. top:0px;
  9312. width:19px;
  9313. height:18px;
  9314. }
  9315. #u47592 {
  9316. border-width:0px;
  9317. position:absolute;
  9318. left:1705px;
  9319. top:140px;
  9320. width:19px;
  9321. height:18px;
  9322. display:flex;
  9323. -webkit-transform:rotate(180deg);
  9324. -moz-transform:rotate(180deg);
  9325. -ms-transform:rotate(180deg);
  9326. transform:rotate(180deg);
  9327. }
  9328. #u47592 .text {
  9329. position:absolute;
  9330. align-self:center;
  9331. padding:2px 2px 2px 2px;
  9332. box-sizing:border-box;
  9333. width:100%;
  9334. }
  9335. #u47592_text {
  9336. border-width:0px;
  9337. word-wrap:break-word;
  9338. text-transform:none;
  9339. visibility:hidden;
  9340. }
  9341. #u47593 {
  9342. border-width:0px;
  9343. position:absolute;
  9344. left:0px;
  9345. top:0px;
  9346. width:0px;
  9347. height:0px;
  9348. }
  9349. #u47594_div {
  9350. border-width:0px;
  9351. position:absolute;
  9352. left:0px;
  9353. top:0px;
  9354. width:30px;
  9355. height:30px;
  9356. background:inherit;
  9357. background-color:rgba(255, 255, 255, 1);
  9358. box-sizing:border-box;
  9359. border-width:1px;
  9360. border-style:solid;
  9361. border-color:rgba(121, 121, 121, 1);
  9362. border-radius:0px;
  9363. -moz-box-shadow:none;
  9364. -webkit-box-shadow:none;
  9365. box-shadow:none;
  9366. }
  9367. #u47594 {
  9368. border-width:0px;
  9369. position:absolute;
  9370. left:1739px;
  9371. top:134px;
  9372. width:30px;
  9373. height:30px;
  9374. display:flex;
  9375. }
  9376. #u47594 .text {
  9377. position:absolute;
  9378. align-self:center;
  9379. padding:2px 2px 2px 2px;
  9380. box-sizing:border-box;
  9381. width:100%;
  9382. }
  9383. #u47594_text {
  9384. border-width:0px;
  9385. word-wrap:break-word;
  9386. text-transform:none;
  9387. visibility:hidden;
  9388. }
  9389. #u47595_img {
  9390. border-width:0px;
  9391. position:absolute;
  9392. left:0px;
  9393. top:0px;
  9394. width:19px;
  9395. height:18px;
  9396. }
  9397. #u47595 {
  9398. border-width:0px;
  9399. position:absolute;
  9400. left:1745px;
  9401. top:140px;
  9402. width:19px;
  9403. height:18px;
  9404. display:flex;
  9405. -webkit-transform:rotate(225deg);
  9406. -moz-transform:rotate(225deg);
  9407. -ms-transform:rotate(225deg);
  9408. transform:rotate(225deg);
  9409. }
  9410. #u47595 .text {
  9411. position:absolute;
  9412. align-self:center;
  9413. padding:2px 2px 2px 2px;
  9414. box-sizing:border-box;
  9415. width:100%;
  9416. }
  9417. #u47595_text {
  9418. border-width:0px;
  9419. word-wrap:break-word;
  9420. text-transform:none;
  9421. visibility:hidden;
  9422. }
  9423. #u47596 {
  9424. border-width:0px;
  9425. position:absolute;
  9426. left:0px;
  9427. top:0px;
  9428. width:0px;
  9429. height:0px;
  9430. }
  9431. #u47597_div {
  9432. border-width:0px;
  9433. position:absolute;
  9434. left:0px;
  9435. top:0px;
  9436. width:30px;
  9437. height:30px;
  9438. background:inherit;
  9439. background-color:rgba(255, 255, 255, 1);
  9440. box-sizing:border-box;
  9441. border-width:1px;
  9442. border-style:solid;
  9443. border-color:rgba(121, 121, 121, 1);
  9444. border-radius:0px;
  9445. -moz-box-shadow:none;
  9446. -webkit-box-shadow:none;
  9447. box-shadow:none;
  9448. }
  9449. #u47597 {
  9450. border-width:0px;
  9451. position:absolute;
  9452. left:1659px;
  9453. top:174px;
  9454. width:30px;
  9455. height:30px;
  9456. display:flex;
  9457. }
  9458. #u47597 .text {
  9459. position:absolute;
  9460. align-self:center;
  9461. padding:2px 2px 2px 2px;
  9462. box-sizing:border-box;
  9463. width:100%;
  9464. }
  9465. #u47597_text {
  9466. border-width:0px;
  9467. word-wrap:break-word;
  9468. text-transform:none;
  9469. visibility:hidden;
  9470. }
  9471. #u47598_img {
  9472. border-width:0px;
  9473. position:absolute;
  9474. left:0px;
  9475. top:0px;
  9476. width:19px;
  9477. height:18px;
  9478. }
  9479. #u47598 {
  9480. border-width:0px;
  9481. position:absolute;
  9482. left:1665px;
  9483. top:180px;
  9484. width:19px;
  9485. height:18px;
  9486. display:flex;
  9487. -webkit-transform:rotate(90deg);
  9488. -moz-transform:rotate(90deg);
  9489. -ms-transform:rotate(90deg);
  9490. transform:rotate(90deg);
  9491. }
  9492. #u47598 .text {
  9493. position:absolute;
  9494. align-self:center;
  9495. padding:2px 2px 2px 2px;
  9496. box-sizing:border-box;
  9497. width:100%;
  9498. }
  9499. #u47598_text {
  9500. border-width:0px;
  9501. word-wrap:break-word;
  9502. text-transform:none;
  9503. visibility:hidden;
  9504. }
  9505. #u47599 {
  9506. border-width:0px;
  9507. position:absolute;
  9508. left:0px;
  9509. top:0px;
  9510. width:0px;
  9511. height:0px;
  9512. }
  9513. #u47600_div {
  9514. border-width:0px;
  9515. position:absolute;
  9516. left:0px;
  9517. top:0px;
  9518. width:30px;
  9519. height:30px;
  9520. background:inherit;
  9521. background-color:rgba(255, 255, 255, 1);
  9522. box-sizing:border-box;
  9523. border-width:1px;
  9524. border-style:solid;
  9525. border-color:rgba(121, 121, 121, 1);
  9526. border-radius:0px;
  9527. -moz-box-shadow:none;
  9528. -webkit-box-shadow:none;
  9529. box-shadow:none;
  9530. }
  9531. #u47600 {
  9532. border-width:0px;
  9533. position:absolute;
  9534. left:1739px;
  9535. top:174px;
  9536. width:30px;
  9537. height:30px;
  9538. display:flex;
  9539. }
  9540. #u47600 .text {
  9541. position:absolute;
  9542. align-self:center;
  9543. padding:2px 2px 2px 2px;
  9544. box-sizing:border-box;
  9545. width:100%;
  9546. }
  9547. #u47600_text {
  9548. border-width:0px;
  9549. word-wrap:break-word;
  9550. text-transform:none;
  9551. visibility:hidden;
  9552. }
  9553. #u47601_img {
  9554. border-width:0px;
  9555. position:absolute;
  9556. left:0px;
  9557. top:0px;
  9558. width:19px;
  9559. height:18px;
  9560. }
  9561. #u47601 {
  9562. border-width:0px;
  9563. position:absolute;
  9564. left:1745px;
  9565. top:180px;
  9566. width:19px;
  9567. height:18px;
  9568. display:flex;
  9569. -webkit-transform:rotate(270deg);
  9570. -moz-transform:rotate(270deg);
  9571. -ms-transform:rotate(270deg);
  9572. transform:rotate(270deg);
  9573. }
  9574. #u47601 .text {
  9575. position:absolute;
  9576. align-self:center;
  9577. padding:2px 2px 2px 2px;
  9578. box-sizing:border-box;
  9579. width:100%;
  9580. }
  9581. #u47601_text {
  9582. border-width:0px;
  9583. word-wrap:break-word;
  9584. text-transform:none;
  9585. visibility:hidden;
  9586. }
  9587. #u47602 {
  9588. border-width:0px;
  9589. position:absolute;
  9590. left:0px;
  9591. top:0px;
  9592. width:0px;
  9593. height:0px;
  9594. }
  9595. #u47603_div {
  9596. border-width:0px;
  9597. position:absolute;
  9598. left:0px;
  9599. top:0px;
  9600. width:30px;
  9601. height:30px;
  9602. background:inherit;
  9603. background-color:rgba(255, 255, 255, 1);
  9604. box-sizing:border-box;
  9605. border-width:1px;
  9606. border-style:solid;
  9607. border-color:rgba(121, 121, 121, 1);
  9608. border-radius:0px;
  9609. -moz-box-shadow:none;
  9610. -webkit-box-shadow:none;
  9611. box-shadow:none;
  9612. }
  9613. #u47603 {
  9614. border-width:0px;
  9615. position:absolute;
  9616. left:1659px;
  9617. top:214px;
  9618. width:30px;
  9619. height:30px;
  9620. display:flex;
  9621. }
  9622. #u47603 .text {
  9623. position:absolute;
  9624. align-self:center;
  9625. padding:2px 2px 2px 2px;
  9626. box-sizing:border-box;
  9627. width:100%;
  9628. }
  9629. #u47603_text {
  9630. border-width:0px;
  9631. word-wrap:break-word;
  9632. text-transform:none;
  9633. visibility:hidden;
  9634. }
  9635. #u47604_img {
  9636. border-width:0px;
  9637. position:absolute;
  9638. left:0px;
  9639. top:0px;
  9640. width:19px;
  9641. height:18px;
  9642. }
  9643. #u47604 {
  9644. border-width:0px;
  9645. position:absolute;
  9646. left:1665px;
  9647. top:220px;
  9648. width:19px;
  9649. height:18px;
  9650. display:flex;
  9651. -webkit-transform:rotate(51deg);
  9652. -moz-transform:rotate(51deg);
  9653. -ms-transform:rotate(51deg);
  9654. transform:rotate(51deg);
  9655. }
  9656. #u47604 .text {
  9657. position:absolute;
  9658. align-self:center;
  9659. padding:2px 2px 2px 2px;
  9660. box-sizing:border-box;
  9661. width:100%;
  9662. }
  9663. #u47604_text {
  9664. border-width:0px;
  9665. word-wrap:break-word;
  9666. text-transform:none;
  9667. visibility:hidden;
  9668. }
  9669. #u47605 {
  9670. border-width:0px;
  9671. position:absolute;
  9672. left:0px;
  9673. top:0px;
  9674. width:0px;
  9675. height:0px;
  9676. }
  9677. #u47606_div {
  9678. border-width:0px;
  9679. position:absolute;
  9680. left:0px;
  9681. top:0px;
  9682. width:30px;
  9683. height:30px;
  9684. background:inherit;
  9685. background-color:rgba(255, 255, 255, 1);
  9686. box-sizing:border-box;
  9687. border-width:1px;
  9688. border-style:solid;
  9689. border-color:rgba(121, 121, 121, 1);
  9690. border-radius:0px;
  9691. -moz-box-shadow:none;
  9692. -webkit-box-shadow:none;
  9693. box-shadow:none;
  9694. }
  9695. #u47606 {
  9696. border-width:0px;
  9697. position:absolute;
  9698. left:1699px;
  9699. top:214px;
  9700. width:30px;
  9701. height:30px;
  9702. display:flex;
  9703. }
  9704. #u47606 .text {
  9705. position:absolute;
  9706. align-self:center;
  9707. padding:2px 2px 2px 2px;
  9708. box-sizing:border-box;
  9709. width:100%;
  9710. }
  9711. #u47606_text {
  9712. border-width:0px;
  9713. word-wrap:break-word;
  9714. text-transform:none;
  9715. visibility:hidden;
  9716. }
  9717. #u47607_img {
  9718. border-width:0px;
  9719. position:absolute;
  9720. left:0px;
  9721. top:0px;
  9722. width:19px;
  9723. height:18px;
  9724. }
  9725. #u47607 {
  9726. border-width:0px;
  9727. position:absolute;
  9728. left:1705px;
  9729. top:220px;
  9730. width:19px;
  9731. height:18px;
  9732. display:flex;
  9733. }
  9734. #u47607 .text {
  9735. position:absolute;
  9736. align-self:center;
  9737. padding:2px 2px 2px 2px;
  9738. box-sizing:border-box;
  9739. width:100%;
  9740. }
  9741. #u47607_text {
  9742. border-width:0px;
  9743. word-wrap:break-word;
  9744. text-transform:none;
  9745. visibility:hidden;
  9746. }
  9747. #u47608 {
  9748. border-width:0px;
  9749. position:absolute;
  9750. left:0px;
  9751. top:0px;
  9752. width:0px;
  9753. height:0px;
  9754. }
  9755. #u47609_div {
  9756. border-width:0px;
  9757. position:absolute;
  9758. left:0px;
  9759. top:0px;
  9760. width:30px;
  9761. height:30px;
  9762. background:inherit;
  9763. background-color:rgba(255, 255, 255, 1);
  9764. box-sizing:border-box;
  9765. border-width:1px;
  9766. border-style:solid;
  9767. border-color:rgba(121, 121, 121, 1);
  9768. border-radius:0px;
  9769. -moz-box-shadow:none;
  9770. -webkit-box-shadow:none;
  9771. box-shadow:none;
  9772. }
  9773. #u47609 {
  9774. border-width:0px;
  9775. position:absolute;
  9776. left:1739px;
  9777. top:214px;
  9778. width:30px;
  9779. height:30px;
  9780. display:flex;
  9781. }
  9782. #u47609 .text {
  9783. position:absolute;
  9784. align-self:center;
  9785. padding:2px 2px 2px 2px;
  9786. box-sizing:border-box;
  9787. width:100%;
  9788. }
  9789. #u47609_text {
  9790. border-width:0px;
  9791. word-wrap:break-word;
  9792. text-transform:none;
  9793. visibility:hidden;
  9794. }
  9795. #u47610_img {
  9796. border-width:0px;
  9797. position:absolute;
  9798. left:0px;
  9799. top:0px;
  9800. width:19px;
  9801. height:18px;
  9802. }
  9803. #u47610 {
  9804. border-width:0px;
  9805. position:absolute;
  9806. left:1745px;
  9807. top:220px;
  9808. width:19px;
  9809. height:18px;
  9810. display:flex;
  9811. -webkit-transform:rotate(300deg);
  9812. -moz-transform:rotate(300deg);
  9813. -ms-transform:rotate(300deg);
  9814. transform:rotate(300deg);
  9815. }
  9816. #u47610 .text {
  9817. position:absolute;
  9818. align-self:center;
  9819. padding:2px 2px 2px 2px;
  9820. box-sizing:border-box;
  9821. width:100%;
  9822. }
  9823. #u47610_text {
  9824. border-width:0px;
  9825. word-wrap:break-word;
  9826. text-transform:none;
  9827. visibility:hidden;
  9828. }
  9829. #u47611_div {
  9830. border-width:0px;
  9831. position:absolute;
  9832. left:0px;
  9833. top:0px;
  9834. width:30px;
  9835. height:30px;
  9836. background:inherit;
  9837. background-color:rgba(255, 255, 255, 1);
  9838. box-sizing:border-box;
  9839. border-width:1px;
  9840. border-style:solid;
  9841. border-color:rgba(121, 121, 121, 1);
  9842. border-radius:7px;
  9843. -moz-box-shadow:none;
  9844. -webkit-box-shadow:none;
  9845. box-shadow:none;
  9846. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  9847. font-weight:700;
  9848. font-style:normal;
  9849. font-size:24px;
  9850. }
  9851. #u47611 {
  9852. border-width:0px;
  9853. position:absolute;
  9854. left:1779px;
  9855. top:134px;
  9856. width:30px;
  9857. height:30px;
  9858. display:flex;
  9859. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  9860. font-weight:700;
  9861. font-style:normal;
  9862. font-size:24px;
  9863. }
  9864. #u47611 .text {
  9865. position:absolute;
  9866. align-self:center;
  9867. padding:2px 2px 2px 2px;
  9868. box-sizing:border-box;
  9869. width:100%;
  9870. }
  9871. #u47611_text {
  9872. border-width:0px;
  9873. word-wrap:break-word;
  9874. text-transform:none;
  9875. }
  9876. #u47612_div {
  9877. border-width:0px;
  9878. position:absolute;
  9879. left:0px;
  9880. top:0px;
  9881. width:30px;
  9882. height:30px;
  9883. background:inherit;
  9884. background-color:rgba(255, 255, 255, 1);
  9885. box-sizing:border-box;
  9886. border-width:1px;
  9887. border-style:solid;
  9888. border-color:rgba(121, 121, 121, 1);
  9889. border-radius:7px;
  9890. -moz-box-shadow:none;
  9891. -webkit-box-shadow:none;
  9892. box-shadow:none;
  9893. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  9894. font-weight:700;
  9895. font-style:normal;
  9896. font-size:24px;
  9897. }
  9898. #u47612 {
  9899. border-width:0px;
  9900. position:absolute;
  9901. left:1779px;
  9902. top:174px;
  9903. width:30px;
  9904. height:30px;
  9905. display:flex;
  9906. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  9907. font-weight:700;
  9908. font-style:normal;
  9909. font-size:24px;
  9910. }
  9911. #u47612 .text {
  9912. position:absolute;
  9913. align-self:center;
  9914. padding:2px 2px 2px 2px;
  9915. box-sizing:border-box;
  9916. width:100%;
  9917. }
  9918. #u47612_text {
  9919. border-width:0px;
  9920. word-wrap:break-word;
  9921. text-transform:none;
  9922. }
  9923. #u47613_div {
  9924. border-width:0px;
  9925. position:absolute;
  9926. left:0px;
  9927. top:0px;
  9928. width:30px;
  9929. height:30px;
  9930. background:inherit;
  9931. background-color:rgba(255, 255, 255, 1);
  9932. box-sizing:border-box;
  9933. border-width:1px;
  9934. border-style:solid;
  9935. border-color:rgba(121, 121, 121, 1);
  9936. border-radius:7px;
  9937. -moz-box-shadow:none;
  9938. -webkit-box-shadow:none;
  9939. box-shadow:none;
  9940. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  9941. font-weight:700;
  9942. font-style:normal;
  9943. font-size:24px;
  9944. }
  9945. #u47613 {
  9946. border-width:0px;
  9947. position:absolute;
  9948. left:1779px;
  9949. top:214px;
  9950. width:30px;
  9951. height:30px;
  9952. display:flex;
  9953. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  9954. font-weight:700;
  9955. font-style:normal;
  9956. font-size:24px;
  9957. }
  9958. #u47613 .text {
  9959. position:absolute;
  9960. align-self:center;
  9961. padding:2px 2px 2px 2px;
  9962. box-sizing:border-box;
  9963. width:100%;
  9964. }
  9965. #u47613_text {
  9966. border-width:0px;
  9967. word-wrap:break-word;
  9968. text-transform:none;
  9969. }
  9970. #u47614 {
  9971. border-width:0px;
  9972. position:absolute;
  9973. left:0px;
  9974. top:0px;
  9975. width:0px;
  9976. height:0px;
  9977. }
  9978. #u47615_div {
  9979. border-width:0px;
  9980. position:absolute;
  9981. left:0px;
  9982. top:0px;
  9983. width:30px;
  9984. height:30px;
  9985. background:inherit;
  9986. background-color:rgba(255, 255, 255, 1);
  9987. box-sizing:border-box;
  9988. border-width:1px;
  9989. border-style:solid;
  9990. border-color:rgba(121, 121, 121, 1);
  9991. border-radius:0px;
  9992. -moz-box-shadow:none;
  9993. -webkit-box-shadow:none;
  9994. box-shadow:none;
  9995. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  9996. font-weight:700;
  9997. font-style:normal;
  9998. font-size:18px;
  9999. }
  10000. #u47615 {
  10001. border-width:0px;
  10002. position:absolute;
  10003. left:1819px;
  10004. top:134px;
  10005. width:30px;
  10006. height:30px;
  10007. display:flex;
  10008. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  10009. font-weight:700;
  10010. font-style:normal;
  10011. font-size:18px;
  10012. }
  10013. #u47615 .text {
  10014. position:absolute;
  10015. align-self:center;
  10016. padding:2px 2px 2px 2px;
  10017. box-sizing:border-box;
  10018. width:100%;
  10019. }
  10020. #u47615_text {
  10021. border-width:0px;
  10022. word-wrap:break-word;
  10023. text-transform:none;
  10024. visibility:hidden;
  10025. }
  10026. #u47616_img {
  10027. border-width:0px;
  10028. position:absolute;
  10029. left:0px;
  10030. top:0px;
  10031. width:14px;
  10032. height:14px;
  10033. }
  10034. #u47616 {
  10035. border-width:0px;
  10036. position:absolute;
  10037. left:1827px;
  10038. top:142px;
  10039. width:14px;
  10040. height:14px;
  10041. display:flex;
  10042. }
  10043. #u47616 .text {
  10044. position:absolute;
  10045. align-self:center;
  10046. padding:2px 2px 2px 2px;
  10047. box-sizing:border-box;
  10048. width:100%;
  10049. }
  10050. #u47616_text {
  10051. border-width:0px;
  10052. word-wrap:break-word;
  10053. text-transform:none;
  10054. visibility:hidden;
  10055. }
  10056. #u47617 {
  10057. border-width:0px;
  10058. position:absolute;
  10059. left:0px;
  10060. top:0px;
  10061. width:0px;
  10062. height:0px;
  10063. }
  10064. #u47618_div {
  10065. border-width:0px;
  10066. position:absolute;
  10067. left:0px;
  10068. top:0px;
  10069. width:30px;
  10070. height:30px;
  10071. background:inherit;
  10072. background-color:rgba(255, 255, 255, 1);
  10073. box-sizing:border-box;
  10074. border-width:1px;
  10075. border-style:solid;
  10076. border-color:rgba(121, 121, 121, 1);
  10077. border-radius:0px;
  10078. -moz-box-shadow:none;
  10079. -webkit-box-shadow:none;
  10080. box-shadow:none;
  10081. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  10082. font-weight:700;
  10083. font-style:normal;
  10084. font-size:18px;
  10085. }
  10086. #u47618 {
  10087. border-width:0px;
  10088. position:absolute;
  10089. left:1819px;
  10090. top:174px;
  10091. width:30px;
  10092. height:30px;
  10093. display:flex;
  10094. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  10095. font-weight:700;
  10096. font-style:normal;
  10097. font-size:18px;
  10098. }
  10099. #u47618 .text {
  10100. position:absolute;
  10101. align-self:center;
  10102. padding:2px 2px 2px 2px;
  10103. box-sizing:border-box;
  10104. width:100%;
  10105. }
  10106. #u47618_text {
  10107. border-width:0px;
  10108. word-wrap:break-word;
  10109. text-transform:none;
  10110. visibility:hidden;
  10111. }
  10112. #u47619_img {
  10113. border-width:0px;
  10114. position:absolute;
  10115. left:0px;
  10116. top:0px;
  10117. width:14px;
  10118. height:14px;
  10119. }
  10120. #u47619 {
  10121. border-width:0px;
  10122. position:absolute;
  10123. left:1827px;
  10124. top:182px;
  10125. width:14px;
  10126. height:14px;
  10127. display:flex;
  10128. }
  10129. #u47619 .text {
  10130. position:absolute;
  10131. align-self:center;
  10132. padding:2px 2px 2px 2px;
  10133. box-sizing:border-box;
  10134. width:100%;
  10135. }
  10136. #u47619_text {
  10137. border-width:0px;
  10138. word-wrap:break-word;
  10139. text-transform:none;
  10140. visibility:hidden;
  10141. }
  10142. #u47620 {
  10143. border-width:0px;
  10144. position:absolute;
  10145. left:0px;
  10146. top:0px;
  10147. width:0px;
  10148. height:0px;
  10149. }
  10150. #u47621_div {
  10151. border-width:0px;
  10152. position:absolute;
  10153. left:0px;
  10154. top:0px;
  10155. width:30px;
  10156. height:30px;
  10157. background:inherit;
  10158. background-color:rgba(255, 255, 255, 1);
  10159. box-sizing:border-box;
  10160. border-width:1px;
  10161. border-style:solid;
  10162. border-color:rgba(121, 121, 121, 1);
  10163. border-radius:0px;
  10164. -moz-box-shadow:none;
  10165. -webkit-box-shadow:none;
  10166. box-shadow:none;
  10167. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  10168. font-weight:700;
  10169. font-style:normal;
  10170. font-size:18px;
  10171. }
  10172. #u47621 {
  10173. border-width:0px;
  10174. position:absolute;
  10175. left:1819px;
  10176. top:214px;
  10177. width:30px;
  10178. height:30px;
  10179. display:flex;
  10180. font-family:'Arial-BoldMT', 'Arial Bold', 'Arial', sans-serif;
  10181. font-weight:700;
  10182. font-style:normal;
  10183. font-size:18px;
  10184. }
  10185. #u47621 .text {
  10186. position:absolute;
  10187. align-self:center;
  10188. padding:2px 2px 2px 2px;
  10189. box-sizing:border-box;
  10190. width:100%;
  10191. }
  10192. #u47621_text {
  10193. border-width:0px;
  10194. word-wrap:break-word;
  10195. text-transform:none;
  10196. visibility:hidden;
  10197. }
  10198. #u47622_img {
  10199. border-width:0px;
  10200. position:absolute;
  10201. left:0px;
  10202. top:0px;
  10203. width:17px;
  10204. height:11px;
  10205. }
  10206. #u47622 {
  10207. border-width:0px;
  10208. position:absolute;
  10209. left:1826px;
  10210. top:224px;
  10211. width:17px;
  10212. height:11px;
  10213. display:flex;
  10214. }
  10215. #u47622 .text {
  10216. position:absolute;
  10217. align-self:center;
  10218. padding:2px 2px 2px 2px;
  10219. box-sizing:border-box;
  10220. width:100%;
  10221. }
  10222. #u47622_text {
  10223. border-width:0px;
  10224. word-wrap:break-word;
  10225. text-transform:none;
  10226. visibility:hidden;
  10227. }
  10228. #u47623 {
  10229. border-width:0px;
  10230. position:absolute;
  10231. left:0px;
  10232. top:0px;
  10233. width:0px;
  10234. height:0px;
  10235. }
  10236. #u47624_div {
  10237. border-width:0px;
  10238. position:absolute;
  10239. left:0px;
  10240. top:0px;
  10241. width:84px;
  10242. height:21px;
  10243. background:inherit;
  10244. background-color:rgba(51, 51, 51, 1);
  10245. border:none;
  10246. border-radius:11px;
  10247. -moz-box-shadow:none;
  10248. -webkit-box-shadow:none;
  10249. box-shadow:none;
  10250. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10251. font-weight:400;
  10252. font-style:normal;
  10253. font-size:12px;
  10254. color:#FFFFFF;
  10255. text-align:center;
  10256. }
  10257. #u47624 {
  10258. border-width:0px;
  10259. position:absolute;
  10260. left:1750px;
  10261. top:240px;
  10262. width:84px;
  10263. height:21px;
  10264. display:flex;
  10265. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10266. font-weight:400;
  10267. font-style:normal;
  10268. font-size:12px;
  10269. color:#FFFFFF;
  10270. text-align:center;
  10271. }
  10272. #u47624 .text {
  10273. position:absolute;
  10274. align-self:center;
  10275. padding:2px 2px 2px 2px;
  10276. box-sizing:border-box;
  10277. width:100%;
  10278. }
  10279. #u47624_text {
  10280. border-width:0px;
  10281. white-space:nowrap;
  10282. text-transform:none;
  10283. }
  10284. #u47625_img {
  10285. border-width:0px;
  10286. position:absolute;
  10287. left:0px;
  10288. top:0px;
  10289. width:11px;
  10290. height:17px;
  10291. }
  10292. #u47625 {
  10293. border-width:0px;
  10294. position:absolute;
  10295. left:1802px;
  10296. top:271px;
  10297. width:11px;
  10298. height:17px;
  10299. display:flex;
  10300. }
  10301. #u47625 .text {
  10302. position:absolute;
  10303. align-self:center;
  10304. padding:2px 2px 2px 2px;
  10305. box-sizing:border-box;
  10306. width:100%;
  10307. }
  10308. #u47625_text {
  10309. border-width:0px;
  10310. word-wrap:break-word;
  10311. text-transform:none;
  10312. visibility:hidden;
  10313. }
  10314. #u47626_div {
  10315. border-width:0px;
  10316. position:absolute;
  10317. left:0px;
  10318. top:0px;
  10319. width:191px;
  10320. height:6px;
  10321. background:inherit;
  10322. background-color:rgba(255, 255, 255, 1);
  10323. box-sizing:border-box;
  10324. border-width:1px;
  10325. border-style:solid;
  10326. border-color:rgba(228, 228, 228, 1);
  10327. border-radius:7px;
  10328. -moz-box-shadow:none;
  10329. -webkit-box-shadow:none;
  10330. box-shadow:none;
  10331. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10332. font-weight:400;
  10333. font-style:normal;
  10334. font-size:12px;
  10335. color:#FFFFFF;
  10336. }
  10337. #u47626 {
  10338. border-width:0px;
  10339. position:absolute;
  10340. left:1658px;
  10341. top:268px;
  10342. width:191px;
  10343. height:6px;
  10344. display:flex;
  10345. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10346. font-weight:400;
  10347. font-style:normal;
  10348. font-size:12px;
  10349. color:#FFFFFF;
  10350. }
  10351. #u47626 .text {
  10352. position:absolute;
  10353. align-self:center;
  10354. padding:8px 15px 8px 15px;
  10355. box-sizing:border-box;
  10356. width:100%;
  10357. }
  10358. #u47626_text {
  10359. border-width:0px;
  10360. word-wrap:break-word;
  10361. text-transform:none;
  10362. visibility:hidden;
  10363. }
  10364. #u47627_div {
  10365. border-width:0px;
  10366. position:absolute;
  10367. left:0px;
  10368. top:0px;
  10369. width:140px;
  10370. height:6px;
  10371. background:inherit;
  10372. background-color:rgba(51, 153, 255, 1);
  10373. box-sizing:border-box;
  10374. border-width:1px;
  10375. border-style:solid;
  10376. border-color:rgba(228, 228, 228, 1);
  10377. border-radius:7px;
  10378. -moz-box-shadow:none;
  10379. -webkit-box-shadow:none;
  10380. box-shadow:none;
  10381. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10382. font-weight:400;
  10383. font-style:normal;
  10384. font-size:12px;
  10385. color:#FFFFFF;
  10386. }
  10387. #u47627 {
  10388. border-width:0px;
  10389. position:absolute;
  10390. left:1658px;
  10391. top:268px;
  10392. width:140px;
  10393. height:6px;
  10394. display:flex;
  10395. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10396. font-weight:400;
  10397. font-style:normal;
  10398. font-size:12px;
  10399. color:#FFFFFF;
  10400. }
  10401. #u47627 .text {
  10402. position:absolute;
  10403. align-self:center;
  10404. padding:8px 15px 8px 15px;
  10405. box-sizing:border-box;
  10406. width:100%;
  10407. }
  10408. #u47627_text {
  10409. border-width:0px;
  10410. word-wrap:break-word;
  10411. text-transform:none;
  10412. visibility:hidden;
  10413. }
  10414. #u47628_img {
  10415. border-width:0px;
  10416. position:absolute;
  10417. left:-3px;
  10418. top:-3px;
  10419. width:20px;
  10420. height:20px;
  10421. }
  10422. #u47628 {
  10423. border-width:0px;
  10424. position:absolute;
  10425. left:1787px;
  10426. top:264px;
  10427. width:14px;
  10428. height:14px;
  10429. display:flex;
  10430. }
  10431. #u47628 .text {
  10432. position:absolute;
  10433. align-self:center;
  10434. padding:2px 2px 2px 2px;
  10435. box-sizing:border-box;
  10436. width:100%;
  10437. }
  10438. #u47628_text {
  10439. border-width:0px;
  10440. word-wrap:break-word;
  10441. text-transform:none;
  10442. visibility:hidden;
  10443. }
  10444. #u47629 {
  10445. border-width:0px;
  10446. position:absolute;
  10447. left:1665px;
  10448. top:410px;
  10449. width:127px;
  10450. height:240px;
  10451. }
  10452. #u47629_children {
  10453. border-width:0px;
  10454. position:absolute;
  10455. left:0px;
  10456. top:0px;
  10457. width:0px;
  10458. height:0px;
  10459. }
  10460. #u47630 {
  10461. border-width:0px;
  10462. position:absolute;
  10463. left:0px;
  10464. top:0px;
  10465. width:80px;
  10466. height:20px;
  10467. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10468. font-weight:400;
  10469. font-style:normal;
  10470. }
  10471. #u47631_img {
  10472. border-width:0px;
  10473. position:absolute;
  10474. left:0px;
  10475. top:0px;
  10476. width:9px;
  10477. height:9px;
  10478. }
  10479. #u47631 {
  10480. border-width:0px;
  10481. position:absolute;
  10482. left:6px;
  10483. top:6px;
  10484. width:9px;
  10485. height:9px;
  10486. display:flex;
  10487. }
  10488. #u47631 .text {
  10489. position:absolute;
  10490. align-self:center;
  10491. padding:2px 2px 2px 2px;
  10492. box-sizing:border-box;
  10493. width:100%;
  10494. }
  10495. #u47631_img.selected {
  10496. }
  10497. #u47631.selected {
  10498. }
  10499. #u47631_text {
  10500. border-width:0px;
  10501. word-wrap:break-word;
  10502. text-transform:none;
  10503. visibility:hidden;
  10504. }
  10505. #u47632_div {
  10506. border-width:0px;
  10507. position:absolute;
  10508. left:0px;
  10509. top:0px;
  10510. width:58px;
  10511. height:20px;
  10512. background:inherit;
  10513. background-color:rgba(255, 255, 255, 0);
  10514. border:none;
  10515. border-radius:0px;
  10516. -moz-box-shadow:none;
  10517. -webkit-box-shadow:none;
  10518. box-shadow:none;
  10519. }
  10520. #u47632 {
  10521. border-width:0px;
  10522. position:absolute;
  10523. left:22px;
  10524. top:0px;
  10525. width:58px;
  10526. height:20px;
  10527. display:flex;
  10528. }
  10529. #u47632 .text {
  10530. position:absolute;
  10531. align-self:center;
  10532. padding:2px 2px 2px 3px;
  10533. box-sizing:border-box;
  10534. width:100%;
  10535. }
  10536. #u47632_text {
  10537. border-width:0px;
  10538. white-space:nowrap;
  10539. text-transform:none;
  10540. }
  10541. #u47630_children {
  10542. border-width:0px;
  10543. position:absolute;
  10544. left:0px;
  10545. top:0px;
  10546. width:0px;
  10547. height:0px;
  10548. }
  10549. #u47633 {
  10550. border-width:0px;
  10551. position:absolute;
  10552. left:20px;
  10553. top:20px;
  10554. width:87px;
  10555. height:20px;
  10556. }
  10557. #u47634_img {
  10558. border-width:0px;
  10559. position:absolute;
  10560. left:0px;
  10561. top:0px;
  10562. width:9px;
  10563. height:9px;
  10564. }
  10565. #u47634 {
  10566. border-width:0px;
  10567. position:absolute;
  10568. left:6px;
  10569. top:6px;
  10570. width:9px;
  10571. height:9px;
  10572. display:flex;
  10573. }
  10574. #u47634 .text {
  10575. position:absolute;
  10576. align-self:center;
  10577. padding:2px 2px 2px 2px;
  10578. box-sizing:border-box;
  10579. width:100%;
  10580. }
  10581. #u47634_img.selected {
  10582. }
  10583. #u47634.selected {
  10584. }
  10585. #u47634_text {
  10586. border-width:0px;
  10587. word-wrap:break-word;
  10588. text-transform:none;
  10589. visibility:hidden;
  10590. }
  10591. #u47635_div {
  10592. border-width:0px;
  10593. position:absolute;
  10594. left:0px;
  10595. top:0px;
  10596. width:65px;
  10597. height:20px;
  10598. background:inherit;
  10599. background-color:rgba(255, 255, 255, 0);
  10600. border:none;
  10601. border-radius:0px;
  10602. -moz-box-shadow:none;
  10603. -webkit-box-shadow:none;
  10604. box-shadow:none;
  10605. }
  10606. #u47635 {
  10607. border-width:0px;
  10608. position:absolute;
  10609. left:22px;
  10610. top:0px;
  10611. width:65px;
  10612. height:20px;
  10613. display:flex;
  10614. }
  10615. #u47635 .text {
  10616. position:absolute;
  10617. align-self:center;
  10618. padding:2px 2px 2px 3px;
  10619. box-sizing:border-box;
  10620. width:100%;
  10621. }
  10622. #u47635_text {
  10623. border-width:0px;
  10624. white-space:nowrap;
  10625. text-transform:none;
  10626. }
  10627. #u47633_children {
  10628. border-width:0px;
  10629. position:absolute;
  10630. left:0px;
  10631. top:0px;
  10632. width:0px;
  10633. height:0px;
  10634. }
  10635. #u47636 {
  10636. border-width:0px;
  10637. position:absolute;
  10638. left:20px;
  10639. top:20px;
  10640. width:87px;
  10641. height:20px;
  10642. }
  10643. #u47637_div {
  10644. border-width:0px;
  10645. position:absolute;
  10646. left:0px;
  10647. top:0px;
  10648. width:65px;
  10649. height:20px;
  10650. background:inherit;
  10651. background-color:rgba(255, 255, 255, 0);
  10652. border:none;
  10653. border-radius:0px;
  10654. -moz-box-shadow:none;
  10655. -webkit-box-shadow:none;
  10656. box-shadow:none;
  10657. }
  10658. #u47637 {
  10659. border-width:0px;
  10660. position:absolute;
  10661. left:22px;
  10662. top:0px;
  10663. width:65px;
  10664. height:20px;
  10665. display:flex;
  10666. }
  10667. #u47637 .text {
  10668. position:absolute;
  10669. align-self:center;
  10670. padding:2px 2px 2px 3px;
  10671. box-sizing:border-box;
  10672. width:100%;
  10673. }
  10674. #u47637_text {
  10675. border-width:0px;
  10676. white-space:nowrap;
  10677. text-transform:none;
  10678. }
  10679. #u47638 {
  10680. border-width:0px;
  10681. position:absolute;
  10682. left:20px;
  10683. top:40px;
  10684. width:87px;
  10685. height:20px;
  10686. }
  10687. #u47639_div {
  10688. border-width:0px;
  10689. position:absolute;
  10690. left:0px;
  10691. top:0px;
  10692. width:65px;
  10693. height:20px;
  10694. background:inherit;
  10695. background-color:rgba(255, 255, 255, 0);
  10696. border:none;
  10697. border-radius:0px;
  10698. -moz-box-shadow:none;
  10699. -webkit-box-shadow:none;
  10700. box-shadow:none;
  10701. }
  10702. #u47639 {
  10703. border-width:0px;
  10704. position:absolute;
  10705. left:22px;
  10706. top:0px;
  10707. width:65px;
  10708. height:20px;
  10709. display:flex;
  10710. }
  10711. #u47639 .text {
  10712. position:absolute;
  10713. align-self:center;
  10714. padding:2px 2px 2px 3px;
  10715. box-sizing:border-box;
  10716. width:100%;
  10717. }
  10718. #u47639_text {
  10719. border-width:0px;
  10720. white-space:nowrap;
  10721. text-transform:none;
  10722. }
  10723. #u47640 {
  10724. border-width:0px;
  10725. position:absolute;
  10726. left:20px;
  10727. top:60px;
  10728. width:54px;
  10729. height:20px;
  10730. }
  10731. #u47641_div {
  10732. border-width:0px;
  10733. position:absolute;
  10734. left:0px;
  10735. top:0px;
  10736. width:32px;
  10737. height:20px;
  10738. background:inherit;
  10739. background-color:rgba(255, 255, 255, 0);
  10740. border:none;
  10741. border-radius:0px;
  10742. -moz-box-shadow:none;
  10743. -webkit-box-shadow:none;
  10744. box-shadow:none;
  10745. }
  10746. #u47641 {
  10747. border-width:0px;
  10748. position:absolute;
  10749. left:22px;
  10750. top:0px;
  10751. width:32px;
  10752. height:20px;
  10753. display:flex;
  10754. }
  10755. #u47641 .text {
  10756. position:absolute;
  10757. align-self:center;
  10758. padding:2px 2px 2px 3px;
  10759. box-sizing:border-box;
  10760. width:100%;
  10761. }
  10762. #u47641_text {
  10763. border-width:0px;
  10764. white-space:nowrap;
  10765. text-transform:none;
  10766. }
  10767. #u47642 {
  10768. border-width:0px;
  10769. position:absolute;
  10770. left:20px;
  10771. top:100px;
  10772. width:87px;
  10773. height:20px;
  10774. }
  10775. #u47643_img {
  10776. border-width:0px;
  10777. position:absolute;
  10778. left:0px;
  10779. top:0px;
  10780. width:9px;
  10781. height:9px;
  10782. }
  10783. #u47643 {
  10784. border-width:0px;
  10785. position:absolute;
  10786. left:6px;
  10787. top:6px;
  10788. width:9px;
  10789. height:9px;
  10790. display:flex;
  10791. }
  10792. #u47643 .text {
  10793. position:absolute;
  10794. align-self:center;
  10795. padding:2px 2px 2px 2px;
  10796. box-sizing:border-box;
  10797. width:100%;
  10798. }
  10799. #u47643_img.selected {
  10800. }
  10801. #u47643.selected {
  10802. }
  10803. #u47643_text {
  10804. border-width:0px;
  10805. word-wrap:break-word;
  10806. text-transform:none;
  10807. visibility:hidden;
  10808. }
  10809. #u47644_div {
  10810. border-width:0px;
  10811. position:absolute;
  10812. left:0px;
  10813. top:0px;
  10814. width:65px;
  10815. height:20px;
  10816. background:inherit;
  10817. background-color:rgba(255, 255, 255, 0);
  10818. border:none;
  10819. border-radius:0px;
  10820. -moz-box-shadow:none;
  10821. -webkit-box-shadow:none;
  10822. box-shadow:none;
  10823. }
  10824. #u47644 {
  10825. border-width:0px;
  10826. position:absolute;
  10827. left:22px;
  10828. top:0px;
  10829. width:65px;
  10830. height:20px;
  10831. display:flex;
  10832. }
  10833. #u47644 .text {
  10834. position:absolute;
  10835. align-self:center;
  10836. padding:2px 2px 2px 3px;
  10837. box-sizing:border-box;
  10838. width:100%;
  10839. }
  10840. #u47644_text {
  10841. border-width:0px;
  10842. white-space:nowrap;
  10843. text-transform:none;
  10844. }
  10845. #u47642_children {
  10846. border-width:0px;
  10847. position:absolute;
  10848. left:0px;
  10849. top:0px;
  10850. width:0px;
  10851. height:0px;
  10852. }
  10853. #u47645 {
  10854. border-width:0px;
  10855. position:absolute;
  10856. left:20px;
  10857. top:20px;
  10858. width:87px;
  10859. height:20px;
  10860. }
  10861. #u47646_div {
  10862. border-width:0px;
  10863. position:absolute;
  10864. left:0px;
  10865. top:0px;
  10866. width:65px;
  10867. height:20px;
  10868. background:inherit;
  10869. background-color:rgba(255, 255, 255, 0);
  10870. border:none;
  10871. border-radius:0px;
  10872. -moz-box-shadow:none;
  10873. -webkit-box-shadow:none;
  10874. box-shadow:none;
  10875. }
  10876. #u47646 {
  10877. border-width:0px;
  10878. position:absolute;
  10879. left:22px;
  10880. top:0px;
  10881. width:65px;
  10882. height:20px;
  10883. display:flex;
  10884. }
  10885. #u47646 .text {
  10886. position:absolute;
  10887. align-self:center;
  10888. padding:2px 2px 2px 3px;
  10889. box-sizing:border-box;
  10890. width:100%;
  10891. }
  10892. #u47646_text {
  10893. border-width:0px;
  10894. white-space:nowrap;
  10895. text-transform:none;
  10896. }
  10897. #u47647 {
  10898. border-width:0px;
  10899. position:absolute;
  10900. left:20px;
  10901. top:40px;
  10902. width:87px;
  10903. height:20px;
  10904. }
  10905. #u47648_div {
  10906. border-width:0px;
  10907. position:absolute;
  10908. left:0px;
  10909. top:0px;
  10910. width:65px;
  10911. height:20px;
  10912. background:inherit;
  10913. background-color:rgba(255, 255, 255, 0);
  10914. border:none;
  10915. border-radius:0px;
  10916. -moz-box-shadow:none;
  10917. -webkit-box-shadow:none;
  10918. box-shadow:none;
  10919. }
  10920. #u47648 {
  10921. border-width:0px;
  10922. position:absolute;
  10923. left:22px;
  10924. top:0px;
  10925. width:65px;
  10926. height:20px;
  10927. display:flex;
  10928. }
  10929. #u47648 .text {
  10930. position:absolute;
  10931. align-self:center;
  10932. padding:2px 2px 2px 3px;
  10933. box-sizing:border-box;
  10934. width:100%;
  10935. }
  10936. #u47648_text {
  10937. border-width:0px;
  10938. white-space:nowrap;
  10939. text-transform:none;
  10940. }
  10941. #u47649 {
  10942. border-width:0px;
  10943. position:absolute;
  10944. left:20px;
  10945. top:60px;
  10946. width:54px;
  10947. height:20px;
  10948. }
  10949. #u47650_div {
  10950. border-width:0px;
  10951. position:absolute;
  10952. left:0px;
  10953. top:0px;
  10954. width:32px;
  10955. height:20px;
  10956. background:inherit;
  10957. background-color:rgba(255, 255, 255, 0);
  10958. border:none;
  10959. border-radius:0px;
  10960. -moz-box-shadow:none;
  10961. -webkit-box-shadow:none;
  10962. box-shadow:none;
  10963. }
  10964. #u47650 {
  10965. border-width:0px;
  10966. position:absolute;
  10967. left:22px;
  10968. top:0px;
  10969. width:32px;
  10970. height:20px;
  10971. display:flex;
  10972. }
  10973. #u47650 .text {
  10974. position:absolute;
  10975. align-self:center;
  10976. padding:2px 2px 2px 3px;
  10977. box-sizing:border-box;
  10978. width:100%;
  10979. }
  10980. #u47650_text {
  10981. border-width:0px;
  10982. white-space:nowrap;
  10983. text-transform:none;
  10984. }
  10985. #u47651 {
  10986. border-width:0px;
  10987. position:absolute;
  10988. left:20px;
  10989. top:180px;
  10990. width:87px;
  10991. height:20px;
  10992. }
  10993. #u47652_img {
  10994. border-width:0px;
  10995. position:absolute;
  10996. left:0px;
  10997. top:0px;
  10998. width:9px;
  10999. height:9px;
  11000. }
  11001. #u47652 {
  11002. border-width:0px;
  11003. position:absolute;
  11004. left:6px;
  11005. top:6px;
  11006. width:9px;
  11007. height:9px;
  11008. display:flex;
  11009. }
  11010. #u47652 .text {
  11011. position:absolute;
  11012. align-self:center;
  11013. padding:2px 2px 2px 2px;
  11014. box-sizing:border-box;
  11015. width:100%;
  11016. }
  11017. #u47652_img.selected {
  11018. }
  11019. #u47652.selected {
  11020. }
  11021. #u47652_text {
  11022. border-width:0px;
  11023. word-wrap:break-word;
  11024. text-transform:none;
  11025. visibility:hidden;
  11026. }
  11027. #u47653_div {
  11028. border-width:0px;
  11029. position:absolute;
  11030. left:0px;
  11031. top:0px;
  11032. width:65px;
  11033. height:20px;
  11034. background:inherit;
  11035. background-color:rgba(255, 255, 255, 0);
  11036. border:none;
  11037. border-radius:0px;
  11038. -moz-box-shadow:none;
  11039. -webkit-box-shadow:none;
  11040. box-shadow:none;
  11041. }
  11042. #u47653 {
  11043. border-width:0px;
  11044. position:absolute;
  11045. left:22px;
  11046. top:0px;
  11047. width:65px;
  11048. height:20px;
  11049. display:flex;
  11050. }
  11051. #u47653 .text {
  11052. position:absolute;
  11053. align-self:center;
  11054. padding:2px 2px 2px 3px;
  11055. box-sizing:border-box;
  11056. width:100%;
  11057. }
  11058. #u47653_text {
  11059. border-width:0px;
  11060. white-space:nowrap;
  11061. text-transform:none;
  11062. }
  11063. #u47651_children {
  11064. border-width:0px;
  11065. position:absolute;
  11066. left:0px;
  11067. top:0px;
  11068. width:0px;
  11069. height:0px;
  11070. }
  11071. #u47654 {
  11072. border-width:0px;
  11073. position:absolute;
  11074. left:20px;
  11075. top:20px;
  11076. width:87px;
  11077. height:20px;
  11078. }
  11079. #u47655_div {
  11080. border-width:0px;
  11081. position:absolute;
  11082. left:0px;
  11083. top:0px;
  11084. width:65px;
  11085. height:20px;
  11086. background:inherit;
  11087. background-color:rgba(255, 255, 255, 0);
  11088. border:none;
  11089. border-radius:0px;
  11090. -moz-box-shadow:none;
  11091. -webkit-box-shadow:none;
  11092. box-shadow:none;
  11093. }
  11094. #u47655 {
  11095. border-width:0px;
  11096. position:absolute;
  11097. left:22px;
  11098. top:0px;
  11099. width:65px;
  11100. height:20px;
  11101. display:flex;
  11102. }
  11103. #u47655 .text {
  11104. position:absolute;
  11105. align-self:center;
  11106. padding:2px 2px 2px 3px;
  11107. box-sizing:border-box;
  11108. width:100%;
  11109. }
  11110. #u47655_text {
  11111. border-width:0px;
  11112. white-space:nowrap;
  11113. text-transform:none;
  11114. }
  11115. #u47656 {
  11116. border-width:0px;
  11117. position:absolute;
  11118. left:20px;
  11119. top:40px;
  11120. width:54px;
  11121. height:20px;
  11122. }
  11123. #u47657_div {
  11124. border-width:0px;
  11125. position:absolute;
  11126. left:0px;
  11127. top:0px;
  11128. width:32px;
  11129. height:20px;
  11130. background:inherit;
  11131. background-color:rgba(255, 255, 255, 0);
  11132. border:none;
  11133. border-radius:0px;
  11134. -moz-box-shadow:none;
  11135. -webkit-box-shadow:none;
  11136. box-shadow:none;
  11137. }
  11138. #u47657 {
  11139. border-width:0px;
  11140. position:absolute;
  11141. left:22px;
  11142. top:0px;
  11143. width:32px;
  11144. height:20px;
  11145. display:flex;
  11146. }
  11147. #u47657 .text {
  11148. position:absolute;
  11149. align-self:center;
  11150. padding:2px 2px 2px 3px;
  11151. box-sizing:border-box;
  11152. width:100%;
  11153. }
  11154. #u47657_text {
  11155. border-width:0px;
  11156. white-space:nowrap;
  11157. text-transform:none;
  11158. }
  11159. #u47658 {
  11160. border-width:0px;
  11161. position:absolute;
  11162. left:0px;
  11163. top:0px;
  11164. width:0px;
  11165. height:0px;
  11166. }
  11167. #u47659_div {
  11168. border-width:0px;
  11169. position:absolute;
  11170. left:0px;
  11171. top:0px;
  11172. width:175px;
  11173. height:30px;
  11174. background:inherit;
  11175. background-color:rgba(255, 255, 255, 1);
  11176. box-sizing:border-box;
  11177. border-width:1px;
  11178. border-style:solid;
  11179. border-color:rgba(201, 201, 201, 1);
  11180. border-radius:4px;
  11181. -moz-box-shadow:none;
  11182. -webkit-box-shadow:none;
  11183. box-shadow:none;
  11184. font-family:'Microsoft YaHei', sans-serif;
  11185. font-weight:400;
  11186. font-style:normal;
  11187. font-size:14px;
  11188. color:#CCCCCC;
  11189. text-align:left;
  11190. }
  11191. #u47659 {
  11192. border-width:0px;
  11193. position:absolute;
  11194. left:1666px;
  11195. top:333px;
  11196. width:175px;
  11197. height:30px;
  11198. display:flex;
  11199. font-family:'Microsoft YaHei', sans-serif;
  11200. font-weight:400;
  11201. font-style:normal;
  11202. font-size:14px;
  11203. color:#CCCCCC;
  11204. text-align:left;
  11205. }
  11206. #u47659 .text {
  11207. position:absolute;
  11208. align-self:center;
  11209. padding:2px 8px 2px 8px;
  11210. box-sizing:border-box;
  11211. width:100%;
  11212. }
  11213. #u47659_text {
  11214. border-width:0px;
  11215. word-wrap:break-word;
  11216. text-transform:none;
  11217. visibility:hidden;
  11218. }
  11219. #u47660_input {
  11220. position:absolute;
  11221. left:0px;
  11222. top:0px;
  11223. width:159px;
  11224. height:25px;
  11225. padding:2px 2px 2px 2px;
  11226. font-family:'Microsoft YaHei', sans-serif;
  11227. font-weight:400;
  11228. font-style:normal;
  11229. font-size:10px;
  11230. letter-spacing:normal;
  11231. color:#000000;
  11232. vertical-align:none;
  11233. text-align:left;
  11234. text-transform:none;
  11235. background-color:transparent;
  11236. border-color:transparent;
  11237. }
  11238. #u47660_input.disabled {
  11239. position:absolute;
  11240. left:0px;
  11241. top:0px;
  11242. width:159px;
  11243. height:25px;
  11244. padding:2px 2px 2px 2px;
  11245. font-family:'Microsoft YaHei', sans-serif;
  11246. font-weight:400;
  11247. font-style:normal;
  11248. font-size:10px;
  11249. letter-spacing:normal;
  11250. color:#000000;
  11251. vertical-align:none;
  11252. text-align:left;
  11253. text-transform:none;
  11254. background-color:transparent;
  11255. border-color:transparent;
  11256. }
  11257. #u47660_div {
  11258. border-width:0px;
  11259. position:absolute;
  11260. left:0px;
  11261. top:0px;
  11262. width:159px;
  11263. height:25px;
  11264. background:inherit;
  11265. background-color:rgba(255, 255, 255, 1);
  11266. border:none;
  11267. border-radius:0px;
  11268. -moz-box-shadow:none;
  11269. -webkit-box-shadow:none;
  11270. box-shadow:none;
  11271. font-family:'Microsoft YaHei', sans-serif;
  11272. font-weight:400;
  11273. font-style:normal;
  11274. font-size:10px;
  11275. }
  11276. #u47660 {
  11277. border-width:0px;
  11278. position:absolute;
  11279. left:1676px;
  11280. top:334px;
  11281. width:159px;
  11282. height:25px;
  11283. display:flex;
  11284. font-family:'Microsoft YaHei', sans-serif;
  11285. font-weight:400;
  11286. font-style:normal;
  11287. font-size:10px;
  11288. }
  11289. #u47660 .text {
  11290. position:absolute;
  11291. align-self:center;
  11292. padding:2px 2px 2px 2px;
  11293. box-sizing:border-box;
  11294. width:100%;
  11295. }
  11296. #u47660_div.disabled {
  11297. border-width:0px;
  11298. position:absolute;
  11299. left:0px;
  11300. top:0px;
  11301. width:159px;
  11302. height:25px;
  11303. background:inherit;
  11304. background-color:rgba(240, 240, 240, 1);
  11305. border:none;
  11306. border-radius:0px;
  11307. -moz-box-shadow:none;
  11308. -webkit-box-shadow:none;
  11309. box-shadow:none;
  11310. font-family:'Microsoft YaHei', sans-serif;
  11311. font-weight:400;
  11312. font-style:normal;
  11313. font-size:10px;
  11314. }
  11315. #u47660.disabled {
  11316. }
  11317. #u47661_div {
  11318. border-width:0px;
  11319. position:absolute;
  11320. left:0px;
  11321. top:0px;
  11322. width:25px;
  11323. height:30px;
  11324. background:inherit;
  11325. background-color:rgba(255, 255, 255, 0);
  11326. border:none;
  11327. border-radius:0px;
  11328. -moz-box-shadow:none;
  11329. -webkit-box-shadow:none;
  11330. box-shadow:none;
  11331. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11332. font-weight:400;
  11333. font-style:normal;
  11334. font-size:12px;
  11335. color:#3399FF;
  11336. line-height:30px;
  11337. }
  11338. #u47661 {
  11339. border-width:0px;
  11340. position:absolute;
  11341. left:1666px;
  11342. top:372px;
  11343. width:25px;
  11344. height:30px;
  11345. display:flex;
  11346. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11347. font-weight:400;
  11348. font-style:normal;
  11349. font-size:12px;
  11350. color:#3399FF;
  11351. line-height:30px;
  11352. }
  11353. #u47661 .text {
  11354. position:absolute;
  11355. align-self:flex-start;
  11356. padding:0px 0px 0px 0px;
  11357. box-sizing:border-box;
  11358. width:100%;
  11359. }
  11360. #u47661_text {
  11361. border-width:0px;
  11362. white-space:nowrap;
  11363. text-transform:none;
  11364. }
  11365. #u47662_div {
  11366. border-width:0px;
  11367. position:absolute;
  11368. left:0px;
  11369. top:0px;
  11370. width:25px;
  11371. height:30px;
  11372. background:inherit;
  11373. background-color:rgba(255, 255, 255, 0);
  11374. border:none;
  11375. border-radius:0px;
  11376. -moz-box-shadow:none;
  11377. -webkit-box-shadow:none;
  11378. box-shadow:none;
  11379. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11380. font-weight:400;
  11381. font-style:normal;
  11382. font-size:12px;
  11383. color:#7F7F7F;
  11384. line-height:30px;
  11385. }
  11386. #u47662 {
  11387. border-width:0px;
  11388. position:absolute;
  11389. left:1703px;
  11390. top:372px;
  11391. width:25px;
  11392. height:30px;
  11393. display:flex;
  11394. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11395. font-weight:400;
  11396. font-style:normal;
  11397. font-size:12px;
  11398. color:#7F7F7F;
  11399. line-height:30px;
  11400. }
  11401. #u47662 .text {
  11402. position:absolute;
  11403. align-self:flex-start;
  11404. padding:0px 0px 0px 0px;
  11405. box-sizing:border-box;
  11406. width:100%;
  11407. }
  11408. #u47662_text {
  11409. border-width:0px;
  11410. white-space:nowrap;
  11411. text-transform:none;
  11412. }
  11413. #u47663_div {
  11414. border-width:0px;
  11415. position:absolute;
  11416. left:0px;
  11417. top:0px;
  11418. width:25px;
  11419. height:30px;
  11420. background:inherit;
  11421. background-color:rgba(255, 255, 255, 0);
  11422. border:none;
  11423. border-radius:0px;
  11424. -moz-box-shadow:none;
  11425. -webkit-box-shadow:none;
  11426. box-shadow:none;
  11427. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11428. font-weight:400;
  11429. font-style:normal;
  11430. font-size:12px;
  11431. color:#7F7F7F;
  11432. line-height:30px;
  11433. }
  11434. #u47663 {
  11435. border-width:0px;
  11436. position:absolute;
  11437. left:1739px;
  11438. top:372px;
  11439. width:25px;
  11440. height:30px;
  11441. display:flex;
  11442. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11443. font-weight:400;
  11444. font-style:normal;
  11445. font-size:12px;
  11446. color:#7F7F7F;
  11447. line-height:30px;
  11448. }
  11449. #u47663 .text {
  11450. position:absolute;
  11451. align-self:flex-start;
  11452. padding:0px 0px 0px 0px;
  11453. box-sizing:border-box;
  11454. width:100%;
  11455. }
  11456. #u47663_text {
  11457. border-width:0px;
  11458. white-space:nowrap;
  11459. text-transform:none;
  11460. }
  11461. #u47664_div {
  11462. border-width:0px;
  11463. position:absolute;
  11464. left:0px;
  11465. top:0px;
  11466. width:25px;
  11467. height:30px;
  11468. background:inherit;
  11469. background-color:rgba(255, 255, 255, 0);
  11470. border:none;
  11471. border-radius:0px;
  11472. -moz-box-shadow:none;
  11473. -webkit-box-shadow:none;
  11474. box-shadow:none;
  11475. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11476. font-weight:400;
  11477. font-style:normal;
  11478. font-size:12px;
  11479. color:#7F7F7F;
  11480. line-height:30px;
  11481. }
  11482. #u47664 {
  11483. border-width:0px;
  11484. position:absolute;
  11485. left:1776px;
  11486. top:372px;
  11487. width:25px;
  11488. height:30px;
  11489. display:flex;
  11490. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11491. font-weight:400;
  11492. font-style:normal;
  11493. font-size:12px;
  11494. color:#7F7F7F;
  11495. line-height:30px;
  11496. }
  11497. #u47664 .text {
  11498. position:absolute;
  11499. align-self:flex-start;
  11500. padding:0px 0px 0px 0px;
  11501. box-sizing:border-box;
  11502. width:100%;
  11503. }
  11504. #u47664_text {
  11505. border-width:0px;
  11506. white-space:nowrap;
  11507. text-transform:none;
  11508. }
  11509. #u47665 {
  11510. border-width:0px;
  11511. position:absolute;
  11512. left:0px;
  11513. top:0px;
  11514. width:0px;
  11515. height:0px;
  11516. }
  11517. #u47666_div {
  11518. border-width:0px;
  11519. position:absolute;
  11520. left:0px;
  11521. top:0px;
  11522. width:200px;
  11523. height:1193px;
  11524. background:inherit;
  11525. background-color:rgba(255, 255, 255, 1);
  11526. border:none;
  11527. border-radius:0px;
  11528. -moz-box-shadow:none;
  11529. -webkit-box-shadow:none;
  11530. box-shadow:none;
  11531. }
  11532. #u47666 {
  11533. border-width:0px;
  11534. position:absolute;
  11535. left:120px;
  11536. top:50px;
  11537. width:200px;
  11538. height:1193px;
  11539. display:flex;
  11540. }
  11541. #u47666 .text {
  11542. position:absolute;
  11543. align-self:center;
  11544. padding:2px 2px 2px 2px;
  11545. box-sizing:border-box;
  11546. width:100%;
  11547. }
  11548. #u47666_text {
  11549. border-width:0px;
  11550. word-wrap:break-word;
  11551. text-transform:none;
  11552. visibility:hidden;
  11553. }
  11554. #u47667_div {
  11555. border-width:0px;
  11556. position:absolute;
  11557. left:0px;
  11558. top:0px;
  11559. width:200px;
  11560. height:60px;
  11561. background:inherit;
  11562. background-color:rgba(224, 231, 247, 1);
  11563. border:none;
  11564. border-radius:0px;
  11565. -moz-box-shadow:none;
  11566. -webkit-box-shadow:none;
  11567. box-shadow:none;
  11568. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11569. font-weight:500;
  11570. font-style:normal;
  11571. font-size:18px;
  11572. }
  11573. #u47667 {
  11574. border-width:0px;
  11575. position:absolute;
  11576. left:120px;
  11577. top:50px;
  11578. width:200px;
  11579. height:60px;
  11580. display:flex;
  11581. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  11582. font-weight:500;
  11583. font-style:normal;
  11584. font-size:18px;
  11585. }
  11586. #u47667 .text {
  11587. position:absolute;
  11588. align-self:center;
  11589. padding:0px 0px 0px 20px;
  11590. box-sizing:border-box;
  11591. width:100%;
  11592. }
  11593. #u47667_text {
  11594. border-width:0px;
  11595. word-wrap:break-word;
  11596. text-transform:none;
  11597. }
  11598. #u47668_div {
  11599. border-width:0px;
  11600. position:absolute;
  11601. left:0px;
  11602. top:0px;
  11603. width:97px;
  11604. height:22px;
  11605. background:inherit;
  11606. background-color:rgba(255, 255, 255, 0);
  11607. border:none;
  11608. border-radius:0px;
  11609. -moz-box-shadow:none;
  11610. -webkit-box-shadow:none;
  11611. box-shadow:none;
  11612. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11613. font-weight:400;
  11614. font-style:normal;
  11615. font-size:16px;
  11616. }
  11617. #u47668 {
  11618. border-width:0px;
  11619. position:absolute;
  11620. left:147px;
  11621. top:387px;
  11622. width:97px;
  11623. height:22px;
  11624. display:flex;
  11625. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11626. font-weight:400;
  11627. font-style:normal;
  11628. font-size:16px;
  11629. }
  11630. #u47668 .text {
  11631. position:absolute;
  11632. align-self:flex-start;
  11633. padding:0px 0px 0px 0px;
  11634. box-sizing:border-box;
  11635. width:100%;
  11636. }
  11637. #u47668_text {
  11638. border-width:0px;
  11639. word-wrap:break-word;
  11640. text-transform:none;
  11641. }
  11642. #u47669_div {
  11643. border-width:0px;
  11644. position:absolute;
  11645. left:0px;
  11646. top:0px;
  11647. width:97px;
  11648. height:22px;
  11649. background:inherit;
  11650. background-color:rgba(255, 255, 255, 0);
  11651. border:none;
  11652. border-radius:0px;
  11653. -moz-box-shadow:none;
  11654. -webkit-box-shadow:none;
  11655. box-shadow:none;
  11656. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11657. font-weight:400;
  11658. font-style:normal;
  11659. font-size:16px;
  11660. }
  11661. #u47669 {
  11662. border-width:0px;
  11663. position:absolute;
  11664. left:147px;
  11665. top:166px;
  11666. width:97px;
  11667. height:22px;
  11668. display:flex;
  11669. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11670. font-weight:400;
  11671. font-style:normal;
  11672. font-size:16px;
  11673. }
  11674. #u47669 .text {
  11675. position:absolute;
  11676. align-self:flex-start;
  11677. padding:0px 0px 0px 0px;
  11678. box-sizing:border-box;
  11679. width:100%;
  11680. }
  11681. #u47669_text {
  11682. border-width:0px;
  11683. word-wrap:break-word;
  11684. text-transform:none;
  11685. }
  11686. #u47670_div {
  11687. border-width:0px;
  11688. position:absolute;
  11689. left:0px;
  11690. top:0px;
  11691. width:49px;
  11692. height:17px;
  11693. background:inherit;
  11694. background-color:rgba(255, 255, 255, 0);
  11695. border:none;
  11696. border-radius:0px;
  11697. -moz-box-shadow:none;
  11698. -webkit-box-shadow:none;
  11699. box-shadow:none;
  11700. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11701. font-weight:400;
  11702. font-style:normal;
  11703. font-size:12px;
  11704. color:#AAAAAA;
  11705. }
  11706. #u47670 {
  11707. border-width:0px;
  11708. position:absolute;
  11709. left:147px;
  11710. top:130px;
  11711. width:49px;
  11712. height:17px;
  11713. display:flex;
  11714. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11715. font-weight:400;
  11716. font-style:normal;
  11717. font-size:12px;
  11718. color:#AAAAAA;
  11719. }
  11720. #u47670 .text {
  11721. position:absolute;
  11722. align-self:flex-start;
  11723. padding:0px 0px 0px 0px;
  11724. box-sizing:border-box;
  11725. width:100%;
  11726. }
  11727. #u47670_text {
  11728. border-width:0px;
  11729. white-space:nowrap;
  11730. text-transform:none;
  11731. }
  11732. #u47671_div {
  11733. border-width:0px;
  11734. position:absolute;
  11735. left:0px;
  11736. top:0px;
  11737. width:97px;
  11738. height:22px;
  11739. background:inherit;
  11740. background-color:rgba(255, 255, 255, 0);
  11741. border:none;
  11742. border-radius:0px;
  11743. -moz-box-shadow:none;
  11744. -webkit-box-shadow:none;
  11745. box-shadow:none;
  11746. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11747. font-weight:400;
  11748. font-style:normal;
  11749. font-size:16px;
  11750. }
  11751. #u47671 {
  11752. border-width:0px;
  11753. position:absolute;
  11754. left:147px;
  11755. top:208px;
  11756. width:97px;
  11757. height:22px;
  11758. display:flex;
  11759. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11760. font-weight:400;
  11761. font-style:normal;
  11762. font-size:16px;
  11763. }
  11764. #u47671 .text {
  11765. position:absolute;
  11766. align-self:flex-start;
  11767. padding:0px 0px 0px 0px;
  11768. box-sizing:border-box;
  11769. width:100%;
  11770. }
  11771. #u47671_text {
  11772. border-width:0px;
  11773. word-wrap:break-word;
  11774. text-transform:none;
  11775. }
  11776. #u47672_img {
  11777. border-width:0px;
  11778. position:absolute;
  11779. left:0px;
  11780. top:0px;
  11781. width:201px;
  11782. height:2px;
  11783. }
  11784. #u47672 {
  11785. border-width:0px;
  11786. position:absolute;
  11787. left:120px;
  11788. top:246px;
  11789. width:200px;
  11790. height:1px;
  11791. display:flex;
  11792. }
  11793. #u47672 .text {
  11794. position:absolute;
  11795. align-self:center;
  11796. padding:2px 2px 2px 2px;
  11797. box-sizing:border-box;
  11798. width:100%;
  11799. }
  11800. #u47672_text {
  11801. border-width:0px;
  11802. word-wrap:break-word;
  11803. text-transform:none;
  11804. visibility:hidden;
  11805. }
  11806. #u47673_div {
  11807. border-width:0px;
  11808. position:absolute;
  11809. left:0px;
  11810. top:0px;
  11811. width:97px;
  11812. height:22px;
  11813. background:inherit;
  11814. background-color:rgba(255, 255, 255, 0);
  11815. border:none;
  11816. border-radius:0px;
  11817. -moz-box-shadow:none;
  11818. -webkit-box-shadow:none;
  11819. box-shadow:none;
  11820. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11821. font-weight:400;
  11822. font-style:normal;
  11823. font-size:16px;
  11824. }
  11825. #u47673 {
  11826. border-width:0px;
  11827. position:absolute;
  11828. left:147px;
  11829. top:569px;
  11830. width:97px;
  11831. height:22px;
  11832. display:flex;
  11833. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11834. font-weight:400;
  11835. font-style:normal;
  11836. font-size:16px;
  11837. }
  11838. #u47673 .text {
  11839. position:absolute;
  11840. align-self:flex-start;
  11841. padding:0px 0px 0px 0px;
  11842. box-sizing:border-box;
  11843. width:100%;
  11844. }
  11845. #u47673_text {
  11846. border-width:0px;
  11847. word-wrap:break-word;
  11848. text-transform:none;
  11849. }
  11850. #u47674_div {
  11851. border-width:0px;
  11852. position:absolute;
  11853. left:0px;
  11854. top:0px;
  11855. width:49px;
  11856. height:17px;
  11857. background:inherit;
  11858. background-color:rgba(255, 255, 255, 0);
  11859. border:none;
  11860. border-radius:0px;
  11861. -moz-box-shadow:none;
  11862. -webkit-box-shadow:none;
  11863. box-shadow:none;
  11864. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11865. font-weight:400;
  11866. font-style:normal;
  11867. font-size:12px;
  11868. color:#AAAAAA;
  11869. }
  11870. #u47674 {
  11871. border-width:0px;
  11872. position:absolute;
  11873. left:147px;
  11874. top:533px;
  11875. width:49px;
  11876. height:17px;
  11877. display:flex;
  11878. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11879. font-weight:400;
  11880. font-style:normal;
  11881. font-size:12px;
  11882. color:#AAAAAA;
  11883. }
  11884. #u47674 .text {
  11885. position:absolute;
  11886. align-self:flex-start;
  11887. padding:0px 0px 0px 0px;
  11888. box-sizing:border-box;
  11889. width:100%;
  11890. }
  11891. #u47674_text {
  11892. border-width:0px;
  11893. white-space:nowrap;
  11894. text-transform:none;
  11895. }
  11896. #u47675_div {
  11897. border-width:0px;
  11898. position:absolute;
  11899. left:0px;
  11900. top:0px;
  11901. width:97px;
  11902. height:22px;
  11903. background:inherit;
  11904. background-color:rgba(255, 255, 255, 0);
  11905. border:none;
  11906. border-radius:0px;
  11907. -moz-box-shadow:none;
  11908. -webkit-box-shadow:none;
  11909. box-shadow:none;
  11910. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11911. font-weight:400;
  11912. font-style:normal;
  11913. font-size:16px;
  11914. }
  11915. #u47675 {
  11916. border-width:0px;
  11917. position:absolute;
  11918. left:147px;
  11919. top:754px;
  11920. width:97px;
  11921. height:22px;
  11922. display:flex;
  11923. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11924. font-weight:400;
  11925. font-style:normal;
  11926. font-size:16px;
  11927. }
  11928. #u47675 .text {
  11929. position:absolute;
  11930. align-self:flex-start;
  11931. padding:0px 0px 0px 0px;
  11932. box-sizing:border-box;
  11933. width:100%;
  11934. }
  11935. #u47675_text {
  11936. border-width:0px;
  11937. word-wrap:break-word;
  11938. text-transform:none;
  11939. }
  11940. #u47676_img {
  11941. border-width:0px;
  11942. position:absolute;
  11943. left:0px;
  11944. top:0px;
  11945. width:201px;
  11946. height:2px;
  11947. }
  11948. #u47676 {
  11949. border-width:0px;
  11950. position:absolute;
  11951. left:120px;
  11952. top:655px;
  11953. width:200px;
  11954. height:1px;
  11955. display:flex;
  11956. }
  11957. #u47676 .text {
  11958. position:absolute;
  11959. align-self:center;
  11960. padding:2px 2px 2px 2px;
  11961. box-sizing:border-box;
  11962. width:100%;
  11963. }
  11964. #u47676_text {
  11965. border-width:0px;
  11966. word-wrap:break-word;
  11967. text-transform:none;
  11968. visibility:hidden;
  11969. }
  11970. #u47677_div {
  11971. border-width:0px;
  11972. position:absolute;
  11973. left:0px;
  11974. top:0px;
  11975. width:97px;
  11976. height:22px;
  11977. background:inherit;
  11978. background-color:rgba(255, 255, 255, 0);
  11979. border:none;
  11980. border-radius:0px;
  11981. -moz-box-shadow:none;
  11982. -webkit-box-shadow:none;
  11983. box-shadow:none;
  11984. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11985. font-weight:400;
  11986. font-style:normal;
  11987. font-size:16px;
  11988. }
  11989. #u47677 {
  11990. border-width:0px;
  11991. position:absolute;
  11992. left:147px;
  11993. top:712px;
  11994. width:97px;
  11995. height:22px;
  11996. display:flex;
  11997. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11998. font-weight:400;
  11999. font-style:normal;
  12000. font-size:16px;
  12001. }
  12002. #u47677 .text {
  12003. position:absolute;
  12004. align-self:flex-start;
  12005. padding:0px 0px 0px 0px;
  12006. box-sizing:border-box;
  12007. width:100%;
  12008. }
  12009. #u47677_text {
  12010. border-width:0px;
  12011. word-wrap:break-word;
  12012. text-transform:none;
  12013. }
  12014. #u47678_div {
  12015. border-width:0px;
  12016. position:absolute;
  12017. left:0px;
  12018. top:0px;
  12019. width:49px;
  12020. height:17px;
  12021. background:inherit;
  12022. background-color:rgba(255, 255, 255, 0);
  12023. border:none;
  12024. border-radius:0px;
  12025. -moz-box-shadow:none;
  12026. -webkit-box-shadow:none;
  12027. box-shadow:none;
  12028. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12029. font-weight:400;
  12030. font-style:normal;
  12031. font-size:12px;
  12032. color:#AAAAAA;
  12033. }
  12034. #u47678 {
  12035. border-width:0px;
  12036. position:absolute;
  12037. left:147px;
  12038. top:676px;
  12039. width:49px;
  12040. height:17px;
  12041. display:flex;
  12042. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12043. font-weight:400;
  12044. font-style:normal;
  12045. font-size:12px;
  12046. color:#AAAAAA;
  12047. }
  12048. #u47678 .text {
  12049. position:absolute;
  12050. align-self:flex-start;
  12051. padding:0px 0px 0px 0px;
  12052. box-sizing:border-box;
  12053. width:100%;
  12054. }
  12055. #u47678_text {
  12056. border-width:0px;
  12057. white-space:nowrap;
  12058. text-transform:none;
  12059. }
  12060. #u47679_div {
  12061. border-width:0px;
  12062. position:absolute;
  12063. left:0px;
  12064. top:0px;
  12065. width:97px;
  12066. height:22px;
  12067. background:inherit;
  12068. background-color:rgba(255, 255, 255, 0);
  12069. border:none;
  12070. border-radius:0px;
  12071. -moz-box-shadow:none;
  12072. -webkit-box-shadow:none;
  12073. box-shadow:none;
  12074. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12075. font-weight:400;
  12076. font-style:normal;
  12077. font-size:16px;
  12078. }
  12079. #u47679 {
  12080. border-width:0px;
  12081. position:absolute;
  12082. left:147px;
  12083. top:895px;
  12084. width:97px;
  12085. height:22px;
  12086. display:flex;
  12087. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12088. font-weight:400;
  12089. font-style:normal;
  12090. font-size:16px;
  12091. }
  12092. #u47679 .text {
  12093. position:absolute;
  12094. align-self:flex-start;
  12095. padding:0px 0px 0px 0px;
  12096. box-sizing:border-box;
  12097. width:100%;
  12098. }
  12099. #u47679_text {
  12100. border-width:0px;
  12101. word-wrap:break-word;
  12102. text-transform:none;
  12103. }
  12104. #u47680_div {
  12105. border-width:0px;
  12106. position:absolute;
  12107. left:0px;
  12108. top:0px;
  12109. width:97px;
  12110. height:22px;
  12111. background:inherit;
  12112. background-color:rgba(255, 255, 255, 0);
  12113. border:none;
  12114. border-radius:0px;
  12115. -moz-box-shadow:none;
  12116. -webkit-box-shadow:none;
  12117. box-shadow:none;
  12118. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12119. font-weight:400;
  12120. font-style:normal;
  12121. font-size:16px;
  12122. }
  12123. #u47680 {
  12124. border-width:0px;
  12125. position:absolute;
  12126. left:147px;
  12127. top:937px;
  12128. width:97px;
  12129. height:22px;
  12130. display:flex;
  12131. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12132. font-weight:400;
  12133. font-style:normal;
  12134. font-size:16px;
  12135. }
  12136. #u47680 .text {
  12137. position:absolute;
  12138. align-self:flex-start;
  12139. padding:0px 0px 0px 0px;
  12140. box-sizing:border-box;
  12141. width:100%;
  12142. }
  12143. #u47680_text {
  12144. border-width:0px;
  12145. white-space:nowrap;
  12146. text-transform:none;
  12147. }
  12148. #u47681_img {
  12149. border-width:0px;
  12150. position:absolute;
  12151. left:0px;
  12152. top:0px;
  12153. width:201px;
  12154. height:2px;
  12155. }
  12156. #u47681 {
  12157. border-width:0px;
  12158. position:absolute;
  12159. left:120px;
  12160. top:796px;
  12161. width:200px;
  12162. height:1px;
  12163. display:flex;
  12164. }
  12165. #u47681 .text {
  12166. position:absolute;
  12167. align-self:center;
  12168. padding:2px 2px 2px 2px;
  12169. box-sizing:border-box;
  12170. width:100%;
  12171. }
  12172. #u47681_text {
  12173. border-width:0px;
  12174. word-wrap:break-word;
  12175. text-transform:none;
  12176. visibility:hidden;
  12177. }
  12178. #u47682_div {
  12179. border-width:0px;
  12180. position:absolute;
  12181. left:0px;
  12182. top:0px;
  12183. width:97px;
  12184. height:22px;
  12185. background:inherit;
  12186. background-color:rgba(255, 255, 255, 0);
  12187. border:none;
  12188. border-radius:0px;
  12189. -moz-box-shadow:none;
  12190. -webkit-box-shadow:none;
  12191. box-shadow:none;
  12192. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12193. font-weight:400;
  12194. font-style:normal;
  12195. font-size:16px;
  12196. }
  12197. #u47682 {
  12198. border-width:0px;
  12199. position:absolute;
  12200. left:147px;
  12201. top:853px;
  12202. width:97px;
  12203. height:22px;
  12204. display:flex;
  12205. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12206. font-weight:400;
  12207. font-style:normal;
  12208. font-size:16px;
  12209. }
  12210. #u47682 .text {
  12211. position:absolute;
  12212. align-self:flex-start;
  12213. padding:0px 0px 0px 0px;
  12214. box-sizing:border-box;
  12215. width:100%;
  12216. }
  12217. #u47682_text {
  12218. border-width:0px;
  12219. word-wrap:break-word;
  12220. text-transform:none;
  12221. }
  12222. #u47683_div {
  12223. border-width:0px;
  12224. position:absolute;
  12225. left:0px;
  12226. top:0px;
  12227. width:49px;
  12228. height:17px;
  12229. background:inherit;
  12230. background-color:rgba(255, 255, 255, 0);
  12231. border:none;
  12232. border-radius:0px;
  12233. -moz-box-shadow:none;
  12234. -webkit-box-shadow:none;
  12235. box-shadow:none;
  12236. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12237. font-weight:400;
  12238. font-style:normal;
  12239. font-size:12px;
  12240. color:#AAAAAA;
  12241. }
  12242. #u47683 {
  12243. border-width:0px;
  12244. position:absolute;
  12245. left:147px;
  12246. top:817px;
  12247. width:49px;
  12248. height:17px;
  12249. display:flex;
  12250. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12251. font-weight:400;
  12252. font-style:normal;
  12253. font-size:12px;
  12254. color:#AAAAAA;
  12255. }
  12256. #u47683 .text {
  12257. position:absolute;
  12258. align-self:flex-start;
  12259. padding:0px 0px 0px 0px;
  12260. box-sizing:border-box;
  12261. width:100%;
  12262. }
  12263. #u47683_text {
  12264. border-width:0px;
  12265. white-space:nowrap;
  12266. text-transform:none;
  12267. }
  12268. #u47684_div {
  12269. border-width:0px;
  12270. position:absolute;
  12271. left:0px;
  12272. top:0px;
  12273. width:97px;
  12274. height:22px;
  12275. background:inherit;
  12276. background-color:rgba(255, 255, 255, 0);
  12277. border:none;
  12278. border-radius:0px;
  12279. -moz-box-shadow:none;
  12280. -webkit-box-shadow:none;
  12281. box-shadow:none;
  12282. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12283. font-weight:400;
  12284. font-style:normal;
  12285. font-size:16px;
  12286. }
  12287. #u47684 {
  12288. border-width:0px;
  12289. position:absolute;
  12290. left:147px;
  12291. top:611px;
  12292. width:97px;
  12293. height:22px;
  12294. display:flex;
  12295. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12296. font-weight:400;
  12297. font-style:normal;
  12298. font-size:16px;
  12299. }
  12300. #u47684 .text {
  12301. position:absolute;
  12302. align-self:flex-start;
  12303. padding:0px 0px 0px 0px;
  12304. box-sizing:border-box;
  12305. width:100%;
  12306. }
  12307. #u47684_text {
  12308. border-width:0px;
  12309. word-wrap:break-word;
  12310. text-transform:none;
  12311. }
  12312. #u47685_div {
  12313. border-width:0px;
  12314. position:absolute;
  12315. left:0px;
  12316. top:0px;
  12317. width:97px;
  12318. height:22px;
  12319. background:inherit;
  12320. background-color:rgba(255, 255, 255, 0);
  12321. border:none;
  12322. border-radius:0px;
  12323. -moz-box-shadow:none;
  12324. -webkit-box-shadow:none;
  12325. box-shadow:none;
  12326. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12327. font-weight:400;
  12328. font-style:normal;
  12329. font-size:16px;
  12330. }
  12331. #u47685 {
  12332. border-width:0px;
  12333. position:absolute;
  12334. left:147px;
  12335. top:303px;
  12336. width:97px;
  12337. height:22px;
  12338. display:flex;
  12339. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12340. font-weight:400;
  12341. font-style:normal;
  12342. font-size:16px;
  12343. }
  12344. #u47685 .text {
  12345. position:absolute;
  12346. align-self:flex-start;
  12347. padding:0px 0px 0px 0px;
  12348. box-sizing:border-box;
  12349. width:100%;
  12350. }
  12351. #u47685_text {
  12352. border-width:0px;
  12353. word-wrap:break-word;
  12354. text-transform:none;
  12355. }
  12356. #u47686_div {
  12357. border-width:0px;
  12358. position:absolute;
  12359. left:0px;
  12360. top:0px;
  12361. width:49px;
  12362. height:17px;
  12363. background:inherit;
  12364. background-color:rgba(255, 255, 255, 0);
  12365. border:none;
  12366. border-radius:0px;
  12367. -moz-box-shadow:none;
  12368. -webkit-box-shadow:none;
  12369. box-shadow:none;
  12370. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12371. font-weight:400;
  12372. font-style:normal;
  12373. font-size:12px;
  12374. color:#AAAAAA;
  12375. }
  12376. #u47686 {
  12377. border-width:0px;
  12378. position:absolute;
  12379. left:147px;
  12380. top:267px;
  12381. width:49px;
  12382. height:17px;
  12383. display:flex;
  12384. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12385. font-weight:400;
  12386. font-style:normal;
  12387. font-size:12px;
  12388. color:#AAAAAA;
  12389. }
  12390. #u47686 .text {
  12391. position:absolute;
  12392. align-self:flex-start;
  12393. padding:0px 0px 0px 0px;
  12394. box-sizing:border-box;
  12395. width:100%;
  12396. }
  12397. #u47686_text {
  12398. border-width:0px;
  12399. white-space:nowrap;
  12400. text-transform:none;
  12401. }
  12402. #u47687_div {
  12403. border-width:0px;
  12404. position:absolute;
  12405. left:0px;
  12406. top:0px;
  12407. width:97px;
  12408. height:22px;
  12409. background:inherit;
  12410. background-color:rgba(255, 255, 255, 0);
  12411. border:none;
  12412. border-radius:0px;
  12413. -moz-box-shadow:none;
  12414. -webkit-box-shadow:none;
  12415. box-shadow:none;
  12416. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12417. font-weight:400;
  12418. font-style:normal;
  12419. font-size:16px;
  12420. }
  12421. #u47687 {
  12422. border-width:0px;
  12423. position:absolute;
  12424. left:147px;
  12425. top:345px;
  12426. width:97px;
  12427. height:22px;
  12428. display:flex;
  12429. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12430. font-weight:400;
  12431. font-style:normal;
  12432. font-size:16px;
  12433. }
  12434. #u47687 .text {
  12435. position:absolute;
  12436. align-self:flex-start;
  12437. padding:0px 0px 0px 0px;
  12438. box-sizing:border-box;
  12439. width:100%;
  12440. }
  12441. #u47687_text {
  12442. border-width:0px;
  12443. word-wrap:break-word;
  12444. text-transform:none;
  12445. }
  12446. #u47688_img {
  12447. border-width:0px;
  12448. position:absolute;
  12449. left:0px;
  12450. top:0px;
  12451. width:201px;
  12452. height:2px;
  12453. }
  12454. #u47688 {
  12455. border-width:0px;
  12456. position:absolute;
  12457. left:120px;
  12458. top:514px;
  12459. width:200px;
  12460. height:1px;
  12461. display:flex;
  12462. }
  12463. #u47688 .text {
  12464. position:absolute;
  12465. align-self:center;
  12466. padding:2px 2px 2px 2px;
  12467. box-sizing:border-box;
  12468. width:100%;
  12469. }
  12470. #u47688_text {
  12471. border-width:0px;
  12472. word-wrap:break-word;
  12473. text-transform:none;
  12474. visibility:hidden;
  12475. }
  12476. #u47689_div {
  12477. border-width:0px;
  12478. position:absolute;
  12479. left:0px;
  12480. top:0px;
  12481. width:97px;
  12482. height:22px;
  12483. background:inherit;
  12484. background-color:rgba(255, 255, 255, 0);
  12485. border:none;
  12486. border-radius:0px;
  12487. -moz-box-shadow:none;
  12488. -webkit-box-shadow:none;
  12489. box-shadow:none;
  12490. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12491. font-weight:400;
  12492. font-style:normal;
  12493. font-size:16px;
  12494. }
  12495. #u47689 {
  12496. border-width:0px;
  12497. position:absolute;
  12498. left:147px;
  12499. top:429px;
  12500. width:97px;
  12501. height:22px;
  12502. display:flex;
  12503. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12504. font-weight:400;
  12505. font-style:normal;
  12506. font-size:16px;
  12507. }
  12508. #u47689 .text {
  12509. position:absolute;
  12510. align-self:flex-start;
  12511. padding:0px 0px 0px 0px;
  12512. box-sizing:border-box;
  12513. width:100%;
  12514. }
  12515. #u47689_text {
  12516. border-width:0px;
  12517. word-wrap:break-word;
  12518. text-transform:none;
  12519. }
  12520. #u47690_div {
  12521. border-width:0px;
  12522. position:absolute;
  12523. left:0px;
  12524. top:0px;
  12525. width:97px;
  12526. height:22px;
  12527. background:inherit;
  12528. background-color:rgba(255, 255, 255, 0);
  12529. border:none;
  12530. border-radius:0px;
  12531. -moz-box-shadow:none;
  12532. -webkit-box-shadow:none;
  12533. box-shadow:none;
  12534. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12535. font-weight:400;
  12536. font-style:normal;
  12537. font-size:16px;
  12538. }
  12539. #u47690 {
  12540. border-width:0px;
  12541. position:absolute;
  12542. left:147px;
  12543. top:471px;
  12544. width:97px;
  12545. height:22px;
  12546. display:flex;
  12547. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12548. font-weight:400;
  12549. font-style:normal;
  12550. font-size:16px;
  12551. }
  12552. #u47690 .text {
  12553. position:absolute;
  12554. align-self:flex-start;
  12555. padding:0px 0px 0px 0px;
  12556. box-sizing:border-box;
  12557. width:100%;
  12558. }
  12559. #u47690_text {
  12560. border-width:0px;
  12561. white-space:nowrap;
  12562. text-transform:none;
  12563. }