styles.css 161 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247
  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. #u93868_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. #u93868 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u93868 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u93868_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u93869_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. #u93869 {
  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. #u93869 .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. #u93869_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u93870_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. #u93870 {
  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. #u93870 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u93870_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u93871 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u93872_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u93872 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u93872 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u93872_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u93873_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. #u93873 {
  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. #u93873 .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. #u93873_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u93874_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. #u93874 {
  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. #u93874 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u93874_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u93875 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u93876_input {
  266. position:absolute;
  267. left:0px;
  268. top:0px;
  269. width:214px;
  270. height:27px;
  271. padding:2px 2px 2px 2px;
  272. font-family:'ArialMT', 'Arial', sans-serif;
  273. font-weight:400;
  274. font-style:normal;
  275. font-size:14px;
  276. letter-spacing:normal;
  277. color:#FFFFFF;
  278. vertical-align:none;
  279. text-align:left;
  280. text-transform:none;
  281. background-color:transparent;
  282. border-color:transparent;
  283. }
  284. #u93876_input.disabled {
  285. position:absolute;
  286. left:0px;
  287. top:0px;
  288. width:214px;
  289. height:27px;
  290. padding:2px 2px 2px 2px;
  291. font-family:'ArialMT', 'Arial', sans-serif;
  292. font-weight:400;
  293. font-style:normal;
  294. font-size:14px;
  295. letter-spacing:normal;
  296. color:#FFFFFF;
  297. vertical-align:none;
  298. text-align:left;
  299. text-transform:none;
  300. background-color:transparent;
  301. border-color:transparent;
  302. }
  303. #u93876_div {
  304. border-width:0px;
  305. position:absolute;
  306. left:0px;
  307. top:0px;
  308. width:214px;
  309. height:27px;
  310. background:inherit;
  311. background-color:rgba(255, 255, 255, 0);
  312. border:none;
  313. border-radius:0px;
  314. -moz-box-shadow:none;
  315. -webkit-box-shadow:none;
  316. box-shadow:none;
  317. font-size:14px;
  318. color:#FFFFFF;
  319. }
  320. #u93876 {
  321. border-width:0px;
  322. position:absolute;
  323. left:1089px;
  324. top:10px;
  325. width:214px;
  326. height:27px;
  327. display:flex;
  328. font-size:14px;
  329. color:#FFFFFF;
  330. }
  331. #u93876 .text {
  332. position:absolute;
  333. align-self:flex-start;
  334. padding:2px 2px 2px 2px;
  335. box-sizing:border-box;
  336. width:100%;
  337. }
  338. #u93876_div.disabled {
  339. border-width:0px;
  340. position:absolute;
  341. left:0px;
  342. top:0px;
  343. width:214px;
  344. height:27px;
  345. background:inherit;
  346. background-color:rgba(240, 240, 240, 1);
  347. border:none;
  348. border-radius:0px;
  349. -moz-box-shadow:none;
  350. -webkit-box-shadow:none;
  351. box-shadow:none;
  352. font-size:14px;
  353. color:#FFFFFF;
  354. }
  355. #u93876.disabled {
  356. }
  357. .u93876_input_option {
  358. font-size:14px;
  359. }
  360. #u93877_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u93877 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u93877 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u93877_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u93878_div {
  391. border-width:0px;
  392. position:absolute;
  393. left:0px;
  394. top:0px;
  395. width:100px;
  396. height:24px;
  397. background:inherit;
  398. background-color:rgba(242, 242, 242, 0.2);
  399. border:none;
  400. border-radius:25px;
  401. -moz-box-shadow:none;
  402. -webkit-box-shadow:none;
  403. box-shadow:none;
  404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  405. font-weight:400;
  406. font-style:normal;
  407. color:#FFFFFF;
  408. text-align:center;
  409. }
  410. #u93878 {
  411. border-width:0px;
  412. position:absolute;
  413. left:1350px;
  414. top:12px;
  415. width:100px;
  416. height:24px;
  417. display:flex;
  418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  419. font-weight:400;
  420. font-style:normal;
  421. color:#FFFFFF;
  422. text-align:center;
  423. }
  424. #u93878 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u93878_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u93879_div {
  437. border-width:0px;
  438. position:absolute;
  439. left:0px;
  440. top:0px;
  441. width:120px;
  442. height:24px;
  443. background:inherit;
  444. background-color:rgba(242, 242, 242, 0.2);
  445. border:none;
  446. border-radius:25px;
  447. -moz-box-shadow:none;
  448. -webkit-box-shadow:none;
  449. box-shadow:none;
  450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  451. font-weight:400;
  452. font-style:normal;
  453. color:#FFFFFF;
  454. text-align:center;
  455. }
  456. #u93879 {
  457. border-width:0px;
  458. position:absolute;
  459. left:1460px;
  460. top:12px;
  461. width:120px;
  462. height:24px;
  463. display:flex;
  464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  465. font-weight:400;
  466. font-style:normal;
  467. color:#FFFFFF;
  468. text-align:center;
  469. }
  470. #u93879 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u93879_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u93880 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u93881_div {
  491. border-width:0px;
  492. position:absolute;
  493. left:0px;
  494. top:0px;
  495. width:33px;
  496. height:22px;
  497. background:inherit;
  498. background-color:rgba(255, 255, 255, 0);
  499. border:none;
  500. border-radius:0px;
  501. -moz-box-shadow:none;
  502. -webkit-box-shadow:none;
  503. box-shadow:none;
  504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  505. font-weight:400;
  506. font-style:normal;
  507. font-size:16px;
  508. color:#FFFFFF;
  509. }
  510. #u93881 {
  511. border-width:0px;
  512. position:absolute;
  513. left:39px;
  514. top:71px;
  515. width:33px;
  516. height:22px;
  517. display:flex;
  518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  519. font-weight:400;
  520. font-style:normal;
  521. font-size:16px;
  522. color:#FFFFFF;
  523. }
  524. #u93881 .text {
  525. position:absolute;
  526. align-self:flex-start;
  527. padding:0px 0px 0px 0px;
  528. box-sizing:border-box;
  529. width:100%;
  530. }
  531. #u93881_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u93882_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u93882 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u93882 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u93882_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u93883 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u93884_div {
  575. border-width:0px;
  576. position:absolute;
  577. left:0px;
  578. top:0px;
  579. width:33px;
  580. height:22px;
  581. background:inherit;
  582. background-color:rgba(255, 255, 255, 0);
  583. border:none;
  584. border-radius:0px;
  585. -moz-box-shadow:none;
  586. -webkit-box-shadow:none;
  587. box-shadow:none;
  588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  589. font-weight:400;
  590. font-style:normal;
  591. font-size:16px;
  592. color:#FFFFFF;
  593. }
  594. #u93884 {
  595. border-width:0px;
  596. position:absolute;
  597. left:39px;
  598. top:147px;
  599. width:33px;
  600. height:22px;
  601. display:flex;
  602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  603. font-weight:400;
  604. font-style:normal;
  605. font-size:16px;
  606. color:#FFFFFF;
  607. }
  608. #u93884 .text {
  609. position:absolute;
  610. align-self:flex-start;
  611. padding:0px 0px 0px 0px;
  612. box-sizing:border-box;
  613. width:100%;
  614. }
  615. #u93884_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u93885_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u93885 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u93885 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u93885_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u93886 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u93887_div {
  659. border-width:0px;
  660. position:absolute;
  661. left:0px;
  662. top:0px;
  663. width:33px;
  664. height:22px;
  665. background:inherit;
  666. background-color:rgba(255, 255, 255, 0);
  667. border:none;
  668. border-radius:0px;
  669. -moz-box-shadow:none;
  670. -webkit-box-shadow:none;
  671. box-shadow:none;
  672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  673. font-weight:400;
  674. font-style:normal;
  675. font-size:16px;
  676. color:#FFFFFF;
  677. }
  678. #u93887 {
  679. border-width:0px;
  680. position:absolute;
  681. left:39px;
  682. top:399px;
  683. width:33px;
  684. height:22px;
  685. display:flex;
  686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  687. font-weight:400;
  688. font-style:normal;
  689. font-size:16px;
  690. color:#FFFFFF;
  691. }
  692. #u93887 .text {
  693. position:absolute;
  694. align-self:flex-start;
  695. padding:0px 0px 0px 0px;
  696. box-sizing:border-box;
  697. width:100%;
  698. }
  699. #u93887_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u93888_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u93888 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:403px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u93888 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u93888_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u93889 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u93890_div {
  743. border-width:0px;
  744. position:absolute;
  745. left:0px;
  746. top:0px;
  747. width:49px;
  748. height:22px;
  749. background:inherit;
  750. background-color:rgba(255, 255, 255, 0);
  751. border:none;
  752. border-radius:0px;
  753. -moz-box-shadow:none;
  754. -webkit-box-shadow:none;
  755. box-shadow:none;
  756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  757. font-weight:400;
  758. font-style:normal;
  759. font-size:16px;
  760. color:#FFFFFF;
  761. }
  762. #u93890 {
  763. border-width:0px;
  764. position:absolute;
  765. left:39px;
  766. top:109px;
  767. width:49px;
  768. height:22px;
  769. display:flex;
  770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  771. font-weight:400;
  772. font-style:normal;
  773. font-size:16px;
  774. color:#FFFFFF;
  775. }
  776. #u93890 .text {
  777. position:absolute;
  778. align-self:flex-start;
  779. padding:0px 0px 0px 0px;
  780. box-sizing:border-box;
  781. width:100%;
  782. }
  783. #u93890_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u93891_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u93891 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u93891 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u93891_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u93892 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u93893_div {
  827. border-width:0px;
  828. position:absolute;
  829. left:0px;
  830. top:0px;
  831. width:33px;
  832. height:22px;
  833. background:inherit;
  834. background-color:rgba(255, 255, 255, 0);
  835. border:none;
  836. border-radius:0px;
  837. -moz-box-shadow:none;
  838. -webkit-box-shadow:none;
  839. box-shadow:none;
  840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  841. font-weight:400;
  842. font-style:normal;
  843. font-size:16px;
  844. color:#FFFFFF;
  845. }
  846. #u93893 {
  847. border-width:0px;
  848. position:absolute;
  849. left:39px;
  850. top:441px;
  851. width:33px;
  852. height:22px;
  853. display:flex;
  854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  855. font-weight:400;
  856. font-style:normal;
  857. font-size:16px;
  858. color:#FFFFFF;
  859. }
  860. #u93893 .text {
  861. position:absolute;
  862. align-self:flex-start;
  863. padding:0px 0px 0px 0px;
  864. box-sizing:border-box;
  865. width:100%;
  866. }
  867. #u93893_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u93894_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u93894 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:445px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u93894 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u93894_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u93895 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u93896_div {
  911. border-width:0px;
  912. position:absolute;
  913. left:0px;
  914. top:0px;
  915. width:33px;
  916. height:22px;
  917. background:inherit;
  918. background-color:rgba(255, 255, 255, 0);
  919. border:none;
  920. border-radius:0px;
  921. -moz-box-shadow:none;
  922. -webkit-box-shadow:none;
  923. box-shadow:none;
  924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  925. font-weight:400;
  926. font-style:normal;
  927. font-size:16px;
  928. color:#FFFFFF;
  929. }
  930. #u93896 {
  931. border-width:0px;
  932. position:absolute;
  933. left:39px;
  934. top:315px;
  935. width:33px;
  936. height:22px;
  937. display:flex;
  938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  939. font-weight:400;
  940. font-style:normal;
  941. font-size:16px;
  942. color:#FFFFFF;
  943. }
  944. #u93896 .text {
  945. position:absolute;
  946. align-self:flex-start;
  947. padding:0px 0px 0px 0px;
  948. box-sizing:border-box;
  949. width:100%;
  950. }
  951. #u93896_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u93897_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u93897 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:319px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u93897 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u93897_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u93898 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u93899_div {
  995. border-width:0px;
  996. position:absolute;
  997. left:0px;
  998. top:0px;
  999. width:33px;
  1000. height:22px;
  1001. background:inherit;
  1002. background-color:rgba(255, 255, 255, 0);
  1003. border:none;
  1004. border-radius:0px;
  1005. -moz-box-shadow:none;
  1006. -webkit-box-shadow:none;
  1007. box-shadow:none;
  1008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1009. font-weight:400;
  1010. font-style:normal;
  1011. font-size:16px;
  1012. color:#FFFFFF;
  1013. }
  1014. #u93899 {
  1015. border-width:0px;
  1016. position:absolute;
  1017. left:39px;
  1018. top:189px;
  1019. width:33px;
  1020. height:22px;
  1021. display:flex;
  1022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1023. font-weight:400;
  1024. font-style:normal;
  1025. font-size:16px;
  1026. color:#FFFFFF;
  1027. }
  1028. #u93899 .text {
  1029. position:absolute;
  1030. align-self:flex-start;
  1031. padding:0px 0px 0px 0px;
  1032. box-sizing:border-box;
  1033. width:100%;
  1034. }
  1035. #u93899_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u93900_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u93900 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u93900 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u93900_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u93901 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u93902_div {
  1079. border-width:0px;
  1080. position:absolute;
  1081. left:0px;
  1082. top:0px;
  1083. width:33px;
  1084. height:22px;
  1085. background:inherit;
  1086. background-color:rgba(255, 255, 255, 0);
  1087. border:none;
  1088. border-radius:0px;
  1089. -moz-box-shadow:none;
  1090. -webkit-box-shadow:none;
  1091. box-shadow:none;
  1092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1093. font-weight:400;
  1094. font-style:normal;
  1095. font-size:16px;
  1096. color:#FFFFFF;
  1097. }
  1098. #u93902 {
  1099. border-width:0px;
  1100. position:absolute;
  1101. left:39px;
  1102. top:357px;
  1103. width:33px;
  1104. height:22px;
  1105. display:flex;
  1106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1107. font-weight:400;
  1108. font-style:normal;
  1109. font-size:16px;
  1110. color:#FFFFFF;
  1111. }
  1112. #u93902 .text {
  1113. position:absolute;
  1114. align-self:flex-start;
  1115. padding:0px 0px 0px 0px;
  1116. box-sizing:border-box;
  1117. width:100%;
  1118. }
  1119. #u93902_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u93903_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u93903 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:361px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u93903 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u93903_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u93904 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u93905_div {
  1163. border-width:0px;
  1164. position:absolute;
  1165. left:0px;
  1166. top:0px;
  1167. width:33px;
  1168. height:22px;
  1169. background:inherit;
  1170. background-color:rgba(255, 255, 255, 0);
  1171. border:none;
  1172. border-radius:0px;
  1173. -moz-box-shadow:none;
  1174. -webkit-box-shadow:none;
  1175. box-shadow:none;
  1176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1177. font-weight:400;
  1178. font-style:normal;
  1179. font-size:16px;
  1180. color:#FFFFFF;
  1181. }
  1182. #u93905 {
  1183. border-width:0px;
  1184. position:absolute;
  1185. left:39px;
  1186. top:483px;
  1187. width:33px;
  1188. height:22px;
  1189. display:flex;
  1190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1191. font-weight:400;
  1192. font-style:normal;
  1193. font-size:16px;
  1194. color:#FFFFFF;
  1195. }
  1196. #u93905 .text {
  1197. position:absolute;
  1198. align-self:flex-start;
  1199. padding:0px 0px 0px 0px;
  1200. box-sizing:border-box;
  1201. width:100%;
  1202. }
  1203. #u93905_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u93906_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u93906 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:487px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u93906 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u93906_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u93907 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u93908_div {
  1247. border-width:0px;
  1248. position:absolute;
  1249. left:0px;
  1250. top:0px;
  1251. width:33px;
  1252. height:22px;
  1253. background:inherit;
  1254. background-color:rgba(255, 255, 255, 0);
  1255. border:none;
  1256. border-radius:0px;
  1257. -moz-box-shadow:none;
  1258. -webkit-box-shadow:none;
  1259. box-shadow:none;
  1260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1261. font-weight:400;
  1262. font-style:normal;
  1263. font-size:16px;
  1264. color:#FFFFFF;
  1265. }
  1266. #u93908 {
  1267. border-width:0px;
  1268. position:absolute;
  1269. left:39px;
  1270. top:525px;
  1271. width:33px;
  1272. height:22px;
  1273. display:flex;
  1274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1275. font-weight:400;
  1276. font-style:normal;
  1277. font-size:16px;
  1278. color:#FFFFFF;
  1279. }
  1280. #u93908 .text {
  1281. position:absolute;
  1282. align-self:flex-start;
  1283. padding:0px 0px 0px 0px;
  1284. box-sizing:border-box;
  1285. width:100%;
  1286. }
  1287. #u93908_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u93909_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u93909 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:529px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u93909 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u93909_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u93910_div {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:0px;
  1326. top:0px;
  1327. width:29px;
  1328. height:20px;
  1329. background:inherit;
  1330. background-color:rgba(255, 255, 255, 0);
  1331. border:none;
  1332. border-radius:25px;
  1333. -moz-box-shadow:none;
  1334. -webkit-box-shadow:none;
  1335. box-shadow:none;
  1336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1337. font-weight:400;
  1338. font-style:normal;
  1339. color:#FFFFFF;
  1340. }
  1341. #u93910 {
  1342. border-width:0px;
  1343. position:absolute;
  1344. left:52px;
  1345. top:1145px;
  1346. width:29px;
  1347. height:20px;
  1348. display:flex;
  1349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1350. font-weight:400;
  1351. font-style:normal;
  1352. color:#FFFFFF;
  1353. }
  1354. #u93910 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u93910_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u93911_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u93911 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u93911 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u93911_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u93912_div {
  1397. border-width:0px;
  1398. position:absolute;
  1399. left:0px;
  1400. top:0px;
  1401. width:29px;
  1402. height:20px;
  1403. background:inherit;
  1404. background-color:rgba(255, 255, 255, 0);
  1405. border:none;
  1406. border-radius:25px;
  1407. -moz-box-shadow:none;
  1408. -webkit-box-shadow:none;
  1409. box-shadow:none;
  1410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1411. font-weight:400;
  1412. font-style:normal;
  1413. color:#FFFFFF;
  1414. }
  1415. #u93912 {
  1416. border-width:0px;
  1417. position:absolute;
  1418. left:52px;
  1419. top:1187px;
  1420. width:29px;
  1421. height:20px;
  1422. display:flex;
  1423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1424. font-weight:400;
  1425. font-style:normal;
  1426. color:#FFFFFF;
  1427. }
  1428. #u93912 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u93912_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u93913_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u93913 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u93913 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u93913_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u93914 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u93915_div {
  1479. border-width:0px;
  1480. position:absolute;
  1481. left:0px;
  1482. top:0px;
  1483. width:33px;
  1484. height:22px;
  1485. background:inherit;
  1486. background-color:rgba(255, 255, 255, 0);
  1487. border:none;
  1488. border-radius:0px;
  1489. -moz-box-shadow:none;
  1490. -webkit-box-shadow:none;
  1491. box-shadow:none;
  1492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1493. font-weight:400;
  1494. font-style:normal;
  1495. font-size:16px;
  1496. color:#FFFFFF;
  1497. }
  1498. #u93915 {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:39px;
  1502. top:231px;
  1503. width:33px;
  1504. height:22px;
  1505. display:flex;
  1506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1507. font-weight:400;
  1508. font-style:normal;
  1509. font-size:16px;
  1510. color:#FFFFFF;
  1511. }
  1512. #u93915 .text {
  1513. position:absolute;
  1514. align-self:flex-start;
  1515. padding:0px 0px 0px 0px;
  1516. box-sizing:border-box;
  1517. width:100%;
  1518. }
  1519. #u93915_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u93916_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u93916 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u93916 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u93916_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u93917 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u93918_div {
  1563. border-width:0px;
  1564. position:absolute;
  1565. left:0px;
  1566. top:0px;
  1567. width:33px;
  1568. height:22px;
  1569. background:inherit;
  1570. background-color:rgba(255, 255, 255, 0);
  1571. border:none;
  1572. border-radius:0px;
  1573. -moz-box-shadow:none;
  1574. -webkit-box-shadow:none;
  1575. box-shadow:none;
  1576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1577. font-weight:400;
  1578. font-style:normal;
  1579. font-size:16px;
  1580. color:#FFFFFF;
  1581. }
  1582. #u93918 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:39px;
  1586. top:273px;
  1587. width:33px;
  1588. height:22px;
  1589. display:flex;
  1590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1591. font-weight:400;
  1592. font-style:normal;
  1593. font-size:16px;
  1594. color:#FFFFFF;
  1595. }
  1596. #u93918 .text {
  1597. position:absolute;
  1598. align-self:flex-start;
  1599. padding:0px 0px 0px 0px;
  1600. box-sizing:border-box;
  1601. width:100%;
  1602. }
  1603. #u93918_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u93919_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u93919 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:277px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u93919 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u93919_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u93920_div {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:1259px;
  1644. height:1180px;
  1645. background:inherit;
  1646. background-color:rgba(255, 255, 255, 1);
  1647. border:none;
  1648. border-radius:0px;
  1649. -moz-box-shadow:none;
  1650. -webkit-box-shadow:none;
  1651. box-shadow:none;
  1652. }
  1653. #u93920 {
  1654. border-width:0px;
  1655. position:absolute;
  1656. left:330px;
  1657. top:50px;
  1658. width:1259px;
  1659. height:1180px;
  1660. display:flex;
  1661. }
  1662. #u93920 .text {
  1663. position:absolute;
  1664. align-self:center;
  1665. padding:2px 2px 2px 2px;
  1666. box-sizing:border-box;
  1667. width:100%;
  1668. }
  1669. #u93920_text {
  1670. border-width:0px;
  1671. word-wrap:break-word;
  1672. text-transform:none;
  1673. visibility:hidden;
  1674. }
  1675. #u93921 {
  1676. border-width:0px;
  1677. position:absolute;
  1678. left:350px;
  1679. top:232px;
  1680. width:1219px;
  1681. height:313px;
  1682. }
  1683. #u93922_img {
  1684. border-width:0px;
  1685. position:absolute;
  1686. left:0px;
  1687. top:0px;
  1688. width:117px;
  1689. height:35px;
  1690. }
  1691. #u93922 {
  1692. border-width:0px;
  1693. position:absolute;
  1694. left:0px;
  1695. top:0px;
  1696. width:117px;
  1697. height:35px;
  1698. display:flex;
  1699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1700. font-weight:400;
  1701. font-style:normal;
  1702. font-size:12px;
  1703. color:#FFFFFF;
  1704. }
  1705. #u93922 .text {
  1706. position:absolute;
  1707. align-self:center;
  1708. padding:2px 2px 2px 0px;
  1709. box-sizing:border-box;
  1710. width:100%;
  1711. }
  1712. #u93922_text {
  1713. border-width:0px;
  1714. word-wrap:break-word;
  1715. text-transform:none;
  1716. }
  1717. #u93923_img {
  1718. border-width:0px;
  1719. position:absolute;
  1720. left:0px;
  1721. top:0px;
  1722. width:69px;
  1723. height:35px;
  1724. }
  1725. #u93923 {
  1726. border-width:0px;
  1727. position:absolute;
  1728. left:117px;
  1729. top:0px;
  1730. width:69px;
  1731. height:35px;
  1732. display:flex;
  1733. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1734. font-weight:400;
  1735. font-style:normal;
  1736. font-size:12px;
  1737. color:#FFFFFF;
  1738. }
  1739. #u93923 .text {
  1740. position:absolute;
  1741. align-self:center;
  1742. padding:2px 2px 2px 0px;
  1743. box-sizing:border-box;
  1744. width:100%;
  1745. }
  1746. #u93923_text {
  1747. border-width:0px;
  1748. word-wrap:break-word;
  1749. text-transform:none;
  1750. }
  1751. #u93924_img {
  1752. border-width:0px;
  1753. position:absolute;
  1754. left:0px;
  1755. top:0px;
  1756. width:69px;
  1757. height:35px;
  1758. }
  1759. #u93924 {
  1760. border-width:0px;
  1761. position:absolute;
  1762. left:186px;
  1763. top:0px;
  1764. width:69px;
  1765. height:35px;
  1766. display:flex;
  1767. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1768. font-weight:400;
  1769. font-style:normal;
  1770. font-size:12px;
  1771. color:#FFFFFF;
  1772. }
  1773. #u93924 .text {
  1774. position:absolute;
  1775. align-self:center;
  1776. padding:2px 2px 2px 0px;
  1777. box-sizing:border-box;
  1778. width:100%;
  1779. }
  1780. #u93924_text {
  1781. border-width:0px;
  1782. word-wrap:break-word;
  1783. text-transform:none;
  1784. }
  1785. #u93925_img {
  1786. border-width:0px;
  1787. position:absolute;
  1788. left:0px;
  1789. top:0px;
  1790. width:69px;
  1791. height:35px;
  1792. }
  1793. #u93925 {
  1794. border-width:0px;
  1795. position:absolute;
  1796. left:255px;
  1797. top:0px;
  1798. width:69px;
  1799. height:35px;
  1800. display:flex;
  1801. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1802. font-weight:400;
  1803. font-style:normal;
  1804. font-size:12px;
  1805. color:#FFFFFF;
  1806. }
  1807. #u93925 .text {
  1808. position:absolute;
  1809. align-self:center;
  1810. padding:2px 2px 2px 0px;
  1811. box-sizing:border-box;
  1812. width:100%;
  1813. }
  1814. #u93925_text {
  1815. border-width:0px;
  1816. word-wrap:break-word;
  1817. text-transform:none;
  1818. }
  1819. #u93926_img {
  1820. border-width:0px;
  1821. position:absolute;
  1822. left:0px;
  1823. top:0px;
  1824. width:69px;
  1825. height:35px;
  1826. }
  1827. #u93926 {
  1828. border-width:0px;
  1829. position:absolute;
  1830. left:324px;
  1831. top:0px;
  1832. width:69px;
  1833. height:35px;
  1834. display:flex;
  1835. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1836. font-weight:400;
  1837. font-style:normal;
  1838. font-size:12px;
  1839. color:#FFFFFF;
  1840. }
  1841. #u93926 .text {
  1842. position:absolute;
  1843. align-self:center;
  1844. padding:2px 2px 2px 0px;
  1845. box-sizing:border-box;
  1846. width:100%;
  1847. }
  1848. #u93926_text {
  1849. border-width:0px;
  1850. word-wrap:break-word;
  1851. text-transform:none;
  1852. }
  1853. #u93927_img {
  1854. border-width:0px;
  1855. position:absolute;
  1856. left:0px;
  1857. top:0px;
  1858. width:72px;
  1859. height:35px;
  1860. }
  1861. #u93927 {
  1862. border-width:0px;
  1863. position:absolute;
  1864. left:393px;
  1865. top:0px;
  1866. width:72px;
  1867. height:35px;
  1868. display:flex;
  1869. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1870. font-weight:400;
  1871. font-style:normal;
  1872. font-size:12px;
  1873. color:#FFFFFF;
  1874. }
  1875. #u93927 .text {
  1876. position:absolute;
  1877. align-self:center;
  1878. padding:2px 2px 2px 0px;
  1879. box-sizing:border-box;
  1880. width:100%;
  1881. }
  1882. #u93927_text {
  1883. border-width:0px;
  1884. word-wrap:break-word;
  1885. text-transform:none;
  1886. }
  1887. #u93928_img {
  1888. border-width:0px;
  1889. position:absolute;
  1890. left:0px;
  1891. top:0px;
  1892. width:69px;
  1893. height:35px;
  1894. }
  1895. #u93928 {
  1896. border-width:0px;
  1897. position:absolute;
  1898. left:465px;
  1899. top:0px;
  1900. width:69px;
  1901. height:35px;
  1902. display:flex;
  1903. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1904. font-weight:400;
  1905. font-style:normal;
  1906. font-size:12px;
  1907. color:#FFFFFF;
  1908. }
  1909. #u93928 .text {
  1910. position:absolute;
  1911. align-self:center;
  1912. padding:2px 2px 2px 0px;
  1913. box-sizing:border-box;
  1914. width:100%;
  1915. }
  1916. #u93928_text {
  1917. border-width:0px;
  1918. word-wrap:break-word;
  1919. text-transform:none;
  1920. }
  1921. #u93929_img {
  1922. border-width:0px;
  1923. position:absolute;
  1924. left:0px;
  1925. top:0px;
  1926. width:69px;
  1927. height:35px;
  1928. }
  1929. #u93929 {
  1930. border-width:0px;
  1931. position:absolute;
  1932. left:534px;
  1933. top:0px;
  1934. width:69px;
  1935. height:35px;
  1936. display:flex;
  1937. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1938. font-weight:400;
  1939. font-style:normal;
  1940. font-size:12px;
  1941. color:#FFFFFF;
  1942. }
  1943. #u93929 .text {
  1944. position:absolute;
  1945. align-self:center;
  1946. padding:2px 2px 2px 0px;
  1947. box-sizing:border-box;
  1948. width:100%;
  1949. }
  1950. #u93929_text {
  1951. border-width:0px;
  1952. word-wrap:break-word;
  1953. text-transform:none;
  1954. }
  1955. #u93930_img {
  1956. border-width:0px;
  1957. position:absolute;
  1958. left:0px;
  1959. top:0px;
  1960. width:69px;
  1961. height:35px;
  1962. }
  1963. #u93930 {
  1964. border-width:0px;
  1965. position:absolute;
  1966. left:603px;
  1967. top:0px;
  1968. width:69px;
  1969. height:35px;
  1970. display:flex;
  1971. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1972. font-weight:400;
  1973. font-style:normal;
  1974. font-size:12px;
  1975. color:#FFFFFF;
  1976. }
  1977. #u93930 .text {
  1978. position:absolute;
  1979. align-self:center;
  1980. padding:2px 2px 2px 0px;
  1981. box-sizing:border-box;
  1982. width:100%;
  1983. }
  1984. #u93930_text {
  1985. border-width:0px;
  1986. word-wrap:break-word;
  1987. text-transform:none;
  1988. }
  1989. #u93931_img {
  1990. border-width:0px;
  1991. position:absolute;
  1992. left:0px;
  1993. top:0px;
  1994. width:69px;
  1995. height:35px;
  1996. }
  1997. #u93931 {
  1998. border-width:0px;
  1999. position:absolute;
  2000. left:672px;
  2001. top:0px;
  2002. width:69px;
  2003. height:35px;
  2004. display:flex;
  2005. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2006. font-weight:400;
  2007. font-style:normal;
  2008. font-size:12px;
  2009. color:#FFFFFF;
  2010. }
  2011. #u93931 .text {
  2012. position:absolute;
  2013. align-self:center;
  2014. padding:2px 2px 2px 0px;
  2015. box-sizing:border-box;
  2016. width:100%;
  2017. }
  2018. #u93931_text {
  2019. border-width:0px;
  2020. word-wrap:break-word;
  2021. text-transform:none;
  2022. }
  2023. #u93932_img {
  2024. border-width:0px;
  2025. position:absolute;
  2026. left:0px;
  2027. top:0px;
  2028. width:69px;
  2029. height:35px;
  2030. }
  2031. #u93932 {
  2032. border-width:0px;
  2033. position:absolute;
  2034. left:741px;
  2035. top:0px;
  2036. width:69px;
  2037. height:35px;
  2038. display:flex;
  2039. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2040. font-weight:400;
  2041. font-style:normal;
  2042. font-size:12px;
  2043. color:#FFFFFF;
  2044. }
  2045. #u93932 .text {
  2046. position:absolute;
  2047. align-self:center;
  2048. padding:2px 2px 2px 0px;
  2049. box-sizing:border-box;
  2050. width:100%;
  2051. }
  2052. #u93932_text {
  2053. border-width:0px;
  2054. word-wrap:break-word;
  2055. text-transform:none;
  2056. }
  2057. #u93933_img {
  2058. border-width:0px;
  2059. position:absolute;
  2060. left:0px;
  2061. top:0px;
  2062. width:72px;
  2063. height:35px;
  2064. }
  2065. #u93933 {
  2066. border-width:0px;
  2067. position:absolute;
  2068. left:810px;
  2069. top:0px;
  2070. width:72px;
  2071. height:35px;
  2072. display:flex;
  2073. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2074. font-weight:400;
  2075. font-style:normal;
  2076. font-size:12px;
  2077. color:#FFFFFF;
  2078. }
  2079. #u93933 .text {
  2080. position:absolute;
  2081. align-self:center;
  2082. padding:2px 2px 2px 0px;
  2083. box-sizing:border-box;
  2084. width:100%;
  2085. }
  2086. #u93933_text {
  2087. border-width:0px;
  2088. word-wrap:break-word;
  2089. text-transform:none;
  2090. }
  2091. #u93934_img {
  2092. border-width:0px;
  2093. position:absolute;
  2094. left:0px;
  2095. top:0px;
  2096. width:72px;
  2097. height:35px;
  2098. }
  2099. #u93934 {
  2100. border-width:0px;
  2101. position:absolute;
  2102. left:882px;
  2103. top:0px;
  2104. width:72px;
  2105. height:35px;
  2106. display:flex;
  2107. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2108. font-weight:400;
  2109. font-style:normal;
  2110. font-size:12px;
  2111. color:#FFFFFF;
  2112. }
  2113. #u93934 .text {
  2114. position:absolute;
  2115. align-self:center;
  2116. padding:2px 2px 2px 0px;
  2117. box-sizing:border-box;
  2118. width:100%;
  2119. }
  2120. #u93934_text {
  2121. border-width:0px;
  2122. word-wrap:break-word;
  2123. text-transform:none;
  2124. }
  2125. #u93935_img {
  2126. border-width:0px;
  2127. position:absolute;
  2128. left:0px;
  2129. top:0px;
  2130. width:69px;
  2131. height:35px;
  2132. }
  2133. #u93935 {
  2134. border-width:0px;
  2135. position:absolute;
  2136. left:954px;
  2137. top:0px;
  2138. width:69px;
  2139. height:35px;
  2140. display:flex;
  2141. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2142. font-weight:400;
  2143. font-style:normal;
  2144. font-size:12px;
  2145. color:#FFFFFF;
  2146. }
  2147. #u93935 .text {
  2148. position:absolute;
  2149. align-self:center;
  2150. padding:2px 2px 2px 0px;
  2151. box-sizing:border-box;
  2152. width:100%;
  2153. }
  2154. #u93935_text {
  2155. border-width:0px;
  2156. word-wrap:break-word;
  2157. text-transform:none;
  2158. }
  2159. #u93936_img {
  2160. border-width:0px;
  2161. position:absolute;
  2162. left:0px;
  2163. top:0px;
  2164. width:69px;
  2165. height:35px;
  2166. }
  2167. #u93936 {
  2168. border-width:0px;
  2169. position:absolute;
  2170. left:1023px;
  2171. top:0px;
  2172. width:69px;
  2173. height:35px;
  2174. display:flex;
  2175. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2176. font-weight:400;
  2177. font-style:normal;
  2178. font-size:12px;
  2179. color:#FFFFFF;
  2180. }
  2181. #u93936 .text {
  2182. position:absolute;
  2183. align-self:center;
  2184. padding:2px 2px 2px 0px;
  2185. box-sizing:border-box;
  2186. width:100%;
  2187. }
  2188. #u93936_text {
  2189. border-width:0px;
  2190. word-wrap:break-word;
  2191. text-transform:none;
  2192. }
  2193. #u93937_img {
  2194. border-width:0px;
  2195. position:absolute;
  2196. left:0px;
  2197. top:0px;
  2198. width:69px;
  2199. height:35px;
  2200. }
  2201. #u93937 {
  2202. border-width:0px;
  2203. position:absolute;
  2204. left:1092px;
  2205. top:0px;
  2206. width:69px;
  2207. height:35px;
  2208. display:flex;
  2209. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2210. font-weight:400;
  2211. font-style:normal;
  2212. font-size:12px;
  2213. color:#FFFFFF;
  2214. }
  2215. #u93937 .text {
  2216. position:absolute;
  2217. align-self:center;
  2218. padding:2px 2px 2px 0px;
  2219. box-sizing:border-box;
  2220. width:100%;
  2221. }
  2222. #u93937_text {
  2223. border-width:0px;
  2224. word-wrap:break-word;
  2225. text-transform:none;
  2226. }
  2227. #u93938_img {
  2228. border-width:0px;
  2229. position:absolute;
  2230. left:0px;
  2231. top:0px;
  2232. width:58px;
  2233. height:35px;
  2234. }
  2235. #u93938 {
  2236. border-width:0px;
  2237. position:absolute;
  2238. left:1161px;
  2239. top:0px;
  2240. width:58px;
  2241. height:35px;
  2242. display:flex;
  2243. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2244. font-weight:400;
  2245. font-style:normal;
  2246. font-size:12px;
  2247. color:#FFFFFF;
  2248. }
  2249. #u93938 .text {
  2250. position:absolute;
  2251. align-self:center;
  2252. padding:2px 2px 2px 0px;
  2253. box-sizing:border-box;
  2254. width:100%;
  2255. }
  2256. #u93938_text {
  2257. border-width:0px;
  2258. word-wrap:break-word;
  2259. text-transform:none;
  2260. }
  2261. #u93939_img {
  2262. border-width:0px;
  2263. position:absolute;
  2264. left:0px;
  2265. top:0px;
  2266. width:117px;
  2267. height:44px;
  2268. }
  2269. #u93939 {
  2270. border-width:0px;
  2271. position:absolute;
  2272. left:0px;
  2273. top:35px;
  2274. width:117px;
  2275. height:44px;
  2276. display:flex;
  2277. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2278. font-weight:400;
  2279. font-style:normal;
  2280. font-size:12px;
  2281. color:#333333;
  2282. line-height:40px;
  2283. }
  2284. #u93939 .text {
  2285. position:absolute;
  2286. align-self:center;
  2287. padding:2px 2px 2px 0px;
  2288. box-sizing:border-box;
  2289. width:100%;
  2290. }
  2291. #u93939_text {
  2292. border-width:0px;
  2293. word-wrap:break-word;
  2294. text-transform:none;
  2295. }
  2296. #u93940_img {
  2297. border-width:0px;
  2298. position:absolute;
  2299. left:0px;
  2300. top:0px;
  2301. width:69px;
  2302. height:44px;
  2303. }
  2304. #u93940 {
  2305. border-width:0px;
  2306. position:absolute;
  2307. left:117px;
  2308. top:35px;
  2309. width:69px;
  2310. height:44px;
  2311. display:flex;
  2312. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2313. font-weight:400;
  2314. font-style:normal;
  2315. font-size:12px;
  2316. color:#333333;
  2317. line-height:40px;
  2318. }
  2319. #u93940 .text {
  2320. position:absolute;
  2321. align-self:center;
  2322. padding:2px 2px 2px 0px;
  2323. box-sizing:border-box;
  2324. width:100%;
  2325. }
  2326. #u93940_text {
  2327. border-width:0px;
  2328. word-wrap:break-word;
  2329. text-transform:none;
  2330. visibility:hidden;
  2331. }
  2332. #u93941_img {
  2333. border-width:0px;
  2334. position:absolute;
  2335. left:0px;
  2336. top:0px;
  2337. width:69px;
  2338. height:44px;
  2339. }
  2340. #u93941 {
  2341. border-width:0px;
  2342. position:absolute;
  2343. left:186px;
  2344. top:35px;
  2345. width:69px;
  2346. height:44px;
  2347. display:flex;
  2348. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2349. font-weight:400;
  2350. font-style:normal;
  2351. font-size:12px;
  2352. color:#333333;
  2353. line-height:40px;
  2354. }
  2355. #u93941 .text {
  2356. position:absolute;
  2357. align-self:center;
  2358. padding:2px 2px 2px 0px;
  2359. box-sizing:border-box;
  2360. width:100%;
  2361. }
  2362. #u93941_text {
  2363. border-width:0px;
  2364. word-wrap:break-word;
  2365. text-transform:none;
  2366. visibility:hidden;
  2367. }
  2368. #u93942_img {
  2369. border-width:0px;
  2370. position:absolute;
  2371. left:0px;
  2372. top:0px;
  2373. width:69px;
  2374. height:44px;
  2375. }
  2376. #u93942 {
  2377. border-width:0px;
  2378. position:absolute;
  2379. left:255px;
  2380. top:35px;
  2381. width:69px;
  2382. height:44px;
  2383. display:flex;
  2384. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2385. font-weight:400;
  2386. font-style:normal;
  2387. font-size:12px;
  2388. color:#333333;
  2389. line-height:40px;
  2390. }
  2391. #u93942 .text {
  2392. position:absolute;
  2393. align-self:center;
  2394. padding:2px 2px 2px 0px;
  2395. box-sizing:border-box;
  2396. width:100%;
  2397. }
  2398. #u93942_text {
  2399. border-width:0px;
  2400. word-wrap:break-word;
  2401. text-transform:none;
  2402. visibility:hidden;
  2403. }
  2404. #u93943_img {
  2405. border-width:0px;
  2406. position:absolute;
  2407. left:0px;
  2408. top:0px;
  2409. width:69px;
  2410. height:44px;
  2411. }
  2412. #u93943 {
  2413. border-width:0px;
  2414. position:absolute;
  2415. left:324px;
  2416. top:35px;
  2417. width:69px;
  2418. height:44px;
  2419. display:flex;
  2420. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2421. font-weight:400;
  2422. font-style:normal;
  2423. font-size:12px;
  2424. color:#333333;
  2425. line-height:40px;
  2426. }
  2427. #u93943 .text {
  2428. position:absolute;
  2429. align-self:center;
  2430. padding:2px 2px 2px 0px;
  2431. box-sizing:border-box;
  2432. width:100%;
  2433. }
  2434. #u93943_text {
  2435. border-width:0px;
  2436. word-wrap:break-word;
  2437. text-transform:none;
  2438. visibility:hidden;
  2439. }
  2440. #u93944_img {
  2441. border-width:0px;
  2442. position:absolute;
  2443. left:0px;
  2444. top:0px;
  2445. width:72px;
  2446. height:44px;
  2447. }
  2448. #u93944 {
  2449. border-width:0px;
  2450. position:absolute;
  2451. left:393px;
  2452. top:35px;
  2453. width:72px;
  2454. height:44px;
  2455. display:flex;
  2456. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2457. font-weight:400;
  2458. font-style:normal;
  2459. font-size:12px;
  2460. color:#333333;
  2461. line-height:40px;
  2462. }
  2463. #u93944 .text {
  2464. position:absolute;
  2465. align-self:center;
  2466. padding:2px 2px 2px 0px;
  2467. box-sizing:border-box;
  2468. width:100%;
  2469. }
  2470. #u93944_text {
  2471. border-width:0px;
  2472. word-wrap:break-word;
  2473. text-transform:none;
  2474. visibility:hidden;
  2475. }
  2476. #u93945_img {
  2477. border-width:0px;
  2478. position:absolute;
  2479. left:0px;
  2480. top:0px;
  2481. width:69px;
  2482. height:44px;
  2483. }
  2484. #u93945 {
  2485. border-width:0px;
  2486. position:absolute;
  2487. left:465px;
  2488. top:35px;
  2489. width:69px;
  2490. height:44px;
  2491. display:flex;
  2492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2493. font-weight:400;
  2494. font-style:normal;
  2495. font-size:12px;
  2496. }
  2497. #u93945 .text {
  2498. position:absolute;
  2499. align-self:center;
  2500. padding:2px 2px 2px 0px;
  2501. box-sizing:border-box;
  2502. width:100%;
  2503. }
  2504. #u93945_text {
  2505. border-width:0px;
  2506. word-wrap:break-word;
  2507. text-transform:none;
  2508. }
  2509. #u93946_img {
  2510. border-width:0px;
  2511. position:absolute;
  2512. left:0px;
  2513. top:0px;
  2514. width:69px;
  2515. height:44px;
  2516. }
  2517. #u93946 {
  2518. border-width:0px;
  2519. position:absolute;
  2520. left:534px;
  2521. top:35px;
  2522. width:69px;
  2523. height:44px;
  2524. display:flex;
  2525. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2526. font-weight:400;
  2527. font-style:normal;
  2528. font-size:12px;
  2529. color:#606266;
  2530. }
  2531. #u93946 .text {
  2532. position:absolute;
  2533. align-self:center;
  2534. padding:2px 2px 2px 0px;
  2535. box-sizing:border-box;
  2536. width:100%;
  2537. }
  2538. #u93946_text {
  2539. border-width:0px;
  2540. word-wrap:break-word;
  2541. text-transform:none;
  2542. visibility:hidden;
  2543. }
  2544. #u93947_img {
  2545. border-width:0px;
  2546. position:absolute;
  2547. left:0px;
  2548. top:0px;
  2549. width:69px;
  2550. height:44px;
  2551. }
  2552. #u93947 {
  2553. border-width:0px;
  2554. position:absolute;
  2555. left:603px;
  2556. top:35px;
  2557. width:69px;
  2558. height:44px;
  2559. display:flex;
  2560. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2561. font-weight:400;
  2562. font-style:normal;
  2563. font-size:12px;
  2564. color:#333333;
  2565. }
  2566. #u93947 .text {
  2567. position:absolute;
  2568. align-self:center;
  2569. padding:2px 2px 2px 0px;
  2570. box-sizing:border-box;
  2571. width:100%;
  2572. }
  2573. #u93947_text {
  2574. border-width:0px;
  2575. word-wrap:break-word;
  2576. text-transform:none;
  2577. visibility:hidden;
  2578. }
  2579. #u93948_img {
  2580. border-width:0px;
  2581. position:absolute;
  2582. left:0px;
  2583. top:0px;
  2584. width:69px;
  2585. height:44px;
  2586. }
  2587. #u93948 {
  2588. border-width:0px;
  2589. position:absolute;
  2590. left:672px;
  2591. top:35px;
  2592. width:69px;
  2593. height:44px;
  2594. display:flex;
  2595. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2596. font-weight:400;
  2597. font-style:normal;
  2598. font-size:12px;
  2599. color:#333333;
  2600. }
  2601. #u93948 .text {
  2602. position:absolute;
  2603. align-self:center;
  2604. padding:2px 2px 2px 0px;
  2605. box-sizing:border-box;
  2606. width:100%;
  2607. }
  2608. #u93948_text {
  2609. border-width:0px;
  2610. word-wrap:break-word;
  2611. text-transform:none;
  2612. visibility:hidden;
  2613. }
  2614. #u93949_img {
  2615. border-width:0px;
  2616. position:absolute;
  2617. left:0px;
  2618. top:0px;
  2619. width:69px;
  2620. height:44px;
  2621. }
  2622. #u93949 {
  2623. border-width:0px;
  2624. position:absolute;
  2625. left:741px;
  2626. top:35px;
  2627. width:69px;
  2628. height:44px;
  2629. display:flex;
  2630. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2631. font-weight:400;
  2632. font-style:normal;
  2633. font-size:12px;
  2634. color:#333333;
  2635. }
  2636. #u93949 .text {
  2637. position:absolute;
  2638. align-self:center;
  2639. padding:2px 2px 2px 0px;
  2640. box-sizing:border-box;
  2641. width:100%;
  2642. }
  2643. #u93949_text {
  2644. border-width:0px;
  2645. word-wrap:break-word;
  2646. text-transform:none;
  2647. visibility:hidden;
  2648. }
  2649. #u93950_img {
  2650. border-width:0px;
  2651. position:absolute;
  2652. left:0px;
  2653. top:0px;
  2654. width:72px;
  2655. height:44px;
  2656. }
  2657. #u93950 {
  2658. border-width:0px;
  2659. position:absolute;
  2660. left:810px;
  2661. top:35px;
  2662. width:72px;
  2663. height:44px;
  2664. display:flex;
  2665. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2666. font-weight:400;
  2667. font-style:normal;
  2668. font-size:12px;
  2669. color:#333333;
  2670. }
  2671. #u93950 .text {
  2672. position:absolute;
  2673. align-self:center;
  2674. padding:2px 2px 2px 0px;
  2675. box-sizing:border-box;
  2676. width:100%;
  2677. }
  2678. #u93950_text {
  2679. border-width:0px;
  2680. word-wrap:break-word;
  2681. text-transform:none;
  2682. visibility:hidden;
  2683. }
  2684. #u93951_img {
  2685. border-width:0px;
  2686. position:absolute;
  2687. left:0px;
  2688. top:0px;
  2689. width:72px;
  2690. height:44px;
  2691. }
  2692. #u93951 {
  2693. border-width:0px;
  2694. position:absolute;
  2695. left:882px;
  2696. top:35px;
  2697. width:72px;
  2698. height:44px;
  2699. display:flex;
  2700. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2701. font-weight:400;
  2702. font-style:normal;
  2703. font-size:12px;
  2704. color:#333333;
  2705. }
  2706. #u93951 .text {
  2707. position:absolute;
  2708. align-self:center;
  2709. padding:2px 2px 2px 0px;
  2710. box-sizing:border-box;
  2711. width:100%;
  2712. }
  2713. #u93951_text {
  2714. border-width:0px;
  2715. word-wrap:break-word;
  2716. text-transform:none;
  2717. }
  2718. #u93952_img {
  2719. border-width:0px;
  2720. position:absolute;
  2721. left:0px;
  2722. top:0px;
  2723. width:69px;
  2724. height:44px;
  2725. }
  2726. #u93952 {
  2727. border-width:0px;
  2728. position:absolute;
  2729. left:954px;
  2730. top:35px;
  2731. width:69px;
  2732. height:44px;
  2733. display:flex;
  2734. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2735. font-weight:400;
  2736. font-style:normal;
  2737. font-size:12px;
  2738. color:#333333;
  2739. }
  2740. #u93952 .text {
  2741. position:absolute;
  2742. align-self:center;
  2743. padding:2px 2px 2px 0px;
  2744. box-sizing:border-box;
  2745. width:100%;
  2746. }
  2747. #u93952_text {
  2748. border-width:0px;
  2749. word-wrap:break-word;
  2750. text-transform:none;
  2751. visibility:hidden;
  2752. }
  2753. #u93953_img {
  2754. border-width:0px;
  2755. position:absolute;
  2756. left:0px;
  2757. top:0px;
  2758. width:69px;
  2759. height:44px;
  2760. }
  2761. #u93953 {
  2762. border-width:0px;
  2763. position:absolute;
  2764. left:1023px;
  2765. top:35px;
  2766. width:69px;
  2767. height:44px;
  2768. display:flex;
  2769. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2770. font-weight:400;
  2771. font-style:normal;
  2772. font-size:12px;
  2773. color:#333333;
  2774. }
  2775. #u93953 .text {
  2776. position:absolute;
  2777. align-self:center;
  2778. padding:2px 2px 2px 0px;
  2779. box-sizing:border-box;
  2780. width:100%;
  2781. }
  2782. #u93953_text {
  2783. border-width:0px;
  2784. word-wrap:break-word;
  2785. text-transform:none;
  2786. }
  2787. #u93954_img {
  2788. border-width:0px;
  2789. position:absolute;
  2790. left:0px;
  2791. top:0px;
  2792. width:69px;
  2793. height:44px;
  2794. }
  2795. #u93954 {
  2796. border-width:0px;
  2797. position:absolute;
  2798. left:1092px;
  2799. top:35px;
  2800. width:69px;
  2801. height:44px;
  2802. display:flex;
  2803. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2804. font-weight:400;
  2805. font-style:normal;
  2806. font-size:12px;
  2807. color:#333333;
  2808. }
  2809. #u93954 .text {
  2810. position:absolute;
  2811. align-self:center;
  2812. padding:2px 2px 2px 0px;
  2813. box-sizing:border-box;
  2814. width:100%;
  2815. }
  2816. #u93954_text {
  2817. border-width:0px;
  2818. word-wrap:break-word;
  2819. text-transform:none;
  2820. visibility:hidden;
  2821. }
  2822. #u93955_img {
  2823. border-width:0px;
  2824. position:absolute;
  2825. left:0px;
  2826. top:0px;
  2827. width:58px;
  2828. height:44px;
  2829. }
  2830. #u93955 {
  2831. border-width:0px;
  2832. position:absolute;
  2833. left:1161px;
  2834. top:35px;
  2835. width:58px;
  2836. height:44px;
  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:#298FFF;
  2843. line-height:35px;
  2844. }
  2845. #u93955 .text {
  2846. position:absolute;
  2847. align-self:center;
  2848. padding:2px 2px 2px 0px;
  2849. box-sizing:border-box;
  2850. width:100%;
  2851. }
  2852. #u93955_text {
  2853. border-width:0px;
  2854. word-wrap:break-word;
  2855. text-transform:none;
  2856. }
  2857. #u93956_img {
  2858. border-width:0px;
  2859. position:absolute;
  2860. left:0px;
  2861. top:0px;
  2862. width:117px;
  2863. height:44px;
  2864. }
  2865. #u93956 {
  2866. border-width:0px;
  2867. position:absolute;
  2868. left:0px;
  2869. top:79px;
  2870. width:117px;
  2871. height:44px;
  2872. display:flex;
  2873. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2874. font-weight:400;
  2875. font-style:normal;
  2876. font-size:12px;
  2877. color:#333333;
  2878. line-height:40px;
  2879. }
  2880. #u93956 .text {
  2881. position:absolute;
  2882. align-self:center;
  2883. padding:2px 2px 2px 0px;
  2884. box-sizing:border-box;
  2885. width:100%;
  2886. }
  2887. #u93956_text {
  2888. border-width:0px;
  2889. word-wrap:break-word;
  2890. text-transform:none;
  2891. }
  2892. #u93957_img {
  2893. border-width:0px;
  2894. position:absolute;
  2895. left:0px;
  2896. top:0px;
  2897. width:69px;
  2898. height:44px;
  2899. }
  2900. #u93957 {
  2901. border-width:0px;
  2902. position:absolute;
  2903. left:117px;
  2904. top:79px;
  2905. width:69px;
  2906. height:44px;
  2907. display:flex;
  2908. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2909. font-weight:400;
  2910. font-style:normal;
  2911. font-size:12px;
  2912. color:#333333;
  2913. line-height:40px;
  2914. }
  2915. #u93957 .text {
  2916. position:absolute;
  2917. align-self:center;
  2918. padding:2px 2px 2px 0px;
  2919. box-sizing:border-box;
  2920. width:100%;
  2921. }
  2922. #u93957_text {
  2923. border-width:0px;
  2924. word-wrap:break-word;
  2925. text-transform:none;
  2926. visibility:hidden;
  2927. }
  2928. #u93958_img {
  2929. border-width:0px;
  2930. position:absolute;
  2931. left:0px;
  2932. top:0px;
  2933. width:69px;
  2934. height:44px;
  2935. }
  2936. #u93958 {
  2937. border-width:0px;
  2938. position:absolute;
  2939. left:186px;
  2940. top:79px;
  2941. width:69px;
  2942. height:44px;
  2943. display:flex;
  2944. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2945. font-weight:400;
  2946. font-style:normal;
  2947. font-size:12px;
  2948. color:#333333;
  2949. line-height:40px;
  2950. }
  2951. #u93958 .text {
  2952. position:absolute;
  2953. align-self:center;
  2954. padding:2px 2px 2px 0px;
  2955. box-sizing:border-box;
  2956. width:100%;
  2957. }
  2958. #u93958_text {
  2959. border-width:0px;
  2960. word-wrap:break-word;
  2961. text-transform:none;
  2962. visibility:hidden;
  2963. }
  2964. #u93959_img {
  2965. border-width:0px;
  2966. position:absolute;
  2967. left:0px;
  2968. top:0px;
  2969. width:69px;
  2970. height:44px;
  2971. }
  2972. #u93959 {
  2973. border-width:0px;
  2974. position:absolute;
  2975. left:255px;
  2976. top:79px;
  2977. width:69px;
  2978. height:44px;
  2979. display:flex;
  2980. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2981. font-weight:400;
  2982. font-style:normal;
  2983. font-size:12px;
  2984. color:#333333;
  2985. line-height:40px;
  2986. }
  2987. #u93959 .text {
  2988. position:absolute;
  2989. align-self:center;
  2990. padding:2px 2px 2px 0px;
  2991. box-sizing:border-box;
  2992. width:100%;
  2993. }
  2994. #u93959_text {
  2995. border-width:0px;
  2996. word-wrap:break-word;
  2997. text-transform:none;
  2998. visibility:hidden;
  2999. }
  3000. #u93960_img {
  3001. border-width:0px;
  3002. position:absolute;
  3003. left:0px;
  3004. top:0px;
  3005. width:69px;
  3006. height:44px;
  3007. }
  3008. #u93960 {
  3009. border-width:0px;
  3010. position:absolute;
  3011. left:324px;
  3012. top:79px;
  3013. width:69px;
  3014. height:44px;
  3015. display:flex;
  3016. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3017. font-weight:400;
  3018. font-style:normal;
  3019. font-size:12px;
  3020. color:#333333;
  3021. line-height:40px;
  3022. }
  3023. #u93960 .text {
  3024. position:absolute;
  3025. align-self:center;
  3026. padding:2px 2px 2px 0px;
  3027. box-sizing:border-box;
  3028. width:100%;
  3029. }
  3030. #u93960_text {
  3031. border-width:0px;
  3032. word-wrap:break-word;
  3033. text-transform:none;
  3034. visibility:hidden;
  3035. }
  3036. #u93961_img {
  3037. border-width:0px;
  3038. position:absolute;
  3039. left:0px;
  3040. top:0px;
  3041. width:72px;
  3042. height:44px;
  3043. }
  3044. #u93961 {
  3045. border-width:0px;
  3046. position:absolute;
  3047. left:393px;
  3048. top:79px;
  3049. width:72px;
  3050. height:44px;
  3051. display:flex;
  3052. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3053. font-weight:400;
  3054. font-style:normal;
  3055. font-size:12px;
  3056. color:#333333;
  3057. line-height:40px;
  3058. }
  3059. #u93961 .text {
  3060. position:absolute;
  3061. align-self:center;
  3062. padding:2px 2px 2px 0px;
  3063. box-sizing:border-box;
  3064. width:100%;
  3065. }
  3066. #u93961_text {
  3067. border-width:0px;
  3068. word-wrap:break-word;
  3069. text-transform:none;
  3070. visibility:hidden;
  3071. }
  3072. #u93962_img {
  3073. border-width:0px;
  3074. position:absolute;
  3075. left:0px;
  3076. top:0px;
  3077. width:69px;
  3078. height:44px;
  3079. }
  3080. #u93962 {
  3081. border-width:0px;
  3082. position:absolute;
  3083. left:465px;
  3084. top:79px;
  3085. width:69px;
  3086. height:44px;
  3087. display:flex;
  3088. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3089. font-weight:400;
  3090. font-style:normal;
  3091. font-size:12px;
  3092. }
  3093. #u93962 .text {
  3094. position:absolute;
  3095. align-self:center;
  3096. padding:2px 2px 2px 0px;
  3097. box-sizing:border-box;
  3098. width:100%;
  3099. }
  3100. #u93962_text {
  3101. border-width:0px;
  3102. word-wrap:break-word;
  3103. text-transform:none;
  3104. visibility:hidden;
  3105. }
  3106. #u93963_img {
  3107. border-width:0px;
  3108. position:absolute;
  3109. left:0px;
  3110. top:0px;
  3111. width:69px;
  3112. height:44px;
  3113. }
  3114. #u93963 {
  3115. border-width:0px;
  3116. position:absolute;
  3117. left:534px;
  3118. top:79px;
  3119. width:69px;
  3120. height:44px;
  3121. display:flex;
  3122. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3123. font-weight:400;
  3124. font-style:normal;
  3125. font-size:12px;
  3126. color:#606266;
  3127. }
  3128. #u93963 .text {
  3129. position:absolute;
  3130. align-self:center;
  3131. padding:2px 2px 2px 0px;
  3132. box-sizing:border-box;
  3133. width:100%;
  3134. }
  3135. #u93963_text {
  3136. border-width:0px;
  3137. word-wrap:break-word;
  3138. text-transform:none;
  3139. visibility:hidden;
  3140. }
  3141. #u93964_img {
  3142. border-width:0px;
  3143. position:absolute;
  3144. left:0px;
  3145. top:0px;
  3146. width:69px;
  3147. height:44px;
  3148. }
  3149. #u93964 {
  3150. border-width:0px;
  3151. position:absolute;
  3152. left:603px;
  3153. top:79px;
  3154. width:69px;
  3155. height:44px;
  3156. display:flex;
  3157. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3158. font-weight:400;
  3159. font-style:normal;
  3160. font-size:12px;
  3161. color:#333333;
  3162. }
  3163. #u93964 .text {
  3164. position:absolute;
  3165. align-self:center;
  3166. padding:2px 2px 2px 0px;
  3167. box-sizing:border-box;
  3168. width:100%;
  3169. }
  3170. #u93964_text {
  3171. border-width:0px;
  3172. word-wrap:break-word;
  3173. text-transform:none;
  3174. visibility:hidden;
  3175. }
  3176. #u93965_img {
  3177. border-width:0px;
  3178. position:absolute;
  3179. left:0px;
  3180. top:0px;
  3181. width:69px;
  3182. height:44px;
  3183. }
  3184. #u93965 {
  3185. border-width:0px;
  3186. position:absolute;
  3187. left:672px;
  3188. top:79px;
  3189. width:69px;
  3190. height:44px;
  3191. display:flex;
  3192. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3193. font-weight:400;
  3194. font-style:normal;
  3195. font-size:12px;
  3196. color:#333333;
  3197. }
  3198. #u93965 .text {
  3199. position:absolute;
  3200. align-self:center;
  3201. padding:2px 2px 2px 0px;
  3202. box-sizing:border-box;
  3203. width:100%;
  3204. }
  3205. #u93965_text {
  3206. border-width:0px;
  3207. word-wrap:break-word;
  3208. text-transform:none;
  3209. visibility:hidden;
  3210. }
  3211. #u93966_img {
  3212. border-width:0px;
  3213. position:absolute;
  3214. left:0px;
  3215. top:0px;
  3216. width:69px;
  3217. height:44px;
  3218. }
  3219. #u93966 {
  3220. border-width:0px;
  3221. position:absolute;
  3222. left:741px;
  3223. top:79px;
  3224. width:69px;
  3225. height:44px;
  3226. display:flex;
  3227. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3228. font-weight:400;
  3229. font-style:normal;
  3230. font-size:12px;
  3231. color:#333333;
  3232. }
  3233. #u93966 .text {
  3234. position:absolute;
  3235. align-self:center;
  3236. padding:2px 2px 2px 0px;
  3237. box-sizing:border-box;
  3238. width:100%;
  3239. }
  3240. #u93966_text {
  3241. border-width:0px;
  3242. word-wrap:break-word;
  3243. text-transform:none;
  3244. visibility:hidden;
  3245. }
  3246. #u93967_img {
  3247. border-width:0px;
  3248. position:absolute;
  3249. left:0px;
  3250. top:0px;
  3251. width:72px;
  3252. height:44px;
  3253. }
  3254. #u93967 {
  3255. border-width:0px;
  3256. position:absolute;
  3257. left:810px;
  3258. top:79px;
  3259. width:72px;
  3260. height:44px;
  3261. display:flex;
  3262. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3263. font-weight:400;
  3264. font-style:normal;
  3265. font-size:12px;
  3266. color:#333333;
  3267. }
  3268. #u93967 .text {
  3269. position:absolute;
  3270. align-self:center;
  3271. padding:2px 2px 2px 0px;
  3272. box-sizing:border-box;
  3273. width:100%;
  3274. }
  3275. #u93967_text {
  3276. border-width:0px;
  3277. word-wrap:break-word;
  3278. text-transform:none;
  3279. visibility:hidden;
  3280. }
  3281. #u93968_img {
  3282. border-width:0px;
  3283. position:absolute;
  3284. left:0px;
  3285. top:0px;
  3286. width:72px;
  3287. height:44px;
  3288. }
  3289. #u93968 {
  3290. border-width:0px;
  3291. position:absolute;
  3292. left:882px;
  3293. top:79px;
  3294. width:72px;
  3295. height:44px;
  3296. display:flex;
  3297. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3298. font-weight:400;
  3299. font-style:normal;
  3300. font-size:12px;
  3301. color:#333333;
  3302. }
  3303. #u93968 .text {
  3304. position:absolute;
  3305. align-self:center;
  3306. padding:2px 2px 2px 0px;
  3307. box-sizing:border-box;
  3308. width:100%;
  3309. }
  3310. #u93968_text {
  3311. border-width:0px;
  3312. word-wrap:break-word;
  3313. text-transform:none;
  3314. }
  3315. #u93969_img {
  3316. border-width:0px;
  3317. position:absolute;
  3318. left:0px;
  3319. top:0px;
  3320. width:69px;
  3321. height:44px;
  3322. }
  3323. #u93969 {
  3324. border-width:0px;
  3325. position:absolute;
  3326. left:954px;
  3327. top:79px;
  3328. width:69px;
  3329. height:44px;
  3330. display:flex;
  3331. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3332. font-weight:400;
  3333. font-style:normal;
  3334. font-size:12px;
  3335. color:#333333;
  3336. }
  3337. #u93969 .text {
  3338. position:absolute;
  3339. align-self:center;
  3340. padding:2px 2px 2px 0px;
  3341. box-sizing:border-box;
  3342. width:100%;
  3343. }
  3344. #u93969_text {
  3345. border-width:0px;
  3346. word-wrap:break-word;
  3347. text-transform:none;
  3348. visibility:hidden;
  3349. }
  3350. #u93970_img {
  3351. border-width:0px;
  3352. position:absolute;
  3353. left:0px;
  3354. top:0px;
  3355. width:69px;
  3356. height:44px;
  3357. }
  3358. #u93970 {
  3359. border-width:0px;
  3360. position:absolute;
  3361. left:1023px;
  3362. top:79px;
  3363. width:69px;
  3364. height:44px;
  3365. display:flex;
  3366. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3367. font-weight:400;
  3368. font-style:normal;
  3369. font-size:12px;
  3370. color:#333333;
  3371. }
  3372. #u93970 .text {
  3373. position:absolute;
  3374. align-self:center;
  3375. padding:2px 2px 2px 0px;
  3376. box-sizing:border-box;
  3377. width:100%;
  3378. }
  3379. #u93970_text {
  3380. border-width:0px;
  3381. word-wrap:break-word;
  3382. text-transform:none;
  3383. }
  3384. #u93971_img {
  3385. border-width:0px;
  3386. position:absolute;
  3387. left:0px;
  3388. top:0px;
  3389. width:69px;
  3390. height:44px;
  3391. }
  3392. #u93971 {
  3393. border-width:0px;
  3394. position:absolute;
  3395. left:1092px;
  3396. top:79px;
  3397. width:69px;
  3398. height:44px;
  3399. display:flex;
  3400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3401. font-weight:400;
  3402. font-style:normal;
  3403. font-size:12px;
  3404. color:#333333;
  3405. }
  3406. #u93971 .text {
  3407. position:absolute;
  3408. align-self:center;
  3409. padding:2px 2px 2px 0px;
  3410. box-sizing:border-box;
  3411. width:100%;
  3412. }
  3413. #u93971_text {
  3414. border-width:0px;
  3415. word-wrap:break-word;
  3416. text-transform:none;
  3417. visibility:hidden;
  3418. }
  3419. #u93972_img {
  3420. border-width:0px;
  3421. position:absolute;
  3422. left:0px;
  3423. top:0px;
  3424. width:58px;
  3425. height:44px;
  3426. }
  3427. #u93972 {
  3428. border-width:0px;
  3429. position:absolute;
  3430. left:1161px;
  3431. top:79px;
  3432. width:58px;
  3433. height:44px;
  3434. display:flex;
  3435. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3436. font-weight:400;
  3437. font-style:normal;
  3438. font-size:12px;
  3439. color:#1890FF;
  3440. }
  3441. #u93972 .text {
  3442. position:absolute;
  3443. align-self:center;
  3444. padding:2px 2px 2px 0px;
  3445. box-sizing:border-box;
  3446. width:100%;
  3447. }
  3448. #u93972_text {
  3449. border-width:0px;
  3450. word-wrap:break-word;
  3451. text-transform:none;
  3452. visibility:hidden;
  3453. }
  3454. #u93973_img {
  3455. border-width:0px;
  3456. position:absolute;
  3457. left:0px;
  3458. top:0px;
  3459. width:117px;
  3460. height:38px;
  3461. }
  3462. #u93973 {
  3463. border-width:0px;
  3464. position:absolute;
  3465. left:0px;
  3466. top:123px;
  3467. width:117px;
  3468. height:38px;
  3469. display:flex;
  3470. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3471. font-weight:400;
  3472. font-style:normal;
  3473. font-size:12px;
  3474. color:#333333;
  3475. line-height:40px;
  3476. }
  3477. #u93973 .text {
  3478. position:absolute;
  3479. align-self:center;
  3480. padding:2px 2px 2px 0px;
  3481. box-sizing:border-box;
  3482. width:100%;
  3483. }
  3484. #u93973_text {
  3485. border-width:0px;
  3486. word-wrap:break-word;
  3487. text-transform:none;
  3488. visibility:hidden;
  3489. }
  3490. #u93974_img {
  3491. border-width:0px;
  3492. position:absolute;
  3493. left:0px;
  3494. top:0px;
  3495. width:69px;
  3496. height:38px;
  3497. }
  3498. #u93974 {
  3499. border-width:0px;
  3500. position:absolute;
  3501. left:117px;
  3502. top:123px;
  3503. width:69px;
  3504. height:38px;
  3505. display:flex;
  3506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3507. font-weight:400;
  3508. font-style:normal;
  3509. font-size:12px;
  3510. color:#333333;
  3511. line-height:40px;
  3512. }
  3513. #u93974 .text {
  3514. position:absolute;
  3515. align-self:center;
  3516. padding:2px 2px 2px 0px;
  3517. box-sizing:border-box;
  3518. width:100%;
  3519. }
  3520. #u93974_text {
  3521. border-width:0px;
  3522. word-wrap:break-word;
  3523. text-transform:none;
  3524. visibility:hidden;
  3525. }
  3526. #u93975_img {
  3527. border-width:0px;
  3528. position:absolute;
  3529. left:0px;
  3530. top:0px;
  3531. width:69px;
  3532. height:38px;
  3533. }
  3534. #u93975 {
  3535. border-width:0px;
  3536. position:absolute;
  3537. left:186px;
  3538. top:123px;
  3539. width:69px;
  3540. height:38px;
  3541. display:flex;
  3542. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3543. font-weight:400;
  3544. font-style:normal;
  3545. font-size:12px;
  3546. color:#333333;
  3547. line-height:40px;
  3548. }
  3549. #u93975 .text {
  3550. position:absolute;
  3551. align-self:center;
  3552. padding:2px 2px 2px 0px;
  3553. box-sizing:border-box;
  3554. width:100%;
  3555. }
  3556. #u93975_text {
  3557. border-width:0px;
  3558. word-wrap:break-word;
  3559. text-transform:none;
  3560. visibility:hidden;
  3561. }
  3562. #u93976_img {
  3563. border-width:0px;
  3564. position:absolute;
  3565. left:0px;
  3566. top:0px;
  3567. width:69px;
  3568. height:38px;
  3569. }
  3570. #u93976 {
  3571. border-width:0px;
  3572. position:absolute;
  3573. left:255px;
  3574. top:123px;
  3575. width:69px;
  3576. height:38px;
  3577. display:flex;
  3578. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3579. font-weight:400;
  3580. font-style:normal;
  3581. font-size:12px;
  3582. color:#333333;
  3583. line-height:40px;
  3584. }
  3585. #u93976 .text {
  3586. position:absolute;
  3587. align-self:center;
  3588. padding:2px 2px 2px 0px;
  3589. box-sizing:border-box;
  3590. width:100%;
  3591. }
  3592. #u93976_text {
  3593. border-width:0px;
  3594. word-wrap:break-word;
  3595. text-transform:none;
  3596. visibility:hidden;
  3597. }
  3598. #u93977_img {
  3599. border-width:0px;
  3600. position:absolute;
  3601. left:0px;
  3602. top:0px;
  3603. width:69px;
  3604. height:38px;
  3605. }
  3606. #u93977 {
  3607. border-width:0px;
  3608. position:absolute;
  3609. left:324px;
  3610. top:123px;
  3611. width:69px;
  3612. height:38px;
  3613. display:flex;
  3614. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3615. font-weight:400;
  3616. font-style:normal;
  3617. font-size:12px;
  3618. color:#333333;
  3619. line-height:40px;
  3620. }
  3621. #u93977 .text {
  3622. position:absolute;
  3623. align-self:center;
  3624. padding:2px 2px 2px 0px;
  3625. box-sizing:border-box;
  3626. width:100%;
  3627. }
  3628. #u93977_text {
  3629. border-width:0px;
  3630. word-wrap:break-word;
  3631. text-transform:none;
  3632. visibility:hidden;
  3633. }
  3634. #u93978_img {
  3635. border-width:0px;
  3636. position:absolute;
  3637. left:0px;
  3638. top:0px;
  3639. width:72px;
  3640. height:38px;
  3641. }
  3642. #u93978 {
  3643. border-width:0px;
  3644. position:absolute;
  3645. left:393px;
  3646. top:123px;
  3647. width:72px;
  3648. height:38px;
  3649. display:flex;
  3650. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3651. font-weight:400;
  3652. font-style:normal;
  3653. font-size:12px;
  3654. color:#333333;
  3655. line-height:40px;
  3656. }
  3657. #u93978 .text {
  3658. position:absolute;
  3659. align-self:center;
  3660. padding:2px 2px 2px 0px;
  3661. box-sizing:border-box;
  3662. width:100%;
  3663. }
  3664. #u93978_text {
  3665. border-width:0px;
  3666. word-wrap:break-word;
  3667. text-transform:none;
  3668. visibility:hidden;
  3669. }
  3670. #u93979_img {
  3671. border-width:0px;
  3672. position:absolute;
  3673. left:0px;
  3674. top:0px;
  3675. width:69px;
  3676. height:38px;
  3677. }
  3678. #u93979 {
  3679. border-width:0px;
  3680. position:absolute;
  3681. left:465px;
  3682. top:123px;
  3683. width:69px;
  3684. height:38px;
  3685. display:flex;
  3686. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3687. font-weight:400;
  3688. font-style:normal;
  3689. font-size:12px;
  3690. color:#606266;
  3691. }
  3692. #u93979 .text {
  3693. position:absolute;
  3694. align-self:center;
  3695. padding:2px 2px 2px 0px;
  3696. box-sizing:border-box;
  3697. width:100%;
  3698. }
  3699. #u93979_text {
  3700. border-width:0px;
  3701. word-wrap:break-word;
  3702. text-transform:none;
  3703. visibility:hidden;
  3704. }
  3705. #u93980_img {
  3706. border-width:0px;
  3707. position:absolute;
  3708. left:0px;
  3709. top:0px;
  3710. width:69px;
  3711. height:38px;
  3712. }
  3713. #u93980 {
  3714. border-width:0px;
  3715. position:absolute;
  3716. left:534px;
  3717. top:123px;
  3718. width:69px;
  3719. height:38px;
  3720. display:flex;
  3721. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3722. font-weight:400;
  3723. font-style:normal;
  3724. font-size:12px;
  3725. color:#606266;
  3726. }
  3727. #u93980 .text {
  3728. position:absolute;
  3729. align-self:center;
  3730. padding:2px 2px 2px 0px;
  3731. box-sizing:border-box;
  3732. width:100%;
  3733. }
  3734. #u93980_text {
  3735. border-width:0px;
  3736. word-wrap:break-word;
  3737. text-transform:none;
  3738. visibility:hidden;
  3739. }
  3740. #u93981_img {
  3741. border-width:0px;
  3742. position:absolute;
  3743. left:0px;
  3744. top:0px;
  3745. width:69px;
  3746. height:38px;
  3747. }
  3748. #u93981 {
  3749. border-width:0px;
  3750. position:absolute;
  3751. left:603px;
  3752. top:123px;
  3753. width:69px;
  3754. height:38px;
  3755. display:flex;
  3756. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3757. font-weight:400;
  3758. font-style:normal;
  3759. font-size:12px;
  3760. color:#606266;
  3761. }
  3762. #u93981 .text {
  3763. position:absolute;
  3764. align-self:center;
  3765. padding:2px 2px 2px 0px;
  3766. box-sizing:border-box;
  3767. width:100%;
  3768. }
  3769. #u93981_text {
  3770. border-width:0px;
  3771. word-wrap:break-word;
  3772. text-transform:none;
  3773. visibility:hidden;
  3774. }
  3775. #u93982_img {
  3776. border-width:0px;
  3777. position:absolute;
  3778. left:0px;
  3779. top:0px;
  3780. width:69px;
  3781. height:38px;
  3782. }
  3783. #u93982 {
  3784. border-width:0px;
  3785. position:absolute;
  3786. left:672px;
  3787. top:123px;
  3788. width:69px;
  3789. height:38px;
  3790. display:flex;
  3791. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3792. font-weight:400;
  3793. font-style:normal;
  3794. font-size:12px;
  3795. color:#606266;
  3796. }
  3797. #u93982 .text {
  3798. position:absolute;
  3799. align-self:center;
  3800. padding:2px 2px 2px 0px;
  3801. box-sizing:border-box;
  3802. width:100%;
  3803. }
  3804. #u93982_text {
  3805. border-width:0px;
  3806. word-wrap:break-word;
  3807. text-transform:none;
  3808. visibility:hidden;
  3809. }
  3810. #u93983_img {
  3811. border-width:0px;
  3812. position:absolute;
  3813. left:0px;
  3814. top:0px;
  3815. width:69px;
  3816. height:38px;
  3817. }
  3818. #u93983 {
  3819. border-width:0px;
  3820. position:absolute;
  3821. left:741px;
  3822. top:123px;
  3823. width:69px;
  3824. height:38px;
  3825. display:flex;
  3826. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3827. font-weight:400;
  3828. font-style:normal;
  3829. font-size:12px;
  3830. color:#606266;
  3831. }
  3832. #u93983 .text {
  3833. position:absolute;
  3834. align-self:center;
  3835. padding:2px 2px 2px 0px;
  3836. box-sizing:border-box;
  3837. width:100%;
  3838. }
  3839. #u93983_text {
  3840. border-width:0px;
  3841. word-wrap:break-word;
  3842. text-transform:none;
  3843. visibility:hidden;
  3844. }
  3845. #u93984_img {
  3846. border-width:0px;
  3847. position:absolute;
  3848. left:0px;
  3849. top:0px;
  3850. width:72px;
  3851. height:38px;
  3852. }
  3853. #u93984 {
  3854. border-width:0px;
  3855. position:absolute;
  3856. left:810px;
  3857. top:123px;
  3858. width:72px;
  3859. height:38px;
  3860. display:flex;
  3861. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3862. font-weight:400;
  3863. font-style:normal;
  3864. font-size:12px;
  3865. color:#606266;
  3866. }
  3867. #u93984 .text {
  3868. position:absolute;
  3869. align-self:center;
  3870. padding:2px 2px 2px 0px;
  3871. box-sizing:border-box;
  3872. width:100%;
  3873. }
  3874. #u93984_text {
  3875. border-width:0px;
  3876. word-wrap:break-word;
  3877. text-transform:none;
  3878. visibility:hidden;
  3879. }
  3880. #u93985_img {
  3881. border-width:0px;
  3882. position:absolute;
  3883. left:0px;
  3884. top:0px;
  3885. width:72px;
  3886. height:38px;
  3887. }
  3888. #u93985 {
  3889. border-width:0px;
  3890. position:absolute;
  3891. left:882px;
  3892. top:123px;
  3893. width:72px;
  3894. height:38px;
  3895. display:flex;
  3896. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3897. font-weight:400;
  3898. font-style:normal;
  3899. font-size:12px;
  3900. color:#606266;
  3901. }
  3902. #u93985 .text {
  3903. position:absolute;
  3904. align-self:center;
  3905. padding:2px 2px 2px 0px;
  3906. box-sizing:border-box;
  3907. width:100%;
  3908. }
  3909. #u93985_text {
  3910. border-width:0px;
  3911. word-wrap:break-word;
  3912. text-transform:none;
  3913. }
  3914. #u93986_img {
  3915. border-width:0px;
  3916. position:absolute;
  3917. left:0px;
  3918. top:0px;
  3919. width:69px;
  3920. height:38px;
  3921. }
  3922. #u93986 {
  3923. border-width:0px;
  3924. position:absolute;
  3925. left:954px;
  3926. top:123px;
  3927. width:69px;
  3928. height:38px;
  3929. display:flex;
  3930. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3931. font-weight:400;
  3932. font-style:normal;
  3933. font-size:12px;
  3934. color:#606266;
  3935. }
  3936. #u93986 .text {
  3937. position:absolute;
  3938. align-self:center;
  3939. padding:2px 2px 2px 0px;
  3940. box-sizing:border-box;
  3941. width:100%;
  3942. }
  3943. #u93986_text {
  3944. border-width:0px;
  3945. word-wrap:break-word;
  3946. text-transform:none;
  3947. visibility:hidden;
  3948. }
  3949. #u93987_img {
  3950. border-width:0px;
  3951. position:absolute;
  3952. left:0px;
  3953. top:0px;
  3954. width:69px;
  3955. height:38px;
  3956. }
  3957. #u93987 {
  3958. border-width:0px;
  3959. position:absolute;
  3960. left:1023px;
  3961. top:123px;
  3962. width:69px;
  3963. height:38px;
  3964. display:flex;
  3965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3966. font-weight:400;
  3967. font-style:normal;
  3968. font-size:12px;
  3969. color:#606266;
  3970. }
  3971. #u93987 .text {
  3972. position:absolute;
  3973. align-self:center;
  3974. padding:2px 2px 2px 0px;
  3975. box-sizing:border-box;
  3976. width:100%;
  3977. }
  3978. #u93987_text {
  3979. border-width:0px;
  3980. word-wrap:break-word;
  3981. text-transform:none;
  3982. }
  3983. #u93988_img {
  3984. border-width:0px;
  3985. position:absolute;
  3986. left:0px;
  3987. top:0px;
  3988. width:69px;
  3989. height:38px;
  3990. }
  3991. #u93988 {
  3992. border-width:0px;
  3993. position:absolute;
  3994. left:1092px;
  3995. top:123px;
  3996. width:69px;
  3997. height:38px;
  3998. display:flex;
  3999. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4000. font-weight:400;
  4001. font-style:normal;
  4002. font-size:12px;
  4003. color:#606266;
  4004. }
  4005. #u93988 .text {
  4006. position:absolute;
  4007. align-self:center;
  4008. padding:2px 2px 2px 0px;
  4009. box-sizing:border-box;
  4010. width:100%;
  4011. }
  4012. #u93988_text {
  4013. border-width:0px;
  4014. word-wrap:break-word;
  4015. text-transform:none;
  4016. visibility:hidden;
  4017. }
  4018. #u93989_img {
  4019. border-width:0px;
  4020. position:absolute;
  4021. left:0px;
  4022. top:0px;
  4023. width:58px;
  4024. height:38px;
  4025. }
  4026. #u93989 {
  4027. border-width:0px;
  4028. position:absolute;
  4029. left:1161px;
  4030. top:123px;
  4031. width:58px;
  4032. height:38px;
  4033. display:flex;
  4034. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4035. font-weight:400;
  4036. font-style:normal;
  4037. font-size:12px;
  4038. color:#1890FF;
  4039. }
  4040. #u93989 .text {
  4041. position:absolute;
  4042. align-self:center;
  4043. padding:2px 2px 2px 0px;
  4044. box-sizing:border-box;
  4045. width:100%;
  4046. }
  4047. #u93989_text {
  4048. border-width:0px;
  4049. word-wrap:break-word;
  4050. text-transform:none;
  4051. visibility:hidden;
  4052. }
  4053. #u93990_img {
  4054. border-width:0px;
  4055. position:absolute;
  4056. left:0px;
  4057. top:0px;
  4058. width:117px;
  4059. height:38px;
  4060. }
  4061. #u93990 {
  4062. border-width:0px;
  4063. position:absolute;
  4064. left:0px;
  4065. top:161px;
  4066. width:117px;
  4067. height:38px;
  4068. display:flex;
  4069. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4070. font-weight:400;
  4071. font-style:normal;
  4072. font-size:12px;
  4073. color:#606266;
  4074. }
  4075. #u93990 .text {
  4076. position:absolute;
  4077. align-self:center;
  4078. padding:2px 2px 2px 0px;
  4079. box-sizing:border-box;
  4080. width:100%;
  4081. }
  4082. #u93990_text {
  4083. border-width:0px;
  4084. word-wrap:break-word;
  4085. text-transform:none;
  4086. visibility:hidden;
  4087. }
  4088. #u93991_img {
  4089. border-width:0px;
  4090. position:absolute;
  4091. left:0px;
  4092. top:0px;
  4093. width:69px;
  4094. height:38px;
  4095. }
  4096. #u93991 {
  4097. border-width:0px;
  4098. position:absolute;
  4099. left:117px;
  4100. top:161px;
  4101. width:69px;
  4102. height:38px;
  4103. display:flex;
  4104. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4105. font-weight:400;
  4106. font-style:normal;
  4107. font-size:12px;
  4108. color:#606266;
  4109. }
  4110. #u93991 .text {
  4111. position:absolute;
  4112. align-self:center;
  4113. padding:2px 2px 2px 0px;
  4114. box-sizing:border-box;
  4115. width:100%;
  4116. }
  4117. #u93991_text {
  4118. border-width:0px;
  4119. word-wrap:break-word;
  4120. text-transform:none;
  4121. visibility:hidden;
  4122. }
  4123. #u93992_img {
  4124. border-width:0px;
  4125. position:absolute;
  4126. left:0px;
  4127. top:0px;
  4128. width:69px;
  4129. height:38px;
  4130. }
  4131. #u93992 {
  4132. border-width:0px;
  4133. position:absolute;
  4134. left:186px;
  4135. top:161px;
  4136. width:69px;
  4137. height:38px;
  4138. display:flex;
  4139. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4140. font-weight:400;
  4141. font-style:normal;
  4142. font-size:12px;
  4143. color:#606266;
  4144. }
  4145. #u93992 .text {
  4146. position:absolute;
  4147. align-self:center;
  4148. padding:2px 2px 2px 0px;
  4149. box-sizing:border-box;
  4150. width:100%;
  4151. }
  4152. #u93992_text {
  4153. border-width:0px;
  4154. word-wrap:break-word;
  4155. text-transform:none;
  4156. visibility:hidden;
  4157. }
  4158. #u93993_img {
  4159. border-width:0px;
  4160. position:absolute;
  4161. left:0px;
  4162. top:0px;
  4163. width:69px;
  4164. height:38px;
  4165. }
  4166. #u93993 {
  4167. border-width:0px;
  4168. position:absolute;
  4169. left:255px;
  4170. top:161px;
  4171. width:69px;
  4172. height:38px;
  4173. display:flex;
  4174. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4175. font-weight:400;
  4176. font-style:normal;
  4177. font-size:12px;
  4178. color:#606266;
  4179. }
  4180. #u93993 .text {
  4181. position:absolute;
  4182. align-self:center;
  4183. padding:2px 2px 2px 0px;
  4184. box-sizing:border-box;
  4185. width:100%;
  4186. }
  4187. #u93993_text {
  4188. border-width:0px;
  4189. word-wrap:break-word;
  4190. text-transform:none;
  4191. visibility:hidden;
  4192. }
  4193. #u93994_img {
  4194. border-width:0px;
  4195. position:absolute;
  4196. left:0px;
  4197. top:0px;
  4198. width:69px;
  4199. height:38px;
  4200. }
  4201. #u93994 {
  4202. border-width:0px;
  4203. position:absolute;
  4204. left:324px;
  4205. top:161px;
  4206. width:69px;
  4207. height:38px;
  4208. display:flex;
  4209. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4210. font-weight:400;
  4211. font-style:normal;
  4212. font-size:12px;
  4213. color:#606266;
  4214. }
  4215. #u93994 .text {
  4216. position:absolute;
  4217. align-self:center;
  4218. padding:2px 2px 2px 0px;
  4219. box-sizing:border-box;
  4220. width:100%;
  4221. }
  4222. #u93994_text {
  4223. border-width:0px;
  4224. word-wrap:break-word;
  4225. text-transform:none;
  4226. visibility:hidden;
  4227. }
  4228. #u93995_img {
  4229. border-width:0px;
  4230. position:absolute;
  4231. left:0px;
  4232. top:0px;
  4233. width:72px;
  4234. height:38px;
  4235. }
  4236. #u93995 {
  4237. border-width:0px;
  4238. position:absolute;
  4239. left:393px;
  4240. top:161px;
  4241. width:72px;
  4242. height:38px;
  4243. display:flex;
  4244. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4245. font-weight:400;
  4246. font-style:normal;
  4247. font-size:12px;
  4248. color:#606266;
  4249. }
  4250. #u93995 .text {
  4251. position:absolute;
  4252. align-self:center;
  4253. padding:2px 2px 2px 0px;
  4254. box-sizing:border-box;
  4255. width:100%;
  4256. }
  4257. #u93995_text {
  4258. border-width:0px;
  4259. word-wrap:break-word;
  4260. text-transform:none;
  4261. visibility:hidden;
  4262. }
  4263. #u93996_img {
  4264. border-width:0px;
  4265. position:absolute;
  4266. left:0px;
  4267. top:0px;
  4268. width:69px;
  4269. height:38px;
  4270. }
  4271. #u93996 {
  4272. border-width:0px;
  4273. position:absolute;
  4274. left:465px;
  4275. top:161px;
  4276. width:69px;
  4277. height:38px;
  4278. display:flex;
  4279. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4280. font-weight:400;
  4281. font-style:normal;
  4282. font-size:12px;
  4283. color:#606266;
  4284. }
  4285. #u93996 .text {
  4286. position:absolute;
  4287. align-self:center;
  4288. padding:2px 2px 2px 0px;
  4289. box-sizing:border-box;
  4290. width:100%;
  4291. }
  4292. #u93996_text {
  4293. border-width:0px;
  4294. word-wrap:break-word;
  4295. text-transform:none;
  4296. visibility:hidden;
  4297. }
  4298. #u93997_img {
  4299. border-width:0px;
  4300. position:absolute;
  4301. left:0px;
  4302. top:0px;
  4303. width:69px;
  4304. height:38px;
  4305. }
  4306. #u93997 {
  4307. border-width:0px;
  4308. position:absolute;
  4309. left:534px;
  4310. top:161px;
  4311. width:69px;
  4312. height:38px;
  4313. display:flex;
  4314. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4315. font-weight:400;
  4316. font-style:normal;
  4317. font-size:12px;
  4318. color:#606266;
  4319. }
  4320. #u93997 .text {
  4321. position:absolute;
  4322. align-self:center;
  4323. padding:2px 2px 2px 0px;
  4324. box-sizing:border-box;
  4325. width:100%;
  4326. }
  4327. #u93997_text {
  4328. border-width:0px;
  4329. word-wrap:break-word;
  4330. text-transform:none;
  4331. visibility:hidden;
  4332. }
  4333. #u93998_img {
  4334. border-width:0px;
  4335. position:absolute;
  4336. left:0px;
  4337. top:0px;
  4338. width:69px;
  4339. height:38px;
  4340. }
  4341. #u93998 {
  4342. border-width:0px;
  4343. position:absolute;
  4344. left:603px;
  4345. top:161px;
  4346. width:69px;
  4347. height:38px;
  4348. display:flex;
  4349. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4350. font-weight:400;
  4351. font-style:normal;
  4352. font-size:12px;
  4353. color:#606266;
  4354. }
  4355. #u93998 .text {
  4356. position:absolute;
  4357. align-self:center;
  4358. padding:2px 2px 2px 0px;
  4359. box-sizing:border-box;
  4360. width:100%;
  4361. }
  4362. #u93998_text {
  4363. border-width:0px;
  4364. word-wrap:break-word;
  4365. text-transform:none;
  4366. visibility:hidden;
  4367. }
  4368. #u93999_img {
  4369. border-width:0px;
  4370. position:absolute;
  4371. left:0px;
  4372. top:0px;
  4373. width:69px;
  4374. height:38px;
  4375. }
  4376. #u93999 {
  4377. border-width:0px;
  4378. position:absolute;
  4379. left:672px;
  4380. top:161px;
  4381. width:69px;
  4382. height:38px;
  4383. display:flex;
  4384. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4385. font-weight:400;
  4386. font-style:normal;
  4387. font-size:12px;
  4388. color:#606266;
  4389. }
  4390. #u93999 .text {
  4391. position:absolute;
  4392. align-self:center;
  4393. padding:2px 2px 2px 0px;
  4394. box-sizing:border-box;
  4395. width:100%;
  4396. }
  4397. #u93999_text {
  4398. border-width:0px;
  4399. word-wrap:break-word;
  4400. text-transform:none;
  4401. visibility:hidden;
  4402. }
  4403. #u94000_img {
  4404. border-width:0px;
  4405. position:absolute;
  4406. left:0px;
  4407. top:0px;
  4408. width:69px;
  4409. height:38px;
  4410. }
  4411. #u94000 {
  4412. border-width:0px;
  4413. position:absolute;
  4414. left:741px;
  4415. top:161px;
  4416. width:69px;
  4417. height:38px;
  4418. display:flex;
  4419. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4420. font-weight:400;
  4421. font-style:normal;
  4422. font-size:12px;
  4423. color:#606266;
  4424. }
  4425. #u94000 .text {
  4426. position:absolute;
  4427. align-self:center;
  4428. padding:2px 2px 2px 0px;
  4429. box-sizing:border-box;
  4430. width:100%;
  4431. }
  4432. #u94000_text {
  4433. border-width:0px;
  4434. word-wrap:break-word;
  4435. text-transform:none;
  4436. visibility:hidden;
  4437. }
  4438. #u94001_img {
  4439. border-width:0px;
  4440. position:absolute;
  4441. left:0px;
  4442. top:0px;
  4443. width:72px;
  4444. height:38px;
  4445. }
  4446. #u94001 {
  4447. border-width:0px;
  4448. position:absolute;
  4449. left:810px;
  4450. top:161px;
  4451. width:72px;
  4452. height:38px;
  4453. display:flex;
  4454. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4455. font-weight:400;
  4456. font-style:normal;
  4457. font-size:12px;
  4458. color:#606266;
  4459. }
  4460. #u94001 .text {
  4461. position:absolute;
  4462. align-self:center;
  4463. padding:2px 2px 2px 0px;
  4464. box-sizing:border-box;
  4465. width:100%;
  4466. }
  4467. #u94001_text {
  4468. border-width:0px;
  4469. word-wrap:break-word;
  4470. text-transform:none;
  4471. visibility:hidden;
  4472. }
  4473. #u94002_img {
  4474. border-width:0px;
  4475. position:absolute;
  4476. left:0px;
  4477. top:0px;
  4478. width:72px;
  4479. height:38px;
  4480. }
  4481. #u94002 {
  4482. border-width:0px;
  4483. position:absolute;
  4484. left:882px;
  4485. top:161px;
  4486. width:72px;
  4487. height:38px;
  4488. display:flex;
  4489. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4490. font-weight:400;
  4491. font-style:normal;
  4492. font-size:12px;
  4493. color:#606266;
  4494. }
  4495. #u94002 .text {
  4496. position:absolute;
  4497. align-self:center;
  4498. padding:2px 2px 2px 0px;
  4499. box-sizing:border-box;
  4500. width:100%;
  4501. }
  4502. #u94002_text {
  4503. border-width:0px;
  4504. word-wrap:break-word;
  4505. text-transform:none;
  4506. visibility:hidden;
  4507. }
  4508. #u94003_img {
  4509. border-width:0px;
  4510. position:absolute;
  4511. left:0px;
  4512. top:0px;
  4513. width:69px;
  4514. height:38px;
  4515. }
  4516. #u94003 {
  4517. border-width:0px;
  4518. position:absolute;
  4519. left:954px;
  4520. top:161px;
  4521. width:69px;
  4522. height:38px;
  4523. display:flex;
  4524. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4525. font-weight:400;
  4526. font-style:normal;
  4527. font-size:12px;
  4528. color:#606266;
  4529. }
  4530. #u94003 .text {
  4531. position:absolute;
  4532. align-self:center;
  4533. padding:2px 2px 2px 0px;
  4534. box-sizing:border-box;
  4535. width:100%;
  4536. }
  4537. #u94003_text {
  4538. border-width:0px;
  4539. word-wrap:break-word;
  4540. text-transform:none;
  4541. visibility:hidden;
  4542. }
  4543. #u94004_img {
  4544. border-width:0px;
  4545. position:absolute;
  4546. left:0px;
  4547. top:0px;
  4548. width:69px;
  4549. height:38px;
  4550. }
  4551. #u94004 {
  4552. border-width:0px;
  4553. position:absolute;
  4554. left:1023px;
  4555. top:161px;
  4556. width:69px;
  4557. height:38px;
  4558. display:flex;
  4559. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4560. font-weight:400;
  4561. font-style:normal;
  4562. font-size:12px;
  4563. color:#606266;
  4564. }
  4565. #u94004 .text {
  4566. position:absolute;
  4567. align-self:center;
  4568. padding:2px 2px 2px 0px;
  4569. box-sizing:border-box;
  4570. width:100%;
  4571. }
  4572. #u94004_text {
  4573. border-width:0px;
  4574. word-wrap:break-word;
  4575. text-transform:none;
  4576. visibility:hidden;
  4577. }
  4578. #u94005_img {
  4579. border-width:0px;
  4580. position:absolute;
  4581. left:0px;
  4582. top:0px;
  4583. width:69px;
  4584. height:38px;
  4585. }
  4586. #u94005 {
  4587. border-width:0px;
  4588. position:absolute;
  4589. left:1092px;
  4590. top:161px;
  4591. width:69px;
  4592. height:38px;
  4593. display:flex;
  4594. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4595. font-weight:400;
  4596. font-style:normal;
  4597. font-size:12px;
  4598. color:#606266;
  4599. }
  4600. #u94005 .text {
  4601. position:absolute;
  4602. align-self:center;
  4603. padding:2px 2px 2px 0px;
  4604. box-sizing:border-box;
  4605. width:100%;
  4606. }
  4607. #u94005_text {
  4608. border-width:0px;
  4609. word-wrap:break-word;
  4610. text-transform:none;
  4611. visibility:hidden;
  4612. }
  4613. #u94006_img {
  4614. border-width:0px;
  4615. position:absolute;
  4616. left:0px;
  4617. top:0px;
  4618. width:58px;
  4619. height:38px;
  4620. }
  4621. #u94006 {
  4622. border-width:0px;
  4623. position:absolute;
  4624. left:1161px;
  4625. top:161px;
  4626. width:58px;
  4627. height:38px;
  4628. display:flex;
  4629. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4630. font-weight:400;
  4631. font-style:normal;
  4632. font-size:12px;
  4633. color:#606266;
  4634. }
  4635. #u94006 .text {
  4636. position:absolute;
  4637. align-self:center;
  4638. padding:2px 2px 2px 0px;
  4639. box-sizing:border-box;
  4640. width:100%;
  4641. }
  4642. #u94006_text {
  4643. border-width:0px;
  4644. word-wrap:break-word;
  4645. text-transform:none;
  4646. visibility:hidden;
  4647. }
  4648. #u94007_img {
  4649. border-width:0px;
  4650. position:absolute;
  4651. left:0px;
  4652. top:0px;
  4653. width:117px;
  4654. height:38px;
  4655. }
  4656. #u94007 {
  4657. border-width:0px;
  4658. position:absolute;
  4659. left:0px;
  4660. top:199px;
  4661. width:117px;
  4662. height:38px;
  4663. display:flex;
  4664. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4665. font-weight:400;
  4666. font-style:normal;
  4667. font-size:12px;
  4668. color:#606266;
  4669. }
  4670. #u94007 .text {
  4671. position:absolute;
  4672. align-self:center;
  4673. padding:2px 2px 2px 0px;
  4674. box-sizing:border-box;
  4675. width:100%;
  4676. }
  4677. #u94007_text {
  4678. border-width:0px;
  4679. word-wrap:break-word;
  4680. text-transform:none;
  4681. visibility:hidden;
  4682. }
  4683. #u94008_img {
  4684. border-width:0px;
  4685. position:absolute;
  4686. left:0px;
  4687. top:0px;
  4688. width:69px;
  4689. height:38px;
  4690. }
  4691. #u94008 {
  4692. border-width:0px;
  4693. position:absolute;
  4694. left:117px;
  4695. top:199px;
  4696. width:69px;
  4697. height:38px;
  4698. display:flex;
  4699. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4700. font-weight:400;
  4701. font-style:normal;
  4702. font-size:12px;
  4703. color:#606266;
  4704. }
  4705. #u94008 .text {
  4706. position:absolute;
  4707. align-self:center;
  4708. padding:2px 2px 2px 0px;
  4709. box-sizing:border-box;
  4710. width:100%;
  4711. }
  4712. #u94008_text {
  4713. border-width:0px;
  4714. word-wrap:break-word;
  4715. text-transform:none;
  4716. visibility:hidden;
  4717. }
  4718. #u94009_img {
  4719. border-width:0px;
  4720. position:absolute;
  4721. left:0px;
  4722. top:0px;
  4723. width:69px;
  4724. height:38px;
  4725. }
  4726. #u94009 {
  4727. border-width:0px;
  4728. position:absolute;
  4729. left:186px;
  4730. top:199px;
  4731. width:69px;
  4732. height:38px;
  4733. display:flex;
  4734. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4735. font-weight:400;
  4736. font-style:normal;
  4737. font-size:12px;
  4738. color:#606266;
  4739. }
  4740. #u94009 .text {
  4741. position:absolute;
  4742. align-self:center;
  4743. padding:2px 2px 2px 0px;
  4744. box-sizing:border-box;
  4745. width:100%;
  4746. }
  4747. #u94009_text {
  4748. border-width:0px;
  4749. word-wrap:break-word;
  4750. text-transform:none;
  4751. visibility:hidden;
  4752. }
  4753. #u94010_img {
  4754. border-width:0px;
  4755. position:absolute;
  4756. left:0px;
  4757. top:0px;
  4758. width:69px;
  4759. height:38px;
  4760. }
  4761. #u94010 {
  4762. border-width:0px;
  4763. position:absolute;
  4764. left:255px;
  4765. top:199px;
  4766. width:69px;
  4767. height:38px;
  4768. display:flex;
  4769. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4770. font-weight:400;
  4771. font-style:normal;
  4772. font-size:12px;
  4773. color:#606266;
  4774. }
  4775. #u94010 .text {
  4776. position:absolute;
  4777. align-self:center;
  4778. padding:2px 2px 2px 0px;
  4779. box-sizing:border-box;
  4780. width:100%;
  4781. }
  4782. #u94010_text {
  4783. border-width:0px;
  4784. word-wrap:break-word;
  4785. text-transform:none;
  4786. visibility:hidden;
  4787. }
  4788. #u94011_img {
  4789. border-width:0px;
  4790. position:absolute;
  4791. left:0px;
  4792. top:0px;
  4793. width:69px;
  4794. height:38px;
  4795. }
  4796. #u94011 {
  4797. border-width:0px;
  4798. position:absolute;
  4799. left:324px;
  4800. top:199px;
  4801. width:69px;
  4802. height:38px;
  4803. display:flex;
  4804. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4805. font-weight:400;
  4806. font-style:normal;
  4807. font-size:12px;
  4808. color:#606266;
  4809. }
  4810. #u94011 .text {
  4811. position:absolute;
  4812. align-self:center;
  4813. padding:2px 2px 2px 0px;
  4814. box-sizing:border-box;
  4815. width:100%;
  4816. }
  4817. #u94011_text {
  4818. border-width:0px;
  4819. word-wrap:break-word;
  4820. text-transform:none;
  4821. visibility:hidden;
  4822. }
  4823. #u94012_img {
  4824. border-width:0px;
  4825. position:absolute;
  4826. left:0px;
  4827. top:0px;
  4828. width:72px;
  4829. height:38px;
  4830. }
  4831. #u94012 {
  4832. border-width:0px;
  4833. position:absolute;
  4834. left:393px;
  4835. top:199px;
  4836. width:72px;
  4837. height:38px;
  4838. display:flex;
  4839. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4840. font-weight:400;
  4841. font-style:normal;
  4842. font-size:12px;
  4843. color:#606266;
  4844. }
  4845. #u94012 .text {
  4846. position:absolute;
  4847. align-self:center;
  4848. padding:2px 2px 2px 0px;
  4849. box-sizing:border-box;
  4850. width:100%;
  4851. }
  4852. #u94012_text {
  4853. border-width:0px;
  4854. word-wrap:break-word;
  4855. text-transform:none;
  4856. visibility:hidden;
  4857. }
  4858. #u94013_img {
  4859. border-width:0px;
  4860. position:absolute;
  4861. left:0px;
  4862. top:0px;
  4863. width:69px;
  4864. height:38px;
  4865. }
  4866. #u94013 {
  4867. border-width:0px;
  4868. position:absolute;
  4869. left:465px;
  4870. top:199px;
  4871. width:69px;
  4872. height:38px;
  4873. display:flex;
  4874. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4875. font-weight:400;
  4876. font-style:normal;
  4877. font-size:12px;
  4878. color:#606266;
  4879. }
  4880. #u94013 .text {
  4881. position:absolute;
  4882. align-self:center;
  4883. padding:2px 2px 2px 0px;
  4884. box-sizing:border-box;
  4885. width:100%;
  4886. }
  4887. #u94013_text {
  4888. border-width:0px;
  4889. word-wrap:break-word;
  4890. text-transform:none;
  4891. visibility:hidden;
  4892. }
  4893. #u94014_img {
  4894. border-width:0px;
  4895. position:absolute;
  4896. left:0px;
  4897. top:0px;
  4898. width:69px;
  4899. height:38px;
  4900. }
  4901. #u94014 {
  4902. border-width:0px;
  4903. position:absolute;
  4904. left:534px;
  4905. top:199px;
  4906. width:69px;
  4907. height:38px;
  4908. display:flex;
  4909. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4910. font-weight:400;
  4911. font-style:normal;
  4912. font-size:12px;
  4913. color:#606266;
  4914. }
  4915. #u94014 .text {
  4916. position:absolute;
  4917. align-self:center;
  4918. padding:2px 2px 2px 0px;
  4919. box-sizing:border-box;
  4920. width:100%;
  4921. }
  4922. #u94014_text {
  4923. border-width:0px;
  4924. word-wrap:break-word;
  4925. text-transform:none;
  4926. visibility:hidden;
  4927. }
  4928. #u94015_img {
  4929. border-width:0px;
  4930. position:absolute;
  4931. left:0px;
  4932. top:0px;
  4933. width:69px;
  4934. height:38px;
  4935. }
  4936. #u94015 {
  4937. border-width:0px;
  4938. position:absolute;
  4939. left:603px;
  4940. top:199px;
  4941. width:69px;
  4942. height:38px;
  4943. display:flex;
  4944. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4945. font-weight:400;
  4946. font-style:normal;
  4947. font-size:12px;
  4948. color:#606266;
  4949. }
  4950. #u94015 .text {
  4951. position:absolute;
  4952. align-self:center;
  4953. padding:2px 2px 2px 0px;
  4954. box-sizing:border-box;
  4955. width:100%;
  4956. }
  4957. #u94015_text {
  4958. border-width:0px;
  4959. word-wrap:break-word;
  4960. text-transform:none;
  4961. visibility:hidden;
  4962. }
  4963. #u94016_img {
  4964. border-width:0px;
  4965. position:absolute;
  4966. left:0px;
  4967. top:0px;
  4968. width:69px;
  4969. height:38px;
  4970. }
  4971. #u94016 {
  4972. border-width:0px;
  4973. position:absolute;
  4974. left:672px;
  4975. top:199px;
  4976. width:69px;
  4977. height:38px;
  4978. display:flex;
  4979. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4980. font-weight:400;
  4981. font-style:normal;
  4982. font-size:12px;
  4983. color:#606266;
  4984. }
  4985. #u94016 .text {
  4986. position:absolute;
  4987. align-self:center;
  4988. padding:2px 2px 2px 0px;
  4989. box-sizing:border-box;
  4990. width:100%;
  4991. }
  4992. #u94016_text {
  4993. border-width:0px;
  4994. word-wrap:break-word;
  4995. text-transform:none;
  4996. visibility:hidden;
  4997. }
  4998. #u94017_img {
  4999. border-width:0px;
  5000. position:absolute;
  5001. left:0px;
  5002. top:0px;
  5003. width:69px;
  5004. height:38px;
  5005. }
  5006. #u94017 {
  5007. border-width:0px;
  5008. position:absolute;
  5009. left:741px;
  5010. top:199px;
  5011. width:69px;
  5012. height:38px;
  5013. display:flex;
  5014. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5015. font-weight:400;
  5016. font-style:normal;
  5017. font-size:12px;
  5018. color:#606266;
  5019. }
  5020. #u94017 .text {
  5021. position:absolute;
  5022. align-self:center;
  5023. padding:2px 2px 2px 0px;
  5024. box-sizing:border-box;
  5025. width:100%;
  5026. }
  5027. #u94017_text {
  5028. border-width:0px;
  5029. word-wrap:break-word;
  5030. text-transform:none;
  5031. visibility:hidden;
  5032. }
  5033. #u94018_img {
  5034. border-width:0px;
  5035. position:absolute;
  5036. left:0px;
  5037. top:0px;
  5038. width:72px;
  5039. height:38px;
  5040. }
  5041. #u94018 {
  5042. border-width:0px;
  5043. position:absolute;
  5044. left:810px;
  5045. top:199px;
  5046. width:72px;
  5047. height:38px;
  5048. display:flex;
  5049. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5050. font-weight:400;
  5051. font-style:normal;
  5052. font-size:12px;
  5053. color:#606266;
  5054. }
  5055. #u94018 .text {
  5056. position:absolute;
  5057. align-self:center;
  5058. padding:2px 2px 2px 0px;
  5059. box-sizing:border-box;
  5060. width:100%;
  5061. }
  5062. #u94018_text {
  5063. border-width:0px;
  5064. word-wrap:break-word;
  5065. text-transform:none;
  5066. visibility:hidden;
  5067. }
  5068. #u94019_img {
  5069. border-width:0px;
  5070. position:absolute;
  5071. left:0px;
  5072. top:0px;
  5073. width:72px;
  5074. height:38px;
  5075. }
  5076. #u94019 {
  5077. border-width:0px;
  5078. position:absolute;
  5079. left:882px;
  5080. top:199px;
  5081. width:72px;
  5082. height:38px;
  5083. display:flex;
  5084. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5085. font-weight:400;
  5086. font-style:normal;
  5087. font-size:12px;
  5088. color:#606266;
  5089. }
  5090. #u94019 .text {
  5091. position:absolute;
  5092. align-self:center;
  5093. padding:2px 2px 2px 0px;
  5094. box-sizing:border-box;
  5095. width:100%;
  5096. }
  5097. #u94019_text {
  5098. border-width:0px;
  5099. word-wrap:break-word;
  5100. text-transform:none;
  5101. visibility:hidden;
  5102. }
  5103. #u94020_img {
  5104. border-width:0px;
  5105. position:absolute;
  5106. left:0px;
  5107. top:0px;
  5108. width:69px;
  5109. height:38px;
  5110. }
  5111. #u94020 {
  5112. border-width:0px;
  5113. position:absolute;
  5114. left:954px;
  5115. top:199px;
  5116. width:69px;
  5117. height:38px;
  5118. display:flex;
  5119. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5120. font-weight:400;
  5121. font-style:normal;
  5122. font-size:12px;
  5123. color:#606266;
  5124. }
  5125. #u94020 .text {
  5126. position:absolute;
  5127. align-self:center;
  5128. padding:2px 2px 2px 0px;
  5129. box-sizing:border-box;
  5130. width:100%;
  5131. }
  5132. #u94020_text {
  5133. border-width:0px;
  5134. word-wrap:break-word;
  5135. text-transform:none;
  5136. visibility:hidden;
  5137. }
  5138. #u94021_img {
  5139. border-width:0px;
  5140. position:absolute;
  5141. left:0px;
  5142. top:0px;
  5143. width:69px;
  5144. height:38px;
  5145. }
  5146. #u94021 {
  5147. border-width:0px;
  5148. position:absolute;
  5149. left:1023px;
  5150. top:199px;
  5151. width:69px;
  5152. height:38px;
  5153. display:flex;
  5154. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5155. font-weight:400;
  5156. font-style:normal;
  5157. font-size:12px;
  5158. color:#606266;
  5159. }
  5160. #u94021 .text {
  5161. position:absolute;
  5162. align-self:center;
  5163. padding:2px 2px 2px 0px;
  5164. box-sizing:border-box;
  5165. width:100%;
  5166. }
  5167. #u94021_text {
  5168. border-width:0px;
  5169. word-wrap:break-word;
  5170. text-transform:none;
  5171. visibility:hidden;
  5172. }
  5173. #u94022_img {
  5174. border-width:0px;
  5175. position:absolute;
  5176. left:0px;
  5177. top:0px;
  5178. width:69px;
  5179. height:38px;
  5180. }
  5181. #u94022 {
  5182. border-width:0px;
  5183. position:absolute;
  5184. left:1092px;
  5185. top:199px;
  5186. width:69px;
  5187. height:38px;
  5188. display:flex;
  5189. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5190. font-weight:400;
  5191. font-style:normal;
  5192. font-size:12px;
  5193. color:#606266;
  5194. }
  5195. #u94022 .text {
  5196. position:absolute;
  5197. align-self:center;
  5198. padding:2px 2px 2px 0px;
  5199. box-sizing:border-box;
  5200. width:100%;
  5201. }
  5202. #u94022_text {
  5203. border-width:0px;
  5204. word-wrap:break-word;
  5205. text-transform:none;
  5206. visibility:hidden;
  5207. }
  5208. #u94023_img {
  5209. border-width:0px;
  5210. position:absolute;
  5211. left:0px;
  5212. top:0px;
  5213. width:58px;
  5214. height:38px;
  5215. }
  5216. #u94023 {
  5217. border-width:0px;
  5218. position:absolute;
  5219. left:1161px;
  5220. top:199px;
  5221. width:58px;
  5222. height:38px;
  5223. display:flex;
  5224. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5225. font-weight:400;
  5226. font-style:normal;
  5227. font-size:12px;
  5228. color:#606266;
  5229. }
  5230. #u94023 .text {
  5231. position:absolute;
  5232. align-self:center;
  5233. padding:2px 2px 2px 0px;
  5234. box-sizing:border-box;
  5235. width:100%;
  5236. }
  5237. #u94023_text {
  5238. border-width:0px;
  5239. word-wrap:break-word;
  5240. text-transform:none;
  5241. visibility:hidden;
  5242. }
  5243. #u94024_img {
  5244. border-width:0px;
  5245. position:absolute;
  5246. left:0px;
  5247. top:0px;
  5248. width:117px;
  5249. height:38px;
  5250. }
  5251. #u94024 {
  5252. border-width:0px;
  5253. position:absolute;
  5254. left:0px;
  5255. top:237px;
  5256. width:117px;
  5257. height:38px;
  5258. display:flex;
  5259. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5260. font-weight:400;
  5261. font-style:normal;
  5262. font-size:12px;
  5263. color:#606266;
  5264. }
  5265. #u94024 .text {
  5266. position:absolute;
  5267. align-self:center;
  5268. padding:2px 2px 2px 0px;
  5269. box-sizing:border-box;
  5270. width:100%;
  5271. }
  5272. #u94024_text {
  5273. border-width:0px;
  5274. word-wrap:break-word;
  5275. text-transform:none;
  5276. visibility:hidden;
  5277. }
  5278. #u94025_img {
  5279. border-width:0px;
  5280. position:absolute;
  5281. left:0px;
  5282. top:0px;
  5283. width:69px;
  5284. height:38px;
  5285. }
  5286. #u94025 {
  5287. border-width:0px;
  5288. position:absolute;
  5289. left:117px;
  5290. top:237px;
  5291. width:69px;
  5292. height:38px;
  5293. display:flex;
  5294. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5295. font-weight:400;
  5296. font-style:normal;
  5297. font-size:12px;
  5298. color:#606266;
  5299. }
  5300. #u94025 .text {
  5301. position:absolute;
  5302. align-self:center;
  5303. padding:2px 2px 2px 0px;
  5304. box-sizing:border-box;
  5305. width:100%;
  5306. }
  5307. #u94025_text {
  5308. border-width:0px;
  5309. word-wrap:break-word;
  5310. text-transform:none;
  5311. visibility:hidden;
  5312. }
  5313. #u94026_img {
  5314. border-width:0px;
  5315. position:absolute;
  5316. left:0px;
  5317. top:0px;
  5318. width:69px;
  5319. height:38px;
  5320. }
  5321. #u94026 {
  5322. border-width:0px;
  5323. position:absolute;
  5324. left:186px;
  5325. top:237px;
  5326. width:69px;
  5327. height:38px;
  5328. display:flex;
  5329. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5330. font-weight:400;
  5331. font-style:normal;
  5332. font-size:12px;
  5333. color:#606266;
  5334. }
  5335. #u94026 .text {
  5336. position:absolute;
  5337. align-self:center;
  5338. padding:2px 2px 2px 0px;
  5339. box-sizing:border-box;
  5340. width:100%;
  5341. }
  5342. #u94026_text {
  5343. border-width:0px;
  5344. word-wrap:break-word;
  5345. text-transform:none;
  5346. visibility:hidden;
  5347. }
  5348. #u94027_img {
  5349. border-width:0px;
  5350. position:absolute;
  5351. left:0px;
  5352. top:0px;
  5353. width:69px;
  5354. height:38px;
  5355. }
  5356. #u94027 {
  5357. border-width:0px;
  5358. position:absolute;
  5359. left:255px;
  5360. top:237px;
  5361. width:69px;
  5362. height:38px;
  5363. display:flex;
  5364. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5365. font-weight:400;
  5366. font-style:normal;
  5367. font-size:12px;
  5368. color:#606266;
  5369. }
  5370. #u94027 .text {
  5371. position:absolute;
  5372. align-self:center;
  5373. padding:2px 2px 2px 0px;
  5374. box-sizing:border-box;
  5375. width:100%;
  5376. }
  5377. #u94027_text {
  5378. border-width:0px;
  5379. word-wrap:break-word;
  5380. text-transform:none;
  5381. visibility:hidden;
  5382. }
  5383. #u94028_img {
  5384. border-width:0px;
  5385. position:absolute;
  5386. left:0px;
  5387. top:0px;
  5388. width:69px;
  5389. height:38px;
  5390. }
  5391. #u94028 {
  5392. border-width:0px;
  5393. position:absolute;
  5394. left:324px;
  5395. top:237px;
  5396. width:69px;
  5397. height:38px;
  5398. display:flex;
  5399. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5400. font-weight:400;
  5401. font-style:normal;
  5402. font-size:12px;
  5403. color:#606266;
  5404. }
  5405. #u94028 .text {
  5406. position:absolute;
  5407. align-self:center;
  5408. padding:2px 2px 2px 0px;
  5409. box-sizing:border-box;
  5410. width:100%;
  5411. }
  5412. #u94028_text {
  5413. border-width:0px;
  5414. word-wrap:break-word;
  5415. text-transform:none;
  5416. visibility:hidden;
  5417. }
  5418. #u94029_img {
  5419. border-width:0px;
  5420. position:absolute;
  5421. left:0px;
  5422. top:0px;
  5423. width:72px;
  5424. height:38px;
  5425. }
  5426. #u94029 {
  5427. border-width:0px;
  5428. position:absolute;
  5429. left:393px;
  5430. top:237px;
  5431. width:72px;
  5432. height:38px;
  5433. display:flex;
  5434. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5435. font-weight:400;
  5436. font-style:normal;
  5437. font-size:12px;
  5438. color:#606266;
  5439. }
  5440. #u94029 .text {
  5441. position:absolute;
  5442. align-self:center;
  5443. padding:2px 2px 2px 0px;
  5444. box-sizing:border-box;
  5445. width:100%;
  5446. }
  5447. #u94029_text {
  5448. border-width:0px;
  5449. word-wrap:break-word;
  5450. text-transform:none;
  5451. visibility:hidden;
  5452. }
  5453. #u94030_img {
  5454. border-width:0px;
  5455. position:absolute;
  5456. left:0px;
  5457. top:0px;
  5458. width:69px;
  5459. height:38px;
  5460. }
  5461. #u94030 {
  5462. border-width:0px;
  5463. position:absolute;
  5464. left:465px;
  5465. top:237px;
  5466. width:69px;
  5467. height:38px;
  5468. display:flex;
  5469. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5470. font-weight:400;
  5471. font-style:normal;
  5472. font-size:12px;
  5473. color:#606266;
  5474. }
  5475. #u94030 .text {
  5476. position:absolute;
  5477. align-self:center;
  5478. padding:2px 2px 2px 0px;
  5479. box-sizing:border-box;
  5480. width:100%;
  5481. }
  5482. #u94030_text {
  5483. border-width:0px;
  5484. word-wrap:break-word;
  5485. text-transform:none;
  5486. visibility:hidden;
  5487. }
  5488. #u94031_img {
  5489. border-width:0px;
  5490. position:absolute;
  5491. left:0px;
  5492. top:0px;
  5493. width:69px;
  5494. height:38px;
  5495. }
  5496. #u94031 {
  5497. border-width:0px;
  5498. position:absolute;
  5499. left:534px;
  5500. top:237px;
  5501. width:69px;
  5502. height:38px;
  5503. display:flex;
  5504. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5505. font-weight:400;
  5506. font-style:normal;
  5507. font-size:12px;
  5508. color:#606266;
  5509. }
  5510. #u94031 .text {
  5511. position:absolute;
  5512. align-self:center;
  5513. padding:2px 2px 2px 0px;
  5514. box-sizing:border-box;
  5515. width:100%;
  5516. }
  5517. #u94031_text {
  5518. border-width:0px;
  5519. word-wrap:break-word;
  5520. text-transform:none;
  5521. visibility:hidden;
  5522. }
  5523. #u94032_img {
  5524. border-width:0px;
  5525. position:absolute;
  5526. left:0px;
  5527. top:0px;
  5528. width:69px;
  5529. height:38px;
  5530. }
  5531. #u94032 {
  5532. border-width:0px;
  5533. position:absolute;
  5534. left:603px;
  5535. top:237px;
  5536. width:69px;
  5537. height:38px;
  5538. display:flex;
  5539. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5540. font-weight:400;
  5541. font-style:normal;
  5542. font-size:12px;
  5543. color:#606266;
  5544. }
  5545. #u94032 .text {
  5546. position:absolute;
  5547. align-self:center;
  5548. padding:2px 2px 2px 0px;
  5549. box-sizing:border-box;
  5550. width:100%;
  5551. }
  5552. #u94032_text {
  5553. border-width:0px;
  5554. word-wrap:break-word;
  5555. text-transform:none;
  5556. visibility:hidden;
  5557. }
  5558. #u94033_img {
  5559. border-width:0px;
  5560. position:absolute;
  5561. left:0px;
  5562. top:0px;
  5563. width:69px;
  5564. height:38px;
  5565. }
  5566. #u94033 {
  5567. border-width:0px;
  5568. position:absolute;
  5569. left:672px;
  5570. top:237px;
  5571. width:69px;
  5572. height:38px;
  5573. display:flex;
  5574. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5575. font-weight:400;
  5576. font-style:normal;
  5577. font-size:12px;
  5578. color:#606266;
  5579. }
  5580. #u94033 .text {
  5581. position:absolute;
  5582. align-self:center;
  5583. padding:2px 2px 2px 0px;
  5584. box-sizing:border-box;
  5585. width:100%;
  5586. }
  5587. #u94033_text {
  5588. border-width:0px;
  5589. word-wrap:break-word;
  5590. text-transform:none;
  5591. visibility:hidden;
  5592. }
  5593. #u94034_img {
  5594. border-width:0px;
  5595. position:absolute;
  5596. left:0px;
  5597. top:0px;
  5598. width:69px;
  5599. height:38px;
  5600. }
  5601. #u94034 {
  5602. border-width:0px;
  5603. position:absolute;
  5604. left:741px;
  5605. top:237px;
  5606. width:69px;
  5607. height:38px;
  5608. display:flex;
  5609. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5610. font-weight:400;
  5611. font-style:normal;
  5612. font-size:12px;
  5613. color:#606266;
  5614. }
  5615. #u94034 .text {
  5616. position:absolute;
  5617. align-self:center;
  5618. padding:2px 2px 2px 0px;
  5619. box-sizing:border-box;
  5620. width:100%;
  5621. }
  5622. #u94034_text {
  5623. border-width:0px;
  5624. word-wrap:break-word;
  5625. text-transform:none;
  5626. visibility:hidden;
  5627. }
  5628. #u94035_img {
  5629. border-width:0px;
  5630. position:absolute;
  5631. left:0px;
  5632. top:0px;
  5633. width:72px;
  5634. height:38px;
  5635. }
  5636. #u94035 {
  5637. border-width:0px;
  5638. position:absolute;
  5639. left:810px;
  5640. top:237px;
  5641. width:72px;
  5642. height:38px;
  5643. display:flex;
  5644. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5645. font-weight:400;
  5646. font-style:normal;
  5647. font-size:12px;
  5648. color:#606266;
  5649. }
  5650. #u94035 .text {
  5651. position:absolute;
  5652. align-self:center;
  5653. padding:2px 2px 2px 0px;
  5654. box-sizing:border-box;
  5655. width:100%;
  5656. }
  5657. #u94035_text {
  5658. border-width:0px;
  5659. word-wrap:break-word;
  5660. text-transform:none;
  5661. visibility:hidden;
  5662. }
  5663. #u94036_img {
  5664. border-width:0px;
  5665. position:absolute;
  5666. left:0px;
  5667. top:0px;
  5668. width:72px;
  5669. height:38px;
  5670. }
  5671. #u94036 {
  5672. border-width:0px;
  5673. position:absolute;
  5674. left:882px;
  5675. top:237px;
  5676. width:72px;
  5677. height:38px;
  5678. display:flex;
  5679. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5680. font-weight:400;
  5681. font-style:normal;
  5682. font-size:12px;
  5683. color:#606266;
  5684. }
  5685. #u94036 .text {
  5686. position:absolute;
  5687. align-self:center;
  5688. padding:2px 2px 2px 0px;
  5689. box-sizing:border-box;
  5690. width:100%;
  5691. }
  5692. #u94036_text {
  5693. border-width:0px;
  5694. word-wrap:break-word;
  5695. text-transform:none;
  5696. visibility:hidden;
  5697. }
  5698. #u94037_img {
  5699. border-width:0px;
  5700. position:absolute;
  5701. left:0px;
  5702. top:0px;
  5703. width:69px;
  5704. height:38px;
  5705. }
  5706. #u94037 {
  5707. border-width:0px;
  5708. position:absolute;
  5709. left:954px;
  5710. top:237px;
  5711. width:69px;
  5712. height:38px;
  5713. display:flex;
  5714. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5715. font-weight:400;
  5716. font-style:normal;
  5717. font-size:12px;
  5718. color:#606266;
  5719. }
  5720. #u94037 .text {
  5721. position:absolute;
  5722. align-self:center;
  5723. padding:2px 2px 2px 0px;
  5724. box-sizing:border-box;
  5725. width:100%;
  5726. }
  5727. #u94037_text {
  5728. border-width:0px;
  5729. word-wrap:break-word;
  5730. text-transform:none;
  5731. visibility:hidden;
  5732. }
  5733. #u94038_img {
  5734. border-width:0px;
  5735. position:absolute;
  5736. left:0px;
  5737. top:0px;
  5738. width:69px;
  5739. height:38px;
  5740. }
  5741. #u94038 {
  5742. border-width:0px;
  5743. position:absolute;
  5744. left:1023px;
  5745. top:237px;
  5746. width:69px;
  5747. height:38px;
  5748. display:flex;
  5749. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5750. font-weight:400;
  5751. font-style:normal;
  5752. font-size:12px;
  5753. color:#606266;
  5754. }
  5755. #u94038 .text {
  5756. position:absolute;
  5757. align-self:center;
  5758. padding:2px 2px 2px 0px;
  5759. box-sizing:border-box;
  5760. width:100%;
  5761. }
  5762. #u94038_text {
  5763. border-width:0px;
  5764. word-wrap:break-word;
  5765. text-transform:none;
  5766. visibility:hidden;
  5767. }
  5768. #u94039_img {
  5769. border-width:0px;
  5770. position:absolute;
  5771. left:0px;
  5772. top:0px;
  5773. width:69px;
  5774. height:38px;
  5775. }
  5776. #u94039 {
  5777. border-width:0px;
  5778. position:absolute;
  5779. left:1092px;
  5780. top:237px;
  5781. width:69px;
  5782. height:38px;
  5783. display:flex;
  5784. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5785. font-weight:400;
  5786. font-style:normal;
  5787. font-size:12px;
  5788. color:#606266;
  5789. }
  5790. #u94039 .text {
  5791. position:absolute;
  5792. align-self:center;
  5793. padding:2px 2px 2px 0px;
  5794. box-sizing:border-box;
  5795. width:100%;
  5796. }
  5797. #u94039_text {
  5798. border-width:0px;
  5799. word-wrap:break-word;
  5800. text-transform:none;
  5801. visibility:hidden;
  5802. }
  5803. #u94040_img {
  5804. border-width:0px;
  5805. position:absolute;
  5806. left:0px;
  5807. top:0px;
  5808. width:58px;
  5809. height:38px;
  5810. }
  5811. #u94040 {
  5812. border-width:0px;
  5813. position:absolute;
  5814. left:1161px;
  5815. top:237px;
  5816. width:58px;
  5817. height:38px;
  5818. display:flex;
  5819. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5820. font-weight:400;
  5821. font-style:normal;
  5822. font-size:12px;
  5823. color:#606266;
  5824. }
  5825. #u94040 .text {
  5826. position:absolute;
  5827. align-self:center;
  5828. padding:2px 2px 2px 0px;
  5829. box-sizing:border-box;
  5830. width:100%;
  5831. }
  5832. #u94040_text {
  5833. border-width:0px;
  5834. word-wrap:break-word;
  5835. text-transform:none;
  5836. visibility:hidden;
  5837. }
  5838. #u94041_img {
  5839. border-width:0px;
  5840. position:absolute;
  5841. left:0px;
  5842. top:0px;
  5843. width:117px;
  5844. height:38px;
  5845. }
  5846. #u94041 {
  5847. border-width:0px;
  5848. position:absolute;
  5849. left:0px;
  5850. top:275px;
  5851. width:117px;
  5852. height:38px;
  5853. display:flex;
  5854. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5855. font-weight:400;
  5856. font-style:normal;
  5857. font-size:12px;
  5858. color:#606266;
  5859. }
  5860. #u94041 .text {
  5861. position:absolute;
  5862. align-self:center;
  5863. padding:2px 2px 2px 0px;
  5864. box-sizing:border-box;
  5865. width:100%;
  5866. }
  5867. #u94041_text {
  5868. border-width:0px;
  5869. word-wrap:break-word;
  5870. text-transform:none;
  5871. visibility:hidden;
  5872. }
  5873. #u94042_img {
  5874. border-width:0px;
  5875. position:absolute;
  5876. left:0px;
  5877. top:0px;
  5878. width:69px;
  5879. height:38px;
  5880. }
  5881. #u94042 {
  5882. border-width:0px;
  5883. position:absolute;
  5884. left:117px;
  5885. top:275px;
  5886. width:69px;
  5887. height:38px;
  5888. display:flex;
  5889. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5890. font-weight:400;
  5891. font-style:normal;
  5892. font-size:12px;
  5893. color:#606266;
  5894. }
  5895. #u94042 .text {
  5896. position:absolute;
  5897. align-self:center;
  5898. padding:2px 2px 2px 0px;
  5899. box-sizing:border-box;
  5900. width:100%;
  5901. }
  5902. #u94042_text {
  5903. border-width:0px;
  5904. word-wrap:break-word;
  5905. text-transform:none;
  5906. visibility:hidden;
  5907. }
  5908. #u94043_img {
  5909. border-width:0px;
  5910. position:absolute;
  5911. left:0px;
  5912. top:0px;
  5913. width:69px;
  5914. height:38px;
  5915. }
  5916. #u94043 {
  5917. border-width:0px;
  5918. position:absolute;
  5919. left:186px;
  5920. top:275px;
  5921. width:69px;
  5922. height:38px;
  5923. display:flex;
  5924. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5925. font-weight:400;
  5926. font-style:normal;
  5927. font-size:12px;
  5928. color:#606266;
  5929. }
  5930. #u94043 .text {
  5931. position:absolute;
  5932. align-self:center;
  5933. padding:2px 2px 2px 0px;
  5934. box-sizing:border-box;
  5935. width:100%;
  5936. }
  5937. #u94043_text {
  5938. border-width:0px;
  5939. word-wrap:break-word;
  5940. text-transform:none;
  5941. visibility:hidden;
  5942. }
  5943. #u94044_img {
  5944. border-width:0px;
  5945. position:absolute;
  5946. left:0px;
  5947. top:0px;
  5948. width:69px;
  5949. height:38px;
  5950. }
  5951. #u94044 {
  5952. border-width:0px;
  5953. position:absolute;
  5954. left:255px;
  5955. top:275px;
  5956. width:69px;
  5957. height:38px;
  5958. display:flex;
  5959. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5960. font-weight:400;
  5961. font-style:normal;
  5962. font-size:12px;
  5963. color:#606266;
  5964. }
  5965. #u94044 .text {
  5966. position:absolute;
  5967. align-self:center;
  5968. padding:2px 2px 2px 0px;
  5969. box-sizing:border-box;
  5970. width:100%;
  5971. }
  5972. #u94044_text {
  5973. border-width:0px;
  5974. word-wrap:break-word;
  5975. text-transform:none;
  5976. visibility:hidden;
  5977. }
  5978. #u94045_img {
  5979. border-width:0px;
  5980. position:absolute;
  5981. left:0px;
  5982. top:0px;
  5983. width:69px;
  5984. height:38px;
  5985. }
  5986. #u94045 {
  5987. border-width:0px;
  5988. position:absolute;
  5989. left:324px;
  5990. top:275px;
  5991. width:69px;
  5992. height:38px;
  5993. display:flex;
  5994. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5995. font-weight:400;
  5996. font-style:normal;
  5997. font-size:12px;
  5998. color:#606266;
  5999. }
  6000. #u94045 .text {
  6001. position:absolute;
  6002. align-self:center;
  6003. padding:2px 2px 2px 0px;
  6004. box-sizing:border-box;
  6005. width:100%;
  6006. }
  6007. #u94045_text {
  6008. border-width:0px;
  6009. word-wrap:break-word;
  6010. text-transform:none;
  6011. visibility:hidden;
  6012. }
  6013. #u94046_img {
  6014. border-width:0px;
  6015. position:absolute;
  6016. left:0px;
  6017. top:0px;
  6018. width:72px;
  6019. height:38px;
  6020. }
  6021. #u94046 {
  6022. border-width:0px;
  6023. position:absolute;
  6024. left:393px;
  6025. top:275px;
  6026. width:72px;
  6027. height:38px;
  6028. display:flex;
  6029. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6030. font-weight:400;
  6031. font-style:normal;
  6032. font-size:12px;
  6033. color:#606266;
  6034. }
  6035. #u94046 .text {
  6036. position:absolute;
  6037. align-self:center;
  6038. padding:2px 2px 2px 0px;
  6039. box-sizing:border-box;
  6040. width:100%;
  6041. }
  6042. #u94046_text {
  6043. border-width:0px;
  6044. word-wrap:break-word;
  6045. text-transform:none;
  6046. visibility:hidden;
  6047. }
  6048. #u94047_img {
  6049. border-width:0px;
  6050. position:absolute;
  6051. left:0px;
  6052. top:0px;
  6053. width:69px;
  6054. height:38px;
  6055. }
  6056. #u94047 {
  6057. border-width:0px;
  6058. position:absolute;
  6059. left:465px;
  6060. top:275px;
  6061. width:69px;
  6062. height:38px;
  6063. display:flex;
  6064. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6065. font-weight:400;
  6066. font-style:normal;
  6067. font-size:12px;
  6068. color:#606266;
  6069. }
  6070. #u94047 .text {
  6071. position:absolute;
  6072. align-self:center;
  6073. padding:2px 2px 2px 0px;
  6074. box-sizing:border-box;
  6075. width:100%;
  6076. }
  6077. #u94047_text {
  6078. border-width:0px;
  6079. word-wrap:break-word;
  6080. text-transform:none;
  6081. visibility:hidden;
  6082. }
  6083. #u94048_img {
  6084. border-width:0px;
  6085. position:absolute;
  6086. left:0px;
  6087. top:0px;
  6088. width:69px;
  6089. height:38px;
  6090. }
  6091. #u94048 {
  6092. border-width:0px;
  6093. position:absolute;
  6094. left:534px;
  6095. top:275px;
  6096. width:69px;
  6097. height:38px;
  6098. display:flex;
  6099. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6100. font-weight:400;
  6101. font-style:normal;
  6102. font-size:12px;
  6103. color:#606266;
  6104. }
  6105. #u94048 .text {
  6106. position:absolute;
  6107. align-self:center;
  6108. padding:2px 2px 2px 0px;
  6109. box-sizing:border-box;
  6110. width:100%;
  6111. }
  6112. #u94048_text {
  6113. border-width:0px;
  6114. word-wrap:break-word;
  6115. text-transform:none;
  6116. visibility:hidden;
  6117. }
  6118. #u94049_img {
  6119. border-width:0px;
  6120. position:absolute;
  6121. left:0px;
  6122. top:0px;
  6123. width:69px;
  6124. height:38px;
  6125. }
  6126. #u94049 {
  6127. border-width:0px;
  6128. position:absolute;
  6129. left:603px;
  6130. top:275px;
  6131. width:69px;
  6132. height:38px;
  6133. display:flex;
  6134. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6135. font-weight:400;
  6136. font-style:normal;
  6137. font-size:12px;
  6138. color:#606266;
  6139. }
  6140. #u94049 .text {
  6141. position:absolute;
  6142. align-self:center;
  6143. padding:2px 2px 2px 0px;
  6144. box-sizing:border-box;
  6145. width:100%;
  6146. }
  6147. #u94049_text {
  6148. border-width:0px;
  6149. word-wrap:break-word;
  6150. text-transform:none;
  6151. visibility:hidden;
  6152. }
  6153. #u94050_img {
  6154. border-width:0px;
  6155. position:absolute;
  6156. left:0px;
  6157. top:0px;
  6158. width:69px;
  6159. height:38px;
  6160. }
  6161. #u94050 {
  6162. border-width:0px;
  6163. position:absolute;
  6164. left:672px;
  6165. top:275px;
  6166. width:69px;
  6167. height:38px;
  6168. display:flex;
  6169. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6170. font-weight:400;
  6171. font-style:normal;
  6172. font-size:12px;
  6173. color:#606266;
  6174. }
  6175. #u94050 .text {
  6176. position:absolute;
  6177. align-self:center;
  6178. padding:2px 2px 2px 0px;
  6179. box-sizing:border-box;
  6180. width:100%;
  6181. }
  6182. #u94050_text {
  6183. border-width:0px;
  6184. word-wrap:break-word;
  6185. text-transform:none;
  6186. visibility:hidden;
  6187. }
  6188. #u94051_img {
  6189. border-width:0px;
  6190. position:absolute;
  6191. left:0px;
  6192. top:0px;
  6193. width:69px;
  6194. height:38px;
  6195. }
  6196. #u94051 {
  6197. border-width:0px;
  6198. position:absolute;
  6199. left:741px;
  6200. top:275px;
  6201. width:69px;
  6202. height:38px;
  6203. display:flex;
  6204. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6205. font-weight:400;
  6206. font-style:normal;
  6207. font-size:12px;
  6208. color:#606266;
  6209. }
  6210. #u94051 .text {
  6211. position:absolute;
  6212. align-self:center;
  6213. padding:2px 2px 2px 0px;
  6214. box-sizing:border-box;
  6215. width:100%;
  6216. }
  6217. #u94051_text {
  6218. border-width:0px;
  6219. word-wrap:break-word;
  6220. text-transform:none;
  6221. visibility:hidden;
  6222. }
  6223. #u94052_img {
  6224. border-width:0px;
  6225. position:absolute;
  6226. left:0px;
  6227. top:0px;
  6228. width:72px;
  6229. height:38px;
  6230. }
  6231. #u94052 {
  6232. border-width:0px;
  6233. position:absolute;
  6234. left:810px;
  6235. top:275px;
  6236. width:72px;
  6237. height:38px;
  6238. display:flex;
  6239. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6240. font-weight:400;
  6241. font-style:normal;
  6242. font-size:12px;
  6243. color:#606266;
  6244. }
  6245. #u94052 .text {
  6246. position:absolute;
  6247. align-self:center;
  6248. padding:2px 2px 2px 0px;
  6249. box-sizing:border-box;
  6250. width:100%;
  6251. }
  6252. #u94052_text {
  6253. border-width:0px;
  6254. word-wrap:break-word;
  6255. text-transform:none;
  6256. visibility:hidden;
  6257. }
  6258. #u94053_img {
  6259. border-width:0px;
  6260. position:absolute;
  6261. left:0px;
  6262. top:0px;
  6263. width:72px;
  6264. height:38px;
  6265. }
  6266. #u94053 {
  6267. border-width:0px;
  6268. position:absolute;
  6269. left:882px;
  6270. top:275px;
  6271. width:72px;
  6272. height:38px;
  6273. display:flex;
  6274. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6275. font-weight:400;
  6276. font-style:normal;
  6277. font-size:12px;
  6278. color:#606266;
  6279. }
  6280. #u94053 .text {
  6281. position:absolute;
  6282. align-self:center;
  6283. padding:2px 2px 2px 0px;
  6284. box-sizing:border-box;
  6285. width:100%;
  6286. }
  6287. #u94053_text {
  6288. border-width:0px;
  6289. word-wrap:break-word;
  6290. text-transform:none;
  6291. visibility:hidden;
  6292. }
  6293. #u94054_img {
  6294. border-width:0px;
  6295. position:absolute;
  6296. left:0px;
  6297. top:0px;
  6298. width:69px;
  6299. height:38px;
  6300. }
  6301. #u94054 {
  6302. border-width:0px;
  6303. position:absolute;
  6304. left:954px;
  6305. top:275px;
  6306. width:69px;
  6307. height:38px;
  6308. display:flex;
  6309. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6310. font-weight:400;
  6311. font-style:normal;
  6312. font-size:12px;
  6313. color:#606266;
  6314. }
  6315. #u94054 .text {
  6316. position:absolute;
  6317. align-self:center;
  6318. padding:2px 2px 2px 0px;
  6319. box-sizing:border-box;
  6320. width:100%;
  6321. }
  6322. #u94054_text {
  6323. border-width:0px;
  6324. word-wrap:break-word;
  6325. text-transform:none;
  6326. visibility:hidden;
  6327. }
  6328. #u94055_img {
  6329. border-width:0px;
  6330. position:absolute;
  6331. left:0px;
  6332. top:0px;
  6333. width:69px;
  6334. height:38px;
  6335. }
  6336. #u94055 {
  6337. border-width:0px;
  6338. position:absolute;
  6339. left:1023px;
  6340. top:275px;
  6341. width:69px;
  6342. height:38px;
  6343. display:flex;
  6344. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6345. font-weight:400;
  6346. font-style:normal;
  6347. font-size:12px;
  6348. color:#606266;
  6349. }
  6350. #u94055 .text {
  6351. position:absolute;
  6352. align-self:center;
  6353. padding:2px 2px 2px 0px;
  6354. box-sizing:border-box;
  6355. width:100%;
  6356. }
  6357. #u94055_text {
  6358. border-width:0px;
  6359. word-wrap:break-word;
  6360. text-transform:none;
  6361. visibility:hidden;
  6362. }
  6363. #u94056_img {
  6364. border-width:0px;
  6365. position:absolute;
  6366. left:0px;
  6367. top:0px;
  6368. width:69px;
  6369. height:38px;
  6370. }
  6371. #u94056 {
  6372. border-width:0px;
  6373. position:absolute;
  6374. left:1092px;
  6375. top:275px;
  6376. width:69px;
  6377. height:38px;
  6378. display:flex;
  6379. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6380. font-weight:400;
  6381. font-style:normal;
  6382. font-size:12px;
  6383. color:#606266;
  6384. }
  6385. #u94056 .text {
  6386. position:absolute;
  6387. align-self:center;
  6388. padding:2px 2px 2px 0px;
  6389. box-sizing:border-box;
  6390. width:100%;
  6391. }
  6392. #u94056_text {
  6393. border-width:0px;
  6394. word-wrap:break-word;
  6395. text-transform:none;
  6396. visibility:hidden;
  6397. }
  6398. #u94057_img {
  6399. border-width:0px;
  6400. position:absolute;
  6401. left:0px;
  6402. top:0px;
  6403. width:58px;
  6404. height:38px;
  6405. }
  6406. #u94057 {
  6407. border-width:0px;
  6408. position:absolute;
  6409. left:1161px;
  6410. top:275px;
  6411. width:58px;
  6412. height:38px;
  6413. display:flex;
  6414. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6415. font-weight:400;
  6416. font-style:normal;
  6417. font-size:12px;
  6418. color:#606266;
  6419. }
  6420. #u94057 .text {
  6421. position:absolute;
  6422. align-self:center;
  6423. padding:2px 2px 2px 0px;
  6424. box-sizing:border-box;
  6425. width:100%;
  6426. }
  6427. #u94057_text {
  6428. border-width:0px;
  6429. word-wrap:break-word;
  6430. text-transform:none;
  6431. visibility:hidden;
  6432. }
  6433. #u94058_div {
  6434. border-width:0px;
  6435. position:absolute;
  6436. left:0px;
  6437. top:0px;
  6438. width:60px;
  6439. height:30px;
  6440. background:inherit;
  6441. background-color:rgba(255, 255, 255, 1);
  6442. box-sizing:border-box;
  6443. border-width:1px;
  6444. border-style:solid;
  6445. border-color:rgba(170, 170, 170, 1);
  6446. border-radius:4px;
  6447. -moz-box-shadow:none;
  6448. -webkit-box-shadow:none;
  6449. box-shadow:none;
  6450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6451. font-weight:400;
  6452. font-style:normal;
  6453. font-size:14px;
  6454. }
  6455. #u94058 {
  6456. border-width:0px;
  6457. position:absolute;
  6458. left:490px;
  6459. top:192px;
  6460. width:60px;
  6461. height:30px;
  6462. display:flex;
  6463. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6464. font-weight:400;
  6465. font-style:normal;
  6466. font-size:14px;
  6467. }
  6468. #u94058 .text {
  6469. position:absolute;
  6470. align-self:center;
  6471. padding:2px 2px 2px 2px;
  6472. box-sizing:border-box;
  6473. width:100%;
  6474. }
  6475. #u94058_text {
  6476. border-width:0px;
  6477. word-wrap:break-word;
  6478. text-transform:none;
  6479. }
  6480. #u94059_div {
  6481. border-width:0px;
  6482. position:absolute;
  6483. left:0px;
  6484. top:0px;
  6485. width:60px;
  6486. height:30px;
  6487. background:inherit;
  6488. background-color:rgba(255, 255, 255, 1);
  6489. box-sizing:border-box;
  6490. border-width:1px;
  6491. border-style:solid;
  6492. border-color:rgba(170, 170, 170, 1);
  6493. border-radius:4px;
  6494. -moz-box-shadow:none;
  6495. -webkit-box-shadow:none;
  6496. box-shadow:none;
  6497. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6498. font-weight:400;
  6499. font-style:normal;
  6500. font-size:14px;
  6501. }
  6502. #u94059 {
  6503. border-width:0px;
  6504. position:absolute;
  6505. left:420px;
  6506. top:192px;
  6507. width:60px;
  6508. height:30px;
  6509. display:flex;
  6510. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6511. font-weight:400;
  6512. font-style:normal;
  6513. font-size:14px;
  6514. }
  6515. #u94059 .text {
  6516. position:absolute;
  6517. align-self:center;
  6518. padding:2px 2px 2px 2px;
  6519. box-sizing:border-box;
  6520. width:100%;
  6521. }
  6522. #u94059_text {
  6523. border-width:0px;
  6524. word-wrap:break-word;
  6525. text-transform:none;
  6526. }
  6527. #u94060_div {
  6528. border-width:0px;
  6529. position:absolute;
  6530. left:0px;
  6531. top:0px;
  6532. width:60px;
  6533. height:30px;
  6534. background:inherit;
  6535. background-color:rgba(24, 144, 255, 1);
  6536. border:none;
  6537. border-radius:4px;
  6538. -moz-box-shadow:none;
  6539. -webkit-box-shadow:none;
  6540. box-shadow:none;
  6541. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6542. font-weight:400;
  6543. font-style:normal;
  6544. font-size:14px;
  6545. color:#FFFFFF;
  6546. }
  6547. #u94060 {
  6548. border-width:0px;
  6549. position:absolute;
  6550. left:350px;
  6551. top:192px;
  6552. width:60px;
  6553. height:30px;
  6554. display:flex;
  6555. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6556. font-weight:400;
  6557. font-style:normal;
  6558. font-size:14px;
  6559. color:#FFFFFF;
  6560. }
  6561. #u94060 .text {
  6562. position:absolute;
  6563. align-self:center;
  6564. padding:2px 2px 2px 2px;
  6565. box-sizing:border-box;
  6566. width:100%;
  6567. }
  6568. #u94060_text {
  6569. border-width:0px;
  6570. word-wrap:break-word;
  6571. text-transform:none;
  6572. }
  6573. #u94061_div {
  6574. border-width:0px;
  6575. position:absolute;
  6576. left:0px;
  6577. top:0px;
  6578. width:73px;
  6579. height:50px;
  6580. background:inherit;
  6581. background-color:rgba(255, 255, 255, 0);
  6582. border:none;
  6583. border-left:0px;
  6584. border-top:0px;
  6585. border-right:0px;
  6586. border-radius:0px;
  6587. border-bottom-right-radius:0px;
  6588. border-bottom-left-radius:0px;
  6589. -moz-box-shadow:none;
  6590. -webkit-box-shadow:none;
  6591. box-shadow:none;
  6592. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6593. font-weight:400;
  6594. font-style:normal;
  6595. font-size:18px;
  6596. }
  6597. #u94061 {
  6598. border-width:0px;
  6599. position:absolute;
  6600. left:349px;
  6601. top:52px;
  6602. width:73px;
  6603. height:50px;
  6604. display:flex;
  6605. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6606. font-weight:400;
  6607. font-style:normal;
  6608. font-size:18px;
  6609. }
  6610. #u94061 .text {
  6611. position:absolute;
  6612. align-self:center;
  6613. padding:0px 0px 0px 0px;
  6614. box-sizing:border-box;
  6615. width:100%;
  6616. }
  6617. #u94061_text {
  6618. border-width:0px;
  6619. white-space:nowrap;
  6620. text-transform:none;
  6621. }
  6622. #u94062 {
  6623. border-width:0px;
  6624. position:absolute;
  6625. left:0px;
  6626. top:0px;
  6627. width:0px;
  6628. height:0px;
  6629. }
  6630. #u94063_div {
  6631. border-width:0px;
  6632. position:absolute;
  6633. left:0px;
  6634. top:0px;
  6635. width:100px;
  6636. height:100px;
  6637. background:inherit;
  6638. background-color:rgba(255, 255, 255, 1);
  6639. box-sizing:border-box;
  6640. border-width:1px;
  6641. border-style:solid;
  6642. border-color:rgba(242, 242, 242, 1);
  6643. border-radius:4px;
  6644. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  6645. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  6646. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  6647. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6648. font-weight:400;
  6649. font-style:normal;
  6650. font-size:14px;
  6651. text-align:left;
  6652. }
  6653. #u94063 {
  6654. border-width:0px;
  6655. position:absolute;
  6656. left:1461px;
  6657. top:298px;
  6658. width:100px;
  6659. height:100px;
  6660. display:flex;
  6661. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6662. font-weight:400;
  6663. font-style:normal;
  6664. font-size:14px;
  6665. text-align:left;
  6666. }
  6667. #u94063 .text {
  6668. position:absolute;
  6669. align-self:center;
  6670. padding:2px 2px 2px 2px;
  6671. box-sizing:border-box;
  6672. width:100%;
  6673. }
  6674. #u94063_text {
  6675. border-width:0px;
  6676. word-wrap:break-word;
  6677. text-transform:none;
  6678. visibility:hidden;
  6679. }
  6680. #u94064_div {
  6681. border-width:0px;
  6682. position:absolute;
  6683. left:0px;
  6684. top:0px;
  6685. width:83px;
  6686. height:40px;
  6687. background:inherit;
  6688. background-color:rgba(255, 255, 255, 1);
  6689. box-sizing:border-box;
  6690. border-width:1px;
  6691. border-style:solid;
  6692. border-color:rgba(215, 215, 215, 1);
  6693. border-left:0px;
  6694. border-top:0px;
  6695. border-right:0px;
  6696. border-radius:0px;
  6697. border-bottom-right-radius:0px;
  6698. border-bottom-left-radius:0px;
  6699. -moz-box-shadow:none;
  6700. -webkit-box-shadow:none;
  6701. box-shadow:none;
  6702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6703. font-weight:400;
  6704. font-style:normal;
  6705. font-size:14px;
  6706. }
  6707. #u94064 {
  6708. border-width:0px;
  6709. position:absolute;
  6710. left:1469px;
  6711. top:308px;
  6712. width:83px;
  6713. height:40px;
  6714. display:flex;
  6715. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6716. font-weight:400;
  6717. font-style:normal;
  6718. font-size:14px;
  6719. }
  6720. #u94064 .text {
  6721. position:absolute;
  6722. align-self:center;
  6723. padding:2px 2px 2px 2px;
  6724. box-sizing:border-box;
  6725. width:100%;
  6726. }
  6727. #u94064_text {
  6728. border-width:0px;
  6729. word-wrap:break-word;
  6730. text-transform:none;
  6731. }
  6732. #u94065_div {
  6733. border-width:0px;
  6734. position:absolute;
  6735. left:0px;
  6736. top:0px;
  6737. width:83px;
  6738. height:40px;
  6739. background:inherit;
  6740. background-color:rgba(255, 255, 255, 1);
  6741. border:none;
  6742. border-left:0px;
  6743. border-top:0px;
  6744. border-right:0px;
  6745. border-radius:0px;
  6746. border-bottom-right-radius:0px;
  6747. border-bottom-left-radius:0px;
  6748. -moz-box-shadow:none;
  6749. -webkit-box-shadow:none;
  6750. box-shadow:none;
  6751. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6752. font-weight:400;
  6753. font-style:normal;
  6754. font-size:14px;
  6755. }
  6756. #u94065 {
  6757. border-width:0px;
  6758. position:absolute;
  6759. left:1469px;
  6760. top:348px;
  6761. width:83px;
  6762. height:40px;
  6763. display:flex;
  6764. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6765. font-weight:400;
  6766. font-style:normal;
  6767. font-size:14px;
  6768. }
  6769. #u94065 .text {
  6770. position:absolute;
  6771. align-self:center;
  6772. padding:2px 2px 2px 2px;
  6773. box-sizing:border-box;
  6774. width:100%;
  6775. }
  6776. #u94065_text {
  6777. border-width:0px;
  6778. word-wrap:break-word;
  6779. text-transform:none;
  6780. }
  6781. #u94066_div {
  6782. border-width:0px;
  6783. position:absolute;
  6784. left:0px;
  6785. top:0px;
  6786. width:60px;
  6787. height:30px;
  6788. background:inherit;
  6789. background-color:rgba(24, 144, 255, 1);
  6790. border:none;
  6791. border-radius:4px;
  6792. -moz-box-shadow:none;
  6793. -webkit-box-shadow:none;
  6794. box-shadow:none;
  6795. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6796. font-weight:400;
  6797. font-style:normal;
  6798. font-size:14px;
  6799. color:#FFFFFF;
  6800. }
  6801. #u94066 {
  6802. border-width:0px;
  6803. position:absolute;
  6804. left:950px;
  6805. top:143px;
  6806. width:60px;
  6807. height:30px;
  6808. display:flex;
  6809. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6810. font-weight:400;
  6811. font-style:normal;
  6812. font-size:14px;
  6813. color:#FFFFFF;
  6814. }
  6815. #u94066 .text {
  6816. position:absolute;
  6817. align-self:center;
  6818. padding:2px 2px 2px 2px;
  6819. box-sizing:border-box;
  6820. width:100%;
  6821. }
  6822. #u94066_text {
  6823. border-width:0px;
  6824. word-wrap:break-word;
  6825. text-transform:none;
  6826. }
  6827. #u94067_div {
  6828. border-width:0px;
  6829. position:absolute;
  6830. left:0px;
  6831. top:0px;
  6832. width:60px;
  6833. height:30px;
  6834. background:inherit;
  6835. background-color:rgba(255, 255, 255, 1);
  6836. box-sizing:border-box;
  6837. border-width:1px;
  6838. border-style:solid;
  6839. border-color:rgba(170, 170, 170, 1);
  6840. border-radius:4px;
  6841. -moz-box-shadow:none;
  6842. -webkit-box-shadow:none;
  6843. box-shadow:none;
  6844. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6845. font-weight:400;
  6846. font-style:normal;
  6847. font-size:14px;
  6848. }
  6849. #u94067 {
  6850. border-width:0px;
  6851. position:absolute;
  6852. left:1020px;
  6853. top:143px;
  6854. width:60px;
  6855. height:30px;
  6856. display:flex;
  6857. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6858. font-weight:400;
  6859. font-style:normal;
  6860. font-size:14px;
  6861. }
  6862. #u94067 .text {
  6863. position:absolute;
  6864. align-self:center;
  6865. padding:2px 2px 2px 2px;
  6866. box-sizing:border-box;
  6867. width:100%;
  6868. }
  6869. #u94067_text {
  6870. border-width:0px;
  6871. word-wrap:break-word;
  6872. text-transform:none;
  6873. }
  6874. #u94068 {
  6875. border-width:0px;
  6876. position:absolute;
  6877. left:0px;
  6878. top:0px;
  6879. width:0px;
  6880. height:0px;
  6881. }
  6882. #u94069_div {
  6883. border-width:0px;
  6884. position:absolute;
  6885. left:0px;
  6886. top:0px;
  6887. width:140px;
  6888. height:30px;
  6889. background:inherit;
  6890. background-color:rgba(255, 255, 255, 1);
  6891. box-sizing:border-box;
  6892. border-width:1px;
  6893. border-style:solid;
  6894. border-color:rgba(215, 215, 215, 1);
  6895. border-radius:4px;
  6896. -moz-box-shadow:none;
  6897. -webkit-box-shadow:none;
  6898. box-shadow:none;
  6899. font-size:14px;
  6900. }
  6901. #u94069 {
  6902. border-width:0px;
  6903. position:absolute;
  6904. left:500px;
  6905. top:103px;
  6906. width:140px;
  6907. height:30px;
  6908. display:flex;
  6909. font-size:14px;
  6910. }
  6911. #u94069 .text {
  6912. position:absolute;
  6913. align-self:center;
  6914. padding:2px 2px 2px 2px;
  6915. box-sizing:border-box;
  6916. width:100%;
  6917. }
  6918. #u94069_text {
  6919. border-width:0px;
  6920. word-wrap:break-word;
  6921. text-transform:none;
  6922. visibility:hidden;
  6923. }
  6924. #u94070_input {
  6925. position:absolute;
  6926. left:0px;
  6927. top:0px;
  6928. width:134px;
  6929. height:23px;
  6930. padding:2px 2px 2px 2px;
  6931. font-family:'ArialMT', 'Arial', sans-serif;
  6932. font-weight:400;
  6933. font-style:normal;
  6934. font-size:14px;
  6935. letter-spacing:normal;
  6936. color:#AAAAAA;
  6937. vertical-align:none;
  6938. text-align:left;
  6939. text-transform:none;
  6940. background-color:transparent;
  6941. border-color:transparent;
  6942. }
  6943. #u94070_input.disabled {
  6944. position:absolute;
  6945. left:0px;
  6946. top:0px;
  6947. width:134px;
  6948. height:23px;
  6949. padding:2px 2px 2px 2px;
  6950. font-family:'ArialMT', 'Arial', sans-serif;
  6951. font-weight:400;
  6952. font-style:normal;
  6953. font-size:14px;
  6954. letter-spacing:normal;
  6955. color:#AAAAAA;
  6956. vertical-align:none;
  6957. text-align:left;
  6958. text-transform:none;
  6959. background-color:transparent;
  6960. border-color:transparent;
  6961. }
  6962. #u94070_div {
  6963. border-width:0px;
  6964. position:absolute;
  6965. left:0px;
  6966. top:0px;
  6967. width:134px;
  6968. height:23px;
  6969. background:inherit;
  6970. background-color:rgba(255, 255, 255, 1);
  6971. border:none;
  6972. border-radius:0px;
  6973. -moz-box-shadow:none;
  6974. -webkit-box-shadow:none;
  6975. box-shadow:none;
  6976. font-size:14px;
  6977. color:#AAAAAA;
  6978. }
  6979. #u94070 {
  6980. border-width:0px;
  6981. position:absolute;
  6982. left:504px;
  6983. top:105px;
  6984. width:134px;
  6985. height:23px;
  6986. display:flex;
  6987. font-size:14px;
  6988. color:#AAAAAA;
  6989. }
  6990. #u94070 .text {
  6991. position:absolute;
  6992. align-self:flex-start;
  6993. padding:2px 2px 2px 2px;
  6994. box-sizing:border-box;
  6995. width:100%;
  6996. }
  6997. #u94070_div.disabled {
  6998. border-width:0px;
  6999. position:absolute;
  7000. left:0px;
  7001. top:0px;
  7002. width:134px;
  7003. height:23px;
  7004. background:inherit;
  7005. background-color:rgba(240, 240, 240, 1);
  7006. border:none;
  7007. border-radius:0px;
  7008. -moz-box-shadow:none;
  7009. -webkit-box-shadow:none;
  7010. box-shadow:none;
  7011. font-size:14px;
  7012. color:#AAAAAA;
  7013. }
  7014. #u94070.disabled {
  7015. }
  7016. .u94070_input_option {
  7017. font-size:14px;
  7018. }
  7019. #u94071 {
  7020. border-width:0px;
  7021. position:absolute;
  7022. left:0px;
  7023. top:0px;
  7024. width:0px;
  7025. height:0px;
  7026. }
  7027. #u94072_div {
  7028. border-width:0px;
  7029. position:absolute;
  7030. left:0px;
  7031. top:0px;
  7032. width:140px;
  7033. height:30px;
  7034. background:inherit;
  7035. background-color:rgba(255, 255, 255, 1);
  7036. box-sizing:border-box;
  7037. border-width:1px;
  7038. border-style:solid;
  7039. border-color:rgba(215, 215, 215, 1);
  7040. border-radius:4px;
  7041. -moz-box-shadow:none;
  7042. -webkit-box-shadow:none;
  7043. box-shadow:none;
  7044. font-size:14px;
  7045. }
  7046. #u94072 {
  7047. border-width:0px;
  7048. position:absolute;
  7049. left:650px;
  7050. top:103px;
  7051. width:140px;
  7052. height:30px;
  7053. display:flex;
  7054. font-size:14px;
  7055. }
  7056. #u94072 .text {
  7057. position:absolute;
  7058. align-self:center;
  7059. padding:2px 2px 2px 2px;
  7060. box-sizing:border-box;
  7061. width:100%;
  7062. }
  7063. #u94072_text {
  7064. border-width:0px;
  7065. word-wrap:break-word;
  7066. text-transform:none;
  7067. visibility:hidden;
  7068. }
  7069. #u94073_input {
  7070. position:absolute;
  7071. left:0px;
  7072. top:0px;
  7073. width:134px;
  7074. height:23px;
  7075. padding:2px 2px 2px 2px;
  7076. font-family:'ArialMT', 'Arial', sans-serif;
  7077. font-weight:400;
  7078. font-style:normal;
  7079. font-size:14px;
  7080. letter-spacing:normal;
  7081. color:#AAAAAA;
  7082. vertical-align:none;
  7083. text-align:left;
  7084. text-transform:none;
  7085. background-color:transparent;
  7086. border-color:transparent;
  7087. }
  7088. #u94073_input.disabled {
  7089. position:absolute;
  7090. left:0px;
  7091. top:0px;
  7092. width:134px;
  7093. height:23px;
  7094. padding:2px 2px 2px 2px;
  7095. font-family:'ArialMT', 'Arial', sans-serif;
  7096. font-weight:400;
  7097. font-style:normal;
  7098. font-size:14px;
  7099. letter-spacing:normal;
  7100. color:#AAAAAA;
  7101. vertical-align:none;
  7102. text-align:left;
  7103. text-transform:none;
  7104. background-color:transparent;
  7105. border-color:transparent;
  7106. }
  7107. #u94073_div {
  7108. border-width:0px;
  7109. position:absolute;
  7110. left:0px;
  7111. top:0px;
  7112. width:134px;
  7113. height:23px;
  7114. background:inherit;
  7115. background-color:rgba(255, 255, 255, 1);
  7116. border:none;
  7117. border-radius:0px;
  7118. -moz-box-shadow:none;
  7119. -webkit-box-shadow:none;
  7120. box-shadow:none;
  7121. font-size:14px;
  7122. color:#AAAAAA;
  7123. }
  7124. #u94073 {
  7125. border-width:0px;
  7126. position:absolute;
  7127. left:654px;
  7128. top:105px;
  7129. width:134px;
  7130. height:23px;
  7131. display:flex;
  7132. font-size:14px;
  7133. color:#AAAAAA;
  7134. }
  7135. #u94073 .text {
  7136. position:absolute;
  7137. align-self:flex-start;
  7138. padding:2px 2px 2px 2px;
  7139. box-sizing:border-box;
  7140. width:100%;
  7141. }
  7142. #u94073_div.disabled {
  7143. border-width:0px;
  7144. position:absolute;
  7145. left:0px;
  7146. top:0px;
  7147. width:134px;
  7148. height:23px;
  7149. background:inherit;
  7150. background-color:rgba(240, 240, 240, 1);
  7151. border:none;
  7152. border-radius:0px;
  7153. -moz-box-shadow:none;
  7154. -webkit-box-shadow:none;
  7155. box-shadow:none;
  7156. font-size:14px;
  7157. color:#AAAAAA;
  7158. }
  7159. #u94073.disabled {
  7160. }
  7161. .u94073_input_option {
  7162. font-size:14px;
  7163. }
  7164. #u94074 {
  7165. border-width:0px;
  7166. position:absolute;
  7167. left:0px;
  7168. top:0px;
  7169. width:0px;
  7170. height:0px;
  7171. }
  7172. #u94075_div {
  7173. border-width:0px;
  7174. position:absolute;
  7175. left:0px;
  7176. top:0px;
  7177. width:140px;
  7178. height:30px;
  7179. background:inherit;
  7180. background-color:rgba(255, 255, 255, 1);
  7181. box-sizing:border-box;
  7182. border-width:1px;
  7183. border-style:solid;
  7184. border-color:rgba(215, 215, 215, 1);
  7185. border-radius:4px;
  7186. -moz-box-shadow:none;
  7187. -webkit-box-shadow:none;
  7188. box-shadow:none;
  7189. font-size:14px;
  7190. }
  7191. #u94075 {
  7192. border-width:0px;
  7193. position:absolute;
  7194. left:800px;
  7195. top:103px;
  7196. width:140px;
  7197. height:30px;
  7198. display:flex;
  7199. font-size:14px;
  7200. }
  7201. #u94075 .text {
  7202. position:absolute;
  7203. align-self:center;
  7204. padding:2px 2px 2px 2px;
  7205. box-sizing:border-box;
  7206. width:100%;
  7207. }
  7208. #u94075_text {
  7209. border-width:0px;
  7210. word-wrap:break-word;
  7211. text-transform:none;
  7212. visibility:hidden;
  7213. }
  7214. #u94076_input {
  7215. position:absolute;
  7216. left:0px;
  7217. top:0px;
  7218. width:134px;
  7219. height:23px;
  7220. padding:2px 2px 2px 2px;
  7221. font-family:'ArialMT', 'Arial', sans-serif;
  7222. font-weight:400;
  7223. font-style:normal;
  7224. font-size:14px;
  7225. letter-spacing:normal;
  7226. color:#AAAAAA;
  7227. vertical-align:none;
  7228. text-align:left;
  7229. text-transform:none;
  7230. background-color:transparent;
  7231. border-color:transparent;
  7232. }
  7233. #u94076_input.disabled {
  7234. position:absolute;
  7235. left:0px;
  7236. top:0px;
  7237. width:134px;
  7238. height:23px;
  7239. padding:2px 2px 2px 2px;
  7240. font-family:'ArialMT', 'Arial', sans-serif;
  7241. font-weight:400;
  7242. font-style:normal;
  7243. font-size:14px;
  7244. letter-spacing:normal;
  7245. color:#AAAAAA;
  7246. vertical-align:none;
  7247. text-align:left;
  7248. text-transform:none;
  7249. background-color:transparent;
  7250. border-color:transparent;
  7251. }
  7252. #u94076_div {
  7253. border-width:0px;
  7254. position:absolute;
  7255. left:0px;
  7256. top:0px;
  7257. width:134px;
  7258. height:23px;
  7259. background:inherit;
  7260. background-color:rgba(255, 255, 255, 1);
  7261. border:none;
  7262. border-radius:0px;
  7263. -moz-box-shadow:none;
  7264. -webkit-box-shadow:none;
  7265. box-shadow:none;
  7266. font-size:14px;
  7267. color:#AAAAAA;
  7268. }
  7269. #u94076 {
  7270. border-width:0px;
  7271. position:absolute;
  7272. left:804px;
  7273. top:105px;
  7274. width:134px;
  7275. height:23px;
  7276. display:flex;
  7277. font-size:14px;
  7278. color:#AAAAAA;
  7279. }
  7280. #u94076 .text {
  7281. position:absolute;
  7282. align-self:flex-start;
  7283. padding:2px 2px 2px 2px;
  7284. box-sizing:border-box;
  7285. width:100%;
  7286. }
  7287. #u94076_div.disabled {
  7288. border-width:0px;
  7289. position:absolute;
  7290. left:0px;
  7291. top:0px;
  7292. width:134px;
  7293. height:23px;
  7294. background:inherit;
  7295. background-color:rgba(240, 240, 240, 1);
  7296. border:none;
  7297. border-radius:0px;
  7298. -moz-box-shadow:none;
  7299. -webkit-box-shadow:none;
  7300. box-shadow:none;
  7301. font-size:14px;
  7302. color:#AAAAAA;
  7303. }
  7304. #u94076.disabled {
  7305. }
  7306. .u94076_input_option {
  7307. font-size:14px;
  7308. }
  7309. #u94077 {
  7310. border-width:0px;
  7311. position:absolute;
  7312. left:0px;
  7313. top:0px;
  7314. width:0px;
  7315. height:0px;
  7316. }
  7317. #u94078_div {
  7318. border-width:0px;
  7319. position:absolute;
  7320. left:0px;
  7321. top:0px;
  7322. width:140px;
  7323. height:30px;
  7324. background:inherit;
  7325. background-color:rgba(255, 255, 255, 1);
  7326. box-sizing:border-box;
  7327. border-width:1px;
  7328. border-style:solid;
  7329. border-color:rgba(215, 215, 215, 1);
  7330. border-radius:4px;
  7331. -moz-box-shadow:none;
  7332. -webkit-box-shadow:none;
  7333. box-shadow:none;
  7334. font-size:14px;
  7335. }
  7336. #u94078 {
  7337. border-width:0px;
  7338. position:absolute;
  7339. left:950px;
  7340. top:103px;
  7341. width:140px;
  7342. height:30px;
  7343. display:flex;
  7344. font-size:14px;
  7345. }
  7346. #u94078 .text {
  7347. position:absolute;
  7348. align-self:center;
  7349. padding:2px 2px 2px 2px;
  7350. box-sizing:border-box;
  7351. width:100%;
  7352. }
  7353. #u94078_text {
  7354. border-width:0px;
  7355. word-wrap:break-word;
  7356. text-transform:none;
  7357. visibility:hidden;
  7358. }
  7359. #u94079_input {
  7360. position:absolute;
  7361. left:0px;
  7362. top:0px;
  7363. width:134px;
  7364. height:23px;
  7365. padding:2px 2px 2px 2px;
  7366. font-family:'ArialMT', 'Arial', sans-serif;
  7367. font-weight:400;
  7368. font-style:normal;
  7369. font-size:14px;
  7370. letter-spacing:normal;
  7371. color:#AAAAAA;
  7372. vertical-align:none;
  7373. text-align:left;
  7374. text-transform:none;
  7375. background-color:transparent;
  7376. border-color:transparent;
  7377. }
  7378. #u94079_input.disabled {
  7379. position:absolute;
  7380. left:0px;
  7381. top:0px;
  7382. width:134px;
  7383. height:23px;
  7384. padding:2px 2px 2px 2px;
  7385. font-family:'ArialMT', 'Arial', sans-serif;
  7386. font-weight:400;
  7387. font-style:normal;
  7388. font-size:14px;
  7389. letter-spacing:normal;
  7390. color:#AAAAAA;
  7391. vertical-align:none;
  7392. text-align:left;
  7393. text-transform:none;
  7394. background-color:transparent;
  7395. border-color:transparent;
  7396. }
  7397. #u94079_div {
  7398. border-width:0px;
  7399. position:absolute;
  7400. left:0px;
  7401. top:0px;
  7402. width:134px;
  7403. height:23px;
  7404. background:inherit;
  7405. background-color:rgba(255, 255, 255, 1);
  7406. border:none;
  7407. border-radius:0px;
  7408. -moz-box-shadow:none;
  7409. -webkit-box-shadow:none;
  7410. box-shadow:none;
  7411. font-size:14px;
  7412. color:#AAAAAA;
  7413. }
  7414. #u94079 {
  7415. border-width:0px;
  7416. position:absolute;
  7417. left:954px;
  7418. top:105px;
  7419. width:134px;
  7420. height:23px;
  7421. display:flex;
  7422. font-size:14px;
  7423. color:#AAAAAA;
  7424. }
  7425. #u94079 .text {
  7426. position:absolute;
  7427. align-self:flex-start;
  7428. padding:2px 2px 2px 2px;
  7429. box-sizing:border-box;
  7430. width:100%;
  7431. }
  7432. #u94079_div.disabled {
  7433. border-width:0px;
  7434. position:absolute;
  7435. left:0px;
  7436. top:0px;
  7437. width:134px;
  7438. height:23px;
  7439. background:inherit;
  7440. background-color:rgba(240, 240, 240, 1);
  7441. border:none;
  7442. border-radius:0px;
  7443. -moz-box-shadow:none;
  7444. -webkit-box-shadow:none;
  7445. box-shadow:none;
  7446. font-size:14px;
  7447. color:#AAAAAA;
  7448. }
  7449. #u94079.disabled {
  7450. }
  7451. .u94079_input_option {
  7452. font-size:14px;
  7453. }
  7454. #u94080 {
  7455. border-width:0px;
  7456. position:absolute;
  7457. left:0px;
  7458. top:0px;
  7459. width:0px;
  7460. height:0px;
  7461. }
  7462. #u94081_div {
  7463. border-width:0px;
  7464. position:absolute;
  7465. left:0px;
  7466. top:0px;
  7467. width:140px;
  7468. height:30px;
  7469. background:inherit;
  7470. background-color:rgba(255, 255, 255, 1);
  7471. box-sizing:border-box;
  7472. border-width:1px;
  7473. border-style:solid;
  7474. border-color:rgba(201, 201, 201, 1);
  7475. border-radius:4px;
  7476. -moz-box-shadow:none;
  7477. -webkit-box-shadow:none;
  7478. box-shadow:none;
  7479. font-family:'Microsoft YaHei', sans-serif;
  7480. font-weight:400;
  7481. font-style:normal;
  7482. font-size:14px;
  7483. color:#CCCCCC;
  7484. text-align:left;
  7485. }
  7486. #u94081 {
  7487. border-width:0px;
  7488. position:absolute;
  7489. left:348px;
  7490. top:143px;
  7491. width:140px;
  7492. height:30px;
  7493. display:flex;
  7494. font-family:'Microsoft YaHei', sans-serif;
  7495. font-weight:400;
  7496. font-style:normal;
  7497. font-size:14px;
  7498. color:#CCCCCC;
  7499. text-align:left;
  7500. }
  7501. #u94081 .text {
  7502. position:absolute;
  7503. align-self:center;
  7504. padding:2px 8px 2px 8px;
  7505. box-sizing:border-box;
  7506. width:100%;
  7507. }
  7508. #u94081_text {
  7509. border-width:0px;
  7510. word-wrap:break-word;
  7511. text-transform:none;
  7512. visibility:hidden;
  7513. }
  7514. #u94082_input {
  7515. position:absolute;
  7516. left:0px;
  7517. top:0px;
  7518. width:127px;
  7519. height:25px;
  7520. padding:2px 2px 2px 2px;
  7521. font-family:'Microsoft YaHei', sans-serif;
  7522. font-weight:400;
  7523. font-style:normal;
  7524. font-size:10px;
  7525. letter-spacing:normal;
  7526. color:#000000;
  7527. vertical-align:none;
  7528. text-align:left;
  7529. text-transform:none;
  7530. background-color:transparent;
  7531. border-color:transparent;
  7532. }
  7533. #u94082_input.disabled {
  7534. position:absolute;
  7535. left:0px;
  7536. top:0px;
  7537. width:127px;
  7538. height:25px;
  7539. padding:2px 2px 2px 2px;
  7540. font-family:'Microsoft YaHei', sans-serif;
  7541. font-weight:400;
  7542. font-style:normal;
  7543. font-size:10px;
  7544. letter-spacing:normal;
  7545. color:#000000;
  7546. vertical-align:none;
  7547. text-align:left;
  7548. text-transform:none;
  7549. background-color:transparent;
  7550. border-color:transparent;
  7551. }
  7552. #u94082_div {
  7553. border-width:0px;
  7554. position:absolute;
  7555. left:0px;
  7556. top:0px;
  7557. width:127px;
  7558. height:25px;
  7559. background:inherit;
  7560. background-color:rgba(255, 255, 255, 1);
  7561. border:none;
  7562. border-radius:0px;
  7563. -moz-box-shadow:none;
  7564. -webkit-box-shadow:none;
  7565. box-shadow:none;
  7566. font-family:'Microsoft YaHei', sans-serif;
  7567. font-weight:400;
  7568. font-style:normal;
  7569. font-size:10px;
  7570. }
  7571. #u94082 {
  7572. border-width:0px;
  7573. position:absolute;
  7574. left:356px;
  7575. top:144px;
  7576. width:127px;
  7577. height:25px;
  7578. display:flex;
  7579. font-family:'Microsoft YaHei', sans-serif;
  7580. font-weight:400;
  7581. font-style:normal;
  7582. font-size:10px;
  7583. }
  7584. #u94082 .text {
  7585. position:absolute;
  7586. align-self:center;
  7587. padding:2px 2px 2px 2px;
  7588. box-sizing:border-box;
  7589. width:100%;
  7590. }
  7591. #u94082_div.disabled {
  7592. border-width:0px;
  7593. position:absolute;
  7594. left:0px;
  7595. top:0px;
  7596. width:127px;
  7597. height:25px;
  7598. background:inherit;
  7599. background-color:rgba(240, 240, 240, 1);
  7600. border:none;
  7601. border-radius:0px;
  7602. -moz-box-shadow:none;
  7603. -webkit-box-shadow:none;
  7604. box-shadow:none;
  7605. font-family:'Microsoft YaHei', sans-serif;
  7606. font-weight:400;
  7607. font-style:normal;
  7608. font-size:10px;
  7609. }
  7610. #u94082.disabled {
  7611. }
  7612. #u94083 {
  7613. border-width:0px;
  7614. position:absolute;
  7615. left:0px;
  7616. top:0px;
  7617. width:0px;
  7618. height:0px;
  7619. }
  7620. #u94084_div {
  7621. border-width:0px;
  7622. position:absolute;
  7623. left:0px;
  7624. top:0px;
  7625. width:140px;
  7626. height:30px;
  7627. background:inherit;
  7628. background-color:rgba(255, 255, 255, 1);
  7629. box-sizing:border-box;
  7630. border-width:1px;
  7631. border-style:solid;
  7632. border-color:rgba(201, 201, 201, 1);
  7633. border-radius:4px;
  7634. -moz-box-shadow:none;
  7635. -webkit-box-shadow:none;
  7636. box-shadow:none;
  7637. font-family:'Microsoft YaHei', sans-serif;
  7638. font-weight:400;
  7639. font-style:normal;
  7640. font-size:14px;
  7641. color:#CCCCCC;
  7642. text-align:left;
  7643. }
  7644. #u94084 {
  7645. border-width:0px;
  7646. position:absolute;
  7647. left:498px;
  7648. top:143px;
  7649. width:140px;
  7650. height:30px;
  7651. display:flex;
  7652. font-family:'Microsoft YaHei', sans-serif;
  7653. font-weight:400;
  7654. font-style:normal;
  7655. font-size:14px;
  7656. color:#CCCCCC;
  7657. text-align:left;
  7658. }
  7659. #u94084 .text {
  7660. position:absolute;
  7661. align-self:center;
  7662. padding:2px 8px 2px 8px;
  7663. box-sizing:border-box;
  7664. width:100%;
  7665. }
  7666. #u94084_text {
  7667. border-width:0px;
  7668. word-wrap:break-word;
  7669. text-transform:none;
  7670. visibility:hidden;
  7671. }
  7672. #u94085_input {
  7673. position:absolute;
  7674. left:0px;
  7675. top:0px;
  7676. width:127px;
  7677. height:25px;
  7678. padding:2px 2px 2px 2px;
  7679. font-family:'Microsoft YaHei', sans-serif;
  7680. font-weight:400;
  7681. font-style:normal;
  7682. font-size:10px;
  7683. letter-spacing:normal;
  7684. color:#000000;
  7685. vertical-align:none;
  7686. text-align:left;
  7687. text-transform:none;
  7688. background-color:transparent;
  7689. border-color:transparent;
  7690. }
  7691. #u94085_input.disabled {
  7692. position:absolute;
  7693. left:0px;
  7694. top:0px;
  7695. width:127px;
  7696. height:25px;
  7697. padding:2px 2px 2px 2px;
  7698. font-family:'Microsoft YaHei', sans-serif;
  7699. font-weight:400;
  7700. font-style:normal;
  7701. font-size:10px;
  7702. letter-spacing:normal;
  7703. color:#000000;
  7704. vertical-align:none;
  7705. text-align:left;
  7706. text-transform:none;
  7707. background-color:transparent;
  7708. border-color:transparent;
  7709. }
  7710. #u94085_div {
  7711. border-width:0px;
  7712. position:absolute;
  7713. left:0px;
  7714. top:0px;
  7715. width:127px;
  7716. height:25px;
  7717. background:inherit;
  7718. background-color:rgba(255, 255, 255, 1);
  7719. border:none;
  7720. border-radius:0px;
  7721. -moz-box-shadow:none;
  7722. -webkit-box-shadow:none;
  7723. box-shadow:none;
  7724. font-family:'Microsoft YaHei', sans-serif;
  7725. font-weight:400;
  7726. font-style:normal;
  7727. font-size:10px;
  7728. }
  7729. #u94085 {
  7730. border-width:0px;
  7731. position:absolute;
  7732. left:506px;
  7733. top:144px;
  7734. width:127px;
  7735. height:25px;
  7736. display:flex;
  7737. font-family:'Microsoft YaHei', sans-serif;
  7738. font-weight:400;
  7739. font-style:normal;
  7740. font-size:10px;
  7741. }
  7742. #u94085 .text {
  7743. position:absolute;
  7744. align-self:center;
  7745. padding:2px 2px 2px 2px;
  7746. box-sizing:border-box;
  7747. width:100%;
  7748. }
  7749. #u94085_div.disabled {
  7750. border-width:0px;
  7751. position:absolute;
  7752. left:0px;
  7753. top:0px;
  7754. width:127px;
  7755. height:25px;
  7756. background:inherit;
  7757. background-color:rgba(240, 240, 240, 1);
  7758. border:none;
  7759. border-radius:0px;
  7760. -moz-box-shadow:none;
  7761. -webkit-box-shadow:none;
  7762. box-shadow:none;
  7763. font-family:'Microsoft YaHei', sans-serif;
  7764. font-weight:400;
  7765. font-style:normal;
  7766. font-size:10px;
  7767. }
  7768. #u94085.disabled {
  7769. }
  7770. #u94086 {
  7771. border-width:0px;
  7772. position:absolute;
  7773. left:0px;
  7774. top:0px;
  7775. width:0px;
  7776. height:0px;
  7777. }
  7778. #u94087_div {
  7779. border-width:0px;
  7780. position:absolute;
  7781. left:0px;
  7782. top:0px;
  7783. width:140px;
  7784. height:30px;
  7785. background:inherit;
  7786. background-color:rgba(255, 255, 255, 1);
  7787. box-sizing:border-box;
  7788. border-width:1px;
  7789. border-style:solid;
  7790. border-color:rgba(215, 215, 215, 1);
  7791. border-radius:4px;
  7792. -moz-box-shadow:none;
  7793. -webkit-box-shadow:none;
  7794. box-shadow:none;
  7795. font-size:14px;
  7796. }
  7797. #u94087 {
  7798. border-width:0px;
  7799. position:absolute;
  7800. left:650px;
  7801. top:143px;
  7802. width:140px;
  7803. height:30px;
  7804. display:flex;
  7805. font-size:14px;
  7806. }
  7807. #u94087 .text {
  7808. position:absolute;
  7809. align-self:center;
  7810. padding:2px 2px 2px 2px;
  7811. box-sizing:border-box;
  7812. width:100%;
  7813. }
  7814. #u94087_text {
  7815. border-width:0px;
  7816. word-wrap:break-word;
  7817. text-transform:none;
  7818. visibility:hidden;
  7819. }
  7820. #u94088_input {
  7821. position:absolute;
  7822. left:0px;
  7823. top:0px;
  7824. width:134px;
  7825. height:23px;
  7826. padding:2px 2px 2px 2px;
  7827. font-family:'ArialMT', 'Arial', sans-serif;
  7828. font-weight:400;
  7829. font-style:normal;
  7830. font-size:14px;
  7831. letter-spacing:normal;
  7832. color:#AAAAAA;
  7833. vertical-align:none;
  7834. text-align:left;
  7835. text-transform:none;
  7836. background-color:transparent;
  7837. border-color:transparent;
  7838. }
  7839. #u94088_input.disabled {
  7840. position:absolute;
  7841. left:0px;
  7842. top:0px;
  7843. width:134px;
  7844. height:23px;
  7845. padding:2px 2px 2px 2px;
  7846. font-family:'ArialMT', 'Arial', sans-serif;
  7847. font-weight:400;
  7848. font-style:normal;
  7849. font-size:14px;
  7850. letter-spacing:normal;
  7851. color:#AAAAAA;
  7852. vertical-align:none;
  7853. text-align:left;
  7854. text-transform:none;
  7855. background-color:transparent;
  7856. border-color:transparent;
  7857. }
  7858. #u94088_div {
  7859. border-width:0px;
  7860. position:absolute;
  7861. left:0px;
  7862. top:0px;
  7863. width:134px;
  7864. height:23px;
  7865. background:inherit;
  7866. background-color:rgba(255, 255, 255, 1);
  7867. border:none;
  7868. border-radius:0px;
  7869. -moz-box-shadow:none;
  7870. -webkit-box-shadow:none;
  7871. box-shadow:none;
  7872. font-size:14px;
  7873. color:#AAAAAA;
  7874. }
  7875. #u94088 {
  7876. border-width:0px;
  7877. position:absolute;
  7878. left:654px;
  7879. top:145px;
  7880. width:134px;
  7881. height:23px;
  7882. display:flex;
  7883. font-size:14px;
  7884. color:#AAAAAA;
  7885. }
  7886. #u94088 .text {
  7887. position:absolute;
  7888. align-self:flex-start;
  7889. padding:2px 2px 2px 2px;
  7890. box-sizing:border-box;
  7891. width:100%;
  7892. }
  7893. #u94088_div.disabled {
  7894. border-width:0px;
  7895. position:absolute;
  7896. left:0px;
  7897. top:0px;
  7898. width:134px;
  7899. height:23px;
  7900. background:inherit;
  7901. background-color:rgba(240, 240, 240, 1);
  7902. border:none;
  7903. border-radius:0px;
  7904. -moz-box-shadow:none;
  7905. -webkit-box-shadow:none;
  7906. box-shadow:none;
  7907. font-size:14px;
  7908. color:#AAAAAA;
  7909. }
  7910. #u94088.disabled {
  7911. }
  7912. .u94088_input_option {
  7913. font-size:14px;
  7914. }
  7915. #u94089 {
  7916. border-width:0px;
  7917. position:absolute;
  7918. left:0px;
  7919. top:0px;
  7920. width:0px;
  7921. height:0px;
  7922. }
  7923. #u94090_div {
  7924. border-width:0px;
  7925. position:absolute;
  7926. left:0px;
  7927. top:0px;
  7928. width:140px;
  7929. height:30px;
  7930. background:inherit;
  7931. background-color:rgba(255, 255, 255, 1);
  7932. box-sizing:border-box;
  7933. border-width:1px;
  7934. border-style:solid;
  7935. border-color:rgba(201, 201, 201, 1);
  7936. border-radius:4px;
  7937. -moz-box-shadow:none;
  7938. -webkit-box-shadow:none;
  7939. box-shadow:none;
  7940. font-family:'Microsoft YaHei', sans-serif;
  7941. font-weight:400;
  7942. font-style:normal;
  7943. font-size:14px;
  7944. color:#CCCCCC;
  7945. text-align:left;
  7946. }
  7947. #u94090 {
  7948. border-width:0px;
  7949. position:absolute;
  7950. left:800px;
  7951. top:143px;
  7952. width:140px;
  7953. height:30px;
  7954. display:flex;
  7955. font-family:'Microsoft YaHei', sans-serif;
  7956. font-weight:400;
  7957. font-style:normal;
  7958. font-size:14px;
  7959. color:#CCCCCC;
  7960. text-align:left;
  7961. }
  7962. #u94090 .text {
  7963. position:absolute;
  7964. align-self:center;
  7965. padding:2px 8px 2px 8px;
  7966. box-sizing:border-box;
  7967. width:100%;
  7968. }
  7969. #u94090_text {
  7970. border-width:0px;
  7971. word-wrap:break-word;
  7972. text-transform:none;
  7973. visibility:hidden;
  7974. }
  7975. #u94091_input {
  7976. position:absolute;
  7977. left:0px;
  7978. top:0px;
  7979. width:127px;
  7980. height:25px;
  7981. padding:2px 2px 2px 2px;
  7982. font-family:'Microsoft YaHei', sans-serif;
  7983. font-weight:400;
  7984. font-style:normal;
  7985. font-size:10px;
  7986. letter-spacing:normal;
  7987. color:#000000;
  7988. vertical-align:none;
  7989. text-align:left;
  7990. text-transform:none;
  7991. background-color:transparent;
  7992. border-color:transparent;
  7993. }
  7994. #u94091_input.disabled {
  7995. position:absolute;
  7996. left:0px;
  7997. top:0px;
  7998. width:127px;
  7999. height:25px;
  8000. padding:2px 2px 2px 2px;
  8001. font-family:'Microsoft YaHei', sans-serif;
  8002. font-weight:400;
  8003. font-style:normal;
  8004. font-size:10px;
  8005. letter-spacing:normal;
  8006. color:#000000;
  8007. vertical-align:none;
  8008. text-align:left;
  8009. text-transform:none;
  8010. background-color:transparent;
  8011. border-color:transparent;
  8012. }
  8013. #u94091_div {
  8014. border-width:0px;
  8015. position:absolute;
  8016. left:0px;
  8017. top:0px;
  8018. width:127px;
  8019. height:25px;
  8020. background:inherit;
  8021. background-color:rgba(255, 255, 255, 1);
  8022. border:none;
  8023. border-radius:0px;
  8024. -moz-box-shadow:none;
  8025. -webkit-box-shadow:none;
  8026. box-shadow:none;
  8027. font-family:'Microsoft YaHei', sans-serif;
  8028. font-weight:400;
  8029. font-style:normal;
  8030. font-size:10px;
  8031. }
  8032. #u94091 {
  8033. border-width:0px;
  8034. position:absolute;
  8035. left:808px;
  8036. top:144px;
  8037. width:127px;
  8038. height:25px;
  8039. display:flex;
  8040. font-family:'Microsoft YaHei', sans-serif;
  8041. font-weight:400;
  8042. font-style:normal;
  8043. font-size:10px;
  8044. }
  8045. #u94091 .text {
  8046. position:absolute;
  8047. align-self:center;
  8048. padding:2px 2px 2px 2px;
  8049. box-sizing:border-box;
  8050. width:100%;
  8051. }
  8052. #u94091_div.disabled {
  8053. border-width:0px;
  8054. position:absolute;
  8055. left:0px;
  8056. top:0px;
  8057. width:127px;
  8058. height:25px;
  8059. background:inherit;
  8060. background-color:rgba(240, 240, 240, 1);
  8061. border:none;
  8062. border-radius:0px;
  8063. -moz-box-shadow:none;
  8064. -webkit-box-shadow:none;
  8065. box-shadow:none;
  8066. font-family:'Microsoft YaHei', sans-serif;
  8067. font-weight:400;
  8068. font-style:normal;
  8069. font-size:10px;
  8070. }
  8071. #u94091.disabled {
  8072. }
  8073. #u94092 {
  8074. border-width:0px;
  8075. position:absolute;
  8076. left:0px;
  8077. top:0px;
  8078. width:0px;
  8079. height:0px;
  8080. }
  8081. #u94093_div {
  8082. border-width:0px;
  8083. position:absolute;
  8084. left:0px;
  8085. top:0px;
  8086. width:140px;
  8087. height:30px;
  8088. background:inherit;
  8089. background-color:rgba(255, 255, 255, 1);
  8090. box-sizing:border-box;
  8091. border-width:1px;
  8092. border-style:solid;
  8093. border-color:rgba(201, 201, 201, 1);
  8094. border-radius:4px;
  8095. -moz-box-shadow:none;
  8096. -webkit-box-shadow:none;
  8097. box-shadow:none;
  8098. font-family:'Microsoft YaHei', sans-serif;
  8099. font-weight:400;
  8100. font-style:normal;
  8101. font-size:14px;
  8102. color:#CCCCCC;
  8103. text-align:left;
  8104. }
  8105. #u94093 {
  8106. border-width:0px;
  8107. position:absolute;
  8108. left:1250px;
  8109. top:103px;
  8110. width:140px;
  8111. height:30px;
  8112. display:flex;
  8113. font-family:'Microsoft YaHei', sans-serif;
  8114. font-weight:400;
  8115. font-style:normal;
  8116. font-size:14px;
  8117. color:#CCCCCC;
  8118. text-align:left;
  8119. }
  8120. #u94093 .text {
  8121. position:absolute;
  8122. align-self:center;
  8123. padding:2px 8px 2px 8px;
  8124. box-sizing:border-box;
  8125. width:100%;
  8126. }
  8127. #u94093_text {
  8128. border-width:0px;
  8129. word-wrap:break-word;
  8130. text-transform:none;
  8131. visibility:hidden;
  8132. }
  8133. #u94094_input {
  8134. position:absolute;
  8135. left:0px;
  8136. top:0px;
  8137. width:127px;
  8138. height:25px;
  8139. padding:2px 2px 2px 2px;
  8140. font-family:'Microsoft YaHei', sans-serif;
  8141. font-weight:400;
  8142. font-style:normal;
  8143. font-size:10px;
  8144. letter-spacing:normal;
  8145. color:#000000;
  8146. vertical-align:none;
  8147. text-align:left;
  8148. text-transform:none;
  8149. background-color:transparent;
  8150. border-color:transparent;
  8151. }
  8152. #u94094_input.disabled {
  8153. position:absolute;
  8154. left:0px;
  8155. top:0px;
  8156. width:127px;
  8157. height:25px;
  8158. padding:2px 2px 2px 2px;
  8159. font-family:'Microsoft YaHei', sans-serif;
  8160. font-weight:400;
  8161. font-style:normal;
  8162. font-size:10px;
  8163. letter-spacing:normal;
  8164. color:#000000;
  8165. vertical-align:none;
  8166. text-align:left;
  8167. text-transform:none;
  8168. background-color:transparent;
  8169. border-color:transparent;
  8170. }
  8171. #u94094_div {
  8172. border-width:0px;
  8173. position:absolute;
  8174. left:0px;
  8175. top:0px;
  8176. width:127px;
  8177. height:25px;
  8178. background:inherit;
  8179. background-color:rgba(255, 255, 255, 1);
  8180. border:none;
  8181. border-radius:0px;
  8182. -moz-box-shadow:none;
  8183. -webkit-box-shadow:none;
  8184. box-shadow:none;
  8185. font-family:'Microsoft YaHei', sans-serif;
  8186. font-weight:400;
  8187. font-style:normal;
  8188. font-size:10px;
  8189. }
  8190. #u94094 {
  8191. border-width:0px;
  8192. position:absolute;
  8193. left:1258px;
  8194. top:104px;
  8195. width:127px;
  8196. height:25px;
  8197. display:flex;
  8198. font-family:'Microsoft YaHei', sans-serif;
  8199. font-weight:400;
  8200. font-style:normal;
  8201. font-size:10px;
  8202. }
  8203. #u94094 .text {
  8204. position:absolute;
  8205. align-self:center;
  8206. padding:2px 2px 2px 2px;
  8207. box-sizing:border-box;
  8208. width:100%;
  8209. }
  8210. #u94094_div.disabled {
  8211. border-width:0px;
  8212. position:absolute;
  8213. left:0px;
  8214. top:0px;
  8215. width:127px;
  8216. height:25px;
  8217. background:inherit;
  8218. background-color:rgba(240, 240, 240, 1);
  8219. border:none;
  8220. border-radius:0px;
  8221. -moz-box-shadow:none;
  8222. -webkit-box-shadow:none;
  8223. box-shadow:none;
  8224. font-family:'Microsoft YaHei', sans-serif;
  8225. font-weight:400;
  8226. font-style:normal;
  8227. font-size:10px;
  8228. }
  8229. #u94094.disabled {
  8230. }
  8231. #u94095 {
  8232. border-width:0px;
  8233. position:absolute;
  8234. left:0px;
  8235. top:0px;
  8236. width:0px;
  8237. height:0px;
  8238. }
  8239. #u94096_div {
  8240. border-width:0px;
  8241. position:absolute;
  8242. left:0px;
  8243. top:0px;
  8244. width:140px;
  8245. height:30px;
  8246. background:inherit;
  8247. background-color:rgba(255, 255, 255, 1);
  8248. box-sizing:border-box;
  8249. border-width:1px;
  8250. border-style:solid;
  8251. border-color:rgba(215, 215, 215, 1);
  8252. border-radius:4px;
  8253. -moz-box-shadow:none;
  8254. -webkit-box-shadow:none;
  8255. box-shadow:none;
  8256. font-size:14px;
  8257. }
  8258. #u94096 {
  8259. border-width:0px;
  8260. position:absolute;
  8261. left:1100px;
  8262. top:103px;
  8263. width:140px;
  8264. height:30px;
  8265. display:flex;
  8266. font-size:14px;
  8267. }
  8268. #u94096 .text {
  8269. position:absolute;
  8270. align-self:center;
  8271. padding:2px 2px 2px 2px;
  8272. box-sizing:border-box;
  8273. width:100%;
  8274. }
  8275. #u94096_text {
  8276. border-width:0px;
  8277. word-wrap:break-word;
  8278. text-transform:none;
  8279. visibility:hidden;
  8280. }
  8281. #u94097_input {
  8282. position:absolute;
  8283. left:0px;
  8284. top:0px;
  8285. width:134px;
  8286. height:23px;
  8287. padding:2px 2px 2px 2px;
  8288. font-family:'ArialMT', 'Arial', sans-serif;
  8289. font-weight:400;
  8290. font-style:normal;
  8291. font-size:14px;
  8292. letter-spacing:normal;
  8293. color:#AAAAAA;
  8294. vertical-align:none;
  8295. text-align:left;
  8296. text-transform:none;
  8297. background-color:transparent;
  8298. border-color:transparent;
  8299. }
  8300. #u94097_input.disabled {
  8301. position:absolute;
  8302. left:0px;
  8303. top:0px;
  8304. width:134px;
  8305. height:23px;
  8306. padding:2px 2px 2px 2px;
  8307. font-family:'ArialMT', 'Arial', sans-serif;
  8308. font-weight:400;
  8309. font-style:normal;
  8310. font-size:14px;
  8311. letter-spacing:normal;
  8312. color:#AAAAAA;
  8313. vertical-align:none;
  8314. text-align:left;
  8315. text-transform:none;
  8316. background-color:transparent;
  8317. border-color:transparent;
  8318. }
  8319. #u94097_div {
  8320. border-width:0px;
  8321. position:absolute;
  8322. left:0px;
  8323. top:0px;
  8324. width:134px;
  8325. height:23px;
  8326. background:inherit;
  8327. background-color:rgba(255, 255, 255, 1);
  8328. border:none;
  8329. border-radius:0px;
  8330. -moz-box-shadow:none;
  8331. -webkit-box-shadow:none;
  8332. box-shadow:none;
  8333. font-size:14px;
  8334. color:#AAAAAA;
  8335. }
  8336. #u94097 {
  8337. border-width:0px;
  8338. position:absolute;
  8339. left:1104px;
  8340. top:105px;
  8341. width:134px;
  8342. height:23px;
  8343. display:flex;
  8344. font-size:14px;
  8345. color:#AAAAAA;
  8346. }
  8347. #u94097 .text {
  8348. position:absolute;
  8349. align-self:flex-start;
  8350. padding:2px 2px 2px 2px;
  8351. box-sizing:border-box;
  8352. width:100%;
  8353. }
  8354. #u94097_div.disabled {
  8355. border-width:0px;
  8356. position:absolute;
  8357. left:0px;
  8358. top:0px;
  8359. width:134px;
  8360. height:23px;
  8361. background:inherit;
  8362. background-color:rgba(240, 240, 240, 1);
  8363. border:none;
  8364. border-radius:0px;
  8365. -moz-box-shadow:none;
  8366. -webkit-box-shadow:none;
  8367. box-shadow:none;
  8368. font-size:14px;
  8369. color:#AAAAAA;
  8370. }
  8371. #u94097.disabled {
  8372. }
  8373. .u94097_input_option {
  8374. font-size:14px;
  8375. }
  8376. #u94098 {
  8377. border-width:0px;
  8378. position:absolute;
  8379. left:0px;
  8380. top:0px;
  8381. width:0px;
  8382. height:0px;
  8383. }
  8384. #u94099_div {
  8385. border-width:0px;
  8386. position:absolute;
  8387. left:0px;
  8388. top:0px;
  8389. width:140px;
  8390. height:30px;
  8391. background:inherit;
  8392. background-color:rgba(255, 255, 255, 1);
  8393. box-sizing:border-box;
  8394. border-width:1px;
  8395. border-style:solid;
  8396. border-color:rgba(215, 215, 215, 1);
  8397. border-radius:4px;
  8398. -moz-box-shadow:none;
  8399. -webkit-box-shadow:none;
  8400. box-shadow:none;
  8401. font-size:14px;
  8402. }
  8403. #u94099 {
  8404. border-width:0px;
  8405. position:absolute;
  8406. left:350px;
  8407. top:103px;
  8408. width:140px;
  8409. height:30px;
  8410. display:flex;
  8411. font-size:14px;
  8412. }
  8413. #u94099 .text {
  8414. position:absolute;
  8415. align-self:center;
  8416. padding:2px 2px 2px 2px;
  8417. box-sizing:border-box;
  8418. width:100%;
  8419. }
  8420. #u94099_text {
  8421. border-width:0px;
  8422. word-wrap:break-word;
  8423. text-transform:none;
  8424. visibility:hidden;
  8425. }
  8426. #u94100_input {
  8427. position:absolute;
  8428. left:0px;
  8429. top:0px;
  8430. width:134px;
  8431. height:23px;
  8432. padding:2px 2px 2px 2px;
  8433. font-family:'ArialMT', 'Arial', sans-serif;
  8434. font-weight:400;
  8435. font-style:normal;
  8436. font-size:14px;
  8437. letter-spacing:normal;
  8438. color:#AAAAAA;
  8439. vertical-align:none;
  8440. text-align:left;
  8441. text-transform:none;
  8442. background-color:transparent;
  8443. border-color:transparent;
  8444. }
  8445. #u94100_input.disabled {
  8446. position:absolute;
  8447. left:0px;
  8448. top:0px;
  8449. width:134px;
  8450. height:23px;
  8451. padding:2px 2px 2px 2px;
  8452. font-family:'ArialMT', 'Arial', sans-serif;
  8453. font-weight:400;
  8454. font-style:normal;
  8455. font-size:14px;
  8456. letter-spacing:normal;
  8457. color:#AAAAAA;
  8458. vertical-align:none;
  8459. text-align:left;
  8460. text-transform:none;
  8461. background-color:transparent;
  8462. border-color:transparent;
  8463. }
  8464. #u94100_div {
  8465. border-width:0px;
  8466. position:absolute;
  8467. left:0px;
  8468. top:0px;
  8469. width:134px;
  8470. height:23px;
  8471. background:inherit;
  8472. background-color:rgba(255, 255, 255, 1);
  8473. border:none;
  8474. border-radius:0px;
  8475. -moz-box-shadow:none;
  8476. -webkit-box-shadow:none;
  8477. box-shadow:none;
  8478. font-size:14px;
  8479. color:#AAAAAA;
  8480. }
  8481. #u94100 {
  8482. border-width:0px;
  8483. position:absolute;
  8484. left:354px;
  8485. top:105px;
  8486. width:134px;
  8487. height:23px;
  8488. display:flex;
  8489. font-size:14px;
  8490. color:#AAAAAA;
  8491. }
  8492. #u94100 .text {
  8493. position:absolute;
  8494. align-self:flex-start;
  8495. padding:2px 2px 2px 2px;
  8496. box-sizing:border-box;
  8497. width:100%;
  8498. }
  8499. #u94100_div.disabled {
  8500. border-width:0px;
  8501. position:absolute;
  8502. left:0px;
  8503. top:0px;
  8504. width:134px;
  8505. height:23px;
  8506. background:inherit;
  8507. background-color:rgba(240, 240, 240, 1);
  8508. border:none;
  8509. border-radius:0px;
  8510. -moz-box-shadow:none;
  8511. -webkit-box-shadow:none;
  8512. box-shadow:none;
  8513. font-size:14px;
  8514. color:#AAAAAA;
  8515. }
  8516. #u94100.disabled {
  8517. }
  8518. .u94100_input_option {
  8519. font-size:14px;
  8520. }
  8521. #u94101 {
  8522. border-width:0px;
  8523. position:absolute;
  8524. left:0px;
  8525. top:0px;
  8526. width:0px;
  8527. height:0px;
  8528. }
  8529. #u94102_div {
  8530. border-width:0px;
  8531. position:absolute;
  8532. left:0px;
  8533. top:0px;
  8534. width:200px;
  8535. height:1180px;
  8536. background:inherit;
  8537. background-color:rgba(255, 255, 255, 1);
  8538. border:none;
  8539. border-radius:0px;
  8540. -moz-box-shadow:none;
  8541. -webkit-box-shadow:none;
  8542. box-shadow:none;
  8543. }
  8544. #u94102 {
  8545. border-width:0px;
  8546. position:absolute;
  8547. left:120px;
  8548. top:50px;
  8549. width:200px;
  8550. height:1180px;
  8551. display:flex;
  8552. }
  8553. #u94102 .text {
  8554. position:absolute;
  8555. align-self:center;
  8556. padding:2px 2px 2px 2px;
  8557. box-sizing:border-box;
  8558. width:100%;
  8559. }
  8560. #u94102_text {
  8561. border-width:0px;
  8562. word-wrap:break-word;
  8563. text-transform:none;
  8564. visibility:hidden;
  8565. }
  8566. #u94103_div {
  8567. border-width:0px;
  8568. position:absolute;
  8569. left:0px;
  8570. top:0px;
  8571. width:200px;
  8572. height:60px;
  8573. background:inherit;
  8574. background-color:rgba(224, 231, 247, 1);
  8575. border:none;
  8576. border-radius:0px;
  8577. -moz-box-shadow:none;
  8578. -webkit-box-shadow:none;
  8579. box-shadow:none;
  8580. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8581. font-weight:500;
  8582. font-style:normal;
  8583. font-size:18px;
  8584. }
  8585. #u94103 {
  8586. border-width:0px;
  8587. position:absolute;
  8588. left:120px;
  8589. top:50px;
  8590. width:200px;
  8591. height:60px;
  8592. display:flex;
  8593. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8594. font-weight:500;
  8595. font-style:normal;
  8596. font-size:18px;
  8597. }
  8598. #u94103 .text {
  8599. position:absolute;
  8600. align-self:center;
  8601. padding:0px 0px 0px 20px;
  8602. box-sizing:border-box;
  8603. width:100%;
  8604. }
  8605. #u94103_text {
  8606. border-width:0px;
  8607. word-wrap:break-word;
  8608. text-transform:none;
  8609. }
  8610. #u94104_div {
  8611. border-width:0px;
  8612. position:absolute;
  8613. left:0px;
  8614. top:0px;
  8615. width:65px;
  8616. height:22px;
  8617. background:inherit;
  8618. background-color:rgba(255, 255, 255, 0);
  8619. border:none;
  8620. border-radius:0px;
  8621. -moz-box-shadow:none;
  8622. -webkit-box-shadow:none;
  8623. box-shadow:none;
  8624. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8625. font-weight:400;
  8626. font-style:normal;
  8627. font-size:16px;
  8628. }
  8629. #u94104 {
  8630. border-width:0px;
  8631. position:absolute;
  8632. left:145px;
  8633. top:163px;
  8634. width:65px;
  8635. height:22px;
  8636. display:flex;
  8637. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8638. font-weight:400;
  8639. font-style:normal;
  8640. font-size:16px;
  8641. }
  8642. #u94104 .text {
  8643. position:absolute;
  8644. align-self:flex-start;
  8645. padding:0px 0px 0px 0px;
  8646. box-sizing:border-box;
  8647. width:100%;
  8648. }
  8649. #u94104_text {
  8650. border-width:0px;
  8651. white-space:nowrap;
  8652. text-transform:none;
  8653. }
  8654. #u94105_div {
  8655. border-width:0px;
  8656. position:absolute;
  8657. left:0px;
  8658. top:0px;
  8659. width:65px;
  8660. height:22px;
  8661. background:inherit;
  8662. background-color:rgba(255, 255, 255, 0);
  8663. border:none;
  8664. border-radius:0px;
  8665. -moz-box-shadow:none;
  8666. -webkit-box-shadow:none;
  8667. box-shadow:none;
  8668. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8669. font-weight:400;
  8670. font-style:normal;
  8671. font-size:16px;
  8672. }
  8673. #u94105 {
  8674. border-width:0px;
  8675. position:absolute;
  8676. left:145px;
  8677. top:205px;
  8678. width:65px;
  8679. height:22px;
  8680. display:flex;
  8681. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8682. font-weight:400;
  8683. font-style:normal;
  8684. font-size:16px;
  8685. }
  8686. #u94105 .text {
  8687. position:absolute;
  8688. align-self:flex-start;
  8689. padding:0px 0px 0px 0px;
  8690. box-sizing:border-box;
  8691. width:100%;
  8692. }
  8693. #u94105_text {
  8694. border-width:0px;
  8695. white-space:nowrap;
  8696. text-transform:none;
  8697. }
  8698. #u94106_div {
  8699. border-width:0px;
  8700. position:absolute;
  8701. left:0px;
  8702. top:0px;
  8703. width:65px;
  8704. height:22px;
  8705. background:inherit;
  8706. background-color:rgba(255, 255, 255, 0);
  8707. border:none;
  8708. border-radius:0px;
  8709. -moz-box-shadow:none;
  8710. -webkit-box-shadow:none;
  8711. box-shadow:none;
  8712. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8713. font-weight:400;
  8714. font-style:normal;
  8715. font-size:16px;
  8716. }
  8717. #u94106 {
  8718. border-width:0px;
  8719. position:absolute;
  8720. left:145px;
  8721. top:247px;
  8722. width:65px;
  8723. height:22px;
  8724. display:flex;
  8725. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8726. font-weight:400;
  8727. font-style:normal;
  8728. font-size:16px;
  8729. }
  8730. #u94106 .text {
  8731. position:absolute;
  8732. align-self:flex-start;
  8733. padding:0px 0px 0px 0px;
  8734. box-sizing:border-box;
  8735. width:100%;
  8736. }
  8737. #u94106_text {
  8738. border-width:0px;
  8739. white-space:nowrap;
  8740. text-transform:none;
  8741. }
  8742. #u94107_div {
  8743. border-width:0px;
  8744. position:absolute;
  8745. left:0px;
  8746. top:0px;
  8747. width:81px;
  8748. height:22px;
  8749. background:inherit;
  8750. background-color:rgba(255, 255, 255, 0);
  8751. border:none;
  8752. border-radius:0px;
  8753. -moz-box-shadow:none;
  8754. -webkit-box-shadow:none;
  8755. box-shadow:none;
  8756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8757. font-weight:400;
  8758. font-style:normal;
  8759. font-size:16px;
  8760. }
  8761. #u94107 {
  8762. border-width:0px;
  8763. position:absolute;
  8764. left:145px;
  8765. top:289px;
  8766. width:81px;
  8767. height:22px;
  8768. display:flex;
  8769. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8770. font-weight:400;
  8771. font-style:normal;
  8772. font-size:16px;
  8773. }
  8774. #u94107 .text {
  8775. position:absolute;
  8776. align-self:flex-start;
  8777. padding:0px 0px 0px 0px;
  8778. box-sizing:border-box;
  8779. width:100%;
  8780. }
  8781. #u94107_text {
  8782. border-width:0px;
  8783. white-space:nowrap;
  8784. text-transform:none;
  8785. }
  8786. #u94108_div {
  8787. border-width:0px;
  8788. position:absolute;
  8789. left:0px;
  8790. top:0px;
  8791. width:65px;
  8792. height:22px;
  8793. background:inherit;
  8794. background-color:rgba(255, 255, 255, 0);
  8795. border:none;
  8796. border-radius:0px;
  8797. -moz-box-shadow:none;
  8798. -webkit-box-shadow:none;
  8799. box-shadow:none;
  8800. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8801. font-weight:400;
  8802. font-style:normal;
  8803. font-size:16px;
  8804. }
  8805. #u94108 {
  8806. border-width:0px;
  8807. position:absolute;
  8808. left:145px;
  8809. top:331px;
  8810. width:65px;
  8811. height:22px;
  8812. display:flex;
  8813. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8814. font-weight:400;
  8815. font-style:normal;
  8816. font-size:16px;
  8817. }
  8818. #u94108 .text {
  8819. position:absolute;
  8820. align-self:flex-start;
  8821. padding:0px 0px 0px 0px;
  8822. box-sizing:border-box;
  8823. width:100%;
  8824. }
  8825. #u94108_text {
  8826. border-width:0px;
  8827. white-space:nowrap;
  8828. text-transform:none;
  8829. }
  8830. #u94109_div {
  8831. border-width:0px;
  8832. position:absolute;
  8833. left:0px;
  8834. top:0px;
  8835. width:65px;
  8836. height:22px;
  8837. background:inherit;
  8838. background-color:rgba(255, 255, 255, 0);
  8839. border:none;
  8840. border-radius:0px;
  8841. -moz-box-shadow:none;
  8842. -webkit-box-shadow:none;
  8843. box-shadow:none;
  8844. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8845. font-weight:400;
  8846. font-style:normal;
  8847. font-size:16px;
  8848. }
  8849. #u94109 {
  8850. border-width:0px;
  8851. position:absolute;
  8852. left:143px;
  8853. top:426px;
  8854. width:65px;
  8855. height:22px;
  8856. display:flex;
  8857. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8858. font-weight:400;
  8859. font-style:normal;
  8860. font-size:16px;
  8861. }
  8862. #u94109 .text {
  8863. position:absolute;
  8864. align-self:flex-start;
  8865. padding:0px 0px 0px 0px;
  8866. box-sizing:border-box;
  8867. width:100%;
  8868. }
  8869. #u94109_text {
  8870. border-width:0px;
  8871. white-space:nowrap;
  8872. text-transform:none;
  8873. }
  8874. #u94110_img {
  8875. border-width:0px;
  8876. position:absolute;
  8877. left:0px;
  8878. top:0px;
  8879. width:201px;
  8880. height:2px;
  8881. }
  8882. #u94110 {
  8883. border-width:0px;
  8884. position:absolute;
  8885. left:120px;
  8886. top:373px;
  8887. width:200px;
  8888. height:1px;
  8889. display:flex;
  8890. }
  8891. #u94110 .text {
  8892. position:absolute;
  8893. align-self:center;
  8894. padding:2px 2px 2px 2px;
  8895. box-sizing:border-box;
  8896. width:100%;
  8897. }
  8898. #u94110_text {
  8899. border-width:0px;
  8900. word-wrap:break-word;
  8901. text-transform:none;
  8902. visibility:hidden;
  8903. }
  8904. #u94111_div {
  8905. border-width:0px;
  8906. position:absolute;
  8907. left:0px;
  8908. top:0px;
  8909. width:49px;
  8910. height:17px;
  8911. background:inherit;
  8912. background-color:rgba(255, 255, 255, 0);
  8913. border:none;
  8914. border-radius:0px;
  8915. -moz-box-shadow:none;
  8916. -webkit-box-shadow:none;
  8917. box-shadow:none;
  8918. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8919. font-weight:400;
  8920. font-style:normal;
  8921. font-size:12px;
  8922. color:#AAAAAA;
  8923. }
  8924. #u94111 {
  8925. border-width:0px;
  8926. position:absolute;
  8927. left:143px;
  8928. top:393px;
  8929. width:49px;
  8930. height:17px;
  8931. display:flex;
  8932. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8933. font-weight:400;
  8934. font-style:normal;
  8935. font-size:12px;
  8936. color:#AAAAAA;
  8937. }
  8938. #u94111 .text {
  8939. position:absolute;
  8940. align-self:flex-start;
  8941. padding:0px 0px 0px 0px;
  8942. box-sizing:border-box;
  8943. width:100%;
  8944. }
  8945. #u94111_text {
  8946. border-width:0px;
  8947. white-space:nowrap;
  8948. text-transform:none;
  8949. }
  8950. #u94112_div {
  8951. border-width:0px;
  8952. position:absolute;
  8953. left:0px;
  8954. top:0px;
  8955. width:49px;
  8956. height:17px;
  8957. background:inherit;
  8958. background-color:rgba(255, 255, 255, 0);
  8959. border:none;
  8960. border-radius:0px;
  8961. -moz-box-shadow:none;
  8962. -webkit-box-shadow:none;
  8963. box-shadow:none;
  8964. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8965. font-weight:400;
  8966. font-style:normal;
  8967. font-size:12px;
  8968. color:#AAAAAA;
  8969. }
  8970. #u94112 {
  8971. border-width:0px;
  8972. position:absolute;
  8973. left:143px;
  8974. top:130px;
  8975. width:49px;
  8976. height:17px;
  8977. display:flex;
  8978. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8979. font-weight:400;
  8980. font-style:normal;
  8981. font-size:12px;
  8982. color:#AAAAAA;
  8983. }
  8984. #u94112 .text {
  8985. position:absolute;
  8986. align-self:flex-start;
  8987. padding:0px 0px 0px 0px;
  8988. box-sizing:border-box;
  8989. width:100%;
  8990. }
  8991. #u94112_text {
  8992. border-width:0px;
  8993. white-space:nowrap;
  8994. text-transform:none;
  8995. }
  8996. #u94113_div {
  8997. border-width:0px;
  8998. position:absolute;
  8999. left:0px;
  9000. top:0px;
  9001. width:97px;
  9002. height:22px;
  9003. background:inherit;
  9004. background-color:rgba(255, 255, 255, 0);
  9005. border:none;
  9006. border-radius:0px;
  9007. -moz-box-shadow:none;
  9008. -webkit-box-shadow:none;
  9009. box-shadow:none;
  9010. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9011. font-weight:400;
  9012. font-style:normal;
  9013. font-size:16px;
  9014. }
  9015. #u94113 {
  9016. border-width:0px;
  9017. position:absolute;
  9018. left:143px;
  9019. top:521px;
  9020. width:97px;
  9021. height:22px;
  9022. display:flex;
  9023. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9024. font-weight:400;
  9025. font-style:normal;
  9026. font-size:16px;
  9027. }
  9028. #u94113 .text {
  9029. position:absolute;
  9030. align-self:flex-start;
  9031. padding:0px 0px 0px 0px;
  9032. box-sizing:border-box;
  9033. width:100%;
  9034. }
  9035. #u94113_text {
  9036. border-width:0px;
  9037. white-space:nowrap;
  9038. text-transform:none;
  9039. }
  9040. #u94114_img {
  9041. border-width:0px;
  9042. position:absolute;
  9043. left:0px;
  9044. top:0px;
  9045. width:201px;
  9046. height:2px;
  9047. }
  9048. #u94114 {
  9049. border-width:0px;
  9050. position:absolute;
  9051. left:120px;
  9052. top:468px;
  9053. width:200px;
  9054. height:1px;
  9055. display:flex;
  9056. }
  9057. #u94114 .text {
  9058. position:absolute;
  9059. align-self:center;
  9060. padding:2px 2px 2px 2px;
  9061. box-sizing:border-box;
  9062. width:100%;
  9063. }
  9064. #u94114_text {
  9065. border-width:0px;
  9066. word-wrap:break-word;
  9067. text-transform:none;
  9068. visibility:hidden;
  9069. }
  9070. #u94115_div {
  9071. border-width:0px;
  9072. position:absolute;
  9073. left:0px;
  9074. top:0px;
  9075. width:49px;
  9076. height:17px;
  9077. background:inherit;
  9078. background-color:rgba(255, 255, 255, 0);
  9079. border:none;
  9080. border-radius:0px;
  9081. -moz-box-shadow:none;
  9082. -webkit-box-shadow:none;
  9083. box-shadow:none;
  9084. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9085. font-weight:400;
  9086. font-style:normal;
  9087. font-size:12px;
  9088. color:#AAAAAA;
  9089. }
  9090. #u94115 {
  9091. border-width:0px;
  9092. position:absolute;
  9093. left:143px;
  9094. top:488px;
  9095. width:49px;
  9096. height:17px;
  9097. display:flex;
  9098. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9099. font-weight:400;
  9100. font-style:normal;
  9101. font-size:12px;
  9102. color:#AAAAAA;
  9103. }
  9104. #u94115 .text {
  9105. position:absolute;
  9106. align-self:flex-start;
  9107. padding:0px 0px 0px 0px;
  9108. box-sizing:border-box;
  9109. width:100%;
  9110. }
  9111. #u94115_text {
  9112. border-width:0px;
  9113. white-space:nowrap;
  9114. text-transform:none;
  9115. }
  9116. #u94116_div {
  9117. border-width:0px;
  9118. position:absolute;
  9119. left:0px;
  9120. top:0px;
  9121. width:97px;
  9122. height:22px;
  9123. background:inherit;
  9124. background-color:rgba(255, 255, 255, 0);
  9125. border:none;
  9126. border-radius:0px;
  9127. -moz-box-shadow:none;
  9128. -webkit-box-shadow:none;
  9129. box-shadow:none;
  9130. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9131. font-weight:400;
  9132. font-style:normal;
  9133. font-size:16px;
  9134. }
  9135. #u94116 {
  9136. border-width:0px;
  9137. position:absolute;
  9138. left:143px;
  9139. top:563px;
  9140. width:97px;
  9141. height:22px;
  9142. display:flex;
  9143. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9144. font-weight:400;
  9145. font-style:normal;
  9146. font-size:16px;
  9147. }
  9148. #u94116 .text {
  9149. position:absolute;
  9150. align-self:flex-start;
  9151. padding:0px 0px 0px 0px;
  9152. box-sizing:border-box;
  9153. width:100%;
  9154. }
  9155. #u94116_text {
  9156. border-width:0px;
  9157. white-space:nowrap;
  9158. text-transform:none;
  9159. }
  9160. #u94117_div {
  9161. border-width:0px;
  9162. position:absolute;
  9163. left:0px;
  9164. top:0px;
  9165. width:97px;
  9166. height:22px;
  9167. background:inherit;
  9168. background-color:rgba(255, 255, 255, 0);
  9169. border:none;
  9170. border-radius:0px;
  9171. -moz-box-shadow:none;
  9172. -webkit-box-shadow:none;
  9173. box-shadow:none;
  9174. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9175. font-weight:400;
  9176. font-style:normal;
  9177. font-size:16px;
  9178. }
  9179. #u94117 {
  9180. border-width:0px;
  9181. position:absolute;
  9182. left:143px;
  9183. top:605px;
  9184. width:97px;
  9185. height:22px;
  9186. display:flex;
  9187. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9188. font-weight:400;
  9189. font-style:normal;
  9190. font-size:16px;
  9191. }
  9192. #u94117 .text {
  9193. position:absolute;
  9194. align-self:flex-start;
  9195. padding:0px 0px 0px 0px;
  9196. box-sizing:border-box;
  9197. width:100%;
  9198. }
  9199. #u94117_text {
  9200. border-width:0px;
  9201. white-space:nowrap;
  9202. text-transform:none;
  9203. }
  9204. #u94118_div {
  9205. border-width:0px;
  9206. position:absolute;
  9207. left:0px;
  9208. top:0px;
  9209. width:65px;
  9210. height:22px;
  9211. background:inherit;
  9212. background-color:rgba(255, 255, 255, 0);
  9213. border:none;
  9214. border-radius:0px;
  9215. -moz-box-shadow:none;
  9216. -webkit-box-shadow:none;
  9217. box-shadow:none;
  9218. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9219. font-weight:400;
  9220. font-style:normal;
  9221. font-size:16px;
  9222. }
  9223. #u94118 {
  9224. border-width:0px;
  9225. position:absolute;
  9226. left:143px;
  9227. top:647px;
  9228. width:65px;
  9229. height:22px;
  9230. display:flex;
  9231. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9232. font-weight:400;
  9233. font-style:normal;
  9234. font-size:16px;
  9235. }
  9236. #u94118 .text {
  9237. position:absolute;
  9238. align-self:flex-start;
  9239. padding:0px 0px 0px 0px;
  9240. box-sizing:border-box;
  9241. width:100%;
  9242. }
  9243. #u94118_text {
  9244. border-width:0px;
  9245. white-space:nowrap;
  9246. text-transform:none;
  9247. }