styles.css 141 KB

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