styles.css 131 KB

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