styles.css 198 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:2035px;
  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. #u50894_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. #u50894 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u50894 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u50894_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u50895_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. #u50895 {
  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. #u50895 .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. #u50895_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u50896_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. #u50896 {
  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. #u50896 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u50896_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u50897 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u50898_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u50898 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u50898 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u50898_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u50899_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. #u50899 {
  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. #u50899 .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. #u50899_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u50900_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. #u50900 {
  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. #u50900 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u50900_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u50901 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u50902_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. #u50902_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. #u50902_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. #u50902 {
  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. #u50902 .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. #u50902_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. #u50902.disabled {
  356. }
  357. .u50902_input_option {
  358. font-size:14px;
  359. }
  360. #u50903_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u50903 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u50903 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u50903_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u50904_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. #u50904 {
  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. #u50904 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u50904_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u50905_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. #u50905 {
  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. #u50905 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u50905_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u50906 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u50907_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. #u50907 {
  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. #u50907 .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. #u50907_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u50908_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u50908 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u50908 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u50908_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u50909 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u50910_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. #u50910 {
  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. #u50910 .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. #u50910_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u50911_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u50911 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u50911 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u50911_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u50912 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u50913_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. #u50913 {
  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. #u50913 .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. #u50913_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u50914_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u50914 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:403px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u50914 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u50914_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u50915 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u50916_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. #u50916 {
  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. #u50916 .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. #u50916_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u50917_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u50917 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u50917 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u50917_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u50918 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u50919_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. #u50919 {
  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. #u50919 .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. #u50919_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u50920_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u50920 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:445px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u50920 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u50920_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u50921 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u50922_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. #u50922 {
  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. #u50922 .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. #u50922_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u50923_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u50923 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:319px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u50923 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u50923_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u50924 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u50925_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. #u50925 {
  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. #u50925 .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. #u50925_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u50926_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u50926 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u50926 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u50926_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u50927 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u50928_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. #u50928 {
  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. #u50928 .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. #u50928_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u50929_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u50929 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:361px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u50929 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u50929_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u50930 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u50931_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. #u50931 {
  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. #u50931 .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. #u50931_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u50932_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u50932 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:487px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u50932 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u50932_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u50933 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u50934_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. #u50934 {
  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. #u50934 .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. #u50934_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u50935_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u50935 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:529px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u50935 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u50935_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u50936_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. #u50936 {
  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. #u50936 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u50936_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u50937_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u50937 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u50937 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u50937_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u50938_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. #u50938 {
  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. #u50938 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u50938_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u50939_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u50939 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u50939 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u50939_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u50940 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u50941_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. #u50941 {
  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. #u50941 .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. #u50941_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u50942_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u50942 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u50942 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u50942_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u50943 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u50944_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. #u50944 {
  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. #u50944 .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. #u50944_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u50945_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u50945 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:277px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u50945 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u50945_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u50946_div {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:1265px;
  1644. height:1193px;
  1645. background:inherit;
  1646. background-color:rgba(255, 255, 255, 1);
  1647. border:none;
  1648. border-radius:0px;
  1649. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1650. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1651. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1652. color:#1890FF;
  1653. }
  1654. #u50946 {
  1655. border-width:0px;
  1656. position:absolute;
  1657. left:329px;
  1658. top:50px;
  1659. width:1265px;
  1660. height:1193px;
  1661. display:flex;
  1662. color:#1890FF;
  1663. }
  1664. #u50946 .text {
  1665. position:absolute;
  1666. align-self:center;
  1667. padding:2px 2px 2px 2px;
  1668. box-sizing:border-box;
  1669. width:100%;
  1670. }
  1671. #u50946_text {
  1672. border-width:0px;
  1673. word-wrap:break-word;
  1674. text-transform:none;
  1675. visibility:hidden;
  1676. }
  1677. #u50947_div {
  1678. border-width:0px;
  1679. position:absolute;
  1680. left:0px;
  1681. top:0px;
  1682. width:73px;
  1683. height:50px;
  1684. background:inherit;
  1685. background-color:rgba(255, 255, 255, 0);
  1686. border:none;
  1687. border-left:0px;
  1688. border-top:0px;
  1689. border-right:0px;
  1690. border-radius:0px;
  1691. border-bottom-right-radius:0px;
  1692. border-bottom-left-radius:0px;
  1693. -moz-box-shadow:none;
  1694. -webkit-box-shadow:none;
  1695. box-shadow:none;
  1696. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1697. font-weight:500;
  1698. font-style:normal;
  1699. font-size:18px;
  1700. }
  1701. #u50947 {
  1702. border-width:0px;
  1703. position:absolute;
  1704. left:348px;
  1705. top:50px;
  1706. width:73px;
  1707. height:50px;
  1708. display:flex;
  1709. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1710. font-weight:500;
  1711. font-style:normal;
  1712. font-size:18px;
  1713. }
  1714. #u50947 .text {
  1715. position:absolute;
  1716. align-self:center;
  1717. padding:0px 0px 0px 0px;
  1718. box-sizing:border-box;
  1719. width:100%;
  1720. }
  1721. #u50947_text {
  1722. border-width:0px;
  1723. white-space:nowrap;
  1724. text-transform:none;
  1725. }
  1726. #u50948_div {
  1727. border-width:0px;
  1728. position:absolute;
  1729. left:0px;
  1730. top:0px;
  1731. width:67px;
  1732. height:30px;
  1733. background:inherit;
  1734. background-color:rgba(24, 144, 255, 1);
  1735. border:none;
  1736. border-radius:4px;
  1737. -moz-box-shadow:none;
  1738. -webkit-box-shadow:none;
  1739. box-shadow:none;
  1740. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1741. font-weight:400;
  1742. font-style:normal;
  1743. font-size:14px;
  1744. color:#FFFFFF;
  1745. }
  1746. #u50948 {
  1747. border-width:0px;
  1748. position:absolute;
  1749. left:350px;
  1750. top:154px;
  1751. width:67px;
  1752. height:30px;
  1753. display:flex;
  1754. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1755. font-weight:400;
  1756. font-style:normal;
  1757. font-size:14px;
  1758. color:#FFFFFF;
  1759. }
  1760. #u50948 .text {
  1761. position:absolute;
  1762. align-self:center;
  1763. padding:5px 15px 5px 15px;
  1764. box-sizing:border-box;
  1765. width:100%;
  1766. }
  1767. #u50948_text {
  1768. border-width:0px;
  1769. white-space:nowrap;
  1770. text-transform:none;
  1771. }
  1772. #u50949 {
  1773. border-width:0px;
  1774. position:absolute;
  1775. left:348px;
  1776. top:201px;
  1777. width:1192px;
  1778. height:366px;
  1779. }
  1780. #u50950_img {
  1781. border-width:0px;
  1782. position:absolute;
  1783. left:0px;
  1784. top:0px;
  1785. width:82px;
  1786. height:39px;
  1787. }
  1788. #u50950 {
  1789. border-width:0px;
  1790. position:absolute;
  1791. left:0px;
  1792. top:0px;
  1793. width:82px;
  1794. height:39px;
  1795. display:flex;
  1796. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1797. font-weight:400;
  1798. font-style:normal;
  1799. font-size:12px;
  1800. color:#FFFFFF;
  1801. }
  1802. #u50950 .text {
  1803. position:absolute;
  1804. align-self:center;
  1805. padding:2px 2px 2px 0px;
  1806. box-sizing:border-box;
  1807. width:100%;
  1808. }
  1809. #u50950_text {
  1810. border-width:0px;
  1811. word-wrap:break-word;
  1812. text-transform:none;
  1813. }
  1814. #u50951_img {
  1815. border-width:0px;
  1816. position:absolute;
  1817. left:0px;
  1818. top:0px;
  1819. width:82px;
  1820. height:39px;
  1821. }
  1822. #u50951 {
  1823. border-width:0px;
  1824. position:absolute;
  1825. left:82px;
  1826. top:0px;
  1827. width:82px;
  1828. height:39px;
  1829. display:flex;
  1830. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1831. font-weight:400;
  1832. font-style:normal;
  1833. font-size:12px;
  1834. color:#FFFFFF;
  1835. }
  1836. #u50951 .text {
  1837. position:absolute;
  1838. align-self:center;
  1839. padding:2px 2px 2px 0px;
  1840. box-sizing:border-box;
  1841. width:100%;
  1842. }
  1843. #u50951_text {
  1844. border-width:0px;
  1845. word-wrap:break-word;
  1846. text-transform:none;
  1847. }
  1848. #u50952_img {
  1849. border-width:0px;
  1850. position:absolute;
  1851. left:0px;
  1852. top:0px;
  1853. width:82px;
  1854. height:39px;
  1855. }
  1856. #u50952 {
  1857. border-width:0px;
  1858. position:absolute;
  1859. left:164px;
  1860. top:0px;
  1861. width:82px;
  1862. height:39px;
  1863. display:flex;
  1864. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1865. font-weight:400;
  1866. font-style:normal;
  1867. font-size:12px;
  1868. color:#FFFFFF;
  1869. }
  1870. #u50952 .text {
  1871. position:absolute;
  1872. align-self:center;
  1873. padding:2px 2px 2px 0px;
  1874. box-sizing:border-box;
  1875. width:100%;
  1876. }
  1877. #u50952_text {
  1878. border-width:0px;
  1879. word-wrap:break-word;
  1880. text-transform:none;
  1881. }
  1882. #u50953_img {
  1883. border-width:0px;
  1884. position:absolute;
  1885. left:0px;
  1886. top:0px;
  1887. width:82px;
  1888. height:39px;
  1889. }
  1890. #u50953 {
  1891. border-width:0px;
  1892. position:absolute;
  1893. left:246px;
  1894. top:0px;
  1895. width:82px;
  1896. height:39px;
  1897. display:flex;
  1898. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1899. font-weight:400;
  1900. font-style:normal;
  1901. font-size:12px;
  1902. color:#FFFFFF;
  1903. }
  1904. #u50953 .text {
  1905. position:absolute;
  1906. align-self:center;
  1907. padding:2px 2px 2px 0px;
  1908. box-sizing:border-box;
  1909. width:100%;
  1910. }
  1911. #u50953_text {
  1912. border-width:0px;
  1913. word-wrap:break-word;
  1914. text-transform:none;
  1915. }
  1916. #u50954_img {
  1917. border-width:0px;
  1918. position:absolute;
  1919. left:0px;
  1920. top:0px;
  1921. width:82px;
  1922. height:39px;
  1923. }
  1924. #u50954 {
  1925. border-width:0px;
  1926. position:absolute;
  1927. left:328px;
  1928. top:0px;
  1929. width:82px;
  1930. height:39px;
  1931. display:flex;
  1932. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1933. font-weight:400;
  1934. font-style:normal;
  1935. font-size:12px;
  1936. color:#FFFFFF;
  1937. }
  1938. #u50954 .text {
  1939. position:absolute;
  1940. align-self:center;
  1941. padding:2px 2px 2px 0px;
  1942. box-sizing:border-box;
  1943. width:100%;
  1944. }
  1945. #u50954_text {
  1946. border-width:0px;
  1947. word-wrap:break-word;
  1948. text-transform:none;
  1949. }
  1950. #u50955_img {
  1951. border-width:0px;
  1952. position:absolute;
  1953. left:0px;
  1954. top:0px;
  1955. width:89px;
  1956. height:39px;
  1957. }
  1958. #u50955 {
  1959. border-width:0px;
  1960. position:absolute;
  1961. left:410px;
  1962. top:0px;
  1963. width:89px;
  1964. height:39px;
  1965. display:flex;
  1966. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1967. font-weight:400;
  1968. font-style:normal;
  1969. font-size:12px;
  1970. color:#FFFFFF;
  1971. }
  1972. #u50955 .text {
  1973. position:absolute;
  1974. align-self:center;
  1975. padding:2px 2px 2px 0px;
  1976. box-sizing:border-box;
  1977. width:100%;
  1978. }
  1979. #u50955_text {
  1980. border-width:0px;
  1981. word-wrap:break-word;
  1982. text-transform:none;
  1983. }
  1984. #u50956_img {
  1985. border-width:0px;
  1986. position:absolute;
  1987. left:0px;
  1988. top:0px;
  1989. width:82px;
  1990. height:39px;
  1991. }
  1992. #u50956 {
  1993. border-width:0px;
  1994. position:absolute;
  1995. left:499px;
  1996. top:0px;
  1997. width:82px;
  1998. height:39px;
  1999. display:flex;
  2000. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2001. font-weight:400;
  2002. font-style:normal;
  2003. font-size:12px;
  2004. color:#FFFFFF;
  2005. }
  2006. #u50956 .text {
  2007. position:absolute;
  2008. align-self:center;
  2009. padding:2px 2px 2px 0px;
  2010. box-sizing:border-box;
  2011. width:100%;
  2012. }
  2013. #u50956_text {
  2014. border-width:0px;
  2015. word-wrap:break-word;
  2016. text-transform:none;
  2017. }
  2018. #u50957_img {
  2019. border-width:0px;
  2020. position:absolute;
  2021. left:0px;
  2022. top:0px;
  2023. width:82px;
  2024. height:39px;
  2025. }
  2026. #u50957 {
  2027. border-width:0px;
  2028. position:absolute;
  2029. left:581px;
  2030. top:0px;
  2031. width:82px;
  2032. height:39px;
  2033. display:flex;
  2034. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2035. font-weight:400;
  2036. font-style:normal;
  2037. font-size:12px;
  2038. color:#FFFFFF;
  2039. }
  2040. #u50957 .text {
  2041. position:absolute;
  2042. align-self:center;
  2043. padding:2px 2px 2px 0px;
  2044. box-sizing:border-box;
  2045. width:100%;
  2046. }
  2047. #u50957_text {
  2048. border-width:0px;
  2049. word-wrap:break-word;
  2050. text-transform:none;
  2051. }
  2052. #u50958_img {
  2053. border-width:0px;
  2054. position:absolute;
  2055. left:0px;
  2056. top:0px;
  2057. width:88px;
  2058. height:39px;
  2059. }
  2060. #u50958 {
  2061. border-width:0px;
  2062. position:absolute;
  2063. left:663px;
  2064. top:0px;
  2065. width:88px;
  2066. height:39px;
  2067. display:flex;
  2068. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2069. font-weight:400;
  2070. font-style:normal;
  2071. font-size:12px;
  2072. color:#FFFFFF;
  2073. }
  2074. #u50958 .text {
  2075. position:absolute;
  2076. align-self:center;
  2077. padding:2px 2px 2px 0px;
  2078. box-sizing:border-box;
  2079. width:100%;
  2080. }
  2081. #u50958_text {
  2082. border-width:0px;
  2083. word-wrap:break-word;
  2084. text-transform:none;
  2085. }
  2086. #u50959_img {
  2087. border-width:0px;
  2088. position:absolute;
  2089. left:0px;
  2090. top:0px;
  2091. width:82px;
  2092. height:39px;
  2093. }
  2094. #u50959 {
  2095. border-width:0px;
  2096. position:absolute;
  2097. left:751px;
  2098. top:0px;
  2099. width:82px;
  2100. height:39px;
  2101. display:flex;
  2102. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2103. font-weight:400;
  2104. font-style:normal;
  2105. font-size:12px;
  2106. color:#FFFFFF;
  2107. }
  2108. #u50959 .text {
  2109. position:absolute;
  2110. align-self:center;
  2111. padding:2px 2px 2px 0px;
  2112. box-sizing:border-box;
  2113. width:100%;
  2114. }
  2115. #u50959_text {
  2116. border-width:0px;
  2117. word-wrap:break-word;
  2118. text-transform:none;
  2119. }
  2120. #u50960_img {
  2121. border-width:0px;
  2122. position:absolute;
  2123. left:0px;
  2124. top:0px;
  2125. width:82px;
  2126. height:39px;
  2127. }
  2128. #u50960 {
  2129. border-width:0px;
  2130. position:absolute;
  2131. left:833px;
  2132. top:0px;
  2133. width:82px;
  2134. height:39px;
  2135. display:flex;
  2136. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2137. font-weight:400;
  2138. font-style:normal;
  2139. font-size:12px;
  2140. color:#FFFFFF;
  2141. }
  2142. #u50960 .text {
  2143. position:absolute;
  2144. align-self:center;
  2145. padding:2px 2px 2px 0px;
  2146. box-sizing:border-box;
  2147. width:100%;
  2148. }
  2149. #u50960_text {
  2150. border-width:0px;
  2151. word-wrap:break-word;
  2152. text-transform:none;
  2153. }
  2154. #u50961_img {
  2155. border-width:0px;
  2156. position:absolute;
  2157. left:0px;
  2158. top:0px;
  2159. width:89px;
  2160. height:39px;
  2161. }
  2162. #u50961 {
  2163. border-width:0px;
  2164. position:absolute;
  2165. left:915px;
  2166. top:0px;
  2167. width:89px;
  2168. height:39px;
  2169. display:flex;
  2170. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2171. font-weight:400;
  2172. font-style:normal;
  2173. font-size:12px;
  2174. color:#FFFFFF;
  2175. }
  2176. #u50961 .text {
  2177. position:absolute;
  2178. align-self:center;
  2179. padding:2px 2px 2px 0px;
  2180. box-sizing:border-box;
  2181. width:100%;
  2182. }
  2183. #u50961_text {
  2184. border-width:0px;
  2185. word-wrap:break-word;
  2186. text-transform:none;
  2187. }
  2188. #u50962_img {
  2189. border-width:0px;
  2190. position:absolute;
  2191. left:0px;
  2192. top:0px;
  2193. width:88px;
  2194. height:39px;
  2195. }
  2196. #u50962 {
  2197. border-width:0px;
  2198. position:absolute;
  2199. left:1004px;
  2200. top:0px;
  2201. width:88px;
  2202. height:39px;
  2203. display:flex;
  2204. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2205. font-weight:400;
  2206. font-style:normal;
  2207. font-size:12px;
  2208. color:#FFFFFF;
  2209. }
  2210. #u50962 .text {
  2211. position:absolute;
  2212. align-self:center;
  2213. padding:2px 2px 2px 0px;
  2214. box-sizing:border-box;
  2215. width:100%;
  2216. }
  2217. #u50962_text {
  2218. border-width:0px;
  2219. word-wrap:break-word;
  2220. text-transform:none;
  2221. }
  2222. #u50963_img {
  2223. border-width:0px;
  2224. position:absolute;
  2225. left:0px;
  2226. top:0px;
  2227. width:100px;
  2228. height:39px;
  2229. }
  2230. #u50963 {
  2231. border-width:0px;
  2232. position:absolute;
  2233. left:1092px;
  2234. top:0px;
  2235. width:100px;
  2236. height:39px;
  2237. display:flex;
  2238. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2239. font-weight:400;
  2240. font-style:normal;
  2241. font-size:12px;
  2242. color:#FFFFFF;
  2243. }
  2244. #u50963 .text {
  2245. position:absolute;
  2246. align-self:center;
  2247. padding:2px 2px 2px 0px;
  2248. box-sizing:border-box;
  2249. width:100%;
  2250. }
  2251. #u50963_text {
  2252. border-width:0px;
  2253. word-wrap:break-word;
  2254. text-transform:none;
  2255. }
  2256. #u50964_img {
  2257. border-width:0px;
  2258. position:absolute;
  2259. left:0px;
  2260. top:0px;
  2261. width:82px;
  2262. height:38px;
  2263. }
  2264. #u50964 {
  2265. border-width:0px;
  2266. position:absolute;
  2267. left:0px;
  2268. top:39px;
  2269. width:82px;
  2270. height:38px;
  2271. display:flex;
  2272. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2273. font-weight:400;
  2274. font-style:normal;
  2275. font-size:12px;
  2276. }
  2277. #u50964 .text {
  2278. position:absolute;
  2279. align-self:center;
  2280. padding:2px 2px 2px 0px;
  2281. box-sizing:border-box;
  2282. width:100%;
  2283. }
  2284. #u50964_text {
  2285. border-width:0px;
  2286. word-wrap:break-word;
  2287. text-transform:none;
  2288. visibility:hidden;
  2289. }
  2290. #u50965_img {
  2291. border-width:0px;
  2292. position:absolute;
  2293. left:0px;
  2294. top:0px;
  2295. width:82px;
  2296. height:38px;
  2297. }
  2298. #u50965 {
  2299. border-width:0px;
  2300. position:absolute;
  2301. left:82px;
  2302. top:39px;
  2303. width:82px;
  2304. height:38px;
  2305. display:flex;
  2306. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2307. font-weight:400;
  2308. font-style:normal;
  2309. font-size:12px;
  2310. }
  2311. #u50965 .text {
  2312. position:absolute;
  2313. align-self:center;
  2314. padding:2px 2px 2px 0px;
  2315. box-sizing:border-box;
  2316. width:100%;
  2317. }
  2318. #u50965_text {
  2319. border-width:0px;
  2320. word-wrap:break-word;
  2321. text-transform:none;
  2322. visibility:hidden;
  2323. }
  2324. #u50966_img {
  2325. border-width:0px;
  2326. position:absolute;
  2327. left:0px;
  2328. top:0px;
  2329. width:82px;
  2330. height:38px;
  2331. }
  2332. #u50966 {
  2333. border-width:0px;
  2334. position:absolute;
  2335. left:164px;
  2336. top:39px;
  2337. width:82px;
  2338. height:38px;
  2339. display:flex;
  2340. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2341. font-weight:400;
  2342. font-style:normal;
  2343. font-size:12px;
  2344. }
  2345. #u50966 .text {
  2346. position:absolute;
  2347. align-self:center;
  2348. padding:2px 2px 2px 0px;
  2349. box-sizing:border-box;
  2350. width:100%;
  2351. }
  2352. #u50966_text {
  2353. border-width:0px;
  2354. word-wrap:break-word;
  2355. text-transform:none;
  2356. visibility:hidden;
  2357. }
  2358. #u50967_img {
  2359. border-width:0px;
  2360. position:absolute;
  2361. left:0px;
  2362. top:0px;
  2363. width:82px;
  2364. height:38px;
  2365. }
  2366. #u50967 {
  2367. border-width:0px;
  2368. position:absolute;
  2369. left:246px;
  2370. top:39px;
  2371. width:82px;
  2372. height:38px;
  2373. display:flex;
  2374. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2375. font-weight:400;
  2376. font-style:normal;
  2377. font-size:12px;
  2378. }
  2379. #u50967 .text {
  2380. position:absolute;
  2381. align-self:center;
  2382. padding:2px 2px 2px 0px;
  2383. box-sizing:border-box;
  2384. width:100%;
  2385. }
  2386. #u50967_text {
  2387. border-width:0px;
  2388. word-wrap:break-word;
  2389. text-transform:none;
  2390. visibility:hidden;
  2391. }
  2392. #u50968_img {
  2393. border-width:0px;
  2394. position:absolute;
  2395. left:0px;
  2396. top:0px;
  2397. width:82px;
  2398. height:38px;
  2399. }
  2400. #u50968 {
  2401. border-width:0px;
  2402. position:absolute;
  2403. left:328px;
  2404. top:39px;
  2405. width:82px;
  2406. height:38px;
  2407. display:flex;
  2408. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2409. font-weight:400;
  2410. font-style:normal;
  2411. font-size:12px;
  2412. }
  2413. #u50968 .text {
  2414. position:absolute;
  2415. align-self:center;
  2416. padding:2px 2px 2px 0px;
  2417. box-sizing:border-box;
  2418. width:100%;
  2419. }
  2420. #u50968_text {
  2421. border-width:0px;
  2422. word-wrap:break-word;
  2423. text-transform:none;
  2424. }
  2425. #u50969_img {
  2426. border-width:0px;
  2427. position:absolute;
  2428. left:0px;
  2429. top:0px;
  2430. width:89px;
  2431. height:38px;
  2432. }
  2433. #u50969 {
  2434. border-width:0px;
  2435. position:absolute;
  2436. left:410px;
  2437. top:39px;
  2438. width:89px;
  2439. height:38px;
  2440. display:flex;
  2441. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2442. font-weight:400;
  2443. font-style:normal;
  2444. font-size:12px;
  2445. }
  2446. #u50969 .text {
  2447. position:absolute;
  2448. align-self:center;
  2449. padding:2px 2px 2px 0px;
  2450. box-sizing:border-box;
  2451. width:100%;
  2452. }
  2453. #u50969_text {
  2454. border-width:0px;
  2455. word-wrap:break-word;
  2456. text-transform:none;
  2457. visibility:hidden;
  2458. }
  2459. #u50970_img {
  2460. border-width:0px;
  2461. position:absolute;
  2462. left:0px;
  2463. top:0px;
  2464. width:82px;
  2465. height:38px;
  2466. }
  2467. #u50970 {
  2468. border-width:0px;
  2469. position:absolute;
  2470. left:499px;
  2471. top:39px;
  2472. width:82px;
  2473. height:38px;
  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. }
  2480. #u50970 .text {
  2481. position:absolute;
  2482. align-self:center;
  2483. padding:2px 2px 2px 0px;
  2484. box-sizing:border-box;
  2485. width:100%;
  2486. }
  2487. #u50970_text {
  2488. border-width:0px;
  2489. word-wrap:break-word;
  2490. text-transform:none;
  2491. visibility:hidden;
  2492. }
  2493. #u50971_img {
  2494. border-width:0px;
  2495. position:absolute;
  2496. left:0px;
  2497. top:0px;
  2498. width:82px;
  2499. height:38px;
  2500. }
  2501. #u50971 {
  2502. border-width:0px;
  2503. position:absolute;
  2504. left:581px;
  2505. top:39px;
  2506. width:82px;
  2507. height:38px;
  2508. display:flex;
  2509. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2510. font-weight:400;
  2511. font-style:normal;
  2512. font-size:12px;
  2513. }
  2514. #u50971 .text {
  2515. position:absolute;
  2516. align-self:center;
  2517. padding:2px 2px 2px 0px;
  2518. box-sizing:border-box;
  2519. width:100%;
  2520. }
  2521. #u50971_text {
  2522. border-width:0px;
  2523. word-wrap:break-word;
  2524. text-transform:none;
  2525. visibility:hidden;
  2526. }
  2527. #u50972_img {
  2528. border-width:0px;
  2529. position:absolute;
  2530. left:0px;
  2531. top:0px;
  2532. width:88px;
  2533. height:38px;
  2534. }
  2535. #u50972 {
  2536. border-width:0px;
  2537. position:absolute;
  2538. left:663px;
  2539. top:39px;
  2540. width:88px;
  2541. height:38px;
  2542. display:flex;
  2543. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2544. font-weight:400;
  2545. font-style:normal;
  2546. font-size:12px;
  2547. }
  2548. #u50972 .text {
  2549. position:absolute;
  2550. align-self:center;
  2551. padding:2px 2px 2px 0px;
  2552. box-sizing:border-box;
  2553. width:100%;
  2554. }
  2555. #u50972_text {
  2556. border-width:0px;
  2557. word-wrap:break-word;
  2558. text-transform:none;
  2559. visibility:hidden;
  2560. }
  2561. #u50973_img {
  2562. border-width:0px;
  2563. position:absolute;
  2564. left:0px;
  2565. top:0px;
  2566. width:82px;
  2567. height:38px;
  2568. }
  2569. #u50973 {
  2570. border-width:0px;
  2571. position:absolute;
  2572. left:751px;
  2573. top:39px;
  2574. width:82px;
  2575. height:38px;
  2576. display:flex;
  2577. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2578. font-weight:400;
  2579. font-style:normal;
  2580. font-size:12px;
  2581. }
  2582. #u50973 .text {
  2583. position:absolute;
  2584. align-self:center;
  2585. padding:2px 2px 2px 0px;
  2586. box-sizing:border-box;
  2587. width:100%;
  2588. }
  2589. #u50973_text {
  2590. border-width:0px;
  2591. word-wrap:break-word;
  2592. text-transform:none;
  2593. visibility:hidden;
  2594. }
  2595. #u50974_img {
  2596. border-width:0px;
  2597. position:absolute;
  2598. left:0px;
  2599. top:0px;
  2600. width:82px;
  2601. height:38px;
  2602. }
  2603. #u50974 {
  2604. border-width:0px;
  2605. position:absolute;
  2606. left:833px;
  2607. top:39px;
  2608. width:82px;
  2609. height:38px;
  2610. display:flex;
  2611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2612. font-weight:400;
  2613. font-style:normal;
  2614. font-size:12px;
  2615. }
  2616. #u50974 .text {
  2617. position:absolute;
  2618. align-self:center;
  2619. padding:2px 2px 2px 0px;
  2620. box-sizing:border-box;
  2621. width:100%;
  2622. }
  2623. #u50974_text {
  2624. border-width:0px;
  2625. word-wrap:break-word;
  2626. text-transform:none;
  2627. visibility:hidden;
  2628. }
  2629. #u50975_img {
  2630. border-width:0px;
  2631. position:absolute;
  2632. left:0px;
  2633. top:0px;
  2634. width:89px;
  2635. height:38px;
  2636. }
  2637. #u50975 {
  2638. border-width:0px;
  2639. position:absolute;
  2640. left:915px;
  2641. top:39px;
  2642. width:89px;
  2643. height:38px;
  2644. display:flex;
  2645. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2646. font-weight:400;
  2647. font-style:normal;
  2648. font-size:12px;
  2649. color:#1890FF;
  2650. }
  2651. #u50975 .text {
  2652. position:absolute;
  2653. align-self:center;
  2654. padding:2px 2px 2px 0px;
  2655. box-sizing:border-box;
  2656. width:100%;
  2657. }
  2658. #u50975_text {
  2659. border-width:0px;
  2660. word-wrap:break-word;
  2661. text-transform:none;
  2662. }
  2663. #u50976_img {
  2664. border-width:0px;
  2665. position:absolute;
  2666. left:0px;
  2667. top:0px;
  2668. width:88px;
  2669. height:38px;
  2670. }
  2671. #u50976 {
  2672. border-width:0px;
  2673. position:absolute;
  2674. left:1004px;
  2675. top:39px;
  2676. width:88px;
  2677. height:38px;
  2678. display:flex;
  2679. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2680. font-weight:400;
  2681. font-style:normal;
  2682. font-size:12px;
  2683. color:#D9001B;
  2684. }
  2685. #u50976 .text {
  2686. position:absolute;
  2687. align-self:center;
  2688. padding:2px 2px 2px 0px;
  2689. box-sizing:border-box;
  2690. width:100%;
  2691. }
  2692. #u50976_text {
  2693. border-width:0px;
  2694. word-wrap:break-word;
  2695. text-transform:none;
  2696. }
  2697. #u50977_img {
  2698. border-width:0px;
  2699. position:absolute;
  2700. left:0px;
  2701. top:0px;
  2702. width:100px;
  2703. height:38px;
  2704. }
  2705. #u50977 {
  2706. border-width:0px;
  2707. position:absolute;
  2708. left:1092px;
  2709. top:39px;
  2710. width:100px;
  2711. height:38px;
  2712. display:flex;
  2713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2714. font-weight:400;
  2715. font-style:normal;
  2716. font-size:12px;
  2717. color:#1890FF;
  2718. }
  2719. #u50977 .text {
  2720. position:absolute;
  2721. align-self:center;
  2722. padding:2px 2px 2px 0px;
  2723. box-sizing:border-box;
  2724. width:100%;
  2725. }
  2726. #u50977_text {
  2727. border-width:0px;
  2728. word-wrap:break-word;
  2729. text-transform:none;
  2730. }
  2731. #u50978_img {
  2732. border-width:0px;
  2733. position:absolute;
  2734. left:0px;
  2735. top:0px;
  2736. width:82px;
  2737. height:38px;
  2738. }
  2739. #u50978 {
  2740. border-width:0px;
  2741. position:absolute;
  2742. left:0px;
  2743. top:77px;
  2744. width:82px;
  2745. height:38px;
  2746. display:flex;
  2747. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2748. font-weight:400;
  2749. font-style:normal;
  2750. font-size:12px;
  2751. }
  2752. #u50978 .text {
  2753. position:absolute;
  2754. align-self:center;
  2755. padding:2px 2px 2px 0px;
  2756. box-sizing:border-box;
  2757. width:100%;
  2758. }
  2759. #u50978_text {
  2760. border-width:0px;
  2761. word-wrap:break-word;
  2762. text-transform:none;
  2763. visibility:hidden;
  2764. }
  2765. #u50979_img {
  2766. border-width:0px;
  2767. position:absolute;
  2768. left:0px;
  2769. top:0px;
  2770. width:82px;
  2771. height:38px;
  2772. }
  2773. #u50979 {
  2774. border-width:0px;
  2775. position:absolute;
  2776. left:82px;
  2777. top:77px;
  2778. width:82px;
  2779. height:38px;
  2780. display:flex;
  2781. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2782. font-weight:400;
  2783. font-style:normal;
  2784. font-size:12px;
  2785. }
  2786. #u50979 .text {
  2787. position:absolute;
  2788. align-self:center;
  2789. padding:2px 2px 2px 0px;
  2790. box-sizing:border-box;
  2791. width:100%;
  2792. }
  2793. #u50979_text {
  2794. border-width:0px;
  2795. word-wrap:break-word;
  2796. text-transform:none;
  2797. visibility:hidden;
  2798. }
  2799. #u50980_img {
  2800. border-width:0px;
  2801. position:absolute;
  2802. left:0px;
  2803. top:0px;
  2804. width:82px;
  2805. height:38px;
  2806. }
  2807. #u50980 {
  2808. border-width:0px;
  2809. position:absolute;
  2810. left:164px;
  2811. top:77px;
  2812. width:82px;
  2813. height:38px;
  2814. display:flex;
  2815. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2816. font-weight:400;
  2817. font-style:normal;
  2818. font-size:12px;
  2819. }
  2820. #u50980 .text {
  2821. position:absolute;
  2822. align-self:center;
  2823. padding:2px 2px 2px 0px;
  2824. box-sizing:border-box;
  2825. width:100%;
  2826. }
  2827. #u50980_text {
  2828. border-width:0px;
  2829. word-wrap:break-word;
  2830. text-transform:none;
  2831. visibility:hidden;
  2832. }
  2833. #u50981_img {
  2834. border-width:0px;
  2835. position:absolute;
  2836. left:0px;
  2837. top:0px;
  2838. width:82px;
  2839. height:38px;
  2840. }
  2841. #u50981 {
  2842. border-width:0px;
  2843. position:absolute;
  2844. left:246px;
  2845. top:77px;
  2846. width:82px;
  2847. height:38px;
  2848. display:flex;
  2849. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2850. font-weight:400;
  2851. font-style:normal;
  2852. font-size:12px;
  2853. }
  2854. #u50981 .text {
  2855. position:absolute;
  2856. align-self:center;
  2857. padding:2px 2px 2px 0px;
  2858. box-sizing:border-box;
  2859. width:100%;
  2860. }
  2861. #u50981_text {
  2862. border-width:0px;
  2863. word-wrap:break-word;
  2864. text-transform:none;
  2865. visibility:hidden;
  2866. }
  2867. #u50982_img {
  2868. border-width:0px;
  2869. position:absolute;
  2870. left:0px;
  2871. top:0px;
  2872. width:82px;
  2873. height:38px;
  2874. }
  2875. #u50982 {
  2876. border-width:0px;
  2877. position:absolute;
  2878. left:328px;
  2879. top:77px;
  2880. width:82px;
  2881. height:38px;
  2882. display:flex;
  2883. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2884. font-weight:400;
  2885. font-style:normal;
  2886. font-size:12px;
  2887. }
  2888. #u50982 .text {
  2889. position:absolute;
  2890. align-self:center;
  2891. padding:2px 2px 2px 0px;
  2892. box-sizing:border-box;
  2893. width:100%;
  2894. }
  2895. #u50982_text {
  2896. border-width:0px;
  2897. word-wrap:break-word;
  2898. text-transform:none;
  2899. }
  2900. #u50983_img {
  2901. border-width:0px;
  2902. position:absolute;
  2903. left:0px;
  2904. top:0px;
  2905. width:89px;
  2906. height:38px;
  2907. }
  2908. #u50983 {
  2909. border-width:0px;
  2910. position:absolute;
  2911. left:410px;
  2912. top:77px;
  2913. width:89px;
  2914. height:38px;
  2915. display:flex;
  2916. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2917. font-weight:400;
  2918. font-style:normal;
  2919. font-size:12px;
  2920. }
  2921. #u50983 .text {
  2922. position:absolute;
  2923. align-self:center;
  2924. padding:2px 2px 2px 0px;
  2925. box-sizing:border-box;
  2926. width:100%;
  2927. }
  2928. #u50983_text {
  2929. border-width:0px;
  2930. word-wrap:break-word;
  2931. text-transform:none;
  2932. visibility:hidden;
  2933. }
  2934. #u50984_img {
  2935. border-width:0px;
  2936. position:absolute;
  2937. left:0px;
  2938. top:0px;
  2939. width:82px;
  2940. height:38px;
  2941. }
  2942. #u50984 {
  2943. border-width:0px;
  2944. position:absolute;
  2945. left:499px;
  2946. top:77px;
  2947. width:82px;
  2948. height:38px;
  2949. display:flex;
  2950. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2951. font-weight:400;
  2952. font-style:normal;
  2953. font-size:12px;
  2954. }
  2955. #u50984 .text {
  2956. position:absolute;
  2957. align-self:center;
  2958. padding:2px 2px 2px 0px;
  2959. box-sizing:border-box;
  2960. width:100%;
  2961. }
  2962. #u50984_text {
  2963. border-width:0px;
  2964. word-wrap:break-word;
  2965. text-transform:none;
  2966. visibility:hidden;
  2967. }
  2968. #u50985_img {
  2969. border-width:0px;
  2970. position:absolute;
  2971. left:0px;
  2972. top:0px;
  2973. width:82px;
  2974. height:38px;
  2975. }
  2976. #u50985 {
  2977. border-width:0px;
  2978. position:absolute;
  2979. left:581px;
  2980. top:77px;
  2981. width:82px;
  2982. height:38px;
  2983. display:flex;
  2984. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2985. font-weight:400;
  2986. font-style:normal;
  2987. font-size:12px;
  2988. }
  2989. #u50985 .text {
  2990. position:absolute;
  2991. align-self:center;
  2992. padding:2px 2px 2px 0px;
  2993. box-sizing:border-box;
  2994. width:100%;
  2995. }
  2996. #u50985_text {
  2997. border-width:0px;
  2998. word-wrap:break-word;
  2999. text-transform:none;
  3000. visibility:hidden;
  3001. }
  3002. #u50986_img {
  3003. border-width:0px;
  3004. position:absolute;
  3005. left:0px;
  3006. top:0px;
  3007. width:88px;
  3008. height:38px;
  3009. }
  3010. #u50986 {
  3011. border-width:0px;
  3012. position:absolute;
  3013. left:663px;
  3014. top:77px;
  3015. width:88px;
  3016. height:38px;
  3017. display:flex;
  3018. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3019. font-weight:400;
  3020. font-style:normal;
  3021. font-size:12px;
  3022. }
  3023. #u50986 .text {
  3024. position:absolute;
  3025. align-self:center;
  3026. padding:2px 2px 2px 0px;
  3027. box-sizing:border-box;
  3028. width:100%;
  3029. }
  3030. #u50986_text {
  3031. border-width:0px;
  3032. word-wrap:break-word;
  3033. text-transform:none;
  3034. visibility:hidden;
  3035. }
  3036. #u50987_img {
  3037. border-width:0px;
  3038. position:absolute;
  3039. left:0px;
  3040. top:0px;
  3041. width:82px;
  3042. height:38px;
  3043. }
  3044. #u50987 {
  3045. border-width:0px;
  3046. position:absolute;
  3047. left:751px;
  3048. top:77px;
  3049. width:82px;
  3050. height:38px;
  3051. display:flex;
  3052. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3053. font-weight:400;
  3054. font-style:normal;
  3055. font-size:12px;
  3056. }
  3057. #u50987 .text {
  3058. position:absolute;
  3059. align-self:center;
  3060. padding:2px 2px 2px 0px;
  3061. box-sizing:border-box;
  3062. width:100%;
  3063. }
  3064. #u50987_text {
  3065. border-width:0px;
  3066. word-wrap:break-word;
  3067. text-transform:none;
  3068. visibility:hidden;
  3069. }
  3070. #u50988_img {
  3071. border-width:0px;
  3072. position:absolute;
  3073. left:0px;
  3074. top:0px;
  3075. width:82px;
  3076. height:38px;
  3077. }
  3078. #u50988 {
  3079. border-width:0px;
  3080. position:absolute;
  3081. left:833px;
  3082. top:77px;
  3083. width:82px;
  3084. height:38px;
  3085. display:flex;
  3086. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3087. font-weight:400;
  3088. font-style:normal;
  3089. font-size:12px;
  3090. }
  3091. #u50988 .text {
  3092. position:absolute;
  3093. align-self:center;
  3094. padding:2px 2px 2px 0px;
  3095. box-sizing:border-box;
  3096. width:100%;
  3097. }
  3098. #u50988_text {
  3099. border-width:0px;
  3100. word-wrap:break-word;
  3101. text-transform:none;
  3102. visibility:hidden;
  3103. }
  3104. #u50989_img {
  3105. border-width:0px;
  3106. position:absolute;
  3107. left:0px;
  3108. top:0px;
  3109. width:89px;
  3110. height:38px;
  3111. }
  3112. #u50989 {
  3113. border-width:0px;
  3114. position:absolute;
  3115. left:915px;
  3116. top:77px;
  3117. width:89px;
  3118. height:38px;
  3119. display:flex;
  3120. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3121. font-weight:400;
  3122. font-style:normal;
  3123. font-size:12px;
  3124. color:#1890FF;
  3125. }
  3126. #u50989 .text {
  3127. position:absolute;
  3128. align-self:center;
  3129. padding:2px 2px 2px 0px;
  3130. box-sizing:border-box;
  3131. width:100%;
  3132. }
  3133. #u50989_text {
  3134. border-width:0px;
  3135. word-wrap:break-word;
  3136. text-transform:none;
  3137. }
  3138. #u50990_img {
  3139. border-width:0px;
  3140. position:absolute;
  3141. left:0px;
  3142. top:0px;
  3143. width:88px;
  3144. height:38px;
  3145. }
  3146. #u50990 {
  3147. border-width:0px;
  3148. position:absolute;
  3149. left:1004px;
  3150. top:77px;
  3151. width:88px;
  3152. height:38px;
  3153. display:flex;
  3154. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3155. font-weight:400;
  3156. font-style:normal;
  3157. font-size:12px;
  3158. color:#333333;
  3159. }
  3160. #u50990 .text {
  3161. position:absolute;
  3162. align-self:center;
  3163. padding:2px 2px 2px 0px;
  3164. box-sizing:border-box;
  3165. width:100%;
  3166. }
  3167. #u50990_text {
  3168. border-width:0px;
  3169. word-wrap:break-word;
  3170. text-transform:none;
  3171. }
  3172. #u50991_img {
  3173. border-width:0px;
  3174. position:absolute;
  3175. left:0px;
  3176. top:0px;
  3177. width:100px;
  3178. height:38px;
  3179. }
  3180. #u50991 {
  3181. border-width:0px;
  3182. position:absolute;
  3183. left:1092px;
  3184. top:77px;
  3185. width:100px;
  3186. height:38px;
  3187. display:flex;
  3188. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3189. font-weight:400;
  3190. font-style:normal;
  3191. font-size:12px;
  3192. color:#1890FF;
  3193. }
  3194. #u50991 .text {
  3195. position:absolute;
  3196. align-self:center;
  3197. padding:2px 2px 2px 0px;
  3198. box-sizing:border-box;
  3199. width:100%;
  3200. }
  3201. #u50991_text {
  3202. border-width:0px;
  3203. word-wrap:break-word;
  3204. text-transform:none;
  3205. }
  3206. #u50992_img {
  3207. border-width:0px;
  3208. position:absolute;
  3209. left:0px;
  3210. top:0px;
  3211. width:82px;
  3212. height:38px;
  3213. }
  3214. #u50992 {
  3215. border-width:0px;
  3216. position:absolute;
  3217. left:0px;
  3218. top:115px;
  3219. width:82px;
  3220. height:38px;
  3221. display:flex;
  3222. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3223. font-weight:400;
  3224. font-style:normal;
  3225. font-size:12px;
  3226. }
  3227. #u50992 .text {
  3228. position:absolute;
  3229. align-self:center;
  3230. padding:2px 2px 2px 0px;
  3231. box-sizing:border-box;
  3232. width:100%;
  3233. }
  3234. #u50992_text {
  3235. border-width:0px;
  3236. word-wrap:break-word;
  3237. text-transform:none;
  3238. visibility:hidden;
  3239. }
  3240. #u50993_img {
  3241. border-width:0px;
  3242. position:absolute;
  3243. left:0px;
  3244. top:0px;
  3245. width:82px;
  3246. height:38px;
  3247. }
  3248. #u50993 {
  3249. border-width:0px;
  3250. position:absolute;
  3251. left:82px;
  3252. top:115px;
  3253. width:82px;
  3254. height:38px;
  3255. display:flex;
  3256. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3257. font-weight:400;
  3258. font-style:normal;
  3259. font-size:12px;
  3260. }
  3261. #u50993 .text {
  3262. position:absolute;
  3263. align-self:center;
  3264. padding:2px 2px 2px 0px;
  3265. box-sizing:border-box;
  3266. width:100%;
  3267. }
  3268. #u50993_text {
  3269. border-width:0px;
  3270. word-wrap:break-word;
  3271. text-transform:none;
  3272. visibility:hidden;
  3273. }
  3274. #u50994_img {
  3275. border-width:0px;
  3276. position:absolute;
  3277. left:0px;
  3278. top:0px;
  3279. width:82px;
  3280. height:38px;
  3281. }
  3282. #u50994 {
  3283. border-width:0px;
  3284. position:absolute;
  3285. left:164px;
  3286. top:115px;
  3287. width:82px;
  3288. height:38px;
  3289. display:flex;
  3290. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3291. font-weight:400;
  3292. font-style:normal;
  3293. font-size:12px;
  3294. }
  3295. #u50994 .text {
  3296. position:absolute;
  3297. align-self:center;
  3298. padding:2px 2px 2px 0px;
  3299. box-sizing:border-box;
  3300. width:100%;
  3301. }
  3302. #u50994_text {
  3303. border-width:0px;
  3304. word-wrap:break-word;
  3305. text-transform:none;
  3306. visibility:hidden;
  3307. }
  3308. #u50995_img {
  3309. border-width:0px;
  3310. position:absolute;
  3311. left:0px;
  3312. top:0px;
  3313. width:82px;
  3314. height:38px;
  3315. }
  3316. #u50995 {
  3317. border-width:0px;
  3318. position:absolute;
  3319. left:246px;
  3320. top:115px;
  3321. width:82px;
  3322. height:38px;
  3323. display:flex;
  3324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3325. font-weight:400;
  3326. font-style:normal;
  3327. font-size:12px;
  3328. }
  3329. #u50995 .text {
  3330. position:absolute;
  3331. align-self:center;
  3332. padding:2px 2px 2px 0px;
  3333. box-sizing:border-box;
  3334. width:100%;
  3335. }
  3336. #u50995_text {
  3337. border-width:0px;
  3338. word-wrap:break-word;
  3339. text-transform:none;
  3340. visibility:hidden;
  3341. }
  3342. #u50996_img {
  3343. border-width:0px;
  3344. position:absolute;
  3345. left:0px;
  3346. top:0px;
  3347. width:82px;
  3348. height:38px;
  3349. }
  3350. #u50996 {
  3351. border-width:0px;
  3352. position:absolute;
  3353. left:328px;
  3354. top:115px;
  3355. width:82px;
  3356. height:38px;
  3357. display:flex;
  3358. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3359. font-weight:400;
  3360. font-style:normal;
  3361. font-size:12px;
  3362. }
  3363. #u50996 .text {
  3364. position:absolute;
  3365. align-self:center;
  3366. padding:2px 2px 2px 0px;
  3367. box-sizing:border-box;
  3368. width:100%;
  3369. }
  3370. #u50996_text {
  3371. border-width:0px;
  3372. word-wrap:break-word;
  3373. text-transform:none;
  3374. }
  3375. #u50997_img {
  3376. border-width:0px;
  3377. position:absolute;
  3378. left:0px;
  3379. top:0px;
  3380. width:89px;
  3381. height:38px;
  3382. }
  3383. #u50997 {
  3384. border-width:0px;
  3385. position:absolute;
  3386. left:410px;
  3387. top:115px;
  3388. width:89px;
  3389. height:38px;
  3390. display:flex;
  3391. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3392. font-weight:400;
  3393. font-style:normal;
  3394. font-size:12px;
  3395. }
  3396. #u50997 .text {
  3397. position:absolute;
  3398. align-self:center;
  3399. padding:2px 2px 2px 0px;
  3400. box-sizing:border-box;
  3401. width:100%;
  3402. }
  3403. #u50997_text {
  3404. border-width:0px;
  3405. word-wrap:break-word;
  3406. text-transform:none;
  3407. visibility:hidden;
  3408. }
  3409. #u50998_img {
  3410. border-width:0px;
  3411. position:absolute;
  3412. left:0px;
  3413. top:0px;
  3414. width:82px;
  3415. height:38px;
  3416. }
  3417. #u50998 {
  3418. border-width:0px;
  3419. position:absolute;
  3420. left:499px;
  3421. top:115px;
  3422. width:82px;
  3423. height:38px;
  3424. display:flex;
  3425. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3426. font-weight:400;
  3427. font-style:normal;
  3428. font-size:12px;
  3429. }
  3430. #u50998 .text {
  3431. position:absolute;
  3432. align-self:center;
  3433. padding:2px 2px 2px 0px;
  3434. box-sizing:border-box;
  3435. width:100%;
  3436. }
  3437. #u50998_text {
  3438. border-width:0px;
  3439. word-wrap:break-word;
  3440. text-transform:none;
  3441. visibility:hidden;
  3442. }
  3443. #u50999_img {
  3444. border-width:0px;
  3445. position:absolute;
  3446. left:0px;
  3447. top:0px;
  3448. width:82px;
  3449. height:38px;
  3450. }
  3451. #u50999 {
  3452. border-width:0px;
  3453. position:absolute;
  3454. left:581px;
  3455. top:115px;
  3456. width:82px;
  3457. height:38px;
  3458. display:flex;
  3459. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3460. font-weight:400;
  3461. font-style:normal;
  3462. font-size:12px;
  3463. }
  3464. #u50999 .text {
  3465. position:absolute;
  3466. align-self:center;
  3467. padding:2px 2px 2px 0px;
  3468. box-sizing:border-box;
  3469. width:100%;
  3470. }
  3471. #u50999_text {
  3472. border-width:0px;
  3473. word-wrap:break-word;
  3474. text-transform:none;
  3475. visibility:hidden;
  3476. }
  3477. #u51000_img {
  3478. border-width:0px;
  3479. position:absolute;
  3480. left:0px;
  3481. top:0px;
  3482. width:88px;
  3483. height:38px;
  3484. }
  3485. #u51000 {
  3486. border-width:0px;
  3487. position:absolute;
  3488. left:663px;
  3489. top:115px;
  3490. width:88px;
  3491. height:38px;
  3492. display:flex;
  3493. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3494. font-weight:400;
  3495. font-style:normal;
  3496. font-size:12px;
  3497. }
  3498. #u51000 .text {
  3499. position:absolute;
  3500. align-self:center;
  3501. padding:2px 2px 2px 0px;
  3502. box-sizing:border-box;
  3503. width:100%;
  3504. }
  3505. #u51000_text {
  3506. border-width:0px;
  3507. word-wrap:break-word;
  3508. text-transform:none;
  3509. visibility:hidden;
  3510. }
  3511. #u51001_img {
  3512. border-width:0px;
  3513. position:absolute;
  3514. left:0px;
  3515. top:0px;
  3516. width:82px;
  3517. height:38px;
  3518. }
  3519. #u51001 {
  3520. border-width:0px;
  3521. position:absolute;
  3522. left:751px;
  3523. top:115px;
  3524. width:82px;
  3525. height:38px;
  3526. display:flex;
  3527. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3528. font-weight:400;
  3529. font-style:normal;
  3530. font-size:12px;
  3531. }
  3532. #u51001 .text {
  3533. position:absolute;
  3534. align-self:center;
  3535. padding:2px 2px 2px 0px;
  3536. box-sizing:border-box;
  3537. width:100%;
  3538. }
  3539. #u51001_text {
  3540. border-width:0px;
  3541. word-wrap:break-word;
  3542. text-transform:none;
  3543. visibility:hidden;
  3544. }
  3545. #u51002_img {
  3546. border-width:0px;
  3547. position:absolute;
  3548. left:0px;
  3549. top:0px;
  3550. width:82px;
  3551. height:38px;
  3552. }
  3553. #u51002 {
  3554. border-width:0px;
  3555. position:absolute;
  3556. left:833px;
  3557. top:115px;
  3558. width:82px;
  3559. height:38px;
  3560. display:flex;
  3561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3562. font-weight:400;
  3563. font-style:normal;
  3564. font-size:12px;
  3565. }
  3566. #u51002 .text {
  3567. position:absolute;
  3568. align-self:center;
  3569. padding:2px 2px 2px 0px;
  3570. box-sizing:border-box;
  3571. width:100%;
  3572. }
  3573. #u51002_text {
  3574. border-width:0px;
  3575. word-wrap:break-word;
  3576. text-transform:none;
  3577. visibility:hidden;
  3578. }
  3579. #u51003_img {
  3580. border-width:0px;
  3581. position:absolute;
  3582. left:0px;
  3583. top:0px;
  3584. width:89px;
  3585. height:38px;
  3586. }
  3587. #u51003 {
  3588. border-width:0px;
  3589. position:absolute;
  3590. left:915px;
  3591. top:115px;
  3592. width:89px;
  3593. height:38px;
  3594. display:flex;
  3595. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3596. font-weight:400;
  3597. font-style:normal;
  3598. font-size:12px;
  3599. color:#1890FF;
  3600. }
  3601. #u51003 .text {
  3602. position:absolute;
  3603. align-self:center;
  3604. padding:2px 2px 2px 0px;
  3605. box-sizing:border-box;
  3606. width:100%;
  3607. }
  3608. #u51003_text {
  3609. border-width:0px;
  3610. word-wrap:break-word;
  3611. text-transform:none;
  3612. }
  3613. #u51004_img {
  3614. border-width:0px;
  3615. position:absolute;
  3616. left:0px;
  3617. top:0px;
  3618. width:88px;
  3619. height:38px;
  3620. }
  3621. #u51004 {
  3622. border-width:0px;
  3623. position:absolute;
  3624. left:1004px;
  3625. top:115px;
  3626. width:88px;
  3627. height:38px;
  3628. display:flex;
  3629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3630. font-weight:400;
  3631. font-style:normal;
  3632. font-size:12px;
  3633. color:#1890FF;
  3634. }
  3635. #u51004 .text {
  3636. position:absolute;
  3637. align-self:center;
  3638. padding:2px 2px 2px 0px;
  3639. box-sizing:border-box;
  3640. width:100%;
  3641. }
  3642. #u51004_text {
  3643. border-width:0px;
  3644. word-wrap:break-word;
  3645. text-transform:none;
  3646. visibility:hidden;
  3647. }
  3648. #u51005_img {
  3649. border-width:0px;
  3650. position:absolute;
  3651. left:0px;
  3652. top:0px;
  3653. width:100px;
  3654. height:38px;
  3655. }
  3656. #u51005 {
  3657. border-width:0px;
  3658. position:absolute;
  3659. left:1092px;
  3660. top:115px;
  3661. width:100px;
  3662. height:38px;
  3663. display:flex;
  3664. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3665. font-weight:400;
  3666. font-style:normal;
  3667. font-size:12px;
  3668. color:#1890FF;
  3669. }
  3670. #u51005 .text {
  3671. position:absolute;
  3672. align-self:center;
  3673. padding:2px 2px 2px 0px;
  3674. box-sizing:border-box;
  3675. width:100%;
  3676. }
  3677. #u51005_text {
  3678. border-width:0px;
  3679. word-wrap:break-word;
  3680. text-transform:none;
  3681. }
  3682. #u51006_img {
  3683. border-width:0px;
  3684. position:absolute;
  3685. left:0px;
  3686. top:0px;
  3687. width:82px;
  3688. height:38px;
  3689. }
  3690. #u51006 {
  3691. border-width:0px;
  3692. position:absolute;
  3693. left:0px;
  3694. top:153px;
  3695. width:82px;
  3696. height:38px;
  3697. display:flex;
  3698. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3699. font-weight:400;
  3700. font-style:normal;
  3701. font-size:12px;
  3702. }
  3703. #u51006 .text {
  3704. position:absolute;
  3705. align-self:center;
  3706. padding:2px 2px 2px 0px;
  3707. box-sizing:border-box;
  3708. width:100%;
  3709. }
  3710. #u51006_text {
  3711. border-width:0px;
  3712. word-wrap:break-word;
  3713. text-transform:none;
  3714. visibility:hidden;
  3715. }
  3716. #u51007_img {
  3717. border-width:0px;
  3718. position:absolute;
  3719. left:0px;
  3720. top:0px;
  3721. width:82px;
  3722. height:38px;
  3723. }
  3724. #u51007 {
  3725. border-width:0px;
  3726. position:absolute;
  3727. left:82px;
  3728. top:153px;
  3729. width:82px;
  3730. height:38px;
  3731. display:flex;
  3732. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3733. font-weight:400;
  3734. font-style:normal;
  3735. font-size:12px;
  3736. }
  3737. #u51007 .text {
  3738. position:absolute;
  3739. align-self:center;
  3740. padding:2px 2px 2px 0px;
  3741. box-sizing:border-box;
  3742. width:100%;
  3743. }
  3744. #u51007_text {
  3745. border-width:0px;
  3746. word-wrap:break-word;
  3747. text-transform:none;
  3748. visibility:hidden;
  3749. }
  3750. #u51008_img {
  3751. border-width:0px;
  3752. position:absolute;
  3753. left:0px;
  3754. top:0px;
  3755. width:82px;
  3756. height:38px;
  3757. }
  3758. #u51008 {
  3759. border-width:0px;
  3760. position:absolute;
  3761. left:164px;
  3762. top:153px;
  3763. width:82px;
  3764. height:38px;
  3765. display:flex;
  3766. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3767. font-weight:400;
  3768. font-style:normal;
  3769. font-size:12px;
  3770. }
  3771. #u51008 .text {
  3772. position:absolute;
  3773. align-self:center;
  3774. padding:2px 2px 2px 0px;
  3775. box-sizing:border-box;
  3776. width:100%;
  3777. }
  3778. #u51008_text {
  3779. border-width:0px;
  3780. word-wrap:break-word;
  3781. text-transform:none;
  3782. visibility:hidden;
  3783. }
  3784. #u51009_img {
  3785. border-width:0px;
  3786. position:absolute;
  3787. left:0px;
  3788. top:0px;
  3789. width:82px;
  3790. height:38px;
  3791. }
  3792. #u51009 {
  3793. border-width:0px;
  3794. position:absolute;
  3795. left:246px;
  3796. top:153px;
  3797. width:82px;
  3798. height:38px;
  3799. display:flex;
  3800. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3801. font-weight:400;
  3802. font-style:normal;
  3803. font-size:12px;
  3804. }
  3805. #u51009 .text {
  3806. position:absolute;
  3807. align-self:center;
  3808. padding:2px 2px 2px 0px;
  3809. box-sizing:border-box;
  3810. width:100%;
  3811. }
  3812. #u51009_text {
  3813. border-width:0px;
  3814. word-wrap:break-word;
  3815. text-transform:none;
  3816. visibility:hidden;
  3817. }
  3818. #u51010_img {
  3819. border-width:0px;
  3820. position:absolute;
  3821. left:0px;
  3822. top:0px;
  3823. width:82px;
  3824. height:38px;
  3825. }
  3826. #u51010 {
  3827. border-width:0px;
  3828. position:absolute;
  3829. left:328px;
  3830. top:153px;
  3831. width:82px;
  3832. height:38px;
  3833. display:flex;
  3834. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3835. font-weight:400;
  3836. font-style:normal;
  3837. font-size:12px;
  3838. }
  3839. #u51010 .text {
  3840. position:absolute;
  3841. align-self:center;
  3842. padding:2px 2px 2px 0px;
  3843. box-sizing:border-box;
  3844. width:100%;
  3845. }
  3846. #u51010_text {
  3847. border-width:0px;
  3848. word-wrap:break-word;
  3849. text-transform:none;
  3850. visibility:hidden;
  3851. }
  3852. #u51011_img {
  3853. border-width:0px;
  3854. position:absolute;
  3855. left:0px;
  3856. top:0px;
  3857. width:89px;
  3858. height:38px;
  3859. }
  3860. #u51011 {
  3861. border-width:0px;
  3862. position:absolute;
  3863. left:410px;
  3864. top:153px;
  3865. width:89px;
  3866. height:38px;
  3867. display:flex;
  3868. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3869. font-weight:400;
  3870. font-style:normal;
  3871. font-size:12px;
  3872. }
  3873. #u51011 .text {
  3874. position:absolute;
  3875. align-self:center;
  3876. padding:2px 2px 2px 0px;
  3877. box-sizing:border-box;
  3878. width:100%;
  3879. }
  3880. #u51011_text {
  3881. border-width:0px;
  3882. word-wrap:break-word;
  3883. text-transform:none;
  3884. visibility:hidden;
  3885. }
  3886. #u51012_img {
  3887. border-width:0px;
  3888. position:absolute;
  3889. left:0px;
  3890. top:0px;
  3891. width:82px;
  3892. height:38px;
  3893. }
  3894. #u51012 {
  3895. border-width:0px;
  3896. position:absolute;
  3897. left:499px;
  3898. top:153px;
  3899. width:82px;
  3900. height:38px;
  3901. display:flex;
  3902. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3903. font-weight:400;
  3904. font-style:normal;
  3905. font-size:12px;
  3906. }
  3907. #u51012 .text {
  3908. position:absolute;
  3909. align-self:center;
  3910. padding:2px 2px 2px 0px;
  3911. box-sizing:border-box;
  3912. width:100%;
  3913. }
  3914. #u51012_text {
  3915. border-width:0px;
  3916. word-wrap:break-word;
  3917. text-transform:none;
  3918. visibility:hidden;
  3919. }
  3920. #u51013_img {
  3921. border-width:0px;
  3922. position:absolute;
  3923. left:0px;
  3924. top:0px;
  3925. width:82px;
  3926. height:38px;
  3927. }
  3928. #u51013 {
  3929. border-width:0px;
  3930. position:absolute;
  3931. left:581px;
  3932. top:153px;
  3933. width:82px;
  3934. height:38px;
  3935. display:flex;
  3936. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3937. font-weight:400;
  3938. font-style:normal;
  3939. font-size:12px;
  3940. }
  3941. #u51013 .text {
  3942. position:absolute;
  3943. align-self:center;
  3944. padding:2px 2px 2px 0px;
  3945. box-sizing:border-box;
  3946. width:100%;
  3947. }
  3948. #u51013_text {
  3949. border-width:0px;
  3950. word-wrap:break-word;
  3951. text-transform:none;
  3952. visibility:hidden;
  3953. }
  3954. #u51014_img {
  3955. border-width:0px;
  3956. position:absolute;
  3957. left:0px;
  3958. top:0px;
  3959. width:88px;
  3960. height:38px;
  3961. }
  3962. #u51014 {
  3963. border-width:0px;
  3964. position:absolute;
  3965. left:663px;
  3966. top:153px;
  3967. width:88px;
  3968. height:38px;
  3969. display:flex;
  3970. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3971. font-weight:400;
  3972. font-style:normal;
  3973. font-size:12px;
  3974. }
  3975. #u51014 .text {
  3976. position:absolute;
  3977. align-self:center;
  3978. padding:2px 2px 2px 0px;
  3979. box-sizing:border-box;
  3980. width:100%;
  3981. }
  3982. #u51014_text {
  3983. border-width:0px;
  3984. word-wrap:break-word;
  3985. text-transform:none;
  3986. visibility:hidden;
  3987. }
  3988. #u51015_img {
  3989. border-width:0px;
  3990. position:absolute;
  3991. left:0px;
  3992. top:0px;
  3993. width:82px;
  3994. height:38px;
  3995. }
  3996. #u51015 {
  3997. border-width:0px;
  3998. position:absolute;
  3999. left:751px;
  4000. top:153px;
  4001. width:82px;
  4002. height:38px;
  4003. display:flex;
  4004. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4005. font-weight:400;
  4006. font-style:normal;
  4007. font-size:12px;
  4008. }
  4009. #u51015 .text {
  4010. position:absolute;
  4011. align-self:center;
  4012. padding:2px 2px 2px 0px;
  4013. box-sizing:border-box;
  4014. width:100%;
  4015. }
  4016. #u51015_text {
  4017. border-width:0px;
  4018. word-wrap:break-word;
  4019. text-transform:none;
  4020. visibility:hidden;
  4021. }
  4022. #u51016_img {
  4023. border-width:0px;
  4024. position:absolute;
  4025. left:0px;
  4026. top:0px;
  4027. width:82px;
  4028. height:38px;
  4029. }
  4030. #u51016 {
  4031. border-width:0px;
  4032. position:absolute;
  4033. left:833px;
  4034. top:153px;
  4035. width:82px;
  4036. height:38px;
  4037. display:flex;
  4038. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4039. font-weight:400;
  4040. font-style:normal;
  4041. font-size:12px;
  4042. }
  4043. #u51016 .text {
  4044. position:absolute;
  4045. align-self:center;
  4046. padding:2px 2px 2px 0px;
  4047. box-sizing:border-box;
  4048. width:100%;
  4049. }
  4050. #u51016_text {
  4051. border-width:0px;
  4052. word-wrap:break-word;
  4053. text-transform:none;
  4054. visibility:hidden;
  4055. }
  4056. #u51017_img {
  4057. border-width:0px;
  4058. position:absolute;
  4059. left:0px;
  4060. top:0px;
  4061. width:89px;
  4062. height:38px;
  4063. }
  4064. #u51017 {
  4065. border-width:0px;
  4066. position:absolute;
  4067. left:915px;
  4068. top:153px;
  4069. width:89px;
  4070. height:38px;
  4071. display:flex;
  4072. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4073. font-weight:400;
  4074. font-style:normal;
  4075. font-size:12px;
  4076. }
  4077. #u51017 .text {
  4078. position:absolute;
  4079. align-self:center;
  4080. padding:2px 2px 2px 0px;
  4081. box-sizing:border-box;
  4082. width:100%;
  4083. }
  4084. #u51017_text {
  4085. border-width:0px;
  4086. word-wrap:break-word;
  4087. text-transform:none;
  4088. visibility:hidden;
  4089. }
  4090. #u51018_img {
  4091. border-width:0px;
  4092. position:absolute;
  4093. left:0px;
  4094. top:0px;
  4095. width:88px;
  4096. height:38px;
  4097. }
  4098. #u51018 {
  4099. border-width:0px;
  4100. position:absolute;
  4101. left:1004px;
  4102. top:153px;
  4103. width:88px;
  4104. height:38px;
  4105. display:flex;
  4106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4107. font-weight:400;
  4108. font-style:normal;
  4109. font-size:12px;
  4110. }
  4111. #u51018 .text {
  4112. position:absolute;
  4113. align-self:center;
  4114. padding:2px 2px 2px 0px;
  4115. box-sizing:border-box;
  4116. width:100%;
  4117. }
  4118. #u51018_text {
  4119. border-width:0px;
  4120. word-wrap:break-word;
  4121. text-transform:none;
  4122. visibility:hidden;
  4123. }
  4124. #u51019_img {
  4125. border-width:0px;
  4126. position:absolute;
  4127. left:0px;
  4128. top:0px;
  4129. width:100px;
  4130. height:38px;
  4131. }
  4132. #u51019 {
  4133. border-width:0px;
  4134. position:absolute;
  4135. left:1092px;
  4136. top:153px;
  4137. width:100px;
  4138. height:38px;
  4139. display:flex;
  4140. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4141. font-weight:400;
  4142. font-style:normal;
  4143. font-size:12px;
  4144. color:#1890FF;
  4145. }
  4146. #u51019 .text {
  4147. position:absolute;
  4148. align-self:center;
  4149. padding:2px 2px 2px 0px;
  4150. box-sizing:border-box;
  4151. width:100%;
  4152. }
  4153. #u51019_text {
  4154. border-width:0px;
  4155. word-wrap:break-word;
  4156. text-transform:none;
  4157. visibility:hidden;
  4158. }
  4159. #u51020_img {
  4160. border-width:0px;
  4161. position:absolute;
  4162. left:0px;
  4163. top:0px;
  4164. width:82px;
  4165. height:35px;
  4166. }
  4167. #u51020 {
  4168. border-width:0px;
  4169. position:absolute;
  4170. left:0px;
  4171. top:191px;
  4172. width:82px;
  4173. height:35px;
  4174. display:flex;
  4175. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4176. font-weight:400;
  4177. font-style:normal;
  4178. font-size:12px;
  4179. color:#606266;
  4180. }
  4181. #u51020 .text {
  4182. position:absolute;
  4183. align-self:center;
  4184. padding:2px 2px 2px 0px;
  4185. box-sizing:border-box;
  4186. width:100%;
  4187. }
  4188. #u51020_text {
  4189. border-width:0px;
  4190. word-wrap:break-word;
  4191. text-transform:none;
  4192. visibility:hidden;
  4193. }
  4194. #u51021_img {
  4195. border-width:0px;
  4196. position:absolute;
  4197. left:0px;
  4198. top:0px;
  4199. width:82px;
  4200. height:35px;
  4201. }
  4202. #u51021 {
  4203. border-width:0px;
  4204. position:absolute;
  4205. left:82px;
  4206. top:191px;
  4207. width:82px;
  4208. height:35px;
  4209. display:flex;
  4210. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4211. font-weight:400;
  4212. font-style:normal;
  4213. font-size:12px;
  4214. color:#606266;
  4215. }
  4216. #u51021 .text {
  4217. position:absolute;
  4218. align-self:center;
  4219. padding:2px 2px 2px 0px;
  4220. box-sizing:border-box;
  4221. width:100%;
  4222. }
  4223. #u51021_text {
  4224. border-width:0px;
  4225. word-wrap:break-word;
  4226. text-transform:none;
  4227. visibility:hidden;
  4228. }
  4229. #u51022_img {
  4230. border-width:0px;
  4231. position:absolute;
  4232. left:0px;
  4233. top:0px;
  4234. width:82px;
  4235. height:35px;
  4236. }
  4237. #u51022 {
  4238. border-width:0px;
  4239. position:absolute;
  4240. left:164px;
  4241. top:191px;
  4242. width:82px;
  4243. height:35px;
  4244. display:flex;
  4245. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4246. font-weight:400;
  4247. font-style:normal;
  4248. font-size:12px;
  4249. color:#606266;
  4250. }
  4251. #u51022 .text {
  4252. position:absolute;
  4253. align-self:center;
  4254. padding:2px 2px 2px 0px;
  4255. box-sizing:border-box;
  4256. width:100%;
  4257. }
  4258. #u51022_text {
  4259. border-width:0px;
  4260. word-wrap:break-word;
  4261. text-transform:none;
  4262. visibility:hidden;
  4263. }
  4264. #u51023_img {
  4265. border-width:0px;
  4266. position:absolute;
  4267. left:0px;
  4268. top:0px;
  4269. width:82px;
  4270. height:35px;
  4271. }
  4272. #u51023 {
  4273. border-width:0px;
  4274. position:absolute;
  4275. left:246px;
  4276. top:191px;
  4277. width:82px;
  4278. height:35px;
  4279. display:flex;
  4280. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4281. font-weight:400;
  4282. font-style:normal;
  4283. font-size:12px;
  4284. color:#606266;
  4285. }
  4286. #u51023 .text {
  4287. position:absolute;
  4288. align-self:center;
  4289. padding:2px 2px 2px 0px;
  4290. box-sizing:border-box;
  4291. width:100%;
  4292. }
  4293. #u51023_text {
  4294. border-width:0px;
  4295. word-wrap:break-word;
  4296. text-transform:none;
  4297. visibility:hidden;
  4298. }
  4299. #u51024_img {
  4300. border-width:0px;
  4301. position:absolute;
  4302. left:0px;
  4303. top:0px;
  4304. width:82px;
  4305. height:35px;
  4306. }
  4307. #u51024 {
  4308. border-width:0px;
  4309. position:absolute;
  4310. left:328px;
  4311. top:191px;
  4312. width:82px;
  4313. height:35px;
  4314. display:flex;
  4315. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4316. font-weight:400;
  4317. font-style:normal;
  4318. font-size:12px;
  4319. color:#606266;
  4320. }
  4321. #u51024 .text {
  4322. position:absolute;
  4323. align-self:center;
  4324. padding:2px 2px 2px 0px;
  4325. box-sizing:border-box;
  4326. width:100%;
  4327. }
  4328. #u51024_text {
  4329. border-width:0px;
  4330. word-wrap:break-word;
  4331. text-transform:none;
  4332. visibility:hidden;
  4333. }
  4334. #u51025_img {
  4335. border-width:0px;
  4336. position:absolute;
  4337. left:0px;
  4338. top:0px;
  4339. width:89px;
  4340. height:35px;
  4341. }
  4342. #u51025 {
  4343. border-width:0px;
  4344. position:absolute;
  4345. left:410px;
  4346. top:191px;
  4347. width:89px;
  4348. height:35px;
  4349. display:flex;
  4350. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4351. font-weight:400;
  4352. font-style:normal;
  4353. font-size:12px;
  4354. color:#606266;
  4355. }
  4356. #u51025 .text {
  4357. position:absolute;
  4358. align-self:center;
  4359. padding:2px 2px 2px 0px;
  4360. box-sizing:border-box;
  4361. width:100%;
  4362. }
  4363. #u51025_text {
  4364. border-width:0px;
  4365. word-wrap:break-word;
  4366. text-transform:none;
  4367. visibility:hidden;
  4368. }
  4369. #u51026_img {
  4370. border-width:0px;
  4371. position:absolute;
  4372. left:0px;
  4373. top:0px;
  4374. width:82px;
  4375. height:35px;
  4376. }
  4377. #u51026 {
  4378. border-width:0px;
  4379. position:absolute;
  4380. left:499px;
  4381. top:191px;
  4382. width:82px;
  4383. height:35px;
  4384. display:flex;
  4385. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4386. font-weight:400;
  4387. font-style:normal;
  4388. font-size:12px;
  4389. color:#606266;
  4390. }
  4391. #u51026 .text {
  4392. position:absolute;
  4393. align-self:center;
  4394. padding:2px 2px 2px 0px;
  4395. box-sizing:border-box;
  4396. width:100%;
  4397. }
  4398. #u51026_text {
  4399. border-width:0px;
  4400. word-wrap:break-word;
  4401. text-transform:none;
  4402. visibility:hidden;
  4403. }
  4404. #u51027_img {
  4405. border-width:0px;
  4406. position:absolute;
  4407. left:0px;
  4408. top:0px;
  4409. width:82px;
  4410. height:35px;
  4411. }
  4412. #u51027 {
  4413. border-width:0px;
  4414. position:absolute;
  4415. left:581px;
  4416. top:191px;
  4417. width:82px;
  4418. height:35px;
  4419. display:flex;
  4420. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4421. font-weight:400;
  4422. font-style:normal;
  4423. font-size:12px;
  4424. color:#606266;
  4425. }
  4426. #u51027 .text {
  4427. position:absolute;
  4428. align-self:center;
  4429. padding:2px 2px 2px 0px;
  4430. box-sizing:border-box;
  4431. width:100%;
  4432. }
  4433. #u51027_text {
  4434. border-width:0px;
  4435. word-wrap:break-word;
  4436. text-transform:none;
  4437. visibility:hidden;
  4438. }
  4439. #u51028_img {
  4440. border-width:0px;
  4441. position:absolute;
  4442. left:0px;
  4443. top:0px;
  4444. width:88px;
  4445. height:35px;
  4446. }
  4447. #u51028 {
  4448. border-width:0px;
  4449. position:absolute;
  4450. left:663px;
  4451. top:191px;
  4452. width:88px;
  4453. height:35px;
  4454. display:flex;
  4455. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4456. font-weight:400;
  4457. font-style:normal;
  4458. font-size:12px;
  4459. color:#606266;
  4460. }
  4461. #u51028 .text {
  4462. position:absolute;
  4463. align-self:center;
  4464. padding:2px 2px 2px 0px;
  4465. box-sizing:border-box;
  4466. width:100%;
  4467. }
  4468. #u51028_text {
  4469. border-width:0px;
  4470. word-wrap:break-word;
  4471. text-transform:none;
  4472. visibility:hidden;
  4473. }
  4474. #u51029_img {
  4475. border-width:0px;
  4476. position:absolute;
  4477. left:0px;
  4478. top:0px;
  4479. width:82px;
  4480. height:35px;
  4481. }
  4482. #u51029 {
  4483. border-width:0px;
  4484. position:absolute;
  4485. left:751px;
  4486. top:191px;
  4487. width:82px;
  4488. height:35px;
  4489. display:flex;
  4490. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4491. font-weight:400;
  4492. font-style:normal;
  4493. font-size:12px;
  4494. color:#606266;
  4495. }
  4496. #u51029 .text {
  4497. position:absolute;
  4498. align-self:center;
  4499. padding:2px 2px 2px 0px;
  4500. box-sizing:border-box;
  4501. width:100%;
  4502. }
  4503. #u51029_text {
  4504. border-width:0px;
  4505. word-wrap:break-word;
  4506. text-transform:none;
  4507. visibility:hidden;
  4508. }
  4509. #u51030_img {
  4510. border-width:0px;
  4511. position:absolute;
  4512. left:0px;
  4513. top:0px;
  4514. width:82px;
  4515. height:35px;
  4516. }
  4517. #u51030 {
  4518. border-width:0px;
  4519. position:absolute;
  4520. left:833px;
  4521. top:191px;
  4522. width:82px;
  4523. height:35px;
  4524. display:flex;
  4525. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4526. font-weight:400;
  4527. font-style:normal;
  4528. font-size:12px;
  4529. color:#606266;
  4530. }
  4531. #u51030 .text {
  4532. position:absolute;
  4533. align-self:center;
  4534. padding:2px 2px 2px 0px;
  4535. box-sizing:border-box;
  4536. width:100%;
  4537. }
  4538. #u51030_text {
  4539. border-width:0px;
  4540. word-wrap:break-word;
  4541. text-transform:none;
  4542. visibility:hidden;
  4543. }
  4544. #u51031_img {
  4545. border-width:0px;
  4546. position:absolute;
  4547. left:0px;
  4548. top:0px;
  4549. width:89px;
  4550. height:35px;
  4551. }
  4552. #u51031 {
  4553. border-width:0px;
  4554. position:absolute;
  4555. left:915px;
  4556. top:191px;
  4557. width:89px;
  4558. height:35px;
  4559. display:flex;
  4560. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4561. font-weight:400;
  4562. font-style:normal;
  4563. font-size:12px;
  4564. color:#606266;
  4565. }
  4566. #u51031 .text {
  4567. position:absolute;
  4568. align-self:center;
  4569. padding:2px 2px 2px 0px;
  4570. box-sizing:border-box;
  4571. width:100%;
  4572. }
  4573. #u51031_text {
  4574. border-width:0px;
  4575. word-wrap:break-word;
  4576. text-transform:none;
  4577. visibility:hidden;
  4578. }
  4579. #u51032_img {
  4580. border-width:0px;
  4581. position:absolute;
  4582. left:0px;
  4583. top:0px;
  4584. width:88px;
  4585. height:35px;
  4586. }
  4587. #u51032 {
  4588. border-width:0px;
  4589. position:absolute;
  4590. left:1004px;
  4591. top:191px;
  4592. width:88px;
  4593. height:35px;
  4594. display:flex;
  4595. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4596. font-weight:400;
  4597. font-style:normal;
  4598. font-size:12px;
  4599. color:#606266;
  4600. }
  4601. #u51032 .text {
  4602. position:absolute;
  4603. align-self:center;
  4604. padding:2px 2px 2px 0px;
  4605. box-sizing:border-box;
  4606. width:100%;
  4607. }
  4608. #u51032_text {
  4609. border-width:0px;
  4610. word-wrap:break-word;
  4611. text-transform:none;
  4612. visibility:hidden;
  4613. }
  4614. #u51033_img {
  4615. border-width:0px;
  4616. position:absolute;
  4617. left:0px;
  4618. top:0px;
  4619. width:100px;
  4620. height:35px;
  4621. }
  4622. #u51033 {
  4623. border-width:0px;
  4624. position:absolute;
  4625. left:1092px;
  4626. top:191px;
  4627. width:100px;
  4628. height:35px;
  4629. display:flex;
  4630. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4631. font-weight:400;
  4632. font-style:normal;
  4633. font-size:12px;
  4634. color:#02A7F0;
  4635. }
  4636. #u51033 .text {
  4637. position:absolute;
  4638. align-self:center;
  4639. padding:2px 2px 2px 0px;
  4640. box-sizing:border-box;
  4641. width:100%;
  4642. }
  4643. #u51033_text {
  4644. border-width:0px;
  4645. word-wrap:break-word;
  4646. text-transform:none;
  4647. visibility:hidden;
  4648. }
  4649. #u51034_img {
  4650. border-width:0px;
  4651. position:absolute;
  4652. left:0px;
  4653. top:0px;
  4654. width:82px;
  4655. height:35px;
  4656. }
  4657. #u51034 {
  4658. border-width:0px;
  4659. position:absolute;
  4660. left:0px;
  4661. top:226px;
  4662. width:82px;
  4663. height:35px;
  4664. display:flex;
  4665. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4666. font-weight:400;
  4667. font-style:normal;
  4668. font-size:12px;
  4669. color:#606266;
  4670. }
  4671. #u51034 .text {
  4672. position:absolute;
  4673. align-self:center;
  4674. padding:2px 2px 2px 0px;
  4675. box-sizing:border-box;
  4676. width:100%;
  4677. }
  4678. #u51034_text {
  4679. border-width:0px;
  4680. word-wrap:break-word;
  4681. text-transform:none;
  4682. visibility:hidden;
  4683. }
  4684. #u51035_img {
  4685. border-width:0px;
  4686. position:absolute;
  4687. left:0px;
  4688. top:0px;
  4689. width:82px;
  4690. height:35px;
  4691. }
  4692. #u51035 {
  4693. border-width:0px;
  4694. position:absolute;
  4695. left:82px;
  4696. top:226px;
  4697. width:82px;
  4698. height:35px;
  4699. display:flex;
  4700. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4701. font-weight:400;
  4702. font-style:normal;
  4703. font-size:12px;
  4704. color:#606266;
  4705. }
  4706. #u51035 .text {
  4707. position:absolute;
  4708. align-self:center;
  4709. padding:2px 2px 2px 0px;
  4710. box-sizing:border-box;
  4711. width:100%;
  4712. }
  4713. #u51035_text {
  4714. border-width:0px;
  4715. word-wrap:break-word;
  4716. text-transform:none;
  4717. visibility:hidden;
  4718. }
  4719. #u51036_img {
  4720. border-width:0px;
  4721. position:absolute;
  4722. left:0px;
  4723. top:0px;
  4724. width:82px;
  4725. height:35px;
  4726. }
  4727. #u51036 {
  4728. border-width:0px;
  4729. position:absolute;
  4730. left:164px;
  4731. top:226px;
  4732. width:82px;
  4733. height:35px;
  4734. display:flex;
  4735. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4736. font-weight:400;
  4737. font-style:normal;
  4738. font-size:12px;
  4739. color:#606266;
  4740. }
  4741. #u51036 .text {
  4742. position:absolute;
  4743. align-self:center;
  4744. padding:2px 2px 2px 0px;
  4745. box-sizing:border-box;
  4746. width:100%;
  4747. }
  4748. #u51036_text {
  4749. border-width:0px;
  4750. word-wrap:break-word;
  4751. text-transform:none;
  4752. visibility:hidden;
  4753. }
  4754. #u51037_img {
  4755. border-width:0px;
  4756. position:absolute;
  4757. left:0px;
  4758. top:0px;
  4759. width:82px;
  4760. height:35px;
  4761. }
  4762. #u51037 {
  4763. border-width:0px;
  4764. position:absolute;
  4765. left:246px;
  4766. top:226px;
  4767. width:82px;
  4768. height:35px;
  4769. display:flex;
  4770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4771. font-weight:400;
  4772. font-style:normal;
  4773. font-size:12px;
  4774. color:#606266;
  4775. }
  4776. #u51037 .text {
  4777. position:absolute;
  4778. align-self:center;
  4779. padding:2px 2px 2px 0px;
  4780. box-sizing:border-box;
  4781. width:100%;
  4782. }
  4783. #u51037_text {
  4784. border-width:0px;
  4785. word-wrap:break-word;
  4786. text-transform:none;
  4787. visibility:hidden;
  4788. }
  4789. #u51038_img {
  4790. border-width:0px;
  4791. position:absolute;
  4792. left:0px;
  4793. top:0px;
  4794. width:82px;
  4795. height:35px;
  4796. }
  4797. #u51038 {
  4798. border-width:0px;
  4799. position:absolute;
  4800. left:328px;
  4801. top:226px;
  4802. width:82px;
  4803. height:35px;
  4804. display:flex;
  4805. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4806. font-weight:400;
  4807. font-style:normal;
  4808. font-size:12px;
  4809. color:#606266;
  4810. }
  4811. #u51038 .text {
  4812. position:absolute;
  4813. align-self:center;
  4814. padding:2px 2px 2px 0px;
  4815. box-sizing:border-box;
  4816. width:100%;
  4817. }
  4818. #u51038_text {
  4819. border-width:0px;
  4820. word-wrap:break-word;
  4821. text-transform:none;
  4822. visibility:hidden;
  4823. }
  4824. #u51039_img {
  4825. border-width:0px;
  4826. position:absolute;
  4827. left:0px;
  4828. top:0px;
  4829. width:89px;
  4830. height:35px;
  4831. }
  4832. #u51039 {
  4833. border-width:0px;
  4834. position:absolute;
  4835. left:410px;
  4836. top:226px;
  4837. width:89px;
  4838. height:35px;
  4839. display:flex;
  4840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4841. font-weight:400;
  4842. font-style:normal;
  4843. font-size:12px;
  4844. color:#606266;
  4845. }
  4846. #u51039 .text {
  4847. position:absolute;
  4848. align-self:center;
  4849. padding:2px 2px 2px 0px;
  4850. box-sizing:border-box;
  4851. width:100%;
  4852. }
  4853. #u51039_text {
  4854. border-width:0px;
  4855. word-wrap:break-word;
  4856. text-transform:none;
  4857. visibility:hidden;
  4858. }
  4859. #u51040_img {
  4860. border-width:0px;
  4861. position:absolute;
  4862. left:0px;
  4863. top:0px;
  4864. width:82px;
  4865. height:35px;
  4866. }
  4867. #u51040 {
  4868. border-width:0px;
  4869. position:absolute;
  4870. left:499px;
  4871. top:226px;
  4872. width:82px;
  4873. height:35px;
  4874. display:flex;
  4875. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4876. font-weight:400;
  4877. font-style:normal;
  4878. font-size:12px;
  4879. color:#606266;
  4880. }
  4881. #u51040 .text {
  4882. position:absolute;
  4883. align-self:center;
  4884. padding:2px 2px 2px 0px;
  4885. box-sizing:border-box;
  4886. width:100%;
  4887. }
  4888. #u51040_text {
  4889. border-width:0px;
  4890. word-wrap:break-word;
  4891. text-transform:none;
  4892. visibility:hidden;
  4893. }
  4894. #u51041_img {
  4895. border-width:0px;
  4896. position:absolute;
  4897. left:0px;
  4898. top:0px;
  4899. width:82px;
  4900. height:35px;
  4901. }
  4902. #u51041 {
  4903. border-width:0px;
  4904. position:absolute;
  4905. left:581px;
  4906. top:226px;
  4907. width:82px;
  4908. height:35px;
  4909. display:flex;
  4910. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4911. font-weight:400;
  4912. font-style:normal;
  4913. font-size:12px;
  4914. color:#606266;
  4915. }
  4916. #u51041 .text {
  4917. position:absolute;
  4918. align-self:center;
  4919. padding:2px 2px 2px 0px;
  4920. box-sizing:border-box;
  4921. width:100%;
  4922. }
  4923. #u51041_text {
  4924. border-width:0px;
  4925. word-wrap:break-word;
  4926. text-transform:none;
  4927. visibility:hidden;
  4928. }
  4929. #u51042_img {
  4930. border-width:0px;
  4931. position:absolute;
  4932. left:0px;
  4933. top:0px;
  4934. width:88px;
  4935. height:35px;
  4936. }
  4937. #u51042 {
  4938. border-width:0px;
  4939. position:absolute;
  4940. left:663px;
  4941. top:226px;
  4942. width:88px;
  4943. height:35px;
  4944. display:flex;
  4945. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4946. font-weight:400;
  4947. font-style:normal;
  4948. font-size:12px;
  4949. color:#606266;
  4950. }
  4951. #u51042 .text {
  4952. position:absolute;
  4953. align-self:center;
  4954. padding:2px 2px 2px 0px;
  4955. box-sizing:border-box;
  4956. width:100%;
  4957. }
  4958. #u51042_text {
  4959. border-width:0px;
  4960. word-wrap:break-word;
  4961. text-transform:none;
  4962. visibility:hidden;
  4963. }
  4964. #u51043_img {
  4965. border-width:0px;
  4966. position:absolute;
  4967. left:0px;
  4968. top:0px;
  4969. width:82px;
  4970. height:35px;
  4971. }
  4972. #u51043 {
  4973. border-width:0px;
  4974. position:absolute;
  4975. left:751px;
  4976. top:226px;
  4977. width:82px;
  4978. height:35px;
  4979. display:flex;
  4980. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4981. font-weight:400;
  4982. font-style:normal;
  4983. font-size:12px;
  4984. color:#606266;
  4985. }
  4986. #u51043 .text {
  4987. position:absolute;
  4988. align-self:center;
  4989. padding:2px 2px 2px 0px;
  4990. box-sizing:border-box;
  4991. width:100%;
  4992. }
  4993. #u51043_text {
  4994. border-width:0px;
  4995. word-wrap:break-word;
  4996. text-transform:none;
  4997. visibility:hidden;
  4998. }
  4999. #u51044_img {
  5000. border-width:0px;
  5001. position:absolute;
  5002. left:0px;
  5003. top:0px;
  5004. width:82px;
  5005. height:35px;
  5006. }
  5007. #u51044 {
  5008. border-width:0px;
  5009. position:absolute;
  5010. left:833px;
  5011. top:226px;
  5012. width:82px;
  5013. height:35px;
  5014. display:flex;
  5015. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5016. font-weight:400;
  5017. font-style:normal;
  5018. font-size:12px;
  5019. color:#606266;
  5020. }
  5021. #u51044 .text {
  5022. position:absolute;
  5023. align-self:center;
  5024. padding:2px 2px 2px 0px;
  5025. box-sizing:border-box;
  5026. width:100%;
  5027. }
  5028. #u51044_text {
  5029. border-width:0px;
  5030. word-wrap:break-word;
  5031. text-transform:none;
  5032. visibility:hidden;
  5033. }
  5034. #u51045_img {
  5035. border-width:0px;
  5036. position:absolute;
  5037. left:0px;
  5038. top:0px;
  5039. width:89px;
  5040. height:35px;
  5041. }
  5042. #u51045 {
  5043. border-width:0px;
  5044. position:absolute;
  5045. left:915px;
  5046. top:226px;
  5047. width:89px;
  5048. height:35px;
  5049. display:flex;
  5050. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5051. font-weight:400;
  5052. font-style:normal;
  5053. font-size:12px;
  5054. color:#606266;
  5055. }
  5056. #u51045 .text {
  5057. position:absolute;
  5058. align-self:center;
  5059. padding:2px 2px 2px 0px;
  5060. box-sizing:border-box;
  5061. width:100%;
  5062. }
  5063. #u51045_text {
  5064. border-width:0px;
  5065. word-wrap:break-word;
  5066. text-transform:none;
  5067. visibility:hidden;
  5068. }
  5069. #u51046_img {
  5070. border-width:0px;
  5071. position:absolute;
  5072. left:0px;
  5073. top:0px;
  5074. width:88px;
  5075. height:35px;
  5076. }
  5077. #u51046 {
  5078. border-width:0px;
  5079. position:absolute;
  5080. left:1004px;
  5081. top:226px;
  5082. width:88px;
  5083. height:35px;
  5084. display:flex;
  5085. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5086. font-weight:400;
  5087. font-style:normal;
  5088. font-size:12px;
  5089. color:#606266;
  5090. }
  5091. #u51046 .text {
  5092. position:absolute;
  5093. align-self:center;
  5094. padding:2px 2px 2px 0px;
  5095. box-sizing:border-box;
  5096. width:100%;
  5097. }
  5098. #u51046_text {
  5099. border-width:0px;
  5100. word-wrap:break-word;
  5101. text-transform:none;
  5102. visibility:hidden;
  5103. }
  5104. #u51047_img {
  5105. border-width:0px;
  5106. position:absolute;
  5107. left:0px;
  5108. top:0px;
  5109. width:100px;
  5110. height:35px;
  5111. }
  5112. #u51047 {
  5113. border-width:0px;
  5114. position:absolute;
  5115. left:1092px;
  5116. top:226px;
  5117. width:100px;
  5118. height:35px;
  5119. display:flex;
  5120. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5121. font-weight:400;
  5122. font-style:normal;
  5123. font-size:12px;
  5124. color:#02A7F0;
  5125. }
  5126. #u51047 .text {
  5127. position:absolute;
  5128. align-self:center;
  5129. padding:2px 2px 2px 0px;
  5130. box-sizing:border-box;
  5131. width:100%;
  5132. }
  5133. #u51047_text {
  5134. border-width:0px;
  5135. word-wrap:break-word;
  5136. text-transform:none;
  5137. visibility:hidden;
  5138. }
  5139. #u51048_img {
  5140. border-width:0px;
  5141. position:absolute;
  5142. left:0px;
  5143. top:0px;
  5144. width:82px;
  5145. height:35px;
  5146. }
  5147. #u51048 {
  5148. border-width:0px;
  5149. position:absolute;
  5150. left:0px;
  5151. top:261px;
  5152. width:82px;
  5153. height:35px;
  5154. display:flex;
  5155. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5156. font-weight:400;
  5157. font-style:normal;
  5158. font-size:12px;
  5159. color:#606266;
  5160. }
  5161. #u51048 .text {
  5162. position:absolute;
  5163. align-self:center;
  5164. padding:2px 2px 2px 0px;
  5165. box-sizing:border-box;
  5166. width:100%;
  5167. }
  5168. #u51048_text {
  5169. border-width:0px;
  5170. word-wrap:break-word;
  5171. text-transform:none;
  5172. visibility:hidden;
  5173. }
  5174. #u51049_img {
  5175. border-width:0px;
  5176. position:absolute;
  5177. left:0px;
  5178. top:0px;
  5179. width:82px;
  5180. height:35px;
  5181. }
  5182. #u51049 {
  5183. border-width:0px;
  5184. position:absolute;
  5185. left:82px;
  5186. top:261px;
  5187. width:82px;
  5188. height:35px;
  5189. display:flex;
  5190. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5191. font-weight:400;
  5192. font-style:normal;
  5193. font-size:12px;
  5194. color:#606266;
  5195. }
  5196. #u51049 .text {
  5197. position:absolute;
  5198. align-self:center;
  5199. padding:2px 2px 2px 0px;
  5200. box-sizing:border-box;
  5201. width:100%;
  5202. }
  5203. #u51049_text {
  5204. border-width:0px;
  5205. word-wrap:break-word;
  5206. text-transform:none;
  5207. visibility:hidden;
  5208. }
  5209. #u51050_img {
  5210. border-width:0px;
  5211. position:absolute;
  5212. left:0px;
  5213. top:0px;
  5214. width:82px;
  5215. height:35px;
  5216. }
  5217. #u51050 {
  5218. border-width:0px;
  5219. position:absolute;
  5220. left:164px;
  5221. top:261px;
  5222. width:82px;
  5223. height:35px;
  5224. display:flex;
  5225. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5226. font-weight:400;
  5227. font-style:normal;
  5228. font-size:12px;
  5229. color:#606266;
  5230. }
  5231. #u51050 .text {
  5232. position:absolute;
  5233. align-self:center;
  5234. padding:2px 2px 2px 0px;
  5235. box-sizing:border-box;
  5236. width:100%;
  5237. }
  5238. #u51050_text {
  5239. border-width:0px;
  5240. word-wrap:break-word;
  5241. text-transform:none;
  5242. visibility:hidden;
  5243. }
  5244. #u51051_img {
  5245. border-width:0px;
  5246. position:absolute;
  5247. left:0px;
  5248. top:0px;
  5249. width:82px;
  5250. height:35px;
  5251. }
  5252. #u51051 {
  5253. border-width:0px;
  5254. position:absolute;
  5255. left:246px;
  5256. top:261px;
  5257. width:82px;
  5258. height:35px;
  5259. display:flex;
  5260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5261. font-weight:400;
  5262. font-style:normal;
  5263. font-size:12px;
  5264. color:#606266;
  5265. }
  5266. #u51051 .text {
  5267. position:absolute;
  5268. align-self:center;
  5269. padding:2px 2px 2px 0px;
  5270. box-sizing:border-box;
  5271. width:100%;
  5272. }
  5273. #u51051_text {
  5274. border-width:0px;
  5275. word-wrap:break-word;
  5276. text-transform:none;
  5277. visibility:hidden;
  5278. }
  5279. #u51052_img {
  5280. border-width:0px;
  5281. position:absolute;
  5282. left:0px;
  5283. top:0px;
  5284. width:82px;
  5285. height:35px;
  5286. }
  5287. #u51052 {
  5288. border-width:0px;
  5289. position:absolute;
  5290. left:328px;
  5291. top:261px;
  5292. width:82px;
  5293. height:35px;
  5294. display:flex;
  5295. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5296. font-weight:400;
  5297. font-style:normal;
  5298. font-size:12px;
  5299. color:#606266;
  5300. }
  5301. #u51052 .text {
  5302. position:absolute;
  5303. align-self:center;
  5304. padding:2px 2px 2px 0px;
  5305. box-sizing:border-box;
  5306. width:100%;
  5307. }
  5308. #u51052_text {
  5309. border-width:0px;
  5310. word-wrap:break-word;
  5311. text-transform:none;
  5312. visibility:hidden;
  5313. }
  5314. #u51053_img {
  5315. border-width:0px;
  5316. position:absolute;
  5317. left:0px;
  5318. top:0px;
  5319. width:89px;
  5320. height:35px;
  5321. }
  5322. #u51053 {
  5323. border-width:0px;
  5324. position:absolute;
  5325. left:410px;
  5326. top:261px;
  5327. width:89px;
  5328. height:35px;
  5329. display:flex;
  5330. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5331. font-weight:400;
  5332. font-style:normal;
  5333. font-size:12px;
  5334. color:#606266;
  5335. }
  5336. #u51053 .text {
  5337. position:absolute;
  5338. align-self:center;
  5339. padding:2px 2px 2px 0px;
  5340. box-sizing:border-box;
  5341. width:100%;
  5342. }
  5343. #u51053_text {
  5344. border-width:0px;
  5345. word-wrap:break-word;
  5346. text-transform:none;
  5347. visibility:hidden;
  5348. }
  5349. #u51054_img {
  5350. border-width:0px;
  5351. position:absolute;
  5352. left:0px;
  5353. top:0px;
  5354. width:82px;
  5355. height:35px;
  5356. }
  5357. #u51054 {
  5358. border-width:0px;
  5359. position:absolute;
  5360. left:499px;
  5361. top:261px;
  5362. width:82px;
  5363. height:35px;
  5364. display:flex;
  5365. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5366. font-weight:400;
  5367. font-style:normal;
  5368. font-size:12px;
  5369. color:#606266;
  5370. }
  5371. #u51054 .text {
  5372. position:absolute;
  5373. align-self:center;
  5374. padding:2px 2px 2px 0px;
  5375. box-sizing:border-box;
  5376. width:100%;
  5377. }
  5378. #u51054_text {
  5379. border-width:0px;
  5380. word-wrap:break-word;
  5381. text-transform:none;
  5382. visibility:hidden;
  5383. }
  5384. #u51055_img {
  5385. border-width:0px;
  5386. position:absolute;
  5387. left:0px;
  5388. top:0px;
  5389. width:82px;
  5390. height:35px;
  5391. }
  5392. #u51055 {
  5393. border-width:0px;
  5394. position:absolute;
  5395. left:581px;
  5396. top:261px;
  5397. width:82px;
  5398. height:35px;
  5399. display:flex;
  5400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5401. font-weight:400;
  5402. font-style:normal;
  5403. font-size:12px;
  5404. color:#606266;
  5405. }
  5406. #u51055 .text {
  5407. position:absolute;
  5408. align-self:center;
  5409. padding:2px 2px 2px 0px;
  5410. box-sizing:border-box;
  5411. width:100%;
  5412. }
  5413. #u51055_text {
  5414. border-width:0px;
  5415. word-wrap:break-word;
  5416. text-transform:none;
  5417. visibility:hidden;
  5418. }
  5419. #u51056_img {
  5420. border-width:0px;
  5421. position:absolute;
  5422. left:0px;
  5423. top:0px;
  5424. width:88px;
  5425. height:35px;
  5426. }
  5427. #u51056 {
  5428. border-width:0px;
  5429. position:absolute;
  5430. left:663px;
  5431. top:261px;
  5432. width:88px;
  5433. height:35px;
  5434. display:flex;
  5435. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5436. font-weight:400;
  5437. font-style:normal;
  5438. font-size:12px;
  5439. color:#606266;
  5440. }
  5441. #u51056 .text {
  5442. position:absolute;
  5443. align-self:center;
  5444. padding:2px 2px 2px 0px;
  5445. box-sizing:border-box;
  5446. width:100%;
  5447. }
  5448. #u51056_text {
  5449. border-width:0px;
  5450. word-wrap:break-word;
  5451. text-transform:none;
  5452. visibility:hidden;
  5453. }
  5454. #u51057_img {
  5455. border-width:0px;
  5456. position:absolute;
  5457. left:0px;
  5458. top:0px;
  5459. width:82px;
  5460. height:35px;
  5461. }
  5462. #u51057 {
  5463. border-width:0px;
  5464. position:absolute;
  5465. left:751px;
  5466. top:261px;
  5467. width:82px;
  5468. height:35px;
  5469. display:flex;
  5470. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5471. font-weight:400;
  5472. font-style:normal;
  5473. font-size:12px;
  5474. color:#606266;
  5475. }
  5476. #u51057 .text {
  5477. position:absolute;
  5478. align-self:center;
  5479. padding:2px 2px 2px 0px;
  5480. box-sizing:border-box;
  5481. width:100%;
  5482. }
  5483. #u51057_text {
  5484. border-width:0px;
  5485. word-wrap:break-word;
  5486. text-transform:none;
  5487. visibility:hidden;
  5488. }
  5489. #u51058_img {
  5490. border-width:0px;
  5491. position:absolute;
  5492. left:0px;
  5493. top:0px;
  5494. width:82px;
  5495. height:35px;
  5496. }
  5497. #u51058 {
  5498. border-width:0px;
  5499. position:absolute;
  5500. left:833px;
  5501. top:261px;
  5502. width:82px;
  5503. height:35px;
  5504. display:flex;
  5505. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5506. font-weight:400;
  5507. font-style:normal;
  5508. font-size:12px;
  5509. color:#606266;
  5510. }
  5511. #u51058 .text {
  5512. position:absolute;
  5513. align-self:center;
  5514. padding:2px 2px 2px 0px;
  5515. box-sizing:border-box;
  5516. width:100%;
  5517. }
  5518. #u51058_text {
  5519. border-width:0px;
  5520. word-wrap:break-word;
  5521. text-transform:none;
  5522. visibility:hidden;
  5523. }
  5524. #u51059_img {
  5525. border-width:0px;
  5526. position:absolute;
  5527. left:0px;
  5528. top:0px;
  5529. width:89px;
  5530. height:35px;
  5531. }
  5532. #u51059 {
  5533. border-width:0px;
  5534. position:absolute;
  5535. left:915px;
  5536. top:261px;
  5537. width:89px;
  5538. height:35px;
  5539. display:flex;
  5540. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5541. font-weight:400;
  5542. font-style:normal;
  5543. font-size:12px;
  5544. color:#606266;
  5545. }
  5546. #u51059 .text {
  5547. position:absolute;
  5548. align-self:center;
  5549. padding:2px 2px 2px 0px;
  5550. box-sizing:border-box;
  5551. width:100%;
  5552. }
  5553. #u51059_text {
  5554. border-width:0px;
  5555. word-wrap:break-word;
  5556. text-transform:none;
  5557. visibility:hidden;
  5558. }
  5559. #u51060_img {
  5560. border-width:0px;
  5561. position:absolute;
  5562. left:0px;
  5563. top:0px;
  5564. width:88px;
  5565. height:35px;
  5566. }
  5567. #u51060 {
  5568. border-width:0px;
  5569. position:absolute;
  5570. left:1004px;
  5571. top:261px;
  5572. width:88px;
  5573. height:35px;
  5574. display:flex;
  5575. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5576. font-weight:400;
  5577. font-style:normal;
  5578. font-size:12px;
  5579. color:#606266;
  5580. }
  5581. #u51060 .text {
  5582. position:absolute;
  5583. align-self:center;
  5584. padding:2px 2px 2px 0px;
  5585. box-sizing:border-box;
  5586. width:100%;
  5587. }
  5588. #u51060_text {
  5589. border-width:0px;
  5590. word-wrap:break-word;
  5591. text-transform:none;
  5592. visibility:hidden;
  5593. }
  5594. #u51061_img {
  5595. border-width:0px;
  5596. position:absolute;
  5597. left:0px;
  5598. top:0px;
  5599. width:100px;
  5600. height:35px;
  5601. }
  5602. #u51061 {
  5603. border-width:0px;
  5604. position:absolute;
  5605. left:1092px;
  5606. top:261px;
  5607. width:100px;
  5608. height:35px;
  5609. display:flex;
  5610. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5611. font-weight:400;
  5612. font-style:normal;
  5613. font-size:12px;
  5614. color:#02A7F0;
  5615. }
  5616. #u51061 .text {
  5617. position:absolute;
  5618. align-self:center;
  5619. padding:2px 2px 2px 0px;
  5620. box-sizing:border-box;
  5621. width:100%;
  5622. }
  5623. #u51061_text {
  5624. border-width:0px;
  5625. word-wrap:break-word;
  5626. text-transform:none;
  5627. visibility:hidden;
  5628. }
  5629. #u51062_img {
  5630. border-width:0px;
  5631. position:absolute;
  5632. left:0px;
  5633. top:0px;
  5634. width:82px;
  5635. height:35px;
  5636. }
  5637. #u51062 {
  5638. border-width:0px;
  5639. position:absolute;
  5640. left:0px;
  5641. top:296px;
  5642. width:82px;
  5643. height:35px;
  5644. display:flex;
  5645. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5646. font-weight:400;
  5647. font-style:normal;
  5648. font-size:12px;
  5649. color:#606266;
  5650. }
  5651. #u51062 .text {
  5652. position:absolute;
  5653. align-self:center;
  5654. padding:2px 2px 2px 0px;
  5655. box-sizing:border-box;
  5656. width:100%;
  5657. }
  5658. #u51062_text {
  5659. border-width:0px;
  5660. word-wrap:break-word;
  5661. text-transform:none;
  5662. visibility:hidden;
  5663. }
  5664. #u51063_img {
  5665. border-width:0px;
  5666. position:absolute;
  5667. left:0px;
  5668. top:0px;
  5669. width:82px;
  5670. height:35px;
  5671. }
  5672. #u51063 {
  5673. border-width:0px;
  5674. position:absolute;
  5675. left:82px;
  5676. top:296px;
  5677. width:82px;
  5678. height:35px;
  5679. display:flex;
  5680. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5681. font-weight:400;
  5682. font-style:normal;
  5683. font-size:12px;
  5684. color:#606266;
  5685. }
  5686. #u51063 .text {
  5687. position:absolute;
  5688. align-self:center;
  5689. padding:2px 2px 2px 0px;
  5690. box-sizing:border-box;
  5691. width:100%;
  5692. }
  5693. #u51063_text {
  5694. border-width:0px;
  5695. word-wrap:break-word;
  5696. text-transform:none;
  5697. visibility:hidden;
  5698. }
  5699. #u51064_img {
  5700. border-width:0px;
  5701. position:absolute;
  5702. left:0px;
  5703. top:0px;
  5704. width:82px;
  5705. height:35px;
  5706. }
  5707. #u51064 {
  5708. border-width:0px;
  5709. position:absolute;
  5710. left:164px;
  5711. top:296px;
  5712. width:82px;
  5713. height:35px;
  5714. display:flex;
  5715. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5716. font-weight:400;
  5717. font-style:normal;
  5718. font-size:12px;
  5719. color:#606266;
  5720. }
  5721. #u51064 .text {
  5722. position:absolute;
  5723. align-self:center;
  5724. padding:2px 2px 2px 0px;
  5725. box-sizing:border-box;
  5726. width:100%;
  5727. }
  5728. #u51064_text {
  5729. border-width:0px;
  5730. word-wrap:break-word;
  5731. text-transform:none;
  5732. visibility:hidden;
  5733. }
  5734. #u51065_img {
  5735. border-width:0px;
  5736. position:absolute;
  5737. left:0px;
  5738. top:0px;
  5739. width:82px;
  5740. height:35px;
  5741. }
  5742. #u51065 {
  5743. border-width:0px;
  5744. position:absolute;
  5745. left:246px;
  5746. top:296px;
  5747. width:82px;
  5748. height:35px;
  5749. display:flex;
  5750. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5751. font-weight:400;
  5752. font-style:normal;
  5753. font-size:12px;
  5754. color:#606266;
  5755. }
  5756. #u51065 .text {
  5757. position:absolute;
  5758. align-self:center;
  5759. padding:2px 2px 2px 0px;
  5760. box-sizing:border-box;
  5761. width:100%;
  5762. }
  5763. #u51065_text {
  5764. border-width:0px;
  5765. word-wrap:break-word;
  5766. text-transform:none;
  5767. visibility:hidden;
  5768. }
  5769. #u51066_img {
  5770. border-width:0px;
  5771. position:absolute;
  5772. left:0px;
  5773. top:0px;
  5774. width:82px;
  5775. height:35px;
  5776. }
  5777. #u51066 {
  5778. border-width:0px;
  5779. position:absolute;
  5780. left:328px;
  5781. top:296px;
  5782. width:82px;
  5783. height:35px;
  5784. display:flex;
  5785. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5786. font-weight:400;
  5787. font-style:normal;
  5788. font-size:12px;
  5789. color:#606266;
  5790. }
  5791. #u51066 .text {
  5792. position:absolute;
  5793. align-self:center;
  5794. padding:2px 2px 2px 0px;
  5795. box-sizing:border-box;
  5796. width:100%;
  5797. }
  5798. #u51066_text {
  5799. border-width:0px;
  5800. word-wrap:break-word;
  5801. text-transform:none;
  5802. visibility:hidden;
  5803. }
  5804. #u51067_img {
  5805. border-width:0px;
  5806. position:absolute;
  5807. left:0px;
  5808. top:0px;
  5809. width:89px;
  5810. height:35px;
  5811. }
  5812. #u51067 {
  5813. border-width:0px;
  5814. position:absolute;
  5815. left:410px;
  5816. top:296px;
  5817. width:89px;
  5818. height:35px;
  5819. display:flex;
  5820. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5821. font-weight:400;
  5822. font-style:normal;
  5823. font-size:12px;
  5824. color:#606266;
  5825. }
  5826. #u51067 .text {
  5827. position:absolute;
  5828. align-self:center;
  5829. padding:2px 2px 2px 0px;
  5830. box-sizing:border-box;
  5831. width:100%;
  5832. }
  5833. #u51067_text {
  5834. border-width:0px;
  5835. word-wrap:break-word;
  5836. text-transform:none;
  5837. visibility:hidden;
  5838. }
  5839. #u51068_img {
  5840. border-width:0px;
  5841. position:absolute;
  5842. left:0px;
  5843. top:0px;
  5844. width:82px;
  5845. height:35px;
  5846. }
  5847. #u51068 {
  5848. border-width:0px;
  5849. position:absolute;
  5850. left:499px;
  5851. top:296px;
  5852. width:82px;
  5853. height:35px;
  5854. display:flex;
  5855. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5856. font-weight:400;
  5857. font-style:normal;
  5858. font-size:12px;
  5859. color:#606266;
  5860. }
  5861. #u51068 .text {
  5862. position:absolute;
  5863. align-self:center;
  5864. padding:2px 2px 2px 0px;
  5865. box-sizing:border-box;
  5866. width:100%;
  5867. }
  5868. #u51068_text {
  5869. border-width:0px;
  5870. word-wrap:break-word;
  5871. text-transform:none;
  5872. visibility:hidden;
  5873. }
  5874. #u51069_img {
  5875. border-width:0px;
  5876. position:absolute;
  5877. left:0px;
  5878. top:0px;
  5879. width:82px;
  5880. height:35px;
  5881. }
  5882. #u51069 {
  5883. border-width:0px;
  5884. position:absolute;
  5885. left:581px;
  5886. top:296px;
  5887. width:82px;
  5888. height:35px;
  5889. display:flex;
  5890. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5891. font-weight:400;
  5892. font-style:normal;
  5893. font-size:12px;
  5894. color:#606266;
  5895. }
  5896. #u51069 .text {
  5897. position:absolute;
  5898. align-self:center;
  5899. padding:2px 2px 2px 0px;
  5900. box-sizing:border-box;
  5901. width:100%;
  5902. }
  5903. #u51069_text {
  5904. border-width:0px;
  5905. word-wrap:break-word;
  5906. text-transform:none;
  5907. visibility:hidden;
  5908. }
  5909. #u51070_img {
  5910. border-width:0px;
  5911. position:absolute;
  5912. left:0px;
  5913. top:0px;
  5914. width:88px;
  5915. height:35px;
  5916. }
  5917. #u51070 {
  5918. border-width:0px;
  5919. position:absolute;
  5920. left:663px;
  5921. top:296px;
  5922. width:88px;
  5923. height:35px;
  5924. display:flex;
  5925. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5926. font-weight:400;
  5927. font-style:normal;
  5928. font-size:12px;
  5929. color:#606266;
  5930. }
  5931. #u51070 .text {
  5932. position:absolute;
  5933. align-self:center;
  5934. padding:2px 2px 2px 0px;
  5935. box-sizing:border-box;
  5936. width:100%;
  5937. }
  5938. #u51070_text {
  5939. border-width:0px;
  5940. word-wrap:break-word;
  5941. text-transform:none;
  5942. visibility:hidden;
  5943. }
  5944. #u51071_img {
  5945. border-width:0px;
  5946. position:absolute;
  5947. left:0px;
  5948. top:0px;
  5949. width:82px;
  5950. height:35px;
  5951. }
  5952. #u51071 {
  5953. border-width:0px;
  5954. position:absolute;
  5955. left:751px;
  5956. top:296px;
  5957. width:82px;
  5958. height:35px;
  5959. display:flex;
  5960. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5961. font-weight:400;
  5962. font-style:normal;
  5963. font-size:12px;
  5964. color:#606266;
  5965. }
  5966. #u51071 .text {
  5967. position:absolute;
  5968. align-self:center;
  5969. padding:2px 2px 2px 0px;
  5970. box-sizing:border-box;
  5971. width:100%;
  5972. }
  5973. #u51071_text {
  5974. border-width:0px;
  5975. word-wrap:break-word;
  5976. text-transform:none;
  5977. visibility:hidden;
  5978. }
  5979. #u51072_img {
  5980. border-width:0px;
  5981. position:absolute;
  5982. left:0px;
  5983. top:0px;
  5984. width:82px;
  5985. height:35px;
  5986. }
  5987. #u51072 {
  5988. border-width:0px;
  5989. position:absolute;
  5990. left:833px;
  5991. top:296px;
  5992. width:82px;
  5993. height:35px;
  5994. display:flex;
  5995. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5996. font-weight:400;
  5997. font-style:normal;
  5998. font-size:12px;
  5999. color:#606266;
  6000. }
  6001. #u51072 .text {
  6002. position:absolute;
  6003. align-self:center;
  6004. padding:2px 2px 2px 0px;
  6005. box-sizing:border-box;
  6006. width:100%;
  6007. }
  6008. #u51072_text {
  6009. border-width:0px;
  6010. word-wrap:break-word;
  6011. text-transform:none;
  6012. visibility:hidden;
  6013. }
  6014. #u51073_img {
  6015. border-width:0px;
  6016. position:absolute;
  6017. left:0px;
  6018. top:0px;
  6019. width:89px;
  6020. height:35px;
  6021. }
  6022. #u51073 {
  6023. border-width:0px;
  6024. position:absolute;
  6025. left:915px;
  6026. top:296px;
  6027. width:89px;
  6028. height:35px;
  6029. display:flex;
  6030. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6031. font-weight:400;
  6032. font-style:normal;
  6033. font-size:12px;
  6034. color:#606266;
  6035. }
  6036. #u51073 .text {
  6037. position:absolute;
  6038. align-self:center;
  6039. padding:2px 2px 2px 0px;
  6040. box-sizing:border-box;
  6041. width:100%;
  6042. }
  6043. #u51073_text {
  6044. border-width:0px;
  6045. word-wrap:break-word;
  6046. text-transform:none;
  6047. visibility:hidden;
  6048. }
  6049. #u51074_img {
  6050. border-width:0px;
  6051. position:absolute;
  6052. left:0px;
  6053. top:0px;
  6054. width:88px;
  6055. height:35px;
  6056. }
  6057. #u51074 {
  6058. border-width:0px;
  6059. position:absolute;
  6060. left:1004px;
  6061. top:296px;
  6062. width:88px;
  6063. height:35px;
  6064. display:flex;
  6065. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6066. font-weight:400;
  6067. font-style:normal;
  6068. font-size:12px;
  6069. color:#606266;
  6070. }
  6071. #u51074 .text {
  6072. position:absolute;
  6073. align-self:center;
  6074. padding:2px 2px 2px 0px;
  6075. box-sizing:border-box;
  6076. width:100%;
  6077. }
  6078. #u51074_text {
  6079. border-width:0px;
  6080. word-wrap:break-word;
  6081. text-transform:none;
  6082. visibility:hidden;
  6083. }
  6084. #u51075_img {
  6085. border-width:0px;
  6086. position:absolute;
  6087. left:0px;
  6088. top:0px;
  6089. width:100px;
  6090. height:35px;
  6091. }
  6092. #u51075 {
  6093. border-width:0px;
  6094. position:absolute;
  6095. left:1092px;
  6096. top:296px;
  6097. width:100px;
  6098. height:35px;
  6099. display:flex;
  6100. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6101. font-weight:400;
  6102. font-style:normal;
  6103. font-size:12px;
  6104. color:#02A7F0;
  6105. }
  6106. #u51075 .text {
  6107. position:absolute;
  6108. align-self:center;
  6109. padding:2px 2px 2px 0px;
  6110. box-sizing:border-box;
  6111. width:100%;
  6112. }
  6113. #u51075_text {
  6114. border-width:0px;
  6115. word-wrap:break-word;
  6116. text-transform:none;
  6117. visibility:hidden;
  6118. }
  6119. #u51076_img {
  6120. border-width:0px;
  6121. position:absolute;
  6122. left:0px;
  6123. top:0px;
  6124. width:82px;
  6125. height:35px;
  6126. }
  6127. #u51076 {
  6128. border-width:0px;
  6129. position:absolute;
  6130. left:0px;
  6131. top:331px;
  6132. width:82px;
  6133. height:35px;
  6134. display:flex;
  6135. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6136. font-weight:400;
  6137. font-style:normal;
  6138. font-size:12px;
  6139. color:#606266;
  6140. }
  6141. #u51076 .text {
  6142. position:absolute;
  6143. align-self:center;
  6144. padding:2px 2px 2px 0px;
  6145. box-sizing:border-box;
  6146. width:100%;
  6147. }
  6148. #u51076_text {
  6149. border-width:0px;
  6150. word-wrap:break-word;
  6151. text-transform:none;
  6152. visibility:hidden;
  6153. }
  6154. #u51077_img {
  6155. border-width:0px;
  6156. position:absolute;
  6157. left:0px;
  6158. top:0px;
  6159. width:82px;
  6160. height:35px;
  6161. }
  6162. #u51077 {
  6163. border-width:0px;
  6164. position:absolute;
  6165. left:82px;
  6166. top:331px;
  6167. width:82px;
  6168. height:35px;
  6169. display:flex;
  6170. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6171. font-weight:400;
  6172. font-style:normal;
  6173. font-size:12px;
  6174. color:#606266;
  6175. }
  6176. #u51077 .text {
  6177. position:absolute;
  6178. align-self:center;
  6179. padding:2px 2px 2px 0px;
  6180. box-sizing:border-box;
  6181. width:100%;
  6182. }
  6183. #u51077_text {
  6184. border-width:0px;
  6185. word-wrap:break-word;
  6186. text-transform:none;
  6187. visibility:hidden;
  6188. }
  6189. #u51078_img {
  6190. border-width:0px;
  6191. position:absolute;
  6192. left:0px;
  6193. top:0px;
  6194. width:82px;
  6195. height:35px;
  6196. }
  6197. #u51078 {
  6198. border-width:0px;
  6199. position:absolute;
  6200. left:164px;
  6201. top:331px;
  6202. width:82px;
  6203. height:35px;
  6204. display:flex;
  6205. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6206. font-weight:400;
  6207. font-style:normal;
  6208. font-size:12px;
  6209. color:#606266;
  6210. }
  6211. #u51078 .text {
  6212. position:absolute;
  6213. align-self:center;
  6214. padding:2px 2px 2px 0px;
  6215. box-sizing:border-box;
  6216. width:100%;
  6217. }
  6218. #u51078_text {
  6219. border-width:0px;
  6220. word-wrap:break-word;
  6221. text-transform:none;
  6222. visibility:hidden;
  6223. }
  6224. #u51079_img {
  6225. border-width:0px;
  6226. position:absolute;
  6227. left:0px;
  6228. top:0px;
  6229. width:82px;
  6230. height:35px;
  6231. }
  6232. #u51079 {
  6233. border-width:0px;
  6234. position:absolute;
  6235. left:246px;
  6236. top:331px;
  6237. width:82px;
  6238. height:35px;
  6239. display:flex;
  6240. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6241. font-weight:400;
  6242. font-style:normal;
  6243. font-size:12px;
  6244. color:#606266;
  6245. }
  6246. #u51079 .text {
  6247. position:absolute;
  6248. align-self:center;
  6249. padding:2px 2px 2px 0px;
  6250. box-sizing:border-box;
  6251. width:100%;
  6252. }
  6253. #u51079_text {
  6254. border-width:0px;
  6255. word-wrap:break-word;
  6256. text-transform:none;
  6257. visibility:hidden;
  6258. }
  6259. #u51080_img {
  6260. border-width:0px;
  6261. position:absolute;
  6262. left:0px;
  6263. top:0px;
  6264. width:82px;
  6265. height:35px;
  6266. }
  6267. #u51080 {
  6268. border-width:0px;
  6269. position:absolute;
  6270. left:328px;
  6271. top:331px;
  6272. width:82px;
  6273. height:35px;
  6274. display:flex;
  6275. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6276. font-weight:400;
  6277. font-style:normal;
  6278. font-size:12px;
  6279. color:#606266;
  6280. }
  6281. #u51080 .text {
  6282. position:absolute;
  6283. align-self:center;
  6284. padding:2px 2px 2px 0px;
  6285. box-sizing:border-box;
  6286. width:100%;
  6287. }
  6288. #u51080_text {
  6289. border-width:0px;
  6290. word-wrap:break-word;
  6291. text-transform:none;
  6292. visibility:hidden;
  6293. }
  6294. #u51081_img {
  6295. border-width:0px;
  6296. position:absolute;
  6297. left:0px;
  6298. top:0px;
  6299. width:89px;
  6300. height:35px;
  6301. }
  6302. #u51081 {
  6303. border-width:0px;
  6304. position:absolute;
  6305. left:410px;
  6306. top:331px;
  6307. width:89px;
  6308. height:35px;
  6309. display:flex;
  6310. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6311. font-weight:400;
  6312. font-style:normal;
  6313. font-size:12px;
  6314. color:#606266;
  6315. }
  6316. #u51081 .text {
  6317. position:absolute;
  6318. align-self:center;
  6319. padding:2px 2px 2px 0px;
  6320. box-sizing:border-box;
  6321. width:100%;
  6322. }
  6323. #u51081_text {
  6324. border-width:0px;
  6325. word-wrap:break-word;
  6326. text-transform:none;
  6327. visibility:hidden;
  6328. }
  6329. #u51082_img {
  6330. border-width:0px;
  6331. position:absolute;
  6332. left:0px;
  6333. top:0px;
  6334. width:82px;
  6335. height:35px;
  6336. }
  6337. #u51082 {
  6338. border-width:0px;
  6339. position:absolute;
  6340. left:499px;
  6341. top:331px;
  6342. width:82px;
  6343. height:35px;
  6344. display:flex;
  6345. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6346. font-weight:400;
  6347. font-style:normal;
  6348. font-size:12px;
  6349. color:#606266;
  6350. }
  6351. #u51082 .text {
  6352. position:absolute;
  6353. align-self:center;
  6354. padding:2px 2px 2px 0px;
  6355. box-sizing:border-box;
  6356. width:100%;
  6357. }
  6358. #u51082_text {
  6359. border-width:0px;
  6360. word-wrap:break-word;
  6361. text-transform:none;
  6362. visibility:hidden;
  6363. }
  6364. #u51083_img {
  6365. border-width:0px;
  6366. position:absolute;
  6367. left:0px;
  6368. top:0px;
  6369. width:82px;
  6370. height:35px;
  6371. }
  6372. #u51083 {
  6373. border-width:0px;
  6374. position:absolute;
  6375. left:581px;
  6376. top:331px;
  6377. width:82px;
  6378. height:35px;
  6379. display:flex;
  6380. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6381. font-weight:400;
  6382. font-style:normal;
  6383. font-size:12px;
  6384. color:#606266;
  6385. }
  6386. #u51083 .text {
  6387. position:absolute;
  6388. align-self:center;
  6389. padding:2px 2px 2px 0px;
  6390. box-sizing:border-box;
  6391. width:100%;
  6392. }
  6393. #u51083_text {
  6394. border-width:0px;
  6395. word-wrap:break-word;
  6396. text-transform:none;
  6397. visibility:hidden;
  6398. }
  6399. #u51084_img {
  6400. border-width:0px;
  6401. position:absolute;
  6402. left:0px;
  6403. top:0px;
  6404. width:88px;
  6405. height:35px;
  6406. }
  6407. #u51084 {
  6408. border-width:0px;
  6409. position:absolute;
  6410. left:663px;
  6411. top:331px;
  6412. width:88px;
  6413. height:35px;
  6414. display:flex;
  6415. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6416. font-weight:400;
  6417. font-style:normal;
  6418. font-size:12px;
  6419. color:#606266;
  6420. }
  6421. #u51084 .text {
  6422. position:absolute;
  6423. align-self:center;
  6424. padding:2px 2px 2px 0px;
  6425. box-sizing:border-box;
  6426. width:100%;
  6427. }
  6428. #u51084_text {
  6429. border-width:0px;
  6430. word-wrap:break-word;
  6431. text-transform:none;
  6432. visibility:hidden;
  6433. }
  6434. #u51085_img {
  6435. border-width:0px;
  6436. position:absolute;
  6437. left:0px;
  6438. top:0px;
  6439. width:82px;
  6440. height:35px;
  6441. }
  6442. #u51085 {
  6443. border-width:0px;
  6444. position:absolute;
  6445. left:751px;
  6446. top:331px;
  6447. width:82px;
  6448. height:35px;
  6449. display:flex;
  6450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6451. font-weight:400;
  6452. font-style:normal;
  6453. font-size:12px;
  6454. color:#606266;
  6455. }
  6456. #u51085 .text {
  6457. position:absolute;
  6458. align-self:center;
  6459. padding:2px 2px 2px 0px;
  6460. box-sizing:border-box;
  6461. width:100%;
  6462. }
  6463. #u51085_text {
  6464. border-width:0px;
  6465. word-wrap:break-word;
  6466. text-transform:none;
  6467. visibility:hidden;
  6468. }
  6469. #u51086_img {
  6470. border-width:0px;
  6471. position:absolute;
  6472. left:0px;
  6473. top:0px;
  6474. width:82px;
  6475. height:35px;
  6476. }
  6477. #u51086 {
  6478. border-width:0px;
  6479. position:absolute;
  6480. left:833px;
  6481. top:331px;
  6482. width:82px;
  6483. height:35px;
  6484. display:flex;
  6485. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6486. font-weight:400;
  6487. font-style:normal;
  6488. font-size:12px;
  6489. color:#606266;
  6490. }
  6491. #u51086 .text {
  6492. position:absolute;
  6493. align-self:center;
  6494. padding:2px 2px 2px 0px;
  6495. box-sizing:border-box;
  6496. width:100%;
  6497. }
  6498. #u51086_text {
  6499. border-width:0px;
  6500. word-wrap:break-word;
  6501. text-transform:none;
  6502. visibility:hidden;
  6503. }
  6504. #u51087_img {
  6505. border-width:0px;
  6506. position:absolute;
  6507. left:0px;
  6508. top:0px;
  6509. width:89px;
  6510. height:35px;
  6511. }
  6512. #u51087 {
  6513. border-width:0px;
  6514. position:absolute;
  6515. left:915px;
  6516. top:331px;
  6517. width:89px;
  6518. height:35px;
  6519. display:flex;
  6520. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6521. font-weight:400;
  6522. font-style:normal;
  6523. font-size:12px;
  6524. color:#606266;
  6525. }
  6526. #u51087 .text {
  6527. position:absolute;
  6528. align-self:center;
  6529. padding:2px 2px 2px 0px;
  6530. box-sizing:border-box;
  6531. width:100%;
  6532. }
  6533. #u51087_text {
  6534. border-width:0px;
  6535. word-wrap:break-word;
  6536. text-transform:none;
  6537. visibility:hidden;
  6538. }
  6539. #u51088_img {
  6540. border-width:0px;
  6541. position:absolute;
  6542. left:0px;
  6543. top:0px;
  6544. width:88px;
  6545. height:35px;
  6546. }
  6547. #u51088 {
  6548. border-width:0px;
  6549. position:absolute;
  6550. left:1004px;
  6551. top:331px;
  6552. width:88px;
  6553. height:35px;
  6554. display:flex;
  6555. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6556. font-weight:400;
  6557. font-style:normal;
  6558. font-size:12px;
  6559. color:#606266;
  6560. }
  6561. #u51088 .text {
  6562. position:absolute;
  6563. align-self:center;
  6564. padding:2px 2px 2px 0px;
  6565. box-sizing:border-box;
  6566. width:100%;
  6567. }
  6568. #u51088_text {
  6569. border-width:0px;
  6570. word-wrap:break-word;
  6571. text-transform:none;
  6572. visibility:hidden;
  6573. }
  6574. #u51089_img {
  6575. border-width:0px;
  6576. position:absolute;
  6577. left:0px;
  6578. top:0px;
  6579. width:100px;
  6580. height:35px;
  6581. }
  6582. #u51089 {
  6583. border-width:0px;
  6584. position:absolute;
  6585. left:1092px;
  6586. top:331px;
  6587. width:100px;
  6588. height:35px;
  6589. display:flex;
  6590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6591. font-weight:400;
  6592. font-style:normal;
  6593. font-size:12px;
  6594. color:#02A7F0;
  6595. }
  6596. #u51089 .text {
  6597. position:absolute;
  6598. align-self:center;
  6599. padding:2px 2px 2px 0px;
  6600. box-sizing:border-box;
  6601. width:100%;
  6602. }
  6603. #u51089_text {
  6604. border-width:0px;
  6605. word-wrap:break-word;
  6606. text-transform:none;
  6607. visibility:hidden;
  6608. }
  6609. #u51090 {
  6610. border-width:0px;
  6611. position:absolute;
  6612. left:0px;
  6613. top:0px;
  6614. width:0px;
  6615. height:0px;
  6616. }
  6617. #u51091_div {
  6618. border-width:0px;
  6619. position:absolute;
  6620. left:0px;
  6621. top:0px;
  6622. width:59px;
  6623. height:30px;
  6624. background:inherit;
  6625. background-color:rgba(24, 144, 255, 1);
  6626. box-sizing:border-box;
  6627. border-width:1px;
  6628. border-style:solid;
  6629. border-color:rgba(0, 153, 255, 1);
  6630. border-radius:4px;
  6631. -moz-box-shadow:none;
  6632. -webkit-box-shadow:none;
  6633. box-shadow:none;
  6634. font-family:'Microsoft YaHei', sans-serif;
  6635. font-weight:400;
  6636. font-style:normal;
  6637. font-size:14px;
  6638. color:#FFFFFF;
  6639. }
  6640. #u51091 {
  6641. border-width:0px;
  6642. position:absolute;
  6643. left:1250px;
  6644. top:105px;
  6645. width:59px;
  6646. height:30px;
  6647. display:flex;
  6648. font-family:'Microsoft YaHei', sans-serif;
  6649. font-weight:400;
  6650. font-style:normal;
  6651. font-size:14px;
  6652. color:#FFFFFF;
  6653. }
  6654. #u51091 .text {
  6655. position:absolute;
  6656. align-self:center;
  6657. padding:5px 15px 5px 15px;
  6658. box-sizing:border-box;
  6659. width:100%;
  6660. }
  6661. #u51091_text {
  6662. border-width:0px;
  6663. white-space:nowrap;
  6664. text-transform:none;
  6665. }
  6666. #u51092_div {
  6667. border-width:0px;
  6668. position:absolute;
  6669. left:0px;
  6670. top:0px;
  6671. width:55px;
  6672. height:30px;
  6673. background:inherit;
  6674. background-color:rgba(255, 255, 255, 1);
  6675. box-sizing:border-box;
  6676. border-width:1px;
  6677. border-style:solid;
  6678. border-color:rgba(170, 170, 170, 1);
  6679. border-radius:4px;
  6680. -moz-box-shadow:none;
  6681. -webkit-box-shadow:none;
  6682. box-shadow:none;
  6683. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6684. font-weight:400;
  6685. font-style:normal;
  6686. font-size:12px;
  6687. color:#555555;
  6688. }
  6689. #u51092 {
  6690. border-width:0px;
  6691. position:absolute;
  6692. left:1319px;
  6693. top:105px;
  6694. width:55px;
  6695. height:30px;
  6696. display:flex;
  6697. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6698. font-weight:400;
  6699. font-style:normal;
  6700. font-size:12px;
  6701. color:#555555;
  6702. }
  6703. #u51092 .text {
  6704. position:absolute;
  6705. align-self:center;
  6706. padding:5px 15px 5px 15px;
  6707. box-sizing:border-box;
  6708. width:100%;
  6709. }
  6710. #u51092_text {
  6711. border-width:0px;
  6712. white-space:nowrap;
  6713. text-transform:none;
  6714. }
  6715. #u51093_img {
  6716. border-width:0px;
  6717. position:absolute;
  6718. left:0px;
  6719. top:0px;
  6720. width:13px;
  6721. height:13px;
  6722. }
  6723. #u51093 {
  6724. border-width:0px;
  6725. position:absolute;
  6726. left:428px;
  6727. top:68px;
  6728. width:13px;
  6729. height:13px;
  6730. display:flex;
  6731. }
  6732. #u51093 .text {
  6733. position:absolute;
  6734. align-self:center;
  6735. padding:2px 2px 2px 2px;
  6736. box-sizing:border-box;
  6737. width:100%;
  6738. }
  6739. #u51093_text {
  6740. border-width:0px;
  6741. word-wrap:break-word;
  6742. text-transform:none;
  6743. visibility:hidden;
  6744. }
  6745. #u51094 {
  6746. border-width:0px;
  6747. position:absolute;
  6748. left:0px;
  6749. top:0px;
  6750. width:0px;
  6751. height:0px;
  6752. }
  6753. #u51095_div {
  6754. border-width:0px;
  6755. position:absolute;
  6756. left:0px;
  6757. top:0px;
  6758. width:140px;
  6759. height:30px;
  6760. background:inherit;
  6761. background-color:rgba(255, 255, 255, 1);
  6762. box-sizing:border-box;
  6763. border-width:1px;
  6764. border-style:solid;
  6765. border-color:rgba(201, 201, 201, 1);
  6766. border-radius:4px;
  6767. -moz-box-shadow:none;
  6768. -webkit-box-shadow:none;
  6769. box-shadow:none;
  6770. font-family:'Microsoft YaHei', sans-serif;
  6771. font-weight:400;
  6772. font-style:normal;
  6773. font-size:14px;
  6774. color:#CCCCCC;
  6775. text-align:left;
  6776. }
  6777. #u51095 {
  6778. border-width:0px;
  6779. position:absolute;
  6780. left:800px;
  6781. top:105px;
  6782. width:140px;
  6783. height:30px;
  6784. display:flex;
  6785. font-family:'Microsoft YaHei', sans-serif;
  6786. font-weight:400;
  6787. font-style:normal;
  6788. font-size:14px;
  6789. color:#CCCCCC;
  6790. text-align:left;
  6791. }
  6792. #u51095 .text {
  6793. position:absolute;
  6794. align-self:center;
  6795. padding:2px 8px 2px 8px;
  6796. box-sizing:border-box;
  6797. width:100%;
  6798. }
  6799. #u51095_text {
  6800. border-width:0px;
  6801. word-wrap:break-word;
  6802. text-transform:none;
  6803. visibility:hidden;
  6804. }
  6805. #u51096_input {
  6806. position:absolute;
  6807. left:0px;
  6808. top:0px;
  6809. width:127px;
  6810. height:25px;
  6811. padding:2px 2px 2px 2px;
  6812. font-family:'Microsoft YaHei', sans-serif;
  6813. font-weight:400;
  6814. font-style:normal;
  6815. font-size:10px;
  6816. letter-spacing:normal;
  6817. color:#000000;
  6818. vertical-align:none;
  6819. text-align:left;
  6820. text-transform:none;
  6821. background-color:transparent;
  6822. border-color:transparent;
  6823. }
  6824. #u51096_input.disabled {
  6825. position:absolute;
  6826. left:0px;
  6827. top:0px;
  6828. width:127px;
  6829. height:25px;
  6830. padding:2px 2px 2px 2px;
  6831. font-family:'Microsoft YaHei', sans-serif;
  6832. font-weight:400;
  6833. font-style:normal;
  6834. font-size:10px;
  6835. letter-spacing:normal;
  6836. color:#000000;
  6837. vertical-align:none;
  6838. text-align:left;
  6839. text-transform:none;
  6840. background-color:transparent;
  6841. border-color:transparent;
  6842. }
  6843. #u51096_div {
  6844. border-width:0px;
  6845. position:absolute;
  6846. left:0px;
  6847. top:0px;
  6848. width:127px;
  6849. height:25px;
  6850. background:inherit;
  6851. background-color:rgba(255, 255, 255, 1);
  6852. border:none;
  6853. border-radius:0px;
  6854. -moz-box-shadow:none;
  6855. -webkit-box-shadow:none;
  6856. box-shadow:none;
  6857. font-family:'Microsoft YaHei', sans-serif;
  6858. font-weight:400;
  6859. font-style:normal;
  6860. font-size:10px;
  6861. }
  6862. #u51096 {
  6863. border-width:0px;
  6864. position:absolute;
  6865. left:808px;
  6866. top:106px;
  6867. width:127px;
  6868. height:25px;
  6869. display:flex;
  6870. font-family:'Microsoft YaHei', sans-serif;
  6871. font-weight:400;
  6872. font-style:normal;
  6873. font-size:10px;
  6874. }
  6875. #u51096 .text {
  6876. position:absolute;
  6877. align-self:center;
  6878. padding:2px 2px 2px 2px;
  6879. box-sizing:border-box;
  6880. width:100%;
  6881. }
  6882. #u51096_div.disabled {
  6883. border-width:0px;
  6884. position:absolute;
  6885. left:0px;
  6886. top:0px;
  6887. width:127px;
  6888. height:25px;
  6889. background:inherit;
  6890. background-color:rgba(240, 240, 240, 1);
  6891. border:none;
  6892. border-radius:0px;
  6893. -moz-box-shadow:none;
  6894. -webkit-box-shadow:none;
  6895. box-shadow:none;
  6896. font-family:'Microsoft YaHei', sans-serif;
  6897. font-weight:400;
  6898. font-style:normal;
  6899. font-size:10px;
  6900. }
  6901. #u51096.disabled {
  6902. }
  6903. #u51097 {
  6904. border-width:0px;
  6905. position:absolute;
  6906. left:0px;
  6907. top:0px;
  6908. width:0px;
  6909. height:0px;
  6910. }
  6911. #u51098_div {
  6912. border-width:0px;
  6913. position:absolute;
  6914. left:0px;
  6915. top:0px;
  6916. width:140px;
  6917. height:30px;
  6918. background:inherit;
  6919. background-color:rgba(255, 255, 255, 1);
  6920. box-sizing:border-box;
  6921. border-width:1px;
  6922. border-style:solid;
  6923. border-color:rgba(215, 215, 215, 1);
  6924. border-radius:4px;
  6925. -moz-box-shadow:none;
  6926. -webkit-box-shadow:none;
  6927. box-shadow:none;
  6928. font-size:11px;
  6929. }
  6930. #u51098 {
  6931. border-width:0px;
  6932. position:absolute;
  6933. left:500px;
  6934. top:105px;
  6935. width:140px;
  6936. height:30px;
  6937. display:flex;
  6938. font-size:11px;
  6939. }
  6940. #u51098 .text {
  6941. position:absolute;
  6942. align-self:center;
  6943. padding:2px 2px 2px 2px;
  6944. box-sizing:border-box;
  6945. width:100%;
  6946. }
  6947. #u51098_text {
  6948. border-width:0px;
  6949. word-wrap:break-word;
  6950. text-transform:none;
  6951. visibility:hidden;
  6952. }
  6953. #u51099_input {
  6954. position:absolute;
  6955. left:0px;
  6956. top:0px;
  6957. width:120px;
  6958. height:23px;
  6959. padding:2px 2px 2px 2px;
  6960. font-family:'ArialMT', 'Arial', sans-serif;
  6961. font-weight:400;
  6962. font-style:normal;
  6963. font-size:11px;
  6964. letter-spacing:normal;
  6965. color:#AAAAAA;
  6966. vertical-align:none;
  6967. text-align:left;
  6968. text-transform:none;
  6969. background-color:transparent;
  6970. border-color:transparent;
  6971. }
  6972. #u51099_input.disabled {
  6973. position:absolute;
  6974. left:0px;
  6975. top:0px;
  6976. width:120px;
  6977. height:23px;
  6978. padding:2px 2px 2px 2px;
  6979. font-family:'ArialMT', 'Arial', sans-serif;
  6980. font-weight:400;
  6981. font-style:normal;
  6982. font-size:11px;
  6983. letter-spacing:normal;
  6984. color:#AAAAAA;
  6985. vertical-align:none;
  6986. text-align:left;
  6987. text-transform:none;
  6988. background-color:transparent;
  6989. border-color:transparent;
  6990. }
  6991. #u51099_div {
  6992. border-width:0px;
  6993. position:absolute;
  6994. left:0px;
  6995. top:0px;
  6996. width:120px;
  6997. height:23px;
  6998. background:inherit;
  6999. background-color:rgba(255, 255, 255, 1);
  7000. border:none;
  7001. border-radius:0px;
  7002. -moz-box-shadow:none;
  7003. -webkit-box-shadow:none;
  7004. box-shadow:none;
  7005. font-size:11px;
  7006. color:#AAAAAA;
  7007. }
  7008. #u51099 {
  7009. border-width:0px;
  7010. position:absolute;
  7011. left:507px;
  7012. top:107px;
  7013. width:120px;
  7014. height:23px;
  7015. display:flex;
  7016. font-size:11px;
  7017. color:#AAAAAA;
  7018. }
  7019. #u51099 .text {
  7020. position:absolute;
  7021. align-self:flex-start;
  7022. padding:2px 2px 2px 2px;
  7023. box-sizing:border-box;
  7024. width:100%;
  7025. }
  7026. #u51099_div.disabled {
  7027. border-width:0px;
  7028. position:absolute;
  7029. left:0px;
  7030. top:0px;
  7031. width:120px;
  7032. height:23px;
  7033. background:inherit;
  7034. background-color:rgba(240, 240, 240, 1);
  7035. border:none;
  7036. border-radius:0px;
  7037. -moz-box-shadow:none;
  7038. -webkit-box-shadow:none;
  7039. box-shadow:none;
  7040. font-size:11px;
  7041. color:#AAAAAA;
  7042. }
  7043. #u51099.disabled {
  7044. }
  7045. .u51099_input_option {
  7046. font-size:11px;
  7047. }
  7048. #u51100 {
  7049. border-width:0px;
  7050. position:absolute;
  7051. left:0px;
  7052. top:0px;
  7053. width:0px;
  7054. height:0px;
  7055. }
  7056. #u51101_div {
  7057. border-width:0px;
  7058. position:absolute;
  7059. left:0px;
  7060. top:0px;
  7061. width:140px;
  7062. height:30px;
  7063. background:inherit;
  7064. background-color:rgba(255, 255, 255, 1);
  7065. box-sizing:border-box;
  7066. border-width:1px;
  7067. border-style:solid;
  7068. border-color:rgba(215, 215, 215, 1);
  7069. border-radius:4px;
  7070. -moz-box-shadow:none;
  7071. -webkit-box-shadow:none;
  7072. box-shadow:none;
  7073. font-size:11px;
  7074. }
  7075. #u51101 {
  7076. border-width:0px;
  7077. position:absolute;
  7078. left:650px;
  7079. top:105px;
  7080. width:140px;
  7081. height:30px;
  7082. display:flex;
  7083. font-size:11px;
  7084. }
  7085. #u51101 .text {
  7086. position:absolute;
  7087. align-self:center;
  7088. padding:2px 2px 2px 2px;
  7089. box-sizing:border-box;
  7090. width:100%;
  7091. }
  7092. #u51101_text {
  7093. border-width:0px;
  7094. word-wrap:break-word;
  7095. text-transform:none;
  7096. visibility:hidden;
  7097. }
  7098. #u51102_input {
  7099. position:absolute;
  7100. left:0px;
  7101. top:0px;
  7102. width:120px;
  7103. height:23px;
  7104. padding:2px 2px 2px 2px;
  7105. font-family:'ArialMT', 'Arial', sans-serif;
  7106. font-weight:400;
  7107. font-style:normal;
  7108. font-size:11px;
  7109. letter-spacing:normal;
  7110. color:#AAAAAA;
  7111. vertical-align:none;
  7112. text-align:left;
  7113. text-transform:none;
  7114. background-color:transparent;
  7115. border-color:transparent;
  7116. }
  7117. #u51102_input.disabled {
  7118. position:absolute;
  7119. left:0px;
  7120. top:0px;
  7121. width:120px;
  7122. height:23px;
  7123. padding:2px 2px 2px 2px;
  7124. font-family:'ArialMT', 'Arial', sans-serif;
  7125. font-weight:400;
  7126. font-style:normal;
  7127. font-size:11px;
  7128. letter-spacing:normal;
  7129. color:#AAAAAA;
  7130. vertical-align:none;
  7131. text-align:left;
  7132. text-transform:none;
  7133. background-color:transparent;
  7134. border-color:transparent;
  7135. }
  7136. #u51102_div {
  7137. border-width:0px;
  7138. position:absolute;
  7139. left:0px;
  7140. top:0px;
  7141. width:120px;
  7142. height:23px;
  7143. background:inherit;
  7144. background-color:rgba(255, 255, 255, 1);
  7145. border:none;
  7146. border-radius:0px;
  7147. -moz-box-shadow:none;
  7148. -webkit-box-shadow:none;
  7149. box-shadow:none;
  7150. font-size:11px;
  7151. color:#AAAAAA;
  7152. }
  7153. #u51102 {
  7154. border-width:0px;
  7155. position:absolute;
  7156. left:657px;
  7157. top:107px;
  7158. width:120px;
  7159. height:23px;
  7160. display:flex;
  7161. font-size:11px;
  7162. color:#AAAAAA;
  7163. }
  7164. #u51102 .text {
  7165. position:absolute;
  7166. align-self:flex-start;
  7167. padding:2px 2px 2px 2px;
  7168. box-sizing:border-box;
  7169. width:100%;
  7170. }
  7171. #u51102_div.disabled {
  7172. border-width:0px;
  7173. position:absolute;
  7174. left:0px;
  7175. top:0px;
  7176. width:120px;
  7177. height:23px;
  7178. background:inherit;
  7179. background-color:rgba(240, 240, 240, 1);
  7180. border:none;
  7181. border-radius:0px;
  7182. -moz-box-shadow:none;
  7183. -webkit-box-shadow:none;
  7184. box-shadow:none;
  7185. font-size:11px;
  7186. color:#AAAAAA;
  7187. }
  7188. #u51102.disabled {
  7189. }
  7190. .u51102_input_option {
  7191. font-size:11px;
  7192. }
  7193. #u51103 {
  7194. border-width:0px;
  7195. position:absolute;
  7196. left:0px;
  7197. top:0px;
  7198. width:0px;
  7199. height:0px;
  7200. }
  7201. #u51104_div {
  7202. border-width:0px;
  7203. position:absolute;
  7204. left:0px;
  7205. top:0px;
  7206. width:140px;
  7207. height:30px;
  7208. background:inherit;
  7209. background-color:rgba(255, 255, 255, 1);
  7210. box-sizing:border-box;
  7211. border-width:1px;
  7212. border-style:solid;
  7213. border-color:rgba(215, 215, 215, 1);
  7214. border-radius:4px;
  7215. -moz-box-shadow:none;
  7216. -webkit-box-shadow:none;
  7217. box-shadow:none;
  7218. font-size:11px;
  7219. }
  7220. #u51104 {
  7221. border-width:0px;
  7222. position:absolute;
  7223. left:950px;
  7224. top:105px;
  7225. width:140px;
  7226. height:30px;
  7227. display:flex;
  7228. font-size:11px;
  7229. }
  7230. #u51104 .text {
  7231. position:absolute;
  7232. align-self:center;
  7233. padding:2px 2px 2px 2px;
  7234. box-sizing:border-box;
  7235. width:100%;
  7236. }
  7237. #u51104_text {
  7238. border-width:0px;
  7239. word-wrap:break-word;
  7240. text-transform:none;
  7241. visibility:hidden;
  7242. }
  7243. #u51105_input {
  7244. position:absolute;
  7245. left:0px;
  7246. top:0px;
  7247. width:120px;
  7248. height:23px;
  7249. padding:2px 2px 2px 2px;
  7250. font-family:'ArialMT', 'Arial', sans-serif;
  7251. font-weight:400;
  7252. font-style:normal;
  7253. font-size:11px;
  7254. letter-spacing:normal;
  7255. color:#AAAAAA;
  7256. vertical-align:none;
  7257. text-align:left;
  7258. text-transform:none;
  7259. background-color:transparent;
  7260. border-color:transparent;
  7261. }
  7262. #u51105_input.disabled {
  7263. position:absolute;
  7264. left:0px;
  7265. top:0px;
  7266. width:120px;
  7267. height:23px;
  7268. padding:2px 2px 2px 2px;
  7269. font-family:'ArialMT', 'Arial', sans-serif;
  7270. font-weight:400;
  7271. font-style:normal;
  7272. font-size:11px;
  7273. letter-spacing:normal;
  7274. color:#AAAAAA;
  7275. vertical-align:none;
  7276. text-align:left;
  7277. text-transform:none;
  7278. background-color:transparent;
  7279. border-color:transparent;
  7280. }
  7281. #u51105_div {
  7282. border-width:0px;
  7283. position:absolute;
  7284. left:0px;
  7285. top:0px;
  7286. width:120px;
  7287. height:23px;
  7288. background:inherit;
  7289. background-color:rgba(255, 255, 255, 1);
  7290. border:none;
  7291. border-radius:0px;
  7292. -moz-box-shadow:none;
  7293. -webkit-box-shadow:none;
  7294. box-shadow:none;
  7295. font-size:11px;
  7296. color:#AAAAAA;
  7297. }
  7298. #u51105 {
  7299. border-width:0px;
  7300. position:absolute;
  7301. left:957px;
  7302. top:107px;
  7303. width:120px;
  7304. height:23px;
  7305. display:flex;
  7306. font-size:11px;
  7307. color:#AAAAAA;
  7308. }
  7309. #u51105 .text {
  7310. position:absolute;
  7311. align-self:flex-start;
  7312. padding:2px 2px 2px 2px;
  7313. box-sizing:border-box;
  7314. width:100%;
  7315. }
  7316. #u51105_div.disabled {
  7317. border-width:0px;
  7318. position:absolute;
  7319. left:0px;
  7320. top:0px;
  7321. width:120px;
  7322. height:23px;
  7323. background:inherit;
  7324. background-color:rgba(240, 240, 240, 1);
  7325. border:none;
  7326. border-radius:0px;
  7327. -moz-box-shadow:none;
  7328. -webkit-box-shadow:none;
  7329. box-shadow:none;
  7330. font-size:11px;
  7331. color:#AAAAAA;
  7332. }
  7333. #u51105.disabled {
  7334. }
  7335. .u51105_input_option {
  7336. font-size:11px;
  7337. }
  7338. #u51106 {
  7339. border-width:0px;
  7340. position:absolute;
  7341. left:0px;
  7342. top:0px;
  7343. width:0px;
  7344. height:0px;
  7345. }
  7346. #u51107_div {
  7347. border-width:0px;
  7348. position:absolute;
  7349. left:0px;
  7350. top:0px;
  7351. width:140px;
  7352. height:30px;
  7353. background:inherit;
  7354. background-color:rgba(255, 255, 255, 1);
  7355. box-sizing:border-box;
  7356. border-width:1px;
  7357. border-style:solid;
  7358. border-color:rgba(215, 215, 215, 1);
  7359. border-radius:4px;
  7360. -moz-box-shadow:none;
  7361. -webkit-box-shadow:none;
  7362. box-shadow:none;
  7363. font-size:14px;
  7364. }
  7365. #u51107 {
  7366. border-width:0px;
  7367. position:absolute;
  7368. left:350px;
  7369. top:105px;
  7370. width:140px;
  7371. height:30px;
  7372. display:flex;
  7373. font-size:14px;
  7374. }
  7375. #u51107 .text {
  7376. position:absolute;
  7377. align-self:center;
  7378. padding:2px 2px 2px 2px;
  7379. box-sizing:border-box;
  7380. width:100%;
  7381. }
  7382. #u51107_text {
  7383. border-width:0px;
  7384. word-wrap:break-word;
  7385. text-transform:none;
  7386. visibility:hidden;
  7387. }
  7388. #u51108_input {
  7389. position:absolute;
  7390. left:0px;
  7391. top:0px;
  7392. width:134px;
  7393. height:23px;
  7394. padding:2px 2px 2px 2px;
  7395. font-family:'ArialMT', 'Arial', sans-serif;
  7396. font-weight:400;
  7397. font-style:normal;
  7398. font-size:14px;
  7399. letter-spacing:normal;
  7400. color:#AAAAAA;
  7401. vertical-align:none;
  7402. text-align:left;
  7403. text-transform:none;
  7404. background-color:transparent;
  7405. border-color:transparent;
  7406. }
  7407. #u51108_input.disabled {
  7408. position:absolute;
  7409. left:0px;
  7410. top:0px;
  7411. width:134px;
  7412. height:23px;
  7413. padding:2px 2px 2px 2px;
  7414. font-family:'ArialMT', 'Arial', sans-serif;
  7415. font-weight:400;
  7416. font-style:normal;
  7417. font-size:14px;
  7418. letter-spacing:normal;
  7419. color:#AAAAAA;
  7420. vertical-align:none;
  7421. text-align:left;
  7422. text-transform:none;
  7423. background-color:transparent;
  7424. border-color:transparent;
  7425. }
  7426. #u51108_div {
  7427. border-width:0px;
  7428. position:absolute;
  7429. left:0px;
  7430. top:0px;
  7431. width:134px;
  7432. height:23px;
  7433. background:inherit;
  7434. background-color:rgba(255, 255, 255, 1);
  7435. border:none;
  7436. border-radius:0px;
  7437. -moz-box-shadow:none;
  7438. -webkit-box-shadow:none;
  7439. box-shadow:none;
  7440. font-size:14px;
  7441. color:#AAAAAA;
  7442. }
  7443. #u51108 {
  7444. border-width:0px;
  7445. position:absolute;
  7446. left:354px;
  7447. top:107px;
  7448. width:134px;
  7449. height:23px;
  7450. display:flex;
  7451. font-size:14px;
  7452. color:#AAAAAA;
  7453. }
  7454. #u51108 .text {
  7455. position:absolute;
  7456. align-self:flex-start;
  7457. padding:2px 2px 2px 2px;
  7458. box-sizing:border-box;
  7459. width:100%;
  7460. }
  7461. #u51108_div.disabled {
  7462. border-width:0px;
  7463. position:absolute;
  7464. left:0px;
  7465. top:0px;
  7466. width:134px;
  7467. height:23px;
  7468. background:inherit;
  7469. background-color:rgba(240, 240, 240, 1);
  7470. border:none;
  7471. border-radius:0px;
  7472. -moz-box-shadow:none;
  7473. -webkit-box-shadow:none;
  7474. box-shadow:none;
  7475. font-size:14px;
  7476. color:#AAAAAA;
  7477. }
  7478. #u51108.disabled {
  7479. }
  7480. .u51108_input_option {
  7481. font-size:14px;
  7482. }
  7483. #u51109_div {
  7484. border-width:0px;
  7485. position:absolute;
  7486. left:0px;
  7487. top:0px;
  7488. width:310px;
  7489. height:34px;
  7490. background:inherit;
  7491. background-color:rgba(255, 255, 255, 0);
  7492. border:none;
  7493. border-radius:0px;
  7494. -moz-box-shadow:none;
  7495. -webkit-box-shadow:none;
  7496. box-shadow:none;
  7497. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7498. font-weight:400;
  7499. font-style:normal;
  7500. font-size:12px;
  7501. color:#D9001B;
  7502. }
  7503. #u51109 {
  7504. border-width:0px;
  7505. position:absolute;
  7506. left:1134px;
  7507. top:158px;
  7508. width:310px;
  7509. height:34px;
  7510. display:flex;
  7511. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7512. font-weight:400;
  7513. font-style:normal;
  7514. font-size:12px;
  7515. color:#D9001B;
  7516. }
  7517. #u51109 .text {
  7518. position:absolute;
  7519. align-self:flex-start;
  7520. padding:0px 0px 0px 0px;
  7521. box-sizing:border-box;
  7522. width:100%;
  7523. }
  7524. #u51109_text {
  7525. border-width:0px;
  7526. word-wrap:break-word;
  7527. text-transform:none;
  7528. }
  7529. #u51110_div {
  7530. border-width:0px;
  7531. position:absolute;
  7532. left:0px;
  7533. top:0px;
  7534. width:79px;
  7535. height:30px;
  7536. background:inherit;
  7537. background-color:rgba(255, 255, 255, 1);
  7538. box-sizing:border-box;
  7539. border-width:1px;
  7540. border-style:solid;
  7541. border-color:rgba(170, 170, 170, 1);
  7542. border-radius:4px;
  7543. -moz-box-shadow:none;
  7544. -webkit-box-shadow:none;
  7545. box-shadow:none;
  7546. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7547. font-weight:400;
  7548. font-style:normal;
  7549. font-size:12px;
  7550. color:#555555;
  7551. }
  7552. #u51110 {
  7553. border-width:0px;
  7554. position:absolute;
  7555. left:1495px;
  7556. top:60px;
  7557. width:79px;
  7558. height:30px;
  7559. display:flex;
  7560. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7561. font-weight:400;
  7562. font-style:normal;
  7563. font-size:12px;
  7564. color:#555555;
  7565. }
  7566. #u51110 .text {
  7567. position:absolute;
  7568. align-self:center;
  7569. padding:5px 15px 5px 15px;
  7570. box-sizing:border-box;
  7571. width:100%;
  7572. }
  7573. #u51110_text {
  7574. border-width:0px;
  7575. white-space:nowrap;
  7576. text-transform:none;
  7577. }
  7578. #u51111 {
  7579. border-width:0px;
  7580. position:absolute;
  7581. left:0px;
  7582. top:0px;
  7583. width:0px;
  7584. height:0px;
  7585. }
  7586. #u51112_div {
  7587. border-width:0px;
  7588. position:absolute;
  7589. left:0px;
  7590. top:0px;
  7591. width:100px;
  7592. height:100px;
  7593. background:inherit;
  7594. background-color:rgba(255, 255, 255, 1);
  7595. box-sizing:border-box;
  7596. border-width:1px;
  7597. border-style:solid;
  7598. border-color:rgba(242, 242, 242, 1);
  7599. border-radius:4px;
  7600. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  7601. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  7602. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  7603. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7604. font-weight:400;
  7605. font-style:normal;
  7606. font-size:14px;
  7607. text-align:left;
  7608. }
  7609. #u51112 {
  7610. border-width:0px;
  7611. position:absolute;
  7612. left:1461px;
  7613. top:83px;
  7614. width:100px;
  7615. height:100px;
  7616. display:flex;
  7617. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7618. font-weight:400;
  7619. font-style:normal;
  7620. font-size:14px;
  7621. text-align:left;
  7622. }
  7623. #u51112 .text {
  7624. position:absolute;
  7625. align-self:center;
  7626. padding:2px 2px 2px 2px;
  7627. box-sizing:border-box;
  7628. width:100%;
  7629. }
  7630. #u51112_text {
  7631. border-width:0px;
  7632. word-wrap:break-word;
  7633. text-transform:none;
  7634. visibility:hidden;
  7635. }
  7636. #u51113_div {
  7637. border-width:0px;
  7638. position:absolute;
  7639. left:0px;
  7640. top:0px;
  7641. width:83px;
  7642. height:40px;
  7643. background:inherit;
  7644. background-color:rgba(255, 255, 255, 1);
  7645. box-sizing:border-box;
  7646. border-width:1px;
  7647. border-style:solid;
  7648. border-color:rgba(215, 215, 215, 1);
  7649. border-left:0px;
  7650. border-top:0px;
  7651. border-right:0px;
  7652. border-radius:0px;
  7653. border-bottom-right-radius:0px;
  7654. border-bottom-left-radius:0px;
  7655. -moz-box-shadow:none;
  7656. -webkit-box-shadow:none;
  7657. box-shadow:none;
  7658. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7659. font-weight:400;
  7660. font-style:normal;
  7661. font-size:14px;
  7662. }
  7663. #u51113 {
  7664. border-width:0px;
  7665. position:absolute;
  7666. left:1469px;
  7667. top:93px;
  7668. width:83px;
  7669. height:40px;
  7670. display:flex;
  7671. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7672. font-weight:400;
  7673. font-style:normal;
  7674. font-size:14px;
  7675. }
  7676. #u51113 .text {
  7677. position:absolute;
  7678. align-self:center;
  7679. padding:2px 2px 2px 2px;
  7680. box-sizing:border-box;
  7681. width:100%;
  7682. }
  7683. #u51113_text {
  7684. border-width:0px;
  7685. word-wrap:break-word;
  7686. text-transform:none;
  7687. }
  7688. #u51114_div {
  7689. border-width:0px;
  7690. position:absolute;
  7691. left:0px;
  7692. top:0px;
  7693. width:83px;
  7694. height:40px;
  7695. background:inherit;
  7696. background-color:rgba(255, 255, 255, 1);
  7697. border:none;
  7698. border-left:0px;
  7699. border-top:0px;
  7700. border-right:0px;
  7701. border-radius:0px;
  7702. border-bottom-right-radius:0px;
  7703. border-bottom-left-radius:0px;
  7704. -moz-box-shadow:none;
  7705. -webkit-box-shadow:none;
  7706. box-shadow:none;
  7707. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7708. font-weight:400;
  7709. font-style:normal;
  7710. font-size:14px;
  7711. }
  7712. #u51114 {
  7713. border-width:0px;
  7714. position:absolute;
  7715. left:1469px;
  7716. top:133px;
  7717. width:83px;
  7718. height:40px;
  7719. display:flex;
  7720. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7721. font-weight:400;
  7722. font-style:normal;
  7723. font-size:14px;
  7724. }
  7725. #u51114 .text {
  7726. position:absolute;
  7727. align-self:center;
  7728. padding:2px 2px 2px 2px;
  7729. box-sizing:border-box;
  7730. width:100%;
  7731. }
  7732. #u51114_text {
  7733. border-width:0px;
  7734. word-wrap:break-word;
  7735. text-transform:none;
  7736. }
  7737. #u51115 {
  7738. border-width:0px;
  7739. position:absolute;
  7740. left:0px;
  7741. top:0px;
  7742. width:0px;
  7743. height:0px;
  7744. }
  7745. #u51116 {
  7746. border-width:0px;
  7747. position:absolute;
  7748. left:0px;
  7749. top:0px;
  7750. width:0px;
  7751. height:0px;
  7752. }
  7753. #u51117_div {
  7754. border-width:0px;
  7755. position:absolute;
  7756. left:0px;
  7757. top:0px;
  7758. width:380px;
  7759. height:164px;
  7760. background:inherit;
  7761. background-color:rgba(255, 255, 255, 1);
  7762. border:none;
  7763. border-radius:4px;
  7764. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  7765. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  7766. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  7767. font-family:'Microsoft YaHei', sans-serif;
  7768. font-weight:400;
  7769. font-style:normal;
  7770. }
  7771. #u51117 {
  7772. border-width:0px;
  7773. position:absolute;
  7774. left:1655px;
  7775. top:64px;
  7776. width:380px;
  7777. height:164px;
  7778. display:flex;
  7779. font-family:'Microsoft YaHei', sans-serif;
  7780. font-weight:400;
  7781. font-style:normal;
  7782. }
  7783. #u51117 .text {
  7784. position:absolute;
  7785. align-self:center;
  7786. padding:2px 2px 2px 2px;
  7787. box-sizing:border-box;
  7788. width:100%;
  7789. }
  7790. #u51117_text {
  7791. border-width:0px;
  7792. word-wrap:break-word;
  7793. text-transform:none;
  7794. visibility:hidden;
  7795. }
  7796. #u51118_div {
  7797. border-width:0px;
  7798. position:absolute;
  7799. left:0px;
  7800. top:0px;
  7801. width:299px;
  7802. height:44px;
  7803. background:inherit;
  7804. background-color:rgba(255, 255, 255, 0);
  7805. border:none;
  7806. border-radius:0px;
  7807. -moz-box-shadow:none;
  7808. -webkit-box-shadow:none;
  7809. box-shadow:none;
  7810. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7811. font-weight:400;
  7812. font-style:normal;
  7813. font-size:14px;
  7814. color:#666666;
  7815. line-height:22px;
  7816. }
  7817. #u51118 {
  7818. border-width:0px;
  7819. position:absolute;
  7820. left:1715px;
  7821. top:119px;
  7822. width:299px;
  7823. height:44px;
  7824. display:flex;
  7825. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7826. font-weight:400;
  7827. font-style:normal;
  7828. font-size:14px;
  7829. color:#666666;
  7830. line-height:22px;
  7831. }
  7832. #u51118 .text {
  7833. position:absolute;
  7834. align-self:flex-start;
  7835. padding:0px 0px 0px 0px;
  7836. box-sizing:border-box;
  7837. width:100%;
  7838. }
  7839. #u51118_text {
  7840. border-width:0px;
  7841. word-wrap:break-word;
  7842. text-transform:none;
  7843. }
  7844. #u51119_div {
  7845. border-width:0px;
  7846. position:absolute;
  7847. left:0px;
  7848. top:0px;
  7849. width:199px;
  7850. height:21px;
  7851. background:inherit;
  7852. background-color:rgba(255, 255, 255, 0);
  7853. border:none;
  7854. border-radius:0px;
  7855. -moz-box-shadow:none;
  7856. -webkit-box-shadow:none;
  7857. box-shadow:none;
  7858. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  7859. font-weight:650;
  7860. font-style:normal;
  7861. font-size:18px;
  7862. color:#000000;
  7863. line-height:22px;
  7864. }
  7865. #u51119 {
  7866. border-width:0px;
  7867. position:absolute;
  7868. left:1715px;
  7869. top:89px;
  7870. width:199px;
  7871. height:21px;
  7872. display:flex;
  7873. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  7874. font-weight:650;
  7875. font-style:normal;
  7876. font-size:18px;
  7877. color:#000000;
  7878. line-height:22px;
  7879. }
  7880. #u51119 .text {
  7881. position:absolute;
  7882. align-self:flex-start;
  7883. padding:0px 0px 0px 0px;
  7884. box-sizing:border-box;
  7885. width:100%;
  7886. }
  7887. #u51119_text {
  7888. border-width:0px;
  7889. white-space:nowrap;
  7890. text-transform:none;
  7891. }
  7892. #u51120_div {
  7893. border-width:0px;
  7894. position:absolute;
  7895. left:0px;
  7896. top:0px;
  7897. width:61px;
  7898. height:32px;
  7899. background:inherit;
  7900. background-color:rgba(24, 144, 255, 1);
  7901. border:none;
  7902. border-radius:4px;
  7903. -moz-box-shadow:none;
  7904. -webkit-box-shadow:none;
  7905. box-shadow:none;
  7906. font-family:'Microsoft YaHei', sans-serif;
  7907. font-weight:400;
  7908. font-style:normal;
  7909. font-size:14px;
  7910. color:#FFFFFF;
  7911. }
  7912. #u51120 {
  7913. border-width:0px;
  7914. position:absolute;
  7915. left:1957px;
  7916. top:179px;
  7917. width:61px;
  7918. height:32px;
  7919. display:flex;
  7920. font-family:'Microsoft YaHei', sans-serif;
  7921. font-weight:400;
  7922. font-style:normal;
  7923. font-size:14px;
  7924. color:#FFFFFF;
  7925. }
  7926. #u51120 .text {
  7927. position:absolute;
  7928. align-self:center;
  7929. padding:2px 16px 2px 16px;
  7930. box-sizing:border-box;
  7931. width:100%;
  7932. }
  7933. #u51120_text {
  7934. border-width:0px;
  7935. white-space:nowrap;
  7936. text-transform:none;
  7937. }
  7938. #u51121_div {
  7939. border-width:0px;
  7940. position:absolute;
  7941. left:0px;
  7942. top:0px;
  7943. width:66px;
  7944. height:32px;
  7945. background:inherit;
  7946. background-color:rgba(255, 255, 255, 1);
  7947. box-sizing:border-box;
  7948. border-width:1px;
  7949. border-style:solid;
  7950. border-color:rgba(217, 217, 217, 1);
  7951. border-radius:4px;
  7952. -moz-box-shadow:none;
  7953. -webkit-box-shadow:none;
  7954. box-shadow:none;
  7955. font-family:'Microsoft YaHei', sans-serif;
  7956. font-weight:400;
  7957. font-style:normal;
  7958. font-size:14px;
  7959. color:rgba(0, 0, 0, 0.647058823529412);
  7960. line-height:21px;
  7961. }
  7962. #u51121 {
  7963. border-width:0px;
  7964. position:absolute;
  7965. left:1875px;
  7966. top:179px;
  7967. width:66px;
  7968. height:32px;
  7969. display:flex;
  7970. font-family:'Microsoft YaHei', sans-serif;
  7971. font-weight:400;
  7972. font-style:normal;
  7973. font-size:14px;
  7974. color:rgba(0, 0, 0, 0.647058823529412);
  7975. line-height:21px;
  7976. }
  7977. #u51121 .text {
  7978. position:absolute;
  7979. align-self:center;
  7980. padding:2px 16px 2px 16px;
  7981. box-sizing:border-box;
  7982. width:100%;
  7983. }
  7984. #u51121_text {
  7985. border-width:0px;
  7986. white-space:nowrap;
  7987. text-transform:none;
  7988. }
  7989. #u51122_img {
  7990. border-width:0px;
  7991. position:absolute;
  7992. left:0px;
  7993. top:0px;
  7994. width:20px;
  7995. height:20px;
  7996. }
  7997. #u51122 {
  7998. border-width:0px;
  7999. position:absolute;
  8000. left:1684px;
  8001. top:93px;
  8002. width:20px;
  8003. height:20px;
  8004. display:flex;
  8005. }
  8006. #u51122 .text {
  8007. position:absolute;
  8008. align-self:center;
  8009. padding:2px 2px 2px 2px;
  8010. box-sizing:border-box;
  8011. width:100%;
  8012. }
  8013. #u51122_text {
  8014. border-width:0px;
  8015. word-wrap:break-word;
  8016. text-transform:none;
  8017. visibility:hidden;
  8018. }
  8019. #u51123 {
  8020. border-width:0px;
  8021. position:absolute;
  8022. left:0px;
  8023. top:0px;
  8024. width:0px;
  8025. height:0px;
  8026. }
  8027. #u51124 {
  8028. border-width:0px;
  8029. position:absolute;
  8030. left:0px;
  8031. top:0px;
  8032. width:0px;
  8033. height:0px;
  8034. }
  8035. #u51125_div {
  8036. border-width:0px;
  8037. position:absolute;
  8038. left:0px;
  8039. top:0px;
  8040. width:380px;
  8041. height:164px;
  8042. background:inherit;
  8043. background-color:rgba(255, 255, 255, 1);
  8044. border:none;
  8045. border-radius:4px;
  8046. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  8047. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  8048. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  8049. font-family:'Microsoft YaHei', sans-serif;
  8050. font-weight:400;
  8051. font-style:normal;
  8052. }
  8053. #u51125 {
  8054. border-width:0px;
  8055. position:absolute;
  8056. left:1655px;
  8057. top:254px;
  8058. width:380px;
  8059. height:164px;
  8060. display:flex;
  8061. font-family:'Microsoft YaHei', sans-serif;
  8062. font-weight:400;
  8063. font-style:normal;
  8064. }
  8065. #u51125 .text {
  8066. position:absolute;
  8067. align-self:center;
  8068. padding:2px 2px 2px 2px;
  8069. box-sizing:border-box;
  8070. width:100%;
  8071. }
  8072. #u51125_text {
  8073. border-width:0px;
  8074. word-wrap:break-word;
  8075. text-transform:none;
  8076. visibility:hidden;
  8077. }
  8078. #u51126_div {
  8079. border-width:0px;
  8080. position:absolute;
  8081. left:0px;
  8082. top:0px;
  8083. width:299px;
  8084. height:44px;
  8085. background:inherit;
  8086. background-color:rgba(255, 255, 255, 0);
  8087. border:none;
  8088. border-radius:0px;
  8089. -moz-box-shadow:none;
  8090. -webkit-box-shadow:none;
  8091. box-shadow:none;
  8092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8093. font-weight:400;
  8094. font-style:normal;
  8095. font-size:14px;
  8096. color:#666666;
  8097. line-height:22px;
  8098. }
  8099. #u51126 {
  8100. border-width:0px;
  8101. position:absolute;
  8102. left:1715px;
  8103. top:309px;
  8104. width:299px;
  8105. height:44px;
  8106. display:flex;
  8107. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8108. font-weight:400;
  8109. font-style:normal;
  8110. font-size:14px;
  8111. color:#666666;
  8112. line-height:22px;
  8113. }
  8114. #u51126 .text {
  8115. position:absolute;
  8116. align-self:flex-start;
  8117. padding:0px 0px 0px 0px;
  8118. box-sizing:border-box;
  8119. width:100%;
  8120. }
  8121. #u51126_text {
  8122. border-width:0px;
  8123. word-wrap:break-word;
  8124. text-transform:none;
  8125. }
  8126. #u51127_div {
  8127. border-width:0px;
  8128. position:absolute;
  8129. left:0px;
  8130. top:0px;
  8131. width:199px;
  8132. height:21px;
  8133. background:inherit;
  8134. background-color:rgba(255, 255, 255, 0);
  8135. border:none;
  8136. border-radius:0px;
  8137. -moz-box-shadow:none;
  8138. -webkit-box-shadow:none;
  8139. box-shadow:none;
  8140. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  8141. font-weight:650;
  8142. font-style:normal;
  8143. font-size:18px;
  8144. color:#000000;
  8145. line-height:22px;
  8146. }
  8147. #u51127 {
  8148. border-width:0px;
  8149. position:absolute;
  8150. left:1715px;
  8151. top:279px;
  8152. width:199px;
  8153. height:21px;
  8154. display:flex;
  8155. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  8156. font-weight:650;
  8157. font-style:normal;
  8158. font-size:18px;
  8159. color:#000000;
  8160. line-height:22px;
  8161. }
  8162. #u51127 .text {
  8163. position:absolute;
  8164. align-self:flex-start;
  8165. padding:0px 0px 0px 0px;
  8166. box-sizing:border-box;
  8167. width:100%;
  8168. }
  8169. #u51127_text {
  8170. border-width:0px;
  8171. white-space:nowrap;
  8172. text-transform:none;
  8173. }
  8174. #u51128_div {
  8175. border-width:0px;
  8176. position:absolute;
  8177. left:0px;
  8178. top:0px;
  8179. width:61px;
  8180. height:32px;
  8181. background:inherit;
  8182. background-color:rgba(24, 144, 255, 1);
  8183. border:none;
  8184. border-radius:4px;
  8185. -moz-box-shadow:none;
  8186. -webkit-box-shadow:none;
  8187. box-shadow:none;
  8188. font-family:'Microsoft YaHei', sans-serif;
  8189. font-weight:400;
  8190. font-style:normal;
  8191. font-size:14px;
  8192. color:#FFFFFF;
  8193. }
  8194. #u51128 {
  8195. border-width:0px;
  8196. position:absolute;
  8197. left:1957px;
  8198. top:369px;
  8199. width:61px;
  8200. height:32px;
  8201. display:flex;
  8202. font-family:'Microsoft YaHei', sans-serif;
  8203. font-weight:400;
  8204. font-style:normal;
  8205. font-size:14px;
  8206. color:#FFFFFF;
  8207. }
  8208. #u51128 .text {
  8209. position:absolute;
  8210. align-self:center;
  8211. padding:2px 16px 2px 16px;
  8212. box-sizing:border-box;
  8213. width:100%;
  8214. }
  8215. #u51128_text {
  8216. border-width:0px;
  8217. white-space:nowrap;
  8218. text-transform:none;
  8219. }
  8220. #u51129_div {
  8221. border-width:0px;
  8222. position:absolute;
  8223. left:0px;
  8224. top:0px;
  8225. width:66px;
  8226. height:32px;
  8227. background:inherit;
  8228. background-color:rgba(255, 255, 255, 1);
  8229. box-sizing:border-box;
  8230. border-width:1px;
  8231. border-style:solid;
  8232. border-color:rgba(217, 217, 217, 1);
  8233. border-radius:4px;
  8234. -moz-box-shadow:none;
  8235. -webkit-box-shadow:none;
  8236. box-shadow:none;
  8237. font-family:'Microsoft YaHei', sans-serif;
  8238. font-weight:400;
  8239. font-style:normal;
  8240. font-size:14px;
  8241. color:rgba(0, 0, 0, 0.647058823529412);
  8242. line-height:21px;
  8243. }
  8244. #u51129 {
  8245. border-width:0px;
  8246. position:absolute;
  8247. left:1875px;
  8248. top:369px;
  8249. width:66px;
  8250. height:32px;
  8251. display:flex;
  8252. font-family:'Microsoft YaHei', sans-serif;
  8253. font-weight:400;
  8254. font-style:normal;
  8255. font-size:14px;
  8256. color:rgba(0, 0, 0, 0.647058823529412);
  8257. line-height:21px;
  8258. }
  8259. #u51129 .text {
  8260. position:absolute;
  8261. align-self:center;
  8262. padding:2px 16px 2px 16px;
  8263. box-sizing:border-box;
  8264. width:100%;
  8265. }
  8266. #u51129_text {
  8267. border-width:0px;
  8268. white-space:nowrap;
  8269. text-transform:none;
  8270. }
  8271. #u51130_img {
  8272. border-width:0px;
  8273. position:absolute;
  8274. left:0px;
  8275. top:0px;
  8276. width:20px;
  8277. height:20px;
  8278. }
  8279. #u51130 {
  8280. border-width:0px;
  8281. position:absolute;
  8282. left:1684px;
  8283. top:283px;
  8284. width:20px;
  8285. height:20px;
  8286. display:flex;
  8287. }
  8288. #u51130 .text {
  8289. position:absolute;
  8290. align-self:center;
  8291. padding:2px 2px 2px 2px;
  8292. box-sizing:border-box;
  8293. width:100%;
  8294. }
  8295. #u51130_text {
  8296. border-width:0px;
  8297. word-wrap:break-word;
  8298. text-transform:none;
  8299. visibility:hidden;
  8300. }
  8301. #u51131 {
  8302. border-width:0px;
  8303. position:absolute;
  8304. left:0px;
  8305. top:0px;
  8306. width:0px;
  8307. height:0px;
  8308. }
  8309. #u51132_div {
  8310. border-width:0px;
  8311. position:absolute;
  8312. left:0px;
  8313. top:0px;
  8314. width:140px;
  8315. height:30px;
  8316. background:inherit;
  8317. background-color:rgba(255, 255, 255, 1);
  8318. box-sizing:border-box;
  8319. border-width:1px;
  8320. border-style:solid;
  8321. border-color:rgba(215, 215, 215, 1);
  8322. border-radius:4px;
  8323. -moz-box-shadow:none;
  8324. -webkit-box-shadow:none;
  8325. box-shadow:none;
  8326. font-size:11px;
  8327. }
  8328. #u51132 {
  8329. border-width:0px;
  8330. position:absolute;
  8331. left:1100px;
  8332. top:105px;
  8333. width:140px;
  8334. height:30px;
  8335. display:flex;
  8336. font-size:11px;
  8337. }
  8338. #u51132 .text {
  8339. position:absolute;
  8340. align-self:center;
  8341. padding:2px 2px 2px 2px;
  8342. box-sizing:border-box;
  8343. width:100%;
  8344. }
  8345. #u51132_text {
  8346. border-width:0px;
  8347. word-wrap:break-word;
  8348. text-transform:none;
  8349. visibility:hidden;
  8350. }
  8351. #u51133_input {
  8352. position:absolute;
  8353. left:0px;
  8354. top:0px;
  8355. width:120px;
  8356. height:23px;
  8357. padding:2px 2px 2px 2px;
  8358. font-family:'ArialMT', 'Arial', sans-serif;
  8359. font-weight:400;
  8360. font-style:normal;
  8361. font-size:11px;
  8362. letter-spacing:normal;
  8363. color:#AAAAAA;
  8364. vertical-align:none;
  8365. text-align:left;
  8366. text-transform:none;
  8367. background-color:transparent;
  8368. border-color:transparent;
  8369. }
  8370. #u51133_input.disabled {
  8371. position:absolute;
  8372. left:0px;
  8373. top:0px;
  8374. width:120px;
  8375. height:23px;
  8376. padding:2px 2px 2px 2px;
  8377. font-family:'ArialMT', 'Arial', sans-serif;
  8378. font-weight:400;
  8379. font-style:normal;
  8380. font-size:11px;
  8381. letter-spacing:normal;
  8382. color:#AAAAAA;
  8383. vertical-align:none;
  8384. text-align:left;
  8385. text-transform:none;
  8386. background-color:transparent;
  8387. border-color:transparent;
  8388. }
  8389. #u51133_div {
  8390. border-width:0px;
  8391. position:absolute;
  8392. left:0px;
  8393. top:0px;
  8394. width:120px;
  8395. height:23px;
  8396. background:inherit;
  8397. background-color:rgba(255, 255, 255, 1);
  8398. border:none;
  8399. border-radius:0px;
  8400. -moz-box-shadow:none;
  8401. -webkit-box-shadow:none;
  8402. box-shadow:none;
  8403. font-size:11px;
  8404. color:#AAAAAA;
  8405. }
  8406. #u51133 {
  8407. border-width:0px;
  8408. position:absolute;
  8409. left:1107px;
  8410. top:107px;
  8411. width:120px;
  8412. height:23px;
  8413. display:flex;
  8414. font-size:11px;
  8415. color:#AAAAAA;
  8416. }
  8417. #u51133 .text {
  8418. position:absolute;
  8419. align-self:flex-start;
  8420. padding:2px 2px 2px 2px;
  8421. box-sizing:border-box;
  8422. width:100%;
  8423. }
  8424. #u51133_div.disabled {
  8425. border-width:0px;
  8426. position:absolute;
  8427. left:0px;
  8428. top:0px;
  8429. width:120px;
  8430. height:23px;
  8431. background:inherit;
  8432. background-color:rgba(240, 240, 240, 1);
  8433. border:none;
  8434. border-radius:0px;
  8435. -moz-box-shadow:none;
  8436. -webkit-box-shadow:none;
  8437. box-shadow:none;
  8438. font-size:11px;
  8439. color:#AAAAAA;
  8440. }
  8441. #u51133.disabled {
  8442. }
  8443. .u51133_input_option {
  8444. font-size:11px;
  8445. }
  8446. #u51134_div {
  8447. border-width:0px;
  8448. position:absolute;
  8449. left:0px;
  8450. top:0px;
  8451. width:87px;
  8452. height:30px;
  8453. background:inherit;
  8454. background-color:rgba(24, 144, 255, 1);
  8455. border:none;
  8456. border-radius:4px;
  8457. -moz-box-shadow:none;
  8458. -webkit-box-shadow:none;
  8459. box-shadow:none;
  8460. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8461. font-weight:400;
  8462. font-style:normal;
  8463. font-size:14px;
  8464. color:#FFFFFF;
  8465. }
  8466. #u51134 {
  8467. border-width:0px;
  8468. position:absolute;
  8469. left:427px;
  8470. top:154px;
  8471. width:87px;
  8472. height:30px;
  8473. display:flex;
  8474. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8475. font-weight:400;
  8476. font-style:normal;
  8477. font-size:14px;
  8478. color:#FFFFFF;
  8479. }
  8480. #u51134 .text {
  8481. position:absolute;
  8482. align-self:center;
  8483. padding:5px 15px 5px 15px;
  8484. box-sizing:border-box;
  8485. width:100%;
  8486. }
  8487. #u51134_text {
  8488. border-width:0px;
  8489. white-space:nowrap;
  8490. text-transform:none;
  8491. }
  8492. #u51135 {
  8493. border-width:0px;
  8494. position:absolute;
  8495. left:0px;
  8496. top:0px;
  8497. width:0px;
  8498. height:0px;
  8499. }
  8500. #u51136_div {
  8501. border-width:0px;
  8502. position:absolute;
  8503. left:0px;
  8504. top:0px;
  8505. width:100px;
  8506. height:100px;
  8507. background:inherit;
  8508. background-color:rgba(255, 255, 255, 1);
  8509. box-sizing:border-box;
  8510. border-width:1px;
  8511. border-style:solid;
  8512. border-color:rgba(242, 242, 242, 1);
  8513. border-radius:4px;
  8514. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  8515. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  8516. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  8517. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8518. font-weight:400;
  8519. font-style:normal;
  8520. font-size:14px;
  8521. text-align:left;
  8522. }
  8523. #u51136 {
  8524. border-width:0px;
  8525. position:absolute;
  8526. left:1427px;
  8527. top:350px;
  8528. width:100px;
  8529. height:100px;
  8530. display:flex;
  8531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8532. font-weight:400;
  8533. font-style:normal;
  8534. font-size:14px;
  8535. text-align:left;
  8536. }
  8537. #u51136 .text {
  8538. position:absolute;
  8539. align-self:center;
  8540. padding:2px 2px 2px 2px;
  8541. box-sizing:border-box;
  8542. width:100%;
  8543. }
  8544. #u51136_text {
  8545. border-width:0px;
  8546. word-wrap:break-word;
  8547. text-transform:none;
  8548. visibility:hidden;
  8549. }
  8550. #u51137_div {
  8551. border-width:0px;
  8552. position:absolute;
  8553. left:0px;
  8554. top:0px;
  8555. width:83px;
  8556. height:40px;
  8557. background:inherit;
  8558. background-color:rgba(255, 255, 255, 1);
  8559. box-sizing:border-box;
  8560. border-width:1px;
  8561. border-style:solid;
  8562. border-color:rgba(215, 215, 215, 1);
  8563. border-left:0px;
  8564. border-top:0px;
  8565. border-right:0px;
  8566. border-radius:0px;
  8567. border-bottom-right-radius:0px;
  8568. border-bottom-left-radius:0px;
  8569. -moz-box-shadow:none;
  8570. -webkit-box-shadow:none;
  8571. box-shadow:none;
  8572. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8573. font-weight:400;
  8574. font-style:normal;
  8575. font-size:14px;
  8576. }
  8577. #u51137 {
  8578. border-width:0px;
  8579. position:absolute;
  8580. left:1435px;
  8581. top:360px;
  8582. width:83px;
  8583. height:40px;
  8584. display:flex;
  8585. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8586. font-weight:400;
  8587. font-style:normal;
  8588. font-size:14px;
  8589. }
  8590. #u51137 .text {
  8591. position:absolute;
  8592. align-self:center;
  8593. padding:2px 2px 2px 2px;
  8594. box-sizing:border-box;
  8595. width:100%;
  8596. }
  8597. #u51137_text {
  8598. border-width:0px;
  8599. word-wrap:break-word;
  8600. text-transform:none;
  8601. }
  8602. #u51138_div {
  8603. border-width:0px;
  8604. position:absolute;
  8605. left:0px;
  8606. top:0px;
  8607. width:83px;
  8608. height:40px;
  8609. background:inherit;
  8610. background-color:rgba(255, 255, 255, 1);
  8611. border:none;
  8612. border-left:0px;
  8613. border-top:0px;
  8614. border-right:0px;
  8615. border-radius:0px;
  8616. border-bottom-right-radius:0px;
  8617. border-bottom-left-radius:0px;
  8618. -moz-box-shadow:none;
  8619. -webkit-box-shadow:none;
  8620. box-shadow:none;
  8621. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8622. font-weight:400;
  8623. font-style:normal;
  8624. font-size:14px;
  8625. }
  8626. #u51138 {
  8627. border-width:0px;
  8628. position:absolute;
  8629. left:1435px;
  8630. top:400px;
  8631. width:83px;
  8632. height:40px;
  8633. display:flex;
  8634. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8635. font-weight:400;
  8636. font-style:normal;
  8637. font-size:14px;
  8638. }
  8639. #u51138 .text {
  8640. position:absolute;
  8641. align-self:center;
  8642. padding:2px 2px 2px 2px;
  8643. box-sizing:border-box;
  8644. width:100%;
  8645. }
  8646. #u51138_text {
  8647. border-width:0px;
  8648. word-wrap:break-word;
  8649. text-transform:none;
  8650. }
  8651. #u51139 {
  8652. border-width:0px;
  8653. position:absolute;
  8654. left:0px;
  8655. top:0px;
  8656. width:0px;
  8657. height:0px;
  8658. }
  8659. #u51140_div {
  8660. border-width:0px;
  8661. position:absolute;
  8662. left:0px;
  8663. top:0px;
  8664. width:200px;
  8665. height:1193px;
  8666. background:inherit;
  8667. background-color:rgba(255, 255, 255, 1);
  8668. border:none;
  8669. border-radius:0px;
  8670. -moz-box-shadow:none;
  8671. -webkit-box-shadow:none;
  8672. box-shadow:none;
  8673. }
  8674. #u51140 {
  8675. border-width:0px;
  8676. position:absolute;
  8677. left:120px;
  8678. top:50px;
  8679. width:200px;
  8680. height:1193px;
  8681. display:flex;
  8682. }
  8683. #u51140 .text {
  8684. position:absolute;
  8685. align-self:center;
  8686. padding:2px 2px 2px 2px;
  8687. box-sizing:border-box;
  8688. width:100%;
  8689. }
  8690. #u51140_text {
  8691. border-width:0px;
  8692. word-wrap:break-word;
  8693. text-transform:none;
  8694. visibility:hidden;
  8695. }
  8696. #u51141_div {
  8697. border-width:0px;
  8698. position:absolute;
  8699. left:0px;
  8700. top:0px;
  8701. width:200px;
  8702. height:60px;
  8703. background:inherit;
  8704. background-color:rgba(224, 231, 247, 1);
  8705. border:none;
  8706. border-radius:0px;
  8707. -moz-box-shadow:none;
  8708. -webkit-box-shadow:none;
  8709. box-shadow:none;
  8710. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8711. font-weight:500;
  8712. font-style:normal;
  8713. font-size:18px;
  8714. }
  8715. #u51141 {
  8716. border-width:0px;
  8717. position:absolute;
  8718. left:120px;
  8719. top:50px;
  8720. width:200px;
  8721. height:60px;
  8722. display:flex;
  8723. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8724. font-weight:500;
  8725. font-style:normal;
  8726. font-size:18px;
  8727. }
  8728. #u51141 .text {
  8729. position:absolute;
  8730. align-self:center;
  8731. padding:0px 0px 0px 20px;
  8732. box-sizing:border-box;
  8733. width:100%;
  8734. }
  8735. #u51141_text {
  8736. border-width:0px;
  8737. word-wrap:break-word;
  8738. text-transform:none;
  8739. }
  8740. #u51142_div {
  8741. border-width:0px;
  8742. position:absolute;
  8743. left:0px;
  8744. top:0px;
  8745. width:97px;
  8746. height:22px;
  8747. background:inherit;
  8748. background-color:rgba(255, 255, 255, 0);
  8749. border:none;
  8750. border-radius:0px;
  8751. -moz-box-shadow:none;
  8752. -webkit-box-shadow:none;
  8753. box-shadow:none;
  8754. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8755. font-weight:400;
  8756. font-style:normal;
  8757. font-size:16px;
  8758. }
  8759. #u51142 {
  8760. border-width:0px;
  8761. position:absolute;
  8762. left:147px;
  8763. top:387px;
  8764. width:97px;
  8765. height:22px;
  8766. display:flex;
  8767. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8768. font-weight:400;
  8769. font-style:normal;
  8770. font-size:16px;
  8771. }
  8772. #u51142 .text {
  8773. position:absolute;
  8774. align-self:flex-start;
  8775. padding:0px 0px 0px 0px;
  8776. box-sizing:border-box;
  8777. width:100%;
  8778. }
  8779. #u51142_text {
  8780. border-width:0px;
  8781. word-wrap:break-word;
  8782. text-transform:none;
  8783. }
  8784. #u51143_div {
  8785. border-width:0px;
  8786. position:absolute;
  8787. left:0px;
  8788. top:0px;
  8789. width:97px;
  8790. height:22px;
  8791. background:inherit;
  8792. background-color:rgba(255, 255, 255, 0);
  8793. border:none;
  8794. border-radius:0px;
  8795. -moz-box-shadow:none;
  8796. -webkit-box-shadow:none;
  8797. box-shadow:none;
  8798. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8799. font-weight:400;
  8800. font-style:normal;
  8801. font-size:16px;
  8802. }
  8803. #u51143 {
  8804. border-width:0px;
  8805. position:absolute;
  8806. left:147px;
  8807. top:166px;
  8808. width:97px;
  8809. height:22px;
  8810. display:flex;
  8811. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8812. font-weight:400;
  8813. font-style:normal;
  8814. font-size:16px;
  8815. }
  8816. #u51143 .text {
  8817. position:absolute;
  8818. align-self:flex-start;
  8819. padding:0px 0px 0px 0px;
  8820. box-sizing:border-box;
  8821. width:100%;
  8822. }
  8823. #u51143_text {
  8824. border-width:0px;
  8825. word-wrap:break-word;
  8826. text-transform:none;
  8827. }
  8828. #u51144_div {
  8829. border-width:0px;
  8830. position:absolute;
  8831. left:0px;
  8832. top:0px;
  8833. width:49px;
  8834. height:17px;
  8835. background:inherit;
  8836. background-color:rgba(255, 255, 255, 0);
  8837. border:none;
  8838. border-radius:0px;
  8839. -moz-box-shadow:none;
  8840. -webkit-box-shadow:none;
  8841. box-shadow:none;
  8842. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8843. font-weight:400;
  8844. font-style:normal;
  8845. font-size:12px;
  8846. color:#AAAAAA;
  8847. }
  8848. #u51144 {
  8849. border-width:0px;
  8850. position:absolute;
  8851. left:147px;
  8852. top:130px;
  8853. width:49px;
  8854. height:17px;
  8855. display:flex;
  8856. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8857. font-weight:400;
  8858. font-style:normal;
  8859. font-size:12px;
  8860. color:#AAAAAA;
  8861. }
  8862. #u51144 .text {
  8863. position:absolute;
  8864. align-self:flex-start;
  8865. padding:0px 0px 0px 0px;
  8866. box-sizing:border-box;
  8867. width:100%;
  8868. }
  8869. #u51144_text {
  8870. border-width:0px;
  8871. white-space:nowrap;
  8872. text-transform:none;
  8873. }
  8874. #u51145_div {
  8875. border-width:0px;
  8876. position:absolute;
  8877. left:0px;
  8878. top:0px;
  8879. width:97px;
  8880. height:22px;
  8881. background:inherit;
  8882. background-color:rgba(255, 255, 255, 0);
  8883. border:none;
  8884. border-radius:0px;
  8885. -moz-box-shadow:none;
  8886. -webkit-box-shadow:none;
  8887. box-shadow:none;
  8888. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8889. font-weight:400;
  8890. font-style:normal;
  8891. font-size:16px;
  8892. }
  8893. #u51145 {
  8894. border-width:0px;
  8895. position:absolute;
  8896. left:147px;
  8897. top:208px;
  8898. width:97px;
  8899. height:22px;
  8900. display:flex;
  8901. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8902. font-weight:400;
  8903. font-style:normal;
  8904. font-size:16px;
  8905. }
  8906. #u51145 .text {
  8907. position:absolute;
  8908. align-self:flex-start;
  8909. padding:0px 0px 0px 0px;
  8910. box-sizing:border-box;
  8911. width:100%;
  8912. }
  8913. #u51145_text {
  8914. border-width:0px;
  8915. word-wrap:break-word;
  8916. text-transform:none;
  8917. }
  8918. #u51146_img {
  8919. border-width:0px;
  8920. position:absolute;
  8921. left:0px;
  8922. top:0px;
  8923. width:201px;
  8924. height:2px;
  8925. }
  8926. #u51146 {
  8927. border-width:0px;
  8928. position:absolute;
  8929. left:120px;
  8930. top:246px;
  8931. width:200px;
  8932. height:1px;
  8933. display:flex;
  8934. }
  8935. #u51146 .text {
  8936. position:absolute;
  8937. align-self:center;
  8938. padding:2px 2px 2px 2px;
  8939. box-sizing:border-box;
  8940. width:100%;
  8941. }
  8942. #u51146_text {
  8943. border-width:0px;
  8944. word-wrap:break-word;
  8945. text-transform:none;
  8946. visibility:hidden;
  8947. }
  8948. #u51147_div {
  8949. border-width:0px;
  8950. position:absolute;
  8951. left:0px;
  8952. top:0px;
  8953. width:97px;
  8954. height:22px;
  8955. background:inherit;
  8956. background-color:rgba(255, 255, 255, 0);
  8957. border:none;
  8958. border-radius:0px;
  8959. -moz-box-shadow:none;
  8960. -webkit-box-shadow:none;
  8961. box-shadow:none;
  8962. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8963. font-weight:400;
  8964. font-style:normal;
  8965. font-size:16px;
  8966. }
  8967. #u51147 {
  8968. border-width:0px;
  8969. position:absolute;
  8970. left:147px;
  8971. top:569px;
  8972. width:97px;
  8973. height:22px;
  8974. display:flex;
  8975. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8976. font-weight:400;
  8977. font-style:normal;
  8978. font-size:16px;
  8979. }
  8980. #u51147 .text {
  8981. position:absolute;
  8982. align-self:flex-start;
  8983. padding:0px 0px 0px 0px;
  8984. box-sizing:border-box;
  8985. width:100%;
  8986. }
  8987. #u51147_text {
  8988. border-width:0px;
  8989. word-wrap:break-word;
  8990. text-transform:none;
  8991. }
  8992. #u51148_div {
  8993. border-width:0px;
  8994. position:absolute;
  8995. left:0px;
  8996. top:0px;
  8997. width:49px;
  8998. height:17px;
  8999. background:inherit;
  9000. background-color:rgba(255, 255, 255, 0);
  9001. border:none;
  9002. border-radius:0px;
  9003. -moz-box-shadow:none;
  9004. -webkit-box-shadow:none;
  9005. box-shadow:none;
  9006. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9007. font-weight:400;
  9008. font-style:normal;
  9009. font-size:12px;
  9010. color:#AAAAAA;
  9011. }
  9012. #u51148 {
  9013. border-width:0px;
  9014. position:absolute;
  9015. left:147px;
  9016. top:533px;
  9017. width:49px;
  9018. height:17px;
  9019. display:flex;
  9020. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9021. font-weight:400;
  9022. font-style:normal;
  9023. font-size:12px;
  9024. color:#AAAAAA;
  9025. }
  9026. #u51148 .text {
  9027. position:absolute;
  9028. align-self:flex-start;
  9029. padding:0px 0px 0px 0px;
  9030. box-sizing:border-box;
  9031. width:100%;
  9032. }
  9033. #u51148_text {
  9034. border-width:0px;
  9035. white-space:nowrap;
  9036. text-transform:none;
  9037. }
  9038. #u51149_div {
  9039. border-width:0px;
  9040. position:absolute;
  9041. left:0px;
  9042. top:0px;
  9043. width:97px;
  9044. height:22px;
  9045. background:inherit;
  9046. background-color:rgba(255, 255, 255, 0);
  9047. border:none;
  9048. border-radius:0px;
  9049. -moz-box-shadow:none;
  9050. -webkit-box-shadow:none;
  9051. box-shadow:none;
  9052. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9053. font-weight:400;
  9054. font-style:normal;
  9055. font-size:16px;
  9056. }
  9057. #u51149 {
  9058. border-width:0px;
  9059. position:absolute;
  9060. left:147px;
  9061. top:754px;
  9062. width:97px;
  9063. height:22px;
  9064. display:flex;
  9065. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9066. font-weight:400;
  9067. font-style:normal;
  9068. font-size:16px;
  9069. }
  9070. #u51149 .text {
  9071. position:absolute;
  9072. align-self:flex-start;
  9073. padding:0px 0px 0px 0px;
  9074. box-sizing:border-box;
  9075. width:100%;
  9076. }
  9077. #u51149_text {
  9078. border-width:0px;
  9079. word-wrap:break-word;
  9080. text-transform:none;
  9081. }
  9082. #u51150_img {
  9083. border-width:0px;
  9084. position:absolute;
  9085. left:0px;
  9086. top:0px;
  9087. width:201px;
  9088. height:2px;
  9089. }
  9090. #u51150 {
  9091. border-width:0px;
  9092. position:absolute;
  9093. left:120px;
  9094. top:655px;
  9095. width:200px;
  9096. height:1px;
  9097. display:flex;
  9098. }
  9099. #u51150 .text {
  9100. position:absolute;
  9101. align-self:center;
  9102. padding:2px 2px 2px 2px;
  9103. box-sizing:border-box;
  9104. width:100%;
  9105. }
  9106. #u51150_text {
  9107. border-width:0px;
  9108. word-wrap:break-word;
  9109. text-transform:none;
  9110. visibility:hidden;
  9111. }
  9112. #u51151_div {
  9113. border-width:0px;
  9114. position:absolute;
  9115. left:0px;
  9116. top:0px;
  9117. width:97px;
  9118. height:22px;
  9119. background:inherit;
  9120. background-color:rgba(255, 255, 255, 0);
  9121. border:none;
  9122. border-radius:0px;
  9123. -moz-box-shadow:none;
  9124. -webkit-box-shadow:none;
  9125. box-shadow:none;
  9126. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9127. font-weight:400;
  9128. font-style:normal;
  9129. font-size:16px;
  9130. }
  9131. #u51151 {
  9132. border-width:0px;
  9133. position:absolute;
  9134. left:147px;
  9135. top:712px;
  9136. width:97px;
  9137. height:22px;
  9138. display:flex;
  9139. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9140. font-weight:400;
  9141. font-style:normal;
  9142. font-size:16px;
  9143. }
  9144. #u51151 .text {
  9145. position:absolute;
  9146. align-self:flex-start;
  9147. padding:0px 0px 0px 0px;
  9148. box-sizing:border-box;
  9149. width:100%;
  9150. }
  9151. #u51151_text {
  9152. border-width:0px;
  9153. word-wrap:break-word;
  9154. text-transform:none;
  9155. }
  9156. #u51152_div {
  9157. border-width:0px;
  9158. position:absolute;
  9159. left:0px;
  9160. top:0px;
  9161. width:49px;
  9162. height:17px;
  9163. background:inherit;
  9164. background-color:rgba(255, 255, 255, 0);
  9165. border:none;
  9166. border-radius:0px;
  9167. -moz-box-shadow:none;
  9168. -webkit-box-shadow:none;
  9169. box-shadow:none;
  9170. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9171. font-weight:400;
  9172. font-style:normal;
  9173. font-size:12px;
  9174. color:#AAAAAA;
  9175. }
  9176. #u51152 {
  9177. border-width:0px;
  9178. position:absolute;
  9179. left:147px;
  9180. top:676px;
  9181. width:49px;
  9182. height:17px;
  9183. display:flex;
  9184. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9185. font-weight:400;
  9186. font-style:normal;
  9187. font-size:12px;
  9188. color:#AAAAAA;
  9189. }
  9190. #u51152 .text {
  9191. position:absolute;
  9192. align-self:flex-start;
  9193. padding:0px 0px 0px 0px;
  9194. box-sizing:border-box;
  9195. width:100%;
  9196. }
  9197. #u51152_text {
  9198. border-width:0px;
  9199. white-space:nowrap;
  9200. text-transform:none;
  9201. }
  9202. #u51153_div {
  9203. border-width:0px;
  9204. position:absolute;
  9205. left:0px;
  9206. top:0px;
  9207. width:97px;
  9208. height:22px;
  9209. background:inherit;
  9210. background-color:rgba(255, 255, 255, 0);
  9211. border:none;
  9212. border-radius:0px;
  9213. -moz-box-shadow:none;
  9214. -webkit-box-shadow:none;
  9215. box-shadow:none;
  9216. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9217. font-weight:400;
  9218. font-style:normal;
  9219. font-size:16px;
  9220. }
  9221. #u51153 {
  9222. border-width:0px;
  9223. position:absolute;
  9224. left:147px;
  9225. top:895px;
  9226. width:97px;
  9227. height:22px;
  9228. display:flex;
  9229. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9230. font-weight:400;
  9231. font-style:normal;
  9232. font-size:16px;
  9233. }
  9234. #u51153 .text {
  9235. position:absolute;
  9236. align-self:flex-start;
  9237. padding:0px 0px 0px 0px;
  9238. box-sizing:border-box;
  9239. width:100%;
  9240. }
  9241. #u51153_text {
  9242. border-width:0px;
  9243. word-wrap:break-word;
  9244. text-transform:none;
  9245. }
  9246. #u51154_img {
  9247. border-width:0px;
  9248. position:absolute;
  9249. left:0px;
  9250. top:0px;
  9251. width:201px;
  9252. height:2px;
  9253. }
  9254. #u51154 {
  9255. border-width:0px;
  9256. position:absolute;
  9257. left:120px;
  9258. top:796px;
  9259. width:200px;
  9260. height:1px;
  9261. display:flex;
  9262. }
  9263. #u51154 .text {
  9264. position:absolute;
  9265. align-self:center;
  9266. padding:2px 2px 2px 2px;
  9267. box-sizing:border-box;
  9268. width:100%;
  9269. }
  9270. #u51154_text {
  9271. border-width:0px;
  9272. word-wrap:break-word;
  9273. text-transform:none;
  9274. visibility:hidden;
  9275. }
  9276. #u51155_div {
  9277. border-width:0px;
  9278. position:absolute;
  9279. left:0px;
  9280. top:0px;
  9281. width:97px;
  9282. height:22px;
  9283. background:inherit;
  9284. background-color:rgba(255, 255, 255, 0);
  9285. border:none;
  9286. border-radius:0px;
  9287. -moz-box-shadow:none;
  9288. -webkit-box-shadow:none;
  9289. box-shadow:none;
  9290. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9291. font-weight:400;
  9292. font-style:normal;
  9293. font-size:16px;
  9294. }
  9295. #u51155 {
  9296. border-width:0px;
  9297. position:absolute;
  9298. left:147px;
  9299. top:853px;
  9300. width:97px;
  9301. height:22px;
  9302. display:flex;
  9303. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9304. font-weight:400;
  9305. font-style:normal;
  9306. font-size:16px;
  9307. }
  9308. #u51155 .text {
  9309. position:absolute;
  9310. align-self:flex-start;
  9311. padding:0px 0px 0px 0px;
  9312. box-sizing:border-box;
  9313. width:100%;
  9314. }
  9315. #u51155_text {
  9316. border-width:0px;
  9317. word-wrap:break-word;
  9318. text-transform:none;
  9319. }
  9320. #u51156_div {
  9321. border-width:0px;
  9322. position:absolute;
  9323. left:0px;
  9324. top:0px;
  9325. width:49px;
  9326. height:17px;
  9327. background:inherit;
  9328. background-color:rgba(255, 255, 255, 0);
  9329. border:none;
  9330. border-radius:0px;
  9331. -moz-box-shadow:none;
  9332. -webkit-box-shadow:none;
  9333. box-shadow:none;
  9334. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9335. font-weight:400;
  9336. font-style:normal;
  9337. font-size:12px;
  9338. color:#AAAAAA;
  9339. }
  9340. #u51156 {
  9341. border-width:0px;
  9342. position:absolute;
  9343. left:147px;
  9344. top:817px;
  9345. width:49px;
  9346. height:17px;
  9347. display:flex;
  9348. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9349. font-weight:400;
  9350. font-style:normal;
  9351. font-size:12px;
  9352. color:#AAAAAA;
  9353. }
  9354. #u51156 .text {
  9355. position:absolute;
  9356. align-self:flex-start;
  9357. padding:0px 0px 0px 0px;
  9358. box-sizing:border-box;
  9359. width:100%;
  9360. }
  9361. #u51156_text {
  9362. border-width:0px;
  9363. white-space:nowrap;
  9364. text-transform:none;
  9365. }
  9366. #u51157_div {
  9367. border-width:0px;
  9368. position:absolute;
  9369. left:0px;
  9370. top:0px;
  9371. width:97px;
  9372. height:22px;
  9373. background:inherit;
  9374. background-color:rgba(255, 255, 255, 0);
  9375. border:none;
  9376. border-radius:0px;
  9377. -moz-box-shadow:none;
  9378. -webkit-box-shadow:none;
  9379. box-shadow:none;
  9380. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9381. font-weight:400;
  9382. font-style:normal;
  9383. font-size:16px;
  9384. }
  9385. #u51157 {
  9386. border-width:0px;
  9387. position:absolute;
  9388. left:147px;
  9389. top:611px;
  9390. width:97px;
  9391. height:22px;
  9392. display:flex;
  9393. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9394. font-weight:400;
  9395. font-style:normal;
  9396. font-size:16px;
  9397. }
  9398. #u51157 .text {
  9399. position:absolute;
  9400. align-self:flex-start;
  9401. padding:0px 0px 0px 0px;
  9402. box-sizing:border-box;
  9403. width:100%;
  9404. }
  9405. #u51157_text {
  9406. border-width:0px;
  9407. word-wrap:break-word;
  9408. text-transform:none;
  9409. }
  9410. #u51158_div {
  9411. border-width:0px;
  9412. position:absolute;
  9413. left:0px;
  9414. top:0px;
  9415. width:97px;
  9416. height:22px;
  9417. background:inherit;
  9418. background-color:rgba(255, 255, 255, 0);
  9419. border:none;
  9420. border-radius:0px;
  9421. -moz-box-shadow:none;
  9422. -webkit-box-shadow:none;
  9423. box-shadow:none;
  9424. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9425. font-weight:400;
  9426. font-style:normal;
  9427. font-size:16px;
  9428. }
  9429. #u51158 {
  9430. border-width:0px;
  9431. position:absolute;
  9432. left:147px;
  9433. top:303px;
  9434. width:97px;
  9435. height:22px;
  9436. display:flex;
  9437. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9438. font-weight:400;
  9439. font-style:normal;
  9440. font-size:16px;
  9441. }
  9442. #u51158 .text {
  9443. position:absolute;
  9444. align-self:flex-start;
  9445. padding:0px 0px 0px 0px;
  9446. box-sizing:border-box;
  9447. width:100%;
  9448. }
  9449. #u51158_text {
  9450. border-width:0px;
  9451. word-wrap:break-word;
  9452. text-transform:none;
  9453. }
  9454. #u51159_div {
  9455. border-width:0px;
  9456. position:absolute;
  9457. left:0px;
  9458. top:0px;
  9459. width:49px;
  9460. height:17px;
  9461. background:inherit;
  9462. background-color:rgba(255, 255, 255, 0);
  9463. border:none;
  9464. border-radius:0px;
  9465. -moz-box-shadow:none;
  9466. -webkit-box-shadow:none;
  9467. box-shadow:none;
  9468. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9469. font-weight:400;
  9470. font-style:normal;
  9471. font-size:12px;
  9472. color:#AAAAAA;
  9473. }
  9474. #u51159 {
  9475. border-width:0px;
  9476. position:absolute;
  9477. left:147px;
  9478. top:267px;
  9479. width:49px;
  9480. height:17px;
  9481. display:flex;
  9482. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9483. font-weight:400;
  9484. font-style:normal;
  9485. font-size:12px;
  9486. color:#AAAAAA;
  9487. }
  9488. #u51159 .text {
  9489. position:absolute;
  9490. align-self:flex-start;
  9491. padding:0px 0px 0px 0px;
  9492. box-sizing:border-box;
  9493. width:100%;
  9494. }
  9495. #u51159_text {
  9496. border-width:0px;
  9497. white-space:nowrap;
  9498. text-transform:none;
  9499. }
  9500. #u51160_div {
  9501. border-width:0px;
  9502. position:absolute;
  9503. left:0px;
  9504. top:0px;
  9505. width:97px;
  9506. height:22px;
  9507. background:inherit;
  9508. background-color:rgba(255, 255, 255, 0);
  9509. border:none;
  9510. border-radius:0px;
  9511. -moz-box-shadow:none;
  9512. -webkit-box-shadow:none;
  9513. box-shadow:none;
  9514. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9515. font-weight:400;
  9516. font-style:normal;
  9517. font-size:16px;
  9518. }
  9519. #u51160 {
  9520. border-width:0px;
  9521. position:absolute;
  9522. left:147px;
  9523. top:345px;
  9524. width:97px;
  9525. height:22px;
  9526. display:flex;
  9527. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9528. font-weight:400;
  9529. font-style:normal;
  9530. font-size:16px;
  9531. }
  9532. #u51160 .text {
  9533. position:absolute;
  9534. align-self:flex-start;
  9535. padding:0px 0px 0px 0px;
  9536. box-sizing:border-box;
  9537. width:100%;
  9538. }
  9539. #u51160_text {
  9540. border-width:0px;
  9541. word-wrap:break-word;
  9542. text-transform:none;
  9543. }
  9544. #u51161_img {
  9545. border-width:0px;
  9546. position:absolute;
  9547. left:0px;
  9548. top:0px;
  9549. width:201px;
  9550. height:2px;
  9551. }
  9552. #u51161 {
  9553. border-width:0px;
  9554. position:absolute;
  9555. left:120px;
  9556. top:514px;
  9557. width:200px;
  9558. height:1px;
  9559. display:flex;
  9560. }
  9561. #u51161 .text {
  9562. position:absolute;
  9563. align-self:center;
  9564. padding:2px 2px 2px 2px;
  9565. box-sizing:border-box;
  9566. width:100%;
  9567. }
  9568. #u51161_text {
  9569. border-width:0px;
  9570. word-wrap:break-word;
  9571. text-transform:none;
  9572. visibility:hidden;
  9573. }
  9574. #u51162_div {
  9575. border-width:0px;
  9576. position:absolute;
  9577. left:0px;
  9578. top:0px;
  9579. width:97px;
  9580. height:22px;
  9581. background:inherit;
  9582. background-color:rgba(255, 255, 255, 0);
  9583. border:none;
  9584. border-radius:0px;
  9585. -moz-box-shadow:none;
  9586. -webkit-box-shadow:none;
  9587. box-shadow:none;
  9588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9589. font-weight:400;
  9590. font-style:normal;
  9591. font-size:16px;
  9592. }
  9593. #u51162 {
  9594. border-width:0px;
  9595. position:absolute;
  9596. left:147px;
  9597. top:429px;
  9598. width:97px;
  9599. height:22px;
  9600. display:flex;
  9601. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9602. font-weight:400;
  9603. font-style:normal;
  9604. font-size:16px;
  9605. }
  9606. #u51162 .text {
  9607. position:absolute;
  9608. align-self:flex-start;
  9609. padding:0px 0px 0px 0px;
  9610. box-sizing:border-box;
  9611. width:100%;
  9612. }
  9613. #u51162_text {
  9614. border-width:0px;
  9615. word-wrap:break-word;
  9616. text-transform:none;
  9617. }
  9618. #u51163_div {
  9619. border-width:0px;
  9620. position:absolute;
  9621. left:0px;
  9622. top:0px;
  9623. width:97px;
  9624. height:22px;
  9625. background:inherit;
  9626. background-color:rgba(255, 255, 255, 0);
  9627. border:none;
  9628. border-radius:0px;
  9629. -moz-box-shadow:none;
  9630. -webkit-box-shadow:none;
  9631. box-shadow:none;
  9632. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9633. font-weight:400;
  9634. font-style:normal;
  9635. font-size:16px;
  9636. }
  9637. #u51163 {
  9638. border-width:0px;
  9639. position:absolute;
  9640. left:147px;
  9641. top:471px;
  9642. width:97px;
  9643. height:22px;
  9644. display:flex;
  9645. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9646. font-weight:400;
  9647. font-style:normal;
  9648. font-size:16px;
  9649. }
  9650. #u51163 .text {
  9651. position:absolute;
  9652. align-self:flex-start;
  9653. padding:0px 0px 0px 0px;
  9654. box-sizing:border-box;
  9655. width:100%;
  9656. }
  9657. #u51163_text {
  9658. border-width:0px;
  9659. white-space:nowrap;
  9660. text-transform:none;
  9661. }
  9662. #u51164 {
  9663. border-width:0px;
  9664. position:absolute;
  9665. left:0px;
  9666. top:0px;
  9667. width:0px;
  9668. height:0px;
  9669. }
  9670. #u51165 {
  9671. border-width:0px;
  9672. position:absolute;
  9673. left:0px;
  9674. top:0px;
  9675. width:0px;
  9676. height:0px;
  9677. }
  9678. #u51166_div {
  9679. border-width:0px;
  9680. position:absolute;
  9681. left:0px;
  9682. top:0px;
  9683. width:640px;
  9684. height:466px;
  9685. background:inherit;
  9686. background-color:rgba(255, 255, 255, 1);
  9687. box-sizing:border-box;
  9688. border-width:1px;
  9689. border-style:solid;
  9690. border-color:rgba(215, 215, 215, 1);
  9691. border-radius:0px;
  9692. -moz-box-shadow:none;
  9693. -webkit-box-shadow:none;
  9694. box-shadow:none;
  9695. }
  9696. #u51166 {
  9697. border-width:0px;
  9698. position:absolute;
  9699. left:550px;
  9700. top:369px;
  9701. width:640px;
  9702. height:466px;
  9703. display:flex;
  9704. }
  9705. #u51166 .text {
  9706. position:absolute;
  9707. align-self:center;
  9708. padding:2px 2px 2px 2px;
  9709. box-sizing:border-box;
  9710. width:100%;
  9711. }
  9712. #u51166_text {
  9713. border-width:0px;
  9714. word-wrap:break-word;
  9715. text-transform:none;
  9716. visibility:hidden;
  9717. }
  9718. #u51167_div {
  9719. border-width:0px;
  9720. position:absolute;
  9721. left:0px;
  9722. top:0px;
  9723. width:73px;
  9724. height:30px;
  9725. background:inherit;
  9726. background-color:rgba(255, 255, 255, 0);
  9727. border:none;
  9728. border-radius:0px;
  9729. -moz-box-shadow:none;
  9730. -webkit-box-shadow:none;
  9731. box-shadow:none;
  9732. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9733. font-weight:400;
  9734. font-style:normal;
  9735. font-size:18px;
  9736. color:#000000;
  9737. line-height:30px;
  9738. }
  9739. #u51167 {
  9740. border-width:0px;
  9741. position:absolute;
  9742. left:570px;
  9743. top:389px;
  9744. width:73px;
  9745. height:30px;
  9746. display:flex;
  9747. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9748. font-weight:400;
  9749. font-style:normal;
  9750. font-size:18px;
  9751. color:#000000;
  9752. line-height:30px;
  9753. }
  9754. #u51167 .text {
  9755. position:absolute;
  9756. align-self:flex-start;
  9757. padding:0px 0px 0px 0px;
  9758. box-sizing:border-box;
  9759. width:100%;
  9760. }
  9761. #u51167_text {
  9762. border-width:0px;
  9763. white-space:nowrap;
  9764. text-transform:none;
  9765. }
  9766. #u51168 {
  9767. border-width:0px;
  9768. position:absolute;
  9769. left:0px;
  9770. top:0px;
  9771. width:0px;
  9772. height:0px;
  9773. }
  9774. #u51169_div {
  9775. border-width:0px;
  9776. position:absolute;
  9777. left:0px;
  9778. top:0px;
  9779. width:40px;
  9780. height:40px;
  9781. background:inherit;
  9782. background-color:rgba(255, 255, 255, 0);
  9783. border:none;
  9784. border-top:0px;
  9785. border-right:0px;
  9786. border-bottom:0px;
  9787. border-radius:0px;
  9788. border-top-left-radius:0px;
  9789. border-bottom-left-radius:0px;
  9790. -moz-box-shadow:none;
  9791. -webkit-box-shadow:none;
  9792. box-shadow:none;
  9793. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9794. font-weight:500;
  9795. font-style:normal;
  9796. font-size:18px;
  9797. text-align:center;
  9798. }
  9799. #u51169 {
  9800. border-width:0px;
  9801. position:absolute;
  9802. left:1150px;
  9803. top:369px;
  9804. width:40px;
  9805. height:40px;
  9806. display:flex;
  9807. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9808. font-weight:500;
  9809. font-style:normal;
  9810. font-size:18px;
  9811. text-align:center;
  9812. }
  9813. #u51169 .text {
  9814. position:absolute;
  9815. align-self:center;
  9816. padding:5px 10px 5px 0px;
  9817. box-sizing:border-box;
  9818. width:100%;
  9819. }
  9820. #u51169_text {
  9821. border-width:0px;
  9822. word-wrap:break-word;
  9823. text-transform:none;
  9824. }
  9825. #u51170_img {
  9826. border-width:0px;
  9827. position:absolute;
  9828. left:0px;
  9829. top:0px;
  9830. width:13px;
  9831. height:17px;
  9832. }
  9833. #u51170 {
  9834. border-width:0px;
  9835. position:absolute;
  9836. left:1137px;
  9837. top:381px;
  9838. width:13px;
  9839. height:17px;
  9840. display:flex;
  9841. }
  9842. #u51170 .text {
  9843. position:absolute;
  9844. align-self:center;
  9845. padding:2px 2px 2px 2px;
  9846. box-sizing:border-box;
  9847. width:100%;
  9848. }
  9849. #u51170_text {
  9850. border-width:0px;
  9851. word-wrap:break-word;
  9852. text-transform:none;
  9853. visibility:hidden;
  9854. }
  9855. #u51171 {
  9856. border-width:0px;
  9857. position:absolute;
  9858. left:0px;
  9859. top:0px;
  9860. width:0px;
  9861. height:0px;
  9862. }
  9863. #u51172_div {
  9864. border-width:0px;
  9865. position:absolute;
  9866. left:0px;
  9867. top:0px;
  9868. width:640px;
  9869. height:60px;
  9870. background:inherit;
  9871. background-color:rgba(255, 255, 255, 1);
  9872. box-sizing:border-box;
  9873. border-width:1px;
  9874. border-style:solid;
  9875. border-color:rgba(215, 215, 215, 1);
  9876. border-radius:0px;
  9877. -moz-box-shadow:none;
  9878. -webkit-box-shadow:none;
  9879. box-shadow:none;
  9880. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9881. font-weight:400;
  9882. font-style:normal;
  9883. font-size:14px;
  9884. color:#AAAAAA;
  9885. text-align:center;
  9886. line-height:30px;
  9887. }
  9888. #u51172 {
  9889. border-width:0px;
  9890. position:absolute;
  9891. left:550px;
  9892. top:775px;
  9893. width:640px;
  9894. height:60px;
  9895. display:flex;
  9896. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9897. font-weight:400;
  9898. font-style:normal;
  9899. font-size:14px;
  9900. color:#AAAAAA;
  9901. text-align:center;
  9902. line-height:30px;
  9903. }
  9904. #u51172 .text {
  9905. position:absolute;
  9906. align-self:center;
  9907. padding:5px 10px 5px 10px;
  9908. box-sizing:border-box;
  9909. width:100%;
  9910. }
  9911. #u51172_text {
  9912. border-width:0px;
  9913. word-wrap:break-word;
  9914. text-transform:none;
  9915. visibility:hidden;
  9916. }
  9917. #u51173_div {
  9918. border-width:0px;
  9919. position:absolute;
  9920. left:0px;
  9921. top:0px;
  9922. width:80px;
  9923. height:30px;
  9924. background:inherit;
  9925. background-color:rgba(255, 255, 255, 1);
  9926. box-sizing:border-box;
  9927. border-width:1px;
  9928. border-style:solid;
  9929. border-color:rgba(170, 170, 170, 1);
  9930. border-radius:4px;
  9931. -moz-box-shadow:none;
  9932. -webkit-box-shadow:none;
  9933. box-shadow:none;
  9934. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9935. font-weight:400;
  9936. font-style:normal;
  9937. font-size:14px;
  9938. }
  9939. #u51173 {
  9940. border-width:0px;
  9941. position:absolute;
  9942. left:1084px;
  9943. top:790px;
  9944. width:80px;
  9945. height:30px;
  9946. display:flex;
  9947. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9948. font-weight:400;
  9949. font-style:normal;
  9950. font-size:14px;
  9951. }
  9952. #u51173 .text {
  9953. position:absolute;
  9954. align-self:center;
  9955. padding:2px 2px 2px 2px;
  9956. box-sizing:border-box;
  9957. width:100%;
  9958. }
  9959. #u51173_text {
  9960. border-width:0px;
  9961. word-wrap:break-word;
  9962. text-transform:none;
  9963. }
  9964. #u51174 {
  9965. border-width:0px;
  9966. position:absolute;
  9967. left:570px;
  9968. top:459px;
  9969. width:600px;
  9970. height:180px;
  9971. }
  9972. #u51175_img {
  9973. border-width:0px;
  9974. position:absolute;
  9975. left:0px;
  9976. top:0px;
  9977. width:86px;
  9978. height:30px;
  9979. }
  9980. #u51175 {
  9981. border-width:0px;
  9982. position:absolute;
  9983. left:0px;
  9984. top:0px;
  9985. width:86px;
  9986. height:30px;
  9987. display:flex;
  9988. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9989. font-weight:400;
  9990. font-style:normal;
  9991. font-size:12px;
  9992. color:#FFFFFF;
  9993. }
  9994. #u51175 .text {
  9995. position:absolute;
  9996. align-self:center;
  9997. padding:2px 2px 2px 2px;
  9998. box-sizing:border-box;
  9999. width:100%;
  10000. }
  10001. #u51175_text {
  10002. border-width:0px;
  10003. word-wrap:break-word;
  10004. text-transform:none;
  10005. }
  10006. #u51176_img {
  10007. border-width:0px;
  10008. position:absolute;
  10009. left:0px;
  10010. top:0px;
  10011. width:86px;
  10012. height:30px;
  10013. }
  10014. #u51176 {
  10015. border-width:0px;
  10016. position:absolute;
  10017. left:86px;
  10018. top:0px;
  10019. width:86px;
  10020. height:30px;
  10021. display:flex;
  10022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10023. font-weight:400;
  10024. font-style:normal;
  10025. font-size:12px;
  10026. color:#FFFFFF;
  10027. }
  10028. #u51176 .text {
  10029. position:absolute;
  10030. align-self:center;
  10031. padding:2px 2px 2px 2px;
  10032. box-sizing:border-box;
  10033. width:100%;
  10034. }
  10035. #u51176_text {
  10036. border-width:0px;
  10037. word-wrap:break-word;
  10038. text-transform:none;
  10039. }
  10040. #u51177_img {
  10041. border-width:0px;
  10042. position:absolute;
  10043. left:0px;
  10044. top:0px;
  10045. width:86px;
  10046. height:30px;
  10047. }
  10048. #u51177 {
  10049. border-width:0px;
  10050. position:absolute;
  10051. left:172px;
  10052. top:0px;
  10053. width:86px;
  10054. height:30px;
  10055. display:flex;
  10056. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10057. font-weight:400;
  10058. font-style:normal;
  10059. font-size:12px;
  10060. color:#FFFFFF;
  10061. }
  10062. #u51177 .text {
  10063. position:absolute;
  10064. align-self:center;
  10065. padding:2px 2px 2px 2px;
  10066. box-sizing:border-box;
  10067. width:100%;
  10068. }
  10069. #u51177_text {
  10070. border-width:0px;
  10071. word-wrap:break-word;
  10072. text-transform:none;
  10073. }
  10074. #u51178_img {
  10075. border-width:0px;
  10076. position:absolute;
  10077. left:0px;
  10078. top:0px;
  10079. width:86px;
  10080. height:30px;
  10081. }
  10082. #u51178 {
  10083. border-width:0px;
  10084. position:absolute;
  10085. left:258px;
  10086. top:0px;
  10087. width:86px;
  10088. height:30px;
  10089. display:flex;
  10090. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10091. font-weight:400;
  10092. font-style:normal;
  10093. font-size:12px;
  10094. color:#FFFFFF;
  10095. }
  10096. #u51178 .text {
  10097. position:absolute;
  10098. align-self:center;
  10099. padding:2px 2px 2px 2px;
  10100. box-sizing:border-box;
  10101. width:100%;
  10102. }
  10103. #u51178_text {
  10104. border-width:0px;
  10105. word-wrap:break-word;
  10106. text-transform:none;
  10107. }
  10108. #u51179_img {
  10109. border-width:0px;
  10110. position:absolute;
  10111. left:0px;
  10112. top:0px;
  10113. width:85px;
  10114. height:30px;
  10115. }
  10116. #u51179 {
  10117. border-width:0px;
  10118. position:absolute;
  10119. left:344px;
  10120. top:0px;
  10121. width:85px;
  10122. height:30px;
  10123. display:flex;
  10124. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10125. font-weight:400;
  10126. font-style:normal;
  10127. font-size:12px;
  10128. color:#FFFFFF;
  10129. }
  10130. #u51179 .text {
  10131. position:absolute;
  10132. align-self:center;
  10133. padding:2px 2px 2px 2px;
  10134. box-sizing:border-box;
  10135. width:100%;
  10136. }
  10137. #u51179_text {
  10138. border-width:0px;
  10139. word-wrap:break-word;
  10140. text-transform:none;
  10141. }
  10142. #u51180_img {
  10143. border-width:0px;
  10144. position:absolute;
  10145. left:0px;
  10146. top:0px;
  10147. width:86px;
  10148. height:30px;
  10149. }
  10150. #u51180 {
  10151. border-width:0px;
  10152. position:absolute;
  10153. left:429px;
  10154. top:0px;
  10155. width:86px;
  10156. height:30px;
  10157. display:flex;
  10158. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10159. font-weight:400;
  10160. font-style:normal;
  10161. font-size:12px;
  10162. color:#FFFFFF;
  10163. }
  10164. #u51180 .text {
  10165. position:absolute;
  10166. align-self:center;
  10167. padding:2px 2px 2px 2px;
  10168. box-sizing:border-box;
  10169. width:100%;
  10170. }
  10171. #u51180_text {
  10172. border-width:0px;
  10173. word-wrap:break-word;
  10174. text-transform:none;
  10175. }
  10176. #u51181_img {
  10177. border-width:0px;
  10178. position:absolute;
  10179. left:0px;
  10180. top:0px;
  10181. width:85px;
  10182. height:30px;
  10183. }
  10184. #u51181 {
  10185. border-width:0px;
  10186. position:absolute;
  10187. left:515px;
  10188. top:0px;
  10189. width:85px;
  10190. height:30px;
  10191. display:flex;
  10192. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10193. font-weight:400;
  10194. font-style:normal;
  10195. font-size:12px;
  10196. color:#FFFFFF;
  10197. }
  10198. #u51181 .text {
  10199. position:absolute;
  10200. align-self:center;
  10201. padding:2px 2px 2px 2px;
  10202. box-sizing:border-box;
  10203. width:100%;
  10204. }
  10205. #u51181_text {
  10206. border-width:0px;
  10207. word-wrap:break-word;
  10208. text-transform:none;
  10209. }
  10210. #u51182_img {
  10211. border-width:0px;
  10212. position:absolute;
  10213. left:0px;
  10214. top:0px;
  10215. width:86px;
  10216. height:30px;
  10217. }
  10218. #u51182 {
  10219. border-width:0px;
  10220. position:absolute;
  10221. left:0px;
  10222. top:30px;
  10223. width:86px;
  10224. height:30px;
  10225. display:flex;
  10226. font-size:12px;
  10227. }
  10228. #u51182 .text {
  10229. position:absolute;
  10230. align-self:center;
  10231. padding:2px 2px 2px 2px;
  10232. box-sizing:border-box;
  10233. width:100%;
  10234. }
  10235. #u51182_text {
  10236. border-width:0px;
  10237. word-wrap:break-word;
  10238. text-transform:none;
  10239. visibility:hidden;
  10240. }
  10241. #u51183_img {
  10242. border-width:0px;
  10243. position:absolute;
  10244. left:0px;
  10245. top:0px;
  10246. width:86px;
  10247. height:30px;
  10248. }
  10249. #u51183 {
  10250. border-width:0px;
  10251. position:absolute;
  10252. left:86px;
  10253. top:30px;
  10254. width:86px;
  10255. height:30px;
  10256. display:flex;
  10257. font-size:12px;
  10258. }
  10259. #u51183 .text {
  10260. position:absolute;
  10261. align-self:center;
  10262. padding:2px 2px 2px 2px;
  10263. box-sizing:border-box;
  10264. width:100%;
  10265. }
  10266. #u51183_text {
  10267. border-width:0px;
  10268. word-wrap:break-word;
  10269. text-transform:none;
  10270. visibility:hidden;
  10271. }
  10272. #u51184_img {
  10273. border-width:0px;
  10274. position:absolute;
  10275. left:0px;
  10276. top:0px;
  10277. width:86px;
  10278. height:30px;
  10279. }
  10280. #u51184 {
  10281. border-width:0px;
  10282. position:absolute;
  10283. left:172px;
  10284. top:30px;
  10285. width:86px;
  10286. height:30px;
  10287. display:flex;
  10288. font-size:12px;
  10289. }
  10290. #u51184 .text {
  10291. position:absolute;
  10292. align-self:center;
  10293. padding:2px 2px 2px 2px;
  10294. box-sizing:border-box;
  10295. width:100%;
  10296. }
  10297. #u51184_text {
  10298. border-width:0px;
  10299. word-wrap:break-word;
  10300. text-transform:none;
  10301. }
  10302. #u51185_img {
  10303. border-width:0px;
  10304. position:absolute;
  10305. left:0px;
  10306. top:0px;
  10307. width:86px;
  10308. height:30px;
  10309. }
  10310. #u51185 {
  10311. border-width:0px;
  10312. position:absolute;
  10313. left:258px;
  10314. top:30px;
  10315. width:86px;
  10316. height:30px;
  10317. display:flex;
  10318. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10319. font-weight:400;
  10320. font-style:normal;
  10321. font-size:12px;
  10322. }
  10323. #u51185 .text {
  10324. position:absolute;
  10325. align-self:center;
  10326. padding:2px 2px 2px 2px;
  10327. box-sizing:border-box;
  10328. width:100%;
  10329. }
  10330. #u51185_text {
  10331. border-width:0px;
  10332. word-wrap:break-word;
  10333. text-transform:none;
  10334. }
  10335. #u51186_img {
  10336. border-width:0px;
  10337. position:absolute;
  10338. left:0px;
  10339. top:0px;
  10340. width:85px;
  10341. height:30px;
  10342. }
  10343. #u51186 {
  10344. border-width:0px;
  10345. position:absolute;
  10346. left:344px;
  10347. top:30px;
  10348. width:85px;
  10349. height:30px;
  10350. display:flex;
  10351. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10352. font-weight:400;
  10353. font-style:normal;
  10354. font-size:12px;
  10355. }
  10356. #u51186 .text {
  10357. position:absolute;
  10358. align-self:center;
  10359. padding:2px 2px 2px 2px;
  10360. box-sizing:border-box;
  10361. width:100%;
  10362. }
  10363. #u51186_text {
  10364. border-width:0px;
  10365. word-wrap:break-word;
  10366. text-transform:none;
  10367. }
  10368. #u51187_img {
  10369. border-width:0px;
  10370. position:absolute;
  10371. left:0px;
  10372. top:0px;
  10373. width:86px;
  10374. height:30px;
  10375. }
  10376. #u51187 {
  10377. border-width:0px;
  10378. position:absolute;
  10379. left:429px;
  10380. top:30px;
  10381. width:86px;
  10382. height:30px;
  10383. display:flex;
  10384. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10385. font-weight:400;
  10386. font-style:normal;
  10387. font-size:12px;
  10388. }
  10389. #u51187 .text {
  10390. position:absolute;
  10391. align-self:center;
  10392. padding:2px 2px 2px 2px;
  10393. box-sizing:border-box;
  10394. width:100%;
  10395. }
  10396. #u51187_text {
  10397. border-width:0px;
  10398. word-wrap:break-word;
  10399. text-transform:none;
  10400. visibility:hidden;
  10401. }
  10402. #u51188_img {
  10403. border-width:0px;
  10404. position:absolute;
  10405. left:0px;
  10406. top:0px;
  10407. width:85px;
  10408. height:30px;
  10409. }
  10410. #u51188 {
  10411. border-width:0px;
  10412. position:absolute;
  10413. left:515px;
  10414. top:30px;
  10415. width:85px;
  10416. height:30px;
  10417. display:flex;
  10418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10419. font-weight:400;
  10420. font-style:normal;
  10421. font-size:12px;
  10422. }
  10423. #u51188 .text {
  10424. position:absolute;
  10425. align-self:center;
  10426. padding:2px 2px 2px 2px;
  10427. box-sizing:border-box;
  10428. width:100%;
  10429. }
  10430. #u51188_text {
  10431. border-width:0px;
  10432. word-wrap:break-word;
  10433. text-transform:none;
  10434. visibility:hidden;
  10435. }
  10436. #u51189_img {
  10437. border-width:0px;
  10438. position:absolute;
  10439. left:0px;
  10440. top:0px;
  10441. width:86px;
  10442. height:30px;
  10443. }
  10444. #u51189 {
  10445. border-width:0px;
  10446. position:absolute;
  10447. left:0px;
  10448. top:60px;
  10449. width:86px;
  10450. height:30px;
  10451. display:flex;
  10452. font-size:12px;
  10453. }
  10454. #u51189 .text {
  10455. position:absolute;
  10456. align-self:center;
  10457. padding:2px 2px 2px 2px;
  10458. box-sizing:border-box;
  10459. width:100%;
  10460. }
  10461. #u51189_text {
  10462. border-width:0px;
  10463. word-wrap:break-word;
  10464. text-transform:none;
  10465. visibility:hidden;
  10466. }
  10467. #u51190_img {
  10468. border-width:0px;
  10469. position:absolute;
  10470. left:0px;
  10471. top:0px;
  10472. width:86px;
  10473. height:30px;
  10474. }
  10475. #u51190 {
  10476. border-width:0px;
  10477. position:absolute;
  10478. left:86px;
  10479. top:60px;
  10480. width:86px;
  10481. height:30px;
  10482. display:flex;
  10483. font-size:12px;
  10484. }
  10485. #u51190 .text {
  10486. position:absolute;
  10487. align-self:center;
  10488. padding:2px 2px 2px 2px;
  10489. box-sizing:border-box;
  10490. width:100%;
  10491. }
  10492. #u51190_text {
  10493. border-width:0px;
  10494. word-wrap:break-word;
  10495. text-transform:none;
  10496. visibility:hidden;
  10497. }
  10498. #u51191_img {
  10499. border-width:0px;
  10500. position:absolute;
  10501. left:0px;
  10502. top:0px;
  10503. width:86px;
  10504. height:30px;
  10505. }
  10506. #u51191 {
  10507. border-width:0px;
  10508. position:absolute;
  10509. left:172px;
  10510. top:60px;
  10511. width:86px;
  10512. height:30px;
  10513. display:flex;
  10514. font-size:12px;
  10515. }
  10516. #u51191 .text {
  10517. position:absolute;
  10518. align-self:center;
  10519. padding:2px 2px 2px 2px;
  10520. box-sizing:border-box;
  10521. width:100%;
  10522. }
  10523. #u51191_text {
  10524. border-width:0px;
  10525. word-wrap:break-word;
  10526. text-transform:none;
  10527. visibility:hidden;
  10528. }
  10529. #u51192_img {
  10530. border-width:0px;
  10531. position:absolute;
  10532. left:0px;
  10533. top:0px;
  10534. width:86px;
  10535. height:30px;
  10536. }
  10537. #u51192 {
  10538. border-width:0px;
  10539. position:absolute;
  10540. left:258px;
  10541. top:60px;
  10542. width:86px;
  10543. height:30px;
  10544. display:flex;
  10545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10546. font-weight:400;
  10547. font-style:normal;
  10548. font-size:12px;
  10549. }
  10550. #u51192 .text {
  10551. position:absolute;
  10552. align-self:center;
  10553. padding:2px 2px 2px 2px;
  10554. box-sizing:border-box;
  10555. width:100%;
  10556. }
  10557. #u51192_text {
  10558. border-width:0px;
  10559. word-wrap:break-word;
  10560. text-transform:none;
  10561. }
  10562. #u51193_img {
  10563. border-width:0px;
  10564. position:absolute;
  10565. left:0px;
  10566. top:0px;
  10567. width:85px;
  10568. height:30px;
  10569. }
  10570. #u51193 {
  10571. border-width:0px;
  10572. position:absolute;
  10573. left:344px;
  10574. top:60px;
  10575. width:85px;
  10576. height:30px;
  10577. display:flex;
  10578. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10579. font-weight:400;
  10580. font-style:normal;
  10581. font-size:12px;
  10582. color:#00BFBF;
  10583. }
  10584. #u51193 .text {
  10585. position:absolute;
  10586. align-self:center;
  10587. padding:2px 2px 2px 2px;
  10588. box-sizing:border-box;
  10589. width:100%;
  10590. }
  10591. #u51193_text {
  10592. border-width:0px;
  10593. word-wrap:break-word;
  10594. text-transform:none;
  10595. }
  10596. #u51194_img {
  10597. border-width:0px;
  10598. position:absolute;
  10599. left:0px;
  10600. top:0px;
  10601. width:86px;
  10602. height:30px;
  10603. }
  10604. #u51194 {
  10605. border-width:0px;
  10606. position:absolute;
  10607. left:429px;
  10608. top:60px;
  10609. width:86px;
  10610. height:30px;
  10611. display:flex;
  10612. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10613. font-weight:400;
  10614. font-style:normal;
  10615. font-size:12px;
  10616. color:#00BFBF;
  10617. }
  10618. #u51194 .text {
  10619. position:absolute;
  10620. align-self:center;
  10621. padding:2px 2px 2px 2px;
  10622. box-sizing:border-box;
  10623. width:100%;
  10624. }
  10625. #u51194_text {
  10626. border-width:0px;
  10627. word-wrap:break-word;
  10628. text-transform:none;
  10629. visibility:hidden;
  10630. }
  10631. #u51195_img {
  10632. border-width:0px;
  10633. position:absolute;
  10634. left:0px;
  10635. top:0px;
  10636. width:85px;
  10637. height:30px;
  10638. }
  10639. #u51195 {
  10640. border-width:0px;
  10641. position:absolute;
  10642. left:515px;
  10643. top:60px;
  10644. width:85px;
  10645. height:30px;
  10646. display:flex;
  10647. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10648. font-weight:400;
  10649. font-style:normal;
  10650. font-size:12px;
  10651. color:#00BFBF;
  10652. }
  10653. #u51195 .text {
  10654. position:absolute;
  10655. align-self:center;
  10656. padding:2px 2px 2px 2px;
  10657. box-sizing:border-box;
  10658. width:100%;
  10659. }
  10660. #u51195_text {
  10661. border-width:0px;
  10662. word-wrap:break-word;
  10663. text-transform:none;
  10664. visibility:hidden;
  10665. }
  10666. #u51196_img {
  10667. border-width:0px;
  10668. position:absolute;
  10669. left:0px;
  10670. top:0px;
  10671. width:86px;
  10672. height:30px;
  10673. }
  10674. #u51196 {
  10675. border-width:0px;
  10676. position:absolute;
  10677. left:0px;
  10678. top:90px;
  10679. width:86px;
  10680. height:30px;
  10681. display:flex;
  10682. font-size:12px;
  10683. }
  10684. #u51196 .text {
  10685. position:absolute;
  10686. align-self:center;
  10687. padding:2px 2px 2px 2px;
  10688. box-sizing:border-box;
  10689. width:100%;
  10690. }
  10691. #u51196_text {
  10692. border-width:0px;
  10693. word-wrap:break-word;
  10694. text-transform:none;
  10695. visibility:hidden;
  10696. }
  10697. #u51197_img {
  10698. border-width:0px;
  10699. position:absolute;
  10700. left:0px;
  10701. top:0px;
  10702. width:86px;
  10703. height:30px;
  10704. }
  10705. #u51197 {
  10706. border-width:0px;
  10707. position:absolute;
  10708. left:86px;
  10709. top:90px;
  10710. width:86px;
  10711. height:30px;
  10712. display:flex;
  10713. font-size:12px;
  10714. }
  10715. #u51197 .text {
  10716. position:absolute;
  10717. align-self:center;
  10718. padding:2px 2px 2px 2px;
  10719. box-sizing:border-box;
  10720. width:100%;
  10721. }
  10722. #u51197_text {
  10723. border-width:0px;
  10724. word-wrap:break-word;
  10725. text-transform:none;
  10726. visibility:hidden;
  10727. }
  10728. #u51198_img {
  10729. border-width:0px;
  10730. position:absolute;
  10731. left:0px;
  10732. top:0px;
  10733. width:86px;
  10734. height:30px;
  10735. }
  10736. #u51198 {
  10737. border-width:0px;
  10738. position:absolute;
  10739. left:172px;
  10740. top:90px;
  10741. width:86px;
  10742. height:30px;
  10743. display:flex;
  10744. font-size:12px;
  10745. }
  10746. #u51198 .text {
  10747. position:absolute;
  10748. align-self:center;
  10749. padding:2px 2px 2px 2px;
  10750. box-sizing:border-box;
  10751. width:100%;
  10752. }
  10753. #u51198_text {
  10754. border-width:0px;
  10755. word-wrap:break-word;
  10756. text-transform:none;
  10757. visibility:hidden;
  10758. }
  10759. #u51199_img {
  10760. border-width:0px;
  10761. position:absolute;
  10762. left:0px;
  10763. top:0px;
  10764. width:86px;
  10765. height:30px;
  10766. }
  10767. #u51199 {
  10768. border-width:0px;
  10769. position:absolute;
  10770. left:258px;
  10771. top:90px;
  10772. width:86px;
  10773. height:30px;
  10774. display:flex;
  10775. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10776. font-weight:400;
  10777. font-style:normal;
  10778. font-size:12px;
  10779. }
  10780. #u51199 .text {
  10781. position:absolute;
  10782. align-self:center;
  10783. padding:2px 2px 2px 2px;
  10784. box-sizing:border-box;
  10785. width:100%;
  10786. }
  10787. #u51199_text {
  10788. border-width:0px;
  10789. word-wrap:break-word;
  10790. text-transform:none;
  10791. }
  10792. #u51200_img {
  10793. border-width:0px;
  10794. position:absolute;
  10795. left:0px;
  10796. top:0px;
  10797. width:85px;
  10798. height:30px;
  10799. }
  10800. #u51200 {
  10801. border-width:0px;
  10802. position:absolute;
  10803. left:344px;
  10804. top:90px;
  10805. width:85px;
  10806. height:30px;
  10807. display:flex;
  10808. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10809. font-weight:400;
  10810. font-style:normal;
  10811. font-size:12px;
  10812. color:#D9001B;
  10813. }
  10814. #u51200 .text {
  10815. position:absolute;
  10816. align-self:center;
  10817. padding:2px 2px 2px 2px;
  10818. box-sizing:border-box;
  10819. width:100%;
  10820. }
  10821. #u51200_text {
  10822. border-width:0px;
  10823. word-wrap:break-word;
  10824. text-transform:none;
  10825. }
  10826. #u51201_img {
  10827. border-width:0px;
  10828. position:absolute;
  10829. left:0px;
  10830. top:0px;
  10831. width:86px;
  10832. height:30px;
  10833. }
  10834. #u51201 {
  10835. border-width:0px;
  10836. position:absolute;
  10837. left:429px;
  10838. top:90px;
  10839. width:86px;
  10840. height:30px;
  10841. display:flex;
  10842. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10843. font-weight:400;
  10844. font-style:normal;
  10845. font-size:12px;
  10846. color:#D9001B;
  10847. }
  10848. #u51201 .text {
  10849. position:absolute;
  10850. align-self:center;
  10851. padding:2px 2px 2px 2px;
  10852. box-sizing:border-box;
  10853. width:100%;
  10854. }
  10855. #u51201_text {
  10856. border-width:0px;
  10857. word-wrap:break-word;
  10858. text-transform:none;
  10859. visibility:hidden;
  10860. }
  10861. #u51202_img {
  10862. border-width:0px;
  10863. position:absolute;
  10864. left:0px;
  10865. top:0px;
  10866. width:85px;
  10867. height:30px;
  10868. }
  10869. #u51202 {
  10870. border-width:0px;
  10871. position:absolute;
  10872. left:515px;
  10873. top:90px;
  10874. width:85px;
  10875. height:30px;
  10876. display:flex;
  10877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10878. font-weight:400;
  10879. font-style:normal;
  10880. font-size:12px;
  10881. color:#1890FF;
  10882. }
  10883. #u51202 .text {
  10884. position:absolute;
  10885. align-self:center;
  10886. padding:2px 2px 2px 2px;
  10887. box-sizing:border-box;
  10888. width:100%;
  10889. }
  10890. #u51202_text {
  10891. border-width:0px;
  10892. word-wrap:break-word;
  10893. text-transform:none;
  10894. }
  10895. #u51203_img {
  10896. border-width:0px;
  10897. position:absolute;
  10898. left:0px;
  10899. top:0px;
  10900. width:86px;
  10901. height:30px;
  10902. }
  10903. #u51203 {
  10904. border-width:0px;
  10905. position:absolute;
  10906. left:0px;
  10907. top:120px;
  10908. width:86px;
  10909. height:30px;
  10910. display:flex;
  10911. font-size:12px;
  10912. }
  10913. #u51203 .text {
  10914. position:absolute;
  10915. align-self:center;
  10916. padding:2px 2px 2px 2px;
  10917. box-sizing:border-box;
  10918. width:100%;
  10919. }
  10920. #u51203_text {
  10921. border-width:0px;
  10922. word-wrap:break-word;
  10923. text-transform:none;
  10924. visibility:hidden;
  10925. }
  10926. #u51204_img {
  10927. border-width:0px;
  10928. position:absolute;
  10929. left:0px;
  10930. top:0px;
  10931. width:86px;
  10932. height:30px;
  10933. }
  10934. #u51204 {
  10935. border-width:0px;
  10936. position:absolute;
  10937. left:86px;
  10938. top:120px;
  10939. width:86px;
  10940. height:30px;
  10941. display:flex;
  10942. font-size:12px;
  10943. }
  10944. #u51204 .text {
  10945. position:absolute;
  10946. align-self:center;
  10947. padding:2px 2px 2px 2px;
  10948. box-sizing:border-box;
  10949. width:100%;
  10950. }
  10951. #u51204_text {
  10952. border-width:0px;
  10953. word-wrap:break-word;
  10954. text-transform:none;
  10955. visibility:hidden;
  10956. }
  10957. #u51205_img {
  10958. border-width:0px;
  10959. position:absolute;
  10960. left:0px;
  10961. top:0px;
  10962. width:86px;
  10963. height:30px;
  10964. }
  10965. #u51205 {
  10966. border-width:0px;
  10967. position:absolute;
  10968. left:172px;
  10969. top:120px;
  10970. width:86px;
  10971. height:30px;
  10972. display:flex;
  10973. font-size:12px;
  10974. }
  10975. #u51205 .text {
  10976. position:absolute;
  10977. align-self:center;
  10978. padding:2px 2px 2px 2px;
  10979. box-sizing:border-box;
  10980. width:100%;
  10981. }
  10982. #u51205_text {
  10983. border-width:0px;
  10984. word-wrap:break-word;
  10985. text-transform:none;
  10986. visibility:hidden;
  10987. }
  10988. #u51206_img {
  10989. border-width:0px;
  10990. position:absolute;
  10991. left:0px;
  10992. top:0px;
  10993. width:86px;
  10994. height:30px;
  10995. }
  10996. #u51206 {
  10997. border-width:0px;
  10998. position:absolute;
  10999. left:258px;
  11000. top:120px;
  11001. width:86px;
  11002. height:30px;
  11003. display:flex;
  11004. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11005. font-weight:400;
  11006. font-style:normal;
  11007. font-size:12px;
  11008. }
  11009. #u51206 .text {
  11010. position:absolute;
  11011. align-self:center;
  11012. padding:2px 2px 2px 2px;
  11013. box-sizing:border-box;
  11014. width:100%;
  11015. }
  11016. #u51206_text {
  11017. border-width:0px;
  11018. word-wrap:break-word;
  11019. text-transform:none;
  11020. }
  11021. #u51207_img {
  11022. border-width:0px;
  11023. position:absolute;
  11024. left:0px;
  11025. top:0px;
  11026. width:85px;
  11027. height:30px;
  11028. }
  11029. #u51207 {
  11030. border-width:0px;
  11031. position:absolute;
  11032. left:344px;
  11033. top:120px;
  11034. width:85px;
  11035. height:30px;
  11036. display:flex;
  11037. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11038. font-weight:400;
  11039. font-style:normal;
  11040. font-size:12px;
  11041. color:#00BFBF;
  11042. }
  11043. #u51207 .text {
  11044. position:absolute;
  11045. align-self:center;
  11046. padding:2px 2px 2px 2px;
  11047. box-sizing:border-box;
  11048. width:100%;
  11049. }
  11050. #u51207_text {
  11051. border-width:0px;
  11052. word-wrap:break-word;
  11053. text-transform:none;
  11054. }
  11055. #u51208_img {
  11056. border-width:0px;
  11057. position:absolute;
  11058. left:0px;
  11059. top:0px;
  11060. width:86px;
  11061. height:30px;
  11062. }
  11063. #u51208 {
  11064. border-width:0px;
  11065. position:absolute;
  11066. left:429px;
  11067. top:120px;
  11068. width:86px;
  11069. height:30px;
  11070. display:flex;
  11071. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11072. font-weight:400;
  11073. font-style:normal;
  11074. font-size:12px;
  11075. color:#00BFBF;
  11076. }
  11077. #u51208 .text {
  11078. position:absolute;
  11079. align-self:center;
  11080. padding:2px 2px 2px 2px;
  11081. box-sizing:border-box;
  11082. width:100%;
  11083. }
  11084. #u51208_text {
  11085. border-width:0px;
  11086. word-wrap:break-word;
  11087. text-transform:none;
  11088. visibility:hidden;
  11089. }
  11090. #u51209_img {
  11091. border-width:0px;
  11092. position:absolute;
  11093. left:0px;
  11094. top:0px;
  11095. width:85px;
  11096. height:30px;
  11097. }
  11098. #u51209 {
  11099. border-width:0px;
  11100. position:absolute;
  11101. left:515px;
  11102. top:120px;
  11103. width:85px;
  11104. height:30px;
  11105. display:flex;
  11106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11107. font-weight:400;
  11108. font-style:normal;
  11109. font-size:12px;
  11110. color:#00BFBF;
  11111. }
  11112. #u51209 .text {
  11113. position:absolute;
  11114. align-self:center;
  11115. padding:2px 2px 2px 2px;
  11116. box-sizing:border-box;
  11117. width:100%;
  11118. }
  11119. #u51209_text {
  11120. border-width:0px;
  11121. word-wrap:break-word;
  11122. text-transform:none;
  11123. visibility:hidden;
  11124. }
  11125. #u51210_img {
  11126. border-width:0px;
  11127. position:absolute;
  11128. left:0px;
  11129. top:0px;
  11130. width:86px;
  11131. height:30px;
  11132. }
  11133. #u51210 {
  11134. border-width:0px;
  11135. position:absolute;
  11136. left:0px;
  11137. top:150px;
  11138. width:86px;
  11139. height:30px;
  11140. display:flex;
  11141. font-size:12px;
  11142. }
  11143. #u51210 .text {
  11144. position:absolute;
  11145. align-self:center;
  11146. padding:2px 2px 2px 2px;
  11147. box-sizing:border-box;
  11148. width:100%;
  11149. }
  11150. #u51210_text {
  11151. border-width:0px;
  11152. word-wrap:break-word;
  11153. text-transform:none;
  11154. visibility:hidden;
  11155. }
  11156. #u51211_img {
  11157. border-width:0px;
  11158. position:absolute;
  11159. left:0px;
  11160. top:0px;
  11161. width:86px;
  11162. height:30px;
  11163. }
  11164. #u51211 {
  11165. border-width:0px;
  11166. position:absolute;
  11167. left:86px;
  11168. top:150px;
  11169. width:86px;
  11170. height:30px;
  11171. display:flex;
  11172. font-size:12px;
  11173. }
  11174. #u51211 .text {
  11175. position:absolute;
  11176. align-self:center;
  11177. padding:2px 2px 2px 2px;
  11178. box-sizing:border-box;
  11179. width:100%;
  11180. }
  11181. #u51211_text {
  11182. border-width:0px;
  11183. word-wrap:break-word;
  11184. text-transform:none;
  11185. visibility:hidden;
  11186. }
  11187. #u51212_img {
  11188. border-width:0px;
  11189. position:absolute;
  11190. left:0px;
  11191. top:0px;
  11192. width:86px;
  11193. height:30px;
  11194. }
  11195. #u51212 {
  11196. border-width:0px;
  11197. position:absolute;
  11198. left:172px;
  11199. top:150px;
  11200. width:86px;
  11201. height:30px;
  11202. display:flex;
  11203. font-size:12px;
  11204. }
  11205. #u51212 .text {
  11206. position:absolute;
  11207. align-self:center;
  11208. padding:2px 2px 2px 2px;
  11209. box-sizing:border-box;
  11210. width:100%;
  11211. }
  11212. #u51212_text {
  11213. border-width:0px;
  11214. word-wrap:break-word;
  11215. text-transform:none;
  11216. visibility:hidden;
  11217. }
  11218. #u51213_img {
  11219. border-width:0px;
  11220. position:absolute;
  11221. left:0px;
  11222. top:0px;
  11223. width:86px;
  11224. height:30px;
  11225. }
  11226. #u51213 {
  11227. border-width:0px;
  11228. position:absolute;
  11229. left:258px;
  11230. top:150px;
  11231. width:86px;
  11232. height:30px;
  11233. display:flex;
  11234. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11235. font-weight:400;
  11236. font-style:normal;
  11237. font-size:12px;
  11238. }
  11239. #u51213 .text {
  11240. position:absolute;
  11241. align-self:center;
  11242. padding:2px 2px 2px 2px;
  11243. box-sizing:border-box;
  11244. width:100%;
  11245. }
  11246. #u51213_text {
  11247. border-width:0px;
  11248. word-wrap:break-word;
  11249. text-transform:none;
  11250. }
  11251. #u51214_img {
  11252. border-width:0px;
  11253. position:absolute;
  11254. left:0px;
  11255. top:0px;
  11256. width:85px;
  11257. height:30px;
  11258. }
  11259. #u51214 {
  11260. border-width:0px;
  11261. position:absolute;
  11262. left:344px;
  11263. top:150px;
  11264. width:85px;
  11265. height:30px;
  11266. display:flex;
  11267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11268. font-weight:400;
  11269. font-style:normal;
  11270. font-size:12px;
  11271. }
  11272. #u51214 .text {
  11273. position:absolute;
  11274. align-self:center;
  11275. padding:2px 2px 2px 2px;
  11276. box-sizing:border-box;
  11277. width:100%;
  11278. }
  11279. #u51214_text {
  11280. border-width:0px;
  11281. word-wrap:break-word;
  11282. text-transform:none;
  11283. }
  11284. #u51215_img {
  11285. border-width:0px;
  11286. position:absolute;
  11287. left:0px;
  11288. top:0px;
  11289. width:86px;
  11290. height:30px;
  11291. }
  11292. #u51215 {
  11293. border-width:0px;
  11294. position:absolute;
  11295. left:429px;
  11296. top:150px;
  11297. width:86px;
  11298. height:30px;
  11299. display:flex;
  11300. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11301. font-weight:400;
  11302. font-style:normal;
  11303. font-size:12px;
  11304. }
  11305. #u51215 .text {
  11306. position:absolute;
  11307. align-self:center;
  11308. padding:2px 2px 2px 2px;
  11309. box-sizing:border-box;
  11310. width:100%;
  11311. }
  11312. #u51215_text {
  11313. border-width:0px;
  11314. word-wrap:break-word;
  11315. text-transform:none;
  11316. visibility:hidden;
  11317. }
  11318. #u51216_img {
  11319. border-width:0px;
  11320. position:absolute;
  11321. left:0px;
  11322. top:0px;
  11323. width:85px;
  11324. height:30px;
  11325. }
  11326. #u51216 {
  11327. border-width:0px;
  11328. position:absolute;
  11329. left:515px;
  11330. top:150px;
  11331. width:85px;
  11332. height:30px;
  11333. display:flex;
  11334. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11335. font-weight:400;
  11336. font-style:normal;
  11337. font-size:12px;
  11338. }
  11339. #u51216 .text {
  11340. position:absolute;
  11341. align-self:center;
  11342. padding:2px 2px 2px 2px;
  11343. box-sizing:border-box;
  11344. width:100%;
  11345. }
  11346. #u51216_text {
  11347. border-width:0px;
  11348. word-wrap:break-word;
  11349. text-transform:none;
  11350. visibility:hidden;
  11351. }
  11352. #u51217_div {
  11353. border-width:0px;
  11354. position:absolute;
  11355. left:0px;
  11356. top:0px;
  11357. width:600px;
  11358. height:30px;
  11359. background:inherit;
  11360. background-color:rgba(255, 255, 255, 0);
  11361. border:none;
  11362. border-radius:0px;
  11363. -moz-box-shadow:none;
  11364. -webkit-box-shadow:none;
  11365. box-shadow:none;
  11366. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11367. font-weight:400;
  11368. font-style:normal;
  11369. font-size:12px;
  11370. color:#F59A23;
  11371. line-height:30px;
  11372. }
  11373. #u51217 {
  11374. border-width:0px;
  11375. position:absolute;
  11376. left:570px;
  11377. top:429px;
  11378. width:600px;
  11379. height:30px;
  11380. display:flex;
  11381. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11382. font-weight:400;
  11383. font-style:normal;
  11384. font-size:12px;
  11385. color:#F59A23;
  11386. line-height:30px;
  11387. }
  11388. #u51217 .text {
  11389. position:absolute;
  11390. align-self:flex-start;
  11391. padding:0px 0px 0px 0px;
  11392. box-sizing:border-box;
  11393. width:100%;
  11394. }
  11395. #u51217_text {
  11396. border-width:0px;
  11397. word-wrap:break-word;
  11398. text-transform:none;
  11399. }
  11400. #u51218_img {
  11401. border-width:0px;
  11402. position:absolute;
  11403. left:0px;
  11404. top:0px;
  11405. width:11px;
  11406. height:11px;
  11407. }
  11408. #u51218 {
  11409. border-width:0px;
  11410. position:absolute;
  11411. left:984px;
  11412. top:539px;
  11413. width:11px;
  11414. height:11px;
  11415. display:flex;
  11416. }
  11417. #u51218 .text {
  11418. position:absolute;
  11419. align-self:center;
  11420. padding:2px 2px 2px 2px;
  11421. box-sizing:border-box;
  11422. width:100%;
  11423. }
  11424. #u51218_text {
  11425. border-width:0px;
  11426. word-wrap:break-word;
  11427. text-transform:none;
  11428. visibility:hidden;
  11429. }