styles.css 142 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1600px;
  7. margin-left:auto;
  8. margin-right:auto;
  9. text-align:left;
  10. }
  11. .form_sketch {
  12. border-color:transparent;
  13. background-color:transparent;
  14. }
  15. #base {
  16. position:absolute;
  17. z-index:0;
  18. }
  19. #u95482_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. #u95482 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u95482 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u95482_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u95483_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. #u95483 {
  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. #u95483 .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. #u95483_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u95484_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. #u95484 {
  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. #u95484 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u95484_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u95485 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u95486_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u95486 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u95486 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u95486_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u95487_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. #u95487 {
  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. #u95487 .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. #u95487_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u95488_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. #u95488 {
  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. #u95488 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u95488_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u95489 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u95490_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. #u95490_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. #u95490_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. #u95490 {
  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. #u95490 .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. #u95490_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. #u95490.disabled {
  356. }
  357. .u95490_input_option {
  358. font-size:14px;
  359. }
  360. #u95491_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u95491 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u95491 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u95491_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u95492_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. #u95492 {
  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. #u95492 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u95492_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u95493_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. #u95493 {
  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. #u95493 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u95493_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u95494 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u95495_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. #u95495 {
  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. #u95495 .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. #u95495_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u95496_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u95496 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u95496 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u95496_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u95497 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u95498_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. #u95498 {
  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. #u95498 .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. #u95498_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u95499_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u95499 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u95499 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u95499_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u95500 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u95501_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. #u95501 {
  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. #u95501 .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. #u95501_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u95502_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u95502 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:403px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u95502 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u95502_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u95503 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u95504_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. #u95504 {
  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. #u95504 .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. #u95504_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u95505_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u95505 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u95505 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u95505_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u95506 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u95507_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. #u95507 {
  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. #u95507 .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. #u95507_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u95508_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u95508 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:445px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u95508 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u95508_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u95509 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u95510_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. #u95510 {
  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. #u95510 .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. #u95510_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u95511_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u95511 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:319px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u95511 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u95511_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u95512 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u95513_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. #u95513 {
  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. #u95513 .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. #u95513_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u95514_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u95514 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u95514 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u95514_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u95515 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u95516_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. #u95516 {
  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. #u95516 .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. #u95516_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u95517_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u95517 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:361px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u95517 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u95517_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u95518 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u95519_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. #u95519 {
  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. #u95519 .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. #u95519_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u95520_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u95520 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:487px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u95520 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u95520_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u95521 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u95522_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. #u95522 {
  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. #u95522 .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. #u95522_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u95523_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u95523 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:529px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u95523 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u95523_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u95524_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. #u95524 {
  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. #u95524 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u95524_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u95525_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u95525 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u95525 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u95525_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u95526_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. #u95526 {
  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. #u95526 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u95526_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u95527_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u95527 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u95527 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u95527_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u95528 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u95529_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. #u95529 {
  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. #u95529 .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. #u95529_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u95530_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u95530 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u95530 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u95530_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u95531 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u95532_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. #u95532 {
  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. #u95532 .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. #u95532_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u95533_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u95533 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:277px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u95533 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u95533_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u95534_div {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:1256px;
  1644. height:1180px;
  1645. background:inherit;
  1646. background-color:rgba(255, 255, 255, 1);
  1647. border:none;
  1648. border-radius:0px;
  1649. -moz-box-shadow:none;
  1650. -webkit-box-shadow:none;
  1651. box-shadow:none;
  1652. }
  1653. #u95534 {
  1654. border-width:0px;
  1655. position:absolute;
  1656. left:333px;
  1657. top:50px;
  1658. width:1256px;
  1659. height:1180px;
  1660. display:flex;
  1661. }
  1662. #u95534 .text {
  1663. position:absolute;
  1664. align-self:center;
  1665. padding:2px 2px 2px 2px;
  1666. box-sizing:border-box;
  1667. width:100%;
  1668. }
  1669. #u95534_text {
  1670. border-width:0px;
  1671. word-wrap:break-word;
  1672. text-transform:none;
  1673. visibility:hidden;
  1674. }
  1675. #u95535_div {
  1676. border-width:0px;
  1677. position:absolute;
  1678. left:0px;
  1679. top:0px;
  1680. width:73px;
  1681. height:50px;
  1682. background:inherit;
  1683. background-color:rgba(255, 255, 255, 0);
  1684. border:none;
  1685. border-left:0px;
  1686. border-top:0px;
  1687. border-right:0px;
  1688. border-radius:0px;
  1689. border-bottom-right-radius:0px;
  1690. border-bottom-left-radius:0px;
  1691. -moz-box-shadow:none;
  1692. -webkit-box-shadow:none;
  1693. box-shadow:none;
  1694. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1695. font-weight:400;
  1696. font-style:normal;
  1697. font-size:18px;
  1698. line-height:40px;
  1699. }
  1700. #u95535 {
  1701. border-width:0px;
  1702. position:absolute;
  1703. left:354px;
  1704. top:53px;
  1705. width:73px;
  1706. height:50px;
  1707. display:flex;
  1708. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1709. font-weight:400;
  1710. font-style:normal;
  1711. font-size:18px;
  1712. line-height:40px;
  1713. }
  1714. #u95535 .text {
  1715. position:absolute;
  1716. align-self:center;
  1717. padding:0px 0px 0px 0px;
  1718. box-sizing:border-box;
  1719. width:100%;
  1720. }
  1721. #u95535_text {
  1722. border-width:0px;
  1723. white-space:nowrap;
  1724. text-transform:none;
  1725. }
  1726. #u95536 {
  1727. border-width:0px;
  1728. position:absolute;
  1729. left:354px;
  1730. top:213px;
  1731. width:1199px;
  1732. height:426px;
  1733. }
  1734. #u95537_img {
  1735. border-width:0px;
  1736. position:absolute;
  1737. left:0px;
  1738. top:0px;
  1739. width:54px;
  1740. height:31px;
  1741. }
  1742. #u95537 {
  1743. border-width:0px;
  1744. position:absolute;
  1745. left:0px;
  1746. top:0px;
  1747. width:54px;
  1748. height:31px;
  1749. display:flex;
  1750. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1751. font-weight:400;
  1752. font-style:normal;
  1753. font-size:14px;
  1754. color:#FFFFFF;
  1755. }
  1756. #u95537 .text {
  1757. position:absolute;
  1758. align-self:center;
  1759. padding:2px 2px 2px 2px;
  1760. box-sizing:border-box;
  1761. width:100%;
  1762. }
  1763. #u95537_text {
  1764. border-width:0px;
  1765. word-wrap:break-word;
  1766. text-transform:none;
  1767. visibility:hidden;
  1768. }
  1769. #u95538_img {
  1770. border-width:0px;
  1771. position:absolute;
  1772. left:0px;
  1773. top:0px;
  1774. width:108px;
  1775. height:31px;
  1776. }
  1777. #u95538 {
  1778. border-width:0px;
  1779. position:absolute;
  1780. left:54px;
  1781. top:0px;
  1782. width:108px;
  1783. height:31px;
  1784. display:flex;
  1785. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1786. font-weight:400;
  1787. font-style:normal;
  1788. font-size:14px;
  1789. color:#FFFFFF;
  1790. }
  1791. #u95538 .text {
  1792. position:absolute;
  1793. align-self:center;
  1794. padding:2px 2px 2px 2px;
  1795. box-sizing:border-box;
  1796. width:100%;
  1797. }
  1798. #u95538_text {
  1799. border-width:0px;
  1800. word-wrap:break-word;
  1801. text-transform:none;
  1802. }
  1803. #u95539_img {
  1804. border-width:0px;
  1805. position:absolute;
  1806. left:0px;
  1807. top:0px;
  1808. width:109px;
  1809. height:31px;
  1810. }
  1811. #u95539 {
  1812. border-width:0px;
  1813. position:absolute;
  1814. left:162px;
  1815. top:0px;
  1816. width:109px;
  1817. height:31px;
  1818. display:flex;
  1819. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1820. font-weight:400;
  1821. font-style:normal;
  1822. font-size:14px;
  1823. color:#FFFFFF;
  1824. }
  1825. #u95539 .text {
  1826. position:absolute;
  1827. align-self:center;
  1828. padding:2px 2px 2px 2px;
  1829. box-sizing:border-box;
  1830. width:100%;
  1831. }
  1832. #u95539_text {
  1833. border-width:0px;
  1834. word-wrap:break-word;
  1835. text-transform:none;
  1836. }
  1837. #u95540_img {
  1838. border-width:0px;
  1839. position:absolute;
  1840. left:0px;
  1841. top:0px;
  1842. width:108px;
  1843. height:31px;
  1844. }
  1845. #u95540 {
  1846. border-width:0px;
  1847. position:absolute;
  1848. left:271px;
  1849. top:0px;
  1850. width:108px;
  1851. height:31px;
  1852. display:flex;
  1853. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1854. font-weight:400;
  1855. font-style:normal;
  1856. font-size:14px;
  1857. color:#FFFFFF;
  1858. }
  1859. #u95540 .text {
  1860. position:absolute;
  1861. align-self:center;
  1862. padding:2px 2px 2px 2px;
  1863. box-sizing:border-box;
  1864. width:100%;
  1865. }
  1866. #u95540_text {
  1867. border-width:0px;
  1868. word-wrap:break-word;
  1869. text-transform:none;
  1870. }
  1871. #u95541_img {
  1872. border-width:0px;
  1873. position:absolute;
  1874. left:0px;
  1875. top:0px;
  1876. width:130px;
  1877. height:31px;
  1878. }
  1879. #u95541 {
  1880. border-width:0px;
  1881. position:absolute;
  1882. left:379px;
  1883. top:0px;
  1884. width:130px;
  1885. height:31px;
  1886. display:flex;
  1887. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1888. font-weight:400;
  1889. font-style:normal;
  1890. font-size:14px;
  1891. color:#FFFFFF;
  1892. }
  1893. #u95541 .text {
  1894. position:absolute;
  1895. align-self:center;
  1896. padding:2px 2px 2px 2px;
  1897. box-sizing:border-box;
  1898. width:100%;
  1899. }
  1900. #u95541_text {
  1901. border-width:0px;
  1902. word-wrap:break-word;
  1903. text-transform:none;
  1904. }
  1905. #u95542_img {
  1906. border-width:0px;
  1907. position:absolute;
  1908. left:0px;
  1909. top:0px;
  1910. width:130px;
  1911. height:31px;
  1912. }
  1913. #u95542 {
  1914. border-width:0px;
  1915. position:absolute;
  1916. left:509px;
  1917. top:0px;
  1918. width:130px;
  1919. height:31px;
  1920. display:flex;
  1921. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1922. font-weight:400;
  1923. font-style:normal;
  1924. font-size:14px;
  1925. color:#FFFFFF;
  1926. }
  1927. #u95542 .text {
  1928. position:absolute;
  1929. align-self:center;
  1930. padding:2px 2px 2px 2px;
  1931. box-sizing:border-box;
  1932. width:100%;
  1933. }
  1934. #u95542_text {
  1935. border-width:0px;
  1936. word-wrap:break-word;
  1937. text-transform:none;
  1938. }
  1939. #u95543_img {
  1940. border-width:0px;
  1941. position:absolute;
  1942. left:0px;
  1943. top:0px;
  1944. width:116px;
  1945. height:31px;
  1946. }
  1947. #u95543 {
  1948. border-width:0px;
  1949. position:absolute;
  1950. left:639px;
  1951. top:0px;
  1952. width:116px;
  1953. height:31px;
  1954. display:flex;
  1955. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1956. font-weight:400;
  1957. font-style:normal;
  1958. font-size:14px;
  1959. color:#FFFFFF;
  1960. }
  1961. #u95543 .text {
  1962. position:absolute;
  1963. align-self:center;
  1964. padding:2px 2px 2px 2px;
  1965. box-sizing:border-box;
  1966. width:100%;
  1967. }
  1968. #u95543_text {
  1969. border-width:0px;
  1970. word-wrap:break-word;
  1971. text-transform:none;
  1972. }
  1973. #u95544_img {
  1974. border-width:0px;
  1975. position:absolute;
  1976. left:0px;
  1977. top:0px;
  1978. width:109px;
  1979. height:31px;
  1980. }
  1981. #u95544 {
  1982. border-width:0px;
  1983. position:absolute;
  1984. left:755px;
  1985. top:0px;
  1986. width:109px;
  1987. height:31px;
  1988. display:flex;
  1989. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1990. font-weight:400;
  1991. font-style:normal;
  1992. font-size:14px;
  1993. color:#FFFFFF;
  1994. }
  1995. #u95544 .text {
  1996. position:absolute;
  1997. align-self:center;
  1998. padding:2px 2px 2px 2px;
  1999. box-sizing:border-box;
  2000. width:100%;
  2001. }
  2002. #u95544_text {
  2003. border-width:0px;
  2004. word-wrap:break-word;
  2005. text-transform:none;
  2006. }
  2007. #u95545_img {
  2008. border-width:0px;
  2009. position:absolute;
  2010. left:0px;
  2011. top:0px;
  2012. width:117px;
  2013. height:31px;
  2014. }
  2015. #u95545 {
  2016. border-width:0px;
  2017. position:absolute;
  2018. left:864px;
  2019. top:0px;
  2020. width:117px;
  2021. height:31px;
  2022. display:flex;
  2023. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2024. font-weight:400;
  2025. font-style:normal;
  2026. font-size:14px;
  2027. color:#FFFFFF;
  2028. }
  2029. #u95545 .text {
  2030. position:absolute;
  2031. align-self:center;
  2032. padding:2px 2px 2px 2px;
  2033. box-sizing:border-box;
  2034. width:100%;
  2035. }
  2036. #u95545_text {
  2037. border-width:0px;
  2038. word-wrap:break-word;
  2039. text-transform:none;
  2040. }
  2041. #u95546_img {
  2042. border-width:0px;
  2043. position:absolute;
  2044. left:0px;
  2045. top:0px;
  2046. width:109px;
  2047. height:31px;
  2048. }
  2049. #u95546 {
  2050. border-width:0px;
  2051. position:absolute;
  2052. left:981px;
  2053. top:0px;
  2054. width:109px;
  2055. height:31px;
  2056. display:flex;
  2057. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2058. font-weight:400;
  2059. font-style:normal;
  2060. font-size:14px;
  2061. color:#FFFFFF;
  2062. }
  2063. #u95546 .text {
  2064. position:absolute;
  2065. align-self:center;
  2066. padding:2px 2px 2px 2px;
  2067. box-sizing:border-box;
  2068. width:100%;
  2069. }
  2070. #u95546_text {
  2071. border-width:0px;
  2072. word-wrap:break-word;
  2073. text-transform:none;
  2074. }
  2075. #u95547_img {
  2076. border-width:0px;
  2077. position:absolute;
  2078. left:0px;
  2079. top:0px;
  2080. width:109px;
  2081. height:31px;
  2082. }
  2083. #u95547 {
  2084. border-width:0px;
  2085. position:absolute;
  2086. left:1090px;
  2087. top:0px;
  2088. width:109px;
  2089. height:31px;
  2090. display:flex;
  2091. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2092. font-weight:400;
  2093. font-style:normal;
  2094. font-size:14px;
  2095. color:#FFFFFF;
  2096. }
  2097. #u95547 .text {
  2098. position:absolute;
  2099. align-self:center;
  2100. padding:2px 2px 2px 2px;
  2101. box-sizing:border-box;
  2102. width:100%;
  2103. }
  2104. #u95547_text {
  2105. border-width:0px;
  2106. word-wrap:break-word;
  2107. text-transform:none;
  2108. }
  2109. #u95548_img {
  2110. border-width:0px;
  2111. position:absolute;
  2112. left:0px;
  2113. top:0px;
  2114. width:54px;
  2115. height:35px;
  2116. }
  2117. #u95548 {
  2118. border-width:0px;
  2119. position:absolute;
  2120. left:0px;
  2121. top:31px;
  2122. width:54px;
  2123. height:35px;
  2124. display:flex;
  2125. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2126. font-weight:400;
  2127. font-style:normal;
  2128. font-size:14px;
  2129. }
  2130. #u95548 .text {
  2131. position:absolute;
  2132. align-self:center;
  2133. padding:2px 2px 2px 2px;
  2134. box-sizing:border-box;
  2135. width:100%;
  2136. }
  2137. #u95548_text {
  2138. border-width:0px;
  2139. word-wrap:break-word;
  2140. text-transform:none;
  2141. visibility:hidden;
  2142. }
  2143. #u95549_img {
  2144. border-width:0px;
  2145. position:absolute;
  2146. left:0px;
  2147. top:0px;
  2148. width:108px;
  2149. height:35px;
  2150. }
  2151. #u95549 {
  2152. border-width:0px;
  2153. position:absolute;
  2154. left:54px;
  2155. top:31px;
  2156. width:108px;
  2157. height:35px;
  2158. display:flex;
  2159. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2160. font-weight:400;
  2161. font-style:normal;
  2162. font-size:14px;
  2163. }
  2164. #u95549 .text {
  2165. position:absolute;
  2166. align-self:center;
  2167. padding:2px 2px 2px 2px;
  2168. box-sizing:border-box;
  2169. width:100%;
  2170. }
  2171. #u95549_text {
  2172. border-width:0px;
  2173. word-wrap:break-word;
  2174. text-transform:none;
  2175. visibility:hidden;
  2176. }
  2177. #u95550_img {
  2178. border-width:0px;
  2179. position:absolute;
  2180. left:0px;
  2181. top:0px;
  2182. width:109px;
  2183. height:35px;
  2184. }
  2185. #u95550 {
  2186. border-width:0px;
  2187. position:absolute;
  2188. left:162px;
  2189. top:31px;
  2190. width:109px;
  2191. height:35px;
  2192. display:flex;
  2193. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2194. font-weight:400;
  2195. font-style:normal;
  2196. font-size:14px;
  2197. }
  2198. #u95550 .text {
  2199. position:absolute;
  2200. align-self:center;
  2201. padding:2px 2px 2px 2px;
  2202. box-sizing:border-box;
  2203. width:100%;
  2204. }
  2205. #u95550_text {
  2206. border-width:0px;
  2207. word-wrap:break-word;
  2208. text-transform:none;
  2209. }
  2210. #u95551_img {
  2211. border-width:0px;
  2212. position:absolute;
  2213. left:0px;
  2214. top:0px;
  2215. width:108px;
  2216. height:35px;
  2217. }
  2218. #u95551 {
  2219. border-width:0px;
  2220. position:absolute;
  2221. left:271px;
  2222. top:31px;
  2223. width:108px;
  2224. height:35px;
  2225. display:flex;
  2226. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2227. font-weight:400;
  2228. font-style:normal;
  2229. font-size:14px;
  2230. }
  2231. #u95551 .text {
  2232. position:absolute;
  2233. align-self:center;
  2234. padding:2px 2px 2px 2px;
  2235. box-sizing:border-box;
  2236. width:100%;
  2237. }
  2238. #u95551_text {
  2239. border-width:0px;
  2240. word-wrap:break-word;
  2241. text-transform:none;
  2242. visibility:hidden;
  2243. }
  2244. #u95552_img {
  2245. border-width:0px;
  2246. position:absolute;
  2247. left:0px;
  2248. top:0px;
  2249. width:130px;
  2250. height:35px;
  2251. }
  2252. #u95552 {
  2253. border-width:0px;
  2254. position:absolute;
  2255. left:379px;
  2256. top:31px;
  2257. width:130px;
  2258. height:35px;
  2259. display:flex;
  2260. font-size:14px;
  2261. }
  2262. #u95552 .text {
  2263. position:absolute;
  2264. align-self:center;
  2265. padding:2px 2px 2px 2px;
  2266. box-sizing:border-box;
  2267. width:100%;
  2268. }
  2269. #u95552_text {
  2270. border-width:0px;
  2271. word-wrap:break-word;
  2272. text-transform:none;
  2273. }
  2274. #u95553_img {
  2275. border-width:0px;
  2276. position:absolute;
  2277. left:0px;
  2278. top:0px;
  2279. width:130px;
  2280. height:35px;
  2281. }
  2282. #u95553 {
  2283. border-width:0px;
  2284. position:absolute;
  2285. left:509px;
  2286. top:31px;
  2287. width:130px;
  2288. height:35px;
  2289. display:flex;
  2290. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2291. font-weight:400;
  2292. font-style:normal;
  2293. font-size:14px;
  2294. }
  2295. #u95553 .text {
  2296. position:absolute;
  2297. align-self:center;
  2298. padding:2px 2px 2px 2px;
  2299. box-sizing:border-box;
  2300. width:100%;
  2301. }
  2302. #u95553_text {
  2303. border-width:0px;
  2304. word-wrap:break-word;
  2305. text-transform:none;
  2306. visibility:hidden;
  2307. }
  2308. #u95554_img {
  2309. border-width:0px;
  2310. position:absolute;
  2311. left:0px;
  2312. top:0px;
  2313. width:116px;
  2314. height:35px;
  2315. }
  2316. #u95554 {
  2317. border-width:0px;
  2318. position:absolute;
  2319. left:639px;
  2320. top:31px;
  2321. width:116px;
  2322. height:35px;
  2323. display:flex;
  2324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2325. font-weight:400;
  2326. font-style:normal;
  2327. font-size:14px;
  2328. }
  2329. #u95554 .text {
  2330. position:absolute;
  2331. align-self:center;
  2332. padding:2px 2px 2px 2px;
  2333. box-sizing:border-box;
  2334. width:100%;
  2335. }
  2336. #u95554_text {
  2337. border-width:0px;
  2338. word-wrap:break-word;
  2339. text-transform:none;
  2340. visibility:hidden;
  2341. }
  2342. #u95555_img {
  2343. border-width:0px;
  2344. position:absolute;
  2345. left:0px;
  2346. top:0px;
  2347. width:109px;
  2348. height:35px;
  2349. }
  2350. #u95555 {
  2351. border-width:0px;
  2352. position:absolute;
  2353. left:755px;
  2354. top:31px;
  2355. width:109px;
  2356. height:35px;
  2357. display:flex;
  2358. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2359. font-weight:400;
  2360. font-style:normal;
  2361. font-size:14px;
  2362. }
  2363. #u95555 .text {
  2364. position:absolute;
  2365. align-self:center;
  2366. padding:2px 2px 2px 2px;
  2367. box-sizing:border-box;
  2368. width:100%;
  2369. }
  2370. #u95555_text {
  2371. border-width:0px;
  2372. word-wrap:break-word;
  2373. text-transform:none;
  2374. visibility:hidden;
  2375. }
  2376. #u95556_img {
  2377. border-width:0px;
  2378. position:absolute;
  2379. left:0px;
  2380. top:0px;
  2381. width:117px;
  2382. height:35px;
  2383. }
  2384. #u95556 {
  2385. border-width:0px;
  2386. position:absolute;
  2387. left:864px;
  2388. top:31px;
  2389. width:117px;
  2390. height:35px;
  2391. display:flex;
  2392. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2393. font-weight:400;
  2394. font-style:normal;
  2395. font-size:14px;
  2396. }
  2397. #u95556 .text {
  2398. position:absolute;
  2399. align-self:center;
  2400. padding:2px 2px 2px 2px;
  2401. box-sizing:border-box;
  2402. width:100%;
  2403. }
  2404. #u95556_text {
  2405. border-width:0px;
  2406. word-wrap:break-word;
  2407. text-transform:none;
  2408. visibility:hidden;
  2409. }
  2410. #u95557_img {
  2411. border-width:0px;
  2412. position:absolute;
  2413. left:0px;
  2414. top:0px;
  2415. width:109px;
  2416. height:35px;
  2417. }
  2418. #u95557 {
  2419. border-width:0px;
  2420. position:absolute;
  2421. left:981px;
  2422. top:31px;
  2423. width:109px;
  2424. height:35px;
  2425. display:flex;
  2426. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2427. font-weight:400;
  2428. font-style:normal;
  2429. font-size:14px;
  2430. }
  2431. #u95557 .text {
  2432. position:absolute;
  2433. align-self:center;
  2434. padding:2px 2px 2px 2px;
  2435. box-sizing:border-box;
  2436. width:100%;
  2437. }
  2438. #u95557_text {
  2439. border-width:0px;
  2440. word-wrap:break-word;
  2441. text-transform:none;
  2442. }
  2443. #u95558_img {
  2444. border-width:0px;
  2445. position:absolute;
  2446. left:0px;
  2447. top:0px;
  2448. width:109px;
  2449. height:35px;
  2450. }
  2451. #u95558 {
  2452. border-width:0px;
  2453. position:absolute;
  2454. left:1090px;
  2455. top:31px;
  2456. width:109px;
  2457. height:35px;
  2458. display:flex;
  2459. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2460. font-weight:400;
  2461. font-style:normal;
  2462. font-size:14px;
  2463. color:#298FFF;
  2464. }
  2465. #u95558 .text {
  2466. position:absolute;
  2467. align-self:center;
  2468. padding:2px 2px 2px 2px;
  2469. box-sizing:border-box;
  2470. width:100%;
  2471. }
  2472. #u95558_text {
  2473. border-width:0px;
  2474. word-wrap:break-word;
  2475. text-transform:none;
  2476. }
  2477. #u95559_img {
  2478. border-width:0px;
  2479. position:absolute;
  2480. left:0px;
  2481. top:0px;
  2482. width:54px;
  2483. height:30px;
  2484. }
  2485. #u95559 {
  2486. border-width:0px;
  2487. position:absolute;
  2488. left:0px;
  2489. top:66px;
  2490. width:54px;
  2491. height:30px;
  2492. display:flex;
  2493. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2494. font-weight:400;
  2495. font-style:normal;
  2496. font-size:14px;
  2497. }
  2498. #u95559 .text {
  2499. position:absolute;
  2500. align-self:center;
  2501. padding:2px 2px 2px 2px;
  2502. box-sizing:border-box;
  2503. width:100%;
  2504. }
  2505. #u95559_text {
  2506. border-width:0px;
  2507. word-wrap:break-word;
  2508. text-transform:none;
  2509. visibility:hidden;
  2510. }
  2511. #u95560_img {
  2512. border-width:0px;
  2513. position:absolute;
  2514. left:0px;
  2515. top:0px;
  2516. width:108px;
  2517. height:30px;
  2518. }
  2519. #u95560 {
  2520. border-width:0px;
  2521. position:absolute;
  2522. left:54px;
  2523. top:66px;
  2524. width:108px;
  2525. height:30px;
  2526. display:flex;
  2527. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2528. font-weight:400;
  2529. font-style:normal;
  2530. font-size:14px;
  2531. }
  2532. #u95560 .text {
  2533. position:absolute;
  2534. align-self:center;
  2535. padding:2px 2px 2px 2px;
  2536. box-sizing:border-box;
  2537. width:100%;
  2538. }
  2539. #u95560_text {
  2540. border-width:0px;
  2541. word-wrap:break-word;
  2542. text-transform:none;
  2543. visibility:hidden;
  2544. }
  2545. #u95561_img {
  2546. border-width:0px;
  2547. position:absolute;
  2548. left:0px;
  2549. top:0px;
  2550. width:109px;
  2551. height:30px;
  2552. }
  2553. #u95561 {
  2554. border-width:0px;
  2555. position:absolute;
  2556. left:162px;
  2557. top:66px;
  2558. width:109px;
  2559. height:30px;
  2560. display:flex;
  2561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2562. font-weight:400;
  2563. font-style:normal;
  2564. font-size:14px;
  2565. }
  2566. #u95561 .text {
  2567. position:absolute;
  2568. align-self:center;
  2569. padding:2px 2px 2px 2px;
  2570. box-sizing:border-box;
  2571. width:100%;
  2572. }
  2573. #u95561_text {
  2574. border-width:0px;
  2575. word-wrap:break-word;
  2576. text-transform:none;
  2577. visibility:hidden;
  2578. }
  2579. #u95562_img {
  2580. border-width:0px;
  2581. position:absolute;
  2582. left:0px;
  2583. top:0px;
  2584. width:108px;
  2585. height:30px;
  2586. }
  2587. #u95562 {
  2588. border-width:0px;
  2589. position:absolute;
  2590. left:271px;
  2591. top:66px;
  2592. width:108px;
  2593. height:30px;
  2594. display:flex;
  2595. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2596. font-weight:400;
  2597. font-style:normal;
  2598. font-size:14px;
  2599. }
  2600. #u95562 .text {
  2601. position:absolute;
  2602. align-self:center;
  2603. padding:2px 2px 2px 2px;
  2604. box-sizing:border-box;
  2605. width:100%;
  2606. }
  2607. #u95562_text {
  2608. border-width:0px;
  2609. word-wrap:break-word;
  2610. text-transform:none;
  2611. visibility:hidden;
  2612. }
  2613. #u95563_img {
  2614. border-width:0px;
  2615. position:absolute;
  2616. left:0px;
  2617. top:0px;
  2618. width:130px;
  2619. height:30px;
  2620. }
  2621. #u95563 {
  2622. border-width:0px;
  2623. position:absolute;
  2624. left:379px;
  2625. top:66px;
  2626. width:130px;
  2627. height:30px;
  2628. display:flex;
  2629. font-size:14px;
  2630. }
  2631. #u95563 .text {
  2632. position:absolute;
  2633. align-self:center;
  2634. padding:2px 2px 2px 2px;
  2635. box-sizing:border-box;
  2636. width:100%;
  2637. }
  2638. #u95563_text {
  2639. border-width:0px;
  2640. word-wrap:break-word;
  2641. text-transform:none;
  2642. visibility:hidden;
  2643. }
  2644. #u95564_img {
  2645. border-width:0px;
  2646. position:absolute;
  2647. left:0px;
  2648. top:0px;
  2649. width:130px;
  2650. height:30px;
  2651. }
  2652. #u95564 {
  2653. border-width:0px;
  2654. position:absolute;
  2655. left:509px;
  2656. top:66px;
  2657. width:130px;
  2658. height:30px;
  2659. display:flex;
  2660. font-size:14px;
  2661. }
  2662. #u95564 .text {
  2663. position:absolute;
  2664. align-self:center;
  2665. padding:2px 2px 2px 2px;
  2666. box-sizing:border-box;
  2667. width:100%;
  2668. }
  2669. #u95564_text {
  2670. border-width:0px;
  2671. word-wrap:break-word;
  2672. text-transform:none;
  2673. visibility:hidden;
  2674. }
  2675. #u95565_img {
  2676. border-width:0px;
  2677. position:absolute;
  2678. left:0px;
  2679. top:0px;
  2680. width:116px;
  2681. height:30px;
  2682. }
  2683. #u95565 {
  2684. border-width:0px;
  2685. position:absolute;
  2686. left:639px;
  2687. top:66px;
  2688. width:116px;
  2689. height:30px;
  2690. display:flex;
  2691. font-size:14px;
  2692. }
  2693. #u95565 .text {
  2694. position:absolute;
  2695. align-self:center;
  2696. padding:2px 2px 2px 2px;
  2697. box-sizing:border-box;
  2698. width:100%;
  2699. }
  2700. #u95565_text {
  2701. border-width:0px;
  2702. word-wrap:break-word;
  2703. text-transform:none;
  2704. visibility:hidden;
  2705. }
  2706. #u95566_img {
  2707. border-width:0px;
  2708. position:absolute;
  2709. left:0px;
  2710. top:0px;
  2711. width:109px;
  2712. height:30px;
  2713. }
  2714. #u95566 {
  2715. border-width:0px;
  2716. position:absolute;
  2717. left:755px;
  2718. top:66px;
  2719. width:109px;
  2720. height:30px;
  2721. display:flex;
  2722. font-size:14px;
  2723. }
  2724. #u95566 .text {
  2725. position:absolute;
  2726. align-self:center;
  2727. padding:2px 2px 2px 2px;
  2728. box-sizing:border-box;
  2729. width:100%;
  2730. }
  2731. #u95566_text {
  2732. border-width:0px;
  2733. word-wrap:break-word;
  2734. text-transform:none;
  2735. visibility:hidden;
  2736. }
  2737. #u95567_img {
  2738. border-width:0px;
  2739. position:absolute;
  2740. left:0px;
  2741. top:0px;
  2742. width:117px;
  2743. height:30px;
  2744. }
  2745. #u95567 {
  2746. border-width:0px;
  2747. position:absolute;
  2748. left:864px;
  2749. top:66px;
  2750. width:117px;
  2751. height:30px;
  2752. display:flex;
  2753. font-size:14px;
  2754. }
  2755. #u95567 .text {
  2756. position:absolute;
  2757. align-self:center;
  2758. padding:2px 2px 2px 2px;
  2759. box-sizing:border-box;
  2760. width:100%;
  2761. }
  2762. #u95567_text {
  2763. border-width:0px;
  2764. word-wrap:break-word;
  2765. text-transform:none;
  2766. visibility:hidden;
  2767. }
  2768. #u95568_img {
  2769. border-width:0px;
  2770. position:absolute;
  2771. left:0px;
  2772. top:0px;
  2773. width:109px;
  2774. height:30px;
  2775. }
  2776. #u95568 {
  2777. border-width:0px;
  2778. position:absolute;
  2779. left:981px;
  2780. top:66px;
  2781. width:109px;
  2782. height:30px;
  2783. display:flex;
  2784. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2785. font-weight:400;
  2786. font-style:normal;
  2787. font-size:14px;
  2788. }
  2789. #u95568 .text {
  2790. position:absolute;
  2791. align-self:center;
  2792. padding:2px 2px 2px 2px;
  2793. box-sizing:border-box;
  2794. width:100%;
  2795. }
  2796. #u95568_text {
  2797. border-width:0px;
  2798. word-wrap:break-word;
  2799. text-transform:none;
  2800. }
  2801. #u95569_img {
  2802. border-width:0px;
  2803. position:absolute;
  2804. left:0px;
  2805. top:0px;
  2806. width:109px;
  2807. height:30px;
  2808. }
  2809. #u95569 {
  2810. border-width:0px;
  2811. position:absolute;
  2812. left:1090px;
  2813. top:66px;
  2814. width:109px;
  2815. height:30px;
  2816. display:flex;
  2817. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2818. font-weight:400;
  2819. font-style:normal;
  2820. font-size:14px;
  2821. color:#298FFF;
  2822. }
  2823. #u95569 .text {
  2824. position:absolute;
  2825. align-self:center;
  2826. padding:2px 2px 2px 2px;
  2827. box-sizing:border-box;
  2828. width:100%;
  2829. }
  2830. #u95569_text {
  2831. border-width:0px;
  2832. word-wrap:break-word;
  2833. text-transform:none;
  2834. }
  2835. #u95570_img {
  2836. border-width:0px;
  2837. position:absolute;
  2838. left:0px;
  2839. top:0px;
  2840. width:54px;
  2841. height:30px;
  2842. }
  2843. #u95570 {
  2844. border-width:0px;
  2845. position:absolute;
  2846. left:0px;
  2847. top:96px;
  2848. width:54px;
  2849. height:30px;
  2850. display:flex;
  2851. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2852. font-weight:400;
  2853. font-style:normal;
  2854. font-size:14px;
  2855. }
  2856. #u95570 .text {
  2857. position:absolute;
  2858. align-self:center;
  2859. padding:2px 2px 2px 2px;
  2860. box-sizing:border-box;
  2861. width:100%;
  2862. }
  2863. #u95570_text {
  2864. border-width:0px;
  2865. word-wrap:break-word;
  2866. text-transform:none;
  2867. visibility:hidden;
  2868. }
  2869. #u95571_img {
  2870. border-width:0px;
  2871. position:absolute;
  2872. left:0px;
  2873. top:0px;
  2874. width:108px;
  2875. height:30px;
  2876. }
  2877. #u95571 {
  2878. border-width:0px;
  2879. position:absolute;
  2880. left:54px;
  2881. top:96px;
  2882. width:108px;
  2883. height:30px;
  2884. display:flex;
  2885. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2886. font-weight:400;
  2887. font-style:normal;
  2888. font-size:14px;
  2889. }
  2890. #u95571 .text {
  2891. position:absolute;
  2892. align-self:center;
  2893. padding:2px 2px 2px 2px;
  2894. box-sizing:border-box;
  2895. width:100%;
  2896. }
  2897. #u95571_text {
  2898. border-width:0px;
  2899. word-wrap:break-word;
  2900. text-transform:none;
  2901. visibility:hidden;
  2902. }
  2903. #u95572_img {
  2904. border-width:0px;
  2905. position:absolute;
  2906. left:0px;
  2907. top:0px;
  2908. width:109px;
  2909. height:30px;
  2910. }
  2911. #u95572 {
  2912. border-width:0px;
  2913. position:absolute;
  2914. left:162px;
  2915. top:96px;
  2916. width:109px;
  2917. height:30px;
  2918. display:flex;
  2919. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2920. font-weight:400;
  2921. font-style:normal;
  2922. font-size:14px;
  2923. }
  2924. #u95572 .text {
  2925. position:absolute;
  2926. align-self:center;
  2927. padding:2px 2px 2px 2px;
  2928. box-sizing:border-box;
  2929. width:100%;
  2930. }
  2931. #u95572_text {
  2932. border-width:0px;
  2933. word-wrap:break-word;
  2934. text-transform:none;
  2935. visibility:hidden;
  2936. }
  2937. #u95573_img {
  2938. border-width:0px;
  2939. position:absolute;
  2940. left:0px;
  2941. top:0px;
  2942. width:108px;
  2943. height:30px;
  2944. }
  2945. #u95573 {
  2946. border-width:0px;
  2947. position:absolute;
  2948. left:271px;
  2949. top:96px;
  2950. width:108px;
  2951. height:30px;
  2952. display:flex;
  2953. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2954. font-weight:400;
  2955. font-style:normal;
  2956. font-size:14px;
  2957. }
  2958. #u95573 .text {
  2959. position:absolute;
  2960. align-self:center;
  2961. padding:2px 2px 2px 2px;
  2962. box-sizing:border-box;
  2963. width:100%;
  2964. }
  2965. #u95573_text {
  2966. border-width:0px;
  2967. word-wrap:break-word;
  2968. text-transform:none;
  2969. visibility:hidden;
  2970. }
  2971. #u95574_img {
  2972. border-width:0px;
  2973. position:absolute;
  2974. left:0px;
  2975. top:0px;
  2976. width:130px;
  2977. height:30px;
  2978. }
  2979. #u95574 {
  2980. border-width:0px;
  2981. position:absolute;
  2982. left:379px;
  2983. top:96px;
  2984. width:130px;
  2985. height:30px;
  2986. display:flex;
  2987. font-size:14px;
  2988. }
  2989. #u95574 .text {
  2990. position:absolute;
  2991. align-self:center;
  2992. padding:2px 2px 2px 2px;
  2993. box-sizing:border-box;
  2994. width:100%;
  2995. }
  2996. #u95574_text {
  2997. border-width:0px;
  2998. word-wrap:break-word;
  2999. text-transform:none;
  3000. visibility:hidden;
  3001. }
  3002. #u95575_img {
  3003. border-width:0px;
  3004. position:absolute;
  3005. left:0px;
  3006. top:0px;
  3007. width:130px;
  3008. height:30px;
  3009. }
  3010. #u95575 {
  3011. border-width:0px;
  3012. position:absolute;
  3013. left:509px;
  3014. top:96px;
  3015. width:130px;
  3016. height:30px;
  3017. display:flex;
  3018. font-size:14px;
  3019. }
  3020. #u95575 .text {
  3021. position:absolute;
  3022. align-self:center;
  3023. padding:2px 2px 2px 2px;
  3024. box-sizing:border-box;
  3025. width:100%;
  3026. }
  3027. #u95575_text {
  3028. border-width:0px;
  3029. word-wrap:break-word;
  3030. text-transform:none;
  3031. visibility:hidden;
  3032. }
  3033. #u95576_img {
  3034. border-width:0px;
  3035. position:absolute;
  3036. left:0px;
  3037. top:0px;
  3038. width:116px;
  3039. height:30px;
  3040. }
  3041. #u95576 {
  3042. border-width:0px;
  3043. position:absolute;
  3044. left:639px;
  3045. top:96px;
  3046. width:116px;
  3047. height:30px;
  3048. display:flex;
  3049. font-size:14px;
  3050. }
  3051. #u95576 .text {
  3052. position:absolute;
  3053. align-self:center;
  3054. padding:2px 2px 2px 2px;
  3055. box-sizing:border-box;
  3056. width:100%;
  3057. }
  3058. #u95576_text {
  3059. border-width:0px;
  3060. word-wrap:break-word;
  3061. text-transform:none;
  3062. visibility:hidden;
  3063. }
  3064. #u95577_img {
  3065. border-width:0px;
  3066. position:absolute;
  3067. left:0px;
  3068. top:0px;
  3069. width:109px;
  3070. height:30px;
  3071. }
  3072. #u95577 {
  3073. border-width:0px;
  3074. position:absolute;
  3075. left:755px;
  3076. top:96px;
  3077. width:109px;
  3078. height:30px;
  3079. display:flex;
  3080. font-size:14px;
  3081. }
  3082. #u95577 .text {
  3083. position:absolute;
  3084. align-self:center;
  3085. padding:2px 2px 2px 2px;
  3086. box-sizing:border-box;
  3087. width:100%;
  3088. }
  3089. #u95577_text {
  3090. border-width:0px;
  3091. word-wrap:break-word;
  3092. text-transform:none;
  3093. visibility:hidden;
  3094. }
  3095. #u95578_img {
  3096. border-width:0px;
  3097. position:absolute;
  3098. left:0px;
  3099. top:0px;
  3100. width:117px;
  3101. height:30px;
  3102. }
  3103. #u95578 {
  3104. border-width:0px;
  3105. position:absolute;
  3106. left:864px;
  3107. top:96px;
  3108. width:117px;
  3109. height:30px;
  3110. display:flex;
  3111. font-size:14px;
  3112. }
  3113. #u95578 .text {
  3114. position:absolute;
  3115. align-self:center;
  3116. padding:2px 2px 2px 2px;
  3117. box-sizing:border-box;
  3118. width:100%;
  3119. }
  3120. #u95578_text {
  3121. border-width:0px;
  3122. word-wrap:break-word;
  3123. text-transform:none;
  3124. visibility:hidden;
  3125. }
  3126. #u95579_img {
  3127. border-width:0px;
  3128. position:absolute;
  3129. left:0px;
  3130. top:0px;
  3131. width:109px;
  3132. height:30px;
  3133. }
  3134. #u95579 {
  3135. border-width:0px;
  3136. position:absolute;
  3137. left:981px;
  3138. top:96px;
  3139. width:109px;
  3140. height:30px;
  3141. display:flex;
  3142. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3143. font-weight:400;
  3144. font-style:normal;
  3145. font-size:14px;
  3146. }
  3147. #u95579 .text {
  3148. position:absolute;
  3149. align-self:center;
  3150. padding:2px 2px 2px 2px;
  3151. box-sizing:border-box;
  3152. width:100%;
  3153. }
  3154. #u95579_text {
  3155. border-width:0px;
  3156. word-wrap:break-word;
  3157. text-transform:none;
  3158. }
  3159. #u95580_img {
  3160. border-width:0px;
  3161. position:absolute;
  3162. left:0px;
  3163. top:0px;
  3164. width:109px;
  3165. height:30px;
  3166. }
  3167. #u95580 {
  3168. border-width:0px;
  3169. position:absolute;
  3170. left:1090px;
  3171. top:96px;
  3172. width:109px;
  3173. height:30px;
  3174. display:flex;
  3175. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3176. font-weight:400;
  3177. font-style:normal;
  3178. font-size:14px;
  3179. color:#298FFF;
  3180. }
  3181. #u95580 .text {
  3182. position:absolute;
  3183. align-self:center;
  3184. padding:2px 2px 2px 2px;
  3185. box-sizing:border-box;
  3186. width:100%;
  3187. }
  3188. #u95580_text {
  3189. border-width:0px;
  3190. word-wrap:break-word;
  3191. text-transform:none;
  3192. }
  3193. #u95581_img {
  3194. border-width:0px;
  3195. position:absolute;
  3196. left:0px;
  3197. top:0px;
  3198. width:54px;
  3199. height:30px;
  3200. }
  3201. #u95581 {
  3202. border-width:0px;
  3203. position:absolute;
  3204. left:0px;
  3205. top:126px;
  3206. width:54px;
  3207. height:30px;
  3208. display:flex;
  3209. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3210. font-weight:400;
  3211. font-style:normal;
  3212. font-size:14px;
  3213. }
  3214. #u95581 .text {
  3215. position:absolute;
  3216. align-self:center;
  3217. padding:2px 2px 2px 2px;
  3218. box-sizing:border-box;
  3219. width:100%;
  3220. }
  3221. #u95581_text {
  3222. border-width:0px;
  3223. word-wrap:break-word;
  3224. text-transform:none;
  3225. visibility:hidden;
  3226. }
  3227. #u95582_img {
  3228. border-width:0px;
  3229. position:absolute;
  3230. left:0px;
  3231. top:0px;
  3232. width:108px;
  3233. height:30px;
  3234. }
  3235. #u95582 {
  3236. border-width:0px;
  3237. position:absolute;
  3238. left:54px;
  3239. top:126px;
  3240. width:108px;
  3241. height:30px;
  3242. display:flex;
  3243. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3244. font-weight:400;
  3245. font-style:normal;
  3246. font-size:14px;
  3247. }
  3248. #u95582 .text {
  3249. position:absolute;
  3250. align-self:center;
  3251. padding:2px 2px 2px 2px;
  3252. box-sizing:border-box;
  3253. width:100%;
  3254. }
  3255. #u95582_text {
  3256. border-width:0px;
  3257. word-wrap:break-word;
  3258. text-transform:none;
  3259. visibility:hidden;
  3260. }
  3261. #u95583_img {
  3262. border-width:0px;
  3263. position:absolute;
  3264. left:0px;
  3265. top:0px;
  3266. width:109px;
  3267. height:30px;
  3268. }
  3269. #u95583 {
  3270. border-width:0px;
  3271. position:absolute;
  3272. left:162px;
  3273. top:126px;
  3274. width:109px;
  3275. height:30px;
  3276. display:flex;
  3277. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3278. font-weight:400;
  3279. font-style:normal;
  3280. font-size:14px;
  3281. }
  3282. #u95583 .text {
  3283. position:absolute;
  3284. align-self:center;
  3285. padding:2px 2px 2px 2px;
  3286. box-sizing:border-box;
  3287. width:100%;
  3288. }
  3289. #u95583_text {
  3290. border-width:0px;
  3291. word-wrap:break-word;
  3292. text-transform:none;
  3293. visibility:hidden;
  3294. }
  3295. #u95584_img {
  3296. border-width:0px;
  3297. position:absolute;
  3298. left:0px;
  3299. top:0px;
  3300. width:108px;
  3301. height:30px;
  3302. }
  3303. #u95584 {
  3304. border-width:0px;
  3305. position:absolute;
  3306. left:271px;
  3307. top:126px;
  3308. width:108px;
  3309. height:30px;
  3310. display:flex;
  3311. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3312. font-weight:400;
  3313. font-style:normal;
  3314. font-size:14px;
  3315. }
  3316. #u95584 .text {
  3317. position:absolute;
  3318. align-self:center;
  3319. padding:2px 2px 2px 2px;
  3320. box-sizing:border-box;
  3321. width:100%;
  3322. }
  3323. #u95584_text {
  3324. border-width:0px;
  3325. word-wrap:break-word;
  3326. text-transform:none;
  3327. visibility:hidden;
  3328. }
  3329. #u95585_img {
  3330. border-width:0px;
  3331. position:absolute;
  3332. left:0px;
  3333. top:0px;
  3334. width:130px;
  3335. height:30px;
  3336. }
  3337. #u95585 {
  3338. border-width:0px;
  3339. position:absolute;
  3340. left:379px;
  3341. top:126px;
  3342. width:130px;
  3343. height:30px;
  3344. display:flex;
  3345. font-size:14px;
  3346. }
  3347. #u95585 .text {
  3348. position:absolute;
  3349. align-self:center;
  3350. padding:2px 2px 2px 2px;
  3351. box-sizing:border-box;
  3352. width:100%;
  3353. }
  3354. #u95585_text {
  3355. border-width:0px;
  3356. word-wrap:break-word;
  3357. text-transform:none;
  3358. visibility:hidden;
  3359. }
  3360. #u95586_img {
  3361. border-width:0px;
  3362. position:absolute;
  3363. left:0px;
  3364. top:0px;
  3365. width:130px;
  3366. height:30px;
  3367. }
  3368. #u95586 {
  3369. border-width:0px;
  3370. position:absolute;
  3371. left:509px;
  3372. top:126px;
  3373. width:130px;
  3374. height:30px;
  3375. display:flex;
  3376. font-size:14px;
  3377. }
  3378. #u95586 .text {
  3379. position:absolute;
  3380. align-self:center;
  3381. padding:2px 2px 2px 2px;
  3382. box-sizing:border-box;
  3383. width:100%;
  3384. }
  3385. #u95586_text {
  3386. border-width:0px;
  3387. word-wrap:break-word;
  3388. text-transform:none;
  3389. visibility:hidden;
  3390. }
  3391. #u95587_img {
  3392. border-width:0px;
  3393. position:absolute;
  3394. left:0px;
  3395. top:0px;
  3396. width:116px;
  3397. height:30px;
  3398. }
  3399. #u95587 {
  3400. border-width:0px;
  3401. position:absolute;
  3402. left:639px;
  3403. top:126px;
  3404. width:116px;
  3405. height:30px;
  3406. display:flex;
  3407. font-size:14px;
  3408. }
  3409. #u95587 .text {
  3410. position:absolute;
  3411. align-self:center;
  3412. padding:2px 2px 2px 2px;
  3413. box-sizing:border-box;
  3414. width:100%;
  3415. }
  3416. #u95587_text {
  3417. border-width:0px;
  3418. word-wrap:break-word;
  3419. text-transform:none;
  3420. visibility:hidden;
  3421. }
  3422. #u95588_img {
  3423. border-width:0px;
  3424. position:absolute;
  3425. left:0px;
  3426. top:0px;
  3427. width:109px;
  3428. height:30px;
  3429. }
  3430. #u95588 {
  3431. border-width:0px;
  3432. position:absolute;
  3433. left:755px;
  3434. top:126px;
  3435. width:109px;
  3436. height:30px;
  3437. display:flex;
  3438. font-size:14px;
  3439. }
  3440. #u95588 .text {
  3441. position:absolute;
  3442. align-self:center;
  3443. padding:2px 2px 2px 2px;
  3444. box-sizing:border-box;
  3445. width:100%;
  3446. }
  3447. #u95588_text {
  3448. border-width:0px;
  3449. word-wrap:break-word;
  3450. text-transform:none;
  3451. visibility:hidden;
  3452. }
  3453. #u95589_img {
  3454. border-width:0px;
  3455. position:absolute;
  3456. left:0px;
  3457. top:0px;
  3458. width:117px;
  3459. height:30px;
  3460. }
  3461. #u95589 {
  3462. border-width:0px;
  3463. position:absolute;
  3464. left:864px;
  3465. top:126px;
  3466. width:117px;
  3467. height:30px;
  3468. display:flex;
  3469. font-size:14px;
  3470. }
  3471. #u95589 .text {
  3472. position:absolute;
  3473. align-self:center;
  3474. padding:2px 2px 2px 2px;
  3475. box-sizing:border-box;
  3476. width:100%;
  3477. }
  3478. #u95589_text {
  3479. border-width:0px;
  3480. word-wrap:break-word;
  3481. text-transform:none;
  3482. visibility:hidden;
  3483. }
  3484. #u95590_img {
  3485. border-width:0px;
  3486. position:absolute;
  3487. left:0px;
  3488. top:0px;
  3489. width:109px;
  3490. height:30px;
  3491. }
  3492. #u95590 {
  3493. border-width:0px;
  3494. position:absolute;
  3495. left:981px;
  3496. top:126px;
  3497. width:109px;
  3498. height:30px;
  3499. display:flex;
  3500. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3501. font-weight:400;
  3502. font-style:normal;
  3503. font-size:14px;
  3504. }
  3505. #u95590 .text {
  3506. position:absolute;
  3507. align-self:center;
  3508. padding:2px 2px 2px 2px;
  3509. box-sizing:border-box;
  3510. width:100%;
  3511. }
  3512. #u95590_text {
  3513. border-width:0px;
  3514. word-wrap:break-word;
  3515. text-transform:none;
  3516. }
  3517. #u95591_img {
  3518. border-width:0px;
  3519. position:absolute;
  3520. left:0px;
  3521. top:0px;
  3522. width:109px;
  3523. height:30px;
  3524. }
  3525. #u95591 {
  3526. border-width:0px;
  3527. position:absolute;
  3528. left:1090px;
  3529. top:126px;
  3530. width:109px;
  3531. height:30px;
  3532. display:flex;
  3533. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3534. font-weight:400;
  3535. font-style:normal;
  3536. font-size:14px;
  3537. color:#298FFF;
  3538. }
  3539. #u95591 .text {
  3540. position:absolute;
  3541. align-self:center;
  3542. padding:2px 2px 2px 2px;
  3543. box-sizing:border-box;
  3544. width:100%;
  3545. }
  3546. #u95591_text {
  3547. border-width:0px;
  3548. word-wrap:break-word;
  3549. text-transform:none;
  3550. }
  3551. #u95592_img {
  3552. border-width:0px;
  3553. position:absolute;
  3554. left:0px;
  3555. top:0px;
  3556. width:54px;
  3557. height:30px;
  3558. }
  3559. #u95592 {
  3560. border-width:0px;
  3561. position:absolute;
  3562. left:0px;
  3563. top:156px;
  3564. width:54px;
  3565. height:30px;
  3566. display:flex;
  3567. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3568. font-weight:400;
  3569. font-style:normal;
  3570. font-size:14px;
  3571. }
  3572. #u95592 .text {
  3573. position:absolute;
  3574. align-self:center;
  3575. padding:2px 2px 2px 2px;
  3576. box-sizing:border-box;
  3577. width:100%;
  3578. }
  3579. #u95592_text {
  3580. border-width:0px;
  3581. word-wrap:break-word;
  3582. text-transform:none;
  3583. visibility:hidden;
  3584. }
  3585. #u95593_img {
  3586. border-width:0px;
  3587. position:absolute;
  3588. left:0px;
  3589. top:0px;
  3590. width:108px;
  3591. height:30px;
  3592. }
  3593. #u95593 {
  3594. border-width:0px;
  3595. position:absolute;
  3596. left:54px;
  3597. top:156px;
  3598. width:108px;
  3599. height:30px;
  3600. display:flex;
  3601. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3602. font-weight:400;
  3603. font-style:normal;
  3604. font-size:14px;
  3605. }
  3606. #u95593 .text {
  3607. position:absolute;
  3608. align-self:center;
  3609. padding:2px 2px 2px 2px;
  3610. box-sizing:border-box;
  3611. width:100%;
  3612. }
  3613. #u95593_text {
  3614. border-width:0px;
  3615. word-wrap:break-word;
  3616. text-transform:none;
  3617. visibility:hidden;
  3618. }
  3619. #u95594_img {
  3620. border-width:0px;
  3621. position:absolute;
  3622. left:0px;
  3623. top:0px;
  3624. width:109px;
  3625. height:30px;
  3626. }
  3627. #u95594 {
  3628. border-width:0px;
  3629. position:absolute;
  3630. left:162px;
  3631. top:156px;
  3632. width:109px;
  3633. height:30px;
  3634. display:flex;
  3635. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3636. font-weight:400;
  3637. font-style:normal;
  3638. font-size:14px;
  3639. }
  3640. #u95594 .text {
  3641. position:absolute;
  3642. align-self:center;
  3643. padding:2px 2px 2px 2px;
  3644. box-sizing:border-box;
  3645. width:100%;
  3646. }
  3647. #u95594_text {
  3648. border-width:0px;
  3649. word-wrap:break-word;
  3650. text-transform:none;
  3651. visibility:hidden;
  3652. }
  3653. #u95595_img {
  3654. border-width:0px;
  3655. position:absolute;
  3656. left:0px;
  3657. top:0px;
  3658. width:108px;
  3659. height:30px;
  3660. }
  3661. #u95595 {
  3662. border-width:0px;
  3663. position:absolute;
  3664. left:271px;
  3665. top:156px;
  3666. width:108px;
  3667. height:30px;
  3668. display:flex;
  3669. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3670. font-weight:400;
  3671. font-style:normal;
  3672. font-size:14px;
  3673. }
  3674. #u95595 .text {
  3675. position:absolute;
  3676. align-self:center;
  3677. padding:2px 2px 2px 2px;
  3678. box-sizing:border-box;
  3679. width:100%;
  3680. }
  3681. #u95595_text {
  3682. border-width:0px;
  3683. word-wrap:break-word;
  3684. text-transform:none;
  3685. visibility:hidden;
  3686. }
  3687. #u95596_img {
  3688. border-width:0px;
  3689. position:absolute;
  3690. left:0px;
  3691. top:0px;
  3692. width:130px;
  3693. height:30px;
  3694. }
  3695. #u95596 {
  3696. border-width:0px;
  3697. position:absolute;
  3698. left:379px;
  3699. top:156px;
  3700. width:130px;
  3701. height:30px;
  3702. display:flex;
  3703. font-size:14px;
  3704. }
  3705. #u95596 .text {
  3706. position:absolute;
  3707. align-self:center;
  3708. padding:2px 2px 2px 2px;
  3709. box-sizing:border-box;
  3710. width:100%;
  3711. }
  3712. #u95596_text {
  3713. border-width:0px;
  3714. word-wrap:break-word;
  3715. text-transform:none;
  3716. visibility:hidden;
  3717. }
  3718. #u95597_img {
  3719. border-width:0px;
  3720. position:absolute;
  3721. left:0px;
  3722. top:0px;
  3723. width:130px;
  3724. height:30px;
  3725. }
  3726. #u95597 {
  3727. border-width:0px;
  3728. position:absolute;
  3729. left:509px;
  3730. top:156px;
  3731. width:130px;
  3732. height:30px;
  3733. display:flex;
  3734. font-size:14px;
  3735. }
  3736. #u95597 .text {
  3737. position:absolute;
  3738. align-self:center;
  3739. padding:2px 2px 2px 2px;
  3740. box-sizing:border-box;
  3741. width:100%;
  3742. }
  3743. #u95597_text {
  3744. border-width:0px;
  3745. word-wrap:break-word;
  3746. text-transform:none;
  3747. visibility:hidden;
  3748. }
  3749. #u95598_img {
  3750. border-width:0px;
  3751. position:absolute;
  3752. left:0px;
  3753. top:0px;
  3754. width:116px;
  3755. height:30px;
  3756. }
  3757. #u95598 {
  3758. border-width:0px;
  3759. position:absolute;
  3760. left:639px;
  3761. top:156px;
  3762. width:116px;
  3763. height:30px;
  3764. display:flex;
  3765. font-size:14px;
  3766. }
  3767. #u95598 .text {
  3768. position:absolute;
  3769. align-self:center;
  3770. padding:2px 2px 2px 2px;
  3771. box-sizing:border-box;
  3772. width:100%;
  3773. }
  3774. #u95598_text {
  3775. border-width:0px;
  3776. word-wrap:break-word;
  3777. text-transform:none;
  3778. visibility:hidden;
  3779. }
  3780. #u95599_img {
  3781. border-width:0px;
  3782. position:absolute;
  3783. left:0px;
  3784. top:0px;
  3785. width:109px;
  3786. height:30px;
  3787. }
  3788. #u95599 {
  3789. border-width:0px;
  3790. position:absolute;
  3791. left:755px;
  3792. top:156px;
  3793. width:109px;
  3794. height:30px;
  3795. display:flex;
  3796. font-size:14px;
  3797. }
  3798. #u95599 .text {
  3799. position:absolute;
  3800. align-self:center;
  3801. padding:2px 2px 2px 2px;
  3802. box-sizing:border-box;
  3803. width:100%;
  3804. }
  3805. #u95599_text {
  3806. border-width:0px;
  3807. word-wrap:break-word;
  3808. text-transform:none;
  3809. visibility:hidden;
  3810. }
  3811. #u95600_img {
  3812. border-width:0px;
  3813. position:absolute;
  3814. left:0px;
  3815. top:0px;
  3816. width:117px;
  3817. height:30px;
  3818. }
  3819. #u95600 {
  3820. border-width:0px;
  3821. position:absolute;
  3822. left:864px;
  3823. top:156px;
  3824. width:117px;
  3825. height:30px;
  3826. display:flex;
  3827. font-size:14px;
  3828. }
  3829. #u95600 .text {
  3830. position:absolute;
  3831. align-self:center;
  3832. padding:2px 2px 2px 2px;
  3833. box-sizing:border-box;
  3834. width:100%;
  3835. }
  3836. #u95600_text {
  3837. border-width:0px;
  3838. word-wrap:break-word;
  3839. text-transform:none;
  3840. visibility:hidden;
  3841. }
  3842. #u95601_img {
  3843. border-width:0px;
  3844. position:absolute;
  3845. left:0px;
  3846. top:0px;
  3847. width:109px;
  3848. height:30px;
  3849. }
  3850. #u95601 {
  3851. border-width:0px;
  3852. position:absolute;
  3853. left:981px;
  3854. top:156px;
  3855. width:109px;
  3856. height:30px;
  3857. display:flex;
  3858. font-size:14px;
  3859. }
  3860. #u95601 .text {
  3861. position:absolute;
  3862. align-self:center;
  3863. padding:2px 2px 2px 2px;
  3864. box-sizing:border-box;
  3865. width:100%;
  3866. }
  3867. #u95601_text {
  3868. border-width:0px;
  3869. word-wrap:break-word;
  3870. text-transform:none;
  3871. visibility:hidden;
  3872. }
  3873. #u95602_img {
  3874. border-width:0px;
  3875. position:absolute;
  3876. left:0px;
  3877. top:0px;
  3878. width:109px;
  3879. height:30px;
  3880. }
  3881. #u95602 {
  3882. border-width:0px;
  3883. position:absolute;
  3884. left:1090px;
  3885. top:156px;
  3886. width:109px;
  3887. height:30px;
  3888. display:flex;
  3889. font-size:14px;
  3890. }
  3891. #u95602 .text {
  3892. position:absolute;
  3893. align-self:center;
  3894. padding:2px 2px 2px 2px;
  3895. box-sizing:border-box;
  3896. width:100%;
  3897. }
  3898. #u95602_text {
  3899. border-width:0px;
  3900. word-wrap:break-word;
  3901. text-transform:none;
  3902. visibility:hidden;
  3903. }
  3904. #u95603_img {
  3905. border-width:0px;
  3906. position:absolute;
  3907. left:0px;
  3908. top:0px;
  3909. width:54px;
  3910. height:30px;
  3911. }
  3912. #u95603 {
  3913. border-width:0px;
  3914. position:absolute;
  3915. left:0px;
  3916. top:186px;
  3917. width:54px;
  3918. height:30px;
  3919. display:flex;
  3920. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3921. font-weight:400;
  3922. font-style:normal;
  3923. font-size:14px;
  3924. }
  3925. #u95603 .text {
  3926. position:absolute;
  3927. align-self:center;
  3928. padding:2px 2px 2px 2px;
  3929. box-sizing:border-box;
  3930. width:100%;
  3931. }
  3932. #u95603_text {
  3933. border-width:0px;
  3934. word-wrap:break-word;
  3935. text-transform:none;
  3936. visibility:hidden;
  3937. }
  3938. #u95604_img {
  3939. border-width:0px;
  3940. position:absolute;
  3941. left:0px;
  3942. top:0px;
  3943. width:108px;
  3944. height:30px;
  3945. }
  3946. #u95604 {
  3947. border-width:0px;
  3948. position:absolute;
  3949. left:54px;
  3950. top:186px;
  3951. width:108px;
  3952. height:30px;
  3953. display:flex;
  3954. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3955. font-weight:400;
  3956. font-style:normal;
  3957. font-size:14px;
  3958. }
  3959. #u95604 .text {
  3960. position:absolute;
  3961. align-self:center;
  3962. padding:2px 2px 2px 2px;
  3963. box-sizing:border-box;
  3964. width:100%;
  3965. }
  3966. #u95604_text {
  3967. border-width:0px;
  3968. word-wrap:break-word;
  3969. text-transform:none;
  3970. visibility:hidden;
  3971. }
  3972. #u95605_img {
  3973. border-width:0px;
  3974. position:absolute;
  3975. left:0px;
  3976. top:0px;
  3977. width:109px;
  3978. height:30px;
  3979. }
  3980. #u95605 {
  3981. border-width:0px;
  3982. position:absolute;
  3983. left:162px;
  3984. top:186px;
  3985. width:109px;
  3986. height:30px;
  3987. display:flex;
  3988. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3989. font-weight:400;
  3990. font-style:normal;
  3991. font-size:14px;
  3992. }
  3993. #u95605 .text {
  3994. position:absolute;
  3995. align-self:center;
  3996. padding:2px 2px 2px 2px;
  3997. box-sizing:border-box;
  3998. width:100%;
  3999. }
  4000. #u95605_text {
  4001. border-width:0px;
  4002. word-wrap:break-word;
  4003. text-transform:none;
  4004. visibility:hidden;
  4005. }
  4006. #u95606_img {
  4007. border-width:0px;
  4008. position:absolute;
  4009. left:0px;
  4010. top:0px;
  4011. width:108px;
  4012. height:30px;
  4013. }
  4014. #u95606 {
  4015. border-width:0px;
  4016. position:absolute;
  4017. left:271px;
  4018. top:186px;
  4019. width:108px;
  4020. height:30px;
  4021. display:flex;
  4022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4023. font-weight:400;
  4024. font-style:normal;
  4025. font-size:14px;
  4026. }
  4027. #u95606 .text {
  4028. position:absolute;
  4029. align-self:center;
  4030. padding:2px 2px 2px 2px;
  4031. box-sizing:border-box;
  4032. width:100%;
  4033. }
  4034. #u95606_text {
  4035. border-width:0px;
  4036. word-wrap:break-word;
  4037. text-transform:none;
  4038. visibility:hidden;
  4039. }
  4040. #u95607_img {
  4041. border-width:0px;
  4042. position:absolute;
  4043. left:0px;
  4044. top:0px;
  4045. width:130px;
  4046. height:30px;
  4047. }
  4048. #u95607 {
  4049. border-width:0px;
  4050. position:absolute;
  4051. left:379px;
  4052. top:186px;
  4053. width:130px;
  4054. height:30px;
  4055. display:flex;
  4056. font-size:14px;
  4057. }
  4058. #u95607 .text {
  4059. position:absolute;
  4060. align-self:center;
  4061. padding:2px 2px 2px 2px;
  4062. box-sizing:border-box;
  4063. width:100%;
  4064. }
  4065. #u95607_text {
  4066. border-width:0px;
  4067. word-wrap:break-word;
  4068. text-transform:none;
  4069. visibility:hidden;
  4070. }
  4071. #u95608_img {
  4072. border-width:0px;
  4073. position:absolute;
  4074. left:0px;
  4075. top:0px;
  4076. width:130px;
  4077. height:30px;
  4078. }
  4079. #u95608 {
  4080. border-width:0px;
  4081. position:absolute;
  4082. left:509px;
  4083. top:186px;
  4084. width:130px;
  4085. height:30px;
  4086. display:flex;
  4087. font-size:14px;
  4088. }
  4089. #u95608 .text {
  4090. position:absolute;
  4091. align-self:center;
  4092. padding:2px 2px 2px 2px;
  4093. box-sizing:border-box;
  4094. width:100%;
  4095. }
  4096. #u95608_text {
  4097. border-width:0px;
  4098. word-wrap:break-word;
  4099. text-transform:none;
  4100. visibility:hidden;
  4101. }
  4102. #u95609_img {
  4103. border-width:0px;
  4104. position:absolute;
  4105. left:0px;
  4106. top:0px;
  4107. width:116px;
  4108. height:30px;
  4109. }
  4110. #u95609 {
  4111. border-width:0px;
  4112. position:absolute;
  4113. left:639px;
  4114. top:186px;
  4115. width:116px;
  4116. height:30px;
  4117. display:flex;
  4118. font-size:14px;
  4119. }
  4120. #u95609 .text {
  4121. position:absolute;
  4122. align-self:center;
  4123. padding:2px 2px 2px 2px;
  4124. box-sizing:border-box;
  4125. width:100%;
  4126. }
  4127. #u95609_text {
  4128. border-width:0px;
  4129. word-wrap:break-word;
  4130. text-transform:none;
  4131. visibility:hidden;
  4132. }
  4133. #u95610_img {
  4134. border-width:0px;
  4135. position:absolute;
  4136. left:0px;
  4137. top:0px;
  4138. width:109px;
  4139. height:30px;
  4140. }
  4141. #u95610 {
  4142. border-width:0px;
  4143. position:absolute;
  4144. left:755px;
  4145. top:186px;
  4146. width:109px;
  4147. height:30px;
  4148. display:flex;
  4149. font-size:14px;
  4150. }
  4151. #u95610 .text {
  4152. position:absolute;
  4153. align-self:center;
  4154. padding:2px 2px 2px 2px;
  4155. box-sizing:border-box;
  4156. width:100%;
  4157. }
  4158. #u95610_text {
  4159. border-width:0px;
  4160. word-wrap:break-word;
  4161. text-transform:none;
  4162. visibility:hidden;
  4163. }
  4164. #u95611_img {
  4165. border-width:0px;
  4166. position:absolute;
  4167. left:0px;
  4168. top:0px;
  4169. width:117px;
  4170. height:30px;
  4171. }
  4172. #u95611 {
  4173. border-width:0px;
  4174. position:absolute;
  4175. left:864px;
  4176. top:186px;
  4177. width:117px;
  4178. height:30px;
  4179. display:flex;
  4180. font-size:14px;
  4181. }
  4182. #u95611 .text {
  4183. position:absolute;
  4184. align-self:center;
  4185. padding:2px 2px 2px 2px;
  4186. box-sizing:border-box;
  4187. width:100%;
  4188. }
  4189. #u95611_text {
  4190. border-width:0px;
  4191. word-wrap:break-word;
  4192. text-transform:none;
  4193. visibility:hidden;
  4194. }
  4195. #u95612_img {
  4196. border-width:0px;
  4197. position:absolute;
  4198. left:0px;
  4199. top:0px;
  4200. width:109px;
  4201. height:30px;
  4202. }
  4203. #u95612 {
  4204. border-width:0px;
  4205. position:absolute;
  4206. left:981px;
  4207. top:186px;
  4208. width:109px;
  4209. height:30px;
  4210. display:flex;
  4211. font-size:14px;
  4212. }
  4213. #u95612 .text {
  4214. position:absolute;
  4215. align-self:center;
  4216. padding:2px 2px 2px 2px;
  4217. box-sizing:border-box;
  4218. width:100%;
  4219. }
  4220. #u95612_text {
  4221. border-width:0px;
  4222. word-wrap:break-word;
  4223. text-transform:none;
  4224. visibility:hidden;
  4225. }
  4226. #u95613_img {
  4227. border-width:0px;
  4228. position:absolute;
  4229. left:0px;
  4230. top:0px;
  4231. width:109px;
  4232. height:30px;
  4233. }
  4234. #u95613 {
  4235. border-width:0px;
  4236. position:absolute;
  4237. left:1090px;
  4238. top:186px;
  4239. width:109px;
  4240. height:30px;
  4241. display:flex;
  4242. font-size:14px;
  4243. }
  4244. #u95613 .text {
  4245. position:absolute;
  4246. align-self:center;
  4247. padding:2px 2px 2px 2px;
  4248. box-sizing:border-box;
  4249. width:100%;
  4250. }
  4251. #u95613_text {
  4252. border-width:0px;
  4253. word-wrap:break-word;
  4254. text-transform:none;
  4255. visibility:hidden;
  4256. }
  4257. #u95614_img {
  4258. border-width:0px;
  4259. position:absolute;
  4260. left:0px;
  4261. top:0px;
  4262. width:54px;
  4263. height:30px;
  4264. }
  4265. #u95614 {
  4266. border-width:0px;
  4267. position:absolute;
  4268. left:0px;
  4269. top:216px;
  4270. width:54px;
  4271. height:30px;
  4272. display:flex;
  4273. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4274. font-weight:400;
  4275. font-style:normal;
  4276. font-size:14px;
  4277. }
  4278. #u95614 .text {
  4279. position:absolute;
  4280. align-self:center;
  4281. padding:2px 2px 2px 2px;
  4282. box-sizing:border-box;
  4283. width:100%;
  4284. }
  4285. #u95614_text {
  4286. border-width:0px;
  4287. word-wrap:break-word;
  4288. text-transform:none;
  4289. visibility:hidden;
  4290. }
  4291. #u95615_img {
  4292. border-width:0px;
  4293. position:absolute;
  4294. left:0px;
  4295. top:0px;
  4296. width:108px;
  4297. height:30px;
  4298. }
  4299. #u95615 {
  4300. border-width:0px;
  4301. position:absolute;
  4302. left:54px;
  4303. top:216px;
  4304. width:108px;
  4305. height:30px;
  4306. display:flex;
  4307. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4308. font-weight:400;
  4309. font-style:normal;
  4310. font-size:14px;
  4311. }
  4312. #u95615 .text {
  4313. position:absolute;
  4314. align-self:center;
  4315. padding:2px 2px 2px 2px;
  4316. box-sizing:border-box;
  4317. width:100%;
  4318. }
  4319. #u95615_text {
  4320. border-width:0px;
  4321. word-wrap:break-word;
  4322. text-transform:none;
  4323. visibility:hidden;
  4324. }
  4325. #u95616_img {
  4326. border-width:0px;
  4327. position:absolute;
  4328. left:0px;
  4329. top:0px;
  4330. width:109px;
  4331. height:30px;
  4332. }
  4333. #u95616 {
  4334. border-width:0px;
  4335. position:absolute;
  4336. left:162px;
  4337. top:216px;
  4338. width:109px;
  4339. height:30px;
  4340. display:flex;
  4341. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4342. font-weight:400;
  4343. font-style:normal;
  4344. font-size:14px;
  4345. }
  4346. #u95616 .text {
  4347. position:absolute;
  4348. align-self:center;
  4349. padding:2px 2px 2px 2px;
  4350. box-sizing:border-box;
  4351. width:100%;
  4352. }
  4353. #u95616_text {
  4354. border-width:0px;
  4355. word-wrap:break-word;
  4356. text-transform:none;
  4357. visibility:hidden;
  4358. }
  4359. #u95617_img {
  4360. border-width:0px;
  4361. position:absolute;
  4362. left:0px;
  4363. top:0px;
  4364. width:108px;
  4365. height:30px;
  4366. }
  4367. #u95617 {
  4368. border-width:0px;
  4369. position:absolute;
  4370. left:271px;
  4371. top:216px;
  4372. width:108px;
  4373. height:30px;
  4374. display:flex;
  4375. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4376. font-weight:400;
  4377. font-style:normal;
  4378. font-size:14px;
  4379. }
  4380. #u95617 .text {
  4381. position:absolute;
  4382. align-self:center;
  4383. padding:2px 2px 2px 2px;
  4384. box-sizing:border-box;
  4385. width:100%;
  4386. }
  4387. #u95617_text {
  4388. border-width:0px;
  4389. word-wrap:break-word;
  4390. text-transform:none;
  4391. visibility:hidden;
  4392. }
  4393. #u95618_img {
  4394. border-width:0px;
  4395. position:absolute;
  4396. left:0px;
  4397. top:0px;
  4398. width:130px;
  4399. height:30px;
  4400. }
  4401. #u95618 {
  4402. border-width:0px;
  4403. position:absolute;
  4404. left:379px;
  4405. top:216px;
  4406. width:130px;
  4407. height:30px;
  4408. display:flex;
  4409. font-size:14px;
  4410. }
  4411. #u95618 .text {
  4412. position:absolute;
  4413. align-self:center;
  4414. padding:2px 2px 2px 2px;
  4415. box-sizing:border-box;
  4416. width:100%;
  4417. }
  4418. #u95618_text {
  4419. border-width:0px;
  4420. word-wrap:break-word;
  4421. text-transform:none;
  4422. visibility:hidden;
  4423. }
  4424. #u95619_img {
  4425. border-width:0px;
  4426. position:absolute;
  4427. left:0px;
  4428. top:0px;
  4429. width:130px;
  4430. height:30px;
  4431. }
  4432. #u95619 {
  4433. border-width:0px;
  4434. position:absolute;
  4435. left:509px;
  4436. top:216px;
  4437. width:130px;
  4438. height:30px;
  4439. display:flex;
  4440. font-size:14px;
  4441. }
  4442. #u95619 .text {
  4443. position:absolute;
  4444. align-self:center;
  4445. padding:2px 2px 2px 2px;
  4446. box-sizing:border-box;
  4447. width:100%;
  4448. }
  4449. #u95619_text {
  4450. border-width:0px;
  4451. word-wrap:break-word;
  4452. text-transform:none;
  4453. visibility:hidden;
  4454. }
  4455. #u95620_img {
  4456. border-width:0px;
  4457. position:absolute;
  4458. left:0px;
  4459. top:0px;
  4460. width:116px;
  4461. height:30px;
  4462. }
  4463. #u95620 {
  4464. border-width:0px;
  4465. position:absolute;
  4466. left:639px;
  4467. top:216px;
  4468. width:116px;
  4469. height:30px;
  4470. display:flex;
  4471. font-size:14px;
  4472. }
  4473. #u95620 .text {
  4474. position:absolute;
  4475. align-self:center;
  4476. padding:2px 2px 2px 2px;
  4477. box-sizing:border-box;
  4478. width:100%;
  4479. }
  4480. #u95620_text {
  4481. border-width:0px;
  4482. word-wrap:break-word;
  4483. text-transform:none;
  4484. visibility:hidden;
  4485. }
  4486. #u95621_img {
  4487. border-width:0px;
  4488. position:absolute;
  4489. left:0px;
  4490. top:0px;
  4491. width:109px;
  4492. height:30px;
  4493. }
  4494. #u95621 {
  4495. border-width:0px;
  4496. position:absolute;
  4497. left:755px;
  4498. top:216px;
  4499. width:109px;
  4500. height:30px;
  4501. display:flex;
  4502. font-size:14px;
  4503. }
  4504. #u95621 .text {
  4505. position:absolute;
  4506. align-self:center;
  4507. padding:2px 2px 2px 2px;
  4508. box-sizing:border-box;
  4509. width:100%;
  4510. }
  4511. #u95621_text {
  4512. border-width:0px;
  4513. word-wrap:break-word;
  4514. text-transform:none;
  4515. visibility:hidden;
  4516. }
  4517. #u95622_img {
  4518. border-width:0px;
  4519. position:absolute;
  4520. left:0px;
  4521. top:0px;
  4522. width:117px;
  4523. height:30px;
  4524. }
  4525. #u95622 {
  4526. border-width:0px;
  4527. position:absolute;
  4528. left:864px;
  4529. top:216px;
  4530. width:117px;
  4531. height:30px;
  4532. display:flex;
  4533. font-size:14px;
  4534. }
  4535. #u95622 .text {
  4536. position:absolute;
  4537. align-self:center;
  4538. padding:2px 2px 2px 2px;
  4539. box-sizing:border-box;
  4540. width:100%;
  4541. }
  4542. #u95622_text {
  4543. border-width:0px;
  4544. word-wrap:break-word;
  4545. text-transform:none;
  4546. visibility:hidden;
  4547. }
  4548. #u95623_img {
  4549. border-width:0px;
  4550. position:absolute;
  4551. left:0px;
  4552. top:0px;
  4553. width:109px;
  4554. height:30px;
  4555. }
  4556. #u95623 {
  4557. border-width:0px;
  4558. position:absolute;
  4559. left:981px;
  4560. top:216px;
  4561. width:109px;
  4562. height:30px;
  4563. display:flex;
  4564. font-size:14px;
  4565. }
  4566. #u95623 .text {
  4567. position:absolute;
  4568. align-self:center;
  4569. padding:2px 2px 2px 2px;
  4570. box-sizing:border-box;
  4571. width:100%;
  4572. }
  4573. #u95623_text {
  4574. border-width:0px;
  4575. word-wrap:break-word;
  4576. text-transform:none;
  4577. visibility:hidden;
  4578. }
  4579. #u95624_img {
  4580. border-width:0px;
  4581. position:absolute;
  4582. left:0px;
  4583. top:0px;
  4584. width:109px;
  4585. height:30px;
  4586. }
  4587. #u95624 {
  4588. border-width:0px;
  4589. position:absolute;
  4590. left:1090px;
  4591. top:216px;
  4592. width:109px;
  4593. height:30px;
  4594. display:flex;
  4595. font-size:14px;
  4596. }
  4597. #u95624 .text {
  4598. position:absolute;
  4599. align-self:center;
  4600. padding:2px 2px 2px 2px;
  4601. box-sizing:border-box;
  4602. width:100%;
  4603. }
  4604. #u95624_text {
  4605. border-width:0px;
  4606. word-wrap:break-word;
  4607. text-transform:none;
  4608. visibility:hidden;
  4609. }
  4610. #u95625_img {
  4611. border-width:0px;
  4612. position:absolute;
  4613. left:0px;
  4614. top:0px;
  4615. width:54px;
  4616. height:30px;
  4617. }
  4618. #u95625 {
  4619. border-width:0px;
  4620. position:absolute;
  4621. left:0px;
  4622. top:246px;
  4623. width:54px;
  4624. height:30px;
  4625. display:flex;
  4626. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4627. font-weight:400;
  4628. font-style:normal;
  4629. font-size:14px;
  4630. }
  4631. #u95625 .text {
  4632. position:absolute;
  4633. align-self:center;
  4634. padding:2px 2px 2px 2px;
  4635. box-sizing:border-box;
  4636. width:100%;
  4637. }
  4638. #u95625_text {
  4639. border-width:0px;
  4640. word-wrap:break-word;
  4641. text-transform:none;
  4642. visibility:hidden;
  4643. }
  4644. #u95626_img {
  4645. border-width:0px;
  4646. position:absolute;
  4647. left:0px;
  4648. top:0px;
  4649. width:108px;
  4650. height:30px;
  4651. }
  4652. #u95626 {
  4653. border-width:0px;
  4654. position:absolute;
  4655. left:54px;
  4656. top:246px;
  4657. width:108px;
  4658. height:30px;
  4659. display:flex;
  4660. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4661. font-weight:400;
  4662. font-style:normal;
  4663. font-size:14px;
  4664. }
  4665. #u95626 .text {
  4666. position:absolute;
  4667. align-self:center;
  4668. padding:2px 2px 2px 2px;
  4669. box-sizing:border-box;
  4670. width:100%;
  4671. }
  4672. #u95626_text {
  4673. border-width:0px;
  4674. word-wrap:break-word;
  4675. text-transform:none;
  4676. visibility:hidden;
  4677. }
  4678. #u95627_img {
  4679. border-width:0px;
  4680. position:absolute;
  4681. left:0px;
  4682. top:0px;
  4683. width:109px;
  4684. height:30px;
  4685. }
  4686. #u95627 {
  4687. border-width:0px;
  4688. position:absolute;
  4689. left:162px;
  4690. top:246px;
  4691. width:109px;
  4692. height:30px;
  4693. display:flex;
  4694. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4695. font-weight:400;
  4696. font-style:normal;
  4697. font-size:14px;
  4698. }
  4699. #u95627 .text {
  4700. position:absolute;
  4701. align-self:center;
  4702. padding:2px 2px 2px 2px;
  4703. box-sizing:border-box;
  4704. width:100%;
  4705. }
  4706. #u95627_text {
  4707. border-width:0px;
  4708. word-wrap:break-word;
  4709. text-transform:none;
  4710. visibility:hidden;
  4711. }
  4712. #u95628_img {
  4713. border-width:0px;
  4714. position:absolute;
  4715. left:0px;
  4716. top:0px;
  4717. width:108px;
  4718. height:30px;
  4719. }
  4720. #u95628 {
  4721. border-width:0px;
  4722. position:absolute;
  4723. left:271px;
  4724. top:246px;
  4725. width:108px;
  4726. height:30px;
  4727. display:flex;
  4728. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4729. font-weight:400;
  4730. font-style:normal;
  4731. font-size:14px;
  4732. }
  4733. #u95628 .text {
  4734. position:absolute;
  4735. align-self:center;
  4736. padding:2px 2px 2px 2px;
  4737. box-sizing:border-box;
  4738. width:100%;
  4739. }
  4740. #u95628_text {
  4741. border-width:0px;
  4742. word-wrap:break-word;
  4743. text-transform:none;
  4744. visibility:hidden;
  4745. }
  4746. #u95629_img {
  4747. border-width:0px;
  4748. position:absolute;
  4749. left:0px;
  4750. top:0px;
  4751. width:130px;
  4752. height:30px;
  4753. }
  4754. #u95629 {
  4755. border-width:0px;
  4756. position:absolute;
  4757. left:379px;
  4758. top:246px;
  4759. width:130px;
  4760. height:30px;
  4761. display:flex;
  4762. font-size:14px;
  4763. }
  4764. #u95629 .text {
  4765. position:absolute;
  4766. align-self:center;
  4767. padding:2px 2px 2px 2px;
  4768. box-sizing:border-box;
  4769. width:100%;
  4770. }
  4771. #u95629_text {
  4772. border-width:0px;
  4773. word-wrap:break-word;
  4774. text-transform:none;
  4775. visibility:hidden;
  4776. }
  4777. #u95630_img {
  4778. border-width:0px;
  4779. position:absolute;
  4780. left:0px;
  4781. top:0px;
  4782. width:130px;
  4783. height:30px;
  4784. }
  4785. #u95630 {
  4786. border-width:0px;
  4787. position:absolute;
  4788. left:509px;
  4789. top:246px;
  4790. width:130px;
  4791. height:30px;
  4792. display:flex;
  4793. font-size:14px;
  4794. }
  4795. #u95630 .text {
  4796. position:absolute;
  4797. align-self:center;
  4798. padding:2px 2px 2px 2px;
  4799. box-sizing:border-box;
  4800. width:100%;
  4801. }
  4802. #u95630_text {
  4803. border-width:0px;
  4804. word-wrap:break-word;
  4805. text-transform:none;
  4806. visibility:hidden;
  4807. }
  4808. #u95631_img {
  4809. border-width:0px;
  4810. position:absolute;
  4811. left:0px;
  4812. top:0px;
  4813. width:116px;
  4814. height:30px;
  4815. }
  4816. #u95631 {
  4817. border-width:0px;
  4818. position:absolute;
  4819. left:639px;
  4820. top:246px;
  4821. width:116px;
  4822. height:30px;
  4823. display:flex;
  4824. font-size:14px;
  4825. }
  4826. #u95631 .text {
  4827. position:absolute;
  4828. align-self:center;
  4829. padding:2px 2px 2px 2px;
  4830. box-sizing:border-box;
  4831. width:100%;
  4832. }
  4833. #u95631_text {
  4834. border-width:0px;
  4835. word-wrap:break-word;
  4836. text-transform:none;
  4837. visibility:hidden;
  4838. }
  4839. #u95632_img {
  4840. border-width:0px;
  4841. position:absolute;
  4842. left:0px;
  4843. top:0px;
  4844. width:109px;
  4845. height:30px;
  4846. }
  4847. #u95632 {
  4848. border-width:0px;
  4849. position:absolute;
  4850. left:755px;
  4851. top:246px;
  4852. width:109px;
  4853. height:30px;
  4854. display:flex;
  4855. font-size:14px;
  4856. }
  4857. #u95632 .text {
  4858. position:absolute;
  4859. align-self:center;
  4860. padding:2px 2px 2px 2px;
  4861. box-sizing:border-box;
  4862. width:100%;
  4863. }
  4864. #u95632_text {
  4865. border-width:0px;
  4866. word-wrap:break-word;
  4867. text-transform:none;
  4868. visibility:hidden;
  4869. }
  4870. #u95633_img {
  4871. border-width:0px;
  4872. position:absolute;
  4873. left:0px;
  4874. top:0px;
  4875. width:117px;
  4876. height:30px;
  4877. }
  4878. #u95633 {
  4879. border-width:0px;
  4880. position:absolute;
  4881. left:864px;
  4882. top:246px;
  4883. width:117px;
  4884. height:30px;
  4885. display:flex;
  4886. font-size:14px;
  4887. }
  4888. #u95633 .text {
  4889. position:absolute;
  4890. align-self:center;
  4891. padding:2px 2px 2px 2px;
  4892. box-sizing:border-box;
  4893. width:100%;
  4894. }
  4895. #u95633_text {
  4896. border-width:0px;
  4897. word-wrap:break-word;
  4898. text-transform:none;
  4899. visibility:hidden;
  4900. }
  4901. #u95634_img {
  4902. border-width:0px;
  4903. position:absolute;
  4904. left:0px;
  4905. top:0px;
  4906. width:109px;
  4907. height:30px;
  4908. }
  4909. #u95634 {
  4910. border-width:0px;
  4911. position:absolute;
  4912. left:981px;
  4913. top:246px;
  4914. width:109px;
  4915. height:30px;
  4916. display:flex;
  4917. font-size:14px;
  4918. }
  4919. #u95634 .text {
  4920. position:absolute;
  4921. align-self:center;
  4922. padding:2px 2px 2px 2px;
  4923. box-sizing:border-box;
  4924. width:100%;
  4925. }
  4926. #u95634_text {
  4927. border-width:0px;
  4928. word-wrap:break-word;
  4929. text-transform:none;
  4930. visibility:hidden;
  4931. }
  4932. #u95635_img {
  4933. border-width:0px;
  4934. position:absolute;
  4935. left:0px;
  4936. top:0px;
  4937. width:109px;
  4938. height:30px;
  4939. }
  4940. #u95635 {
  4941. border-width:0px;
  4942. position:absolute;
  4943. left:1090px;
  4944. top:246px;
  4945. width:109px;
  4946. height:30px;
  4947. display:flex;
  4948. font-size:14px;
  4949. }
  4950. #u95635 .text {
  4951. position:absolute;
  4952. align-self:center;
  4953. padding:2px 2px 2px 2px;
  4954. box-sizing:border-box;
  4955. width:100%;
  4956. }
  4957. #u95635_text {
  4958. border-width:0px;
  4959. word-wrap:break-word;
  4960. text-transform:none;
  4961. visibility:hidden;
  4962. }
  4963. #u95636_img {
  4964. border-width:0px;
  4965. position:absolute;
  4966. left:0px;
  4967. top:0px;
  4968. width:54px;
  4969. height:30px;
  4970. }
  4971. #u95636 {
  4972. border-width:0px;
  4973. position:absolute;
  4974. left:0px;
  4975. top:276px;
  4976. width:54px;
  4977. height:30px;
  4978. display:flex;
  4979. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4980. font-weight:400;
  4981. font-style:normal;
  4982. font-size:14px;
  4983. }
  4984. #u95636 .text {
  4985. position:absolute;
  4986. align-self:center;
  4987. padding:2px 2px 2px 2px;
  4988. box-sizing:border-box;
  4989. width:100%;
  4990. }
  4991. #u95636_text {
  4992. border-width:0px;
  4993. word-wrap:break-word;
  4994. text-transform:none;
  4995. visibility:hidden;
  4996. }
  4997. #u95637_img {
  4998. border-width:0px;
  4999. position:absolute;
  5000. left:0px;
  5001. top:0px;
  5002. width:108px;
  5003. height:30px;
  5004. }
  5005. #u95637 {
  5006. border-width:0px;
  5007. position:absolute;
  5008. left:54px;
  5009. top:276px;
  5010. width:108px;
  5011. height:30px;
  5012. display:flex;
  5013. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5014. font-weight:400;
  5015. font-style:normal;
  5016. font-size:14px;
  5017. }
  5018. #u95637 .text {
  5019. position:absolute;
  5020. align-self:center;
  5021. padding:2px 2px 2px 2px;
  5022. box-sizing:border-box;
  5023. width:100%;
  5024. }
  5025. #u95637_text {
  5026. border-width:0px;
  5027. word-wrap:break-word;
  5028. text-transform:none;
  5029. visibility:hidden;
  5030. }
  5031. #u95638_img {
  5032. border-width:0px;
  5033. position:absolute;
  5034. left:0px;
  5035. top:0px;
  5036. width:109px;
  5037. height:30px;
  5038. }
  5039. #u95638 {
  5040. border-width:0px;
  5041. position:absolute;
  5042. left:162px;
  5043. top:276px;
  5044. width:109px;
  5045. height:30px;
  5046. display:flex;
  5047. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5048. font-weight:400;
  5049. font-style:normal;
  5050. font-size:14px;
  5051. }
  5052. #u95638 .text {
  5053. position:absolute;
  5054. align-self:center;
  5055. padding:2px 2px 2px 2px;
  5056. box-sizing:border-box;
  5057. width:100%;
  5058. }
  5059. #u95638_text {
  5060. border-width:0px;
  5061. word-wrap:break-word;
  5062. text-transform:none;
  5063. visibility:hidden;
  5064. }
  5065. #u95639_img {
  5066. border-width:0px;
  5067. position:absolute;
  5068. left:0px;
  5069. top:0px;
  5070. width:108px;
  5071. height:30px;
  5072. }
  5073. #u95639 {
  5074. border-width:0px;
  5075. position:absolute;
  5076. left:271px;
  5077. top:276px;
  5078. width:108px;
  5079. height:30px;
  5080. display:flex;
  5081. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5082. font-weight:400;
  5083. font-style:normal;
  5084. font-size:14px;
  5085. }
  5086. #u95639 .text {
  5087. position:absolute;
  5088. align-self:center;
  5089. padding:2px 2px 2px 2px;
  5090. box-sizing:border-box;
  5091. width:100%;
  5092. }
  5093. #u95639_text {
  5094. border-width:0px;
  5095. word-wrap:break-word;
  5096. text-transform:none;
  5097. visibility:hidden;
  5098. }
  5099. #u95640_img {
  5100. border-width:0px;
  5101. position:absolute;
  5102. left:0px;
  5103. top:0px;
  5104. width:130px;
  5105. height:30px;
  5106. }
  5107. #u95640 {
  5108. border-width:0px;
  5109. position:absolute;
  5110. left:379px;
  5111. top:276px;
  5112. width:130px;
  5113. height:30px;
  5114. display:flex;
  5115. font-size:14px;
  5116. }
  5117. #u95640 .text {
  5118. position:absolute;
  5119. align-self:center;
  5120. padding:2px 2px 2px 2px;
  5121. box-sizing:border-box;
  5122. width:100%;
  5123. }
  5124. #u95640_text {
  5125. border-width:0px;
  5126. word-wrap:break-word;
  5127. text-transform:none;
  5128. visibility:hidden;
  5129. }
  5130. #u95641_img {
  5131. border-width:0px;
  5132. position:absolute;
  5133. left:0px;
  5134. top:0px;
  5135. width:130px;
  5136. height:30px;
  5137. }
  5138. #u95641 {
  5139. border-width:0px;
  5140. position:absolute;
  5141. left:509px;
  5142. top:276px;
  5143. width:130px;
  5144. height:30px;
  5145. display:flex;
  5146. font-size:14px;
  5147. }
  5148. #u95641 .text {
  5149. position:absolute;
  5150. align-self:center;
  5151. padding:2px 2px 2px 2px;
  5152. box-sizing:border-box;
  5153. width:100%;
  5154. }
  5155. #u95641_text {
  5156. border-width:0px;
  5157. word-wrap:break-word;
  5158. text-transform:none;
  5159. visibility:hidden;
  5160. }
  5161. #u95642_img {
  5162. border-width:0px;
  5163. position:absolute;
  5164. left:0px;
  5165. top:0px;
  5166. width:116px;
  5167. height:30px;
  5168. }
  5169. #u95642 {
  5170. border-width:0px;
  5171. position:absolute;
  5172. left:639px;
  5173. top:276px;
  5174. width:116px;
  5175. height:30px;
  5176. display:flex;
  5177. font-size:14px;
  5178. }
  5179. #u95642 .text {
  5180. position:absolute;
  5181. align-self:center;
  5182. padding:2px 2px 2px 2px;
  5183. box-sizing:border-box;
  5184. width:100%;
  5185. }
  5186. #u95642_text {
  5187. border-width:0px;
  5188. word-wrap:break-word;
  5189. text-transform:none;
  5190. visibility:hidden;
  5191. }
  5192. #u95643_img {
  5193. border-width:0px;
  5194. position:absolute;
  5195. left:0px;
  5196. top:0px;
  5197. width:109px;
  5198. height:30px;
  5199. }
  5200. #u95643 {
  5201. border-width:0px;
  5202. position:absolute;
  5203. left:755px;
  5204. top:276px;
  5205. width:109px;
  5206. height:30px;
  5207. display:flex;
  5208. font-size:14px;
  5209. }
  5210. #u95643 .text {
  5211. position:absolute;
  5212. align-self:center;
  5213. padding:2px 2px 2px 2px;
  5214. box-sizing:border-box;
  5215. width:100%;
  5216. }
  5217. #u95643_text {
  5218. border-width:0px;
  5219. word-wrap:break-word;
  5220. text-transform:none;
  5221. visibility:hidden;
  5222. }
  5223. #u95644_img {
  5224. border-width:0px;
  5225. position:absolute;
  5226. left:0px;
  5227. top:0px;
  5228. width:117px;
  5229. height:30px;
  5230. }
  5231. #u95644 {
  5232. border-width:0px;
  5233. position:absolute;
  5234. left:864px;
  5235. top:276px;
  5236. width:117px;
  5237. height:30px;
  5238. display:flex;
  5239. font-size:14px;
  5240. }
  5241. #u95644 .text {
  5242. position:absolute;
  5243. align-self:center;
  5244. padding:2px 2px 2px 2px;
  5245. box-sizing:border-box;
  5246. width:100%;
  5247. }
  5248. #u95644_text {
  5249. border-width:0px;
  5250. word-wrap:break-word;
  5251. text-transform:none;
  5252. visibility:hidden;
  5253. }
  5254. #u95645_img {
  5255. border-width:0px;
  5256. position:absolute;
  5257. left:0px;
  5258. top:0px;
  5259. width:109px;
  5260. height:30px;
  5261. }
  5262. #u95645 {
  5263. border-width:0px;
  5264. position:absolute;
  5265. left:981px;
  5266. top:276px;
  5267. width:109px;
  5268. height:30px;
  5269. display:flex;
  5270. font-size:14px;
  5271. }
  5272. #u95645 .text {
  5273. position:absolute;
  5274. align-self:center;
  5275. padding:2px 2px 2px 2px;
  5276. box-sizing:border-box;
  5277. width:100%;
  5278. }
  5279. #u95645_text {
  5280. border-width:0px;
  5281. word-wrap:break-word;
  5282. text-transform:none;
  5283. visibility:hidden;
  5284. }
  5285. #u95646_img {
  5286. border-width:0px;
  5287. position:absolute;
  5288. left:0px;
  5289. top:0px;
  5290. width:109px;
  5291. height:30px;
  5292. }
  5293. #u95646 {
  5294. border-width:0px;
  5295. position:absolute;
  5296. left:1090px;
  5297. top:276px;
  5298. width:109px;
  5299. height:30px;
  5300. display:flex;
  5301. font-size:14px;
  5302. }
  5303. #u95646 .text {
  5304. position:absolute;
  5305. align-self:center;
  5306. padding:2px 2px 2px 2px;
  5307. box-sizing:border-box;
  5308. width:100%;
  5309. }
  5310. #u95646_text {
  5311. border-width:0px;
  5312. word-wrap:break-word;
  5313. text-transform:none;
  5314. visibility:hidden;
  5315. }
  5316. #u95647_img {
  5317. border-width:0px;
  5318. position:absolute;
  5319. left:0px;
  5320. top:0px;
  5321. width:54px;
  5322. height:30px;
  5323. }
  5324. #u95647 {
  5325. border-width:0px;
  5326. position:absolute;
  5327. left:0px;
  5328. top:306px;
  5329. width:54px;
  5330. height:30px;
  5331. display:flex;
  5332. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5333. font-weight:400;
  5334. font-style:normal;
  5335. font-size:14px;
  5336. }
  5337. #u95647 .text {
  5338. position:absolute;
  5339. align-self:center;
  5340. padding:2px 2px 2px 2px;
  5341. box-sizing:border-box;
  5342. width:100%;
  5343. }
  5344. #u95647_text {
  5345. border-width:0px;
  5346. word-wrap:break-word;
  5347. text-transform:none;
  5348. visibility:hidden;
  5349. }
  5350. #u95648_img {
  5351. border-width:0px;
  5352. position:absolute;
  5353. left:0px;
  5354. top:0px;
  5355. width:108px;
  5356. height:30px;
  5357. }
  5358. #u95648 {
  5359. border-width:0px;
  5360. position:absolute;
  5361. left:54px;
  5362. top:306px;
  5363. width:108px;
  5364. height:30px;
  5365. display:flex;
  5366. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5367. font-weight:400;
  5368. font-style:normal;
  5369. font-size:14px;
  5370. }
  5371. #u95648 .text {
  5372. position:absolute;
  5373. align-self:center;
  5374. padding:2px 2px 2px 2px;
  5375. box-sizing:border-box;
  5376. width:100%;
  5377. }
  5378. #u95648_text {
  5379. border-width:0px;
  5380. word-wrap:break-word;
  5381. text-transform:none;
  5382. visibility:hidden;
  5383. }
  5384. #u95649_img {
  5385. border-width:0px;
  5386. position:absolute;
  5387. left:0px;
  5388. top:0px;
  5389. width:109px;
  5390. height:30px;
  5391. }
  5392. #u95649 {
  5393. border-width:0px;
  5394. position:absolute;
  5395. left:162px;
  5396. top:306px;
  5397. width:109px;
  5398. height:30px;
  5399. display:flex;
  5400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5401. font-weight:400;
  5402. font-style:normal;
  5403. font-size:14px;
  5404. }
  5405. #u95649 .text {
  5406. position:absolute;
  5407. align-self:center;
  5408. padding:2px 2px 2px 2px;
  5409. box-sizing:border-box;
  5410. width:100%;
  5411. }
  5412. #u95649_text {
  5413. border-width:0px;
  5414. word-wrap:break-word;
  5415. text-transform:none;
  5416. visibility:hidden;
  5417. }
  5418. #u95650_img {
  5419. border-width:0px;
  5420. position:absolute;
  5421. left:0px;
  5422. top:0px;
  5423. width:108px;
  5424. height:30px;
  5425. }
  5426. #u95650 {
  5427. border-width:0px;
  5428. position:absolute;
  5429. left:271px;
  5430. top:306px;
  5431. width:108px;
  5432. height:30px;
  5433. display:flex;
  5434. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5435. font-weight:400;
  5436. font-style:normal;
  5437. font-size:14px;
  5438. }
  5439. #u95650 .text {
  5440. position:absolute;
  5441. align-self:center;
  5442. padding:2px 2px 2px 2px;
  5443. box-sizing:border-box;
  5444. width:100%;
  5445. }
  5446. #u95650_text {
  5447. border-width:0px;
  5448. word-wrap:break-word;
  5449. text-transform:none;
  5450. visibility:hidden;
  5451. }
  5452. #u95651_img {
  5453. border-width:0px;
  5454. position:absolute;
  5455. left:0px;
  5456. top:0px;
  5457. width:130px;
  5458. height:30px;
  5459. }
  5460. #u95651 {
  5461. border-width:0px;
  5462. position:absolute;
  5463. left:379px;
  5464. top:306px;
  5465. width:130px;
  5466. height:30px;
  5467. display:flex;
  5468. font-size:14px;
  5469. }
  5470. #u95651 .text {
  5471. position:absolute;
  5472. align-self:center;
  5473. padding:2px 2px 2px 2px;
  5474. box-sizing:border-box;
  5475. width:100%;
  5476. }
  5477. #u95651_text {
  5478. border-width:0px;
  5479. word-wrap:break-word;
  5480. text-transform:none;
  5481. visibility:hidden;
  5482. }
  5483. #u95652_img {
  5484. border-width:0px;
  5485. position:absolute;
  5486. left:0px;
  5487. top:0px;
  5488. width:130px;
  5489. height:30px;
  5490. }
  5491. #u95652 {
  5492. border-width:0px;
  5493. position:absolute;
  5494. left:509px;
  5495. top:306px;
  5496. width:130px;
  5497. height:30px;
  5498. display:flex;
  5499. font-size:14px;
  5500. }
  5501. #u95652 .text {
  5502. position:absolute;
  5503. align-self:center;
  5504. padding:2px 2px 2px 2px;
  5505. box-sizing:border-box;
  5506. width:100%;
  5507. }
  5508. #u95652_text {
  5509. border-width:0px;
  5510. word-wrap:break-word;
  5511. text-transform:none;
  5512. visibility:hidden;
  5513. }
  5514. #u95653_img {
  5515. border-width:0px;
  5516. position:absolute;
  5517. left:0px;
  5518. top:0px;
  5519. width:116px;
  5520. height:30px;
  5521. }
  5522. #u95653 {
  5523. border-width:0px;
  5524. position:absolute;
  5525. left:639px;
  5526. top:306px;
  5527. width:116px;
  5528. height:30px;
  5529. display:flex;
  5530. font-size:14px;
  5531. }
  5532. #u95653 .text {
  5533. position:absolute;
  5534. align-self:center;
  5535. padding:2px 2px 2px 2px;
  5536. box-sizing:border-box;
  5537. width:100%;
  5538. }
  5539. #u95653_text {
  5540. border-width:0px;
  5541. word-wrap:break-word;
  5542. text-transform:none;
  5543. visibility:hidden;
  5544. }
  5545. #u95654_img {
  5546. border-width:0px;
  5547. position:absolute;
  5548. left:0px;
  5549. top:0px;
  5550. width:109px;
  5551. height:30px;
  5552. }
  5553. #u95654 {
  5554. border-width:0px;
  5555. position:absolute;
  5556. left:755px;
  5557. top:306px;
  5558. width:109px;
  5559. height:30px;
  5560. display:flex;
  5561. font-size:14px;
  5562. }
  5563. #u95654 .text {
  5564. position:absolute;
  5565. align-self:center;
  5566. padding:2px 2px 2px 2px;
  5567. box-sizing:border-box;
  5568. width:100%;
  5569. }
  5570. #u95654_text {
  5571. border-width:0px;
  5572. word-wrap:break-word;
  5573. text-transform:none;
  5574. visibility:hidden;
  5575. }
  5576. #u95655_img {
  5577. border-width:0px;
  5578. position:absolute;
  5579. left:0px;
  5580. top:0px;
  5581. width:117px;
  5582. height:30px;
  5583. }
  5584. #u95655 {
  5585. border-width:0px;
  5586. position:absolute;
  5587. left:864px;
  5588. top:306px;
  5589. width:117px;
  5590. height:30px;
  5591. display:flex;
  5592. font-size:14px;
  5593. }
  5594. #u95655 .text {
  5595. position:absolute;
  5596. align-self:center;
  5597. padding:2px 2px 2px 2px;
  5598. box-sizing:border-box;
  5599. width:100%;
  5600. }
  5601. #u95655_text {
  5602. border-width:0px;
  5603. word-wrap:break-word;
  5604. text-transform:none;
  5605. visibility:hidden;
  5606. }
  5607. #u95656_img {
  5608. border-width:0px;
  5609. position:absolute;
  5610. left:0px;
  5611. top:0px;
  5612. width:109px;
  5613. height:30px;
  5614. }
  5615. #u95656 {
  5616. border-width:0px;
  5617. position:absolute;
  5618. left:981px;
  5619. top:306px;
  5620. width:109px;
  5621. height:30px;
  5622. display:flex;
  5623. font-size:14px;
  5624. }
  5625. #u95656 .text {
  5626. position:absolute;
  5627. align-self:center;
  5628. padding:2px 2px 2px 2px;
  5629. box-sizing:border-box;
  5630. width:100%;
  5631. }
  5632. #u95656_text {
  5633. border-width:0px;
  5634. word-wrap:break-word;
  5635. text-transform:none;
  5636. visibility:hidden;
  5637. }
  5638. #u95657_img {
  5639. border-width:0px;
  5640. position:absolute;
  5641. left:0px;
  5642. top:0px;
  5643. width:109px;
  5644. height:30px;
  5645. }
  5646. #u95657 {
  5647. border-width:0px;
  5648. position:absolute;
  5649. left:1090px;
  5650. top:306px;
  5651. width:109px;
  5652. height:30px;
  5653. display:flex;
  5654. font-size:14px;
  5655. }
  5656. #u95657 .text {
  5657. position:absolute;
  5658. align-self:center;
  5659. padding:2px 2px 2px 2px;
  5660. box-sizing:border-box;
  5661. width:100%;
  5662. }
  5663. #u95657_text {
  5664. border-width:0px;
  5665. word-wrap:break-word;
  5666. text-transform:none;
  5667. visibility:hidden;
  5668. }
  5669. #u95658_img {
  5670. border-width:0px;
  5671. position:absolute;
  5672. left:0px;
  5673. top:0px;
  5674. width:54px;
  5675. height:30px;
  5676. }
  5677. #u95658 {
  5678. border-width:0px;
  5679. position:absolute;
  5680. left:0px;
  5681. top:336px;
  5682. width:54px;
  5683. height:30px;
  5684. display:flex;
  5685. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5686. font-weight:400;
  5687. font-style:normal;
  5688. font-size:14px;
  5689. }
  5690. #u95658 .text {
  5691. position:absolute;
  5692. align-self:center;
  5693. padding:2px 2px 2px 2px;
  5694. box-sizing:border-box;
  5695. width:100%;
  5696. }
  5697. #u95658_text {
  5698. border-width:0px;
  5699. word-wrap:break-word;
  5700. text-transform:none;
  5701. visibility:hidden;
  5702. }
  5703. #u95659_img {
  5704. border-width:0px;
  5705. position:absolute;
  5706. left:0px;
  5707. top:0px;
  5708. width:108px;
  5709. height:30px;
  5710. }
  5711. #u95659 {
  5712. border-width:0px;
  5713. position:absolute;
  5714. left:54px;
  5715. top:336px;
  5716. width:108px;
  5717. height:30px;
  5718. display:flex;
  5719. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5720. font-weight:400;
  5721. font-style:normal;
  5722. font-size:14px;
  5723. }
  5724. #u95659 .text {
  5725. position:absolute;
  5726. align-self:center;
  5727. padding:2px 2px 2px 2px;
  5728. box-sizing:border-box;
  5729. width:100%;
  5730. }
  5731. #u95659_text {
  5732. border-width:0px;
  5733. word-wrap:break-word;
  5734. text-transform:none;
  5735. visibility:hidden;
  5736. }
  5737. #u95660_img {
  5738. border-width:0px;
  5739. position:absolute;
  5740. left:0px;
  5741. top:0px;
  5742. width:109px;
  5743. height:30px;
  5744. }
  5745. #u95660 {
  5746. border-width:0px;
  5747. position:absolute;
  5748. left:162px;
  5749. top:336px;
  5750. width:109px;
  5751. height:30px;
  5752. display:flex;
  5753. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5754. font-weight:400;
  5755. font-style:normal;
  5756. font-size:14px;
  5757. }
  5758. #u95660 .text {
  5759. position:absolute;
  5760. align-self:center;
  5761. padding:2px 2px 2px 2px;
  5762. box-sizing:border-box;
  5763. width:100%;
  5764. }
  5765. #u95660_text {
  5766. border-width:0px;
  5767. word-wrap:break-word;
  5768. text-transform:none;
  5769. visibility:hidden;
  5770. }
  5771. #u95661_img {
  5772. border-width:0px;
  5773. position:absolute;
  5774. left:0px;
  5775. top:0px;
  5776. width:108px;
  5777. height:30px;
  5778. }
  5779. #u95661 {
  5780. border-width:0px;
  5781. position:absolute;
  5782. left:271px;
  5783. top:336px;
  5784. width:108px;
  5785. height:30px;
  5786. display:flex;
  5787. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5788. font-weight:400;
  5789. font-style:normal;
  5790. font-size:14px;
  5791. }
  5792. #u95661 .text {
  5793. position:absolute;
  5794. align-self:center;
  5795. padding:2px 2px 2px 2px;
  5796. box-sizing:border-box;
  5797. width:100%;
  5798. }
  5799. #u95661_text {
  5800. border-width:0px;
  5801. word-wrap:break-word;
  5802. text-transform:none;
  5803. visibility:hidden;
  5804. }
  5805. #u95662_img {
  5806. border-width:0px;
  5807. position:absolute;
  5808. left:0px;
  5809. top:0px;
  5810. width:130px;
  5811. height:30px;
  5812. }
  5813. #u95662 {
  5814. border-width:0px;
  5815. position:absolute;
  5816. left:379px;
  5817. top:336px;
  5818. width:130px;
  5819. height:30px;
  5820. display:flex;
  5821. font-size:14px;
  5822. }
  5823. #u95662 .text {
  5824. position:absolute;
  5825. align-self:center;
  5826. padding:2px 2px 2px 2px;
  5827. box-sizing:border-box;
  5828. width:100%;
  5829. }
  5830. #u95662_text {
  5831. border-width:0px;
  5832. word-wrap:break-word;
  5833. text-transform:none;
  5834. visibility:hidden;
  5835. }
  5836. #u95663_img {
  5837. border-width:0px;
  5838. position:absolute;
  5839. left:0px;
  5840. top:0px;
  5841. width:130px;
  5842. height:30px;
  5843. }
  5844. #u95663 {
  5845. border-width:0px;
  5846. position:absolute;
  5847. left:509px;
  5848. top:336px;
  5849. width:130px;
  5850. height:30px;
  5851. display:flex;
  5852. font-size:14px;
  5853. }
  5854. #u95663 .text {
  5855. position:absolute;
  5856. align-self:center;
  5857. padding:2px 2px 2px 2px;
  5858. box-sizing:border-box;
  5859. width:100%;
  5860. }
  5861. #u95663_text {
  5862. border-width:0px;
  5863. word-wrap:break-word;
  5864. text-transform:none;
  5865. visibility:hidden;
  5866. }
  5867. #u95664_img {
  5868. border-width:0px;
  5869. position:absolute;
  5870. left:0px;
  5871. top:0px;
  5872. width:116px;
  5873. height:30px;
  5874. }
  5875. #u95664 {
  5876. border-width:0px;
  5877. position:absolute;
  5878. left:639px;
  5879. top:336px;
  5880. width:116px;
  5881. height:30px;
  5882. display:flex;
  5883. font-size:14px;
  5884. }
  5885. #u95664 .text {
  5886. position:absolute;
  5887. align-self:center;
  5888. padding:2px 2px 2px 2px;
  5889. box-sizing:border-box;
  5890. width:100%;
  5891. }
  5892. #u95664_text {
  5893. border-width:0px;
  5894. word-wrap:break-word;
  5895. text-transform:none;
  5896. visibility:hidden;
  5897. }
  5898. #u95665_img {
  5899. border-width:0px;
  5900. position:absolute;
  5901. left:0px;
  5902. top:0px;
  5903. width:109px;
  5904. height:30px;
  5905. }
  5906. #u95665 {
  5907. border-width:0px;
  5908. position:absolute;
  5909. left:755px;
  5910. top:336px;
  5911. width:109px;
  5912. height:30px;
  5913. display:flex;
  5914. font-size:14px;
  5915. }
  5916. #u95665 .text {
  5917. position:absolute;
  5918. align-self:center;
  5919. padding:2px 2px 2px 2px;
  5920. box-sizing:border-box;
  5921. width:100%;
  5922. }
  5923. #u95665_text {
  5924. border-width:0px;
  5925. word-wrap:break-word;
  5926. text-transform:none;
  5927. visibility:hidden;
  5928. }
  5929. #u95666_img {
  5930. border-width:0px;
  5931. position:absolute;
  5932. left:0px;
  5933. top:0px;
  5934. width:117px;
  5935. height:30px;
  5936. }
  5937. #u95666 {
  5938. border-width:0px;
  5939. position:absolute;
  5940. left:864px;
  5941. top:336px;
  5942. width:117px;
  5943. height:30px;
  5944. display:flex;
  5945. font-size:14px;
  5946. }
  5947. #u95666 .text {
  5948. position:absolute;
  5949. align-self:center;
  5950. padding:2px 2px 2px 2px;
  5951. box-sizing:border-box;
  5952. width:100%;
  5953. }
  5954. #u95666_text {
  5955. border-width:0px;
  5956. word-wrap:break-word;
  5957. text-transform:none;
  5958. visibility:hidden;
  5959. }
  5960. #u95667_img {
  5961. border-width:0px;
  5962. position:absolute;
  5963. left:0px;
  5964. top:0px;
  5965. width:109px;
  5966. height:30px;
  5967. }
  5968. #u95667 {
  5969. border-width:0px;
  5970. position:absolute;
  5971. left:981px;
  5972. top:336px;
  5973. width:109px;
  5974. height:30px;
  5975. display:flex;
  5976. font-size:14px;
  5977. }
  5978. #u95667 .text {
  5979. position:absolute;
  5980. align-self:center;
  5981. padding:2px 2px 2px 2px;
  5982. box-sizing:border-box;
  5983. width:100%;
  5984. }
  5985. #u95667_text {
  5986. border-width:0px;
  5987. word-wrap:break-word;
  5988. text-transform:none;
  5989. visibility:hidden;
  5990. }
  5991. #u95668_img {
  5992. border-width:0px;
  5993. position:absolute;
  5994. left:0px;
  5995. top:0px;
  5996. width:109px;
  5997. height:30px;
  5998. }
  5999. #u95668 {
  6000. border-width:0px;
  6001. position:absolute;
  6002. left:1090px;
  6003. top:336px;
  6004. width:109px;
  6005. height:30px;
  6006. display:flex;
  6007. font-size:14px;
  6008. }
  6009. #u95668 .text {
  6010. position:absolute;
  6011. align-self:center;
  6012. padding:2px 2px 2px 2px;
  6013. box-sizing:border-box;
  6014. width:100%;
  6015. }
  6016. #u95668_text {
  6017. border-width:0px;
  6018. word-wrap:break-word;
  6019. text-transform:none;
  6020. visibility:hidden;
  6021. }
  6022. #u95669_img {
  6023. border-width:0px;
  6024. position:absolute;
  6025. left:0px;
  6026. top:0px;
  6027. width:54px;
  6028. height:30px;
  6029. }
  6030. #u95669 {
  6031. border-width:0px;
  6032. position:absolute;
  6033. left:0px;
  6034. top:366px;
  6035. width:54px;
  6036. height:30px;
  6037. display:flex;
  6038. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6039. font-weight:400;
  6040. font-style:normal;
  6041. font-size:14px;
  6042. }
  6043. #u95669 .text {
  6044. position:absolute;
  6045. align-self:center;
  6046. padding:2px 2px 2px 2px;
  6047. box-sizing:border-box;
  6048. width:100%;
  6049. }
  6050. #u95669_text {
  6051. border-width:0px;
  6052. word-wrap:break-word;
  6053. text-transform:none;
  6054. visibility:hidden;
  6055. }
  6056. #u95670_img {
  6057. border-width:0px;
  6058. position:absolute;
  6059. left:0px;
  6060. top:0px;
  6061. width:108px;
  6062. height:30px;
  6063. }
  6064. #u95670 {
  6065. border-width:0px;
  6066. position:absolute;
  6067. left:54px;
  6068. top:366px;
  6069. width:108px;
  6070. height:30px;
  6071. display:flex;
  6072. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6073. font-weight:400;
  6074. font-style:normal;
  6075. font-size:14px;
  6076. }
  6077. #u95670 .text {
  6078. position:absolute;
  6079. align-self:center;
  6080. padding:2px 2px 2px 2px;
  6081. box-sizing:border-box;
  6082. width:100%;
  6083. }
  6084. #u95670_text {
  6085. border-width:0px;
  6086. word-wrap:break-word;
  6087. text-transform:none;
  6088. visibility:hidden;
  6089. }
  6090. #u95671_img {
  6091. border-width:0px;
  6092. position:absolute;
  6093. left:0px;
  6094. top:0px;
  6095. width:109px;
  6096. height:30px;
  6097. }
  6098. #u95671 {
  6099. border-width:0px;
  6100. position:absolute;
  6101. left:162px;
  6102. top:366px;
  6103. width:109px;
  6104. height:30px;
  6105. display:flex;
  6106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6107. font-weight:400;
  6108. font-style:normal;
  6109. font-size:14px;
  6110. }
  6111. #u95671 .text {
  6112. position:absolute;
  6113. align-self:center;
  6114. padding:2px 2px 2px 2px;
  6115. box-sizing:border-box;
  6116. width:100%;
  6117. }
  6118. #u95671_text {
  6119. border-width:0px;
  6120. word-wrap:break-word;
  6121. text-transform:none;
  6122. visibility:hidden;
  6123. }
  6124. #u95672_img {
  6125. border-width:0px;
  6126. position:absolute;
  6127. left:0px;
  6128. top:0px;
  6129. width:108px;
  6130. height:30px;
  6131. }
  6132. #u95672 {
  6133. border-width:0px;
  6134. position:absolute;
  6135. left:271px;
  6136. top:366px;
  6137. width:108px;
  6138. height:30px;
  6139. display:flex;
  6140. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6141. font-weight:400;
  6142. font-style:normal;
  6143. font-size:14px;
  6144. }
  6145. #u95672 .text {
  6146. position:absolute;
  6147. align-self:center;
  6148. padding:2px 2px 2px 2px;
  6149. box-sizing:border-box;
  6150. width:100%;
  6151. }
  6152. #u95672_text {
  6153. border-width:0px;
  6154. word-wrap:break-word;
  6155. text-transform:none;
  6156. visibility:hidden;
  6157. }
  6158. #u95673_img {
  6159. border-width:0px;
  6160. position:absolute;
  6161. left:0px;
  6162. top:0px;
  6163. width:130px;
  6164. height:30px;
  6165. }
  6166. #u95673 {
  6167. border-width:0px;
  6168. position:absolute;
  6169. left:379px;
  6170. top:366px;
  6171. width:130px;
  6172. height:30px;
  6173. display:flex;
  6174. font-size:14px;
  6175. }
  6176. #u95673 .text {
  6177. position:absolute;
  6178. align-self:center;
  6179. padding:2px 2px 2px 2px;
  6180. box-sizing:border-box;
  6181. width:100%;
  6182. }
  6183. #u95673_text {
  6184. border-width:0px;
  6185. word-wrap:break-word;
  6186. text-transform:none;
  6187. visibility:hidden;
  6188. }
  6189. #u95674_img {
  6190. border-width:0px;
  6191. position:absolute;
  6192. left:0px;
  6193. top:0px;
  6194. width:130px;
  6195. height:30px;
  6196. }
  6197. #u95674 {
  6198. border-width:0px;
  6199. position:absolute;
  6200. left:509px;
  6201. top:366px;
  6202. width:130px;
  6203. height:30px;
  6204. display:flex;
  6205. font-size:14px;
  6206. }
  6207. #u95674 .text {
  6208. position:absolute;
  6209. align-self:center;
  6210. padding:2px 2px 2px 2px;
  6211. box-sizing:border-box;
  6212. width:100%;
  6213. }
  6214. #u95674_text {
  6215. border-width:0px;
  6216. word-wrap:break-word;
  6217. text-transform:none;
  6218. visibility:hidden;
  6219. }
  6220. #u95675_img {
  6221. border-width:0px;
  6222. position:absolute;
  6223. left:0px;
  6224. top:0px;
  6225. width:116px;
  6226. height:30px;
  6227. }
  6228. #u95675 {
  6229. border-width:0px;
  6230. position:absolute;
  6231. left:639px;
  6232. top:366px;
  6233. width:116px;
  6234. height:30px;
  6235. display:flex;
  6236. font-size:14px;
  6237. }
  6238. #u95675 .text {
  6239. position:absolute;
  6240. align-self:center;
  6241. padding:2px 2px 2px 2px;
  6242. box-sizing:border-box;
  6243. width:100%;
  6244. }
  6245. #u95675_text {
  6246. border-width:0px;
  6247. word-wrap:break-word;
  6248. text-transform:none;
  6249. visibility:hidden;
  6250. }
  6251. #u95676_img {
  6252. border-width:0px;
  6253. position:absolute;
  6254. left:0px;
  6255. top:0px;
  6256. width:109px;
  6257. height:30px;
  6258. }
  6259. #u95676 {
  6260. border-width:0px;
  6261. position:absolute;
  6262. left:755px;
  6263. top:366px;
  6264. width:109px;
  6265. height:30px;
  6266. display:flex;
  6267. font-size:14px;
  6268. }
  6269. #u95676 .text {
  6270. position:absolute;
  6271. align-self:center;
  6272. padding:2px 2px 2px 2px;
  6273. box-sizing:border-box;
  6274. width:100%;
  6275. }
  6276. #u95676_text {
  6277. border-width:0px;
  6278. word-wrap:break-word;
  6279. text-transform:none;
  6280. visibility:hidden;
  6281. }
  6282. #u95677_img {
  6283. border-width:0px;
  6284. position:absolute;
  6285. left:0px;
  6286. top:0px;
  6287. width:117px;
  6288. height:30px;
  6289. }
  6290. #u95677 {
  6291. border-width:0px;
  6292. position:absolute;
  6293. left:864px;
  6294. top:366px;
  6295. width:117px;
  6296. height:30px;
  6297. display:flex;
  6298. font-size:14px;
  6299. }
  6300. #u95677 .text {
  6301. position:absolute;
  6302. align-self:center;
  6303. padding:2px 2px 2px 2px;
  6304. box-sizing:border-box;
  6305. width:100%;
  6306. }
  6307. #u95677_text {
  6308. border-width:0px;
  6309. word-wrap:break-word;
  6310. text-transform:none;
  6311. visibility:hidden;
  6312. }
  6313. #u95678_img {
  6314. border-width:0px;
  6315. position:absolute;
  6316. left:0px;
  6317. top:0px;
  6318. width:109px;
  6319. height:30px;
  6320. }
  6321. #u95678 {
  6322. border-width:0px;
  6323. position:absolute;
  6324. left:981px;
  6325. top:366px;
  6326. width:109px;
  6327. height:30px;
  6328. display:flex;
  6329. font-size:14px;
  6330. }
  6331. #u95678 .text {
  6332. position:absolute;
  6333. align-self:center;
  6334. padding:2px 2px 2px 2px;
  6335. box-sizing:border-box;
  6336. width:100%;
  6337. }
  6338. #u95678_text {
  6339. border-width:0px;
  6340. word-wrap:break-word;
  6341. text-transform:none;
  6342. visibility:hidden;
  6343. }
  6344. #u95679_img {
  6345. border-width:0px;
  6346. position:absolute;
  6347. left:0px;
  6348. top:0px;
  6349. width:109px;
  6350. height:30px;
  6351. }
  6352. #u95679 {
  6353. border-width:0px;
  6354. position:absolute;
  6355. left:1090px;
  6356. top:366px;
  6357. width:109px;
  6358. height:30px;
  6359. display:flex;
  6360. font-size:14px;
  6361. }
  6362. #u95679 .text {
  6363. position:absolute;
  6364. align-self:center;
  6365. padding:2px 2px 2px 2px;
  6366. box-sizing:border-box;
  6367. width:100%;
  6368. }
  6369. #u95679_text {
  6370. border-width:0px;
  6371. word-wrap:break-word;
  6372. text-transform:none;
  6373. visibility:hidden;
  6374. }
  6375. #u95680_img {
  6376. border-width:0px;
  6377. position:absolute;
  6378. left:0px;
  6379. top:0px;
  6380. width:54px;
  6381. height:30px;
  6382. }
  6383. #u95680 {
  6384. border-width:0px;
  6385. position:absolute;
  6386. left:0px;
  6387. top:396px;
  6388. width:54px;
  6389. height:30px;
  6390. display:flex;
  6391. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6392. font-weight:400;
  6393. font-style:normal;
  6394. font-size:14px;
  6395. }
  6396. #u95680 .text {
  6397. position:absolute;
  6398. align-self:center;
  6399. padding:2px 2px 2px 2px;
  6400. box-sizing:border-box;
  6401. width:100%;
  6402. }
  6403. #u95680_text {
  6404. border-width:0px;
  6405. word-wrap:break-word;
  6406. text-transform:none;
  6407. visibility:hidden;
  6408. }
  6409. #u95681_img {
  6410. border-width:0px;
  6411. position:absolute;
  6412. left:0px;
  6413. top:0px;
  6414. width:108px;
  6415. height:30px;
  6416. }
  6417. #u95681 {
  6418. border-width:0px;
  6419. position:absolute;
  6420. left:54px;
  6421. top:396px;
  6422. width:108px;
  6423. height:30px;
  6424. display:flex;
  6425. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6426. font-weight:400;
  6427. font-style:normal;
  6428. font-size:14px;
  6429. }
  6430. #u95681 .text {
  6431. position:absolute;
  6432. align-self:center;
  6433. padding:2px 2px 2px 2px;
  6434. box-sizing:border-box;
  6435. width:100%;
  6436. }
  6437. #u95681_text {
  6438. border-width:0px;
  6439. word-wrap:break-word;
  6440. text-transform:none;
  6441. visibility:hidden;
  6442. }
  6443. #u95682_img {
  6444. border-width:0px;
  6445. position:absolute;
  6446. left:0px;
  6447. top:0px;
  6448. width:109px;
  6449. height:30px;
  6450. }
  6451. #u95682 {
  6452. border-width:0px;
  6453. position:absolute;
  6454. left:162px;
  6455. top:396px;
  6456. width:109px;
  6457. height:30px;
  6458. display:flex;
  6459. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6460. font-weight:400;
  6461. font-style:normal;
  6462. font-size:14px;
  6463. }
  6464. #u95682 .text {
  6465. position:absolute;
  6466. align-self:center;
  6467. padding:2px 2px 2px 2px;
  6468. box-sizing:border-box;
  6469. width:100%;
  6470. }
  6471. #u95682_text {
  6472. border-width:0px;
  6473. word-wrap:break-word;
  6474. text-transform:none;
  6475. visibility:hidden;
  6476. }
  6477. #u95683_img {
  6478. border-width:0px;
  6479. position:absolute;
  6480. left:0px;
  6481. top:0px;
  6482. width:108px;
  6483. height:30px;
  6484. }
  6485. #u95683 {
  6486. border-width:0px;
  6487. position:absolute;
  6488. left:271px;
  6489. top:396px;
  6490. width:108px;
  6491. height:30px;
  6492. display:flex;
  6493. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6494. font-weight:400;
  6495. font-style:normal;
  6496. font-size:14px;
  6497. }
  6498. #u95683 .text {
  6499. position:absolute;
  6500. align-self:center;
  6501. padding:2px 2px 2px 2px;
  6502. box-sizing:border-box;
  6503. width:100%;
  6504. }
  6505. #u95683_text {
  6506. border-width:0px;
  6507. word-wrap:break-word;
  6508. text-transform:none;
  6509. visibility:hidden;
  6510. }
  6511. #u95684_img {
  6512. border-width:0px;
  6513. position:absolute;
  6514. left:0px;
  6515. top:0px;
  6516. width:130px;
  6517. height:30px;
  6518. }
  6519. #u95684 {
  6520. border-width:0px;
  6521. position:absolute;
  6522. left:379px;
  6523. top:396px;
  6524. width:130px;
  6525. height:30px;
  6526. display:flex;
  6527. font-size:14px;
  6528. }
  6529. #u95684 .text {
  6530. position:absolute;
  6531. align-self:center;
  6532. padding:2px 2px 2px 2px;
  6533. box-sizing:border-box;
  6534. width:100%;
  6535. }
  6536. #u95684_text {
  6537. border-width:0px;
  6538. word-wrap:break-word;
  6539. text-transform:none;
  6540. visibility:hidden;
  6541. }
  6542. #u95685_img {
  6543. border-width:0px;
  6544. position:absolute;
  6545. left:0px;
  6546. top:0px;
  6547. width:130px;
  6548. height:30px;
  6549. }
  6550. #u95685 {
  6551. border-width:0px;
  6552. position:absolute;
  6553. left:509px;
  6554. top:396px;
  6555. width:130px;
  6556. height:30px;
  6557. display:flex;
  6558. font-size:14px;
  6559. }
  6560. #u95685 .text {
  6561. position:absolute;
  6562. align-self:center;
  6563. padding:2px 2px 2px 2px;
  6564. box-sizing:border-box;
  6565. width:100%;
  6566. }
  6567. #u95685_text {
  6568. border-width:0px;
  6569. word-wrap:break-word;
  6570. text-transform:none;
  6571. visibility:hidden;
  6572. }
  6573. #u95686_img {
  6574. border-width:0px;
  6575. position:absolute;
  6576. left:0px;
  6577. top:0px;
  6578. width:116px;
  6579. height:30px;
  6580. }
  6581. #u95686 {
  6582. border-width:0px;
  6583. position:absolute;
  6584. left:639px;
  6585. top:396px;
  6586. width:116px;
  6587. height:30px;
  6588. display:flex;
  6589. font-size:14px;
  6590. }
  6591. #u95686 .text {
  6592. position:absolute;
  6593. align-self:center;
  6594. padding:2px 2px 2px 2px;
  6595. box-sizing:border-box;
  6596. width:100%;
  6597. }
  6598. #u95686_text {
  6599. border-width:0px;
  6600. word-wrap:break-word;
  6601. text-transform:none;
  6602. visibility:hidden;
  6603. }
  6604. #u95687_img {
  6605. border-width:0px;
  6606. position:absolute;
  6607. left:0px;
  6608. top:0px;
  6609. width:109px;
  6610. height:30px;
  6611. }
  6612. #u95687 {
  6613. border-width:0px;
  6614. position:absolute;
  6615. left:755px;
  6616. top:396px;
  6617. width:109px;
  6618. height:30px;
  6619. display:flex;
  6620. font-size:14px;
  6621. }
  6622. #u95687 .text {
  6623. position:absolute;
  6624. align-self:center;
  6625. padding:2px 2px 2px 2px;
  6626. box-sizing:border-box;
  6627. width:100%;
  6628. }
  6629. #u95687_text {
  6630. border-width:0px;
  6631. word-wrap:break-word;
  6632. text-transform:none;
  6633. visibility:hidden;
  6634. }
  6635. #u95688_img {
  6636. border-width:0px;
  6637. position:absolute;
  6638. left:0px;
  6639. top:0px;
  6640. width:117px;
  6641. height:30px;
  6642. }
  6643. #u95688 {
  6644. border-width:0px;
  6645. position:absolute;
  6646. left:864px;
  6647. top:396px;
  6648. width:117px;
  6649. height:30px;
  6650. display:flex;
  6651. font-size:14px;
  6652. }
  6653. #u95688 .text {
  6654. position:absolute;
  6655. align-self:center;
  6656. padding:2px 2px 2px 2px;
  6657. box-sizing:border-box;
  6658. width:100%;
  6659. }
  6660. #u95688_text {
  6661. border-width:0px;
  6662. word-wrap:break-word;
  6663. text-transform:none;
  6664. visibility:hidden;
  6665. }
  6666. #u95689_img {
  6667. border-width:0px;
  6668. position:absolute;
  6669. left:0px;
  6670. top:0px;
  6671. width:109px;
  6672. height:30px;
  6673. }
  6674. #u95689 {
  6675. border-width:0px;
  6676. position:absolute;
  6677. left:981px;
  6678. top:396px;
  6679. width:109px;
  6680. height:30px;
  6681. display:flex;
  6682. font-size:14px;
  6683. }
  6684. #u95689 .text {
  6685. position:absolute;
  6686. align-self:center;
  6687. padding:2px 2px 2px 2px;
  6688. box-sizing:border-box;
  6689. width:100%;
  6690. }
  6691. #u95689_text {
  6692. border-width:0px;
  6693. word-wrap:break-word;
  6694. text-transform:none;
  6695. visibility:hidden;
  6696. }
  6697. #u95690_img {
  6698. border-width:0px;
  6699. position:absolute;
  6700. left:0px;
  6701. top:0px;
  6702. width:109px;
  6703. height:30px;
  6704. }
  6705. #u95690 {
  6706. border-width:0px;
  6707. position:absolute;
  6708. left:1090px;
  6709. top:396px;
  6710. width:109px;
  6711. height:30px;
  6712. display:flex;
  6713. font-size:14px;
  6714. }
  6715. #u95690 .text {
  6716. position:absolute;
  6717. align-self:center;
  6718. padding:2px 2px 2px 2px;
  6719. box-sizing:border-box;
  6720. width:100%;
  6721. }
  6722. #u95690_text {
  6723. border-width:0px;
  6724. word-wrap:break-word;
  6725. text-transform:none;
  6726. visibility:hidden;
  6727. }
  6728. #u95691_div {
  6729. border-width:0px;
  6730. position:absolute;
  6731. left:0px;
  6732. top:0px;
  6733. width:80px;
  6734. height:30px;
  6735. background:inherit;
  6736. background-color:rgba(24, 144, 255, 1);
  6737. border:none;
  6738. border-radius:4px;
  6739. -moz-box-shadow:none;
  6740. -webkit-box-shadow:none;
  6741. box-shadow:none;
  6742. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6743. font-weight:400;
  6744. font-style:normal;
  6745. font-size:14px;
  6746. color:#FFFFFF;
  6747. }
  6748. #u95691 {
  6749. border-width:0px;
  6750. position:absolute;
  6751. left:354px;
  6752. top:162px;
  6753. width:80px;
  6754. height:30px;
  6755. display:flex;
  6756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6757. font-weight:400;
  6758. font-style:normal;
  6759. font-size:14px;
  6760. color:#FFFFFF;
  6761. }
  6762. #u95691 .text {
  6763. position:absolute;
  6764. align-self:center;
  6765. padding:2px 2px 2px 2px;
  6766. box-sizing:border-box;
  6767. width:100%;
  6768. }
  6769. #u95691_text {
  6770. border-width:0px;
  6771. word-wrap:break-word;
  6772. text-transform:none;
  6773. }
  6774. #u95692 label {
  6775. left:0px;
  6776. width:100%;
  6777. }
  6778. #u95692_img {
  6779. border-width:0px;
  6780. position:absolute;
  6781. left:0px;
  6782. top:0px;
  6783. width:12px;
  6784. height:12px;
  6785. }
  6786. #u95692 {
  6787. border-width:0px;
  6788. position:absolute;
  6789. left:368px;
  6790. top:219px;
  6791. width:42px;
  6792. height:16px;
  6793. display:flex;
  6794. }
  6795. #u95692 .text {
  6796. position:absolute;
  6797. align-self:center;
  6798. padding:0px 2px 0px 2px;
  6799. box-sizing:border-box;
  6800. }
  6801. #u95692_img.selected {
  6802. }
  6803. #u95692.selected {
  6804. }
  6805. #u95692_img.disabled {
  6806. }
  6807. #u95692.disabled {
  6808. }
  6809. #u95692_img.selectedDisabled {
  6810. }
  6811. #u95692.selectedDisabled {
  6812. }
  6813. #u95692_text {
  6814. border-width:0px;
  6815. position:absolute;
  6816. left:14px;
  6817. top:0px;
  6818. width:26px;
  6819. word-wrap:break-word;
  6820. text-transform:none;
  6821. visibility:hidden;
  6822. }
  6823. #u95692_input {
  6824. border-width:0px;
  6825. position:absolute;
  6826. left:0px;
  6827. top:0px;
  6828. width:0px;
  6829. height:0px;
  6830. opacity:0;
  6831. }
  6832. #u95693 label {
  6833. left:0px;
  6834. width:100%;
  6835. }
  6836. #u95693_img {
  6837. border-width:0px;
  6838. position:absolute;
  6839. left:0px;
  6840. top:0px;
  6841. width:12px;
  6842. height:12px;
  6843. }
  6844. #u95693 {
  6845. border-width:0px;
  6846. position:absolute;
  6847. left:368px;
  6848. top:255px;
  6849. width:42px;
  6850. height:16px;
  6851. display:flex;
  6852. }
  6853. #u95693 .text {
  6854. position:absolute;
  6855. align-self:center;
  6856. padding:0px 2px 0px 2px;
  6857. box-sizing:border-box;
  6858. }
  6859. #u95693_img.selected {
  6860. }
  6861. #u95693.selected {
  6862. }
  6863. #u95693_img.disabled {
  6864. }
  6865. #u95693.disabled {
  6866. }
  6867. #u95693_img.selectedDisabled {
  6868. }
  6869. #u95693.selectedDisabled {
  6870. }
  6871. #u95693_text {
  6872. border-width:0px;
  6873. position:absolute;
  6874. left:14px;
  6875. top:0px;
  6876. width:26px;
  6877. word-wrap:break-word;
  6878. text-transform:none;
  6879. visibility:hidden;
  6880. }
  6881. #u95693_input {
  6882. border-width:0px;
  6883. position:absolute;
  6884. left:0px;
  6885. top:0px;
  6886. width:0px;
  6887. height:0px;
  6888. opacity:0;
  6889. }
  6890. #u95694_div {
  6891. border-width:0px;
  6892. position:absolute;
  6893. left:0px;
  6894. top:0px;
  6895. width:60px;
  6896. height:30px;
  6897. background:inherit;
  6898. background-color:rgba(255, 255, 255, 1);
  6899. box-sizing:border-box;
  6900. border-width:1px;
  6901. border-style:solid;
  6902. border-color:rgba(170, 170, 170, 1);
  6903. border-radius:4px;
  6904. -moz-box-shadow:none;
  6905. -webkit-box-shadow:none;
  6906. box-shadow:none;
  6907. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6908. font-weight:400;
  6909. font-style:normal;
  6910. font-size:14px;
  6911. }
  6912. #u95694 {
  6913. border-width:0px;
  6914. position:absolute;
  6915. left:444px;
  6916. top:162px;
  6917. width:60px;
  6918. height:30px;
  6919. display:flex;
  6920. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6921. font-weight:400;
  6922. font-style:normal;
  6923. font-size:14px;
  6924. }
  6925. #u95694 .text {
  6926. position:absolute;
  6927. align-self:center;
  6928. padding:2px 2px 2px 2px;
  6929. box-sizing:border-box;
  6930. width:100%;
  6931. }
  6932. #u95694_text {
  6933. border-width:0px;
  6934. word-wrap:break-word;
  6935. text-transform:none;
  6936. }
  6937. #u95695_div {
  6938. border-width:0px;
  6939. position:absolute;
  6940. left:0px;
  6941. top:0px;
  6942. width:60px;
  6943. height:30px;
  6944. background:inherit;
  6945. background-color:rgba(255, 255, 255, 1);
  6946. box-sizing:border-box;
  6947. border-width:1px;
  6948. border-style:solid;
  6949. border-color:rgba(170, 170, 170, 1);
  6950. border-radius:4px;
  6951. -moz-box-shadow:none;
  6952. -webkit-box-shadow:none;
  6953. box-shadow:none;
  6954. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6955. font-weight:400;
  6956. font-style:normal;
  6957. font-size:14px;
  6958. }
  6959. #u95695 {
  6960. border-width:0px;
  6961. position:absolute;
  6962. left:514px;
  6963. top:162px;
  6964. width:60px;
  6965. height:30px;
  6966. display:flex;
  6967. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6968. font-weight:400;
  6969. font-style:normal;
  6970. font-size:14px;
  6971. }
  6972. #u95695 .text {
  6973. position:absolute;
  6974. align-self:center;
  6975. padding:2px 2px 2px 2px;
  6976. box-sizing:border-box;
  6977. width:100%;
  6978. }
  6979. #u95695_text {
  6980. border-width:0px;
  6981. word-wrap:break-word;
  6982. text-transform:none;
  6983. }
  6984. #u95696_div {
  6985. border-width:0px;
  6986. position:absolute;
  6987. left:0px;
  6988. top:0px;
  6989. width:60px;
  6990. height:30px;
  6991. background:inherit;
  6992. background-color:rgba(41, 143, 255, 1);
  6993. border:none;
  6994. border-radius:4px;
  6995. -moz-box-shadow:none;
  6996. -webkit-box-shadow:none;
  6997. box-shadow:none;
  6998. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6999. font-weight:400;
  7000. font-style:normal;
  7001. font-size:14px;
  7002. color:#FFFFFF;
  7003. }
  7004. #u95696 {
  7005. border-width:0px;
  7006. position:absolute;
  7007. left:615px;
  7008. top:162px;
  7009. width:60px;
  7010. height:30px;
  7011. display:flex;
  7012. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7013. font-weight:400;
  7014. font-style:normal;
  7015. font-size:14px;
  7016. color:#FFFFFF;
  7017. }
  7018. #u95696 .text {
  7019. position:absolute;
  7020. align-self:center;
  7021. padding:2px 2px 2px 2px;
  7022. box-sizing:border-box;
  7023. width:100%;
  7024. }
  7025. #u95696_text {
  7026. border-width:0px;
  7027. word-wrap:break-word;
  7028. text-transform:none;
  7029. }
  7030. #u95697_div {
  7031. border-width:0px;
  7032. position:absolute;
  7033. left:0px;
  7034. top:0px;
  7035. width:80px;
  7036. height:30px;
  7037. background:inherit;
  7038. background-color:rgba(255, 255, 255, 1);
  7039. box-sizing:border-box;
  7040. border-width:1px;
  7041. border-style:solid;
  7042. border-color:rgba(170, 170, 170, 1);
  7043. border-radius:4px;
  7044. -moz-box-shadow:none;
  7045. -webkit-box-shadow:none;
  7046. box-shadow:none;
  7047. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7048. font-weight:400;
  7049. font-style:normal;
  7050. font-size:14px;
  7051. }
  7052. #u95697 {
  7053. border-width:0px;
  7054. position:absolute;
  7055. left:685px;
  7056. top:162px;
  7057. width:80px;
  7058. height:30px;
  7059. display:flex;
  7060. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7061. font-weight:400;
  7062. font-style:normal;
  7063. font-size:14px;
  7064. }
  7065. #u95697 .text {
  7066. position:absolute;
  7067. align-self:center;
  7068. padding:2px 2px 2px 2px;
  7069. box-sizing:border-box;
  7070. width:100%;
  7071. }
  7072. #u95697_text {
  7073. border-width:0px;
  7074. word-wrap:break-word;
  7075. text-transform:none;
  7076. }
  7077. #u95698_img {
  7078. border-width:0px;
  7079. position:absolute;
  7080. left:0px;
  7081. top:0px;
  7082. width:2px;
  7083. height:21px;
  7084. }
  7085. #u95698 {
  7086. border-width:0px;
  7087. position:absolute;
  7088. left:594px;
  7089. top:167px;
  7090. width:1px;
  7091. height:20px;
  7092. display:flex;
  7093. }
  7094. #u95698 .text {
  7095. position:absolute;
  7096. align-self:center;
  7097. padding:2px 2px 2px 2px;
  7098. box-sizing:border-box;
  7099. width:100%;
  7100. }
  7101. #u95698_text {
  7102. border-width:0px;
  7103. word-wrap:break-word;
  7104. text-transform:none;
  7105. visibility:hidden;
  7106. }
  7107. #u95699 {
  7108. border-width:0px;
  7109. position:absolute;
  7110. left:0px;
  7111. top:0px;
  7112. width:0px;
  7113. height:0px;
  7114. }
  7115. #u95700_div {
  7116. border-width:0px;
  7117. position:absolute;
  7118. left:0px;
  7119. top:0px;
  7120. width:140px;
  7121. height:30px;
  7122. background:inherit;
  7123. background-color:rgba(255, 255, 255, 1);
  7124. box-sizing:border-box;
  7125. border-width:1px;
  7126. border-style:solid;
  7127. border-color:rgba(215, 215, 215, 1);
  7128. border-radius:4px;
  7129. -moz-box-shadow:none;
  7130. -webkit-box-shadow:none;
  7131. box-shadow:none;
  7132. font-size:14px;
  7133. }
  7134. #u95700 {
  7135. border-width:0px;
  7136. position:absolute;
  7137. left:354px;
  7138. top:113px;
  7139. width:140px;
  7140. height:30px;
  7141. display:flex;
  7142. font-size:14px;
  7143. }
  7144. #u95700 .text {
  7145. position:absolute;
  7146. align-self:center;
  7147. padding:2px 2px 2px 2px;
  7148. box-sizing:border-box;
  7149. width:100%;
  7150. }
  7151. #u95700_text {
  7152. border-width:0px;
  7153. word-wrap:break-word;
  7154. text-transform:none;
  7155. visibility:hidden;
  7156. }
  7157. #u95701_input {
  7158. position:absolute;
  7159. left:0px;
  7160. top:0px;
  7161. width:134px;
  7162. height:23px;
  7163. padding:2px 2px 2px 2px;
  7164. font-family:'ArialMT', 'Arial', sans-serif;
  7165. font-weight:400;
  7166. font-style:normal;
  7167. font-size:14px;
  7168. letter-spacing:normal;
  7169. color:#AAAAAA;
  7170. vertical-align:none;
  7171. text-align:left;
  7172. text-transform:none;
  7173. background-color:transparent;
  7174. border-color:transparent;
  7175. }
  7176. #u95701_input.disabled {
  7177. position:absolute;
  7178. left:0px;
  7179. top:0px;
  7180. width:134px;
  7181. height:23px;
  7182. padding:2px 2px 2px 2px;
  7183. font-family:'ArialMT', 'Arial', sans-serif;
  7184. font-weight:400;
  7185. font-style:normal;
  7186. font-size:14px;
  7187. letter-spacing:normal;
  7188. color:#AAAAAA;
  7189. vertical-align:none;
  7190. text-align:left;
  7191. text-transform:none;
  7192. background-color:transparent;
  7193. border-color:transparent;
  7194. }
  7195. #u95701_div {
  7196. border-width:0px;
  7197. position:absolute;
  7198. left:0px;
  7199. top:0px;
  7200. width:134px;
  7201. height:23px;
  7202. background:inherit;
  7203. background-color:rgba(255, 255, 255, 1);
  7204. border:none;
  7205. border-radius:0px;
  7206. -moz-box-shadow:none;
  7207. -webkit-box-shadow:none;
  7208. box-shadow:none;
  7209. font-size:14px;
  7210. color:#AAAAAA;
  7211. }
  7212. #u95701 {
  7213. border-width:0px;
  7214. position:absolute;
  7215. left:358px;
  7216. top:115px;
  7217. width:134px;
  7218. height:23px;
  7219. display:flex;
  7220. font-size:14px;
  7221. color:#AAAAAA;
  7222. }
  7223. #u95701 .text {
  7224. position:absolute;
  7225. align-self:flex-start;
  7226. padding:2px 2px 2px 2px;
  7227. box-sizing:border-box;
  7228. width:100%;
  7229. }
  7230. #u95701_div.disabled {
  7231. border-width:0px;
  7232. position:absolute;
  7233. left:0px;
  7234. top:0px;
  7235. width:134px;
  7236. height:23px;
  7237. background:inherit;
  7238. background-color:rgba(240, 240, 240, 1);
  7239. border:none;
  7240. border-radius:0px;
  7241. -moz-box-shadow:none;
  7242. -webkit-box-shadow:none;
  7243. box-shadow:none;
  7244. font-size:14px;
  7245. color:#AAAAAA;
  7246. }
  7247. #u95701.disabled {
  7248. }
  7249. .u95701_input_option {
  7250. font-size:14px;
  7251. }
  7252. #u95702 {
  7253. border-width:0px;
  7254. position:absolute;
  7255. left:0px;
  7256. top:0px;
  7257. width:0px;
  7258. height:0px;
  7259. }
  7260. #u95703_div {
  7261. border-width:0px;
  7262. position:absolute;
  7263. left:0px;
  7264. top:0px;
  7265. width:140px;
  7266. height:30px;
  7267. background:inherit;
  7268. background-color:rgba(255, 255, 255, 1);
  7269. box-sizing:border-box;
  7270. border-width:1px;
  7271. border-style:solid;
  7272. border-color:rgba(215, 215, 215, 1);
  7273. border-radius:4px;
  7274. -moz-box-shadow:none;
  7275. -webkit-box-shadow:none;
  7276. box-shadow:none;
  7277. font-size:14px;
  7278. }
  7279. #u95703 {
  7280. border-width:0px;
  7281. position:absolute;
  7282. left:504px;
  7283. top:113px;
  7284. width:140px;
  7285. height:30px;
  7286. display:flex;
  7287. font-size:14px;
  7288. }
  7289. #u95703 .text {
  7290. position:absolute;
  7291. align-self:center;
  7292. padding:2px 2px 2px 2px;
  7293. box-sizing:border-box;
  7294. width:100%;
  7295. }
  7296. #u95703_text {
  7297. border-width:0px;
  7298. word-wrap:break-word;
  7299. text-transform:none;
  7300. visibility:hidden;
  7301. }
  7302. #u95704_input {
  7303. position:absolute;
  7304. left:0px;
  7305. top:0px;
  7306. width:134px;
  7307. height:23px;
  7308. padding:2px 2px 2px 2px;
  7309. font-family:'ArialMT', 'Arial', sans-serif;
  7310. font-weight:400;
  7311. font-style:normal;
  7312. font-size:14px;
  7313. letter-spacing:normal;
  7314. color:#AAAAAA;
  7315. vertical-align:none;
  7316. text-align:left;
  7317. text-transform:none;
  7318. background-color:transparent;
  7319. border-color:transparent;
  7320. }
  7321. #u95704_input.disabled {
  7322. position:absolute;
  7323. left:0px;
  7324. top:0px;
  7325. width:134px;
  7326. height:23px;
  7327. padding:2px 2px 2px 2px;
  7328. font-family:'ArialMT', 'Arial', sans-serif;
  7329. font-weight:400;
  7330. font-style:normal;
  7331. font-size:14px;
  7332. letter-spacing:normal;
  7333. color:#AAAAAA;
  7334. vertical-align:none;
  7335. text-align:left;
  7336. text-transform:none;
  7337. background-color:transparent;
  7338. border-color:transparent;
  7339. }
  7340. #u95704_div {
  7341. border-width:0px;
  7342. position:absolute;
  7343. left:0px;
  7344. top:0px;
  7345. width:134px;
  7346. height:23px;
  7347. background:inherit;
  7348. background-color:rgba(255, 255, 255, 1);
  7349. border:none;
  7350. border-radius:0px;
  7351. -moz-box-shadow:none;
  7352. -webkit-box-shadow:none;
  7353. box-shadow:none;
  7354. font-size:14px;
  7355. color:#AAAAAA;
  7356. }
  7357. #u95704 {
  7358. border-width:0px;
  7359. position:absolute;
  7360. left:508px;
  7361. top:115px;
  7362. width:134px;
  7363. height:23px;
  7364. display:flex;
  7365. font-size:14px;
  7366. color:#AAAAAA;
  7367. }
  7368. #u95704 .text {
  7369. position:absolute;
  7370. align-self:flex-start;
  7371. padding:2px 2px 2px 2px;
  7372. box-sizing:border-box;
  7373. width:100%;
  7374. }
  7375. #u95704_div.disabled {
  7376. border-width:0px;
  7377. position:absolute;
  7378. left:0px;
  7379. top:0px;
  7380. width:134px;
  7381. height:23px;
  7382. background:inherit;
  7383. background-color:rgba(240, 240, 240, 1);
  7384. border:none;
  7385. border-radius:0px;
  7386. -moz-box-shadow:none;
  7387. -webkit-box-shadow:none;
  7388. box-shadow:none;
  7389. font-size:14px;
  7390. color:#AAAAAA;
  7391. }
  7392. #u95704.disabled {
  7393. }
  7394. .u95704_input_option {
  7395. font-size:14px;
  7396. }
  7397. #u95705 {
  7398. border-width:0px;
  7399. position:absolute;
  7400. left:0px;
  7401. top:0px;
  7402. width:0px;
  7403. height:0px;
  7404. }
  7405. #u95706_div {
  7406. border-width:0px;
  7407. position:absolute;
  7408. left:0px;
  7409. top:0px;
  7410. width:140px;
  7411. height:30px;
  7412. background:inherit;
  7413. background-color:rgba(255, 255, 255, 1);
  7414. box-sizing:border-box;
  7415. border-width:1px;
  7416. border-style:solid;
  7417. border-color:rgba(215, 215, 215, 1);
  7418. border-radius:4px;
  7419. -moz-box-shadow:none;
  7420. -webkit-box-shadow:none;
  7421. box-shadow:none;
  7422. font-size:14px;
  7423. }
  7424. #u95706 {
  7425. border-width:0px;
  7426. position:absolute;
  7427. left:804px;
  7428. top:113px;
  7429. width:140px;
  7430. height:30px;
  7431. display:flex;
  7432. font-size:14px;
  7433. }
  7434. #u95706 .text {
  7435. position:absolute;
  7436. align-self:center;
  7437. padding:2px 2px 2px 2px;
  7438. box-sizing:border-box;
  7439. width:100%;
  7440. }
  7441. #u95706_text {
  7442. border-width:0px;
  7443. word-wrap:break-word;
  7444. text-transform:none;
  7445. visibility:hidden;
  7446. }
  7447. #u95707_input {
  7448. position:absolute;
  7449. left:0px;
  7450. top:0px;
  7451. width:134px;
  7452. height:23px;
  7453. padding:2px 2px 2px 2px;
  7454. font-family:'ArialMT', 'Arial', sans-serif;
  7455. font-weight:400;
  7456. font-style:normal;
  7457. font-size:14px;
  7458. letter-spacing:normal;
  7459. color:#AAAAAA;
  7460. vertical-align:none;
  7461. text-align:left;
  7462. text-transform:none;
  7463. background-color:transparent;
  7464. border-color:transparent;
  7465. }
  7466. #u95707_input.disabled {
  7467. position:absolute;
  7468. left:0px;
  7469. top:0px;
  7470. width:134px;
  7471. height:23px;
  7472. padding:2px 2px 2px 2px;
  7473. font-family:'ArialMT', 'Arial', sans-serif;
  7474. font-weight:400;
  7475. font-style:normal;
  7476. font-size:14px;
  7477. letter-spacing:normal;
  7478. color:#AAAAAA;
  7479. vertical-align:none;
  7480. text-align:left;
  7481. text-transform:none;
  7482. background-color:transparent;
  7483. border-color:transparent;
  7484. }
  7485. #u95707_div {
  7486. border-width:0px;
  7487. position:absolute;
  7488. left:0px;
  7489. top:0px;
  7490. width:134px;
  7491. height:23px;
  7492. background:inherit;
  7493. background-color:rgba(255, 255, 255, 1);
  7494. border:none;
  7495. border-radius:0px;
  7496. -moz-box-shadow:none;
  7497. -webkit-box-shadow:none;
  7498. box-shadow:none;
  7499. font-size:14px;
  7500. color:#AAAAAA;
  7501. }
  7502. #u95707 {
  7503. border-width:0px;
  7504. position:absolute;
  7505. left:808px;
  7506. top:115px;
  7507. width:134px;
  7508. height:23px;
  7509. display:flex;
  7510. font-size:14px;
  7511. color:#AAAAAA;
  7512. }
  7513. #u95707 .text {
  7514. position:absolute;
  7515. align-self:flex-start;
  7516. padding:2px 2px 2px 2px;
  7517. box-sizing:border-box;
  7518. width:100%;
  7519. }
  7520. #u95707_div.disabled {
  7521. border-width:0px;
  7522. position:absolute;
  7523. left:0px;
  7524. top:0px;
  7525. width:134px;
  7526. height:23px;
  7527. background:inherit;
  7528. background-color:rgba(240, 240, 240, 1);
  7529. border:none;
  7530. border-radius:0px;
  7531. -moz-box-shadow:none;
  7532. -webkit-box-shadow:none;
  7533. box-shadow:none;
  7534. font-size:14px;
  7535. color:#AAAAAA;
  7536. }
  7537. #u95707.disabled {
  7538. }
  7539. .u95707_input_option {
  7540. font-size:14px;
  7541. }
  7542. #u95708 {
  7543. border-width:0px;
  7544. position:absolute;
  7545. left:0px;
  7546. top:0px;
  7547. width:0px;
  7548. height:0px;
  7549. }
  7550. #u95709_div {
  7551. border-width:0px;
  7552. position:absolute;
  7553. left:0px;
  7554. top:0px;
  7555. width:60px;
  7556. height:30px;
  7557. background:inherit;
  7558. background-color:rgba(24, 144, 255, 1);
  7559. border:none;
  7560. border-radius:4px;
  7561. -moz-box-shadow:none;
  7562. -webkit-box-shadow:none;
  7563. box-shadow:none;
  7564. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7565. font-weight:400;
  7566. font-style:normal;
  7567. font-size:14px;
  7568. color:#FFFFFF;
  7569. }
  7570. #u95709 {
  7571. border-width:0px;
  7572. position:absolute;
  7573. left:954px;
  7574. top:113px;
  7575. width:60px;
  7576. height:30px;
  7577. display:flex;
  7578. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7579. font-weight:400;
  7580. font-style:normal;
  7581. font-size:14px;
  7582. color:#FFFFFF;
  7583. }
  7584. #u95709 .text {
  7585. position:absolute;
  7586. align-self:center;
  7587. padding:2px 2px 2px 2px;
  7588. box-sizing:border-box;
  7589. width:100%;
  7590. }
  7591. #u95709_text {
  7592. border-width:0px;
  7593. word-wrap:break-word;
  7594. text-transform:none;
  7595. }
  7596. #u95710_div {
  7597. border-width:0px;
  7598. position:absolute;
  7599. left:0px;
  7600. top:0px;
  7601. width:60px;
  7602. height:30px;
  7603. background:inherit;
  7604. background-color:rgba(255, 255, 255, 1);
  7605. box-sizing:border-box;
  7606. border-width:1px;
  7607. border-style:solid;
  7608. border-color:rgba(170, 170, 170, 1);
  7609. border-radius:4px;
  7610. -moz-box-shadow:none;
  7611. -webkit-box-shadow:none;
  7612. box-shadow:none;
  7613. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7614. font-weight:400;
  7615. font-style:normal;
  7616. font-size:14px;
  7617. }
  7618. #u95710 {
  7619. border-width:0px;
  7620. position:absolute;
  7621. left:1024px;
  7622. top:113px;
  7623. width:60px;
  7624. height:30px;
  7625. display:flex;
  7626. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7627. font-weight:400;
  7628. font-style:normal;
  7629. font-size:14px;
  7630. }
  7631. #u95710 .text {
  7632. position:absolute;
  7633. align-self:center;
  7634. padding:2px 2px 2px 2px;
  7635. box-sizing:border-box;
  7636. width:100%;
  7637. }
  7638. #u95710_text {
  7639. border-width:0px;
  7640. word-wrap:break-word;
  7641. text-transform:none;
  7642. }
  7643. #u95711 {
  7644. border-width:0px;
  7645. position:absolute;
  7646. left:0px;
  7647. top:0px;
  7648. width:0px;
  7649. height:0px;
  7650. }
  7651. #u95712_div {
  7652. border-width:0px;
  7653. position:absolute;
  7654. left:0px;
  7655. top:0px;
  7656. width:140px;
  7657. height:30px;
  7658. background:inherit;
  7659. background-color:rgba(255, 255, 255, 1);
  7660. box-sizing:border-box;
  7661. border-width:1px;
  7662. border-style:solid;
  7663. border-color:rgba(201, 201, 201, 1);
  7664. border-radius:4px;
  7665. -moz-box-shadow:none;
  7666. -webkit-box-shadow:none;
  7667. box-shadow:none;
  7668. font-family:'Microsoft YaHei', sans-serif;
  7669. font-weight:400;
  7670. font-style:normal;
  7671. font-size:14px;
  7672. color:#CCCCCC;
  7673. text-align:left;
  7674. }
  7675. #u95712 {
  7676. border-width:0px;
  7677. position:absolute;
  7678. left:654px;
  7679. top:113px;
  7680. width:140px;
  7681. height:30px;
  7682. display:flex;
  7683. font-family:'Microsoft YaHei', sans-serif;
  7684. font-weight:400;
  7685. font-style:normal;
  7686. font-size:14px;
  7687. color:#CCCCCC;
  7688. text-align:left;
  7689. }
  7690. #u95712 .text {
  7691. position:absolute;
  7692. align-self:center;
  7693. padding:2px 8px 2px 8px;
  7694. box-sizing:border-box;
  7695. width:100%;
  7696. }
  7697. #u95712_text {
  7698. border-width:0px;
  7699. word-wrap:break-word;
  7700. text-transform:none;
  7701. visibility:hidden;
  7702. }
  7703. #u95713_input {
  7704. position:absolute;
  7705. left:0px;
  7706. top:0px;
  7707. width:127px;
  7708. height:25px;
  7709. padding:2px 2px 2px 2px;
  7710. font-family:'Microsoft YaHei', sans-serif;
  7711. font-weight:400;
  7712. font-style:normal;
  7713. font-size:10px;
  7714. letter-spacing:normal;
  7715. color:#000000;
  7716. vertical-align:none;
  7717. text-align:left;
  7718. text-transform:none;
  7719. background-color:transparent;
  7720. border-color:transparent;
  7721. }
  7722. #u95713_input.disabled {
  7723. position:absolute;
  7724. left:0px;
  7725. top:0px;
  7726. width:127px;
  7727. height:25px;
  7728. padding:2px 2px 2px 2px;
  7729. font-family:'Microsoft YaHei', sans-serif;
  7730. font-weight:400;
  7731. font-style:normal;
  7732. font-size:10px;
  7733. letter-spacing:normal;
  7734. color:#000000;
  7735. vertical-align:none;
  7736. text-align:left;
  7737. text-transform:none;
  7738. background-color:transparent;
  7739. border-color:transparent;
  7740. }
  7741. #u95713_div {
  7742. border-width:0px;
  7743. position:absolute;
  7744. left:0px;
  7745. top:0px;
  7746. width:127px;
  7747. height:25px;
  7748. background:inherit;
  7749. background-color:rgba(255, 255, 255, 1);
  7750. border:none;
  7751. border-radius:0px;
  7752. -moz-box-shadow:none;
  7753. -webkit-box-shadow:none;
  7754. box-shadow:none;
  7755. font-family:'Microsoft YaHei', sans-serif;
  7756. font-weight:400;
  7757. font-style:normal;
  7758. font-size:10px;
  7759. }
  7760. #u95713 {
  7761. border-width:0px;
  7762. position:absolute;
  7763. left:662px;
  7764. top:114px;
  7765. width:127px;
  7766. height:25px;
  7767. display:flex;
  7768. font-family:'Microsoft YaHei', sans-serif;
  7769. font-weight:400;
  7770. font-style:normal;
  7771. font-size:10px;
  7772. }
  7773. #u95713 .text {
  7774. position:absolute;
  7775. align-self:center;
  7776. padding:2px 2px 2px 2px;
  7777. box-sizing:border-box;
  7778. width:100%;
  7779. }
  7780. #u95713_div.disabled {
  7781. border-width:0px;
  7782. position:absolute;
  7783. left:0px;
  7784. top:0px;
  7785. width:127px;
  7786. height:25px;
  7787. background:inherit;
  7788. background-color:rgba(240, 240, 240, 1);
  7789. border:none;
  7790. border-radius:0px;
  7791. -moz-box-shadow:none;
  7792. -webkit-box-shadow:none;
  7793. box-shadow:none;
  7794. font-family:'Microsoft YaHei', sans-serif;
  7795. font-weight:400;
  7796. font-style:normal;
  7797. font-size:10px;
  7798. }
  7799. #u95713.disabled {
  7800. }
  7801. #u95714 {
  7802. border-width:0px;
  7803. position:absolute;
  7804. left:0px;
  7805. top:0px;
  7806. width:0px;
  7807. height:0px;
  7808. }
  7809. #u95715_div {
  7810. border-width:0px;
  7811. position:absolute;
  7812. left:0px;
  7813. top:0px;
  7814. width:100px;
  7815. height:100px;
  7816. background:inherit;
  7817. background-color:rgba(255, 255, 255, 1);
  7818. box-sizing:border-box;
  7819. border-width:1px;
  7820. border-style:solid;
  7821. border-color:rgba(242, 242, 242, 1);
  7822. border-radius:4px;
  7823. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  7824. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  7825. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  7826. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7827. font-weight:400;
  7828. font-style:normal;
  7829. font-size:14px;
  7830. text-align:left;
  7831. }
  7832. #u95715 {
  7833. border-width:0px;
  7834. position:absolute;
  7835. left:1417px;
  7836. top:360px;
  7837. width:100px;
  7838. height:100px;
  7839. display:flex;
  7840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7841. font-weight:400;
  7842. font-style:normal;
  7843. font-size:14px;
  7844. text-align:left;
  7845. }
  7846. #u95715 .text {
  7847. position:absolute;
  7848. align-self:center;
  7849. padding:2px 2px 2px 2px;
  7850. box-sizing:border-box;
  7851. width:100%;
  7852. }
  7853. #u95715_text {
  7854. border-width:0px;
  7855. word-wrap:break-word;
  7856. text-transform:none;
  7857. visibility:hidden;
  7858. }
  7859. #u95716_div {
  7860. border-width:0px;
  7861. position:absolute;
  7862. left:0px;
  7863. top:0px;
  7864. width:83px;
  7865. height:40px;
  7866. background:inherit;
  7867. background-color:rgba(255, 255, 255, 1);
  7868. box-sizing:border-box;
  7869. border-width:1px;
  7870. border-style:solid;
  7871. border-color:rgba(215, 215, 215, 1);
  7872. border-left:0px;
  7873. border-top:0px;
  7874. border-right:0px;
  7875. border-radius:0px;
  7876. border-bottom-right-radius:0px;
  7877. border-bottom-left-radius:0px;
  7878. -moz-box-shadow:none;
  7879. -webkit-box-shadow:none;
  7880. box-shadow:none;
  7881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7882. font-weight:400;
  7883. font-style:normal;
  7884. font-size:14px;
  7885. }
  7886. #u95716 {
  7887. border-width:0px;
  7888. position:absolute;
  7889. left:1425px;
  7890. top:370px;
  7891. width:83px;
  7892. height:40px;
  7893. display:flex;
  7894. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7895. font-weight:400;
  7896. font-style:normal;
  7897. font-size:14px;
  7898. }
  7899. #u95716 .text {
  7900. position:absolute;
  7901. align-self:center;
  7902. padding:2px 2px 2px 2px;
  7903. box-sizing:border-box;
  7904. width:100%;
  7905. }
  7906. #u95716_text {
  7907. border-width:0px;
  7908. word-wrap:break-word;
  7909. text-transform:none;
  7910. }
  7911. #u95717_div {
  7912. border-width:0px;
  7913. position:absolute;
  7914. left:0px;
  7915. top:0px;
  7916. width:83px;
  7917. height:40px;
  7918. background:inherit;
  7919. background-color:rgba(255, 255, 255, 1);
  7920. border:none;
  7921. border-left:0px;
  7922. border-top:0px;
  7923. border-right:0px;
  7924. border-radius:0px;
  7925. border-bottom-right-radius:0px;
  7926. border-bottom-left-radius:0px;
  7927. -moz-box-shadow:none;
  7928. -webkit-box-shadow:none;
  7929. box-shadow:none;
  7930. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7931. font-weight:400;
  7932. font-style:normal;
  7933. font-size:14px;
  7934. }
  7935. #u95717 {
  7936. border-width:0px;
  7937. position:absolute;
  7938. left:1425px;
  7939. top:410px;
  7940. width:83px;
  7941. height:40px;
  7942. display:flex;
  7943. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7944. font-weight:400;
  7945. font-style:normal;
  7946. font-size:14px;
  7947. }
  7948. #u95717 .text {
  7949. position:absolute;
  7950. align-self:center;
  7951. padding:2px 2px 2px 2px;
  7952. box-sizing:border-box;
  7953. width:100%;
  7954. }
  7955. #u95717_text {
  7956. border-width:0px;
  7957. word-wrap:break-word;
  7958. text-transform:none;
  7959. }
  7960. #u95718_div {
  7961. border-width:0px;
  7962. position:absolute;
  7963. left:0px;
  7964. top:0px;
  7965. width:421px;
  7966. height:150px;
  7967. background:inherit;
  7968. background-color:rgba(255, 255, 255, 0);
  7969. border:none;
  7970. border-radius:0px;
  7971. -moz-box-shadow:none;
  7972. -webkit-box-shadow:none;
  7973. box-shadow:none;
  7974. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7975. font-weight:400;
  7976. font-style:normal;
  7977. font-size:14px;
  7978. color:#D9001B;
  7979. line-height:30px;
  7980. }
  7981. #u95718 {
  7982. border-width:0px;
  7983. position:absolute;
  7984. left:1116px;
  7985. top:674px;
  7986. width:421px;
  7987. height:150px;
  7988. display:flex;
  7989. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7990. font-weight:400;
  7991. font-style:normal;
  7992. font-size:14px;
  7993. color:#D9001B;
  7994. line-height:30px;
  7995. }
  7996. #u95718 .text {
  7997. position:absolute;
  7998. align-self:flex-start;
  7999. padding:0px 0px 0px 0px;
  8000. box-sizing:border-box;
  8001. width:100%;
  8002. }
  8003. #u95718_text {
  8004. border-width:0px;
  8005. white-space:nowrap;
  8006. text-transform:none;
  8007. }
  8008. #u95719_div {
  8009. border-width:0px;
  8010. position:absolute;
  8011. left:0px;
  8012. top:0px;
  8013. width:80px;
  8014. height:30px;
  8015. background:inherit;
  8016. background-color:rgba(255, 255, 255, 1);
  8017. box-sizing:border-box;
  8018. border-width:1px;
  8019. border-style:solid;
  8020. border-color:rgba(170, 170, 170, 1);
  8021. border-radius:4px;
  8022. -moz-box-shadow:none;
  8023. -webkit-box-shadow:none;
  8024. box-shadow:none;
  8025. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8026. font-weight:400;
  8027. font-style:normal;
  8028. font-size:14px;
  8029. }
  8030. #u95719 {
  8031. border-width:0px;
  8032. position:absolute;
  8033. left:775px;
  8034. top:162px;
  8035. width:80px;
  8036. height:30px;
  8037. display:flex;
  8038. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8039. font-weight:400;
  8040. font-style:normal;
  8041. font-size:14px;
  8042. }
  8043. #u95719 .text {
  8044. position:absolute;
  8045. align-self:center;
  8046. padding:2px 2px 2px 2px;
  8047. box-sizing:border-box;
  8048. width:100%;
  8049. }
  8050. #u95719_text {
  8051. border-width:0px;
  8052. word-wrap:break-word;
  8053. text-transform:none;
  8054. }
  8055. #u95720 {
  8056. border-width:0px;
  8057. position:absolute;
  8058. left:0px;
  8059. top:0px;
  8060. width:0px;
  8061. height:0px;
  8062. }
  8063. #u95721_div {
  8064. border-width:0px;
  8065. position:absolute;
  8066. left:0px;
  8067. top:0px;
  8068. width:200px;
  8069. height:1180px;
  8070. background:inherit;
  8071. background-color:rgba(255, 255, 255, 1);
  8072. border:none;
  8073. border-radius:0px;
  8074. -moz-box-shadow:none;
  8075. -webkit-box-shadow:none;
  8076. box-shadow:none;
  8077. }
  8078. #u95721 {
  8079. border-width:0px;
  8080. position:absolute;
  8081. left:120px;
  8082. top:50px;
  8083. width:200px;
  8084. height:1180px;
  8085. display:flex;
  8086. }
  8087. #u95721 .text {
  8088. position:absolute;
  8089. align-self:center;
  8090. padding:2px 2px 2px 2px;
  8091. box-sizing:border-box;
  8092. width:100%;
  8093. }
  8094. #u95721_text {
  8095. border-width:0px;
  8096. word-wrap:break-word;
  8097. text-transform:none;
  8098. visibility:hidden;
  8099. }
  8100. #u95722_div {
  8101. border-width:0px;
  8102. position:absolute;
  8103. left:0px;
  8104. top:0px;
  8105. width:200px;
  8106. height:60px;
  8107. background:inherit;
  8108. background-color:rgba(224, 231, 247, 1);
  8109. border:none;
  8110. border-radius:0px;
  8111. -moz-box-shadow:none;
  8112. -webkit-box-shadow:none;
  8113. box-shadow:none;
  8114. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8115. font-weight:500;
  8116. font-style:normal;
  8117. font-size:18px;
  8118. }
  8119. #u95722 {
  8120. border-width:0px;
  8121. position:absolute;
  8122. left:120px;
  8123. top:50px;
  8124. width:200px;
  8125. height:60px;
  8126. display:flex;
  8127. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8128. font-weight:500;
  8129. font-style:normal;
  8130. font-size:18px;
  8131. }
  8132. #u95722 .text {
  8133. position:absolute;
  8134. align-self:center;
  8135. padding:0px 0px 0px 20px;
  8136. box-sizing:border-box;
  8137. width:100%;
  8138. }
  8139. #u95722_text {
  8140. border-width:0px;
  8141. word-wrap:break-word;
  8142. text-transform:none;
  8143. }
  8144. #u95723_div {
  8145. border-width:0px;
  8146. position:absolute;
  8147. left:0px;
  8148. top:0px;
  8149. width:65px;
  8150. height:22px;
  8151. background:inherit;
  8152. background-color:rgba(255, 255, 255, 0);
  8153. border:none;
  8154. border-radius:0px;
  8155. -moz-box-shadow:none;
  8156. -webkit-box-shadow:none;
  8157. box-shadow:none;
  8158. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8159. font-weight:400;
  8160. font-style:normal;
  8161. font-size:16px;
  8162. }
  8163. #u95723 {
  8164. border-width:0px;
  8165. position:absolute;
  8166. left:143px;
  8167. top:163px;
  8168. width:65px;
  8169. height:22px;
  8170. display:flex;
  8171. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8172. font-weight:400;
  8173. font-style:normal;
  8174. font-size:16px;
  8175. }
  8176. #u95723 .text {
  8177. position:absolute;
  8178. align-self:flex-start;
  8179. padding:0px 0px 0px 0px;
  8180. box-sizing:border-box;
  8181. width:100%;
  8182. }
  8183. #u95723_text {
  8184. border-width:0px;
  8185. white-space:nowrap;
  8186. text-transform:none;
  8187. }
  8188. #u95724_div {
  8189. border-width:0px;
  8190. position:absolute;
  8191. left:0px;
  8192. top:0px;
  8193. width:49px;
  8194. height:17px;
  8195. background:inherit;
  8196. background-color:rgba(255, 255, 255, 0);
  8197. border:none;
  8198. border-radius:0px;
  8199. -moz-box-shadow:none;
  8200. -webkit-box-shadow:none;
  8201. box-shadow:none;
  8202. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8203. font-weight:400;
  8204. font-style:normal;
  8205. font-size:12px;
  8206. color:#AAAAAA;
  8207. }
  8208. #u95724 {
  8209. border-width:0px;
  8210. position:absolute;
  8211. left:143px;
  8212. top:130px;
  8213. width:49px;
  8214. height:17px;
  8215. display:flex;
  8216. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8217. font-weight:400;
  8218. font-style:normal;
  8219. font-size:12px;
  8220. color:#AAAAAA;
  8221. }
  8222. #u95724 .text {
  8223. position:absolute;
  8224. align-self:flex-start;
  8225. padding:0px 0px 0px 0px;
  8226. box-sizing:border-box;
  8227. width:100%;
  8228. }
  8229. #u95724_text {
  8230. border-width:0px;
  8231. white-space:nowrap;
  8232. text-transform:none;
  8233. }
  8234. #u95725_div {
  8235. border-width:0px;
  8236. position:absolute;
  8237. left:0px;
  8238. top:0px;
  8239. width:65px;
  8240. height:22px;
  8241. background:inherit;
  8242. background-color:rgba(255, 255, 255, 0);
  8243. border:none;
  8244. border-radius:0px;
  8245. -moz-box-shadow:none;
  8246. -webkit-box-shadow:none;
  8247. box-shadow:none;
  8248. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8249. font-weight:400;
  8250. font-style:normal;
  8251. font-size:16px;
  8252. }
  8253. #u95725 {
  8254. border-width:0px;
  8255. position:absolute;
  8256. left:143px;
  8257. top:205px;
  8258. width:65px;
  8259. height:22px;
  8260. display:flex;
  8261. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8262. font-weight:400;
  8263. font-style:normal;
  8264. font-size:16px;
  8265. }
  8266. #u95725 .text {
  8267. position:absolute;
  8268. align-self:flex-start;
  8269. padding:0px 0px 0px 0px;
  8270. box-sizing:border-box;
  8271. width:100%;
  8272. }
  8273. #u95725_text {
  8274. border-width:0px;
  8275. white-space:nowrap;
  8276. text-transform:none;
  8277. }
  8278. #u95726_div {
  8279. border-width:0px;
  8280. position:absolute;
  8281. left:0px;
  8282. top:0px;
  8283. width:65px;
  8284. height:22px;
  8285. background:inherit;
  8286. background-color:rgba(255, 255, 255, 0);
  8287. border:none;
  8288. border-radius:0px;
  8289. -moz-box-shadow:none;
  8290. -webkit-box-shadow:none;
  8291. box-shadow:none;
  8292. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8293. font-weight:400;
  8294. font-style:normal;
  8295. font-size:16px;
  8296. }
  8297. #u95726 {
  8298. border-width:0px;
  8299. position:absolute;
  8300. left:143px;
  8301. top:247px;
  8302. width:65px;
  8303. height:22px;
  8304. display:flex;
  8305. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8306. font-weight:400;
  8307. font-style:normal;
  8308. font-size:16px;
  8309. }
  8310. #u95726 .text {
  8311. position:absolute;
  8312. align-self:flex-start;
  8313. padding:0px 0px 0px 0px;
  8314. box-sizing:border-box;
  8315. width:100%;
  8316. }
  8317. #u95726_text {
  8318. border-width:0px;
  8319. white-space:nowrap;
  8320. text-transform:none;
  8321. }
  8322. #u95727_div {
  8323. border-width:0px;
  8324. position:absolute;
  8325. left:0px;
  8326. top:0px;
  8327. width:65px;
  8328. height:22px;
  8329. background:inherit;
  8330. background-color:rgba(255, 255, 255, 0);
  8331. border:none;
  8332. border-radius:0px;
  8333. -moz-box-shadow:none;
  8334. -webkit-box-shadow:none;
  8335. box-shadow:none;
  8336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8337. font-weight:400;
  8338. font-style:normal;
  8339. font-size:16px;
  8340. }
  8341. #u95727 {
  8342. border-width:0px;
  8343. position:absolute;
  8344. left:143px;
  8345. top:342px;
  8346. width:65px;
  8347. height:22px;
  8348. display:flex;
  8349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8350. font-weight:400;
  8351. font-style:normal;
  8352. font-size:16px;
  8353. }
  8354. #u95727 .text {
  8355. position:absolute;
  8356. align-self:flex-start;
  8357. padding:0px 0px 0px 0px;
  8358. box-sizing:border-box;
  8359. width:100%;
  8360. }
  8361. #u95727_text {
  8362. border-width:0px;
  8363. white-space:nowrap;
  8364. text-transform:none;
  8365. }
  8366. #u95728_img {
  8367. border-width:0px;
  8368. position:absolute;
  8369. left:0px;
  8370. top:0px;
  8371. width:201px;
  8372. height:2px;
  8373. }
  8374. #u95728 {
  8375. border-width:0px;
  8376. position:absolute;
  8377. left:120px;
  8378. top:289px;
  8379. width:200px;
  8380. height:1px;
  8381. display:flex;
  8382. }
  8383. #u95728 .text {
  8384. position:absolute;
  8385. align-self:center;
  8386. padding:2px 2px 2px 2px;
  8387. box-sizing:border-box;
  8388. width:100%;
  8389. }
  8390. #u95728_text {
  8391. border-width:0px;
  8392. word-wrap:break-word;
  8393. text-transform:none;
  8394. visibility:hidden;
  8395. }
  8396. #u95729_div {
  8397. border-width:0px;
  8398. position:absolute;
  8399. left:0px;
  8400. top:0px;
  8401. width:49px;
  8402. height:17px;
  8403. background:inherit;
  8404. background-color:rgba(255, 255, 255, 0);
  8405. border:none;
  8406. border-radius:0px;
  8407. -moz-box-shadow:none;
  8408. -webkit-box-shadow:none;
  8409. box-shadow:none;
  8410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8411. font-weight:400;
  8412. font-style:normal;
  8413. font-size:12px;
  8414. color:#AAAAAA;
  8415. }
  8416. #u95729 {
  8417. border-width:0px;
  8418. position:absolute;
  8419. left:143px;
  8420. top:309px;
  8421. width:49px;
  8422. height:17px;
  8423. display:flex;
  8424. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8425. font-weight:400;
  8426. font-style:normal;
  8427. font-size:12px;
  8428. color:#AAAAAA;
  8429. }
  8430. #u95729 .text {
  8431. position:absolute;
  8432. align-self:flex-start;
  8433. padding:0px 0px 0px 0px;
  8434. box-sizing:border-box;
  8435. width:100%;
  8436. }
  8437. #u95729_text {
  8438. border-width:0px;
  8439. white-space:nowrap;
  8440. text-transform:none;
  8441. }
  8442. #u95730_div {
  8443. border-width:0px;
  8444. position:absolute;
  8445. left:0px;
  8446. top:0px;
  8447. width:65px;
  8448. height:22px;
  8449. background:inherit;
  8450. background-color:rgba(255, 255, 255, 0);
  8451. border:none;
  8452. border-radius:0px;
  8453. -moz-box-shadow:none;
  8454. -webkit-box-shadow:none;
  8455. box-shadow:none;
  8456. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8457. font-weight:400;
  8458. font-style:normal;
  8459. font-size:16px;
  8460. }
  8461. #u95730 {
  8462. border-width:0px;
  8463. position:absolute;
  8464. left:143px;
  8465. top:384px;
  8466. width:65px;
  8467. height:22px;
  8468. display:flex;
  8469. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8470. font-weight:400;
  8471. font-style:normal;
  8472. font-size:16px;
  8473. }
  8474. #u95730 .text {
  8475. position:absolute;
  8476. align-self:flex-start;
  8477. padding:0px 0px 0px 0px;
  8478. box-sizing:border-box;
  8479. width:100%;
  8480. }
  8481. #u95730_text {
  8482. border-width:0px;
  8483. white-space:nowrap;
  8484. text-transform:none;
  8485. }