styles.css 161 KB

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