styles.css 151 KB

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