styles.css 131 KB

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