styles.css 126 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219
  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. #u98731_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. #u98731 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u98731 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u98731_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u98732_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. #u98732 {
  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. #u98732 .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. #u98732_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u98733_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. #u98733 {
  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. #u98733 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u98733_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u98734 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u98735_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u98735 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u98735 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u98735_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u98736_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. #u98736 {
  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. #u98736 .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. #u98736_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u98737_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. #u98737 {
  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. #u98737 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u98737_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u98738 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u98739_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. #u98739 {
  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. #u98739 .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. #u98739_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u98740_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u98740 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:75px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u98740 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u98740_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u98741 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u98742_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. #u98742 {
  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. #u98742 .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. #u98742_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u98743_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u98743 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:151px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u98743 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u98743_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u98744 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u98745_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. #u98745 {
  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. #u98745 .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. #u98745_text {
  475. border-width:0px;
  476. white-space:nowrap;
  477. text-transform:none;
  478. }
  479. #u98746_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:14px;
  485. height:14px;
  486. }
  487. #u98746 {
  488. border-width:0px;
  489. position:absolute;
  490. left:20px;
  491. top:403px;
  492. width:14px;
  493. height:14px;
  494. display:flex;
  495. }
  496. #u98746 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u98746_text {
  504. border-width:0px;
  505. word-wrap:break-word;
  506. text-transform:none;
  507. visibility:hidden;
  508. }
  509. #u98747 {
  510. border-width:0px;
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:0px;
  515. height:0px;
  516. }
  517. #u98748_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. #u98748 {
  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. #u98748 .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. #u98748_text {
  559. border-width:0px;
  560. white-space:nowrap;
  561. text-transform:none;
  562. }
  563. #u98749_img {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:14px;
  569. height:14px;
  570. }
  571. #u98749 {
  572. border-width:0px;
  573. position:absolute;
  574. left:20px;
  575. top:113px;
  576. width:14px;
  577. height:14px;
  578. display:flex;
  579. }
  580. #u98749 .text {
  581. position:absolute;
  582. align-self:center;
  583. padding:2px 2px 2px 2px;
  584. box-sizing:border-box;
  585. width:100%;
  586. }
  587. #u98749_text {
  588. border-width:0px;
  589. word-wrap:break-word;
  590. text-transform:none;
  591. visibility:hidden;
  592. }
  593. #u98750 {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:0px;
  599. height:0px;
  600. }
  601. #u98751_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. #u98751 {
  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. #u98751 .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. #u98751_text {
  643. border-width:0px;
  644. white-space:nowrap;
  645. text-transform:none;
  646. }
  647. #u98752_img {
  648. border-width:0px;
  649. position:absolute;
  650. left:0px;
  651. top:0px;
  652. width:14px;
  653. height:14px;
  654. }
  655. #u98752 {
  656. border-width:0px;
  657. position:absolute;
  658. left:20px;
  659. top:445px;
  660. width:14px;
  661. height:14px;
  662. display:flex;
  663. }
  664. #u98752 .text {
  665. position:absolute;
  666. align-self:center;
  667. padding:2px 2px 2px 2px;
  668. box-sizing:border-box;
  669. width:100%;
  670. }
  671. #u98752_text {
  672. border-width:0px;
  673. word-wrap:break-word;
  674. text-transform:none;
  675. visibility:hidden;
  676. }
  677. #u98753 {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:0px;
  683. height:0px;
  684. }
  685. #u98754_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. #u98754 {
  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. #u98754 .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. #u98754_text {
  727. border-width:0px;
  728. white-space:nowrap;
  729. text-transform:none;
  730. }
  731. #u98755_img {
  732. border-width:0px;
  733. position:absolute;
  734. left:0px;
  735. top:0px;
  736. width:14px;
  737. height:14px;
  738. }
  739. #u98755 {
  740. border-width:0px;
  741. position:absolute;
  742. left:20px;
  743. top:319px;
  744. width:14px;
  745. height:14px;
  746. display:flex;
  747. }
  748. #u98755 .text {
  749. position:absolute;
  750. align-self:center;
  751. padding:2px 2px 2px 2px;
  752. box-sizing:border-box;
  753. width:100%;
  754. }
  755. #u98755_text {
  756. border-width:0px;
  757. word-wrap:break-word;
  758. text-transform:none;
  759. visibility:hidden;
  760. }
  761. #u98756 {
  762. border-width:0px;
  763. position:absolute;
  764. left:0px;
  765. top:0px;
  766. width:0px;
  767. height:0px;
  768. }
  769. #u98757_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. #u98757 {
  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. #u98757 .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. #u98757_text {
  811. border-width:0px;
  812. white-space:nowrap;
  813. text-transform:none;
  814. }
  815. #u98758_img {
  816. border-width:0px;
  817. position:absolute;
  818. left:0px;
  819. top:0px;
  820. width:14px;
  821. height:14px;
  822. }
  823. #u98758 {
  824. border-width:0px;
  825. position:absolute;
  826. left:20px;
  827. top:193px;
  828. width:14px;
  829. height:14px;
  830. display:flex;
  831. }
  832. #u98758 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 2px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u98758_text {
  840. border-width:0px;
  841. word-wrap:break-word;
  842. text-transform:none;
  843. visibility:hidden;
  844. }
  845. #u98759 {
  846. border-width:0px;
  847. position:absolute;
  848. left:0px;
  849. top:0px;
  850. width:0px;
  851. height:0px;
  852. }
  853. #u98760_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. #u98760 {
  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. #u98760 .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. #u98760_text {
  895. border-width:0px;
  896. white-space:nowrap;
  897. text-transform:none;
  898. }
  899. #u98761_img {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:14px;
  905. height:14px;
  906. }
  907. #u98761 {
  908. border-width:0px;
  909. position:absolute;
  910. left:20px;
  911. top:361px;
  912. width:14px;
  913. height:14px;
  914. display:flex;
  915. }
  916. #u98761 .text {
  917. position:absolute;
  918. align-self:center;
  919. padding:2px 2px 2px 2px;
  920. box-sizing:border-box;
  921. width:100%;
  922. }
  923. #u98761_text {
  924. border-width:0px;
  925. word-wrap:break-word;
  926. text-transform:none;
  927. visibility:hidden;
  928. }
  929. #u98762 {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:0px;
  935. height:0px;
  936. }
  937. #u98763_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. #u98763 {
  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. #u98763 .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. #u98763_text {
  979. border-width:0px;
  980. white-space:nowrap;
  981. text-transform:none;
  982. }
  983. #u98764_img {
  984. border-width:0px;
  985. position:absolute;
  986. left:0px;
  987. top:0px;
  988. width:14px;
  989. height:14px;
  990. }
  991. #u98764 {
  992. border-width:0px;
  993. position:absolute;
  994. left:20px;
  995. top:487px;
  996. width:14px;
  997. height:14px;
  998. display:flex;
  999. }
  1000. #u98764 .text {
  1001. position:absolute;
  1002. align-self:center;
  1003. padding:2px 2px 2px 2px;
  1004. box-sizing:border-box;
  1005. width:100%;
  1006. }
  1007. #u98764_text {
  1008. border-width:0px;
  1009. word-wrap:break-word;
  1010. text-transform:none;
  1011. visibility:hidden;
  1012. }
  1013. #u98765_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. #u98765 {
  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. #u98765 .text {
  1046. position:absolute;
  1047. align-self:center;
  1048. padding:0px 0px 0px 0px;
  1049. box-sizing:border-box;
  1050. width:100%;
  1051. }
  1052. #u98765_text {
  1053. border-width:0px;
  1054. white-space:nowrap;
  1055. text-transform:none;
  1056. }
  1057. #u98766_img {
  1058. border-width:0px;
  1059. position:absolute;
  1060. left:0px;
  1061. top:0px;
  1062. width:22px;
  1063. height:22px;
  1064. }
  1065. #u98766 {
  1066. border-width:0px;
  1067. position:absolute;
  1068. left:20px;
  1069. top:1144px;
  1070. width:22px;
  1071. height:22px;
  1072. display:flex;
  1073. }
  1074. #u98766 .text {
  1075. position:absolute;
  1076. align-self:center;
  1077. padding:2px 2px 2px 2px;
  1078. box-sizing:border-box;
  1079. width:100%;
  1080. }
  1081. #u98766_text {
  1082. border-width:0px;
  1083. word-wrap:break-word;
  1084. text-transform:none;
  1085. visibility:hidden;
  1086. }
  1087. #u98767_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. #u98767 {
  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. #u98767 .text {
  1120. position:absolute;
  1121. align-self:center;
  1122. padding:0px 0px 0px 0px;
  1123. box-sizing:border-box;
  1124. width:100%;
  1125. }
  1126. #u98767_text {
  1127. border-width:0px;
  1128. white-space:nowrap;
  1129. text-transform:none;
  1130. }
  1131. #u98768_img {
  1132. border-width:0px;
  1133. position:absolute;
  1134. left:0px;
  1135. top:0px;
  1136. width:22px;
  1137. height:22px;
  1138. }
  1139. #u98768 {
  1140. border-width:0px;
  1141. position:absolute;
  1142. left:20px;
  1143. top:1186px;
  1144. width:22px;
  1145. height:22px;
  1146. display:flex;
  1147. }
  1148. #u98768 .text {
  1149. position:absolute;
  1150. align-self:center;
  1151. padding:2px 2px 2px 2px;
  1152. box-sizing:border-box;
  1153. width:100%;
  1154. }
  1155. #u98768_text {
  1156. border-width:0px;
  1157. word-wrap:break-word;
  1158. text-transform:none;
  1159. visibility:hidden;
  1160. }
  1161. #u98769 {
  1162. border-width:0px;
  1163. position:absolute;
  1164. left:0px;
  1165. top:0px;
  1166. width:0px;
  1167. height:0px;
  1168. }
  1169. #u98770_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. #u98770 {
  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. #u98770 .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. #u98770_text {
  1211. border-width:0px;
  1212. white-space:nowrap;
  1213. text-transform:none;
  1214. }
  1215. #u98771_img {
  1216. border-width:0px;
  1217. position:absolute;
  1218. left:0px;
  1219. top:0px;
  1220. width:14px;
  1221. height:14px;
  1222. }
  1223. #u98771 {
  1224. border-width:0px;
  1225. position:absolute;
  1226. left:20px;
  1227. top:235px;
  1228. width:14px;
  1229. height:14px;
  1230. display:flex;
  1231. }
  1232. #u98771 .text {
  1233. position:absolute;
  1234. align-self:center;
  1235. padding:2px 2px 2px 2px;
  1236. box-sizing:border-box;
  1237. width:100%;
  1238. }
  1239. #u98771_text {
  1240. border-width:0px;
  1241. word-wrap:break-word;
  1242. text-transform:none;
  1243. visibility:hidden;
  1244. }
  1245. #u98772 {
  1246. border-width:0px;
  1247. position:absolute;
  1248. left:0px;
  1249. top:0px;
  1250. width:0px;
  1251. height:0px;
  1252. }
  1253. #u98773_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. #u98773 {
  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. #u98773 .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. #u98773_text {
  1295. border-width:0px;
  1296. white-space:nowrap;
  1297. text-transform:none;
  1298. }
  1299. #u98774_img {
  1300. border-width:0px;
  1301. position:absolute;
  1302. left:0px;
  1303. top:0px;
  1304. width:14px;
  1305. height:14px;
  1306. }
  1307. #u98774 {
  1308. border-width:0px;
  1309. position:absolute;
  1310. left:20px;
  1311. top:277px;
  1312. width:14px;
  1313. height:14px;
  1314. display:flex;
  1315. }
  1316. #u98774 .text {
  1317. position:absolute;
  1318. align-self:center;
  1319. padding:2px 2px 2px 2px;
  1320. box-sizing:border-box;
  1321. width:100%;
  1322. }
  1323. #u98774_text {
  1324. border-width:0px;
  1325. word-wrap:break-word;
  1326. text-transform:none;
  1327. visibility:hidden;
  1328. }
  1329. #u98775 {
  1330. border-width:0px;
  1331. position:absolute;
  1332. left:0px;
  1333. top:0px;
  1334. width:0px;
  1335. height:0px;
  1336. }
  1337. #u98776_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. #u98776_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. #u98776_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. #u98776 {
  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. #u98776 .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. #u98776_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. #u98776.disabled {
  1428. }
  1429. .u98776_input_option {
  1430. font-size:14px;
  1431. }
  1432. #u98777_img {
  1433. border-width:0px;
  1434. position:absolute;
  1435. left:0px;
  1436. top:0px;
  1437. width:22px;
  1438. height:22px;
  1439. }
  1440. #u98777 {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:1194px;
  1444. top:14px;
  1445. width:22px;
  1446. height:22px;
  1447. display:flex;
  1448. }
  1449. #u98777 .text {
  1450. position:absolute;
  1451. align-self:center;
  1452. padding:2px 2px 2px 2px;
  1453. box-sizing:border-box;
  1454. width:100%;
  1455. }
  1456. #u98777_text {
  1457. border-width:0px;
  1458. word-wrap:break-word;
  1459. text-transform:none;
  1460. visibility:hidden;
  1461. }
  1462. #u98778_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. #u98778 {
  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. #u98778 .text {
  1497. position:absolute;
  1498. align-self:center;
  1499. padding:0px 0px 0px 0px;
  1500. box-sizing:border-box;
  1501. width:100%;
  1502. }
  1503. #u98778_text {
  1504. border-width:0px;
  1505. word-wrap:break-word;
  1506. text-transform:none;
  1507. }
  1508. #u98779_img {
  1509. border-width:0px;
  1510. position:absolute;
  1511. left:0px;
  1512. top:0px;
  1513. width:2px;
  1514. height:12px;
  1515. }
  1516. #u98779 {
  1517. border-width:0px;
  1518. position:absolute;
  1519. left:1452px;
  1520. top:19px;
  1521. width:1px;
  1522. height:11px;
  1523. display:flex;
  1524. }
  1525. #u98779 .text {
  1526. position:absolute;
  1527. align-self:center;
  1528. padding:2px 2px 2px 2px;
  1529. box-sizing:border-box;
  1530. width:100%;
  1531. }
  1532. #u98779_text {
  1533. border-width:0px;
  1534. word-wrap:break-word;
  1535. text-transform:none;
  1536. visibility:hidden;
  1537. }
  1538. #u98780_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. #u98780 {
  1554. border-width:0px;
  1555. position:absolute;
  1556. left:330px;
  1557. top:50px;
  1558. width:1259px;
  1559. height:1180px;
  1560. display:flex;
  1561. }
  1562. #u98780 .text {
  1563. position:absolute;
  1564. align-self:center;
  1565. padding:2px 2px 2px 2px;
  1566. box-sizing:border-box;
  1567. width:100%;
  1568. }
  1569. #u98780_text {
  1570. border-width:0px;
  1571. word-wrap:break-word;
  1572. text-transform:none;
  1573. visibility:hidden;
  1574. }
  1575. #u98781 {
  1576. border-width:0px;
  1577. position:absolute;
  1578. left:0px;
  1579. top:0px;
  1580. width:0px;
  1581. height:0px;
  1582. }
  1583. #u98782_div {
  1584. border-width:0px;
  1585. position:absolute;
  1586. left:0px;
  1587. top:0px;
  1588. width:200px;
  1589. height:1180px;
  1590. background:inherit;
  1591. background-color:rgba(255, 255, 255, 1);
  1592. border:none;
  1593. border-radius:0px;
  1594. -moz-box-shadow:none;
  1595. -webkit-box-shadow:none;
  1596. box-shadow:none;
  1597. }
  1598. #u98782 {
  1599. border-width:0px;
  1600. position:absolute;
  1601. left:120px;
  1602. top:50px;
  1603. width:200px;
  1604. height:1180px;
  1605. display:flex;
  1606. }
  1607. #u98782 .text {
  1608. position:absolute;
  1609. align-self:center;
  1610. padding:2px 2px 2px 2px;
  1611. box-sizing:border-box;
  1612. width:100%;
  1613. }
  1614. #u98782_text {
  1615. border-width:0px;
  1616. word-wrap:break-word;
  1617. text-transform:none;
  1618. visibility:hidden;
  1619. }
  1620. #u98783_div {
  1621. border-width:0px;
  1622. position:absolute;
  1623. left:0px;
  1624. top:0px;
  1625. width:200px;
  1626. height:60px;
  1627. background:inherit;
  1628. background-color:rgba(224, 231, 247, 1);
  1629. border:none;
  1630. border-radius:0px;
  1631. -moz-box-shadow:none;
  1632. -webkit-box-shadow:none;
  1633. box-shadow:none;
  1634. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1635. font-weight:500;
  1636. font-style:normal;
  1637. font-size:18px;
  1638. }
  1639. #u98783 {
  1640. border-width:0px;
  1641. position:absolute;
  1642. left:120px;
  1643. top:50px;
  1644. width:200px;
  1645. height:60px;
  1646. display:flex;
  1647. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1648. font-weight:500;
  1649. font-style:normal;
  1650. font-size:18px;
  1651. }
  1652. #u98783 .text {
  1653. position:absolute;
  1654. align-self:center;
  1655. padding:0px 0px 0px 20px;
  1656. box-sizing:border-box;
  1657. width:100%;
  1658. }
  1659. #u98783_text {
  1660. border-width:0px;
  1661. word-wrap:break-word;
  1662. text-transform:none;
  1663. }
  1664. #u98784_div {
  1665. border-width:0px;
  1666. position:absolute;
  1667. left:0px;
  1668. top:0px;
  1669. width:65px;
  1670. height:22px;
  1671. background:inherit;
  1672. background-color:rgba(255, 255, 255, 0);
  1673. border:none;
  1674. border-radius:0px;
  1675. -moz-box-shadow:none;
  1676. -webkit-box-shadow:none;
  1677. box-shadow:none;
  1678. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1679. font-weight:400;
  1680. font-style:normal;
  1681. font-size:16px;
  1682. }
  1683. #u98784 {
  1684. border-width:0px;
  1685. position:absolute;
  1686. left:145px;
  1687. top:500px;
  1688. width:65px;
  1689. height:22px;
  1690. display:flex;
  1691. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1692. font-weight:400;
  1693. font-style:normal;
  1694. font-size:16px;
  1695. }
  1696. #u98784 .text {
  1697. position:absolute;
  1698. align-self:flex-start;
  1699. padding:0px 0px 0px 0px;
  1700. box-sizing:border-box;
  1701. width:100%;
  1702. }
  1703. #u98784_text {
  1704. border-width:0px;
  1705. white-space:nowrap;
  1706. text-transform:none;
  1707. }
  1708. #u98785_div {
  1709. border-width:0px;
  1710. position:absolute;
  1711. left:0px;
  1712. top:0px;
  1713. width:79px;
  1714. height:17px;
  1715. background:inherit;
  1716. background-color:rgba(255, 255, 255, 0);
  1717. border:none;
  1718. border-radius:0px;
  1719. -moz-box-shadow:none;
  1720. -webkit-box-shadow:none;
  1721. box-shadow:none;
  1722. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1723. font-weight:400;
  1724. font-style:normal;
  1725. font-size:12px;
  1726. color:#AAAAAA;
  1727. }
  1728. #u98785 {
  1729. border-width:0px;
  1730. position:absolute;
  1731. left:143px;
  1732. top:463px;
  1733. width:79px;
  1734. height:17px;
  1735. display:flex;
  1736. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1737. font-weight:400;
  1738. font-style:normal;
  1739. font-size:12px;
  1740. color:#AAAAAA;
  1741. }
  1742. #u98785 .text {
  1743. position:absolute;
  1744. align-self:flex-start;
  1745. padding:0px 0px 0px 0px;
  1746. box-sizing:border-box;
  1747. width:100%;
  1748. }
  1749. #u98785_text {
  1750. border-width:0px;
  1751. white-space:nowrap;
  1752. text-transform:none;
  1753. }
  1754. #u98786_div {
  1755. border-width:0px;
  1756. position:absolute;
  1757. left:0px;
  1758. top:0px;
  1759. width:49px;
  1760. height:17px;
  1761. background:inherit;
  1762. background-color:rgba(255, 255, 255, 0);
  1763. border:none;
  1764. border-radius:0px;
  1765. -moz-box-shadow:none;
  1766. -webkit-box-shadow:none;
  1767. box-shadow:none;
  1768. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1769. font-weight:400;
  1770. font-style:normal;
  1771. font-size:12px;
  1772. color:#AAAAAA;
  1773. }
  1774. #u98786 {
  1775. border-width:0px;
  1776. position:absolute;
  1777. left:144px;
  1778. top:131px;
  1779. width:49px;
  1780. height:17px;
  1781. display:flex;
  1782. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1783. font-weight:400;
  1784. font-style:normal;
  1785. font-size:12px;
  1786. color:#AAAAAA;
  1787. }
  1788. #u98786 .text {
  1789. position:absolute;
  1790. align-self:flex-start;
  1791. padding:0px 0px 0px 0px;
  1792. box-sizing:border-box;
  1793. width:100%;
  1794. }
  1795. #u98786_text {
  1796. border-width:0px;
  1797. white-space:nowrap;
  1798. text-transform:none;
  1799. }
  1800. #u98787_div {
  1801. border-width:0px;
  1802. position:absolute;
  1803. left:0px;
  1804. top:0px;
  1805. width:65px;
  1806. height:22px;
  1807. background:inherit;
  1808. background-color:rgba(255, 255, 255, 0);
  1809. border:none;
  1810. border-radius:0px;
  1811. -moz-box-shadow:none;
  1812. -webkit-box-shadow:none;
  1813. box-shadow:none;
  1814. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1815. font-weight:400;
  1816. font-style:normal;
  1817. font-size:16px;
  1818. }
  1819. #u98787 {
  1820. border-width:0px;
  1821. position:absolute;
  1822. left:146px;
  1823. top:168px;
  1824. width:65px;
  1825. height:22px;
  1826. display:flex;
  1827. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1828. font-weight:400;
  1829. font-style:normal;
  1830. font-size:16px;
  1831. }
  1832. #u98787 .text {
  1833. position:absolute;
  1834. align-self:flex-start;
  1835. padding:0px 0px 0px 0px;
  1836. box-sizing:border-box;
  1837. width:100%;
  1838. }
  1839. #u98787_text {
  1840. border-width:0px;
  1841. white-space:nowrap;
  1842. text-transform:none;
  1843. }
  1844. #u98788_img {
  1845. border-width:0px;
  1846. position:absolute;
  1847. left:0px;
  1848. top:0px;
  1849. width:201px;
  1850. height:2px;
  1851. }
  1852. #u98788 {
  1853. border-width:0px;
  1854. position:absolute;
  1855. left:120px;
  1856. top:442px;
  1857. width:200px;
  1858. height:1px;
  1859. display:flex;
  1860. }
  1861. #u98788 .text {
  1862. position:absolute;
  1863. align-self:center;
  1864. padding:2px 2px 2px 2px;
  1865. box-sizing:border-box;
  1866. width:100%;
  1867. }
  1868. #u98788_text {
  1869. border-width:0px;
  1870. word-wrap:break-word;
  1871. text-transform:none;
  1872. visibility:hidden;
  1873. }
  1874. #u98789_div {
  1875. border-width:0px;
  1876. position:absolute;
  1877. left:0px;
  1878. top:0px;
  1879. width:65px;
  1880. height:22px;
  1881. background:inherit;
  1882. background-color:rgba(255, 255, 255, 0);
  1883. border:none;
  1884. border-radius:0px;
  1885. -moz-box-shadow:none;
  1886. -webkit-box-shadow:none;
  1887. box-shadow:none;
  1888. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1889. font-weight:400;
  1890. font-style:normal;
  1891. font-size:16px;
  1892. }
  1893. #u98789 {
  1894. border-width:0px;
  1895. position:absolute;
  1896. left:145px;
  1897. top:542px;
  1898. width:65px;
  1899. height:22px;
  1900. display:flex;
  1901. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1902. font-weight:400;
  1903. font-style:normal;
  1904. font-size:16px;
  1905. }
  1906. #u98789 .text {
  1907. position:absolute;
  1908. align-self:flex-start;
  1909. padding:0px 0px 0px 0px;
  1910. box-sizing:border-box;
  1911. width:100%;
  1912. }
  1913. #u98789_text {
  1914. border-width:0px;
  1915. white-space:nowrap;
  1916. text-transform:none;
  1917. }
  1918. #u98790_div {
  1919. border-width:0px;
  1920. position:absolute;
  1921. left:0px;
  1922. top:0px;
  1923. width:65px;
  1924. height:22px;
  1925. background:inherit;
  1926. background-color:rgba(255, 255, 255, 0);
  1927. border:none;
  1928. border-radius:0px;
  1929. -moz-box-shadow:none;
  1930. -webkit-box-shadow:none;
  1931. box-shadow:none;
  1932. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1933. font-weight:400;
  1934. font-style:normal;
  1935. font-size:16px;
  1936. }
  1937. #u98790 {
  1938. border-width:0px;
  1939. position:absolute;
  1940. left:146px;
  1941. top:272px;
  1942. width:65px;
  1943. height:22px;
  1944. display:flex;
  1945. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1946. font-weight:400;
  1947. font-style:normal;
  1948. font-size:16px;
  1949. }
  1950. #u98790 .text {
  1951. position:absolute;
  1952. align-self:flex-start;
  1953. padding:0px 0px 0px 0px;
  1954. box-sizing:border-box;
  1955. width:100%;
  1956. }
  1957. #u98790_text {
  1958. border-width:0px;
  1959. white-space:nowrap;
  1960. text-transform:none;
  1961. }
  1962. #u98791_div {
  1963. border-width:0px;
  1964. position:absolute;
  1965. left:0px;
  1966. top:0px;
  1967. width:49px;
  1968. height:17px;
  1969. background:inherit;
  1970. background-color:rgba(255, 255, 255, 0);
  1971. border:none;
  1972. border-radius:0px;
  1973. -moz-box-shadow:none;
  1974. -webkit-box-shadow:none;
  1975. box-shadow:none;
  1976. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1977. font-weight:400;
  1978. font-style:normal;
  1979. font-size:12px;
  1980. color:#AAAAAA;
  1981. }
  1982. #u98791 {
  1983. border-width:0px;
  1984. position:absolute;
  1985. left:144px;
  1986. top:235px;
  1987. width:49px;
  1988. height:17px;
  1989. display:flex;
  1990. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1991. font-weight:400;
  1992. font-style:normal;
  1993. font-size:12px;
  1994. color:#AAAAAA;
  1995. }
  1996. #u98791 .text {
  1997. position:absolute;
  1998. align-self:flex-start;
  1999. padding:0px 0px 0px 0px;
  2000. box-sizing:border-box;
  2001. width:100%;
  2002. }
  2003. #u98791_text {
  2004. border-width:0px;
  2005. white-space:nowrap;
  2006. text-transform:none;
  2007. }
  2008. #u98792_img {
  2009. border-width:0px;
  2010. position:absolute;
  2011. left:0px;
  2012. top:0px;
  2013. width:201px;
  2014. height:2px;
  2015. }
  2016. #u98792 {
  2017. border-width:0px;
  2018. position:absolute;
  2019. left:121px;
  2020. top:214px;
  2021. width:200px;
  2022. height:1px;
  2023. display:flex;
  2024. }
  2025. #u98792 .text {
  2026. position:absolute;
  2027. align-self:center;
  2028. padding:2px 2px 2px 2px;
  2029. box-sizing:border-box;
  2030. width:100%;
  2031. }
  2032. #u98792_text {
  2033. border-width:0px;
  2034. word-wrap:break-word;
  2035. text-transform:none;
  2036. visibility:hidden;
  2037. }
  2038. #u98793_div {
  2039. border-width:0px;
  2040. position:absolute;
  2041. left:0px;
  2042. top:0px;
  2043. width:65px;
  2044. height:22px;
  2045. background:inherit;
  2046. background-color:rgba(255, 255, 255, 0);
  2047. border:none;
  2048. border-radius:0px;
  2049. -moz-box-shadow:none;
  2050. -webkit-box-shadow:none;
  2051. box-shadow:none;
  2052. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2053. font-weight:400;
  2054. font-style:normal;
  2055. font-size:16px;
  2056. }
  2057. #u98793 {
  2058. border-width:0px;
  2059. position:absolute;
  2060. left:146px;
  2061. top:314px;
  2062. width:65px;
  2063. height:22px;
  2064. display:flex;
  2065. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2066. font-weight:400;
  2067. font-style:normal;
  2068. font-size:16px;
  2069. }
  2070. #u98793 .text {
  2071. position:absolute;
  2072. align-self:flex-start;
  2073. padding:0px 0px 0px 0px;
  2074. box-sizing:border-box;
  2075. width:100%;
  2076. }
  2077. #u98793_text {
  2078. border-width:0px;
  2079. white-space:nowrap;
  2080. text-transform:none;
  2081. }
  2082. #u98794_div {
  2083. border-width:0px;
  2084. position:absolute;
  2085. left:0px;
  2086. top:0px;
  2087. width:65px;
  2088. height:22px;
  2089. background:inherit;
  2090. background-color:rgba(255, 255, 255, 0);
  2091. border:none;
  2092. border-radius:0px;
  2093. -moz-box-shadow:none;
  2094. -webkit-box-shadow:none;
  2095. box-shadow:none;
  2096. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2097. font-weight:400;
  2098. font-style:normal;
  2099. font-size:16px;
  2100. }
  2101. #u98794 {
  2102. border-width:0px;
  2103. position:absolute;
  2104. left:146px;
  2105. top:356px;
  2106. width:65px;
  2107. height:22px;
  2108. display:flex;
  2109. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2110. font-weight:400;
  2111. font-style:normal;
  2112. font-size:16px;
  2113. }
  2114. #u98794 .text {
  2115. position:absolute;
  2116. align-self:flex-start;
  2117. padding:0px 0px 0px 0px;
  2118. box-sizing:border-box;
  2119. width:100%;
  2120. }
  2121. #u98794_text {
  2122. border-width:0px;
  2123. white-space:nowrap;
  2124. text-transform:none;
  2125. }
  2126. #u98795_div {
  2127. border-width:0px;
  2128. position:absolute;
  2129. left:0px;
  2130. top:0px;
  2131. width:81px;
  2132. height:22px;
  2133. background:inherit;
  2134. background-color:rgba(255, 255, 255, 0);
  2135. border:none;
  2136. border-radius:0px;
  2137. -moz-box-shadow:none;
  2138. -webkit-box-shadow:none;
  2139. box-shadow:none;
  2140. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2141. font-weight:400;
  2142. font-style:normal;
  2143. font-size:16px;
  2144. }
  2145. #u98795 {
  2146. border-width:0px;
  2147. position:absolute;
  2148. left:146px;
  2149. top:398px;
  2150. width:81px;
  2151. height:22px;
  2152. display:flex;
  2153. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2154. font-weight:400;
  2155. font-style:normal;
  2156. font-size:16px;
  2157. }
  2158. #u98795 .text {
  2159. position:absolute;
  2160. align-self:flex-start;
  2161. padding:0px 0px 0px 0px;
  2162. box-sizing:border-box;
  2163. width:100%;
  2164. }
  2165. #u98795_text {
  2166. border-width:0px;
  2167. white-space:nowrap;
  2168. text-transform:none;
  2169. }
  2170. #u98796_div {
  2171. border-width:0px;
  2172. position:absolute;
  2173. left:0px;
  2174. top:0px;
  2175. width:65px;
  2176. height:22px;
  2177. background:inherit;
  2178. background-color:rgba(255, 255, 255, 0);
  2179. border:none;
  2180. border-radius:0px;
  2181. -moz-box-shadow:none;
  2182. -webkit-box-shadow:none;
  2183. box-shadow:none;
  2184. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2185. font-weight:400;
  2186. font-style:normal;
  2187. font-size:16px;
  2188. }
  2189. #u98796 {
  2190. border-width:0px;
  2191. position:absolute;
  2192. left:145px;
  2193. top:810px;
  2194. width:65px;
  2195. height:22px;
  2196. display:flex;
  2197. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2198. font-weight:400;
  2199. font-style:normal;
  2200. font-size:16px;
  2201. }
  2202. #u98796 .text {
  2203. position:absolute;
  2204. align-self:flex-start;
  2205. padding:0px 0px 0px 0px;
  2206. box-sizing:border-box;
  2207. width:100%;
  2208. }
  2209. #u98796_text {
  2210. border-width:0px;
  2211. white-space:nowrap;
  2212. text-transform:none;
  2213. }
  2214. #u98797_div {
  2215. border-width:0px;
  2216. position:absolute;
  2217. left:0px;
  2218. top:0px;
  2219. width:65px;
  2220. height:22px;
  2221. background:inherit;
  2222. background-color:rgba(255, 255, 255, 0);
  2223. border:none;
  2224. border-radius:0px;
  2225. -moz-box-shadow:none;
  2226. -webkit-box-shadow:none;
  2227. box-shadow:none;
  2228. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2229. font-weight:400;
  2230. font-style:normal;
  2231. font-size:16px;
  2232. }
  2233. #u98797 {
  2234. border-width:0px;
  2235. position:absolute;
  2236. left:145px;
  2237. top:642px;
  2238. width:65px;
  2239. height:22px;
  2240. display:flex;
  2241. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2242. font-weight:400;
  2243. font-style:normal;
  2244. font-size:16px;
  2245. }
  2246. #u98797 .text {
  2247. position:absolute;
  2248. align-self:flex-start;
  2249. padding:0px 0px 0px 0px;
  2250. box-sizing:border-box;
  2251. width:100%;
  2252. }
  2253. #u98797_text {
  2254. border-width:0px;
  2255. white-space:nowrap;
  2256. text-transform:none;
  2257. }
  2258. #u98798_div {
  2259. border-width:0px;
  2260. position:absolute;
  2261. left:0px;
  2262. top:0px;
  2263. width:49px;
  2264. height:17px;
  2265. background:inherit;
  2266. background-color:rgba(255, 255, 255, 0);
  2267. border:none;
  2268. border-radius:0px;
  2269. -moz-box-shadow:none;
  2270. -webkit-box-shadow:none;
  2271. box-shadow:none;
  2272. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2273. font-weight:400;
  2274. font-style:normal;
  2275. font-size:12px;
  2276. color:#AAAAAA;
  2277. }
  2278. #u98798 {
  2279. border-width:0px;
  2280. position:absolute;
  2281. left:143px;
  2282. top:605px;
  2283. width:49px;
  2284. height:17px;
  2285. display:flex;
  2286. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2287. font-weight:400;
  2288. font-style:normal;
  2289. font-size:12px;
  2290. color:#AAAAAA;
  2291. }
  2292. #u98798 .text {
  2293. position:absolute;
  2294. align-self:flex-start;
  2295. padding:0px 0px 0px 0px;
  2296. box-sizing:border-box;
  2297. width:100%;
  2298. }
  2299. #u98798_text {
  2300. border-width:0px;
  2301. white-space:nowrap;
  2302. text-transform:none;
  2303. }
  2304. #u98799_img {
  2305. border-width:0px;
  2306. position:absolute;
  2307. left:0px;
  2308. top:0px;
  2309. width:201px;
  2310. height:2px;
  2311. }
  2312. #u98799 {
  2313. border-width:0px;
  2314. position:absolute;
  2315. left:120px;
  2316. top:584px;
  2317. width:200px;
  2318. height:1px;
  2319. display:flex;
  2320. }
  2321. #u98799 .text {
  2322. position:absolute;
  2323. align-self:center;
  2324. padding:2px 2px 2px 2px;
  2325. box-sizing:border-box;
  2326. width:100%;
  2327. }
  2328. #u98799_text {
  2329. border-width:0px;
  2330. word-wrap:break-word;
  2331. text-transform:none;
  2332. visibility:hidden;
  2333. }
  2334. #u98800_div {
  2335. border-width:0px;
  2336. position:absolute;
  2337. left:0px;
  2338. top:0px;
  2339. width:65px;
  2340. height:22px;
  2341. background:inherit;
  2342. background-color:rgba(255, 255, 255, 0);
  2343. border:none;
  2344. border-radius:0px;
  2345. -moz-box-shadow:none;
  2346. -webkit-box-shadow:none;
  2347. box-shadow:none;
  2348. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2349. font-weight:400;
  2350. font-style:normal;
  2351. font-size:16px;
  2352. }
  2353. #u98800 {
  2354. border-width:0px;
  2355. position:absolute;
  2356. left:145px;
  2357. top:684px;
  2358. width:65px;
  2359. height:22px;
  2360. display:flex;
  2361. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2362. font-weight:400;
  2363. font-style:normal;
  2364. font-size:16px;
  2365. }
  2366. #u98800 .text {
  2367. position:absolute;
  2368. align-self:flex-start;
  2369. padding:0px 0px 0px 0px;
  2370. box-sizing:border-box;
  2371. width:100%;
  2372. }
  2373. #u98800_text {
  2374. border-width:0px;
  2375. white-space:nowrap;
  2376. text-transform:none;
  2377. }
  2378. #u98801_div {
  2379. border-width:0px;
  2380. position:absolute;
  2381. left:0px;
  2382. top:0px;
  2383. width:65px;
  2384. height:22px;
  2385. background:inherit;
  2386. background-color:rgba(255, 255, 255, 0);
  2387. border:none;
  2388. border-radius:0px;
  2389. -moz-box-shadow:none;
  2390. -webkit-box-shadow:none;
  2391. box-shadow:none;
  2392. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2393. font-weight:400;
  2394. font-style:normal;
  2395. font-size:16px;
  2396. }
  2397. #u98801 {
  2398. border-width:0px;
  2399. position:absolute;
  2400. left:145px;
  2401. top:726px;
  2402. width:65px;
  2403. height:22px;
  2404. display:flex;
  2405. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2406. font-weight:400;
  2407. font-style:normal;
  2408. font-size:16px;
  2409. }
  2410. #u98801 .text {
  2411. position:absolute;
  2412. align-self:flex-start;
  2413. padding:0px 0px 0px 0px;
  2414. box-sizing:border-box;
  2415. width:100%;
  2416. }
  2417. #u98801_text {
  2418. border-width:0px;
  2419. white-space:nowrap;
  2420. text-transform:none;
  2421. }
  2422. #u98802_div {
  2423. border-width:0px;
  2424. position:absolute;
  2425. left:0px;
  2426. top:0px;
  2427. width:97px;
  2428. height:22px;
  2429. background:inherit;
  2430. background-color:rgba(255, 255, 255, 0);
  2431. border:none;
  2432. border-radius:0px;
  2433. -moz-box-shadow:none;
  2434. -webkit-box-shadow:none;
  2435. box-shadow:none;
  2436. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2437. font-weight:400;
  2438. font-style:normal;
  2439. font-size:16px;
  2440. }
  2441. #u98802 {
  2442. border-width:0px;
  2443. position:absolute;
  2444. left:145px;
  2445. top:768px;
  2446. width:97px;
  2447. height:22px;
  2448. display:flex;
  2449. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2450. font-weight:400;
  2451. font-style:normal;
  2452. font-size:16px;
  2453. }
  2454. #u98802 .text {
  2455. position:absolute;
  2456. align-self:flex-start;
  2457. padding:0px 0px 0px 0px;
  2458. box-sizing:border-box;
  2459. width:100%;
  2460. }
  2461. #u98802_text {
  2462. border-width:0px;
  2463. white-space:nowrap;
  2464. text-transform:none;
  2465. }
  2466. #u98803_div {
  2467. border-width:0px;
  2468. position:absolute;
  2469. left:0px;
  2470. top:0px;
  2471. width:65px;
  2472. height:22px;
  2473. background:inherit;
  2474. background-color:rgba(255, 255, 255, 0);
  2475. border:none;
  2476. border-radius:0px;
  2477. -moz-box-shadow:none;
  2478. -webkit-box-shadow:none;
  2479. box-shadow:none;
  2480. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2481. font-weight:400;
  2482. font-style:normal;
  2483. font-size:16px;
  2484. }
  2485. #u98803 {
  2486. border-width:0px;
  2487. position:absolute;
  2488. left:145px;
  2489. top:910px;
  2490. width:65px;
  2491. height:22px;
  2492. display:flex;
  2493. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2494. font-weight:400;
  2495. font-style:normal;
  2496. font-size:16px;
  2497. }
  2498. #u98803 .text {
  2499. position:absolute;
  2500. align-self:flex-start;
  2501. padding:0px 0px 0px 0px;
  2502. box-sizing:border-box;
  2503. width:100%;
  2504. }
  2505. #u98803_text {
  2506. border-width:0px;
  2507. white-space:nowrap;
  2508. text-transform:none;
  2509. }
  2510. #u98804_div {
  2511. border-width:0px;
  2512. position:absolute;
  2513. left:0px;
  2514. top:0px;
  2515. width:49px;
  2516. height:17px;
  2517. background:inherit;
  2518. background-color:rgba(255, 255, 255, 0);
  2519. border:none;
  2520. border-radius:0px;
  2521. -moz-box-shadow:none;
  2522. -webkit-box-shadow:none;
  2523. box-shadow:none;
  2524. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2525. font-weight:400;
  2526. font-style:normal;
  2527. font-size:12px;
  2528. color:#AAAAAA;
  2529. }
  2530. #u98804 {
  2531. border-width:0px;
  2532. position:absolute;
  2533. left:143px;
  2534. top:873px;
  2535. width:49px;
  2536. height:17px;
  2537. display:flex;
  2538. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2539. font-weight:400;
  2540. font-style:normal;
  2541. font-size:12px;
  2542. color:#AAAAAA;
  2543. }
  2544. #u98804 .text {
  2545. position:absolute;
  2546. align-self:flex-start;
  2547. padding:0px 0px 0px 0px;
  2548. box-sizing:border-box;
  2549. width:100%;
  2550. }
  2551. #u98804_text {
  2552. border-width:0px;
  2553. white-space:nowrap;
  2554. text-transform:none;
  2555. }
  2556. #u98805_img {
  2557. border-width:0px;
  2558. position:absolute;
  2559. left:0px;
  2560. top:0px;
  2561. width:201px;
  2562. height:2px;
  2563. }
  2564. #u98805 {
  2565. border-width:0px;
  2566. position:absolute;
  2567. left:120px;
  2568. top:852px;
  2569. width:200px;
  2570. height:1px;
  2571. display:flex;
  2572. }
  2573. #u98805 .text {
  2574. position:absolute;
  2575. align-self:center;
  2576. padding:2px 2px 2px 2px;
  2577. box-sizing:border-box;
  2578. width:100%;
  2579. }
  2580. #u98805_text {
  2581. border-width:0px;
  2582. word-wrap:break-word;
  2583. text-transform:none;
  2584. visibility:hidden;
  2585. }
  2586. #u98806_div {
  2587. border-width:0px;
  2588. position:absolute;
  2589. left:0px;
  2590. top:0px;
  2591. width:65px;
  2592. height:22px;
  2593. background:inherit;
  2594. background-color:rgba(255, 255, 255, 0);
  2595. border:none;
  2596. border-radius:0px;
  2597. -moz-box-shadow:none;
  2598. -webkit-box-shadow:none;
  2599. box-shadow:none;
  2600. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2601. font-weight:400;
  2602. font-style:normal;
  2603. font-size:16px;
  2604. }
  2605. #u98806 {
  2606. border-width:0px;
  2607. position:absolute;
  2608. left:145px;
  2609. top:952px;
  2610. width:65px;
  2611. height:22px;
  2612. display:flex;
  2613. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2614. font-weight:400;
  2615. font-style:normal;
  2616. font-size:16px;
  2617. }
  2618. #u98806 .text {
  2619. position:absolute;
  2620. align-self:flex-start;
  2621. padding:0px 0px 0px 0px;
  2622. box-sizing:border-box;
  2623. width:100%;
  2624. }
  2625. #u98806_text {
  2626. border-width:0px;
  2627. white-space:nowrap;
  2628. text-transform:none;
  2629. }
  2630. #u98807_div {
  2631. border-width:0px;
  2632. position:absolute;
  2633. left:0px;
  2634. top:0px;
  2635. width:577px;
  2636. height:17px;
  2637. background:inherit;
  2638. background-color:rgba(255, 255, 255, 0);
  2639. border:none;
  2640. border-radius:0px;
  2641. -moz-box-shadow:none;
  2642. -webkit-box-shadow:none;
  2643. box-shadow:none;
  2644. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2645. font-weight:400;
  2646. font-style:normal;
  2647. font-size:12px;
  2648. color:#D9001B;
  2649. text-align:center;
  2650. }
  2651. #u98807 {
  2652. border-width:0px;
  2653. position:absolute;
  2654. left:992px;
  2655. top:153px;
  2656. width:577px;
  2657. height:17px;
  2658. display:flex;
  2659. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2660. font-weight:400;
  2661. font-style:normal;
  2662. font-size:12px;
  2663. color:#D9001B;
  2664. text-align:center;
  2665. }
  2666. #u98807 .text {
  2667. position:absolute;
  2668. align-self:flex-start;
  2669. padding:0px 0px 0px 0px;
  2670. box-sizing:border-box;
  2671. width:100%;
  2672. }
  2673. #u98807_text {
  2674. border-width:0px;
  2675. white-space:nowrap;
  2676. text-transform:none;
  2677. }
  2678. #u98808 {
  2679. border-width:0px;
  2680. position:absolute;
  2681. left:350px;
  2682. top:193px;
  2683. width:1225px;
  2684. height:311px;
  2685. }
  2686. #u98809_img {
  2687. border-width:0px;
  2688. position:absolute;
  2689. left:0px;
  2690. top:0px;
  2691. width:109px;
  2692. height:38px;
  2693. }
  2694. #u98809 {
  2695. border-width:0px;
  2696. position:absolute;
  2697. left:0px;
  2698. top:0px;
  2699. width:109px;
  2700. height:38px;
  2701. display:flex;
  2702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2703. font-weight:400;
  2704. font-style:normal;
  2705. font-size:12px;
  2706. color:#FFFFFF;
  2707. }
  2708. #u98809 .text {
  2709. position:absolute;
  2710. align-self:center;
  2711. padding:2px 2px 2px 0px;
  2712. box-sizing:border-box;
  2713. width:100%;
  2714. }
  2715. #u98809_text {
  2716. border-width:0px;
  2717. word-wrap:break-word;
  2718. text-transform:none;
  2719. }
  2720. #u98810_img {
  2721. border-width:0px;
  2722. position:absolute;
  2723. left:0px;
  2724. top:0px;
  2725. width:100px;
  2726. height:38px;
  2727. }
  2728. #u98810 {
  2729. border-width:0px;
  2730. position:absolute;
  2731. left:109px;
  2732. top:0px;
  2733. width:100px;
  2734. height:38px;
  2735. display:flex;
  2736. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2737. font-weight:400;
  2738. font-style:normal;
  2739. font-size:12px;
  2740. color:#FFFFFF;
  2741. }
  2742. #u98810 .text {
  2743. position:absolute;
  2744. align-self:center;
  2745. padding:2px 2px 2px 0px;
  2746. box-sizing:border-box;
  2747. width:100%;
  2748. }
  2749. #u98810_text {
  2750. border-width:0px;
  2751. word-wrap:break-word;
  2752. text-transform:none;
  2753. }
  2754. #u98811_img {
  2755. border-width:0px;
  2756. position:absolute;
  2757. left:0px;
  2758. top:0px;
  2759. width:100px;
  2760. height:38px;
  2761. }
  2762. #u98811 {
  2763. border-width:0px;
  2764. position:absolute;
  2765. left:209px;
  2766. top:0px;
  2767. width:100px;
  2768. height:38px;
  2769. display:flex;
  2770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2771. font-weight:400;
  2772. font-style:normal;
  2773. font-size:12px;
  2774. color:#FFFFFF;
  2775. }
  2776. #u98811 .text {
  2777. position:absolute;
  2778. align-self:center;
  2779. padding:2px 2px 2px 0px;
  2780. box-sizing:border-box;
  2781. width:100%;
  2782. }
  2783. #u98811_text {
  2784. border-width:0px;
  2785. word-wrap:break-word;
  2786. text-transform:none;
  2787. }
  2788. #u98812_img {
  2789. border-width:0px;
  2790. position:absolute;
  2791. left:0px;
  2792. top:0px;
  2793. width:100px;
  2794. height:38px;
  2795. }
  2796. #u98812 {
  2797. border-width:0px;
  2798. position:absolute;
  2799. left:309px;
  2800. top:0px;
  2801. width:100px;
  2802. height:38px;
  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:#FFFFFF;
  2809. }
  2810. #u98812 .text {
  2811. position:absolute;
  2812. align-self:center;
  2813. padding:2px 2px 2px 0px;
  2814. box-sizing:border-box;
  2815. width:100%;
  2816. }
  2817. #u98812_text {
  2818. border-width:0px;
  2819. word-wrap:break-word;
  2820. text-transform:none;
  2821. }
  2822. #u98813_img {
  2823. border-width:0px;
  2824. position:absolute;
  2825. left:0px;
  2826. top:0px;
  2827. width:100px;
  2828. height:38px;
  2829. }
  2830. #u98813 {
  2831. border-width:0px;
  2832. position:absolute;
  2833. left:409px;
  2834. top:0px;
  2835. width:100px;
  2836. height:38px;
  2837. display:flex;
  2838. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2839. font-weight:400;
  2840. font-style:normal;
  2841. font-size:12px;
  2842. color:#FFFFFF;
  2843. }
  2844. #u98813 .text {
  2845. position:absolute;
  2846. align-self:center;
  2847. padding:2px 2px 2px 0px;
  2848. box-sizing:border-box;
  2849. width:100%;
  2850. }
  2851. #u98813_text {
  2852. border-width:0px;
  2853. word-wrap:break-word;
  2854. text-transform:none;
  2855. }
  2856. #u98814_img {
  2857. border-width:0px;
  2858. position:absolute;
  2859. left:0px;
  2860. top:0px;
  2861. width:100px;
  2862. height:38px;
  2863. }
  2864. #u98814 {
  2865. border-width:0px;
  2866. position:absolute;
  2867. left:509px;
  2868. top:0px;
  2869. width:100px;
  2870. height:38px;
  2871. display:flex;
  2872. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2873. font-weight:400;
  2874. font-style:normal;
  2875. font-size:12px;
  2876. color:#FFFFFF;
  2877. }
  2878. #u98814 .text {
  2879. position:absolute;
  2880. align-self:center;
  2881. padding:2px 2px 2px 0px;
  2882. box-sizing:border-box;
  2883. width:100%;
  2884. }
  2885. #u98814_text {
  2886. border-width:0px;
  2887. word-wrap:break-word;
  2888. text-transform:none;
  2889. }
  2890. #u98815_img {
  2891. border-width:0px;
  2892. position:absolute;
  2893. left:0px;
  2894. top:0px;
  2895. width:100px;
  2896. height:38px;
  2897. }
  2898. #u98815 {
  2899. border-width:0px;
  2900. position:absolute;
  2901. left:609px;
  2902. top:0px;
  2903. width:100px;
  2904. height:38px;
  2905. display:flex;
  2906. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2907. font-weight:400;
  2908. font-style:normal;
  2909. font-size:12px;
  2910. color:#FFFFFF;
  2911. }
  2912. #u98815 .text {
  2913. position:absolute;
  2914. align-self:center;
  2915. padding:2px 2px 2px 0px;
  2916. box-sizing:border-box;
  2917. width:100%;
  2918. }
  2919. #u98815_text {
  2920. border-width:0px;
  2921. word-wrap:break-word;
  2922. text-transform:none;
  2923. }
  2924. #u98816_img {
  2925. border-width:0px;
  2926. position:absolute;
  2927. left:0px;
  2928. top:0px;
  2929. width:103px;
  2930. height:38px;
  2931. }
  2932. #u98816 {
  2933. border-width:0px;
  2934. position:absolute;
  2935. left:709px;
  2936. top:0px;
  2937. width:103px;
  2938. height:38px;
  2939. display:flex;
  2940. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2941. font-weight:400;
  2942. font-style:normal;
  2943. font-size:12px;
  2944. color:#FFFFFF;
  2945. }
  2946. #u98816 .text {
  2947. position:absolute;
  2948. align-self:center;
  2949. padding:2px 2px 2px 0px;
  2950. box-sizing:border-box;
  2951. width:100%;
  2952. }
  2953. #u98816_text {
  2954. border-width:0px;
  2955. word-wrap:break-word;
  2956. text-transform:none;
  2957. }
  2958. #u98817_img {
  2959. border-width:0px;
  2960. position:absolute;
  2961. left:0px;
  2962. top:0px;
  2963. width:100px;
  2964. height:38px;
  2965. }
  2966. #u98817 {
  2967. border-width:0px;
  2968. position:absolute;
  2969. left:812px;
  2970. top:0px;
  2971. width:100px;
  2972. height:38px;
  2973. display:flex;
  2974. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2975. font-weight:400;
  2976. font-style:normal;
  2977. font-size:12px;
  2978. color:#FFFFFF;
  2979. }
  2980. #u98817 .text {
  2981. position:absolute;
  2982. align-self:center;
  2983. padding:2px 2px 2px 0px;
  2984. box-sizing:border-box;
  2985. width:100%;
  2986. }
  2987. #u98817_text {
  2988. border-width:0px;
  2989. word-wrap:break-word;
  2990. text-transform:none;
  2991. }
  2992. #u98818_img {
  2993. border-width:0px;
  2994. position:absolute;
  2995. left:0px;
  2996. top:0px;
  2997. width:109px;
  2998. height:38px;
  2999. }
  3000. #u98818 {
  3001. border-width:0px;
  3002. position:absolute;
  3003. left:912px;
  3004. top:0px;
  3005. width:109px;
  3006. height:38px;
  3007. display:flex;
  3008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3009. font-weight:400;
  3010. font-style:normal;
  3011. font-size:12px;
  3012. color:#FFFFFF;
  3013. }
  3014. #u98818 .text {
  3015. position:absolute;
  3016. align-self:center;
  3017. padding:2px 2px 2px 0px;
  3018. box-sizing:border-box;
  3019. width:100%;
  3020. }
  3021. #u98818_text {
  3022. border-width:0px;
  3023. word-wrap:break-word;
  3024. text-transform:none;
  3025. }
  3026. #u98819_img {
  3027. border-width:0px;
  3028. position:absolute;
  3029. left:0px;
  3030. top:0px;
  3031. width:94px;
  3032. height:38px;
  3033. }
  3034. #u98819 {
  3035. border-width:0px;
  3036. position:absolute;
  3037. left:1021px;
  3038. top:0px;
  3039. width:94px;
  3040. height:38px;
  3041. display:flex;
  3042. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3043. font-weight:400;
  3044. font-style:normal;
  3045. font-size:12px;
  3046. color:#FFFFFF;
  3047. }
  3048. #u98819 .text {
  3049. position:absolute;
  3050. align-self:center;
  3051. padding:2px 2px 2px 0px;
  3052. box-sizing:border-box;
  3053. width:100%;
  3054. }
  3055. #u98819_text {
  3056. border-width:0px;
  3057. word-wrap:break-word;
  3058. text-transform:none;
  3059. }
  3060. #u98820_img {
  3061. border-width:0px;
  3062. position:absolute;
  3063. left:0px;
  3064. top:0px;
  3065. width:110px;
  3066. height:38px;
  3067. }
  3068. #u98820 {
  3069. border-width:0px;
  3070. position:absolute;
  3071. left:1115px;
  3072. top:0px;
  3073. width:110px;
  3074. height:38px;
  3075. display:flex;
  3076. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3077. font-weight:400;
  3078. font-style:normal;
  3079. font-size:12px;
  3080. color:#FFFFFF;
  3081. }
  3082. #u98820 .text {
  3083. position:absolute;
  3084. align-self:center;
  3085. padding:2px 2px 2px 0px;
  3086. box-sizing:border-box;
  3087. width:100%;
  3088. }
  3089. #u98820_text {
  3090. border-width:0px;
  3091. word-wrap:break-word;
  3092. text-transform:none;
  3093. }
  3094. #u98821_img {
  3095. border-width:0px;
  3096. position:absolute;
  3097. left:0px;
  3098. top:0px;
  3099. width:109px;
  3100. height:39px;
  3101. }
  3102. #u98821 {
  3103. border-width:0px;
  3104. position:absolute;
  3105. left:0px;
  3106. top:38px;
  3107. width:109px;
  3108. height:39px;
  3109. display:flex;
  3110. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3111. font-weight:400;
  3112. font-style:normal;
  3113. font-size:12px;
  3114. color:#333333;
  3115. line-height:40px;
  3116. }
  3117. #u98821 .text {
  3118. position:absolute;
  3119. align-self:center;
  3120. padding:2px 2px 2px 0px;
  3121. box-sizing:border-box;
  3122. width:100%;
  3123. }
  3124. #u98821_text {
  3125. border-width:0px;
  3126. word-wrap:break-word;
  3127. text-transform:none;
  3128. visibility:hidden;
  3129. }
  3130. #u98822_img {
  3131. border-width:0px;
  3132. position:absolute;
  3133. left:0px;
  3134. top:0px;
  3135. width:100px;
  3136. height:39px;
  3137. }
  3138. #u98822 {
  3139. border-width:0px;
  3140. position:absolute;
  3141. left:109px;
  3142. top:38px;
  3143. width:100px;
  3144. height:39px;
  3145. display:flex;
  3146. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3147. font-weight:400;
  3148. font-style:normal;
  3149. font-size:12px;
  3150. }
  3151. #u98822 .text {
  3152. position:absolute;
  3153. align-self:center;
  3154. padding:2px 2px 2px 0px;
  3155. box-sizing:border-box;
  3156. width:100%;
  3157. }
  3158. #u98822_text {
  3159. border-width:0px;
  3160. word-wrap:break-word;
  3161. text-transform:none;
  3162. }
  3163. #u98823_img {
  3164. border-width:0px;
  3165. position:absolute;
  3166. left:0px;
  3167. top:0px;
  3168. width:100px;
  3169. height:39px;
  3170. }
  3171. #u98823 {
  3172. border-width:0px;
  3173. position:absolute;
  3174. left:209px;
  3175. top:38px;
  3176. width:100px;
  3177. height:39px;
  3178. display:flex;
  3179. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3180. font-weight:400;
  3181. font-style:normal;
  3182. font-size:12px;
  3183. color:#606266;
  3184. }
  3185. #u98823 .text {
  3186. position:absolute;
  3187. align-self:center;
  3188. padding:2px 2px 2px 0px;
  3189. box-sizing:border-box;
  3190. width:100%;
  3191. }
  3192. #u98823_text {
  3193. border-width:0px;
  3194. word-wrap:break-word;
  3195. text-transform:none;
  3196. visibility:hidden;
  3197. }
  3198. #u98824_img {
  3199. border-width:0px;
  3200. position:absolute;
  3201. left:0px;
  3202. top:0px;
  3203. width:100px;
  3204. height:39px;
  3205. }
  3206. #u98824 {
  3207. border-width:0px;
  3208. position:absolute;
  3209. left:309px;
  3210. top:38px;
  3211. width:100px;
  3212. height:39px;
  3213. display:flex;
  3214. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3215. font-weight:400;
  3216. font-style:normal;
  3217. font-size:12px;
  3218. color:#333333;
  3219. }
  3220. #u98824 .text {
  3221. position:absolute;
  3222. align-self:center;
  3223. padding:2px 2px 2px 0px;
  3224. box-sizing:border-box;
  3225. width:100%;
  3226. }
  3227. #u98824_text {
  3228. border-width:0px;
  3229. word-wrap:break-word;
  3230. text-transform:none;
  3231. visibility:hidden;
  3232. }
  3233. #u98825_img {
  3234. border-width:0px;
  3235. position:absolute;
  3236. left:0px;
  3237. top:0px;
  3238. width:100px;
  3239. height:39px;
  3240. }
  3241. #u98825 {
  3242. border-width:0px;
  3243. position:absolute;
  3244. left:409px;
  3245. top:38px;
  3246. width:100px;
  3247. height:39px;
  3248. display:flex;
  3249. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3250. font-weight:400;
  3251. font-style:normal;
  3252. font-size:12px;
  3253. color:#333333;
  3254. }
  3255. #u98825 .text {
  3256. position:absolute;
  3257. align-self:center;
  3258. padding:2px 2px 2px 0px;
  3259. box-sizing:border-box;
  3260. width:100%;
  3261. }
  3262. #u98825_text {
  3263. border-width:0px;
  3264. word-wrap:break-word;
  3265. text-transform:none;
  3266. visibility:hidden;
  3267. }
  3268. #u98826_img {
  3269. border-width:0px;
  3270. position:absolute;
  3271. left:0px;
  3272. top:0px;
  3273. width:100px;
  3274. height:39px;
  3275. }
  3276. #u98826 {
  3277. border-width:0px;
  3278. position:absolute;
  3279. left:509px;
  3280. top:38px;
  3281. width:100px;
  3282. height:39px;
  3283. display:flex;
  3284. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3285. font-weight:400;
  3286. font-style:normal;
  3287. font-size:12px;
  3288. color:#333333;
  3289. }
  3290. #u98826 .text {
  3291. position:absolute;
  3292. align-self:center;
  3293. padding:2px 2px 2px 0px;
  3294. box-sizing:border-box;
  3295. width:100%;
  3296. }
  3297. #u98826_text {
  3298. border-width:0px;
  3299. word-wrap:break-word;
  3300. text-transform:none;
  3301. visibility:hidden;
  3302. }
  3303. #u98827_img {
  3304. border-width:0px;
  3305. position:absolute;
  3306. left:0px;
  3307. top:0px;
  3308. width:100px;
  3309. height:39px;
  3310. }
  3311. #u98827 {
  3312. border-width:0px;
  3313. position:absolute;
  3314. left:609px;
  3315. top:38px;
  3316. width:100px;
  3317. height:39px;
  3318. display:flex;
  3319. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3320. font-weight:400;
  3321. font-style:normal;
  3322. font-size:12px;
  3323. color:#333333;
  3324. }
  3325. #u98827 .text {
  3326. position:absolute;
  3327. align-self:center;
  3328. padding:2px 2px 2px 0px;
  3329. box-sizing:border-box;
  3330. width:100%;
  3331. }
  3332. #u98827_text {
  3333. border-width:0px;
  3334. word-wrap:break-word;
  3335. text-transform:none;
  3336. visibility:hidden;
  3337. }
  3338. #u98828_img {
  3339. border-width:0px;
  3340. position:absolute;
  3341. left:0px;
  3342. top:0px;
  3343. width:103px;
  3344. height:39px;
  3345. }
  3346. #u98828 {
  3347. border-width:0px;
  3348. position:absolute;
  3349. left:709px;
  3350. top:38px;
  3351. width:103px;
  3352. height:39px;
  3353. display:flex;
  3354. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3355. font-weight:400;
  3356. font-style:normal;
  3357. font-size:12px;
  3358. color:#333333;
  3359. }
  3360. #u98828 .text {
  3361. position:absolute;
  3362. align-self:center;
  3363. padding:2px 2px 2px 0px;
  3364. box-sizing:border-box;
  3365. width:100%;
  3366. }
  3367. #u98828_text {
  3368. border-width:0px;
  3369. word-wrap:break-word;
  3370. text-transform:none;
  3371. visibility:hidden;
  3372. }
  3373. #u98829_img {
  3374. border-width:0px;
  3375. position:absolute;
  3376. left:0px;
  3377. top:0px;
  3378. width:100px;
  3379. height:39px;
  3380. }
  3381. #u98829 {
  3382. border-width:0px;
  3383. position:absolute;
  3384. left:812px;
  3385. top:38px;
  3386. width:100px;
  3387. height:39px;
  3388. display:flex;
  3389. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3390. font-weight:400;
  3391. font-style:normal;
  3392. font-size:12px;
  3393. color:#333333;
  3394. }
  3395. #u98829 .text {
  3396. position:absolute;
  3397. align-self:center;
  3398. padding:2px 2px 2px 0px;
  3399. box-sizing:border-box;
  3400. width:100%;
  3401. }
  3402. #u98829_text {
  3403. border-width:0px;
  3404. word-wrap:break-word;
  3405. text-transform:none;
  3406. }
  3407. #u98830_img {
  3408. border-width:0px;
  3409. position:absolute;
  3410. left:0px;
  3411. top:0px;
  3412. width:109px;
  3413. height:39px;
  3414. }
  3415. #u98830 {
  3416. border-width:0px;
  3417. position:absolute;
  3418. left:912px;
  3419. top:38px;
  3420. width:109px;
  3421. height:39px;
  3422. display:flex;
  3423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3424. font-weight:400;
  3425. font-style:normal;
  3426. font-size:12px;
  3427. color:#333333;
  3428. }
  3429. #u98830 .text {
  3430. position:absolute;
  3431. align-self:center;
  3432. padding:2px 2px 2px 0px;
  3433. box-sizing:border-box;
  3434. width:100%;
  3435. }
  3436. #u98830_text {
  3437. border-width:0px;
  3438. word-wrap:break-word;
  3439. text-transform:none;
  3440. }
  3441. #u98831_img {
  3442. border-width:0px;
  3443. position:absolute;
  3444. left:0px;
  3445. top:0px;
  3446. width:94px;
  3447. height:39px;
  3448. }
  3449. #u98831 {
  3450. border-width:0px;
  3451. position:absolute;
  3452. left:1021px;
  3453. top:38px;
  3454. width:94px;
  3455. height:39px;
  3456. display:flex;
  3457. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3458. font-weight:400;
  3459. font-style:normal;
  3460. font-size:12px;
  3461. color:#333333;
  3462. }
  3463. #u98831 .text {
  3464. position:absolute;
  3465. align-self:center;
  3466. padding:2px 2px 2px 0px;
  3467. box-sizing:border-box;
  3468. width:100%;
  3469. }
  3470. #u98831_text {
  3471. border-width:0px;
  3472. word-wrap:break-word;
  3473. text-transform:none;
  3474. visibility:hidden;
  3475. }
  3476. #u98832_img {
  3477. border-width:0px;
  3478. position:absolute;
  3479. left:0px;
  3480. top:0px;
  3481. width:110px;
  3482. height:39px;
  3483. }
  3484. #u98832 {
  3485. border-width:0px;
  3486. position:absolute;
  3487. left:1115px;
  3488. top:38px;
  3489. width:110px;
  3490. height:39px;
  3491. display:flex;
  3492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3493. font-weight:400;
  3494. font-style:normal;
  3495. font-size:12px;
  3496. color:#298FFF;
  3497. line-height:35px;
  3498. }
  3499. #u98832 .text {
  3500. position:absolute;
  3501. align-self:center;
  3502. padding:2px 2px 2px 0px;
  3503. box-sizing:border-box;
  3504. width:100%;
  3505. }
  3506. #u98832_text {
  3507. border-width:0px;
  3508. word-wrap:break-word;
  3509. text-transform:none;
  3510. }
  3511. #u98833_img {
  3512. border-width:0px;
  3513. position:absolute;
  3514. left:0px;
  3515. top:0px;
  3516. width:109px;
  3517. height:44px;
  3518. }
  3519. #u98833 {
  3520. border-width:0px;
  3521. position:absolute;
  3522. left:0px;
  3523. top:77px;
  3524. width:109px;
  3525. height:44px;
  3526. display:flex;
  3527. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3528. font-weight:400;
  3529. font-style:normal;
  3530. font-size:12px;
  3531. color:#333333;
  3532. line-height:40px;
  3533. }
  3534. #u98833 .text {
  3535. position:absolute;
  3536. align-self:center;
  3537. padding:2px 2px 2px 0px;
  3538. box-sizing:border-box;
  3539. width:100%;
  3540. }
  3541. #u98833_text {
  3542. border-width:0px;
  3543. word-wrap:break-word;
  3544. text-transform:none;
  3545. visibility:hidden;
  3546. }
  3547. #u98834_img {
  3548. border-width:0px;
  3549. position:absolute;
  3550. left:0px;
  3551. top:0px;
  3552. width:100px;
  3553. height:44px;
  3554. }
  3555. #u98834 {
  3556. border-width:0px;
  3557. position:absolute;
  3558. left:109px;
  3559. top:77px;
  3560. width:100px;
  3561. height:44px;
  3562. display:flex;
  3563. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3564. font-weight:400;
  3565. font-style:normal;
  3566. font-size:12px;
  3567. }
  3568. #u98834 .text {
  3569. position:absolute;
  3570. align-self:center;
  3571. padding:2px 2px 2px 0px;
  3572. box-sizing:border-box;
  3573. width:100%;
  3574. }
  3575. #u98834_text {
  3576. border-width:0px;
  3577. word-wrap:break-word;
  3578. text-transform:none;
  3579. visibility:hidden;
  3580. }
  3581. #u98835_img {
  3582. border-width:0px;
  3583. position:absolute;
  3584. left:0px;
  3585. top:0px;
  3586. width:100px;
  3587. height:44px;
  3588. }
  3589. #u98835 {
  3590. border-width:0px;
  3591. position:absolute;
  3592. left:209px;
  3593. top:77px;
  3594. width:100px;
  3595. height:44px;
  3596. display:flex;
  3597. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3598. font-weight:400;
  3599. font-style:normal;
  3600. font-size:12px;
  3601. color:#606266;
  3602. }
  3603. #u98835 .text {
  3604. position:absolute;
  3605. align-self:center;
  3606. padding:2px 2px 2px 0px;
  3607. box-sizing:border-box;
  3608. width:100%;
  3609. }
  3610. #u98835_text {
  3611. border-width:0px;
  3612. word-wrap:break-word;
  3613. text-transform:none;
  3614. visibility:hidden;
  3615. }
  3616. #u98836_img {
  3617. border-width:0px;
  3618. position:absolute;
  3619. left:0px;
  3620. top:0px;
  3621. width:100px;
  3622. height:44px;
  3623. }
  3624. #u98836 {
  3625. border-width:0px;
  3626. position:absolute;
  3627. left:309px;
  3628. top:77px;
  3629. width:100px;
  3630. height:44px;
  3631. display:flex;
  3632. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3633. font-weight:400;
  3634. font-style:normal;
  3635. font-size:12px;
  3636. color:#333333;
  3637. }
  3638. #u98836 .text {
  3639. position:absolute;
  3640. align-self:center;
  3641. padding:2px 2px 2px 0px;
  3642. box-sizing:border-box;
  3643. width:100%;
  3644. }
  3645. #u98836_text {
  3646. border-width:0px;
  3647. word-wrap:break-word;
  3648. text-transform:none;
  3649. visibility:hidden;
  3650. }
  3651. #u98837_img {
  3652. border-width:0px;
  3653. position:absolute;
  3654. left:0px;
  3655. top:0px;
  3656. width:100px;
  3657. height:44px;
  3658. }
  3659. #u98837 {
  3660. border-width:0px;
  3661. position:absolute;
  3662. left:409px;
  3663. top:77px;
  3664. width:100px;
  3665. height:44px;
  3666. display:flex;
  3667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3668. font-weight:400;
  3669. font-style:normal;
  3670. font-size:12px;
  3671. color:#333333;
  3672. }
  3673. #u98837 .text {
  3674. position:absolute;
  3675. align-self:center;
  3676. padding:2px 2px 2px 0px;
  3677. box-sizing:border-box;
  3678. width:100%;
  3679. }
  3680. #u98837_text {
  3681. border-width:0px;
  3682. word-wrap:break-word;
  3683. text-transform:none;
  3684. visibility:hidden;
  3685. }
  3686. #u98838_img {
  3687. border-width:0px;
  3688. position:absolute;
  3689. left:0px;
  3690. top:0px;
  3691. width:100px;
  3692. height:44px;
  3693. }
  3694. #u98838 {
  3695. border-width:0px;
  3696. position:absolute;
  3697. left:509px;
  3698. top:77px;
  3699. width:100px;
  3700. height:44px;
  3701. display:flex;
  3702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3703. font-weight:400;
  3704. font-style:normal;
  3705. font-size:12px;
  3706. color:#333333;
  3707. }
  3708. #u98838 .text {
  3709. position:absolute;
  3710. align-self:center;
  3711. padding:2px 2px 2px 0px;
  3712. box-sizing:border-box;
  3713. width:100%;
  3714. }
  3715. #u98838_text {
  3716. border-width:0px;
  3717. word-wrap:break-word;
  3718. text-transform:none;
  3719. visibility:hidden;
  3720. }
  3721. #u98839_img {
  3722. border-width:0px;
  3723. position:absolute;
  3724. left:0px;
  3725. top:0px;
  3726. width:100px;
  3727. height:44px;
  3728. }
  3729. #u98839 {
  3730. border-width:0px;
  3731. position:absolute;
  3732. left:609px;
  3733. top:77px;
  3734. width:100px;
  3735. height:44px;
  3736. display:flex;
  3737. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3738. font-weight:400;
  3739. font-style:normal;
  3740. font-size:12px;
  3741. color:#333333;
  3742. }
  3743. #u98839 .text {
  3744. position:absolute;
  3745. align-self:center;
  3746. padding:2px 2px 2px 0px;
  3747. box-sizing:border-box;
  3748. width:100%;
  3749. }
  3750. #u98839_text {
  3751. border-width:0px;
  3752. word-wrap:break-word;
  3753. text-transform:none;
  3754. visibility:hidden;
  3755. }
  3756. #u98840_img {
  3757. border-width:0px;
  3758. position:absolute;
  3759. left:0px;
  3760. top:0px;
  3761. width:103px;
  3762. height:44px;
  3763. }
  3764. #u98840 {
  3765. border-width:0px;
  3766. position:absolute;
  3767. left:709px;
  3768. top:77px;
  3769. width:103px;
  3770. height:44px;
  3771. display:flex;
  3772. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3773. font-weight:400;
  3774. font-style:normal;
  3775. font-size:12px;
  3776. color:#333333;
  3777. }
  3778. #u98840 .text {
  3779. position:absolute;
  3780. align-self:center;
  3781. padding:2px 2px 2px 0px;
  3782. box-sizing:border-box;
  3783. width:100%;
  3784. }
  3785. #u98840_text {
  3786. border-width:0px;
  3787. word-wrap:break-word;
  3788. text-transform:none;
  3789. visibility:hidden;
  3790. }
  3791. #u98841_img {
  3792. border-width:0px;
  3793. position:absolute;
  3794. left:0px;
  3795. top:0px;
  3796. width:100px;
  3797. height:44px;
  3798. }
  3799. #u98841 {
  3800. border-width:0px;
  3801. position:absolute;
  3802. left:812px;
  3803. top:77px;
  3804. width:100px;
  3805. height:44px;
  3806. display:flex;
  3807. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3808. font-weight:400;
  3809. font-style:normal;
  3810. font-size:12px;
  3811. color:#333333;
  3812. }
  3813. #u98841 .text {
  3814. position:absolute;
  3815. align-self:center;
  3816. padding:2px 2px 2px 0px;
  3817. box-sizing:border-box;
  3818. width:100%;
  3819. }
  3820. #u98841_text {
  3821. border-width:0px;
  3822. word-wrap:break-word;
  3823. text-transform:none;
  3824. }
  3825. #u98842_img {
  3826. border-width:0px;
  3827. position:absolute;
  3828. left:0px;
  3829. top:0px;
  3830. width:109px;
  3831. height:44px;
  3832. }
  3833. #u98842 {
  3834. border-width:0px;
  3835. position:absolute;
  3836. left:912px;
  3837. top:77px;
  3838. width:109px;
  3839. height:44px;
  3840. display:flex;
  3841. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3842. font-weight:400;
  3843. font-style:normal;
  3844. font-size:12px;
  3845. color:#333333;
  3846. }
  3847. #u98842 .text {
  3848. position:absolute;
  3849. align-self:center;
  3850. padding:2px 2px 2px 0px;
  3851. box-sizing:border-box;
  3852. width:100%;
  3853. }
  3854. #u98842_text {
  3855. border-width:0px;
  3856. word-wrap:break-word;
  3857. text-transform:none;
  3858. visibility:hidden;
  3859. }
  3860. #u98843_img {
  3861. border-width:0px;
  3862. position:absolute;
  3863. left:0px;
  3864. top:0px;
  3865. width:94px;
  3866. height:44px;
  3867. }
  3868. #u98843 {
  3869. border-width:0px;
  3870. position:absolute;
  3871. left:1021px;
  3872. top:77px;
  3873. width:94px;
  3874. height:44px;
  3875. display:flex;
  3876. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3877. font-weight:400;
  3878. font-style:normal;
  3879. font-size:12px;
  3880. color:#333333;
  3881. }
  3882. #u98843 .text {
  3883. position:absolute;
  3884. align-self:center;
  3885. padding:2px 2px 2px 0px;
  3886. box-sizing:border-box;
  3887. width:100%;
  3888. }
  3889. #u98843_text {
  3890. border-width:0px;
  3891. word-wrap:break-word;
  3892. text-transform:none;
  3893. visibility:hidden;
  3894. }
  3895. #u98844_img {
  3896. border-width:0px;
  3897. position:absolute;
  3898. left:0px;
  3899. top:0px;
  3900. width:110px;
  3901. height:44px;
  3902. }
  3903. #u98844 {
  3904. border-width:0px;
  3905. position:absolute;
  3906. left:1115px;
  3907. top:77px;
  3908. width:110px;
  3909. height:44px;
  3910. display:flex;
  3911. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3912. font-weight:400;
  3913. font-style:normal;
  3914. font-size:12px;
  3915. color:#1890FF;
  3916. }
  3917. #u98844 .text {
  3918. position:absolute;
  3919. align-self:center;
  3920. padding:2px 2px 2px 0px;
  3921. box-sizing:border-box;
  3922. width:100%;
  3923. }
  3924. #u98844_text {
  3925. border-width:0px;
  3926. word-wrap:break-word;
  3927. text-transform:none;
  3928. visibility:hidden;
  3929. }
  3930. #u98845_img {
  3931. border-width:0px;
  3932. position:absolute;
  3933. left:0px;
  3934. top:0px;
  3935. width:109px;
  3936. height:38px;
  3937. }
  3938. #u98845 {
  3939. border-width:0px;
  3940. position:absolute;
  3941. left:0px;
  3942. top:121px;
  3943. width:109px;
  3944. height:38px;
  3945. display:flex;
  3946. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3947. font-weight:400;
  3948. font-style:normal;
  3949. font-size:12px;
  3950. color:#333333;
  3951. line-height:40px;
  3952. }
  3953. #u98845 .text {
  3954. position:absolute;
  3955. align-self:center;
  3956. padding:2px 2px 2px 0px;
  3957. box-sizing:border-box;
  3958. width:100%;
  3959. }
  3960. #u98845_text {
  3961. border-width:0px;
  3962. word-wrap:break-word;
  3963. text-transform:none;
  3964. visibility:hidden;
  3965. }
  3966. #u98846_img {
  3967. border-width:0px;
  3968. position:absolute;
  3969. left:0px;
  3970. top:0px;
  3971. width:100px;
  3972. height:38px;
  3973. }
  3974. #u98846 {
  3975. border-width:0px;
  3976. position:absolute;
  3977. left:109px;
  3978. top:121px;
  3979. width:100px;
  3980. height:38px;
  3981. display:flex;
  3982. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3983. font-weight:400;
  3984. font-style:normal;
  3985. font-size:12px;
  3986. color:#606266;
  3987. }
  3988. #u98846 .text {
  3989. position:absolute;
  3990. align-self:center;
  3991. padding:2px 2px 2px 0px;
  3992. box-sizing:border-box;
  3993. width:100%;
  3994. }
  3995. #u98846_text {
  3996. border-width:0px;
  3997. word-wrap:break-word;
  3998. text-transform:none;
  3999. visibility:hidden;
  4000. }
  4001. #u98847_img {
  4002. border-width:0px;
  4003. position:absolute;
  4004. left:0px;
  4005. top:0px;
  4006. width:100px;
  4007. height:38px;
  4008. }
  4009. #u98847 {
  4010. border-width:0px;
  4011. position:absolute;
  4012. left:209px;
  4013. top:121px;
  4014. width:100px;
  4015. height:38px;
  4016. display:flex;
  4017. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4018. font-weight:400;
  4019. font-style:normal;
  4020. font-size:12px;
  4021. color:#606266;
  4022. }
  4023. #u98847 .text {
  4024. position:absolute;
  4025. align-self:center;
  4026. padding:2px 2px 2px 0px;
  4027. box-sizing:border-box;
  4028. width:100%;
  4029. }
  4030. #u98847_text {
  4031. border-width:0px;
  4032. word-wrap:break-word;
  4033. text-transform:none;
  4034. visibility:hidden;
  4035. }
  4036. #u98848_img {
  4037. border-width:0px;
  4038. position:absolute;
  4039. left:0px;
  4040. top:0px;
  4041. width:100px;
  4042. height:38px;
  4043. }
  4044. #u98848 {
  4045. border-width:0px;
  4046. position:absolute;
  4047. left:309px;
  4048. top:121px;
  4049. width:100px;
  4050. height:38px;
  4051. display:flex;
  4052. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4053. font-weight:400;
  4054. font-style:normal;
  4055. font-size:12px;
  4056. color:#606266;
  4057. }
  4058. #u98848 .text {
  4059. position:absolute;
  4060. align-self:center;
  4061. padding:2px 2px 2px 0px;
  4062. box-sizing:border-box;
  4063. width:100%;
  4064. }
  4065. #u98848_text {
  4066. border-width:0px;
  4067. word-wrap:break-word;
  4068. text-transform:none;
  4069. visibility:hidden;
  4070. }
  4071. #u98849_img {
  4072. border-width:0px;
  4073. position:absolute;
  4074. left:0px;
  4075. top:0px;
  4076. width:100px;
  4077. height:38px;
  4078. }
  4079. #u98849 {
  4080. border-width:0px;
  4081. position:absolute;
  4082. left:409px;
  4083. top:121px;
  4084. width:100px;
  4085. height:38px;
  4086. display:flex;
  4087. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4088. font-weight:400;
  4089. font-style:normal;
  4090. font-size:12px;
  4091. color:#606266;
  4092. }
  4093. #u98849 .text {
  4094. position:absolute;
  4095. align-self:center;
  4096. padding:2px 2px 2px 0px;
  4097. box-sizing:border-box;
  4098. width:100%;
  4099. }
  4100. #u98849_text {
  4101. border-width:0px;
  4102. word-wrap:break-word;
  4103. text-transform:none;
  4104. visibility:hidden;
  4105. }
  4106. #u98850_img {
  4107. border-width:0px;
  4108. position:absolute;
  4109. left:0px;
  4110. top:0px;
  4111. width:100px;
  4112. height:38px;
  4113. }
  4114. #u98850 {
  4115. border-width:0px;
  4116. position:absolute;
  4117. left:509px;
  4118. top:121px;
  4119. width:100px;
  4120. height:38px;
  4121. display:flex;
  4122. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4123. font-weight:400;
  4124. font-style:normal;
  4125. font-size:12px;
  4126. color:#606266;
  4127. }
  4128. #u98850 .text {
  4129. position:absolute;
  4130. align-self:center;
  4131. padding:2px 2px 2px 0px;
  4132. box-sizing:border-box;
  4133. width:100%;
  4134. }
  4135. #u98850_text {
  4136. border-width:0px;
  4137. word-wrap:break-word;
  4138. text-transform:none;
  4139. visibility:hidden;
  4140. }
  4141. #u98851_img {
  4142. border-width:0px;
  4143. position:absolute;
  4144. left:0px;
  4145. top:0px;
  4146. width:100px;
  4147. height:38px;
  4148. }
  4149. #u98851 {
  4150. border-width:0px;
  4151. position:absolute;
  4152. left:609px;
  4153. top:121px;
  4154. width:100px;
  4155. height:38px;
  4156. display:flex;
  4157. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4158. font-weight:400;
  4159. font-style:normal;
  4160. font-size:12px;
  4161. color:#606266;
  4162. }
  4163. #u98851 .text {
  4164. position:absolute;
  4165. align-self:center;
  4166. padding:2px 2px 2px 0px;
  4167. box-sizing:border-box;
  4168. width:100%;
  4169. }
  4170. #u98851_text {
  4171. border-width:0px;
  4172. word-wrap:break-word;
  4173. text-transform:none;
  4174. visibility:hidden;
  4175. }
  4176. #u98852_img {
  4177. border-width:0px;
  4178. position:absolute;
  4179. left:0px;
  4180. top:0px;
  4181. width:103px;
  4182. height:38px;
  4183. }
  4184. #u98852 {
  4185. border-width:0px;
  4186. position:absolute;
  4187. left:709px;
  4188. top:121px;
  4189. width:103px;
  4190. height:38px;
  4191. display:flex;
  4192. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4193. font-weight:400;
  4194. font-style:normal;
  4195. font-size:12px;
  4196. color:#606266;
  4197. }
  4198. #u98852 .text {
  4199. position:absolute;
  4200. align-self:center;
  4201. padding:2px 2px 2px 0px;
  4202. box-sizing:border-box;
  4203. width:100%;
  4204. }
  4205. #u98852_text {
  4206. border-width:0px;
  4207. word-wrap:break-word;
  4208. text-transform:none;
  4209. visibility:hidden;
  4210. }
  4211. #u98853_img {
  4212. border-width:0px;
  4213. position:absolute;
  4214. left:0px;
  4215. top:0px;
  4216. width:100px;
  4217. height:38px;
  4218. }
  4219. #u98853 {
  4220. border-width:0px;
  4221. position:absolute;
  4222. left:812px;
  4223. top:121px;
  4224. width:100px;
  4225. height:38px;
  4226. display:flex;
  4227. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4228. font-weight:400;
  4229. font-style:normal;
  4230. font-size:12px;
  4231. color:#333333;
  4232. }
  4233. #u98853 .text {
  4234. position:absolute;
  4235. align-self:center;
  4236. padding:2px 2px 2px 0px;
  4237. box-sizing:border-box;
  4238. width:100%;
  4239. }
  4240. #u98853_text {
  4241. border-width:0px;
  4242. word-wrap:break-word;
  4243. text-transform:none;
  4244. }
  4245. #u98854_img {
  4246. border-width:0px;
  4247. position:absolute;
  4248. left:0px;
  4249. top:0px;
  4250. width:109px;
  4251. height:38px;
  4252. }
  4253. #u98854 {
  4254. border-width:0px;
  4255. position:absolute;
  4256. left:912px;
  4257. top:121px;
  4258. width:109px;
  4259. height:38px;
  4260. display:flex;
  4261. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4262. font-weight:400;
  4263. font-style:normal;
  4264. font-size:12px;
  4265. color:#333333;
  4266. }
  4267. #u98854 .text {
  4268. position:absolute;
  4269. align-self:center;
  4270. padding:2px 2px 2px 0px;
  4271. box-sizing:border-box;
  4272. width:100%;
  4273. }
  4274. #u98854_text {
  4275. border-width:0px;
  4276. word-wrap:break-word;
  4277. text-transform:none;
  4278. visibility:hidden;
  4279. }
  4280. #u98855_img {
  4281. border-width:0px;
  4282. position:absolute;
  4283. left:0px;
  4284. top:0px;
  4285. width:94px;
  4286. height:38px;
  4287. }
  4288. #u98855 {
  4289. border-width:0px;
  4290. position:absolute;
  4291. left:1021px;
  4292. top:121px;
  4293. width:94px;
  4294. height:38px;
  4295. display:flex;
  4296. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4297. font-weight:400;
  4298. font-style:normal;
  4299. font-size:12px;
  4300. color:#333333;
  4301. }
  4302. #u98855 .text {
  4303. position:absolute;
  4304. align-self:center;
  4305. padding:2px 2px 2px 0px;
  4306. box-sizing:border-box;
  4307. width:100%;
  4308. }
  4309. #u98855_text {
  4310. border-width:0px;
  4311. word-wrap:break-word;
  4312. text-transform:none;
  4313. visibility:hidden;
  4314. }
  4315. #u98856_img {
  4316. border-width:0px;
  4317. position:absolute;
  4318. left:0px;
  4319. top:0px;
  4320. width:110px;
  4321. height:38px;
  4322. }
  4323. #u98856 {
  4324. border-width:0px;
  4325. position:absolute;
  4326. left:1115px;
  4327. top:121px;
  4328. width:110px;
  4329. height:38px;
  4330. display:flex;
  4331. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4332. font-weight:400;
  4333. font-style:normal;
  4334. font-size:12px;
  4335. color:#1890FF;
  4336. }
  4337. #u98856 .text {
  4338. position:absolute;
  4339. align-self:center;
  4340. padding:2px 2px 2px 0px;
  4341. box-sizing:border-box;
  4342. width:100%;
  4343. }
  4344. #u98856_text {
  4345. border-width:0px;
  4346. word-wrap:break-word;
  4347. text-transform:none;
  4348. visibility:hidden;
  4349. }
  4350. #u98857_img {
  4351. border-width:0px;
  4352. position:absolute;
  4353. left:0px;
  4354. top:0px;
  4355. width:109px;
  4356. height:38px;
  4357. }
  4358. #u98857 {
  4359. border-width:0px;
  4360. position:absolute;
  4361. left:0px;
  4362. top:159px;
  4363. width:109px;
  4364. height:38px;
  4365. display:flex;
  4366. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4367. font-weight:400;
  4368. font-style:normal;
  4369. font-size:12px;
  4370. color:#606266;
  4371. }
  4372. #u98857 .text {
  4373. position:absolute;
  4374. align-self:center;
  4375. padding:2px 2px 2px 0px;
  4376. box-sizing:border-box;
  4377. width:100%;
  4378. }
  4379. #u98857_text {
  4380. border-width:0px;
  4381. word-wrap:break-word;
  4382. text-transform:none;
  4383. visibility:hidden;
  4384. }
  4385. #u98858_img {
  4386. border-width:0px;
  4387. position:absolute;
  4388. left:0px;
  4389. top:0px;
  4390. width:100px;
  4391. height:38px;
  4392. }
  4393. #u98858 {
  4394. border-width:0px;
  4395. position:absolute;
  4396. left:109px;
  4397. top:159px;
  4398. width:100px;
  4399. height:38px;
  4400. display:flex;
  4401. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4402. font-weight:400;
  4403. font-style:normal;
  4404. font-size:12px;
  4405. color:#606266;
  4406. }
  4407. #u98858 .text {
  4408. position:absolute;
  4409. align-self:center;
  4410. padding:2px 2px 2px 0px;
  4411. box-sizing:border-box;
  4412. width:100%;
  4413. }
  4414. #u98858_text {
  4415. border-width:0px;
  4416. word-wrap:break-word;
  4417. text-transform:none;
  4418. visibility:hidden;
  4419. }
  4420. #u98859_img {
  4421. border-width:0px;
  4422. position:absolute;
  4423. left:0px;
  4424. top:0px;
  4425. width:100px;
  4426. height:38px;
  4427. }
  4428. #u98859 {
  4429. border-width:0px;
  4430. position:absolute;
  4431. left:209px;
  4432. top:159px;
  4433. width:100px;
  4434. height:38px;
  4435. display:flex;
  4436. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4437. font-weight:400;
  4438. font-style:normal;
  4439. font-size:12px;
  4440. color:#606266;
  4441. }
  4442. #u98859 .text {
  4443. position:absolute;
  4444. align-self:center;
  4445. padding:2px 2px 2px 0px;
  4446. box-sizing:border-box;
  4447. width:100%;
  4448. }
  4449. #u98859_text {
  4450. border-width:0px;
  4451. word-wrap:break-word;
  4452. text-transform:none;
  4453. visibility:hidden;
  4454. }
  4455. #u98860_img {
  4456. border-width:0px;
  4457. position:absolute;
  4458. left:0px;
  4459. top:0px;
  4460. width:100px;
  4461. height:38px;
  4462. }
  4463. #u98860 {
  4464. border-width:0px;
  4465. position:absolute;
  4466. left:309px;
  4467. top:159px;
  4468. width:100px;
  4469. height:38px;
  4470. display:flex;
  4471. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4472. font-weight:400;
  4473. font-style:normal;
  4474. font-size:12px;
  4475. color:#606266;
  4476. }
  4477. #u98860 .text {
  4478. position:absolute;
  4479. align-self:center;
  4480. padding:2px 2px 2px 0px;
  4481. box-sizing:border-box;
  4482. width:100%;
  4483. }
  4484. #u98860_text {
  4485. border-width:0px;
  4486. word-wrap:break-word;
  4487. text-transform:none;
  4488. visibility:hidden;
  4489. }
  4490. #u98861_img {
  4491. border-width:0px;
  4492. position:absolute;
  4493. left:0px;
  4494. top:0px;
  4495. width:100px;
  4496. height:38px;
  4497. }
  4498. #u98861 {
  4499. border-width:0px;
  4500. position:absolute;
  4501. left:409px;
  4502. top:159px;
  4503. width:100px;
  4504. height:38px;
  4505. display:flex;
  4506. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4507. font-weight:400;
  4508. font-style:normal;
  4509. font-size:12px;
  4510. color:#606266;
  4511. }
  4512. #u98861 .text {
  4513. position:absolute;
  4514. align-self:center;
  4515. padding:2px 2px 2px 0px;
  4516. box-sizing:border-box;
  4517. width:100%;
  4518. }
  4519. #u98861_text {
  4520. border-width:0px;
  4521. word-wrap:break-word;
  4522. text-transform:none;
  4523. visibility:hidden;
  4524. }
  4525. #u98862_img {
  4526. border-width:0px;
  4527. position:absolute;
  4528. left:0px;
  4529. top:0px;
  4530. width:100px;
  4531. height:38px;
  4532. }
  4533. #u98862 {
  4534. border-width:0px;
  4535. position:absolute;
  4536. left:509px;
  4537. top:159px;
  4538. width:100px;
  4539. height:38px;
  4540. display:flex;
  4541. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4542. font-weight:400;
  4543. font-style:normal;
  4544. font-size:12px;
  4545. color:#606266;
  4546. }
  4547. #u98862 .text {
  4548. position:absolute;
  4549. align-self:center;
  4550. padding:2px 2px 2px 0px;
  4551. box-sizing:border-box;
  4552. width:100%;
  4553. }
  4554. #u98862_text {
  4555. border-width:0px;
  4556. word-wrap:break-word;
  4557. text-transform:none;
  4558. visibility:hidden;
  4559. }
  4560. #u98863_img {
  4561. border-width:0px;
  4562. position:absolute;
  4563. left:0px;
  4564. top:0px;
  4565. width:100px;
  4566. height:38px;
  4567. }
  4568. #u98863 {
  4569. border-width:0px;
  4570. position:absolute;
  4571. left:609px;
  4572. top:159px;
  4573. width:100px;
  4574. height:38px;
  4575. display:flex;
  4576. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4577. font-weight:400;
  4578. font-style:normal;
  4579. font-size:12px;
  4580. color:#606266;
  4581. }
  4582. #u98863 .text {
  4583. position:absolute;
  4584. align-self:center;
  4585. padding:2px 2px 2px 0px;
  4586. box-sizing:border-box;
  4587. width:100%;
  4588. }
  4589. #u98863_text {
  4590. border-width:0px;
  4591. word-wrap:break-word;
  4592. text-transform:none;
  4593. visibility:hidden;
  4594. }
  4595. #u98864_img {
  4596. border-width:0px;
  4597. position:absolute;
  4598. left:0px;
  4599. top:0px;
  4600. width:103px;
  4601. height:38px;
  4602. }
  4603. #u98864 {
  4604. border-width:0px;
  4605. position:absolute;
  4606. left:709px;
  4607. top:159px;
  4608. width:103px;
  4609. height:38px;
  4610. display:flex;
  4611. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4612. font-weight:400;
  4613. font-style:normal;
  4614. font-size:12px;
  4615. color:#606266;
  4616. }
  4617. #u98864 .text {
  4618. position:absolute;
  4619. align-self:center;
  4620. padding:2px 2px 2px 0px;
  4621. box-sizing:border-box;
  4622. width:100%;
  4623. }
  4624. #u98864_text {
  4625. border-width:0px;
  4626. word-wrap:break-word;
  4627. text-transform:none;
  4628. visibility:hidden;
  4629. }
  4630. #u98865_img {
  4631. border-width:0px;
  4632. position:absolute;
  4633. left:0px;
  4634. top:0px;
  4635. width:100px;
  4636. height:38px;
  4637. }
  4638. #u98865 {
  4639. border-width:0px;
  4640. position:absolute;
  4641. left:812px;
  4642. top:159px;
  4643. width:100px;
  4644. height:38px;
  4645. display:flex;
  4646. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4647. font-weight:400;
  4648. font-style:normal;
  4649. font-size:12px;
  4650. color:#606266;
  4651. }
  4652. #u98865 .text {
  4653. position:absolute;
  4654. align-self:center;
  4655. padding:2px 2px 2px 0px;
  4656. box-sizing:border-box;
  4657. width:100%;
  4658. }
  4659. #u98865_text {
  4660. border-width:0px;
  4661. word-wrap:break-word;
  4662. text-transform:none;
  4663. visibility:hidden;
  4664. }
  4665. #u98866_img {
  4666. border-width:0px;
  4667. position:absolute;
  4668. left:0px;
  4669. top:0px;
  4670. width:109px;
  4671. height:38px;
  4672. }
  4673. #u98866 {
  4674. border-width:0px;
  4675. position:absolute;
  4676. left:912px;
  4677. top:159px;
  4678. width:109px;
  4679. height:38px;
  4680. display:flex;
  4681. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4682. font-weight:400;
  4683. font-style:normal;
  4684. font-size:12px;
  4685. color:#606266;
  4686. }
  4687. #u98866 .text {
  4688. position:absolute;
  4689. align-self:center;
  4690. padding:2px 2px 2px 0px;
  4691. box-sizing:border-box;
  4692. width:100%;
  4693. }
  4694. #u98866_text {
  4695. border-width:0px;
  4696. word-wrap:break-word;
  4697. text-transform:none;
  4698. visibility:hidden;
  4699. }
  4700. #u98867_img {
  4701. border-width:0px;
  4702. position:absolute;
  4703. left:0px;
  4704. top:0px;
  4705. width:94px;
  4706. height:38px;
  4707. }
  4708. #u98867 {
  4709. border-width:0px;
  4710. position:absolute;
  4711. left:1021px;
  4712. top:159px;
  4713. width:94px;
  4714. height:38px;
  4715. display:flex;
  4716. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4717. font-weight:400;
  4718. font-style:normal;
  4719. font-size:12px;
  4720. color:#606266;
  4721. }
  4722. #u98867 .text {
  4723. position:absolute;
  4724. align-self:center;
  4725. padding:2px 2px 2px 0px;
  4726. box-sizing:border-box;
  4727. width:100%;
  4728. }
  4729. #u98867_text {
  4730. border-width:0px;
  4731. word-wrap:break-word;
  4732. text-transform:none;
  4733. visibility:hidden;
  4734. }
  4735. #u98868_img {
  4736. border-width:0px;
  4737. position:absolute;
  4738. left:0px;
  4739. top:0px;
  4740. width:110px;
  4741. height:38px;
  4742. }
  4743. #u98868 {
  4744. border-width:0px;
  4745. position:absolute;
  4746. left:1115px;
  4747. top:159px;
  4748. width:110px;
  4749. height:38px;
  4750. display:flex;
  4751. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4752. font-weight:400;
  4753. font-style:normal;
  4754. font-size:12px;
  4755. color:#606266;
  4756. }
  4757. #u98868 .text {
  4758. position:absolute;
  4759. align-self:center;
  4760. padding:2px 2px 2px 0px;
  4761. box-sizing:border-box;
  4762. width:100%;
  4763. }
  4764. #u98868_text {
  4765. border-width:0px;
  4766. word-wrap:break-word;
  4767. text-transform:none;
  4768. visibility:hidden;
  4769. }
  4770. #u98869_img {
  4771. border-width:0px;
  4772. position:absolute;
  4773. left:0px;
  4774. top:0px;
  4775. width:109px;
  4776. height:38px;
  4777. }
  4778. #u98869 {
  4779. border-width:0px;
  4780. position:absolute;
  4781. left:0px;
  4782. top:197px;
  4783. width:109px;
  4784. height:38px;
  4785. display:flex;
  4786. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4787. font-weight:400;
  4788. font-style:normal;
  4789. font-size:12px;
  4790. color:#606266;
  4791. }
  4792. #u98869 .text {
  4793. position:absolute;
  4794. align-self:center;
  4795. padding:2px 2px 2px 0px;
  4796. box-sizing:border-box;
  4797. width:100%;
  4798. }
  4799. #u98869_text {
  4800. border-width:0px;
  4801. word-wrap:break-word;
  4802. text-transform:none;
  4803. visibility:hidden;
  4804. }
  4805. #u98870_img {
  4806. border-width:0px;
  4807. position:absolute;
  4808. left:0px;
  4809. top:0px;
  4810. width:100px;
  4811. height:38px;
  4812. }
  4813. #u98870 {
  4814. border-width:0px;
  4815. position:absolute;
  4816. left:109px;
  4817. top:197px;
  4818. width:100px;
  4819. height:38px;
  4820. display:flex;
  4821. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4822. font-weight:400;
  4823. font-style:normal;
  4824. font-size:12px;
  4825. color:#606266;
  4826. }
  4827. #u98870 .text {
  4828. position:absolute;
  4829. align-self:center;
  4830. padding:2px 2px 2px 0px;
  4831. box-sizing:border-box;
  4832. width:100%;
  4833. }
  4834. #u98870_text {
  4835. border-width:0px;
  4836. word-wrap:break-word;
  4837. text-transform:none;
  4838. visibility:hidden;
  4839. }
  4840. #u98871_img {
  4841. border-width:0px;
  4842. position:absolute;
  4843. left:0px;
  4844. top:0px;
  4845. width:100px;
  4846. height:38px;
  4847. }
  4848. #u98871 {
  4849. border-width:0px;
  4850. position:absolute;
  4851. left:209px;
  4852. top:197px;
  4853. width:100px;
  4854. height:38px;
  4855. display:flex;
  4856. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4857. font-weight:400;
  4858. font-style:normal;
  4859. font-size:12px;
  4860. color:#606266;
  4861. }
  4862. #u98871 .text {
  4863. position:absolute;
  4864. align-self:center;
  4865. padding:2px 2px 2px 0px;
  4866. box-sizing:border-box;
  4867. width:100%;
  4868. }
  4869. #u98871_text {
  4870. border-width:0px;
  4871. word-wrap:break-word;
  4872. text-transform:none;
  4873. visibility:hidden;
  4874. }
  4875. #u98872_img {
  4876. border-width:0px;
  4877. position:absolute;
  4878. left:0px;
  4879. top:0px;
  4880. width:100px;
  4881. height:38px;
  4882. }
  4883. #u98872 {
  4884. border-width:0px;
  4885. position:absolute;
  4886. left:309px;
  4887. top:197px;
  4888. width:100px;
  4889. height:38px;
  4890. display:flex;
  4891. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4892. font-weight:400;
  4893. font-style:normal;
  4894. font-size:12px;
  4895. color:#606266;
  4896. }
  4897. #u98872 .text {
  4898. position:absolute;
  4899. align-self:center;
  4900. padding:2px 2px 2px 0px;
  4901. box-sizing:border-box;
  4902. width:100%;
  4903. }
  4904. #u98872_text {
  4905. border-width:0px;
  4906. word-wrap:break-word;
  4907. text-transform:none;
  4908. visibility:hidden;
  4909. }
  4910. #u98873_img {
  4911. border-width:0px;
  4912. position:absolute;
  4913. left:0px;
  4914. top:0px;
  4915. width:100px;
  4916. height:38px;
  4917. }
  4918. #u98873 {
  4919. border-width:0px;
  4920. position:absolute;
  4921. left:409px;
  4922. top:197px;
  4923. width:100px;
  4924. height:38px;
  4925. display:flex;
  4926. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4927. font-weight:400;
  4928. font-style:normal;
  4929. font-size:12px;
  4930. color:#606266;
  4931. }
  4932. #u98873 .text {
  4933. position:absolute;
  4934. align-self:center;
  4935. padding:2px 2px 2px 0px;
  4936. box-sizing:border-box;
  4937. width:100%;
  4938. }
  4939. #u98873_text {
  4940. border-width:0px;
  4941. word-wrap:break-word;
  4942. text-transform:none;
  4943. visibility:hidden;
  4944. }
  4945. #u98874_img {
  4946. border-width:0px;
  4947. position:absolute;
  4948. left:0px;
  4949. top:0px;
  4950. width:100px;
  4951. height:38px;
  4952. }
  4953. #u98874 {
  4954. border-width:0px;
  4955. position:absolute;
  4956. left:509px;
  4957. top:197px;
  4958. width:100px;
  4959. height:38px;
  4960. display:flex;
  4961. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4962. font-weight:400;
  4963. font-style:normal;
  4964. font-size:12px;
  4965. color:#606266;
  4966. }
  4967. #u98874 .text {
  4968. position:absolute;
  4969. align-self:center;
  4970. padding:2px 2px 2px 0px;
  4971. box-sizing:border-box;
  4972. width:100%;
  4973. }
  4974. #u98874_text {
  4975. border-width:0px;
  4976. word-wrap:break-word;
  4977. text-transform:none;
  4978. visibility:hidden;
  4979. }
  4980. #u98875_img {
  4981. border-width:0px;
  4982. position:absolute;
  4983. left:0px;
  4984. top:0px;
  4985. width:100px;
  4986. height:38px;
  4987. }
  4988. #u98875 {
  4989. border-width:0px;
  4990. position:absolute;
  4991. left:609px;
  4992. top:197px;
  4993. width:100px;
  4994. height:38px;
  4995. display:flex;
  4996. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4997. font-weight:400;
  4998. font-style:normal;
  4999. font-size:12px;
  5000. color:#606266;
  5001. }
  5002. #u98875 .text {
  5003. position:absolute;
  5004. align-self:center;
  5005. padding:2px 2px 2px 0px;
  5006. box-sizing:border-box;
  5007. width:100%;
  5008. }
  5009. #u98875_text {
  5010. border-width:0px;
  5011. word-wrap:break-word;
  5012. text-transform:none;
  5013. visibility:hidden;
  5014. }
  5015. #u98876_img {
  5016. border-width:0px;
  5017. position:absolute;
  5018. left:0px;
  5019. top:0px;
  5020. width:103px;
  5021. height:38px;
  5022. }
  5023. #u98876 {
  5024. border-width:0px;
  5025. position:absolute;
  5026. left:709px;
  5027. top:197px;
  5028. width:103px;
  5029. height:38px;
  5030. display:flex;
  5031. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5032. font-weight:400;
  5033. font-style:normal;
  5034. font-size:12px;
  5035. color:#606266;
  5036. }
  5037. #u98876 .text {
  5038. position:absolute;
  5039. align-self:center;
  5040. padding:2px 2px 2px 0px;
  5041. box-sizing:border-box;
  5042. width:100%;
  5043. }
  5044. #u98876_text {
  5045. border-width:0px;
  5046. word-wrap:break-word;
  5047. text-transform:none;
  5048. visibility:hidden;
  5049. }
  5050. #u98877_img {
  5051. border-width:0px;
  5052. position:absolute;
  5053. left:0px;
  5054. top:0px;
  5055. width:100px;
  5056. height:38px;
  5057. }
  5058. #u98877 {
  5059. border-width:0px;
  5060. position:absolute;
  5061. left:812px;
  5062. top:197px;
  5063. width:100px;
  5064. height:38px;
  5065. display:flex;
  5066. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5067. font-weight:400;
  5068. font-style:normal;
  5069. font-size:12px;
  5070. color:#606266;
  5071. }
  5072. #u98877 .text {
  5073. position:absolute;
  5074. align-self:center;
  5075. padding:2px 2px 2px 0px;
  5076. box-sizing:border-box;
  5077. width:100%;
  5078. }
  5079. #u98877_text {
  5080. border-width:0px;
  5081. word-wrap:break-word;
  5082. text-transform:none;
  5083. visibility:hidden;
  5084. }
  5085. #u98878_img {
  5086. border-width:0px;
  5087. position:absolute;
  5088. left:0px;
  5089. top:0px;
  5090. width:109px;
  5091. height:38px;
  5092. }
  5093. #u98878 {
  5094. border-width:0px;
  5095. position:absolute;
  5096. left:912px;
  5097. top:197px;
  5098. width:109px;
  5099. height:38px;
  5100. display:flex;
  5101. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5102. font-weight:400;
  5103. font-style:normal;
  5104. font-size:12px;
  5105. color:#606266;
  5106. }
  5107. #u98878 .text {
  5108. position:absolute;
  5109. align-self:center;
  5110. padding:2px 2px 2px 0px;
  5111. box-sizing:border-box;
  5112. width:100%;
  5113. }
  5114. #u98878_text {
  5115. border-width:0px;
  5116. word-wrap:break-word;
  5117. text-transform:none;
  5118. visibility:hidden;
  5119. }
  5120. #u98879_img {
  5121. border-width:0px;
  5122. position:absolute;
  5123. left:0px;
  5124. top:0px;
  5125. width:94px;
  5126. height:38px;
  5127. }
  5128. #u98879 {
  5129. border-width:0px;
  5130. position:absolute;
  5131. left:1021px;
  5132. top:197px;
  5133. width:94px;
  5134. height:38px;
  5135. display:flex;
  5136. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5137. font-weight:400;
  5138. font-style:normal;
  5139. font-size:12px;
  5140. color:#606266;
  5141. }
  5142. #u98879 .text {
  5143. position:absolute;
  5144. align-self:center;
  5145. padding:2px 2px 2px 0px;
  5146. box-sizing:border-box;
  5147. width:100%;
  5148. }
  5149. #u98879_text {
  5150. border-width:0px;
  5151. word-wrap:break-word;
  5152. text-transform:none;
  5153. visibility:hidden;
  5154. }
  5155. #u98880_img {
  5156. border-width:0px;
  5157. position:absolute;
  5158. left:0px;
  5159. top:0px;
  5160. width:110px;
  5161. height:38px;
  5162. }
  5163. #u98880 {
  5164. border-width:0px;
  5165. position:absolute;
  5166. left:1115px;
  5167. top:197px;
  5168. width:110px;
  5169. height:38px;
  5170. display:flex;
  5171. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5172. font-weight:400;
  5173. font-style:normal;
  5174. font-size:12px;
  5175. color:#606266;
  5176. }
  5177. #u98880 .text {
  5178. position:absolute;
  5179. align-self:center;
  5180. padding:2px 2px 2px 0px;
  5181. box-sizing:border-box;
  5182. width:100%;
  5183. }
  5184. #u98880_text {
  5185. border-width:0px;
  5186. word-wrap:break-word;
  5187. text-transform:none;
  5188. visibility:hidden;
  5189. }
  5190. #u98881_img {
  5191. border-width:0px;
  5192. position:absolute;
  5193. left:0px;
  5194. top:0px;
  5195. width:109px;
  5196. height:38px;
  5197. }
  5198. #u98881 {
  5199. border-width:0px;
  5200. position:absolute;
  5201. left:0px;
  5202. top:235px;
  5203. width:109px;
  5204. height:38px;
  5205. display:flex;
  5206. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5207. font-weight:400;
  5208. font-style:normal;
  5209. font-size:12px;
  5210. color:#606266;
  5211. }
  5212. #u98881 .text {
  5213. position:absolute;
  5214. align-self:center;
  5215. padding:2px 2px 2px 0px;
  5216. box-sizing:border-box;
  5217. width:100%;
  5218. }
  5219. #u98881_text {
  5220. border-width:0px;
  5221. word-wrap:break-word;
  5222. text-transform:none;
  5223. visibility:hidden;
  5224. }
  5225. #u98882_img {
  5226. border-width:0px;
  5227. position:absolute;
  5228. left:0px;
  5229. top:0px;
  5230. width:100px;
  5231. height:38px;
  5232. }
  5233. #u98882 {
  5234. border-width:0px;
  5235. position:absolute;
  5236. left:109px;
  5237. top:235px;
  5238. width:100px;
  5239. height:38px;
  5240. display:flex;
  5241. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5242. font-weight:400;
  5243. font-style:normal;
  5244. font-size:12px;
  5245. color:#606266;
  5246. }
  5247. #u98882 .text {
  5248. position:absolute;
  5249. align-self:center;
  5250. padding:2px 2px 2px 0px;
  5251. box-sizing:border-box;
  5252. width:100%;
  5253. }
  5254. #u98882_text {
  5255. border-width:0px;
  5256. word-wrap:break-word;
  5257. text-transform:none;
  5258. visibility:hidden;
  5259. }
  5260. #u98883_img {
  5261. border-width:0px;
  5262. position:absolute;
  5263. left:0px;
  5264. top:0px;
  5265. width:100px;
  5266. height:38px;
  5267. }
  5268. #u98883 {
  5269. border-width:0px;
  5270. position:absolute;
  5271. left:209px;
  5272. top:235px;
  5273. width:100px;
  5274. height:38px;
  5275. display:flex;
  5276. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5277. font-weight:400;
  5278. font-style:normal;
  5279. font-size:12px;
  5280. color:#606266;
  5281. }
  5282. #u98883 .text {
  5283. position:absolute;
  5284. align-self:center;
  5285. padding:2px 2px 2px 0px;
  5286. box-sizing:border-box;
  5287. width:100%;
  5288. }
  5289. #u98883_text {
  5290. border-width:0px;
  5291. word-wrap:break-word;
  5292. text-transform:none;
  5293. visibility:hidden;
  5294. }
  5295. #u98884_img {
  5296. border-width:0px;
  5297. position:absolute;
  5298. left:0px;
  5299. top:0px;
  5300. width:100px;
  5301. height:38px;
  5302. }
  5303. #u98884 {
  5304. border-width:0px;
  5305. position:absolute;
  5306. left:309px;
  5307. top:235px;
  5308. width:100px;
  5309. height:38px;
  5310. display:flex;
  5311. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5312. font-weight:400;
  5313. font-style:normal;
  5314. font-size:12px;
  5315. color:#606266;
  5316. }
  5317. #u98884 .text {
  5318. position:absolute;
  5319. align-self:center;
  5320. padding:2px 2px 2px 0px;
  5321. box-sizing:border-box;
  5322. width:100%;
  5323. }
  5324. #u98884_text {
  5325. border-width:0px;
  5326. word-wrap:break-word;
  5327. text-transform:none;
  5328. visibility:hidden;
  5329. }
  5330. #u98885_img {
  5331. border-width:0px;
  5332. position:absolute;
  5333. left:0px;
  5334. top:0px;
  5335. width:100px;
  5336. height:38px;
  5337. }
  5338. #u98885 {
  5339. border-width:0px;
  5340. position:absolute;
  5341. left:409px;
  5342. top:235px;
  5343. width:100px;
  5344. height:38px;
  5345. display:flex;
  5346. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5347. font-weight:400;
  5348. font-style:normal;
  5349. font-size:12px;
  5350. color:#606266;
  5351. }
  5352. #u98885 .text {
  5353. position:absolute;
  5354. align-self:center;
  5355. padding:2px 2px 2px 0px;
  5356. box-sizing:border-box;
  5357. width:100%;
  5358. }
  5359. #u98885_text {
  5360. border-width:0px;
  5361. word-wrap:break-word;
  5362. text-transform:none;
  5363. visibility:hidden;
  5364. }
  5365. #u98886_img {
  5366. border-width:0px;
  5367. position:absolute;
  5368. left:0px;
  5369. top:0px;
  5370. width:100px;
  5371. height:38px;
  5372. }
  5373. #u98886 {
  5374. border-width:0px;
  5375. position:absolute;
  5376. left:509px;
  5377. top:235px;
  5378. width:100px;
  5379. height:38px;
  5380. display:flex;
  5381. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5382. font-weight:400;
  5383. font-style:normal;
  5384. font-size:12px;
  5385. color:#606266;
  5386. }
  5387. #u98886 .text {
  5388. position:absolute;
  5389. align-self:center;
  5390. padding:2px 2px 2px 0px;
  5391. box-sizing:border-box;
  5392. width:100%;
  5393. }
  5394. #u98886_text {
  5395. border-width:0px;
  5396. word-wrap:break-word;
  5397. text-transform:none;
  5398. visibility:hidden;
  5399. }
  5400. #u98887_img {
  5401. border-width:0px;
  5402. position:absolute;
  5403. left:0px;
  5404. top:0px;
  5405. width:100px;
  5406. height:38px;
  5407. }
  5408. #u98887 {
  5409. border-width:0px;
  5410. position:absolute;
  5411. left:609px;
  5412. top:235px;
  5413. width:100px;
  5414. height:38px;
  5415. display:flex;
  5416. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5417. font-weight:400;
  5418. font-style:normal;
  5419. font-size:12px;
  5420. color:#606266;
  5421. }
  5422. #u98887 .text {
  5423. position:absolute;
  5424. align-self:center;
  5425. padding:2px 2px 2px 0px;
  5426. box-sizing:border-box;
  5427. width:100%;
  5428. }
  5429. #u98887_text {
  5430. border-width:0px;
  5431. word-wrap:break-word;
  5432. text-transform:none;
  5433. visibility:hidden;
  5434. }
  5435. #u98888_img {
  5436. border-width:0px;
  5437. position:absolute;
  5438. left:0px;
  5439. top:0px;
  5440. width:103px;
  5441. height:38px;
  5442. }
  5443. #u98888 {
  5444. border-width:0px;
  5445. position:absolute;
  5446. left:709px;
  5447. top:235px;
  5448. width:103px;
  5449. height:38px;
  5450. display:flex;
  5451. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5452. font-weight:400;
  5453. font-style:normal;
  5454. font-size:12px;
  5455. color:#606266;
  5456. }
  5457. #u98888 .text {
  5458. position:absolute;
  5459. align-self:center;
  5460. padding:2px 2px 2px 0px;
  5461. box-sizing:border-box;
  5462. width:100%;
  5463. }
  5464. #u98888_text {
  5465. border-width:0px;
  5466. word-wrap:break-word;
  5467. text-transform:none;
  5468. visibility:hidden;
  5469. }
  5470. #u98889_img {
  5471. border-width:0px;
  5472. position:absolute;
  5473. left:0px;
  5474. top:0px;
  5475. width:100px;
  5476. height:38px;
  5477. }
  5478. #u98889 {
  5479. border-width:0px;
  5480. position:absolute;
  5481. left:812px;
  5482. top:235px;
  5483. width:100px;
  5484. height:38px;
  5485. display:flex;
  5486. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5487. font-weight:400;
  5488. font-style:normal;
  5489. font-size:12px;
  5490. color:#606266;
  5491. }
  5492. #u98889 .text {
  5493. position:absolute;
  5494. align-self:center;
  5495. padding:2px 2px 2px 0px;
  5496. box-sizing:border-box;
  5497. width:100%;
  5498. }
  5499. #u98889_text {
  5500. border-width:0px;
  5501. word-wrap:break-word;
  5502. text-transform:none;
  5503. visibility:hidden;
  5504. }
  5505. #u98890_img {
  5506. border-width:0px;
  5507. position:absolute;
  5508. left:0px;
  5509. top:0px;
  5510. width:109px;
  5511. height:38px;
  5512. }
  5513. #u98890 {
  5514. border-width:0px;
  5515. position:absolute;
  5516. left:912px;
  5517. top:235px;
  5518. width:109px;
  5519. height:38px;
  5520. display:flex;
  5521. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5522. font-weight:400;
  5523. font-style:normal;
  5524. font-size:12px;
  5525. color:#606266;
  5526. }
  5527. #u98890 .text {
  5528. position:absolute;
  5529. align-self:center;
  5530. padding:2px 2px 2px 0px;
  5531. box-sizing:border-box;
  5532. width:100%;
  5533. }
  5534. #u98890_text {
  5535. border-width:0px;
  5536. word-wrap:break-word;
  5537. text-transform:none;
  5538. visibility:hidden;
  5539. }
  5540. #u98891_img {
  5541. border-width:0px;
  5542. position:absolute;
  5543. left:0px;
  5544. top:0px;
  5545. width:94px;
  5546. height:38px;
  5547. }
  5548. #u98891 {
  5549. border-width:0px;
  5550. position:absolute;
  5551. left:1021px;
  5552. top:235px;
  5553. width:94px;
  5554. height:38px;
  5555. display:flex;
  5556. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5557. font-weight:400;
  5558. font-style:normal;
  5559. font-size:12px;
  5560. color:#606266;
  5561. }
  5562. #u98891 .text {
  5563. position:absolute;
  5564. align-self:center;
  5565. padding:2px 2px 2px 0px;
  5566. box-sizing:border-box;
  5567. width:100%;
  5568. }
  5569. #u98891_text {
  5570. border-width:0px;
  5571. word-wrap:break-word;
  5572. text-transform:none;
  5573. visibility:hidden;
  5574. }
  5575. #u98892_img {
  5576. border-width:0px;
  5577. position:absolute;
  5578. left:0px;
  5579. top:0px;
  5580. width:110px;
  5581. height:38px;
  5582. }
  5583. #u98892 {
  5584. border-width:0px;
  5585. position:absolute;
  5586. left:1115px;
  5587. top:235px;
  5588. width:110px;
  5589. height:38px;
  5590. display:flex;
  5591. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5592. font-weight:400;
  5593. font-style:normal;
  5594. font-size:12px;
  5595. color:#606266;
  5596. }
  5597. #u98892 .text {
  5598. position:absolute;
  5599. align-self:center;
  5600. padding:2px 2px 2px 0px;
  5601. box-sizing:border-box;
  5602. width:100%;
  5603. }
  5604. #u98892_text {
  5605. border-width:0px;
  5606. word-wrap:break-word;
  5607. text-transform:none;
  5608. visibility:hidden;
  5609. }
  5610. #u98893_img {
  5611. border-width:0px;
  5612. position:absolute;
  5613. left:0px;
  5614. top:0px;
  5615. width:109px;
  5616. height:38px;
  5617. }
  5618. #u98893 {
  5619. border-width:0px;
  5620. position:absolute;
  5621. left:0px;
  5622. top:273px;
  5623. width:109px;
  5624. height:38px;
  5625. display:flex;
  5626. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5627. font-weight:400;
  5628. font-style:normal;
  5629. font-size:12px;
  5630. color:#606266;
  5631. }
  5632. #u98893 .text {
  5633. position:absolute;
  5634. align-self:center;
  5635. padding:2px 2px 2px 0px;
  5636. box-sizing:border-box;
  5637. width:100%;
  5638. }
  5639. #u98893_text {
  5640. border-width:0px;
  5641. word-wrap:break-word;
  5642. text-transform:none;
  5643. visibility:hidden;
  5644. }
  5645. #u98894_img {
  5646. border-width:0px;
  5647. position:absolute;
  5648. left:0px;
  5649. top:0px;
  5650. width:100px;
  5651. height:38px;
  5652. }
  5653. #u98894 {
  5654. border-width:0px;
  5655. position:absolute;
  5656. left:109px;
  5657. top:273px;
  5658. width:100px;
  5659. height:38px;
  5660. display:flex;
  5661. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5662. font-weight:400;
  5663. font-style:normal;
  5664. font-size:12px;
  5665. color:#606266;
  5666. }
  5667. #u98894 .text {
  5668. position:absolute;
  5669. align-self:center;
  5670. padding:2px 2px 2px 0px;
  5671. box-sizing:border-box;
  5672. width:100%;
  5673. }
  5674. #u98894_text {
  5675. border-width:0px;
  5676. word-wrap:break-word;
  5677. text-transform:none;
  5678. visibility:hidden;
  5679. }
  5680. #u98895_img {
  5681. border-width:0px;
  5682. position:absolute;
  5683. left:0px;
  5684. top:0px;
  5685. width:100px;
  5686. height:38px;
  5687. }
  5688. #u98895 {
  5689. border-width:0px;
  5690. position:absolute;
  5691. left:209px;
  5692. top:273px;
  5693. width:100px;
  5694. height:38px;
  5695. display:flex;
  5696. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5697. font-weight:400;
  5698. font-style:normal;
  5699. font-size:12px;
  5700. color:#606266;
  5701. }
  5702. #u98895 .text {
  5703. position:absolute;
  5704. align-self:center;
  5705. padding:2px 2px 2px 0px;
  5706. box-sizing:border-box;
  5707. width:100%;
  5708. }
  5709. #u98895_text {
  5710. border-width:0px;
  5711. word-wrap:break-word;
  5712. text-transform:none;
  5713. visibility:hidden;
  5714. }
  5715. #u98896_img {
  5716. border-width:0px;
  5717. position:absolute;
  5718. left:0px;
  5719. top:0px;
  5720. width:100px;
  5721. height:38px;
  5722. }
  5723. #u98896 {
  5724. border-width:0px;
  5725. position:absolute;
  5726. left:309px;
  5727. top:273px;
  5728. width:100px;
  5729. height:38px;
  5730. display:flex;
  5731. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5732. font-weight:400;
  5733. font-style:normal;
  5734. font-size:12px;
  5735. color:#606266;
  5736. }
  5737. #u98896 .text {
  5738. position:absolute;
  5739. align-self:center;
  5740. padding:2px 2px 2px 0px;
  5741. box-sizing:border-box;
  5742. width:100%;
  5743. }
  5744. #u98896_text {
  5745. border-width:0px;
  5746. word-wrap:break-word;
  5747. text-transform:none;
  5748. visibility:hidden;
  5749. }
  5750. #u98897_img {
  5751. border-width:0px;
  5752. position:absolute;
  5753. left:0px;
  5754. top:0px;
  5755. width:100px;
  5756. height:38px;
  5757. }
  5758. #u98897 {
  5759. border-width:0px;
  5760. position:absolute;
  5761. left:409px;
  5762. top:273px;
  5763. width:100px;
  5764. height:38px;
  5765. display:flex;
  5766. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5767. font-weight:400;
  5768. font-style:normal;
  5769. font-size:12px;
  5770. color:#606266;
  5771. }
  5772. #u98897 .text {
  5773. position:absolute;
  5774. align-self:center;
  5775. padding:2px 2px 2px 0px;
  5776. box-sizing:border-box;
  5777. width:100%;
  5778. }
  5779. #u98897_text {
  5780. border-width:0px;
  5781. word-wrap:break-word;
  5782. text-transform:none;
  5783. visibility:hidden;
  5784. }
  5785. #u98898_img {
  5786. border-width:0px;
  5787. position:absolute;
  5788. left:0px;
  5789. top:0px;
  5790. width:100px;
  5791. height:38px;
  5792. }
  5793. #u98898 {
  5794. border-width:0px;
  5795. position:absolute;
  5796. left:509px;
  5797. top:273px;
  5798. width:100px;
  5799. height:38px;
  5800. display:flex;
  5801. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5802. font-weight:400;
  5803. font-style:normal;
  5804. font-size:12px;
  5805. color:#606266;
  5806. }
  5807. #u98898 .text {
  5808. position:absolute;
  5809. align-self:center;
  5810. padding:2px 2px 2px 0px;
  5811. box-sizing:border-box;
  5812. width:100%;
  5813. }
  5814. #u98898_text {
  5815. border-width:0px;
  5816. word-wrap:break-word;
  5817. text-transform:none;
  5818. visibility:hidden;
  5819. }
  5820. #u98899_img {
  5821. border-width:0px;
  5822. position:absolute;
  5823. left:0px;
  5824. top:0px;
  5825. width:100px;
  5826. height:38px;
  5827. }
  5828. #u98899 {
  5829. border-width:0px;
  5830. position:absolute;
  5831. left:609px;
  5832. top:273px;
  5833. width:100px;
  5834. height:38px;
  5835. display:flex;
  5836. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5837. font-weight:400;
  5838. font-style:normal;
  5839. font-size:12px;
  5840. color:#606266;
  5841. }
  5842. #u98899 .text {
  5843. position:absolute;
  5844. align-self:center;
  5845. padding:2px 2px 2px 0px;
  5846. box-sizing:border-box;
  5847. width:100%;
  5848. }
  5849. #u98899_text {
  5850. border-width:0px;
  5851. word-wrap:break-word;
  5852. text-transform:none;
  5853. visibility:hidden;
  5854. }
  5855. #u98900_img {
  5856. border-width:0px;
  5857. position:absolute;
  5858. left:0px;
  5859. top:0px;
  5860. width:103px;
  5861. height:38px;
  5862. }
  5863. #u98900 {
  5864. border-width:0px;
  5865. position:absolute;
  5866. left:709px;
  5867. top:273px;
  5868. width:103px;
  5869. height:38px;
  5870. display:flex;
  5871. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5872. font-weight:400;
  5873. font-style:normal;
  5874. font-size:12px;
  5875. color:#606266;
  5876. }
  5877. #u98900 .text {
  5878. position:absolute;
  5879. align-self:center;
  5880. padding:2px 2px 2px 0px;
  5881. box-sizing:border-box;
  5882. width:100%;
  5883. }
  5884. #u98900_text {
  5885. border-width:0px;
  5886. word-wrap:break-word;
  5887. text-transform:none;
  5888. visibility:hidden;
  5889. }
  5890. #u98901_img {
  5891. border-width:0px;
  5892. position:absolute;
  5893. left:0px;
  5894. top:0px;
  5895. width:100px;
  5896. height:38px;
  5897. }
  5898. #u98901 {
  5899. border-width:0px;
  5900. position:absolute;
  5901. left:812px;
  5902. top:273px;
  5903. width:100px;
  5904. height:38px;
  5905. display:flex;
  5906. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5907. font-weight:400;
  5908. font-style:normal;
  5909. font-size:12px;
  5910. color:#606266;
  5911. }
  5912. #u98901 .text {
  5913. position:absolute;
  5914. align-self:center;
  5915. padding:2px 2px 2px 0px;
  5916. box-sizing:border-box;
  5917. width:100%;
  5918. }
  5919. #u98901_text {
  5920. border-width:0px;
  5921. word-wrap:break-word;
  5922. text-transform:none;
  5923. visibility:hidden;
  5924. }
  5925. #u98902_img {
  5926. border-width:0px;
  5927. position:absolute;
  5928. left:0px;
  5929. top:0px;
  5930. width:109px;
  5931. height:38px;
  5932. }
  5933. #u98902 {
  5934. border-width:0px;
  5935. position:absolute;
  5936. left:912px;
  5937. top:273px;
  5938. width:109px;
  5939. height:38px;
  5940. display:flex;
  5941. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5942. font-weight:400;
  5943. font-style:normal;
  5944. font-size:12px;
  5945. color:#606266;
  5946. }
  5947. #u98902 .text {
  5948. position:absolute;
  5949. align-self:center;
  5950. padding:2px 2px 2px 0px;
  5951. box-sizing:border-box;
  5952. width:100%;
  5953. }
  5954. #u98902_text {
  5955. border-width:0px;
  5956. word-wrap:break-word;
  5957. text-transform:none;
  5958. visibility:hidden;
  5959. }
  5960. #u98903_img {
  5961. border-width:0px;
  5962. position:absolute;
  5963. left:0px;
  5964. top:0px;
  5965. width:94px;
  5966. height:38px;
  5967. }
  5968. #u98903 {
  5969. border-width:0px;
  5970. position:absolute;
  5971. left:1021px;
  5972. top:273px;
  5973. width:94px;
  5974. height:38px;
  5975. display:flex;
  5976. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5977. font-weight:400;
  5978. font-style:normal;
  5979. font-size:12px;
  5980. color:#606266;
  5981. }
  5982. #u98903 .text {
  5983. position:absolute;
  5984. align-self:center;
  5985. padding:2px 2px 2px 0px;
  5986. box-sizing:border-box;
  5987. width:100%;
  5988. }
  5989. #u98903_text {
  5990. border-width:0px;
  5991. word-wrap:break-word;
  5992. text-transform:none;
  5993. visibility:hidden;
  5994. }
  5995. #u98904_img {
  5996. border-width:0px;
  5997. position:absolute;
  5998. left:0px;
  5999. top:0px;
  6000. width:110px;
  6001. height:38px;
  6002. }
  6003. #u98904 {
  6004. border-width:0px;
  6005. position:absolute;
  6006. left:1115px;
  6007. top:273px;
  6008. width:110px;
  6009. height:38px;
  6010. display:flex;
  6011. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6012. font-weight:400;
  6013. font-style:normal;
  6014. font-size:12px;
  6015. color:#606266;
  6016. }
  6017. #u98904 .text {
  6018. position:absolute;
  6019. align-self:center;
  6020. padding:2px 2px 2px 0px;
  6021. box-sizing:border-box;
  6022. width:100%;
  6023. }
  6024. #u98904_text {
  6025. border-width:0px;
  6026. word-wrap:break-word;
  6027. text-transform:none;
  6028. visibility:hidden;
  6029. }
  6030. #u98905_div {
  6031. border-width:0px;
  6032. position:absolute;
  6033. left:0px;
  6034. top:0px;
  6035. width:73px;
  6036. height:50px;
  6037. background:inherit;
  6038. background-color:rgba(255, 255, 255, 0);
  6039. border:none;
  6040. border-left:0px;
  6041. border-top:0px;
  6042. border-right:0px;
  6043. border-radius:0px;
  6044. border-bottom-right-radius:0px;
  6045. border-bottom-left-radius:0px;
  6046. -moz-box-shadow:none;
  6047. -webkit-box-shadow:none;
  6048. box-shadow:none;
  6049. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6050. font-weight:400;
  6051. font-style:normal;
  6052. font-size:18px;
  6053. }
  6054. #u98905 {
  6055. border-width:0px;
  6056. position:absolute;
  6057. left:349px;
  6058. top:52px;
  6059. width:73px;
  6060. height:50px;
  6061. display:flex;
  6062. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6063. font-weight:400;
  6064. font-style:normal;
  6065. font-size:18px;
  6066. }
  6067. #u98905 .text {
  6068. position:absolute;
  6069. align-self:center;
  6070. padding:0px 0px 0px 0px;
  6071. box-sizing:border-box;
  6072. width:100%;
  6073. }
  6074. #u98905_text {
  6075. border-width:0px;
  6076. white-space:nowrap;
  6077. text-transform:none;
  6078. }
  6079. #u98906_div {
  6080. border-width:0px;
  6081. position:absolute;
  6082. left:0px;
  6083. top:0px;
  6084. width:60px;
  6085. height:30px;
  6086. background:inherit;
  6087. background-color:rgba(24, 144, 255, 1);
  6088. border:none;
  6089. border-radius:4px;
  6090. -moz-box-shadow:none;
  6091. -webkit-box-shadow:none;
  6092. box-shadow:none;
  6093. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6094. font-weight:400;
  6095. font-style:normal;
  6096. font-size:14px;
  6097. color:#FFFFFF;
  6098. }
  6099. #u98906 {
  6100. border-width:0px;
  6101. position:absolute;
  6102. left:1250px;
  6103. top:103px;
  6104. width:60px;
  6105. height:30px;
  6106. display:flex;
  6107. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6108. font-weight:400;
  6109. font-style:normal;
  6110. font-size:14px;
  6111. color:#FFFFFF;
  6112. }
  6113. #u98906 .text {
  6114. position:absolute;
  6115. align-self:center;
  6116. padding:2px 2px 2px 2px;
  6117. box-sizing:border-box;
  6118. width:100%;
  6119. }
  6120. #u98906_text {
  6121. border-width:0px;
  6122. word-wrap:break-word;
  6123. text-transform:none;
  6124. }
  6125. #u98907_div {
  6126. border-width:0px;
  6127. position:absolute;
  6128. left:0px;
  6129. top:0px;
  6130. width:60px;
  6131. height:30px;
  6132. background:inherit;
  6133. background-color:rgba(255, 255, 255, 1);
  6134. box-sizing:border-box;
  6135. border-width:1px;
  6136. border-style:solid;
  6137. border-color:rgba(170, 170, 170, 1);
  6138. border-radius:4px;
  6139. -moz-box-shadow:none;
  6140. -webkit-box-shadow:none;
  6141. box-shadow:none;
  6142. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6143. font-weight:400;
  6144. font-style:normal;
  6145. font-size:14px;
  6146. }
  6147. #u98907 {
  6148. border-width:0px;
  6149. position:absolute;
  6150. left:1320px;
  6151. top:103px;
  6152. width:60px;
  6153. height:30px;
  6154. display:flex;
  6155. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6156. font-weight:400;
  6157. font-style:normal;
  6158. font-size:14px;
  6159. }
  6160. #u98907 .text {
  6161. position:absolute;
  6162. align-self:center;
  6163. padding:2px 2px 2px 2px;
  6164. box-sizing:border-box;
  6165. width:100%;
  6166. }
  6167. #u98907_text {
  6168. border-width:0px;
  6169. word-wrap:break-word;
  6170. text-transform:none;
  6171. }
  6172. #u98908 {
  6173. border-width:0px;
  6174. position:absolute;
  6175. left:0px;
  6176. top:0px;
  6177. width:0px;
  6178. height:0px;
  6179. }
  6180. #u98909_div {
  6181. border-width:0px;
  6182. position:absolute;
  6183. left:0px;
  6184. top:0px;
  6185. width:140px;
  6186. height:30px;
  6187. background:inherit;
  6188. background-color:rgba(255, 255, 255, 1);
  6189. box-sizing:border-box;
  6190. border-width:1px;
  6191. border-style:solid;
  6192. border-color:rgba(215, 215, 215, 1);
  6193. border-radius:4px;
  6194. -moz-box-shadow:none;
  6195. -webkit-box-shadow:none;
  6196. box-shadow:none;
  6197. font-size:14px;
  6198. }
  6199. #u98909 {
  6200. border-width:0px;
  6201. position:absolute;
  6202. left:350px;
  6203. top:103px;
  6204. width:140px;
  6205. height:30px;
  6206. display:flex;
  6207. font-size:14px;
  6208. }
  6209. #u98909 .text {
  6210. position:absolute;
  6211. align-self:center;
  6212. padding:2px 2px 2px 2px;
  6213. box-sizing:border-box;
  6214. width:100%;
  6215. }
  6216. #u98909_text {
  6217. border-width:0px;
  6218. word-wrap:break-word;
  6219. text-transform:none;
  6220. visibility:hidden;
  6221. }
  6222. #u98910_input {
  6223. position:absolute;
  6224. left:0px;
  6225. top:0px;
  6226. width:134px;
  6227. height:23px;
  6228. padding:2px 2px 2px 2px;
  6229. font-family:'ArialMT', 'Arial', sans-serif;
  6230. font-weight:400;
  6231. font-style:normal;
  6232. font-size:14px;
  6233. letter-spacing:normal;
  6234. color:#AAAAAA;
  6235. vertical-align:none;
  6236. text-align:left;
  6237. text-transform:none;
  6238. background-color:transparent;
  6239. border-color:transparent;
  6240. }
  6241. #u98910_input.disabled {
  6242. position:absolute;
  6243. left:0px;
  6244. top:0px;
  6245. width:134px;
  6246. height:23px;
  6247. padding:2px 2px 2px 2px;
  6248. font-family:'ArialMT', 'Arial', sans-serif;
  6249. font-weight:400;
  6250. font-style:normal;
  6251. font-size:14px;
  6252. letter-spacing:normal;
  6253. color:#AAAAAA;
  6254. vertical-align:none;
  6255. text-align:left;
  6256. text-transform:none;
  6257. background-color:transparent;
  6258. border-color:transparent;
  6259. }
  6260. #u98910_div {
  6261. border-width:0px;
  6262. position:absolute;
  6263. left:0px;
  6264. top:0px;
  6265. width:134px;
  6266. height:23px;
  6267. background:inherit;
  6268. background-color:rgba(255, 255, 255, 1);
  6269. border:none;
  6270. border-radius:0px;
  6271. -moz-box-shadow:none;
  6272. -webkit-box-shadow:none;
  6273. box-shadow:none;
  6274. font-size:14px;
  6275. color:#AAAAAA;
  6276. }
  6277. #u98910 {
  6278. border-width:0px;
  6279. position:absolute;
  6280. left:354px;
  6281. top:105px;
  6282. width:134px;
  6283. height:23px;
  6284. display:flex;
  6285. font-size:14px;
  6286. color:#AAAAAA;
  6287. }
  6288. #u98910 .text {
  6289. position:absolute;
  6290. align-self:flex-start;
  6291. padding:2px 2px 2px 2px;
  6292. box-sizing:border-box;
  6293. width:100%;
  6294. }
  6295. #u98910_div.disabled {
  6296. border-width:0px;
  6297. position:absolute;
  6298. left:0px;
  6299. top:0px;
  6300. width:134px;
  6301. height:23px;
  6302. background:inherit;
  6303. background-color:rgba(240, 240, 240, 1);
  6304. border:none;
  6305. border-radius:0px;
  6306. -moz-box-shadow:none;
  6307. -webkit-box-shadow:none;
  6308. box-shadow:none;
  6309. font-size:14px;
  6310. color:#AAAAAA;
  6311. }
  6312. #u98910.disabled {
  6313. }
  6314. .u98910_input_option {
  6315. font-size:14px;
  6316. }
  6317. #u98911 {
  6318. border-width:0px;
  6319. position:absolute;
  6320. left:0px;
  6321. top:0px;
  6322. width:0px;
  6323. height:0px;
  6324. }
  6325. #u98912_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. #u98912 {
  6345. border-width:0px;
  6346. position:absolute;
  6347. left:950px;
  6348. top:103px;
  6349. width:140px;
  6350. height:30px;
  6351. display:flex;
  6352. font-size:14px;
  6353. }
  6354. #u98912 .text {
  6355. position:absolute;
  6356. align-self:center;
  6357. padding:2px 2px 2px 2px;
  6358. box-sizing:border-box;
  6359. width:100%;
  6360. }
  6361. #u98912_text {
  6362. border-width:0px;
  6363. word-wrap:break-word;
  6364. text-transform:none;
  6365. visibility:hidden;
  6366. }
  6367. #u98913_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. #u98913_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. #u98913_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. #u98913 {
  6423. border-width:0px;
  6424. position:absolute;
  6425. left:954px;
  6426. top:105px;
  6427. width:134px;
  6428. height:23px;
  6429. display:flex;
  6430. font-size:14px;
  6431. color:#AAAAAA;
  6432. }
  6433. #u98913 .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. #u98913_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. #u98913.disabled {
  6458. }
  6459. .u98913_input_option {
  6460. font-size:14px;
  6461. }
  6462. #u98914 {
  6463. border-width:0px;
  6464. position:absolute;
  6465. left:0px;
  6466. top:0px;
  6467. width:0px;
  6468. height:0px;
  6469. }
  6470. #u98915_div {
  6471. border-width:0px;
  6472. position:absolute;
  6473. left:0px;
  6474. top:0px;
  6475. width:140px;
  6476. height:30px;
  6477. background:inherit;
  6478. background-color:rgba(255, 255, 255, 1);
  6479. box-sizing:border-box;
  6480. border-width:1px;
  6481. border-style:solid;
  6482. border-color:rgba(201, 201, 201, 1);
  6483. border-radius:4px;
  6484. -moz-box-shadow:none;
  6485. -webkit-box-shadow:none;
  6486. box-shadow:none;
  6487. font-family:'Microsoft YaHei', sans-serif;
  6488. font-weight:400;
  6489. font-style:normal;
  6490. font-size:14px;
  6491. color:#CCCCCC;
  6492. text-align:left;
  6493. }
  6494. #u98915 {
  6495. border-width:0px;
  6496. position:absolute;
  6497. left:500px;
  6498. top:103px;
  6499. width:140px;
  6500. height:30px;
  6501. display:flex;
  6502. font-family:'Microsoft YaHei', sans-serif;
  6503. font-weight:400;
  6504. font-style:normal;
  6505. font-size:14px;
  6506. color:#CCCCCC;
  6507. text-align:left;
  6508. }
  6509. #u98915 .text {
  6510. position:absolute;
  6511. align-self:center;
  6512. padding:2px 8px 2px 8px;
  6513. box-sizing:border-box;
  6514. width:100%;
  6515. }
  6516. #u98915_text {
  6517. border-width:0px;
  6518. word-wrap:break-word;
  6519. text-transform:none;
  6520. visibility:hidden;
  6521. }
  6522. #u98916_input {
  6523. position:absolute;
  6524. left:0px;
  6525. top:0px;
  6526. width:127px;
  6527. height:25px;
  6528. padding:2px 2px 2px 2px;
  6529. font-family:'Microsoft YaHei', sans-serif;
  6530. font-weight:400;
  6531. font-style:normal;
  6532. font-size:10px;
  6533. letter-spacing:normal;
  6534. color:#000000;
  6535. vertical-align:none;
  6536. text-align:left;
  6537. text-transform:none;
  6538. background-color:transparent;
  6539. border-color:transparent;
  6540. }
  6541. #u98916_input.disabled {
  6542. position:absolute;
  6543. left:0px;
  6544. top:0px;
  6545. width:127px;
  6546. height:25px;
  6547. padding:2px 2px 2px 2px;
  6548. font-family:'Microsoft YaHei', sans-serif;
  6549. font-weight:400;
  6550. font-style:normal;
  6551. font-size:10px;
  6552. letter-spacing:normal;
  6553. color:#000000;
  6554. vertical-align:none;
  6555. text-align:left;
  6556. text-transform:none;
  6557. background-color:transparent;
  6558. border-color:transparent;
  6559. }
  6560. #u98916_div {
  6561. border-width:0px;
  6562. position:absolute;
  6563. left:0px;
  6564. top:0px;
  6565. width:127px;
  6566. height:25px;
  6567. background:inherit;
  6568. background-color:rgba(255, 255, 255, 1);
  6569. border:none;
  6570. border-radius:0px;
  6571. -moz-box-shadow:none;
  6572. -webkit-box-shadow:none;
  6573. box-shadow:none;
  6574. font-family:'Microsoft YaHei', sans-serif;
  6575. font-weight:400;
  6576. font-style:normal;
  6577. font-size:10px;
  6578. }
  6579. #u98916 {
  6580. border-width:0px;
  6581. position:absolute;
  6582. left:508px;
  6583. top:104px;
  6584. width:127px;
  6585. height:25px;
  6586. display:flex;
  6587. font-family:'Microsoft YaHei', sans-serif;
  6588. font-weight:400;
  6589. font-style:normal;
  6590. font-size:10px;
  6591. }
  6592. #u98916 .text {
  6593. position:absolute;
  6594. align-self:center;
  6595. padding:2px 2px 2px 2px;
  6596. box-sizing:border-box;
  6597. width:100%;
  6598. }
  6599. #u98916_div.disabled {
  6600. border-width:0px;
  6601. position:absolute;
  6602. left:0px;
  6603. top:0px;
  6604. width:127px;
  6605. height:25px;
  6606. background:inherit;
  6607. background-color:rgba(240, 240, 240, 1);
  6608. border:none;
  6609. border-radius:0px;
  6610. -moz-box-shadow:none;
  6611. -webkit-box-shadow:none;
  6612. box-shadow:none;
  6613. font-family:'Microsoft YaHei', sans-serif;
  6614. font-weight:400;
  6615. font-style:normal;
  6616. font-size:10px;
  6617. }
  6618. #u98916.disabled {
  6619. }
  6620. #u98917 {
  6621. border-width:0px;
  6622. position:absolute;
  6623. left:0px;
  6624. top:0px;
  6625. width:0px;
  6626. height:0px;
  6627. }
  6628. #u98918_div {
  6629. border-width:0px;
  6630. position:absolute;
  6631. left:0px;
  6632. top:0px;
  6633. width:140px;
  6634. height:30px;
  6635. background:inherit;
  6636. background-color:rgba(255, 255, 255, 1);
  6637. box-sizing:border-box;
  6638. border-width:1px;
  6639. border-style:solid;
  6640. border-color:rgba(201, 201, 201, 1);
  6641. border-radius:4px;
  6642. -moz-box-shadow:none;
  6643. -webkit-box-shadow:none;
  6644. box-shadow:none;
  6645. font-family:'Microsoft YaHei', sans-serif;
  6646. font-weight:400;
  6647. font-style:normal;
  6648. font-size:14px;
  6649. color:#CCCCCC;
  6650. text-align:left;
  6651. }
  6652. #u98918 {
  6653. border-width:0px;
  6654. position:absolute;
  6655. left:650px;
  6656. top:103px;
  6657. width:140px;
  6658. height:30px;
  6659. display:flex;
  6660. font-family:'Microsoft YaHei', sans-serif;
  6661. font-weight:400;
  6662. font-style:normal;
  6663. font-size:14px;
  6664. color:#CCCCCC;
  6665. text-align:left;
  6666. }
  6667. #u98918 .text {
  6668. position:absolute;
  6669. align-self:center;
  6670. padding:2px 8px 2px 8px;
  6671. box-sizing:border-box;
  6672. width:100%;
  6673. }
  6674. #u98918_text {
  6675. border-width:0px;
  6676. word-wrap:break-word;
  6677. text-transform:none;
  6678. visibility:hidden;
  6679. }
  6680. #u98919_input {
  6681. position:absolute;
  6682. left:0px;
  6683. top:0px;
  6684. width:127px;
  6685. height:25px;
  6686. padding:2px 2px 2px 2px;
  6687. font-family:'Microsoft YaHei', sans-serif;
  6688. font-weight:400;
  6689. font-style:normal;
  6690. font-size:10px;
  6691. letter-spacing:normal;
  6692. color:#000000;
  6693. vertical-align:none;
  6694. text-align:left;
  6695. text-transform:none;
  6696. background-color:transparent;
  6697. border-color:transparent;
  6698. }
  6699. #u98919_input.disabled {
  6700. position:absolute;
  6701. left:0px;
  6702. top:0px;
  6703. width:127px;
  6704. height:25px;
  6705. padding:2px 2px 2px 2px;
  6706. font-family:'Microsoft YaHei', sans-serif;
  6707. font-weight:400;
  6708. font-style:normal;
  6709. font-size:10px;
  6710. letter-spacing:normal;
  6711. color:#000000;
  6712. vertical-align:none;
  6713. text-align:left;
  6714. text-transform:none;
  6715. background-color:transparent;
  6716. border-color:transparent;
  6717. }
  6718. #u98919_div {
  6719. border-width:0px;
  6720. position:absolute;
  6721. left:0px;
  6722. top:0px;
  6723. width:127px;
  6724. height:25px;
  6725. background:inherit;
  6726. background-color:rgba(255, 255, 255, 1);
  6727. border:none;
  6728. border-radius:0px;
  6729. -moz-box-shadow:none;
  6730. -webkit-box-shadow:none;
  6731. box-shadow:none;
  6732. font-family:'Microsoft YaHei', sans-serif;
  6733. font-weight:400;
  6734. font-style:normal;
  6735. font-size:10px;
  6736. }
  6737. #u98919 {
  6738. border-width:0px;
  6739. position:absolute;
  6740. left:658px;
  6741. top:104px;
  6742. width:127px;
  6743. height:25px;
  6744. display:flex;
  6745. font-family:'Microsoft YaHei', sans-serif;
  6746. font-weight:400;
  6747. font-style:normal;
  6748. font-size:10px;
  6749. }
  6750. #u98919 .text {
  6751. position:absolute;
  6752. align-self:center;
  6753. padding:2px 2px 2px 2px;
  6754. box-sizing:border-box;
  6755. width:100%;
  6756. }
  6757. #u98919_div.disabled {
  6758. border-width:0px;
  6759. position:absolute;
  6760. left:0px;
  6761. top:0px;
  6762. width:127px;
  6763. height:25px;
  6764. background:inherit;
  6765. background-color:rgba(240, 240, 240, 1);
  6766. border:none;
  6767. border-radius:0px;
  6768. -moz-box-shadow:none;
  6769. -webkit-box-shadow:none;
  6770. box-shadow:none;
  6771. font-family:'Microsoft YaHei', sans-serif;
  6772. font-weight:400;
  6773. font-style:normal;
  6774. font-size:10px;
  6775. }
  6776. #u98919.disabled {
  6777. }
  6778. #u98920 {
  6779. border-width:0px;
  6780. position:absolute;
  6781. left:0px;
  6782. top:0px;
  6783. width:0px;
  6784. height:0px;
  6785. }
  6786. #u98921_div {
  6787. border-width:0px;
  6788. position:absolute;
  6789. left:0px;
  6790. top:0px;
  6791. width:140px;
  6792. height:30px;
  6793. background:inherit;
  6794. background-color:rgba(255, 255, 255, 1);
  6795. box-sizing:border-box;
  6796. border-width:1px;
  6797. border-style:solid;
  6798. border-color:rgba(201, 201, 201, 1);
  6799. border-radius:4px;
  6800. -moz-box-shadow:none;
  6801. -webkit-box-shadow:none;
  6802. box-shadow:none;
  6803. font-family:'Microsoft YaHei', sans-serif;
  6804. font-weight:400;
  6805. font-style:normal;
  6806. font-size:14px;
  6807. color:#CCCCCC;
  6808. text-align:left;
  6809. }
  6810. #u98921 {
  6811. border-width:0px;
  6812. position:absolute;
  6813. left:800px;
  6814. top:103px;
  6815. width:140px;
  6816. height:30px;
  6817. display:flex;
  6818. font-family:'Microsoft YaHei', sans-serif;
  6819. font-weight:400;
  6820. font-style:normal;
  6821. font-size:14px;
  6822. color:#CCCCCC;
  6823. text-align:left;
  6824. }
  6825. #u98921 .text {
  6826. position:absolute;
  6827. align-self:center;
  6828. padding:2px 8px 2px 8px;
  6829. box-sizing:border-box;
  6830. width:100%;
  6831. }
  6832. #u98921_text {
  6833. border-width:0px;
  6834. word-wrap:break-word;
  6835. text-transform:none;
  6836. visibility:hidden;
  6837. }
  6838. #u98922_input {
  6839. position:absolute;
  6840. left:0px;
  6841. top:0px;
  6842. width:127px;
  6843. height:25px;
  6844. padding:2px 2px 2px 2px;
  6845. font-family:'Microsoft YaHei', sans-serif;
  6846. font-weight:400;
  6847. font-style:normal;
  6848. font-size:10px;
  6849. letter-spacing:normal;
  6850. color:#000000;
  6851. vertical-align:none;
  6852. text-align:left;
  6853. text-transform:none;
  6854. background-color:transparent;
  6855. border-color:transparent;
  6856. }
  6857. #u98922_input.disabled {
  6858. position:absolute;
  6859. left:0px;
  6860. top:0px;
  6861. width:127px;
  6862. height:25px;
  6863. padding:2px 2px 2px 2px;
  6864. font-family:'Microsoft YaHei', sans-serif;
  6865. font-weight:400;
  6866. font-style:normal;
  6867. font-size:10px;
  6868. letter-spacing:normal;
  6869. color:#000000;
  6870. vertical-align:none;
  6871. text-align:left;
  6872. text-transform:none;
  6873. background-color:transparent;
  6874. border-color:transparent;
  6875. }
  6876. #u98922_div {
  6877. border-width:0px;
  6878. position:absolute;
  6879. left:0px;
  6880. top:0px;
  6881. width:127px;
  6882. height:25px;
  6883. background:inherit;
  6884. background-color:rgba(255, 255, 255, 1);
  6885. border:none;
  6886. border-radius:0px;
  6887. -moz-box-shadow:none;
  6888. -webkit-box-shadow:none;
  6889. box-shadow:none;
  6890. font-family:'Microsoft YaHei', sans-serif;
  6891. font-weight:400;
  6892. font-style:normal;
  6893. font-size:10px;
  6894. }
  6895. #u98922 {
  6896. border-width:0px;
  6897. position:absolute;
  6898. left:808px;
  6899. top:104px;
  6900. width:127px;
  6901. height:25px;
  6902. display:flex;
  6903. font-family:'Microsoft YaHei', sans-serif;
  6904. font-weight:400;
  6905. font-style:normal;
  6906. font-size:10px;
  6907. }
  6908. #u98922 .text {
  6909. position:absolute;
  6910. align-self:center;
  6911. padding:2px 2px 2px 2px;
  6912. box-sizing:border-box;
  6913. width:100%;
  6914. }
  6915. #u98922_div.disabled {
  6916. border-width:0px;
  6917. position:absolute;
  6918. left:0px;
  6919. top:0px;
  6920. width:127px;
  6921. height:25px;
  6922. background:inherit;
  6923. background-color:rgba(240, 240, 240, 1);
  6924. border:none;
  6925. border-radius:0px;
  6926. -moz-box-shadow:none;
  6927. -webkit-box-shadow:none;
  6928. box-shadow:none;
  6929. font-family:'Microsoft YaHei', sans-serif;
  6930. font-weight:400;
  6931. font-style:normal;
  6932. font-size:10px;
  6933. }
  6934. #u98922.disabled {
  6935. }
  6936. #u98923_div {
  6937. border-width:0px;
  6938. position:absolute;
  6939. left:0px;
  6940. top:0px;
  6941. width:80px;
  6942. height:30px;
  6943. background:inherit;
  6944. background-color:rgba(24, 144, 255, 1);
  6945. border:none;
  6946. border-radius:4px;
  6947. -moz-box-shadow:none;
  6948. -webkit-box-shadow:none;
  6949. box-shadow:none;
  6950. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6951. font-weight:400;
  6952. font-style:normal;
  6953. font-size:14px;
  6954. color:#FFFFFF;
  6955. }
  6956. #u98923 {
  6957. border-width:0px;
  6958. position:absolute;
  6959. left:420px;
  6960. top:153px;
  6961. width:80px;
  6962. height:30px;
  6963. display:flex;
  6964. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6965. font-weight:400;
  6966. font-style:normal;
  6967. font-size:14px;
  6968. color:#FFFFFF;
  6969. }
  6970. #u98923 .text {
  6971. position:absolute;
  6972. align-self:center;
  6973. padding:2px 2px 2px 2px;
  6974. box-sizing:border-box;
  6975. width:100%;
  6976. }
  6977. #u98923_text {
  6978. border-width:0px;
  6979. word-wrap:break-word;
  6980. text-transform:none;
  6981. }
  6982. #u98924_div {
  6983. border-width:0px;
  6984. position:absolute;
  6985. left:0px;
  6986. top:0px;
  6987. width:60px;
  6988. height:30px;
  6989. background:inherit;
  6990. background-color:rgba(255, 255, 255, 1);
  6991. box-sizing:border-box;
  6992. border-width:1px;
  6993. border-style:solid;
  6994. border-color:rgba(170, 170, 170, 1);
  6995. border-radius:4px;
  6996. -moz-box-shadow:none;
  6997. -webkit-box-shadow:none;
  6998. box-shadow:none;
  6999. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7000. font-weight:400;
  7001. font-style:normal;
  7002. font-size:14px;
  7003. }
  7004. #u98924 {
  7005. border-width:0px;
  7006. position:absolute;
  7007. left:510px;
  7008. top:153px;
  7009. width:60px;
  7010. height:30px;
  7011. display:flex;
  7012. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7013. font-weight:400;
  7014. font-style:normal;
  7015. font-size:14px;
  7016. }
  7017. #u98924 .text {
  7018. position:absolute;
  7019. align-self:center;
  7020. padding:2px 2px 2px 2px;
  7021. box-sizing:border-box;
  7022. width:100%;
  7023. }
  7024. #u98924_text {
  7025. border-width:0px;
  7026. word-wrap:break-word;
  7027. text-transform:none;
  7028. }
  7029. #u98925_div {
  7030. border-width:0px;
  7031. position:absolute;
  7032. left:0px;
  7033. top:0px;
  7034. width:60px;
  7035. height:30px;
  7036. background:inherit;
  7037. background-color:rgba(24, 144, 255, 1);
  7038. border:none;
  7039. border-radius:4px;
  7040. -moz-box-shadow:none;
  7041. -webkit-box-shadow:none;
  7042. box-shadow:none;
  7043. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7044. font-weight:400;
  7045. font-style:normal;
  7046. font-size:14px;
  7047. color:#FFFFFF;
  7048. }
  7049. #u98925 {
  7050. border-width:0px;
  7051. position:absolute;
  7052. left:350px;
  7053. top:153px;
  7054. width:60px;
  7055. height:30px;
  7056. display:flex;
  7057. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7058. font-weight:400;
  7059. font-style:normal;
  7060. font-size:14px;
  7061. color:#FFFFFF;
  7062. }
  7063. #u98925 .text {
  7064. position:absolute;
  7065. align-self:center;
  7066. padding:2px 2px 2px 2px;
  7067. box-sizing:border-box;
  7068. width:100%;
  7069. }
  7070. #u98925_text {
  7071. border-width:0px;
  7072. word-wrap:break-word;
  7073. text-transform:none;
  7074. }
  7075. #u98926 {
  7076. border-width:0px;
  7077. position:absolute;
  7078. left:0px;
  7079. top:0px;
  7080. width:0px;
  7081. height:0px;
  7082. }
  7083. #u98927_div {
  7084. border-width:0px;
  7085. position:absolute;
  7086. left:0px;
  7087. top:0px;
  7088. width:140px;
  7089. height:30px;
  7090. background:inherit;
  7091. background-color:rgba(255, 255, 255, 1);
  7092. box-sizing:border-box;
  7093. border-width:1px;
  7094. border-style:solid;
  7095. border-color:rgba(215, 215, 215, 1);
  7096. border-radius:4px;
  7097. -moz-box-shadow:none;
  7098. -webkit-box-shadow:none;
  7099. box-shadow:none;
  7100. font-size:14px;
  7101. }
  7102. #u98927 {
  7103. border-width:0px;
  7104. position:absolute;
  7105. left:1100px;
  7106. top:103px;
  7107. width:140px;
  7108. height:30px;
  7109. display:flex;
  7110. font-size:14px;
  7111. }
  7112. #u98927 .text {
  7113. position:absolute;
  7114. align-self:center;
  7115. padding:2px 2px 2px 2px;
  7116. box-sizing:border-box;
  7117. width:100%;
  7118. }
  7119. #u98927_text {
  7120. border-width:0px;
  7121. word-wrap:break-word;
  7122. text-transform:none;
  7123. visibility:hidden;
  7124. }
  7125. #u98928_input {
  7126. position:absolute;
  7127. left:0px;
  7128. top:0px;
  7129. width:134px;
  7130. height:23px;
  7131. padding:2px 2px 2px 2px;
  7132. font-family:'ArialMT', 'Arial', sans-serif;
  7133. font-weight:400;
  7134. font-style:normal;
  7135. font-size:14px;
  7136. letter-spacing:normal;
  7137. color:#AAAAAA;
  7138. vertical-align:none;
  7139. text-align:left;
  7140. text-transform:none;
  7141. background-color:transparent;
  7142. border-color:transparent;
  7143. }
  7144. #u98928_input.disabled {
  7145. position:absolute;
  7146. left:0px;
  7147. top:0px;
  7148. width:134px;
  7149. height:23px;
  7150. padding:2px 2px 2px 2px;
  7151. font-family:'ArialMT', 'Arial', sans-serif;
  7152. font-weight:400;
  7153. font-style:normal;
  7154. font-size:14px;
  7155. letter-spacing:normal;
  7156. color:#AAAAAA;
  7157. vertical-align:none;
  7158. text-align:left;
  7159. text-transform:none;
  7160. background-color:transparent;
  7161. border-color:transparent;
  7162. }
  7163. #u98928_div {
  7164. border-width:0px;
  7165. position:absolute;
  7166. left:0px;
  7167. top:0px;
  7168. width:134px;
  7169. height:23px;
  7170. background:inherit;
  7171. background-color:rgba(255, 255, 255, 1);
  7172. border:none;
  7173. border-radius:0px;
  7174. -moz-box-shadow:none;
  7175. -webkit-box-shadow:none;
  7176. box-shadow:none;
  7177. font-size:14px;
  7178. color:#AAAAAA;
  7179. }
  7180. #u98928 {
  7181. border-width:0px;
  7182. position:absolute;
  7183. left:1104px;
  7184. top:105px;
  7185. width:134px;
  7186. height:23px;
  7187. display:flex;
  7188. font-size:14px;
  7189. color:#AAAAAA;
  7190. }
  7191. #u98928 .text {
  7192. position:absolute;
  7193. align-self:flex-start;
  7194. padding:2px 2px 2px 2px;
  7195. box-sizing:border-box;
  7196. width:100%;
  7197. }
  7198. #u98928_div.disabled {
  7199. border-width:0px;
  7200. position:absolute;
  7201. left:0px;
  7202. top:0px;
  7203. width:134px;
  7204. height:23px;
  7205. background:inherit;
  7206. background-color:rgba(240, 240, 240, 1);
  7207. border:none;
  7208. border-radius:0px;
  7209. -moz-box-shadow:none;
  7210. -webkit-box-shadow:none;
  7211. box-shadow:none;
  7212. font-size:14px;
  7213. color:#AAAAAA;
  7214. }
  7215. #u98928.disabled {
  7216. }
  7217. .u98928_input_option {
  7218. font-size:14px;
  7219. }