styles.css 132 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555
  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. #u28574_div {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:129px;
  25. height:22px;
  26. background:inherit;
  27. background-color:rgba(255, 255, 255, 0);
  28. border:none;
  29. border-radius:0px;
  30. -moz-box-shadow:none;
  31. -webkit-box-shadow:none;
  32. box-shadow:none;
  33. font-size:16px;
  34. color:#FFFFFF;
  35. }
  36. #u28574 {
  37. border-width:0px;
  38. position:absolute;
  39. left:49px;
  40. top:14px;
  41. width:129px;
  42. height:22px;
  43. display:flex;
  44. font-size:16px;
  45. color:#FFFFFF;
  46. }
  47. #u28574 .text {
  48. position:absolute;
  49. align-self:flex-start;
  50. padding:0px 0px 0px 0px;
  51. box-sizing:border-box;
  52. width:100%;
  53. }
  54. #u28574_text {
  55. border-width:0px;
  56. white-space:nowrap;
  57. text-transform:none;
  58. }
  59. #u28575_div {
  60. border-width:0px;
  61. position:absolute;
  62. left:0px;
  63. top:0px;
  64. width:1600px;
  65. height:50px;
  66. background:inherit;
  67. background-color:rgba(30, 42, 68, 1);
  68. border:none;
  69. border-radius:0px;
  70. -moz-box-shadow:none;
  71. -webkit-box-shadow:none;
  72. box-shadow:none;
  73. color:#AFB3B6;
  74. }
  75. #u28575 {
  76. border-width:0px;
  77. position:absolute;
  78. left:0px;
  79. top:0px;
  80. width:1600px;
  81. height:50px;
  82. display:flex;
  83. color:#AFB3B6;
  84. }
  85. #u28575 .text {
  86. position:absolute;
  87. align-self:center;
  88. padding:2px 2px 2px 2px;
  89. box-sizing:border-box;
  90. width:100%;
  91. }
  92. #u28575_text {
  93. border-width:0px;
  94. word-wrap:break-word;
  95. text-transform:none;
  96. visibility:hidden;
  97. }
  98. #u28576 {
  99. border-width:0px;
  100. position:absolute;
  101. left:0px;
  102. top:0px;
  103. width:0px;
  104. height:0px;
  105. }
  106. #u28577_img {
  107. border-width:0px;
  108. position:absolute;
  109. left:0px;
  110. top:0px;
  111. width:31px;
  112. height:31px;
  113. }
  114. #u28577 {
  115. border-width:0px;
  116. position:absolute;
  117. left:19px;
  118. top:10px;
  119. width:31px;
  120. height:31px;
  121. display:flex;
  122. }
  123. #u28577 .text {
  124. position:absolute;
  125. align-self:center;
  126. padding:2px 2px 2px 2px;
  127. box-sizing:border-box;
  128. width:100%;
  129. }
  130. #u28577_text {
  131. border-width:0px;
  132. word-wrap:break-word;
  133. text-transform:none;
  134. }
  135. #u28578_div {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:161px;
  141. height:22px;
  142. background:inherit;
  143. background-color:rgba(255, 255, 255, 0);
  144. border:none;
  145. border-radius:0px;
  146. -moz-box-shadow:none;
  147. -webkit-box-shadow:none;
  148. box-shadow:none;
  149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  150. font-weight:400;
  151. font-style:normal;
  152. font-size:16px;
  153. color:#FFFFFF;
  154. }
  155. #u28578 {
  156. border-width:0px;
  157. position:absolute;
  158. left:62px;
  159. top:14px;
  160. width:161px;
  161. height:22px;
  162. display:flex;
  163. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  164. font-weight:400;
  165. font-style:normal;
  166. font-size:16px;
  167. color:#FFFFFF;
  168. }
  169. #u28578 .text {
  170. position:absolute;
  171. align-self:flex-start;
  172. padding:0px 0px 0px 0px;
  173. box-sizing:border-box;
  174. width:100%;
  175. }
  176. #u28578_text {
  177. border-width:0px;
  178. white-space:nowrap;
  179. text-transform:none;
  180. }
  181. #u28579_div {
  182. border-width:0px;
  183. position:absolute;
  184. left:0px;
  185. top:0px;
  186. width:120px;
  187. height:1200px;
  188. background:inherit;
  189. background-color:rgba(30, 42, 68, 1);
  190. border:none;
  191. border-radius:0px;
  192. -moz-box-shadow:none;
  193. -webkit-box-shadow:none;
  194. box-shadow:none;
  195. color:#AFB3B6;
  196. }
  197. #u28579 {
  198. border-width:0px;
  199. position:absolute;
  200. left:0px;
  201. top:47px;
  202. width:120px;
  203. height:1200px;
  204. display:flex;
  205. color:#AFB3B6;
  206. }
  207. #u28579 .text {
  208. position:absolute;
  209. align-self:center;
  210. padding:2px 2px 2px 2px;
  211. box-sizing:border-box;
  212. width:100%;
  213. }
  214. #u28579_text {
  215. border-width:0px;
  216. word-wrap:break-word;
  217. text-transform:none;
  218. visibility:hidden;
  219. }
  220. #u28580_div {
  221. border-width:0px;
  222. position:absolute;
  223. left:0px;
  224. top:0px;
  225. width:1480px;
  226. height:1200px;
  227. background:inherit;
  228. background-color:rgba(242, 242, 242, 1);
  229. border:none;
  230. border-radius:0px;
  231. -moz-box-shadow:none;
  232. -webkit-box-shadow:none;
  233. box-shadow:none;
  234. }
  235. #u28580 {
  236. border-width:0px;
  237. position:absolute;
  238. left:120px;
  239. top:50px;
  240. width:1480px;
  241. height:1200px;
  242. display:flex;
  243. }
  244. #u28580 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u28580_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u28581 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u28582_div {
  266. border-width:0px;
  267. position:absolute;
  268. left:0px;
  269. top:0px;
  270. width:33px;
  271. height:22px;
  272. background:inherit;
  273. background-color:rgba(255, 255, 255, 0);
  274. border:none;
  275. border-radius:0px;
  276. -moz-box-shadow:none;
  277. -webkit-box-shadow:none;
  278. box-shadow:none;
  279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  280. font-weight:400;
  281. font-style:normal;
  282. font-size:16px;
  283. color:#FFFFFF;
  284. }
  285. #u28582 {
  286. border-width:0px;
  287. position:absolute;
  288. left:39px;
  289. top:67px;
  290. width:33px;
  291. height:22px;
  292. display:flex;
  293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  294. font-weight:400;
  295. font-style:normal;
  296. font-size:16px;
  297. color:#FFFFFF;
  298. }
  299. #u28582 .text {
  300. position:absolute;
  301. align-self:flex-start;
  302. padding:0px 0px 0px 0px;
  303. box-sizing:border-box;
  304. width:100%;
  305. }
  306. #u28582_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u28583_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u28583 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:71px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u28583 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u28583_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u28584 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u28585_div {
  350. border-width:0px;
  351. position:absolute;
  352. left:0px;
  353. top:0px;
  354. width:33px;
  355. height:22px;
  356. background:inherit;
  357. background-color:rgba(255, 255, 255, 0);
  358. border:none;
  359. border-radius:0px;
  360. -moz-box-shadow:none;
  361. -webkit-box-shadow:none;
  362. box-shadow:none;
  363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  364. font-weight:400;
  365. font-style:normal;
  366. font-size:16px;
  367. color:#FFFFFF;
  368. }
  369. #u28585 {
  370. border-width:0px;
  371. position:absolute;
  372. left:39px;
  373. top:109px;
  374. width:33px;
  375. height:22px;
  376. display:flex;
  377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  378. font-weight:400;
  379. font-style:normal;
  380. font-size:16px;
  381. color:#FFFFFF;
  382. }
  383. #u28585 .text {
  384. position:absolute;
  385. align-self:flex-start;
  386. padding:0px 0px 0px 0px;
  387. box-sizing:border-box;
  388. width:100%;
  389. }
  390. #u28585_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u28586_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u28586 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:113px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u28586 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u28586_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u28587 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u28588_div {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:29px;
  439. height:20px;
  440. background:inherit;
  441. background-color:rgba(255, 255, 255, 0);
  442. border:none;
  443. border-radius:25px;
  444. -moz-box-shadow:none;
  445. -webkit-box-shadow:none;
  446. box-shadow:none;
  447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  448. font-weight:400;
  449. font-style:normal;
  450. color:#FFFFFF;
  451. }
  452. #u28588 {
  453. border-width:0px;
  454. position:absolute;
  455. left:59px;
  456. top:1141px;
  457. width:29px;
  458. height:20px;
  459. display:flex;
  460. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  461. font-weight:400;
  462. font-style:normal;
  463. color:#FFFFFF;
  464. }
  465. #u28588 .text {
  466. position:absolute;
  467. align-self:center;
  468. padding:0px 0px 0px 0px;
  469. box-sizing:border-box;
  470. width:100%;
  471. }
  472. #u28588_text {
  473. border-width:0px;
  474. white-space:nowrap;
  475. text-transform:none;
  476. }
  477. #u28589_img {
  478. border-width:0px;
  479. position:absolute;
  480. left:0px;
  481. top:0px;
  482. width:22px;
  483. height:22px;
  484. }
  485. #u28589 {
  486. border-width:0px;
  487. position:absolute;
  488. left:27px;
  489. top:1140px;
  490. width:22px;
  491. height:22px;
  492. display:flex;
  493. }
  494. #u28589 .text {
  495. position:absolute;
  496. align-self:center;
  497. padding:2px 2px 2px 2px;
  498. box-sizing:border-box;
  499. width:100%;
  500. }
  501. #u28589_text {
  502. border-width:0px;
  503. word-wrap:break-word;
  504. text-transform:none;
  505. visibility:hidden;
  506. }
  507. #u28590 {
  508. border-width:0px;
  509. position:absolute;
  510. left:0px;
  511. top:0px;
  512. width:0px;
  513. height:0px;
  514. }
  515. #u28591_div {
  516. border-width:0px;
  517. position:absolute;
  518. left:0px;
  519. top:0px;
  520. width:29px;
  521. height:20px;
  522. background:inherit;
  523. background-color:rgba(255, 255, 255, 0);
  524. border:none;
  525. border-radius:25px;
  526. -moz-box-shadow:none;
  527. -webkit-box-shadow:none;
  528. box-shadow:none;
  529. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  530. font-weight:400;
  531. font-style:normal;
  532. color:#FFFFFF;
  533. }
  534. #u28591 {
  535. border-width:0px;
  536. position:absolute;
  537. left:59px;
  538. top:1183px;
  539. width:29px;
  540. height:20px;
  541. display:flex;
  542. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  543. font-weight:400;
  544. font-style:normal;
  545. color:#FFFFFF;
  546. }
  547. #u28591 .text {
  548. position:absolute;
  549. align-self:center;
  550. padding:0px 0px 0px 0px;
  551. box-sizing:border-box;
  552. width:100%;
  553. }
  554. #u28591_text {
  555. border-width:0px;
  556. white-space:nowrap;
  557. text-transform:none;
  558. }
  559. #u28592_img {
  560. border-width:0px;
  561. position:absolute;
  562. left:0px;
  563. top:0px;
  564. width:22px;
  565. height:22px;
  566. }
  567. #u28592 {
  568. border-width:0px;
  569. position:absolute;
  570. left:27px;
  571. top:1182px;
  572. width:22px;
  573. height:22px;
  574. display:flex;
  575. }
  576. #u28592 .text {
  577. position:absolute;
  578. align-self:center;
  579. padding:2px 2px 2px 2px;
  580. box-sizing:border-box;
  581. width:100%;
  582. }
  583. #u28592_text {
  584. border-width:0px;
  585. word-wrap:break-word;
  586. text-transform:none;
  587. visibility:hidden;
  588. }
  589. #u28593 {
  590. border-width:0px;
  591. position:absolute;
  592. left:0px;
  593. top:0px;
  594. width:0px;
  595. height:0px;
  596. }
  597. #u28594_div {
  598. border-width:0px;
  599. position:absolute;
  600. left:0px;
  601. top:0px;
  602. width:33px;
  603. height:22px;
  604. background:inherit;
  605. background-color:rgba(255, 255, 255, 0);
  606. border:none;
  607. border-radius:0px;
  608. -moz-box-shadow:none;
  609. -webkit-box-shadow:none;
  610. box-shadow:none;
  611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  612. font-weight:400;
  613. font-style:normal;
  614. font-size:16px;
  615. color:#FFFFFF;
  616. }
  617. #u28594 {
  618. border-width:0px;
  619. position:absolute;
  620. left:39px;
  621. top:277px;
  622. width:33px;
  623. height:22px;
  624. display:flex;
  625. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  626. font-weight:400;
  627. font-style:normal;
  628. font-size:16px;
  629. color:#FFFFFF;
  630. }
  631. #u28594 .text {
  632. position:absolute;
  633. align-self:flex-start;
  634. padding:0px 0px 0px 0px;
  635. box-sizing:border-box;
  636. width:100%;
  637. }
  638. #u28594_text {
  639. border-width:0px;
  640. white-space:nowrap;
  641. text-transform:none;
  642. }
  643. #u28595_img {
  644. border-width:0px;
  645. position:absolute;
  646. left:0px;
  647. top:0px;
  648. width:14px;
  649. height:14px;
  650. }
  651. #u28595 {
  652. border-width:0px;
  653. position:absolute;
  654. left:20px;
  655. top:281px;
  656. width:14px;
  657. height:14px;
  658. display:flex;
  659. }
  660. #u28595 .text {
  661. position:absolute;
  662. align-self:center;
  663. padding:2px 2px 2px 2px;
  664. box-sizing:border-box;
  665. width:100%;
  666. }
  667. #u28595_text {
  668. border-width:0px;
  669. word-wrap:break-word;
  670. text-transform:none;
  671. visibility:hidden;
  672. }
  673. #u28596 {
  674. border-width:0px;
  675. position:absolute;
  676. left:0px;
  677. top:0px;
  678. width:0px;
  679. height:0px;
  680. }
  681. #u28597_div {
  682. border-width:0px;
  683. position:absolute;
  684. left:0px;
  685. top:0px;
  686. width:33px;
  687. height:22px;
  688. background:inherit;
  689. background-color:rgba(255, 255, 255, 0);
  690. border:none;
  691. border-radius:0px;
  692. -moz-box-shadow:none;
  693. -webkit-box-shadow:none;
  694. box-shadow:none;
  695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  696. font-weight:400;
  697. font-style:normal;
  698. font-size:16px;
  699. color:#FFFFFF;
  700. }
  701. #u28597 {
  702. border-width:0px;
  703. position:absolute;
  704. left:39px;
  705. top:235px;
  706. width:33px;
  707. height:22px;
  708. display:flex;
  709. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  710. font-weight:400;
  711. font-style:normal;
  712. font-size:16px;
  713. color:#FFFFFF;
  714. }
  715. #u28597 .text {
  716. position:absolute;
  717. align-self:flex-start;
  718. padding:0px 0px 0px 0px;
  719. box-sizing:border-box;
  720. width:100%;
  721. }
  722. #u28597_text {
  723. border-width:0px;
  724. white-space:nowrap;
  725. text-transform:none;
  726. }
  727. #u28598_img {
  728. border-width:0px;
  729. position:absolute;
  730. left:0px;
  731. top:0px;
  732. width:14px;
  733. height:14px;
  734. }
  735. #u28598 {
  736. border-width:0px;
  737. position:absolute;
  738. left:20px;
  739. top:239px;
  740. width:14px;
  741. height:14px;
  742. display:flex;
  743. }
  744. #u28598 .text {
  745. position:absolute;
  746. align-self:center;
  747. padding:2px 2px 2px 2px;
  748. box-sizing:border-box;
  749. width:100%;
  750. }
  751. #u28598_text {
  752. border-width:0px;
  753. word-wrap:break-word;
  754. text-transform:none;
  755. visibility:hidden;
  756. }
  757. #u28599 {
  758. border-width:0px;
  759. position:absolute;
  760. left:0px;
  761. top:0px;
  762. width:0px;
  763. height:0px;
  764. }
  765. #u28600_div {
  766. border-width:0px;
  767. position:absolute;
  768. left:0px;
  769. top:0px;
  770. width:33px;
  771. height:22px;
  772. background:inherit;
  773. background-color:rgba(255, 255, 255, 0);
  774. border:none;
  775. border-radius:0px;
  776. -moz-box-shadow:none;
  777. -webkit-box-shadow:none;
  778. box-shadow:none;
  779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  780. font-weight:400;
  781. font-style:normal;
  782. font-size:16px;
  783. color:#FFFFFF;
  784. }
  785. #u28600 {
  786. border-width:0px;
  787. position:absolute;
  788. left:39px;
  789. top:403px;
  790. width:33px;
  791. height:22px;
  792. display:flex;
  793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  794. font-weight:400;
  795. font-style:normal;
  796. font-size:16px;
  797. color:#FFFFFF;
  798. }
  799. #u28600 .text {
  800. position:absolute;
  801. align-self:flex-start;
  802. padding:0px 0px 0px 0px;
  803. box-sizing:border-box;
  804. width:100%;
  805. }
  806. #u28600_text {
  807. border-width:0px;
  808. white-space:nowrap;
  809. text-transform:none;
  810. }
  811. #u28601_img {
  812. border-width:0px;
  813. position:absolute;
  814. left:0px;
  815. top:0px;
  816. width:14px;
  817. height:14px;
  818. }
  819. #u28601 {
  820. border-width:0px;
  821. position:absolute;
  822. left:20px;
  823. top:407px;
  824. width:14px;
  825. height:14px;
  826. display:flex;
  827. }
  828. #u28601 .text {
  829. position:absolute;
  830. align-self:center;
  831. padding:2px 2px 2px 2px;
  832. box-sizing:border-box;
  833. width:100%;
  834. }
  835. #u28601_text {
  836. border-width:0px;
  837. word-wrap:break-word;
  838. text-transform:none;
  839. visibility:hidden;
  840. }
  841. #u28602 {
  842. border-width:0px;
  843. position:absolute;
  844. left:0px;
  845. top:0px;
  846. width:0px;
  847. height:0px;
  848. }
  849. #u28603_div {
  850. border-width:0px;
  851. position:absolute;
  852. left:0px;
  853. top:0px;
  854. width:33px;
  855. height:22px;
  856. background:inherit;
  857. background-color:rgba(255, 255, 255, 0);
  858. border:none;
  859. border-radius:0px;
  860. -moz-box-shadow:none;
  861. -webkit-box-shadow:none;
  862. box-shadow:none;
  863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  864. font-weight:400;
  865. font-style:normal;
  866. font-size:16px;
  867. color:#FFFFFF;
  868. }
  869. #u28603 {
  870. border-width:0px;
  871. position:absolute;
  872. left:39px;
  873. top:445px;
  874. width:33px;
  875. height:22px;
  876. display:flex;
  877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  878. font-weight:400;
  879. font-style:normal;
  880. font-size:16px;
  881. color:#FFFFFF;
  882. }
  883. #u28603 .text {
  884. position:absolute;
  885. align-self:flex-start;
  886. padding:0px 0px 0px 0px;
  887. box-sizing:border-box;
  888. width:100%;
  889. }
  890. #u28603_text {
  891. border-width:0px;
  892. white-space:nowrap;
  893. text-transform:none;
  894. }
  895. #u28604_img {
  896. border-width:0px;
  897. position:absolute;
  898. left:0px;
  899. top:0px;
  900. width:14px;
  901. height:14px;
  902. }
  903. #u28604 {
  904. border-width:0px;
  905. position:absolute;
  906. left:20px;
  907. top:449px;
  908. width:14px;
  909. height:14px;
  910. display:flex;
  911. }
  912. #u28604 .text {
  913. position:absolute;
  914. align-self:center;
  915. padding:2px 2px 2px 2px;
  916. box-sizing:border-box;
  917. width:100%;
  918. }
  919. #u28604_text {
  920. border-width:0px;
  921. word-wrap:break-word;
  922. text-transform:none;
  923. visibility:hidden;
  924. }
  925. #u28605 {
  926. border-width:0px;
  927. position:absolute;
  928. left:0px;
  929. top:0px;
  930. width:0px;
  931. height:0px;
  932. }
  933. #u28606_div {
  934. border-width:0px;
  935. position:absolute;
  936. left:0px;
  937. top:0px;
  938. width:33px;
  939. height:22px;
  940. background:inherit;
  941. background-color:rgba(255, 255, 255, 0);
  942. border:none;
  943. border-radius:0px;
  944. -moz-box-shadow:none;
  945. -webkit-box-shadow:none;
  946. box-shadow:none;
  947. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  948. font-weight:400;
  949. font-style:normal;
  950. font-size:16px;
  951. color:#FFFFFF;
  952. }
  953. #u28606 {
  954. border-width:0px;
  955. position:absolute;
  956. left:39px;
  957. top:571px;
  958. width:33px;
  959. height:22px;
  960. display:flex;
  961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  962. font-weight:400;
  963. font-style:normal;
  964. font-size:16px;
  965. color:#FFFFFF;
  966. }
  967. #u28606 .text {
  968. position:absolute;
  969. align-self:flex-start;
  970. padding:0px 0px 0px 0px;
  971. box-sizing:border-box;
  972. width:100%;
  973. }
  974. #u28606_text {
  975. border-width:0px;
  976. white-space:nowrap;
  977. text-transform:none;
  978. }
  979. #u28607_img {
  980. border-width:0px;
  981. position:absolute;
  982. left:0px;
  983. top:0px;
  984. width:14px;
  985. height:14px;
  986. }
  987. #u28607 {
  988. border-width:0px;
  989. position:absolute;
  990. left:20px;
  991. top:575px;
  992. width:14px;
  993. height:14px;
  994. display:flex;
  995. }
  996. #u28607 .text {
  997. position:absolute;
  998. align-self:center;
  999. padding:2px 2px 2px 2px;
  1000. box-sizing:border-box;
  1001. width:100%;
  1002. }
  1003. #u28607_text {
  1004. border-width:0px;
  1005. word-wrap:break-word;
  1006. text-transform:none;
  1007. visibility:hidden;
  1008. }
  1009. #u28608 {
  1010. border-width:0px;
  1011. position:absolute;
  1012. left:0px;
  1013. top:0px;
  1014. width:0px;
  1015. height:0px;
  1016. }
  1017. #u28609_div {
  1018. border-width:0px;
  1019. position:absolute;
  1020. left:0px;
  1021. top:0px;
  1022. width:33px;
  1023. height:22px;
  1024. background:inherit;
  1025. background-color:rgba(255, 255, 255, 0);
  1026. border:none;
  1027. border-radius:0px;
  1028. -moz-box-shadow:none;
  1029. -webkit-box-shadow:none;
  1030. box-shadow:none;
  1031. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1032. font-weight:400;
  1033. font-style:normal;
  1034. font-size:16px;
  1035. color:#FFFFFF;
  1036. }
  1037. #u28609 {
  1038. border-width:0px;
  1039. position:absolute;
  1040. left:39px;
  1041. top:529px;
  1042. width:33px;
  1043. height:22px;
  1044. display:flex;
  1045. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1046. font-weight:400;
  1047. font-style:normal;
  1048. font-size:16px;
  1049. color:#FFFFFF;
  1050. }
  1051. #u28609 .text {
  1052. position:absolute;
  1053. align-self:flex-start;
  1054. padding:0px 0px 0px 0px;
  1055. box-sizing:border-box;
  1056. width:100%;
  1057. }
  1058. #u28609_text {
  1059. border-width:0px;
  1060. white-space:nowrap;
  1061. text-transform:none;
  1062. }
  1063. #u28610_img {
  1064. border-width:0px;
  1065. position:absolute;
  1066. left:0px;
  1067. top:0px;
  1068. width:14px;
  1069. height:14px;
  1070. }
  1071. #u28610 {
  1072. border-width:0px;
  1073. position:absolute;
  1074. left:20px;
  1075. top:533px;
  1076. width:14px;
  1077. height:14px;
  1078. display:flex;
  1079. }
  1080. #u28610 .text {
  1081. position:absolute;
  1082. align-self:center;
  1083. padding:2px 2px 2px 2px;
  1084. box-sizing:border-box;
  1085. width:100%;
  1086. }
  1087. #u28610_text {
  1088. border-width:0px;
  1089. word-wrap:break-word;
  1090. text-transform:none;
  1091. visibility:hidden;
  1092. }
  1093. #u28611_input {
  1094. position:absolute;
  1095. left:0px;
  1096. top:0px;
  1097. width:214px;
  1098. height:27px;
  1099. padding:2px 2px 2px 2px;
  1100. font-family:'ArialMT', 'Arial', sans-serif;
  1101. font-weight:400;
  1102. font-style:normal;
  1103. font-size:14px;
  1104. letter-spacing:normal;
  1105. color:#FFFFFF;
  1106. vertical-align:none;
  1107. text-align:left;
  1108. text-transform:none;
  1109. background-color:transparent;
  1110. border-color:transparent;
  1111. }
  1112. #u28611_input.disabled {
  1113. position:absolute;
  1114. left:0px;
  1115. top:0px;
  1116. width:214px;
  1117. height:27px;
  1118. padding:2px 2px 2px 2px;
  1119. font-family:'ArialMT', 'Arial', sans-serif;
  1120. font-weight:400;
  1121. font-style:normal;
  1122. font-size:14px;
  1123. letter-spacing:normal;
  1124. color:#FFFFFF;
  1125. vertical-align:none;
  1126. text-align:left;
  1127. text-transform:none;
  1128. background-color:transparent;
  1129. border-color:transparent;
  1130. }
  1131. #u28611_div {
  1132. border-width:0px;
  1133. position:absolute;
  1134. left:0px;
  1135. top:0px;
  1136. width:214px;
  1137. height:27px;
  1138. background:inherit;
  1139. background-color:rgba(255, 255, 255, 0);
  1140. border:none;
  1141. border-radius:0px;
  1142. -moz-box-shadow:none;
  1143. -webkit-box-shadow:none;
  1144. box-shadow:none;
  1145. font-size:14px;
  1146. color:#FFFFFF;
  1147. }
  1148. #u28611 {
  1149. border-width:0px;
  1150. position:absolute;
  1151. left:1221px;
  1152. top:10px;
  1153. width:214px;
  1154. height:27px;
  1155. display:flex;
  1156. font-size:14px;
  1157. color:#FFFFFF;
  1158. }
  1159. #u28611 .text {
  1160. position:absolute;
  1161. align-self:flex-start;
  1162. padding:2px 2px 2px 2px;
  1163. box-sizing:border-box;
  1164. width:100%;
  1165. }
  1166. #u28611_div.disabled {
  1167. border-width:0px;
  1168. position:absolute;
  1169. left:0px;
  1170. top:0px;
  1171. width:214px;
  1172. height:27px;
  1173. background:inherit;
  1174. background-color:rgba(240, 240, 240, 1);
  1175. border:none;
  1176. border-radius:0px;
  1177. -moz-box-shadow:none;
  1178. -webkit-box-shadow:none;
  1179. box-shadow:none;
  1180. font-size:14px;
  1181. color:#FFFFFF;
  1182. }
  1183. #u28611.disabled {
  1184. }
  1185. .u28611_input_option {
  1186. font-size:14px;
  1187. }
  1188. #u28612_img {
  1189. border-width:0px;
  1190. position:absolute;
  1191. left:0px;
  1192. top:0px;
  1193. width:22px;
  1194. height:22px;
  1195. }
  1196. #u28612 {
  1197. border-width:0px;
  1198. position:absolute;
  1199. left:1194px;
  1200. top:15px;
  1201. width:22px;
  1202. height:22px;
  1203. display:flex;
  1204. }
  1205. #u28612 .text {
  1206. position:absolute;
  1207. align-self:center;
  1208. padding:2px 2px 2px 2px;
  1209. box-sizing:border-box;
  1210. width:100%;
  1211. }
  1212. #u28612_text {
  1213. border-width:0px;
  1214. word-wrap:break-word;
  1215. text-transform:none;
  1216. visibility:hidden;
  1217. }
  1218. #u28613_div {
  1219. border-width:0px;
  1220. position:absolute;
  1221. left:0px;
  1222. top:0px;
  1223. width:100px;
  1224. height:24px;
  1225. background:inherit;
  1226. background-color:rgba(242, 242, 242, 0.2);
  1227. border:none;
  1228. border-radius:25px;
  1229. -moz-box-shadow:none;
  1230. -webkit-box-shadow:none;
  1231. box-shadow:none;
  1232. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1233. font-weight:400;
  1234. font-style:normal;
  1235. color:#FFFFFF;
  1236. text-align:center;
  1237. }
  1238. #u28613 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:1480px;
  1242. top:12px;
  1243. width:100px;
  1244. height:24px;
  1245. display:flex;
  1246. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1247. font-weight:400;
  1248. font-style:normal;
  1249. color:#FFFFFF;
  1250. text-align:center;
  1251. }
  1252. #u28613 .text {
  1253. position:absolute;
  1254. align-self:center;
  1255. padding:0px 0px 0px 0px;
  1256. box-sizing:border-box;
  1257. width:100%;
  1258. }
  1259. #u28613_text {
  1260. border-width:0px;
  1261. word-wrap:break-word;
  1262. text-transform:none;
  1263. }
  1264. #u28614_img {
  1265. border-width:0px;
  1266. position:absolute;
  1267. left:0px;
  1268. top:0px;
  1269. width:2px;
  1270. height:12px;
  1271. }
  1272. #u28614 {
  1273. border-width:0px;
  1274. position:absolute;
  1275. left:1452px;
  1276. top:19px;
  1277. width:1px;
  1278. height:11px;
  1279. display:flex;
  1280. }
  1281. #u28614 .text {
  1282. position:absolute;
  1283. align-self:center;
  1284. padding:2px 2px 2px 2px;
  1285. box-sizing:border-box;
  1286. width:100%;
  1287. }
  1288. #u28614_text {
  1289. border-width:0px;
  1290. word-wrap:break-word;
  1291. text-transform:none;
  1292. visibility:hidden;
  1293. }
  1294. #u28615 {
  1295. border-width:0px;
  1296. position:absolute;
  1297. left:0px;
  1298. top:0px;
  1299. width:0px;
  1300. height:0px;
  1301. }
  1302. #u28616_div {
  1303. border-width:0px;
  1304. position:absolute;
  1305. left:0px;
  1306. top:0px;
  1307. width:33px;
  1308. height:22px;
  1309. background:inherit;
  1310. background-color:rgba(255, 255, 255, 0);
  1311. border:none;
  1312. border-radius:0px;
  1313. -moz-box-shadow:none;
  1314. -webkit-box-shadow:none;
  1315. box-shadow:none;
  1316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1317. font-weight:400;
  1318. font-style:normal;
  1319. font-size:16px;
  1320. color:#FFFFFF;
  1321. }
  1322. #u28616 {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:39px;
  1326. top:319px;
  1327. width:33px;
  1328. height:22px;
  1329. display:flex;
  1330. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1331. font-weight:400;
  1332. font-style:normal;
  1333. font-size:16px;
  1334. color:#FFFFFF;
  1335. }
  1336. #u28616 .text {
  1337. position:absolute;
  1338. align-self:flex-start;
  1339. padding:0px 0px 0px 0px;
  1340. box-sizing:border-box;
  1341. width:100%;
  1342. }
  1343. #u28616_text {
  1344. border-width:0px;
  1345. white-space:nowrap;
  1346. text-transform:none;
  1347. }
  1348. #u28617_img {
  1349. border-width:0px;
  1350. position:absolute;
  1351. left:0px;
  1352. top:0px;
  1353. width:14px;
  1354. height:14px;
  1355. }
  1356. #u28617 {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:20px;
  1360. top:323px;
  1361. width:14px;
  1362. height:14px;
  1363. display:flex;
  1364. }
  1365. #u28617 .text {
  1366. position:absolute;
  1367. align-self:center;
  1368. padding:2px 2px 2px 2px;
  1369. box-sizing:border-box;
  1370. width:100%;
  1371. }
  1372. #u28617_text {
  1373. border-width:0px;
  1374. word-wrap:break-word;
  1375. text-transform:none;
  1376. visibility:hidden;
  1377. }
  1378. #u28618 {
  1379. border-width:0px;
  1380. position:absolute;
  1381. left:0px;
  1382. top:0px;
  1383. width:0px;
  1384. height:0px;
  1385. }
  1386. #u28619_div {
  1387. border-width:0px;
  1388. position:absolute;
  1389. left:0px;
  1390. top:0px;
  1391. width:33px;
  1392. height:22px;
  1393. background:inherit;
  1394. background-color:rgba(255, 255, 255, 0);
  1395. border:none;
  1396. border-radius:0px;
  1397. -moz-box-shadow:none;
  1398. -webkit-box-shadow:none;
  1399. box-shadow:none;
  1400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1401. font-weight:400;
  1402. font-style:normal;
  1403. font-size:16px;
  1404. color:#FFFFFF;
  1405. }
  1406. #u28619 {
  1407. border-width:0px;
  1408. position:absolute;
  1409. left:39px;
  1410. top:361px;
  1411. width:33px;
  1412. height:22px;
  1413. display:flex;
  1414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1415. font-weight:400;
  1416. font-style:normal;
  1417. font-size:16px;
  1418. color:#FFFFFF;
  1419. }
  1420. #u28619 .text {
  1421. position:absolute;
  1422. align-self:flex-start;
  1423. padding:0px 0px 0px 0px;
  1424. box-sizing:border-box;
  1425. width:100%;
  1426. }
  1427. #u28619_text {
  1428. border-width:0px;
  1429. white-space:nowrap;
  1430. text-transform:none;
  1431. }
  1432. #u28620_img {
  1433. border-width:0px;
  1434. position:absolute;
  1435. left:0px;
  1436. top:0px;
  1437. width:14px;
  1438. height:14px;
  1439. }
  1440. #u28620 {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:20px;
  1444. top:365px;
  1445. width:14px;
  1446. height:14px;
  1447. display:flex;
  1448. }
  1449. #u28620 .text {
  1450. position:absolute;
  1451. align-self:center;
  1452. padding:2px 2px 2px 2px;
  1453. box-sizing:border-box;
  1454. width:100%;
  1455. }
  1456. #u28620_text {
  1457. border-width:0px;
  1458. word-wrap:break-word;
  1459. text-transform:none;
  1460. visibility:hidden;
  1461. }
  1462. #u28621 {
  1463. border-width:0px;
  1464. position:absolute;
  1465. left:0px;
  1466. top:0px;
  1467. width:0px;
  1468. height:0px;
  1469. }
  1470. #u28622_div {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:33px;
  1476. height:22px;
  1477. background:inherit;
  1478. background-color:rgba(255, 255, 255, 0);
  1479. border:none;
  1480. border-radius:0px;
  1481. -moz-box-shadow:none;
  1482. -webkit-box-shadow:none;
  1483. box-shadow:none;
  1484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1485. font-weight:400;
  1486. font-style:normal;
  1487. font-size:16px;
  1488. color:#FFFFFF;
  1489. }
  1490. #u28622 {
  1491. border-width:0px;
  1492. position:absolute;
  1493. left:39px;
  1494. top:151px;
  1495. width:33px;
  1496. height:22px;
  1497. display:flex;
  1498. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1499. font-weight:400;
  1500. font-style:normal;
  1501. font-size:16px;
  1502. color:#FFFFFF;
  1503. }
  1504. #u28622 .text {
  1505. position:absolute;
  1506. align-self:flex-start;
  1507. padding:0px 0px 0px 0px;
  1508. box-sizing:border-box;
  1509. width:100%;
  1510. }
  1511. #u28622_text {
  1512. border-width:0px;
  1513. white-space:nowrap;
  1514. text-transform:none;
  1515. }
  1516. #u28623_img {
  1517. border-width:0px;
  1518. position:absolute;
  1519. left:0px;
  1520. top:0px;
  1521. width:14px;
  1522. height:14px;
  1523. }
  1524. #u28623 {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:20px;
  1528. top:155px;
  1529. width:14px;
  1530. height:14px;
  1531. display:flex;
  1532. }
  1533. #u28623 .text {
  1534. position:absolute;
  1535. align-self:center;
  1536. padding:2px 2px 2px 2px;
  1537. box-sizing:border-box;
  1538. width:100%;
  1539. }
  1540. #u28623_text {
  1541. border-width:0px;
  1542. word-wrap:break-word;
  1543. text-transform:none;
  1544. visibility:hidden;
  1545. }
  1546. #u28624 {
  1547. border-width:0px;
  1548. position:absolute;
  1549. left:0px;
  1550. top:0px;
  1551. width:0px;
  1552. height:0px;
  1553. }
  1554. #u28625_div {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:33px;
  1560. height:22px;
  1561. background:inherit;
  1562. background-color:rgba(255, 255, 255, 0);
  1563. border:none;
  1564. border-radius:0px;
  1565. -moz-box-shadow:none;
  1566. -webkit-box-shadow:none;
  1567. box-shadow:none;
  1568. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1569. font-weight:400;
  1570. font-style:normal;
  1571. font-size:16px;
  1572. color:#FFFFFF;
  1573. }
  1574. #u28625 {
  1575. border-width:0px;
  1576. position:absolute;
  1577. left:39px;
  1578. top:487px;
  1579. width:33px;
  1580. height:22px;
  1581. display:flex;
  1582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1583. font-weight:400;
  1584. font-style:normal;
  1585. font-size:16px;
  1586. color:#FFFFFF;
  1587. }
  1588. #u28625 .text {
  1589. position:absolute;
  1590. align-self:flex-start;
  1591. padding:0px 0px 0px 0px;
  1592. box-sizing:border-box;
  1593. width:100%;
  1594. }
  1595. #u28625_text {
  1596. border-width:0px;
  1597. white-space:nowrap;
  1598. text-transform:none;
  1599. }
  1600. #u28626_img {
  1601. border-width:0px;
  1602. position:absolute;
  1603. left:0px;
  1604. top:0px;
  1605. width:14px;
  1606. height:14px;
  1607. }
  1608. #u28626 {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:20px;
  1612. top:491px;
  1613. width:14px;
  1614. height:14px;
  1615. display:flex;
  1616. }
  1617. #u28626 .text {
  1618. position:absolute;
  1619. align-self:center;
  1620. padding:2px 2px 2px 2px;
  1621. box-sizing:border-box;
  1622. width:100%;
  1623. }
  1624. #u28626_text {
  1625. border-width:0px;
  1626. word-wrap:break-word;
  1627. text-transform:none;
  1628. visibility:hidden;
  1629. }
  1630. #u28627 {
  1631. border-width:0px;
  1632. position:absolute;
  1633. left:0px;
  1634. top:0px;
  1635. width:0px;
  1636. height:0px;
  1637. }
  1638. #u28628_div {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:33px;
  1644. height:22px;
  1645. background:inherit;
  1646. background-color:rgba(255, 255, 255, 0);
  1647. border:none;
  1648. border-radius:0px;
  1649. -moz-box-shadow:none;
  1650. -webkit-box-shadow:none;
  1651. box-shadow:none;
  1652. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1653. font-weight:400;
  1654. font-style:normal;
  1655. font-size:16px;
  1656. color:#FFFFFF;
  1657. }
  1658. #u28628 {
  1659. border-width:0px;
  1660. position:absolute;
  1661. left:39px;
  1662. top:193px;
  1663. width:33px;
  1664. height:22px;
  1665. display:flex;
  1666. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1667. font-weight:400;
  1668. font-style:normal;
  1669. font-size:16px;
  1670. color:#FFFFFF;
  1671. }
  1672. #u28628 .text {
  1673. position:absolute;
  1674. align-self:flex-start;
  1675. padding:0px 0px 0px 0px;
  1676. box-sizing:border-box;
  1677. width:100%;
  1678. }
  1679. #u28628_text {
  1680. border-width:0px;
  1681. white-space:nowrap;
  1682. text-transform:none;
  1683. }
  1684. #u28629_img {
  1685. border-width:0px;
  1686. position:absolute;
  1687. left:0px;
  1688. top:0px;
  1689. width:14px;
  1690. height:14px;
  1691. }
  1692. #u28629 {
  1693. border-width:0px;
  1694. position:absolute;
  1695. left:20px;
  1696. top:197px;
  1697. width:14px;
  1698. height:14px;
  1699. display:flex;
  1700. }
  1701. #u28629 .text {
  1702. position:absolute;
  1703. align-self:center;
  1704. padding:2px 2px 2px 2px;
  1705. box-sizing:border-box;
  1706. width:100%;
  1707. }
  1708. #u28629_text {
  1709. border-width:0px;
  1710. word-wrap:break-word;
  1711. text-transform:none;
  1712. visibility:hidden;
  1713. }
  1714. #u28630_div {
  1715. border-width:0px;
  1716. position:absolute;
  1717. left:0px;
  1718. top:0px;
  1719. width:1259px;
  1720. height:1180px;
  1721. background:inherit;
  1722. background-color:rgba(255, 255, 255, 1);
  1723. border:none;
  1724. border-radius:0px;
  1725. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1726. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1727. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1728. }
  1729. #u28630 {
  1730. border-width:0px;
  1731. position:absolute;
  1732. left:330px;
  1733. top:50px;
  1734. width:1259px;
  1735. height:1180px;
  1736. display:flex;
  1737. }
  1738. #u28630 .text {
  1739. position:absolute;
  1740. align-self:center;
  1741. padding:2px 2px 2px 2px;
  1742. box-sizing:border-box;
  1743. width:100%;
  1744. }
  1745. #u28630_text {
  1746. border-width:0px;
  1747. word-wrap:break-word;
  1748. text-transform:none;
  1749. visibility:hidden;
  1750. }
  1751. #u28631_div {
  1752. border-width:0px;
  1753. position:absolute;
  1754. left:0px;
  1755. top:0px;
  1756. width:73px;
  1757. height:50px;
  1758. background:inherit;
  1759. background-color:rgba(255, 255, 255, 0);
  1760. border:none;
  1761. border-left:0px;
  1762. border-top:0px;
  1763. border-right:0px;
  1764. border-radius:0px;
  1765. border-bottom-right-radius:0px;
  1766. border-bottom-left-radius:0px;
  1767. -moz-box-shadow:none;
  1768. -webkit-box-shadow:none;
  1769. box-shadow:none;
  1770. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1771. font-weight:500;
  1772. font-style:normal;
  1773. font-size:18px;
  1774. }
  1775. #u28631 {
  1776. border-width:0px;
  1777. position:absolute;
  1778. left:350px;
  1779. top:50px;
  1780. width:73px;
  1781. height:50px;
  1782. display:flex;
  1783. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1784. font-weight:500;
  1785. font-style:normal;
  1786. font-size:18px;
  1787. }
  1788. #u28631 .text {
  1789. position:absolute;
  1790. align-self:center;
  1791. padding:0px 0px 0px 0px;
  1792. box-sizing:border-box;
  1793. width:100%;
  1794. }
  1795. #u28631_text {
  1796. border-width:0px;
  1797. white-space:nowrap;
  1798. text-transform:none;
  1799. }
  1800. #u28632 {
  1801. border-width:0px;
  1802. position:absolute;
  1803. left:350px;
  1804. top:190px;
  1805. width:1219px;
  1806. height:457px;
  1807. }
  1808. #u28633_img {
  1809. border-width:0px;
  1810. position:absolute;
  1811. left:0px;
  1812. top:0px;
  1813. width:67px;
  1814. height:38px;
  1815. }
  1816. #u28633 {
  1817. border-width:0px;
  1818. position:absolute;
  1819. left:0px;
  1820. top:0px;
  1821. width:67px;
  1822. height:38px;
  1823. display:flex;
  1824. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  1825. font-weight:400;
  1826. font-style:normal;
  1827. font-size:12px;
  1828. color:#FFFFFF;
  1829. }
  1830. #u28633 .text {
  1831. position:absolute;
  1832. align-self:center;
  1833. padding:2px 2px 2px 0px;
  1834. box-sizing:border-box;
  1835. width:100%;
  1836. }
  1837. #u28633_text {
  1838. border-width:0px;
  1839. word-wrap:break-word;
  1840. text-transform:none;
  1841. }
  1842. #u28634_img {
  1843. border-width:0px;
  1844. position:absolute;
  1845. left:0px;
  1846. top:0px;
  1847. width:144px;
  1848. height:38px;
  1849. }
  1850. #u28634 {
  1851. border-width:0px;
  1852. position:absolute;
  1853. left:67px;
  1854. top:0px;
  1855. width:144px;
  1856. height:38px;
  1857. display:flex;
  1858. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1859. font-weight:400;
  1860. font-style:normal;
  1861. font-size:12px;
  1862. color:#FFFFFF;
  1863. }
  1864. #u28634 .text {
  1865. position:absolute;
  1866. align-self:center;
  1867. padding:2px 2px 2px 0px;
  1868. box-sizing:border-box;
  1869. width:100%;
  1870. }
  1871. #u28634_text {
  1872. border-width:0px;
  1873. word-wrap:break-word;
  1874. text-transform:none;
  1875. }
  1876. #u28635_img {
  1877. border-width:0px;
  1878. position:absolute;
  1879. left:0px;
  1880. top:0px;
  1881. width:144px;
  1882. height:38px;
  1883. }
  1884. #u28635 {
  1885. border-width:0px;
  1886. position:absolute;
  1887. left:211px;
  1888. top:0px;
  1889. width:144px;
  1890. height:38px;
  1891. display:flex;
  1892. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1893. font-weight:400;
  1894. font-style:normal;
  1895. font-size:12px;
  1896. color:#FFFFFF;
  1897. }
  1898. #u28635 .text {
  1899. position:absolute;
  1900. align-self:center;
  1901. padding:2px 2px 2px 0px;
  1902. box-sizing:border-box;
  1903. width:100%;
  1904. }
  1905. #u28635_text {
  1906. border-width:0px;
  1907. word-wrap:break-word;
  1908. text-transform:none;
  1909. }
  1910. #u28636_img {
  1911. border-width:0px;
  1912. position:absolute;
  1913. left:0px;
  1914. top:0px;
  1915. width:144px;
  1916. height:38px;
  1917. }
  1918. #u28636 {
  1919. border-width:0px;
  1920. position:absolute;
  1921. left:355px;
  1922. top:0px;
  1923. width:144px;
  1924. height:38px;
  1925. display:flex;
  1926. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1927. font-weight:400;
  1928. font-style:normal;
  1929. font-size:12px;
  1930. color:#FFFFFF;
  1931. }
  1932. #u28636 .text {
  1933. position:absolute;
  1934. align-self:center;
  1935. padding:2px 2px 2px 0px;
  1936. box-sizing:border-box;
  1937. width:100%;
  1938. }
  1939. #u28636_text {
  1940. border-width:0px;
  1941. word-wrap:break-word;
  1942. text-transform:none;
  1943. }
  1944. #u28637_img {
  1945. border-width:0px;
  1946. position:absolute;
  1947. left:0px;
  1948. top:0px;
  1949. width:144px;
  1950. height:38px;
  1951. }
  1952. #u28637 {
  1953. border-width:0px;
  1954. position:absolute;
  1955. left:499px;
  1956. top:0px;
  1957. width:144px;
  1958. height:38px;
  1959. display:flex;
  1960. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1961. font-weight:400;
  1962. font-style:normal;
  1963. font-size:12px;
  1964. color:#FFFFFF;
  1965. }
  1966. #u28637 .text {
  1967. position:absolute;
  1968. align-self:center;
  1969. padding:2px 2px 2px 0px;
  1970. box-sizing:border-box;
  1971. width:100%;
  1972. }
  1973. #u28637_text {
  1974. border-width:0px;
  1975. word-wrap:break-word;
  1976. text-transform:none;
  1977. }
  1978. #u28638_img {
  1979. border-width:0px;
  1980. position:absolute;
  1981. left:0px;
  1982. top:0px;
  1983. width:144px;
  1984. height:38px;
  1985. }
  1986. #u28638 {
  1987. border-width:0px;
  1988. position:absolute;
  1989. left:643px;
  1990. top:0px;
  1991. width:144px;
  1992. height:38px;
  1993. display:flex;
  1994. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1995. font-weight:400;
  1996. font-style:normal;
  1997. font-size:12px;
  1998. color:#FFFFFF;
  1999. }
  2000. #u28638 .text {
  2001. position:absolute;
  2002. align-self:center;
  2003. padding:2px 2px 2px 0px;
  2004. box-sizing:border-box;
  2005. width:100%;
  2006. }
  2007. #u28638_text {
  2008. border-width:0px;
  2009. word-wrap:break-word;
  2010. text-transform:none;
  2011. }
  2012. #u28639_img {
  2013. border-width:0px;
  2014. position:absolute;
  2015. left:0px;
  2016. top:0px;
  2017. width:144px;
  2018. height:38px;
  2019. }
  2020. #u28639 {
  2021. border-width:0px;
  2022. position:absolute;
  2023. left:787px;
  2024. top:0px;
  2025. width:144px;
  2026. height:38px;
  2027. display:flex;
  2028. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2029. font-weight:400;
  2030. font-style:normal;
  2031. font-size:12px;
  2032. color:#FFFFFF;
  2033. }
  2034. #u28639 .text {
  2035. position:absolute;
  2036. align-self:center;
  2037. padding:2px 2px 2px 0px;
  2038. box-sizing:border-box;
  2039. width:100%;
  2040. }
  2041. #u28639_text {
  2042. border-width:0px;
  2043. word-wrap:break-word;
  2044. text-transform:none;
  2045. }
  2046. #u28640_img {
  2047. border-width:0px;
  2048. position:absolute;
  2049. left:0px;
  2050. top:0px;
  2051. width:144px;
  2052. height:38px;
  2053. }
  2054. #u28640 {
  2055. border-width:0px;
  2056. position:absolute;
  2057. left:931px;
  2058. top:0px;
  2059. width:144px;
  2060. height:38px;
  2061. display:flex;
  2062. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2063. font-weight:400;
  2064. font-style:normal;
  2065. font-size:12px;
  2066. color:#FFFFFF;
  2067. }
  2068. #u28640 .text {
  2069. position:absolute;
  2070. align-self:center;
  2071. padding:2px 2px 2px 0px;
  2072. box-sizing:border-box;
  2073. width:100%;
  2074. }
  2075. #u28640_text {
  2076. border-width:0px;
  2077. word-wrap:break-word;
  2078. text-transform:none;
  2079. }
  2080. #u28641_img {
  2081. border-width:0px;
  2082. position:absolute;
  2083. left:0px;
  2084. top:0px;
  2085. width:144px;
  2086. height:38px;
  2087. }
  2088. #u28641 {
  2089. border-width:0px;
  2090. position:absolute;
  2091. left:1075px;
  2092. top:0px;
  2093. width:144px;
  2094. height:38px;
  2095. display:flex;
  2096. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2097. font-weight:400;
  2098. font-style:normal;
  2099. font-size:12px;
  2100. color:#FFFFFF;
  2101. }
  2102. #u28641 .text {
  2103. position:absolute;
  2104. align-self:center;
  2105. padding:2px 2px 2px 0px;
  2106. box-sizing:border-box;
  2107. width:100%;
  2108. }
  2109. #u28641_text {
  2110. border-width:0px;
  2111. word-wrap:break-word;
  2112. text-transform:none;
  2113. }
  2114. #u28642_img {
  2115. border-width:0px;
  2116. position:absolute;
  2117. left:0px;
  2118. top:0px;
  2119. width:67px;
  2120. height:39px;
  2121. }
  2122. #u28642 {
  2123. border-width:0px;
  2124. position:absolute;
  2125. left:0px;
  2126. top:38px;
  2127. width:67px;
  2128. height:39px;
  2129. display:flex;
  2130. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2131. font-weight:400;
  2132. font-style:normal;
  2133. font-size:12px;
  2134. }
  2135. #u28642 .text {
  2136. position:absolute;
  2137. align-self:center;
  2138. padding:2px 2px 2px 0px;
  2139. box-sizing:border-box;
  2140. width:100%;
  2141. }
  2142. #u28642_text {
  2143. border-width:0px;
  2144. word-wrap:break-word;
  2145. text-transform:none;
  2146. }
  2147. #u28643_img {
  2148. border-width:0px;
  2149. position:absolute;
  2150. left:0px;
  2151. top:0px;
  2152. width:144px;
  2153. height:39px;
  2154. }
  2155. #u28643 {
  2156. border-width:0px;
  2157. position:absolute;
  2158. left:67px;
  2159. top:38px;
  2160. width:144px;
  2161. height:39px;
  2162. display:flex;
  2163. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2164. font-weight:400;
  2165. font-style:normal;
  2166. font-size:12px;
  2167. }
  2168. #u28643 .text {
  2169. position:absolute;
  2170. align-self:center;
  2171. padding:2px 2px 2px 0px;
  2172. box-sizing:border-box;
  2173. width:100%;
  2174. }
  2175. #u28643_text {
  2176. border-width:0px;
  2177. word-wrap:break-word;
  2178. text-transform:none;
  2179. visibility:hidden;
  2180. }
  2181. #u28644_img {
  2182. border-width:0px;
  2183. position:absolute;
  2184. left:0px;
  2185. top:0px;
  2186. width:144px;
  2187. height:39px;
  2188. }
  2189. #u28644 {
  2190. border-width:0px;
  2191. position:absolute;
  2192. left:211px;
  2193. top:38px;
  2194. width:144px;
  2195. height:39px;
  2196. display:flex;
  2197. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2198. font-weight:400;
  2199. font-style:normal;
  2200. font-size:12px;
  2201. }
  2202. #u28644 .text {
  2203. position:absolute;
  2204. align-self:center;
  2205. padding:2px 2px 2px 0px;
  2206. box-sizing:border-box;
  2207. width:100%;
  2208. }
  2209. #u28644_text {
  2210. border-width:0px;
  2211. word-wrap:break-word;
  2212. text-transform:none;
  2213. visibility:hidden;
  2214. }
  2215. #u28645_img {
  2216. border-width:0px;
  2217. position:absolute;
  2218. left:0px;
  2219. top:0px;
  2220. width:144px;
  2221. height:39px;
  2222. }
  2223. #u28645 {
  2224. border-width:0px;
  2225. position:absolute;
  2226. left:355px;
  2227. top:38px;
  2228. width:144px;
  2229. height:39px;
  2230. display:flex;
  2231. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2232. font-weight:400;
  2233. font-style:normal;
  2234. font-size:12px;
  2235. }
  2236. #u28645 .text {
  2237. position:absolute;
  2238. align-self:center;
  2239. padding:2px 2px 2px 0px;
  2240. box-sizing:border-box;
  2241. width:100%;
  2242. }
  2243. #u28645_text {
  2244. border-width:0px;
  2245. word-wrap:break-word;
  2246. text-transform:none;
  2247. visibility:hidden;
  2248. }
  2249. #u28646_img {
  2250. border-width:0px;
  2251. position:absolute;
  2252. left:0px;
  2253. top:0px;
  2254. width:144px;
  2255. height:39px;
  2256. }
  2257. #u28646 {
  2258. border-width:0px;
  2259. position:absolute;
  2260. left:499px;
  2261. top:38px;
  2262. width:144px;
  2263. height:39px;
  2264. display:flex;
  2265. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2266. font-weight:400;
  2267. font-style:normal;
  2268. font-size:12px;
  2269. }
  2270. #u28646 .text {
  2271. position:absolute;
  2272. align-self:center;
  2273. padding:2px 2px 2px 0px;
  2274. box-sizing:border-box;
  2275. width:100%;
  2276. }
  2277. #u28646_text {
  2278. border-width:0px;
  2279. word-wrap:break-word;
  2280. text-transform:none;
  2281. visibility:hidden;
  2282. }
  2283. #u28647_img {
  2284. border-width:0px;
  2285. position:absolute;
  2286. left:0px;
  2287. top:0px;
  2288. width:144px;
  2289. height:39px;
  2290. }
  2291. #u28647 {
  2292. border-width:0px;
  2293. position:absolute;
  2294. left:643px;
  2295. top:38px;
  2296. width:144px;
  2297. height:39px;
  2298. display:flex;
  2299. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2300. font-weight:400;
  2301. font-style:normal;
  2302. font-size:12px;
  2303. }
  2304. #u28647 .text {
  2305. position:absolute;
  2306. align-self:center;
  2307. padding:2px 2px 2px 0px;
  2308. box-sizing:border-box;
  2309. width:100%;
  2310. }
  2311. #u28647_text {
  2312. border-width:0px;
  2313. word-wrap:break-word;
  2314. text-transform:none;
  2315. visibility:hidden;
  2316. }
  2317. #u28648_img {
  2318. border-width:0px;
  2319. position:absolute;
  2320. left:0px;
  2321. top:0px;
  2322. width:144px;
  2323. height:39px;
  2324. }
  2325. #u28648 {
  2326. border-width:0px;
  2327. position:absolute;
  2328. left:787px;
  2329. top:38px;
  2330. width:144px;
  2331. height:39px;
  2332. display:flex;
  2333. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2334. font-weight:400;
  2335. font-style:normal;
  2336. font-size:12px;
  2337. }
  2338. #u28648 .text {
  2339. position:absolute;
  2340. align-self:center;
  2341. padding:2px 2px 2px 0px;
  2342. box-sizing:border-box;
  2343. width:100%;
  2344. }
  2345. #u28648_text {
  2346. border-width:0px;
  2347. word-wrap:break-word;
  2348. text-transform:none;
  2349. visibility:hidden;
  2350. }
  2351. #u28649_img {
  2352. border-width:0px;
  2353. position:absolute;
  2354. left:0px;
  2355. top:0px;
  2356. width:144px;
  2357. height:39px;
  2358. }
  2359. #u28649 {
  2360. border-width:0px;
  2361. position:absolute;
  2362. left:931px;
  2363. top:38px;
  2364. width:144px;
  2365. height:39px;
  2366. display:flex;
  2367. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2368. font-weight:400;
  2369. font-style:normal;
  2370. font-size:12px;
  2371. }
  2372. #u28649 .text {
  2373. position:absolute;
  2374. align-self:center;
  2375. padding:2px 2px 2px 0px;
  2376. box-sizing:border-box;
  2377. width:100%;
  2378. }
  2379. #u28649_text {
  2380. border-width:0px;
  2381. word-wrap:break-word;
  2382. text-transform:none;
  2383. visibility:hidden;
  2384. }
  2385. #u28650_img {
  2386. border-width:0px;
  2387. position:absolute;
  2388. left:0px;
  2389. top:0px;
  2390. width:144px;
  2391. height:39px;
  2392. }
  2393. #u28650 {
  2394. border-width:0px;
  2395. position:absolute;
  2396. left:1075px;
  2397. top:38px;
  2398. width:144px;
  2399. height:39px;
  2400. display:flex;
  2401. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2402. font-weight:400;
  2403. font-style:normal;
  2404. font-size:12px;
  2405. }
  2406. #u28650 .text {
  2407. position:absolute;
  2408. align-self:center;
  2409. padding:2px 2px 2px 0px;
  2410. box-sizing:border-box;
  2411. width:100%;
  2412. }
  2413. #u28650_text {
  2414. border-width:0px;
  2415. word-wrap:break-word;
  2416. text-transform:none;
  2417. visibility:hidden;
  2418. }
  2419. #u28651_img {
  2420. border-width:0px;
  2421. position:absolute;
  2422. left:0px;
  2423. top:0px;
  2424. width:67px;
  2425. height:38px;
  2426. }
  2427. #u28651 {
  2428. border-width:0px;
  2429. position:absolute;
  2430. left:0px;
  2431. top:77px;
  2432. width:67px;
  2433. height:38px;
  2434. display:flex;
  2435. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2436. font-weight:400;
  2437. font-style:normal;
  2438. font-size:12px;
  2439. color:#606266;
  2440. }
  2441. #u28651 .text {
  2442. position:absolute;
  2443. align-self:center;
  2444. padding:2px 2px 2px 0px;
  2445. box-sizing:border-box;
  2446. width:100%;
  2447. }
  2448. #u28651_text {
  2449. border-width:0px;
  2450. word-wrap:break-word;
  2451. text-transform:none;
  2452. }
  2453. #u28652_img {
  2454. border-width:0px;
  2455. position:absolute;
  2456. left:0px;
  2457. top:0px;
  2458. width:144px;
  2459. height:38px;
  2460. }
  2461. #u28652 {
  2462. border-width:0px;
  2463. position:absolute;
  2464. left:67px;
  2465. top:77px;
  2466. width:144px;
  2467. height:38px;
  2468. display:flex;
  2469. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2470. font-weight:400;
  2471. font-style:normal;
  2472. font-size:12px;
  2473. color:#606266;
  2474. }
  2475. #u28652 .text {
  2476. position:absolute;
  2477. align-self:center;
  2478. padding:2px 2px 2px 0px;
  2479. box-sizing:border-box;
  2480. width:100%;
  2481. }
  2482. #u28652_text {
  2483. border-width:0px;
  2484. word-wrap:break-word;
  2485. text-transform:none;
  2486. visibility:hidden;
  2487. }
  2488. #u28653_img {
  2489. border-width:0px;
  2490. position:absolute;
  2491. left:0px;
  2492. top:0px;
  2493. width:144px;
  2494. height:38px;
  2495. }
  2496. #u28653 {
  2497. border-width:0px;
  2498. position:absolute;
  2499. left:211px;
  2500. top:77px;
  2501. width:144px;
  2502. height:38px;
  2503. display:flex;
  2504. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2505. font-weight:400;
  2506. font-style:normal;
  2507. font-size:12px;
  2508. color:#606266;
  2509. }
  2510. #u28653 .text {
  2511. position:absolute;
  2512. align-self:center;
  2513. padding:2px 2px 2px 0px;
  2514. box-sizing:border-box;
  2515. width:100%;
  2516. }
  2517. #u28653_text {
  2518. border-width:0px;
  2519. word-wrap:break-word;
  2520. text-transform:none;
  2521. visibility:hidden;
  2522. }
  2523. #u28654_img {
  2524. border-width:0px;
  2525. position:absolute;
  2526. left:0px;
  2527. top:0px;
  2528. width:144px;
  2529. height:38px;
  2530. }
  2531. #u28654 {
  2532. border-width:0px;
  2533. position:absolute;
  2534. left:355px;
  2535. top:77px;
  2536. width:144px;
  2537. height:38px;
  2538. display:flex;
  2539. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2540. font-weight:400;
  2541. font-style:normal;
  2542. font-size:12px;
  2543. color:#606266;
  2544. }
  2545. #u28654 .text {
  2546. position:absolute;
  2547. align-self:center;
  2548. padding:2px 2px 2px 0px;
  2549. box-sizing:border-box;
  2550. width:100%;
  2551. }
  2552. #u28654_text {
  2553. border-width:0px;
  2554. word-wrap:break-word;
  2555. text-transform:none;
  2556. visibility:hidden;
  2557. }
  2558. #u28655_img {
  2559. border-width:0px;
  2560. position:absolute;
  2561. left:0px;
  2562. top:0px;
  2563. width:144px;
  2564. height:38px;
  2565. }
  2566. #u28655 {
  2567. border-width:0px;
  2568. position:absolute;
  2569. left:499px;
  2570. top:77px;
  2571. width:144px;
  2572. height:38px;
  2573. display:flex;
  2574. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2575. font-weight:400;
  2576. font-style:normal;
  2577. font-size:12px;
  2578. color:#606266;
  2579. }
  2580. #u28655 .text {
  2581. position:absolute;
  2582. align-self:center;
  2583. padding:2px 2px 2px 0px;
  2584. box-sizing:border-box;
  2585. width:100%;
  2586. }
  2587. #u28655_text {
  2588. border-width:0px;
  2589. word-wrap:break-word;
  2590. text-transform:none;
  2591. visibility:hidden;
  2592. }
  2593. #u28656_img {
  2594. border-width:0px;
  2595. position:absolute;
  2596. left:0px;
  2597. top:0px;
  2598. width:144px;
  2599. height:38px;
  2600. }
  2601. #u28656 {
  2602. border-width:0px;
  2603. position:absolute;
  2604. left:643px;
  2605. top:77px;
  2606. width:144px;
  2607. height:38px;
  2608. display:flex;
  2609. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2610. font-weight:400;
  2611. font-style:normal;
  2612. font-size:12px;
  2613. color:#606266;
  2614. }
  2615. #u28656 .text {
  2616. position:absolute;
  2617. align-self:center;
  2618. padding:2px 2px 2px 0px;
  2619. box-sizing:border-box;
  2620. width:100%;
  2621. }
  2622. #u28656_text {
  2623. border-width:0px;
  2624. word-wrap:break-word;
  2625. text-transform:none;
  2626. visibility:hidden;
  2627. }
  2628. #u28657_img {
  2629. border-width:0px;
  2630. position:absolute;
  2631. left:0px;
  2632. top:0px;
  2633. width:144px;
  2634. height:38px;
  2635. }
  2636. #u28657 {
  2637. border-width:0px;
  2638. position:absolute;
  2639. left:787px;
  2640. top:77px;
  2641. width:144px;
  2642. height:38px;
  2643. display:flex;
  2644. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2645. font-weight:400;
  2646. font-style:normal;
  2647. font-size:12px;
  2648. color:#606266;
  2649. }
  2650. #u28657 .text {
  2651. position:absolute;
  2652. align-self:center;
  2653. padding:2px 2px 2px 0px;
  2654. box-sizing:border-box;
  2655. width:100%;
  2656. }
  2657. #u28657_text {
  2658. border-width:0px;
  2659. word-wrap:break-word;
  2660. text-transform:none;
  2661. visibility:hidden;
  2662. }
  2663. #u28658_img {
  2664. border-width:0px;
  2665. position:absolute;
  2666. left:0px;
  2667. top:0px;
  2668. width:144px;
  2669. height:38px;
  2670. }
  2671. #u28658 {
  2672. border-width:0px;
  2673. position:absolute;
  2674. left:931px;
  2675. top:77px;
  2676. width:144px;
  2677. height:38px;
  2678. display:flex;
  2679. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2680. font-weight:400;
  2681. font-style:normal;
  2682. font-size:12px;
  2683. color:#606266;
  2684. }
  2685. #u28658 .text {
  2686. position:absolute;
  2687. align-self:center;
  2688. padding:2px 2px 2px 0px;
  2689. box-sizing:border-box;
  2690. width:100%;
  2691. }
  2692. #u28658_text {
  2693. border-width:0px;
  2694. word-wrap:break-word;
  2695. text-transform:none;
  2696. visibility:hidden;
  2697. }
  2698. #u28659_img {
  2699. border-width:0px;
  2700. position:absolute;
  2701. left:0px;
  2702. top:0px;
  2703. width:144px;
  2704. height:38px;
  2705. }
  2706. #u28659 {
  2707. border-width:0px;
  2708. position:absolute;
  2709. left:1075px;
  2710. top:77px;
  2711. width:144px;
  2712. height:38px;
  2713. display:flex;
  2714. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2715. font-weight:400;
  2716. font-style:normal;
  2717. font-size:12px;
  2718. color:#606266;
  2719. }
  2720. #u28659 .text {
  2721. position:absolute;
  2722. align-self:center;
  2723. padding:2px 2px 2px 0px;
  2724. box-sizing:border-box;
  2725. width:100%;
  2726. }
  2727. #u28659_text {
  2728. border-width:0px;
  2729. word-wrap:break-word;
  2730. text-transform:none;
  2731. visibility:hidden;
  2732. }
  2733. #u28660_img {
  2734. border-width:0px;
  2735. position:absolute;
  2736. left:0px;
  2737. top:0px;
  2738. width:67px;
  2739. height:38px;
  2740. }
  2741. #u28660 {
  2742. border-width:0px;
  2743. position:absolute;
  2744. left:0px;
  2745. top:115px;
  2746. width:67px;
  2747. height:38px;
  2748. display:flex;
  2749. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2750. font-weight:400;
  2751. font-style:normal;
  2752. font-size:12px;
  2753. color:#606266;
  2754. }
  2755. #u28660 .text {
  2756. position:absolute;
  2757. align-self:center;
  2758. padding:2px 2px 2px 0px;
  2759. box-sizing:border-box;
  2760. width:100%;
  2761. }
  2762. #u28660_text {
  2763. border-width:0px;
  2764. word-wrap:break-word;
  2765. text-transform:none;
  2766. }
  2767. #u28661_img {
  2768. border-width:0px;
  2769. position:absolute;
  2770. left:0px;
  2771. top:0px;
  2772. width:144px;
  2773. height:38px;
  2774. }
  2775. #u28661 {
  2776. border-width:0px;
  2777. position:absolute;
  2778. left:67px;
  2779. top:115px;
  2780. width:144px;
  2781. height:38px;
  2782. display:flex;
  2783. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2784. font-weight:400;
  2785. font-style:normal;
  2786. font-size:12px;
  2787. color:#606266;
  2788. }
  2789. #u28661 .text {
  2790. position:absolute;
  2791. align-self:center;
  2792. padding:2px 2px 2px 0px;
  2793. box-sizing:border-box;
  2794. width:100%;
  2795. }
  2796. #u28661_text {
  2797. border-width:0px;
  2798. word-wrap:break-word;
  2799. text-transform:none;
  2800. visibility:hidden;
  2801. }
  2802. #u28662_img {
  2803. border-width:0px;
  2804. position:absolute;
  2805. left:0px;
  2806. top:0px;
  2807. width:144px;
  2808. height:38px;
  2809. }
  2810. #u28662 {
  2811. border-width:0px;
  2812. position:absolute;
  2813. left:211px;
  2814. top:115px;
  2815. width:144px;
  2816. height:38px;
  2817. display:flex;
  2818. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2819. font-weight:400;
  2820. font-style:normal;
  2821. font-size:12px;
  2822. color:#606266;
  2823. }
  2824. #u28662 .text {
  2825. position:absolute;
  2826. align-self:center;
  2827. padding:2px 2px 2px 0px;
  2828. box-sizing:border-box;
  2829. width:100%;
  2830. }
  2831. #u28662_text {
  2832. border-width:0px;
  2833. word-wrap:break-word;
  2834. text-transform:none;
  2835. visibility:hidden;
  2836. }
  2837. #u28663_img {
  2838. border-width:0px;
  2839. position:absolute;
  2840. left:0px;
  2841. top:0px;
  2842. width:144px;
  2843. height:38px;
  2844. }
  2845. #u28663 {
  2846. border-width:0px;
  2847. position:absolute;
  2848. left:355px;
  2849. top:115px;
  2850. width:144px;
  2851. height:38px;
  2852. display:flex;
  2853. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2854. font-weight:400;
  2855. font-style:normal;
  2856. font-size:12px;
  2857. color:#606266;
  2858. }
  2859. #u28663 .text {
  2860. position:absolute;
  2861. align-self:center;
  2862. padding:2px 2px 2px 0px;
  2863. box-sizing:border-box;
  2864. width:100%;
  2865. }
  2866. #u28663_text {
  2867. border-width:0px;
  2868. word-wrap:break-word;
  2869. text-transform:none;
  2870. visibility:hidden;
  2871. }
  2872. #u28664_img {
  2873. border-width:0px;
  2874. position:absolute;
  2875. left:0px;
  2876. top:0px;
  2877. width:144px;
  2878. height:38px;
  2879. }
  2880. #u28664 {
  2881. border-width:0px;
  2882. position:absolute;
  2883. left:499px;
  2884. top:115px;
  2885. width:144px;
  2886. height:38px;
  2887. display:flex;
  2888. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2889. font-weight:400;
  2890. font-style:normal;
  2891. font-size:12px;
  2892. color:#606266;
  2893. }
  2894. #u28664 .text {
  2895. position:absolute;
  2896. align-self:center;
  2897. padding:2px 2px 2px 0px;
  2898. box-sizing:border-box;
  2899. width:100%;
  2900. }
  2901. #u28664_text {
  2902. border-width:0px;
  2903. word-wrap:break-word;
  2904. text-transform:none;
  2905. visibility:hidden;
  2906. }
  2907. #u28665_img {
  2908. border-width:0px;
  2909. position:absolute;
  2910. left:0px;
  2911. top:0px;
  2912. width:144px;
  2913. height:38px;
  2914. }
  2915. #u28665 {
  2916. border-width:0px;
  2917. position:absolute;
  2918. left:643px;
  2919. top:115px;
  2920. width:144px;
  2921. height:38px;
  2922. display:flex;
  2923. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2924. font-weight:400;
  2925. font-style:normal;
  2926. font-size:12px;
  2927. color:#606266;
  2928. }
  2929. #u28665 .text {
  2930. position:absolute;
  2931. align-self:center;
  2932. padding:2px 2px 2px 0px;
  2933. box-sizing:border-box;
  2934. width:100%;
  2935. }
  2936. #u28665_text {
  2937. border-width:0px;
  2938. word-wrap:break-word;
  2939. text-transform:none;
  2940. visibility:hidden;
  2941. }
  2942. #u28666_img {
  2943. border-width:0px;
  2944. position:absolute;
  2945. left:0px;
  2946. top:0px;
  2947. width:144px;
  2948. height:38px;
  2949. }
  2950. #u28666 {
  2951. border-width:0px;
  2952. position:absolute;
  2953. left:787px;
  2954. top:115px;
  2955. width:144px;
  2956. height:38px;
  2957. display:flex;
  2958. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2959. font-weight:400;
  2960. font-style:normal;
  2961. font-size:12px;
  2962. color:#606266;
  2963. }
  2964. #u28666 .text {
  2965. position:absolute;
  2966. align-self:center;
  2967. padding:2px 2px 2px 0px;
  2968. box-sizing:border-box;
  2969. width:100%;
  2970. }
  2971. #u28666_text {
  2972. border-width:0px;
  2973. word-wrap:break-word;
  2974. text-transform:none;
  2975. visibility:hidden;
  2976. }
  2977. #u28667_img {
  2978. border-width:0px;
  2979. position:absolute;
  2980. left:0px;
  2981. top:0px;
  2982. width:144px;
  2983. height:38px;
  2984. }
  2985. #u28667 {
  2986. border-width:0px;
  2987. position:absolute;
  2988. left:931px;
  2989. top:115px;
  2990. width:144px;
  2991. height:38px;
  2992. display:flex;
  2993. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2994. font-weight:400;
  2995. font-style:normal;
  2996. font-size:12px;
  2997. color:#606266;
  2998. }
  2999. #u28667 .text {
  3000. position:absolute;
  3001. align-self:center;
  3002. padding:2px 2px 2px 0px;
  3003. box-sizing:border-box;
  3004. width:100%;
  3005. }
  3006. #u28667_text {
  3007. border-width:0px;
  3008. word-wrap:break-word;
  3009. text-transform:none;
  3010. visibility:hidden;
  3011. }
  3012. #u28668_img {
  3013. border-width:0px;
  3014. position:absolute;
  3015. left:0px;
  3016. top:0px;
  3017. width:144px;
  3018. height:38px;
  3019. }
  3020. #u28668 {
  3021. border-width:0px;
  3022. position:absolute;
  3023. left:1075px;
  3024. top:115px;
  3025. width:144px;
  3026. height:38px;
  3027. display:flex;
  3028. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3029. font-weight:400;
  3030. font-style:normal;
  3031. font-size:12px;
  3032. color:#606266;
  3033. }
  3034. #u28668 .text {
  3035. position:absolute;
  3036. align-self:center;
  3037. padding:2px 2px 2px 0px;
  3038. box-sizing:border-box;
  3039. width:100%;
  3040. }
  3041. #u28668_text {
  3042. border-width:0px;
  3043. word-wrap:break-word;
  3044. text-transform:none;
  3045. visibility:hidden;
  3046. }
  3047. #u28669_img {
  3048. border-width:0px;
  3049. position:absolute;
  3050. left:0px;
  3051. top:0px;
  3052. width:67px;
  3053. height:36px;
  3054. }
  3055. #u28669 {
  3056. border-width:0px;
  3057. position:absolute;
  3058. left:0px;
  3059. top:153px;
  3060. width:67px;
  3061. height:36px;
  3062. display:flex;
  3063. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3064. font-weight:400;
  3065. font-style:normal;
  3066. font-size:12px;
  3067. color:#606266;
  3068. }
  3069. #u28669 .text {
  3070. position:absolute;
  3071. align-self:center;
  3072. padding:2px 2px 2px 0px;
  3073. box-sizing:border-box;
  3074. width:100%;
  3075. }
  3076. #u28669_text {
  3077. border-width:0px;
  3078. word-wrap:break-word;
  3079. text-transform:none;
  3080. }
  3081. #u28670_img {
  3082. border-width:0px;
  3083. position:absolute;
  3084. left:0px;
  3085. top:0px;
  3086. width:144px;
  3087. height:36px;
  3088. }
  3089. #u28670 {
  3090. border-width:0px;
  3091. position:absolute;
  3092. left:67px;
  3093. top:153px;
  3094. width:144px;
  3095. height:36px;
  3096. display:flex;
  3097. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3098. font-weight:400;
  3099. font-style:normal;
  3100. font-size:12px;
  3101. color:#606266;
  3102. }
  3103. #u28670 .text {
  3104. position:absolute;
  3105. align-self:center;
  3106. padding:2px 2px 2px 0px;
  3107. box-sizing:border-box;
  3108. width:100%;
  3109. }
  3110. #u28670_text {
  3111. border-width:0px;
  3112. word-wrap:break-word;
  3113. text-transform:none;
  3114. visibility:hidden;
  3115. }
  3116. #u28671_img {
  3117. border-width:0px;
  3118. position:absolute;
  3119. left:0px;
  3120. top:0px;
  3121. width:144px;
  3122. height:36px;
  3123. }
  3124. #u28671 {
  3125. border-width:0px;
  3126. position:absolute;
  3127. left:211px;
  3128. top:153px;
  3129. width:144px;
  3130. height:36px;
  3131. display:flex;
  3132. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3133. font-weight:400;
  3134. font-style:normal;
  3135. font-size:12px;
  3136. color:#606266;
  3137. }
  3138. #u28671 .text {
  3139. position:absolute;
  3140. align-self:center;
  3141. padding:2px 2px 2px 0px;
  3142. box-sizing:border-box;
  3143. width:100%;
  3144. }
  3145. #u28671_text {
  3146. border-width:0px;
  3147. word-wrap:break-word;
  3148. text-transform:none;
  3149. visibility:hidden;
  3150. }
  3151. #u28672_img {
  3152. border-width:0px;
  3153. position:absolute;
  3154. left:0px;
  3155. top:0px;
  3156. width:144px;
  3157. height:36px;
  3158. }
  3159. #u28672 {
  3160. border-width:0px;
  3161. position:absolute;
  3162. left:355px;
  3163. top:153px;
  3164. width:144px;
  3165. height:36px;
  3166. display:flex;
  3167. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3168. font-weight:400;
  3169. font-style:normal;
  3170. font-size:12px;
  3171. color:#606266;
  3172. }
  3173. #u28672 .text {
  3174. position:absolute;
  3175. align-self:center;
  3176. padding:2px 2px 2px 0px;
  3177. box-sizing:border-box;
  3178. width:100%;
  3179. }
  3180. #u28672_text {
  3181. border-width:0px;
  3182. word-wrap:break-word;
  3183. text-transform:none;
  3184. visibility:hidden;
  3185. }
  3186. #u28673_img {
  3187. border-width:0px;
  3188. position:absolute;
  3189. left:0px;
  3190. top:0px;
  3191. width:144px;
  3192. height:36px;
  3193. }
  3194. #u28673 {
  3195. border-width:0px;
  3196. position:absolute;
  3197. left:499px;
  3198. top:153px;
  3199. width:144px;
  3200. height:36px;
  3201. display:flex;
  3202. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3203. font-weight:400;
  3204. font-style:normal;
  3205. font-size:12px;
  3206. color:#606266;
  3207. }
  3208. #u28673 .text {
  3209. position:absolute;
  3210. align-self:center;
  3211. padding:2px 2px 2px 0px;
  3212. box-sizing:border-box;
  3213. width:100%;
  3214. }
  3215. #u28673_text {
  3216. border-width:0px;
  3217. word-wrap:break-word;
  3218. text-transform:none;
  3219. visibility:hidden;
  3220. }
  3221. #u28674_img {
  3222. border-width:0px;
  3223. position:absolute;
  3224. left:0px;
  3225. top:0px;
  3226. width:144px;
  3227. height:36px;
  3228. }
  3229. #u28674 {
  3230. border-width:0px;
  3231. position:absolute;
  3232. left:643px;
  3233. top:153px;
  3234. width:144px;
  3235. height:36px;
  3236. display:flex;
  3237. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3238. font-weight:400;
  3239. font-style:normal;
  3240. font-size:12px;
  3241. color:#606266;
  3242. }
  3243. #u28674 .text {
  3244. position:absolute;
  3245. align-self:center;
  3246. padding:2px 2px 2px 0px;
  3247. box-sizing:border-box;
  3248. width:100%;
  3249. }
  3250. #u28674_text {
  3251. border-width:0px;
  3252. word-wrap:break-word;
  3253. text-transform:none;
  3254. visibility:hidden;
  3255. }
  3256. #u28675_img {
  3257. border-width:0px;
  3258. position:absolute;
  3259. left:0px;
  3260. top:0px;
  3261. width:144px;
  3262. height:36px;
  3263. }
  3264. #u28675 {
  3265. border-width:0px;
  3266. position:absolute;
  3267. left:787px;
  3268. top:153px;
  3269. width:144px;
  3270. height:36px;
  3271. display:flex;
  3272. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3273. font-weight:400;
  3274. font-style:normal;
  3275. font-size:12px;
  3276. color:#606266;
  3277. }
  3278. #u28675 .text {
  3279. position:absolute;
  3280. align-self:center;
  3281. padding:2px 2px 2px 0px;
  3282. box-sizing:border-box;
  3283. width:100%;
  3284. }
  3285. #u28675_text {
  3286. border-width:0px;
  3287. word-wrap:break-word;
  3288. text-transform:none;
  3289. visibility:hidden;
  3290. }
  3291. #u28676_img {
  3292. border-width:0px;
  3293. position:absolute;
  3294. left:0px;
  3295. top:0px;
  3296. width:144px;
  3297. height:36px;
  3298. }
  3299. #u28676 {
  3300. border-width:0px;
  3301. position:absolute;
  3302. left:931px;
  3303. top:153px;
  3304. width:144px;
  3305. height:36px;
  3306. display:flex;
  3307. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3308. font-weight:400;
  3309. font-style:normal;
  3310. font-size:12px;
  3311. color:#606266;
  3312. }
  3313. #u28676 .text {
  3314. position:absolute;
  3315. align-self:center;
  3316. padding:2px 2px 2px 0px;
  3317. box-sizing:border-box;
  3318. width:100%;
  3319. }
  3320. #u28676_text {
  3321. border-width:0px;
  3322. word-wrap:break-word;
  3323. text-transform:none;
  3324. visibility:hidden;
  3325. }
  3326. #u28677_img {
  3327. border-width:0px;
  3328. position:absolute;
  3329. left:0px;
  3330. top:0px;
  3331. width:144px;
  3332. height:36px;
  3333. }
  3334. #u28677 {
  3335. border-width:0px;
  3336. position:absolute;
  3337. left:1075px;
  3338. top:153px;
  3339. width:144px;
  3340. height:36px;
  3341. display:flex;
  3342. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3343. font-weight:400;
  3344. font-style:normal;
  3345. font-size:12px;
  3346. color:#606266;
  3347. }
  3348. #u28677 .text {
  3349. position:absolute;
  3350. align-self:center;
  3351. padding:2px 2px 2px 0px;
  3352. box-sizing:border-box;
  3353. width:100%;
  3354. }
  3355. #u28677_text {
  3356. border-width:0px;
  3357. word-wrap:break-word;
  3358. text-transform:none;
  3359. visibility:hidden;
  3360. }
  3361. #u28678_img {
  3362. border-width:0px;
  3363. position:absolute;
  3364. left:0px;
  3365. top:0px;
  3366. width:67px;
  3367. height:35px;
  3368. }
  3369. #u28678 {
  3370. border-width:0px;
  3371. position:absolute;
  3372. left:0px;
  3373. top:189px;
  3374. width:67px;
  3375. height:35px;
  3376. display:flex;
  3377. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3378. font-weight:400;
  3379. font-style:normal;
  3380. font-size:12px;
  3381. color:#606266;
  3382. }
  3383. #u28678 .text {
  3384. position:absolute;
  3385. align-self:center;
  3386. padding:2px 2px 2px 0px;
  3387. box-sizing:border-box;
  3388. width:100%;
  3389. }
  3390. #u28678_text {
  3391. border-width:0px;
  3392. word-wrap:break-word;
  3393. text-transform:none;
  3394. visibility:hidden;
  3395. }
  3396. #u28679_img {
  3397. border-width:0px;
  3398. position:absolute;
  3399. left:0px;
  3400. top:0px;
  3401. width:144px;
  3402. height:35px;
  3403. }
  3404. #u28679 {
  3405. border-width:0px;
  3406. position:absolute;
  3407. left:67px;
  3408. top:189px;
  3409. width:144px;
  3410. height:35px;
  3411. display:flex;
  3412. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3413. font-weight:400;
  3414. font-style:normal;
  3415. font-size:12px;
  3416. color:#606266;
  3417. }
  3418. #u28679 .text {
  3419. position:absolute;
  3420. align-self:center;
  3421. padding:2px 2px 2px 0px;
  3422. box-sizing:border-box;
  3423. width:100%;
  3424. }
  3425. #u28679_text {
  3426. border-width:0px;
  3427. word-wrap:break-word;
  3428. text-transform:none;
  3429. visibility:hidden;
  3430. }
  3431. #u28680_img {
  3432. border-width:0px;
  3433. position:absolute;
  3434. left:0px;
  3435. top:0px;
  3436. width:144px;
  3437. height:35px;
  3438. }
  3439. #u28680 {
  3440. border-width:0px;
  3441. position:absolute;
  3442. left:211px;
  3443. top:189px;
  3444. width:144px;
  3445. height:35px;
  3446. display:flex;
  3447. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3448. font-weight:400;
  3449. font-style:normal;
  3450. font-size:12px;
  3451. color:#606266;
  3452. }
  3453. #u28680 .text {
  3454. position:absolute;
  3455. align-self:center;
  3456. padding:2px 2px 2px 0px;
  3457. box-sizing:border-box;
  3458. width:100%;
  3459. }
  3460. #u28680_text {
  3461. border-width:0px;
  3462. word-wrap:break-word;
  3463. text-transform:none;
  3464. visibility:hidden;
  3465. }
  3466. #u28681_img {
  3467. border-width:0px;
  3468. position:absolute;
  3469. left:0px;
  3470. top:0px;
  3471. width:144px;
  3472. height:35px;
  3473. }
  3474. #u28681 {
  3475. border-width:0px;
  3476. position:absolute;
  3477. left:355px;
  3478. top:189px;
  3479. width:144px;
  3480. height:35px;
  3481. display:flex;
  3482. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3483. font-weight:400;
  3484. font-style:normal;
  3485. font-size:12px;
  3486. color:#606266;
  3487. }
  3488. #u28681 .text {
  3489. position:absolute;
  3490. align-self:center;
  3491. padding:2px 2px 2px 0px;
  3492. box-sizing:border-box;
  3493. width:100%;
  3494. }
  3495. #u28681_text {
  3496. border-width:0px;
  3497. word-wrap:break-word;
  3498. text-transform:none;
  3499. visibility:hidden;
  3500. }
  3501. #u28682_img {
  3502. border-width:0px;
  3503. position:absolute;
  3504. left:0px;
  3505. top:0px;
  3506. width:144px;
  3507. height:35px;
  3508. }
  3509. #u28682 {
  3510. border-width:0px;
  3511. position:absolute;
  3512. left:499px;
  3513. top:189px;
  3514. width:144px;
  3515. height:35px;
  3516. display:flex;
  3517. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3518. font-weight:400;
  3519. font-style:normal;
  3520. font-size:12px;
  3521. color:#606266;
  3522. }
  3523. #u28682 .text {
  3524. position:absolute;
  3525. align-self:center;
  3526. padding:2px 2px 2px 0px;
  3527. box-sizing:border-box;
  3528. width:100%;
  3529. }
  3530. #u28682_text {
  3531. border-width:0px;
  3532. word-wrap:break-word;
  3533. text-transform:none;
  3534. visibility:hidden;
  3535. }
  3536. #u28683_img {
  3537. border-width:0px;
  3538. position:absolute;
  3539. left:0px;
  3540. top:0px;
  3541. width:144px;
  3542. height:35px;
  3543. }
  3544. #u28683 {
  3545. border-width:0px;
  3546. position:absolute;
  3547. left:643px;
  3548. top:189px;
  3549. width:144px;
  3550. height:35px;
  3551. display:flex;
  3552. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3553. font-weight:400;
  3554. font-style:normal;
  3555. font-size:12px;
  3556. color:#606266;
  3557. }
  3558. #u28683 .text {
  3559. position:absolute;
  3560. align-self:center;
  3561. padding:2px 2px 2px 0px;
  3562. box-sizing:border-box;
  3563. width:100%;
  3564. }
  3565. #u28683_text {
  3566. border-width:0px;
  3567. word-wrap:break-word;
  3568. text-transform:none;
  3569. visibility:hidden;
  3570. }
  3571. #u28684_img {
  3572. border-width:0px;
  3573. position:absolute;
  3574. left:0px;
  3575. top:0px;
  3576. width:144px;
  3577. height:35px;
  3578. }
  3579. #u28684 {
  3580. border-width:0px;
  3581. position:absolute;
  3582. left:787px;
  3583. top:189px;
  3584. width:144px;
  3585. height:35px;
  3586. display:flex;
  3587. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3588. font-weight:400;
  3589. font-style:normal;
  3590. font-size:12px;
  3591. color:#606266;
  3592. }
  3593. #u28684 .text {
  3594. position:absolute;
  3595. align-self:center;
  3596. padding:2px 2px 2px 0px;
  3597. box-sizing:border-box;
  3598. width:100%;
  3599. }
  3600. #u28684_text {
  3601. border-width:0px;
  3602. word-wrap:break-word;
  3603. text-transform:none;
  3604. visibility:hidden;
  3605. }
  3606. #u28685_img {
  3607. border-width:0px;
  3608. position:absolute;
  3609. left:0px;
  3610. top:0px;
  3611. width:144px;
  3612. height:35px;
  3613. }
  3614. #u28685 {
  3615. border-width:0px;
  3616. position:absolute;
  3617. left:931px;
  3618. top:189px;
  3619. width:144px;
  3620. height:35px;
  3621. display:flex;
  3622. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3623. font-weight:400;
  3624. font-style:normal;
  3625. font-size:12px;
  3626. color:#606266;
  3627. }
  3628. #u28685 .text {
  3629. position:absolute;
  3630. align-self:center;
  3631. padding:2px 2px 2px 0px;
  3632. box-sizing:border-box;
  3633. width:100%;
  3634. }
  3635. #u28685_text {
  3636. border-width:0px;
  3637. word-wrap:break-word;
  3638. text-transform:none;
  3639. visibility:hidden;
  3640. }
  3641. #u28686_img {
  3642. border-width:0px;
  3643. position:absolute;
  3644. left:0px;
  3645. top:0px;
  3646. width:144px;
  3647. height:35px;
  3648. }
  3649. #u28686 {
  3650. border-width:0px;
  3651. position:absolute;
  3652. left:1075px;
  3653. top:189px;
  3654. width:144px;
  3655. height:35px;
  3656. display:flex;
  3657. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3658. font-weight:400;
  3659. font-style:normal;
  3660. font-size:12px;
  3661. color:#606266;
  3662. }
  3663. #u28686 .text {
  3664. position:absolute;
  3665. align-self:center;
  3666. padding:2px 2px 2px 0px;
  3667. box-sizing:border-box;
  3668. width:100%;
  3669. }
  3670. #u28686_text {
  3671. border-width:0px;
  3672. word-wrap:break-word;
  3673. text-transform:none;
  3674. visibility:hidden;
  3675. }
  3676. #u28687_img {
  3677. border-width:0px;
  3678. position:absolute;
  3679. left:0px;
  3680. top:0px;
  3681. width:67px;
  3682. height:35px;
  3683. }
  3684. #u28687 {
  3685. border-width:0px;
  3686. position:absolute;
  3687. left:0px;
  3688. top:224px;
  3689. width:67px;
  3690. height:35px;
  3691. display:flex;
  3692. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3693. font-weight:400;
  3694. font-style:normal;
  3695. font-size:12px;
  3696. color:#606266;
  3697. }
  3698. #u28687 .text {
  3699. position:absolute;
  3700. align-self:center;
  3701. padding:2px 2px 2px 0px;
  3702. box-sizing:border-box;
  3703. width:100%;
  3704. }
  3705. #u28687_text {
  3706. border-width:0px;
  3707. word-wrap:break-word;
  3708. text-transform:none;
  3709. visibility:hidden;
  3710. }
  3711. #u28688_img {
  3712. border-width:0px;
  3713. position:absolute;
  3714. left:0px;
  3715. top:0px;
  3716. width:144px;
  3717. height:35px;
  3718. }
  3719. #u28688 {
  3720. border-width:0px;
  3721. position:absolute;
  3722. left:67px;
  3723. top:224px;
  3724. width:144px;
  3725. height:35px;
  3726. display:flex;
  3727. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3728. font-weight:400;
  3729. font-style:normal;
  3730. font-size:12px;
  3731. color:#606266;
  3732. }
  3733. #u28688 .text {
  3734. position:absolute;
  3735. align-self:center;
  3736. padding:2px 2px 2px 0px;
  3737. box-sizing:border-box;
  3738. width:100%;
  3739. }
  3740. #u28688_text {
  3741. border-width:0px;
  3742. word-wrap:break-word;
  3743. text-transform:none;
  3744. visibility:hidden;
  3745. }
  3746. #u28689_img {
  3747. border-width:0px;
  3748. position:absolute;
  3749. left:0px;
  3750. top:0px;
  3751. width:144px;
  3752. height:35px;
  3753. }
  3754. #u28689 {
  3755. border-width:0px;
  3756. position:absolute;
  3757. left:211px;
  3758. top:224px;
  3759. width:144px;
  3760. height:35px;
  3761. display:flex;
  3762. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3763. font-weight:400;
  3764. font-style:normal;
  3765. font-size:12px;
  3766. color:#606266;
  3767. }
  3768. #u28689 .text {
  3769. position:absolute;
  3770. align-self:center;
  3771. padding:2px 2px 2px 0px;
  3772. box-sizing:border-box;
  3773. width:100%;
  3774. }
  3775. #u28689_text {
  3776. border-width:0px;
  3777. word-wrap:break-word;
  3778. text-transform:none;
  3779. visibility:hidden;
  3780. }
  3781. #u28690_img {
  3782. border-width:0px;
  3783. position:absolute;
  3784. left:0px;
  3785. top:0px;
  3786. width:144px;
  3787. height:35px;
  3788. }
  3789. #u28690 {
  3790. border-width:0px;
  3791. position:absolute;
  3792. left:355px;
  3793. top:224px;
  3794. width:144px;
  3795. height:35px;
  3796. display:flex;
  3797. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3798. font-weight:400;
  3799. font-style:normal;
  3800. font-size:12px;
  3801. color:#606266;
  3802. }
  3803. #u28690 .text {
  3804. position:absolute;
  3805. align-self:center;
  3806. padding:2px 2px 2px 0px;
  3807. box-sizing:border-box;
  3808. width:100%;
  3809. }
  3810. #u28690_text {
  3811. border-width:0px;
  3812. word-wrap:break-word;
  3813. text-transform:none;
  3814. visibility:hidden;
  3815. }
  3816. #u28691_img {
  3817. border-width:0px;
  3818. position:absolute;
  3819. left:0px;
  3820. top:0px;
  3821. width:144px;
  3822. height:35px;
  3823. }
  3824. #u28691 {
  3825. border-width:0px;
  3826. position:absolute;
  3827. left:499px;
  3828. top:224px;
  3829. width:144px;
  3830. height:35px;
  3831. display:flex;
  3832. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3833. font-weight:400;
  3834. font-style:normal;
  3835. font-size:12px;
  3836. color:#606266;
  3837. }
  3838. #u28691 .text {
  3839. position:absolute;
  3840. align-self:center;
  3841. padding:2px 2px 2px 0px;
  3842. box-sizing:border-box;
  3843. width:100%;
  3844. }
  3845. #u28691_text {
  3846. border-width:0px;
  3847. word-wrap:break-word;
  3848. text-transform:none;
  3849. visibility:hidden;
  3850. }
  3851. #u28692_img {
  3852. border-width:0px;
  3853. position:absolute;
  3854. left:0px;
  3855. top:0px;
  3856. width:144px;
  3857. height:35px;
  3858. }
  3859. #u28692 {
  3860. border-width:0px;
  3861. position:absolute;
  3862. left:643px;
  3863. top:224px;
  3864. width:144px;
  3865. height:35px;
  3866. display:flex;
  3867. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3868. font-weight:400;
  3869. font-style:normal;
  3870. font-size:12px;
  3871. color:#606266;
  3872. }
  3873. #u28692 .text {
  3874. position:absolute;
  3875. align-self:center;
  3876. padding:2px 2px 2px 0px;
  3877. box-sizing:border-box;
  3878. width:100%;
  3879. }
  3880. #u28692_text {
  3881. border-width:0px;
  3882. word-wrap:break-word;
  3883. text-transform:none;
  3884. visibility:hidden;
  3885. }
  3886. #u28693_img {
  3887. border-width:0px;
  3888. position:absolute;
  3889. left:0px;
  3890. top:0px;
  3891. width:144px;
  3892. height:35px;
  3893. }
  3894. #u28693 {
  3895. border-width:0px;
  3896. position:absolute;
  3897. left:787px;
  3898. top:224px;
  3899. width:144px;
  3900. height:35px;
  3901. display:flex;
  3902. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3903. font-weight:400;
  3904. font-style:normal;
  3905. font-size:12px;
  3906. color:#606266;
  3907. }
  3908. #u28693 .text {
  3909. position:absolute;
  3910. align-self:center;
  3911. padding:2px 2px 2px 0px;
  3912. box-sizing:border-box;
  3913. width:100%;
  3914. }
  3915. #u28693_text {
  3916. border-width:0px;
  3917. word-wrap:break-word;
  3918. text-transform:none;
  3919. visibility:hidden;
  3920. }
  3921. #u28694_img {
  3922. border-width:0px;
  3923. position:absolute;
  3924. left:0px;
  3925. top:0px;
  3926. width:144px;
  3927. height:35px;
  3928. }
  3929. #u28694 {
  3930. border-width:0px;
  3931. position:absolute;
  3932. left:931px;
  3933. top:224px;
  3934. width:144px;
  3935. height:35px;
  3936. display:flex;
  3937. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3938. font-weight:400;
  3939. font-style:normal;
  3940. font-size:12px;
  3941. color:#606266;
  3942. }
  3943. #u28694 .text {
  3944. position:absolute;
  3945. align-self:center;
  3946. padding:2px 2px 2px 0px;
  3947. box-sizing:border-box;
  3948. width:100%;
  3949. }
  3950. #u28694_text {
  3951. border-width:0px;
  3952. word-wrap:break-word;
  3953. text-transform:none;
  3954. visibility:hidden;
  3955. }
  3956. #u28695_img {
  3957. border-width:0px;
  3958. position:absolute;
  3959. left:0px;
  3960. top:0px;
  3961. width:144px;
  3962. height:35px;
  3963. }
  3964. #u28695 {
  3965. border-width:0px;
  3966. position:absolute;
  3967. left:1075px;
  3968. top:224px;
  3969. width:144px;
  3970. height:35px;
  3971. display:flex;
  3972. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3973. font-weight:400;
  3974. font-style:normal;
  3975. font-size:12px;
  3976. color:#606266;
  3977. }
  3978. #u28695 .text {
  3979. position:absolute;
  3980. align-self:center;
  3981. padding:2px 2px 2px 0px;
  3982. box-sizing:border-box;
  3983. width:100%;
  3984. }
  3985. #u28695_text {
  3986. border-width:0px;
  3987. word-wrap:break-word;
  3988. text-transform:none;
  3989. visibility:hidden;
  3990. }
  3991. #u28696_img {
  3992. border-width:0px;
  3993. position:absolute;
  3994. left:0px;
  3995. top:0px;
  3996. width:67px;
  3997. height:35px;
  3998. }
  3999. #u28696 {
  4000. border-width:0px;
  4001. position:absolute;
  4002. left:0px;
  4003. top:259px;
  4004. width:67px;
  4005. height:35px;
  4006. display:flex;
  4007. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4008. font-weight:400;
  4009. font-style:normal;
  4010. font-size:12px;
  4011. color:#606266;
  4012. }
  4013. #u28696 .text {
  4014. position:absolute;
  4015. align-self:center;
  4016. padding:2px 2px 2px 0px;
  4017. box-sizing:border-box;
  4018. width:100%;
  4019. }
  4020. #u28696_text {
  4021. border-width:0px;
  4022. word-wrap:break-word;
  4023. text-transform:none;
  4024. visibility:hidden;
  4025. }
  4026. #u28697_img {
  4027. border-width:0px;
  4028. position:absolute;
  4029. left:0px;
  4030. top:0px;
  4031. width:144px;
  4032. height:35px;
  4033. }
  4034. #u28697 {
  4035. border-width:0px;
  4036. position:absolute;
  4037. left:67px;
  4038. top:259px;
  4039. width:144px;
  4040. height:35px;
  4041. display:flex;
  4042. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4043. font-weight:400;
  4044. font-style:normal;
  4045. font-size:12px;
  4046. color:#606266;
  4047. }
  4048. #u28697 .text {
  4049. position:absolute;
  4050. align-self:center;
  4051. padding:2px 2px 2px 0px;
  4052. box-sizing:border-box;
  4053. width:100%;
  4054. }
  4055. #u28697_text {
  4056. border-width:0px;
  4057. word-wrap:break-word;
  4058. text-transform:none;
  4059. visibility:hidden;
  4060. }
  4061. #u28698_img {
  4062. border-width:0px;
  4063. position:absolute;
  4064. left:0px;
  4065. top:0px;
  4066. width:144px;
  4067. height:35px;
  4068. }
  4069. #u28698 {
  4070. border-width:0px;
  4071. position:absolute;
  4072. left:211px;
  4073. top:259px;
  4074. width:144px;
  4075. height:35px;
  4076. display:flex;
  4077. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4078. font-weight:400;
  4079. font-style:normal;
  4080. font-size:12px;
  4081. color:#606266;
  4082. }
  4083. #u28698 .text {
  4084. position:absolute;
  4085. align-self:center;
  4086. padding:2px 2px 2px 0px;
  4087. box-sizing:border-box;
  4088. width:100%;
  4089. }
  4090. #u28698_text {
  4091. border-width:0px;
  4092. word-wrap:break-word;
  4093. text-transform:none;
  4094. visibility:hidden;
  4095. }
  4096. #u28699_img {
  4097. border-width:0px;
  4098. position:absolute;
  4099. left:0px;
  4100. top:0px;
  4101. width:144px;
  4102. height:35px;
  4103. }
  4104. #u28699 {
  4105. border-width:0px;
  4106. position:absolute;
  4107. left:355px;
  4108. top:259px;
  4109. width:144px;
  4110. height:35px;
  4111. display:flex;
  4112. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4113. font-weight:400;
  4114. font-style:normal;
  4115. font-size:12px;
  4116. color:#606266;
  4117. }
  4118. #u28699 .text {
  4119. position:absolute;
  4120. align-self:center;
  4121. padding:2px 2px 2px 0px;
  4122. box-sizing:border-box;
  4123. width:100%;
  4124. }
  4125. #u28699_text {
  4126. border-width:0px;
  4127. word-wrap:break-word;
  4128. text-transform:none;
  4129. visibility:hidden;
  4130. }
  4131. #u28700_img {
  4132. border-width:0px;
  4133. position:absolute;
  4134. left:0px;
  4135. top:0px;
  4136. width:144px;
  4137. height:35px;
  4138. }
  4139. #u28700 {
  4140. border-width:0px;
  4141. position:absolute;
  4142. left:499px;
  4143. top:259px;
  4144. width:144px;
  4145. height:35px;
  4146. display:flex;
  4147. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4148. font-weight:400;
  4149. font-style:normal;
  4150. font-size:12px;
  4151. color:#606266;
  4152. }
  4153. #u28700 .text {
  4154. position:absolute;
  4155. align-self:center;
  4156. padding:2px 2px 2px 0px;
  4157. box-sizing:border-box;
  4158. width:100%;
  4159. }
  4160. #u28700_text {
  4161. border-width:0px;
  4162. word-wrap:break-word;
  4163. text-transform:none;
  4164. visibility:hidden;
  4165. }
  4166. #u28701_img {
  4167. border-width:0px;
  4168. position:absolute;
  4169. left:0px;
  4170. top:0px;
  4171. width:144px;
  4172. height:35px;
  4173. }
  4174. #u28701 {
  4175. border-width:0px;
  4176. position:absolute;
  4177. left:643px;
  4178. top:259px;
  4179. width:144px;
  4180. height:35px;
  4181. display:flex;
  4182. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4183. font-weight:400;
  4184. font-style:normal;
  4185. font-size:12px;
  4186. color:#606266;
  4187. }
  4188. #u28701 .text {
  4189. position:absolute;
  4190. align-self:center;
  4191. padding:2px 2px 2px 0px;
  4192. box-sizing:border-box;
  4193. width:100%;
  4194. }
  4195. #u28701_text {
  4196. border-width:0px;
  4197. word-wrap:break-word;
  4198. text-transform:none;
  4199. visibility:hidden;
  4200. }
  4201. #u28702_img {
  4202. border-width:0px;
  4203. position:absolute;
  4204. left:0px;
  4205. top:0px;
  4206. width:144px;
  4207. height:35px;
  4208. }
  4209. #u28702 {
  4210. border-width:0px;
  4211. position:absolute;
  4212. left:787px;
  4213. top:259px;
  4214. width:144px;
  4215. height:35px;
  4216. display:flex;
  4217. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4218. font-weight:400;
  4219. font-style:normal;
  4220. font-size:12px;
  4221. color:#606266;
  4222. }
  4223. #u28702 .text {
  4224. position:absolute;
  4225. align-self:center;
  4226. padding:2px 2px 2px 0px;
  4227. box-sizing:border-box;
  4228. width:100%;
  4229. }
  4230. #u28702_text {
  4231. border-width:0px;
  4232. word-wrap:break-word;
  4233. text-transform:none;
  4234. visibility:hidden;
  4235. }
  4236. #u28703_img {
  4237. border-width:0px;
  4238. position:absolute;
  4239. left:0px;
  4240. top:0px;
  4241. width:144px;
  4242. height:35px;
  4243. }
  4244. #u28703 {
  4245. border-width:0px;
  4246. position:absolute;
  4247. left:931px;
  4248. top:259px;
  4249. width:144px;
  4250. height:35px;
  4251. display:flex;
  4252. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4253. font-weight:400;
  4254. font-style:normal;
  4255. font-size:12px;
  4256. color:#606266;
  4257. }
  4258. #u28703 .text {
  4259. position:absolute;
  4260. align-self:center;
  4261. padding:2px 2px 2px 0px;
  4262. box-sizing:border-box;
  4263. width:100%;
  4264. }
  4265. #u28703_text {
  4266. border-width:0px;
  4267. word-wrap:break-word;
  4268. text-transform:none;
  4269. visibility:hidden;
  4270. }
  4271. #u28704_img {
  4272. border-width:0px;
  4273. position:absolute;
  4274. left:0px;
  4275. top:0px;
  4276. width:144px;
  4277. height:35px;
  4278. }
  4279. #u28704 {
  4280. border-width:0px;
  4281. position:absolute;
  4282. left:1075px;
  4283. top:259px;
  4284. width:144px;
  4285. height:35px;
  4286. display:flex;
  4287. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4288. font-weight:400;
  4289. font-style:normal;
  4290. font-size:12px;
  4291. color:#606266;
  4292. }
  4293. #u28704 .text {
  4294. position:absolute;
  4295. align-self:center;
  4296. padding:2px 2px 2px 0px;
  4297. box-sizing:border-box;
  4298. width:100%;
  4299. }
  4300. #u28704_text {
  4301. border-width:0px;
  4302. word-wrap:break-word;
  4303. text-transform:none;
  4304. visibility:hidden;
  4305. }
  4306. #u28705_img {
  4307. border-width:0px;
  4308. position:absolute;
  4309. left:0px;
  4310. top:0px;
  4311. width:67px;
  4312. height:35px;
  4313. }
  4314. #u28705 {
  4315. border-width:0px;
  4316. position:absolute;
  4317. left:0px;
  4318. top:294px;
  4319. width:67px;
  4320. height:35px;
  4321. display:flex;
  4322. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4323. font-weight:400;
  4324. font-style:normal;
  4325. font-size:12px;
  4326. color:#606266;
  4327. }
  4328. #u28705 .text {
  4329. position:absolute;
  4330. align-self:center;
  4331. padding:2px 2px 2px 0px;
  4332. box-sizing:border-box;
  4333. width:100%;
  4334. }
  4335. #u28705_text {
  4336. border-width:0px;
  4337. word-wrap:break-word;
  4338. text-transform:none;
  4339. visibility:hidden;
  4340. }
  4341. #u28706_img {
  4342. border-width:0px;
  4343. position:absolute;
  4344. left:0px;
  4345. top:0px;
  4346. width:144px;
  4347. height:35px;
  4348. }
  4349. #u28706 {
  4350. border-width:0px;
  4351. position:absolute;
  4352. left:67px;
  4353. top:294px;
  4354. width:144px;
  4355. height:35px;
  4356. display:flex;
  4357. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4358. font-weight:400;
  4359. font-style:normal;
  4360. font-size:12px;
  4361. color:#606266;
  4362. }
  4363. #u28706 .text {
  4364. position:absolute;
  4365. align-self:center;
  4366. padding:2px 2px 2px 0px;
  4367. box-sizing:border-box;
  4368. width:100%;
  4369. }
  4370. #u28706_text {
  4371. border-width:0px;
  4372. word-wrap:break-word;
  4373. text-transform:none;
  4374. visibility:hidden;
  4375. }
  4376. #u28707_img {
  4377. border-width:0px;
  4378. position:absolute;
  4379. left:0px;
  4380. top:0px;
  4381. width:144px;
  4382. height:35px;
  4383. }
  4384. #u28707 {
  4385. border-width:0px;
  4386. position:absolute;
  4387. left:211px;
  4388. top:294px;
  4389. width:144px;
  4390. height:35px;
  4391. display:flex;
  4392. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4393. font-weight:400;
  4394. font-style:normal;
  4395. font-size:12px;
  4396. color:#606266;
  4397. }
  4398. #u28707 .text {
  4399. position:absolute;
  4400. align-self:center;
  4401. padding:2px 2px 2px 0px;
  4402. box-sizing:border-box;
  4403. width:100%;
  4404. }
  4405. #u28707_text {
  4406. border-width:0px;
  4407. word-wrap:break-word;
  4408. text-transform:none;
  4409. visibility:hidden;
  4410. }
  4411. #u28708_img {
  4412. border-width:0px;
  4413. position:absolute;
  4414. left:0px;
  4415. top:0px;
  4416. width:144px;
  4417. height:35px;
  4418. }
  4419. #u28708 {
  4420. border-width:0px;
  4421. position:absolute;
  4422. left:355px;
  4423. top:294px;
  4424. width:144px;
  4425. height:35px;
  4426. display:flex;
  4427. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4428. font-weight:400;
  4429. font-style:normal;
  4430. font-size:12px;
  4431. color:#606266;
  4432. }
  4433. #u28708 .text {
  4434. position:absolute;
  4435. align-self:center;
  4436. padding:2px 2px 2px 0px;
  4437. box-sizing:border-box;
  4438. width:100%;
  4439. }
  4440. #u28708_text {
  4441. border-width:0px;
  4442. word-wrap:break-word;
  4443. text-transform:none;
  4444. visibility:hidden;
  4445. }
  4446. #u28709_img {
  4447. border-width:0px;
  4448. position:absolute;
  4449. left:0px;
  4450. top:0px;
  4451. width:144px;
  4452. height:35px;
  4453. }
  4454. #u28709 {
  4455. border-width:0px;
  4456. position:absolute;
  4457. left:499px;
  4458. top:294px;
  4459. width:144px;
  4460. height:35px;
  4461. display:flex;
  4462. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4463. font-weight:400;
  4464. font-style:normal;
  4465. font-size:12px;
  4466. color:#606266;
  4467. }
  4468. #u28709 .text {
  4469. position:absolute;
  4470. align-self:center;
  4471. padding:2px 2px 2px 0px;
  4472. box-sizing:border-box;
  4473. width:100%;
  4474. }
  4475. #u28709_text {
  4476. border-width:0px;
  4477. word-wrap:break-word;
  4478. text-transform:none;
  4479. visibility:hidden;
  4480. }
  4481. #u28710_img {
  4482. border-width:0px;
  4483. position:absolute;
  4484. left:0px;
  4485. top:0px;
  4486. width:144px;
  4487. height:35px;
  4488. }
  4489. #u28710 {
  4490. border-width:0px;
  4491. position:absolute;
  4492. left:643px;
  4493. top:294px;
  4494. width:144px;
  4495. height:35px;
  4496. display:flex;
  4497. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4498. font-weight:400;
  4499. font-style:normal;
  4500. font-size:12px;
  4501. color:#606266;
  4502. }
  4503. #u28710 .text {
  4504. position:absolute;
  4505. align-self:center;
  4506. padding:2px 2px 2px 0px;
  4507. box-sizing:border-box;
  4508. width:100%;
  4509. }
  4510. #u28710_text {
  4511. border-width:0px;
  4512. word-wrap:break-word;
  4513. text-transform:none;
  4514. visibility:hidden;
  4515. }
  4516. #u28711_img {
  4517. border-width:0px;
  4518. position:absolute;
  4519. left:0px;
  4520. top:0px;
  4521. width:144px;
  4522. height:35px;
  4523. }
  4524. #u28711 {
  4525. border-width:0px;
  4526. position:absolute;
  4527. left:787px;
  4528. top:294px;
  4529. width:144px;
  4530. height:35px;
  4531. display:flex;
  4532. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4533. font-weight:400;
  4534. font-style:normal;
  4535. font-size:12px;
  4536. color:#606266;
  4537. }
  4538. #u28711 .text {
  4539. position:absolute;
  4540. align-self:center;
  4541. padding:2px 2px 2px 0px;
  4542. box-sizing:border-box;
  4543. width:100%;
  4544. }
  4545. #u28711_text {
  4546. border-width:0px;
  4547. word-wrap:break-word;
  4548. text-transform:none;
  4549. visibility:hidden;
  4550. }
  4551. #u28712_img {
  4552. border-width:0px;
  4553. position:absolute;
  4554. left:0px;
  4555. top:0px;
  4556. width:144px;
  4557. height:35px;
  4558. }
  4559. #u28712 {
  4560. border-width:0px;
  4561. position:absolute;
  4562. left:931px;
  4563. top:294px;
  4564. width:144px;
  4565. height:35px;
  4566. display:flex;
  4567. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4568. font-weight:400;
  4569. font-style:normal;
  4570. font-size:12px;
  4571. color:#606266;
  4572. }
  4573. #u28712 .text {
  4574. position:absolute;
  4575. align-self:center;
  4576. padding:2px 2px 2px 0px;
  4577. box-sizing:border-box;
  4578. width:100%;
  4579. }
  4580. #u28712_text {
  4581. border-width:0px;
  4582. word-wrap:break-word;
  4583. text-transform:none;
  4584. visibility:hidden;
  4585. }
  4586. #u28713_img {
  4587. border-width:0px;
  4588. position:absolute;
  4589. left:0px;
  4590. top:0px;
  4591. width:144px;
  4592. height:35px;
  4593. }
  4594. #u28713 {
  4595. border-width:0px;
  4596. position:absolute;
  4597. left:1075px;
  4598. top:294px;
  4599. width:144px;
  4600. height:35px;
  4601. display:flex;
  4602. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4603. font-weight:400;
  4604. font-style:normal;
  4605. font-size:12px;
  4606. color:#606266;
  4607. }
  4608. #u28713 .text {
  4609. position:absolute;
  4610. align-self:center;
  4611. padding:2px 2px 2px 0px;
  4612. box-sizing:border-box;
  4613. width:100%;
  4614. }
  4615. #u28713_text {
  4616. border-width:0px;
  4617. word-wrap:break-word;
  4618. text-transform:none;
  4619. visibility:hidden;
  4620. }
  4621. #u28714_img {
  4622. border-width:0px;
  4623. position:absolute;
  4624. left:0px;
  4625. top:0px;
  4626. width:67px;
  4627. height:35px;
  4628. }
  4629. #u28714 {
  4630. border-width:0px;
  4631. position:absolute;
  4632. left:0px;
  4633. top:329px;
  4634. width:67px;
  4635. height:35px;
  4636. display:flex;
  4637. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4638. font-weight:400;
  4639. font-style:normal;
  4640. font-size:12px;
  4641. color:#606266;
  4642. }
  4643. #u28714 .text {
  4644. position:absolute;
  4645. align-self:center;
  4646. padding:2px 2px 2px 0px;
  4647. box-sizing:border-box;
  4648. width:100%;
  4649. }
  4650. #u28714_text {
  4651. border-width:0px;
  4652. word-wrap:break-word;
  4653. text-transform:none;
  4654. visibility:hidden;
  4655. }
  4656. #u28715_img {
  4657. border-width:0px;
  4658. position:absolute;
  4659. left:0px;
  4660. top:0px;
  4661. width:144px;
  4662. height:35px;
  4663. }
  4664. #u28715 {
  4665. border-width:0px;
  4666. position:absolute;
  4667. left:67px;
  4668. top:329px;
  4669. width:144px;
  4670. height:35px;
  4671. display:flex;
  4672. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4673. font-weight:400;
  4674. font-style:normal;
  4675. font-size:12px;
  4676. color:#606266;
  4677. }
  4678. #u28715 .text {
  4679. position:absolute;
  4680. align-self:center;
  4681. padding:2px 2px 2px 0px;
  4682. box-sizing:border-box;
  4683. width:100%;
  4684. }
  4685. #u28715_text {
  4686. border-width:0px;
  4687. word-wrap:break-word;
  4688. text-transform:none;
  4689. visibility:hidden;
  4690. }
  4691. #u28716_img {
  4692. border-width:0px;
  4693. position:absolute;
  4694. left:0px;
  4695. top:0px;
  4696. width:144px;
  4697. height:35px;
  4698. }
  4699. #u28716 {
  4700. border-width:0px;
  4701. position:absolute;
  4702. left:211px;
  4703. top:329px;
  4704. width:144px;
  4705. height:35px;
  4706. display:flex;
  4707. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4708. font-weight:400;
  4709. font-style:normal;
  4710. font-size:12px;
  4711. color:#606266;
  4712. }
  4713. #u28716 .text {
  4714. position:absolute;
  4715. align-self:center;
  4716. padding:2px 2px 2px 0px;
  4717. box-sizing:border-box;
  4718. width:100%;
  4719. }
  4720. #u28716_text {
  4721. border-width:0px;
  4722. word-wrap:break-word;
  4723. text-transform:none;
  4724. visibility:hidden;
  4725. }
  4726. #u28717_img {
  4727. border-width:0px;
  4728. position:absolute;
  4729. left:0px;
  4730. top:0px;
  4731. width:144px;
  4732. height:35px;
  4733. }
  4734. #u28717 {
  4735. border-width:0px;
  4736. position:absolute;
  4737. left:355px;
  4738. top:329px;
  4739. width:144px;
  4740. height:35px;
  4741. display:flex;
  4742. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4743. font-weight:400;
  4744. font-style:normal;
  4745. font-size:12px;
  4746. color:#606266;
  4747. }
  4748. #u28717 .text {
  4749. position:absolute;
  4750. align-self:center;
  4751. padding:2px 2px 2px 0px;
  4752. box-sizing:border-box;
  4753. width:100%;
  4754. }
  4755. #u28717_text {
  4756. border-width:0px;
  4757. word-wrap:break-word;
  4758. text-transform:none;
  4759. visibility:hidden;
  4760. }
  4761. #u28718_img {
  4762. border-width:0px;
  4763. position:absolute;
  4764. left:0px;
  4765. top:0px;
  4766. width:144px;
  4767. height:35px;
  4768. }
  4769. #u28718 {
  4770. border-width:0px;
  4771. position:absolute;
  4772. left:499px;
  4773. top:329px;
  4774. width:144px;
  4775. height:35px;
  4776. display:flex;
  4777. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4778. font-weight:400;
  4779. font-style:normal;
  4780. font-size:12px;
  4781. color:#606266;
  4782. }
  4783. #u28718 .text {
  4784. position:absolute;
  4785. align-self:center;
  4786. padding:2px 2px 2px 0px;
  4787. box-sizing:border-box;
  4788. width:100%;
  4789. }
  4790. #u28718_text {
  4791. border-width:0px;
  4792. word-wrap:break-word;
  4793. text-transform:none;
  4794. visibility:hidden;
  4795. }
  4796. #u28719_img {
  4797. border-width:0px;
  4798. position:absolute;
  4799. left:0px;
  4800. top:0px;
  4801. width:144px;
  4802. height:35px;
  4803. }
  4804. #u28719 {
  4805. border-width:0px;
  4806. position:absolute;
  4807. left:643px;
  4808. top:329px;
  4809. width:144px;
  4810. height:35px;
  4811. display:flex;
  4812. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4813. font-weight:400;
  4814. font-style:normal;
  4815. font-size:12px;
  4816. color:#606266;
  4817. }
  4818. #u28719 .text {
  4819. position:absolute;
  4820. align-self:center;
  4821. padding:2px 2px 2px 0px;
  4822. box-sizing:border-box;
  4823. width:100%;
  4824. }
  4825. #u28719_text {
  4826. border-width:0px;
  4827. word-wrap:break-word;
  4828. text-transform:none;
  4829. visibility:hidden;
  4830. }
  4831. #u28720_img {
  4832. border-width:0px;
  4833. position:absolute;
  4834. left:0px;
  4835. top:0px;
  4836. width:144px;
  4837. height:35px;
  4838. }
  4839. #u28720 {
  4840. border-width:0px;
  4841. position:absolute;
  4842. left:787px;
  4843. top:329px;
  4844. width:144px;
  4845. height:35px;
  4846. display:flex;
  4847. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4848. font-weight:400;
  4849. font-style:normal;
  4850. font-size:12px;
  4851. color:#606266;
  4852. }
  4853. #u28720 .text {
  4854. position:absolute;
  4855. align-self:center;
  4856. padding:2px 2px 2px 0px;
  4857. box-sizing:border-box;
  4858. width:100%;
  4859. }
  4860. #u28720_text {
  4861. border-width:0px;
  4862. word-wrap:break-word;
  4863. text-transform:none;
  4864. visibility:hidden;
  4865. }
  4866. #u28721_img {
  4867. border-width:0px;
  4868. position:absolute;
  4869. left:0px;
  4870. top:0px;
  4871. width:144px;
  4872. height:35px;
  4873. }
  4874. #u28721 {
  4875. border-width:0px;
  4876. position:absolute;
  4877. left:931px;
  4878. top:329px;
  4879. width:144px;
  4880. height:35px;
  4881. display:flex;
  4882. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4883. font-weight:400;
  4884. font-style:normal;
  4885. font-size:12px;
  4886. color:#606266;
  4887. }
  4888. #u28721 .text {
  4889. position:absolute;
  4890. align-self:center;
  4891. padding:2px 2px 2px 0px;
  4892. box-sizing:border-box;
  4893. width:100%;
  4894. }
  4895. #u28721_text {
  4896. border-width:0px;
  4897. word-wrap:break-word;
  4898. text-transform:none;
  4899. visibility:hidden;
  4900. }
  4901. #u28722_img {
  4902. border-width:0px;
  4903. position:absolute;
  4904. left:0px;
  4905. top:0px;
  4906. width:144px;
  4907. height:35px;
  4908. }
  4909. #u28722 {
  4910. border-width:0px;
  4911. position:absolute;
  4912. left:1075px;
  4913. top:329px;
  4914. width:144px;
  4915. height:35px;
  4916. display:flex;
  4917. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4918. font-weight:400;
  4919. font-style:normal;
  4920. font-size:12px;
  4921. color:#606266;
  4922. }
  4923. #u28722 .text {
  4924. position:absolute;
  4925. align-self:center;
  4926. padding:2px 2px 2px 0px;
  4927. box-sizing:border-box;
  4928. width:100%;
  4929. }
  4930. #u28722_text {
  4931. border-width:0px;
  4932. word-wrap:break-word;
  4933. text-transform:none;
  4934. visibility:hidden;
  4935. }
  4936. #u28723_img {
  4937. border-width:0px;
  4938. position:absolute;
  4939. left:0px;
  4940. top:0px;
  4941. width:67px;
  4942. height:35px;
  4943. }
  4944. #u28723 {
  4945. border-width:0px;
  4946. position:absolute;
  4947. left:0px;
  4948. top:364px;
  4949. width:67px;
  4950. height:35px;
  4951. display:flex;
  4952. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4953. font-weight:400;
  4954. font-style:normal;
  4955. font-size:12px;
  4956. color:#606266;
  4957. }
  4958. #u28723 .text {
  4959. position:absolute;
  4960. align-self:center;
  4961. padding:2px 2px 2px 0px;
  4962. box-sizing:border-box;
  4963. width:100%;
  4964. }
  4965. #u28723_text {
  4966. border-width:0px;
  4967. word-wrap:break-word;
  4968. text-transform:none;
  4969. visibility:hidden;
  4970. }
  4971. #u28724_img {
  4972. border-width:0px;
  4973. position:absolute;
  4974. left:0px;
  4975. top:0px;
  4976. width:144px;
  4977. height:35px;
  4978. }
  4979. #u28724 {
  4980. border-width:0px;
  4981. position:absolute;
  4982. left:67px;
  4983. top:364px;
  4984. width:144px;
  4985. height:35px;
  4986. display:flex;
  4987. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4988. font-weight:400;
  4989. font-style:normal;
  4990. font-size:12px;
  4991. color:#606266;
  4992. }
  4993. #u28724 .text {
  4994. position:absolute;
  4995. align-self:center;
  4996. padding:2px 2px 2px 0px;
  4997. box-sizing:border-box;
  4998. width:100%;
  4999. }
  5000. #u28724_text {
  5001. border-width:0px;
  5002. word-wrap:break-word;
  5003. text-transform:none;
  5004. visibility:hidden;
  5005. }
  5006. #u28725_img {
  5007. border-width:0px;
  5008. position:absolute;
  5009. left:0px;
  5010. top:0px;
  5011. width:144px;
  5012. height:35px;
  5013. }
  5014. #u28725 {
  5015. border-width:0px;
  5016. position:absolute;
  5017. left:211px;
  5018. top:364px;
  5019. width:144px;
  5020. height:35px;
  5021. display:flex;
  5022. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5023. font-weight:400;
  5024. font-style:normal;
  5025. font-size:12px;
  5026. color:#606266;
  5027. }
  5028. #u28725 .text {
  5029. position:absolute;
  5030. align-self:center;
  5031. padding:2px 2px 2px 0px;
  5032. box-sizing:border-box;
  5033. width:100%;
  5034. }
  5035. #u28725_text {
  5036. border-width:0px;
  5037. word-wrap:break-word;
  5038. text-transform:none;
  5039. visibility:hidden;
  5040. }
  5041. #u28726_img {
  5042. border-width:0px;
  5043. position:absolute;
  5044. left:0px;
  5045. top:0px;
  5046. width:144px;
  5047. height:35px;
  5048. }
  5049. #u28726 {
  5050. border-width:0px;
  5051. position:absolute;
  5052. left:355px;
  5053. top:364px;
  5054. width:144px;
  5055. height:35px;
  5056. display:flex;
  5057. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5058. font-weight:400;
  5059. font-style:normal;
  5060. font-size:12px;
  5061. color:#606266;
  5062. }
  5063. #u28726 .text {
  5064. position:absolute;
  5065. align-self:center;
  5066. padding:2px 2px 2px 0px;
  5067. box-sizing:border-box;
  5068. width:100%;
  5069. }
  5070. #u28726_text {
  5071. border-width:0px;
  5072. word-wrap:break-word;
  5073. text-transform:none;
  5074. visibility:hidden;
  5075. }
  5076. #u28727_img {
  5077. border-width:0px;
  5078. position:absolute;
  5079. left:0px;
  5080. top:0px;
  5081. width:144px;
  5082. height:35px;
  5083. }
  5084. #u28727 {
  5085. border-width:0px;
  5086. position:absolute;
  5087. left:499px;
  5088. top:364px;
  5089. width:144px;
  5090. height:35px;
  5091. display:flex;
  5092. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5093. font-weight:400;
  5094. font-style:normal;
  5095. font-size:12px;
  5096. color:#606266;
  5097. }
  5098. #u28727 .text {
  5099. position:absolute;
  5100. align-self:center;
  5101. padding:2px 2px 2px 0px;
  5102. box-sizing:border-box;
  5103. width:100%;
  5104. }
  5105. #u28727_text {
  5106. border-width:0px;
  5107. word-wrap:break-word;
  5108. text-transform:none;
  5109. visibility:hidden;
  5110. }
  5111. #u28728_img {
  5112. border-width:0px;
  5113. position:absolute;
  5114. left:0px;
  5115. top:0px;
  5116. width:144px;
  5117. height:35px;
  5118. }
  5119. #u28728 {
  5120. border-width:0px;
  5121. position:absolute;
  5122. left:643px;
  5123. top:364px;
  5124. width:144px;
  5125. height:35px;
  5126. display:flex;
  5127. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5128. font-weight:400;
  5129. font-style:normal;
  5130. font-size:12px;
  5131. color:#606266;
  5132. }
  5133. #u28728 .text {
  5134. position:absolute;
  5135. align-self:center;
  5136. padding:2px 2px 2px 0px;
  5137. box-sizing:border-box;
  5138. width:100%;
  5139. }
  5140. #u28728_text {
  5141. border-width:0px;
  5142. word-wrap:break-word;
  5143. text-transform:none;
  5144. visibility:hidden;
  5145. }
  5146. #u28729_img {
  5147. border-width:0px;
  5148. position:absolute;
  5149. left:0px;
  5150. top:0px;
  5151. width:144px;
  5152. height:35px;
  5153. }
  5154. #u28729 {
  5155. border-width:0px;
  5156. position:absolute;
  5157. left:787px;
  5158. top:364px;
  5159. width:144px;
  5160. height:35px;
  5161. display:flex;
  5162. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5163. font-weight:400;
  5164. font-style:normal;
  5165. font-size:12px;
  5166. color:#606266;
  5167. }
  5168. #u28729 .text {
  5169. position:absolute;
  5170. align-self:center;
  5171. padding:2px 2px 2px 0px;
  5172. box-sizing:border-box;
  5173. width:100%;
  5174. }
  5175. #u28729_text {
  5176. border-width:0px;
  5177. word-wrap:break-word;
  5178. text-transform:none;
  5179. visibility:hidden;
  5180. }
  5181. #u28730_img {
  5182. border-width:0px;
  5183. position:absolute;
  5184. left:0px;
  5185. top:0px;
  5186. width:144px;
  5187. height:35px;
  5188. }
  5189. #u28730 {
  5190. border-width:0px;
  5191. position:absolute;
  5192. left:931px;
  5193. top:364px;
  5194. width:144px;
  5195. height:35px;
  5196. display:flex;
  5197. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5198. font-weight:400;
  5199. font-style:normal;
  5200. font-size:12px;
  5201. color:#606266;
  5202. }
  5203. #u28730 .text {
  5204. position:absolute;
  5205. align-self:center;
  5206. padding:2px 2px 2px 0px;
  5207. box-sizing:border-box;
  5208. width:100%;
  5209. }
  5210. #u28730_text {
  5211. border-width:0px;
  5212. word-wrap:break-word;
  5213. text-transform:none;
  5214. visibility:hidden;
  5215. }
  5216. #u28731_img {
  5217. border-width:0px;
  5218. position:absolute;
  5219. left:0px;
  5220. top:0px;
  5221. width:144px;
  5222. height:35px;
  5223. }
  5224. #u28731 {
  5225. border-width:0px;
  5226. position:absolute;
  5227. left:1075px;
  5228. top:364px;
  5229. width:144px;
  5230. height:35px;
  5231. display:flex;
  5232. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5233. font-weight:400;
  5234. font-style:normal;
  5235. font-size:12px;
  5236. color:#606266;
  5237. }
  5238. #u28731 .text {
  5239. position:absolute;
  5240. align-self:center;
  5241. padding:2px 2px 2px 0px;
  5242. box-sizing:border-box;
  5243. width:100%;
  5244. }
  5245. #u28731_text {
  5246. border-width:0px;
  5247. word-wrap:break-word;
  5248. text-transform:none;
  5249. visibility:hidden;
  5250. }
  5251. #u28732_img {
  5252. border-width:0px;
  5253. position:absolute;
  5254. left:0px;
  5255. top:0px;
  5256. width:67px;
  5257. height:29px;
  5258. }
  5259. #u28732 {
  5260. border-width:0px;
  5261. position:absolute;
  5262. left:0px;
  5263. top:399px;
  5264. width:67px;
  5265. height:29px;
  5266. display:flex;
  5267. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5268. font-weight:400;
  5269. font-style:normal;
  5270. font-size:12px;
  5271. color:#606266;
  5272. }
  5273. #u28732 .text {
  5274. position:absolute;
  5275. align-self:center;
  5276. padding:2px 2px 2px 0px;
  5277. box-sizing:border-box;
  5278. width:100%;
  5279. }
  5280. #u28732_text {
  5281. border-width:0px;
  5282. word-wrap:break-word;
  5283. text-transform:none;
  5284. visibility:hidden;
  5285. }
  5286. #u28733_img {
  5287. border-width:0px;
  5288. position:absolute;
  5289. left:0px;
  5290. top:0px;
  5291. width:144px;
  5292. height:29px;
  5293. }
  5294. #u28733 {
  5295. border-width:0px;
  5296. position:absolute;
  5297. left:67px;
  5298. top:399px;
  5299. width:144px;
  5300. height:29px;
  5301. display:flex;
  5302. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5303. font-weight:400;
  5304. font-style:normal;
  5305. font-size:12px;
  5306. color:#606266;
  5307. }
  5308. #u28733 .text {
  5309. position:absolute;
  5310. align-self:center;
  5311. padding:2px 2px 2px 0px;
  5312. box-sizing:border-box;
  5313. width:100%;
  5314. }
  5315. #u28733_text {
  5316. border-width:0px;
  5317. word-wrap:break-word;
  5318. text-transform:none;
  5319. visibility:hidden;
  5320. }
  5321. #u28734_img {
  5322. border-width:0px;
  5323. position:absolute;
  5324. left:0px;
  5325. top:0px;
  5326. width:144px;
  5327. height:29px;
  5328. }
  5329. #u28734 {
  5330. border-width:0px;
  5331. position:absolute;
  5332. left:211px;
  5333. top:399px;
  5334. width:144px;
  5335. height:29px;
  5336. display:flex;
  5337. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5338. font-weight:400;
  5339. font-style:normal;
  5340. font-size:12px;
  5341. color:#606266;
  5342. }
  5343. #u28734 .text {
  5344. position:absolute;
  5345. align-self:center;
  5346. padding:2px 2px 2px 0px;
  5347. box-sizing:border-box;
  5348. width:100%;
  5349. }
  5350. #u28734_text {
  5351. border-width:0px;
  5352. word-wrap:break-word;
  5353. text-transform:none;
  5354. visibility:hidden;
  5355. }
  5356. #u28735_img {
  5357. border-width:0px;
  5358. position:absolute;
  5359. left:0px;
  5360. top:0px;
  5361. width:144px;
  5362. height:29px;
  5363. }
  5364. #u28735 {
  5365. border-width:0px;
  5366. position:absolute;
  5367. left:355px;
  5368. top:399px;
  5369. width:144px;
  5370. height:29px;
  5371. display:flex;
  5372. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5373. font-weight:400;
  5374. font-style:normal;
  5375. font-size:12px;
  5376. color:#606266;
  5377. }
  5378. #u28735 .text {
  5379. position:absolute;
  5380. align-self:center;
  5381. padding:2px 2px 2px 0px;
  5382. box-sizing:border-box;
  5383. width:100%;
  5384. }
  5385. #u28735_text {
  5386. border-width:0px;
  5387. word-wrap:break-word;
  5388. text-transform:none;
  5389. visibility:hidden;
  5390. }
  5391. #u28736_img {
  5392. border-width:0px;
  5393. position:absolute;
  5394. left:0px;
  5395. top:0px;
  5396. width:144px;
  5397. height:29px;
  5398. }
  5399. #u28736 {
  5400. border-width:0px;
  5401. position:absolute;
  5402. left:499px;
  5403. top:399px;
  5404. width:144px;
  5405. height:29px;
  5406. display:flex;
  5407. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5408. font-weight:400;
  5409. font-style:normal;
  5410. font-size:12px;
  5411. color:#606266;
  5412. }
  5413. #u28736 .text {
  5414. position:absolute;
  5415. align-self:center;
  5416. padding:2px 2px 2px 0px;
  5417. box-sizing:border-box;
  5418. width:100%;
  5419. }
  5420. #u28736_text {
  5421. border-width:0px;
  5422. word-wrap:break-word;
  5423. text-transform:none;
  5424. visibility:hidden;
  5425. }
  5426. #u28737_img {
  5427. border-width:0px;
  5428. position:absolute;
  5429. left:0px;
  5430. top:0px;
  5431. width:144px;
  5432. height:29px;
  5433. }
  5434. #u28737 {
  5435. border-width:0px;
  5436. position:absolute;
  5437. left:643px;
  5438. top:399px;
  5439. width:144px;
  5440. height:29px;
  5441. display:flex;
  5442. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5443. font-weight:400;
  5444. font-style:normal;
  5445. font-size:12px;
  5446. color:#606266;
  5447. }
  5448. #u28737 .text {
  5449. position:absolute;
  5450. align-self:center;
  5451. padding:2px 2px 2px 0px;
  5452. box-sizing:border-box;
  5453. width:100%;
  5454. }
  5455. #u28737_text {
  5456. border-width:0px;
  5457. word-wrap:break-word;
  5458. text-transform:none;
  5459. visibility:hidden;
  5460. }
  5461. #u28738_img {
  5462. border-width:0px;
  5463. position:absolute;
  5464. left:0px;
  5465. top:0px;
  5466. width:144px;
  5467. height:29px;
  5468. }
  5469. #u28738 {
  5470. border-width:0px;
  5471. position:absolute;
  5472. left:787px;
  5473. top:399px;
  5474. width:144px;
  5475. height:29px;
  5476. display:flex;
  5477. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5478. font-weight:400;
  5479. font-style:normal;
  5480. font-size:12px;
  5481. color:#606266;
  5482. }
  5483. #u28738 .text {
  5484. position:absolute;
  5485. align-self:center;
  5486. padding:2px 2px 2px 0px;
  5487. box-sizing:border-box;
  5488. width:100%;
  5489. }
  5490. #u28738_text {
  5491. border-width:0px;
  5492. word-wrap:break-word;
  5493. text-transform:none;
  5494. visibility:hidden;
  5495. }
  5496. #u28739_img {
  5497. border-width:0px;
  5498. position:absolute;
  5499. left:0px;
  5500. top:0px;
  5501. width:144px;
  5502. height:29px;
  5503. }
  5504. #u28739 {
  5505. border-width:0px;
  5506. position:absolute;
  5507. left:931px;
  5508. top:399px;
  5509. width:144px;
  5510. height:29px;
  5511. display:flex;
  5512. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5513. font-weight:400;
  5514. font-style:normal;
  5515. font-size:12px;
  5516. color:#606266;
  5517. }
  5518. #u28739 .text {
  5519. position:absolute;
  5520. align-self:center;
  5521. padding:2px 2px 2px 0px;
  5522. box-sizing:border-box;
  5523. width:100%;
  5524. }
  5525. #u28739_text {
  5526. border-width:0px;
  5527. word-wrap:break-word;
  5528. text-transform:none;
  5529. visibility:hidden;
  5530. }
  5531. #u28740_img {
  5532. border-width:0px;
  5533. position:absolute;
  5534. left:0px;
  5535. top:0px;
  5536. width:144px;
  5537. height:29px;
  5538. }
  5539. #u28740 {
  5540. border-width:0px;
  5541. position:absolute;
  5542. left:1075px;
  5543. top:399px;
  5544. width:144px;
  5545. height:29px;
  5546. display:flex;
  5547. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5548. font-weight:400;
  5549. font-style:normal;
  5550. font-size:12px;
  5551. color:#606266;
  5552. }
  5553. #u28740 .text {
  5554. position:absolute;
  5555. align-self:center;
  5556. padding:2px 2px 2px 0px;
  5557. box-sizing:border-box;
  5558. width:100%;
  5559. }
  5560. #u28740_text {
  5561. border-width:0px;
  5562. word-wrap:break-word;
  5563. text-transform:none;
  5564. visibility:hidden;
  5565. }
  5566. #u28741_img {
  5567. border-width:0px;
  5568. position:absolute;
  5569. left:0px;
  5570. top:0px;
  5571. width:67px;
  5572. height:29px;
  5573. }
  5574. #u28741 {
  5575. border-width:0px;
  5576. position:absolute;
  5577. left:0px;
  5578. top:428px;
  5579. width:67px;
  5580. height:29px;
  5581. display:flex;
  5582. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5583. font-weight:400;
  5584. font-style:normal;
  5585. font-size:12px;
  5586. color:#606266;
  5587. }
  5588. #u28741 .text {
  5589. position:absolute;
  5590. align-self:center;
  5591. padding:2px 2px 2px 0px;
  5592. box-sizing:border-box;
  5593. width:100%;
  5594. }
  5595. #u28741_text {
  5596. border-width:0px;
  5597. word-wrap:break-word;
  5598. text-transform:none;
  5599. visibility:hidden;
  5600. }
  5601. #u28742_img {
  5602. border-width:0px;
  5603. position:absolute;
  5604. left:0px;
  5605. top:0px;
  5606. width:144px;
  5607. height:29px;
  5608. }
  5609. #u28742 {
  5610. border-width:0px;
  5611. position:absolute;
  5612. left:67px;
  5613. top:428px;
  5614. width:144px;
  5615. height:29px;
  5616. display:flex;
  5617. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5618. font-weight:400;
  5619. font-style:normal;
  5620. font-size:12px;
  5621. color:#606266;
  5622. }
  5623. #u28742 .text {
  5624. position:absolute;
  5625. align-self:center;
  5626. padding:2px 2px 2px 0px;
  5627. box-sizing:border-box;
  5628. width:100%;
  5629. }
  5630. #u28742_text {
  5631. border-width:0px;
  5632. word-wrap:break-word;
  5633. text-transform:none;
  5634. visibility:hidden;
  5635. }
  5636. #u28743_img {
  5637. border-width:0px;
  5638. position:absolute;
  5639. left:0px;
  5640. top:0px;
  5641. width:144px;
  5642. height:29px;
  5643. }
  5644. #u28743 {
  5645. border-width:0px;
  5646. position:absolute;
  5647. left:211px;
  5648. top:428px;
  5649. width:144px;
  5650. height:29px;
  5651. display:flex;
  5652. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5653. font-weight:400;
  5654. font-style:normal;
  5655. font-size:12px;
  5656. color:#606266;
  5657. }
  5658. #u28743 .text {
  5659. position:absolute;
  5660. align-self:center;
  5661. padding:2px 2px 2px 0px;
  5662. box-sizing:border-box;
  5663. width:100%;
  5664. }
  5665. #u28743_text {
  5666. border-width:0px;
  5667. word-wrap:break-word;
  5668. text-transform:none;
  5669. visibility:hidden;
  5670. }
  5671. #u28744_img {
  5672. border-width:0px;
  5673. position:absolute;
  5674. left:0px;
  5675. top:0px;
  5676. width:144px;
  5677. height:29px;
  5678. }
  5679. #u28744 {
  5680. border-width:0px;
  5681. position:absolute;
  5682. left:355px;
  5683. top:428px;
  5684. width:144px;
  5685. height:29px;
  5686. display:flex;
  5687. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5688. font-weight:400;
  5689. font-style:normal;
  5690. font-size:12px;
  5691. color:#606266;
  5692. }
  5693. #u28744 .text {
  5694. position:absolute;
  5695. align-self:center;
  5696. padding:2px 2px 2px 0px;
  5697. box-sizing:border-box;
  5698. width:100%;
  5699. }
  5700. #u28744_text {
  5701. border-width:0px;
  5702. word-wrap:break-word;
  5703. text-transform:none;
  5704. visibility:hidden;
  5705. }
  5706. #u28745_img {
  5707. border-width:0px;
  5708. position:absolute;
  5709. left:0px;
  5710. top:0px;
  5711. width:144px;
  5712. height:29px;
  5713. }
  5714. #u28745 {
  5715. border-width:0px;
  5716. position:absolute;
  5717. left:499px;
  5718. top:428px;
  5719. width:144px;
  5720. height:29px;
  5721. display:flex;
  5722. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5723. font-weight:400;
  5724. font-style:normal;
  5725. font-size:12px;
  5726. color:#606266;
  5727. }
  5728. #u28745 .text {
  5729. position:absolute;
  5730. align-self:center;
  5731. padding:2px 2px 2px 0px;
  5732. box-sizing:border-box;
  5733. width:100%;
  5734. }
  5735. #u28745_text {
  5736. border-width:0px;
  5737. word-wrap:break-word;
  5738. text-transform:none;
  5739. visibility:hidden;
  5740. }
  5741. #u28746_img {
  5742. border-width:0px;
  5743. position:absolute;
  5744. left:0px;
  5745. top:0px;
  5746. width:144px;
  5747. height:29px;
  5748. }
  5749. #u28746 {
  5750. border-width:0px;
  5751. position:absolute;
  5752. left:643px;
  5753. top:428px;
  5754. width:144px;
  5755. height:29px;
  5756. display:flex;
  5757. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5758. font-weight:400;
  5759. font-style:normal;
  5760. font-size:12px;
  5761. color:#606266;
  5762. }
  5763. #u28746 .text {
  5764. position:absolute;
  5765. align-self:center;
  5766. padding:2px 2px 2px 0px;
  5767. box-sizing:border-box;
  5768. width:100%;
  5769. }
  5770. #u28746_text {
  5771. border-width:0px;
  5772. word-wrap:break-word;
  5773. text-transform:none;
  5774. visibility:hidden;
  5775. }
  5776. #u28747_img {
  5777. border-width:0px;
  5778. position:absolute;
  5779. left:0px;
  5780. top:0px;
  5781. width:144px;
  5782. height:29px;
  5783. }
  5784. #u28747 {
  5785. border-width:0px;
  5786. position:absolute;
  5787. left:787px;
  5788. top:428px;
  5789. width:144px;
  5790. height:29px;
  5791. display:flex;
  5792. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5793. font-weight:400;
  5794. font-style:normal;
  5795. font-size:12px;
  5796. color:#606266;
  5797. }
  5798. #u28747 .text {
  5799. position:absolute;
  5800. align-self:center;
  5801. padding:2px 2px 2px 0px;
  5802. box-sizing:border-box;
  5803. width:100%;
  5804. }
  5805. #u28747_text {
  5806. border-width:0px;
  5807. word-wrap:break-word;
  5808. text-transform:none;
  5809. visibility:hidden;
  5810. }
  5811. #u28748_img {
  5812. border-width:0px;
  5813. position:absolute;
  5814. left:0px;
  5815. top:0px;
  5816. width:144px;
  5817. height:29px;
  5818. }
  5819. #u28748 {
  5820. border-width:0px;
  5821. position:absolute;
  5822. left:931px;
  5823. top:428px;
  5824. width:144px;
  5825. height:29px;
  5826. display:flex;
  5827. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5828. font-weight:400;
  5829. font-style:normal;
  5830. font-size:12px;
  5831. color:#606266;
  5832. }
  5833. #u28748 .text {
  5834. position:absolute;
  5835. align-self:center;
  5836. padding:2px 2px 2px 0px;
  5837. box-sizing:border-box;
  5838. width:100%;
  5839. }
  5840. #u28748_text {
  5841. border-width:0px;
  5842. word-wrap:break-word;
  5843. text-transform:none;
  5844. visibility:hidden;
  5845. }
  5846. #u28749_img {
  5847. border-width:0px;
  5848. position:absolute;
  5849. left:0px;
  5850. top:0px;
  5851. width:144px;
  5852. height:29px;
  5853. }
  5854. #u28749 {
  5855. border-width:0px;
  5856. position:absolute;
  5857. left:1075px;
  5858. top:428px;
  5859. width:144px;
  5860. height:29px;
  5861. display:flex;
  5862. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5863. font-weight:400;
  5864. font-style:normal;
  5865. font-size:12px;
  5866. color:#606266;
  5867. }
  5868. #u28749 .text {
  5869. position:absolute;
  5870. align-self:center;
  5871. padding:2px 2px 2px 0px;
  5872. box-sizing:border-box;
  5873. width:100%;
  5874. }
  5875. #u28749_text {
  5876. border-width:0px;
  5877. word-wrap:break-word;
  5878. text-transform:none;
  5879. visibility:hidden;
  5880. }
  5881. #u28750 {
  5882. border-width:0px;
  5883. position:absolute;
  5884. left:0px;
  5885. top:0px;
  5886. width:0px;
  5887. height:0px;
  5888. }
  5889. #u28751_div {
  5890. border-width:0px;
  5891. position:absolute;
  5892. left:0px;
  5893. top:0px;
  5894. width:59px;
  5895. height:30px;
  5896. background:inherit;
  5897. background-color:rgba(41, 143, 255, 1);
  5898. border:none;
  5899. border-radius:4px;
  5900. -moz-box-shadow:none;
  5901. -webkit-box-shadow:none;
  5902. box-shadow:none;
  5903. font-family:'Microsoft YaHei', sans-serif;
  5904. font-weight:400;
  5905. font-style:normal;
  5906. font-size:14px;
  5907. color:#FFFFFF;
  5908. }
  5909. #u28751 {
  5910. border-width:0px;
  5911. position:absolute;
  5912. left:1100px;
  5913. top:100px;
  5914. width:59px;
  5915. height:30px;
  5916. display:flex;
  5917. font-family:'Microsoft YaHei', sans-serif;
  5918. font-weight:400;
  5919. font-style:normal;
  5920. font-size:14px;
  5921. color:#FFFFFF;
  5922. }
  5923. #u28751 .text {
  5924. position:absolute;
  5925. align-self:center;
  5926. padding:5px 15px 5px 15px;
  5927. box-sizing:border-box;
  5928. width:100%;
  5929. }
  5930. #u28751_text {
  5931. border-width:0px;
  5932. white-space:nowrap;
  5933. text-transform:none;
  5934. }
  5935. #u28752_div {
  5936. border-width:0px;
  5937. position:absolute;
  5938. left:0px;
  5939. top:0px;
  5940. width:55px;
  5941. height:30px;
  5942. background:inherit;
  5943. background-color:rgba(255, 255, 255, 1);
  5944. box-sizing:border-box;
  5945. border-width:1px;
  5946. border-style:solid;
  5947. border-color:rgba(170, 170, 170, 1);
  5948. border-radius:4px;
  5949. -moz-box-shadow:none;
  5950. -webkit-box-shadow:none;
  5951. box-shadow:none;
  5952. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5953. font-weight:400;
  5954. font-style:normal;
  5955. font-size:12px;
  5956. color:#555555;
  5957. }
  5958. #u28752 {
  5959. border-width:0px;
  5960. position:absolute;
  5961. left:1169px;
  5962. top:100px;
  5963. width:55px;
  5964. height:30px;
  5965. display:flex;
  5966. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5967. font-weight:400;
  5968. font-style:normal;
  5969. font-size:12px;
  5970. color:#555555;
  5971. }
  5972. #u28752 .text {
  5973. position:absolute;
  5974. align-self:center;
  5975. padding:5px 15px 5px 15px;
  5976. box-sizing:border-box;
  5977. width:100%;
  5978. }
  5979. #u28752_text {
  5980. border-width:0px;
  5981. white-space:nowrap;
  5982. text-transform:none;
  5983. }
  5984. #u28753 {
  5985. border-width:0px;
  5986. position:absolute;
  5987. left:0px;
  5988. top:0px;
  5989. width:0px;
  5990. height:0px;
  5991. }
  5992. #u28754_div {
  5993. border-width:0px;
  5994. position:absolute;
  5995. left:0px;
  5996. top:0px;
  5997. width:140px;
  5998. height:30px;
  5999. background:inherit;
  6000. background-color:rgba(255, 255, 255, 1);
  6001. box-sizing:border-box;
  6002. border-width:1px;
  6003. border-style:solid;
  6004. border-color:rgba(201, 201, 201, 1);
  6005. border-radius:4px;
  6006. -moz-box-shadow:none;
  6007. -webkit-box-shadow:none;
  6008. box-shadow:none;
  6009. font-family:'Microsoft YaHei', sans-serif;
  6010. font-weight:400;
  6011. font-style:normal;
  6012. font-size:14px;
  6013. color:#CCCCCC;
  6014. text-align:left;
  6015. }
  6016. #u28754 {
  6017. border-width:0px;
  6018. position:absolute;
  6019. left:500px;
  6020. top:100px;
  6021. width:140px;
  6022. height:30px;
  6023. display:flex;
  6024. font-family:'Microsoft YaHei', sans-serif;
  6025. font-weight:400;
  6026. font-style:normal;
  6027. font-size:14px;
  6028. color:#CCCCCC;
  6029. text-align:left;
  6030. }
  6031. #u28754 .text {
  6032. position:absolute;
  6033. align-self:center;
  6034. padding:2px 8px 2px 8px;
  6035. box-sizing:border-box;
  6036. width:100%;
  6037. }
  6038. #u28754_text {
  6039. border-width:0px;
  6040. word-wrap:break-word;
  6041. text-transform:none;
  6042. visibility:hidden;
  6043. }
  6044. #u28755_input {
  6045. position:absolute;
  6046. left:0px;
  6047. top:0px;
  6048. width:127px;
  6049. height:25px;
  6050. padding:2px 2px 2px 2px;
  6051. font-family:'Microsoft YaHei', sans-serif;
  6052. font-weight:400;
  6053. font-style:normal;
  6054. font-size:10px;
  6055. letter-spacing:normal;
  6056. color:#000000;
  6057. vertical-align:none;
  6058. text-align:left;
  6059. text-transform:none;
  6060. background-color:transparent;
  6061. border-color:transparent;
  6062. }
  6063. #u28755_input.disabled {
  6064. position:absolute;
  6065. left:0px;
  6066. top:0px;
  6067. width:127px;
  6068. height:25px;
  6069. padding:2px 2px 2px 2px;
  6070. font-family:'Microsoft YaHei', sans-serif;
  6071. font-weight:400;
  6072. font-style:normal;
  6073. font-size:10px;
  6074. letter-spacing:normal;
  6075. color:#000000;
  6076. vertical-align:none;
  6077. text-align:left;
  6078. text-transform:none;
  6079. background-color:transparent;
  6080. border-color:transparent;
  6081. }
  6082. #u28755_div {
  6083. border-width:0px;
  6084. position:absolute;
  6085. left:0px;
  6086. top:0px;
  6087. width:127px;
  6088. height:25px;
  6089. background:inherit;
  6090. background-color:rgba(255, 255, 255, 1);
  6091. border:none;
  6092. border-radius:0px;
  6093. -moz-box-shadow:none;
  6094. -webkit-box-shadow:none;
  6095. box-shadow:none;
  6096. font-family:'Microsoft YaHei', sans-serif;
  6097. font-weight:400;
  6098. font-style:normal;
  6099. font-size:10px;
  6100. }
  6101. #u28755 {
  6102. border-width:0px;
  6103. position:absolute;
  6104. left:508px;
  6105. top:101px;
  6106. width:127px;
  6107. height:25px;
  6108. display:flex;
  6109. font-family:'Microsoft YaHei', sans-serif;
  6110. font-weight:400;
  6111. font-style:normal;
  6112. font-size:10px;
  6113. }
  6114. #u28755 .text {
  6115. position:absolute;
  6116. align-self:center;
  6117. padding:2px 2px 2px 2px;
  6118. box-sizing:border-box;
  6119. width:100%;
  6120. }
  6121. #u28755_div.disabled {
  6122. border-width:0px;
  6123. position:absolute;
  6124. left:0px;
  6125. top:0px;
  6126. width:127px;
  6127. height:25px;
  6128. background:inherit;
  6129. background-color:rgba(240, 240, 240, 1);
  6130. border:none;
  6131. border-radius:0px;
  6132. -moz-box-shadow:none;
  6133. -webkit-box-shadow:none;
  6134. box-shadow:none;
  6135. font-family:'Microsoft YaHei', sans-serif;
  6136. font-weight:400;
  6137. font-style:normal;
  6138. font-size:10px;
  6139. }
  6140. #u28755.disabled {
  6141. }
  6142. #u28756_div {
  6143. border-width:0px;
  6144. position:absolute;
  6145. left:0px;
  6146. top:0px;
  6147. width:55px;
  6148. height:30px;
  6149. background:inherit;
  6150. background-color:rgba(255, 255, 255, 1);
  6151. box-sizing:border-box;
  6152. border-width:1px;
  6153. border-style:solid;
  6154. border-color:rgba(170, 170, 170, 1);
  6155. border-radius:4px;
  6156. -moz-box-shadow:none;
  6157. -webkit-box-shadow:none;
  6158. box-shadow:none;
  6159. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6160. font-weight:400;
  6161. font-style:normal;
  6162. font-size:12px;
  6163. color:#555555;
  6164. }
  6165. #u28756 {
  6166. border-width:0px;
  6167. position:absolute;
  6168. left:350px;
  6169. top:150px;
  6170. width:55px;
  6171. height:30px;
  6172. display:flex;
  6173. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6174. font-weight:400;
  6175. font-style:normal;
  6176. font-size:12px;
  6177. color:#555555;
  6178. }
  6179. #u28756 .text {
  6180. position:absolute;
  6181. align-self:center;
  6182. padding:5px 15px 5px 15px;
  6183. box-sizing:border-box;
  6184. width:100%;
  6185. }
  6186. #u28756_text {
  6187. border-width:0px;
  6188. white-space:nowrap;
  6189. text-transform:none;
  6190. }
  6191. #u28757 {
  6192. border-width:0px;
  6193. position:absolute;
  6194. left:0px;
  6195. top:0px;
  6196. width:0px;
  6197. height:0px;
  6198. }
  6199. #u28758_div {
  6200. border-width:0px;
  6201. position:absolute;
  6202. left:0px;
  6203. top:0px;
  6204. width:140px;
  6205. height:30px;
  6206. background:inherit;
  6207. background-color:rgba(255, 255, 255, 1);
  6208. box-sizing:border-box;
  6209. border-width:1px;
  6210. border-style:solid;
  6211. border-color:rgba(201, 201, 201, 1);
  6212. border-radius:4px;
  6213. -moz-box-shadow:none;
  6214. -webkit-box-shadow:none;
  6215. box-shadow:none;
  6216. font-family:'Microsoft YaHei', sans-serif;
  6217. font-weight:400;
  6218. font-style:normal;
  6219. font-size:14px;
  6220. color:#CCCCCC;
  6221. text-align:left;
  6222. }
  6223. #u28758 {
  6224. border-width:0px;
  6225. position:absolute;
  6226. left:350px;
  6227. top:100px;
  6228. width:140px;
  6229. height:30px;
  6230. display:flex;
  6231. font-family:'Microsoft YaHei', sans-serif;
  6232. font-weight:400;
  6233. font-style:normal;
  6234. font-size:14px;
  6235. color:#CCCCCC;
  6236. text-align:left;
  6237. }
  6238. #u28758 .text {
  6239. position:absolute;
  6240. align-self:center;
  6241. padding:2px 8px 2px 8px;
  6242. box-sizing:border-box;
  6243. width:100%;
  6244. }
  6245. #u28758_text {
  6246. border-width:0px;
  6247. word-wrap:break-word;
  6248. text-transform:none;
  6249. visibility:hidden;
  6250. }
  6251. #u28759_input {
  6252. position:absolute;
  6253. left:0px;
  6254. top:0px;
  6255. width:127px;
  6256. height:25px;
  6257. padding:2px 2px 2px 2px;
  6258. font-family:'Microsoft YaHei', sans-serif;
  6259. font-weight:400;
  6260. font-style:normal;
  6261. font-size:10px;
  6262. letter-spacing:normal;
  6263. color:#000000;
  6264. vertical-align:none;
  6265. text-align:left;
  6266. text-transform:none;
  6267. background-color:transparent;
  6268. border-color:transparent;
  6269. }
  6270. #u28759_input.disabled {
  6271. position:absolute;
  6272. left:0px;
  6273. top:0px;
  6274. width:127px;
  6275. height:25px;
  6276. padding:2px 2px 2px 2px;
  6277. font-family:'Microsoft YaHei', sans-serif;
  6278. font-weight:400;
  6279. font-style:normal;
  6280. font-size:10px;
  6281. letter-spacing:normal;
  6282. color:#000000;
  6283. vertical-align:none;
  6284. text-align:left;
  6285. text-transform:none;
  6286. background-color:transparent;
  6287. border-color:transparent;
  6288. }
  6289. #u28759_div {
  6290. border-width:0px;
  6291. position:absolute;
  6292. left:0px;
  6293. top:0px;
  6294. width:127px;
  6295. height:25px;
  6296. background:inherit;
  6297. background-color:rgba(255, 255, 255, 1);
  6298. border:none;
  6299. border-radius:0px;
  6300. -moz-box-shadow:none;
  6301. -webkit-box-shadow:none;
  6302. box-shadow:none;
  6303. font-family:'Microsoft YaHei', sans-serif;
  6304. font-weight:400;
  6305. font-style:normal;
  6306. font-size:10px;
  6307. }
  6308. #u28759 {
  6309. border-width:0px;
  6310. position:absolute;
  6311. left:358px;
  6312. top:101px;
  6313. width:127px;
  6314. height:25px;
  6315. display:flex;
  6316. font-family:'Microsoft YaHei', sans-serif;
  6317. font-weight:400;
  6318. font-style:normal;
  6319. font-size:10px;
  6320. }
  6321. #u28759 .text {
  6322. position:absolute;
  6323. align-self:center;
  6324. padding:2px 2px 2px 2px;
  6325. box-sizing:border-box;
  6326. width:100%;
  6327. }
  6328. #u28759_div.disabled {
  6329. border-width:0px;
  6330. position:absolute;
  6331. left:0px;
  6332. top:0px;
  6333. width:127px;
  6334. height:25px;
  6335. background:inherit;
  6336. background-color:rgba(240, 240, 240, 1);
  6337. border:none;
  6338. border-radius:0px;
  6339. -moz-box-shadow:none;
  6340. -webkit-box-shadow:none;
  6341. box-shadow:none;
  6342. font-family:'Microsoft YaHei', sans-serif;
  6343. font-weight:400;
  6344. font-style:normal;
  6345. font-size:10px;
  6346. }
  6347. #u28759.disabled {
  6348. }
  6349. #u28760 {
  6350. border-width:0px;
  6351. position:absolute;
  6352. left:0px;
  6353. top:0px;
  6354. width:0px;
  6355. height:0px;
  6356. }
  6357. #u28761_div {
  6358. border-width:0px;
  6359. position:absolute;
  6360. left:0px;
  6361. top:0px;
  6362. width:140px;
  6363. height:30px;
  6364. background:inherit;
  6365. background-color:rgba(255, 255, 255, 1);
  6366. box-sizing:border-box;
  6367. border-width:1px;
  6368. border-style:solid;
  6369. border-color:rgba(215, 215, 215, 1);
  6370. border-radius:4px;
  6371. -moz-box-shadow:none;
  6372. -webkit-box-shadow:none;
  6373. box-shadow:none;
  6374. font-size:11px;
  6375. }
  6376. #u28761 {
  6377. border-width:0px;
  6378. position:absolute;
  6379. left:950px;
  6380. top:100px;
  6381. width:140px;
  6382. height:30px;
  6383. display:flex;
  6384. font-size:11px;
  6385. }
  6386. #u28761 .text {
  6387. position:absolute;
  6388. align-self:center;
  6389. padding:2px 2px 2px 2px;
  6390. box-sizing:border-box;
  6391. width:100%;
  6392. }
  6393. #u28761_text {
  6394. border-width:0px;
  6395. word-wrap:break-word;
  6396. text-transform:none;
  6397. visibility:hidden;
  6398. }
  6399. #u28762_input {
  6400. position:absolute;
  6401. left:0px;
  6402. top:0px;
  6403. width:120px;
  6404. height:23px;
  6405. padding:2px 2px 2px 2px;
  6406. font-family:'ArialMT', 'Arial', sans-serif;
  6407. font-weight:400;
  6408. font-style:normal;
  6409. font-size:11px;
  6410. letter-spacing:normal;
  6411. color:#AAAAAA;
  6412. vertical-align:none;
  6413. text-align:left;
  6414. text-transform:none;
  6415. background-color:transparent;
  6416. border-color:transparent;
  6417. }
  6418. #u28762_input.disabled {
  6419. position:absolute;
  6420. left:0px;
  6421. top:0px;
  6422. width:120px;
  6423. height:23px;
  6424. padding:2px 2px 2px 2px;
  6425. font-family:'ArialMT', 'Arial', sans-serif;
  6426. font-weight:400;
  6427. font-style:normal;
  6428. font-size:11px;
  6429. letter-spacing:normal;
  6430. color:#AAAAAA;
  6431. vertical-align:none;
  6432. text-align:left;
  6433. text-transform:none;
  6434. background-color:transparent;
  6435. border-color:transparent;
  6436. }
  6437. #u28762_div {
  6438. border-width:0px;
  6439. position:absolute;
  6440. left:0px;
  6441. top:0px;
  6442. width:120px;
  6443. height:23px;
  6444. background:inherit;
  6445. background-color:rgba(255, 255, 255, 1);
  6446. border:none;
  6447. border-radius:0px;
  6448. -moz-box-shadow:none;
  6449. -webkit-box-shadow:none;
  6450. box-shadow:none;
  6451. font-size:11px;
  6452. color:#AAAAAA;
  6453. }
  6454. #u28762 {
  6455. border-width:0px;
  6456. position:absolute;
  6457. left:957px;
  6458. top:102px;
  6459. width:120px;
  6460. height:23px;
  6461. display:flex;
  6462. font-size:11px;
  6463. color:#AAAAAA;
  6464. }
  6465. #u28762 .text {
  6466. position:absolute;
  6467. align-self:flex-start;
  6468. padding:2px 2px 2px 2px;
  6469. box-sizing:border-box;
  6470. width:100%;
  6471. }
  6472. #u28762_div.disabled {
  6473. border-width:0px;
  6474. position:absolute;
  6475. left:0px;
  6476. top:0px;
  6477. width:120px;
  6478. height:23px;
  6479. background:inherit;
  6480. background-color:rgba(240, 240, 240, 1);
  6481. border:none;
  6482. border-radius:0px;
  6483. -moz-box-shadow:none;
  6484. -webkit-box-shadow:none;
  6485. box-shadow:none;
  6486. font-size:11px;
  6487. color:#AAAAAA;
  6488. }
  6489. #u28762.disabled {
  6490. }
  6491. .u28762_input_option {
  6492. font-size:11px;
  6493. }
  6494. #u28763 {
  6495. border-width:0px;
  6496. position:absolute;
  6497. left:0px;
  6498. top:0px;
  6499. width:0px;
  6500. height:0px;
  6501. }
  6502. #u28764_div {
  6503. border-width:0px;
  6504. position:absolute;
  6505. left:0px;
  6506. top:0px;
  6507. width:140px;
  6508. height:30px;
  6509. background:inherit;
  6510. background-color:rgba(255, 255, 255, 1);
  6511. box-sizing:border-box;
  6512. border-width:1px;
  6513. border-style:solid;
  6514. border-color:rgba(201, 201, 201, 1);
  6515. border-radius:4px;
  6516. -moz-box-shadow:none;
  6517. -webkit-box-shadow:none;
  6518. box-shadow:none;
  6519. font-family:'Microsoft YaHei', sans-serif;
  6520. font-weight:400;
  6521. font-style:normal;
  6522. font-size:14px;
  6523. color:#CCCCCC;
  6524. text-align:left;
  6525. }
  6526. #u28764 {
  6527. border-width:0px;
  6528. position:absolute;
  6529. left:650px;
  6530. top:100px;
  6531. width:140px;
  6532. height:30px;
  6533. display:flex;
  6534. font-family:'Microsoft YaHei', sans-serif;
  6535. font-weight:400;
  6536. font-style:normal;
  6537. font-size:14px;
  6538. color:#CCCCCC;
  6539. text-align:left;
  6540. }
  6541. #u28764 .text {
  6542. position:absolute;
  6543. align-self:center;
  6544. padding:2px 8px 2px 8px;
  6545. box-sizing:border-box;
  6546. width:100%;
  6547. }
  6548. #u28764_text {
  6549. border-width:0px;
  6550. word-wrap:break-word;
  6551. text-transform:none;
  6552. visibility:hidden;
  6553. }
  6554. #u28765_input {
  6555. position:absolute;
  6556. left:0px;
  6557. top:0px;
  6558. width:127px;
  6559. height:25px;
  6560. padding:2px 2px 2px 2px;
  6561. font-family:'Microsoft YaHei', sans-serif;
  6562. font-weight:400;
  6563. font-style:normal;
  6564. font-size:10px;
  6565. letter-spacing:normal;
  6566. color:#000000;
  6567. vertical-align:none;
  6568. text-align:left;
  6569. text-transform:none;
  6570. background-color:transparent;
  6571. border-color:transparent;
  6572. }
  6573. #u28765_input.disabled {
  6574. position:absolute;
  6575. left:0px;
  6576. top:0px;
  6577. width:127px;
  6578. height:25px;
  6579. padding:2px 2px 2px 2px;
  6580. font-family:'Microsoft YaHei', sans-serif;
  6581. font-weight:400;
  6582. font-style:normal;
  6583. font-size:10px;
  6584. letter-spacing:normal;
  6585. color:#000000;
  6586. vertical-align:none;
  6587. text-align:left;
  6588. text-transform:none;
  6589. background-color:transparent;
  6590. border-color:transparent;
  6591. }
  6592. #u28765_div {
  6593. border-width:0px;
  6594. position:absolute;
  6595. left:0px;
  6596. top:0px;
  6597. width:127px;
  6598. height:25px;
  6599. background:inherit;
  6600. background-color:rgba(255, 255, 255, 1);
  6601. border:none;
  6602. border-radius:0px;
  6603. -moz-box-shadow:none;
  6604. -webkit-box-shadow:none;
  6605. box-shadow:none;
  6606. font-family:'Microsoft YaHei', sans-serif;
  6607. font-weight:400;
  6608. font-style:normal;
  6609. font-size:10px;
  6610. }
  6611. #u28765 {
  6612. border-width:0px;
  6613. position:absolute;
  6614. left:658px;
  6615. top:101px;
  6616. width:127px;
  6617. height:25px;
  6618. display:flex;
  6619. font-family:'Microsoft YaHei', sans-serif;
  6620. font-weight:400;
  6621. font-style:normal;
  6622. font-size:10px;
  6623. }
  6624. #u28765 .text {
  6625. position:absolute;
  6626. align-self:center;
  6627. padding:2px 2px 2px 2px;
  6628. box-sizing:border-box;
  6629. width:100%;
  6630. }
  6631. #u28765_div.disabled {
  6632. border-width:0px;
  6633. position:absolute;
  6634. left:0px;
  6635. top:0px;
  6636. width:127px;
  6637. height:25px;
  6638. background:inherit;
  6639. background-color:rgba(240, 240, 240, 1);
  6640. border:none;
  6641. border-radius:0px;
  6642. -moz-box-shadow:none;
  6643. -webkit-box-shadow:none;
  6644. box-shadow:none;
  6645. font-family:'Microsoft YaHei', sans-serif;
  6646. font-weight:400;
  6647. font-style:normal;
  6648. font-size:10px;
  6649. }
  6650. #u28765.disabled {
  6651. }
  6652. #u28766 {
  6653. border-width:0px;
  6654. position:absolute;
  6655. left:0px;
  6656. top:0px;
  6657. width:0px;
  6658. height:0px;
  6659. }
  6660. #u28767_div {
  6661. border-width:0px;
  6662. position:absolute;
  6663. left:0px;
  6664. top:0px;
  6665. width:140px;
  6666. height:30px;
  6667. background:inherit;
  6668. background-color:rgba(255, 255, 255, 1);
  6669. box-sizing:border-box;
  6670. border-width:1px;
  6671. border-style:solid;
  6672. border-color:rgba(215, 215, 215, 1);
  6673. border-radius:4px;
  6674. -moz-box-shadow:none;
  6675. -webkit-box-shadow:none;
  6676. box-shadow:none;
  6677. font-size:11px;
  6678. }
  6679. #u28767 {
  6680. border-width:0px;
  6681. position:absolute;
  6682. left:800px;
  6683. top:100px;
  6684. width:140px;
  6685. height:30px;
  6686. display:flex;
  6687. font-size:11px;
  6688. }
  6689. #u28767 .text {
  6690. position:absolute;
  6691. align-self:center;
  6692. padding:2px 2px 2px 2px;
  6693. box-sizing:border-box;
  6694. width:100%;
  6695. }
  6696. #u28767_text {
  6697. border-width:0px;
  6698. word-wrap:break-word;
  6699. text-transform:none;
  6700. visibility:hidden;
  6701. }
  6702. #u28768_input {
  6703. position:absolute;
  6704. left:0px;
  6705. top:0px;
  6706. width:125px;
  6707. height:23px;
  6708. padding:2px 2px 2px 2px;
  6709. font-family:'ArialMT', 'Arial', sans-serif;
  6710. font-weight:400;
  6711. font-style:normal;
  6712. font-size:11px;
  6713. letter-spacing:normal;
  6714. color:#AAAAAA;
  6715. vertical-align:none;
  6716. text-align:left;
  6717. text-transform:none;
  6718. background-color:transparent;
  6719. border-color:transparent;
  6720. }
  6721. #u28768_input.disabled {
  6722. position:absolute;
  6723. left:0px;
  6724. top:0px;
  6725. width:125px;
  6726. height:23px;
  6727. padding:2px 2px 2px 2px;
  6728. font-family:'ArialMT', 'Arial', sans-serif;
  6729. font-weight:400;
  6730. font-style:normal;
  6731. font-size:11px;
  6732. letter-spacing:normal;
  6733. color:#AAAAAA;
  6734. vertical-align:none;
  6735. text-align:left;
  6736. text-transform:none;
  6737. background-color:transparent;
  6738. border-color:transparent;
  6739. }
  6740. #u28768_div {
  6741. border-width:0px;
  6742. position:absolute;
  6743. left:0px;
  6744. top:0px;
  6745. width:125px;
  6746. height:23px;
  6747. background:inherit;
  6748. background-color:rgba(255, 255, 255, 1);
  6749. border:none;
  6750. border-radius:0px;
  6751. -moz-box-shadow:none;
  6752. -webkit-box-shadow:none;
  6753. box-shadow:none;
  6754. font-size:11px;
  6755. color:#AAAAAA;
  6756. }
  6757. #u28768 {
  6758. border-width:0px;
  6759. position:absolute;
  6760. left:806px;
  6761. top:102px;
  6762. width:125px;
  6763. height:23px;
  6764. display:flex;
  6765. font-size:11px;
  6766. color:#AAAAAA;
  6767. }
  6768. #u28768 .text {
  6769. position:absolute;
  6770. align-self:flex-start;
  6771. padding:2px 2px 2px 2px;
  6772. box-sizing:border-box;
  6773. width:100%;
  6774. }
  6775. #u28768_div.disabled {
  6776. border-width:0px;
  6777. position:absolute;
  6778. left:0px;
  6779. top:0px;
  6780. width:125px;
  6781. height:23px;
  6782. background:inherit;
  6783. background-color:rgba(240, 240, 240, 1);
  6784. border:none;
  6785. border-radius:0px;
  6786. -moz-box-shadow:none;
  6787. -webkit-box-shadow:none;
  6788. box-shadow:none;
  6789. font-size:11px;
  6790. color:#AAAAAA;
  6791. }
  6792. #u28768.disabled {
  6793. }
  6794. .u28768_input_option {
  6795. font-size:11px;
  6796. }
  6797. #u28769 {
  6798. border-width:0px;
  6799. position:absolute;
  6800. left:0px;
  6801. top:0px;
  6802. width:0px;
  6803. height:0px;
  6804. }
  6805. #u28770_div {
  6806. border-width:0px;
  6807. position:absolute;
  6808. left:0px;
  6809. top:0px;
  6810. width:200px;
  6811. height:1180px;
  6812. background:inherit;
  6813. background-color:rgba(255, 255, 255, 1);
  6814. border:none;
  6815. border-radius:0px;
  6816. -moz-box-shadow:none;
  6817. -webkit-box-shadow:none;
  6818. box-shadow:none;
  6819. }
  6820. #u28770 {
  6821. border-width:0px;
  6822. position:absolute;
  6823. left:120px;
  6824. top:50px;
  6825. width:200px;
  6826. height:1180px;
  6827. display:flex;
  6828. }
  6829. #u28770 .text {
  6830. position:absolute;
  6831. align-self:center;
  6832. padding:2px 2px 2px 2px;
  6833. box-sizing:border-box;
  6834. width:100%;
  6835. }
  6836. #u28770_text {
  6837. border-width:0px;
  6838. word-wrap:break-word;
  6839. text-transform:none;
  6840. visibility:hidden;
  6841. }
  6842. #u28771_div {
  6843. border-width:0px;
  6844. position:absolute;
  6845. left:0px;
  6846. top:0px;
  6847. width:200px;
  6848. height:60px;
  6849. background:inherit;
  6850. background-color:rgba(224, 231, 247, 1);
  6851. border:none;
  6852. border-radius:0px;
  6853. -moz-box-shadow:none;
  6854. -webkit-box-shadow:none;
  6855. box-shadow:none;
  6856. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6857. font-weight:500;
  6858. font-style:normal;
  6859. font-size:18px;
  6860. }
  6861. #u28771 {
  6862. border-width:0px;
  6863. position:absolute;
  6864. left:120px;
  6865. top:50px;
  6866. width:200px;
  6867. height:60px;
  6868. display:flex;
  6869. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6870. font-weight:500;
  6871. font-style:normal;
  6872. font-size:18px;
  6873. }
  6874. #u28771 .text {
  6875. position:absolute;
  6876. align-self:center;
  6877. padding:0px 0px 0px 20px;
  6878. box-sizing:border-box;
  6879. width:100%;
  6880. }
  6881. #u28771_text {
  6882. border-width:0px;
  6883. word-wrap:break-word;
  6884. text-transform:none;
  6885. }
  6886. #u28772_div {
  6887. border-width:0px;
  6888. position:absolute;
  6889. left:0px;
  6890. top:0px;
  6891. width:65px;
  6892. height:22px;
  6893. background:inherit;
  6894. background-color:rgba(255, 255, 255, 0);
  6895. border:none;
  6896. border-radius:0px;
  6897. -moz-box-shadow:none;
  6898. -webkit-box-shadow:none;
  6899. box-shadow:none;
  6900. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6901. font-weight:400;
  6902. font-style:normal;
  6903. font-size:16px;
  6904. }
  6905. #u28772 {
  6906. border-width:0px;
  6907. position:absolute;
  6908. left:146px;
  6909. top:349px;
  6910. width:65px;
  6911. height:22px;
  6912. display:flex;
  6913. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6914. font-weight:400;
  6915. font-style:normal;
  6916. font-size:16px;
  6917. }
  6918. #u28772 .text {
  6919. position:absolute;
  6920. align-self:flex-start;
  6921. padding:0px 0px 0px 0px;
  6922. box-sizing:border-box;
  6923. width:100%;
  6924. }
  6925. #u28772_text {
  6926. border-width:0px;
  6927. white-space:nowrap;
  6928. text-transform:none;
  6929. }
  6930. #u28773_div {
  6931. border-width:0px;
  6932. position:absolute;
  6933. left:0px;
  6934. top:0px;
  6935. width:65px;
  6936. height:22px;
  6937. background:inherit;
  6938. background-color:rgba(255, 255, 255, 0);
  6939. border:none;
  6940. border-radius:0px;
  6941. -moz-box-shadow:none;
  6942. -webkit-box-shadow:none;
  6943. box-shadow:none;
  6944. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6945. font-weight:400;
  6946. font-style:normal;
  6947. font-size:16px;
  6948. }
  6949. #u28773 {
  6950. border-width:0px;
  6951. position:absolute;
  6952. left:146px;
  6953. top:391px;
  6954. width:65px;
  6955. height:22px;
  6956. display:flex;
  6957. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6958. font-weight:400;
  6959. font-style:normal;
  6960. font-size:16px;
  6961. }
  6962. #u28773 .text {
  6963. position:absolute;
  6964. align-self:flex-start;
  6965. padding:0px 0px 0px 0px;
  6966. box-sizing:border-box;
  6967. width:100%;
  6968. }
  6969. #u28773_text {
  6970. border-width:0px;
  6971. white-space:nowrap;
  6972. text-transform:none;
  6973. }
  6974. #u28774_div {
  6975. border-width:0px;
  6976. position:absolute;
  6977. left:0px;
  6978. top:0px;
  6979. width:49px;
  6980. height:17px;
  6981. background:inherit;
  6982. background-color:rgba(255, 255, 255, 0);
  6983. border:none;
  6984. border-radius:0px;
  6985. -moz-box-shadow:none;
  6986. -webkit-box-shadow:none;
  6987. box-shadow:none;
  6988. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6989. font-weight:400;
  6990. font-style:normal;
  6991. font-size:12px;
  6992. color:#AAAAAA;
  6993. }
  6994. #u28774 {
  6995. border-width:0px;
  6996. position:absolute;
  6997. left:146px;
  6998. top:312px;
  6999. width:49px;
  7000. height:17px;
  7001. display:flex;
  7002. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7003. font-weight:400;
  7004. font-style:normal;
  7005. font-size:12px;
  7006. color:#AAAAAA;
  7007. }
  7008. #u28774 .text {
  7009. position:absolute;
  7010. align-self:flex-start;
  7011. padding:0px 0px 0px 0px;
  7012. box-sizing:border-box;
  7013. width:100%;
  7014. }
  7015. #u28774_text {
  7016. border-width:0px;
  7017. white-space:nowrap;
  7018. text-transform:none;
  7019. }
  7020. #u28775_img {
  7021. border-width:0px;
  7022. position:absolute;
  7023. left:0px;
  7024. top:0px;
  7025. width:201px;
  7026. height:2px;
  7027. }
  7028. #u28775 {
  7029. border-width:0px;
  7030. position:absolute;
  7031. left:120px;
  7032. top:292px;
  7033. width:200px;
  7034. height:1px;
  7035. display:flex;
  7036. }
  7037. #u28775 .text {
  7038. position:absolute;
  7039. align-self:center;
  7040. padding:2px 2px 2px 2px;
  7041. box-sizing:border-box;
  7042. width:100%;
  7043. }
  7044. #u28775_text {
  7045. border-width:0px;
  7046. word-wrap:break-word;
  7047. text-transform:none;
  7048. visibility:hidden;
  7049. }
  7050. #u28776_div {
  7051. border-width:0px;
  7052. position:absolute;
  7053. left:0px;
  7054. top:0px;
  7055. width:49px;
  7056. height:22px;
  7057. background:inherit;
  7058. background-color:rgba(255, 255, 255, 0);
  7059. border:none;
  7060. border-radius:0px;
  7061. -moz-box-shadow:none;
  7062. -webkit-box-shadow:none;
  7063. box-shadow:none;
  7064. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7065. font-weight:400;
  7066. font-style:normal;
  7067. font-size:16px;
  7068. }
  7069. #u28776 {
  7070. border-width:0px;
  7071. position:absolute;
  7072. left:146px;
  7073. top:167px;
  7074. width:49px;
  7075. height:22px;
  7076. display:flex;
  7077. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7078. font-weight:400;
  7079. font-style:normal;
  7080. font-size:16px;
  7081. }
  7082. #u28776 .text {
  7083. position:absolute;
  7084. align-self:flex-start;
  7085. padding:0px 0px 0px 0px;
  7086. box-sizing:border-box;
  7087. width:100%;
  7088. }
  7089. #u28776_text {
  7090. border-width:0px;
  7091. white-space:nowrap;
  7092. text-transform:none;
  7093. }
  7094. #u28777_div {
  7095. border-width:0px;
  7096. position:absolute;
  7097. left:0px;
  7098. top:0px;
  7099. width:49px;
  7100. height:22px;
  7101. background:inherit;
  7102. background-color:rgba(255, 255, 255, 0);
  7103. border:none;
  7104. border-radius:0px;
  7105. -moz-box-shadow:none;
  7106. -webkit-box-shadow:none;
  7107. box-shadow:none;
  7108. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7109. font-weight:400;
  7110. font-style:normal;
  7111. font-size:16px;
  7112. }
  7113. #u28777 {
  7114. border-width:0px;
  7115. position:absolute;
  7116. left:146px;
  7117. top:209px;
  7118. width:49px;
  7119. height:22px;
  7120. display:flex;
  7121. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7122. font-weight:400;
  7123. font-style:normal;
  7124. font-size:16px;
  7125. }
  7126. #u28777 .text {
  7127. position:absolute;
  7128. align-self:flex-start;
  7129. padding:0px 0px 0px 0px;
  7130. box-sizing:border-box;
  7131. width:100%;
  7132. }
  7133. #u28777_text {
  7134. border-width:0px;
  7135. white-space:nowrap;
  7136. text-transform:none;
  7137. }
  7138. #u28778_div {
  7139. border-width:0px;
  7140. position:absolute;
  7141. left:0px;
  7142. top:0px;
  7143. width:49px;
  7144. height:22px;
  7145. background:inherit;
  7146. background-color:rgba(255, 255, 255, 0);
  7147. border:none;
  7148. border-radius:0px;
  7149. -moz-box-shadow:none;
  7150. -webkit-box-shadow:none;
  7151. box-shadow:none;
  7152. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7153. font-weight:400;
  7154. font-style:normal;
  7155. font-size:16px;
  7156. }
  7157. #u28778 {
  7158. border-width:0px;
  7159. position:absolute;
  7160. left:146px;
  7161. top:251px;
  7162. width:49px;
  7163. height:22px;
  7164. display:flex;
  7165. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7166. font-weight:400;
  7167. font-style:normal;
  7168. font-size:16px;
  7169. }
  7170. #u28778 .text {
  7171. position:absolute;
  7172. align-self:flex-start;
  7173. padding:0px 0px 0px 0px;
  7174. box-sizing:border-box;
  7175. width:100%;
  7176. }
  7177. #u28778_text {
  7178. border-width:0px;
  7179. white-space:nowrap;
  7180. text-transform:none;
  7181. }
  7182. #u28779_div {
  7183. border-width:0px;
  7184. position:absolute;
  7185. left:0px;
  7186. top:0px;
  7187. width:49px;
  7188. height:17px;
  7189. background:inherit;
  7190. background-color:rgba(255, 255, 255, 0);
  7191. border:none;
  7192. border-radius:0px;
  7193. -moz-box-shadow:none;
  7194. -webkit-box-shadow:none;
  7195. box-shadow:none;
  7196. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7197. font-weight:400;
  7198. font-style:normal;
  7199. font-size:12px;
  7200. color:#AAAAAA;
  7201. }
  7202. #u28779 {
  7203. border-width:0px;
  7204. position:absolute;
  7205. left:146px;
  7206. top:130px;
  7207. width:49px;
  7208. height:17px;
  7209. display:flex;
  7210. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7211. font-weight:400;
  7212. font-style:normal;
  7213. font-size:12px;
  7214. color:#AAAAAA;
  7215. }
  7216. #u28779 .text {
  7217. position:absolute;
  7218. align-self:flex-start;
  7219. padding:0px 0px 0px 0px;
  7220. box-sizing:border-box;
  7221. width:100%;
  7222. }
  7223. #u28779_text {
  7224. border-width:0px;
  7225. white-space:nowrap;
  7226. text-transform:none;
  7227. }
  7228. #u28780_div {
  7229. border-width:0px;
  7230. position:absolute;
  7231. left:0px;
  7232. top:0px;
  7233. width:49px;
  7234. height:17px;
  7235. background:inherit;
  7236. background-color:rgba(255, 255, 255, 0);
  7237. border:none;
  7238. border-radius:0px;
  7239. -moz-box-shadow:none;
  7240. -webkit-box-shadow:none;
  7241. box-shadow:none;
  7242. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7243. font-weight:400;
  7244. font-style:normal;
  7245. font-size:12px;
  7246. color:#AAAAAA;
  7247. }
  7248. #u28780 {
  7249. border-width:0px;
  7250. position:absolute;
  7251. left:146px;
  7252. top:455px;
  7253. width:49px;
  7254. height:17px;
  7255. display:flex;
  7256. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7257. font-weight:400;
  7258. font-style:normal;
  7259. font-size:12px;
  7260. color:#AAAAAA;
  7261. }
  7262. #u28780 .text {
  7263. position:absolute;
  7264. align-self:flex-start;
  7265. padding:0px 0px 0px 0px;
  7266. box-sizing:border-box;
  7267. width:100%;
  7268. }
  7269. #u28780_text {
  7270. border-width:0px;
  7271. white-space:nowrap;
  7272. text-transform:none;
  7273. }
  7274. #u28781_img {
  7275. border-width:0px;
  7276. position:absolute;
  7277. left:0px;
  7278. top:0px;
  7279. width:201px;
  7280. height:2px;
  7281. }
  7282. #u28781 {
  7283. border-width:0px;
  7284. position:absolute;
  7285. left:120px;
  7286. top:433px;
  7287. width:200px;
  7288. height:1px;
  7289. display:flex;
  7290. }
  7291. #u28781 .text {
  7292. position:absolute;
  7293. align-self:center;
  7294. padding:2px 2px 2px 2px;
  7295. box-sizing:border-box;
  7296. width:100%;
  7297. }
  7298. #u28781_text {
  7299. border-width:0px;
  7300. word-wrap:break-word;
  7301. text-transform:none;
  7302. visibility:hidden;
  7303. }
  7304. #u28782_div {
  7305. border-width:0px;
  7306. position:absolute;
  7307. left:0px;
  7308. top:0px;
  7309. width:65px;
  7310. height:22px;
  7311. background:inherit;
  7312. background-color:rgba(255, 255, 255, 0);
  7313. border:none;
  7314. border-radius:0px;
  7315. -moz-box-shadow:none;
  7316. -webkit-box-shadow:none;
  7317. box-shadow:none;
  7318. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7319. font-weight:400;
  7320. font-style:normal;
  7321. font-size:16px;
  7322. }
  7323. #u28782 {
  7324. border-width:0px;
  7325. position:absolute;
  7326. left:146px;
  7327. top:493px;
  7328. width:65px;
  7329. height:22px;
  7330. display:flex;
  7331. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7332. font-weight:400;
  7333. font-style:normal;
  7334. font-size:16px;
  7335. }
  7336. #u28782 .text {
  7337. position:absolute;
  7338. align-self:flex-start;
  7339. padding:0px 0px 0px 0px;
  7340. box-sizing:border-box;
  7341. width:100%;
  7342. }
  7343. #u28782_text {
  7344. border-width:0px;
  7345. white-space:nowrap;
  7346. text-transform:none;
  7347. }
  7348. #u28783_img {
  7349. border-width:0px;
  7350. position:absolute;
  7351. left:0px;
  7352. top:0px;
  7353. width:201px;
  7354. height:2px;
  7355. }
  7356. #u28783 {
  7357. border-width:0px;
  7358. position:absolute;
  7359. left:120px;
  7360. top:584px;
  7361. width:200px;
  7362. height:1px;
  7363. display:flex;
  7364. }
  7365. #u28783 .text {
  7366. position:absolute;
  7367. align-self:center;
  7368. padding:2px 2px 2px 2px;
  7369. box-sizing:border-box;
  7370. width:100%;
  7371. }
  7372. #u28783_text {
  7373. border-width:0px;
  7374. word-wrap:break-word;
  7375. text-transform:none;
  7376. visibility:hidden;
  7377. }
  7378. #u28784_div {
  7379. border-width:0px;
  7380. position:absolute;
  7381. left:0px;
  7382. top:0px;
  7383. width:65px;
  7384. height:22px;
  7385. background:inherit;
  7386. background-color:rgba(255, 255, 255, 0);
  7387. border:none;
  7388. border-radius:0px;
  7389. -moz-box-shadow:none;
  7390. -webkit-box-shadow:none;
  7391. box-shadow:none;
  7392. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7393. font-weight:400;
  7394. font-style:normal;
  7395. font-size:16px;
  7396. }
  7397. #u28784 {
  7398. border-width:0px;
  7399. position:absolute;
  7400. left:146px;
  7401. top:642px;
  7402. width:65px;
  7403. height:22px;
  7404. display:flex;
  7405. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7406. font-weight:400;
  7407. font-style:normal;
  7408. font-size:16px;
  7409. }
  7410. #u28784 .text {
  7411. position:absolute;
  7412. align-self:flex-start;
  7413. padding:0px 0px 0px 0px;
  7414. box-sizing:border-box;
  7415. width:100%;
  7416. }
  7417. #u28784_text {
  7418. border-width:0px;
  7419. white-space:nowrap;
  7420. text-transform:none;
  7421. }
  7422. #u28785_div {
  7423. border-width:0px;
  7424. position:absolute;
  7425. left:0px;
  7426. top:0px;
  7427. width:49px;
  7428. height:17px;
  7429. background:inherit;
  7430. background-color:rgba(255, 255, 255, 0);
  7431. border:none;
  7432. border-radius:0px;
  7433. -moz-box-shadow:none;
  7434. -webkit-box-shadow:none;
  7435. box-shadow:none;
  7436. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7437. font-weight:400;
  7438. font-style:normal;
  7439. font-size:12px;
  7440. color:#AAAAAA;
  7441. }
  7442. #u28785 {
  7443. border-width:0px;
  7444. position:absolute;
  7445. left:146px;
  7446. top:605px;
  7447. width:49px;
  7448. height:17px;
  7449. display:flex;
  7450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7451. font-weight:400;
  7452. font-style:normal;
  7453. font-size:12px;
  7454. color:#AAAAAA;
  7455. }
  7456. #u28785 .text {
  7457. position:absolute;
  7458. align-self:flex-start;
  7459. padding:0px 0px 0px 0px;
  7460. box-sizing:border-box;
  7461. width:100%;
  7462. }
  7463. #u28785_text {
  7464. border-width:0px;
  7465. white-space:nowrap;
  7466. text-transform:none;
  7467. }
  7468. #u28786_div {
  7469. border-width:0px;
  7470. position:absolute;
  7471. left:0px;
  7472. top:0px;
  7473. width:65px;
  7474. height:22px;
  7475. background:inherit;
  7476. background-color:rgba(255, 255, 255, 0);
  7477. border:none;
  7478. border-radius:0px;
  7479. -moz-box-shadow:none;
  7480. -webkit-box-shadow:none;
  7481. box-shadow:none;
  7482. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7483. font-weight:400;
  7484. font-style:normal;
  7485. font-size:16px;
  7486. }
  7487. #u28786 {
  7488. border-width:0px;
  7489. position:absolute;
  7490. left:146px;
  7491. top:684px;
  7492. width:65px;
  7493. height:22px;
  7494. display:flex;
  7495. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7496. font-weight:400;
  7497. font-style:normal;
  7498. font-size:16px;
  7499. }
  7500. #u28786 .text {
  7501. position:absolute;
  7502. align-self:flex-start;
  7503. padding:0px 0px 0px 0px;
  7504. box-sizing:border-box;
  7505. width:100%;
  7506. }
  7507. #u28786_text {
  7508. border-width:0px;
  7509. white-space:nowrap;
  7510. text-transform:none;
  7511. }
  7512. #u28787_div {
  7513. border-width:0px;
  7514. position:absolute;
  7515. left:0px;
  7516. top:0px;
  7517. width:65px;
  7518. height:22px;
  7519. background:inherit;
  7520. background-color:rgba(255, 255, 255, 0);
  7521. border:none;
  7522. border-radius:0px;
  7523. -moz-box-shadow:none;
  7524. -webkit-box-shadow:none;
  7525. box-shadow:none;
  7526. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7527. font-weight:400;
  7528. font-style:normal;
  7529. font-size:16px;
  7530. }
  7531. #u28787 {
  7532. border-width:0px;
  7533. position:absolute;
  7534. left:146px;
  7535. top:535px;
  7536. width:65px;
  7537. height:22px;
  7538. display:flex;
  7539. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7540. font-weight:400;
  7541. font-style:normal;
  7542. font-size:16px;
  7543. }
  7544. #u28787 .text {
  7545. position:absolute;
  7546. align-self:flex-start;
  7547. padding:0px 0px 0px 0px;
  7548. box-sizing:border-box;
  7549. width:100%;
  7550. }
  7551. #u28787_text {
  7552. border-width:0px;
  7553. white-space:nowrap;
  7554. text-transform:none;
  7555. }