styles.css 217 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218
  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. #u16238 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1600px;
  25. height:1250px;
  26. }
  27. #u16239_div {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:1480px;
  33. height:1200px;
  34. background:inherit;
  35. background-color:rgba(242, 242, 242, 1);
  36. border-radius:0px;
  37. filter:drop-shadow(none);
  38. transition:none;
  39. }
  40. #u16239 {
  41. border-width:0px;
  42. position:absolute;
  43. left:120px;
  44. top:50px;
  45. width:1480px;
  46. height:1200px;
  47. display:flex;
  48. transition:none;
  49. transform-origin:50% 50%;
  50. }
  51. #u16239 .text {
  52. position:absolute;
  53. align-self:center;
  54. padding:2px 2px 2px 2px;
  55. box-sizing:border-box;
  56. width:100%;
  57. }
  58. #u16239_text {
  59. border-width:0px;
  60. word-wrap:break-word;
  61. text-transform:none;
  62. visibility:hidden;
  63. }
  64. #u16240_div {
  65. border-width:0px;
  66. position:absolute;
  67. left:0px;
  68. top:0px;
  69. width:129px;
  70. height:22px;
  71. background:inherit;
  72. background-color:rgba(255, 255, 255, 0);
  73. border-radius:0px;
  74. filter:drop-shadow(none);
  75. transition:none;
  76. font-size:16px;
  77. color:#FFFFFF;
  78. }
  79. #u16240 {
  80. border-width:0px;
  81. position:absolute;
  82. left:49px;
  83. top:14px;
  84. width:129px;
  85. height:22px;
  86. display:flex;
  87. transition:none;
  88. transform-origin:50% 50%;
  89. font-size:16px;
  90. color:#FFFFFF;
  91. }
  92. #u16240 .text {
  93. position:absolute;
  94. align-self:flex-start;
  95. padding:0px 0px 0px 0px;
  96. box-sizing:border-box;
  97. width:100%;
  98. }
  99. #u16240_text {
  100. border-width:0px;
  101. white-space:nowrap;
  102. text-transform:none;
  103. }
  104. #u16241_div {
  105. border-width:0px;
  106. position:absolute;
  107. left:0px;
  108. top:0px;
  109. width:1600px;
  110. height:50px;
  111. background:inherit;
  112. background-color:rgba(30, 42, 68, 1);
  113. border-radius:0px;
  114. filter:drop-shadow(none);
  115. transition:none;
  116. color:#AFB3B6;
  117. }
  118. #u16241 {
  119. border-width:0px;
  120. position:absolute;
  121. left:0px;
  122. top:0px;
  123. width:1600px;
  124. height:50px;
  125. display:flex;
  126. transition:none;
  127. transform-origin:50% 50%;
  128. color:#AFB3B6;
  129. }
  130. #u16241 .text {
  131. position:absolute;
  132. align-self:center;
  133. padding:2px 2px 2px 2px;
  134. box-sizing:border-box;
  135. width:100%;
  136. }
  137. #u16241_text {
  138. border-width:0px;
  139. word-wrap:break-word;
  140. text-transform:none;
  141. visibility:hidden;
  142. }
  143. #u16242 {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:0px;
  149. height:0px;
  150. }
  151. #u16243 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. transition:none;
  160. }
  161. #u16243 .text {
  162. position:absolute;
  163. align-self:center;
  164. padding:2px 2px 2px 2px;
  165. box-sizing:border-box;
  166. width:100%;
  167. }
  168. #u16243_img {
  169. border-width:0px;
  170. position:absolute;
  171. left:0px;
  172. top:0px;
  173. width:31px;
  174. height:31px;
  175. }
  176. #u16243_text {
  177. border-width:0px;
  178. word-wrap:break-word;
  179. text-transform:none;
  180. }
  181. #u16244_div {
  182. border-width:0px;
  183. position:absolute;
  184. left:0px;
  185. top:0px;
  186. width:161px;
  187. height:22px;
  188. background:inherit;
  189. background-color:rgba(255, 255, 255, 0);
  190. border-radius:0px;
  191. filter:drop-shadow(none);
  192. transition:none;
  193. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  194. font-weight:400;
  195. font-style:normal;
  196. font-size:16px;
  197. color:#FFFFFF;
  198. }
  199. #u16244 {
  200. border-width:0px;
  201. position:absolute;
  202. left:62px;
  203. top:14px;
  204. width:161px;
  205. height:22px;
  206. display:flex;
  207. transition:none;
  208. transform-origin:50% 50%;
  209. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  210. font-weight:400;
  211. font-style:normal;
  212. font-size:16px;
  213. color:#FFFFFF;
  214. }
  215. #u16244 .text {
  216. position:absolute;
  217. align-self:flex-start;
  218. padding:0px 0px 0px 0px;
  219. box-sizing:border-box;
  220. width:100%;
  221. }
  222. #u16244_text {
  223. border-width:0px;
  224. white-space:nowrap;
  225. text-transform:none;
  226. }
  227. #u16245_div {
  228. border-width:0px;
  229. position:absolute;
  230. left:0px;
  231. top:0px;
  232. width:120px;
  233. height:1200px;
  234. background:inherit;
  235. background-color:rgba(30, 42, 68, 1);
  236. border-radius:0px;
  237. filter:drop-shadow(none);
  238. transition:none;
  239. color:#AFB3B6;
  240. }
  241. #u16245 {
  242. border-width:0px;
  243. position:absolute;
  244. left:0px;
  245. top:47px;
  246. width:120px;
  247. height:1200px;
  248. display:flex;
  249. transition:none;
  250. transform-origin:50% 50%;
  251. color:#AFB3B6;
  252. }
  253. #u16245 .text {
  254. position:absolute;
  255. align-self:center;
  256. padding:2px 2px 2px 2px;
  257. box-sizing:border-box;
  258. width:100%;
  259. }
  260. #u16245_text {
  261. border-width:0px;
  262. word-wrap:break-word;
  263. text-transform:none;
  264. visibility:hidden;
  265. }
  266. #u16246 {
  267. border-width:0px;
  268. position:absolute;
  269. left:0px;
  270. top:0px;
  271. width:0px;
  272. height:0px;
  273. }
  274. #u16247_div {
  275. border-width:0px;
  276. position:absolute;
  277. left:0px;
  278. top:0px;
  279. width:33px;
  280. height:22px;
  281. background:inherit;
  282. background-color:rgba(255, 255, 255, 0);
  283. border-radius:0px;
  284. filter:drop-shadow(none);
  285. transition:none;
  286. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  287. font-weight:400;
  288. font-style:normal;
  289. font-size:16px;
  290. color:#FFFFFF;
  291. }
  292. #u16247 {
  293. border-width:0px;
  294. position:absolute;
  295. left:39px;
  296. top:171px;
  297. width:33px;
  298. height:22px;
  299. display:flex;
  300. transition:none;
  301. transform-origin:50% 50%;
  302. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  303. font-weight:400;
  304. font-style:normal;
  305. font-size:16px;
  306. color:#FFFFFF;
  307. }
  308. #u16247 .text {
  309. position:absolute;
  310. align-self:flex-start;
  311. padding:0px 0px 0px 0px;
  312. box-sizing:border-box;
  313. width:100%;
  314. }
  315. #u16247_text {
  316. border-width:0px;
  317. white-space:nowrap;
  318. text-transform:none;
  319. }
  320. #u16248 {
  321. border-width:0px;
  322. position:absolute;
  323. left:20px;
  324. top:175px;
  325. width:14px;
  326. height:14px;
  327. display:flex;
  328. transition:none;
  329. }
  330. #u16248 .text {
  331. position:absolute;
  332. align-self:center;
  333. padding:2px 2px 2px 2px;
  334. box-sizing:border-box;
  335. width:100%;
  336. }
  337. #u16248_img {
  338. border-width:0px;
  339. position:absolute;
  340. left:0px;
  341. top:0px;
  342. width:14px;
  343. height:14px;
  344. }
  345. #u16248_text {
  346. border-width:0px;
  347. word-wrap:break-word;
  348. text-transform:none;
  349. visibility:hidden;
  350. }
  351. #u16249 {
  352. border-width:0px;
  353. position:absolute;
  354. left:0px;
  355. top:0px;
  356. width:0px;
  357. height:0px;
  358. }
  359. #u16250_div {
  360. border-width:0px;
  361. position:absolute;
  362. left:0px;
  363. top:0px;
  364. width:33px;
  365. height:22px;
  366. background:inherit;
  367. background-color:rgba(255, 255, 255, 0);
  368. border-radius:0px;
  369. filter:drop-shadow(none);
  370. transition: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. #u16250 {
  378. border-width:0px;
  379. position:absolute;
  380. left:39px;
  381. top:381px;
  382. width:33px;
  383. height:22px;
  384. display:flex;
  385. transition:none;
  386. transform-origin:50% 50%;
  387. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  388. font-weight:400;
  389. font-style:normal;
  390. font-size:16px;
  391. color:#FFFFFF;
  392. }
  393. #u16250 .text {
  394. position:absolute;
  395. align-self:flex-start;
  396. padding:0px 0px 0px 0px;
  397. box-sizing:border-box;
  398. width:100%;
  399. }
  400. #u16250_text {
  401. border-width:0px;
  402. white-space:nowrap;
  403. text-transform:none;
  404. }
  405. #u16251 {
  406. border-width:0px;
  407. position:absolute;
  408. left:20px;
  409. top:385px;
  410. width:14px;
  411. height:14px;
  412. display:flex;
  413. transition:none;
  414. }
  415. #u16251 .text {
  416. position:absolute;
  417. align-self:center;
  418. padding:2px 2px 2px 2px;
  419. box-sizing:border-box;
  420. width:100%;
  421. }
  422. #u16251_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:14px;
  428. height:14px;
  429. }
  430. #u16251_text {
  431. border-width:0px;
  432. word-wrap:break-word;
  433. text-transform:none;
  434. visibility:hidden;
  435. }
  436. #u16252 {
  437. border-width:0px;
  438. position:absolute;
  439. left:0px;
  440. top:0px;
  441. width:0px;
  442. height:0px;
  443. }
  444. #u16253_div {
  445. border-width:0px;
  446. position:absolute;
  447. left:0px;
  448. top:0px;
  449. width:49px;
  450. height:22px;
  451. background:inherit;
  452. background-color:rgba(255, 255, 255, 0);
  453. border-radius:0px;
  454. filter:drop-shadow(none);
  455. transition:none;
  456. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  457. font-weight:400;
  458. font-style:normal;
  459. font-size:16px;
  460. color:#FFFFFF;
  461. }
  462. #u16253 {
  463. border-width:0px;
  464. position:absolute;
  465. left:39px;
  466. top:133px;
  467. width:49px;
  468. height:22px;
  469. display:flex;
  470. transition:none;
  471. transform-origin:50% 50%;
  472. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  473. font-weight:400;
  474. font-style:normal;
  475. font-size:16px;
  476. color:#FFFFFF;
  477. }
  478. #u16253 .text {
  479. position:absolute;
  480. align-self:flex-start;
  481. padding:0px 0px 0px 0px;
  482. box-sizing:border-box;
  483. width:100%;
  484. }
  485. #u16253_text {
  486. border-width:0px;
  487. white-space:nowrap;
  488. text-transform:none;
  489. }
  490. #u16254 {
  491. border-width:0px;
  492. position:absolute;
  493. left:20px;
  494. top:137px;
  495. width:14px;
  496. height:14px;
  497. display:flex;
  498. transition:none;
  499. }
  500. #u16254 .text {
  501. position:absolute;
  502. align-self:center;
  503. padding:2px 2px 2px 2px;
  504. box-sizing:border-box;
  505. width:100%;
  506. }
  507. #u16254_img {
  508. border-width:0px;
  509. position:absolute;
  510. left:0px;
  511. top:0px;
  512. width:14px;
  513. height:14px;
  514. }
  515. #u16254_text {
  516. border-width:0px;
  517. word-wrap:break-word;
  518. text-transform:none;
  519. visibility:hidden;
  520. }
  521. #u16255 {
  522. border-width:0px;
  523. position:absolute;
  524. left:0px;
  525. top:0px;
  526. width:0px;
  527. height:0px;
  528. }
  529. #u16256_div {
  530. border-width:0px;
  531. position:absolute;
  532. left:0px;
  533. top:0px;
  534. width:33px;
  535. height:22px;
  536. background:inherit;
  537. background-color:rgba(255, 255, 255, 0);
  538. border-radius:0px;
  539. filter:drop-shadow(none);
  540. transition:none;
  541. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  542. font-weight:400;
  543. font-style:normal;
  544. font-size:16px;
  545. color:#FFFFFF;
  546. }
  547. #u16256 {
  548. border-width:0px;
  549. position:absolute;
  550. left:39px;
  551. top:423px;
  552. width:33px;
  553. height:22px;
  554. display:flex;
  555. transition:none;
  556. transform-origin:50% 50%;
  557. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  558. font-weight:400;
  559. font-style:normal;
  560. font-size:16px;
  561. color:#FFFFFF;
  562. }
  563. #u16256 .text {
  564. position:absolute;
  565. align-self:flex-start;
  566. padding:0px 0px 0px 0px;
  567. box-sizing:border-box;
  568. width:100%;
  569. }
  570. #u16256_text {
  571. border-width:0px;
  572. white-space:nowrap;
  573. text-transform:none;
  574. }
  575. #u16257 {
  576. border-width:0px;
  577. position:absolute;
  578. left:20px;
  579. top:427px;
  580. width:14px;
  581. height:14px;
  582. display:flex;
  583. transition:none;
  584. }
  585. #u16257 .text {
  586. position:absolute;
  587. align-self:center;
  588. padding:2px 2px 2px 2px;
  589. box-sizing:border-box;
  590. width:100%;
  591. }
  592. #u16257_img {
  593. border-width:0px;
  594. position:absolute;
  595. left:0px;
  596. top:0px;
  597. width:14px;
  598. height:14px;
  599. }
  600. #u16257_text {
  601. border-width:0px;
  602. word-wrap:break-word;
  603. text-transform:none;
  604. visibility:hidden;
  605. }
  606. #u16258 {
  607. border-width:0px;
  608. position:absolute;
  609. left:0px;
  610. top:0px;
  611. width:0px;
  612. height:0px;
  613. }
  614. #u16259_div {
  615. border-width:0px;
  616. position:absolute;
  617. left:0px;
  618. top:0px;
  619. width:33px;
  620. height:22px;
  621. background:inherit;
  622. background-color:rgba(255, 255, 255, 0);
  623. border-radius:0px;
  624. filter:drop-shadow(none);
  625. transition:none;
  626. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  627. font-weight:400;
  628. font-style:normal;
  629. font-size:16px;
  630. color:#FFFFFF;
  631. }
  632. #u16259 {
  633. border-width:0px;
  634. position:absolute;
  635. left:39px;
  636. top:297px;
  637. width:33px;
  638. height:22px;
  639. display:flex;
  640. transition:none;
  641. transform-origin:50% 50%;
  642. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  643. font-weight:400;
  644. font-style:normal;
  645. font-size:16px;
  646. color:#FFFFFF;
  647. }
  648. #u16259 .text {
  649. position:absolute;
  650. align-self:flex-start;
  651. padding:0px 0px 0px 0px;
  652. box-sizing:border-box;
  653. width:100%;
  654. }
  655. #u16259_text {
  656. border-width:0px;
  657. white-space:nowrap;
  658. text-transform:none;
  659. }
  660. #u16260 {
  661. border-width:0px;
  662. position:absolute;
  663. left:20px;
  664. top:301px;
  665. width:14px;
  666. height:14px;
  667. display:flex;
  668. transition:none;
  669. }
  670. #u16260 .text {
  671. position:absolute;
  672. align-self:center;
  673. padding:2px 2px 2px 2px;
  674. box-sizing:border-box;
  675. width:100%;
  676. }
  677. #u16260_img {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:14px;
  683. height:14px;
  684. }
  685. #u16260_text {
  686. border-width:0px;
  687. word-wrap:break-word;
  688. text-transform:none;
  689. visibility:hidden;
  690. }
  691. #u16261 {
  692. border-width:0px;
  693. position:absolute;
  694. left:0px;
  695. top:0px;
  696. width:0px;
  697. height:0px;
  698. }
  699. #u16262_div {
  700. border-width:0px;
  701. position:absolute;
  702. left:0px;
  703. top:0px;
  704. width:33px;
  705. height:22px;
  706. background:inherit;
  707. background-color:rgba(255, 255, 255, 0);
  708. border-radius:0px;
  709. filter:drop-shadow(none);
  710. transition:none;
  711. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  712. font-weight:400;
  713. font-style:normal;
  714. font-size:16px;
  715. color:#FFFFFF;
  716. }
  717. #u16262 {
  718. border-width:0px;
  719. position:absolute;
  720. left:39px;
  721. top:213px;
  722. width:33px;
  723. height:22px;
  724. display:flex;
  725. transition:none;
  726. transform-origin:50% 50%;
  727. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  728. font-weight:400;
  729. font-style:normal;
  730. font-size:16px;
  731. color:#FFFFFF;
  732. }
  733. #u16262 .text {
  734. position:absolute;
  735. align-self:flex-start;
  736. padding:0px 0px 0px 0px;
  737. box-sizing:border-box;
  738. width:100%;
  739. }
  740. #u16262_text {
  741. border-width:0px;
  742. white-space:nowrap;
  743. text-transform:none;
  744. }
  745. #u16263 {
  746. border-width:0px;
  747. position:absolute;
  748. left:20px;
  749. top:217px;
  750. width:14px;
  751. height:14px;
  752. display:flex;
  753. transition:none;
  754. }
  755. #u16263 .text {
  756. position:absolute;
  757. align-self:center;
  758. padding:2px 2px 2px 2px;
  759. box-sizing:border-box;
  760. width:100%;
  761. }
  762. #u16263_img {
  763. border-width:0px;
  764. position:absolute;
  765. left:0px;
  766. top:0px;
  767. width:14px;
  768. height:14px;
  769. }
  770. #u16263_text {
  771. border-width:0px;
  772. word-wrap:break-word;
  773. text-transform:none;
  774. visibility:hidden;
  775. }
  776. #u16264 {
  777. border-width:0px;
  778. position:absolute;
  779. left:0px;
  780. top:0px;
  781. width:0px;
  782. height:0px;
  783. }
  784. #u16265_div {
  785. border-width:0px;
  786. position:absolute;
  787. left:0px;
  788. top:0px;
  789. width:33px;
  790. height:22px;
  791. background:inherit;
  792. background-color:rgba(255, 255, 255, 0);
  793. border-radius:0px;
  794. filter:drop-shadow(none);
  795. transition:none;
  796. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  797. font-weight:400;
  798. font-style:normal;
  799. font-size:16px;
  800. color:#FFFFFF;
  801. }
  802. #u16265 {
  803. border-width:0px;
  804. position:absolute;
  805. left:39px;
  806. top:339px;
  807. width:33px;
  808. height:22px;
  809. display:flex;
  810. transition:none;
  811. transform-origin:50% 50%;
  812. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  813. font-weight:400;
  814. font-style:normal;
  815. font-size:16px;
  816. color:#FFFFFF;
  817. }
  818. #u16265 .text {
  819. position:absolute;
  820. align-self:flex-start;
  821. padding:0px 0px 0px 0px;
  822. box-sizing:border-box;
  823. width:100%;
  824. }
  825. #u16265_text {
  826. border-width:0px;
  827. white-space:nowrap;
  828. text-transform:none;
  829. }
  830. #u16266 {
  831. border-width:0px;
  832. position:absolute;
  833. left:20px;
  834. top:343px;
  835. width:14px;
  836. height:14px;
  837. display:flex;
  838. transition:none;
  839. }
  840. #u16266 .text {
  841. position:absolute;
  842. align-self:center;
  843. padding:2px 2px 2px 2px;
  844. box-sizing:border-box;
  845. width:100%;
  846. }
  847. #u16266_img {
  848. border-width:0px;
  849. position:absolute;
  850. left:0px;
  851. top:0px;
  852. width:14px;
  853. height:14px;
  854. }
  855. #u16266_text {
  856. border-width:0px;
  857. word-wrap:break-word;
  858. text-transform:none;
  859. visibility:hidden;
  860. }
  861. #u16267 {
  862. border-width:0px;
  863. position:absolute;
  864. left:0px;
  865. top:0px;
  866. width:0px;
  867. height:0px;
  868. }
  869. #u16268_div {
  870. border-width:0px;
  871. position:absolute;
  872. left:0px;
  873. top:0px;
  874. width:33px;
  875. height:22px;
  876. background:inherit;
  877. background-color:rgba(255, 255, 255, 0);
  878. border-radius:0px;
  879. filter:drop-shadow(none);
  880. transition:none;
  881. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  882. font-weight:400;
  883. font-style:normal;
  884. font-size:16px;
  885. color:#FFFFFF;
  886. }
  887. #u16268 {
  888. border-width:0px;
  889. position:absolute;
  890. left:39px;
  891. top:465px;
  892. width:33px;
  893. height:22px;
  894. display:flex;
  895. transition:none;
  896. transform-origin:50% 50%;
  897. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  898. font-weight:400;
  899. font-style:normal;
  900. font-size:16px;
  901. color:#FFFFFF;
  902. }
  903. #u16268 .text {
  904. position:absolute;
  905. align-self:flex-start;
  906. padding:0px 0px 0px 0px;
  907. box-sizing:border-box;
  908. width:100%;
  909. }
  910. #u16268_text {
  911. border-width:0px;
  912. white-space:nowrap;
  913. text-transform:none;
  914. }
  915. #u16269 {
  916. border-width:0px;
  917. position:absolute;
  918. left:20px;
  919. top:469px;
  920. width:14px;
  921. height:14px;
  922. display:flex;
  923. transition:none;
  924. }
  925. #u16269 .text {
  926. position:absolute;
  927. align-self:center;
  928. padding:2px 2px 2px 2px;
  929. box-sizing:border-box;
  930. width:100%;
  931. }
  932. #u16269_img {
  933. border-width:0px;
  934. position:absolute;
  935. left:0px;
  936. top:0px;
  937. width:14px;
  938. height:14px;
  939. }
  940. #u16269_text {
  941. border-width:0px;
  942. word-wrap:break-word;
  943. text-transform:none;
  944. visibility:hidden;
  945. }
  946. #u16270 {
  947. border-width:0px;
  948. position:absolute;
  949. left:0px;
  950. top:0px;
  951. width:0px;
  952. height:0px;
  953. }
  954. #u16271_div {
  955. border-width:0px;
  956. position:absolute;
  957. left:0px;
  958. top:0px;
  959. width:29px;
  960. height:20px;
  961. background:inherit;
  962. background-color:rgba(255, 255, 255, 0);
  963. border-radius:25px;
  964. filter:drop-shadow(none);
  965. transition:none;
  966. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  967. font-weight:400;
  968. font-style:normal;
  969. color:#FFFFFF;
  970. }
  971. #u16271 {
  972. border-width:0px;
  973. position:absolute;
  974. left:52px;
  975. top:1145px;
  976. width:29px;
  977. height:20px;
  978. display:flex;
  979. transition:none;
  980. transform-origin:50% 50%;
  981. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  982. font-weight:400;
  983. font-style:normal;
  984. color:#FFFFFF;
  985. }
  986. #u16271 .text {
  987. position:absolute;
  988. align-self:center;
  989. padding:0px 0px 0px 0px;
  990. box-sizing:border-box;
  991. width:100%;
  992. }
  993. #u16271_text {
  994. border-width:0px;
  995. white-space:nowrap;
  996. text-transform:none;
  997. }
  998. #u16272 {
  999. border-width:0px;
  1000. position:absolute;
  1001. left:20px;
  1002. top:1144px;
  1003. width:22px;
  1004. height:22px;
  1005. display:flex;
  1006. transition:none;
  1007. }
  1008. #u16272 .text {
  1009. position:absolute;
  1010. align-self:center;
  1011. padding:2px 2px 2px 2px;
  1012. box-sizing:border-box;
  1013. width:100%;
  1014. }
  1015. #u16272_img {
  1016. border-width:0px;
  1017. position:absolute;
  1018. left:0px;
  1019. top:0px;
  1020. width:22px;
  1021. height:22px;
  1022. }
  1023. #u16272_text {
  1024. border-width:0px;
  1025. word-wrap:break-word;
  1026. text-transform:none;
  1027. visibility:hidden;
  1028. }
  1029. #u16273 {
  1030. border-width:0px;
  1031. position:absolute;
  1032. left:0px;
  1033. top:0px;
  1034. width:0px;
  1035. height:0px;
  1036. }
  1037. #u16274_div {
  1038. border-width:0px;
  1039. position:absolute;
  1040. left:0px;
  1041. top:0px;
  1042. width:29px;
  1043. height:20px;
  1044. background:inherit;
  1045. background-color:rgba(255, 255, 255, 0);
  1046. border-radius:25px;
  1047. filter:drop-shadow(none);
  1048. transition:none;
  1049. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1050. font-weight:400;
  1051. font-style:normal;
  1052. color:#FFFFFF;
  1053. }
  1054. #u16274 {
  1055. border-width:0px;
  1056. position:absolute;
  1057. left:52px;
  1058. top:1187px;
  1059. width:29px;
  1060. height:20px;
  1061. display:flex;
  1062. transition:none;
  1063. transform-origin:50% 50%;
  1064. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1065. font-weight:400;
  1066. font-style:normal;
  1067. color:#FFFFFF;
  1068. }
  1069. #u16274 .text {
  1070. position:absolute;
  1071. align-self:center;
  1072. padding:0px 0px 0px 0px;
  1073. box-sizing:border-box;
  1074. width:100%;
  1075. }
  1076. #u16274_text {
  1077. border-width:0px;
  1078. white-space:nowrap;
  1079. text-transform:none;
  1080. }
  1081. #u16275 {
  1082. border-width:0px;
  1083. position:absolute;
  1084. left:20px;
  1085. top:1186px;
  1086. width:22px;
  1087. height:22px;
  1088. display:flex;
  1089. transition:none;
  1090. }
  1091. #u16275 .text {
  1092. position:absolute;
  1093. align-self:center;
  1094. padding:2px 2px 2px 2px;
  1095. box-sizing:border-box;
  1096. width:100%;
  1097. }
  1098. #u16275_img {
  1099. border-width:0px;
  1100. position:absolute;
  1101. left:0px;
  1102. top:0px;
  1103. width:22px;
  1104. height:22px;
  1105. }
  1106. #u16275_text {
  1107. border-width:0px;
  1108. word-wrap:break-word;
  1109. text-transform:none;
  1110. visibility:hidden;
  1111. }
  1112. #u16276 {
  1113. border-width:0px;
  1114. position:absolute;
  1115. left:0px;
  1116. top:0px;
  1117. width:0px;
  1118. height:0px;
  1119. }
  1120. #u16277_div {
  1121. border-width:0px;
  1122. position:absolute;
  1123. left:0px;
  1124. top:0px;
  1125. width:33px;
  1126. height:22px;
  1127. background:inherit;
  1128. background-color:rgba(255, 255, 255, 0);
  1129. border-radius:0px;
  1130. filter:drop-shadow(none);
  1131. transition:none;
  1132. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1133. font-weight:400;
  1134. font-style:normal;
  1135. font-size:16px;
  1136. color:#FFFFFF;
  1137. }
  1138. #u16277 {
  1139. border-width:0px;
  1140. position:absolute;
  1141. left:39px;
  1142. top:255px;
  1143. width:33px;
  1144. height:22px;
  1145. display:flex;
  1146. transition:none;
  1147. transform-origin:50% 50%;
  1148. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1149. font-weight:400;
  1150. font-style:normal;
  1151. font-size:16px;
  1152. color:#FFFFFF;
  1153. }
  1154. #u16277 .text {
  1155. position:absolute;
  1156. align-self:flex-start;
  1157. padding:0px 0px 0px 0px;
  1158. box-sizing:border-box;
  1159. width:100%;
  1160. }
  1161. #u16277_text {
  1162. border-width:0px;
  1163. white-space:nowrap;
  1164. text-transform:none;
  1165. }
  1166. #u16278 {
  1167. border-width:0px;
  1168. position:absolute;
  1169. left:20px;
  1170. top:259px;
  1171. width:14px;
  1172. height:14px;
  1173. display:flex;
  1174. transition:none;
  1175. }
  1176. #u16278 .text {
  1177. position:absolute;
  1178. align-self:center;
  1179. padding:2px 2px 2px 2px;
  1180. box-sizing:border-box;
  1181. width:100%;
  1182. }
  1183. #u16278_img {
  1184. border-width:0px;
  1185. position:absolute;
  1186. left:0px;
  1187. top:0px;
  1188. width:14px;
  1189. height:14px;
  1190. }
  1191. #u16278_text {
  1192. border-width:0px;
  1193. word-wrap:break-word;
  1194. text-transform:none;
  1195. visibility:hidden;
  1196. }
  1197. #u16279 {
  1198. border-width:0px;
  1199. position:absolute;
  1200. left:0px;
  1201. top:0px;
  1202. width:0px;
  1203. height:0px;
  1204. }
  1205. #u16280_input {
  1206. position:absolute;
  1207. left:0px;
  1208. top:0px;
  1209. width:214px;
  1210. height:27px;
  1211. padding:2px 2px 2px 2px;
  1212. font-family:"ArialMT", "Arial", sans-serif;
  1213. font-weight:400;
  1214. font-style:normal;
  1215. font-size:14px;
  1216. letter-spacing:normal;
  1217. color:#FFFFFF;
  1218. vertical-align:none;
  1219. text-align:left;
  1220. text-transform:none;
  1221. background-color:transparent;
  1222. border-color:transparent;
  1223. }
  1224. #u16280_input.disabled {
  1225. position:absolute;
  1226. left:0px;
  1227. top:0px;
  1228. width:214px;
  1229. height:27px;
  1230. padding:2px 2px 2px 2px;
  1231. font-family:"ArialMT", "Arial", sans-serif;
  1232. font-weight:400;
  1233. font-style:normal;
  1234. font-size:14px;
  1235. letter-spacing:normal;
  1236. color:#FFFFFF;
  1237. vertical-align:none;
  1238. text-align:left;
  1239. text-transform:none;
  1240. background-color:transparent;
  1241. border-color:transparent;
  1242. }
  1243. #u16280_div {
  1244. border-width:0px;
  1245. position:absolute;
  1246. left:0px;
  1247. top:0px;
  1248. width:214px;
  1249. height:27px;
  1250. background:inherit;
  1251. background-color:rgba(255, 255, 255, 0);
  1252. border-radius:0px;
  1253. filter:drop-shadow(none);
  1254. transition:none;
  1255. font-size:14px;
  1256. color:#FFFFFF;
  1257. }
  1258. #u16280 {
  1259. border-width:0px;
  1260. position:absolute;
  1261. left:1221px;
  1262. top:11px;
  1263. width:214px;
  1264. height:27px;
  1265. display:flex;
  1266. transition:none;
  1267. transform-origin:50% 50%;
  1268. font-size:14px;
  1269. color:#FFFFFF;
  1270. }
  1271. #u16280 .text {
  1272. position:absolute;
  1273. align-self:flex-start;
  1274. padding:2px 2px 2px 2px;
  1275. box-sizing:border-box;
  1276. width:100%;
  1277. }
  1278. #u16280_div.disabled {
  1279. border-width:0px;
  1280. position:absolute;
  1281. left:0px;
  1282. top:0px;
  1283. width:214px;
  1284. height:27px;
  1285. background:inherit;
  1286. background-color:rgba(240, 240, 240, 1);
  1287. border-radius:0px;
  1288. filter:drop-shadow(none);
  1289. transition:none;
  1290. font-size:14px;
  1291. color:#FFFFFF;
  1292. }
  1293. #u16280.disabled {
  1294. }
  1295. .u16280_input_option {
  1296. font-size:14px;
  1297. }
  1298. #u16281 {
  1299. border-width:0px;
  1300. position:absolute;
  1301. left:1194px;
  1302. top:14px;
  1303. width:22px;
  1304. height:22px;
  1305. display:flex;
  1306. transition:none;
  1307. }
  1308. #u16281 .text {
  1309. position:absolute;
  1310. align-self:center;
  1311. padding:2px 2px 2px 2px;
  1312. box-sizing:border-box;
  1313. width:100%;
  1314. }
  1315. #u16281_img {
  1316. border-width:0px;
  1317. position:absolute;
  1318. left:0px;
  1319. top:0px;
  1320. width:22px;
  1321. height:22px;
  1322. }
  1323. #u16281_text {
  1324. border-width:0px;
  1325. word-wrap:break-word;
  1326. text-transform:none;
  1327. visibility:hidden;
  1328. }
  1329. #u16282_div {
  1330. border-width:0px;
  1331. position:absolute;
  1332. left:0px;
  1333. top:0px;
  1334. width:100px;
  1335. height:24px;
  1336. background:inherit;
  1337. background-color:rgba(242, 242, 242, 0.2);
  1338. border-radius:25px;
  1339. filter:drop-shadow(none);
  1340. transition:none;
  1341. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1342. font-weight:400;
  1343. font-style:normal;
  1344. color:#FFFFFF;
  1345. text-align:center;
  1346. }
  1347. #u16282 {
  1348. border-width:0px;
  1349. position:absolute;
  1350. left:1480px;
  1351. top:13px;
  1352. width:100px;
  1353. height:24px;
  1354. display:flex;
  1355. transition:none;
  1356. transform-origin:50% 50%;
  1357. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1358. font-weight:400;
  1359. font-style:normal;
  1360. color:#FFFFFF;
  1361. text-align:center;
  1362. }
  1363. #u16282 .text {
  1364. position:absolute;
  1365. align-self:center;
  1366. padding:0px 0px 0px 0px;
  1367. box-sizing:border-box;
  1368. width:100%;
  1369. }
  1370. #u16282_text {
  1371. border-width:0px;
  1372. word-wrap:break-word;
  1373. text-transform:none;
  1374. }
  1375. #u16283 {
  1376. border-width:0px;
  1377. position:absolute;
  1378. left:1452px;
  1379. top:19px;
  1380. width:1px;
  1381. height:11px;
  1382. display:flex;
  1383. transition:none;
  1384. }
  1385. #u16283 .text {
  1386. position:absolute;
  1387. align-self:center;
  1388. padding:2px 2px 2px 2px;
  1389. box-sizing:border-box;
  1390. width:100%;
  1391. }
  1392. #u16283_img {
  1393. border-width:0px;
  1394. position:absolute;
  1395. left:0px;
  1396. top:0px;
  1397. width:2px;
  1398. height:12px;
  1399. }
  1400. #u16283_text {
  1401. border-width:0px;
  1402. word-wrap:break-word;
  1403. text-transform:none;
  1404. visibility:hidden;
  1405. }
  1406. #u16284 {
  1407. border-width:0px;
  1408. position:absolute;
  1409. left:0px;
  1410. top:0px;
  1411. width:0px;
  1412. height:0px;
  1413. }
  1414. #u16285_div {
  1415. border-width:0px;
  1416. position:absolute;
  1417. left:0px;
  1418. top:0px;
  1419. width:29px;
  1420. height:20px;
  1421. background:inherit;
  1422. background-color:rgba(255, 255, 255, 0);
  1423. border-radius:25px;
  1424. filter:drop-shadow(none);
  1425. transition:none;
  1426. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1427. font-weight:400;
  1428. font-style:normal;
  1429. color:#FFFFFF;
  1430. }
  1431. #u16285 {
  1432. border-width:0px;
  1433. position:absolute;
  1434. left:52px;
  1435. top:1082px;
  1436. width:29px;
  1437. height:20px;
  1438. display:flex;
  1439. transition:none;
  1440. transform-origin:50% 50%;
  1441. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1442. font-weight:400;
  1443. font-style:normal;
  1444. color:#FFFFFF;
  1445. }
  1446. #u16285 .text {
  1447. position:absolute;
  1448. align-self:center;
  1449. padding:0px 0px 0px 0px;
  1450. box-sizing:border-box;
  1451. width:100%;
  1452. }
  1453. #u16285_text {
  1454. border-width:0px;
  1455. white-space:nowrap;
  1456. text-transform:none;
  1457. }
  1458. #u16286 {
  1459. border-width:0px;
  1460. position:absolute;
  1461. left:20px;
  1462. top:1081px;
  1463. width:22px;
  1464. height:22px;
  1465. display:flex;
  1466. transition:none;
  1467. }
  1468. #u16286 .text {
  1469. position:absolute;
  1470. align-self:center;
  1471. padding:2px 2px 2px 2px;
  1472. box-sizing:border-box;
  1473. width:100%;
  1474. }
  1475. #u16286_img {
  1476. border-width:0px;
  1477. position:absolute;
  1478. left:0px;
  1479. top:0px;
  1480. width:22px;
  1481. height:22px;
  1482. }
  1483. #u16286_text {
  1484. border-width:0px;
  1485. word-wrap:break-word;
  1486. text-transform:none;
  1487. visibility:hidden;
  1488. }
  1489. #u16287 {
  1490. border-width:0px;
  1491. position:absolute;
  1492. left:20px;
  1493. top:1123px;
  1494. width:68px;
  1495. height:1px;
  1496. display:flex;
  1497. transition:none;
  1498. }
  1499. #u16287 .text {
  1500. position:absolute;
  1501. align-self:center;
  1502. padding:2px 2px 2px 2px;
  1503. box-sizing:border-box;
  1504. width:100%;
  1505. }
  1506. #u16287_img {
  1507. border-width:0px;
  1508. position:absolute;
  1509. left:0px;
  1510. top:0px;
  1511. width:69px;
  1512. height:2px;
  1513. }
  1514. #u16287_text {
  1515. border-width:0px;
  1516. word-wrap:break-word;
  1517. text-transform:none;
  1518. visibility:hidden;
  1519. }
  1520. #u16288 {
  1521. border-width:0px;
  1522. position:absolute;
  1523. left:20px;
  1524. top:1061px;
  1525. width:68px;
  1526. height:1px;
  1527. display:flex;
  1528. transition:none;
  1529. }
  1530. #u16288 .text {
  1531. position:absolute;
  1532. align-self:center;
  1533. padding:2px 2px 2px 2px;
  1534. box-sizing:border-box;
  1535. width:100%;
  1536. }
  1537. #u16288_img {
  1538. border-width:0px;
  1539. position:absolute;
  1540. left:0px;
  1541. top:0px;
  1542. width:69px;
  1543. height:2px;
  1544. }
  1545. #u16288_text {
  1546. border-width:0px;
  1547. word-wrap:break-word;
  1548. text-transform:none;
  1549. visibility:hidden;
  1550. }
  1551. #u16289 {
  1552. border-width:0px;
  1553. position:absolute;
  1554. left:20px;
  1555. top:112px;
  1556. width:56px;
  1557. height:1px;
  1558. display:flex;
  1559. transition:none;
  1560. }
  1561. #u16289 .text {
  1562. position:absolute;
  1563. align-self:center;
  1564. padding:2px 2px 2px 2px;
  1565. box-sizing:border-box;
  1566. width:100%;
  1567. }
  1568. #u16289_img {
  1569. border-width:0px;
  1570. position:absolute;
  1571. left:0px;
  1572. top:0px;
  1573. width:57px;
  1574. height:2px;
  1575. }
  1576. #u16289_text {
  1577. border-width:0px;
  1578. word-wrap:break-word;
  1579. text-transform:none;
  1580. visibility:hidden;
  1581. }
  1582. #u16290 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:0px;
  1586. top:0px;
  1587. width:0px;
  1588. height:0px;
  1589. }
  1590. #u16291_div {
  1591. border-width:0px;
  1592. position:absolute;
  1593. left:0px;
  1594. top:0px;
  1595. width:33px;
  1596. height:22px;
  1597. background:inherit;
  1598. background-color:rgba(255, 255, 255, 0);
  1599. border-radius:0px;
  1600. filter:drop-shadow(none);
  1601. transition:none;
  1602. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1603. font-weight:400;
  1604. font-style:normal;
  1605. font-size:16px;
  1606. color:#FFFFFF;
  1607. }
  1608. #u16291 {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:43px;
  1612. top:71px;
  1613. width:33px;
  1614. height:22px;
  1615. display:flex;
  1616. transition:none;
  1617. transform-origin:50% 50%;
  1618. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1619. font-weight:400;
  1620. font-style:normal;
  1621. font-size:16px;
  1622. color:#FFFFFF;
  1623. }
  1624. #u16291 .text {
  1625. position:absolute;
  1626. align-self:flex-start;
  1627. padding:0px 0px 0px 0px;
  1628. box-sizing:border-box;
  1629. width:100%;
  1630. }
  1631. #u16291_text {
  1632. border-width:0px;
  1633. white-space:nowrap;
  1634. text-transform:none;
  1635. }
  1636. #u16292 {
  1637. border-width:0px;
  1638. position:absolute;
  1639. left:20px;
  1640. top:75px;
  1641. width:18px;
  1642. height:14px;
  1643. display:flex;
  1644. transition:none;
  1645. }
  1646. #u16292 .text {
  1647. position:absolute;
  1648. align-self:center;
  1649. padding:2px 2px 2px 2px;
  1650. box-sizing:border-box;
  1651. width:100%;
  1652. }
  1653. #u16292_img {
  1654. border-width:0px;
  1655. position:absolute;
  1656. left:0px;
  1657. top:0px;
  1658. width:18px;
  1659. height:14px;
  1660. }
  1661. #u16292_text {
  1662. border-width:0px;
  1663. word-wrap:break-word;
  1664. text-transform:none;
  1665. visibility:hidden;
  1666. }
  1667. #u16293_div {
  1668. border-width:0px;
  1669. position:absolute;
  1670. left:0px;
  1671. top:0px;
  1672. width:1259px;
  1673. height:1190px;
  1674. background:inherit;
  1675. background-color:rgba(255, 255, 255, 1);
  1676. border-radius:0px;
  1677. filter:drop-shadow(none);
  1678. transition:none;
  1679. }
  1680. #u16293 {
  1681. border-width:0px;
  1682. position:absolute;
  1683. left:330px;
  1684. top:50px;
  1685. width:1259px;
  1686. height:1190px;
  1687. display:flex;
  1688. transition:none;
  1689. transform-origin:50% 50%;
  1690. }
  1691. #u16293 .text {
  1692. position:absolute;
  1693. align-self:center;
  1694. padding:2px 2px 2px 2px;
  1695. box-sizing:border-box;
  1696. width:100%;
  1697. }
  1698. #u16293_text {
  1699. border-width:0px;
  1700. word-wrap:break-word;
  1701. text-transform:none;
  1702. visibility:hidden;
  1703. }
  1704. #u16294 {
  1705. border-width:0px;
  1706. position:absolute;
  1707. left:0px;
  1708. top:0px;
  1709. width:0px;
  1710. height:0px;
  1711. }
  1712. #u16295_div {
  1713. border-width:0px;
  1714. position:absolute;
  1715. left:0px;
  1716. top:0px;
  1717. width:60px;
  1718. height:30px;
  1719. background:inherit;
  1720. background-color:rgba(24, 144, 255, 1);
  1721. border-radius:4px;
  1722. filter:drop-shadow(none);
  1723. transition:none;
  1724. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1725. font-weight:400;
  1726. font-style:normal;
  1727. font-size:14px;
  1728. color:#FFFFFF;
  1729. }
  1730. #u16295 {
  1731. border-width:0px;
  1732. position:absolute;
  1733. left:350px;
  1734. top:234px;
  1735. width:60px;
  1736. height:30px;
  1737. display:flex;
  1738. transition:none;
  1739. transform-origin:50% 50%;
  1740. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1741. font-weight:400;
  1742. font-style:normal;
  1743. font-size:14px;
  1744. color:#FFFFFF;
  1745. }
  1746. #u16295 .text {
  1747. position:absolute;
  1748. align-self:center;
  1749. padding:2px 2px 2px 2px;
  1750. box-sizing:border-box;
  1751. width:100%;
  1752. }
  1753. #u16295_text {
  1754. border-width:0px;
  1755. word-wrap:break-word;
  1756. text-transform:none;
  1757. }
  1758. #u16296_div {
  1759. border-width:0px;
  1760. position:absolute;
  1761. left:0px;
  1762. top:0px;
  1763. width:60px;
  1764. height:30px;
  1765. background:inherit;
  1766. background-color:rgba(255, 255, 255, 1);
  1767. box-sizing:border-box;
  1768. border-width:1px;
  1769. border-style:solid;
  1770. border-color:rgba(170, 170, 170, 1);
  1771. border-radius:4px;
  1772. filter:drop-shadow(none);
  1773. transition:none;
  1774. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1775. font-weight:400;
  1776. font-style:normal;
  1777. font-size:14px;
  1778. }
  1779. #u16296 {
  1780. border-width:0px;
  1781. position:absolute;
  1782. left:420px;
  1783. top:234px;
  1784. width:60px;
  1785. height:30px;
  1786. display:flex;
  1787. transition:none;
  1788. transform-origin:50% 50%;
  1789. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  1790. font-weight:400;
  1791. font-style:normal;
  1792. font-size:14px;
  1793. }
  1794. #u16296 .text {
  1795. position:absolute;
  1796. align-self:center;
  1797. padding:2px 2px 2px 2px;
  1798. box-sizing:border-box;
  1799. width:100%;
  1800. }
  1801. #u16296_text {
  1802. border-width:0px;
  1803. word-wrap:break-word;
  1804. text-transform:none;
  1805. }
  1806. #u16297 {
  1807. border-width:0px;
  1808. position:absolute;
  1809. left:0px;
  1810. top:0px;
  1811. width:0px;
  1812. height:0px;
  1813. }
  1814. #u16298_div {
  1815. border-width:0px;
  1816. position:absolute;
  1817. left:0px;
  1818. top:0px;
  1819. width:140px;
  1820. height:30px;
  1821. background:inherit;
  1822. background-color:rgba(255, 255, 255, 1);
  1823. box-sizing:border-box;
  1824. border-width:1px;
  1825. border-style:solid;
  1826. border-color:rgba(215, 215, 215, 1);
  1827. border-radius:4px;
  1828. filter:drop-shadow(none);
  1829. transition:none;
  1830. font-size:14px;
  1831. }
  1832. #u16298 {
  1833. border-width:0px;
  1834. position:absolute;
  1835. left:800px;
  1836. top:194px;
  1837. width:140px;
  1838. height:30px;
  1839. display:flex;
  1840. transition:none;
  1841. transform-origin:50% 50%;
  1842. font-size:14px;
  1843. }
  1844. #u16298 .text {
  1845. position:absolute;
  1846. align-self:center;
  1847. padding:2px 2px 2px 2px;
  1848. box-sizing:border-box;
  1849. width:100%;
  1850. }
  1851. #u16298_text {
  1852. border-width:0px;
  1853. word-wrap:break-word;
  1854. text-transform:none;
  1855. visibility:hidden;
  1856. }
  1857. #u16299_input {
  1858. position:absolute;
  1859. left:0px;
  1860. top:0px;
  1861. width:134px;
  1862. height:23px;
  1863. padding:2px 2px 2px 2px;
  1864. font-family:"ArialMT", "Arial", sans-serif;
  1865. font-weight:400;
  1866. font-style:normal;
  1867. font-size:14px;
  1868. letter-spacing:normal;
  1869. color:#AAAAAA;
  1870. vertical-align:none;
  1871. text-align:left;
  1872. text-transform:none;
  1873. background-color:transparent;
  1874. border-color:transparent;
  1875. }
  1876. #u16299_input.disabled {
  1877. position:absolute;
  1878. left:0px;
  1879. top:0px;
  1880. width:134px;
  1881. height:23px;
  1882. padding:2px 2px 2px 2px;
  1883. font-family:"ArialMT", "Arial", sans-serif;
  1884. font-weight:400;
  1885. font-style:normal;
  1886. font-size:14px;
  1887. letter-spacing:normal;
  1888. color:#AAAAAA;
  1889. vertical-align:none;
  1890. text-align:left;
  1891. text-transform:none;
  1892. background-color:transparent;
  1893. border-color:transparent;
  1894. }
  1895. #u16299_div {
  1896. border-width:0px;
  1897. position:absolute;
  1898. left:0px;
  1899. top:0px;
  1900. width:134px;
  1901. height:23px;
  1902. background:inherit;
  1903. background-color:rgba(255, 255, 255, 1);
  1904. border-radius:0px;
  1905. filter:drop-shadow(none);
  1906. transition:none;
  1907. font-size:14px;
  1908. color:#AAAAAA;
  1909. }
  1910. #u16299 {
  1911. border-width:0px;
  1912. position:absolute;
  1913. left:804px;
  1914. top:196px;
  1915. width:134px;
  1916. height:23px;
  1917. display:flex;
  1918. transition:none;
  1919. transform-origin:50% 50%;
  1920. font-size:14px;
  1921. color:#AAAAAA;
  1922. }
  1923. #u16299 .text {
  1924. position:absolute;
  1925. align-self:flex-start;
  1926. padding:2px 2px 2px 2px;
  1927. box-sizing:border-box;
  1928. width:100%;
  1929. }
  1930. #u16299_div.disabled {
  1931. border-width:0px;
  1932. position:absolute;
  1933. left:0px;
  1934. top:0px;
  1935. width:134px;
  1936. height:23px;
  1937. background:inherit;
  1938. background-color:rgba(240, 240, 240, 1);
  1939. border-radius:0px;
  1940. filter:drop-shadow(none);
  1941. transition:none;
  1942. font-size:14px;
  1943. color:#AAAAAA;
  1944. }
  1945. #u16299.disabled {
  1946. }
  1947. .u16299_input_option {
  1948. font-size:14px;
  1949. }
  1950. #u16300 {
  1951. border-width:0px;
  1952. position:absolute;
  1953. left:0px;
  1954. top:0px;
  1955. width:0px;
  1956. height:0px;
  1957. }
  1958. #u16301_div {
  1959. border-width:0px;
  1960. position:absolute;
  1961. left:0px;
  1962. top:0px;
  1963. width:140px;
  1964. height:30px;
  1965. background:inherit;
  1966. background-color:rgba(255, 255, 255, 1);
  1967. box-sizing:border-box;
  1968. border-width:1px;
  1969. border-style:solid;
  1970. border-color:rgba(215, 215, 215, 1);
  1971. border-radius:4px;
  1972. filter:drop-shadow(none);
  1973. transition:none;
  1974. font-size:12px;
  1975. }
  1976. #u16301 {
  1977. border-width:0px;
  1978. position:absolute;
  1979. left:950px;
  1980. top:194px;
  1981. width:140px;
  1982. height:30px;
  1983. display:flex;
  1984. transition:none;
  1985. transform-origin:50% 50%;
  1986. font-size:12px;
  1987. }
  1988. #u16301 .text {
  1989. position:absolute;
  1990. align-self:center;
  1991. padding:2px 2px 2px 2px;
  1992. box-sizing:border-box;
  1993. width:100%;
  1994. }
  1995. #u16301_text {
  1996. border-width:0px;
  1997. word-wrap:break-word;
  1998. text-transform:none;
  1999. visibility:hidden;
  2000. }
  2001. #u16302_input {
  2002. position:absolute;
  2003. left:0px;
  2004. top:0px;
  2005. width:134px;
  2006. height:23px;
  2007. padding:2px 2px 2px 2px;
  2008. font-family:"ArialMT", "Arial", sans-serif;
  2009. font-weight:400;
  2010. font-style:normal;
  2011. font-size:12px;
  2012. letter-spacing:normal;
  2013. color:#AAAAAA;
  2014. vertical-align:none;
  2015. text-align:left;
  2016. text-transform:none;
  2017. background-color:transparent;
  2018. border-color:transparent;
  2019. }
  2020. #u16302_input.disabled {
  2021. position:absolute;
  2022. left:0px;
  2023. top:0px;
  2024. width:134px;
  2025. height:23px;
  2026. padding:2px 2px 2px 2px;
  2027. font-family:"ArialMT", "Arial", sans-serif;
  2028. font-weight:400;
  2029. font-style:normal;
  2030. font-size:12px;
  2031. letter-spacing:normal;
  2032. color:#AAAAAA;
  2033. vertical-align:none;
  2034. text-align:left;
  2035. text-transform:none;
  2036. background-color:transparent;
  2037. border-color:transparent;
  2038. }
  2039. #u16302_div {
  2040. border-width:0px;
  2041. position:absolute;
  2042. left:0px;
  2043. top:0px;
  2044. width:134px;
  2045. height:23px;
  2046. background:inherit;
  2047. background-color:rgba(255, 255, 255, 1);
  2048. border-radius:0px;
  2049. filter:drop-shadow(none);
  2050. transition:none;
  2051. font-size:12px;
  2052. color:#AAAAAA;
  2053. }
  2054. #u16302 {
  2055. border-width:0px;
  2056. position:absolute;
  2057. left:954px;
  2058. top:196px;
  2059. width:134px;
  2060. height:23px;
  2061. display:flex;
  2062. transition:none;
  2063. transform-origin:50% 50%;
  2064. font-size:12px;
  2065. color:#AAAAAA;
  2066. }
  2067. #u16302 .text {
  2068. position:absolute;
  2069. align-self:flex-start;
  2070. padding:2px 2px 2px 2px;
  2071. box-sizing:border-box;
  2072. width:100%;
  2073. }
  2074. #u16302_div.disabled {
  2075. border-width:0px;
  2076. position:absolute;
  2077. left:0px;
  2078. top:0px;
  2079. width:134px;
  2080. height:23px;
  2081. background:inherit;
  2082. background-color:rgba(240, 240, 240, 1);
  2083. border-radius:0px;
  2084. filter:drop-shadow(none);
  2085. transition:none;
  2086. font-size:12px;
  2087. color:#AAAAAA;
  2088. }
  2089. #u16302.disabled {
  2090. }
  2091. .u16302_input_option {
  2092. font-size:12px;
  2093. }
  2094. #u16303 {
  2095. border-width:0px;
  2096. position:absolute;
  2097. left:0px;
  2098. top:0px;
  2099. width:0px;
  2100. height:0px;
  2101. }
  2102. #u16304_div {
  2103. border-width:0px;
  2104. position:absolute;
  2105. left:0px;
  2106. top:0px;
  2107. width:140px;
  2108. height:30px;
  2109. background:inherit;
  2110. background-color:rgba(255, 255, 255, 1);
  2111. box-sizing:border-box;
  2112. border-width:1px;
  2113. border-style:solid;
  2114. border-color:rgba(201, 201, 201, 1);
  2115. border-radius:4px;
  2116. filter:drop-shadow(none);
  2117. transition:none;
  2118. font-family:"Microsoft YaHei", sans-serif;
  2119. font-weight:400;
  2120. font-style:normal;
  2121. font-size:14px;
  2122. color:#CCCCCC;
  2123. text-align:left;
  2124. }
  2125. #u16304 {
  2126. border-width:0px;
  2127. position:absolute;
  2128. left:500px;
  2129. top:194px;
  2130. width:140px;
  2131. height:30px;
  2132. display:flex;
  2133. transition:none;
  2134. transform-origin:50% 50%;
  2135. font-family:"Microsoft YaHei", sans-serif;
  2136. font-weight:400;
  2137. font-style:normal;
  2138. font-size:14px;
  2139. color:#CCCCCC;
  2140. text-align:left;
  2141. }
  2142. #u16304 .text {
  2143. position:absolute;
  2144. align-self:center;
  2145. padding:2px 8px 2px 8px;
  2146. box-sizing:border-box;
  2147. width:100%;
  2148. }
  2149. #u16304_text {
  2150. border-width:0px;
  2151. word-wrap:break-word;
  2152. text-transform:none;
  2153. visibility:hidden;
  2154. }
  2155. #u16305_input {
  2156. position:absolute;
  2157. left:0px;
  2158. top:0px;
  2159. width:127px;
  2160. height:25px;
  2161. padding:2px 2px 2px 2px;
  2162. font-family:"Microsoft YaHei", sans-serif;
  2163. font-weight:400;
  2164. font-style:normal;
  2165. font-size:10px;
  2166. letter-spacing:normal;
  2167. color:#000000;
  2168. vertical-align:none;
  2169. text-align:left;
  2170. text-transform:none;
  2171. background-color:transparent;
  2172. border-color:transparent;
  2173. }
  2174. #u16305_input.hint {
  2175. position:absolute;
  2176. left:0px;
  2177. top:0px;
  2178. width:127px;
  2179. height:25px;
  2180. padding:2px 2px 2px 2px;
  2181. font-family:"Microsoft YaHei", sans-serif;
  2182. font-weight:400;
  2183. font-style:normal;
  2184. font-size:12px;
  2185. letter-spacing:normal;
  2186. color:#AAAAAA;
  2187. vertical-align:none;
  2188. text-align:left;
  2189. text-transform:none;
  2190. background-color:transparent;
  2191. border-color:transparent;
  2192. }
  2193. #u16305_input.disabled {
  2194. position:absolute;
  2195. left:0px;
  2196. top:0px;
  2197. width:127px;
  2198. height:25px;
  2199. padding:2px 2px 2px 2px;
  2200. font-family:"Microsoft YaHei", sans-serif;
  2201. font-weight:400;
  2202. font-style:normal;
  2203. font-size:10px;
  2204. letter-spacing:normal;
  2205. color:#000000;
  2206. vertical-align:none;
  2207. text-align:left;
  2208. text-transform:none;
  2209. background-color:transparent;
  2210. border-color:transparent;
  2211. }
  2212. #u16305_input.hint.disabled {
  2213. position:absolute;
  2214. left:0px;
  2215. top:0px;
  2216. width:127px;
  2217. height:25px;
  2218. padding:2px 2px 2px 2px;
  2219. font-family:"Microsoft YaHei", sans-serif;
  2220. font-weight:400;
  2221. font-style:normal;
  2222. font-size:12px;
  2223. letter-spacing:normal;
  2224. color:#AAAAAA;
  2225. vertical-align:none;
  2226. text-align:left;
  2227. text-transform:none;
  2228. background-color:transparent;
  2229. border-color:transparent;
  2230. }
  2231. #u16305_div {
  2232. border-width:0px;
  2233. position:absolute;
  2234. left:0px;
  2235. top:0px;
  2236. width:127px;
  2237. height:25px;
  2238. background:inherit;
  2239. background-color:rgba(255, 255, 255, 1);
  2240. border-radius:0px;
  2241. filter:drop-shadow(none);
  2242. transition:none;
  2243. font-family:"Microsoft YaHei", sans-serif;
  2244. font-weight:400;
  2245. font-style:normal;
  2246. font-size:10px;
  2247. }
  2248. #u16305 {
  2249. border-width:0px;
  2250. position:absolute;
  2251. left:508px;
  2252. top:195px;
  2253. width:127px;
  2254. height:25px;
  2255. display:flex;
  2256. transition:none;
  2257. transform-origin:50% 50%;
  2258. font-family:"Microsoft YaHei", sans-serif;
  2259. font-weight:400;
  2260. font-style:normal;
  2261. font-size:10px;
  2262. }
  2263. #u16305 .text {
  2264. position:absolute;
  2265. align-self:center;
  2266. padding:2px 2px 2px 2px;
  2267. box-sizing:border-box;
  2268. width:100%;
  2269. }
  2270. #u16305_div.hint {
  2271. border-width:0px;
  2272. position:absolute;
  2273. left:0px;
  2274. top:0px;
  2275. width:127px;
  2276. height:25px;
  2277. background:inherit;
  2278. background-color:rgba(255, 255, 255, 1);
  2279. border-radius:0px;
  2280. filter:drop-shadow(none);
  2281. transition:none;
  2282. font-family:"Microsoft YaHei", sans-serif;
  2283. font-weight:400;
  2284. font-style:normal;
  2285. font-size:10px;
  2286. }
  2287. #u16305.hint {
  2288. }
  2289. #u16305_div.disabled {
  2290. border-width:0px;
  2291. position:absolute;
  2292. left:0px;
  2293. top:0px;
  2294. width:127px;
  2295. height:25px;
  2296. background:inherit;
  2297. background-color:rgba(240, 240, 240, 1);
  2298. border-radius:0px;
  2299. filter:drop-shadow(none);
  2300. transition:none;
  2301. font-family:"Microsoft YaHei", sans-serif;
  2302. font-weight:400;
  2303. font-style:normal;
  2304. font-size:10px;
  2305. }
  2306. #u16305.disabled {
  2307. }
  2308. #u16305_div.hint.disabled {
  2309. border-width:0px;
  2310. position:absolute;
  2311. left:0px;
  2312. top:0px;
  2313. width:127px;
  2314. height:25px;
  2315. background:inherit;
  2316. background-color:rgba(240, 240, 240, 1);
  2317. border-radius:0px;
  2318. filter:drop-shadow(none);
  2319. transition:none;
  2320. font-family:"Microsoft YaHei", sans-serif;
  2321. font-weight:400;
  2322. font-style:normal;
  2323. font-size:10px;
  2324. }
  2325. #u16305.hint.disabled {
  2326. }
  2327. #u16306 {
  2328. border-width:0px;
  2329. position:absolute;
  2330. left:0px;
  2331. top:0px;
  2332. width:0px;
  2333. height:0px;
  2334. }
  2335. #u16307_div {
  2336. border-width:0px;
  2337. position:absolute;
  2338. left:0px;
  2339. top:0px;
  2340. width:140px;
  2341. height:30px;
  2342. background:inherit;
  2343. background-color:rgba(255, 255, 255, 1);
  2344. box-sizing:border-box;
  2345. border-width:1px;
  2346. border-style:solid;
  2347. border-color:rgba(215, 215, 215, 1);
  2348. border-radius:4px;
  2349. filter:drop-shadow(none);
  2350. transition:none;
  2351. font-size:12px;
  2352. }
  2353. #u16307 {
  2354. border-width:0px;
  2355. position:absolute;
  2356. left:350px;
  2357. top:194px;
  2358. width:140px;
  2359. height:30px;
  2360. display:flex;
  2361. transition:none;
  2362. transform-origin:50% 50%;
  2363. font-size:12px;
  2364. }
  2365. #u16307 .text {
  2366. position:absolute;
  2367. align-self:center;
  2368. padding:2px 2px 2px 2px;
  2369. box-sizing:border-box;
  2370. width:100%;
  2371. }
  2372. #u16307_text {
  2373. border-width:0px;
  2374. word-wrap:break-word;
  2375. text-transform:none;
  2376. visibility:hidden;
  2377. }
  2378. #u16308_input {
  2379. position:absolute;
  2380. left:0px;
  2381. top:0px;
  2382. width:134px;
  2383. height:23px;
  2384. padding:2px 2px 2px 2px;
  2385. font-family:"ArialMT", "Arial", sans-serif;
  2386. font-weight:400;
  2387. font-style:normal;
  2388. font-size:12px;
  2389. letter-spacing:normal;
  2390. color:#AAAAAA;
  2391. vertical-align:none;
  2392. text-align:left;
  2393. text-transform:none;
  2394. background-color:transparent;
  2395. border-color:transparent;
  2396. }
  2397. #u16308_input.disabled {
  2398. position:absolute;
  2399. left:0px;
  2400. top:0px;
  2401. width:134px;
  2402. height:23px;
  2403. padding:2px 2px 2px 2px;
  2404. font-family:"ArialMT", "Arial", sans-serif;
  2405. font-weight:400;
  2406. font-style:normal;
  2407. font-size:12px;
  2408. letter-spacing:normal;
  2409. color:#AAAAAA;
  2410. vertical-align:none;
  2411. text-align:left;
  2412. text-transform:none;
  2413. background-color:transparent;
  2414. border-color:transparent;
  2415. }
  2416. #u16308_div {
  2417. border-width:0px;
  2418. position:absolute;
  2419. left:0px;
  2420. top:0px;
  2421. width:134px;
  2422. height:23px;
  2423. background:inherit;
  2424. background-color:rgba(255, 255, 255, 1);
  2425. border-radius:0px;
  2426. filter:drop-shadow(none);
  2427. transition:none;
  2428. font-size:12px;
  2429. color:#AAAAAA;
  2430. }
  2431. #u16308 {
  2432. border-width:0px;
  2433. position:absolute;
  2434. left:354px;
  2435. top:196px;
  2436. width:134px;
  2437. height:23px;
  2438. display:flex;
  2439. transition:none;
  2440. transform-origin:50% 50%;
  2441. font-size:12px;
  2442. color:#AAAAAA;
  2443. }
  2444. #u16308 .text {
  2445. position:absolute;
  2446. align-self:flex-start;
  2447. padding:2px 2px 2px 2px;
  2448. box-sizing:border-box;
  2449. width:100%;
  2450. }
  2451. #u16308_div.disabled {
  2452. border-width:0px;
  2453. position:absolute;
  2454. left:0px;
  2455. top:0px;
  2456. width:134px;
  2457. height:23px;
  2458. background:inherit;
  2459. background-color:rgba(240, 240, 240, 1);
  2460. border-radius:0px;
  2461. filter:drop-shadow(none);
  2462. transition:none;
  2463. font-size:12px;
  2464. color:#AAAAAA;
  2465. }
  2466. #u16308.disabled {
  2467. }
  2468. .u16308_input_option {
  2469. font-size:12px;
  2470. }
  2471. #u16309_div {
  2472. border-width:0px;
  2473. position:absolute;
  2474. left:0px;
  2475. top:0px;
  2476. width:60px;
  2477. height:30px;
  2478. background:inherit;
  2479. background-color:rgba(255, 255, 255, 1);
  2480. box-sizing:border-box;
  2481. border-width:1px;
  2482. border-style:solid;
  2483. border-color:rgba(170, 170, 170, 1);
  2484. border-radius:4px;
  2485. filter:drop-shadow(none);
  2486. transition:none;
  2487. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2488. font-weight:400;
  2489. font-style:normal;
  2490. font-size:14px;
  2491. }
  2492. #u16309 {
  2493. border-width:0px;
  2494. position:absolute;
  2495. left:1508px;
  2496. top:60px;
  2497. width:60px;
  2498. height:30px;
  2499. display:flex;
  2500. transition:none;
  2501. transform-origin:50% 50%;
  2502. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2503. font-weight:400;
  2504. font-style:normal;
  2505. font-size:14px;
  2506. }
  2507. #u16309 .text {
  2508. position:absolute;
  2509. align-self:center;
  2510. padding:2px 2px 2px 2px;
  2511. box-sizing:border-box;
  2512. width:100%;
  2513. }
  2514. #u16309_text {
  2515. border-width:0px;
  2516. word-wrap:break-word;
  2517. text-transform:none;
  2518. }
  2519. #u16310 {
  2520. border-width:0px;
  2521. position:absolute;
  2522. left:0px;
  2523. top:0px;
  2524. width:0px;
  2525. height:0px;
  2526. }
  2527. #u16311_div {
  2528. border-width:0px;
  2529. position:absolute;
  2530. left:0px;
  2531. top:0px;
  2532. width:140px;
  2533. height:30px;
  2534. background:inherit;
  2535. background-color:rgba(255, 255, 255, 1);
  2536. box-sizing:border-box;
  2537. border-width:1px;
  2538. border-style:solid;
  2539. border-color:rgba(215, 215, 215, 1);
  2540. border-radius:4px;
  2541. filter:drop-shadow(none);
  2542. transition:none;
  2543. font-size:12px;
  2544. }
  2545. #u16311 {
  2546. border-width:0px;
  2547. position:absolute;
  2548. left:1100px;
  2549. top:194px;
  2550. width:140px;
  2551. height:30px;
  2552. display:flex;
  2553. transition:none;
  2554. transform-origin:50% 50%;
  2555. font-size:12px;
  2556. }
  2557. #u16311 .text {
  2558. position:absolute;
  2559. align-self:center;
  2560. padding:2px 2px 2px 2px;
  2561. box-sizing:border-box;
  2562. width:100%;
  2563. }
  2564. #u16311_text {
  2565. border-width:0px;
  2566. word-wrap:break-word;
  2567. text-transform:none;
  2568. visibility:hidden;
  2569. }
  2570. #u16312_input {
  2571. position:absolute;
  2572. left:0px;
  2573. top:0px;
  2574. width:134px;
  2575. height:23px;
  2576. padding:2px 2px 2px 2px;
  2577. font-family:"ArialMT", "Arial", sans-serif;
  2578. font-weight:400;
  2579. font-style:normal;
  2580. font-size:12px;
  2581. letter-spacing:normal;
  2582. color:#AAAAAA;
  2583. vertical-align:none;
  2584. text-align:left;
  2585. text-transform:none;
  2586. background-color:transparent;
  2587. border-color:transparent;
  2588. }
  2589. #u16312_input.disabled {
  2590. position:absolute;
  2591. left:0px;
  2592. top:0px;
  2593. width:134px;
  2594. height:23px;
  2595. padding:2px 2px 2px 2px;
  2596. font-family:"ArialMT", "Arial", sans-serif;
  2597. font-weight:400;
  2598. font-style:normal;
  2599. font-size:12px;
  2600. letter-spacing:normal;
  2601. color:#AAAAAA;
  2602. vertical-align:none;
  2603. text-align:left;
  2604. text-transform:none;
  2605. background-color:transparent;
  2606. border-color:transparent;
  2607. }
  2608. #u16312_div {
  2609. border-width:0px;
  2610. position:absolute;
  2611. left:0px;
  2612. top:0px;
  2613. width:134px;
  2614. height:23px;
  2615. background:inherit;
  2616. background-color:rgba(255, 255, 255, 1);
  2617. border-radius:0px;
  2618. filter:drop-shadow(none);
  2619. transition:none;
  2620. font-size:12px;
  2621. color:#AAAAAA;
  2622. }
  2623. #u16312 {
  2624. border-width:0px;
  2625. position:absolute;
  2626. left:1104px;
  2627. top:196px;
  2628. width:134px;
  2629. height:23px;
  2630. display:flex;
  2631. transition:none;
  2632. transform-origin:50% 50%;
  2633. font-size:12px;
  2634. color:#AAAAAA;
  2635. }
  2636. #u16312 .text {
  2637. position:absolute;
  2638. align-self:flex-start;
  2639. padding:2px 2px 2px 2px;
  2640. box-sizing:border-box;
  2641. width:100%;
  2642. }
  2643. #u16312_div.disabled {
  2644. border-width:0px;
  2645. position:absolute;
  2646. left:0px;
  2647. top:0px;
  2648. width:134px;
  2649. height:23px;
  2650. background:inherit;
  2651. background-color:rgba(240, 240, 240, 1);
  2652. border-radius:0px;
  2653. filter:drop-shadow(none);
  2654. transition:none;
  2655. font-size:12px;
  2656. color:#AAAAAA;
  2657. }
  2658. #u16312.disabled {
  2659. }
  2660. .u16312_input_option {
  2661. font-size:12px;
  2662. }
  2663. #u16313 {
  2664. border-width:0px;
  2665. position:absolute;
  2666. left:120px;
  2667. top:50px;
  2668. width:201px;
  2669. height:1190px;
  2670. }
  2671. #u16314 {
  2672. border-width:0px;
  2673. position:absolute;
  2674. left:0px;
  2675. top:0px;
  2676. width:0px;
  2677. height:0px;
  2678. }
  2679. #u16315_div {
  2680. border-width:0px;
  2681. position:absolute;
  2682. left:0px;
  2683. top:0px;
  2684. width:200px;
  2685. height:1190px;
  2686. background:inherit;
  2687. background-color:rgba(255, 255, 255, 1);
  2688. border-radius:0px;
  2689. filter:drop-shadow(none);
  2690. transition:none;
  2691. }
  2692. #u16315 {
  2693. border-width:0px;
  2694. position:absolute;
  2695. left:0px;
  2696. top:0px;
  2697. width:200px;
  2698. height:1190px;
  2699. display:flex;
  2700. transition:none;
  2701. transform-origin:50% 50%;
  2702. }
  2703. #u16315 .text {
  2704. position:absolute;
  2705. align-self:center;
  2706. padding:2px 2px 2px 2px;
  2707. box-sizing:border-box;
  2708. width:100%;
  2709. }
  2710. #u16315_text {
  2711. border-width:0px;
  2712. word-wrap:break-word;
  2713. text-transform:none;
  2714. visibility:hidden;
  2715. }
  2716. #u16316_div {
  2717. border-width:0px;
  2718. position:absolute;
  2719. left:0px;
  2720. top:0px;
  2721. width:200px;
  2722. height:60px;
  2723. background:inherit;
  2724. background-color:rgba(224, 231, 247, 1);
  2725. border-radius:0px;
  2726. filter:drop-shadow(none);
  2727. transition:none;
  2728. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  2729. font-weight:500;
  2730. font-style:normal;
  2731. font-size:18px;
  2732. }
  2733. #u16316 {
  2734. border-width:0px;
  2735. position:absolute;
  2736. left:0px;
  2737. top:0px;
  2738. width:200px;
  2739. height:60px;
  2740. display:flex;
  2741. transition:none;
  2742. transform-origin:50% 50%;
  2743. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  2744. font-weight:500;
  2745. font-style:normal;
  2746. font-size:18px;
  2747. }
  2748. #u16316 .text {
  2749. position:absolute;
  2750. align-self:center;
  2751. padding:0px 0px 0px 20px;
  2752. box-sizing:border-box;
  2753. width:100%;
  2754. }
  2755. #u16316_text {
  2756. border-width:0px;
  2757. word-wrap:break-word;
  2758. text-transform:none;
  2759. }
  2760. #u16317_div {
  2761. border-width:0px;
  2762. position:absolute;
  2763. left:0px;
  2764. top:0px;
  2765. width:65px;
  2766. height:22px;
  2767. background:inherit;
  2768. background-color:rgba(255, 255, 255, 0);
  2769. border-radius:0px;
  2770. filter:drop-shadow(none);
  2771. transition:none;
  2772. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2773. font-weight:400;
  2774. font-style:normal;
  2775. font-size:16px;
  2776. }
  2777. #u16317 {
  2778. border-width:0px;
  2779. position:absolute;
  2780. left:25px;
  2781. top:446px;
  2782. width:65px;
  2783. height:22px;
  2784. display:flex;
  2785. transition:none;
  2786. transform-origin:50% 50%;
  2787. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2788. font-weight:400;
  2789. font-style:normal;
  2790. font-size:16px;
  2791. }
  2792. #u16317 .text {
  2793. position:absolute;
  2794. align-self:flex-start;
  2795. padding:0px 0px 0px 0px;
  2796. box-sizing:border-box;
  2797. width:100%;
  2798. }
  2799. #u16317_text {
  2800. border-width:0px;
  2801. white-space:nowrap;
  2802. text-transform:none;
  2803. }
  2804. #u16318_div {
  2805. border-width:0px;
  2806. position:absolute;
  2807. left:0px;
  2808. top:0px;
  2809. width:49px;
  2810. height:17px;
  2811. background:inherit;
  2812. background-color:rgba(255, 255, 255, 0);
  2813. border-radius:0px;
  2814. filter:drop-shadow(none);
  2815. transition:none;
  2816. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2817. font-weight:400;
  2818. font-style:normal;
  2819. font-size:12px;
  2820. color:#AAAAAA;
  2821. }
  2822. #u16318 {
  2823. border-width:0px;
  2824. position:absolute;
  2825. left:23px;
  2826. top:409px;
  2827. width:49px;
  2828. height:17px;
  2829. display:flex;
  2830. transition:none;
  2831. transform-origin:50% 50%;
  2832. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2833. font-weight:400;
  2834. font-style:normal;
  2835. font-size:12px;
  2836. color:#AAAAAA;
  2837. }
  2838. #u16318 .text {
  2839. position:absolute;
  2840. align-self:flex-start;
  2841. padding:0px 0px 0px 0px;
  2842. box-sizing:border-box;
  2843. width:100%;
  2844. }
  2845. #u16318_text {
  2846. border-width:0px;
  2847. white-space:nowrap;
  2848. text-transform:none;
  2849. }
  2850. #u16319_div {
  2851. border-width:0px;
  2852. position:absolute;
  2853. left:0px;
  2854. top:0px;
  2855. width:49px;
  2856. height:17px;
  2857. background:inherit;
  2858. background-color:rgba(255, 255, 255, 0);
  2859. border-radius:0px;
  2860. filter:drop-shadow(none);
  2861. transition:none;
  2862. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2863. font-weight:400;
  2864. font-style:normal;
  2865. font-size:12px;
  2866. color:#AAAAAA;
  2867. }
  2868. #u16319 {
  2869. border-width:0px;
  2870. position:absolute;
  2871. left:24px;
  2872. top:81px;
  2873. width:49px;
  2874. height:17px;
  2875. display:flex;
  2876. transition:none;
  2877. transform-origin:50% 50%;
  2878. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2879. font-weight:400;
  2880. font-style:normal;
  2881. font-size:12px;
  2882. color:#AAAAAA;
  2883. }
  2884. #u16319 .text {
  2885. position:absolute;
  2886. align-self:flex-start;
  2887. padding:0px 0px 0px 0px;
  2888. box-sizing:border-box;
  2889. width:100%;
  2890. }
  2891. #u16319_text {
  2892. border-width:0px;
  2893. white-space:nowrap;
  2894. text-transform:none;
  2895. }
  2896. #u16320_div {
  2897. border-width:0px;
  2898. position:absolute;
  2899. left:0px;
  2900. top:0px;
  2901. width:65px;
  2902. height:22px;
  2903. background:inherit;
  2904. background-color:rgba(255, 255, 255, 0);
  2905. border-radius:0px;
  2906. filter:drop-shadow(none);
  2907. transition:none;
  2908. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2909. font-weight:400;
  2910. font-style:normal;
  2911. font-size:16px;
  2912. }
  2913. #u16320 {
  2914. border-width:0px;
  2915. position:absolute;
  2916. left:26px;
  2917. top:118px;
  2918. width:65px;
  2919. height:22px;
  2920. display:flex;
  2921. transition:none;
  2922. transform-origin:50% 50%;
  2923. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2924. font-weight:400;
  2925. font-style:normal;
  2926. font-size:16px;
  2927. }
  2928. #u16320 .text {
  2929. position:absolute;
  2930. align-self:flex-start;
  2931. padding:0px 0px 0px 0px;
  2932. box-sizing:border-box;
  2933. width:100%;
  2934. }
  2935. #u16320_text {
  2936. border-width:0px;
  2937. white-space:nowrap;
  2938. text-transform:none;
  2939. }
  2940. #u16321 {
  2941. border-width:0px;
  2942. position:absolute;
  2943. left:0px;
  2944. top:388px;
  2945. width:200px;
  2946. height:1px;
  2947. display:flex;
  2948. transition:none;
  2949. }
  2950. #u16321 .text {
  2951. position:absolute;
  2952. align-self:center;
  2953. padding:2px 2px 2px 2px;
  2954. box-sizing:border-box;
  2955. width:100%;
  2956. }
  2957. #u16321_img {
  2958. border-width:0px;
  2959. position:absolute;
  2960. left:0px;
  2961. top:0px;
  2962. width:201px;
  2963. height:2px;
  2964. }
  2965. #u16321_text {
  2966. border-width:0px;
  2967. word-wrap:break-word;
  2968. text-transform:none;
  2969. visibility:hidden;
  2970. }
  2971. #u16322_div {
  2972. border-width:0px;
  2973. position:absolute;
  2974. left:0px;
  2975. top:0px;
  2976. width:65px;
  2977. height:22px;
  2978. background:inherit;
  2979. background-color:rgba(255, 255, 255, 0);
  2980. border-radius:0px;
  2981. filter:drop-shadow(none);
  2982. transition:none;
  2983. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2984. font-weight:400;
  2985. font-style:normal;
  2986. font-size:16px;
  2987. }
  2988. #u16322 {
  2989. border-width:0px;
  2990. position:absolute;
  2991. left:25px;
  2992. top:488px;
  2993. width:65px;
  2994. height:22px;
  2995. display:flex;
  2996. transition:none;
  2997. transform-origin:50% 50%;
  2998. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2999. font-weight:400;
  3000. font-style:normal;
  3001. font-size:16px;
  3002. }
  3003. #u16322 .text {
  3004. position:absolute;
  3005. align-self:flex-start;
  3006. padding:0px 0px 0px 0px;
  3007. box-sizing:border-box;
  3008. width:100%;
  3009. }
  3010. #u16322_text {
  3011. border-width:0px;
  3012. white-space:nowrap;
  3013. text-transform:none;
  3014. }
  3015. #u16323_div {
  3016. border-width:0px;
  3017. position:absolute;
  3018. left:0px;
  3019. top:0px;
  3020. width:49px;
  3021. height:17px;
  3022. background:inherit;
  3023. background-color:rgba(255, 255, 255, 0);
  3024. border-radius:0px;
  3025. filter:drop-shadow(none);
  3026. transition:none;
  3027. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3028. font-weight:400;
  3029. font-style:normal;
  3030. font-size:12px;
  3031. color:#AAAAAA;
  3032. }
  3033. #u16323 {
  3034. border-width:0px;
  3035. position:absolute;
  3036. left:24px;
  3037. top:225px;
  3038. width:49px;
  3039. height:17px;
  3040. display:flex;
  3041. transition:none;
  3042. transform-origin:50% 50%;
  3043. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3044. font-weight:400;
  3045. font-style:normal;
  3046. font-size:12px;
  3047. color:#AAAAAA;
  3048. }
  3049. #u16323 .text {
  3050. position:absolute;
  3051. align-self:flex-start;
  3052. padding:0px 0px 0px 0px;
  3053. box-sizing:border-box;
  3054. width:100%;
  3055. }
  3056. #u16323_text {
  3057. border-width:0px;
  3058. white-space:nowrap;
  3059. text-transform:none;
  3060. }
  3061. #u16324 {
  3062. border-width:0px;
  3063. position:absolute;
  3064. left:1px;
  3065. top:204px;
  3066. width:200px;
  3067. height:1px;
  3068. display:flex;
  3069. transition:none;
  3070. }
  3071. #u16324 .text {
  3072. position:absolute;
  3073. align-self:center;
  3074. padding:2px 2px 2px 2px;
  3075. box-sizing:border-box;
  3076. width:100%;
  3077. }
  3078. #u16324_img {
  3079. border-width:0px;
  3080. position:absolute;
  3081. left:0px;
  3082. top:0px;
  3083. width:201px;
  3084. height:2px;
  3085. }
  3086. #u16324_text {
  3087. border-width:0px;
  3088. word-wrap:break-word;
  3089. text-transform:none;
  3090. visibility:hidden;
  3091. }
  3092. #u16325_div {
  3093. border-width:0px;
  3094. position:absolute;
  3095. left:0px;
  3096. top:0px;
  3097. width:65px;
  3098. height:22px;
  3099. background:inherit;
  3100. background-color:rgba(255, 255, 255, 0);
  3101. border-radius:0px;
  3102. filter:drop-shadow(none);
  3103. transition:none;
  3104. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3105. font-weight:400;
  3106. font-style:normal;
  3107. font-size:16px;
  3108. }
  3109. #u16325 {
  3110. border-width:0px;
  3111. position:absolute;
  3112. left:26px;
  3113. top:262px;
  3114. width:65px;
  3115. height:22px;
  3116. display:flex;
  3117. transition:none;
  3118. transform-origin:50% 50%;
  3119. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3120. font-weight:400;
  3121. font-style:normal;
  3122. font-size:16px;
  3123. }
  3124. #u16325 .text {
  3125. position:absolute;
  3126. align-self:flex-start;
  3127. padding:0px 0px 0px 0px;
  3128. box-sizing:border-box;
  3129. width:100%;
  3130. }
  3131. #u16325_text {
  3132. border-width:0px;
  3133. white-space:nowrap;
  3134. text-transform:none;
  3135. }
  3136. #u16326_div {
  3137. border-width:0px;
  3138. position:absolute;
  3139. left:0px;
  3140. top:0px;
  3141. width:65px;
  3142. height:22px;
  3143. background:inherit;
  3144. background-color:rgba(255, 255, 255, 0);
  3145. border-radius:0px;
  3146. filter:drop-shadow(none);
  3147. transition:none;
  3148. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3149. font-weight:400;
  3150. font-style:normal;
  3151. font-size:16px;
  3152. }
  3153. #u16326 {
  3154. border-width:0px;
  3155. position:absolute;
  3156. left:26px;
  3157. top:304px;
  3158. width:65px;
  3159. height:22px;
  3160. display:flex;
  3161. transition:none;
  3162. transform-origin:50% 50%;
  3163. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3164. font-weight:400;
  3165. font-style:normal;
  3166. font-size:16px;
  3167. }
  3168. #u16326 .text {
  3169. position:absolute;
  3170. align-self:flex-start;
  3171. padding:0px 0px 0px 0px;
  3172. box-sizing:border-box;
  3173. width:100%;
  3174. }
  3175. #u16326_text {
  3176. border-width:0px;
  3177. white-space:nowrap;
  3178. text-transform:none;
  3179. }
  3180. #u16327_div {
  3181. border-width:0px;
  3182. position:absolute;
  3183. left:0px;
  3184. top:0px;
  3185. width:65px;
  3186. height:22px;
  3187. background:inherit;
  3188. background-color:rgba(255, 255, 255, 0);
  3189. border-radius:0px;
  3190. filter:drop-shadow(none);
  3191. transition:none;
  3192. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3193. font-weight:400;
  3194. font-style:normal;
  3195. font-size:16px;
  3196. }
  3197. #u16327 {
  3198. border-width:0px;
  3199. position:absolute;
  3200. left:25px;
  3201. top:946px;
  3202. width:65px;
  3203. height:22px;
  3204. display:flex;
  3205. transition:none;
  3206. transform-origin:50% 50%;
  3207. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3208. font-weight:400;
  3209. font-style:normal;
  3210. font-size:16px;
  3211. }
  3212. #u16327 .text {
  3213. position:absolute;
  3214. align-self:flex-start;
  3215. padding:0px 0px 0px 0px;
  3216. box-sizing:border-box;
  3217. width:100%;
  3218. }
  3219. #u16327_text {
  3220. border-width:0px;
  3221. white-space:nowrap;
  3222. text-transform:none;
  3223. }
  3224. #u16328_div {
  3225. border-width:0px;
  3226. position:absolute;
  3227. left:0px;
  3228. top:0px;
  3229. width:97px;
  3230. height:22px;
  3231. background:inherit;
  3232. background-color:rgba(255, 255, 255, 0);
  3233. border-radius:0px;
  3234. filter:drop-shadow(none);
  3235. transition:none;
  3236. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3237. font-weight:400;
  3238. font-style:normal;
  3239. font-size:16px;
  3240. }
  3241. #u16328 {
  3242. border-width:0px;
  3243. position:absolute;
  3244. left:25px;
  3245. top:738px;
  3246. width:97px;
  3247. height:22px;
  3248. display:flex;
  3249. transition:none;
  3250. transform-origin:50% 50%;
  3251. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3252. font-weight:400;
  3253. font-style:normal;
  3254. font-size:16px;
  3255. }
  3256. #u16328 .text {
  3257. position:absolute;
  3258. align-self:flex-start;
  3259. padding:0px 0px 0px 0px;
  3260. box-sizing:border-box;
  3261. width:100%;
  3262. }
  3263. #u16328_text {
  3264. border-width:0px;
  3265. white-space:nowrap;
  3266. text-transform:none;
  3267. }
  3268. #u16329_div {
  3269. border-width:0px;
  3270. position:absolute;
  3271. left:0px;
  3272. top:0px;
  3273. width:49px;
  3274. height:17px;
  3275. background:inherit;
  3276. background-color:rgba(255, 255, 255, 0);
  3277. border-radius:0px;
  3278. filter:drop-shadow(none);
  3279. transition:none;
  3280. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3281. font-weight:400;
  3282. font-style:normal;
  3283. font-size:12px;
  3284. color:#AAAAAA;
  3285. }
  3286. #u16329 {
  3287. border-width:0px;
  3288. position:absolute;
  3289. left:23px;
  3290. top:701px;
  3291. width:49px;
  3292. height:17px;
  3293. display:flex;
  3294. transition:none;
  3295. transform-origin:50% 50%;
  3296. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3297. font-weight:400;
  3298. font-style:normal;
  3299. font-size:12px;
  3300. color:#AAAAAA;
  3301. }
  3302. #u16329 .text {
  3303. position:absolute;
  3304. align-self:flex-start;
  3305. padding:0px 0px 0px 0px;
  3306. box-sizing:border-box;
  3307. width:100%;
  3308. }
  3309. #u16329_text {
  3310. border-width:0px;
  3311. white-space:nowrap;
  3312. text-transform:none;
  3313. }
  3314. #u16330 {
  3315. border-width:0px;
  3316. position:absolute;
  3317. left:0px;
  3318. top:680px;
  3319. width:200px;
  3320. height:1px;
  3321. display:flex;
  3322. transition:none;
  3323. }
  3324. #u16330 .text {
  3325. position:absolute;
  3326. align-self:center;
  3327. padding:2px 2px 2px 2px;
  3328. box-sizing:border-box;
  3329. width:100%;
  3330. }
  3331. #u16330_img {
  3332. border-width:0px;
  3333. position:absolute;
  3334. left:0px;
  3335. top:0px;
  3336. width:201px;
  3337. height:2px;
  3338. }
  3339. #u16330_text {
  3340. border-width:0px;
  3341. word-wrap:break-word;
  3342. text-transform:none;
  3343. visibility:hidden;
  3344. }
  3345. #u16331_div {
  3346. border-width:0px;
  3347. position:absolute;
  3348. left:0px;
  3349. top:0px;
  3350. width:97px;
  3351. height:22px;
  3352. background:inherit;
  3353. background-color:rgba(255, 255, 255, 0);
  3354. border-radius:0px;
  3355. filter:drop-shadow(none);
  3356. transition:none;
  3357. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3358. font-weight:400;
  3359. font-style:normal;
  3360. font-size:16px;
  3361. }
  3362. #u16331 {
  3363. border-width:0px;
  3364. position:absolute;
  3365. left:25px;
  3366. top:820px;
  3367. width:97px;
  3368. height:22px;
  3369. display:flex;
  3370. transition:none;
  3371. transform-origin:50% 50%;
  3372. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3373. font-weight:400;
  3374. font-style:normal;
  3375. font-size:16px;
  3376. }
  3377. #u16331 .text {
  3378. position:absolute;
  3379. align-self:flex-start;
  3380. padding:0px 0px 0px 0px;
  3381. box-sizing:border-box;
  3382. width:100%;
  3383. }
  3384. #u16331_text {
  3385. border-width:0px;
  3386. white-space:nowrap;
  3387. text-transform:none;
  3388. }
  3389. #u16332_div {
  3390. border-width:0px;
  3391. position:absolute;
  3392. left:0px;
  3393. top:0px;
  3394. width:97px;
  3395. height:22px;
  3396. background:inherit;
  3397. background-color:rgba(255, 255, 255, 0);
  3398. border-radius:0px;
  3399. filter:drop-shadow(none);
  3400. transition:none;
  3401. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3402. font-weight:400;
  3403. font-style:normal;
  3404. font-size:16px;
  3405. }
  3406. #u16332 {
  3407. border-width:0px;
  3408. position:absolute;
  3409. left:25px;
  3410. top:862px;
  3411. width:97px;
  3412. height:22px;
  3413. display:flex;
  3414. transition:none;
  3415. transform-origin:50% 50%;
  3416. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3417. font-weight:400;
  3418. font-style:normal;
  3419. font-size:16px;
  3420. }
  3421. #u16332 .text {
  3422. position:absolute;
  3423. align-self:flex-start;
  3424. padding:0px 0px 0px 0px;
  3425. box-sizing:border-box;
  3426. width:100%;
  3427. }
  3428. #u16332_text {
  3429. border-width:0px;
  3430. white-space:nowrap;
  3431. text-transform:none;
  3432. }
  3433. #u16333_div {
  3434. border-width:0px;
  3435. position:absolute;
  3436. left:0px;
  3437. top:0px;
  3438. width:65px;
  3439. height:22px;
  3440. background:inherit;
  3441. background-color:rgba(255, 255, 255, 0);
  3442. border-radius:0px;
  3443. filter:drop-shadow(none);
  3444. transition:none;
  3445. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3446. font-weight:400;
  3447. font-style:normal;
  3448. font-size:16px;
  3449. }
  3450. #u16333 {
  3451. border-width:0px;
  3452. position:absolute;
  3453. left:25px;
  3454. top:1046px;
  3455. width:65px;
  3456. height:22px;
  3457. display:flex;
  3458. transition:none;
  3459. transform-origin:50% 50%;
  3460. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3461. font-weight:400;
  3462. font-style:normal;
  3463. font-size:16px;
  3464. }
  3465. #u16333 .text {
  3466. position:absolute;
  3467. align-self:flex-start;
  3468. padding:0px 0px 0px 0px;
  3469. box-sizing:border-box;
  3470. width:100%;
  3471. }
  3472. #u16333_text {
  3473. border-width:0px;
  3474. white-space:nowrap;
  3475. text-transform:none;
  3476. }
  3477. #u16334_div {
  3478. border-width:0px;
  3479. position:absolute;
  3480. left:0px;
  3481. top:0px;
  3482. width:49px;
  3483. height:17px;
  3484. background:inherit;
  3485. background-color:rgba(255, 255, 255, 0);
  3486. border-radius:0px;
  3487. filter:drop-shadow(none);
  3488. transition:none;
  3489. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3490. font-weight:400;
  3491. font-style:normal;
  3492. font-size:12px;
  3493. color:#AAAAAA;
  3494. }
  3495. #u16334 {
  3496. border-width:0px;
  3497. position:absolute;
  3498. left:23px;
  3499. top:1009px;
  3500. width:49px;
  3501. height:17px;
  3502. display:flex;
  3503. transition:none;
  3504. transform-origin:50% 50%;
  3505. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3506. font-weight:400;
  3507. font-style:normal;
  3508. font-size:12px;
  3509. color:#AAAAAA;
  3510. }
  3511. #u16334 .text {
  3512. position:absolute;
  3513. align-self:flex-start;
  3514. padding:0px 0px 0px 0px;
  3515. box-sizing:border-box;
  3516. width:100%;
  3517. }
  3518. #u16334_text {
  3519. border-width:0px;
  3520. white-space:nowrap;
  3521. text-transform:none;
  3522. }
  3523. #u16335 {
  3524. border-width:0px;
  3525. position:absolute;
  3526. left:0px;
  3527. top:988px;
  3528. width:200px;
  3529. height:1px;
  3530. display:flex;
  3531. transition:none;
  3532. }
  3533. #u16335 .text {
  3534. position:absolute;
  3535. align-self:center;
  3536. padding:2px 2px 2px 2px;
  3537. box-sizing:border-box;
  3538. width:100%;
  3539. }
  3540. #u16335_img {
  3541. border-width:0px;
  3542. position:absolute;
  3543. left:0px;
  3544. top:0px;
  3545. width:201px;
  3546. height:2px;
  3547. }
  3548. #u16335_text {
  3549. border-width:0px;
  3550. word-wrap:break-word;
  3551. text-transform:none;
  3552. visibility:hidden;
  3553. }
  3554. #u16336_div {
  3555. border-width:0px;
  3556. position:absolute;
  3557. left:0px;
  3558. top:0px;
  3559. width:65px;
  3560. height:22px;
  3561. background:inherit;
  3562. background-color:rgba(255, 255, 255, 0);
  3563. border-radius:0px;
  3564. filter:drop-shadow(none);
  3565. transition:none;
  3566. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3567. font-weight:400;
  3568. font-style:normal;
  3569. font-size:16px;
  3570. }
  3571. #u16336 {
  3572. border-width:0px;
  3573. position:absolute;
  3574. left:25px;
  3575. top:1088px;
  3576. width:65px;
  3577. height:22px;
  3578. display:flex;
  3579. transition:none;
  3580. transform-origin:50% 50%;
  3581. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3582. font-weight:400;
  3583. font-style:normal;
  3584. font-size:16px;
  3585. }
  3586. #u16336 .text {
  3587. position:absolute;
  3588. align-self:flex-start;
  3589. padding:0px 0px 0px 0px;
  3590. box-sizing:border-box;
  3591. width:100%;
  3592. }
  3593. #u16336_text {
  3594. border-width:0px;
  3595. white-space:nowrap;
  3596. text-transform:none;
  3597. }
  3598. #u16337_div {
  3599. border-width:0px;
  3600. position:absolute;
  3601. left:0px;
  3602. top:0px;
  3603. width:97px;
  3604. height:22px;
  3605. background:inherit;
  3606. background-color:rgba(255, 255, 255, 0);
  3607. border-radius:0px;
  3608. filter:drop-shadow(none);
  3609. transition:none;
  3610. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3611. font-weight:400;
  3612. font-style:normal;
  3613. font-size:16px;
  3614. }
  3615. #u16337 {
  3616. border-width:0px;
  3617. position:absolute;
  3618. left:25px;
  3619. top:904px;
  3620. width:97px;
  3621. height:22px;
  3622. display:flex;
  3623. transition:none;
  3624. transform-origin:50% 50%;
  3625. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3626. font-weight:400;
  3627. font-style:normal;
  3628. font-size:16px;
  3629. }
  3630. #u16337 .text {
  3631. position:absolute;
  3632. align-self:flex-start;
  3633. padding:0px 0px 0px 0px;
  3634. box-sizing:border-box;
  3635. width:100%;
  3636. }
  3637. #u16337_text {
  3638. border-width:0px;
  3639. white-space:nowrap;
  3640. text-transform:none;
  3641. }
  3642. #u16338_div {
  3643. border-width:0px;
  3644. position:absolute;
  3645. left:0px;
  3646. top:0px;
  3647. width:81px;
  3648. height:22px;
  3649. background:inherit;
  3650. background-color:rgba(255, 255, 255, 0);
  3651. border-radius:0px;
  3652. filter:drop-shadow(none);
  3653. transition:none;
  3654. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3655. font-weight:400;
  3656. font-style:normal;
  3657. font-size:16px;
  3658. }
  3659. #u16338 {
  3660. border-width:0px;
  3661. position:absolute;
  3662. left:26px;
  3663. top:346px;
  3664. width:81px;
  3665. height:22px;
  3666. display:flex;
  3667. transition:none;
  3668. transform-origin:50% 50%;
  3669. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3670. font-weight:400;
  3671. font-style:normal;
  3672. font-size:16px;
  3673. }
  3674. #u16338 .text {
  3675. position:absolute;
  3676. align-self:flex-start;
  3677. padding:0px 0px 0px 0px;
  3678. box-sizing:border-box;
  3679. width:100%;
  3680. }
  3681. #u16338_text {
  3682. border-width:0px;
  3683. white-space:nowrap;
  3684. text-transform:none;
  3685. }
  3686. #u16339_div {
  3687. border-width:0px;
  3688. position:absolute;
  3689. left:0px;
  3690. top:0px;
  3691. width:97px;
  3692. height:22px;
  3693. background:inherit;
  3694. background-color:rgba(255, 255, 255, 0);
  3695. border-radius:0px;
  3696. filter:drop-shadow(none);
  3697. transition:none;
  3698. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3699. font-weight:400;
  3700. font-style:normal;
  3701. font-size:16px;
  3702. }
  3703. #u16339 {
  3704. border-width:0px;
  3705. position:absolute;
  3706. left:25px;
  3707. top:780px;
  3708. width:97px;
  3709. height:22px;
  3710. display:flex;
  3711. transition:none;
  3712. transform-origin:50% 50%;
  3713. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3714. font-weight:400;
  3715. font-style:normal;
  3716. font-size:16px;
  3717. }
  3718. #u16339 .text {
  3719. position:absolute;
  3720. align-self:flex-start;
  3721. padding:0px 0px 0px 0px;
  3722. box-sizing:border-box;
  3723. width:100%;
  3724. }
  3725. #u16339_text {
  3726. border-width:0px;
  3727. white-space:nowrap;
  3728. text-transform:none;
  3729. }
  3730. #u16340_div {
  3731. border-width:0px;
  3732. position:absolute;
  3733. left:0px;
  3734. top:0px;
  3735. width:65px;
  3736. height:22px;
  3737. background:inherit;
  3738. background-color:rgba(255, 255, 255, 0);
  3739. border-radius:0px;
  3740. filter:drop-shadow(none);
  3741. transition:none;
  3742. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3743. font-weight:400;
  3744. font-style:normal;
  3745. font-size:16px;
  3746. }
  3747. #u16340 {
  3748. border-width:0px;
  3749. position:absolute;
  3750. left:25px;
  3751. top:160px;
  3752. width:65px;
  3753. height:22px;
  3754. display:flex;
  3755. transition:none;
  3756. transform-origin:50% 50%;
  3757. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3758. font-weight:400;
  3759. font-style:normal;
  3760. font-size:16px;
  3761. }
  3762. #u16340 .text {
  3763. position:absolute;
  3764. align-self:flex-start;
  3765. padding:0px 0px 0px 0px;
  3766. box-sizing:border-box;
  3767. width:100%;
  3768. }
  3769. #u16340_text {
  3770. border-width:0px;
  3771. white-space:nowrap;
  3772. text-transform:none;
  3773. }
  3774. #u16341_div {
  3775. border-width:0px;
  3776. position:absolute;
  3777. left:0px;
  3778. top:0px;
  3779. width:81px;
  3780. height:22px;
  3781. background:inherit;
  3782. background-color:rgba(255, 255, 255, 0);
  3783. border-radius:0px;
  3784. filter:drop-shadow(none);
  3785. transition:none;
  3786. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3787. font-weight:400;
  3788. font-style:normal;
  3789. font-size:16px;
  3790. }
  3791. #u16341 {
  3792. border-width:0px;
  3793. position:absolute;
  3794. left:25px;
  3795. top:588px;
  3796. width:81px;
  3797. height:22px;
  3798. display:flex;
  3799. transition:none;
  3800. transform-origin:50% 50%;
  3801. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3802. font-weight:400;
  3803. font-style:normal;
  3804. font-size:16px;
  3805. }
  3806. #u16341 .text {
  3807. position:absolute;
  3808. align-self:flex-start;
  3809. padding:0px 0px 0px 0px;
  3810. box-sizing:border-box;
  3811. width:100%;
  3812. }
  3813. #u16341_text {
  3814. border-width:0px;
  3815. white-space:nowrap;
  3816. text-transform:none;
  3817. }
  3818. #u16342_div {
  3819. border-width:0px;
  3820. position:absolute;
  3821. left:0px;
  3822. top:0px;
  3823. width:65px;
  3824. height:22px;
  3825. background:inherit;
  3826. background-color:rgba(255, 255, 255, 0);
  3827. border-radius:0px;
  3828. filter:drop-shadow(none);
  3829. transition:none;
  3830. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3831. font-weight:400;
  3832. font-style:normal;
  3833. font-size:16px;
  3834. }
  3835. #u16342 {
  3836. border-width:0px;
  3837. position:absolute;
  3838. left:25px;
  3839. top:630px;
  3840. width:65px;
  3841. height:22px;
  3842. display:flex;
  3843. transition:none;
  3844. transform-origin:50% 50%;
  3845. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3846. font-weight:400;
  3847. font-style:normal;
  3848. font-size:16px;
  3849. }
  3850. #u16342 .text {
  3851. position:absolute;
  3852. align-self:flex-start;
  3853. padding:0px 0px 0px 0px;
  3854. box-sizing:border-box;
  3855. width:100%;
  3856. }
  3857. #u16342_text {
  3858. border-width:0px;
  3859. white-space:nowrap;
  3860. text-transform:none;
  3861. }
  3862. #u16343_div {
  3863. border-width:0px;
  3864. position:absolute;
  3865. left:0px;
  3866. top:0px;
  3867. width:73px;
  3868. height:17px;
  3869. background:inherit;
  3870. background-color:rgba(255, 255, 255, 0);
  3871. border-radius:0px;
  3872. filter:drop-shadow(none);
  3873. transition:none;
  3874. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3875. font-weight:400;
  3876. font-style:normal;
  3877. font-size:12px;
  3878. color:#AAAAAA;
  3879. }
  3880. #u16343 {
  3881. border-width:0px;
  3882. position:absolute;
  3883. left:23px;
  3884. top:551px;
  3885. width:73px;
  3886. height:17px;
  3887. display:flex;
  3888. transition:none;
  3889. transform-origin:50% 50%;
  3890. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3891. font-weight:400;
  3892. font-style:normal;
  3893. font-size:12px;
  3894. color:#AAAAAA;
  3895. }
  3896. #u16343 .text {
  3897. position:absolute;
  3898. align-self:flex-start;
  3899. padding:0px 0px 0px 0px;
  3900. box-sizing:border-box;
  3901. width:100%;
  3902. }
  3903. #u16343_text {
  3904. border-width:0px;
  3905. white-space:nowrap;
  3906. text-transform:none;
  3907. }
  3908. #u16344 {
  3909. border-width:0px;
  3910. position:absolute;
  3911. left:0px;
  3912. top:530px;
  3913. width:200px;
  3914. height:1px;
  3915. display:flex;
  3916. transition:none;
  3917. }
  3918. #u16344 .text {
  3919. position:absolute;
  3920. align-self:center;
  3921. padding:2px 2px 2px 2px;
  3922. box-sizing:border-box;
  3923. width:100%;
  3924. }
  3925. #u16344_img {
  3926. border-width:0px;
  3927. position:absolute;
  3928. left:0px;
  3929. top:0px;
  3930. width:201px;
  3931. height:2px;
  3932. }
  3933. #u16344_text {
  3934. border-width:0px;
  3935. word-wrap:break-word;
  3936. text-transform:none;
  3937. visibility:hidden;
  3938. }
  3939. #u16345_div {
  3940. border-width:0px;
  3941. position:absolute;
  3942. left:0px;
  3943. top:0px;
  3944. width:693px;
  3945. height:30px;
  3946. background:inherit;
  3947. background-color:rgba(255, 255, 255, 0);
  3948. border-left:0px;
  3949. border-top:0px;
  3950. border-right:0px;
  3951. border-radius:0px;
  3952. border-bottom-right-radius:0px;
  3953. border-bottom-left-radius:0px;
  3954. filter:drop-shadow(none);
  3955. transition:none;
  3956. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3957. font-weight:400;
  3958. font-style:normal;
  3959. font-size:14px;
  3960. color:#7F7F7F;
  3961. line-height:30px;
  3962. }
  3963. #u16345 {
  3964. border-width:0px;
  3965. position:absolute;
  3966. left:352px;
  3967. top:105px;
  3968. width:693px;
  3969. height:30px;
  3970. display:flex;
  3971. transition:none;
  3972. transform-origin:50% 50%;
  3973. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3974. font-weight:400;
  3975. font-style:normal;
  3976. font-size:14px;
  3977. color:#7F7F7F;
  3978. line-height:30px;
  3979. }
  3980. #u16345 .text {
  3981. position:absolute;
  3982. align-self:center;
  3983. padding:0px 0px 0px 0px;
  3984. box-sizing:border-box;
  3985. width:100%;
  3986. }
  3987. #u16345_text {
  3988. border-width:0px;
  3989. white-space:nowrap;
  3990. text-transform:none;
  3991. }
  3992. #u16346_div {
  3993. border-width:0px;
  3994. position:absolute;
  3995. left:0px;
  3996. top:0px;
  3997. width:73px;
  3998. height:50px;
  3999. background:inherit;
  4000. background-color:rgba(255, 255, 255, 0);
  4001. border-left:0px;
  4002. border-top:0px;
  4003. border-right:0px;
  4004. border-radius:0px;
  4005. border-bottom-right-radius:0px;
  4006. border-bottom-left-radius:0px;
  4007. filter:drop-shadow(none);
  4008. transition:none;
  4009. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4010. font-weight:400;
  4011. font-style:normal;
  4012. font-size:18px;
  4013. }
  4014. #u16346 {
  4015. border-width:0px;
  4016. position:absolute;
  4017. left:352px;
  4018. top:50px;
  4019. width:73px;
  4020. height:50px;
  4021. display:flex;
  4022. transition:none;
  4023. transform-origin:50% 50%;
  4024. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4025. font-weight:400;
  4026. font-style:normal;
  4027. font-size:18px;
  4028. }
  4029. #u16346 .text {
  4030. position:absolute;
  4031. align-self:center;
  4032. padding:0px 0px 0px 0px;
  4033. box-sizing:border-box;
  4034. width:100%;
  4035. }
  4036. #u16346_text {
  4037. border-width:0px;
  4038. white-space:nowrap;
  4039. text-transform:none;
  4040. }
  4041. #u16347 {
  4042. border-width:0px;
  4043. position:absolute;
  4044. left:350px;
  4045. top:324px;
  4046. width:1218px;
  4047. height:331px;
  4048. }
  4049. #u16348 {
  4050. border-width:0px;
  4051. position:absolute;
  4052. left:0px;
  4053. top:0px;
  4054. width:70px;
  4055. height:38px;
  4056. display:flex;
  4057. transition:none;
  4058. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4059. font-weight:400;
  4060. font-style:normal;
  4061. font-size:12px;
  4062. color:#FFFFFF;
  4063. }
  4064. #u16348 .text {
  4065. position:absolute;
  4066. align-self:center;
  4067. padding:2px 2px 2px 0px;
  4068. box-sizing:border-box;
  4069. width:100%;
  4070. }
  4071. #u16348_img {
  4072. border-width:0px;
  4073. position:absolute;
  4074. left:0px;
  4075. top:0px;
  4076. width:70px;
  4077. height:38px;
  4078. }
  4079. #u16348_text {
  4080. border-width:0px;
  4081. word-wrap:break-word;
  4082. text-transform:none;
  4083. }
  4084. #u16349 {
  4085. border-width:0px;
  4086. position:absolute;
  4087. left:70px;
  4088. top:0px;
  4089. width:60px;
  4090. height:38px;
  4091. display:flex;
  4092. transition:none;
  4093. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4094. font-weight:400;
  4095. font-style:normal;
  4096. font-size:12px;
  4097. color:#FFFFFF;
  4098. }
  4099. #u16349 .text {
  4100. position:absolute;
  4101. align-self:center;
  4102. padding:2px 2px 2px 0px;
  4103. box-sizing:border-box;
  4104. width:100%;
  4105. }
  4106. #u16349_img {
  4107. border-width:0px;
  4108. position:absolute;
  4109. left:0px;
  4110. top:0px;
  4111. width:60px;
  4112. height:38px;
  4113. }
  4114. #u16349_text {
  4115. border-width:0px;
  4116. word-wrap:break-word;
  4117. text-transform:none;
  4118. }
  4119. #u16350 {
  4120. border-width:0px;
  4121. position:absolute;
  4122. left:130px;
  4123. top:0px;
  4124. width:70px;
  4125. height:38px;
  4126. display:flex;
  4127. transition:none;
  4128. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4129. font-weight:400;
  4130. font-style:normal;
  4131. font-size:12px;
  4132. color:#FFFFFF;
  4133. }
  4134. #u16350 .text {
  4135. position:absolute;
  4136. align-self:center;
  4137. padding:2px 2px 2px 0px;
  4138. box-sizing:border-box;
  4139. width:100%;
  4140. }
  4141. #u16350_img {
  4142. border-width:0px;
  4143. position:absolute;
  4144. left:0px;
  4145. top:0px;
  4146. width:70px;
  4147. height:38px;
  4148. }
  4149. #u16350_text {
  4150. border-width:0px;
  4151. word-wrap:break-word;
  4152. text-transform:none;
  4153. }
  4154. #u16351 {
  4155. border-width:0px;
  4156. position:absolute;
  4157. left:200px;
  4158. top:0px;
  4159. width:70px;
  4160. height:38px;
  4161. display:flex;
  4162. transition:none;
  4163. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4164. font-weight:400;
  4165. font-style:normal;
  4166. font-size:12px;
  4167. color:#FFFFFF;
  4168. }
  4169. #u16351 .text {
  4170. position:absolute;
  4171. align-self:center;
  4172. padding:2px 2px 2px 0px;
  4173. box-sizing:border-box;
  4174. width:100%;
  4175. }
  4176. #u16351_img {
  4177. border-width:0px;
  4178. position:absolute;
  4179. left:0px;
  4180. top:0px;
  4181. width:70px;
  4182. height:38px;
  4183. }
  4184. #u16351_text {
  4185. border-width:0px;
  4186. word-wrap:break-word;
  4187. text-transform:none;
  4188. }
  4189. #u16352 {
  4190. border-width:0px;
  4191. position:absolute;
  4192. left:270px;
  4193. top:0px;
  4194. width:70px;
  4195. height:38px;
  4196. display:flex;
  4197. transition:none;
  4198. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4199. font-weight:400;
  4200. font-style:normal;
  4201. font-size:12px;
  4202. color:#FFFFFF;
  4203. }
  4204. #u16352 .text {
  4205. position:absolute;
  4206. align-self:center;
  4207. padding:2px 2px 2px 0px;
  4208. box-sizing:border-box;
  4209. width:100%;
  4210. }
  4211. #u16352_img {
  4212. border-width:0px;
  4213. position:absolute;
  4214. left:0px;
  4215. top:0px;
  4216. width:70px;
  4217. height:38px;
  4218. }
  4219. #u16352_text {
  4220. border-width:0px;
  4221. word-wrap:break-word;
  4222. text-transform:none;
  4223. }
  4224. #u16353 {
  4225. border-width:0px;
  4226. position:absolute;
  4227. left:340px;
  4228. top:0px;
  4229. width:60px;
  4230. height:38px;
  4231. display:flex;
  4232. transition:none;
  4233. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4234. font-weight:400;
  4235. font-style:normal;
  4236. font-size:12px;
  4237. color:#FFFFFF;
  4238. }
  4239. #u16353 .text {
  4240. position:absolute;
  4241. align-self:center;
  4242. padding:2px 2px 2px 0px;
  4243. box-sizing:border-box;
  4244. width:100%;
  4245. }
  4246. #u16353_img {
  4247. border-width:0px;
  4248. position:absolute;
  4249. left:0px;
  4250. top:0px;
  4251. width:60px;
  4252. height:38px;
  4253. }
  4254. #u16353_text {
  4255. border-width:0px;
  4256. word-wrap:break-word;
  4257. text-transform:none;
  4258. }
  4259. #u16354 {
  4260. border-width:0px;
  4261. position:absolute;
  4262. left:400px;
  4263. top:0px;
  4264. width:70px;
  4265. height:38px;
  4266. display:flex;
  4267. transition:none;
  4268. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4269. font-weight:400;
  4270. font-style:normal;
  4271. font-size:12px;
  4272. color:#FFFFFF;
  4273. }
  4274. #u16354 .text {
  4275. position:absolute;
  4276. align-self:center;
  4277. padding:2px 2px 2px 0px;
  4278. box-sizing:border-box;
  4279. width:100%;
  4280. }
  4281. #u16354_img {
  4282. border-width:0px;
  4283. position:absolute;
  4284. left:0px;
  4285. top:0px;
  4286. width:70px;
  4287. height:38px;
  4288. }
  4289. #u16354_text {
  4290. border-width:0px;
  4291. word-wrap:break-word;
  4292. text-transform:none;
  4293. }
  4294. #u16355 {
  4295. border-width:0px;
  4296. position:absolute;
  4297. left:470px;
  4298. top:0px;
  4299. width:80px;
  4300. height:38px;
  4301. display:flex;
  4302. transition:none;
  4303. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4304. font-weight:400;
  4305. font-style:normal;
  4306. font-size:12px;
  4307. color:#FFFFFF;
  4308. }
  4309. #u16355 .text {
  4310. position:absolute;
  4311. align-self:center;
  4312. padding:2px 2px 2px 0px;
  4313. box-sizing:border-box;
  4314. width:100%;
  4315. }
  4316. #u16355_img {
  4317. border-width:0px;
  4318. position:absolute;
  4319. left:0px;
  4320. top:0px;
  4321. width:80px;
  4322. height:38px;
  4323. }
  4324. #u16355_text {
  4325. border-width:0px;
  4326. word-wrap:break-word;
  4327. text-transform:none;
  4328. }
  4329. #u16356 {
  4330. border-width:0px;
  4331. position:absolute;
  4332. left:550px;
  4333. top:0px;
  4334. width:80px;
  4335. height:38px;
  4336. display:flex;
  4337. transition:none;
  4338. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4339. font-weight:400;
  4340. font-style:normal;
  4341. font-size:12px;
  4342. color:#FFFFFF;
  4343. }
  4344. #u16356 .text {
  4345. position:absolute;
  4346. align-self:center;
  4347. padding:2px 2px 2px 0px;
  4348. box-sizing:border-box;
  4349. width:100%;
  4350. }
  4351. #u16356_img {
  4352. border-width:0px;
  4353. position:absolute;
  4354. left:0px;
  4355. top:0px;
  4356. width:80px;
  4357. height:38px;
  4358. }
  4359. #u16356_text {
  4360. border-width:0px;
  4361. word-wrap:break-word;
  4362. text-transform:none;
  4363. }
  4364. #u16357 {
  4365. border-width:0px;
  4366. position:absolute;
  4367. left:630px;
  4368. top:0px;
  4369. width:80px;
  4370. height:38px;
  4371. display:flex;
  4372. transition:none;
  4373. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4374. font-weight:400;
  4375. font-style:normal;
  4376. font-size:12px;
  4377. color:#FFFFFF;
  4378. }
  4379. #u16357 .text {
  4380. position:absolute;
  4381. align-self:center;
  4382. padding:2px 2px 2px 0px;
  4383. box-sizing:border-box;
  4384. width:100%;
  4385. }
  4386. #u16357_img {
  4387. border-width:0px;
  4388. position:absolute;
  4389. left:0px;
  4390. top:0px;
  4391. width:80px;
  4392. height:38px;
  4393. }
  4394. #u16357_text {
  4395. border-width:0px;
  4396. word-wrap:break-word;
  4397. text-transform:none;
  4398. }
  4399. #u16358 {
  4400. border-width:0px;
  4401. position:absolute;
  4402. left:710px;
  4403. top:0px;
  4404. width:80px;
  4405. height:38px;
  4406. display:flex;
  4407. transition:none;
  4408. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4409. font-weight:400;
  4410. font-style:normal;
  4411. font-size:12px;
  4412. color:#FFFFFF;
  4413. }
  4414. #u16358 .text {
  4415. position:absolute;
  4416. align-self:center;
  4417. padding:2px 2px 2px 0px;
  4418. box-sizing:border-box;
  4419. width:100%;
  4420. }
  4421. #u16358_img {
  4422. border-width:0px;
  4423. position:absolute;
  4424. left:0px;
  4425. top:0px;
  4426. width:80px;
  4427. height:38px;
  4428. }
  4429. #u16358_text {
  4430. border-width:0px;
  4431. word-wrap:break-word;
  4432. text-transform:none;
  4433. }
  4434. #u16359 {
  4435. border-width:0px;
  4436. position:absolute;
  4437. left:790px;
  4438. top:0px;
  4439. width:80px;
  4440. height:38px;
  4441. display:flex;
  4442. transition:none;
  4443. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4444. font-weight:400;
  4445. font-style:normal;
  4446. font-size:12px;
  4447. color:#FFFFFF;
  4448. }
  4449. #u16359 .text {
  4450. position:absolute;
  4451. align-self:center;
  4452. padding:2px 2px 2px 0px;
  4453. box-sizing:border-box;
  4454. width:100%;
  4455. }
  4456. #u16359_img {
  4457. border-width:0px;
  4458. position:absolute;
  4459. left:0px;
  4460. top:0px;
  4461. width:80px;
  4462. height:38px;
  4463. }
  4464. #u16359_text {
  4465. border-width:0px;
  4466. word-wrap:break-word;
  4467. text-transform:none;
  4468. }
  4469. #u16360 {
  4470. border-width:0px;
  4471. position:absolute;
  4472. left:870px;
  4473. top:0px;
  4474. width:70px;
  4475. height:38px;
  4476. display:flex;
  4477. transition:none;
  4478. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4479. font-weight:400;
  4480. font-style:normal;
  4481. font-size:12px;
  4482. color:#FFFFFF;
  4483. }
  4484. #u16360 .text {
  4485. position:absolute;
  4486. align-self:center;
  4487. padding:2px 2px 2px 0px;
  4488. box-sizing:border-box;
  4489. width:100%;
  4490. }
  4491. #u16360_img {
  4492. border-width:0px;
  4493. position:absolute;
  4494. left:0px;
  4495. top:0px;
  4496. width:70px;
  4497. height:38px;
  4498. }
  4499. #u16360_text {
  4500. border-width:0px;
  4501. word-wrap:break-word;
  4502. text-transform:none;
  4503. }
  4504. #u16361 {
  4505. border-width:0px;
  4506. position:absolute;
  4507. left:940px;
  4508. top:0px;
  4509. width:72px;
  4510. height:38px;
  4511. display:flex;
  4512. transition:none;
  4513. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4514. font-weight:400;
  4515. font-style:normal;
  4516. font-size:12px;
  4517. color:#FFFFFF;
  4518. }
  4519. #u16361 .text {
  4520. position:absolute;
  4521. align-self:center;
  4522. padding:2px 2px 2px 0px;
  4523. box-sizing:border-box;
  4524. width:100%;
  4525. }
  4526. #u16361_img {
  4527. border-width:0px;
  4528. position:absolute;
  4529. left:0px;
  4530. top:0px;
  4531. width:72px;
  4532. height:38px;
  4533. }
  4534. #u16361_text {
  4535. border-width:0px;
  4536. word-wrap:break-word;
  4537. text-transform:none;
  4538. }
  4539. #u16362 {
  4540. border-width:0px;
  4541. position:absolute;
  4542. left:1012px;
  4543. top:0px;
  4544. width:70px;
  4545. height:38px;
  4546. display:flex;
  4547. transition:none;
  4548. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4549. font-weight:400;
  4550. font-style:normal;
  4551. font-size:12px;
  4552. color:#FFFFFF;
  4553. }
  4554. #u16362 .text {
  4555. position:absolute;
  4556. align-self:center;
  4557. padding:2px 2px 2px 0px;
  4558. box-sizing:border-box;
  4559. width:100%;
  4560. }
  4561. #u16362_img {
  4562. border-width:0px;
  4563. position:absolute;
  4564. left:0px;
  4565. top:0px;
  4566. width:70px;
  4567. height:38px;
  4568. }
  4569. #u16362_text {
  4570. border-width:0px;
  4571. word-wrap:break-word;
  4572. text-transform:none;
  4573. }
  4574. #u16363 {
  4575. border-width:0px;
  4576. position:absolute;
  4577. left:1082px;
  4578. top:0px;
  4579. width:70px;
  4580. height:38px;
  4581. display:flex;
  4582. transition:none;
  4583. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4584. font-weight:400;
  4585. font-style:normal;
  4586. font-size:12px;
  4587. color:#FFFFFF;
  4588. }
  4589. #u16363 .text {
  4590. position:absolute;
  4591. align-self:center;
  4592. padding:2px 2px 2px 0px;
  4593. box-sizing:border-box;
  4594. width:100%;
  4595. }
  4596. #u16363_img {
  4597. border-width:0px;
  4598. position:absolute;
  4599. left:0px;
  4600. top:0px;
  4601. width:70px;
  4602. height:38px;
  4603. }
  4604. #u16363_text {
  4605. border-width:0px;
  4606. word-wrap:break-word;
  4607. text-transform:none;
  4608. }
  4609. #u16364 {
  4610. border-width:0px;
  4611. position:absolute;
  4612. left:1152px;
  4613. top:0px;
  4614. width:66px;
  4615. height:38px;
  4616. display:flex;
  4617. transition:none;
  4618. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4619. font-weight:400;
  4620. font-style:normal;
  4621. font-size:12px;
  4622. color:#FFFFFF;
  4623. }
  4624. #u16364 .text {
  4625. position:absolute;
  4626. align-self:center;
  4627. padding:2px 2px 2px 0px;
  4628. box-sizing:border-box;
  4629. width:100%;
  4630. }
  4631. #u16364_img {
  4632. border-width:0px;
  4633. position:absolute;
  4634. left:0px;
  4635. top:0px;
  4636. width:66px;
  4637. height:38px;
  4638. }
  4639. #u16364_text {
  4640. border-width:0px;
  4641. word-wrap:break-word;
  4642. text-transform:none;
  4643. }
  4644. #u16365 {
  4645. border-width:0px;
  4646. position:absolute;
  4647. left:0px;
  4648. top:38px;
  4649. width:70px;
  4650. height:47px;
  4651. display:flex;
  4652. transition:none;
  4653. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4654. font-weight:400;
  4655. font-style:normal;
  4656. font-size:12px;
  4657. color:#333333;
  4658. line-height:40px;
  4659. }
  4660. #u16365 .text {
  4661. position:absolute;
  4662. align-self:center;
  4663. padding:2px 2px 2px 0px;
  4664. box-sizing:border-box;
  4665. width:100%;
  4666. }
  4667. #u16365_img {
  4668. border-width:0px;
  4669. position:absolute;
  4670. left:0px;
  4671. top:0px;
  4672. width:70px;
  4673. height:47px;
  4674. }
  4675. #u16365_text {
  4676. border-width:0px;
  4677. word-wrap:break-word;
  4678. text-transform:none;
  4679. visibility:hidden;
  4680. }
  4681. #u16366 {
  4682. border-width:0px;
  4683. position:absolute;
  4684. left:70px;
  4685. top:38px;
  4686. width:60px;
  4687. height:47px;
  4688. display:flex;
  4689. transition:none;
  4690. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4691. font-weight:400;
  4692. font-style:normal;
  4693. font-size:12px;
  4694. color:#333333;
  4695. line-height:40px;
  4696. }
  4697. #u16366 .text {
  4698. position:absolute;
  4699. align-self:center;
  4700. padding:2px 2px 2px 0px;
  4701. box-sizing:border-box;
  4702. width:100%;
  4703. }
  4704. #u16366_img {
  4705. border-width:0px;
  4706. position:absolute;
  4707. left:0px;
  4708. top:0px;
  4709. width:60px;
  4710. height:47px;
  4711. }
  4712. #u16366_text {
  4713. border-width:0px;
  4714. word-wrap:break-word;
  4715. text-transform:none;
  4716. visibility:hidden;
  4717. }
  4718. #u16367 {
  4719. border-width:0px;
  4720. position:absolute;
  4721. left:130px;
  4722. top:38px;
  4723. width:70px;
  4724. height:47px;
  4725. display:flex;
  4726. transition:none;
  4727. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4728. font-weight:400;
  4729. font-style:normal;
  4730. font-size:12px;
  4731. color:#333333;
  4732. line-height:40px;
  4733. }
  4734. #u16367 .text {
  4735. position:absolute;
  4736. align-self:center;
  4737. padding:2px 2px 2px 0px;
  4738. box-sizing:border-box;
  4739. width:100%;
  4740. }
  4741. #u16367_img {
  4742. border-width:0px;
  4743. position:absolute;
  4744. left:0px;
  4745. top:0px;
  4746. width:70px;
  4747. height:47px;
  4748. }
  4749. #u16367_text {
  4750. border-width:0px;
  4751. word-wrap:break-word;
  4752. text-transform:none;
  4753. visibility:hidden;
  4754. }
  4755. #u16368 {
  4756. border-width:0px;
  4757. position:absolute;
  4758. left:200px;
  4759. top:38px;
  4760. width:70px;
  4761. height:47px;
  4762. display:flex;
  4763. transition:none;
  4764. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4765. font-weight:400;
  4766. font-style:normal;
  4767. font-size:12px;
  4768. color:#333333;
  4769. line-height:40px;
  4770. }
  4771. #u16368 .text {
  4772. position:absolute;
  4773. align-self:center;
  4774. padding:2px 2px 2px 0px;
  4775. box-sizing:border-box;
  4776. width:100%;
  4777. }
  4778. #u16368_img {
  4779. border-width:0px;
  4780. position:absolute;
  4781. left:0px;
  4782. top:0px;
  4783. width:70px;
  4784. height:47px;
  4785. }
  4786. #u16368_text {
  4787. border-width:0px;
  4788. word-wrap:break-word;
  4789. text-transform:none;
  4790. visibility:hidden;
  4791. }
  4792. #u16369 {
  4793. border-width:0px;
  4794. position:absolute;
  4795. left:270px;
  4796. top:38px;
  4797. width:70px;
  4798. height:47px;
  4799. display:flex;
  4800. transition:none;
  4801. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4802. font-weight:400;
  4803. font-style:normal;
  4804. font-size:12px;
  4805. color:#333333;
  4806. line-height:40px;
  4807. }
  4808. #u16369 .text {
  4809. position:absolute;
  4810. align-self:center;
  4811. padding:2px 2px 2px 0px;
  4812. box-sizing:border-box;
  4813. width:100%;
  4814. }
  4815. #u16369_img {
  4816. border-width:0px;
  4817. position:absolute;
  4818. left:0px;
  4819. top:0px;
  4820. width:70px;
  4821. height:47px;
  4822. }
  4823. #u16369_text {
  4824. border-width:0px;
  4825. word-wrap:break-word;
  4826. text-transform:none;
  4827. visibility:hidden;
  4828. }
  4829. #u16370 {
  4830. border-width:0px;
  4831. position:absolute;
  4832. left:340px;
  4833. top:38px;
  4834. width:60px;
  4835. height:47px;
  4836. display:flex;
  4837. transition:none;
  4838. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4839. font-weight:400;
  4840. font-style:normal;
  4841. font-size:12px;
  4842. color:#333333;
  4843. line-height:40px;
  4844. }
  4845. #u16370 .text {
  4846. position:absolute;
  4847. align-self:center;
  4848. padding:2px 2px 2px 0px;
  4849. box-sizing:border-box;
  4850. width:100%;
  4851. }
  4852. #u16370_img {
  4853. border-width:0px;
  4854. position:absolute;
  4855. left:0px;
  4856. top:0px;
  4857. width:60px;
  4858. height:47px;
  4859. }
  4860. #u16370_text {
  4861. border-width:0px;
  4862. word-wrap:break-word;
  4863. text-transform:none;
  4864. visibility:hidden;
  4865. }
  4866. #u16371 {
  4867. border-width:0px;
  4868. position:absolute;
  4869. left:400px;
  4870. top:38px;
  4871. width:70px;
  4872. height:47px;
  4873. display:flex;
  4874. transition:none;
  4875. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4876. font-weight:400;
  4877. font-style:normal;
  4878. font-size:12px;
  4879. color:#333333;
  4880. line-height:40px;
  4881. }
  4882. #u16371 .text {
  4883. position:absolute;
  4884. align-self:center;
  4885. padding:2px 2px 2px 0px;
  4886. box-sizing:border-box;
  4887. width:100%;
  4888. }
  4889. #u16371_img {
  4890. border-width:0px;
  4891. position:absolute;
  4892. left:0px;
  4893. top:0px;
  4894. width:70px;
  4895. height:47px;
  4896. }
  4897. #u16371_text {
  4898. border-width:0px;
  4899. word-wrap:break-word;
  4900. text-transform:none;
  4901. visibility:hidden;
  4902. }
  4903. #u16372 {
  4904. border-width:0px;
  4905. position:absolute;
  4906. left:470px;
  4907. top:38px;
  4908. width:80px;
  4909. height:47px;
  4910. display:flex;
  4911. transition:none;
  4912. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4913. font-weight:400;
  4914. font-style:normal;
  4915. font-size:12px;
  4916. color:#333333;
  4917. line-height:40px;
  4918. }
  4919. #u16372 .text {
  4920. position:absolute;
  4921. align-self:center;
  4922. padding:2px 2px 2px 0px;
  4923. box-sizing:border-box;
  4924. width:100%;
  4925. }
  4926. #u16372_img {
  4927. border-width:0px;
  4928. position:absolute;
  4929. left:0px;
  4930. top:0px;
  4931. width:80px;
  4932. height:47px;
  4933. }
  4934. #u16372_text {
  4935. border-width:0px;
  4936. word-wrap:break-word;
  4937. text-transform:none;
  4938. visibility:hidden;
  4939. }
  4940. #u16373 {
  4941. border-width:0px;
  4942. position:absolute;
  4943. left:550px;
  4944. top:38px;
  4945. width:80px;
  4946. height:47px;
  4947. display:flex;
  4948. transition:none;
  4949. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4950. font-weight:400;
  4951. font-style:normal;
  4952. font-size:12px;
  4953. color:#333333;
  4954. line-height:40px;
  4955. }
  4956. #u16373 .text {
  4957. position:absolute;
  4958. align-self:center;
  4959. padding:2px 2px 2px 0px;
  4960. box-sizing:border-box;
  4961. width:100%;
  4962. }
  4963. #u16373_img {
  4964. border-width:0px;
  4965. position:absolute;
  4966. left:0px;
  4967. top:0px;
  4968. width:80px;
  4969. height:47px;
  4970. }
  4971. #u16373_text {
  4972. border-width:0px;
  4973. word-wrap:break-word;
  4974. text-transform:none;
  4975. visibility:hidden;
  4976. }
  4977. #u16374 {
  4978. border-width:0px;
  4979. position:absolute;
  4980. left:630px;
  4981. top:38px;
  4982. width:80px;
  4983. height:47px;
  4984. display:flex;
  4985. transition:none;
  4986. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4987. font-weight:400;
  4988. font-style:normal;
  4989. font-size:12px;
  4990. color:#333333;
  4991. line-height:40px;
  4992. }
  4993. #u16374 .text {
  4994. position:absolute;
  4995. align-self:center;
  4996. padding:2px 2px 2px 0px;
  4997. box-sizing:border-box;
  4998. width:100%;
  4999. }
  5000. #u16374_img {
  5001. border-width:0px;
  5002. position:absolute;
  5003. left:0px;
  5004. top:0px;
  5005. width:80px;
  5006. height:47px;
  5007. }
  5008. #u16374_text {
  5009. border-width:0px;
  5010. word-wrap:break-word;
  5011. text-transform:none;
  5012. visibility:hidden;
  5013. }
  5014. #u16375 {
  5015. border-width:0px;
  5016. position:absolute;
  5017. left:710px;
  5018. top:38px;
  5019. width:80px;
  5020. height:47px;
  5021. display:flex;
  5022. transition:none;
  5023. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5024. font-weight:400;
  5025. font-style:normal;
  5026. font-size:12px;
  5027. color:#333333;
  5028. line-height:40px;
  5029. }
  5030. #u16375 .text {
  5031. position:absolute;
  5032. align-self:center;
  5033. padding:2px 2px 2px 0px;
  5034. box-sizing:border-box;
  5035. width:100%;
  5036. }
  5037. #u16375_img {
  5038. border-width:0px;
  5039. position:absolute;
  5040. left:0px;
  5041. top:0px;
  5042. width:80px;
  5043. height:47px;
  5044. }
  5045. #u16375_text {
  5046. border-width:0px;
  5047. word-wrap:break-word;
  5048. text-transform:none;
  5049. visibility:hidden;
  5050. }
  5051. #u16376 {
  5052. border-width:0px;
  5053. position:absolute;
  5054. left:790px;
  5055. top:38px;
  5056. width:80px;
  5057. height:47px;
  5058. display:flex;
  5059. transition:none;
  5060. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5061. font-weight:400;
  5062. font-style:normal;
  5063. font-size:12px;
  5064. color:#333333;
  5065. line-height:40px;
  5066. }
  5067. #u16376 .text {
  5068. position:absolute;
  5069. align-self:center;
  5070. padding:2px 2px 2px 0px;
  5071. box-sizing:border-box;
  5072. width:100%;
  5073. }
  5074. #u16376_img {
  5075. border-width:0px;
  5076. position:absolute;
  5077. left:0px;
  5078. top:0px;
  5079. width:80px;
  5080. height:47px;
  5081. }
  5082. #u16376_text {
  5083. border-width:0px;
  5084. word-wrap:break-word;
  5085. text-transform:none;
  5086. visibility:hidden;
  5087. }
  5088. #u16377 {
  5089. border-width:0px;
  5090. position:absolute;
  5091. left:870px;
  5092. top:38px;
  5093. width:70px;
  5094. height:47px;
  5095. display:flex;
  5096. transition:none;
  5097. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5098. font-weight:400;
  5099. font-style:normal;
  5100. font-size:12px;
  5101. color:#333333;
  5102. line-height:40px;
  5103. }
  5104. #u16377 .text {
  5105. position:absolute;
  5106. align-self:center;
  5107. padding:2px 2px 2px 0px;
  5108. box-sizing:border-box;
  5109. width:100%;
  5110. }
  5111. #u16377_img {
  5112. border-width:0px;
  5113. position:absolute;
  5114. left:0px;
  5115. top:0px;
  5116. width:70px;
  5117. height:47px;
  5118. }
  5119. #u16377_text {
  5120. border-width:0px;
  5121. word-wrap:break-word;
  5122. text-transform:none;
  5123. }
  5124. #u16378 {
  5125. border-width:0px;
  5126. position:absolute;
  5127. left:940px;
  5128. top:38px;
  5129. width:72px;
  5130. height:47px;
  5131. display:flex;
  5132. transition:none;
  5133. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5134. font-weight:400;
  5135. font-style:normal;
  5136. font-size:12px;
  5137. color:#333333;
  5138. line-height:40px;
  5139. }
  5140. #u16378 .text {
  5141. position:absolute;
  5142. align-self:center;
  5143. padding:2px 2px 2px 0px;
  5144. box-sizing:border-box;
  5145. width:100%;
  5146. }
  5147. #u16378_img {
  5148. border-width:0px;
  5149. position:absolute;
  5150. left:0px;
  5151. top:0px;
  5152. width:72px;
  5153. height:47px;
  5154. }
  5155. #u16378_text {
  5156. border-width:0px;
  5157. word-wrap:break-word;
  5158. text-transform:none;
  5159. visibility:hidden;
  5160. }
  5161. #u16379 {
  5162. border-width:0px;
  5163. position:absolute;
  5164. left:1012px;
  5165. top:38px;
  5166. width:70px;
  5167. height:47px;
  5168. display:flex;
  5169. transition:none;
  5170. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5171. font-weight:400;
  5172. font-style:normal;
  5173. font-size:12px;
  5174. color:#333333;
  5175. line-height:40px;
  5176. }
  5177. #u16379 .text {
  5178. position:absolute;
  5179. align-self:center;
  5180. padding:2px 2px 2px 0px;
  5181. box-sizing:border-box;
  5182. width:100%;
  5183. }
  5184. #u16379_img {
  5185. border-width:0px;
  5186. position:absolute;
  5187. left:0px;
  5188. top:0px;
  5189. width:70px;
  5190. height:47px;
  5191. }
  5192. #u16379_text {
  5193. border-width:0px;
  5194. word-wrap:break-word;
  5195. text-transform:none;
  5196. visibility:hidden;
  5197. }
  5198. #u16380 {
  5199. border-width:0px;
  5200. position:absolute;
  5201. left:1082px;
  5202. top:38px;
  5203. width:70px;
  5204. height:47px;
  5205. display:flex;
  5206. transition:none;
  5207. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5208. font-weight:400;
  5209. font-style:normal;
  5210. font-size:12px;
  5211. color:#333333;
  5212. line-height:40px;
  5213. }
  5214. #u16380 .text {
  5215. position:absolute;
  5216. align-self:center;
  5217. padding:2px 2px 2px 0px;
  5218. box-sizing:border-box;
  5219. width:100%;
  5220. }
  5221. #u16380_img {
  5222. border-width:0px;
  5223. position:absolute;
  5224. left:0px;
  5225. top:0px;
  5226. width:70px;
  5227. height:47px;
  5228. }
  5229. #u16380_text {
  5230. border-width:0px;
  5231. word-wrap:break-word;
  5232. text-transform:none;
  5233. visibility:hidden;
  5234. }
  5235. #u16381 {
  5236. border-width:0px;
  5237. position:absolute;
  5238. left:1152px;
  5239. top:38px;
  5240. width:66px;
  5241. height:47px;
  5242. display:flex;
  5243. transition:none;
  5244. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5245. font-weight:400;
  5246. font-style:normal;
  5247. font-size:12px;
  5248. color:#AAAAAA;
  5249. line-height:40px;
  5250. }
  5251. #u16381 .text {
  5252. position:absolute;
  5253. align-self:center;
  5254. padding:2px 2px 2px 0px;
  5255. box-sizing:border-box;
  5256. width:100%;
  5257. }
  5258. #u16381_img {
  5259. border-width:0px;
  5260. position:absolute;
  5261. left:0px;
  5262. top:0px;
  5263. width:66px;
  5264. height:47px;
  5265. }
  5266. #u16381_text {
  5267. border-width:0px;
  5268. word-wrap:break-word;
  5269. text-transform:none;
  5270. }
  5271. #u16382 {
  5272. border-width:0px;
  5273. position:absolute;
  5274. left:0px;
  5275. top:85px;
  5276. width:70px;
  5277. height:44px;
  5278. display:flex;
  5279. transition:none;
  5280. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5281. font-weight:400;
  5282. font-style:normal;
  5283. font-size:12px;
  5284. color:#333333;
  5285. line-height:40px;
  5286. }
  5287. #u16382 .text {
  5288. position:absolute;
  5289. align-self:center;
  5290. padding:2px 2px 2px 0px;
  5291. box-sizing:border-box;
  5292. width:100%;
  5293. }
  5294. #u16382_img {
  5295. border-width:0px;
  5296. position:absolute;
  5297. left:0px;
  5298. top:0px;
  5299. width:70px;
  5300. height:44px;
  5301. }
  5302. #u16382_text {
  5303. border-width:0px;
  5304. word-wrap:break-word;
  5305. text-transform:none;
  5306. visibility:hidden;
  5307. }
  5308. #u16383 {
  5309. border-width:0px;
  5310. position:absolute;
  5311. left:70px;
  5312. top:85px;
  5313. width:60px;
  5314. height:44px;
  5315. display:flex;
  5316. transition:none;
  5317. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5318. font-weight:400;
  5319. font-style:normal;
  5320. font-size:12px;
  5321. color:#333333;
  5322. line-height:40px;
  5323. }
  5324. #u16383 .text {
  5325. position:absolute;
  5326. align-self:center;
  5327. padding:2px 2px 2px 0px;
  5328. box-sizing:border-box;
  5329. width:100%;
  5330. }
  5331. #u16383_img {
  5332. border-width:0px;
  5333. position:absolute;
  5334. left:0px;
  5335. top:0px;
  5336. width:60px;
  5337. height:44px;
  5338. }
  5339. #u16383_text {
  5340. border-width:0px;
  5341. word-wrap:break-word;
  5342. text-transform:none;
  5343. visibility:hidden;
  5344. }
  5345. #u16384 {
  5346. border-width:0px;
  5347. position:absolute;
  5348. left:130px;
  5349. top:85px;
  5350. width:70px;
  5351. height:44px;
  5352. display:flex;
  5353. transition:none;
  5354. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5355. font-weight:400;
  5356. font-style:normal;
  5357. font-size:12px;
  5358. color:#333333;
  5359. line-height:40px;
  5360. }
  5361. #u16384 .text {
  5362. position:absolute;
  5363. align-self:center;
  5364. padding:2px 2px 2px 0px;
  5365. box-sizing:border-box;
  5366. width:100%;
  5367. }
  5368. #u16384_img {
  5369. border-width:0px;
  5370. position:absolute;
  5371. left:0px;
  5372. top:0px;
  5373. width:70px;
  5374. height:44px;
  5375. }
  5376. #u16384_text {
  5377. border-width:0px;
  5378. word-wrap:break-word;
  5379. text-transform:none;
  5380. visibility:hidden;
  5381. }
  5382. #u16385 {
  5383. border-width:0px;
  5384. position:absolute;
  5385. left:200px;
  5386. top:85px;
  5387. width:70px;
  5388. height:44px;
  5389. display:flex;
  5390. transition:none;
  5391. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5392. font-weight:400;
  5393. font-style:normal;
  5394. font-size:12px;
  5395. color:#333333;
  5396. line-height:40px;
  5397. }
  5398. #u16385 .text {
  5399. position:absolute;
  5400. align-self:center;
  5401. padding:2px 2px 2px 0px;
  5402. box-sizing:border-box;
  5403. width:100%;
  5404. }
  5405. #u16385_img {
  5406. border-width:0px;
  5407. position:absolute;
  5408. left:0px;
  5409. top:0px;
  5410. width:70px;
  5411. height:44px;
  5412. }
  5413. #u16385_text {
  5414. border-width:0px;
  5415. word-wrap:break-word;
  5416. text-transform:none;
  5417. visibility:hidden;
  5418. }
  5419. #u16386 {
  5420. border-width:0px;
  5421. position:absolute;
  5422. left:270px;
  5423. top:85px;
  5424. width:70px;
  5425. height:44px;
  5426. display:flex;
  5427. transition:none;
  5428. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5429. font-weight:400;
  5430. font-style:normal;
  5431. font-size:12px;
  5432. color:#333333;
  5433. line-height:40px;
  5434. }
  5435. #u16386 .text {
  5436. position:absolute;
  5437. align-self:center;
  5438. padding:2px 2px 2px 0px;
  5439. box-sizing:border-box;
  5440. width:100%;
  5441. }
  5442. #u16386_img {
  5443. border-width:0px;
  5444. position:absolute;
  5445. left:0px;
  5446. top:0px;
  5447. width:70px;
  5448. height:44px;
  5449. }
  5450. #u16386_text {
  5451. border-width:0px;
  5452. word-wrap:break-word;
  5453. text-transform:none;
  5454. visibility:hidden;
  5455. }
  5456. #u16387 {
  5457. border-width:0px;
  5458. position:absolute;
  5459. left:340px;
  5460. top:85px;
  5461. width:60px;
  5462. height:44px;
  5463. display:flex;
  5464. transition:none;
  5465. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5466. font-weight:400;
  5467. font-style:normal;
  5468. font-size:12px;
  5469. color:#333333;
  5470. line-height:40px;
  5471. }
  5472. #u16387 .text {
  5473. position:absolute;
  5474. align-self:center;
  5475. padding:2px 2px 2px 0px;
  5476. box-sizing:border-box;
  5477. width:100%;
  5478. }
  5479. #u16387_img {
  5480. border-width:0px;
  5481. position:absolute;
  5482. left:0px;
  5483. top:0px;
  5484. width:60px;
  5485. height:44px;
  5486. }
  5487. #u16387_text {
  5488. border-width:0px;
  5489. word-wrap:break-word;
  5490. text-transform:none;
  5491. visibility:hidden;
  5492. }
  5493. #u16388 {
  5494. border-width:0px;
  5495. position:absolute;
  5496. left:400px;
  5497. top:85px;
  5498. width:70px;
  5499. height:44px;
  5500. display:flex;
  5501. transition:none;
  5502. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5503. font-weight:400;
  5504. font-style:normal;
  5505. font-size:12px;
  5506. color:#333333;
  5507. line-height:40px;
  5508. }
  5509. #u16388 .text {
  5510. position:absolute;
  5511. align-self:center;
  5512. padding:2px 2px 2px 0px;
  5513. box-sizing:border-box;
  5514. width:100%;
  5515. }
  5516. #u16388_img {
  5517. border-width:0px;
  5518. position:absolute;
  5519. left:0px;
  5520. top:0px;
  5521. width:70px;
  5522. height:44px;
  5523. }
  5524. #u16388_text {
  5525. border-width:0px;
  5526. word-wrap:break-word;
  5527. text-transform:none;
  5528. visibility:hidden;
  5529. }
  5530. #u16389 {
  5531. border-width:0px;
  5532. position:absolute;
  5533. left:470px;
  5534. top:85px;
  5535. width:80px;
  5536. height:44px;
  5537. display:flex;
  5538. transition:none;
  5539. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5540. font-weight:400;
  5541. font-style:normal;
  5542. font-size:12px;
  5543. color:#333333;
  5544. line-height:40px;
  5545. }
  5546. #u16389 .text {
  5547. position:absolute;
  5548. align-self:center;
  5549. padding:2px 2px 2px 0px;
  5550. box-sizing:border-box;
  5551. width:100%;
  5552. }
  5553. #u16389_img {
  5554. border-width:0px;
  5555. position:absolute;
  5556. left:0px;
  5557. top:0px;
  5558. width:80px;
  5559. height:44px;
  5560. }
  5561. #u16389_text {
  5562. border-width:0px;
  5563. word-wrap:break-word;
  5564. text-transform:none;
  5565. visibility:hidden;
  5566. }
  5567. #u16390 {
  5568. border-width:0px;
  5569. position:absolute;
  5570. left:550px;
  5571. top:85px;
  5572. width:80px;
  5573. height:44px;
  5574. display:flex;
  5575. transition:none;
  5576. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5577. font-weight:400;
  5578. font-style:normal;
  5579. font-size:12px;
  5580. color:#333333;
  5581. line-height:40px;
  5582. }
  5583. #u16390 .text {
  5584. position:absolute;
  5585. align-self:center;
  5586. padding:2px 2px 2px 0px;
  5587. box-sizing:border-box;
  5588. width:100%;
  5589. }
  5590. #u16390_img {
  5591. border-width:0px;
  5592. position:absolute;
  5593. left:0px;
  5594. top:0px;
  5595. width:80px;
  5596. height:44px;
  5597. }
  5598. #u16390_text {
  5599. border-width:0px;
  5600. word-wrap:break-word;
  5601. text-transform:none;
  5602. visibility:hidden;
  5603. }
  5604. #u16391 {
  5605. border-width:0px;
  5606. position:absolute;
  5607. left:630px;
  5608. top:85px;
  5609. width:80px;
  5610. height:44px;
  5611. display:flex;
  5612. transition:none;
  5613. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5614. font-weight:400;
  5615. font-style:normal;
  5616. font-size:12px;
  5617. color:#333333;
  5618. line-height:40px;
  5619. }
  5620. #u16391 .text {
  5621. position:absolute;
  5622. align-self:center;
  5623. padding:2px 2px 2px 0px;
  5624. box-sizing:border-box;
  5625. width:100%;
  5626. }
  5627. #u16391_img {
  5628. border-width:0px;
  5629. position:absolute;
  5630. left:0px;
  5631. top:0px;
  5632. width:80px;
  5633. height:44px;
  5634. }
  5635. #u16391_text {
  5636. border-width:0px;
  5637. word-wrap:break-word;
  5638. text-transform:none;
  5639. visibility:hidden;
  5640. }
  5641. #u16392 {
  5642. border-width:0px;
  5643. position:absolute;
  5644. left:710px;
  5645. top:85px;
  5646. width:80px;
  5647. height:44px;
  5648. display:flex;
  5649. transition:none;
  5650. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5651. font-weight:400;
  5652. font-style:normal;
  5653. font-size:12px;
  5654. color:#333333;
  5655. line-height:40px;
  5656. }
  5657. #u16392 .text {
  5658. position:absolute;
  5659. align-self:center;
  5660. padding:2px 2px 2px 0px;
  5661. box-sizing:border-box;
  5662. width:100%;
  5663. }
  5664. #u16392_img {
  5665. border-width:0px;
  5666. position:absolute;
  5667. left:0px;
  5668. top:0px;
  5669. width:80px;
  5670. height:44px;
  5671. }
  5672. #u16392_text {
  5673. border-width:0px;
  5674. word-wrap:break-word;
  5675. text-transform:none;
  5676. visibility:hidden;
  5677. }
  5678. #u16393 {
  5679. border-width:0px;
  5680. position:absolute;
  5681. left:790px;
  5682. top:85px;
  5683. width:80px;
  5684. height:44px;
  5685. display:flex;
  5686. transition:none;
  5687. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5688. font-weight:400;
  5689. font-style:normal;
  5690. font-size:12px;
  5691. color:#333333;
  5692. line-height:40px;
  5693. }
  5694. #u16393 .text {
  5695. position:absolute;
  5696. align-self:center;
  5697. padding:2px 2px 2px 0px;
  5698. box-sizing:border-box;
  5699. width:100%;
  5700. }
  5701. #u16393_img {
  5702. border-width:0px;
  5703. position:absolute;
  5704. left:0px;
  5705. top:0px;
  5706. width:80px;
  5707. height:44px;
  5708. }
  5709. #u16393_text {
  5710. border-width:0px;
  5711. word-wrap:break-word;
  5712. text-transform:none;
  5713. visibility:hidden;
  5714. }
  5715. #u16394 {
  5716. border-width:0px;
  5717. position:absolute;
  5718. left:870px;
  5719. top:85px;
  5720. width:70px;
  5721. height:44px;
  5722. display:flex;
  5723. transition:none;
  5724. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5725. font-weight:400;
  5726. font-style:normal;
  5727. font-size:12px;
  5728. color:#333333;
  5729. line-height:40px;
  5730. }
  5731. #u16394 .text {
  5732. position:absolute;
  5733. align-self:center;
  5734. padding:2px 2px 2px 0px;
  5735. box-sizing:border-box;
  5736. width:100%;
  5737. }
  5738. #u16394_img {
  5739. border-width:0px;
  5740. position:absolute;
  5741. left:0px;
  5742. top:0px;
  5743. width:70px;
  5744. height:44px;
  5745. }
  5746. #u16394_text {
  5747. border-width:0px;
  5748. word-wrap:break-word;
  5749. text-transform:none;
  5750. }
  5751. #u16395 {
  5752. border-width:0px;
  5753. position:absolute;
  5754. left:940px;
  5755. top:85px;
  5756. width:72px;
  5757. height:44px;
  5758. display:flex;
  5759. transition:none;
  5760. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5761. font-weight:400;
  5762. font-style:normal;
  5763. font-size:12px;
  5764. color:#333333;
  5765. line-height:40px;
  5766. }
  5767. #u16395 .text {
  5768. position:absolute;
  5769. align-self:center;
  5770. padding:2px 2px 2px 0px;
  5771. box-sizing:border-box;
  5772. width:100%;
  5773. }
  5774. #u16395_img {
  5775. border-width:0px;
  5776. position:absolute;
  5777. left:0px;
  5778. top:0px;
  5779. width:72px;
  5780. height:44px;
  5781. }
  5782. #u16395_text {
  5783. border-width:0px;
  5784. word-wrap:break-word;
  5785. text-transform:none;
  5786. visibility:hidden;
  5787. }
  5788. #u16396 {
  5789. border-width:0px;
  5790. position:absolute;
  5791. left:1012px;
  5792. top:85px;
  5793. width:70px;
  5794. height:44px;
  5795. display:flex;
  5796. transition:none;
  5797. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5798. font-weight:400;
  5799. font-style:normal;
  5800. font-size:12px;
  5801. color:#333333;
  5802. line-height:40px;
  5803. }
  5804. #u16396 .text {
  5805. position:absolute;
  5806. align-self:center;
  5807. padding:2px 2px 2px 0px;
  5808. box-sizing:border-box;
  5809. width:100%;
  5810. }
  5811. #u16396_img {
  5812. border-width:0px;
  5813. position:absolute;
  5814. left:0px;
  5815. top:0px;
  5816. width:70px;
  5817. height:44px;
  5818. }
  5819. #u16396_text {
  5820. border-width:0px;
  5821. word-wrap:break-word;
  5822. text-transform:none;
  5823. visibility:hidden;
  5824. }
  5825. #u16397 {
  5826. border-width:0px;
  5827. position:absolute;
  5828. left:1082px;
  5829. top:85px;
  5830. width:70px;
  5831. height:44px;
  5832. display:flex;
  5833. transition:none;
  5834. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5835. font-weight:400;
  5836. font-style:normal;
  5837. font-size:12px;
  5838. color:#333333;
  5839. line-height:40px;
  5840. }
  5841. #u16397 .text {
  5842. position:absolute;
  5843. align-self:center;
  5844. padding:2px 2px 2px 0px;
  5845. box-sizing:border-box;
  5846. width:100%;
  5847. }
  5848. #u16397_img {
  5849. border-width:0px;
  5850. position:absolute;
  5851. left:0px;
  5852. top:0px;
  5853. width:70px;
  5854. height:44px;
  5855. }
  5856. #u16397_text {
  5857. border-width:0px;
  5858. word-wrap:break-word;
  5859. text-transform:none;
  5860. visibility:hidden;
  5861. }
  5862. #u16398 {
  5863. border-width:0px;
  5864. position:absolute;
  5865. left:1152px;
  5866. top:85px;
  5867. width:66px;
  5868. height:44px;
  5869. display:flex;
  5870. transition:none;
  5871. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5872. font-weight:400;
  5873. font-style:normal;
  5874. font-size:12px;
  5875. color:#AAAAAA;
  5876. line-height:40px;
  5877. }
  5878. #u16398 .text {
  5879. position:absolute;
  5880. align-self:center;
  5881. padding:2px 2px 2px 0px;
  5882. box-sizing:border-box;
  5883. width:100%;
  5884. }
  5885. #u16398_img {
  5886. border-width:0px;
  5887. position:absolute;
  5888. left:0px;
  5889. top:0px;
  5890. width:66px;
  5891. height:44px;
  5892. }
  5893. #u16398_text {
  5894. border-width:0px;
  5895. word-wrap:break-word;
  5896. text-transform:none;
  5897. }
  5898. #u16399 {
  5899. border-width:0px;
  5900. position:absolute;
  5901. left:0px;
  5902. top:129px;
  5903. width:70px;
  5904. height:44px;
  5905. display:flex;
  5906. transition:none;
  5907. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5908. font-weight:400;
  5909. font-style:normal;
  5910. font-size:12px;
  5911. color:#333333;
  5912. line-height:40px;
  5913. }
  5914. #u16399 .text {
  5915. position:absolute;
  5916. align-self:center;
  5917. padding:2px 2px 2px 0px;
  5918. box-sizing:border-box;
  5919. width:100%;
  5920. }
  5921. #u16399_img {
  5922. border-width:0px;
  5923. position:absolute;
  5924. left:0px;
  5925. top:0px;
  5926. width:70px;
  5927. height:44px;
  5928. }
  5929. #u16399_text {
  5930. border-width:0px;
  5931. word-wrap:break-word;
  5932. text-transform:none;
  5933. visibility:hidden;
  5934. }
  5935. #u16400 {
  5936. border-width:0px;
  5937. position:absolute;
  5938. left:70px;
  5939. top:129px;
  5940. width:60px;
  5941. height:44px;
  5942. display:flex;
  5943. transition:none;
  5944. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5945. font-weight:400;
  5946. font-style:normal;
  5947. font-size:12px;
  5948. color:#333333;
  5949. line-height:40px;
  5950. }
  5951. #u16400 .text {
  5952. position:absolute;
  5953. align-self:center;
  5954. padding:2px 2px 2px 0px;
  5955. box-sizing:border-box;
  5956. width:100%;
  5957. }
  5958. #u16400_img {
  5959. border-width:0px;
  5960. position:absolute;
  5961. left:0px;
  5962. top:0px;
  5963. width:60px;
  5964. height:44px;
  5965. }
  5966. #u16400_text {
  5967. border-width:0px;
  5968. word-wrap:break-word;
  5969. text-transform:none;
  5970. visibility:hidden;
  5971. }
  5972. #u16401 {
  5973. border-width:0px;
  5974. position:absolute;
  5975. left:130px;
  5976. top:129px;
  5977. width:70px;
  5978. height:44px;
  5979. display:flex;
  5980. transition:none;
  5981. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5982. font-weight:400;
  5983. font-style:normal;
  5984. font-size:12px;
  5985. color:#333333;
  5986. line-height:40px;
  5987. }
  5988. #u16401 .text {
  5989. position:absolute;
  5990. align-self:center;
  5991. padding:2px 2px 2px 0px;
  5992. box-sizing:border-box;
  5993. width:100%;
  5994. }
  5995. #u16401_img {
  5996. border-width:0px;
  5997. position:absolute;
  5998. left:0px;
  5999. top:0px;
  6000. width:70px;
  6001. height:44px;
  6002. }
  6003. #u16401_text {
  6004. border-width:0px;
  6005. word-wrap:break-word;
  6006. text-transform:none;
  6007. visibility:hidden;
  6008. }
  6009. #u16402 {
  6010. border-width:0px;
  6011. position:absolute;
  6012. left:200px;
  6013. top:129px;
  6014. width:70px;
  6015. height:44px;
  6016. display:flex;
  6017. transition:none;
  6018. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6019. font-weight:400;
  6020. font-style:normal;
  6021. font-size:12px;
  6022. color:#333333;
  6023. line-height:40px;
  6024. }
  6025. #u16402 .text {
  6026. position:absolute;
  6027. align-self:center;
  6028. padding:2px 2px 2px 0px;
  6029. box-sizing:border-box;
  6030. width:100%;
  6031. }
  6032. #u16402_img {
  6033. border-width:0px;
  6034. position:absolute;
  6035. left:0px;
  6036. top:0px;
  6037. width:70px;
  6038. height:44px;
  6039. }
  6040. #u16402_text {
  6041. border-width:0px;
  6042. word-wrap:break-word;
  6043. text-transform:none;
  6044. visibility:hidden;
  6045. }
  6046. #u16403 {
  6047. border-width:0px;
  6048. position:absolute;
  6049. left:270px;
  6050. top:129px;
  6051. width:70px;
  6052. height:44px;
  6053. display:flex;
  6054. transition:none;
  6055. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6056. font-weight:400;
  6057. font-style:normal;
  6058. font-size:12px;
  6059. color:#333333;
  6060. line-height:40px;
  6061. }
  6062. #u16403 .text {
  6063. position:absolute;
  6064. align-self:center;
  6065. padding:2px 2px 2px 0px;
  6066. box-sizing:border-box;
  6067. width:100%;
  6068. }
  6069. #u16403_img {
  6070. border-width:0px;
  6071. position:absolute;
  6072. left:0px;
  6073. top:0px;
  6074. width:70px;
  6075. height:44px;
  6076. }
  6077. #u16403_text {
  6078. border-width:0px;
  6079. word-wrap:break-word;
  6080. text-transform:none;
  6081. visibility:hidden;
  6082. }
  6083. #u16404 {
  6084. border-width:0px;
  6085. position:absolute;
  6086. left:340px;
  6087. top:129px;
  6088. width:60px;
  6089. height:44px;
  6090. display:flex;
  6091. transition:none;
  6092. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6093. font-weight:400;
  6094. font-style:normal;
  6095. font-size:12px;
  6096. color:#333333;
  6097. line-height:40px;
  6098. }
  6099. #u16404 .text {
  6100. position:absolute;
  6101. align-self:center;
  6102. padding:2px 2px 2px 0px;
  6103. box-sizing:border-box;
  6104. width:100%;
  6105. }
  6106. #u16404_img {
  6107. border-width:0px;
  6108. position:absolute;
  6109. left:0px;
  6110. top:0px;
  6111. width:60px;
  6112. height:44px;
  6113. }
  6114. #u16404_text {
  6115. border-width:0px;
  6116. word-wrap:break-word;
  6117. text-transform:none;
  6118. visibility:hidden;
  6119. }
  6120. #u16405 {
  6121. border-width:0px;
  6122. position:absolute;
  6123. left:400px;
  6124. top:129px;
  6125. width:70px;
  6126. height:44px;
  6127. display:flex;
  6128. transition:none;
  6129. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6130. font-weight:400;
  6131. font-style:normal;
  6132. font-size:12px;
  6133. color:#333333;
  6134. line-height:40px;
  6135. }
  6136. #u16405 .text {
  6137. position:absolute;
  6138. align-self:center;
  6139. padding:2px 2px 2px 0px;
  6140. box-sizing:border-box;
  6141. width:100%;
  6142. }
  6143. #u16405_img {
  6144. border-width:0px;
  6145. position:absolute;
  6146. left:0px;
  6147. top:0px;
  6148. width:70px;
  6149. height:44px;
  6150. }
  6151. #u16405_text {
  6152. border-width:0px;
  6153. word-wrap:break-word;
  6154. text-transform:none;
  6155. visibility:hidden;
  6156. }
  6157. #u16406 {
  6158. border-width:0px;
  6159. position:absolute;
  6160. left:470px;
  6161. top:129px;
  6162. width:80px;
  6163. height:44px;
  6164. display:flex;
  6165. transition:none;
  6166. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6167. font-weight:400;
  6168. font-style:normal;
  6169. font-size:12px;
  6170. color:#333333;
  6171. line-height:40px;
  6172. }
  6173. #u16406 .text {
  6174. position:absolute;
  6175. align-self:center;
  6176. padding:2px 2px 2px 0px;
  6177. box-sizing:border-box;
  6178. width:100%;
  6179. }
  6180. #u16406_img {
  6181. border-width:0px;
  6182. position:absolute;
  6183. left:0px;
  6184. top:0px;
  6185. width:80px;
  6186. height:44px;
  6187. }
  6188. #u16406_text {
  6189. border-width:0px;
  6190. word-wrap:break-word;
  6191. text-transform:none;
  6192. visibility:hidden;
  6193. }
  6194. #u16407 {
  6195. border-width:0px;
  6196. position:absolute;
  6197. left:550px;
  6198. top:129px;
  6199. width:80px;
  6200. height:44px;
  6201. display:flex;
  6202. transition:none;
  6203. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6204. font-weight:400;
  6205. font-style:normal;
  6206. font-size:12px;
  6207. color:#333333;
  6208. line-height:40px;
  6209. }
  6210. #u16407 .text {
  6211. position:absolute;
  6212. align-self:center;
  6213. padding:2px 2px 2px 0px;
  6214. box-sizing:border-box;
  6215. width:100%;
  6216. }
  6217. #u16407_img {
  6218. border-width:0px;
  6219. position:absolute;
  6220. left:0px;
  6221. top:0px;
  6222. width:80px;
  6223. height:44px;
  6224. }
  6225. #u16407_text {
  6226. border-width:0px;
  6227. word-wrap:break-word;
  6228. text-transform:none;
  6229. visibility:hidden;
  6230. }
  6231. #u16408 {
  6232. border-width:0px;
  6233. position:absolute;
  6234. left:630px;
  6235. top:129px;
  6236. width:80px;
  6237. height:44px;
  6238. display:flex;
  6239. transition:none;
  6240. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6241. font-weight:400;
  6242. font-style:normal;
  6243. font-size:12px;
  6244. color:#333333;
  6245. line-height:40px;
  6246. }
  6247. #u16408 .text {
  6248. position:absolute;
  6249. align-self:center;
  6250. padding:2px 2px 2px 0px;
  6251. box-sizing:border-box;
  6252. width:100%;
  6253. }
  6254. #u16408_img {
  6255. border-width:0px;
  6256. position:absolute;
  6257. left:0px;
  6258. top:0px;
  6259. width:80px;
  6260. height:44px;
  6261. }
  6262. #u16408_text {
  6263. border-width:0px;
  6264. word-wrap:break-word;
  6265. text-transform:none;
  6266. visibility:hidden;
  6267. }
  6268. #u16409 {
  6269. border-width:0px;
  6270. position:absolute;
  6271. left:710px;
  6272. top:129px;
  6273. width:80px;
  6274. height:44px;
  6275. display:flex;
  6276. transition:none;
  6277. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6278. font-weight:400;
  6279. font-style:normal;
  6280. font-size:12px;
  6281. color:#333333;
  6282. line-height:40px;
  6283. }
  6284. #u16409 .text {
  6285. position:absolute;
  6286. align-self:center;
  6287. padding:2px 2px 2px 0px;
  6288. box-sizing:border-box;
  6289. width:100%;
  6290. }
  6291. #u16409_img {
  6292. border-width:0px;
  6293. position:absolute;
  6294. left:0px;
  6295. top:0px;
  6296. width:80px;
  6297. height:44px;
  6298. }
  6299. #u16409_text {
  6300. border-width:0px;
  6301. word-wrap:break-word;
  6302. text-transform:none;
  6303. visibility:hidden;
  6304. }
  6305. #u16410 {
  6306. border-width:0px;
  6307. position:absolute;
  6308. left:790px;
  6309. top:129px;
  6310. width:80px;
  6311. height:44px;
  6312. display:flex;
  6313. transition:none;
  6314. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6315. font-weight:400;
  6316. font-style:normal;
  6317. font-size:12px;
  6318. color:#333333;
  6319. line-height:40px;
  6320. }
  6321. #u16410 .text {
  6322. position:absolute;
  6323. align-self:center;
  6324. padding:2px 2px 2px 0px;
  6325. box-sizing:border-box;
  6326. width:100%;
  6327. }
  6328. #u16410_img {
  6329. border-width:0px;
  6330. position:absolute;
  6331. left:0px;
  6332. top:0px;
  6333. width:80px;
  6334. height:44px;
  6335. }
  6336. #u16410_text {
  6337. border-width:0px;
  6338. word-wrap:break-word;
  6339. text-transform:none;
  6340. visibility:hidden;
  6341. }
  6342. #u16411 {
  6343. border-width:0px;
  6344. position:absolute;
  6345. left:870px;
  6346. top:129px;
  6347. width:70px;
  6348. height:44px;
  6349. display:flex;
  6350. transition:none;
  6351. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6352. font-weight:400;
  6353. font-style:normal;
  6354. font-size:12px;
  6355. color:#333333;
  6356. line-height:40px;
  6357. }
  6358. #u16411 .text {
  6359. position:absolute;
  6360. align-self:center;
  6361. padding:2px 2px 2px 0px;
  6362. box-sizing:border-box;
  6363. width:100%;
  6364. }
  6365. #u16411_img {
  6366. border-width:0px;
  6367. position:absolute;
  6368. left:0px;
  6369. top:0px;
  6370. width:70px;
  6371. height:44px;
  6372. }
  6373. #u16411_text {
  6374. border-width:0px;
  6375. word-wrap:break-word;
  6376. text-transform:none;
  6377. }
  6378. #u16412 {
  6379. border-width:0px;
  6380. position:absolute;
  6381. left:940px;
  6382. top:129px;
  6383. width:72px;
  6384. height:44px;
  6385. display:flex;
  6386. transition:none;
  6387. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6388. font-weight:400;
  6389. font-style:normal;
  6390. font-size:12px;
  6391. color:#333333;
  6392. line-height:40px;
  6393. }
  6394. #u16412 .text {
  6395. position:absolute;
  6396. align-self:center;
  6397. padding:2px 2px 2px 0px;
  6398. box-sizing:border-box;
  6399. width:100%;
  6400. }
  6401. #u16412_img {
  6402. border-width:0px;
  6403. position:absolute;
  6404. left:0px;
  6405. top:0px;
  6406. width:72px;
  6407. height:44px;
  6408. }
  6409. #u16412_text {
  6410. border-width:0px;
  6411. word-wrap:break-word;
  6412. text-transform:none;
  6413. visibility:hidden;
  6414. }
  6415. #u16413 {
  6416. border-width:0px;
  6417. position:absolute;
  6418. left:1012px;
  6419. top:129px;
  6420. width:70px;
  6421. height:44px;
  6422. display:flex;
  6423. transition:none;
  6424. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6425. font-weight:400;
  6426. font-style:normal;
  6427. font-size:12px;
  6428. color:#333333;
  6429. line-height:40px;
  6430. }
  6431. #u16413 .text {
  6432. position:absolute;
  6433. align-self:center;
  6434. padding:2px 2px 2px 0px;
  6435. box-sizing:border-box;
  6436. width:100%;
  6437. }
  6438. #u16413_img {
  6439. border-width:0px;
  6440. position:absolute;
  6441. left:0px;
  6442. top:0px;
  6443. width:70px;
  6444. height:44px;
  6445. }
  6446. #u16413_text {
  6447. border-width:0px;
  6448. word-wrap:break-word;
  6449. text-transform:none;
  6450. visibility:hidden;
  6451. }
  6452. #u16414 {
  6453. border-width:0px;
  6454. position:absolute;
  6455. left:1082px;
  6456. top:129px;
  6457. width:70px;
  6458. height:44px;
  6459. display:flex;
  6460. transition:none;
  6461. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6462. font-weight:400;
  6463. font-style:normal;
  6464. font-size:12px;
  6465. color:#333333;
  6466. line-height:40px;
  6467. }
  6468. #u16414 .text {
  6469. position:absolute;
  6470. align-self:center;
  6471. padding:2px 2px 2px 0px;
  6472. box-sizing:border-box;
  6473. width:100%;
  6474. }
  6475. #u16414_img {
  6476. border-width:0px;
  6477. position:absolute;
  6478. left:0px;
  6479. top:0px;
  6480. width:70px;
  6481. height:44px;
  6482. }
  6483. #u16414_text {
  6484. border-width:0px;
  6485. word-wrap:break-word;
  6486. text-transform:none;
  6487. visibility:hidden;
  6488. }
  6489. #u16415 {
  6490. border-width:0px;
  6491. position:absolute;
  6492. left:1152px;
  6493. top:129px;
  6494. width:66px;
  6495. height:44px;
  6496. display:flex;
  6497. transition:none;
  6498. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6499. font-weight:400;
  6500. font-style:normal;
  6501. font-size:12px;
  6502. line-height:40px;
  6503. }
  6504. #u16415 .text {
  6505. position:absolute;
  6506. align-self:center;
  6507. padding:2px 2px 2px 0px;
  6508. box-sizing:border-box;
  6509. width:100%;
  6510. }
  6511. #u16415_img {
  6512. border-width:0px;
  6513. position:absolute;
  6514. left:0px;
  6515. top:0px;
  6516. width:66px;
  6517. height:44px;
  6518. }
  6519. #u16415_text {
  6520. border-width:0px;
  6521. word-wrap:break-word;
  6522. text-transform:none;
  6523. }
  6524. #u16416 {
  6525. border-width:0px;
  6526. position:absolute;
  6527. left:0px;
  6528. top:173px;
  6529. width:70px;
  6530. height:44px;
  6531. display:flex;
  6532. transition:none;
  6533. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6534. font-weight:400;
  6535. font-style:normal;
  6536. font-size:12px;
  6537. color:#606266;
  6538. }
  6539. #u16416 .text {
  6540. position:absolute;
  6541. align-self:center;
  6542. padding:2px 2px 2px 0px;
  6543. box-sizing:border-box;
  6544. width:100%;
  6545. }
  6546. #u16416_img {
  6547. border-width:0px;
  6548. position:absolute;
  6549. left:0px;
  6550. top:0px;
  6551. width:70px;
  6552. height:44px;
  6553. }
  6554. #u16416_text {
  6555. border-width:0px;
  6556. word-wrap:break-word;
  6557. text-transform:none;
  6558. visibility:hidden;
  6559. }
  6560. #u16417 {
  6561. border-width:0px;
  6562. position:absolute;
  6563. left:70px;
  6564. top:173px;
  6565. width:60px;
  6566. height:44px;
  6567. display:flex;
  6568. transition:none;
  6569. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6570. font-weight:400;
  6571. font-style:normal;
  6572. font-size:12px;
  6573. color:#606266;
  6574. }
  6575. #u16417 .text {
  6576. position:absolute;
  6577. align-self:center;
  6578. padding:2px 2px 2px 0px;
  6579. box-sizing:border-box;
  6580. width:100%;
  6581. }
  6582. #u16417_img {
  6583. border-width:0px;
  6584. position:absolute;
  6585. left:0px;
  6586. top:0px;
  6587. width:60px;
  6588. height:44px;
  6589. }
  6590. #u16417_text {
  6591. border-width:0px;
  6592. word-wrap:break-word;
  6593. text-transform:none;
  6594. visibility:hidden;
  6595. }
  6596. #u16418 {
  6597. border-width:0px;
  6598. position:absolute;
  6599. left:130px;
  6600. top:173px;
  6601. width:70px;
  6602. height:44px;
  6603. display:flex;
  6604. transition:none;
  6605. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6606. font-weight:400;
  6607. font-style:normal;
  6608. font-size:12px;
  6609. color:#606266;
  6610. }
  6611. #u16418 .text {
  6612. position:absolute;
  6613. align-self:center;
  6614. padding:2px 2px 2px 0px;
  6615. box-sizing:border-box;
  6616. width:100%;
  6617. }
  6618. #u16418_img {
  6619. border-width:0px;
  6620. position:absolute;
  6621. left:0px;
  6622. top:0px;
  6623. width:70px;
  6624. height:44px;
  6625. }
  6626. #u16418_text {
  6627. border-width:0px;
  6628. word-wrap:break-word;
  6629. text-transform:none;
  6630. visibility:hidden;
  6631. }
  6632. #u16419 {
  6633. border-width:0px;
  6634. position:absolute;
  6635. left:200px;
  6636. top:173px;
  6637. width:70px;
  6638. height:44px;
  6639. display:flex;
  6640. transition:none;
  6641. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6642. font-weight:400;
  6643. font-style:normal;
  6644. font-size:12px;
  6645. color:#606266;
  6646. }
  6647. #u16419 .text {
  6648. position:absolute;
  6649. align-self:center;
  6650. padding:2px 2px 2px 0px;
  6651. box-sizing:border-box;
  6652. width:100%;
  6653. }
  6654. #u16419_img {
  6655. border-width:0px;
  6656. position:absolute;
  6657. left:0px;
  6658. top:0px;
  6659. width:70px;
  6660. height:44px;
  6661. }
  6662. #u16419_text {
  6663. border-width:0px;
  6664. word-wrap:break-word;
  6665. text-transform:none;
  6666. visibility:hidden;
  6667. }
  6668. #u16420 {
  6669. border-width:0px;
  6670. position:absolute;
  6671. left:270px;
  6672. top:173px;
  6673. width:70px;
  6674. height:44px;
  6675. display:flex;
  6676. transition:none;
  6677. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6678. font-weight:400;
  6679. font-style:normal;
  6680. font-size:12px;
  6681. color:#606266;
  6682. }
  6683. #u16420 .text {
  6684. position:absolute;
  6685. align-self:center;
  6686. padding:2px 2px 2px 0px;
  6687. box-sizing:border-box;
  6688. width:100%;
  6689. }
  6690. #u16420_img {
  6691. border-width:0px;
  6692. position:absolute;
  6693. left:0px;
  6694. top:0px;
  6695. width:70px;
  6696. height:44px;
  6697. }
  6698. #u16420_text {
  6699. border-width:0px;
  6700. word-wrap:break-word;
  6701. text-transform:none;
  6702. visibility:hidden;
  6703. }
  6704. #u16421 {
  6705. border-width:0px;
  6706. position:absolute;
  6707. left:340px;
  6708. top:173px;
  6709. width:60px;
  6710. height:44px;
  6711. display:flex;
  6712. transition:none;
  6713. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6714. font-weight:400;
  6715. font-style:normal;
  6716. font-size:12px;
  6717. color:#606266;
  6718. }
  6719. #u16421 .text {
  6720. position:absolute;
  6721. align-self:center;
  6722. padding:2px 2px 2px 0px;
  6723. box-sizing:border-box;
  6724. width:100%;
  6725. }
  6726. #u16421_img {
  6727. border-width:0px;
  6728. position:absolute;
  6729. left:0px;
  6730. top:0px;
  6731. width:60px;
  6732. height:44px;
  6733. }
  6734. #u16421_text {
  6735. border-width:0px;
  6736. word-wrap:break-word;
  6737. text-transform:none;
  6738. visibility:hidden;
  6739. }
  6740. #u16422 {
  6741. border-width:0px;
  6742. position:absolute;
  6743. left:400px;
  6744. top:173px;
  6745. width:70px;
  6746. height:44px;
  6747. display:flex;
  6748. transition:none;
  6749. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6750. font-weight:400;
  6751. font-style:normal;
  6752. font-size:12px;
  6753. color:#606266;
  6754. }
  6755. #u16422 .text {
  6756. position:absolute;
  6757. align-self:center;
  6758. padding:2px 2px 2px 0px;
  6759. box-sizing:border-box;
  6760. width:100%;
  6761. }
  6762. #u16422_img {
  6763. border-width:0px;
  6764. position:absolute;
  6765. left:0px;
  6766. top:0px;
  6767. width:70px;
  6768. height:44px;
  6769. }
  6770. #u16422_text {
  6771. border-width:0px;
  6772. word-wrap:break-word;
  6773. text-transform:none;
  6774. visibility:hidden;
  6775. }
  6776. #u16423 {
  6777. border-width:0px;
  6778. position:absolute;
  6779. left:470px;
  6780. top:173px;
  6781. width:80px;
  6782. height:44px;
  6783. display:flex;
  6784. transition:none;
  6785. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6786. font-weight:400;
  6787. font-style:normal;
  6788. font-size:12px;
  6789. color:#606266;
  6790. }
  6791. #u16423 .text {
  6792. position:absolute;
  6793. align-self:center;
  6794. padding:2px 2px 2px 0px;
  6795. box-sizing:border-box;
  6796. width:100%;
  6797. }
  6798. #u16423_img {
  6799. border-width:0px;
  6800. position:absolute;
  6801. left:0px;
  6802. top:0px;
  6803. width:80px;
  6804. height:44px;
  6805. }
  6806. #u16423_text {
  6807. border-width:0px;
  6808. word-wrap:break-word;
  6809. text-transform:none;
  6810. visibility:hidden;
  6811. }
  6812. #u16424 {
  6813. border-width:0px;
  6814. position:absolute;
  6815. left:550px;
  6816. top:173px;
  6817. width:80px;
  6818. height:44px;
  6819. display:flex;
  6820. transition:none;
  6821. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6822. font-weight:400;
  6823. font-style:normal;
  6824. font-size:12px;
  6825. color:#606266;
  6826. }
  6827. #u16424 .text {
  6828. position:absolute;
  6829. align-self:center;
  6830. padding:2px 2px 2px 0px;
  6831. box-sizing:border-box;
  6832. width:100%;
  6833. }
  6834. #u16424_img {
  6835. border-width:0px;
  6836. position:absolute;
  6837. left:0px;
  6838. top:0px;
  6839. width:80px;
  6840. height:44px;
  6841. }
  6842. #u16424_text {
  6843. border-width:0px;
  6844. word-wrap:break-word;
  6845. text-transform:none;
  6846. visibility:hidden;
  6847. }
  6848. #u16425 {
  6849. border-width:0px;
  6850. position:absolute;
  6851. left:630px;
  6852. top:173px;
  6853. width:80px;
  6854. height:44px;
  6855. display:flex;
  6856. transition:none;
  6857. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6858. font-weight:400;
  6859. font-style:normal;
  6860. font-size:12px;
  6861. color:#606266;
  6862. }
  6863. #u16425 .text {
  6864. position:absolute;
  6865. align-self:center;
  6866. padding:2px 2px 2px 0px;
  6867. box-sizing:border-box;
  6868. width:100%;
  6869. }
  6870. #u16425_img {
  6871. border-width:0px;
  6872. position:absolute;
  6873. left:0px;
  6874. top:0px;
  6875. width:80px;
  6876. height:44px;
  6877. }
  6878. #u16425_text {
  6879. border-width:0px;
  6880. word-wrap:break-word;
  6881. text-transform:none;
  6882. visibility:hidden;
  6883. }
  6884. #u16426 {
  6885. border-width:0px;
  6886. position:absolute;
  6887. left:710px;
  6888. top:173px;
  6889. width:80px;
  6890. height:44px;
  6891. display:flex;
  6892. transition:none;
  6893. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6894. font-weight:400;
  6895. font-style:normal;
  6896. font-size:12px;
  6897. color:#606266;
  6898. }
  6899. #u16426 .text {
  6900. position:absolute;
  6901. align-self:center;
  6902. padding:2px 2px 2px 0px;
  6903. box-sizing:border-box;
  6904. width:100%;
  6905. }
  6906. #u16426_img {
  6907. border-width:0px;
  6908. position:absolute;
  6909. left:0px;
  6910. top:0px;
  6911. width:80px;
  6912. height:44px;
  6913. }
  6914. #u16426_text {
  6915. border-width:0px;
  6916. word-wrap:break-word;
  6917. text-transform:none;
  6918. visibility:hidden;
  6919. }
  6920. #u16427 {
  6921. border-width:0px;
  6922. position:absolute;
  6923. left:790px;
  6924. top:173px;
  6925. width:80px;
  6926. height:44px;
  6927. display:flex;
  6928. transition:none;
  6929. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6930. font-weight:400;
  6931. font-style:normal;
  6932. font-size:12px;
  6933. color:#606266;
  6934. }
  6935. #u16427 .text {
  6936. position:absolute;
  6937. align-self:center;
  6938. padding:2px 2px 2px 0px;
  6939. box-sizing:border-box;
  6940. width:100%;
  6941. }
  6942. #u16427_img {
  6943. border-width:0px;
  6944. position:absolute;
  6945. left:0px;
  6946. top:0px;
  6947. width:80px;
  6948. height:44px;
  6949. }
  6950. #u16427_text {
  6951. border-width:0px;
  6952. word-wrap:break-word;
  6953. text-transform:none;
  6954. visibility:hidden;
  6955. }
  6956. #u16428 {
  6957. border-width:0px;
  6958. position:absolute;
  6959. left:870px;
  6960. top:173px;
  6961. width:70px;
  6962. height:44px;
  6963. display:flex;
  6964. transition:none;
  6965. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6966. font-weight:400;
  6967. font-style:normal;
  6968. font-size:12px;
  6969. color:#D9001B;
  6970. }
  6971. #u16428 .text {
  6972. position:absolute;
  6973. align-self:center;
  6974. padding:2px 2px 2px 0px;
  6975. box-sizing:border-box;
  6976. width:100%;
  6977. }
  6978. #u16428_img {
  6979. border-width:0px;
  6980. position:absolute;
  6981. left:0px;
  6982. top:0px;
  6983. width:70px;
  6984. height:44px;
  6985. }
  6986. #u16428_text {
  6987. border-width:0px;
  6988. word-wrap:break-word;
  6989. text-transform:none;
  6990. }
  6991. #u16429 {
  6992. border-width:0px;
  6993. position:absolute;
  6994. left:940px;
  6995. top:173px;
  6996. width:72px;
  6997. height:44px;
  6998. display:flex;
  6999. transition:none;
  7000. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7001. font-weight:400;
  7002. font-style:normal;
  7003. font-size:12px;
  7004. color:#606266;
  7005. }
  7006. #u16429 .text {
  7007. position:absolute;
  7008. align-self:center;
  7009. padding:2px 2px 2px 0px;
  7010. box-sizing:border-box;
  7011. width:100%;
  7012. }
  7013. #u16429_img {
  7014. border-width:0px;
  7015. position:absolute;
  7016. left:0px;
  7017. top:0px;
  7018. width:72px;
  7019. height:44px;
  7020. }
  7021. #u16429_text {
  7022. border-width:0px;
  7023. word-wrap:break-word;
  7024. text-transform:none;
  7025. visibility:hidden;
  7026. }
  7027. #u16430 {
  7028. border-width:0px;
  7029. position:absolute;
  7030. left:1012px;
  7031. top:173px;
  7032. width:70px;
  7033. height:44px;
  7034. display:flex;
  7035. transition:none;
  7036. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7037. font-weight:400;
  7038. font-style:normal;
  7039. font-size:12px;
  7040. color:#606266;
  7041. }
  7042. #u16430 .text {
  7043. position:absolute;
  7044. align-self:center;
  7045. padding:2px 2px 2px 0px;
  7046. box-sizing:border-box;
  7047. width:100%;
  7048. }
  7049. #u16430_img {
  7050. border-width:0px;
  7051. position:absolute;
  7052. left:0px;
  7053. top:0px;
  7054. width:70px;
  7055. height:44px;
  7056. }
  7057. #u16430_text {
  7058. border-width:0px;
  7059. word-wrap:break-word;
  7060. text-transform:none;
  7061. visibility:hidden;
  7062. }
  7063. #u16431 {
  7064. border-width:0px;
  7065. position:absolute;
  7066. left:1082px;
  7067. top:173px;
  7068. width:70px;
  7069. height:44px;
  7070. display:flex;
  7071. transition:none;
  7072. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7073. font-weight:400;
  7074. font-style:normal;
  7075. font-size:12px;
  7076. color:#606266;
  7077. }
  7078. #u16431 .text {
  7079. position:absolute;
  7080. align-self:center;
  7081. padding:2px 2px 2px 0px;
  7082. box-sizing:border-box;
  7083. width:100%;
  7084. }
  7085. #u16431_img {
  7086. border-width:0px;
  7087. position:absolute;
  7088. left:0px;
  7089. top:0px;
  7090. width:70px;
  7091. height:44px;
  7092. }
  7093. #u16431_text {
  7094. border-width:0px;
  7095. word-wrap:break-word;
  7096. text-transform:none;
  7097. visibility:hidden;
  7098. }
  7099. #u16432 {
  7100. border-width:0px;
  7101. position:absolute;
  7102. left:1152px;
  7103. top:173px;
  7104. width:66px;
  7105. height:44px;
  7106. display:flex;
  7107. transition:none;
  7108. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  7109. font-weight:400;
  7110. font-style:normal;
  7111. font-size:12px;
  7112. color:#AAAAAA;
  7113. line-height:40px;
  7114. }
  7115. #u16432 .text {
  7116. position:absolute;
  7117. align-self:center;
  7118. padding:2px 2px 2px 0px;
  7119. box-sizing:border-box;
  7120. width:100%;
  7121. }
  7122. #u16432_img {
  7123. border-width:0px;
  7124. position:absolute;
  7125. left:0px;
  7126. top:0px;
  7127. width:66px;
  7128. height:44px;
  7129. }
  7130. #u16432_text {
  7131. border-width:0px;
  7132. word-wrap:break-word;
  7133. text-transform:none;
  7134. }
  7135. #u16433 {
  7136. border-width:0px;
  7137. position:absolute;
  7138. left:0px;
  7139. top:217px;
  7140. width:70px;
  7141. height:38px;
  7142. display:flex;
  7143. transition:none;
  7144. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7145. font-weight:400;
  7146. font-style:normal;
  7147. font-size:12px;
  7148. color:#606266;
  7149. }
  7150. #u16433 .text {
  7151. position:absolute;
  7152. align-self:center;
  7153. padding:2px 2px 2px 0px;
  7154. box-sizing:border-box;
  7155. width:100%;
  7156. }
  7157. #u16433_img {
  7158. border-width:0px;
  7159. position:absolute;
  7160. left:0px;
  7161. top:0px;
  7162. width:70px;
  7163. height:38px;
  7164. }
  7165. #u16433_text {
  7166. border-width:0px;
  7167. word-wrap:break-word;
  7168. text-transform:none;
  7169. visibility:hidden;
  7170. }
  7171. #u16434 {
  7172. border-width:0px;
  7173. position:absolute;
  7174. left:70px;
  7175. top:217px;
  7176. width:60px;
  7177. height:38px;
  7178. display:flex;
  7179. transition:none;
  7180. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7181. font-weight:400;
  7182. font-style:normal;
  7183. font-size:12px;
  7184. color:#606266;
  7185. }
  7186. #u16434 .text {
  7187. position:absolute;
  7188. align-self:center;
  7189. padding:2px 2px 2px 0px;
  7190. box-sizing:border-box;
  7191. width:100%;
  7192. }
  7193. #u16434_img {
  7194. border-width:0px;
  7195. position:absolute;
  7196. left:0px;
  7197. top:0px;
  7198. width:60px;
  7199. height:38px;
  7200. }
  7201. #u16434_text {
  7202. border-width:0px;
  7203. word-wrap:break-word;
  7204. text-transform:none;
  7205. visibility:hidden;
  7206. }
  7207. #u16435 {
  7208. border-width:0px;
  7209. position:absolute;
  7210. left:130px;
  7211. top:217px;
  7212. width:70px;
  7213. height:38px;
  7214. display:flex;
  7215. transition:none;
  7216. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7217. font-weight:400;
  7218. font-style:normal;
  7219. font-size:12px;
  7220. color:#606266;
  7221. }
  7222. #u16435 .text {
  7223. position:absolute;
  7224. align-self:center;
  7225. padding:2px 2px 2px 0px;
  7226. box-sizing:border-box;
  7227. width:100%;
  7228. }
  7229. #u16435_img {
  7230. border-width:0px;
  7231. position:absolute;
  7232. left:0px;
  7233. top:0px;
  7234. width:70px;
  7235. height:38px;
  7236. }
  7237. #u16435_text {
  7238. border-width:0px;
  7239. word-wrap:break-word;
  7240. text-transform:none;
  7241. visibility:hidden;
  7242. }
  7243. #u16436 {
  7244. border-width:0px;
  7245. position:absolute;
  7246. left:200px;
  7247. top:217px;
  7248. width:70px;
  7249. height:38px;
  7250. display:flex;
  7251. transition:none;
  7252. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7253. font-weight:400;
  7254. font-style:normal;
  7255. font-size:12px;
  7256. color:#606266;
  7257. }
  7258. #u16436 .text {
  7259. position:absolute;
  7260. align-self:center;
  7261. padding:2px 2px 2px 0px;
  7262. box-sizing:border-box;
  7263. width:100%;
  7264. }
  7265. #u16436_img {
  7266. border-width:0px;
  7267. position:absolute;
  7268. left:0px;
  7269. top:0px;
  7270. width:70px;
  7271. height:38px;
  7272. }
  7273. #u16436_text {
  7274. border-width:0px;
  7275. word-wrap:break-word;
  7276. text-transform:none;
  7277. visibility:hidden;
  7278. }
  7279. #u16437 {
  7280. border-width:0px;
  7281. position:absolute;
  7282. left:270px;
  7283. top:217px;
  7284. width:70px;
  7285. height:38px;
  7286. display:flex;
  7287. transition:none;
  7288. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7289. font-weight:400;
  7290. font-style:normal;
  7291. font-size:12px;
  7292. color:#606266;
  7293. }
  7294. #u16437 .text {
  7295. position:absolute;
  7296. align-self:center;
  7297. padding:2px 2px 2px 0px;
  7298. box-sizing:border-box;
  7299. width:100%;
  7300. }
  7301. #u16437_img {
  7302. border-width:0px;
  7303. position:absolute;
  7304. left:0px;
  7305. top:0px;
  7306. width:70px;
  7307. height:38px;
  7308. }
  7309. #u16437_text {
  7310. border-width:0px;
  7311. word-wrap:break-word;
  7312. text-transform:none;
  7313. visibility:hidden;
  7314. }
  7315. #u16438 {
  7316. border-width:0px;
  7317. position:absolute;
  7318. left:340px;
  7319. top:217px;
  7320. width:60px;
  7321. height:38px;
  7322. display:flex;
  7323. transition:none;
  7324. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7325. font-weight:400;
  7326. font-style:normal;
  7327. font-size:12px;
  7328. color:#606266;
  7329. }
  7330. #u16438 .text {
  7331. position:absolute;
  7332. align-self:center;
  7333. padding:2px 2px 2px 0px;
  7334. box-sizing:border-box;
  7335. width:100%;
  7336. }
  7337. #u16438_img {
  7338. border-width:0px;
  7339. position:absolute;
  7340. left:0px;
  7341. top:0px;
  7342. width:60px;
  7343. height:38px;
  7344. }
  7345. #u16438_text {
  7346. border-width:0px;
  7347. word-wrap:break-word;
  7348. text-transform:none;
  7349. visibility:hidden;
  7350. }
  7351. #u16439 {
  7352. border-width:0px;
  7353. position:absolute;
  7354. left:400px;
  7355. top:217px;
  7356. width:70px;
  7357. height:38px;
  7358. display:flex;
  7359. transition:none;
  7360. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7361. font-weight:400;
  7362. font-style:normal;
  7363. font-size:12px;
  7364. color:#606266;
  7365. }
  7366. #u16439 .text {
  7367. position:absolute;
  7368. align-self:center;
  7369. padding:2px 2px 2px 0px;
  7370. box-sizing:border-box;
  7371. width:100%;
  7372. }
  7373. #u16439_img {
  7374. border-width:0px;
  7375. position:absolute;
  7376. left:0px;
  7377. top:0px;
  7378. width:70px;
  7379. height:38px;
  7380. }
  7381. #u16439_text {
  7382. border-width:0px;
  7383. word-wrap:break-word;
  7384. text-transform:none;
  7385. visibility:hidden;
  7386. }
  7387. #u16440 {
  7388. border-width:0px;
  7389. position:absolute;
  7390. left:470px;
  7391. top:217px;
  7392. width:80px;
  7393. height:38px;
  7394. display:flex;
  7395. transition:none;
  7396. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7397. font-weight:400;
  7398. font-style:normal;
  7399. font-size:12px;
  7400. color:#606266;
  7401. }
  7402. #u16440 .text {
  7403. position:absolute;
  7404. align-self:center;
  7405. padding:2px 2px 2px 0px;
  7406. box-sizing:border-box;
  7407. width:100%;
  7408. }
  7409. #u16440_img {
  7410. border-width:0px;
  7411. position:absolute;
  7412. left:0px;
  7413. top:0px;
  7414. width:80px;
  7415. height:38px;
  7416. }
  7417. #u16440_text {
  7418. border-width:0px;
  7419. word-wrap:break-word;
  7420. text-transform:none;
  7421. visibility:hidden;
  7422. }
  7423. #u16441 {
  7424. border-width:0px;
  7425. position:absolute;
  7426. left:550px;
  7427. top:217px;
  7428. width:80px;
  7429. height:38px;
  7430. display:flex;
  7431. transition:none;
  7432. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7433. font-weight:400;
  7434. font-style:normal;
  7435. font-size:12px;
  7436. color:#606266;
  7437. }
  7438. #u16441 .text {
  7439. position:absolute;
  7440. align-self:center;
  7441. padding:2px 2px 2px 0px;
  7442. box-sizing:border-box;
  7443. width:100%;
  7444. }
  7445. #u16441_img {
  7446. border-width:0px;
  7447. position:absolute;
  7448. left:0px;
  7449. top:0px;
  7450. width:80px;
  7451. height:38px;
  7452. }
  7453. #u16441_text {
  7454. border-width:0px;
  7455. word-wrap:break-word;
  7456. text-transform:none;
  7457. visibility:hidden;
  7458. }
  7459. #u16442 {
  7460. border-width:0px;
  7461. position:absolute;
  7462. left:630px;
  7463. top:217px;
  7464. width:80px;
  7465. height:38px;
  7466. display:flex;
  7467. transition:none;
  7468. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7469. font-weight:400;
  7470. font-style:normal;
  7471. font-size:12px;
  7472. color:#606266;
  7473. }
  7474. #u16442 .text {
  7475. position:absolute;
  7476. align-self:center;
  7477. padding:2px 2px 2px 0px;
  7478. box-sizing:border-box;
  7479. width:100%;
  7480. }
  7481. #u16442_img {
  7482. border-width:0px;
  7483. position:absolute;
  7484. left:0px;
  7485. top:0px;
  7486. width:80px;
  7487. height:38px;
  7488. }
  7489. #u16442_text {
  7490. border-width:0px;
  7491. word-wrap:break-word;
  7492. text-transform:none;
  7493. visibility:hidden;
  7494. }
  7495. #u16443 {
  7496. border-width:0px;
  7497. position:absolute;
  7498. left:710px;
  7499. top:217px;
  7500. width:80px;
  7501. height:38px;
  7502. display:flex;
  7503. transition:none;
  7504. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7505. font-weight:400;
  7506. font-style:normal;
  7507. font-size:12px;
  7508. color:#606266;
  7509. }
  7510. #u16443 .text {
  7511. position:absolute;
  7512. align-self:center;
  7513. padding:2px 2px 2px 0px;
  7514. box-sizing:border-box;
  7515. width:100%;
  7516. }
  7517. #u16443_img {
  7518. border-width:0px;
  7519. position:absolute;
  7520. left:0px;
  7521. top:0px;
  7522. width:80px;
  7523. height:38px;
  7524. }
  7525. #u16443_text {
  7526. border-width:0px;
  7527. word-wrap:break-word;
  7528. text-transform:none;
  7529. visibility:hidden;
  7530. }
  7531. #u16444 {
  7532. border-width:0px;
  7533. position:absolute;
  7534. left:790px;
  7535. top:217px;
  7536. width:80px;
  7537. height:38px;
  7538. display:flex;
  7539. transition:none;
  7540. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7541. font-weight:400;
  7542. font-style:normal;
  7543. font-size:12px;
  7544. color:#606266;
  7545. }
  7546. #u16444 .text {
  7547. position:absolute;
  7548. align-self:center;
  7549. padding:2px 2px 2px 0px;
  7550. box-sizing:border-box;
  7551. width:100%;
  7552. }
  7553. #u16444_img {
  7554. border-width:0px;
  7555. position:absolute;
  7556. left:0px;
  7557. top:0px;
  7558. width:80px;
  7559. height:38px;
  7560. }
  7561. #u16444_text {
  7562. border-width:0px;
  7563. word-wrap:break-word;
  7564. text-transform:none;
  7565. visibility:hidden;
  7566. }
  7567. #u16445 {
  7568. border-width:0px;
  7569. position:absolute;
  7570. left:870px;
  7571. top:217px;
  7572. width:70px;
  7573. height:38px;
  7574. display:flex;
  7575. transition:none;
  7576. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7577. font-weight:400;
  7578. font-style:normal;
  7579. font-size:12px;
  7580. color:#606266;
  7581. }
  7582. #u16445 .text {
  7583. position:absolute;
  7584. align-self:center;
  7585. padding:2px 2px 2px 0px;
  7586. box-sizing:border-box;
  7587. width:100%;
  7588. }
  7589. #u16445_img {
  7590. border-width:0px;
  7591. position:absolute;
  7592. left:0px;
  7593. top:0px;
  7594. width:70px;
  7595. height:38px;
  7596. }
  7597. #u16445_text {
  7598. border-width:0px;
  7599. word-wrap:break-word;
  7600. text-transform:none;
  7601. visibility:hidden;
  7602. }
  7603. #u16446 {
  7604. border-width:0px;
  7605. position:absolute;
  7606. left:940px;
  7607. top:217px;
  7608. width:72px;
  7609. height:38px;
  7610. display:flex;
  7611. transition:none;
  7612. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7613. font-weight:400;
  7614. font-style:normal;
  7615. font-size:12px;
  7616. color:#606266;
  7617. }
  7618. #u16446 .text {
  7619. position:absolute;
  7620. align-self:center;
  7621. padding:2px 2px 2px 0px;
  7622. box-sizing:border-box;
  7623. width:100%;
  7624. }
  7625. #u16446_img {
  7626. border-width:0px;
  7627. position:absolute;
  7628. left:0px;
  7629. top:0px;
  7630. width:72px;
  7631. height:38px;
  7632. }
  7633. #u16446_text {
  7634. border-width:0px;
  7635. word-wrap:break-word;
  7636. text-transform:none;
  7637. visibility:hidden;
  7638. }
  7639. #u16447 {
  7640. border-width:0px;
  7641. position:absolute;
  7642. left:1012px;
  7643. top:217px;
  7644. width:70px;
  7645. height:38px;
  7646. display:flex;
  7647. transition:none;
  7648. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7649. font-weight:400;
  7650. font-style:normal;
  7651. font-size:12px;
  7652. color:#606266;
  7653. }
  7654. #u16447 .text {
  7655. position:absolute;
  7656. align-self:center;
  7657. padding:2px 2px 2px 0px;
  7658. box-sizing:border-box;
  7659. width:100%;
  7660. }
  7661. #u16447_img {
  7662. border-width:0px;
  7663. position:absolute;
  7664. left:0px;
  7665. top:0px;
  7666. width:70px;
  7667. height:38px;
  7668. }
  7669. #u16447_text {
  7670. border-width:0px;
  7671. word-wrap:break-word;
  7672. text-transform:none;
  7673. visibility:hidden;
  7674. }
  7675. #u16448 {
  7676. border-width:0px;
  7677. position:absolute;
  7678. left:1082px;
  7679. top:217px;
  7680. width:70px;
  7681. height:38px;
  7682. display:flex;
  7683. transition:none;
  7684. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7685. font-weight:400;
  7686. font-style:normal;
  7687. font-size:12px;
  7688. color:#606266;
  7689. }
  7690. #u16448 .text {
  7691. position:absolute;
  7692. align-self:center;
  7693. padding:2px 2px 2px 0px;
  7694. box-sizing:border-box;
  7695. width:100%;
  7696. }
  7697. #u16448_img {
  7698. border-width:0px;
  7699. position:absolute;
  7700. left:0px;
  7701. top:0px;
  7702. width:70px;
  7703. height:38px;
  7704. }
  7705. #u16448_text {
  7706. border-width:0px;
  7707. word-wrap:break-word;
  7708. text-transform:none;
  7709. visibility:hidden;
  7710. }
  7711. #u16449 {
  7712. border-width:0px;
  7713. position:absolute;
  7714. left:1152px;
  7715. top:217px;
  7716. width:66px;
  7717. height:38px;
  7718. display:flex;
  7719. transition:none;
  7720. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7721. font-weight:400;
  7722. font-style:normal;
  7723. font-size:12px;
  7724. color:#606266;
  7725. }
  7726. #u16449 .text {
  7727. position:absolute;
  7728. align-self:center;
  7729. padding:2px 2px 2px 0px;
  7730. box-sizing:border-box;
  7731. width:100%;
  7732. }
  7733. #u16449_img {
  7734. border-width:0px;
  7735. position:absolute;
  7736. left:0px;
  7737. top:0px;
  7738. width:66px;
  7739. height:38px;
  7740. }
  7741. #u16449_text {
  7742. border-width:0px;
  7743. word-wrap:break-word;
  7744. text-transform:none;
  7745. visibility:hidden;
  7746. }
  7747. #u16450 {
  7748. border-width:0px;
  7749. position:absolute;
  7750. left:0px;
  7751. top:255px;
  7752. width:70px;
  7753. height:38px;
  7754. display:flex;
  7755. transition:none;
  7756. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7757. font-weight:400;
  7758. font-style:normal;
  7759. font-size:12px;
  7760. color:#606266;
  7761. }
  7762. #u16450 .text {
  7763. position:absolute;
  7764. align-self:center;
  7765. padding:2px 2px 2px 0px;
  7766. box-sizing:border-box;
  7767. width:100%;
  7768. }
  7769. #u16450_img {
  7770. border-width:0px;
  7771. position:absolute;
  7772. left:0px;
  7773. top:0px;
  7774. width:70px;
  7775. height:38px;
  7776. }
  7777. #u16450_text {
  7778. border-width:0px;
  7779. word-wrap:break-word;
  7780. text-transform:none;
  7781. visibility:hidden;
  7782. }
  7783. #u16451 {
  7784. border-width:0px;
  7785. position:absolute;
  7786. left:70px;
  7787. top:255px;
  7788. width:60px;
  7789. height:38px;
  7790. display:flex;
  7791. transition:none;
  7792. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7793. font-weight:400;
  7794. font-style:normal;
  7795. font-size:12px;
  7796. color:#606266;
  7797. }
  7798. #u16451 .text {
  7799. position:absolute;
  7800. align-self:center;
  7801. padding:2px 2px 2px 0px;
  7802. box-sizing:border-box;
  7803. width:100%;
  7804. }
  7805. #u16451_img {
  7806. border-width:0px;
  7807. position:absolute;
  7808. left:0px;
  7809. top:0px;
  7810. width:60px;
  7811. height:38px;
  7812. }
  7813. #u16451_text {
  7814. border-width:0px;
  7815. word-wrap:break-word;
  7816. text-transform:none;
  7817. visibility:hidden;
  7818. }
  7819. #u16452 {
  7820. border-width:0px;
  7821. position:absolute;
  7822. left:130px;
  7823. top:255px;
  7824. width:70px;
  7825. height:38px;
  7826. display:flex;
  7827. transition:none;
  7828. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7829. font-weight:400;
  7830. font-style:normal;
  7831. font-size:12px;
  7832. color:#606266;
  7833. }
  7834. #u16452 .text {
  7835. position:absolute;
  7836. align-self:center;
  7837. padding:2px 2px 2px 0px;
  7838. box-sizing:border-box;
  7839. width:100%;
  7840. }
  7841. #u16452_img {
  7842. border-width:0px;
  7843. position:absolute;
  7844. left:0px;
  7845. top:0px;
  7846. width:70px;
  7847. height:38px;
  7848. }
  7849. #u16452_text {
  7850. border-width:0px;
  7851. word-wrap:break-word;
  7852. text-transform:none;
  7853. visibility:hidden;
  7854. }
  7855. #u16453 {
  7856. border-width:0px;
  7857. position:absolute;
  7858. left:200px;
  7859. top:255px;
  7860. width:70px;
  7861. height:38px;
  7862. display:flex;
  7863. transition:none;
  7864. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7865. font-weight:400;
  7866. font-style:normal;
  7867. font-size:12px;
  7868. color:#606266;
  7869. }
  7870. #u16453 .text {
  7871. position:absolute;
  7872. align-self:center;
  7873. padding:2px 2px 2px 0px;
  7874. box-sizing:border-box;
  7875. width:100%;
  7876. }
  7877. #u16453_img {
  7878. border-width:0px;
  7879. position:absolute;
  7880. left:0px;
  7881. top:0px;
  7882. width:70px;
  7883. height:38px;
  7884. }
  7885. #u16453_text {
  7886. border-width:0px;
  7887. word-wrap:break-word;
  7888. text-transform:none;
  7889. visibility:hidden;
  7890. }
  7891. #u16454 {
  7892. border-width:0px;
  7893. position:absolute;
  7894. left:270px;
  7895. top:255px;
  7896. width:70px;
  7897. height:38px;
  7898. display:flex;
  7899. transition:none;
  7900. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7901. font-weight:400;
  7902. font-style:normal;
  7903. font-size:12px;
  7904. color:#606266;
  7905. }
  7906. #u16454 .text {
  7907. position:absolute;
  7908. align-self:center;
  7909. padding:2px 2px 2px 0px;
  7910. box-sizing:border-box;
  7911. width:100%;
  7912. }
  7913. #u16454_img {
  7914. border-width:0px;
  7915. position:absolute;
  7916. left:0px;
  7917. top:0px;
  7918. width:70px;
  7919. height:38px;
  7920. }
  7921. #u16454_text {
  7922. border-width:0px;
  7923. word-wrap:break-word;
  7924. text-transform:none;
  7925. visibility:hidden;
  7926. }
  7927. #u16455 {
  7928. border-width:0px;
  7929. position:absolute;
  7930. left:340px;
  7931. top:255px;
  7932. width:60px;
  7933. height:38px;
  7934. display:flex;
  7935. transition:none;
  7936. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7937. font-weight:400;
  7938. font-style:normal;
  7939. font-size:12px;
  7940. color:#606266;
  7941. }
  7942. #u16455 .text {
  7943. position:absolute;
  7944. align-self:center;
  7945. padding:2px 2px 2px 0px;
  7946. box-sizing:border-box;
  7947. width:100%;
  7948. }
  7949. #u16455_img {
  7950. border-width:0px;
  7951. position:absolute;
  7952. left:0px;
  7953. top:0px;
  7954. width:60px;
  7955. height:38px;
  7956. }
  7957. #u16455_text {
  7958. border-width:0px;
  7959. word-wrap:break-word;
  7960. text-transform:none;
  7961. visibility:hidden;
  7962. }
  7963. #u16456 {
  7964. border-width:0px;
  7965. position:absolute;
  7966. left:400px;
  7967. top:255px;
  7968. width:70px;
  7969. height:38px;
  7970. display:flex;
  7971. transition:none;
  7972. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  7973. font-weight:400;
  7974. font-style:normal;
  7975. font-size:12px;
  7976. color:#606266;
  7977. }
  7978. #u16456 .text {
  7979. position:absolute;
  7980. align-self:center;
  7981. padding:2px 2px 2px 0px;
  7982. box-sizing:border-box;
  7983. width:100%;
  7984. }
  7985. #u16456_img {
  7986. border-width:0px;
  7987. position:absolute;
  7988. left:0px;
  7989. top:0px;
  7990. width:70px;
  7991. height:38px;
  7992. }
  7993. #u16456_text {
  7994. border-width:0px;
  7995. word-wrap:break-word;
  7996. text-transform:none;
  7997. visibility:hidden;
  7998. }
  7999. #u16457 {
  8000. border-width:0px;
  8001. position:absolute;
  8002. left:470px;
  8003. top:255px;
  8004. width:80px;
  8005. height:38px;
  8006. display:flex;
  8007. transition:none;
  8008. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8009. font-weight:400;
  8010. font-style:normal;
  8011. font-size:12px;
  8012. color:#606266;
  8013. }
  8014. #u16457 .text {
  8015. position:absolute;
  8016. align-self:center;
  8017. padding:2px 2px 2px 0px;
  8018. box-sizing:border-box;
  8019. width:100%;
  8020. }
  8021. #u16457_img {
  8022. border-width:0px;
  8023. position:absolute;
  8024. left:0px;
  8025. top:0px;
  8026. width:80px;
  8027. height:38px;
  8028. }
  8029. #u16457_text {
  8030. border-width:0px;
  8031. word-wrap:break-word;
  8032. text-transform:none;
  8033. visibility:hidden;
  8034. }
  8035. #u16458 {
  8036. border-width:0px;
  8037. position:absolute;
  8038. left:550px;
  8039. top:255px;
  8040. width:80px;
  8041. height:38px;
  8042. display:flex;
  8043. transition:none;
  8044. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8045. font-weight:400;
  8046. font-style:normal;
  8047. font-size:12px;
  8048. color:#606266;
  8049. }
  8050. #u16458 .text {
  8051. position:absolute;
  8052. align-self:center;
  8053. padding:2px 2px 2px 0px;
  8054. box-sizing:border-box;
  8055. width:100%;
  8056. }
  8057. #u16458_img {
  8058. border-width:0px;
  8059. position:absolute;
  8060. left:0px;
  8061. top:0px;
  8062. width:80px;
  8063. height:38px;
  8064. }
  8065. #u16458_text {
  8066. border-width:0px;
  8067. word-wrap:break-word;
  8068. text-transform:none;
  8069. visibility:hidden;
  8070. }
  8071. #u16459 {
  8072. border-width:0px;
  8073. position:absolute;
  8074. left:630px;
  8075. top:255px;
  8076. width:80px;
  8077. height:38px;
  8078. display:flex;
  8079. transition:none;
  8080. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8081. font-weight:400;
  8082. font-style:normal;
  8083. font-size:12px;
  8084. color:#606266;
  8085. }
  8086. #u16459 .text {
  8087. position:absolute;
  8088. align-self:center;
  8089. padding:2px 2px 2px 0px;
  8090. box-sizing:border-box;
  8091. width:100%;
  8092. }
  8093. #u16459_img {
  8094. border-width:0px;
  8095. position:absolute;
  8096. left:0px;
  8097. top:0px;
  8098. width:80px;
  8099. height:38px;
  8100. }
  8101. #u16459_text {
  8102. border-width:0px;
  8103. word-wrap:break-word;
  8104. text-transform:none;
  8105. visibility:hidden;
  8106. }
  8107. #u16460 {
  8108. border-width:0px;
  8109. position:absolute;
  8110. left:710px;
  8111. top:255px;
  8112. width:80px;
  8113. height:38px;
  8114. display:flex;
  8115. transition:none;
  8116. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8117. font-weight:400;
  8118. font-style:normal;
  8119. font-size:12px;
  8120. color:#606266;
  8121. }
  8122. #u16460 .text {
  8123. position:absolute;
  8124. align-self:center;
  8125. padding:2px 2px 2px 0px;
  8126. box-sizing:border-box;
  8127. width:100%;
  8128. }
  8129. #u16460_img {
  8130. border-width:0px;
  8131. position:absolute;
  8132. left:0px;
  8133. top:0px;
  8134. width:80px;
  8135. height:38px;
  8136. }
  8137. #u16460_text {
  8138. border-width:0px;
  8139. word-wrap:break-word;
  8140. text-transform:none;
  8141. visibility:hidden;
  8142. }
  8143. #u16461 {
  8144. border-width:0px;
  8145. position:absolute;
  8146. left:790px;
  8147. top:255px;
  8148. width:80px;
  8149. height:38px;
  8150. display:flex;
  8151. transition:none;
  8152. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8153. font-weight:400;
  8154. font-style:normal;
  8155. font-size:12px;
  8156. color:#606266;
  8157. }
  8158. #u16461 .text {
  8159. position:absolute;
  8160. align-self:center;
  8161. padding:2px 2px 2px 0px;
  8162. box-sizing:border-box;
  8163. width:100%;
  8164. }
  8165. #u16461_img {
  8166. border-width:0px;
  8167. position:absolute;
  8168. left:0px;
  8169. top:0px;
  8170. width:80px;
  8171. height:38px;
  8172. }
  8173. #u16461_text {
  8174. border-width:0px;
  8175. word-wrap:break-word;
  8176. text-transform:none;
  8177. visibility:hidden;
  8178. }
  8179. #u16462 {
  8180. border-width:0px;
  8181. position:absolute;
  8182. left:870px;
  8183. top:255px;
  8184. width:70px;
  8185. height:38px;
  8186. display:flex;
  8187. transition:none;
  8188. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8189. font-weight:400;
  8190. font-style:normal;
  8191. font-size:12px;
  8192. color:#606266;
  8193. }
  8194. #u16462 .text {
  8195. position:absolute;
  8196. align-self:center;
  8197. padding:2px 2px 2px 0px;
  8198. box-sizing:border-box;
  8199. width:100%;
  8200. }
  8201. #u16462_img {
  8202. border-width:0px;
  8203. position:absolute;
  8204. left:0px;
  8205. top:0px;
  8206. width:70px;
  8207. height:38px;
  8208. }
  8209. #u16462_text {
  8210. border-width:0px;
  8211. word-wrap:break-word;
  8212. text-transform:none;
  8213. visibility:hidden;
  8214. }
  8215. #u16463 {
  8216. border-width:0px;
  8217. position:absolute;
  8218. left:940px;
  8219. top:255px;
  8220. width:72px;
  8221. height:38px;
  8222. display:flex;
  8223. transition:none;
  8224. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8225. font-weight:400;
  8226. font-style:normal;
  8227. font-size:12px;
  8228. color:#606266;
  8229. }
  8230. #u16463 .text {
  8231. position:absolute;
  8232. align-self:center;
  8233. padding:2px 2px 2px 0px;
  8234. box-sizing:border-box;
  8235. width:100%;
  8236. }
  8237. #u16463_img {
  8238. border-width:0px;
  8239. position:absolute;
  8240. left:0px;
  8241. top:0px;
  8242. width:72px;
  8243. height:38px;
  8244. }
  8245. #u16463_text {
  8246. border-width:0px;
  8247. word-wrap:break-word;
  8248. text-transform:none;
  8249. visibility:hidden;
  8250. }
  8251. #u16464 {
  8252. border-width:0px;
  8253. position:absolute;
  8254. left:1012px;
  8255. top:255px;
  8256. width:70px;
  8257. height:38px;
  8258. display:flex;
  8259. transition:none;
  8260. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8261. font-weight:400;
  8262. font-style:normal;
  8263. font-size:12px;
  8264. color:#606266;
  8265. }
  8266. #u16464 .text {
  8267. position:absolute;
  8268. align-self:center;
  8269. padding:2px 2px 2px 0px;
  8270. box-sizing:border-box;
  8271. width:100%;
  8272. }
  8273. #u16464_img {
  8274. border-width:0px;
  8275. position:absolute;
  8276. left:0px;
  8277. top:0px;
  8278. width:70px;
  8279. height:38px;
  8280. }
  8281. #u16464_text {
  8282. border-width:0px;
  8283. word-wrap:break-word;
  8284. text-transform:none;
  8285. visibility:hidden;
  8286. }
  8287. #u16465 {
  8288. border-width:0px;
  8289. position:absolute;
  8290. left:1082px;
  8291. top:255px;
  8292. width:70px;
  8293. height:38px;
  8294. display:flex;
  8295. transition:none;
  8296. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8297. font-weight:400;
  8298. font-style:normal;
  8299. font-size:12px;
  8300. color:#606266;
  8301. }
  8302. #u16465 .text {
  8303. position:absolute;
  8304. align-self:center;
  8305. padding:2px 2px 2px 0px;
  8306. box-sizing:border-box;
  8307. width:100%;
  8308. }
  8309. #u16465_img {
  8310. border-width:0px;
  8311. position:absolute;
  8312. left:0px;
  8313. top:0px;
  8314. width:70px;
  8315. height:38px;
  8316. }
  8317. #u16465_text {
  8318. border-width:0px;
  8319. word-wrap:break-word;
  8320. text-transform:none;
  8321. visibility:hidden;
  8322. }
  8323. #u16466 {
  8324. border-width:0px;
  8325. position:absolute;
  8326. left:1152px;
  8327. top:255px;
  8328. width:66px;
  8329. height:38px;
  8330. display:flex;
  8331. transition:none;
  8332. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8333. font-weight:400;
  8334. font-style:normal;
  8335. font-size:12px;
  8336. color:#606266;
  8337. }
  8338. #u16466 .text {
  8339. position:absolute;
  8340. align-self:center;
  8341. padding:2px 2px 2px 0px;
  8342. box-sizing:border-box;
  8343. width:100%;
  8344. }
  8345. #u16466_img {
  8346. border-width:0px;
  8347. position:absolute;
  8348. left:0px;
  8349. top:0px;
  8350. width:66px;
  8351. height:38px;
  8352. }
  8353. #u16466_text {
  8354. border-width:0px;
  8355. word-wrap:break-word;
  8356. text-transform:none;
  8357. visibility:hidden;
  8358. }
  8359. #u16467 {
  8360. border-width:0px;
  8361. position:absolute;
  8362. left:0px;
  8363. top:293px;
  8364. width:70px;
  8365. height:38px;
  8366. display:flex;
  8367. transition:none;
  8368. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8369. font-weight:400;
  8370. font-style:normal;
  8371. font-size:12px;
  8372. color:#606266;
  8373. }
  8374. #u16467 .text {
  8375. position:absolute;
  8376. align-self:center;
  8377. padding:2px 2px 2px 0px;
  8378. box-sizing:border-box;
  8379. width:100%;
  8380. }
  8381. #u16467_img {
  8382. border-width:0px;
  8383. position:absolute;
  8384. left:0px;
  8385. top:0px;
  8386. width:70px;
  8387. height:38px;
  8388. }
  8389. #u16467_text {
  8390. border-width:0px;
  8391. word-wrap:break-word;
  8392. text-transform:none;
  8393. visibility:hidden;
  8394. }
  8395. #u16468 {
  8396. border-width:0px;
  8397. position:absolute;
  8398. left:70px;
  8399. top:293px;
  8400. width:60px;
  8401. height:38px;
  8402. display:flex;
  8403. transition:none;
  8404. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8405. font-weight:400;
  8406. font-style:normal;
  8407. font-size:12px;
  8408. color:#606266;
  8409. }
  8410. #u16468 .text {
  8411. position:absolute;
  8412. align-self:center;
  8413. padding:2px 2px 2px 0px;
  8414. box-sizing:border-box;
  8415. width:100%;
  8416. }
  8417. #u16468_img {
  8418. border-width:0px;
  8419. position:absolute;
  8420. left:0px;
  8421. top:0px;
  8422. width:60px;
  8423. height:38px;
  8424. }
  8425. #u16468_text {
  8426. border-width:0px;
  8427. word-wrap:break-word;
  8428. text-transform:none;
  8429. visibility:hidden;
  8430. }
  8431. #u16469 {
  8432. border-width:0px;
  8433. position:absolute;
  8434. left:130px;
  8435. top:293px;
  8436. width:70px;
  8437. height:38px;
  8438. display:flex;
  8439. transition:none;
  8440. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8441. font-weight:400;
  8442. font-style:normal;
  8443. font-size:12px;
  8444. color:#606266;
  8445. }
  8446. #u16469 .text {
  8447. position:absolute;
  8448. align-self:center;
  8449. padding:2px 2px 2px 0px;
  8450. box-sizing:border-box;
  8451. width:100%;
  8452. }
  8453. #u16469_img {
  8454. border-width:0px;
  8455. position:absolute;
  8456. left:0px;
  8457. top:0px;
  8458. width:70px;
  8459. height:38px;
  8460. }
  8461. #u16469_text {
  8462. border-width:0px;
  8463. word-wrap:break-word;
  8464. text-transform:none;
  8465. visibility:hidden;
  8466. }
  8467. #u16470 {
  8468. border-width:0px;
  8469. position:absolute;
  8470. left:200px;
  8471. top:293px;
  8472. width:70px;
  8473. height:38px;
  8474. display:flex;
  8475. transition:none;
  8476. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8477. font-weight:400;
  8478. font-style:normal;
  8479. font-size:12px;
  8480. color:#606266;
  8481. }
  8482. #u16470 .text {
  8483. position:absolute;
  8484. align-self:center;
  8485. padding:2px 2px 2px 0px;
  8486. box-sizing:border-box;
  8487. width:100%;
  8488. }
  8489. #u16470_img {
  8490. border-width:0px;
  8491. position:absolute;
  8492. left:0px;
  8493. top:0px;
  8494. width:70px;
  8495. height:38px;
  8496. }
  8497. #u16470_text {
  8498. border-width:0px;
  8499. word-wrap:break-word;
  8500. text-transform:none;
  8501. visibility:hidden;
  8502. }
  8503. #u16471 {
  8504. border-width:0px;
  8505. position:absolute;
  8506. left:270px;
  8507. top:293px;
  8508. width:70px;
  8509. height:38px;
  8510. display:flex;
  8511. transition:none;
  8512. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8513. font-weight:400;
  8514. font-style:normal;
  8515. font-size:12px;
  8516. color:#606266;
  8517. }
  8518. #u16471 .text {
  8519. position:absolute;
  8520. align-self:center;
  8521. padding:2px 2px 2px 0px;
  8522. box-sizing:border-box;
  8523. width:100%;
  8524. }
  8525. #u16471_img {
  8526. border-width:0px;
  8527. position:absolute;
  8528. left:0px;
  8529. top:0px;
  8530. width:70px;
  8531. height:38px;
  8532. }
  8533. #u16471_text {
  8534. border-width:0px;
  8535. word-wrap:break-word;
  8536. text-transform:none;
  8537. visibility:hidden;
  8538. }
  8539. #u16472 {
  8540. border-width:0px;
  8541. position:absolute;
  8542. left:340px;
  8543. top:293px;
  8544. width:60px;
  8545. height:38px;
  8546. display:flex;
  8547. transition:none;
  8548. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8549. font-weight:400;
  8550. font-style:normal;
  8551. font-size:12px;
  8552. color:#606266;
  8553. }
  8554. #u16472 .text {
  8555. position:absolute;
  8556. align-self:center;
  8557. padding:2px 2px 2px 0px;
  8558. box-sizing:border-box;
  8559. width:100%;
  8560. }
  8561. #u16472_img {
  8562. border-width:0px;
  8563. position:absolute;
  8564. left:0px;
  8565. top:0px;
  8566. width:60px;
  8567. height:38px;
  8568. }
  8569. #u16472_text {
  8570. border-width:0px;
  8571. word-wrap:break-word;
  8572. text-transform:none;
  8573. visibility:hidden;
  8574. }
  8575. #u16473 {
  8576. border-width:0px;
  8577. position:absolute;
  8578. left:400px;
  8579. top:293px;
  8580. width:70px;
  8581. height:38px;
  8582. display:flex;
  8583. transition:none;
  8584. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8585. font-weight:400;
  8586. font-style:normal;
  8587. font-size:12px;
  8588. color:#606266;
  8589. }
  8590. #u16473 .text {
  8591. position:absolute;
  8592. align-self:center;
  8593. padding:2px 2px 2px 0px;
  8594. box-sizing:border-box;
  8595. width:100%;
  8596. }
  8597. #u16473_img {
  8598. border-width:0px;
  8599. position:absolute;
  8600. left:0px;
  8601. top:0px;
  8602. width:70px;
  8603. height:38px;
  8604. }
  8605. #u16473_text {
  8606. border-width:0px;
  8607. word-wrap:break-word;
  8608. text-transform:none;
  8609. visibility:hidden;
  8610. }
  8611. #u16474 {
  8612. border-width:0px;
  8613. position:absolute;
  8614. left:470px;
  8615. top:293px;
  8616. width:80px;
  8617. height:38px;
  8618. display:flex;
  8619. transition:none;
  8620. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8621. font-weight:400;
  8622. font-style:normal;
  8623. font-size:12px;
  8624. color:#606266;
  8625. }
  8626. #u16474 .text {
  8627. position:absolute;
  8628. align-self:center;
  8629. padding:2px 2px 2px 0px;
  8630. box-sizing:border-box;
  8631. width:100%;
  8632. }
  8633. #u16474_img {
  8634. border-width:0px;
  8635. position:absolute;
  8636. left:0px;
  8637. top:0px;
  8638. width:80px;
  8639. height:38px;
  8640. }
  8641. #u16474_text {
  8642. border-width:0px;
  8643. word-wrap:break-word;
  8644. text-transform:none;
  8645. visibility:hidden;
  8646. }
  8647. #u16475 {
  8648. border-width:0px;
  8649. position:absolute;
  8650. left:550px;
  8651. top:293px;
  8652. width:80px;
  8653. height:38px;
  8654. display:flex;
  8655. transition:none;
  8656. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8657. font-weight:400;
  8658. font-style:normal;
  8659. font-size:12px;
  8660. color:#606266;
  8661. }
  8662. #u16475 .text {
  8663. position:absolute;
  8664. align-self:center;
  8665. padding:2px 2px 2px 0px;
  8666. box-sizing:border-box;
  8667. width:100%;
  8668. }
  8669. #u16475_img {
  8670. border-width:0px;
  8671. position:absolute;
  8672. left:0px;
  8673. top:0px;
  8674. width:80px;
  8675. height:38px;
  8676. }
  8677. #u16475_text {
  8678. border-width:0px;
  8679. word-wrap:break-word;
  8680. text-transform:none;
  8681. visibility:hidden;
  8682. }
  8683. #u16476 {
  8684. border-width:0px;
  8685. position:absolute;
  8686. left:630px;
  8687. top:293px;
  8688. width:80px;
  8689. height:38px;
  8690. display:flex;
  8691. transition:none;
  8692. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8693. font-weight:400;
  8694. font-style:normal;
  8695. font-size:12px;
  8696. color:#606266;
  8697. }
  8698. #u16476 .text {
  8699. position:absolute;
  8700. align-self:center;
  8701. padding:2px 2px 2px 0px;
  8702. box-sizing:border-box;
  8703. width:100%;
  8704. }
  8705. #u16476_img {
  8706. border-width:0px;
  8707. position:absolute;
  8708. left:0px;
  8709. top:0px;
  8710. width:80px;
  8711. height:38px;
  8712. }
  8713. #u16476_text {
  8714. border-width:0px;
  8715. word-wrap:break-word;
  8716. text-transform:none;
  8717. visibility:hidden;
  8718. }
  8719. #u16477 {
  8720. border-width:0px;
  8721. position:absolute;
  8722. left:710px;
  8723. top:293px;
  8724. width:80px;
  8725. height:38px;
  8726. display:flex;
  8727. transition:none;
  8728. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8729. font-weight:400;
  8730. font-style:normal;
  8731. font-size:12px;
  8732. color:#606266;
  8733. }
  8734. #u16477 .text {
  8735. position:absolute;
  8736. align-self:center;
  8737. padding:2px 2px 2px 0px;
  8738. box-sizing:border-box;
  8739. width:100%;
  8740. }
  8741. #u16477_img {
  8742. border-width:0px;
  8743. position:absolute;
  8744. left:0px;
  8745. top:0px;
  8746. width:80px;
  8747. height:38px;
  8748. }
  8749. #u16477_text {
  8750. border-width:0px;
  8751. word-wrap:break-word;
  8752. text-transform:none;
  8753. visibility:hidden;
  8754. }
  8755. #u16478 {
  8756. border-width:0px;
  8757. position:absolute;
  8758. left:790px;
  8759. top:293px;
  8760. width:80px;
  8761. height:38px;
  8762. display:flex;
  8763. transition:none;
  8764. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8765. font-weight:400;
  8766. font-style:normal;
  8767. font-size:12px;
  8768. color:#606266;
  8769. }
  8770. #u16478 .text {
  8771. position:absolute;
  8772. align-self:center;
  8773. padding:2px 2px 2px 0px;
  8774. box-sizing:border-box;
  8775. width:100%;
  8776. }
  8777. #u16478_img {
  8778. border-width:0px;
  8779. position:absolute;
  8780. left:0px;
  8781. top:0px;
  8782. width:80px;
  8783. height:38px;
  8784. }
  8785. #u16478_text {
  8786. border-width:0px;
  8787. word-wrap:break-word;
  8788. text-transform:none;
  8789. visibility:hidden;
  8790. }
  8791. #u16479 {
  8792. border-width:0px;
  8793. position:absolute;
  8794. left:870px;
  8795. top:293px;
  8796. width:70px;
  8797. height:38px;
  8798. display:flex;
  8799. transition:none;
  8800. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8801. font-weight:400;
  8802. font-style:normal;
  8803. font-size:12px;
  8804. color:#606266;
  8805. }
  8806. #u16479 .text {
  8807. position:absolute;
  8808. align-self:center;
  8809. padding:2px 2px 2px 0px;
  8810. box-sizing:border-box;
  8811. width:100%;
  8812. }
  8813. #u16479_img {
  8814. border-width:0px;
  8815. position:absolute;
  8816. left:0px;
  8817. top:0px;
  8818. width:70px;
  8819. height:38px;
  8820. }
  8821. #u16479_text {
  8822. border-width:0px;
  8823. word-wrap:break-word;
  8824. text-transform:none;
  8825. visibility:hidden;
  8826. }
  8827. #u16480 {
  8828. border-width:0px;
  8829. position:absolute;
  8830. left:940px;
  8831. top:293px;
  8832. width:72px;
  8833. height:38px;
  8834. display:flex;
  8835. transition:none;
  8836. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8837. font-weight:400;
  8838. font-style:normal;
  8839. font-size:12px;
  8840. color:#606266;
  8841. }
  8842. #u16480 .text {
  8843. position:absolute;
  8844. align-self:center;
  8845. padding:2px 2px 2px 0px;
  8846. box-sizing:border-box;
  8847. width:100%;
  8848. }
  8849. #u16480_img {
  8850. border-width:0px;
  8851. position:absolute;
  8852. left:0px;
  8853. top:0px;
  8854. width:72px;
  8855. height:38px;
  8856. }
  8857. #u16480_text {
  8858. border-width:0px;
  8859. word-wrap:break-word;
  8860. text-transform:none;
  8861. visibility:hidden;
  8862. }
  8863. #u16481 {
  8864. border-width:0px;
  8865. position:absolute;
  8866. left:1012px;
  8867. top:293px;
  8868. width:70px;
  8869. height:38px;
  8870. display:flex;
  8871. transition:none;
  8872. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8873. font-weight:400;
  8874. font-style:normal;
  8875. font-size:12px;
  8876. color:#606266;
  8877. }
  8878. #u16481 .text {
  8879. position:absolute;
  8880. align-self:center;
  8881. padding:2px 2px 2px 0px;
  8882. box-sizing:border-box;
  8883. width:100%;
  8884. }
  8885. #u16481_img {
  8886. border-width:0px;
  8887. position:absolute;
  8888. left:0px;
  8889. top:0px;
  8890. width:70px;
  8891. height:38px;
  8892. }
  8893. #u16481_text {
  8894. border-width:0px;
  8895. word-wrap:break-word;
  8896. text-transform:none;
  8897. visibility:hidden;
  8898. }
  8899. #u16482 {
  8900. border-width:0px;
  8901. position:absolute;
  8902. left:1082px;
  8903. top:293px;
  8904. width:70px;
  8905. height:38px;
  8906. display:flex;
  8907. transition:none;
  8908. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8909. font-weight:400;
  8910. font-style:normal;
  8911. font-size:12px;
  8912. color:#606266;
  8913. }
  8914. #u16482 .text {
  8915. position:absolute;
  8916. align-self:center;
  8917. padding:2px 2px 2px 0px;
  8918. box-sizing:border-box;
  8919. width:100%;
  8920. }
  8921. #u16482_img {
  8922. border-width:0px;
  8923. position:absolute;
  8924. left:0px;
  8925. top:0px;
  8926. width:70px;
  8927. height:38px;
  8928. }
  8929. #u16482_text {
  8930. border-width:0px;
  8931. word-wrap:break-word;
  8932. text-transform:none;
  8933. visibility:hidden;
  8934. }
  8935. #u16483 {
  8936. border-width:0px;
  8937. position:absolute;
  8938. left:1152px;
  8939. top:293px;
  8940. width:66px;
  8941. height:38px;
  8942. display:flex;
  8943. transition:none;
  8944. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  8945. font-weight:400;
  8946. font-style:normal;
  8947. font-size:12px;
  8948. color:#606266;
  8949. }
  8950. #u16483 .text {
  8951. position:absolute;
  8952. align-self:center;
  8953. padding:2px 2px 2px 0px;
  8954. box-sizing:border-box;
  8955. width:100%;
  8956. }
  8957. #u16483_img {
  8958. border-width:0px;
  8959. position:absolute;
  8960. left:0px;
  8961. top:0px;
  8962. width:66px;
  8963. height:38px;
  8964. }
  8965. #u16483_text {
  8966. border-width:0px;
  8967. word-wrap:break-word;
  8968. text-transform:none;
  8969. visibility:hidden;
  8970. }
  8971. #u16484_div {
  8972. border-width:0px;
  8973. position:absolute;
  8974. left:0px;
  8975. top:0px;
  8976. width:60px;
  8977. height:30px;
  8978. background:inherit;
  8979. background-color:rgba(255, 255, 255, 1);
  8980. box-sizing:border-box;
  8981. border-width:1px;
  8982. border-style:solid;
  8983. border-color:rgba(170, 170, 170, 1);
  8984. border-radius:4px;
  8985. filter:drop-shadow(none);
  8986. transition:none;
  8987. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  8988. font-weight:400;
  8989. font-style:normal;
  8990. font-size:14px;
  8991. }
  8992. #u16484 {
  8993. border-width:0px;
  8994. position:absolute;
  8995. left:350px;
  8996. top:284px;
  8997. width:60px;
  8998. height:30px;
  8999. display:flex;
  9000. transition:none;
  9001. transform-origin:50% 50%;
  9002. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  9003. font-weight:400;
  9004. font-style:normal;
  9005. font-size:14px;
  9006. }
  9007. #u16484 .text {
  9008. position:absolute;
  9009. align-self:center;
  9010. padding:2px 2px 2px 2px;
  9011. box-sizing:border-box;
  9012. width:100%;
  9013. }
  9014. #u16484_text {
  9015. border-width:0px;
  9016. word-wrap:break-word;
  9017. text-transform:none;
  9018. }
  9019. #u16485 {
  9020. border-width:0px;
  9021. position:absolute;
  9022. left:0px;
  9023. top:0px;
  9024. width:0px;
  9025. height:0px;
  9026. }
  9027. #u16486_div {
  9028. border-width:0px;
  9029. position:absolute;
  9030. left:0px;
  9031. top:0px;
  9032. width:140px;
  9033. height:30px;
  9034. background:inherit;
  9035. background-color:rgba(255, 255, 255, 1);
  9036. box-sizing:border-box;
  9037. border-width:1px;
  9038. border-style:solid;
  9039. border-color:rgba(215, 215, 215, 1);
  9040. border-radius:4px;
  9041. filter:drop-shadow(none);
  9042. transition:none;
  9043. font-size:12px;
  9044. }
  9045. #u16486 {
  9046. border-width:0px;
  9047. position:absolute;
  9048. left:350px;
  9049. top:154px;
  9050. width:140px;
  9051. height:30px;
  9052. display:flex;
  9053. transition:none;
  9054. transform-origin:50% 50%;
  9055. font-size:12px;
  9056. }
  9057. #u16486 .text {
  9058. position:absolute;
  9059. align-self:center;
  9060. padding:2px 2px 2px 2px;
  9061. box-sizing:border-box;
  9062. width:100%;
  9063. }
  9064. #u16486_text {
  9065. border-width:0px;
  9066. word-wrap:break-word;
  9067. text-transform:none;
  9068. visibility:hidden;
  9069. }
  9070. #u16487_input {
  9071. position:absolute;
  9072. left:0px;
  9073. top:0px;
  9074. width:134px;
  9075. height:23px;
  9076. padding:2px 2px 2px 2px;
  9077. font-family:"ArialMT", "Arial", sans-serif;
  9078. font-weight:400;
  9079. font-style:normal;
  9080. font-size:12px;
  9081. letter-spacing:normal;
  9082. color:#AAAAAA;
  9083. vertical-align:none;
  9084. text-align:left;
  9085. text-transform:none;
  9086. background-color:transparent;
  9087. border-color:transparent;
  9088. }
  9089. #u16487_input.disabled {
  9090. position:absolute;
  9091. left:0px;
  9092. top:0px;
  9093. width:134px;
  9094. height:23px;
  9095. padding:2px 2px 2px 2px;
  9096. font-family:"ArialMT", "Arial", sans-serif;
  9097. font-weight:400;
  9098. font-style:normal;
  9099. font-size:12px;
  9100. letter-spacing:normal;
  9101. color:#AAAAAA;
  9102. vertical-align:none;
  9103. text-align:left;
  9104. text-transform:none;
  9105. background-color:transparent;
  9106. border-color:transparent;
  9107. }
  9108. #u16487_div {
  9109. border-width:0px;
  9110. position:absolute;
  9111. left:0px;
  9112. top:0px;
  9113. width:134px;
  9114. height:23px;
  9115. background:inherit;
  9116. background-color:rgba(255, 255, 255, 1);
  9117. border-radius:0px;
  9118. filter:drop-shadow(none);
  9119. transition:none;
  9120. font-size:12px;
  9121. color:#AAAAAA;
  9122. }
  9123. #u16487 {
  9124. border-width:0px;
  9125. position:absolute;
  9126. left:354px;
  9127. top:156px;
  9128. width:134px;
  9129. height:23px;
  9130. display:flex;
  9131. transition:none;
  9132. transform-origin:50% 50%;
  9133. font-size:12px;
  9134. color:#AAAAAA;
  9135. }
  9136. #u16487 .text {
  9137. position:absolute;
  9138. align-self:flex-start;
  9139. padding:2px 2px 2px 2px;
  9140. box-sizing:border-box;
  9141. width:100%;
  9142. }
  9143. #u16487_div.disabled {
  9144. border-width:0px;
  9145. position:absolute;
  9146. left:0px;
  9147. top:0px;
  9148. width:134px;
  9149. height:23px;
  9150. background:inherit;
  9151. background-color:rgba(240, 240, 240, 1);
  9152. border-radius:0px;
  9153. filter:drop-shadow(none);
  9154. transition:none;
  9155. font-size:12px;
  9156. color:#AAAAAA;
  9157. }
  9158. #u16487.disabled {
  9159. }
  9160. .u16487_input_option {
  9161. font-size:12px;
  9162. }
  9163. #u16488 {
  9164. border-width:0px;
  9165. position:absolute;
  9166. left:0px;
  9167. top:0px;
  9168. width:0px;
  9169. height:0px;
  9170. }
  9171. #u16489_div {
  9172. border-width:0px;
  9173. position:absolute;
  9174. left:0px;
  9175. top:0px;
  9176. width:140px;
  9177. height:30px;
  9178. background:inherit;
  9179. background-color:rgba(255, 255, 255, 1);
  9180. box-sizing:border-box;
  9181. border-width:1px;
  9182. border-style:solid;
  9183. border-color:rgba(215, 215, 215, 1);
  9184. border-radius:4px;
  9185. filter:drop-shadow(none);
  9186. transition:none;
  9187. font-size:12px;
  9188. }
  9189. #u16489 {
  9190. border-width:0px;
  9191. position:absolute;
  9192. left:500px;
  9193. top:154px;
  9194. width:140px;
  9195. height:30px;
  9196. display:flex;
  9197. transition:none;
  9198. transform-origin:50% 50%;
  9199. font-size:12px;
  9200. }
  9201. #u16489 .text {
  9202. position:absolute;
  9203. align-self:center;
  9204. padding:2px 2px 2px 2px;
  9205. box-sizing:border-box;
  9206. width:100%;
  9207. }
  9208. #u16489_text {
  9209. border-width:0px;
  9210. word-wrap:break-word;
  9211. text-transform:none;
  9212. visibility:hidden;
  9213. }
  9214. #u16490_input {
  9215. position:absolute;
  9216. left:0px;
  9217. top:0px;
  9218. width:134px;
  9219. height:23px;
  9220. padding:2px 2px 2px 2px;
  9221. font-family:"ArialMT", "Arial", sans-serif;
  9222. font-weight:400;
  9223. font-style:normal;
  9224. font-size:12px;
  9225. letter-spacing:normal;
  9226. color:#AAAAAA;
  9227. vertical-align:none;
  9228. text-align:left;
  9229. text-transform:none;
  9230. background-color:transparent;
  9231. border-color:transparent;
  9232. }
  9233. #u16490_input.disabled {
  9234. position:absolute;
  9235. left:0px;
  9236. top:0px;
  9237. width:134px;
  9238. height:23px;
  9239. padding:2px 2px 2px 2px;
  9240. font-family:"ArialMT", "Arial", sans-serif;
  9241. font-weight:400;
  9242. font-style:normal;
  9243. font-size:12px;
  9244. letter-spacing:normal;
  9245. color:#AAAAAA;
  9246. vertical-align:none;
  9247. text-align:left;
  9248. text-transform:none;
  9249. background-color:transparent;
  9250. border-color:transparent;
  9251. }
  9252. #u16490_div {
  9253. border-width:0px;
  9254. position:absolute;
  9255. left:0px;
  9256. top:0px;
  9257. width:134px;
  9258. height:23px;
  9259. background:inherit;
  9260. background-color:rgba(255, 255, 255, 1);
  9261. border-radius:0px;
  9262. filter:drop-shadow(none);
  9263. transition:none;
  9264. font-size:12px;
  9265. color:#AAAAAA;
  9266. }
  9267. #u16490 {
  9268. border-width:0px;
  9269. position:absolute;
  9270. left:504px;
  9271. top:156px;
  9272. width:134px;
  9273. height:23px;
  9274. display:flex;
  9275. transition:none;
  9276. transform-origin:50% 50%;
  9277. font-size:12px;
  9278. color:#AAAAAA;
  9279. }
  9280. #u16490 .text {
  9281. position:absolute;
  9282. align-self:flex-start;
  9283. padding:2px 2px 2px 2px;
  9284. box-sizing:border-box;
  9285. width:100%;
  9286. }
  9287. #u16490_div.disabled {
  9288. border-width:0px;
  9289. position:absolute;
  9290. left:0px;
  9291. top:0px;
  9292. width:134px;
  9293. height:23px;
  9294. background:inherit;
  9295. background-color:rgba(240, 240, 240, 1);
  9296. border-radius:0px;
  9297. filter:drop-shadow(none);
  9298. transition:none;
  9299. font-size:12px;
  9300. color:#AAAAAA;
  9301. }
  9302. #u16490.disabled {
  9303. }
  9304. .u16490_input_option {
  9305. font-size:12px;
  9306. }
  9307. #u16491 {
  9308. border-width:0px;
  9309. position:absolute;
  9310. left:0px;
  9311. top:0px;
  9312. width:0px;
  9313. height:0px;
  9314. }
  9315. #u16492_div {
  9316. border-width:0px;
  9317. position:absolute;
  9318. left:0px;
  9319. top:0px;
  9320. width:140px;
  9321. height:30px;
  9322. background:inherit;
  9323. background-color:rgba(255, 255, 255, 1);
  9324. box-sizing:border-box;
  9325. border-width:1px;
  9326. border-style:solid;
  9327. border-color:rgba(215, 215, 215, 1);
  9328. border-radius:4px;
  9329. filter:drop-shadow(none);
  9330. transition:none;
  9331. font-size:12px;
  9332. }
  9333. #u16492 {
  9334. border-width:0px;
  9335. position:absolute;
  9336. left:650px;
  9337. top:155px;
  9338. width:140px;
  9339. height:30px;
  9340. display:flex;
  9341. transition:none;
  9342. transform-origin:50% 50%;
  9343. font-size:12px;
  9344. }
  9345. #u16492 .text {
  9346. position:absolute;
  9347. align-self:center;
  9348. padding:2px 2px 2px 2px;
  9349. box-sizing:border-box;
  9350. width:100%;
  9351. }
  9352. #u16492_text {
  9353. border-width:0px;
  9354. word-wrap:break-word;
  9355. text-transform:none;
  9356. visibility:hidden;
  9357. }
  9358. #u16493_input {
  9359. position:absolute;
  9360. left:0px;
  9361. top:0px;
  9362. width:134px;
  9363. height:23px;
  9364. padding:2px 2px 2px 2px;
  9365. font-family:"ArialMT", "Arial", sans-serif;
  9366. font-weight:400;
  9367. font-style:normal;
  9368. font-size:12px;
  9369. letter-spacing:normal;
  9370. color:#AAAAAA;
  9371. vertical-align:none;
  9372. text-align:left;
  9373. text-transform:none;
  9374. background-color:transparent;
  9375. border-color:transparent;
  9376. }
  9377. #u16493_input.disabled {
  9378. position:absolute;
  9379. left:0px;
  9380. top:0px;
  9381. width:134px;
  9382. height:23px;
  9383. padding:2px 2px 2px 2px;
  9384. font-family:"ArialMT", "Arial", sans-serif;
  9385. font-weight:400;
  9386. font-style:normal;
  9387. font-size:12px;
  9388. letter-spacing:normal;
  9389. color:#AAAAAA;
  9390. vertical-align:none;
  9391. text-align:left;
  9392. text-transform:none;
  9393. background-color:transparent;
  9394. border-color:transparent;
  9395. }
  9396. #u16493_div {
  9397. border-width:0px;
  9398. position:absolute;
  9399. left:0px;
  9400. top:0px;
  9401. width:134px;
  9402. height:23px;
  9403. background:inherit;
  9404. background-color:rgba(255, 255, 255, 1);
  9405. border-radius:0px;
  9406. filter:drop-shadow(none);
  9407. transition:none;
  9408. font-size:12px;
  9409. color:#AAAAAA;
  9410. }
  9411. #u16493 {
  9412. border-width:0px;
  9413. position:absolute;
  9414. left:654px;
  9415. top:157px;
  9416. width:134px;
  9417. height:23px;
  9418. display:flex;
  9419. transition:none;
  9420. transform-origin:50% 50%;
  9421. font-size:12px;
  9422. color:#AAAAAA;
  9423. }
  9424. #u16493 .text {
  9425. position:absolute;
  9426. align-self:flex-start;
  9427. padding:2px 2px 2px 2px;
  9428. box-sizing:border-box;
  9429. width:100%;
  9430. }
  9431. #u16493_div.disabled {
  9432. border-width:0px;
  9433. position:absolute;
  9434. left:0px;
  9435. top:0px;
  9436. width:134px;
  9437. height:23px;
  9438. background:inherit;
  9439. background-color:rgba(240, 240, 240, 1);
  9440. border-radius:0px;
  9441. filter:drop-shadow(none);
  9442. transition:none;
  9443. font-size:12px;
  9444. color:#AAAAAA;
  9445. }
  9446. #u16493.disabled {
  9447. }
  9448. .u16493_input_option {
  9449. font-size:12px;
  9450. }
  9451. #u16494 {
  9452. border-width:0px;
  9453. position:absolute;
  9454. left:0px;
  9455. top:0px;
  9456. width:0px;
  9457. height:0px;
  9458. }
  9459. #u16495_div {
  9460. border-width:0px;
  9461. position:absolute;
  9462. left:0px;
  9463. top:0px;
  9464. width:140px;
  9465. height:30px;
  9466. background:inherit;
  9467. background-color:rgba(255, 255, 255, 1);
  9468. box-sizing:border-box;
  9469. border-width:1px;
  9470. border-style:solid;
  9471. border-color:rgba(215, 215, 215, 1);
  9472. border-radius:4px;
  9473. filter:drop-shadow(none);
  9474. transition:none;
  9475. font-size:12px;
  9476. }
  9477. #u16495 {
  9478. border-width:0px;
  9479. position:absolute;
  9480. left:800px;
  9481. top:155px;
  9482. width:140px;
  9483. height:30px;
  9484. display:flex;
  9485. transition:none;
  9486. transform-origin:50% 50%;
  9487. font-size:12px;
  9488. }
  9489. #u16495 .text {
  9490. position:absolute;
  9491. align-self:center;
  9492. padding:2px 2px 2px 2px;
  9493. box-sizing:border-box;
  9494. width:100%;
  9495. }
  9496. #u16495_text {
  9497. border-width:0px;
  9498. word-wrap:break-word;
  9499. text-transform:none;
  9500. visibility:hidden;
  9501. }
  9502. #u16496_input {
  9503. position:absolute;
  9504. left:0px;
  9505. top:0px;
  9506. width:134px;
  9507. height:23px;
  9508. padding:2px 2px 2px 2px;
  9509. font-family:"ArialMT", "Arial", sans-serif;
  9510. font-weight:400;
  9511. font-style:normal;
  9512. font-size:12px;
  9513. letter-spacing:normal;
  9514. color:#AAAAAA;
  9515. vertical-align:none;
  9516. text-align:left;
  9517. text-transform:none;
  9518. background-color:transparent;
  9519. border-color:transparent;
  9520. }
  9521. #u16496_input.disabled {
  9522. position:absolute;
  9523. left:0px;
  9524. top:0px;
  9525. width:134px;
  9526. height:23px;
  9527. padding:2px 2px 2px 2px;
  9528. font-family:"ArialMT", "Arial", sans-serif;
  9529. font-weight:400;
  9530. font-style:normal;
  9531. font-size:12px;
  9532. letter-spacing:normal;
  9533. color:#AAAAAA;
  9534. vertical-align:none;
  9535. text-align:left;
  9536. text-transform:none;
  9537. background-color:transparent;
  9538. border-color:transparent;
  9539. }
  9540. #u16496_div {
  9541. border-width:0px;
  9542. position:absolute;
  9543. left:0px;
  9544. top:0px;
  9545. width:134px;
  9546. height:23px;
  9547. background:inherit;
  9548. background-color:rgba(255, 255, 255, 1);
  9549. border-radius:0px;
  9550. filter:drop-shadow(none);
  9551. transition:none;
  9552. font-size:12px;
  9553. color:#AAAAAA;
  9554. }
  9555. #u16496 {
  9556. border-width:0px;
  9557. position:absolute;
  9558. left:804px;
  9559. top:157px;
  9560. width:134px;
  9561. height:23px;
  9562. display:flex;
  9563. transition:none;
  9564. transform-origin:50% 50%;
  9565. font-size:12px;
  9566. color:#AAAAAA;
  9567. }
  9568. #u16496 .text {
  9569. position:absolute;
  9570. align-self:flex-start;
  9571. padding:2px 2px 2px 2px;
  9572. box-sizing:border-box;
  9573. width:100%;
  9574. }
  9575. #u16496_div.disabled {
  9576. border-width:0px;
  9577. position:absolute;
  9578. left:0px;
  9579. top:0px;
  9580. width:134px;
  9581. height:23px;
  9582. background:inherit;
  9583. background-color:rgba(240, 240, 240, 1);
  9584. border-radius:0px;
  9585. filter:drop-shadow(none);
  9586. transition:none;
  9587. font-size:12px;
  9588. color:#AAAAAA;
  9589. }
  9590. #u16496.disabled {
  9591. }
  9592. .u16496_input_option {
  9593. font-size:12px;
  9594. }
  9595. #u16497 {
  9596. border-width:0px;
  9597. position:absolute;
  9598. left:0px;
  9599. top:0px;
  9600. width:0px;
  9601. height:0px;
  9602. }
  9603. #u16498_div {
  9604. border-width:0px;
  9605. position:absolute;
  9606. left:0px;
  9607. top:0px;
  9608. width:140px;
  9609. height:30px;
  9610. background:inherit;
  9611. background-color:rgba(255, 255, 255, 1);
  9612. box-sizing:border-box;
  9613. border-width:1px;
  9614. border-style:solid;
  9615. border-color:rgba(201, 201, 201, 1);
  9616. border-radius:4px;
  9617. filter:drop-shadow(none);
  9618. transition:none;
  9619. font-family:"Microsoft YaHei", sans-serif;
  9620. font-weight:400;
  9621. font-style:normal;
  9622. font-size:14px;
  9623. color:#CCCCCC;
  9624. text-align:left;
  9625. }
  9626. #u16498 {
  9627. border-width:0px;
  9628. position:absolute;
  9629. left:950px;
  9630. top:155px;
  9631. width:140px;
  9632. height:30px;
  9633. display:flex;
  9634. transition:none;
  9635. transform-origin:50% 50%;
  9636. font-family:"Microsoft YaHei", sans-serif;
  9637. font-weight:400;
  9638. font-style:normal;
  9639. font-size:14px;
  9640. color:#CCCCCC;
  9641. text-align:left;
  9642. }
  9643. #u16498 .text {
  9644. position:absolute;
  9645. align-self:center;
  9646. padding:2px 8px 2px 8px;
  9647. box-sizing:border-box;
  9648. width:100%;
  9649. }
  9650. #u16498_text {
  9651. border-width:0px;
  9652. word-wrap:break-word;
  9653. text-transform:none;
  9654. visibility:hidden;
  9655. }
  9656. #u16499_input {
  9657. position:absolute;
  9658. left:0px;
  9659. top:0px;
  9660. width:127px;
  9661. height:25px;
  9662. padding:2px 2px 2px 2px;
  9663. font-family:"Microsoft YaHei", sans-serif;
  9664. font-weight:400;
  9665. font-style:normal;
  9666. font-size:10px;
  9667. letter-spacing:normal;
  9668. color:#000000;
  9669. vertical-align:none;
  9670. text-align:left;
  9671. text-transform:none;
  9672. background-color:transparent;
  9673. border-color:transparent;
  9674. }
  9675. #u16499_input.hint {
  9676. position:absolute;
  9677. left:0px;
  9678. top:0px;
  9679. width:127px;
  9680. height:25px;
  9681. padding:2px 2px 2px 2px;
  9682. font-family:"Microsoft YaHei", sans-serif;
  9683. font-weight:400;
  9684. font-style:normal;
  9685. font-size:12px;
  9686. letter-spacing:normal;
  9687. color:#AAAAAA;
  9688. vertical-align:none;
  9689. text-align:left;
  9690. text-transform:none;
  9691. background-color:transparent;
  9692. border-color:transparent;
  9693. }
  9694. #u16499_input.disabled {
  9695. position:absolute;
  9696. left:0px;
  9697. top:0px;
  9698. width:127px;
  9699. height:25px;
  9700. padding:2px 2px 2px 2px;
  9701. font-family:"Microsoft YaHei", sans-serif;
  9702. font-weight:400;
  9703. font-style:normal;
  9704. font-size:10px;
  9705. letter-spacing:normal;
  9706. color:#000000;
  9707. vertical-align:none;
  9708. text-align:left;
  9709. text-transform:none;
  9710. background-color:transparent;
  9711. border-color:transparent;
  9712. }
  9713. #u16499_input.hint.disabled {
  9714. position:absolute;
  9715. left:0px;
  9716. top:0px;
  9717. width:127px;
  9718. height:25px;
  9719. padding:2px 2px 2px 2px;
  9720. font-family:"Microsoft YaHei", sans-serif;
  9721. font-weight:400;
  9722. font-style:normal;
  9723. font-size:12px;
  9724. letter-spacing:normal;
  9725. color:#AAAAAA;
  9726. vertical-align:none;
  9727. text-align:left;
  9728. text-transform:none;
  9729. background-color:transparent;
  9730. border-color:transparent;
  9731. }
  9732. #u16499_div {
  9733. border-width:0px;
  9734. position:absolute;
  9735. left:0px;
  9736. top:0px;
  9737. width:127px;
  9738. height:25px;
  9739. background:inherit;
  9740. background-color:rgba(255, 255, 255, 1);
  9741. border-radius:0px;
  9742. filter:drop-shadow(none);
  9743. transition:none;
  9744. font-family:"Microsoft YaHei", sans-serif;
  9745. font-weight:400;
  9746. font-style:normal;
  9747. font-size:10px;
  9748. }
  9749. #u16499 {
  9750. border-width:0px;
  9751. position:absolute;
  9752. left:958px;
  9753. top:156px;
  9754. width:127px;
  9755. height:25px;
  9756. display:flex;
  9757. transition:none;
  9758. transform-origin:50% 50%;
  9759. font-family:"Microsoft YaHei", sans-serif;
  9760. font-weight:400;
  9761. font-style:normal;
  9762. font-size:10px;
  9763. }
  9764. #u16499 .text {
  9765. position:absolute;
  9766. align-self:center;
  9767. padding:2px 2px 2px 2px;
  9768. box-sizing:border-box;
  9769. width:100%;
  9770. }
  9771. #u16499_div.hint {
  9772. border-width:0px;
  9773. position:absolute;
  9774. left:0px;
  9775. top:0px;
  9776. width:127px;
  9777. height:25px;
  9778. background:inherit;
  9779. background-color:rgba(255, 255, 255, 1);
  9780. border-radius:0px;
  9781. filter:drop-shadow(none);
  9782. transition:none;
  9783. font-family:"Microsoft YaHei", sans-serif;
  9784. font-weight:400;
  9785. font-style:normal;
  9786. font-size:10px;
  9787. }
  9788. #u16499.hint {
  9789. }
  9790. #u16499_div.disabled {
  9791. border-width:0px;
  9792. position:absolute;
  9793. left:0px;
  9794. top:0px;
  9795. width:127px;
  9796. height:25px;
  9797. background:inherit;
  9798. background-color:rgba(240, 240, 240, 1);
  9799. border-radius:0px;
  9800. filter:drop-shadow(none);
  9801. transition:none;
  9802. font-family:"Microsoft YaHei", sans-serif;
  9803. font-weight:400;
  9804. font-style:normal;
  9805. font-size:10px;
  9806. }
  9807. #u16499.disabled {
  9808. }
  9809. #u16499_div.hint.disabled {
  9810. border-width:0px;
  9811. position:absolute;
  9812. left:0px;
  9813. top:0px;
  9814. width:127px;
  9815. height:25px;
  9816. background:inherit;
  9817. background-color:rgba(240, 240, 240, 1);
  9818. border-radius:0px;
  9819. filter:drop-shadow(none);
  9820. transition:none;
  9821. font-family:"Microsoft YaHei", sans-serif;
  9822. font-weight:400;
  9823. font-style:normal;
  9824. font-size:10px;
  9825. }
  9826. #u16499.hint.disabled {
  9827. }
  9828. #u16500 {
  9829. border-width:0px;
  9830. position:absolute;
  9831. left:0px;
  9832. top:0px;
  9833. width:0px;
  9834. height:0px;
  9835. }
  9836. #u16501_div {
  9837. border-width:0px;
  9838. position:absolute;
  9839. left:0px;
  9840. top:0px;
  9841. width:140px;
  9842. height:30px;
  9843. background:inherit;
  9844. background-color:rgba(255, 255, 255, 1);
  9845. box-sizing:border-box;
  9846. border-width:1px;
  9847. border-style:solid;
  9848. border-color:rgba(201, 201, 201, 1);
  9849. border-radius:4px;
  9850. filter:drop-shadow(none);
  9851. transition:none;
  9852. font-family:"Microsoft YaHei", sans-serif;
  9853. font-weight:400;
  9854. font-style:normal;
  9855. font-size:14px;
  9856. color:#CCCCCC;
  9857. text-align:left;
  9858. }
  9859. #u16501 {
  9860. border-width:0px;
  9861. position:absolute;
  9862. left:1100px;
  9863. top:155px;
  9864. width:140px;
  9865. height:30px;
  9866. display:flex;
  9867. transition:none;
  9868. transform-origin:50% 50%;
  9869. font-family:"Microsoft YaHei", sans-serif;
  9870. font-weight:400;
  9871. font-style:normal;
  9872. font-size:14px;
  9873. color:#CCCCCC;
  9874. text-align:left;
  9875. }
  9876. #u16501 .text {
  9877. position:absolute;
  9878. align-self:center;
  9879. padding:2px 8px 2px 8px;
  9880. box-sizing:border-box;
  9881. width:100%;
  9882. }
  9883. #u16501_text {
  9884. border-width:0px;
  9885. word-wrap:break-word;
  9886. text-transform:none;
  9887. visibility:hidden;
  9888. }
  9889. #u16502_input {
  9890. position:absolute;
  9891. left:0px;
  9892. top:0px;
  9893. width:127px;
  9894. height:25px;
  9895. padding:2px 2px 2px 2px;
  9896. font-family:"Microsoft YaHei", sans-serif;
  9897. font-weight:400;
  9898. font-style:normal;
  9899. font-size:10px;
  9900. letter-spacing:normal;
  9901. color:#000000;
  9902. vertical-align:none;
  9903. text-align:left;
  9904. text-transform:none;
  9905. background-color:transparent;
  9906. border-color:transparent;
  9907. }
  9908. #u16502_input.hint {
  9909. position:absolute;
  9910. left:0px;
  9911. top:0px;
  9912. width:127px;
  9913. height:25px;
  9914. padding:2px 2px 2px 2px;
  9915. font-family:"Microsoft YaHei", sans-serif;
  9916. font-weight:400;
  9917. font-style:normal;
  9918. font-size:12px;
  9919. letter-spacing:normal;
  9920. color:#AAAAAA;
  9921. vertical-align:none;
  9922. text-align:left;
  9923. text-transform:none;
  9924. background-color:transparent;
  9925. border-color:transparent;
  9926. }
  9927. #u16502_input.disabled {
  9928. position:absolute;
  9929. left:0px;
  9930. top:0px;
  9931. width:127px;
  9932. height:25px;
  9933. padding:2px 2px 2px 2px;
  9934. font-family:"Microsoft YaHei", sans-serif;
  9935. font-weight:400;
  9936. font-style:normal;
  9937. font-size:10px;
  9938. letter-spacing:normal;
  9939. color:#000000;
  9940. vertical-align:none;
  9941. text-align:left;
  9942. text-transform:none;
  9943. background-color:transparent;
  9944. border-color:transparent;
  9945. }
  9946. #u16502_input.hint.disabled {
  9947. position:absolute;
  9948. left:0px;
  9949. top:0px;
  9950. width:127px;
  9951. height:25px;
  9952. padding:2px 2px 2px 2px;
  9953. font-family:"Microsoft YaHei", sans-serif;
  9954. font-weight:400;
  9955. font-style:normal;
  9956. font-size:12px;
  9957. letter-spacing:normal;
  9958. color:#AAAAAA;
  9959. vertical-align:none;
  9960. text-align:left;
  9961. text-transform:none;
  9962. background-color:transparent;
  9963. border-color:transparent;
  9964. }
  9965. #u16502_div {
  9966. border-width:0px;
  9967. position:absolute;
  9968. left:0px;
  9969. top:0px;
  9970. width:127px;
  9971. height:25px;
  9972. background:inherit;
  9973. background-color:rgba(255, 255, 255, 1);
  9974. border-radius:0px;
  9975. filter:drop-shadow(none);
  9976. transition:none;
  9977. font-family:"Microsoft YaHei", sans-serif;
  9978. font-weight:400;
  9979. font-style:normal;
  9980. font-size:10px;
  9981. }
  9982. #u16502 {
  9983. border-width:0px;
  9984. position:absolute;
  9985. left:1108px;
  9986. top:156px;
  9987. width:127px;
  9988. height:25px;
  9989. display:flex;
  9990. transition:none;
  9991. transform-origin:50% 50%;
  9992. font-family:"Microsoft YaHei", sans-serif;
  9993. font-weight:400;
  9994. font-style:normal;
  9995. font-size:10px;
  9996. }
  9997. #u16502 .text {
  9998. position:absolute;
  9999. align-self:center;
  10000. padding:2px 2px 2px 2px;
  10001. box-sizing:border-box;
  10002. width:100%;
  10003. }
  10004. #u16502_div.hint {
  10005. border-width:0px;
  10006. position:absolute;
  10007. left:0px;
  10008. top:0px;
  10009. width:127px;
  10010. height:25px;
  10011. background:inherit;
  10012. background-color:rgba(255, 255, 255, 1);
  10013. border-radius:0px;
  10014. filter:drop-shadow(none);
  10015. transition:none;
  10016. font-family:"Microsoft YaHei", sans-serif;
  10017. font-weight:400;
  10018. font-style:normal;
  10019. font-size:10px;
  10020. }
  10021. #u16502.hint {
  10022. }
  10023. #u16502_div.disabled {
  10024. border-width:0px;
  10025. position:absolute;
  10026. left:0px;
  10027. top:0px;
  10028. width:127px;
  10029. height:25px;
  10030. background:inherit;
  10031. background-color:rgba(240, 240, 240, 1);
  10032. border-radius:0px;
  10033. filter:drop-shadow(none);
  10034. transition:none;
  10035. font-family:"Microsoft YaHei", sans-serif;
  10036. font-weight:400;
  10037. font-style:normal;
  10038. font-size:10px;
  10039. }
  10040. #u16502.disabled {
  10041. }
  10042. #u16502_div.hint.disabled {
  10043. border-width:0px;
  10044. position:absolute;
  10045. left:0px;
  10046. top:0px;
  10047. width:127px;
  10048. height:25px;
  10049. background:inherit;
  10050. background-color:rgba(240, 240, 240, 1);
  10051. border-radius:0px;
  10052. filter:drop-shadow(none);
  10053. transition:none;
  10054. font-family:"Microsoft YaHei", sans-serif;
  10055. font-weight:400;
  10056. font-style:normal;
  10057. font-size:10px;
  10058. }
  10059. #u16502.hint.disabled {
  10060. }
  10061. #u16503 {
  10062. border-width:0px;
  10063. position:absolute;
  10064. left:0px;
  10065. top:0px;
  10066. width:0px;
  10067. height:0px;
  10068. }
  10069. #u16504_div {
  10070. border-width:0px;
  10071. position:absolute;
  10072. left:0px;
  10073. top:0px;
  10074. width:140px;
  10075. height:30px;
  10076. background:inherit;
  10077. background-color:rgba(255, 255, 255, 1);
  10078. box-sizing:border-box;
  10079. border-width:1px;
  10080. border-style:solid;
  10081. border-color:rgba(201, 201, 201, 1);
  10082. border-radius:4px;
  10083. filter:drop-shadow(none);
  10084. transition:none;
  10085. font-family:"Microsoft YaHei", sans-serif;
  10086. font-weight:400;
  10087. font-style:normal;
  10088. font-size:14px;
  10089. color:#CCCCCC;
  10090. text-align:left;
  10091. }
  10092. #u16504 {
  10093. border-width:0px;
  10094. position:absolute;
  10095. left:1250px;
  10096. top:155px;
  10097. width:140px;
  10098. height:30px;
  10099. display:flex;
  10100. transition:none;
  10101. transform-origin:50% 50%;
  10102. font-family:"Microsoft YaHei", sans-serif;
  10103. font-weight:400;
  10104. font-style:normal;
  10105. font-size:14px;
  10106. color:#CCCCCC;
  10107. text-align:left;
  10108. }
  10109. #u16504 .text {
  10110. position:absolute;
  10111. align-self:center;
  10112. padding:2px 8px 2px 8px;
  10113. box-sizing:border-box;
  10114. width:100%;
  10115. }
  10116. #u16504_text {
  10117. border-width:0px;
  10118. word-wrap:break-word;
  10119. text-transform:none;
  10120. visibility:hidden;
  10121. }
  10122. #u16505_input {
  10123. position:absolute;
  10124. left:0px;
  10125. top:0px;
  10126. width:127px;
  10127. height:25px;
  10128. padding:2px 2px 2px 2px;
  10129. font-family:"Microsoft YaHei", sans-serif;
  10130. font-weight:400;
  10131. font-style:normal;
  10132. font-size:10px;
  10133. letter-spacing:normal;
  10134. color:#000000;
  10135. vertical-align:none;
  10136. text-align:left;
  10137. text-transform:none;
  10138. background-color:transparent;
  10139. border-color:transparent;
  10140. }
  10141. #u16505_input.hint {
  10142. position:absolute;
  10143. left:0px;
  10144. top:0px;
  10145. width:127px;
  10146. height:25px;
  10147. padding:2px 2px 2px 2px;
  10148. font-family:"Microsoft YaHei", sans-serif;
  10149. font-weight:400;
  10150. font-style:normal;
  10151. font-size:12px;
  10152. letter-spacing:normal;
  10153. color:#AAAAAA;
  10154. vertical-align:none;
  10155. text-align:left;
  10156. text-transform:none;
  10157. background-color:transparent;
  10158. border-color:transparent;
  10159. }
  10160. #u16505_input.disabled {
  10161. position:absolute;
  10162. left:0px;
  10163. top:0px;
  10164. width:127px;
  10165. height:25px;
  10166. padding:2px 2px 2px 2px;
  10167. font-family:"Microsoft YaHei", sans-serif;
  10168. font-weight:400;
  10169. font-style:normal;
  10170. font-size:10px;
  10171. letter-spacing:normal;
  10172. color:#000000;
  10173. vertical-align:none;
  10174. text-align:left;
  10175. text-transform:none;
  10176. background-color:transparent;
  10177. border-color:transparent;
  10178. }
  10179. #u16505_input.hint.disabled {
  10180. position:absolute;
  10181. left:0px;
  10182. top:0px;
  10183. width:127px;
  10184. height:25px;
  10185. padding:2px 2px 2px 2px;
  10186. font-family:"Microsoft YaHei", sans-serif;
  10187. font-weight:400;
  10188. font-style:normal;
  10189. font-size:12px;
  10190. letter-spacing:normal;
  10191. color:#AAAAAA;
  10192. vertical-align:none;
  10193. text-align:left;
  10194. text-transform:none;
  10195. background-color:transparent;
  10196. border-color:transparent;
  10197. }
  10198. #u16505_div {
  10199. border-width:0px;
  10200. position:absolute;
  10201. left:0px;
  10202. top:0px;
  10203. width:127px;
  10204. height:25px;
  10205. background:inherit;
  10206. background-color:rgba(255, 255, 255, 1);
  10207. border-radius:0px;
  10208. filter:drop-shadow(none);
  10209. transition:none;
  10210. font-family:"Microsoft YaHei", sans-serif;
  10211. font-weight:400;
  10212. font-style:normal;
  10213. font-size:10px;
  10214. }
  10215. #u16505 {
  10216. border-width:0px;
  10217. position:absolute;
  10218. left:1258px;
  10219. top:156px;
  10220. width:127px;
  10221. height:25px;
  10222. display:flex;
  10223. transition:none;
  10224. transform-origin:50% 50%;
  10225. font-family:"Microsoft YaHei", sans-serif;
  10226. font-weight:400;
  10227. font-style:normal;
  10228. font-size:10px;
  10229. }
  10230. #u16505 .text {
  10231. position:absolute;
  10232. align-self:center;
  10233. padding:2px 2px 2px 2px;
  10234. box-sizing:border-box;
  10235. width:100%;
  10236. }
  10237. #u16505_div.hint {
  10238. border-width:0px;
  10239. position:absolute;
  10240. left:0px;
  10241. top:0px;
  10242. width:127px;
  10243. height:25px;
  10244. background:inherit;
  10245. background-color:rgba(255, 255, 255, 1);
  10246. border-radius:0px;
  10247. filter:drop-shadow(none);
  10248. transition:none;
  10249. font-family:"Microsoft YaHei", sans-serif;
  10250. font-weight:400;
  10251. font-style:normal;
  10252. font-size:10px;
  10253. }
  10254. #u16505.hint {
  10255. }
  10256. #u16505_div.disabled {
  10257. border-width:0px;
  10258. position:absolute;
  10259. left:0px;
  10260. top:0px;
  10261. width:127px;
  10262. height:25px;
  10263. background:inherit;
  10264. background-color:rgba(240, 240, 240, 1);
  10265. border-radius:0px;
  10266. filter:drop-shadow(none);
  10267. transition:none;
  10268. font-family:"Microsoft YaHei", sans-serif;
  10269. font-weight:400;
  10270. font-style:normal;
  10271. font-size:10px;
  10272. }
  10273. #u16505.disabled {
  10274. }
  10275. #u16505_div.hint.disabled {
  10276. border-width:0px;
  10277. position:absolute;
  10278. left:0px;
  10279. top:0px;
  10280. width:127px;
  10281. height:25px;
  10282. background:inherit;
  10283. background-color:rgba(240, 240, 240, 1);
  10284. border-radius:0px;
  10285. filter:drop-shadow(none);
  10286. transition:none;
  10287. font-family:"Microsoft YaHei", sans-serif;
  10288. font-weight:400;
  10289. font-style:normal;
  10290. font-size:10px;
  10291. }
  10292. #u16505.hint.disabled {
  10293. }
  10294. #u16506 {
  10295. border-width:0px;
  10296. position:absolute;
  10297. left:0px;
  10298. top:0px;
  10299. width:0px;
  10300. height:0px;
  10301. }
  10302. #u16507_div {
  10303. border-width:0px;
  10304. position:absolute;
  10305. left:0px;
  10306. top:0px;
  10307. width:140px;
  10308. height:30px;
  10309. background:inherit;
  10310. background-color:rgba(255, 255, 255, 1);
  10311. box-sizing:border-box;
  10312. border-width:1px;
  10313. border-style:solid;
  10314. border-color:rgba(201, 201, 201, 1);
  10315. border-radius:4px;
  10316. filter:drop-shadow(none);
  10317. transition:none;
  10318. font-family:"Microsoft YaHei", sans-serif;
  10319. font-weight:400;
  10320. font-style:normal;
  10321. font-size:14px;
  10322. color:#CCCCCC;
  10323. text-align:left;
  10324. }
  10325. #u16507 {
  10326. border-width:0px;
  10327. position:absolute;
  10328. left:1400px;
  10329. top:155px;
  10330. width:140px;
  10331. height:30px;
  10332. display:flex;
  10333. transition:none;
  10334. transform-origin:50% 50%;
  10335. font-family:"Microsoft YaHei", sans-serif;
  10336. font-weight:400;
  10337. font-style:normal;
  10338. font-size:14px;
  10339. color:#CCCCCC;
  10340. text-align:left;
  10341. }
  10342. #u16507 .text {
  10343. position:absolute;
  10344. align-self:center;
  10345. padding:2px 8px 2px 8px;
  10346. box-sizing:border-box;
  10347. width:100%;
  10348. }
  10349. #u16507_text {
  10350. border-width:0px;
  10351. word-wrap:break-word;
  10352. text-transform:none;
  10353. visibility:hidden;
  10354. }
  10355. #u16508_input {
  10356. position:absolute;
  10357. left:0px;
  10358. top:0px;
  10359. width:127px;
  10360. height:25px;
  10361. padding:2px 2px 2px 2px;
  10362. font-family:"Microsoft YaHei", sans-serif;
  10363. font-weight:400;
  10364. font-style:normal;
  10365. font-size:10px;
  10366. letter-spacing:normal;
  10367. color:#000000;
  10368. vertical-align:none;
  10369. text-align:left;
  10370. text-transform:none;
  10371. background-color:transparent;
  10372. border-color:transparent;
  10373. }
  10374. #u16508_input.hint {
  10375. position:absolute;
  10376. left:0px;
  10377. top:0px;
  10378. width:127px;
  10379. height:25px;
  10380. padding:2px 2px 2px 2px;
  10381. font-family:"Microsoft YaHei", sans-serif;
  10382. font-weight:400;
  10383. font-style:normal;
  10384. font-size:12px;
  10385. letter-spacing:normal;
  10386. color:#AAAAAA;
  10387. vertical-align:none;
  10388. text-align:left;
  10389. text-transform:none;
  10390. background-color:transparent;
  10391. border-color:transparent;
  10392. }
  10393. #u16508_input.disabled {
  10394. position:absolute;
  10395. left:0px;
  10396. top:0px;
  10397. width:127px;
  10398. height:25px;
  10399. padding:2px 2px 2px 2px;
  10400. font-family:"Microsoft YaHei", sans-serif;
  10401. font-weight:400;
  10402. font-style:normal;
  10403. font-size:10px;
  10404. letter-spacing:normal;
  10405. color:#000000;
  10406. vertical-align:none;
  10407. text-align:left;
  10408. text-transform:none;
  10409. background-color:transparent;
  10410. border-color:transparent;
  10411. }
  10412. #u16508_input.hint.disabled {
  10413. position:absolute;
  10414. left:0px;
  10415. top:0px;
  10416. width:127px;
  10417. height:25px;
  10418. padding:2px 2px 2px 2px;
  10419. font-family:"Microsoft YaHei", sans-serif;
  10420. font-weight:400;
  10421. font-style:normal;
  10422. font-size:12px;
  10423. letter-spacing:normal;
  10424. color:#AAAAAA;
  10425. vertical-align:none;
  10426. text-align:left;
  10427. text-transform:none;
  10428. background-color:transparent;
  10429. border-color:transparent;
  10430. }
  10431. #u16508_div {
  10432. border-width:0px;
  10433. position:absolute;
  10434. left:0px;
  10435. top:0px;
  10436. width:127px;
  10437. height:25px;
  10438. background:inherit;
  10439. background-color:rgba(255, 255, 255, 1);
  10440. border-radius:0px;
  10441. filter:drop-shadow(none);
  10442. transition:none;
  10443. font-family:"Microsoft YaHei", sans-serif;
  10444. font-weight:400;
  10445. font-style:normal;
  10446. font-size:10px;
  10447. }
  10448. #u16508 {
  10449. border-width:0px;
  10450. position:absolute;
  10451. left:1408px;
  10452. top:156px;
  10453. width:127px;
  10454. height:25px;
  10455. display:flex;
  10456. transition:none;
  10457. transform-origin:50% 50%;
  10458. font-family:"Microsoft YaHei", sans-serif;
  10459. font-weight:400;
  10460. font-style:normal;
  10461. font-size:10px;
  10462. }
  10463. #u16508 .text {
  10464. position:absolute;
  10465. align-self:center;
  10466. padding:2px 2px 2px 2px;
  10467. box-sizing:border-box;
  10468. width:100%;
  10469. }
  10470. #u16508_div.hint {
  10471. border-width:0px;
  10472. position:absolute;
  10473. left:0px;
  10474. top:0px;
  10475. width:127px;
  10476. height:25px;
  10477. background:inherit;
  10478. background-color:rgba(255, 255, 255, 1);
  10479. border-radius:0px;
  10480. filter:drop-shadow(none);
  10481. transition:none;
  10482. font-family:"Microsoft YaHei", sans-serif;
  10483. font-weight:400;
  10484. font-style:normal;
  10485. font-size:10px;
  10486. }
  10487. #u16508.hint {
  10488. }
  10489. #u16508_div.disabled {
  10490. border-width:0px;
  10491. position:absolute;
  10492. left:0px;
  10493. top:0px;
  10494. width:127px;
  10495. height:25px;
  10496. background:inherit;
  10497. background-color:rgba(240, 240, 240, 1);
  10498. border-radius:0px;
  10499. filter:drop-shadow(none);
  10500. transition:none;
  10501. font-family:"Microsoft YaHei", sans-serif;
  10502. font-weight:400;
  10503. font-style:normal;
  10504. font-size:10px;
  10505. }
  10506. #u16508.disabled {
  10507. }
  10508. #u16508_div.hint.disabled {
  10509. border-width:0px;
  10510. position:absolute;
  10511. left:0px;
  10512. top:0px;
  10513. width:127px;
  10514. height:25px;
  10515. background:inherit;
  10516. background-color:rgba(240, 240, 240, 1);
  10517. border-radius:0px;
  10518. filter:drop-shadow(none);
  10519. transition:none;
  10520. font-family:"Microsoft YaHei", sans-serif;
  10521. font-weight:400;
  10522. font-style:normal;
  10523. font-size:10px;
  10524. }
  10525. #u16508.hint.disabled {
  10526. }
  10527. #u16509 {
  10528. border-width:0px;
  10529. position:absolute;
  10530. left:0px;
  10531. top:0px;
  10532. width:0px;
  10533. height:0px;
  10534. }
  10535. #u16510_div {
  10536. border-width:0px;
  10537. position:absolute;
  10538. left:0px;
  10539. top:0px;
  10540. width:140px;
  10541. height:30px;
  10542. background:inherit;
  10543. background-color:rgba(255, 255, 255, 1);
  10544. box-sizing:border-box;
  10545. border-width:1px;
  10546. border-style:solid;
  10547. border-color:rgba(215, 215, 215, 1);
  10548. border-radius:4px;
  10549. filter:drop-shadow(none);
  10550. transition:none;
  10551. font-size:12px;
  10552. }
  10553. #u16510 {
  10554. border-width:0px;
  10555. position:absolute;
  10556. left:1250px;
  10557. top:194px;
  10558. width:140px;
  10559. height:30px;
  10560. display:flex;
  10561. transition:none;
  10562. transform-origin:50% 50%;
  10563. font-size:12px;
  10564. }
  10565. #u16510 .text {
  10566. position:absolute;
  10567. align-self:center;
  10568. padding:2px 2px 2px 2px;
  10569. box-sizing:border-box;
  10570. width:100%;
  10571. }
  10572. #u16510_text {
  10573. border-width:0px;
  10574. word-wrap:break-word;
  10575. text-transform:none;
  10576. visibility:hidden;
  10577. }
  10578. #u16511_input {
  10579. position:absolute;
  10580. left:0px;
  10581. top:0px;
  10582. width:134px;
  10583. height:23px;
  10584. padding:2px 2px 2px 2px;
  10585. font-family:"ArialMT", "Arial", sans-serif;
  10586. font-weight:400;
  10587. font-style:normal;
  10588. font-size:12px;
  10589. letter-spacing:normal;
  10590. color:#AAAAAA;
  10591. vertical-align:none;
  10592. text-align:left;
  10593. text-transform:none;
  10594. background-color:transparent;
  10595. border-color:transparent;
  10596. }
  10597. #u16511_input.disabled {
  10598. position:absolute;
  10599. left:0px;
  10600. top:0px;
  10601. width:134px;
  10602. height:23px;
  10603. padding:2px 2px 2px 2px;
  10604. font-family:"ArialMT", "Arial", sans-serif;
  10605. font-weight:400;
  10606. font-style:normal;
  10607. font-size:12px;
  10608. letter-spacing:normal;
  10609. color:#AAAAAA;
  10610. vertical-align:none;
  10611. text-align:left;
  10612. text-transform:none;
  10613. background-color:transparent;
  10614. border-color:transparent;
  10615. }
  10616. #u16511_div {
  10617. border-width:0px;
  10618. position:absolute;
  10619. left:0px;
  10620. top:0px;
  10621. width:134px;
  10622. height:23px;
  10623. background:inherit;
  10624. background-color:rgba(255, 255, 255, 1);
  10625. border-radius:0px;
  10626. filter:drop-shadow(none);
  10627. transition:none;
  10628. font-size:12px;
  10629. color:#AAAAAA;
  10630. }
  10631. #u16511 {
  10632. border-width:0px;
  10633. position:absolute;
  10634. left:1254px;
  10635. top:196px;
  10636. width:134px;
  10637. height:23px;
  10638. display:flex;
  10639. transition:none;
  10640. transform-origin:50% 50%;
  10641. font-size:12px;
  10642. color:#AAAAAA;
  10643. }
  10644. #u16511 .text {
  10645. position:absolute;
  10646. align-self:flex-start;
  10647. padding:2px 2px 2px 2px;
  10648. box-sizing:border-box;
  10649. width:100%;
  10650. }
  10651. #u16511_div.disabled {
  10652. border-width:0px;
  10653. position:absolute;
  10654. left:0px;
  10655. top:0px;
  10656. width:134px;
  10657. height:23px;
  10658. background:inherit;
  10659. background-color:rgba(240, 240, 240, 1);
  10660. border-radius:0px;
  10661. filter:drop-shadow(none);
  10662. transition:none;
  10663. font-size:12px;
  10664. color:#AAAAAA;
  10665. }
  10666. #u16511.disabled {
  10667. }
  10668. .u16511_input_option {
  10669. font-size:12px;
  10670. }
  10671. #u16512 {
  10672. border-width:0px;
  10673. position:absolute;
  10674. left:0px;
  10675. top:0px;
  10676. width:0px;
  10677. height:0px;
  10678. }
  10679. #u16513_div {
  10680. border-width:0px;
  10681. position:absolute;
  10682. left:0px;
  10683. top:0px;
  10684. width:140px;
  10685. height:30px;
  10686. background:inherit;
  10687. background-color:rgba(255, 255, 255, 1);
  10688. box-sizing:border-box;
  10689. border-width:1px;
  10690. border-style:solid;
  10691. border-color:rgba(215, 215, 215, 1);
  10692. border-radius:4px;
  10693. filter:drop-shadow(none);
  10694. transition:none;
  10695. font-size:12px;
  10696. }
  10697. #u16513 {
  10698. border-width:0px;
  10699. position:absolute;
  10700. left:1400px;
  10701. top:196px;
  10702. width:140px;
  10703. height:30px;
  10704. display:flex;
  10705. transition:none;
  10706. transform-origin:50% 50%;
  10707. font-size:12px;
  10708. }
  10709. #u16513 .text {
  10710. position:absolute;
  10711. align-self:center;
  10712. padding:2px 2px 2px 2px;
  10713. box-sizing:border-box;
  10714. width:100%;
  10715. }
  10716. #u16513_text {
  10717. border-width:0px;
  10718. word-wrap:break-word;
  10719. text-transform:none;
  10720. visibility:hidden;
  10721. }
  10722. #u16514_input {
  10723. position:absolute;
  10724. left:0px;
  10725. top:0px;
  10726. width:134px;
  10727. height:23px;
  10728. padding:2px 2px 2px 2px;
  10729. font-family:"ArialMT", "Arial", sans-serif;
  10730. font-weight:400;
  10731. font-style:normal;
  10732. font-size:12px;
  10733. letter-spacing:normal;
  10734. color:#AAAAAA;
  10735. vertical-align:none;
  10736. text-align:left;
  10737. text-transform:none;
  10738. background-color:transparent;
  10739. border-color:transparent;
  10740. }
  10741. #u16514_input.disabled {
  10742. position:absolute;
  10743. left:0px;
  10744. top:0px;
  10745. width:134px;
  10746. height:23px;
  10747. padding:2px 2px 2px 2px;
  10748. font-family:"ArialMT", "Arial", sans-serif;
  10749. font-weight:400;
  10750. font-style:normal;
  10751. font-size:12px;
  10752. letter-spacing:normal;
  10753. color:#AAAAAA;
  10754. vertical-align:none;
  10755. text-align:left;
  10756. text-transform:none;
  10757. background-color:transparent;
  10758. border-color:transparent;
  10759. }
  10760. #u16514_div {
  10761. border-width:0px;
  10762. position:absolute;
  10763. left:0px;
  10764. top:0px;
  10765. width:134px;
  10766. height:23px;
  10767. background:inherit;
  10768. background-color:rgba(255, 255, 255, 1);
  10769. border-radius:0px;
  10770. filter:drop-shadow(none);
  10771. transition:none;
  10772. font-size:12px;
  10773. color:#AAAAAA;
  10774. }
  10775. #u16514 {
  10776. border-width:0px;
  10777. position:absolute;
  10778. left:1404px;
  10779. top:198px;
  10780. width:134px;
  10781. height:23px;
  10782. display:flex;
  10783. transition:none;
  10784. transform-origin:50% 50%;
  10785. font-size:12px;
  10786. color:#AAAAAA;
  10787. }
  10788. #u16514 .text {
  10789. position:absolute;
  10790. align-self:flex-start;
  10791. padding:2px 2px 2px 2px;
  10792. box-sizing:border-box;
  10793. width:100%;
  10794. }
  10795. #u16514_div.disabled {
  10796. border-width:0px;
  10797. position:absolute;
  10798. left:0px;
  10799. top:0px;
  10800. width:134px;
  10801. height:23px;
  10802. background:inherit;
  10803. background-color:rgba(240, 240, 240, 1);
  10804. border-radius:0px;
  10805. filter:drop-shadow(none);
  10806. transition:none;
  10807. font-size:12px;
  10808. color:#AAAAAA;
  10809. }
  10810. #u16514.disabled {
  10811. }
  10812. .u16514_input_option {
  10813. font-size:12px;
  10814. }
  10815. #u16515 {
  10816. border-width:0px;
  10817. position:absolute;
  10818. left:0px;
  10819. top:0px;
  10820. width:0px;
  10821. height:0px;
  10822. }
  10823. #u16516_div {
  10824. border-width:0px;
  10825. position:absolute;
  10826. left:0px;
  10827. top:0px;
  10828. width:140px;
  10829. height:30px;
  10830. background:inherit;
  10831. background-color:rgba(255, 255, 255, 1);
  10832. box-sizing:border-box;
  10833. border-width:1px;
  10834. border-style:solid;
  10835. border-color:rgba(201, 201, 201, 1);
  10836. border-radius:4px;
  10837. filter:drop-shadow(none);
  10838. transition:none;
  10839. font-family:"Microsoft YaHei", sans-serif;
  10840. font-weight:400;
  10841. font-style:normal;
  10842. font-size:14px;
  10843. color:#CCCCCC;
  10844. text-align:left;
  10845. }
  10846. #u16516 {
  10847. border-width:0px;
  10848. position:absolute;
  10849. left:650px;
  10850. top:196px;
  10851. width:140px;
  10852. height:30px;
  10853. display:flex;
  10854. transition:none;
  10855. transform-origin:50% 50%;
  10856. font-family:"Microsoft YaHei", sans-serif;
  10857. font-weight:400;
  10858. font-style:normal;
  10859. font-size:14px;
  10860. color:#CCCCCC;
  10861. text-align:left;
  10862. }
  10863. #u16516 .text {
  10864. position:absolute;
  10865. align-self:center;
  10866. padding:2px 8px 2px 8px;
  10867. box-sizing:border-box;
  10868. width:100%;
  10869. }
  10870. #u16516_text {
  10871. border-width:0px;
  10872. word-wrap:break-word;
  10873. text-transform:none;
  10874. visibility:hidden;
  10875. }
  10876. #u16517_input {
  10877. position:absolute;
  10878. left:0px;
  10879. top:0px;
  10880. width:127px;
  10881. height:25px;
  10882. padding:2px 2px 2px 2px;
  10883. font-family:"Microsoft YaHei", sans-serif;
  10884. font-weight:400;
  10885. font-style:normal;
  10886. font-size:10px;
  10887. letter-spacing:normal;
  10888. color:#000000;
  10889. vertical-align:none;
  10890. text-align:left;
  10891. text-transform:none;
  10892. background-color:transparent;
  10893. border-color:transparent;
  10894. }
  10895. #u16517_input.hint {
  10896. position:absolute;
  10897. left:0px;
  10898. top:0px;
  10899. width:127px;
  10900. height:25px;
  10901. padding:2px 2px 2px 2px;
  10902. font-family:"Microsoft YaHei", sans-serif;
  10903. font-weight:400;
  10904. font-style:normal;
  10905. font-size:12px;
  10906. letter-spacing:normal;
  10907. color:#AAAAAA;
  10908. vertical-align:none;
  10909. text-align:left;
  10910. text-transform:none;
  10911. background-color:transparent;
  10912. border-color:transparent;
  10913. }
  10914. #u16517_input.disabled {
  10915. position:absolute;
  10916. left:0px;
  10917. top:0px;
  10918. width:127px;
  10919. height:25px;
  10920. padding:2px 2px 2px 2px;
  10921. font-family:"Microsoft YaHei", sans-serif;
  10922. font-weight:400;
  10923. font-style:normal;
  10924. font-size:10px;
  10925. letter-spacing:normal;
  10926. color:#000000;
  10927. vertical-align:none;
  10928. text-align:left;
  10929. text-transform:none;
  10930. background-color:transparent;
  10931. border-color:transparent;
  10932. }
  10933. #u16517_input.hint.disabled {
  10934. position:absolute;
  10935. left:0px;
  10936. top:0px;
  10937. width:127px;
  10938. height:25px;
  10939. padding:2px 2px 2px 2px;
  10940. font-family:"Microsoft YaHei", sans-serif;
  10941. font-weight:400;
  10942. font-style:normal;
  10943. font-size:12px;
  10944. letter-spacing:normal;
  10945. color:#AAAAAA;
  10946. vertical-align:none;
  10947. text-align:left;
  10948. text-transform:none;
  10949. background-color:transparent;
  10950. border-color:transparent;
  10951. }
  10952. #u16517_div {
  10953. border-width:0px;
  10954. position:absolute;
  10955. left:0px;
  10956. top:0px;
  10957. width:127px;
  10958. height:25px;
  10959. background:inherit;
  10960. background-color:rgba(255, 255, 255, 1);
  10961. border-radius:0px;
  10962. filter:drop-shadow(none);
  10963. transition:none;
  10964. font-family:"Microsoft YaHei", sans-serif;
  10965. font-weight:400;
  10966. font-style:normal;
  10967. font-size:10px;
  10968. }
  10969. #u16517 {
  10970. border-width:0px;
  10971. position:absolute;
  10972. left:658px;
  10973. top:197px;
  10974. width:127px;
  10975. height:25px;
  10976. display:flex;
  10977. transition:none;
  10978. transform-origin:50% 50%;
  10979. font-family:"Microsoft YaHei", sans-serif;
  10980. font-weight:400;
  10981. font-style:normal;
  10982. font-size:10px;
  10983. }
  10984. #u16517 .text {
  10985. position:absolute;
  10986. align-self:center;
  10987. padding:2px 2px 2px 2px;
  10988. box-sizing:border-box;
  10989. width:100%;
  10990. }
  10991. #u16517_div.hint {
  10992. border-width:0px;
  10993. position:absolute;
  10994. left:0px;
  10995. top:0px;
  10996. width:127px;
  10997. height:25px;
  10998. background:inherit;
  10999. background-color:rgba(255, 255, 255, 1);
  11000. border-radius:0px;
  11001. filter:drop-shadow(none);
  11002. transition:none;
  11003. font-family:"Microsoft YaHei", sans-serif;
  11004. font-weight:400;
  11005. font-style:normal;
  11006. font-size:10px;
  11007. }
  11008. #u16517.hint {
  11009. }
  11010. #u16517_div.disabled {
  11011. border-width:0px;
  11012. position:absolute;
  11013. left:0px;
  11014. top:0px;
  11015. width:127px;
  11016. height:25px;
  11017. background:inherit;
  11018. background-color:rgba(240, 240, 240, 1);
  11019. border-radius:0px;
  11020. filter:drop-shadow(none);
  11021. transition:none;
  11022. font-family:"Microsoft YaHei", sans-serif;
  11023. font-weight:400;
  11024. font-style:normal;
  11025. font-size:10px;
  11026. }
  11027. #u16517.disabled {
  11028. }
  11029. #u16517_div.hint.disabled {
  11030. border-width:0px;
  11031. position:absolute;
  11032. left:0px;
  11033. top:0px;
  11034. width:127px;
  11035. height:25px;
  11036. background:inherit;
  11037. background-color:rgba(240, 240, 240, 1);
  11038. border-radius:0px;
  11039. filter:drop-shadow(none);
  11040. transition:none;
  11041. font-family:"Microsoft YaHei", sans-serif;
  11042. font-weight:400;
  11043. font-style:normal;
  11044. font-size:10px;
  11045. }
  11046. #u16517.hint.disabled {
  11047. }
  11048. #u16518 {
  11049. border-width:0px;
  11050. position:absolute;
  11051. left:0px;
  11052. top:0px;
  11053. width:0px;
  11054. height:0px;
  11055. }
  11056. #u16519 {
  11057. border-width:0px;
  11058. position:absolute;
  11059. left:0px;
  11060. top:0px;
  11061. width:0px;
  11062. height:0px;
  11063. }
  11064. #u16520_div {
  11065. border-width:0px;
  11066. position:absolute;
  11067. left:0px;
  11068. top:0px;
  11069. width:380px;
  11070. height:160px;
  11071. background:inherit;
  11072. background-color:rgba(255, 255, 255, 1);
  11073. box-sizing:border-box;
  11074. border-width:1px;
  11075. border-style:solid;
  11076. border-color:rgba(242, 242, 242, 1);
  11077. border-radius:4px;
  11078. filter:drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.4470588235294118));
  11079. transition:none;
  11080. font-family:"Microsoft YaHei", sans-serif;
  11081. font-weight:400;
  11082. font-style:normal;
  11083. }
  11084. #u16520 {
  11085. border-width:0px;
  11086. position:absolute;
  11087. left:808px;
  11088. top:906px;
  11089. width:380px;
  11090. height:160px;
  11091. display:flex;
  11092. transition:none;
  11093. transform-origin:50% 50%;
  11094. font-family:"Microsoft YaHei", sans-serif;
  11095. font-weight:400;
  11096. font-style:normal;
  11097. }
  11098. #u16520 .text {
  11099. position:absolute;
  11100. align-self:center;
  11101. padding:2px 2px 2px 2px;
  11102. box-sizing:border-box;
  11103. width:100%;
  11104. }
  11105. #u16520_text {
  11106. border-width:0px;
  11107. word-wrap:break-word;
  11108. text-transform:none;
  11109. visibility:hidden;
  11110. }
  11111. #u16521_div {
  11112. border-width:0px;
  11113. position:absolute;
  11114. left:0px;
  11115. top:0px;
  11116. width:127px;
  11117. height:21px;
  11118. background:inherit;
  11119. background-color:rgba(255, 255, 255, 0);
  11120. border-radius:0px;
  11121. filter:drop-shadow(none);
  11122. transition:none;
  11123. font-family:"PingFangSC-Semibold", "PingFang SC Semibold", "PingFang SC", sans-serif;
  11124. font-weight:650;
  11125. font-style:normal;
  11126. font-size:18px;
  11127. color:#000000;
  11128. line-height:22px;
  11129. }
  11130. #u16521 {
  11131. border-width:0px;
  11132. position:absolute;
  11133. left:868px;
  11134. top:931px;
  11135. width:127px;
  11136. height:21px;
  11137. display:flex;
  11138. transition:none;
  11139. transform-origin:50% 50%;
  11140. font-family:"PingFangSC-Semibold", "PingFang SC Semibold", "PingFang SC", sans-serif;
  11141. font-weight:650;
  11142. font-style:normal;
  11143. font-size:18px;
  11144. color:#000000;
  11145. line-height:22px;
  11146. }
  11147. #u16521 .text {
  11148. position:absolute;
  11149. align-self:flex-start;
  11150. padding:0px 0px 0px 0px;
  11151. box-sizing:border-box;
  11152. width:100%;
  11153. }
  11154. #u16521_text {
  11155. border-width:0px;
  11156. white-space:nowrap;
  11157. text-transform:none;
  11158. }
  11159. #u16522_div {
  11160. border-width:0px;
  11161. position:absolute;
  11162. left:0px;
  11163. top:0px;
  11164. width:61px;
  11165. height:32px;
  11166. background:inherit;
  11167. background-color:rgba(24, 144, 255, 1);
  11168. border-radius:4px;
  11169. filter:drop-shadow(none);
  11170. transition:none;
  11171. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  11172. font-weight:400;
  11173. font-style:normal;
  11174. font-size:14px;
  11175. color:#FFFFFF;
  11176. }
  11177. #u16522 {
  11178. border-width:0px;
  11179. position:absolute;
  11180. left:1107px;
  11181. top:1018px;
  11182. width:61px;
  11183. height:32px;
  11184. display:flex;
  11185. transition:none;
  11186. transform-origin:50% 50%;
  11187. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  11188. font-weight:400;
  11189. font-style:normal;
  11190. font-size:14px;
  11191. color:#FFFFFF;
  11192. }
  11193. #u16522 .text {
  11194. position:absolute;
  11195. align-self:center;
  11196. padding:2px 16px 2px 16px;
  11197. box-sizing:border-box;
  11198. width:100%;
  11199. }
  11200. #u16522_text {
  11201. border-width:0px;
  11202. white-space:nowrap;
  11203. text-transform:none;
  11204. }
  11205. #u16523 {
  11206. border-width:0px;
  11207. position:absolute;
  11208. left:837px;
  11209. top:935px;
  11210. width:20px;
  11211. height:20px;
  11212. display:flex;
  11213. transition:none;
  11214. }
  11215. #u16523 .text {
  11216. position:absolute;
  11217. align-self:center;
  11218. padding:2px 2px 2px 2px;
  11219. box-sizing:border-box;
  11220. width:100%;
  11221. }
  11222. #u16523_img {
  11223. border-width:0px;
  11224. position:absolute;
  11225. left:0px;
  11226. top:0px;
  11227. width:20px;
  11228. height:20px;
  11229. }
  11230. #u16523_text {
  11231. border-width:0px;
  11232. word-wrap:break-word;
  11233. text-transform:none;
  11234. visibility:hidden;
  11235. }
  11236. #u16524_div {
  11237. border-width:0px;
  11238. position:absolute;
  11239. left:0px;
  11240. top:0px;
  11241. width:300px;
  11242. height:44px;
  11243. background:inherit;
  11244. background-color:rgba(255, 255, 255, 0);
  11245. border-radius:0px;
  11246. filter:drop-shadow(none);
  11247. transition:none;
  11248. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  11249. font-weight:400;
  11250. font-style:normal;
  11251. font-size:14px;
  11252. color:#7F7F7F;
  11253. line-height:22px;
  11254. }
  11255. #u16524 {
  11256. border-width:0px;
  11257. position:absolute;
  11258. left:868px;
  11259. top:965px;
  11260. width:300px;
  11261. height:44px;
  11262. display:flex;
  11263. transition:none;
  11264. transform-origin:50% 50%;
  11265. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  11266. font-weight:400;
  11267. font-style:normal;
  11268. font-size:14px;
  11269. color:#7F7F7F;
  11270. line-height:22px;
  11271. }
  11272. #u16524 .text {
  11273. position:absolute;
  11274. align-self:flex-start;
  11275. padding:0px 0px 0px 0px;
  11276. box-sizing:border-box;
  11277. width:100%;
  11278. }
  11279. #u16524_text {
  11280. border-width:0px;
  11281. word-wrap:break-word;
  11282. text-transform:none;
  11283. }
  11284. #u16525_div {
  11285. border-width:0px;
  11286. position:absolute;
  11287. left:0px;
  11288. top:0px;
  11289. width:66px;
  11290. height:32px;
  11291. background:inherit;
  11292. background-color:rgba(255, 255, 255, 1);
  11293. box-sizing:border-box;
  11294. border-width:1px;
  11295. border-style:solid;
  11296. border-color:rgba(217, 217, 217, 1);
  11297. border-radius:4px;
  11298. filter:drop-shadow(none);
  11299. transition:none;
  11300. font-family:"Microsoft YaHei", sans-serif;
  11301. font-weight:400;
  11302. font-style:normal;
  11303. font-size:14px;
  11304. color:rgba(0, 0, 0, 0.6470588235294118);
  11305. line-height:21px;
  11306. }
  11307. #u16525 {
  11308. border-width:0px;
  11309. position:absolute;
  11310. left:1024px;
  11311. top:1018px;
  11312. width:66px;
  11313. height:32px;
  11314. display:flex;
  11315. transition:none;
  11316. transform-origin:50% 50%;
  11317. font-family:"Microsoft YaHei", sans-serif;
  11318. font-weight:400;
  11319. font-style:normal;
  11320. font-size:14px;
  11321. color:rgba(0, 0, 0, 0.6470588235294118);
  11322. line-height:21px;
  11323. }
  11324. #u16525 .text {
  11325. position:absolute;
  11326. align-self:center;
  11327. padding:2px 16px 2px 16px;
  11328. box-sizing:border-box;
  11329. width:100%;
  11330. }
  11331. #u16525_text {
  11332. border-width:0px;
  11333. white-space:nowrap;
  11334. text-transform:none;
  11335. }
  11336. #u16526 {
  11337. border-width:0px;
  11338. position:absolute;
  11339. left:0px;
  11340. top:0px;
  11341. width:0px;
  11342. height:0px;
  11343. }
  11344. #u16527 {
  11345. border-width:0px;
  11346. position:absolute;
  11347. left:0px;
  11348. top:0px;
  11349. width:0px;
  11350. height:0px;
  11351. }
  11352. #u16528_div {
  11353. border-width:0px;
  11354. position:absolute;
  11355. left:0px;
  11356. top:0px;
  11357. width:380px;
  11358. height:160px;
  11359. background:inherit;
  11360. background-color:rgba(255, 255, 255, 1);
  11361. box-sizing:border-box;
  11362. border-width:1px;
  11363. border-style:solid;
  11364. border-color:rgba(242, 242, 242, 1);
  11365. border-radius:4px;
  11366. filter:drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.4470588235294118));
  11367. transition:none;
  11368. font-family:"Microsoft YaHei", sans-serif;
  11369. font-weight:400;
  11370. font-style:normal;
  11371. }
  11372. #u16528 {
  11373. border-width:0px;
  11374. position:absolute;
  11375. left:808px;
  11376. top:468px;
  11377. width:380px;
  11378. height:160px;
  11379. display:flex;
  11380. transition:none;
  11381. transform-origin:50% 50%;
  11382. font-family:"Microsoft YaHei", sans-serif;
  11383. font-weight:400;
  11384. font-style:normal;
  11385. }
  11386. #u16528 .text {
  11387. position:absolute;
  11388. align-self:center;
  11389. padding:2px 2px 2px 2px;
  11390. box-sizing:border-box;
  11391. width:100%;
  11392. }
  11393. #u16528_text {
  11394. border-width:0px;
  11395. word-wrap:break-word;
  11396. text-transform:none;
  11397. visibility:hidden;
  11398. }
  11399. #u16529_div {
  11400. border-width:0px;
  11401. position:absolute;
  11402. left:0px;
  11403. top:0px;
  11404. width:127px;
  11405. height:21px;
  11406. background:inherit;
  11407. background-color:rgba(255, 255, 255, 0);
  11408. border-radius:0px;
  11409. filter:drop-shadow(none);
  11410. transition:none;
  11411. font-family:"PingFangSC-Semibold", "PingFang SC Semibold", "PingFang SC", sans-serif;
  11412. font-weight:650;
  11413. font-style:normal;
  11414. font-size:18px;
  11415. color:#000000;
  11416. line-height:22px;
  11417. }
  11418. #u16529 {
  11419. border-width:0px;
  11420. position:absolute;
  11421. left:868px;
  11422. top:493px;
  11423. width:127px;
  11424. height:21px;
  11425. display:flex;
  11426. transition:none;
  11427. transform-origin:50% 50%;
  11428. font-family:"PingFangSC-Semibold", "PingFang SC Semibold", "PingFang SC", sans-serif;
  11429. font-weight:650;
  11430. font-style:normal;
  11431. font-size:18px;
  11432. color:#000000;
  11433. line-height:22px;
  11434. }
  11435. #u16529 .text {
  11436. position:absolute;
  11437. align-self:flex-start;
  11438. padding:0px 0px 0px 0px;
  11439. box-sizing:border-box;
  11440. width:100%;
  11441. }
  11442. #u16529_text {
  11443. border-width:0px;
  11444. white-space:nowrap;
  11445. text-transform:none;
  11446. }
  11447. #u16530_div {
  11448. border-width:0px;
  11449. position:absolute;
  11450. left:0px;
  11451. top:0px;
  11452. width:61px;
  11453. height:32px;
  11454. background:inherit;
  11455. background-color:rgba(24, 144, 255, 1);
  11456. border-radius:4px;
  11457. filter:drop-shadow(none);
  11458. transition:none;
  11459. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  11460. font-weight:400;
  11461. font-style:normal;
  11462. font-size:14px;
  11463. color:#FFFFFF;
  11464. }
  11465. #u16530 {
  11466. border-width:0px;
  11467. position:absolute;
  11468. left:1107px;
  11469. top:580px;
  11470. width:61px;
  11471. height:32px;
  11472. display:flex;
  11473. transition:none;
  11474. transform-origin:50% 50%;
  11475. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  11476. font-weight:400;
  11477. font-style:normal;
  11478. font-size:14px;
  11479. color:#FFFFFF;
  11480. }
  11481. #u16530 .text {
  11482. position:absolute;
  11483. align-self:center;
  11484. padding:2px 16px 2px 16px;
  11485. box-sizing:border-box;
  11486. width:100%;
  11487. }
  11488. #u16530_text {
  11489. border-width:0px;
  11490. white-space:nowrap;
  11491. text-transform:none;
  11492. }
  11493. #u16531 {
  11494. border-width:0px;
  11495. position:absolute;
  11496. left:837px;
  11497. top:497px;
  11498. width:20px;
  11499. height:20px;
  11500. display:flex;
  11501. transition:none;
  11502. }
  11503. #u16531 .text {
  11504. position:absolute;
  11505. align-self:center;
  11506. padding:2px 2px 2px 2px;
  11507. box-sizing:border-box;
  11508. width:100%;
  11509. }
  11510. #u16531_img {
  11511. border-width:0px;
  11512. position:absolute;
  11513. left:0px;
  11514. top:0px;
  11515. width:20px;
  11516. height:20px;
  11517. }
  11518. #u16531_text {
  11519. border-width:0px;
  11520. word-wrap:break-word;
  11521. text-transform:none;
  11522. visibility:hidden;
  11523. }
  11524. #u16532_div {
  11525. border-width:0px;
  11526. position:absolute;
  11527. left:0px;
  11528. top:0px;
  11529. width:300px;
  11530. height:44px;
  11531. background:inherit;
  11532. background-color:rgba(255, 255, 255, 0);
  11533. border-radius:0px;
  11534. filter:drop-shadow(none);
  11535. transition:none;
  11536. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  11537. font-weight:400;
  11538. font-style:normal;
  11539. font-size:14px;
  11540. color:#7F7F7F;
  11541. line-height:22px;
  11542. }
  11543. #u16532 {
  11544. border-width:0px;
  11545. position:absolute;
  11546. left:868px;
  11547. top:527px;
  11548. width:300px;
  11549. height:44px;
  11550. display:flex;
  11551. transition:none;
  11552. transform-origin:50% 50%;
  11553. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  11554. font-weight:400;
  11555. font-style:normal;
  11556. font-size:14px;
  11557. color:#7F7F7F;
  11558. line-height:22px;
  11559. }
  11560. #u16532 .text {
  11561. position:absolute;
  11562. align-self:flex-start;
  11563. padding:0px 0px 0px 0px;
  11564. box-sizing:border-box;
  11565. width:100%;
  11566. }
  11567. #u16532_text {
  11568. border-width:0px;
  11569. word-wrap:break-word;
  11570. text-transform:none;
  11571. }
  11572. #u16533_div {
  11573. border-width:0px;
  11574. position:absolute;
  11575. left:0px;
  11576. top:0px;
  11577. width:66px;
  11578. height:32px;
  11579. background:inherit;
  11580. background-color:rgba(255, 255, 255, 1);
  11581. box-sizing:border-box;
  11582. border-width:1px;
  11583. border-style:solid;
  11584. border-color:rgba(217, 217, 217, 1);
  11585. border-radius:4px;
  11586. filter:drop-shadow(none);
  11587. transition:none;
  11588. font-family:"Microsoft YaHei", sans-serif;
  11589. font-weight:400;
  11590. font-style:normal;
  11591. font-size:14px;
  11592. color:rgba(0, 0, 0, 0.6470588235294118);
  11593. line-height:21px;
  11594. }
  11595. #u16533 {
  11596. border-width:0px;
  11597. position:absolute;
  11598. left:1024px;
  11599. top:580px;
  11600. width:66px;
  11601. height:32px;
  11602. display:flex;
  11603. transition:none;
  11604. transform-origin:50% 50%;
  11605. font-family:"Microsoft YaHei", sans-serif;
  11606. font-weight:400;
  11607. font-style:normal;
  11608. font-size:14px;
  11609. color:rgba(0, 0, 0, 0.6470588235294118);
  11610. line-height:21px;
  11611. }
  11612. #u16533 .text {
  11613. position:absolute;
  11614. align-self:center;
  11615. padding:2px 16px 2px 16px;
  11616. box-sizing:border-box;
  11617. width:100%;
  11618. }
  11619. #u16533_text {
  11620. border-width:0px;
  11621. white-space:nowrap;
  11622. text-transform:none;
  11623. }
  11624. #u16534 {
  11625. border-width:0px;
  11626. position:absolute;
  11627. left:0px;
  11628. top:0px;
  11629. width:0px;
  11630. height:0px;
  11631. }
  11632. #u16535 {
  11633. border-width:0px;
  11634. position:absolute;
  11635. left:0px;
  11636. top:0px;
  11637. width:0px;
  11638. height:0px;
  11639. }
  11640. #u16536_div {
  11641. border-width:0px;
  11642. position:absolute;
  11643. left:0px;
  11644. top:0px;
  11645. width:380px;
  11646. height:240px;
  11647. background:inherit;
  11648. background-color:rgba(255, 255, 255, 1);
  11649. box-sizing:border-box;
  11650. border-width:1px;
  11651. border-style:solid;
  11652. border-color:rgba(242, 242, 242, 1);
  11653. border-radius:4px;
  11654. filter:drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.4470588235294118));
  11655. transition:none;
  11656. font-family:"Microsoft YaHei", sans-serif;
  11657. font-weight:400;
  11658. font-style:normal;
  11659. }
  11660. #u16536 {
  11661. border-width:0px;
  11662. position:absolute;
  11663. left:808px;
  11664. top:646px;
  11665. width:380px;
  11666. height:240px;
  11667. display:flex;
  11668. transition:none;
  11669. transform-origin:50% 50%;
  11670. font-family:"Microsoft YaHei", sans-serif;
  11671. font-weight:400;
  11672. font-style:normal;
  11673. }
  11674. #u16536 .text {
  11675. position:absolute;
  11676. align-self:center;
  11677. padding:2px 2px 2px 2px;
  11678. box-sizing:border-box;
  11679. width:100%;
  11680. }
  11681. #u16536_text {
  11682. border-width:0px;
  11683. word-wrap:break-word;
  11684. text-transform:none;
  11685. visibility:hidden;
  11686. }
  11687. #u16537_div {
  11688. border-width:0px;
  11689. position:absolute;
  11690. left:0px;
  11691. top:0px;
  11692. width:127px;
  11693. height:21px;
  11694. background:inherit;
  11695. background-color:rgba(255, 255, 255, 0);
  11696. border-radius:0px;
  11697. filter:drop-shadow(none);
  11698. transition:none;
  11699. font-family:"PingFangSC-Semibold", "PingFang SC Semibold", "PingFang SC", sans-serif;
  11700. font-weight:650;
  11701. font-style:normal;
  11702. font-size:18px;
  11703. color:#000000;
  11704. line-height:22px;
  11705. }
  11706. #u16537 {
  11707. border-width:0px;
  11708. position:absolute;
  11709. left:868px;
  11710. top:671px;
  11711. width:127px;
  11712. height:21px;
  11713. display:flex;
  11714. transition:none;
  11715. transform-origin:50% 50%;
  11716. font-family:"PingFangSC-Semibold", "PingFang SC Semibold", "PingFang SC", sans-serif;
  11717. font-weight:650;
  11718. font-style:normal;
  11719. font-size:18px;
  11720. color:#000000;
  11721. line-height:22px;
  11722. }
  11723. #u16537 .text {
  11724. position:absolute;
  11725. align-self:flex-start;
  11726. padding:0px 0px 0px 0px;
  11727. box-sizing:border-box;
  11728. width:100%;
  11729. }
  11730. #u16537_text {
  11731. border-width:0px;
  11732. white-space:nowrap;
  11733. text-transform:none;
  11734. }
  11735. #u16538_div {
  11736. border-width:0px;
  11737. position:absolute;
  11738. left:0px;
  11739. top:0px;
  11740. width:61px;
  11741. height:32px;
  11742. background:inherit;
  11743. background-color:rgba(24, 144, 255, 1);
  11744. border-radius:4px;
  11745. filter:drop-shadow(none);
  11746. transition:none;
  11747. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  11748. font-weight:400;
  11749. font-style:normal;
  11750. font-size:14px;
  11751. color:#FFFFFF;
  11752. }
  11753. #u16538 {
  11754. border-width:0px;
  11755. position:absolute;
  11756. left:1107px;
  11757. top:836px;
  11758. width:61px;
  11759. height:32px;
  11760. display:flex;
  11761. transition:none;
  11762. transform-origin:50% 50%;
  11763. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  11764. font-weight:400;
  11765. font-style:normal;
  11766. font-size:14px;
  11767. color:#FFFFFF;
  11768. }
  11769. #u16538 .text {
  11770. position:absolute;
  11771. align-self:center;
  11772. padding:2px 16px 2px 16px;
  11773. box-sizing:border-box;
  11774. width:100%;
  11775. }
  11776. #u16538_text {
  11777. border-width:0px;
  11778. white-space:nowrap;
  11779. text-transform:none;
  11780. }
  11781. #u16539 {
  11782. border-width:0px;
  11783. position:absolute;
  11784. left:837px;
  11785. top:675px;
  11786. width:20px;
  11787. height:20px;
  11788. display:flex;
  11789. transition:none;
  11790. }
  11791. #u16539 .text {
  11792. position:absolute;
  11793. align-self:center;
  11794. padding:2px 2px 2px 2px;
  11795. box-sizing:border-box;
  11796. width:100%;
  11797. }
  11798. #u16539_img {
  11799. border-width:0px;
  11800. position:absolute;
  11801. left:0px;
  11802. top:0px;
  11803. width:20px;
  11804. height:20px;
  11805. }
  11806. #u16539_text {
  11807. border-width:0px;
  11808. word-wrap:break-word;
  11809. text-transform:none;
  11810. visibility:hidden;
  11811. }
  11812. #u16540_div {
  11813. border-width:0px;
  11814. position:absolute;
  11815. left:0px;
  11816. top:0px;
  11817. width:300px;
  11818. height:22px;
  11819. background:inherit;
  11820. background-color:rgba(255, 255, 255, 0);
  11821. border-radius:0px;
  11822. filter:drop-shadow(none);
  11823. transition:none;
  11824. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  11825. font-weight:400;
  11826. font-style:normal;
  11827. font-size:14px;
  11828. color:#7F7F7F;
  11829. line-height:22px;
  11830. }
  11831. #u16540 {
  11832. border-width:0px;
  11833. position:absolute;
  11834. left:868px;
  11835. top:705px;
  11836. width:300px;
  11837. height:22px;
  11838. display:flex;
  11839. transition:none;
  11840. transform-origin:50% 50%;
  11841. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  11842. font-weight:400;
  11843. font-style:normal;
  11844. font-size:14px;
  11845. color:#7F7F7F;
  11846. line-height:22px;
  11847. }
  11848. #u16540 .text {
  11849. position:absolute;
  11850. align-self:flex-start;
  11851. padding:0px 0px 0px 0px;
  11852. box-sizing:border-box;
  11853. width:100%;
  11854. }
  11855. #u16540_text {
  11856. border-width:0px;
  11857. word-wrap:break-word;
  11858. text-transform:none;
  11859. }
  11860. #u16541_div {
  11861. border-width:0px;
  11862. position:absolute;
  11863. left:0px;
  11864. top:0px;
  11865. width:66px;
  11866. height:32px;
  11867. background:inherit;
  11868. background-color:rgba(255, 255, 255, 1);
  11869. box-sizing:border-box;
  11870. border-width:1px;
  11871. border-style:solid;
  11872. border-color:rgba(217, 217, 217, 1);
  11873. border-radius:4px;
  11874. filter:drop-shadow(none);
  11875. transition:none;
  11876. font-family:"Microsoft YaHei", sans-serif;
  11877. font-weight:400;
  11878. font-style:normal;
  11879. font-size:14px;
  11880. color:rgba(0, 0, 0, 0.6470588235294118);
  11881. line-height:21px;
  11882. }
  11883. #u16541 {
  11884. border-width:0px;
  11885. position:absolute;
  11886. left:1024px;
  11887. top:836px;
  11888. width:66px;
  11889. height:32px;
  11890. display:flex;
  11891. transition:none;
  11892. transform-origin:50% 50%;
  11893. font-family:"Microsoft YaHei", sans-serif;
  11894. font-weight:400;
  11895. font-style:normal;
  11896. font-size:14px;
  11897. color:rgba(0, 0, 0, 0.6470588235294118);
  11898. line-height:21px;
  11899. }
  11900. #u16541 .text {
  11901. position:absolute;
  11902. align-self:center;
  11903. padding:2px 16px 2px 16px;
  11904. box-sizing:border-box;
  11905. width:100%;
  11906. }
  11907. #u16541_text {
  11908. border-width:0px;
  11909. white-space:nowrap;
  11910. text-transform:none;
  11911. }
  11912. #u16542 {
  11913. border-width:0px;
  11914. position:absolute;
  11915. left:0px;
  11916. top:0px;
  11917. width:0px;
  11918. height:0px;
  11919. }
  11920. #u16543_div {
  11921. border-width:0px;
  11922. position:absolute;
  11923. left:0px;
  11924. top:0px;
  11925. width:300px;
  11926. height:80px;
  11927. background:inherit;
  11928. background-color:rgba(255, 255, 255, 1);
  11929. box-sizing:border-box;
  11930. border-width:1px;
  11931. border-style:solid;
  11932. border-color:rgba(201, 201, 201, 1);
  11933. border-radius:4px;
  11934. filter:drop-shadow(none);
  11935. transition:none;
  11936. font-family:"Microsoft YaHei", sans-serif;
  11937. font-weight:400;
  11938. font-style:normal;
  11939. font-size:14px;
  11940. color:#CCCCCC;
  11941. text-align:left;
  11942. }
  11943. #u16543 {
  11944. border-width:0px;
  11945. position:absolute;
  11946. left:868px;
  11947. top:746px;
  11948. width:300px;
  11949. height:80px;
  11950. display:flex;
  11951. transition:none;
  11952. transform-origin:50% 50%;
  11953. font-family:"Microsoft YaHei", sans-serif;
  11954. font-weight:400;
  11955. font-style:normal;
  11956. font-size:14px;
  11957. color:#CCCCCC;
  11958. text-align:left;
  11959. }
  11960. #u16543 .text {
  11961. position:absolute;
  11962. align-self:center;
  11963. padding:2px 8px 2px 8px;
  11964. box-sizing:border-box;
  11965. width:100%;
  11966. }
  11967. #u16543_text {
  11968. border-width:0px;
  11969. word-wrap:break-word;
  11970. text-transform:none;
  11971. visibility:hidden;
  11972. }
  11973. #u16544_input {
  11974. position:absolute;
  11975. left:0px;
  11976. top:0px;
  11977. width:288px;
  11978. height:70px;
  11979. padding:2px 2px 2px 2px;
  11980. font-family:"ArialMT", "Arial", sans-serif;
  11981. font-weight:400;
  11982. font-style:normal;
  11983. font-size:14px;
  11984. letter-spacing:normal;
  11985. color:#000000;
  11986. vertical-align:none;
  11987. text-align:left;
  11988. text-transform:none;
  11989. background-color:transparent;
  11990. border-color:transparent;
  11991. resize:none;
  11992. }
  11993. #u16544_input.hint {
  11994. position:absolute;
  11995. left:0px;
  11996. top:0px;
  11997. width:288px;
  11998. height:70px;
  11999. padding:2px 2px 2px 2px;
  12000. font-family:"ArialMT", "Arial", sans-serif;
  12001. font-weight:400;
  12002. font-style:normal;
  12003. font-size:14px;
  12004. letter-spacing:normal;
  12005. color:#999999;
  12006. vertical-align:none;
  12007. text-align:left;
  12008. text-transform:none;
  12009. background-color:transparent;
  12010. border-color:transparent;
  12011. resize:none;
  12012. }
  12013. #u16544_input.disabled {
  12014. position:absolute;
  12015. left:0px;
  12016. top:0px;
  12017. width:288px;
  12018. height:70px;
  12019. padding:2px 2px 2px 2px;
  12020. font-family:"ArialMT", "Arial", sans-serif;
  12021. font-weight:400;
  12022. font-style:normal;
  12023. font-size:14px;
  12024. letter-spacing:normal;
  12025. color:#000000;
  12026. vertical-align:none;
  12027. text-align:left;
  12028. text-transform:none;
  12029. background-color:transparent;
  12030. border-color:transparent;
  12031. resize:none;
  12032. }
  12033. #u16544_input.hint.disabled {
  12034. position:absolute;
  12035. left:0px;
  12036. top:0px;
  12037. width:288px;
  12038. height:70px;
  12039. padding:2px 2px 2px 2px;
  12040. font-family:"ArialMT", "Arial", sans-serif;
  12041. font-weight:400;
  12042. font-style:normal;
  12043. font-size:14px;
  12044. letter-spacing:normal;
  12045. color:#999999;
  12046. vertical-align:none;
  12047. text-align:left;
  12048. text-transform:none;
  12049. background-color:transparent;
  12050. border-color:transparent;
  12051. resize:none;
  12052. }
  12053. #u16544_div {
  12054. border-width:0px;
  12055. position:absolute;
  12056. left:0px;
  12057. top:0px;
  12058. width:288px;
  12059. height:70px;
  12060. background:inherit;
  12061. background-color:rgba(255, 255, 255, 1);
  12062. border-radius:0px;
  12063. filter:drop-shadow(none);
  12064. transition:none;
  12065. font-size:14px;
  12066. }
  12067. #u16544 {
  12068. border-width:0px;
  12069. position:absolute;
  12070. left:874px;
  12071. top:751px;
  12072. width:288px;
  12073. height:70px;
  12074. display:flex;
  12075. transition:none;
  12076. transform-origin:50% 50%;
  12077. font-size:14px;
  12078. }
  12079. #u16544 .text {
  12080. position:absolute;
  12081. align-self:flex-start;
  12082. padding:2px 2px 2px 2px;
  12083. box-sizing:border-box;
  12084. width:100%;
  12085. }
  12086. #u16544_div.hint {
  12087. border-width:0px;
  12088. position:absolute;
  12089. left:0px;
  12090. top:0px;
  12091. width:288px;
  12092. height:70px;
  12093. background:inherit;
  12094. background-color:rgba(255, 255, 255, 1);
  12095. border-radius:0px;
  12096. filter:drop-shadow(none);
  12097. transition:none;
  12098. font-size:14px;
  12099. }
  12100. #u16544.hint {
  12101. }
  12102. #u16544_div.disabled {
  12103. border-width:0px;
  12104. position:absolute;
  12105. left:0px;
  12106. top:0px;
  12107. width:288px;
  12108. height:70px;
  12109. background:inherit;
  12110. background-color:rgba(240, 240, 240, 1);
  12111. border-radius:0px;
  12112. filter:drop-shadow(none);
  12113. transition:none;
  12114. font-size:14px;
  12115. }
  12116. #u16544.disabled {
  12117. }
  12118. #u16544_div.hint.disabled {
  12119. border-width:0px;
  12120. position:absolute;
  12121. left:0px;
  12122. top:0px;
  12123. width:288px;
  12124. height:70px;
  12125. background:inherit;
  12126. background-color:rgba(240, 240, 240, 1);
  12127. border-radius:0px;
  12128. filter:drop-shadow(none);
  12129. transition:none;
  12130. font-size:14px;
  12131. }
  12132. #u16544.hint.disabled {
  12133. }
  12134. #u16545 {
  12135. border-width:0px;
  12136. position:absolute;
  12137. left:0px;
  12138. top:0px;
  12139. width:0px;
  12140. height:0px;
  12141. }
  12142. #u16546 {
  12143. border-width:0px;
  12144. position:absolute;
  12145. left:1271px;
  12146. top:511px;
  12147. width:10px;
  12148. height:10px;
  12149. display:flex;
  12150. transition:none;
  12151. }
  12152. #u16546 .text {
  12153. position:absolute;
  12154. align-self:center;
  12155. padding:2px 2px 2px 2px;
  12156. box-sizing:border-box;
  12157. width:100%;
  12158. }
  12159. #u16546_img {
  12160. border-width:0px;
  12161. position:absolute;
  12162. left:0px;
  12163. top:0px;
  12164. width:10px;
  12165. height:10px;
  12166. }
  12167. #u16546_text {
  12168. border-width:0px;
  12169. word-wrap:break-word;
  12170. text-transform:none;
  12171. visibility:hidden;
  12172. }
  12173. #u16547_div {
  12174. border-width:0px;
  12175. position:absolute;
  12176. left:0px;
  12177. top:0px;
  12178. width:145px;
  12179. height:32px;
  12180. background:inherit;
  12181. background-color:rgba(51, 51, 51, 1);
  12182. border-radius:82px;
  12183. filter:drop-shadow(0px 0px 2.5px rgba(0, 0, 0, 0.34901960784313724));
  12184. transition:none;
  12185. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  12186. font-weight:400;
  12187. font-style:normal;
  12188. font-size:14px;
  12189. color:#FFFFFF;
  12190. }
  12191. #u16547 {
  12192. border-width:0px;
  12193. position:absolute;
  12194. left:1266px;
  12195. top:475px;
  12196. width:145px;
  12197. height:32px;
  12198. display:flex;
  12199. transition:none;
  12200. transform-origin:50% 50%;
  12201. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  12202. font-weight:400;
  12203. font-style:normal;
  12204. font-size:14px;
  12205. color:#FFFFFF;
  12206. }
  12207. #u16547 .text {
  12208. position:absolute;
  12209. align-self:center;
  12210. padding:2px 16px 2px 16px;
  12211. box-sizing:border-box;
  12212. width:100%;
  12213. }
  12214. #u16547_text {
  12215. border-width:0px;
  12216. white-space:nowrap;
  12217. text-transform:none;
  12218. }