styles.css 123 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1600px;
  7. margin-left:auto;
  8. margin-right:auto;
  9. text-align:left;
  10. }
  11. .form_sketch {
  12. border-color:transparent;
  13. background-color:transparent;
  14. }
  15. #base {
  16. position:absolute;
  17. z-index:0;
  18. }
  19. #u6465 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u6467_div {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:129px;
  33. height:22px;
  34. background:inherit;
  35. background-color:rgba(255, 255, 255, 0);
  36. border:none;
  37. border-radius:0px;
  38. -moz-box-shadow:none;
  39. -webkit-box-shadow:none;
  40. box-shadow:none;
  41. font-size:16px;
  42. color:#FFFFFF;
  43. }
  44. #u6467 {
  45. border-width:0px;
  46. position:absolute;
  47. left:49px;
  48. top:14px;
  49. width:129px;
  50. height:22px;
  51. display:flex;
  52. font-size:16px;
  53. color:#FFFFFF;
  54. }
  55. #u6467 .text {
  56. position:absolute;
  57. align-self:flex-start;
  58. padding:0px 0px 0px 0px;
  59. box-sizing:border-box;
  60. width:100%;
  61. }
  62. #u6467_text {
  63. border-width:0px;
  64. white-space:nowrap;
  65. text-transform:none;
  66. }
  67. #u6468_div {
  68. border-width:0px;
  69. position:absolute;
  70. left:0px;
  71. top:0px;
  72. width:1600px;
  73. height:50px;
  74. background:inherit;
  75. background-color:rgba(30, 42, 68, 1);
  76. border:none;
  77. border-radius:0px;
  78. -moz-box-shadow:none;
  79. -webkit-box-shadow:none;
  80. box-shadow:none;
  81. color:#AFB3B6;
  82. }
  83. #u6468 {
  84. border-width:0px;
  85. position:absolute;
  86. left:0px;
  87. top:0px;
  88. width:1600px;
  89. height:50px;
  90. display:flex;
  91. color:#AFB3B6;
  92. }
  93. #u6468 .text {
  94. position:absolute;
  95. align-self:center;
  96. padding:2px 2px 2px 2px;
  97. box-sizing:border-box;
  98. width:100%;
  99. }
  100. #u6468_text {
  101. border-width:0px;
  102. word-wrap:break-word;
  103. text-transform:none;
  104. visibility:hidden;
  105. }
  106. #u6469 {
  107. border-width:0px;
  108. position:absolute;
  109. left:0px;
  110. top:0px;
  111. width:0px;
  112. height:0px;
  113. }
  114. #u6470_img {
  115. border-width:0px;
  116. position:absolute;
  117. left:0px;
  118. top:0px;
  119. width:31px;
  120. height:31px;
  121. }
  122. #u6470 {
  123. border-width:0px;
  124. position:absolute;
  125. left:19px;
  126. top:10px;
  127. width:31px;
  128. height:31px;
  129. display:flex;
  130. }
  131. #u6470 .text {
  132. position:absolute;
  133. align-self:center;
  134. padding:2px 2px 2px 2px;
  135. box-sizing:border-box;
  136. width:100%;
  137. }
  138. #u6470_text {
  139. border-width:0px;
  140. word-wrap:break-word;
  141. text-transform:none;
  142. }
  143. #u6471_div {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:161px;
  149. height:22px;
  150. background:inherit;
  151. background-color:rgba(255, 255, 255, 0);
  152. border:none;
  153. border-radius:0px;
  154. -moz-box-shadow:none;
  155. -webkit-box-shadow:none;
  156. box-shadow:none;
  157. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  158. font-weight:400;
  159. font-style:normal;
  160. font-size:16px;
  161. color:#FFFFFF;
  162. }
  163. #u6471 {
  164. border-width:0px;
  165. position:absolute;
  166. left:62px;
  167. top:14px;
  168. width:161px;
  169. height:22px;
  170. display:flex;
  171. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  172. font-weight:400;
  173. font-style:normal;
  174. font-size:16px;
  175. color:#FFFFFF;
  176. }
  177. #u6471 .text {
  178. position:absolute;
  179. align-self:flex-start;
  180. padding:0px 0px 0px 0px;
  181. box-sizing:border-box;
  182. width:100%;
  183. }
  184. #u6471_text {
  185. border-width:0px;
  186. white-space:nowrap;
  187. text-transform:none;
  188. }
  189. #u6472_div {
  190. border-width:0px;
  191. position:absolute;
  192. left:0px;
  193. top:0px;
  194. width:120px;
  195. height:1200px;
  196. background:inherit;
  197. background-color:rgba(30, 42, 68, 1);
  198. border:none;
  199. border-radius:0px;
  200. -moz-box-shadow:none;
  201. -webkit-box-shadow:none;
  202. box-shadow:none;
  203. color:#AFB3B6;
  204. }
  205. #u6472 {
  206. border-width:0px;
  207. position:absolute;
  208. left:0px;
  209. top:47px;
  210. width:120px;
  211. height:1200px;
  212. display:flex;
  213. color:#AFB3B6;
  214. }
  215. #u6472 .text {
  216. position:absolute;
  217. align-self:center;
  218. padding:2px 2px 2px 2px;
  219. box-sizing:border-box;
  220. width:100%;
  221. }
  222. #u6472_text {
  223. border-width:0px;
  224. word-wrap:break-word;
  225. text-transform:none;
  226. visibility:hidden;
  227. }
  228. #u6473_div {
  229. border-width:0px;
  230. position:absolute;
  231. left:0px;
  232. top:0px;
  233. width:1480px;
  234. height:1200px;
  235. background:inherit;
  236. background-color:rgba(242, 242, 242, 1);
  237. border:none;
  238. border-radius:0px;
  239. -moz-box-shadow:none;
  240. -webkit-box-shadow:none;
  241. box-shadow:none;
  242. }
  243. #u6473 {
  244. border-width:0px;
  245. position:absolute;
  246. left:120px;
  247. top:50px;
  248. width:1480px;
  249. height:1200px;
  250. display:flex;
  251. }
  252. #u6473 .text {
  253. position:absolute;
  254. align-self:center;
  255. padding:2px 2px 2px 2px;
  256. box-sizing:border-box;
  257. width:100%;
  258. }
  259. #u6473_text {
  260. border-width:0px;
  261. word-wrap:break-word;
  262. text-transform:none;
  263. visibility:hidden;
  264. }
  265. #u6474 {
  266. border-width:0px;
  267. position:absolute;
  268. left:0px;
  269. top:0px;
  270. width:0px;
  271. height:0px;
  272. }
  273. #u6475_div {
  274. border-width:0px;
  275. position:absolute;
  276. left:0px;
  277. top:0px;
  278. width:33px;
  279. height:22px;
  280. background:inherit;
  281. background-color:rgba(255, 255, 255, 0);
  282. border:none;
  283. border-radius:0px;
  284. -moz-box-shadow:none;
  285. -webkit-box-shadow:none;
  286. box-shadow:none;
  287. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  288. font-weight:400;
  289. font-style:normal;
  290. font-size:16px;
  291. color:#FFFFFF;
  292. }
  293. #u6475 {
  294. border-width:0px;
  295. position:absolute;
  296. left:39px;
  297. top:67px;
  298. width:33px;
  299. height:22px;
  300. display:flex;
  301. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  302. font-weight:400;
  303. font-style:normal;
  304. font-size:16px;
  305. color:#FFFFFF;
  306. }
  307. #u6475 .text {
  308. position:absolute;
  309. align-self:flex-start;
  310. padding:0px 0px 0px 0px;
  311. box-sizing:border-box;
  312. width:100%;
  313. }
  314. #u6475_text {
  315. border-width:0px;
  316. white-space:nowrap;
  317. text-transform:none;
  318. }
  319. #u6476_img {
  320. border-width:0px;
  321. position:absolute;
  322. left:0px;
  323. top:0px;
  324. width:14px;
  325. height:14px;
  326. }
  327. #u6476 {
  328. border-width:0px;
  329. position:absolute;
  330. left:20px;
  331. top:71px;
  332. width:14px;
  333. height:14px;
  334. display:flex;
  335. }
  336. #u6476 .text {
  337. position:absolute;
  338. align-self:center;
  339. padding:2px 2px 2px 2px;
  340. box-sizing:border-box;
  341. width:100%;
  342. }
  343. #u6476_text {
  344. border-width:0px;
  345. word-wrap:break-word;
  346. text-transform:none;
  347. visibility:hidden;
  348. }
  349. #u6477 {
  350. border-width:0px;
  351. position:absolute;
  352. left:0px;
  353. top:0px;
  354. width:0px;
  355. height:0px;
  356. }
  357. #u6478_div {
  358. border-width:0px;
  359. position:absolute;
  360. left:0px;
  361. top:0px;
  362. width:33px;
  363. height:22px;
  364. background:inherit;
  365. background-color:rgba(255, 255, 255, 0);
  366. border:none;
  367. border-radius:0px;
  368. -moz-box-shadow:none;
  369. -webkit-box-shadow:none;
  370. box-shadow:none;
  371. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  372. font-weight:400;
  373. font-style:normal;
  374. font-size:16px;
  375. color:#FFFFFF;
  376. }
  377. #u6478 {
  378. border-width:0px;
  379. position:absolute;
  380. left:39px;
  381. top:109px;
  382. width:33px;
  383. height:22px;
  384. display:flex;
  385. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  386. font-weight:400;
  387. font-style:normal;
  388. font-size:16px;
  389. color:#FFFFFF;
  390. }
  391. #u6478 .text {
  392. position:absolute;
  393. align-self:flex-start;
  394. padding:0px 0px 0px 0px;
  395. box-sizing:border-box;
  396. width:100%;
  397. }
  398. #u6478_text {
  399. border-width:0px;
  400. white-space:nowrap;
  401. text-transform:none;
  402. }
  403. #u6479_img {
  404. border-width:0px;
  405. position:absolute;
  406. left:0px;
  407. top:0px;
  408. width:14px;
  409. height:14px;
  410. }
  411. #u6479 {
  412. border-width:0px;
  413. position:absolute;
  414. left:20px;
  415. top:113px;
  416. width:14px;
  417. height:14px;
  418. display:flex;
  419. }
  420. #u6479 .text {
  421. position:absolute;
  422. align-self:center;
  423. padding:2px 2px 2px 2px;
  424. box-sizing:border-box;
  425. width:100%;
  426. }
  427. #u6479_text {
  428. border-width:0px;
  429. word-wrap:break-word;
  430. text-transform:none;
  431. visibility:hidden;
  432. }
  433. #u6480 {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:0px;
  439. height:0px;
  440. }
  441. #u6481_div {
  442. border-width:0px;
  443. position:absolute;
  444. left:0px;
  445. top:0px;
  446. width:29px;
  447. height:20px;
  448. background:inherit;
  449. background-color:rgba(255, 255, 255, 0);
  450. border:none;
  451. border-radius:25px;
  452. -moz-box-shadow:none;
  453. -webkit-box-shadow:none;
  454. box-shadow:none;
  455. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  456. font-weight:400;
  457. font-style:normal;
  458. color:#FFFFFF;
  459. }
  460. #u6481 {
  461. border-width:0px;
  462. position:absolute;
  463. left:59px;
  464. top:1141px;
  465. width:29px;
  466. height:20px;
  467. display:flex;
  468. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  469. font-weight:400;
  470. font-style:normal;
  471. color:#FFFFFF;
  472. }
  473. #u6481 .text {
  474. position:absolute;
  475. align-self:center;
  476. padding:0px 0px 0px 0px;
  477. box-sizing:border-box;
  478. width:100%;
  479. }
  480. #u6481_text {
  481. border-width:0px;
  482. white-space:nowrap;
  483. text-transform:none;
  484. }
  485. #u6482_img {
  486. border-width:0px;
  487. position:absolute;
  488. left:0px;
  489. top:0px;
  490. width:22px;
  491. height:22px;
  492. }
  493. #u6482 {
  494. border-width:0px;
  495. position:absolute;
  496. left:27px;
  497. top:1140px;
  498. width:22px;
  499. height:22px;
  500. display:flex;
  501. }
  502. #u6482 .text {
  503. position:absolute;
  504. align-self:center;
  505. padding:2px 2px 2px 2px;
  506. box-sizing:border-box;
  507. width:100%;
  508. }
  509. #u6482_text {
  510. border-width:0px;
  511. word-wrap:break-word;
  512. text-transform:none;
  513. visibility:hidden;
  514. }
  515. #u6483 {
  516. border-width:0px;
  517. position:absolute;
  518. left:0px;
  519. top:0px;
  520. width:0px;
  521. height:0px;
  522. }
  523. #u6484_div {
  524. border-width:0px;
  525. position:absolute;
  526. left:0px;
  527. top:0px;
  528. width:29px;
  529. height:20px;
  530. background:inherit;
  531. background-color:rgba(255, 255, 255, 0);
  532. border:none;
  533. border-radius:25px;
  534. -moz-box-shadow:none;
  535. -webkit-box-shadow:none;
  536. box-shadow:none;
  537. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  538. font-weight:400;
  539. font-style:normal;
  540. color:#FFFFFF;
  541. }
  542. #u6484 {
  543. border-width:0px;
  544. position:absolute;
  545. left:59px;
  546. top:1183px;
  547. width:29px;
  548. height:20px;
  549. display:flex;
  550. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  551. font-weight:400;
  552. font-style:normal;
  553. color:#FFFFFF;
  554. }
  555. #u6484 .text {
  556. position:absolute;
  557. align-self:center;
  558. padding:0px 0px 0px 0px;
  559. box-sizing:border-box;
  560. width:100%;
  561. }
  562. #u6484_text {
  563. border-width:0px;
  564. white-space:nowrap;
  565. text-transform:none;
  566. }
  567. #u6485_img {
  568. border-width:0px;
  569. position:absolute;
  570. left:0px;
  571. top:0px;
  572. width:22px;
  573. height:22px;
  574. }
  575. #u6485 {
  576. border-width:0px;
  577. position:absolute;
  578. left:27px;
  579. top:1182px;
  580. width:22px;
  581. height:22px;
  582. display:flex;
  583. }
  584. #u6485 .text {
  585. position:absolute;
  586. align-self:center;
  587. padding:2px 2px 2px 2px;
  588. box-sizing:border-box;
  589. width:100%;
  590. }
  591. #u6485_text {
  592. border-width:0px;
  593. word-wrap:break-word;
  594. text-transform:none;
  595. visibility:hidden;
  596. }
  597. #u6486 {
  598. border-width:0px;
  599. position:absolute;
  600. left:0px;
  601. top:0px;
  602. width:0px;
  603. height:0px;
  604. }
  605. #u6487_div {
  606. border-width:0px;
  607. position:absolute;
  608. left:0px;
  609. top:0px;
  610. width:33px;
  611. height:22px;
  612. background:inherit;
  613. background-color:rgba(255, 255, 255, 0);
  614. border:none;
  615. border-radius:0px;
  616. -moz-box-shadow:none;
  617. -webkit-box-shadow:none;
  618. box-shadow:none;
  619. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  620. font-weight:400;
  621. font-style:normal;
  622. font-size:16px;
  623. color:#FFFFFF;
  624. }
  625. #u6487 {
  626. border-width:0px;
  627. position:absolute;
  628. left:39px;
  629. top:277px;
  630. width:33px;
  631. height:22px;
  632. display:flex;
  633. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  634. font-weight:400;
  635. font-style:normal;
  636. font-size:16px;
  637. color:#FFFFFF;
  638. }
  639. #u6487 .text {
  640. position:absolute;
  641. align-self:flex-start;
  642. padding:0px 0px 0px 0px;
  643. box-sizing:border-box;
  644. width:100%;
  645. }
  646. #u6487_text {
  647. border-width:0px;
  648. white-space:nowrap;
  649. text-transform:none;
  650. }
  651. #u6488_img {
  652. border-width:0px;
  653. position:absolute;
  654. left:0px;
  655. top:0px;
  656. width:14px;
  657. height:14px;
  658. }
  659. #u6488 {
  660. border-width:0px;
  661. position:absolute;
  662. left:20px;
  663. top:281px;
  664. width:14px;
  665. height:14px;
  666. display:flex;
  667. }
  668. #u6488 .text {
  669. position:absolute;
  670. align-self:center;
  671. padding:2px 2px 2px 2px;
  672. box-sizing:border-box;
  673. width:100%;
  674. }
  675. #u6488_text {
  676. border-width:0px;
  677. word-wrap:break-word;
  678. text-transform:none;
  679. visibility:hidden;
  680. }
  681. #u6489 {
  682. border-width:0px;
  683. position:absolute;
  684. left:0px;
  685. top:0px;
  686. width:0px;
  687. height:0px;
  688. }
  689. #u6490_div {
  690. border-width:0px;
  691. position:absolute;
  692. left:0px;
  693. top:0px;
  694. width:33px;
  695. height:22px;
  696. background:inherit;
  697. background-color:rgba(255, 255, 255, 0);
  698. border:none;
  699. border-radius:0px;
  700. -moz-box-shadow:none;
  701. -webkit-box-shadow:none;
  702. box-shadow:none;
  703. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  704. font-weight:400;
  705. font-style:normal;
  706. font-size:16px;
  707. color:#FFFFFF;
  708. }
  709. #u6490 {
  710. border-width:0px;
  711. position:absolute;
  712. left:39px;
  713. top:235px;
  714. width:33px;
  715. height:22px;
  716. display:flex;
  717. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  718. font-weight:400;
  719. font-style:normal;
  720. font-size:16px;
  721. color:#FFFFFF;
  722. }
  723. #u6490 .text {
  724. position:absolute;
  725. align-self:flex-start;
  726. padding:0px 0px 0px 0px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u6490_text {
  731. border-width:0px;
  732. white-space:nowrap;
  733. text-transform:none;
  734. }
  735. #u6491_img {
  736. border-width:0px;
  737. position:absolute;
  738. left:0px;
  739. top:0px;
  740. width:14px;
  741. height:14px;
  742. }
  743. #u6491 {
  744. border-width:0px;
  745. position:absolute;
  746. left:20px;
  747. top:239px;
  748. width:14px;
  749. height:14px;
  750. display:flex;
  751. }
  752. #u6491 .text {
  753. position:absolute;
  754. align-self:center;
  755. padding:2px 2px 2px 2px;
  756. box-sizing:border-box;
  757. width:100%;
  758. }
  759. #u6491_text {
  760. border-width:0px;
  761. word-wrap:break-word;
  762. text-transform:none;
  763. visibility:hidden;
  764. }
  765. #u6492 {
  766. border-width:0px;
  767. position:absolute;
  768. left:0px;
  769. top:0px;
  770. width:0px;
  771. height:0px;
  772. }
  773. #u6493_div {
  774. border-width:0px;
  775. position:absolute;
  776. left:0px;
  777. top:0px;
  778. width:33px;
  779. height:22px;
  780. background:inherit;
  781. background-color:rgba(255, 255, 255, 0);
  782. border:none;
  783. border-radius:0px;
  784. -moz-box-shadow:none;
  785. -webkit-box-shadow:none;
  786. box-shadow:none;
  787. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  788. font-weight:400;
  789. font-style:normal;
  790. font-size:16px;
  791. color:#FFFFFF;
  792. }
  793. #u6493 {
  794. border-width:0px;
  795. position:absolute;
  796. left:39px;
  797. top:403px;
  798. width:33px;
  799. height:22px;
  800. display:flex;
  801. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  802. font-weight:400;
  803. font-style:normal;
  804. font-size:16px;
  805. color:#FFFFFF;
  806. }
  807. #u6493 .text {
  808. position:absolute;
  809. align-self:flex-start;
  810. padding:0px 0px 0px 0px;
  811. box-sizing:border-box;
  812. width:100%;
  813. }
  814. #u6493_text {
  815. border-width:0px;
  816. white-space:nowrap;
  817. text-transform:none;
  818. }
  819. #u6494_img {
  820. border-width:0px;
  821. position:absolute;
  822. left:0px;
  823. top:0px;
  824. width:14px;
  825. height:14px;
  826. }
  827. #u6494 {
  828. border-width:0px;
  829. position:absolute;
  830. left:20px;
  831. top:407px;
  832. width:14px;
  833. height:14px;
  834. display:flex;
  835. }
  836. #u6494 .text {
  837. position:absolute;
  838. align-self:center;
  839. padding:2px 2px 2px 2px;
  840. box-sizing:border-box;
  841. width:100%;
  842. }
  843. #u6494_text {
  844. border-width:0px;
  845. word-wrap:break-word;
  846. text-transform:none;
  847. visibility:hidden;
  848. }
  849. #u6495 {
  850. border-width:0px;
  851. position:absolute;
  852. left:0px;
  853. top:0px;
  854. width:0px;
  855. height:0px;
  856. }
  857. #u6496_div {
  858. border-width:0px;
  859. position:absolute;
  860. left:0px;
  861. top:0px;
  862. width:33px;
  863. height:22px;
  864. background:inherit;
  865. background-color:rgba(255, 255, 255, 0);
  866. border:none;
  867. border-radius:0px;
  868. -moz-box-shadow:none;
  869. -webkit-box-shadow:none;
  870. box-shadow:none;
  871. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  872. font-weight:400;
  873. font-style:normal;
  874. font-size:16px;
  875. color:#FFFFFF;
  876. }
  877. #u6496 {
  878. border-width:0px;
  879. position:absolute;
  880. left:39px;
  881. top:445px;
  882. width:33px;
  883. height:22px;
  884. display:flex;
  885. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  886. font-weight:400;
  887. font-style:normal;
  888. font-size:16px;
  889. color:#FFFFFF;
  890. }
  891. #u6496 .text {
  892. position:absolute;
  893. align-self:flex-start;
  894. padding:0px 0px 0px 0px;
  895. box-sizing:border-box;
  896. width:100%;
  897. }
  898. #u6496_text {
  899. border-width:0px;
  900. white-space:nowrap;
  901. text-transform:none;
  902. }
  903. #u6497_img {
  904. border-width:0px;
  905. position:absolute;
  906. left:0px;
  907. top:0px;
  908. width:14px;
  909. height:14px;
  910. }
  911. #u6497 {
  912. border-width:0px;
  913. position:absolute;
  914. left:20px;
  915. top:449px;
  916. width:14px;
  917. height:14px;
  918. display:flex;
  919. }
  920. #u6497 .text {
  921. position:absolute;
  922. align-self:center;
  923. padding:2px 2px 2px 2px;
  924. box-sizing:border-box;
  925. width:100%;
  926. }
  927. #u6497_text {
  928. border-width:0px;
  929. word-wrap:break-word;
  930. text-transform:none;
  931. visibility:hidden;
  932. }
  933. #u6498 {
  934. border-width:0px;
  935. position:absolute;
  936. left:0px;
  937. top:0px;
  938. width:0px;
  939. height:0px;
  940. }
  941. #u6499_div {
  942. border-width:0px;
  943. position:absolute;
  944. left:0px;
  945. top:0px;
  946. width:33px;
  947. height:22px;
  948. background:inherit;
  949. background-color:rgba(255, 255, 255, 0);
  950. border:none;
  951. border-radius:0px;
  952. -moz-box-shadow:none;
  953. -webkit-box-shadow:none;
  954. box-shadow:none;
  955. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  956. font-weight:400;
  957. font-style:normal;
  958. font-size:16px;
  959. color:#FFFFFF;
  960. }
  961. #u6499 {
  962. border-width:0px;
  963. position:absolute;
  964. left:39px;
  965. top:571px;
  966. width:33px;
  967. height:22px;
  968. display:flex;
  969. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  970. font-weight:400;
  971. font-style:normal;
  972. font-size:16px;
  973. color:#FFFFFF;
  974. }
  975. #u6499 .text {
  976. position:absolute;
  977. align-self:flex-start;
  978. padding:0px 0px 0px 0px;
  979. box-sizing:border-box;
  980. width:100%;
  981. }
  982. #u6499_text {
  983. border-width:0px;
  984. white-space:nowrap;
  985. text-transform:none;
  986. }
  987. #u6500_img {
  988. border-width:0px;
  989. position:absolute;
  990. left:0px;
  991. top:0px;
  992. width:14px;
  993. height:14px;
  994. }
  995. #u6500 {
  996. border-width:0px;
  997. position:absolute;
  998. left:20px;
  999. top:575px;
  1000. width:14px;
  1001. height:14px;
  1002. display:flex;
  1003. }
  1004. #u6500 .text {
  1005. position:absolute;
  1006. align-self:center;
  1007. padding:2px 2px 2px 2px;
  1008. box-sizing:border-box;
  1009. width:100%;
  1010. }
  1011. #u6500_text {
  1012. border-width:0px;
  1013. word-wrap:break-word;
  1014. text-transform:none;
  1015. visibility:hidden;
  1016. }
  1017. #u6501 {
  1018. border-width:0px;
  1019. position:absolute;
  1020. left:0px;
  1021. top:0px;
  1022. width:0px;
  1023. height:0px;
  1024. }
  1025. #u6502_div {
  1026. border-width:0px;
  1027. position:absolute;
  1028. left:0px;
  1029. top:0px;
  1030. width:33px;
  1031. height:22px;
  1032. background:inherit;
  1033. background-color:rgba(255, 255, 255, 0);
  1034. border:none;
  1035. border-radius:0px;
  1036. -moz-box-shadow:none;
  1037. -webkit-box-shadow:none;
  1038. box-shadow:none;
  1039. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1040. font-weight:400;
  1041. font-style:normal;
  1042. font-size:16px;
  1043. color:#FFFFFF;
  1044. }
  1045. #u6502 {
  1046. border-width:0px;
  1047. position:absolute;
  1048. left:39px;
  1049. top:529px;
  1050. width:33px;
  1051. height:22px;
  1052. display:flex;
  1053. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1054. font-weight:400;
  1055. font-style:normal;
  1056. font-size:16px;
  1057. color:#FFFFFF;
  1058. }
  1059. #u6502 .text {
  1060. position:absolute;
  1061. align-self:flex-start;
  1062. padding:0px 0px 0px 0px;
  1063. box-sizing:border-box;
  1064. width:100%;
  1065. }
  1066. #u6502_text {
  1067. border-width:0px;
  1068. white-space:nowrap;
  1069. text-transform:none;
  1070. }
  1071. #u6503_img {
  1072. border-width:0px;
  1073. position:absolute;
  1074. left:0px;
  1075. top:0px;
  1076. width:14px;
  1077. height:14px;
  1078. }
  1079. #u6503 {
  1080. border-width:0px;
  1081. position:absolute;
  1082. left:20px;
  1083. top:533px;
  1084. width:14px;
  1085. height:14px;
  1086. display:flex;
  1087. }
  1088. #u6503 .text {
  1089. position:absolute;
  1090. align-self:center;
  1091. padding:2px 2px 2px 2px;
  1092. box-sizing:border-box;
  1093. width:100%;
  1094. }
  1095. #u6503_text {
  1096. border-width:0px;
  1097. word-wrap:break-word;
  1098. text-transform:none;
  1099. visibility:hidden;
  1100. }
  1101. #u6504_input {
  1102. position:absolute;
  1103. left:0px;
  1104. top:0px;
  1105. width:214px;
  1106. height:27px;
  1107. padding:2px 2px 2px 2px;
  1108. font-family:'ArialMT', 'Arial', sans-serif;
  1109. font-weight:400;
  1110. font-style:normal;
  1111. font-size:14px;
  1112. letter-spacing:normal;
  1113. color:#FFFFFF;
  1114. vertical-align:none;
  1115. text-align:left;
  1116. text-transform:none;
  1117. background-color:transparent;
  1118. border-color:transparent;
  1119. }
  1120. #u6504_input.disabled {
  1121. position:absolute;
  1122. left:0px;
  1123. top:0px;
  1124. width:214px;
  1125. height:27px;
  1126. padding:2px 2px 2px 2px;
  1127. font-family:'ArialMT', 'Arial', sans-serif;
  1128. font-weight:400;
  1129. font-style:normal;
  1130. font-size:14px;
  1131. letter-spacing:normal;
  1132. color:#FFFFFF;
  1133. vertical-align:none;
  1134. text-align:left;
  1135. text-transform:none;
  1136. background-color:transparent;
  1137. border-color:transparent;
  1138. }
  1139. #u6504_div {
  1140. border-width:0px;
  1141. position:absolute;
  1142. left:0px;
  1143. top:0px;
  1144. width:214px;
  1145. height:27px;
  1146. background:inherit;
  1147. background-color:rgba(255, 255, 255, 0);
  1148. border:none;
  1149. border-radius:0px;
  1150. -moz-box-shadow:none;
  1151. -webkit-box-shadow:none;
  1152. box-shadow:none;
  1153. font-size:14px;
  1154. color:#FFFFFF;
  1155. }
  1156. #u6504 {
  1157. border-width:0px;
  1158. position:absolute;
  1159. left:1221px;
  1160. top:10px;
  1161. width:214px;
  1162. height:27px;
  1163. display:flex;
  1164. font-size:14px;
  1165. color:#FFFFFF;
  1166. }
  1167. #u6504 .text {
  1168. position:absolute;
  1169. align-self:flex-start;
  1170. padding:2px 2px 2px 2px;
  1171. box-sizing:border-box;
  1172. width:100%;
  1173. }
  1174. #u6504_div.disabled {
  1175. border-width:0px;
  1176. position:absolute;
  1177. left:0px;
  1178. top:0px;
  1179. width:214px;
  1180. height:27px;
  1181. background:inherit;
  1182. background-color:rgba(240, 240, 240, 1);
  1183. border:none;
  1184. border-radius:0px;
  1185. -moz-box-shadow:none;
  1186. -webkit-box-shadow:none;
  1187. box-shadow:none;
  1188. font-size:14px;
  1189. color:#FFFFFF;
  1190. }
  1191. #u6504.disabled {
  1192. }
  1193. .u6504_input_option {
  1194. font-size:14px;
  1195. }
  1196. #u6505_img {
  1197. border-width:0px;
  1198. position:absolute;
  1199. left:0px;
  1200. top:0px;
  1201. width:22px;
  1202. height:22px;
  1203. }
  1204. #u6505 {
  1205. border-width:0px;
  1206. position:absolute;
  1207. left:1194px;
  1208. top:15px;
  1209. width:22px;
  1210. height:22px;
  1211. display:flex;
  1212. }
  1213. #u6505 .text {
  1214. position:absolute;
  1215. align-self:center;
  1216. padding:2px 2px 2px 2px;
  1217. box-sizing:border-box;
  1218. width:100%;
  1219. }
  1220. #u6505_text {
  1221. border-width:0px;
  1222. word-wrap:break-word;
  1223. text-transform:none;
  1224. visibility:hidden;
  1225. }
  1226. #u6506_div {
  1227. border-width:0px;
  1228. position:absolute;
  1229. left:0px;
  1230. top:0px;
  1231. width:100px;
  1232. height:24px;
  1233. background:inherit;
  1234. background-color:rgba(242, 242, 242, 0.2);
  1235. border:none;
  1236. border-radius:25px;
  1237. -moz-box-shadow:none;
  1238. -webkit-box-shadow:none;
  1239. box-shadow:none;
  1240. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1241. font-weight:400;
  1242. font-style:normal;
  1243. color:#FFFFFF;
  1244. text-align:center;
  1245. }
  1246. #u6506 {
  1247. border-width:0px;
  1248. position:absolute;
  1249. left:1480px;
  1250. top:12px;
  1251. width:100px;
  1252. height:24px;
  1253. display:flex;
  1254. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1255. font-weight:400;
  1256. font-style:normal;
  1257. color:#FFFFFF;
  1258. text-align:center;
  1259. }
  1260. #u6506 .text {
  1261. position:absolute;
  1262. align-self:center;
  1263. padding:0px 0px 0px 0px;
  1264. box-sizing:border-box;
  1265. width:100%;
  1266. }
  1267. #u6506_text {
  1268. border-width:0px;
  1269. word-wrap:break-word;
  1270. text-transform:none;
  1271. }
  1272. #u6507_img {
  1273. border-width:0px;
  1274. position:absolute;
  1275. left:0px;
  1276. top:0px;
  1277. width:2px;
  1278. height:12px;
  1279. }
  1280. #u6507 {
  1281. border-width:0px;
  1282. position:absolute;
  1283. left:1452px;
  1284. top:19px;
  1285. width:1px;
  1286. height:11px;
  1287. display:flex;
  1288. }
  1289. #u6507 .text {
  1290. position:absolute;
  1291. align-self:center;
  1292. padding:2px 2px 2px 2px;
  1293. box-sizing:border-box;
  1294. width:100%;
  1295. }
  1296. #u6507_text {
  1297. border-width:0px;
  1298. word-wrap:break-word;
  1299. text-transform:none;
  1300. visibility:hidden;
  1301. }
  1302. #u6508 {
  1303. border-width:0px;
  1304. position:absolute;
  1305. left:0px;
  1306. top:0px;
  1307. width:0px;
  1308. height:0px;
  1309. }
  1310. #u6509_div {
  1311. border-width:0px;
  1312. position:absolute;
  1313. left:0px;
  1314. top:0px;
  1315. width:33px;
  1316. height:22px;
  1317. background:inherit;
  1318. background-color:rgba(255, 255, 255, 0);
  1319. border:none;
  1320. border-radius:0px;
  1321. -moz-box-shadow:none;
  1322. -webkit-box-shadow:none;
  1323. box-shadow:none;
  1324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1325. font-weight:400;
  1326. font-style:normal;
  1327. font-size:16px;
  1328. color:#FFFFFF;
  1329. }
  1330. #u6509 {
  1331. border-width:0px;
  1332. position:absolute;
  1333. left:39px;
  1334. top:319px;
  1335. width:33px;
  1336. height:22px;
  1337. display:flex;
  1338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1339. font-weight:400;
  1340. font-style:normal;
  1341. font-size:16px;
  1342. color:#FFFFFF;
  1343. }
  1344. #u6509 .text {
  1345. position:absolute;
  1346. align-self:flex-start;
  1347. padding:0px 0px 0px 0px;
  1348. box-sizing:border-box;
  1349. width:100%;
  1350. }
  1351. #u6509_text {
  1352. border-width:0px;
  1353. white-space:nowrap;
  1354. text-transform:none;
  1355. }
  1356. #u6510_img {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:0px;
  1360. top:0px;
  1361. width:14px;
  1362. height:14px;
  1363. }
  1364. #u6510 {
  1365. border-width:0px;
  1366. position:absolute;
  1367. left:20px;
  1368. top:323px;
  1369. width:14px;
  1370. height:14px;
  1371. display:flex;
  1372. }
  1373. #u6510 .text {
  1374. position:absolute;
  1375. align-self:center;
  1376. padding:2px 2px 2px 2px;
  1377. box-sizing:border-box;
  1378. width:100%;
  1379. }
  1380. #u6510_text {
  1381. border-width:0px;
  1382. word-wrap:break-word;
  1383. text-transform:none;
  1384. visibility:hidden;
  1385. }
  1386. #u6511 {
  1387. border-width:0px;
  1388. position:absolute;
  1389. left:0px;
  1390. top:0px;
  1391. width:0px;
  1392. height:0px;
  1393. }
  1394. #u6512_div {
  1395. border-width:0px;
  1396. position:absolute;
  1397. left:0px;
  1398. top:0px;
  1399. width:33px;
  1400. height:22px;
  1401. background:inherit;
  1402. background-color:rgba(255, 255, 255, 0);
  1403. border:none;
  1404. border-radius:0px;
  1405. -moz-box-shadow:none;
  1406. -webkit-box-shadow:none;
  1407. box-shadow:none;
  1408. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1409. font-weight:400;
  1410. font-style:normal;
  1411. font-size:16px;
  1412. color:#FFFFFF;
  1413. }
  1414. #u6512 {
  1415. border-width:0px;
  1416. position:absolute;
  1417. left:39px;
  1418. top:361px;
  1419. width:33px;
  1420. height:22px;
  1421. display:flex;
  1422. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1423. font-weight:400;
  1424. font-style:normal;
  1425. font-size:16px;
  1426. color:#FFFFFF;
  1427. }
  1428. #u6512 .text {
  1429. position:absolute;
  1430. align-self:flex-start;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u6512_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u6513_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:14px;
  1446. height:14px;
  1447. }
  1448. #u6513 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:365px;
  1453. width:14px;
  1454. height:14px;
  1455. display:flex;
  1456. }
  1457. #u6513 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u6513_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u6514 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u6515_div {
  1479. border-width:0px;
  1480. position:absolute;
  1481. left:0px;
  1482. top:0px;
  1483. width:33px;
  1484. height:22px;
  1485. background:inherit;
  1486. background-color:rgba(255, 255, 255, 0);
  1487. border:none;
  1488. border-radius:0px;
  1489. -moz-box-shadow:none;
  1490. -webkit-box-shadow:none;
  1491. box-shadow:none;
  1492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1493. font-weight:400;
  1494. font-style:normal;
  1495. font-size:16px;
  1496. color:#FFFFFF;
  1497. }
  1498. #u6515 {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:39px;
  1502. top:151px;
  1503. width:33px;
  1504. height:22px;
  1505. display:flex;
  1506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1507. font-weight:400;
  1508. font-style:normal;
  1509. font-size:16px;
  1510. color:#FFFFFF;
  1511. }
  1512. #u6515 .text {
  1513. position:absolute;
  1514. align-self:flex-start;
  1515. padding:0px 0px 0px 0px;
  1516. box-sizing:border-box;
  1517. width:100%;
  1518. }
  1519. #u6515_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u6516_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u6516 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:155px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u6516 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u6516_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u6517 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u6518_div {
  1563. border-width:0px;
  1564. position:absolute;
  1565. left:0px;
  1566. top:0px;
  1567. width:33px;
  1568. height:22px;
  1569. background:inherit;
  1570. background-color:rgba(255, 255, 255, 0);
  1571. border:none;
  1572. border-radius:0px;
  1573. -moz-box-shadow:none;
  1574. -webkit-box-shadow:none;
  1575. box-shadow:none;
  1576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1577. font-weight:400;
  1578. font-style:normal;
  1579. font-size:16px;
  1580. color:#FFFFFF;
  1581. }
  1582. #u6518 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:39px;
  1586. top:487px;
  1587. width:33px;
  1588. height:22px;
  1589. display:flex;
  1590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1591. font-weight:400;
  1592. font-style:normal;
  1593. font-size:16px;
  1594. color:#FFFFFF;
  1595. }
  1596. #u6518 .text {
  1597. position:absolute;
  1598. align-self:flex-start;
  1599. padding:0px 0px 0px 0px;
  1600. box-sizing:border-box;
  1601. width:100%;
  1602. }
  1603. #u6518_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u6519_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u6519 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:491px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u6519 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u6519_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u6520 {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:0px;
  1644. height:0px;
  1645. }
  1646. #u6521_div {
  1647. border-width:0px;
  1648. position:absolute;
  1649. left:0px;
  1650. top:0px;
  1651. width:33px;
  1652. height:22px;
  1653. background:inherit;
  1654. background-color:rgba(255, 255, 255, 0);
  1655. border:none;
  1656. border-radius:0px;
  1657. -moz-box-shadow:none;
  1658. -webkit-box-shadow:none;
  1659. box-shadow:none;
  1660. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1661. font-weight:400;
  1662. font-style:normal;
  1663. font-size:16px;
  1664. color:#FFFFFF;
  1665. }
  1666. #u6521 {
  1667. border-width:0px;
  1668. position:absolute;
  1669. left:39px;
  1670. top:193px;
  1671. width:33px;
  1672. height:22px;
  1673. display:flex;
  1674. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1675. font-weight:400;
  1676. font-style:normal;
  1677. font-size:16px;
  1678. color:#FFFFFF;
  1679. }
  1680. #u6521 .text {
  1681. position:absolute;
  1682. align-self:flex-start;
  1683. padding:0px 0px 0px 0px;
  1684. box-sizing:border-box;
  1685. width:100%;
  1686. }
  1687. #u6521_text {
  1688. border-width:0px;
  1689. white-space:nowrap;
  1690. text-transform:none;
  1691. }
  1692. #u6522_img {
  1693. border-width:0px;
  1694. position:absolute;
  1695. left:0px;
  1696. top:0px;
  1697. width:14px;
  1698. height:14px;
  1699. }
  1700. #u6522 {
  1701. border-width:0px;
  1702. position:absolute;
  1703. left:20px;
  1704. top:197px;
  1705. width:14px;
  1706. height:14px;
  1707. display:flex;
  1708. }
  1709. #u6522 .text {
  1710. position:absolute;
  1711. align-self:center;
  1712. padding:2px 2px 2px 2px;
  1713. box-sizing:border-box;
  1714. width:100%;
  1715. }
  1716. #u6522_text {
  1717. border-width:0px;
  1718. word-wrap:break-word;
  1719. text-transform:none;
  1720. visibility:hidden;
  1721. }
  1722. #u6523_div {
  1723. border-width:0px;
  1724. position:absolute;
  1725. left:0px;
  1726. top:0px;
  1727. width:1255px;
  1728. height:100px;
  1729. background:inherit;
  1730. background-color:rgba(255, 255, 255, 1);
  1731. border:none;
  1732. border-radius:0px;
  1733. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1734. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1735. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1736. }
  1737. #u6523 {
  1738. border-width:0px;
  1739. position:absolute;
  1740. left:332px;
  1741. top:50px;
  1742. width:1255px;
  1743. height:100px;
  1744. display:flex;
  1745. }
  1746. #u6523 .text {
  1747. position:absolute;
  1748. align-self:center;
  1749. padding:2px 2px 2px 2px;
  1750. box-sizing:border-box;
  1751. width:100%;
  1752. }
  1753. #u6523_text {
  1754. border-width:0px;
  1755. word-wrap:break-word;
  1756. text-transform:none;
  1757. visibility:hidden;
  1758. }
  1759. #u6524 {
  1760. border-width:0px;
  1761. position:absolute;
  1762. left:0px;
  1763. top:0px;
  1764. width:0px;
  1765. height:0px;
  1766. }
  1767. #u6525_div {
  1768. border-width:0px;
  1769. position:absolute;
  1770. left:0px;
  1771. top:0px;
  1772. width:200px;
  1773. height:1192px;
  1774. background:inherit;
  1775. background-color:rgba(255, 255, 255, 1);
  1776. border:none;
  1777. border-radius:0px;
  1778. -moz-box-shadow:none;
  1779. -webkit-box-shadow:none;
  1780. box-shadow:none;
  1781. }
  1782. #u6525 {
  1783. border-width:0px;
  1784. position:absolute;
  1785. left:120px;
  1786. top:50px;
  1787. width:200px;
  1788. height:1192px;
  1789. display:flex;
  1790. }
  1791. #u6525 .text {
  1792. position:absolute;
  1793. align-self:center;
  1794. padding:2px 2px 2px 2px;
  1795. box-sizing:border-box;
  1796. width:100%;
  1797. }
  1798. #u6525_text {
  1799. border-width:0px;
  1800. word-wrap:break-word;
  1801. text-transform:none;
  1802. visibility:hidden;
  1803. }
  1804. #u6526_div {
  1805. border-width:0px;
  1806. position:absolute;
  1807. left:0px;
  1808. top:0px;
  1809. width:200px;
  1810. height:60px;
  1811. background:inherit;
  1812. background-color:rgba(224, 231, 247, 1);
  1813. border:none;
  1814. border-radius:0px;
  1815. -moz-box-shadow:none;
  1816. -webkit-box-shadow:none;
  1817. box-shadow:none;
  1818. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1819. font-weight:500;
  1820. font-style:normal;
  1821. font-size:18px;
  1822. }
  1823. #u6526 {
  1824. border-width:0px;
  1825. position:absolute;
  1826. left:120px;
  1827. top:50px;
  1828. width:200px;
  1829. height:60px;
  1830. display:flex;
  1831. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1832. font-weight:500;
  1833. font-style:normal;
  1834. font-size:18px;
  1835. }
  1836. #u6526 .text {
  1837. position:absolute;
  1838. align-self:center;
  1839. padding:0px 0px 0px 20px;
  1840. box-sizing:border-box;
  1841. width:100%;
  1842. }
  1843. #u6526_text {
  1844. border-width:0px;
  1845. word-wrap:break-word;
  1846. text-transform:none;
  1847. }
  1848. #u6527_div {
  1849. border-width:0px;
  1850. position:absolute;
  1851. left:0px;
  1852. top:0px;
  1853. width:65px;
  1854. height:22px;
  1855. background:inherit;
  1856. background-color:rgba(255, 255, 255, 0);
  1857. border:none;
  1858. border-radius:0px;
  1859. -moz-box-shadow:none;
  1860. -webkit-box-shadow:none;
  1861. box-shadow:none;
  1862. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1863. font-weight:400;
  1864. font-style:normal;
  1865. font-size:16px;
  1866. }
  1867. #u6527 {
  1868. border-width:0px;
  1869. position:absolute;
  1870. left:147px;
  1871. top:166px;
  1872. width:65px;
  1873. height:22px;
  1874. display:flex;
  1875. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1876. font-weight:400;
  1877. font-style:normal;
  1878. font-size:16px;
  1879. }
  1880. #u6527 .text {
  1881. position:absolute;
  1882. align-self:flex-start;
  1883. padding:0px 0px 0px 0px;
  1884. box-sizing:border-box;
  1885. width:100%;
  1886. }
  1887. #u6527_text {
  1888. border-width:0px;
  1889. white-space:nowrap;
  1890. text-transform:none;
  1891. }
  1892. #u6528_div {
  1893. border-width:0px;
  1894. position:absolute;
  1895. left:0px;
  1896. top:0px;
  1897. width:65px;
  1898. height:22px;
  1899. background:inherit;
  1900. background-color:rgba(255, 255, 255, 0);
  1901. border:none;
  1902. border-radius:0px;
  1903. -moz-box-shadow:none;
  1904. -webkit-box-shadow:none;
  1905. box-shadow:none;
  1906. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1907. font-weight:400;
  1908. font-style:normal;
  1909. font-size:16px;
  1910. }
  1911. #u6528 {
  1912. border-width:0px;
  1913. position:absolute;
  1914. left:147px;
  1915. top:357px;
  1916. width:65px;
  1917. height:22px;
  1918. display:flex;
  1919. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1920. font-weight:400;
  1921. font-style:normal;
  1922. font-size:16px;
  1923. }
  1924. #u6528 .text {
  1925. position:absolute;
  1926. align-self:flex-start;
  1927. padding:0px 0px 0px 0px;
  1928. box-sizing:border-box;
  1929. width:100%;
  1930. }
  1931. #u6528_text {
  1932. border-width:0px;
  1933. white-space:nowrap;
  1934. text-transform:none;
  1935. }
  1936. #u6529_div {
  1937. border-width:0px;
  1938. position:absolute;
  1939. left:0px;
  1940. top:0px;
  1941. width:49px;
  1942. height:17px;
  1943. background:inherit;
  1944. background-color:rgba(255, 255, 255, 0);
  1945. border:none;
  1946. border-radius:0px;
  1947. -moz-box-shadow:none;
  1948. -webkit-box-shadow:none;
  1949. box-shadow:none;
  1950. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1951. font-weight:400;
  1952. font-style:normal;
  1953. font-size:12px;
  1954. color:#AAAAAA;
  1955. }
  1956. #u6529 {
  1957. border-width:0px;
  1958. position:absolute;
  1959. left:147px;
  1960. top:130px;
  1961. width:49px;
  1962. height:17px;
  1963. display:flex;
  1964. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1965. font-weight:400;
  1966. font-style:normal;
  1967. font-size:12px;
  1968. color:#AAAAAA;
  1969. }
  1970. #u6529 .text {
  1971. position:absolute;
  1972. align-self:flex-start;
  1973. padding:0px 0px 0px 0px;
  1974. box-sizing:border-box;
  1975. width:100%;
  1976. }
  1977. #u6529_text {
  1978. border-width:0px;
  1979. white-space:nowrap;
  1980. text-transform:none;
  1981. }
  1982. #u6530_img {
  1983. border-width:0px;
  1984. position:absolute;
  1985. left:0px;
  1986. top:0px;
  1987. width:201px;
  1988. height:2px;
  1989. }
  1990. #u6530 {
  1991. border-width:0px;
  1992. position:absolute;
  1993. left:120px;
  1994. top:294px;
  1995. width:200px;
  1996. height:1px;
  1997. display:flex;
  1998. }
  1999. #u6530 .text {
  2000. position:absolute;
  2001. align-self:center;
  2002. padding:2px 2px 2px 2px;
  2003. box-sizing:border-box;
  2004. width:100%;
  2005. }
  2006. #u6530_text {
  2007. border-width:0px;
  2008. word-wrap:break-word;
  2009. text-transform:none;
  2010. visibility:hidden;
  2011. }
  2012. #u6531_div {
  2013. border-width:0px;
  2014. position:absolute;
  2015. left:0px;
  2016. top:0px;
  2017. width:49px;
  2018. height:17px;
  2019. background:inherit;
  2020. background-color:rgba(255, 255, 255, 0);
  2021. border:none;
  2022. border-radius:0px;
  2023. -moz-box-shadow:none;
  2024. -webkit-box-shadow:none;
  2025. box-shadow:none;
  2026. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2027. font-weight:400;
  2028. font-style:normal;
  2029. font-size:12px;
  2030. color:#AAAAAA;
  2031. }
  2032. #u6531 {
  2033. border-width:0px;
  2034. position:absolute;
  2035. left:147px;
  2036. top:320px;
  2037. width:49px;
  2038. height:17px;
  2039. display:flex;
  2040. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2041. font-weight:400;
  2042. font-style:normal;
  2043. font-size:12px;
  2044. color:#AAAAAA;
  2045. }
  2046. #u6531 .text {
  2047. position:absolute;
  2048. align-self:flex-start;
  2049. padding:0px 0px 0px 0px;
  2050. box-sizing:border-box;
  2051. width:100%;
  2052. }
  2053. #u6531_text {
  2054. border-width:0px;
  2055. white-space:nowrap;
  2056. text-transform:none;
  2057. }
  2058. #u6532_div {
  2059. border-width:0px;
  2060. position:absolute;
  2061. left:0px;
  2062. top:0px;
  2063. width:65px;
  2064. height:22px;
  2065. background:inherit;
  2066. background-color:rgba(255, 255, 255, 0);
  2067. border:none;
  2068. border-radius:0px;
  2069. -moz-box-shadow:none;
  2070. -webkit-box-shadow:none;
  2071. box-shadow:none;
  2072. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2073. font-weight:400;
  2074. font-style:normal;
  2075. font-size:16px;
  2076. }
  2077. #u6532 {
  2078. border-width:0px;
  2079. position:absolute;
  2080. left:147px;
  2081. top:208px;
  2082. width:65px;
  2083. height:22px;
  2084. display:flex;
  2085. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2086. font-weight:400;
  2087. font-style:normal;
  2088. font-size:16px;
  2089. }
  2090. #u6532 .text {
  2091. position:absolute;
  2092. align-self:flex-start;
  2093. padding:0px 0px 0px 0px;
  2094. box-sizing:border-box;
  2095. width:100%;
  2096. }
  2097. #u6532_text {
  2098. border-width:0px;
  2099. white-space:nowrap;
  2100. text-transform:none;
  2101. }
  2102. #u6533_div {
  2103. border-width:0px;
  2104. position:absolute;
  2105. left:0px;
  2106. top:0px;
  2107. width:65px;
  2108. height:22px;
  2109. background:inherit;
  2110. background-color:rgba(255, 255, 255, 0);
  2111. border:none;
  2112. border-radius:0px;
  2113. -moz-box-shadow:none;
  2114. -webkit-box-shadow:none;
  2115. box-shadow:none;
  2116. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2117. font-weight:400;
  2118. font-style:normal;
  2119. font-size:16px;
  2120. }
  2121. #u6533 {
  2122. border-width:0px;
  2123. position:absolute;
  2124. left:147px;
  2125. top:250px;
  2126. width:65px;
  2127. height:22px;
  2128. display:flex;
  2129. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2130. font-weight:400;
  2131. font-style:normal;
  2132. font-size:16px;
  2133. }
  2134. #u6533 .text {
  2135. position:absolute;
  2136. align-self:flex-start;
  2137. padding:0px 0px 0px 0px;
  2138. box-sizing:border-box;
  2139. width:100%;
  2140. }
  2141. #u6533_text {
  2142. border-width:0px;
  2143. white-space:nowrap;
  2144. text-transform:none;
  2145. }
  2146. #u6534_div {
  2147. border-width:0px;
  2148. position:absolute;
  2149. left:0px;
  2150. top:0px;
  2151. width:65px;
  2152. height:22px;
  2153. background:inherit;
  2154. background-color:rgba(255, 255, 255, 0);
  2155. border:none;
  2156. border-radius:0px;
  2157. -moz-box-shadow:none;
  2158. -webkit-box-shadow:none;
  2159. box-shadow:none;
  2160. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2161. font-weight:400;
  2162. font-style:normal;
  2163. font-size:16px;
  2164. }
  2165. #u6534 {
  2166. border-width:0px;
  2167. position:absolute;
  2168. left:147px;
  2169. top:399px;
  2170. width:65px;
  2171. height:22px;
  2172. display:flex;
  2173. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2174. font-weight:400;
  2175. font-style:normal;
  2176. font-size:16px;
  2177. }
  2178. #u6534 .text {
  2179. position:absolute;
  2180. align-self:flex-start;
  2181. padding:0px 0px 0px 0px;
  2182. box-sizing:border-box;
  2183. width:100%;
  2184. }
  2185. #u6534_text {
  2186. border-width:0px;
  2187. white-space:nowrap;
  2188. text-transform:none;
  2189. }
  2190. #u6535_div {
  2191. border-width:0px;
  2192. position:absolute;
  2193. left:0px;
  2194. top:0px;
  2195. width:73px;
  2196. height:50px;
  2197. background:inherit;
  2198. background-color:rgba(255, 255, 255, 0);
  2199. border:none;
  2200. border-left:0px;
  2201. border-top:0px;
  2202. border-right:0px;
  2203. border-radius:0px;
  2204. border-bottom-right-radius:0px;
  2205. border-bottom-left-radius:0px;
  2206. -moz-box-shadow:none;
  2207. -webkit-box-shadow:none;
  2208. box-shadow:none;
  2209. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2210. font-weight:500;
  2211. font-style:normal;
  2212. font-size:18px;
  2213. }
  2214. #u6535 {
  2215. border-width:0px;
  2216. position:absolute;
  2217. left:352px;
  2218. top:50px;
  2219. width:73px;
  2220. height:50px;
  2221. display:flex;
  2222. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2223. font-weight:500;
  2224. font-style:normal;
  2225. font-size:18px;
  2226. }
  2227. #u6535 .text {
  2228. position:absolute;
  2229. align-self:center;
  2230. padding:0px 0px 0px 0px;
  2231. box-sizing:border-box;
  2232. width:100%;
  2233. }
  2234. #u6535_text {
  2235. border-width:0px;
  2236. white-space:nowrap;
  2237. text-transform:none;
  2238. }
  2239. #u6536_div {
  2240. border-width:0px;
  2241. position:absolute;
  2242. left:0px;
  2243. top:0px;
  2244. width:1255px;
  2245. height:1082px;
  2246. background:inherit;
  2247. background-color:rgba(255, 255, 255, 1);
  2248. border:none;
  2249. border-radius:0px;
  2250. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  2251. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  2252. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  2253. }
  2254. #u6536 {
  2255. border-width:0px;
  2256. position:absolute;
  2257. left:332px;
  2258. top:160px;
  2259. width:1255px;
  2260. height:1082px;
  2261. display:flex;
  2262. }
  2263. #u6536 .text {
  2264. position:absolute;
  2265. align-self:center;
  2266. padding:2px 2px 2px 2px;
  2267. box-sizing:border-box;
  2268. width:100%;
  2269. }
  2270. #u6536_text {
  2271. border-width:0px;
  2272. word-wrap:break-word;
  2273. text-transform:none;
  2274. visibility:hidden;
  2275. }
  2276. #u6537 {
  2277. border-width:0px;
  2278. position:absolute;
  2279. left:352px;
  2280. top:251px;
  2281. width:1215px;
  2282. height:283px;
  2283. }
  2284. #u6538_img {
  2285. border-width:0px;
  2286. position:absolute;
  2287. left:0px;
  2288. top:0px;
  2289. width:49px;
  2290. height:38px;
  2291. }
  2292. #u6538 {
  2293. border-width:0px;
  2294. position:absolute;
  2295. left:0px;
  2296. top:0px;
  2297. width:49px;
  2298. height:38px;
  2299. display:flex;
  2300. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2301. font-weight:400;
  2302. font-style:normal;
  2303. font-size:12px;
  2304. color:#FFFFFF;
  2305. }
  2306. #u6538 .text {
  2307. position:absolute;
  2308. align-self:center;
  2309. padding:2px 2px 2px 0px;
  2310. box-sizing:border-box;
  2311. width:100%;
  2312. }
  2313. #u6538_text {
  2314. border-width:0px;
  2315. word-wrap:break-word;
  2316. text-transform:none;
  2317. }
  2318. #u6539_img {
  2319. border-width:0px;
  2320. position:absolute;
  2321. left:0px;
  2322. top:0px;
  2323. width:98px;
  2324. height:38px;
  2325. }
  2326. #u6539 {
  2327. border-width:0px;
  2328. position:absolute;
  2329. left:49px;
  2330. top:0px;
  2331. width:98px;
  2332. height:38px;
  2333. display:flex;
  2334. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2335. font-weight:400;
  2336. font-style:normal;
  2337. font-size:12px;
  2338. color:#FFFFFF;
  2339. }
  2340. #u6539 .text {
  2341. position:absolute;
  2342. align-self:center;
  2343. padding:2px 2px 2px 0px;
  2344. box-sizing:border-box;
  2345. width:100%;
  2346. }
  2347. #u6539_text {
  2348. border-width:0px;
  2349. word-wrap:break-word;
  2350. text-transform:none;
  2351. }
  2352. #u6540_img {
  2353. border-width:0px;
  2354. position:absolute;
  2355. left:0px;
  2356. top:0px;
  2357. width:110px;
  2358. height:38px;
  2359. }
  2360. #u6540 {
  2361. border-width:0px;
  2362. position:absolute;
  2363. left:147px;
  2364. top:0px;
  2365. width:110px;
  2366. height:38px;
  2367. display:flex;
  2368. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2369. font-weight:400;
  2370. font-style:normal;
  2371. font-size:12px;
  2372. color:#FFFFFF;
  2373. }
  2374. #u6540 .text {
  2375. position:absolute;
  2376. align-self:center;
  2377. padding:2px 2px 2px 0px;
  2378. box-sizing:border-box;
  2379. width:100%;
  2380. }
  2381. #u6540_text {
  2382. border-width:0px;
  2383. word-wrap:break-word;
  2384. text-transform:none;
  2385. }
  2386. #u6541_img {
  2387. border-width:0px;
  2388. position:absolute;
  2389. left:0px;
  2390. top:0px;
  2391. width:115px;
  2392. height:38px;
  2393. }
  2394. #u6541 {
  2395. border-width:0px;
  2396. position:absolute;
  2397. left:257px;
  2398. top:0px;
  2399. width:115px;
  2400. height:38px;
  2401. display:flex;
  2402. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2403. font-weight:400;
  2404. font-style:normal;
  2405. font-size:12px;
  2406. color:#FFFFFF;
  2407. }
  2408. #u6541 .text {
  2409. position:absolute;
  2410. align-self:center;
  2411. padding:2px 2px 2px 0px;
  2412. box-sizing:border-box;
  2413. width:100%;
  2414. }
  2415. #u6541_text {
  2416. border-width:0px;
  2417. word-wrap:break-word;
  2418. text-transform:none;
  2419. }
  2420. #u6542_img {
  2421. border-width:0px;
  2422. position:absolute;
  2423. left:0px;
  2424. top:0px;
  2425. width:115px;
  2426. height:38px;
  2427. }
  2428. #u6542 {
  2429. border-width:0px;
  2430. position:absolute;
  2431. left:372px;
  2432. top:0px;
  2433. width:115px;
  2434. height:38px;
  2435. display:flex;
  2436. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2437. font-weight:400;
  2438. font-style:normal;
  2439. font-size:12px;
  2440. color:#FFFFFF;
  2441. }
  2442. #u6542 .text {
  2443. position:absolute;
  2444. align-self:center;
  2445. padding:2px 2px 2px 0px;
  2446. box-sizing:border-box;
  2447. width:100%;
  2448. }
  2449. #u6542_text {
  2450. border-width:0px;
  2451. word-wrap:break-word;
  2452. text-transform:none;
  2453. }
  2454. #u6543_img {
  2455. border-width:0px;
  2456. position:absolute;
  2457. left:0px;
  2458. top:0px;
  2459. width:98px;
  2460. height:38px;
  2461. }
  2462. #u6543 {
  2463. border-width:0px;
  2464. position:absolute;
  2465. left:487px;
  2466. top:0px;
  2467. width:98px;
  2468. height:38px;
  2469. display:flex;
  2470. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2471. font-weight:400;
  2472. font-style:normal;
  2473. font-size:12px;
  2474. color:#FFFFFF;
  2475. }
  2476. #u6543 .text {
  2477. position:absolute;
  2478. align-self:center;
  2479. padding:2px 2px 2px 0px;
  2480. box-sizing:border-box;
  2481. width:100%;
  2482. }
  2483. #u6543_text {
  2484. border-width:0px;
  2485. word-wrap:break-word;
  2486. text-transform:none;
  2487. }
  2488. #u6544_img {
  2489. border-width:0px;
  2490. position:absolute;
  2491. left:0px;
  2492. top:0px;
  2493. width:116px;
  2494. height:38px;
  2495. }
  2496. #u6544 {
  2497. border-width:0px;
  2498. position:absolute;
  2499. left:585px;
  2500. top:0px;
  2501. width:116px;
  2502. height:38px;
  2503. display:flex;
  2504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2505. font-weight:400;
  2506. font-style:normal;
  2507. font-size:12px;
  2508. color:#FFFFFF;
  2509. }
  2510. #u6544 .text {
  2511. position:absolute;
  2512. align-self:center;
  2513. padding:2px 2px 2px 0px;
  2514. box-sizing:border-box;
  2515. width:100%;
  2516. }
  2517. #u6544_text {
  2518. border-width:0px;
  2519. word-wrap:break-word;
  2520. text-transform:none;
  2521. }
  2522. #u6545_img {
  2523. border-width:0px;
  2524. position:absolute;
  2525. left:0px;
  2526. top:0px;
  2527. width:115px;
  2528. height:38px;
  2529. }
  2530. #u6545 {
  2531. border-width:0px;
  2532. position:absolute;
  2533. left:701px;
  2534. top:0px;
  2535. width:115px;
  2536. height:38px;
  2537. display:flex;
  2538. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2539. font-weight:400;
  2540. font-style:normal;
  2541. font-size:12px;
  2542. color:#FFFFFF;
  2543. }
  2544. #u6545 .text {
  2545. position:absolute;
  2546. align-self:center;
  2547. padding:2px 2px 2px 0px;
  2548. box-sizing:border-box;
  2549. width:100%;
  2550. }
  2551. #u6545_text {
  2552. border-width:0px;
  2553. word-wrap:break-word;
  2554. text-transform:none;
  2555. }
  2556. #u6546_img {
  2557. border-width:0px;
  2558. position:absolute;
  2559. left:0px;
  2560. top:0px;
  2561. width:127px;
  2562. height:38px;
  2563. }
  2564. #u6546 {
  2565. border-width:0px;
  2566. position:absolute;
  2567. left:816px;
  2568. top:0px;
  2569. width:127px;
  2570. height:38px;
  2571. display:flex;
  2572. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2573. font-weight:400;
  2574. font-style:normal;
  2575. font-size:12px;
  2576. color:#FFFFFF;
  2577. }
  2578. #u6546 .text {
  2579. position:absolute;
  2580. align-self:center;
  2581. padding:2px 2px 2px 0px;
  2582. box-sizing:border-box;
  2583. width:100%;
  2584. }
  2585. #u6546_text {
  2586. border-width:0px;
  2587. word-wrap:break-word;
  2588. text-transform:none;
  2589. }
  2590. #u6547_img {
  2591. border-width:0px;
  2592. position:absolute;
  2593. left:0px;
  2594. top:0px;
  2595. width:123px;
  2596. height:38px;
  2597. }
  2598. #u6547 {
  2599. border-width:0px;
  2600. position:absolute;
  2601. left:943px;
  2602. top:0px;
  2603. width:123px;
  2604. height:38px;
  2605. display:flex;
  2606. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2607. font-weight:400;
  2608. font-style:normal;
  2609. font-size:12px;
  2610. color:#FFFFFF;
  2611. }
  2612. #u6547 .text {
  2613. position:absolute;
  2614. align-self:center;
  2615. padding:2px 2px 2px 0px;
  2616. box-sizing:border-box;
  2617. width:100%;
  2618. }
  2619. #u6547_text {
  2620. border-width:0px;
  2621. word-wrap:break-word;
  2622. text-transform:none;
  2623. }
  2624. #u6548_img {
  2625. border-width:0px;
  2626. position:absolute;
  2627. left:0px;
  2628. top:0px;
  2629. width:149px;
  2630. height:38px;
  2631. }
  2632. #u6548 {
  2633. border-width:0px;
  2634. position:absolute;
  2635. left:1066px;
  2636. top:0px;
  2637. width:149px;
  2638. height:38px;
  2639. display:flex;
  2640. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2641. font-weight:400;
  2642. font-style:normal;
  2643. font-size:12px;
  2644. color:#FFFFFF;
  2645. }
  2646. #u6548 .text {
  2647. position:absolute;
  2648. align-self:center;
  2649. padding:2px 2px 2px 0px;
  2650. box-sizing:border-box;
  2651. width:100%;
  2652. }
  2653. #u6548_text {
  2654. border-width:0px;
  2655. word-wrap:break-word;
  2656. text-transform:none;
  2657. }
  2658. #u6549_img {
  2659. border-width:0px;
  2660. position:absolute;
  2661. left:0px;
  2662. top:0px;
  2663. width:49px;
  2664. height:38px;
  2665. }
  2666. #u6549 {
  2667. border-width:0px;
  2668. position:absolute;
  2669. left:0px;
  2670. top:38px;
  2671. width:49px;
  2672. height:38px;
  2673. display:flex;
  2674. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2675. font-weight:400;
  2676. font-style:normal;
  2677. font-size:12px;
  2678. }
  2679. #u6549 .text {
  2680. position:absolute;
  2681. align-self:center;
  2682. padding:2px 2px 2px 0px;
  2683. box-sizing:border-box;
  2684. width:100%;
  2685. }
  2686. #u6549_text {
  2687. border-width:0px;
  2688. word-wrap:break-word;
  2689. text-transform:none;
  2690. }
  2691. #u6550_img {
  2692. border-width:0px;
  2693. position:absolute;
  2694. left:0px;
  2695. top:0px;
  2696. width:98px;
  2697. height:38px;
  2698. }
  2699. #u6550 {
  2700. border-width:0px;
  2701. position:absolute;
  2702. left:49px;
  2703. top:38px;
  2704. width:98px;
  2705. height:38px;
  2706. display:flex;
  2707. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2708. font-weight:400;
  2709. font-style:normal;
  2710. font-size:12px;
  2711. color:#333333;
  2712. }
  2713. #u6550 .text {
  2714. position:absolute;
  2715. align-self:center;
  2716. padding:2px 2px 2px 0px;
  2717. box-sizing:border-box;
  2718. width:100%;
  2719. }
  2720. #u6550_text {
  2721. border-width:0px;
  2722. word-wrap:break-word;
  2723. text-transform:none;
  2724. visibility:hidden;
  2725. }
  2726. #u6551_img {
  2727. border-width:0px;
  2728. position:absolute;
  2729. left:0px;
  2730. top:0px;
  2731. width:110px;
  2732. height:38px;
  2733. }
  2734. #u6551 {
  2735. border-width:0px;
  2736. position:absolute;
  2737. left:147px;
  2738. top:38px;
  2739. width:110px;
  2740. height:38px;
  2741. display:flex;
  2742. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2743. font-weight:400;
  2744. font-style:normal;
  2745. font-size:12px;
  2746. color:#333333;
  2747. }
  2748. #u6551 .text {
  2749. position:absolute;
  2750. align-self:center;
  2751. padding:2px 2px 2px 0px;
  2752. box-sizing:border-box;
  2753. width:100%;
  2754. }
  2755. #u6551_text {
  2756. border-width:0px;
  2757. word-wrap:break-word;
  2758. text-transform:none;
  2759. }
  2760. #u6552_img {
  2761. border-width:0px;
  2762. position:absolute;
  2763. left:0px;
  2764. top:0px;
  2765. width:115px;
  2766. height:38px;
  2767. }
  2768. #u6552 {
  2769. border-width:0px;
  2770. position:absolute;
  2771. left:257px;
  2772. top:38px;
  2773. width:115px;
  2774. height:38px;
  2775. display:flex;
  2776. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2777. font-weight:400;
  2778. font-style:normal;
  2779. font-size:12px;
  2780. color:#333333;
  2781. }
  2782. #u6552 .text {
  2783. position:absolute;
  2784. align-self:center;
  2785. padding:2px 2px 2px 0px;
  2786. box-sizing:border-box;
  2787. width:100%;
  2788. }
  2789. #u6552_text {
  2790. border-width:0px;
  2791. word-wrap:break-word;
  2792. text-transform:none;
  2793. visibility:hidden;
  2794. }
  2795. #u6553_img {
  2796. border-width:0px;
  2797. position:absolute;
  2798. left:0px;
  2799. top:0px;
  2800. width:115px;
  2801. height:38px;
  2802. }
  2803. #u6553 {
  2804. border-width:0px;
  2805. position:absolute;
  2806. left:372px;
  2807. top:38px;
  2808. width:115px;
  2809. height:38px;
  2810. display:flex;
  2811. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2812. font-weight:400;
  2813. font-style:normal;
  2814. font-size:12px;
  2815. color:#333333;
  2816. }
  2817. #u6553 .text {
  2818. position:absolute;
  2819. align-self:center;
  2820. padding:2px 2px 2px 0px;
  2821. box-sizing:border-box;
  2822. width:100%;
  2823. }
  2824. #u6553_text {
  2825. border-width:0px;
  2826. word-wrap:break-word;
  2827. text-transform:none;
  2828. visibility:hidden;
  2829. }
  2830. #u6554_img {
  2831. border-width:0px;
  2832. position:absolute;
  2833. left:0px;
  2834. top:0px;
  2835. width:98px;
  2836. height:38px;
  2837. }
  2838. #u6554 {
  2839. border-width:0px;
  2840. position:absolute;
  2841. left:487px;
  2842. top:38px;
  2843. width:98px;
  2844. height:38px;
  2845. display:flex;
  2846. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2847. font-weight:400;
  2848. font-style:normal;
  2849. font-size:12px;
  2850. color:#333333;
  2851. }
  2852. #u6554 .text {
  2853. position:absolute;
  2854. align-self:center;
  2855. padding:2px 2px 2px 0px;
  2856. box-sizing:border-box;
  2857. width:100%;
  2858. }
  2859. #u6554_text {
  2860. border-width:0px;
  2861. word-wrap:break-word;
  2862. text-transform:none;
  2863. }
  2864. #u6555_img {
  2865. border-width:0px;
  2866. position:absolute;
  2867. left:0px;
  2868. top:0px;
  2869. width:116px;
  2870. height:38px;
  2871. }
  2872. #u6555 {
  2873. border-width:0px;
  2874. position:absolute;
  2875. left:585px;
  2876. top:38px;
  2877. width:116px;
  2878. height:38px;
  2879. display:flex;
  2880. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2881. font-weight:400;
  2882. font-style:normal;
  2883. font-size:12px;
  2884. color:#333333;
  2885. }
  2886. #u6555 .text {
  2887. position:absolute;
  2888. align-self:center;
  2889. padding:2px 2px 2px 0px;
  2890. box-sizing:border-box;
  2891. width:100%;
  2892. }
  2893. #u6555_text {
  2894. border-width:0px;
  2895. word-wrap:break-word;
  2896. text-transform:none;
  2897. visibility:hidden;
  2898. }
  2899. #u6556_img {
  2900. border-width:0px;
  2901. position:absolute;
  2902. left:0px;
  2903. top:0px;
  2904. width:115px;
  2905. height:38px;
  2906. }
  2907. #u6556 {
  2908. border-width:0px;
  2909. position:absolute;
  2910. left:701px;
  2911. top:38px;
  2912. width:115px;
  2913. height:38px;
  2914. display:flex;
  2915. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2916. font-weight:400;
  2917. font-style:normal;
  2918. font-size:12px;
  2919. color:#333333;
  2920. }
  2921. #u6556 .text {
  2922. position:absolute;
  2923. align-self:center;
  2924. padding:2px 2px 2px 0px;
  2925. box-sizing:border-box;
  2926. width:100%;
  2927. }
  2928. #u6556_text {
  2929. border-width:0px;
  2930. word-wrap:break-word;
  2931. text-transform:none;
  2932. visibility:hidden;
  2933. }
  2934. #u6557_img {
  2935. border-width:0px;
  2936. position:absolute;
  2937. left:0px;
  2938. top:0px;
  2939. width:127px;
  2940. height:38px;
  2941. }
  2942. #u6557 {
  2943. border-width:0px;
  2944. position:absolute;
  2945. left:816px;
  2946. top:38px;
  2947. width:127px;
  2948. height:38px;
  2949. display:flex;
  2950. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2951. font-weight:400;
  2952. font-style:normal;
  2953. font-size:12px;
  2954. color:#333333;
  2955. }
  2956. #u6557 .text {
  2957. position:absolute;
  2958. align-self:center;
  2959. padding:2px 2px 2px 0px;
  2960. box-sizing:border-box;
  2961. width:100%;
  2962. }
  2963. #u6557_text {
  2964. border-width:0px;
  2965. word-wrap:break-word;
  2966. text-transform:none;
  2967. visibility:hidden;
  2968. }
  2969. #u6558_img {
  2970. border-width:0px;
  2971. position:absolute;
  2972. left:0px;
  2973. top:0px;
  2974. width:123px;
  2975. height:38px;
  2976. }
  2977. #u6558 {
  2978. border-width:0px;
  2979. position:absolute;
  2980. left:943px;
  2981. top:38px;
  2982. width:123px;
  2983. height:38px;
  2984. display:flex;
  2985. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2986. font-weight:400;
  2987. font-style:normal;
  2988. font-size:12px;
  2989. color:#333333;
  2990. }
  2991. #u6558 .text {
  2992. position:absolute;
  2993. align-self:center;
  2994. padding:2px 2px 2px 0px;
  2995. box-sizing:border-box;
  2996. width:100%;
  2997. }
  2998. #u6558_text {
  2999. border-width:0px;
  3000. word-wrap:break-word;
  3001. text-transform:none;
  3002. visibility:hidden;
  3003. }
  3004. #u6559_img {
  3005. border-width:0px;
  3006. position:absolute;
  3007. left:0px;
  3008. top:0px;
  3009. width:149px;
  3010. height:38px;
  3011. }
  3012. #u6559 {
  3013. border-width:0px;
  3014. position:absolute;
  3015. left:1066px;
  3016. top:38px;
  3017. width:149px;
  3018. height:38px;
  3019. display:flex;
  3020. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3021. font-weight:400;
  3022. font-style:normal;
  3023. font-size:12px;
  3024. color:#1890FF;
  3025. }
  3026. #u6559 .text {
  3027. position:absolute;
  3028. align-self:center;
  3029. padding:2px 2px 2px 0px;
  3030. box-sizing:border-box;
  3031. width:100%;
  3032. }
  3033. #u6559_text {
  3034. border-width:0px;
  3035. word-wrap:break-word;
  3036. text-transform:none;
  3037. }
  3038. #u6560_img {
  3039. border-width:0px;
  3040. position:absolute;
  3041. left:0px;
  3042. top:0px;
  3043. width:49px;
  3044. height:35px;
  3045. }
  3046. #u6560 {
  3047. border-width:0px;
  3048. position:absolute;
  3049. left:0px;
  3050. top:76px;
  3051. width:49px;
  3052. height:35px;
  3053. display:flex;
  3054. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3055. font-weight:400;
  3056. font-style:normal;
  3057. font-size:12px;
  3058. color:#606266;
  3059. }
  3060. #u6560 .text {
  3061. position:absolute;
  3062. align-self:center;
  3063. padding:2px 2px 2px 0px;
  3064. box-sizing:border-box;
  3065. width:100%;
  3066. }
  3067. #u6560_text {
  3068. border-width:0px;
  3069. word-wrap:break-word;
  3070. text-transform:none;
  3071. }
  3072. #u6561_img {
  3073. border-width:0px;
  3074. position:absolute;
  3075. left:0px;
  3076. top:0px;
  3077. width:98px;
  3078. height:35px;
  3079. }
  3080. #u6561 {
  3081. border-width:0px;
  3082. position:absolute;
  3083. left:49px;
  3084. top:76px;
  3085. width:98px;
  3086. height:35px;
  3087. display:flex;
  3088. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3089. font-weight:400;
  3090. font-style:normal;
  3091. font-size:12px;
  3092. color:#606266;
  3093. }
  3094. #u6561 .text {
  3095. position:absolute;
  3096. align-self:center;
  3097. padding:2px 2px 2px 0px;
  3098. box-sizing:border-box;
  3099. width:100%;
  3100. }
  3101. #u6561_text {
  3102. border-width:0px;
  3103. word-wrap:break-word;
  3104. text-transform:none;
  3105. visibility:hidden;
  3106. }
  3107. #u6562_img {
  3108. border-width:0px;
  3109. position:absolute;
  3110. left:0px;
  3111. top:0px;
  3112. width:110px;
  3113. height:35px;
  3114. }
  3115. #u6562 {
  3116. border-width:0px;
  3117. position:absolute;
  3118. left:147px;
  3119. top:76px;
  3120. width:110px;
  3121. height:35px;
  3122. display:flex;
  3123. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3124. font-weight:400;
  3125. font-style:normal;
  3126. font-size:12px;
  3127. color:#606266;
  3128. }
  3129. #u6562 .text {
  3130. position:absolute;
  3131. align-self:center;
  3132. padding:2px 2px 2px 0px;
  3133. box-sizing:border-box;
  3134. width:100%;
  3135. }
  3136. #u6562_text {
  3137. border-width:0px;
  3138. word-wrap:break-word;
  3139. text-transform:none;
  3140. }
  3141. #u6563_img {
  3142. border-width:0px;
  3143. position:absolute;
  3144. left:0px;
  3145. top:0px;
  3146. width:115px;
  3147. height:35px;
  3148. }
  3149. #u6563 {
  3150. border-width:0px;
  3151. position:absolute;
  3152. left:257px;
  3153. top:76px;
  3154. width:115px;
  3155. height:35px;
  3156. display:flex;
  3157. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3158. font-weight:400;
  3159. font-style:normal;
  3160. font-size:12px;
  3161. color:#606266;
  3162. }
  3163. #u6563 .text {
  3164. position:absolute;
  3165. align-self:center;
  3166. padding:2px 2px 2px 0px;
  3167. box-sizing:border-box;
  3168. width:100%;
  3169. }
  3170. #u6563_text {
  3171. border-width:0px;
  3172. word-wrap:break-word;
  3173. text-transform:none;
  3174. visibility:hidden;
  3175. }
  3176. #u6564_img {
  3177. border-width:0px;
  3178. position:absolute;
  3179. left:0px;
  3180. top:0px;
  3181. width:115px;
  3182. height:35px;
  3183. }
  3184. #u6564 {
  3185. border-width:0px;
  3186. position:absolute;
  3187. left:372px;
  3188. top:76px;
  3189. width:115px;
  3190. height:35px;
  3191. display:flex;
  3192. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3193. font-weight:400;
  3194. font-style:normal;
  3195. font-size:12px;
  3196. color:#606266;
  3197. }
  3198. #u6564 .text {
  3199. position:absolute;
  3200. align-self:center;
  3201. padding:2px 2px 2px 0px;
  3202. box-sizing:border-box;
  3203. width:100%;
  3204. }
  3205. #u6564_text {
  3206. border-width:0px;
  3207. word-wrap:break-word;
  3208. text-transform:none;
  3209. visibility:hidden;
  3210. }
  3211. #u6565_img {
  3212. border-width:0px;
  3213. position:absolute;
  3214. left:0px;
  3215. top:0px;
  3216. width:98px;
  3217. height:35px;
  3218. }
  3219. #u6565 {
  3220. border-width:0px;
  3221. position:absolute;
  3222. left:487px;
  3223. top:76px;
  3224. width:98px;
  3225. height:35px;
  3226. display:flex;
  3227. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3228. font-weight:400;
  3229. font-style:normal;
  3230. font-size:12px;
  3231. color:#606266;
  3232. }
  3233. #u6565 .text {
  3234. position:absolute;
  3235. align-self:center;
  3236. padding:2px 2px 2px 0px;
  3237. box-sizing:border-box;
  3238. width:100%;
  3239. }
  3240. #u6565_text {
  3241. border-width:0px;
  3242. word-wrap:break-word;
  3243. text-transform:none;
  3244. }
  3245. #u6566_img {
  3246. border-width:0px;
  3247. position:absolute;
  3248. left:0px;
  3249. top:0px;
  3250. width:116px;
  3251. height:35px;
  3252. }
  3253. #u6566 {
  3254. border-width:0px;
  3255. position:absolute;
  3256. left:585px;
  3257. top:76px;
  3258. width:116px;
  3259. height:35px;
  3260. display:flex;
  3261. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3262. font-weight:400;
  3263. font-style:normal;
  3264. font-size:12px;
  3265. color:#606266;
  3266. }
  3267. #u6566 .text {
  3268. position:absolute;
  3269. align-self:center;
  3270. padding:2px 2px 2px 0px;
  3271. box-sizing:border-box;
  3272. width:100%;
  3273. }
  3274. #u6566_text {
  3275. border-width:0px;
  3276. word-wrap:break-word;
  3277. text-transform:none;
  3278. visibility:hidden;
  3279. }
  3280. #u6567_img {
  3281. border-width:0px;
  3282. position:absolute;
  3283. left:0px;
  3284. top:0px;
  3285. width:115px;
  3286. height:35px;
  3287. }
  3288. #u6567 {
  3289. border-width:0px;
  3290. position:absolute;
  3291. left:701px;
  3292. top:76px;
  3293. width:115px;
  3294. height:35px;
  3295. display:flex;
  3296. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3297. font-weight:400;
  3298. font-style:normal;
  3299. font-size:12px;
  3300. color:#606266;
  3301. }
  3302. #u6567 .text {
  3303. position:absolute;
  3304. align-self:center;
  3305. padding:2px 2px 2px 0px;
  3306. box-sizing:border-box;
  3307. width:100%;
  3308. }
  3309. #u6567_text {
  3310. border-width:0px;
  3311. word-wrap:break-word;
  3312. text-transform:none;
  3313. visibility:hidden;
  3314. }
  3315. #u6568_img {
  3316. border-width:0px;
  3317. position:absolute;
  3318. left:0px;
  3319. top:0px;
  3320. width:127px;
  3321. height:35px;
  3322. }
  3323. #u6568 {
  3324. border-width:0px;
  3325. position:absolute;
  3326. left:816px;
  3327. top:76px;
  3328. width:127px;
  3329. height:35px;
  3330. display:flex;
  3331. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3332. font-weight:400;
  3333. font-style:normal;
  3334. font-size:12px;
  3335. color:#606266;
  3336. }
  3337. #u6568 .text {
  3338. position:absolute;
  3339. align-self:center;
  3340. padding:2px 2px 2px 0px;
  3341. box-sizing:border-box;
  3342. width:100%;
  3343. }
  3344. #u6568_text {
  3345. border-width:0px;
  3346. word-wrap:break-word;
  3347. text-transform:none;
  3348. visibility:hidden;
  3349. }
  3350. #u6569_img {
  3351. border-width:0px;
  3352. position:absolute;
  3353. left:0px;
  3354. top:0px;
  3355. width:123px;
  3356. height:35px;
  3357. }
  3358. #u6569 {
  3359. border-width:0px;
  3360. position:absolute;
  3361. left:943px;
  3362. top:76px;
  3363. width:123px;
  3364. height:35px;
  3365. display:flex;
  3366. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3367. font-weight:400;
  3368. font-style:normal;
  3369. font-size:12px;
  3370. color:#606266;
  3371. }
  3372. #u6569 .text {
  3373. position:absolute;
  3374. align-self:center;
  3375. padding:2px 2px 2px 0px;
  3376. box-sizing:border-box;
  3377. width:100%;
  3378. }
  3379. #u6569_text {
  3380. border-width:0px;
  3381. word-wrap:break-word;
  3382. text-transform:none;
  3383. visibility:hidden;
  3384. }
  3385. #u6570_img {
  3386. border-width:0px;
  3387. position:absolute;
  3388. left:0px;
  3389. top:0px;
  3390. width:149px;
  3391. height:35px;
  3392. }
  3393. #u6570 {
  3394. border-width:0px;
  3395. position:absolute;
  3396. left:1066px;
  3397. top:76px;
  3398. width:149px;
  3399. height:35px;
  3400. display:flex;
  3401. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3402. font-weight:400;
  3403. font-style:normal;
  3404. font-size:12px;
  3405. color:#1890FF;
  3406. }
  3407. #u6570 .text {
  3408. position:absolute;
  3409. align-self:center;
  3410. padding:2px 2px 2px 0px;
  3411. box-sizing:border-box;
  3412. width:100%;
  3413. }
  3414. #u6570_text {
  3415. border-width:0px;
  3416. word-wrap:break-word;
  3417. text-transform:none;
  3418. }
  3419. #u6571_img {
  3420. border-width:0px;
  3421. position:absolute;
  3422. left:0px;
  3423. top:0px;
  3424. width:49px;
  3425. height:35px;
  3426. }
  3427. #u6571 {
  3428. border-width:0px;
  3429. position:absolute;
  3430. left:0px;
  3431. top:111px;
  3432. width:49px;
  3433. height:35px;
  3434. display:flex;
  3435. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3436. font-weight:400;
  3437. font-style:normal;
  3438. font-size:12px;
  3439. color:#606266;
  3440. }
  3441. #u6571 .text {
  3442. position:absolute;
  3443. align-self:center;
  3444. padding:2px 2px 2px 0px;
  3445. box-sizing:border-box;
  3446. width:100%;
  3447. }
  3448. #u6571_text {
  3449. border-width:0px;
  3450. word-wrap:break-word;
  3451. text-transform:none;
  3452. }
  3453. #u6572_img {
  3454. border-width:0px;
  3455. position:absolute;
  3456. left:0px;
  3457. top:0px;
  3458. width:98px;
  3459. height:35px;
  3460. }
  3461. #u6572 {
  3462. border-width:0px;
  3463. position:absolute;
  3464. left:49px;
  3465. top:111px;
  3466. width:98px;
  3467. height:35px;
  3468. display:flex;
  3469. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3470. font-weight:400;
  3471. font-style:normal;
  3472. font-size:12px;
  3473. color:#606266;
  3474. }
  3475. #u6572 .text {
  3476. position:absolute;
  3477. align-self:center;
  3478. padding:2px 2px 2px 0px;
  3479. box-sizing:border-box;
  3480. width:100%;
  3481. }
  3482. #u6572_text {
  3483. border-width:0px;
  3484. word-wrap:break-word;
  3485. text-transform:none;
  3486. visibility:hidden;
  3487. }
  3488. #u6573_img {
  3489. border-width:0px;
  3490. position:absolute;
  3491. left:0px;
  3492. top:0px;
  3493. width:110px;
  3494. height:35px;
  3495. }
  3496. #u6573 {
  3497. border-width:0px;
  3498. position:absolute;
  3499. left:147px;
  3500. top:111px;
  3501. width:110px;
  3502. height:35px;
  3503. display:flex;
  3504. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3505. font-weight:400;
  3506. font-style:normal;
  3507. font-size:12px;
  3508. color:#606266;
  3509. }
  3510. #u6573 .text {
  3511. position:absolute;
  3512. align-self:center;
  3513. padding:2px 2px 2px 0px;
  3514. box-sizing:border-box;
  3515. width:100%;
  3516. }
  3517. #u6573_text {
  3518. border-width:0px;
  3519. word-wrap:break-word;
  3520. text-transform:none;
  3521. visibility:hidden;
  3522. }
  3523. #u6574_img {
  3524. border-width:0px;
  3525. position:absolute;
  3526. left:0px;
  3527. top:0px;
  3528. width:115px;
  3529. height:35px;
  3530. }
  3531. #u6574 {
  3532. border-width:0px;
  3533. position:absolute;
  3534. left:257px;
  3535. top:111px;
  3536. width:115px;
  3537. height:35px;
  3538. display:flex;
  3539. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3540. font-weight:400;
  3541. font-style:normal;
  3542. font-size:12px;
  3543. color:#606266;
  3544. }
  3545. #u6574 .text {
  3546. position:absolute;
  3547. align-self:center;
  3548. padding:2px 2px 2px 0px;
  3549. box-sizing:border-box;
  3550. width:100%;
  3551. }
  3552. #u6574_text {
  3553. border-width:0px;
  3554. word-wrap:break-word;
  3555. text-transform:none;
  3556. visibility:hidden;
  3557. }
  3558. #u6575_img {
  3559. border-width:0px;
  3560. position:absolute;
  3561. left:0px;
  3562. top:0px;
  3563. width:115px;
  3564. height:35px;
  3565. }
  3566. #u6575 {
  3567. border-width:0px;
  3568. position:absolute;
  3569. left:372px;
  3570. top:111px;
  3571. width:115px;
  3572. height:35px;
  3573. display:flex;
  3574. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3575. font-weight:400;
  3576. font-style:normal;
  3577. font-size:12px;
  3578. color:#606266;
  3579. }
  3580. #u6575 .text {
  3581. position:absolute;
  3582. align-self:center;
  3583. padding:2px 2px 2px 0px;
  3584. box-sizing:border-box;
  3585. width:100%;
  3586. }
  3587. #u6575_text {
  3588. border-width:0px;
  3589. word-wrap:break-word;
  3590. text-transform:none;
  3591. visibility:hidden;
  3592. }
  3593. #u6576_img {
  3594. border-width:0px;
  3595. position:absolute;
  3596. left:0px;
  3597. top:0px;
  3598. width:98px;
  3599. height:35px;
  3600. }
  3601. #u6576 {
  3602. border-width:0px;
  3603. position:absolute;
  3604. left:487px;
  3605. top:111px;
  3606. width:98px;
  3607. height:35px;
  3608. display:flex;
  3609. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3610. font-weight:400;
  3611. font-style:normal;
  3612. font-size:12px;
  3613. color:#606266;
  3614. }
  3615. #u6576 .text {
  3616. position:absolute;
  3617. align-self:center;
  3618. padding:2px 2px 2px 0px;
  3619. box-sizing:border-box;
  3620. width:100%;
  3621. }
  3622. #u6576_text {
  3623. border-width:0px;
  3624. word-wrap:break-word;
  3625. text-transform:none;
  3626. }
  3627. #u6577_img {
  3628. border-width:0px;
  3629. position:absolute;
  3630. left:0px;
  3631. top:0px;
  3632. width:116px;
  3633. height:35px;
  3634. }
  3635. #u6577 {
  3636. border-width:0px;
  3637. position:absolute;
  3638. left:585px;
  3639. top:111px;
  3640. width:116px;
  3641. height:35px;
  3642. display:flex;
  3643. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3644. font-weight:400;
  3645. font-style:normal;
  3646. font-size:12px;
  3647. color:#606266;
  3648. }
  3649. #u6577 .text {
  3650. position:absolute;
  3651. align-self:center;
  3652. padding:2px 2px 2px 0px;
  3653. box-sizing:border-box;
  3654. width:100%;
  3655. }
  3656. #u6577_text {
  3657. border-width:0px;
  3658. word-wrap:break-word;
  3659. text-transform:none;
  3660. visibility:hidden;
  3661. }
  3662. #u6578_img {
  3663. border-width:0px;
  3664. position:absolute;
  3665. left:0px;
  3666. top:0px;
  3667. width:115px;
  3668. height:35px;
  3669. }
  3670. #u6578 {
  3671. border-width:0px;
  3672. position:absolute;
  3673. left:701px;
  3674. top:111px;
  3675. width:115px;
  3676. height:35px;
  3677. display:flex;
  3678. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3679. font-weight:400;
  3680. font-style:normal;
  3681. font-size:12px;
  3682. color:#606266;
  3683. }
  3684. #u6578 .text {
  3685. position:absolute;
  3686. align-self:center;
  3687. padding:2px 2px 2px 0px;
  3688. box-sizing:border-box;
  3689. width:100%;
  3690. }
  3691. #u6578_text {
  3692. border-width:0px;
  3693. word-wrap:break-word;
  3694. text-transform:none;
  3695. visibility:hidden;
  3696. }
  3697. #u6579_img {
  3698. border-width:0px;
  3699. position:absolute;
  3700. left:0px;
  3701. top:0px;
  3702. width:127px;
  3703. height:35px;
  3704. }
  3705. #u6579 {
  3706. border-width:0px;
  3707. position:absolute;
  3708. left:816px;
  3709. top:111px;
  3710. width:127px;
  3711. height:35px;
  3712. display:flex;
  3713. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3714. font-weight:400;
  3715. font-style:normal;
  3716. font-size:12px;
  3717. color:#606266;
  3718. }
  3719. #u6579 .text {
  3720. position:absolute;
  3721. align-self:center;
  3722. padding:2px 2px 2px 0px;
  3723. box-sizing:border-box;
  3724. width:100%;
  3725. }
  3726. #u6579_text {
  3727. border-width:0px;
  3728. word-wrap:break-word;
  3729. text-transform:none;
  3730. visibility:hidden;
  3731. }
  3732. #u6580_img {
  3733. border-width:0px;
  3734. position:absolute;
  3735. left:0px;
  3736. top:0px;
  3737. width:123px;
  3738. height:35px;
  3739. }
  3740. #u6580 {
  3741. border-width:0px;
  3742. position:absolute;
  3743. left:943px;
  3744. top:111px;
  3745. width:123px;
  3746. height:35px;
  3747. display:flex;
  3748. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3749. font-weight:400;
  3750. font-style:normal;
  3751. font-size:12px;
  3752. color:#606266;
  3753. }
  3754. #u6580 .text {
  3755. position:absolute;
  3756. align-self:center;
  3757. padding:2px 2px 2px 0px;
  3758. box-sizing:border-box;
  3759. width:100%;
  3760. }
  3761. #u6580_text {
  3762. border-width:0px;
  3763. word-wrap:break-word;
  3764. text-transform:none;
  3765. visibility:hidden;
  3766. }
  3767. #u6581_img {
  3768. border-width:0px;
  3769. position:absolute;
  3770. left:0px;
  3771. top:0px;
  3772. width:149px;
  3773. height:35px;
  3774. }
  3775. #u6581 {
  3776. border-width:0px;
  3777. position:absolute;
  3778. left:1066px;
  3779. top:111px;
  3780. width:149px;
  3781. height:35px;
  3782. display:flex;
  3783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3784. font-weight:400;
  3785. font-style:normal;
  3786. font-size:12px;
  3787. color:#1890FF;
  3788. }
  3789. #u6581 .text {
  3790. position:absolute;
  3791. align-self:center;
  3792. padding:2px 2px 2px 0px;
  3793. box-sizing:border-box;
  3794. width:100%;
  3795. }
  3796. #u6581_text {
  3797. border-width:0px;
  3798. word-wrap:break-word;
  3799. text-transform:none;
  3800. }
  3801. #u6582_img {
  3802. border-width:0px;
  3803. position:absolute;
  3804. left:0px;
  3805. top:0px;
  3806. width:49px;
  3807. height:35px;
  3808. }
  3809. #u6582 {
  3810. border-width:0px;
  3811. position:absolute;
  3812. left:0px;
  3813. top:146px;
  3814. width:49px;
  3815. height:35px;
  3816. display:flex;
  3817. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3818. font-weight:400;
  3819. font-style:normal;
  3820. font-size:12px;
  3821. color:#606266;
  3822. }
  3823. #u6582 .text {
  3824. position:absolute;
  3825. align-self:center;
  3826. padding:2px 2px 2px 0px;
  3827. box-sizing:border-box;
  3828. width:100%;
  3829. }
  3830. #u6582_text {
  3831. border-width:0px;
  3832. word-wrap:break-word;
  3833. text-transform:none;
  3834. }
  3835. #u6583_img {
  3836. border-width:0px;
  3837. position:absolute;
  3838. left:0px;
  3839. top:0px;
  3840. width:98px;
  3841. height:35px;
  3842. }
  3843. #u6583 {
  3844. border-width:0px;
  3845. position:absolute;
  3846. left:49px;
  3847. top:146px;
  3848. width:98px;
  3849. height:35px;
  3850. display:flex;
  3851. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3852. font-weight:400;
  3853. font-style:normal;
  3854. font-size:12px;
  3855. color:#606266;
  3856. }
  3857. #u6583 .text {
  3858. position:absolute;
  3859. align-self:center;
  3860. padding:2px 2px 2px 0px;
  3861. box-sizing:border-box;
  3862. width:100%;
  3863. }
  3864. #u6583_text {
  3865. border-width:0px;
  3866. word-wrap:break-word;
  3867. text-transform:none;
  3868. visibility:hidden;
  3869. }
  3870. #u6584_img {
  3871. border-width:0px;
  3872. position:absolute;
  3873. left:0px;
  3874. top:0px;
  3875. width:110px;
  3876. height:35px;
  3877. }
  3878. #u6584 {
  3879. border-width:0px;
  3880. position:absolute;
  3881. left:147px;
  3882. top:146px;
  3883. width:110px;
  3884. height:35px;
  3885. display:flex;
  3886. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3887. font-weight:400;
  3888. font-style:normal;
  3889. font-size:12px;
  3890. color:#606266;
  3891. }
  3892. #u6584 .text {
  3893. position:absolute;
  3894. align-self:center;
  3895. padding:2px 2px 2px 0px;
  3896. box-sizing:border-box;
  3897. width:100%;
  3898. }
  3899. #u6584_text {
  3900. border-width:0px;
  3901. word-wrap:break-word;
  3902. text-transform:none;
  3903. visibility:hidden;
  3904. }
  3905. #u6585_img {
  3906. border-width:0px;
  3907. position:absolute;
  3908. left:0px;
  3909. top:0px;
  3910. width:115px;
  3911. height:35px;
  3912. }
  3913. #u6585 {
  3914. border-width:0px;
  3915. position:absolute;
  3916. left:257px;
  3917. top:146px;
  3918. width:115px;
  3919. height:35px;
  3920. display:flex;
  3921. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3922. font-weight:400;
  3923. font-style:normal;
  3924. font-size:12px;
  3925. color:#606266;
  3926. }
  3927. #u6585 .text {
  3928. position:absolute;
  3929. align-self:center;
  3930. padding:2px 2px 2px 0px;
  3931. box-sizing:border-box;
  3932. width:100%;
  3933. }
  3934. #u6585_text {
  3935. border-width:0px;
  3936. word-wrap:break-word;
  3937. text-transform:none;
  3938. visibility:hidden;
  3939. }
  3940. #u6586_img {
  3941. border-width:0px;
  3942. position:absolute;
  3943. left:0px;
  3944. top:0px;
  3945. width:115px;
  3946. height:35px;
  3947. }
  3948. #u6586 {
  3949. border-width:0px;
  3950. position:absolute;
  3951. left:372px;
  3952. top:146px;
  3953. width:115px;
  3954. height:35px;
  3955. display:flex;
  3956. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3957. font-weight:400;
  3958. font-style:normal;
  3959. font-size:12px;
  3960. color:#606266;
  3961. }
  3962. #u6586 .text {
  3963. position:absolute;
  3964. align-self:center;
  3965. padding:2px 2px 2px 0px;
  3966. box-sizing:border-box;
  3967. width:100%;
  3968. }
  3969. #u6586_text {
  3970. border-width:0px;
  3971. word-wrap:break-word;
  3972. text-transform:none;
  3973. visibility:hidden;
  3974. }
  3975. #u6587_img {
  3976. border-width:0px;
  3977. position:absolute;
  3978. left:0px;
  3979. top:0px;
  3980. width:98px;
  3981. height:35px;
  3982. }
  3983. #u6587 {
  3984. border-width:0px;
  3985. position:absolute;
  3986. left:487px;
  3987. top:146px;
  3988. width:98px;
  3989. height:35px;
  3990. display:flex;
  3991. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3992. font-weight:400;
  3993. font-style:normal;
  3994. font-size:12px;
  3995. color:#606266;
  3996. }
  3997. #u6587 .text {
  3998. position:absolute;
  3999. align-self:center;
  4000. padding:2px 2px 2px 0px;
  4001. box-sizing:border-box;
  4002. width:100%;
  4003. }
  4004. #u6587_text {
  4005. border-width:0px;
  4006. word-wrap:break-word;
  4007. text-transform:none;
  4008. visibility:hidden;
  4009. }
  4010. #u6588_img {
  4011. border-width:0px;
  4012. position:absolute;
  4013. left:0px;
  4014. top:0px;
  4015. width:116px;
  4016. height:35px;
  4017. }
  4018. #u6588 {
  4019. border-width:0px;
  4020. position:absolute;
  4021. left:585px;
  4022. top:146px;
  4023. width:116px;
  4024. height:35px;
  4025. display:flex;
  4026. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4027. font-weight:400;
  4028. font-style:normal;
  4029. font-size:12px;
  4030. color:#606266;
  4031. }
  4032. #u6588 .text {
  4033. position:absolute;
  4034. align-self:center;
  4035. padding:2px 2px 2px 0px;
  4036. box-sizing:border-box;
  4037. width:100%;
  4038. }
  4039. #u6588_text {
  4040. border-width:0px;
  4041. word-wrap:break-word;
  4042. text-transform:none;
  4043. visibility:hidden;
  4044. }
  4045. #u6589_img {
  4046. border-width:0px;
  4047. position:absolute;
  4048. left:0px;
  4049. top:0px;
  4050. width:115px;
  4051. height:35px;
  4052. }
  4053. #u6589 {
  4054. border-width:0px;
  4055. position:absolute;
  4056. left:701px;
  4057. top:146px;
  4058. width:115px;
  4059. height:35px;
  4060. display:flex;
  4061. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4062. font-weight:400;
  4063. font-style:normal;
  4064. font-size:12px;
  4065. color:#606266;
  4066. }
  4067. #u6589 .text {
  4068. position:absolute;
  4069. align-self:center;
  4070. padding:2px 2px 2px 0px;
  4071. box-sizing:border-box;
  4072. width:100%;
  4073. }
  4074. #u6589_text {
  4075. border-width:0px;
  4076. word-wrap:break-word;
  4077. text-transform:none;
  4078. visibility:hidden;
  4079. }
  4080. #u6590_img {
  4081. border-width:0px;
  4082. position:absolute;
  4083. left:0px;
  4084. top:0px;
  4085. width:127px;
  4086. height:35px;
  4087. }
  4088. #u6590 {
  4089. border-width:0px;
  4090. position:absolute;
  4091. left:816px;
  4092. top:146px;
  4093. width:127px;
  4094. height:35px;
  4095. display:flex;
  4096. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4097. font-weight:400;
  4098. font-style:normal;
  4099. font-size:12px;
  4100. color:#606266;
  4101. }
  4102. #u6590 .text {
  4103. position:absolute;
  4104. align-self:center;
  4105. padding:2px 2px 2px 0px;
  4106. box-sizing:border-box;
  4107. width:100%;
  4108. }
  4109. #u6590_text {
  4110. border-width:0px;
  4111. word-wrap:break-word;
  4112. text-transform:none;
  4113. visibility:hidden;
  4114. }
  4115. #u6591_img {
  4116. border-width:0px;
  4117. position:absolute;
  4118. left:0px;
  4119. top:0px;
  4120. width:123px;
  4121. height:35px;
  4122. }
  4123. #u6591 {
  4124. border-width:0px;
  4125. position:absolute;
  4126. left:943px;
  4127. top:146px;
  4128. width:123px;
  4129. height:35px;
  4130. display:flex;
  4131. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4132. font-weight:400;
  4133. font-style:normal;
  4134. font-size:12px;
  4135. color:#606266;
  4136. }
  4137. #u6591 .text {
  4138. position:absolute;
  4139. align-self:center;
  4140. padding:2px 2px 2px 0px;
  4141. box-sizing:border-box;
  4142. width:100%;
  4143. }
  4144. #u6591_text {
  4145. border-width:0px;
  4146. word-wrap:break-word;
  4147. text-transform:none;
  4148. visibility:hidden;
  4149. }
  4150. #u6592_img {
  4151. border-width:0px;
  4152. position:absolute;
  4153. left:0px;
  4154. top:0px;
  4155. width:149px;
  4156. height:35px;
  4157. }
  4158. #u6592 {
  4159. border-width:0px;
  4160. position:absolute;
  4161. left:1066px;
  4162. top:146px;
  4163. width:149px;
  4164. height:35px;
  4165. display:flex;
  4166. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4167. font-weight:400;
  4168. font-style:normal;
  4169. font-size:12px;
  4170. color:#02A7F0;
  4171. }
  4172. #u6592 .text {
  4173. position:absolute;
  4174. align-self:center;
  4175. padding:2px 2px 2px 0px;
  4176. box-sizing:border-box;
  4177. width:100%;
  4178. }
  4179. #u6592_text {
  4180. border-width:0px;
  4181. word-wrap:break-word;
  4182. text-transform:none;
  4183. visibility:hidden;
  4184. }
  4185. #u6593_img {
  4186. border-width:0px;
  4187. position:absolute;
  4188. left:0px;
  4189. top:0px;
  4190. width:49px;
  4191. height:35px;
  4192. }
  4193. #u6593 {
  4194. border-width:0px;
  4195. position:absolute;
  4196. left:0px;
  4197. top:181px;
  4198. width:49px;
  4199. height:35px;
  4200. display:flex;
  4201. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4202. font-weight:400;
  4203. font-style:normal;
  4204. font-size:12px;
  4205. color:#606266;
  4206. }
  4207. #u6593 .text {
  4208. position:absolute;
  4209. align-self:center;
  4210. padding:2px 2px 2px 0px;
  4211. box-sizing:border-box;
  4212. width:100%;
  4213. }
  4214. #u6593_text {
  4215. border-width:0px;
  4216. word-wrap:break-word;
  4217. text-transform:none;
  4218. visibility:hidden;
  4219. }
  4220. #u6594_img {
  4221. border-width:0px;
  4222. position:absolute;
  4223. left:0px;
  4224. top:0px;
  4225. width:98px;
  4226. height:35px;
  4227. }
  4228. #u6594 {
  4229. border-width:0px;
  4230. position:absolute;
  4231. left:49px;
  4232. top:181px;
  4233. width:98px;
  4234. height:35px;
  4235. display:flex;
  4236. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4237. font-weight:400;
  4238. font-style:normal;
  4239. font-size:12px;
  4240. color:#606266;
  4241. }
  4242. #u6594 .text {
  4243. position:absolute;
  4244. align-self:center;
  4245. padding:2px 2px 2px 0px;
  4246. box-sizing:border-box;
  4247. width:100%;
  4248. }
  4249. #u6594_text {
  4250. border-width:0px;
  4251. word-wrap:break-word;
  4252. text-transform:none;
  4253. visibility:hidden;
  4254. }
  4255. #u6595_img {
  4256. border-width:0px;
  4257. position:absolute;
  4258. left:0px;
  4259. top:0px;
  4260. width:110px;
  4261. height:35px;
  4262. }
  4263. #u6595 {
  4264. border-width:0px;
  4265. position:absolute;
  4266. left:147px;
  4267. top:181px;
  4268. width:110px;
  4269. height:35px;
  4270. display:flex;
  4271. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4272. font-weight:400;
  4273. font-style:normal;
  4274. font-size:12px;
  4275. color:#606266;
  4276. }
  4277. #u6595 .text {
  4278. position:absolute;
  4279. align-self:center;
  4280. padding:2px 2px 2px 0px;
  4281. box-sizing:border-box;
  4282. width:100%;
  4283. }
  4284. #u6595_text {
  4285. border-width:0px;
  4286. word-wrap:break-word;
  4287. text-transform:none;
  4288. visibility:hidden;
  4289. }
  4290. #u6596_img {
  4291. border-width:0px;
  4292. position:absolute;
  4293. left:0px;
  4294. top:0px;
  4295. width:115px;
  4296. height:35px;
  4297. }
  4298. #u6596 {
  4299. border-width:0px;
  4300. position:absolute;
  4301. left:257px;
  4302. top:181px;
  4303. width:115px;
  4304. height:35px;
  4305. display:flex;
  4306. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4307. font-weight:400;
  4308. font-style:normal;
  4309. font-size:12px;
  4310. color:#606266;
  4311. }
  4312. #u6596 .text {
  4313. position:absolute;
  4314. align-self:center;
  4315. padding:2px 2px 2px 0px;
  4316. box-sizing:border-box;
  4317. width:100%;
  4318. }
  4319. #u6596_text {
  4320. border-width:0px;
  4321. word-wrap:break-word;
  4322. text-transform:none;
  4323. visibility:hidden;
  4324. }
  4325. #u6597_img {
  4326. border-width:0px;
  4327. position:absolute;
  4328. left:0px;
  4329. top:0px;
  4330. width:115px;
  4331. height:35px;
  4332. }
  4333. #u6597 {
  4334. border-width:0px;
  4335. position:absolute;
  4336. left:372px;
  4337. top:181px;
  4338. width:115px;
  4339. height:35px;
  4340. display:flex;
  4341. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4342. font-weight:400;
  4343. font-style:normal;
  4344. font-size:12px;
  4345. color:#606266;
  4346. }
  4347. #u6597 .text {
  4348. position:absolute;
  4349. align-self:center;
  4350. padding:2px 2px 2px 0px;
  4351. box-sizing:border-box;
  4352. width:100%;
  4353. }
  4354. #u6597_text {
  4355. border-width:0px;
  4356. word-wrap:break-word;
  4357. text-transform:none;
  4358. visibility:hidden;
  4359. }
  4360. #u6598_img {
  4361. border-width:0px;
  4362. position:absolute;
  4363. left:0px;
  4364. top:0px;
  4365. width:98px;
  4366. height:35px;
  4367. }
  4368. #u6598 {
  4369. border-width:0px;
  4370. position:absolute;
  4371. left:487px;
  4372. top:181px;
  4373. width:98px;
  4374. height:35px;
  4375. display:flex;
  4376. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4377. font-weight:400;
  4378. font-style:normal;
  4379. font-size:12px;
  4380. color:#606266;
  4381. }
  4382. #u6598 .text {
  4383. position:absolute;
  4384. align-self:center;
  4385. padding:2px 2px 2px 0px;
  4386. box-sizing:border-box;
  4387. width:100%;
  4388. }
  4389. #u6598_text {
  4390. border-width:0px;
  4391. word-wrap:break-word;
  4392. text-transform:none;
  4393. visibility:hidden;
  4394. }
  4395. #u6599_img {
  4396. border-width:0px;
  4397. position:absolute;
  4398. left:0px;
  4399. top:0px;
  4400. width:116px;
  4401. height:35px;
  4402. }
  4403. #u6599 {
  4404. border-width:0px;
  4405. position:absolute;
  4406. left:585px;
  4407. top:181px;
  4408. width:116px;
  4409. height:35px;
  4410. display:flex;
  4411. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4412. font-weight:400;
  4413. font-style:normal;
  4414. font-size:12px;
  4415. color:#606266;
  4416. }
  4417. #u6599 .text {
  4418. position:absolute;
  4419. align-self:center;
  4420. padding:2px 2px 2px 0px;
  4421. box-sizing:border-box;
  4422. width:100%;
  4423. }
  4424. #u6599_text {
  4425. border-width:0px;
  4426. word-wrap:break-word;
  4427. text-transform:none;
  4428. visibility:hidden;
  4429. }
  4430. #u6600_img {
  4431. border-width:0px;
  4432. position:absolute;
  4433. left:0px;
  4434. top:0px;
  4435. width:115px;
  4436. height:35px;
  4437. }
  4438. #u6600 {
  4439. border-width:0px;
  4440. position:absolute;
  4441. left:701px;
  4442. top:181px;
  4443. width:115px;
  4444. height:35px;
  4445. display:flex;
  4446. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4447. font-weight:400;
  4448. font-style:normal;
  4449. font-size:12px;
  4450. color:#606266;
  4451. }
  4452. #u6600 .text {
  4453. position:absolute;
  4454. align-self:center;
  4455. padding:2px 2px 2px 0px;
  4456. box-sizing:border-box;
  4457. width:100%;
  4458. }
  4459. #u6600_text {
  4460. border-width:0px;
  4461. word-wrap:break-word;
  4462. text-transform:none;
  4463. visibility:hidden;
  4464. }
  4465. #u6601_img {
  4466. border-width:0px;
  4467. position:absolute;
  4468. left:0px;
  4469. top:0px;
  4470. width:127px;
  4471. height:35px;
  4472. }
  4473. #u6601 {
  4474. border-width:0px;
  4475. position:absolute;
  4476. left:816px;
  4477. top:181px;
  4478. width:127px;
  4479. height:35px;
  4480. display:flex;
  4481. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4482. font-weight:400;
  4483. font-style:normal;
  4484. font-size:12px;
  4485. color:#606266;
  4486. }
  4487. #u6601 .text {
  4488. position:absolute;
  4489. align-self:center;
  4490. padding:2px 2px 2px 0px;
  4491. box-sizing:border-box;
  4492. width:100%;
  4493. }
  4494. #u6601_text {
  4495. border-width:0px;
  4496. word-wrap:break-word;
  4497. text-transform:none;
  4498. visibility:hidden;
  4499. }
  4500. #u6602_img {
  4501. border-width:0px;
  4502. position:absolute;
  4503. left:0px;
  4504. top:0px;
  4505. width:123px;
  4506. height:35px;
  4507. }
  4508. #u6602 {
  4509. border-width:0px;
  4510. position:absolute;
  4511. left:943px;
  4512. top:181px;
  4513. width:123px;
  4514. height:35px;
  4515. display:flex;
  4516. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4517. font-weight:400;
  4518. font-style:normal;
  4519. font-size:12px;
  4520. color:#606266;
  4521. }
  4522. #u6602 .text {
  4523. position:absolute;
  4524. align-self:center;
  4525. padding:2px 2px 2px 0px;
  4526. box-sizing:border-box;
  4527. width:100%;
  4528. }
  4529. #u6602_text {
  4530. border-width:0px;
  4531. word-wrap:break-word;
  4532. text-transform:none;
  4533. visibility:hidden;
  4534. }
  4535. #u6603_img {
  4536. border-width:0px;
  4537. position:absolute;
  4538. left:0px;
  4539. top:0px;
  4540. width:149px;
  4541. height:35px;
  4542. }
  4543. #u6603 {
  4544. border-width:0px;
  4545. position:absolute;
  4546. left:1066px;
  4547. top:181px;
  4548. width:149px;
  4549. height:35px;
  4550. display:flex;
  4551. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4552. font-weight:400;
  4553. font-style:normal;
  4554. font-size:12px;
  4555. color:#606266;
  4556. }
  4557. #u6603 .text {
  4558. position:absolute;
  4559. align-self:center;
  4560. padding:2px 2px 2px 0px;
  4561. box-sizing:border-box;
  4562. width:100%;
  4563. }
  4564. #u6603_text {
  4565. border-width:0px;
  4566. word-wrap:break-word;
  4567. text-transform:none;
  4568. visibility:hidden;
  4569. }
  4570. #u6604_img {
  4571. border-width:0px;
  4572. position:absolute;
  4573. left:0px;
  4574. top:0px;
  4575. width:49px;
  4576. height:35px;
  4577. }
  4578. #u6604 {
  4579. border-width:0px;
  4580. position:absolute;
  4581. left:0px;
  4582. top:216px;
  4583. width:49px;
  4584. height:35px;
  4585. display:flex;
  4586. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4587. font-weight:400;
  4588. font-style:normal;
  4589. font-size:12px;
  4590. color:#606266;
  4591. }
  4592. #u6604 .text {
  4593. position:absolute;
  4594. align-self:center;
  4595. padding:2px 2px 2px 0px;
  4596. box-sizing:border-box;
  4597. width:100%;
  4598. }
  4599. #u6604_text {
  4600. border-width:0px;
  4601. word-wrap:break-word;
  4602. text-transform:none;
  4603. visibility:hidden;
  4604. }
  4605. #u6605_img {
  4606. border-width:0px;
  4607. position:absolute;
  4608. left:0px;
  4609. top:0px;
  4610. width:98px;
  4611. height:35px;
  4612. }
  4613. #u6605 {
  4614. border-width:0px;
  4615. position:absolute;
  4616. left:49px;
  4617. top:216px;
  4618. width:98px;
  4619. height:35px;
  4620. display:flex;
  4621. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4622. font-weight:400;
  4623. font-style:normal;
  4624. font-size:12px;
  4625. color:#606266;
  4626. }
  4627. #u6605 .text {
  4628. position:absolute;
  4629. align-self:center;
  4630. padding:2px 2px 2px 0px;
  4631. box-sizing:border-box;
  4632. width:100%;
  4633. }
  4634. #u6605_text {
  4635. border-width:0px;
  4636. word-wrap:break-word;
  4637. text-transform:none;
  4638. visibility:hidden;
  4639. }
  4640. #u6606_img {
  4641. border-width:0px;
  4642. position:absolute;
  4643. left:0px;
  4644. top:0px;
  4645. width:110px;
  4646. height:35px;
  4647. }
  4648. #u6606 {
  4649. border-width:0px;
  4650. position:absolute;
  4651. left:147px;
  4652. top:216px;
  4653. width:110px;
  4654. height:35px;
  4655. display:flex;
  4656. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4657. font-weight:400;
  4658. font-style:normal;
  4659. font-size:12px;
  4660. color:#606266;
  4661. }
  4662. #u6606 .text {
  4663. position:absolute;
  4664. align-self:center;
  4665. padding:2px 2px 2px 0px;
  4666. box-sizing:border-box;
  4667. width:100%;
  4668. }
  4669. #u6606_text {
  4670. border-width:0px;
  4671. word-wrap:break-word;
  4672. text-transform:none;
  4673. visibility:hidden;
  4674. }
  4675. #u6607_img {
  4676. border-width:0px;
  4677. position:absolute;
  4678. left:0px;
  4679. top:0px;
  4680. width:115px;
  4681. height:35px;
  4682. }
  4683. #u6607 {
  4684. border-width:0px;
  4685. position:absolute;
  4686. left:257px;
  4687. top:216px;
  4688. width:115px;
  4689. height:35px;
  4690. display:flex;
  4691. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4692. font-weight:400;
  4693. font-style:normal;
  4694. font-size:12px;
  4695. color:#606266;
  4696. }
  4697. #u6607 .text {
  4698. position:absolute;
  4699. align-self:center;
  4700. padding:2px 2px 2px 0px;
  4701. box-sizing:border-box;
  4702. width:100%;
  4703. }
  4704. #u6607_text {
  4705. border-width:0px;
  4706. word-wrap:break-word;
  4707. text-transform:none;
  4708. visibility:hidden;
  4709. }
  4710. #u6608_img {
  4711. border-width:0px;
  4712. position:absolute;
  4713. left:0px;
  4714. top:0px;
  4715. width:115px;
  4716. height:35px;
  4717. }
  4718. #u6608 {
  4719. border-width:0px;
  4720. position:absolute;
  4721. left:372px;
  4722. top:216px;
  4723. width:115px;
  4724. height:35px;
  4725. display:flex;
  4726. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4727. font-weight:400;
  4728. font-style:normal;
  4729. font-size:12px;
  4730. color:#606266;
  4731. }
  4732. #u6608 .text {
  4733. position:absolute;
  4734. align-self:center;
  4735. padding:2px 2px 2px 0px;
  4736. box-sizing:border-box;
  4737. width:100%;
  4738. }
  4739. #u6608_text {
  4740. border-width:0px;
  4741. word-wrap:break-word;
  4742. text-transform:none;
  4743. visibility:hidden;
  4744. }
  4745. #u6609_img {
  4746. border-width:0px;
  4747. position:absolute;
  4748. left:0px;
  4749. top:0px;
  4750. width:98px;
  4751. height:35px;
  4752. }
  4753. #u6609 {
  4754. border-width:0px;
  4755. position:absolute;
  4756. left:487px;
  4757. top:216px;
  4758. width:98px;
  4759. height:35px;
  4760. display:flex;
  4761. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4762. font-weight:400;
  4763. font-style:normal;
  4764. font-size:12px;
  4765. color:#606266;
  4766. }
  4767. #u6609 .text {
  4768. position:absolute;
  4769. align-self:center;
  4770. padding:2px 2px 2px 0px;
  4771. box-sizing:border-box;
  4772. width:100%;
  4773. }
  4774. #u6609_text {
  4775. border-width:0px;
  4776. word-wrap:break-word;
  4777. text-transform:none;
  4778. visibility:hidden;
  4779. }
  4780. #u6610_img {
  4781. border-width:0px;
  4782. position:absolute;
  4783. left:0px;
  4784. top:0px;
  4785. width:116px;
  4786. height:35px;
  4787. }
  4788. #u6610 {
  4789. border-width:0px;
  4790. position:absolute;
  4791. left:585px;
  4792. top:216px;
  4793. width:116px;
  4794. height:35px;
  4795. display:flex;
  4796. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4797. font-weight:400;
  4798. font-style:normal;
  4799. font-size:12px;
  4800. color:#606266;
  4801. }
  4802. #u6610 .text {
  4803. position:absolute;
  4804. align-self:center;
  4805. padding:2px 2px 2px 0px;
  4806. box-sizing:border-box;
  4807. width:100%;
  4808. }
  4809. #u6610_text {
  4810. border-width:0px;
  4811. word-wrap:break-word;
  4812. text-transform:none;
  4813. visibility:hidden;
  4814. }
  4815. #u6611_img {
  4816. border-width:0px;
  4817. position:absolute;
  4818. left:0px;
  4819. top:0px;
  4820. width:115px;
  4821. height:35px;
  4822. }
  4823. #u6611 {
  4824. border-width:0px;
  4825. position:absolute;
  4826. left:701px;
  4827. top:216px;
  4828. width:115px;
  4829. height:35px;
  4830. display:flex;
  4831. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4832. font-weight:400;
  4833. font-style:normal;
  4834. font-size:12px;
  4835. color:#606266;
  4836. }
  4837. #u6611 .text {
  4838. position:absolute;
  4839. align-self:center;
  4840. padding:2px 2px 2px 0px;
  4841. box-sizing:border-box;
  4842. width:100%;
  4843. }
  4844. #u6611_text {
  4845. border-width:0px;
  4846. word-wrap:break-word;
  4847. text-transform:none;
  4848. visibility:hidden;
  4849. }
  4850. #u6612_img {
  4851. border-width:0px;
  4852. position:absolute;
  4853. left:0px;
  4854. top:0px;
  4855. width:127px;
  4856. height:35px;
  4857. }
  4858. #u6612 {
  4859. border-width:0px;
  4860. position:absolute;
  4861. left:816px;
  4862. top:216px;
  4863. width:127px;
  4864. height:35px;
  4865. display:flex;
  4866. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4867. font-weight:400;
  4868. font-style:normal;
  4869. font-size:12px;
  4870. color:#606266;
  4871. }
  4872. #u6612 .text {
  4873. position:absolute;
  4874. align-self:center;
  4875. padding:2px 2px 2px 0px;
  4876. box-sizing:border-box;
  4877. width:100%;
  4878. }
  4879. #u6612_text {
  4880. border-width:0px;
  4881. word-wrap:break-word;
  4882. text-transform:none;
  4883. visibility:hidden;
  4884. }
  4885. #u6613_img {
  4886. border-width:0px;
  4887. position:absolute;
  4888. left:0px;
  4889. top:0px;
  4890. width:123px;
  4891. height:35px;
  4892. }
  4893. #u6613 {
  4894. border-width:0px;
  4895. position:absolute;
  4896. left:943px;
  4897. top:216px;
  4898. width:123px;
  4899. height:35px;
  4900. display:flex;
  4901. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4902. font-weight:400;
  4903. font-style:normal;
  4904. font-size:12px;
  4905. color:#606266;
  4906. }
  4907. #u6613 .text {
  4908. position:absolute;
  4909. align-self:center;
  4910. padding:2px 2px 2px 0px;
  4911. box-sizing:border-box;
  4912. width:100%;
  4913. }
  4914. #u6613_text {
  4915. border-width:0px;
  4916. word-wrap:break-word;
  4917. text-transform:none;
  4918. visibility:hidden;
  4919. }
  4920. #u6614_img {
  4921. border-width:0px;
  4922. position:absolute;
  4923. left:0px;
  4924. top:0px;
  4925. width:149px;
  4926. height:35px;
  4927. }
  4928. #u6614 {
  4929. border-width:0px;
  4930. position:absolute;
  4931. left:1066px;
  4932. top:216px;
  4933. width:149px;
  4934. height:35px;
  4935. display:flex;
  4936. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4937. font-weight:400;
  4938. font-style:normal;
  4939. font-size:12px;
  4940. color:#606266;
  4941. }
  4942. #u6614 .text {
  4943. position:absolute;
  4944. align-self:center;
  4945. padding:2px 2px 2px 0px;
  4946. box-sizing:border-box;
  4947. width:100%;
  4948. }
  4949. #u6614_text {
  4950. border-width:0px;
  4951. word-wrap:break-word;
  4952. text-transform:none;
  4953. visibility:hidden;
  4954. }
  4955. #u6615_img {
  4956. border-width:0px;
  4957. position:absolute;
  4958. left:0px;
  4959. top:0px;
  4960. width:49px;
  4961. height:32px;
  4962. }
  4963. #u6615 {
  4964. border-width:0px;
  4965. position:absolute;
  4966. left:0px;
  4967. top:251px;
  4968. width:49px;
  4969. height:32px;
  4970. display:flex;
  4971. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4972. font-weight:400;
  4973. font-style:normal;
  4974. font-size:12px;
  4975. color:#606266;
  4976. }
  4977. #u6615 .text {
  4978. position:absolute;
  4979. align-self:center;
  4980. padding:2px 2px 2px 0px;
  4981. box-sizing:border-box;
  4982. width:100%;
  4983. }
  4984. #u6615_text {
  4985. border-width:0px;
  4986. word-wrap:break-word;
  4987. text-transform:none;
  4988. visibility:hidden;
  4989. }
  4990. #u6616_img {
  4991. border-width:0px;
  4992. position:absolute;
  4993. left:0px;
  4994. top:0px;
  4995. width:98px;
  4996. height:32px;
  4997. }
  4998. #u6616 {
  4999. border-width:0px;
  5000. position:absolute;
  5001. left:49px;
  5002. top:251px;
  5003. width:98px;
  5004. height:32px;
  5005. display:flex;
  5006. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5007. font-weight:400;
  5008. font-style:normal;
  5009. font-size:12px;
  5010. color:#606266;
  5011. }
  5012. #u6616 .text {
  5013. position:absolute;
  5014. align-self:center;
  5015. padding:2px 2px 2px 0px;
  5016. box-sizing:border-box;
  5017. width:100%;
  5018. }
  5019. #u6616_text {
  5020. border-width:0px;
  5021. word-wrap:break-word;
  5022. text-transform:none;
  5023. visibility:hidden;
  5024. }
  5025. #u6617_img {
  5026. border-width:0px;
  5027. position:absolute;
  5028. left:0px;
  5029. top:0px;
  5030. width:110px;
  5031. height:32px;
  5032. }
  5033. #u6617 {
  5034. border-width:0px;
  5035. position:absolute;
  5036. left:147px;
  5037. top:251px;
  5038. width:110px;
  5039. height:32px;
  5040. display:flex;
  5041. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5042. font-weight:400;
  5043. font-style:normal;
  5044. font-size:12px;
  5045. color:#606266;
  5046. }
  5047. #u6617 .text {
  5048. position:absolute;
  5049. align-self:center;
  5050. padding:2px 2px 2px 0px;
  5051. box-sizing:border-box;
  5052. width:100%;
  5053. }
  5054. #u6617_text {
  5055. border-width:0px;
  5056. word-wrap:break-word;
  5057. text-transform:none;
  5058. visibility:hidden;
  5059. }
  5060. #u6618_img {
  5061. border-width:0px;
  5062. position:absolute;
  5063. left:0px;
  5064. top:0px;
  5065. width:115px;
  5066. height:32px;
  5067. }
  5068. #u6618 {
  5069. border-width:0px;
  5070. position:absolute;
  5071. left:257px;
  5072. top:251px;
  5073. width:115px;
  5074. height:32px;
  5075. display:flex;
  5076. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5077. font-weight:400;
  5078. font-style:normal;
  5079. font-size:12px;
  5080. color:#606266;
  5081. }
  5082. #u6618 .text {
  5083. position:absolute;
  5084. align-self:center;
  5085. padding:2px 2px 2px 0px;
  5086. box-sizing:border-box;
  5087. width:100%;
  5088. }
  5089. #u6618_text {
  5090. border-width:0px;
  5091. word-wrap:break-word;
  5092. text-transform:none;
  5093. visibility:hidden;
  5094. }
  5095. #u6619_img {
  5096. border-width:0px;
  5097. position:absolute;
  5098. left:0px;
  5099. top:0px;
  5100. width:115px;
  5101. height:32px;
  5102. }
  5103. #u6619 {
  5104. border-width:0px;
  5105. position:absolute;
  5106. left:372px;
  5107. top:251px;
  5108. width:115px;
  5109. height:32px;
  5110. display:flex;
  5111. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5112. font-weight:400;
  5113. font-style:normal;
  5114. font-size:12px;
  5115. color:#606266;
  5116. }
  5117. #u6619 .text {
  5118. position:absolute;
  5119. align-self:center;
  5120. padding:2px 2px 2px 0px;
  5121. box-sizing:border-box;
  5122. width:100%;
  5123. }
  5124. #u6619_text {
  5125. border-width:0px;
  5126. word-wrap:break-word;
  5127. text-transform:none;
  5128. visibility:hidden;
  5129. }
  5130. #u6620_img {
  5131. border-width:0px;
  5132. position:absolute;
  5133. left:0px;
  5134. top:0px;
  5135. width:98px;
  5136. height:32px;
  5137. }
  5138. #u6620 {
  5139. border-width:0px;
  5140. position:absolute;
  5141. left:487px;
  5142. top:251px;
  5143. width:98px;
  5144. height:32px;
  5145. display:flex;
  5146. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5147. font-weight:400;
  5148. font-style:normal;
  5149. font-size:12px;
  5150. color:#606266;
  5151. }
  5152. #u6620 .text {
  5153. position:absolute;
  5154. align-self:center;
  5155. padding:2px 2px 2px 0px;
  5156. box-sizing:border-box;
  5157. width:100%;
  5158. }
  5159. #u6620_text {
  5160. border-width:0px;
  5161. word-wrap:break-word;
  5162. text-transform:none;
  5163. visibility:hidden;
  5164. }
  5165. #u6621_img {
  5166. border-width:0px;
  5167. position:absolute;
  5168. left:0px;
  5169. top:0px;
  5170. width:116px;
  5171. height:32px;
  5172. }
  5173. #u6621 {
  5174. border-width:0px;
  5175. position:absolute;
  5176. left:585px;
  5177. top:251px;
  5178. width:116px;
  5179. height:32px;
  5180. display:flex;
  5181. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5182. font-weight:400;
  5183. font-style:normal;
  5184. font-size:12px;
  5185. color:#606266;
  5186. }
  5187. #u6621 .text {
  5188. position:absolute;
  5189. align-self:center;
  5190. padding:2px 2px 2px 0px;
  5191. box-sizing:border-box;
  5192. width:100%;
  5193. }
  5194. #u6621_text {
  5195. border-width:0px;
  5196. word-wrap:break-word;
  5197. text-transform:none;
  5198. visibility:hidden;
  5199. }
  5200. #u6622_img {
  5201. border-width:0px;
  5202. position:absolute;
  5203. left:0px;
  5204. top:0px;
  5205. width:115px;
  5206. height:32px;
  5207. }
  5208. #u6622 {
  5209. border-width:0px;
  5210. position:absolute;
  5211. left:701px;
  5212. top:251px;
  5213. width:115px;
  5214. height:32px;
  5215. display:flex;
  5216. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5217. font-weight:400;
  5218. font-style:normal;
  5219. font-size:12px;
  5220. color:#606266;
  5221. }
  5222. #u6622 .text {
  5223. position:absolute;
  5224. align-self:center;
  5225. padding:2px 2px 2px 0px;
  5226. box-sizing:border-box;
  5227. width:100%;
  5228. }
  5229. #u6622_text {
  5230. border-width:0px;
  5231. word-wrap:break-word;
  5232. text-transform:none;
  5233. visibility:hidden;
  5234. }
  5235. #u6623_img {
  5236. border-width:0px;
  5237. position:absolute;
  5238. left:0px;
  5239. top:0px;
  5240. width:127px;
  5241. height:32px;
  5242. }
  5243. #u6623 {
  5244. border-width:0px;
  5245. position:absolute;
  5246. left:816px;
  5247. top:251px;
  5248. width:127px;
  5249. height:32px;
  5250. display:flex;
  5251. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5252. font-weight:400;
  5253. font-style:normal;
  5254. font-size:12px;
  5255. color:#606266;
  5256. }
  5257. #u6623 .text {
  5258. position:absolute;
  5259. align-self:center;
  5260. padding:2px 2px 2px 0px;
  5261. box-sizing:border-box;
  5262. width:100%;
  5263. }
  5264. #u6623_text {
  5265. border-width:0px;
  5266. word-wrap:break-word;
  5267. text-transform:none;
  5268. visibility:hidden;
  5269. }
  5270. #u6624_img {
  5271. border-width:0px;
  5272. position:absolute;
  5273. left:0px;
  5274. top:0px;
  5275. width:123px;
  5276. height:32px;
  5277. }
  5278. #u6624 {
  5279. border-width:0px;
  5280. position:absolute;
  5281. left:943px;
  5282. top:251px;
  5283. width:123px;
  5284. height:32px;
  5285. display:flex;
  5286. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5287. font-weight:400;
  5288. font-style:normal;
  5289. font-size:12px;
  5290. color:#606266;
  5291. }
  5292. #u6624 .text {
  5293. position:absolute;
  5294. align-self:center;
  5295. padding:2px 2px 2px 0px;
  5296. box-sizing:border-box;
  5297. width:100%;
  5298. }
  5299. #u6624_text {
  5300. border-width:0px;
  5301. word-wrap:break-word;
  5302. text-transform:none;
  5303. visibility:hidden;
  5304. }
  5305. #u6625_img {
  5306. border-width:0px;
  5307. position:absolute;
  5308. left:0px;
  5309. top:0px;
  5310. width:149px;
  5311. height:32px;
  5312. }
  5313. #u6625 {
  5314. border-width:0px;
  5315. position:absolute;
  5316. left:1066px;
  5317. top:251px;
  5318. width:149px;
  5319. height:32px;
  5320. display:flex;
  5321. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5322. font-weight:400;
  5323. font-style:normal;
  5324. font-size:12px;
  5325. color:#606266;
  5326. }
  5327. #u6625 .text {
  5328. position:absolute;
  5329. align-self:center;
  5330. padding:2px 2px 2px 0px;
  5331. box-sizing:border-box;
  5332. width:100%;
  5333. }
  5334. #u6625_text {
  5335. border-width:0px;
  5336. word-wrap:break-word;
  5337. text-transform:none;
  5338. visibility:hidden;
  5339. }
  5340. #u6626_div {
  5341. border-width:0px;
  5342. position:absolute;
  5343. left:0px;
  5344. top:0px;
  5345. width:72px;
  5346. height:50px;
  5347. background:inherit;
  5348. background-color:rgba(255, 255, 255, 0);
  5349. border:none;
  5350. border-left:0px;
  5351. border-top:0px;
  5352. border-right:0px;
  5353. border-radius:0px;
  5354. border-bottom-right-radius:0px;
  5355. border-bottom-left-radius:0px;
  5356. -moz-box-shadow:none;
  5357. -webkit-box-shadow:none;
  5358. box-shadow:none;
  5359. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5360. font-weight:500;
  5361. font-style:normal;
  5362. }
  5363. #u6626 {
  5364. border-width:0px;
  5365. position:absolute;
  5366. left:352px;
  5367. top:100px;
  5368. width:72px;
  5369. height:50px;
  5370. display:flex;
  5371. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5372. font-weight:500;
  5373. font-style:normal;
  5374. }
  5375. #u6626 .text {
  5376. position:absolute;
  5377. align-self:center;
  5378. padding:0px 0px 0px 0px;
  5379. box-sizing:border-box;
  5380. width:100%;
  5381. }
  5382. #u6626_text {
  5383. border-width:0px;
  5384. white-space:nowrap;
  5385. text-transform:none;
  5386. }
  5387. #u6627_div {
  5388. border-width:0px;
  5389. position:absolute;
  5390. left:0px;
  5391. top:0px;
  5392. width:78px;
  5393. height:50px;
  5394. background:inherit;
  5395. background-color:rgba(255, 255, 255, 0);
  5396. box-sizing:border-box;
  5397. border-width:2px;
  5398. border-style:solid;
  5399. border-color:rgba(24, 144, 255, 1);
  5400. border-left:0px;
  5401. border-top:0px;
  5402. border-right:0px;
  5403. border-radius:0px;
  5404. border-bottom-right-radius:0px;
  5405. border-bottom-left-radius:0px;
  5406. -moz-box-shadow:none;
  5407. -webkit-box-shadow:none;
  5408. box-shadow:none;
  5409. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5410. font-weight:500;
  5411. font-style:normal;
  5412. color:#1890FF;
  5413. }
  5414. #u6627 {
  5415. border-width:0px;
  5416. position:absolute;
  5417. left:454px;
  5418. top:100px;
  5419. width:78px;
  5420. height:50px;
  5421. display:flex;
  5422. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5423. font-weight:500;
  5424. font-style:normal;
  5425. color:#1890FF;
  5426. }
  5427. #u6627 .text {
  5428. position:absolute;
  5429. align-self:center;
  5430. padding:0px 0px 0px 0px;
  5431. box-sizing:border-box;
  5432. width:100%;
  5433. }
  5434. #u6627_text {
  5435. border-width:0px;
  5436. white-space:nowrap;
  5437. text-transform:none;
  5438. }
  5439. #u6628_div {
  5440. border-width:0px;
  5441. position:absolute;
  5442. left:0px;
  5443. top:0px;
  5444. width:97px;
  5445. height:50px;
  5446. background:inherit;
  5447. background-color:rgba(255, 255, 255, 0);
  5448. border:none;
  5449. border-left:0px;
  5450. border-top:0px;
  5451. border-right:0px;
  5452. border-radius:0px;
  5453. border-bottom-right-radius:0px;
  5454. border-bottom-left-radius:0px;
  5455. -moz-box-shadow:none;
  5456. -webkit-box-shadow:none;
  5457. box-shadow:none;
  5458. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5459. font-weight:500;
  5460. font-style:normal;
  5461. }
  5462. #u6628 {
  5463. border-width:0px;
  5464. position:absolute;
  5465. left:562px;
  5466. top:100px;
  5467. width:97px;
  5468. height:50px;
  5469. display:flex;
  5470. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5471. font-weight:500;
  5472. font-style:normal;
  5473. }
  5474. #u6628 .text {
  5475. position:absolute;
  5476. align-self:center;
  5477. padding:0px 0px 0px 0px;
  5478. box-sizing:border-box;
  5479. width:100%;
  5480. }
  5481. #u6628_text {
  5482. border-width:0px;
  5483. white-space:nowrap;
  5484. text-transform:none;
  5485. }
  5486. #u6629_div {
  5487. border-width:0px;
  5488. position:absolute;
  5489. left:0px;
  5490. top:0px;
  5491. width:92px;
  5492. height:50px;
  5493. background:inherit;
  5494. background-color:rgba(255, 255, 255, 0);
  5495. border:none;
  5496. border-left:0px;
  5497. border-top:0px;
  5498. border-right:0px;
  5499. border-radius:0px;
  5500. border-bottom-right-radius:0px;
  5501. border-bottom-left-radius:0px;
  5502. -moz-box-shadow:none;
  5503. -webkit-box-shadow:none;
  5504. box-shadow:none;
  5505. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5506. font-weight:500;
  5507. font-style:normal;
  5508. }
  5509. #u6629 {
  5510. border-width:0px;
  5511. position:absolute;
  5512. left:689px;
  5513. top:100px;
  5514. width:92px;
  5515. height:50px;
  5516. display:flex;
  5517. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5518. font-weight:500;
  5519. font-style:normal;
  5520. }
  5521. #u6629 .text {
  5522. position:absolute;
  5523. align-self:center;
  5524. padding:0px 0px 0px 0px;
  5525. box-sizing:border-box;
  5526. width:100%;
  5527. }
  5528. #u6629_text {
  5529. border-width:0px;
  5530. white-space:nowrap;
  5531. text-transform:none;
  5532. }
  5533. #u6630 {
  5534. border-width:0px;
  5535. position:absolute;
  5536. left:0px;
  5537. top:0px;
  5538. width:0px;
  5539. height:0px;
  5540. }
  5541. #u6631_div {
  5542. border-width:0px;
  5543. position:absolute;
  5544. left:0px;
  5545. top:0px;
  5546. width:140px;
  5547. height:30px;
  5548. background:inherit;
  5549. background-color:rgba(255, 255, 255, 1);
  5550. box-sizing:border-box;
  5551. border-width:1px;
  5552. border-style:solid;
  5553. border-color:rgba(201, 201, 201, 1);
  5554. border-radius:4px;
  5555. -moz-box-shadow:none;
  5556. -webkit-box-shadow:none;
  5557. box-shadow:none;
  5558. font-family:'Microsoft YaHei', sans-serif;
  5559. font-weight:400;
  5560. font-style:normal;
  5561. font-size:14px;
  5562. color:#CCCCCC;
  5563. text-align:left;
  5564. }
  5565. #u6631 {
  5566. border-width:0px;
  5567. position:absolute;
  5568. left:352px;
  5569. top:171px;
  5570. width:140px;
  5571. height:30px;
  5572. display:flex;
  5573. font-family:'Microsoft YaHei', sans-serif;
  5574. font-weight:400;
  5575. font-style:normal;
  5576. font-size:14px;
  5577. color:#CCCCCC;
  5578. text-align:left;
  5579. }
  5580. #u6631 .text {
  5581. position:absolute;
  5582. align-self:center;
  5583. padding:2px 8px 2px 8px;
  5584. box-sizing:border-box;
  5585. width:100%;
  5586. }
  5587. #u6631_text {
  5588. border-width:0px;
  5589. word-wrap:break-word;
  5590. text-transform:none;
  5591. visibility:hidden;
  5592. }
  5593. #u6632_input {
  5594. position:absolute;
  5595. left:0px;
  5596. top:0px;
  5597. width:127px;
  5598. height:25px;
  5599. padding:2px 2px 2px 2px;
  5600. font-family:'Microsoft YaHei', sans-serif;
  5601. font-weight:400;
  5602. font-style:normal;
  5603. font-size:10px;
  5604. letter-spacing:normal;
  5605. color:#000000;
  5606. vertical-align:none;
  5607. text-align:left;
  5608. text-transform:none;
  5609. background-color:transparent;
  5610. border-color:transparent;
  5611. }
  5612. #u6632_input.disabled {
  5613. position:absolute;
  5614. left:0px;
  5615. top:0px;
  5616. width:127px;
  5617. height:25px;
  5618. padding:2px 2px 2px 2px;
  5619. font-family:'Microsoft YaHei', sans-serif;
  5620. font-weight:400;
  5621. font-style:normal;
  5622. font-size:10px;
  5623. letter-spacing:normal;
  5624. color:#000000;
  5625. vertical-align:none;
  5626. text-align:left;
  5627. text-transform:none;
  5628. background-color:transparent;
  5629. border-color:transparent;
  5630. }
  5631. #u6632_div {
  5632. border-width:0px;
  5633. position:absolute;
  5634. left:0px;
  5635. top:0px;
  5636. width:127px;
  5637. height:25px;
  5638. background:inherit;
  5639. background-color:rgba(255, 255, 255, 1);
  5640. border:none;
  5641. border-radius:0px;
  5642. -moz-box-shadow:none;
  5643. -webkit-box-shadow:none;
  5644. box-shadow:none;
  5645. font-family:'Microsoft YaHei', sans-serif;
  5646. font-weight:400;
  5647. font-style:normal;
  5648. font-size:10px;
  5649. }
  5650. #u6632 {
  5651. border-width:0px;
  5652. position:absolute;
  5653. left:360px;
  5654. top:172px;
  5655. width:127px;
  5656. height:25px;
  5657. display:flex;
  5658. font-family:'Microsoft YaHei', sans-serif;
  5659. font-weight:400;
  5660. font-style:normal;
  5661. font-size:10px;
  5662. }
  5663. #u6632 .text {
  5664. position:absolute;
  5665. align-self:center;
  5666. padding:2px 2px 2px 2px;
  5667. box-sizing:border-box;
  5668. width:100%;
  5669. }
  5670. #u6632_div.disabled {
  5671. border-width:0px;
  5672. position:absolute;
  5673. left:0px;
  5674. top:0px;
  5675. width:127px;
  5676. height:25px;
  5677. background:inherit;
  5678. background-color:rgba(240, 240, 240, 1);
  5679. border:none;
  5680. border-radius:0px;
  5681. -moz-box-shadow:none;
  5682. -webkit-box-shadow:none;
  5683. box-shadow:none;
  5684. font-family:'Microsoft YaHei', sans-serif;
  5685. font-weight:400;
  5686. font-style:normal;
  5687. font-size:10px;
  5688. }
  5689. #u6632.disabled {
  5690. }
  5691. #u6633 {
  5692. border-width:0px;
  5693. position:absolute;
  5694. left:0px;
  5695. top:0px;
  5696. width:0px;
  5697. height:0px;
  5698. }
  5699. #u6634_div {
  5700. border-width:0px;
  5701. position:absolute;
  5702. left:0px;
  5703. top:0px;
  5704. width:140px;
  5705. height:30px;
  5706. background:inherit;
  5707. background-color:rgba(255, 255, 255, 1);
  5708. box-sizing:border-box;
  5709. border-width:1px;
  5710. border-style:solid;
  5711. border-color:rgba(215, 215, 215, 1);
  5712. border-radius:4px;
  5713. -moz-box-shadow:none;
  5714. -webkit-box-shadow:none;
  5715. box-shadow:none;
  5716. font-size:11px;
  5717. }
  5718. #u6634 {
  5719. border-width:0px;
  5720. position:absolute;
  5721. left:1253px;
  5722. top:170px;
  5723. width:140px;
  5724. height:30px;
  5725. display:flex;
  5726. font-size:11px;
  5727. }
  5728. #u6634 .text {
  5729. position:absolute;
  5730. align-self:center;
  5731. padding:2px 2px 2px 2px;
  5732. box-sizing:border-box;
  5733. width:100%;
  5734. }
  5735. #u6634_text {
  5736. border-width:0px;
  5737. word-wrap:break-word;
  5738. text-transform:none;
  5739. visibility:hidden;
  5740. }
  5741. #u6635_input {
  5742. position:absolute;
  5743. left:0px;
  5744. top:0px;
  5745. width:120px;
  5746. height:23px;
  5747. padding:2px 2px 2px 2px;
  5748. font-family:'ArialMT', 'Arial', sans-serif;
  5749. font-weight:400;
  5750. font-style:normal;
  5751. font-size:11px;
  5752. letter-spacing:normal;
  5753. color:#AAAAAA;
  5754. vertical-align:none;
  5755. text-align:left;
  5756. text-transform:none;
  5757. background-color:transparent;
  5758. border-color:transparent;
  5759. }
  5760. #u6635_input.disabled {
  5761. position:absolute;
  5762. left:0px;
  5763. top:0px;
  5764. width:120px;
  5765. height:23px;
  5766. padding:2px 2px 2px 2px;
  5767. font-family:'ArialMT', 'Arial', sans-serif;
  5768. font-weight:400;
  5769. font-style:normal;
  5770. font-size:11px;
  5771. letter-spacing:normal;
  5772. color:#AAAAAA;
  5773. vertical-align:none;
  5774. text-align:left;
  5775. text-transform:none;
  5776. background-color:transparent;
  5777. border-color:transparent;
  5778. }
  5779. #u6635_div {
  5780. border-width:0px;
  5781. position:absolute;
  5782. left:0px;
  5783. top:0px;
  5784. width:120px;
  5785. height:23px;
  5786. background:inherit;
  5787. background-color:rgba(255, 255, 255, 1);
  5788. border:none;
  5789. border-radius:0px;
  5790. -moz-box-shadow:none;
  5791. -webkit-box-shadow:none;
  5792. box-shadow:none;
  5793. font-size:11px;
  5794. color:#AAAAAA;
  5795. }
  5796. #u6635 {
  5797. border-width:0px;
  5798. position:absolute;
  5799. left:1260px;
  5800. top:172px;
  5801. width:120px;
  5802. height:23px;
  5803. display:flex;
  5804. font-size:11px;
  5805. color:#AAAAAA;
  5806. }
  5807. #u6635 .text {
  5808. position:absolute;
  5809. align-self:flex-start;
  5810. padding:2px 2px 2px 2px;
  5811. box-sizing:border-box;
  5812. width:100%;
  5813. }
  5814. #u6635_div.disabled {
  5815. border-width:0px;
  5816. position:absolute;
  5817. left:0px;
  5818. top:0px;
  5819. width:120px;
  5820. height:23px;
  5821. background:inherit;
  5822. background-color:rgba(240, 240, 240, 1);
  5823. border:none;
  5824. border-radius:0px;
  5825. -moz-box-shadow:none;
  5826. -webkit-box-shadow:none;
  5827. box-shadow:none;
  5828. font-size:11px;
  5829. color:#AAAAAA;
  5830. }
  5831. #u6635.disabled {
  5832. }
  5833. .u6635_input_option {
  5834. font-size:11px;
  5835. }
  5836. #u6636_div {
  5837. border-width:0px;
  5838. position:absolute;
  5839. left:0px;
  5840. top:0px;
  5841. width:59px;
  5842. height:30px;
  5843. background:inherit;
  5844. background-color:rgba(0, 153, 255, 1);
  5845. box-sizing:border-box;
  5846. border-width:1px;
  5847. border-style:solid;
  5848. border-color:rgba(0, 153, 255, 1);
  5849. border-radius:4px;
  5850. -moz-box-shadow:none;
  5851. -webkit-box-shadow:none;
  5852. box-shadow:none;
  5853. font-family:'Microsoft YaHei', sans-serif;
  5854. font-weight:400;
  5855. font-style:normal;
  5856. font-size:14px;
  5857. color:#FFFFFF;
  5858. }
  5859. #u6636 {
  5860. border-width:0px;
  5861. position:absolute;
  5862. left:503px;
  5863. top:211px;
  5864. width:59px;
  5865. height:30px;
  5866. display:flex;
  5867. font-family:'Microsoft YaHei', sans-serif;
  5868. font-weight:400;
  5869. font-style:normal;
  5870. font-size:14px;
  5871. color:#FFFFFF;
  5872. }
  5873. #u6636 .text {
  5874. position:absolute;
  5875. align-self:center;
  5876. padding:5px 15px 5px 15px;
  5877. box-sizing:border-box;
  5878. width:100%;
  5879. }
  5880. #u6636_text {
  5881. border-width:0px;
  5882. white-space:nowrap;
  5883. text-transform:none;
  5884. }
  5885. #u6637 {
  5886. border-width:0px;
  5887. position:absolute;
  5888. left:0px;
  5889. top:0px;
  5890. width:0px;
  5891. height:0px;
  5892. }
  5893. #u6638_div {
  5894. border-width:0px;
  5895. position:absolute;
  5896. left:0px;
  5897. top:0px;
  5898. width:140px;
  5899. height:30px;
  5900. background:inherit;
  5901. background-color:rgba(255, 255, 255, 1);
  5902. box-sizing:border-box;
  5903. border-width:1px;
  5904. border-style:solid;
  5905. border-color:rgba(215, 215, 215, 1);
  5906. border-radius:4px;
  5907. -moz-box-shadow:none;
  5908. -webkit-box-shadow:none;
  5909. box-shadow:none;
  5910. font-size:11px;
  5911. }
  5912. #u6638 {
  5913. border-width:0px;
  5914. position:absolute;
  5915. left:1403px;
  5916. top:171px;
  5917. width:140px;
  5918. height:30px;
  5919. display:flex;
  5920. font-size:11px;
  5921. }
  5922. #u6638 .text {
  5923. position:absolute;
  5924. align-self:center;
  5925. padding:2px 2px 2px 2px;
  5926. box-sizing:border-box;
  5927. width:100%;
  5928. }
  5929. #u6638_text {
  5930. border-width:0px;
  5931. word-wrap:break-word;
  5932. text-transform:none;
  5933. visibility:hidden;
  5934. }
  5935. #u6639_input {
  5936. position:absolute;
  5937. left:0px;
  5938. top:0px;
  5939. width:123px;
  5940. height:23px;
  5941. padding:2px 2px 2px 2px;
  5942. font-family:'ArialMT', 'Arial', sans-serif;
  5943. font-weight:400;
  5944. font-style:normal;
  5945. font-size:11px;
  5946. letter-spacing:normal;
  5947. color:#AAAAAA;
  5948. vertical-align:none;
  5949. text-align:left;
  5950. text-transform:none;
  5951. background-color:transparent;
  5952. border-color:transparent;
  5953. }
  5954. #u6639_input.disabled {
  5955. position:absolute;
  5956. left:0px;
  5957. top:0px;
  5958. width:123px;
  5959. height:23px;
  5960. padding:2px 2px 2px 2px;
  5961. font-family:'ArialMT', 'Arial', sans-serif;
  5962. font-weight:400;
  5963. font-style:normal;
  5964. font-size:11px;
  5965. letter-spacing:normal;
  5966. color:#AAAAAA;
  5967. vertical-align:none;
  5968. text-align:left;
  5969. text-transform:none;
  5970. background-color:transparent;
  5971. border-color:transparent;
  5972. }
  5973. #u6639_div {
  5974. border-width:0px;
  5975. position:absolute;
  5976. left:0px;
  5977. top:0px;
  5978. width:123px;
  5979. height:23px;
  5980. background:inherit;
  5981. background-color:rgba(255, 255, 255, 1);
  5982. border:none;
  5983. border-radius:0px;
  5984. -moz-box-shadow:none;
  5985. -webkit-box-shadow:none;
  5986. box-shadow:none;
  5987. font-size:11px;
  5988. color:#AAAAAA;
  5989. }
  5990. #u6639 {
  5991. border-width:0px;
  5992. position:absolute;
  5993. left:1409px;
  5994. top:173px;
  5995. width:123px;
  5996. height:23px;
  5997. display:flex;
  5998. font-size:11px;
  5999. color:#AAAAAA;
  6000. }
  6001. #u6639 .text {
  6002. position:absolute;
  6003. align-self:flex-start;
  6004. padding:2px 2px 2px 2px;
  6005. box-sizing:border-box;
  6006. width:100%;
  6007. }
  6008. #u6639_div.disabled {
  6009. border-width:0px;
  6010. position:absolute;
  6011. left:0px;
  6012. top:0px;
  6013. width:123px;
  6014. height:23px;
  6015. background:inherit;
  6016. background-color:rgba(240, 240, 240, 1);
  6017. border:none;
  6018. border-radius:0px;
  6019. -moz-box-shadow:none;
  6020. -webkit-box-shadow:none;
  6021. box-shadow:none;
  6022. font-size:11px;
  6023. color:#AAAAAA;
  6024. }
  6025. #u6639.disabled {
  6026. }
  6027. .u6639_input_option {
  6028. font-size:11px;
  6029. }
  6030. #u6640 {
  6031. border-width:0px;
  6032. position:absolute;
  6033. left:0px;
  6034. top:0px;
  6035. width:0px;
  6036. height:0px;
  6037. }
  6038. #u6641_div {
  6039. border-width:0px;
  6040. position:absolute;
  6041. left:0px;
  6042. top:0px;
  6043. width:140px;
  6044. height:30px;
  6045. background:inherit;
  6046. background-color:rgba(255, 255, 255, 1);
  6047. box-sizing:border-box;
  6048. border-width:1px;
  6049. border-style:solid;
  6050. border-color:rgba(201, 201, 201, 1);
  6051. border-radius:4px;
  6052. -moz-box-shadow:none;
  6053. -webkit-box-shadow:none;
  6054. box-shadow:none;
  6055. font-family:'Microsoft YaHei', sans-serif;
  6056. font-weight:400;
  6057. font-style:normal;
  6058. font-size:14px;
  6059. color:#CCCCCC;
  6060. text-align:left;
  6061. }
  6062. #u6641 {
  6063. border-width:0px;
  6064. position:absolute;
  6065. left:503px;
  6066. top:171px;
  6067. width:140px;
  6068. height:30px;
  6069. display:flex;
  6070. font-family:'Microsoft YaHei', sans-serif;
  6071. font-weight:400;
  6072. font-style:normal;
  6073. font-size:14px;
  6074. color:#CCCCCC;
  6075. text-align:left;
  6076. }
  6077. #u6641 .text {
  6078. position:absolute;
  6079. align-self:center;
  6080. padding:2px 8px 2px 8px;
  6081. box-sizing:border-box;
  6082. width:100%;
  6083. }
  6084. #u6641_text {
  6085. border-width:0px;
  6086. word-wrap:break-word;
  6087. text-transform:none;
  6088. visibility:hidden;
  6089. }
  6090. #u6642_input {
  6091. position:absolute;
  6092. left:0px;
  6093. top:0px;
  6094. width:127px;
  6095. height:25px;
  6096. padding:2px 2px 2px 2px;
  6097. font-family:'Microsoft YaHei', sans-serif;
  6098. font-weight:400;
  6099. font-style:normal;
  6100. font-size:10px;
  6101. letter-spacing:normal;
  6102. color:#000000;
  6103. vertical-align:none;
  6104. text-align:left;
  6105. text-transform:none;
  6106. background-color:transparent;
  6107. border-color:transparent;
  6108. }
  6109. #u6642_input.disabled {
  6110. position:absolute;
  6111. left:0px;
  6112. top:0px;
  6113. width:127px;
  6114. height:25px;
  6115. padding:2px 2px 2px 2px;
  6116. font-family:'Microsoft YaHei', sans-serif;
  6117. font-weight:400;
  6118. font-style:normal;
  6119. font-size:10px;
  6120. letter-spacing:normal;
  6121. color:#000000;
  6122. vertical-align:none;
  6123. text-align:left;
  6124. text-transform:none;
  6125. background-color:transparent;
  6126. border-color:transparent;
  6127. }
  6128. #u6642_div {
  6129. border-width:0px;
  6130. position:absolute;
  6131. left:0px;
  6132. top:0px;
  6133. width:127px;
  6134. height:25px;
  6135. background:inherit;
  6136. background-color:rgba(255, 255, 255, 1);
  6137. border:none;
  6138. border-radius:0px;
  6139. -moz-box-shadow:none;
  6140. -webkit-box-shadow:none;
  6141. box-shadow:none;
  6142. font-family:'Microsoft YaHei', sans-serif;
  6143. font-weight:400;
  6144. font-style:normal;
  6145. font-size:10px;
  6146. }
  6147. #u6642 {
  6148. border-width:0px;
  6149. position:absolute;
  6150. left:511px;
  6151. top:172px;
  6152. width:127px;
  6153. height:25px;
  6154. display:flex;
  6155. font-family:'Microsoft YaHei', sans-serif;
  6156. font-weight:400;
  6157. font-style:normal;
  6158. font-size:10px;
  6159. }
  6160. #u6642 .text {
  6161. position:absolute;
  6162. align-self:center;
  6163. padding:2px 2px 2px 2px;
  6164. box-sizing:border-box;
  6165. width:100%;
  6166. }
  6167. #u6642_div.disabled {
  6168. border-width:0px;
  6169. position:absolute;
  6170. left:0px;
  6171. top:0px;
  6172. width:127px;
  6173. height:25px;
  6174. background:inherit;
  6175. background-color:rgba(240, 240, 240, 1);
  6176. border:none;
  6177. border-radius:0px;
  6178. -moz-box-shadow:none;
  6179. -webkit-box-shadow:none;
  6180. box-shadow:none;
  6181. font-family:'Microsoft YaHei', sans-serif;
  6182. font-weight:400;
  6183. font-style:normal;
  6184. font-size:10px;
  6185. }
  6186. #u6642.disabled {
  6187. }
  6188. #u6643 {
  6189. border-width:0px;
  6190. position:absolute;
  6191. left:0px;
  6192. top:0px;
  6193. width:0px;
  6194. height:0px;
  6195. }
  6196. #u6644_div {
  6197. border-width:0px;
  6198. position:absolute;
  6199. left:0px;
  6200. top:0px;
  6201. width:140px;
  6202. height:30px;
  6203. background:inherit;
  6204. background-color:rgba(255, 255, 255, 1);
  6205. box-sizing:border-box;
  6206. border-width:1px;
  6207. border-style:solid;
  6208. border-color:rgba(201, 201, 201, 1);
  6209. border-radius:4px;
  6210. -moz-box-shadow:none;
  6211. -webkit-box-shadow:none;
  6212. box-shadow:none;
  6213. font-family:'Microsoft YaHei', sans-serif;
  6214. font-weight:400;
  6215. font-style:normal;
  6216. font-size:14px;
  6217. color:#CCCCCC;
  6218. text-align:left;
  6219. }
  6220. #u6644 {
  6221. border-width:0px;
  6222. position:absolute;
  6223. left:653px;
  6224. top:171px;
  6225. width:140px;
  6226. height:30px;
  6227. display:flex;
  6228. font-family:'Microsoft YaHei', sans-serif;
  6229. font-weight:400;
  6230. font-style:normal;
  6231. font-size:14px;
  6232. color:#CCCCCC;
  6233. text-align:left;
  6234. }
  6235. #u6644 .text {
  6236. position:absolute;
  6237. align-self:center;
  6238. padding:2px 8px 2px 8px;
  6239. box-sizing:border-box;
  6240. width:100%;
  6241. }
  6242. #u6644_text {
  6243. border-width:0px;
  6244. word-wrap:break-word;
  6245. text-transform:none;
  6246. visibility:hidden;
  6247. }
  6248. #u6645_input {
  6249. position:absolute;
  6250. left:0px;
  6251. top:0px;
  6252. width:127px;
  6253. height:25px;
  6254. padding:2px 2px 2px 2px;
  6255. font-family:'Microsoft YaHei', sans-serif;
  6256. font-weight:400;
  6257. font-style:normal;
  6258. font-size:10px;
  6259. letter-spacing:normal;
  6260. color:#000000;
  6261. vertical-align:none;
  6262. text-align:left;
  6263. text-transform:none;
  6264. background-color:transparent;
  6265. border-color:transparent;
  6266. }
  6267. #u6645_input.disabled {
  6268. position:absolute;
  6269. left:0px;
  6270. top:0px;
  6271. width:127px;
  6272. height:25px;
  6273. padding:2px 2px 2px 2px;
  6274. font-family:'Microsoft YaHei', sans-serif;
  6275. font-weight:400;
  6276. font-style:normal;
  6277. font-size:10px;
  6278. letter-spacing:normal;
  6279. color:#000000;
  6280. vertical-align:none;
  6281. text-align:left;
  6282. text-transform:none;
  6283. background-color:transparent;
  6284. border-color:transparent;
  6285. }
  6286. #u6645_div {
  6287. border-width:0px;
  6288. position:absolute;
  6289. left:0px;
  6290. top:0px;
  6291. width:127px;
  6292. height:25px;
  6293. background:inherit;
  6294. background-color:rgba(255, 255, 255, 1);
  6295. border:none;
  6296. border-radius:0px;
  6297. -moz-box-shadow:none;
  6298. -webkit-box-shadow:none;
  6299. box-shadow:none;
  6300. font-family:'Microsoft YaHei', sans-serif;
  6301. font-weight:400;
  6302. font-style:normal;
  6303. font-size:10px;
  6304. }
  6305. #u6645 {
  6306. border-width:0px;
  6307. position:absolute;
  6308. left:661px;
  6309. top:172px;
  6310. width:127px;
  6311. height:25px;
  6312. display:flex;
  6313. font-family:'Microsoft YaHei', sans-serif;
  6314. font-weight:400;
  6315. font-style:normal;
  6316. font-size:10px;
  6317. }
  6318. #u6645 .text {
  6319. position:absolute;
  6320. align-self:center;
  6321. padding:2px 2px 2px 2px;
  6322. box-sizing:border-box;
  6323. width:100%;
  6324. }
  6325. #u6645_div.disabled {
  6326. border-width:0px;
  6327. position:absolute;
  6328. left:0px;
  6329. top:0px;
  6330. width:127px;
  6331. height:25px;
  6332. background:inherit;
  6333. background-color:rgba(240, 240, 240, 1);
  6334. border:none;
  6335. border-radius:0px;
  6336. -moz-box-shadow:none;
  6337. -webkit-box-shadow:none;
  6338. box-shadow:none;
  6339. font-family:'Microsoft YaHei', sans-serif;
  6340. font-weight:400;
  6341. font-style:normal;
  6342. font-size:10px;
  6343. }
  6344. #u6645.disabled {
  6345. }
  6346. #u6646 {
  6347. border-width:0px;
  6348. position:absolute;
  6349. left:0px;
  6350. top:0px;
  6351. width:0px;
  6352. height:0px;
  6353. }
  6354. #u6647_div {
  6355. border-width:0px;
  6356. position:absolute;
  6357. left:0px;
  6358. top:0px;
  6359. width:140px;
  6360. height:30px;
  6361. background:inherit;
  6362. background-color:rgba(255, 255, 255, 1);
  6363. box-sizing:border-box;
  6364. border-width:1px;
  6365. border-style:solid;
  6366. border-color:rgba(215, 215, 215, 1);
  6367. border-radius:4px;
  6368. -moz-box-shadow:none;
  6369. -webkit-box-shadow:none;
  6370. box-shadow:none;
  6371. font-size:11px;
  6372. }
  6373. #u6647 {
  6374. border-width:0px;
  6375. position:absolute;
  6376. left:1103px;
  6377. top:171px;
  6378. width:140px;
  6379. height:30px;
  6380. display:flex;
  6381. font-size:11px;
  6382. }
  6383. #u6647 .text {
  6384. position:absolute;
  6385. align-self:center;
  6386. padding:2px 2px 2px 2px;
  6387. box-sizing:border-box;
  6388. width:100%;
  6389. }
  6390. #u6647_text {
  6391. border-width:0px;
  6392. word-wrap:break-word;
  6393. text-transform:none;
  6394. visibility:hidden;
  6395. }
  6396. #u6648_input {
  6397. position:absolute;
  6398. left:0px;
  6399. top:0px;
  6400. width:120px;
  6401. height:23px;
  6402. padding:2px 2px 2px 2px;
  6403. font-family:'ArialMT', 'Arial', sans-serif;
  6404. font-weight:400;
  6405. font-style:normal;
  6406. font-size:11px;
  6407. letter-spacing:normal;
  6408. color:#AAAAAA;
  6409. vertical-align:none;
  6410. text-align:left;
  6411. text-transform:none;
  6412. background-color:transparent;
  6413. border-color:transparent;
  6414. }
  6415. #u6648_input.disabled {
  6416. position:absolute;
  6417. left:0px;
  6418. top:0px;
  6419. width:120px;
  6420. height:23px;
  6421. padding:2px 2px 2px 2px;
  6422. font-family:'ArialMT', 'Arial', sans-serif;
  6423. font-weight:400;
  6424. font-style:normal;
  6425. font-size:11px;
  6426. letter-spacing:normal;
  6427. color:#AAAAAA;
  6428. vertical-align:none;
  6429. text-align:left;
  6430. text-transform:none;
  6431. background-color:transparent;
  6432. border-color:transparent;
  6433. }
  6434. #u6648_div {
  6435. border-width:0px;
  6436. position:absolute;
  6437. left:0px;
  6438. top:0px;
  6439. width:120px;
  6440. height:23px;
  6441. background:inherit;
  6442. background-color:rgba(255, 255, 255, 1);
  6443. border:none;
  6444. border-radius:0px;
  6445. -moz-box-shadow:none;
  6446. -webkit-box-shadow:none;
  6447. box-shadow:none;
  6448. font-size:11px;
  6449. color:#AAAAAA;
  6450. }
  6451. #u6648 {
  6452. border-width:0px;
  6453. position:absolute;
  6454. left:1110px;
  6455. top:173px;
  6456. width:120px;
  6457. height:23px;
  6458. display:flex;
  6459. font-size:11px;
  6460. color:#AAAAAA;
  6461. }
  6462. #u6648 .text {
  6463. position:absolute;
  6464. align-self:flex-start;
  6465. padding:2px 2px 2px 2px;
  6466. box-sizing:border-box;
  6467. width:100%;
  6468. }
  6469. #u6648_div.disabled {
  6470. border-width:0px;
  6471. position:absolute;
  6472. left:0px;
  6473. top:0px;
  6474. width:120px;
  6475. height:23px;
  6476. background:inherit;
  6477. background-color:rgba(240, 240, 240, 1);
  6478. border:none;
  6479. border-radius:0px;
  6480. -moz-box-shadow:none;
  6481. -webkit-box-shadow:none;
  6482. box-shadow:none;
  6483. font-size:11px;
  6484. color:#AAAAAA;
  6485. }
  6486. #u6648.disabled {
  6487. }
  6488. .u6648_input_option {
  6489. font-size:11px;
  6490. }
  6491. #u6649_div {
  6492. border-width:0px;
  6493. position:absolute;
  6494. left:0px;
  6495. top:0px;
  6496. width:55px;
  6497. height:30px;
  6498. background:inherit;
  6499. background-color:rgba(255, 255, 255, 1);
  6500. box-sizing:border-box;
  6501. border-width:1px;
  6502. border-style:solid;
  6503. border-color:rgba(170, 170, 170, 1);
  6504. border-radius:4px;
  6505. -moz-box-shadow:none;
  6506. -webkit-box-shadow:none;
  6507. box-shadow:none;
  6508. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6509. font-weight:400;
  6510. font-style:normal;
  6511. font-size:12px;
  6512. color:#555555;
  6513. }
  6514. #u6649 {
  6515. border-width:0px;
  6516. position:absolute;
  6517. left:572px;
  6518. top:211px;
  6519. width:55px;
  6520. height:30px;
  6521. display:flex;
  6522. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6523. font-weight:400;
  6524. font-style:normal;
  6525. font-size:12px;
  6526. color:#555555;
  6527. }
  6528. #u6649 .text {
  6529. position:absolute;
  6530. align-self:center;
  6531. padding:5px 15px 5px 15px;
  6532. box-sizing:border-box;
  6533. width:100%;
  6534. }
  6535. #u6649_text {
  6536. border-width:0px;
  6537. white-space:nowrap;
  6538. text-transform:none;
  6539. }
  6540. #u6650 {
  6541. border-width:0px;
  6542. position:absolute;
  6543. left:0px;
  6544. top:0px;
  6545. width:0px;
  6546. height:0px;
  6547. }
  6548. #u6651_div {
  6549. border-width:0px;
  6550. position:absolute;
  6551. left:0px;
  6552. top:0px;
  6553. width:140px;
  6554. height:30px;
  6555. background:inherit;
  6556. background-color:rgba(255, 255, 255, 1);
  6557. box-sizing:border-box;
  6558. border-width:1px;
  6559. border-style:solid;
  6560. border-color:rgba(201, 201, 201, 1);
  6561. border-radius:4px;
  6562. -moz-box-shadow:none;
  6563. -webkit-box-shadow:none;
  6564. box-shadow:none;
  6565. font-family:'Microsoft YaHei', sans-serif;
  6566. font-weight:400;
  6567. font-style:normal;
  6568. font-size:14px;
  6569. color:#CCCCCC;
  6570. text-align:left;
  6571. }
  6572. #u6651 {
  6573. border-width:0px;
  6574. position:absolute;
  6575. left:803px;
  6576. top:171px;
  6577. width:140px;
  6578. height:30px;
  6579. display:flex;
  6580. font-family:'Microsoft YaHei', sans-serif;
  6581. font-weight:400;
  6582. font-style:normal;
  6583. font-size:14px;
  6584. color:#CCCCCC;
  6585. text-align:left;
  6586. }
  6587. #u6651 .text {
  6588. position:absolute;
  6589. align-self:center;
  6590. padding:2px 8px 2px 8px;
  6591. box-sizing:border-box;
  6592. width:100%;
  6593. }
  6594. #u6651_text {
  6595. border-width:0px;
  6596. word-wrap:break-word;
  6597. text-transform:none;
  6598. visibility:hidden;
  6599. }
  6600. #u6652_input {
  6601. position:absolute;
  6602. left:0px;
  6603. top:0px;
  6604. width:127px;
  6605. height:25px;
  6606. padding:2px 2px 2px 2px;
  6607. font-family:'Microsoft YaHei', sans-serif;
  6608. font-weight:400;
  6609. font-style:normal;
  6610. font-size:10px;
  6611. letter-spacing:normal;
  6612. color:#000000;
  6613. vertical-align:none;
  6614. text-align:left;
  6615. text-transform:none;
  6616. background-color:transparent;
  6617. border-color:transparent;
  6618. }
  6619. #u6652_input.disabled {
  6620. position:absolute;
  6621. left:0px;
  6622. top:0px;
  6623. width:127px;
  6624. height:25px;
  6625. padding:2px 2px 2px 2px;
  6626. font-family:'Microsoft YaHei', sans-serif;
  6627. font-weight:400;
  6628. font-style:normal;
  6629. font-size:10px;
  6630. letter-spacing:normal;
  6631. color:#000000;
  6632. vertical-align:none;
  6633. text-align:left;
  6634. text-transform:none;
  6635. background-color:transparent;
  6636. border-color:transparent;
  6637. }
  6638. #u6652_div {
  6639. border-width:0px;
  6640. position:absolute;
  6641. left:0px;
  6642. top:0px;
  6643. width:127px;
  6644. height:25px;
  6645. background:inherit;
  6646. background-color:rgba(255, 255, 255, 1);
  6647. border:none;
  6648. border-radius:0px;
  6649. -moz-box-shadow:none;
  6650. -webkit-box-shadow:none;
  6651. box-shadow:none;
  6652. font-family:'Microsoft YaHei', sans-serif;
  6653. font-weight:400;
  6654. font-style:normal;
  6655. font-size:10px;
  6656. }
  6657. #u6652 {
  6658. border-width:0px;
  6659. position:absolute;
  6660. left:811px;
  6661. top:172px;
  6662. width:127px;
  6663. height:25px;
  6664. display:flex;
  6665. font-family:'Microsoft YaHei', sans-serif;
  6666. font-weight:400;
  6667. font-style:normal;
  6668. font-size:10px;
  6669. }
  6670. #u6652 .text {
  6671. position:absolute;
  6672. align-self:center;
  6673. padding:2px 2px 2px 2px;
  6674. box-sizing:border-box;
  6675. width:100%;
  6676. }
  6677. #u6652_div.disabled {
  6678. border-width:0px;
  6679. position:absolute;
  6680. left:0px;
  6681. top:0px;
  6682. width:127px;
  6683. height:25px;
  6684. background:inherit;
  6685. background-color:rgba(240, 240, 240, 1);
  6686. border:none;
  6687. border-radius:0px;
  6688. -moz-box-shadow:none;
  6689. -webkit-box-shadow:none;
  6690. box-shadow:none;
  6691. font-family:'Microsoft YaHei', sans-serif;
  6692. font-weight:400;
  6693. font-style:normal;
  6694. font-size:10px;
  6695. }
  6696. #u6652.disabled {
  6697. }
  6698. #u6653 {
  6699. border-width:0px;
  6700. position:absolute;
  6701. left:0px;
  6702. top:0px;
  6703. width:0px;
  6704. height:0px;
  6705. }
  6706. #u6654_div {
  6707. border-width:0px;
  6708. position:absolute;
  6709. left:0px;
  6710. top:0px;
  6711. width:140px;
  6712. height:30px;
  6713. background:inherit;
  6714. background-color:rgba(255, 255, 255, 1);
  6715. box-sizing:border-box;
  6716. border-width:1px;
  6717. border-style:solid;
  6718. border-color:rgba(201, 201, 201, 1);
  6719. border-radius:4px;
  6720. -moz-box-shadow:none;
  6721. -webkit-box-shadow:none;
  6722. box-shadow:none;
  6723. font-family:'Microsoft YaHei', sans-serif;
  6724. font-weight:400;
  6725. font-style:normal;
  6726. font-size:14px;
  6727. color:#CCCCCC;
  6728. text-align:left;
  6729. }
  6730. #u6654 {
  6731. border-width:0px;
  6732. position:absolute;
  6733. left:953px;
  6734. top:171px;
  6735. width:140px;
  6736. height:30px;
  6737. display:flex;
  6738. font-family:'Microsoft YaHei', sans-serif;
  6739. font-weight:400;
  6740. font-style:normal;
  6741. font-size:14px;
  6742. color:#CCCCCC;
  6743. text-align:left;
  6744. }
  6745. #u6654 .text {
  6746. position:absolute;
  6747. align-self:center;
  6748. padding:2px 8px 2px 8px;
  6749. box-sizing:border-box;
  6750. width:100%;
  6751. }
  6752. #u6654_text {
  6753. border-width:0px;
  6754. word-wrap:break-word;
  6755. text-transform:none;
  6756. visibility:hidden;
  6757. }
  6758. #u6655_input {
  6759. position:absolute;
  6760. left:0px;
  6761. top:0px;
  6762. width:127px;
  6763. height:25px;
  6764. padding:2px 2px 2px 2px;
  6765. font-family:'Microsoft YaHei', sans-serif;
  6766. font-weight:400;
  6767. font-style:normal;
  6768. font-size:10px;
  6769. letter-spacing:normal;
  6770. color:#000000;
  6771. vertical-align:none;
  6772. text-align:left;
  6773. text-transform:none;
  6774. background-color:transparent;
  6775. border-color:transparent;
  6776. }
  6777. #u6655_input.disabled {
  6778. position:absolute;
  6779. left:0px;
  6780. top:0px;
  6781. width:127px;
  6782. height:25px;
  6783. padding:2px 2px 2px 2px;
  6784. font-family:'Microsoft YaHei', sans-serif;
  6785. font-weight:400;
  6786. font-style:normal;
  6787. font-size:10px;
  6788. letter-spacing:normal;
  6789. color:#000000;
  6790. vertical-align:none;
  6791. text-align:left;
  6792. text-transform:none;
  6793. background-color:transparent;
  6794. border-color:transparent;
  6795. }
  6796. #u6655_div {
  6797. border-width:0px;
  6798. position:absolute;
  6799. left:0px;
  6800. top:0px;
  6801. width:127px;
  6802. height:25px;
  6803. background:inherit;
  6804. background-color:rgba(255, 255, 255, 1);
  6805. border:none;
  6806. border-radius:0px;
  6807. -moz-box-shadow:none;
  6808. -webkit-box-shadow:none;
  6809. box-shadow:none;
  6810. font-family:'Microsoft YaHei', sans-serif;
  6811. font-weight:400;
  6812. font-style:normal;
  6813. font-size:10px;
  6814. }
  6815. #u6655 {
  6816. border-width:0px;
  6817. position:absolute;
  6818. left:961px;
  6819. top:172px;
  6820. width:127px;
  6821. height:25px;
  6822. display:flex;
  6823. font-family:'Microsoft YaHei', sans-serif;
  6824. font-weight:400;
  6825. font-style:normal;
  6826. font-size:10px;
  6827. }
  6828. #u6655 .text {
  6829. position:absolute;
  6830. align-self:center;
  6831. padding:2px 2px 2px 2px;
  6832. box-sizing:border-box;
  6833. width:100%;
  6834. }
  6835. #u6655_div.disabled {
  6836. border-width:0px;
  6837. position:absolute;
  6838. left:0px;
  6839. top:0px;
  6840. width:127px;
  6841. height:25px;
  6842. background:inherit;
  6843. background-color:rgba(240, 240, 240, 1);
  6844. border:none;
  6845. border-radius:0px;
  6846. -moz-box-shadow:none;
  6847. -webkit-box-shadow:none;
  6848. box-shadow:none;
  6849. font-family:'Microsoft YaHei', sans-serif;
  6850. font-weight:400;
  6851. font-style:normal;
  6852. font-size:10px;
  6853. }
  6854. #u6655.disabled {
  6855. }
  6856. #u6656_div {
  6857. border-width:0px;
  6858. position:absolute;
  6859. left:0px;
  6860. top:0px;
  6861. width:680px;
  6862. height:150px;
  6863. background:inherit;
  6864. background-color:rgba(255, 255, 255, 0);
  6865. border:none;
  6866. border-left:0px;
  6867. border-top:0px;
  6868. border-right:0px;
  6869. border-radius:0px;
  6870. border-bottom-right-radius:0px;
  6871. border-bottom-left-radius:0px;
  6872. -moz-box-shadow:none;
  6873. -webkit-box-shadow:none;
  6874. box-shadow:none;
  6875. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6876. font-weight:400;
  6877. font-style:normal;
  6878. color:#D9001B;
  6879. line-height:30px;
  6880. }
  6881. #u6656 {
  6882. border-width:0px;
  6883. position:absolute;
  6884. left:395px;
  6885. top:573px;
  6886. width:680px;
  6887. height:150px;
  6888. display:flex;
  6889. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6890. font-weight:400;
  6891. font-style:normal;
  6892. color:#D9001B;
  6893. line-height:30px;
  6894. }
  6895. #u6656 .text {
  6896. position:absolute;
  6897. align-self:center;
  6898. padding:0px 0px 0px 0px;
  6899. box-sizing:border-box;
  6900. width:100%;
  6901. }
  6902. #u6656_text {
  6903. border-width:0px;
  6904. word-wrap:break-word;
  6905. text-transform:none;
  6906. }
  6907. #u6657 {
  6908. border-width:0px;
  6909. position:absolute;
  6910. left:0px;
  6911. top:0px;
  6912. width:0px;
  6913. height:0px;
  6914. }
  6915. #u6658_div {
  6916. border-width:0px;
  6917. position:absolute;
  6918. left:0px;
  6919. top:0px;
  6920. width:140px;
  6921. height:30px;
  6922. background:inherit;
  6923. background-color:rgba(255, 255, 255, 1);
  6924. box-sizing:border-box;
  6925. border-width:1px;
  6926. border-style:solid;
  6927. border-color:rgba(215, 215, 215, 1);
  6928. border-radius:4px;
  6929. -moz-box-shadow:none;
  6930. -webkit-box-shadow:none;
  6931. box-shadow:none;
  6932. font-size:11px;
  6933. }
  6934. #u6658 {
  6935. border-width:0px;
  6936. position:absolute;
  6937. left:352px;
  6938. top:211px;
  6939. width:140px;
  6940. height:30px;
  6941. display:flex;
  6942. font-size:11px;
  6943. }
  6944. #u6658 .text {
  6945. position:absolute;
  6946. align-self:center;
  6947. padding:2px 2px 2px 2px;
  6948. box-sizing:border-box;
  6949. width:100%;
  6950. }
  6951. #u6658_text {
  6952. border-width:0px;
  6953. word-wrap:break-word;
  6954. text-transform:none;
  6955. visibility:hidden;
  6956. }
  6957. #u6659_input {
  6958. position:absolute;
  6959. left:0px;
  6960. top:0px;
  6961. width:120px;
  6962. height:23px;
  6963. padding:2px 2px 2px 2px;
  6964. font-family:'ArialMT', 'Arial', sans-serif;
  6965. font-weight:400;
  6966. font-style:normal;
  6967. font-size:11px;
  6968. letter-spacing:normal;
  6969. color:#AAAAAA;
  6970. vertical-align:none;
  6971. text-align:left;
  6972. text-transform:none;
  6973. background-color:transparent;
  6974. border-color:transparent;
  6975. }
  6976. #u6659_input.disabled {
  6977. position:absolute;
  6978. left:0px;
  6979. top:0px;
  6980. width:120px;
  6981. height:23px;
  6982. padding:2px 2px 2px 2px;
  6983. font-family:'ArialMT', 'Arial', sans-serif;
  6984. font-weight:400;
  6985. font-style:normal;
  6986. font-size:11px;
  6987. letter-spacing:normal;
  6988. color:#AAAAAA;
  6989. vertical-align:none;
  6990. text-align:left;
  6991. text-transform:none;
  6992. background-color:transparent;
  6993. border-color:transparent;
  6994. }
  6995. #u6659_div {
  6996. border-width:0px;
  6997. position:absolute;
  6998. left:0px;
  6999. top:0px;
  7000. width:120px;
  7001. height:23px;
  7002. background:inherit;
  7003. background-color:rgba(255, 255, 255, 1);
  7004. border:none;
  7005. border-radius:0px;
  7006. -moz-box-shadow:none;
  7007. -webkit-box-shadow:none;
  7008. box-shadow:none;
  7009. font-size:11px;
  7010. color:#AAAAAA;
  7011. }
  7012. #u6659 {
  7013. border-width:0px;
  7014. position:absolute;
  7015. left:359px;
  7016. top:213px;
  7017. width:120px;
  7018. height:23px;
  7019. display:flex;
  7020. font-size:11px;
  7021. color:#AAAAAA;
  7022. }
  7023. #u6659 .text {
  7024. position:absolute;
  7025. align-self:flex-start;
  7026. padding:2px 2px 2px 2px;
  7027. box-sizing:border-box;
  7028. width:100%;
  7029. }
  7030. #u6659_div.disabled {
  7031. border-width:0px;
  7032. position:absolute;
  7033. left:0px;
  7034. top:0px;
  7035. width:120px;
  7036. height:23px;
  7037. background:inherit;
  7038. background-color:rgba(240, 240, 240, 1);
  7039. border:none;
  7040. border-radius:0px;
  7041. -moz-box-shadow:none;
  7042. -webkit-box-shadow:none;
  7043. box-shadow:none;
  7044. font-size:11px;
  7045. color:#AAAAAA;
  7046. }
  7047. #u6659.disabled {
  7048. }
  7049. .u6659_input_option {
  7050. font-size:11px;
  7051. }