styles.css 224 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251122521225312254122551225612257122581225912260122611226212263122641226512266122671226812269122701227112272122731227412275122761227712278122791228012281122821228312284122851228612287122881228912290122911229212293122941229512296122971229812299123001230112302123031230412305123061230712308123091231012311123121231312314123151231612317123181231912320123211232212323123241232512326123271232812329123301233112332123331233412335123361233712338123391234012341123421234312344123451234612347123481234912350123511235212353123541235512356123571235812359123601236112362123631236412365123661236712368123691237012371123721237312374123751237612377123781237912380123811238212383123841238512386123871238812389123901239112392123931239412395123961239712398123991240012401124021240312404124051240612407124081240912410124111241212413124141241512416124171241812419124201242112422124231242412425124261242712428124291243012431124321243312434124351243612437124381243912440124411244212443124441244512446124471244812449124501245112452124531245412455124561245712458124591246012461124621246312464124651246612467124681246912470124711247212473124741247512476124771247812479124801248112482124831248412485124861248712488124891249012491124921249312494124951249612497124981249912500125011250212503125041250512506125071250812509125101251112512125131251412515125161251712518125191252012521125221252312524125251252612527125281252912530125311253212533125341253512536125371253812539125401254112542125431254412545125461254712548125491255012551125521255312554125551255612557125581255912560125611256212563125641256512566125671256812569125701257112572125731257412575125761257712578125791258012581125821258312584125851258612587125881258912590125911259212593125941259512596125971259812599126001260112602126031260412605126061260712608126091261012611126121261312614126151261612617126181261912620126211262212623126241262512626126271262812629126301263112632126331263412635126361263712638126391264012641126421264312644126451264612647126481264912650126511265212653126541265512656126571265812659126601266112662126631266412665126661266712668126691267012671126721267312674126751267612677126781267912680126811268212683126841268512686126871268812689126901269112692126931269412695126961269712698126991270012701127021270312704127051270612707127081270912710127111271212713127141271512716127171271812719127201272112722127231272412725127261272712728127291273012731127321273312734127351273612737127381273912740127411274212743127441274512746127471274812749127501275112752127531275412755127561275712758127591276012761127621276312764127651276612767127681276912770
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-0px;
  6. width:2620px;
  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. #u15822 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1600px;
  25. height:1250px;
  26. }
  27. #u15823_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. #u15823 {
  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. #u15823 .text {
  52. position:absolute;
  53. align-self:center;
  54. padding:2px 2px 2px 2px;
  55. box-sizing:border-box;
  56. width:100%;
  57. }
  58. #u15823_text {
  59. border-width:0px;
  60. word-wrap:break-word;
  61. text-transform:none;
  62. visibility:hidden;
  63. }
  64. #u15824_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. #u15824 {
  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. #u15824 .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. #u15824_text {
  100. border-width:0px;
  101. white-space:nowrap;
  102. text-transform:none;
  103. }
  104. #u15825_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. #u15825 {
  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. #u15825 .text {
  131. position:absolute;
  132. align-self:center;
  133. padding:2px 2px 2px 2px;
  134. box-sizing:border-box;
  135. width:100%;
  136. }
  137. #u15825_text {
  138. border-width:0px;
  139. word-wrap:break-word;
  140. text-transform:none;
  141. visibility:hidden;
  142. }
  143. #u15826 {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:0px;
  149. height:0px;
  150. }
  151. #u15827 {
  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. #u15827 .text {
  162. position:absolute;
  163. align-self:center;
  164. padding:2px 2px 2px 2px;
  165. box-sizing:border-box;
  166. width:100%;
  167. }
  168. #u15827_img {
  169. border-width:0px;
  170. position:absolute;
  171. left:0px;
  172. top:0px;
  173. width:31px;
  174. height:31px;
  175. }
  176. #u15827_text {
  177. border-width:0px;
  178. word-wrap:break-word;
  179. text-transform:none;
  180. }
  181. #u15828_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. #u15828 {
  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. #u15828 .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. #u15828_text {
  223. border-width:0px;
  224. white-space:nowrap;
  225. text-transform:none;
  226. }
  227. #u15829_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. #u15829 {
  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. #u15829 .text {
  254. position:absolute;
  255. align-self:center;
  256. padding:2px 2px 2px 2px;
  257. box-sizing:border-box;
  258. width:100%;
  259. }
  260. #u15829_text {
  261. border-width:0px;
  262. word-wrap:break-word;
  263. text-transform:none;
  264. visibility:hidden;
  265. }
  266. #u15830 {
  267. border-width:0px;
  268. position:absolute;
  269. left:0px;
  270. top:0px;
  271. width:0px;
  272. height:0px;
  273. }
  274. #u15831_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. #u15831 {
  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. #u15831 .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. #u15831_text {
  316. border-width:0px;
  317. white-space:nowrap;
  318. text-transform:none;
  319. }
  320. #u15832 {
  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. #u15832 .text {
  331. position:absolute;
  332. align-self:center;
  333. padding:2px 2px 2px 2px;
  334. box-sizing:border-box;
  335. width:100%;
  336. }
  337. #u15832_img {
  338. border-width:0px;
  339. position:absolute;
  340. left:0px;
  341. top:0px;
  342. width:14px;
  343. height:14px;
  344. }
  345. #u15832_text {
  346. border-width:0px;
  347. word-wrap:break-word;
  348. text-transform:none;
  349. visibility:hidden;
  350. }
  351. #u15833 {
  352. border-width:0px;
  353. position:absolute;
  354. left:0px;
  355. top:0px;
  356. width:0px;
  357. height:0px;
  358. }
  359. #u15834_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. #u15834 {
  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. #u15834 .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. #u15834_text {
  401. border-width:0px;
  402. white-space:nowrap;
  403. text-transform:none;
  404. }
  405. #u15835 {
  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. #u15835 .text {
  416. position:absolute;
  417. align-self:center;
  418. padding:2px 2px 2px 2px;
  419. box-sizing:border-box;
  420. width:100%;
  421. }
  422. #u15835_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:14px;
  428. height:14px;
  429. }
  430. #u15835_text {
  431. border-width:0px;
  432. word-wrap:break-word;
  433. text-transform:none;
  434. visibility:hidden;
  435. }
  436. #u15836 {
  437. border-width:0px;
  438. position:absolute;
  439. left:0px;
  440. top:0px;
  441. width:0px;
  442. height:0px;
  443. }
  444. #u15837_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. #u15837 {
  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. #u15837 .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. #u15837_text {
  486. border-width:0px;
  487. white-space:nowrap;
  488. text-transform:none;
  489. }
  490. #u15838 {
  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. #u15838 .text {
  501. position:absolute;
  502. align-self:center;
  503. padding:2px 2px 2px 2px;
  504. box-sizing:border-box;
  505. width:100%;
  506. }
  507. #u15838_img {
  508. border-width:0px;
  509. position:absolute;
  510. left:0px;
  511. top:0px;
  512. width:14px;
  513. height:14px;
  514. }
  515. #u15838_text {
  516. border-width:0px;
  517. word-wrap:break-word;
  518. text-transform:none;
  519. visibility:hidden;
  520. }
  521. #u15839 {
  522. border-width:0px;
  523. position:absolute;
  524. left:0px;
  525. top:0px;
  526. width:0px;
  527. height:0px;
  528. }
  529. #u15840_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. #u15840 {
  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. #u15840 .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. #u15840_text {
  571. border-width:0px;
  572. white-space:nowrap;
  573. text-transform:none;
  574. }
  575. #u15841 {
  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. #u15841 .text {
  586. position:absolute;
  587. align-self:center;
  588. padding:2px 2px 2px 2px;
  589. box-sizing:border-box;
  590. width:100%;
  591. }
  592. #u15841_img {
  593. border-width:0px;
  594. position:absolute;
  595. left:0px;
  596. top:0px;
  597. width:14px;
  598. height:14px;
  599. }
  600. #u15841_text {
  601. border-width:0px;
  602. word-wrap:break-word;
  603. text-transform:none;
  604. visibility:hidden;
  605. }
  606. #u15842 {
  607. border-width:0px;
  608. position:absolute;
  609. left:0px;
  610. top:0px;
  611. width:0px;
  612. height:0px;
  613. }
  614. #u15843_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. #u15843 {
  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. #u15843 .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. #u15843_text {
  656. border-width:0px;
  657. white-space:nowrap;
  658. text-transform:none;
  659. }
  660. #u15844 {
  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. #u15844 .text {
  671. position:absolute;
  672. align-self:center;
  673. padding:2px 2px 2px 2px;
  674. box-sizing:border-box;
  675. width:100%;
  676. }
  677. #u15844_img {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:14px;
  683. height:14px;
  684. }
  685. #u15844_text {
  686. border-width:0px;
  687. word-wrap:break-word;
  688. text-transform:none;
  689. visibility:hidden;
  690. }
  691. #u15845 {
  692. border-width:0px;
  693. position:absolute;
  694. left:0px;
  695. top:0px;
  696. width:0px;
  697. height:0px;
  698. }
  699. #u15846_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. #u15846 {
  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. #u15846 .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. #u15846_text {
  741. border-width:0px;
  742. white-space:nowrap;
  743. text-transform:none;
  744. }
  745. #u15847 {
  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. #u15847 .text {
  756. position:absolute;
  757. align-self:center;
  758. padding:2px 2px 2px 2px;
  759. box-sizing:border-box;
  760. width:100%;
  761. }
  762. #u15847_img {
  763. border-width:0px;
  764. position:absolute;
  765. left:0px;
  766. top:0px;
  767. width:14px;
  768. height:14px;
  769. }
  770. #u15847_text {
  771. border-width:0px;
  772. word-wrap:break-word;
  773. text-transform:none;
  774. visibility:hidden;
  775. }
  776. #u15848 {
  777. border-width:0px;
  778. position:absolute;
  779. left:0px;
  780. top:0px;
  781. width:0px;
  782. height:0px;
  783. }
  784. #u15849_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. #u15849 {
  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. #u15849 .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. #u15849_text {
  826. border-width:0px;
  827. white-space:nowrap;
  828. text-transform:none;
  829. }
  830. #u15850 {
  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. #u15850 .text {
  841. position:absolute;
  842. align-self:center;
  843. padding:2px 2px 2px 2px;
  844. box-sizing:border-box;
  845. width:100%;
  846. }
  847. #u15850_img {
  848. border-width:0px;
  849. position:absolute;
  850. left:0px;
  851. top:0px;
  852. width:14px;
  853. height:14px;
  854. }
  855. #u15850_text {
  856. border-width:0px;
  857. word-wrap:break-word;
  858. text-transform:none;
  859. visibility:hidden;
  860. }
  861. #u15851 {
  862. border-width:0px;
  863. position:absolute;
  864. left:0px;
  865. top:0px;
  866. width:0px;
  867. height:0px;
  868. }
  869. #u15852_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. #u15852 {
  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. #u15852 .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. #u15852_text {
  911. border-width:0px;
  912. white-space:nowrap;
  913. text-transform:none;
  914. }
  915. #u15853 {
  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. #u15853 .text {
  926. position:absolute;
  927. align-self:center;
  928. padding:2px 2px 2px 2px;
  929. box-sizing:border-box;
  930. width:100%;
  931. }
  932. #u15853_img {
  933. border-width:0px;
  934. position:absolute;
  935. left:0px;
  936. top:0px;
  937. width:14px;
  938. height:14px;
  939. }
  940. #u15853_text {
  941. border-width:0px;
  942. word-wrap:break-word;
  943. text-transform:none;
  944. visibility:hidden;
  945. }
  946. #u15854 {
  947. border-width:0px;
  948. position:absolute;
  949. left:0px;
  950. top:0px;
  951. width:0px;
  952. height:0px;
  953. }
  954. #u15855_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. #u15855 {
  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. #u15855 .text {
  987. position:absolute;
  988. align-self:center;
  989. padding:0px 0px 0px 0px;
  990. box-sizing:border-box;
  991. width:100%;
  992. }
  993. #u15855_text {
  994. border-width:0px;
  995. white-space:nowrap;
  996. text-transform:none;
  997. }
  998. #u15856 {
  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. #u15856 .text {
  1009. position:absolute;
  1010. align-self:center;
  1011. padding:2px 2px 2px 2px;
  1012. box-sizing:border-box;
  1013. width:100%;
  1014. }
  1015. #u15856_img {
  1016. border-width:0px;
  1017. position:absolute;
  1018. left:0px;
  1019. top:0px;
  1020. width:22px;
  1021. height:22px;
  1022. }
  1023. #u15856_text {
  1024. border-width:0px;
  1025. word-wrap:break-word;
  1026. text-transform:none;
  1027. visibility:hidden;
  1028. }
  1029. #u15857 {
  1030. border-width:0px;
  1031. position:absolute;
  1032. left:0px;
  1033. top:0px;
  1034. width:0px;
  1035. height:0px;
  1036. }
  1037. #u15858_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. #u15858 {
  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. #u15858 .text {
  1070. position:absolute;
  1071. align-self:center;
  1072. padding:0px 0px 0px 0px;
  1073. box-sizing:border-box;
  1074. width:100%;
  1075. }
  1076. #u15858_text {
  1077. border-width:0px;
  1078. white-space:nowrap;
  1079. text-transform:none;
  1080. }
  1081. #u15859 {
  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. #u15859 .text {
  1092. position:absolute;
  1093. align-self:center;
  1094. padding:2px 2px 2px 2px;
  1095. box-sizing:border-box;
  1096. width:100%;
  1097. }
  1098. #u15859_img {
  1099. border-width:0px;
  1100. position:absolute;
  1101. left:0px;
  1102. top:0px;
  1103. width:22px;
  1104. height:22px;
  1105. }
  1106. #u15859_text {
  1107. border-width:0px;
  1108. word-wrap:break-word;
  1109. text-transform:none;
  1110. visibility:hidden;
  1111. }
  1112. #u15860 {
  1113. border-width:0px;
  1114. position:absolute;
  1115. left:0px;
  1116. top:0px;
  1117. width:0px;
  1118. height:0px;
  1119. }
  1120. #u15861_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. #u15861 {
  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. #u15861 .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. #u15861_text {
  1162. border-width:0px;
  1163. white-space:nowrap;
  1164. text-transform:none;
  1165. }
  1166. #u15862 {
  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. #u15862 .text {
  1177. position:absolute;
  1178. align-self:center;
  1179. padding:2px 2px 2px 2px;
  1180. box-sizing:border-box;
  1181. width:100%;
  1182. }
  1183. #u15862_img {
  1184. border-width:0px;
  1185. position:absolute;
  1186. left:0px;
  1187. top:0px;
  1188. width:14px;
  1189. height:14px;
  1190. }
  1191. #u15862_text {
  1192. border-width:0px;
  1193. word-wrap:break-word;
  1194. text-transform:none;
  1195. visibility:hidden;
  1196. }
  1197. #u15863 {
  1198. border-width:0px;
  1199. position:absolute;
  1200. left:0px;
  1201. top:0px;
  1202. width:0px;
  1203. height:0px;
  1204. }
  1205. #u15864_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. #u15864_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. #u15864_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. #u15864 {
  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. #u15864 .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. #u15864_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. #u15864.disabled {
  1294. }
  1295. .u15864_input_option {
  1296. font-size:14px;
  1297. }
  1298. #u15865 {
  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. #u15865 .text {
  1309. position:absolute;
  1310. align-self:center;
  1311. padding:2px 2px 2px 2px;
  1312. box-sizing:border-box;
  1313. width:100%;
  1314. }
  1315. #u15865_img {
  1316. border-width:0px;
  1317. position:absolute;
  1318. left:0px;
  1319. top:0px;
  1320. width:22px;
  1321. height:22px;
  1322. }
  1323. #u15865_text {
  1324. border-width:0px;
  1325. word-wrap:break-word;
  1326. text-transform:none;
  1327. visibility:hidden;
  1328. }
  1329. #u15866_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. #u15866 {
  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. #u15866 .text {
  1364. position:absolute;
  1365. align-self:center;
  1366. padding:0px 0px 0px 0px;
  1367. box-sizing:border-box;
  1368. width:100%;
  1369. }
  1370. #u15866_text {
  1371. border-width:0px;
  1372. word-wrap:break-word;
  1373. text-transform:none;
  1374. }
  1375. #u15867 {
  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. #u15867 .text {
  1386. position:absolute;
  1387. align-self:center;
  1388. padding:2px 2px 2px 2px;
  1389. box-sizing:border-box;
  1390. width:100%;
  1391. }
  1392. #u15867_img {
  1393. border-width:0px;
  1394. position:absolute;
  1395. left:0px;
  1396. top:0px;
  1397. width:2px;
  1398. height:12px;
  1399. }
  1400. #u15867_text {
  1401. border-width:0px;
  1402. word-wrap:break-word;
  1403. text-transform:none;
  1404. visibility:hidden;
  1405. }
  1406. #u15868 {
  1407. border-width:0px;
  1408. position:absolute;
  1409. left:0px;
  1410. top:0px;
  1411. width:0px;
  1412. height:0px;
  1413. }
  1414. #u15869_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. #u15869 {
  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. #u15869 .text {
  1447. position:absolute;
  1448. align-self:center;
  1449. padding:0px 0px 0px 0px;
  1450. box-sizing:border-box;
  1451. width:100%;
  1452. }
  1453. #u15869_text {
  1454. border-width:0px;
  1455. white-space:nowrap;
  1456. text-transform:none;
  1457. }
  1458. #u15870 {
  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. #u15870 .text {
  1469. position:absolute;
  1470. align-self:center;
  1471. padding:2px 2px 2px 2px;
  1472. box-sizing:border-box;
  1473. width:100%;
  1474. }
  1475. #u15870_img {
  1476. border-width:0px;
  1477. position:absolute;
  1478. left:0px;
  1479. top:0px;
  1480. width:22px;
  1481. height:22px;
  1482. }
  1483. #u15870_text {
  1484. border-width:0px;
  1485. word-wrap:break-word;
  1486. text-transform:none;
  1487. visibility:hidden;
  1488. }
  1489. #u15871 {
  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. #u15871 .text {
  1500. position:absolute;
  1501. align-self:center;
  1502. padding:2px 2px 2px 2px;
  1503. box-sizing:border-box;
  1504. width:100%;
  1505. }
  1506. #u15871_img {
  1507. border-width:0px;
  1508. position:absolute;
  1509. left:0px;
  1510. top:0px;
  1511. width:69px;
  1512. height:2px;
  1513. }
  1514. #u15871_text {
  1515. border-width:0px;
  1516. word-wrap:break-word;
  1517. text-transform:none;
  1518. visibility:hidden;
  1519. }
  1520. #u15872 {
  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. #u15872 .text {
  1531. position:absolute;
  1532. align-self:center;
  1533. padding:2px 2px 2px 2px;
  1534. box-sizing:border-box;
  1535. width:100%;
  1536. }
  1537. #u15872_img {
  1538. border-width:0px;
  1539. position:absolute;
  1540. left:0px;
  1541. top:0px;
  1542. width:69px;
  1543. height:2px;
  1544. }
  1545. #u15872_text {
  1546. border-width:0px;
  1547. word-wrap:break-word;
  1548. text-transform:none;
  1549. visibility:hidden;
  1550. }
  1551. #u15873 {
  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. #u15873 .text {
  1562. position:absolute;
  1563. align-self:center;
  1564. padding:2px 2px 2px 2px;
  1565. box-sizing:border-box;
  1566. width:100%;
  1567. }
  1568. #u15873_img {
  1569. border-width:0px;
  1570. position:absolute;
  1571. left:0px;
  1572. top:0px;
  1573. width:57px;
  1574. height:2px;
  1575. }
  1576. #u15873_text {
  1577. border-width:0px;
  1578. word-wrap:break-word;
  1579. text-transform:none;
  1580. visibility:hidden;
  1581. }
  1582. #u15874 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:0px;
  1586. top:0px;
  1587. width:0px;
  1588. height:0px;
  1589. }
  1590. #u15875_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. #u15875 {
  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. #u15875 .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. #u15875_text {
  1632. border-width:0px;
  1633. white-space:nowrap;
  1634. text-transform:none;
  1635. }
  1636. #u15876 {
  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. #u15876 .text {
  1647. position:absolute;
  1648. align-self:center;
  1649. padding:2px 2px 2px 2px;
  1650. box-sizing:border-box;
  1651. width:100%;
  1652. }
  1653. #u15876_img {
  1654. border-width:0px;
  1655. position:absolute;
  1656. left:0px;
  1657. top:0px;
  1658. width:18px;
  1659. height:14px;
  1660. }
  1661. #u15876_text {
  1662. border-width:0px;
  1663. word-wrap:break-word;
  1664. text-transform:none;
  1665. visibility:hidden;
  1666. }
  1667. #u15877_div {
  1668. border-width:0px;
  1669. position:absolute;
  1670. left:0px;
  1671. top:0px;
  1672. width:1259px;
  1673. height:1180px;
  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. #u15877 {
  1681. border-width:0px;
  1682. position:absolute;
  1683. left:330px;
  1684. top:50px;
  1685. width:1259px;
  1686. height:1180px;
  1687. display:flex;
  1688. transition:none;
  1689. transform-origin:50% 50%;
  1690. }
  1691. #u15877 .text {
  1692. position:absolute;
  1693. align-self:center;
  1694. padding:2px 2px 2px 2px;
  1695. box-sizing:border-box;
  1696. width:100%;
  1697. }
  1698. #u15877_text {
  1699. border-width:0px;
  1700. word-wrap:break-word;
  1701. text-transform:none;
  1702. visibility:hidden;
  1703. }
  1704. #u15878 {
  1705. border-width:0px;
  1706. position:absolute;
  1707. left:350px;
  1708. top:272px;
  1709. width:1211px;
  1710. height:313px;
  1711. }
  1712. #u15879 {
  1713. border-width:0px;
  1714. position:absolute;
  1715. left:0px;
  1716. top:0px;
  1717. width:163px;
  1718. height:35px;
  1719. display:flex;
  1720. transition:none;
  1721. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1722. font-weight:400;
  1723. font-style:normal;
  1724. font-size:12px;
  1725. color:#FFFFFF;
  1726. }
  1727. #u15879 .text {
  1728. position:absolute;
  1729. align-self:center;
  1730. padding:2px 2px 2px 0px;
  1731. box-sizing:border-box;
  1732. width:100%;
  1733. }
  1734. #u15879_img {
  1735. border-width:0px;
  1736. position:absolute;
  1737. left:0px;
  1738. top:0px;
  1739. width:163px;
  1740. height:35px;
  1741. }
  1742. #u15879_text {
  1743. border-width:0px;
  1744. word-wrap:break-word;
  1745. text-transform:none;
  1746. }
  1747. #u15880 {
  1748. border-width:0px;
  1749. position:absolute;
  1750. left:163px;
  1751. top:0px;
  1752. width:96px;
  1753. height:35px;
  1754. display:flex;
  1755. transition:none;
  1756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1757. font-weight:400;
  1758. font-style:normal;
  1759. font-size:12px;
  1760. color:#FFFFFF;
  1761. }
  1762. #u15880 .text {
  1763. position:absolute;
  1764. align-self:center;
  1765. padding:2px 2px 2px 0px;
  1766. box-sizing:border-box;
  1767. width:100%;
  1768. }
  1769. #u15880_img {
  1770. border-width:0px;
  1771. position:absolute;
  1772. left:0px;
  1773. top:0px;
  1774. width:96px;
  1775. height:35px;
  1776. }
  1777. #u15880_text {
  1778. border-width:0px;
  1779. word-wrap:break-word;
  1780. text-transform:none;
  1781. }
  1782. #u15881 {
  1783. border-width:0px;
  1784. position:absolute;
  1785. left:259px;
  1786. top:0px;
  1787. width:96px;
  1788. height:35px;
  1789. display:flex;
  1790. transition:none;
  1791. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1792. font-weight:400;
  1793. font-style:normal;
  1794. font-size:12px;
  1795. color:#FFFFFF;
  1796. }
  1797. #u15881 .text {
  1798. position:absolute;
  1799. align-self:center;
  1800. padding:2px 2px 2px 0px;
  1801. box-sizing:border-box;
  1802. width:100%;
  1803. }
  1804. #u15881_img {
  1805. border-width:0px;
  1806. position:absolute;
  1807. left:0px;
  1808. top:0px;
  1809. width:96px;
  1810. height:35px;
  1811. }
  1812. #u15881_text {
  1813. border-width:0px;
  1814. word-wrap:break-word;
  1815. text-transform:none;
  1816. }
  1817. #u15882 {
  1818. border-width:0px;
  1819. position:absolute;
  1820. left:355px;
  1821. top:0px;
  1822. width:96px;
  1823. height:35px;
  1824. display:flex;
  1825. transition:none;
  1826. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1827. font-weight:400;
  1828. font-style:normal;
  1829. font-size:12px;
  1830. color:#FFFFFF;
  1831. }
  1832. #u15882 .text {
  1833. position:absolute;
  1834. align-self:center;
  1835. padding:2px 2px 2px 0px;
  1836. box-sizing:border-box;
  1837. width:100%;
  1838. }
  1839. #u15882_img {
  1840. border-width:0px;
  1841. position:absolute;
  1842. left:0px;
  1843. top:0px;
  1844. width:96px;
  1845. height:35px;
  1846. }
  1847. #u15882_text {
  1848. border-width:0px;
  1849. word-wrap:break-word;
  1850. text-transform:none;
  1851. }
  1852. #u15883 {
  1853. border-width:0px;
  1854. position:absolute;
  1855. left:451px;
  1856. top:0px;
  1857. width:100px;
  1858. height:35px;
  1859. display:flex;
  1860. transition:none;
  1861. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1862. font-weight:400;
  1863. font-style:normal;
  1864. font-size:12px;
  1865. color:#FFFFFF;
  1866. }
  1867. #u15883 .text {
  1868. position:absolute;
  1869. align-self:center;
  1870. padding:2px 2px 2px 0px;
  1871. box-sizing:border-box;
  1872. width:100%;
  1873. }
  1874. #u15883_img {
  1875. border-width:0px;
  1876. position:absolute;
  1877. left:0px;
  1878. top:0px;
  1879. width:100px;
  1880. height:35px;
  1881. }
  1882. #u15883_text {
  1883. border-width:0px;
  1884. word-wrap:break-word;
  1885. text-transform:none;
  1886. }
  1887. #u15884 {
  1888. border-width:0px;
  1889. position:absolute;
  1890. left:551px;
  1891. top:0px;
  1892. width:96px;
  1893. height:35px;
  1894. display:flex;
  1895. transition:none;
  1896. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1897. font-weight:400;
  1898. font-style:normal;
  1899. font-size:12px;
  1900. color:#FFFFFF;
  1901. }
  1902. #u15884 .text {
  1903. position:absolute;
  1904. align-self:center;
  1905. padding:2px 2px 2px 0px;
  1906. box-sizing:border-box;
  1907. width:100%;
  1908. }
  1909. #u15884_img {
  1910. border-width:0px;
  1911. position:absolute;
  1912. left:0px;
  1913. top:0px;
  1914. width:96px;
  1915. height:35px;
  1916. }
  1917. #u15884_text {
  1918. border-width:0px;
  1919. word-wrap:break-word;
  1920. text-transform:none;
  1921. }
  1922. #u15885 {
  1923. border-width:0px;
  1924. position:absolute;
  1925. left:647px;
  1926. top:0px;
  1927. width:96px;
  1928. height:35px;
  1929. display:flex;
  1930. transition:none;
  1931. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1932. font-weight:400;
  1933. font-style:normal;
  1934. font-size:12px;
  1935. color:#FFFFFF;
  1936. }
  1937. #u15885 .text {
  1938. position:absolute;
  1939. align-self:center;
  1940. padding:2px 2px 2px 0px;
  1941. box-sizing:border-box;
  1942. width:100%;
  1943. }
  1944. #u15885_img {
  1945. border-width:0px;
  1946. position:absolute;
  1947. left:0px;
  1948. top:0px;
  1949. width:96px;
  1950. height:35px;
  1951. }
  1952. #u15885_text {
  1953. border-width:0px;
  1954. word-wrap:break-word;
  1955. text-transform:none;
  1956. }
  1957. #u15886 {
  1958. border-width:0px;
  1959. position:absolute;
  1960. left:743px;
  1961. top:0px;
  1962. width:96px;
  1963. height:35px;
  1964. display:flex;
  1965. transition:none;
  1966. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1967. font-weight:400;
  1968. font-style:normal;
  1969. font-size:12px;
  1970. color:#FFFFFF;
  1971. }
  1972. #u15886 .text {
  1973. position:absolute;
  1974. align-self:center;
  1975. padding:2px 2px 2px 0px;
  1976. box-sizing:border-box;
  1977. width:100%;
  1978. }
  1979. #u15886_img {
  1980. border-width:0px;
  1981. position:absolute;
  1982. left:0px;
  1983. top:0px;
  1984. width:96px;
  1985. height:35px;
  1986. }
  1987. #u15886_text {
  1988. border-width:0px;
  1989. word-wrap:break-word;
  1990. text-transform:none;
  1991. }
  1992. #u15887 {
  1993. border-width:0px;
  1994. position:absolute;
  1995. left:839px;
  1996. top:0px;
  1997. width:96px;
  1998. height:35px;
  1999. display:flex;
  2000. transition:none;
  2001. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2002. font-weight:400;
  2003. font-style:normal;
  2004. font-size:12px;
  2005. color:#FFFFFF;
  2006. }
  2007. #u15887 .text {
  2008. position:absolute;
  2009. align-self:center;
  2010. padding:2px 2px 2px 0px;
  2011. box-sizing:border-box;
  2012. width:100%;
  2013. }
  2014. #u15887_img {
  2015. border-width:0px;
  2016. position:absolute;
  2017. left:0px;
  2018. top:0px;
  2019. width:96px;
  2020. height:35px;
  2021. }
  2022. #u15887_text {
  2023. border-width:0px;
  2024. word-wrap:break-word;
  2025. text-transform:none;
  2026. }
  2027. #u15888 {
  2028. border-width:0px;
  2029. position:absolute;
  2030. left:935px;
  2031. top:0px;
  2032. width:96px;
  2033. height:35px;
  2034. display:flex;
  2035. transition:none;
  2036. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2037. font-weight:400;
  2038. font-style:normal;
  2039. font-size:12px;
  2040. color:#FFFFFF;
  2041. }
  2042. #u15888 .text {
  2043. position:absolute;
  2044. align-self:center;
  2045. padding:2px 2px 2px 0px;
  2046. box-sizing:border-box;
  2047. width:100%;
  2048. }
  2049. #u15888_img {
  2050. border-width:0px;
  2051. position:absolute;
  2052. left:0px;
  2053. top:0px;
  2054. width:96px;
  2055. height:35px;
  2056. }
  2057. #u15888_text {
  2058. border-width:0px;
  2059. word-wrap:break-word;
  2060. text-transform:none;
  2061. }
  2062. #u15889 {
  2063. border-width:0px;
  2064. position:absolute;
  2065. left:1031px;
  2066. top:0px;
  2067. width:96px;
  2068. height:35px;
  2069. display:flex;
  2070. transition:none;
  2071. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2072. font-weight:400;
  2073. font-style:normal;
  2074. font-size:12px;
  2075. color:#FFFFFF;
  2076. }
  2077. #u15889 .text {
  2078. position:absolute;
  2079. align-self:center;
  2080. padding:2px 2px 2px 0px;
  2081. box-sizing:border-box;
  2082. width:100%;
  2083. }
  2084. #u15889_img {
  2085. border-width:0px;
  2086. position:absolute;
  2087. left:0px;
  2088. top:0px;
  2089. width:96px;
  2090. height:35px;
  2091. }
  2092. #u15889_text {
  2093. border-width:0px;
  2094. word-wrap:break-word;
  2095. text-transform:none;
  2096. }
  2097. #u15890 {
  2098. border-width:0px;
  2099. position:absolute;
  2100. left:1127px;
  2101. top:0px;
  2102. width:84px;
  2103. height:35px;
  2104. display:flex;
  2105. transition:none;
  2106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2107. font-weight:400;
  2108. font-style:normal;
  2109. font-size:12px;
  2110. color:#FFFFFF;
  2111. }
  2112. #u15890 .text {
  2113. position:absolute;
  2114. align-self:center;
  2115. padding:2px 2px 2px 0px;
  2116. box-sizing:border-box;
  2117. width:100%;
  2118. }
  2119. #u15890_img {
  2120. border-width:0px;
  2121. position:absolute;
  2122. left:0px;
  2123. top:0px;
  2124. width:84px;
  2125. height:35px;
  2126. }
  2127. #u15890_text {
  2128. border-width:0px;
  2129. word-wrap:break-word;
  2130. text-transform:none;
  2131. }
  2132. #u15891 {
  2133. border-width:0px;
  2134. position:absolute;
  2135. left:0px;
  2136. top:35px;
  2137. width:163px;
  2138. height:44px;
  2139. display:flex;
  2140. transition:none;
  2141. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2142. font-weight:400;
  2143. font-style:normal;
  2144. font-size:12px;
  2145. color:#333333;
  2146. line-height:40px;
  2147. }
  2148. #u15891 .text {
  2149. position:absolute;
  2150. align-self:center;
  2151. padding:2px 2px 2px 0px;
  2152. box-sizing:border-box;
  2153. width:100%;
  2154. }
  2155. #u15891_img {
  2156. border-width:0px;
  2157. position:absolute;
  2158. left:0px;
  2159. top:0px;
  2160. width:163px;
  2161. height:44px;
  2162. }
  2163. #u15891_text {
  2164. border-width:0px;
  2165. word-wrap:break-word;
  2166. text-transform:none;
  2167. }
  2168. #u15892 {
  2169. border-width:0px;
  2170. position:absolute;
  2171. left:163px;
  2172. top:35px;
  2173. width:96px;
  2174. height:44px;
  2175. display:flex;
  2176. transition:none;
  2177. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2178. font-weight:400;
  2179. font-style:normal;
  2180. font-size:12px;
  2181. color:#333333;
  2182. line-height:40px;
  2183. }
  2184. #u15892 .text {
  2185. position:absolute;
  2186. align-self:center;
  2187. padding:2px 2px 2px 0px;
  2188. box-sizing:border-box;
  2189. width:100%;
  2190. }
  2191. #u15892_img {
  2192. border-width:0px;
  2193. position:absolute;
  2194. left:0px;
  2195. top:0px;
  2196. width:96px;
  2197. height:44px;
  2198. }
  2199. #u15892_text {
  2200. border-width:0px;
  2201. word-wrap:break-word;
  2202. text-transform:none;
  2203. visibility:hidden;
  2204. }
  2205. #u15893 {
  2206. border-width:0px;
  2207. position:absolute;
  2208. left:259px;
  2209. top:35px;
  2210. width:96px;
  2211. height:44px;
  2212. display:flex;
  2213. transition:none;
  2214. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2215. font-weight:400;
  2216. font-style:normal;
  2217. font-size:12px;
  2218. color:#333333;
  2219. line-height:40px;
  2220. }
  2221. #u15893 .text {
  2222. position:absolute;
  2223. align-self:center;
  2224. padding:2px 2px 2px 0px;
  2225. box-sizing:border-box;
  2226. width:100%;
  2227. }
  2228. #u15893_img {
  2229. border-width:0px;
  2230. position:absolute;
  2231. left:0px;
  2232. top:0px;
  2233. width:96px;
  2234. height:44px;
  2235. }
  2236. #u15893_text {
  2237. border-width:0px;
  2238. word-wrap:break-word;
  2239. text-transform:none;
  2240. }
  2241. #u15894 {
  2242. border-width:0px;
  2243. position:absolute;
  2244. left:355px;
  2245. top:35px;
  2246. width:96px;
  2247. height:44px;
  2248. display:flex;
  2249. transition:none;
  2250. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2251. font-weight:400;
  2252. font-style:normal;
  2253. font-size:12px;
  2254. color:#333333;
  2255. line-height:40px;
  2256. }
  2257. #u15894 .text {
  2258. position:absolute;
  2259. align-self:center;
  2260. padding:2px 2px 2px 0px;
  2261. box-sizing:border-box;
  2262. width:100%;
  2263. }
  2264. #u15894_img {
  2265. border-width:0px;
  2266. position:absolute;
  2267. left:0px;
  2268. top:0px;
  2269. width:96px;
  2270. height:44px;
  2271. }
  2272. #u15894_text {
  2273. border-width:0px;
  2274. word-wrap:break-word;
  2275. text-transform:none;
  2276. visibility:hidden;
  2277. }
  2278. #u15895 {
  2279. border-width:0px;
  2280. position:absolute;
  2281. left:451px;
  2282. top:35px;
  2283. width:100px;
  2284. height:44px;
  2285. display:flex;
  2286. transition:none;
  2287. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2288. font-weight:400;
  2289. font-style:normal;
  2290. font-size:12px;
  2291. color:#333333;
  2292. line-height:40px;
  2293. }
  2294. #u15895 .text {
  2295. position:absolute;
  2296. align-self:center;
  2297. padding:2px 2px 2px 0px;
  2298. box-sizing:border-box;
  2299. width:100%;
  2300. }
  2301. #u15895_img {
  2302. border-width:0px;
  2303. position:absolute;
  2304. left:0px;
  2305. top:0px;
  2306. width:100px;
  2307. height:44px;
  2308. }
  2309. #u15895_text {
  2310. border-width:0px;
  2311. word-wrap:break-word;
  2312. text-transform:none;
  2313. visibility:hidden;
  2314. }
  2315. #u15896 {
  2316. border-width:0px;
  2317. position:absolute;
  2318. left:551px;
  2319. top:35px;
  2320. width:96px;
  2321. height:44px;
  2322. display:flex;
  2323. transition:none;
  2324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2325. font-weight:400;
  2326. font-style:normal;
  2327. font-size:12px;
  2328. }
  2329. #u15896 .text {
  2330. position:absolute;
  2331. align-self:center;
  2332. padding:2px 2px 2px 0px;
  2333. box-sizing:border-box;
  2334. width:100%;
  2335. }
  2336. #u15896_img {
  2337. border-width:0px;
  2338. position:absolute;
  2339. left:0px;
  2340. top:0px;
  2341. width:96px;
  2342. height:44px;
  2343. }
  2344. #u15896_text {
  2345. border-width:0px;
  2346. word-wrap:break-word;
  2347. text-transform:none;
  2348. }
  2349. #u15897 {
  2350. border-width:0px;
  2351. position:absolute;
  2352. left:647px;
  2353. top:35px;
  2354. width:96px;
  2355. height:44px;
  2356. display:flex;
  2357. transition:none;
  2358. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2359. font-weight:400;
  2360. font-style:normal;
  2361. font-size:12px;
  2362. color:#606266;
  2363. }
  2364. #u15897 .text {
  2365. position:absolute;
  2366. align-self:center;
  2367. padding:2px 2px 2px 0px;
  2368. box-sizing:border-box;
  2369. width:100%;
  2370. }
  2371. #u15897_img {
  2372. border-width:0px;
  2373. position:absolute;
  2374. left:0px;
  2375. top:0px;
  2376. width:96px;
  2377. height:44px;
  2378. }
  2379. #u15897_text {
  2380. border-width:0px;
  2381. word-wrap:break-word;
  2382. text-transform:none;
  2383. visibility:hidden;
  2384. }
  2385. #u15898 {
  2386. border-width:0px;
  2387. position:absolute;
  2388. left:743px;
  2389. top:35px;
  2390. width:96px;
  2391. height:44px;
  2392. display:flex;
  2393. transition:none;
  2394. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2395. font-weight:400;
  2396. font-style:normal;
  2397. font-size:12px;
  2398. color:#333333;
  2399. }
  2400. #u15898 .text {
  2401. position:absolute;
  2402. align-self:center;
  2403. padding:2px 2px 2px 0px;
  2404. box-sizing:border-box;
  2405. width:100%;
  2406. }
  2407. #u15898_img {
  2408. border-width:0px;
  2409. position:absolute;
  2410. left:0px;
  2411. top:0px;
  2412. width:96px;
  2413. height:44px;
  2414. }
  2415. #u15898_text {
  2416. border-width:0px;
  2417. word-wrap:break-word;
  2418. text-transform:none;
  2419. visibility:hidden;
  2420. }
  2421. #u15899 {
  2422. border-width:0px;
  2423. position:absolute;
  2424. left:839px;
  2425. top:35px;
  2426. width:96px;
  2427. height:44px;
  2428. display:flex;
  2429. transition:none;
  2430. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2431. font-weight:400;
  2432. font-style:normal;
  2433. font-size:12px;
  2434. color:#333333;
  2435. }
  2436. #u15899 .text {
  2437. position:absolute;
  2438. align-self:center;
  2439. padding:2px 2px 2px 0px;
  2440. box-sizing:border-box;
  2441. width:100%;
  2442. }
  2443. #u15899_img {
  2444. border-width:0px;
  2445. position:absolute;
  2446. left:0px;
  2447. top:0px;
  2448. width:96px;
  2449. height:44px;
  2450. }
  2451. #u15899_text {
  2452. border-width:0px;
  2453. word-wrap:break-word;
  2454. text-transform:none;
  2455. visibility:hidden;
  2456. }
  2457. #u15900 {
  2458. border-width:0px;
  2459. position:absolute;
  2460. left:935px;
  2461. top:35px;
  2462. width:96px;
  2463. height:44px;
  2464. display:flex;
  2465. transition:none;
  2466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2467. font-weight:400;
  2468. font-style:normal;
  2469. font-size:12px;
  2470. color:#333333;
  2471. }
  2472. #u15900 .text {
  2473. position:absolute;
  2474. align-self:center;
  2475. padding:2px 2px 2px 0px;
  2476. box-sizing:border-box;
  2477. width:100%;
  2478. }
  2479. #u15900_img {
  2480. border-width:0px;
  2481. position:absolute;
  2482. left:0px;
  2483. top:0px;
  2484. width:96px;
  2485. height:44px;
  2486. }
  2487. #u15900_text {
  2488. border-width:0px;
  2489. word-wrap:break-word;
  2490. text-transform:none;
  2491. }
  2492. #u15901 {
  2493. border-width:0px;
  2494. position:absolute;
  2495. left:1031px;
  2496. top:35px;
  2497. width:96px;
  2498. height:44px;
  2499. display:flex;
  2500. transition:none;
  2501. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2502. font-weight:400;
  2503. font-style:normal;
  2504. font-size:12px;
  2505. color:#333333;
  2506. }
  2507. #u15901 .text {
  2508. position:absolute;
  2509. align-self:center;
  2510. padding:2px 2px 2px 0px;
  2511. box-sizing:border-box;
  2512. width:100%;
  2513. }
  2514. #u15901_img {
  2515. border-width:0px;
  2516. position:absolute;
  2517. left:0px;
  2518. top:0px;
  2519. width:96px;
  2520. height:44px;
  2521. }
  2522. #u15901_text {
  2523. border-width:0px;
  2524. word-wrap:break-word;
  2525. text-transform:none;
  2526. visibility:hidden;
  2527. }
  2528. #u15902 {
  2529. border-width:0px;
  2530. position:absolute;
  2531. left:1127px;
  2532. top:35px;
  2533. width:84px;
  2534. height:44px;
  2535. display:flex;
  2536. transition:none;
  2537. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2538. font-weight:400;
  2539. font-style:normal;
  2540. font-size:12px;
  2541. color:#298FFF;
  2542. line-height:35px;
  2543. }
  2544. #u15902 .text {
  2545. position:absolute;
  2546. align-self:center;
  2547. padding:2px 2px 2px 0px;
  2548. box-sizing:border-box;
  2549. width:100%;
  2550. }
  2551. #u15902_img {
  2552. border-width:0px;
  2553. position:absolute;
  2554. left:0px;
  2555. top:0px;
  2556. width:84px;
  2557. height:44px;
  2558. }
  2559. #u15902_text {
  2560. border-width:0px;
  2561. word-wrap:break-word;
  2562. text-transform:none;
  2563. }
  2564. #u15903 {
  2565. border-width:0px;
  2566. position:absolute;
  2567. left:0px;
  2568. top:79px;
  2569. width:163px;
  2570. height:44px;
  2571. display:flex;
  2572. transition:none;
  2573. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2574. font-weight:400;
  2575. font-style:normal;
  2576. font-size:12px;
  2577. color:#333333;
  2578. line-height:40px;
  2579. }
  2580. #u15903 .text {
  2581. position:absolute;
  2582. align-self:center;
  2583. padding:2px 2px 2px 0px;
  2584. box-sizing:border-box;
  2585. width:100%;
  2586. }
  2587. #u15903_img {
  2588. border-width:0px;
  2589. position:absolute;
  2590. left:0px;
  2591. top:0px;
  2592. width:163px;
  2593. height:44px;
  2594. }
  2595. #u15903_text {
  2596. border-width:0px;
  2597. word-wrap:break-word;
  2598. text-transform:none;
  2599. }
  2600. #u15904 {
  2601. border-width:0px;
  2602. position:absolute;
  2603. left:163px;
  2604. top:79px;
  2605. width:96px;
  2606. height:44px;
  2607. display:flex;
  2608. transition:none;
  2609. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2610. font-weight:400;
  2611. font-style:normal;
  2612. font-size:12px;
  2613. color:#333333;
  2614. line-height:40px;
  2615. }
  2616. #u15904 .text {
  2617. position:absolute;
  2618. align-self:center;
  2619. padding:2px 2px 2px 0px;
  2620. box-sizing:border-box;
  2621. width:100%;
  2622. }
  2623. #u15904_img {
  2624. border-width:0px;
  2625. position:absolute;
  2626. left:0px;
  2627. top:0px;
  2628. width:96px;
  2629. height:44px;
  2630. }
  2631. #u15904_text {
  2632. border-width:0px;
  2633. word-wrap:break-word;
  2634. text-transform:none;
  2635. visibility:hidden;
  2636. }
  2637. #u15905 {
  2638. border-width:0px;
  2639. position:absolute;
  2640. left:259px;
  2641. top:79px;
  2642. width:96px;
  2643. height:44px;
  2644. display:flex;
  2645. transition:none;
  2646. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2647. font-weight:400;
  2648. font-style:normal;
  2649. font-size:12px;
  2650. color:#333333;
  2651. line-height:40px;
  2652. }
  2653. #u15905 .text {
  2654. position:absolute;
  2655. align-self:center;
  2656. padding:2px 2px 2px 0px;
  2657. box-sizing:border-box;
  2658. width:100%;
  2659. }
  2660. #u15905_img {
  2661. border-width:0px;
  2662. position:absolute;
  2663. left:0px;
  2664. top:0px;
  2665. width:96px;
  2666. height:44px;
  2667. }
  2668. #u15905_text {
  2669. border-width:0px;
  2670. word-wrap:break-word;
  2671. text-transform:none;
  2672. visibility:hidden;
  2673. }
  2674. #u15906 {
  2675. border-width:0px;
  2676. position:absolute;
  2677. left:355px;
  2678. top:79px;
  2679. width:96px;
  2680. height:44px;
  2681. display:flex;
  2682. transition:none;
  2683. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2684. font-weight:400;
  2685. font-style:normal;
  2686. font-size:12px;
  2687. color:#333333;
  2688. line-height:40px;
  2689. }
  2690. #u15906 .text {
  2691. position:absolute;
  2692. align-self:center;
  2693. padding:2px 2px 2px 0px;
  2694. box-sizing:border-box;
  2695. width:100%;
  2696. }
  2697. #u15906_img {
  2698. border-width:0px;
  2699. position:absolute;
  2700. left:0px;
  2701. top:0px;
  2702. width:96px;
  2703. height:44px;
  2704. }
  2705. #u15906_text {
  2706. border-width:0px;
  2707. word-wrap:break-word;
  2708. text-transform:none;
  2709. visibility:hidden;
  2710. }
  2711. #u15907 {
  2712. border-width:0px;
  2713. position:absolute;
  2714. left:451px;
  2715. top:79px;
  2716. width:100px;
  2717. height:44px;
  2718. display:flex;
  2719. transition:none;
  2720. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2721. font-weight:400;
  2722. font-style:normal;
  2723. font-size:12px;
  2724. color:#333333;
  2725. line-height:40px;
  2726. }
  2727. #u15907 .text {
  2728. position:absolute;
  2729. align-self:center;
  2730. padding:2px 2px 2px 0px;
  2731. box-sizing:border-box;
  2732. width:100%;
  2733. }
  2734. #u15907_img {
  2735. border-width:0px;
  2736. position:absolute;
  2737. left:0px;
  2738. top:0px;
  2739. width:100px;
  2740. height:44px;
  2741. }
  2742. #u15907_text {
  2743. border-width:0px;
  2744. word-wrap:break-word;
  2745. text-transform:none;
  2746. visibility:hidden;
  2747. }
  2748. #u15908 {
  2749. border-width:0px;
  2750. position:absolute;
  2751. left:551px;
  2752. top:79px;
  2753. width:96px;
  2754. height:44px;
  2755. display:flex;
  2756. transition:none;
  2757. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2758. font-weight:400;
  2759. font-style:normal;
  2760. font-size:12px;
  2761. }
  2762. #u15908 .text {
  2763. position:absolute;
  2764. align-self:center;
  2765. padding:2px 2px 2px 0px;
  2766. box-sizing:border-box;
  2767. width:100%;
  2768. }
  2769. #u15908_img {
  2770. border-width:0px;
  2771. position:absolute;
  2772. left:0px;
  2773. top:0px;
  2774. width:96px;
  2775. height:44px;
  2776. }
  2777. #u15908_text {
  2778. border-width:0px;
  2779. word-wrap:break-word;
  2780. text-transform:none;
  2781. visibility:hidden;
  2782. }
  2783. #u15909 {
  2784. border-width:0px;
  2785. position:absolute;
  2786. left:647px;
  2787. top:79px;
  2788. width:96px;
  2789. height:44px;
  2790. display:flex;
  2791. transition:none;
  2792. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2793. font-weight:400;
  2794. font-style:normal;
  2795. font-size:12px;
  2796. color:#606266;
  2797. }
  2798. #u15909 .text {
  2799. position:absolute;
  2800. align-self:center;
  2801. padding:2px 2px 2px 0px;
  2802. box-sizing:border-box;
  2803. width:100%;
  2804. }
  2805. #u15909_img {
  2806. border-width:0px;
  2807. position:absolute;
  2808. left:0px;
  2809. top:0px;
  2810. width:96px;
  2811. height:44px;
  2812. }
  2813. #u15909_text {
  2814. border-width:0px;
  2815. word-wrap:break-word;
  2816. text-transform:none;
  2817. visibility:hidden;
  2818. }
  2819. #u15910 {
  2820. border-width:0px;
  2821. position:absolute;
  2822. left:743px;
  2823. top:79px;
  2824. width:96px;
  2825. height:44px;
  2826. display:flex;
  2827. transition:none;
  2828. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2829. font-weight:400;
  2830. font-style:normal;
  2831. font-size:12px;
  2832. color:#333333;
  2833. }
  2834. #u15910 .text {
  2835. position:absolute;
  2836. align-self:center;
  2837. padding:2px 2px 2px 0px;
  2838. box-sizing:border-box;
  2839. width:100%;
  2840. }
  2841. #u15910_img {
  2842. border-width:0px;
  2843. position:absolute;
  2844. left:0px;
  2845. top:0px;
  2846. width:96px;
  2847. height:44px;
  2848. }
  2849. #u15910_text {
  2850. border-width:0px;
  2851. word-wrap:break-word;
  2852. text-transform:none;
  2853. visibility:hidden;
  2854. }
  2855. #u15911 {
  2856. border-width:0px;
  2857. position:absolute;
  2858. left:839px;
  2859. top:79px;
  2860. width:96px;
  2861. height:44px;
  2862. display:flex;
  2863. transition:none;
  2864. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2865. font-weight:400;
  2866. font-style:normal;
  2867. font-size:12px;
  2868. color:#333333;
  2869. }
  2870. #u15911 .text {
  2871. position:absolute;
  2872. align-self:center;
  2873. padding:2px 2px 2px 0px;
  2874. box-sizing:border-box;
  2875. width:100%;
  2876. }
  2877. #u15911_img {
  2878. border-width:0px;
  2879. position:absolute;
  2880. left:0px;
  2881. top:0px;
  2882. width:96px;
  2883. height:44px;
  2884. }
  2885. #u15911_text {
  2886. border-width:0px;
  2887. word-wrap:break-word;
  2888. text-transform:none;
  2889. visibility:hidden;
  2890. }
  2891. #u15912 {
  2892. border-width:0px;
  2893. position:absolute;
  2894. left:935px;
  2895. top:79px;
  2896. width:96px;
  2897. height:44px;
  2898. display:flex;
  2899. transition:none;
  2900. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2901. font-weight:400;
  2902. font-style:normal;
  2903. font-size:12px;
  2904. color:#333333;
  2905. }
  2906. #u15912 .text {
  2907. position:absolute;
  2908. align-self:center;
  2909. padding:2px 2px 2px 0px;
  2910. box-sizing:border-box;
  2911. width:100%;
  2912. }
  2913. #u15912_img {
  2914. border-width:0px;
  2915. position:absolute;
  2916. left:0px;
  2917. top:0px;
  2918. width:96px;
  2919. height:44px;
  2920. }
  2921. #u15912_text {
  2922. border-width:0px;
  2923. word-wrap:break-word;
  2924. text-transform:none;
  2925. visibility:hidden;
  2926. }
  2927. #u15913 {
  2928. border-width:0px;
  2929. position:absolute;
  2930. left:1031px;
  2931. top:79px;
  2932. width:96px;
  2933. height:44px;
  2934. display:flex;
  2935. transition:none;
  2936. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2937. font-weight:400;
  2938. font-style:normal;
  2939. font-size:12px;
  2940. color:#333333;
  2941. }
  2942. #u15913 .text {
  2943. position:absolute;
  2944. align-self:center;
  2945. padding:2px 2px 2px 0px;
  2946. box-sizing:border-box;
  2947. width:100%;
  2948. }
  2949. #u15913_img {
  2950. border-width:0px;
  2951. position:absolute;
  2952. left:0px;
  2953. top:0px;
  2954. width:96px;
  2955. height:44px;
  2956. }
  2957. #u15913_text {
  2958. border-width:0px;
  2959. word-wrap:break-word;
  2960. text-transform:none;
  2961. visibility:hidden;
  2962. }
  2963. #u15914 {
  2964. border-width:0px;
  2965. position:absolute;
  2966. left:1127px;
  2967. top:79px;
  2968. width:84px;
  2969. height:44px;
  2970. display:flex;
  2971. transition:none;
  2972. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2973. font-weight:400;
  2974. font-style:normal;
  2975. font-size:12px;
  2976. color:#1890FF;
  2977. }
  2978. #u15914 .text {
  2979. position:absolute;
  2980. align-self:center;
  2981. padding:2px 2px 2px 0px;
  2982. box-sizing:border-box;
  2983. width:100%;
  2984. }
  2985. #u15914_img {
  2986. border-width:0px;
  2987. position:absolute;
  2988. left:0px;
  2989. top:0px;
  2990. width:84px;
  2991. height:44px;
  2992. }
  2993. #u15914_text {
  2994. border-width:0px;
  2995. word-wrap:break-word;
  2996. text-transform:none;
  2997. visibility:hidden;
  2998. }
  2999. #u15915 {
  3000. border-width:0px;
  3001. position:absolute;
  3002. left:0px;
  3003. top:123px;
  3004. width:163px;
  3005. height:38px;
  3006. display:flex;
  3007. transition:none;
  3008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3009. font-weight:400;
  3010. font-style:normal;
  3011. font-size:12px;
  3012. color:#333333;
  3013. line-height:40px;
  3014. }
  3015. #u15915 .text {
  3016. position:absolute;
  3017. align-self:center;
  3018. padding:2px 2px 2px 0px;
  3019. box-sizing:border-box;
  3020. width:100%;
  3021. }
  3022. #u15915_img {
  3023. border-width:0px;
  3024. position:absolute;
  3025. left:0px;
  3026. top:0px;
  3027. width:163px;
  3028. height:38px;
  3029. }
  3030. #u15915_text {
  3031. border-width:0px;
  3032. word-wrap:break-word;
  3033. text-transform:none;
  3034. visibility:hidden;
  3035. }
  3036. #u15916 {
  3037. border-width:0px;
  3038. position:absolute;
  3039. left:163px;
  3040. top:123px;
  3041. width:96px;
  3042. height:38px;
  3043. display:flex;
  3044. transition:none;
  3045. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3046. font-weight:400;
  3047. font-style:normal;
  3048. font-size:12px;
  3049. color:#333333;
  3050. line-height:40px;
  3051. }
  3052. #u15916 .text {
  3053. position:absolute;
  3054. align-self:center;
  3055. padding:2px 2px 2px 0px;
  3056. box-sizing:border-box;
  3057. width:100%;
  3058. }
  3059. #u15916_img {
  3060. border-width:0px;
  3061. position:absolute;
  3062. left:0px;
  3063. top:0px;
  3064. width:96px;
  3065. height:38px;
  3066. }
  3067. #u15916_text {
  3068. border-width:0px;
  3069. word-wrap:break-word;
  3070. text-transform:none;
  3071. visibility:hidden;
  3072. }
  3073. #u15917 {
  3074. border-width:0px;
  3075. position:absolute;
  3076. left:259px;
  3077. top:123px;
  3078. width:96px;
  3079. height:38px;
  3080. display:flex;
  3081. transition:none;
  3082. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3083. font-weight:400;
  3084. font-style:normal;
  3085. font-size:12px;
  3086. color:#333333;
  3087. line-height:40px;
  3088. }
  3089. #u15917 .text {
  3090. position:absolute;
  3091. align-self:center;
  3092. padding:2px 2px 2px 0px;
  3093. box-sizing:border-box;
  3094. width:100%;
  3095. }
  3096. #u15917_img {
  3097. border-width:0px;
  3098. position:absolute;
  3099. left:0px;
  3100. top:0px;
  3101. width:96px;
  3102. height:38px;
  3103. }
  3104. #u15917_text {
  3105. border-width:0px;
  3106. word-wrap:break-word;
  3107. text-transform:none;
  3108. visibility:hidden;
  3109. }
  3110. #u15918 {
  3111. border-width:0px;
  3112. position:absolute;
  3113. left:355px;
  3114. top:123px;
  3115. width:96px;
  3116. height:38px;
  3117. display:flex;
  3118. transition:none;
  3119. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3120. font-weight:400;
  3121. font-style:normal;
  3122. font-size:12px;
  3123. color:#333333;
  3124. line-height:40px;
  3125. }
  3126. #u15918 .text {
  3127. position:absolute;
  3128. align-self:center;
  3129. padding:2px 2px 2px 0px;
  3130. box-sizing:border-box;
  3131. width:100%;
  3132. }
  3133. #u15918_img {
  3134. border-width:0px;
  3135. position:absolute;
  3136. left:0px;
  3137. top:0px;
  3138. width:96px;
  3139. height:38px;
  3140. }
  3141. #u15918_text {
  3142. border-width:0px;
  3143. word-wrap:break-word;
  3144. text-transform:none;
  3145. visibility:hidden;
  3146. }
  3147. #u15919 {
  3148. border-width:0px;
  3149. position:absolute;
  3150. left:451px;
  3151. top:123px;
  3152. width:100px;
  3153. height:38px;
  3154. display:flex;
  3155. transition:none;
  3156. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3157. font-weight:400;
  3158. font-style:normal;
  3159. font-size:12px;
  3160. color:#333333;
  3161. line-height:40px;
  3162. }
  3163. #u15919 .text {
  3164. position:absolute;
  3165. align-self:center;
  3166. padding:2px 2px 2px 0px;
  3167. box-sizing:border-box;
  3168. width:100%;
  3169. }
  3170. #u15919_img {
  3171. border-width:0px;
  3172. position:absolute;
  3173. left:0px;
  3174. top:0px;
  3175. width:100px;
  3176. height:38px;
  3177. }
  3178. #u15919_text {
  3179. border-width:0px;
  3180. word-wrap:break-word;
  3181. text-transform:none;
  3182. visibility:hidden;
  3183. }
  3184. #u15920 {
  3185. border-width:0px;
  3186. position:absolute;
  3187. left:551px;
  3188. top:123px;
  3189. width:96px;
  3190. height:38px;
  3191. display:flex;
  3192. transition:none;
  3193. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3194. font-weight:400;
  3195. font-style:normal;
  3196. font-size:12px;
  3197. color:#606266;
  3198. }
  3199. #u15920 .text {
  3200. position:absolute;
  3201. align-self:center;
  3202. padding:2px 2px 2px 0px;
  3203. box-sizing:border-box;
  3204. width:100%;
  3205. }
  3206. #u15920_img {
  3207. border-width:0px;
  3208. position:absolute;
  3209. left:0px;
  3210. top:0px;
  3211. width:96px;
  3212. height:38px;
  3213. }
  3214. #u15920_text {
  3215. border-width:0px;
  3216. word-wrap:break-word;
  3217. text-transform:none;
  3218. visibility:hidden;
  3219. }
  3220. #u15921 {
  3221. border-width:0px;
  3222. position:absolute;
  3223. left:647px;
  3224. top:123px;
  3225. width:96px;
  3226. height:38px;
  3227. display:flex;
  3228. transition:none;
  3229. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3230. font-weight:400;
  3231. font-style:normal;
  3232. font-size:12px;
  3233. color:#606266;
  3234. }
  3235. #u15921 .text {
  3236. position:absolute;
  3237. align-self:center;
  3238. padding:2px 2px 2px 0px;
  3239. box-sizing:border-box;
  3240. width:100%;
  3241. }
  3242. #u15921_img {
  3243. border-width:0px;
  3244. position:absolute;
  3245. left:0px;
  3246. top:0px;
  3247. width:96px;
  3248. height:38px;
  3249. }
  3250. #u15921_text {
  3251. border-width:0px;
  3252. word-wrap:break-word;
  3253. text-transform:none;
  3254. visibility:hidden;
  3255. }
  3256. #u15922 {
  3257. border-width:0px;
  3258. position:absolute;
  3259. left:743px;
  3260. top:123px;
  3261. width:96px;
  3262. height:38px;
  3263. display:flex;
  3264. transition:none;
  3265. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3266. font-weight:400;
  3267. font-style:normal;
  3268. font-size:12px;
  3269. color:#606266;
  3270. }
  3271. #u15922 .text {
  3272. position:absolute;
  3273. align-self:center;
  3274. padding:2px 2px 2px 0px;
  3275. box-sizing:border-box;
  3276. width:100%;
  3277. }
  3278. #u15922_img {
  3279. border-width:0px;
  3280. position:absolute;
  3281. left:0px;
  3282. top:0px;
  3283. width:96px;
  3284. height:38px;
  3285. }
  3286. #u15922_text {
  3287. border-width:0px;
  3288. word-wrap:break-word;
  3289. text-transform:none;
  3290. visibility:hidden;
  3291. }
  3292. #u15923 {
  3293. border-width:0px;
  3294. position:absolute;
  3295. left:839px;
  3296. top:123px;
  3297. width:96px;
  3298. height:38px;
  3299. display:flex;
  3300. transition:none;
  3301. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3302. font-weight:400;
  3303. font-style:normal;
  3304. font-size:12px;
  3305. color:#606266;
  3306. }
  3307. #u15923 .text {
  3308. position:absolute;
  3309. align-self:center;
  3310. padding:2px 2px 2px 0px;
  3311. box-sizing:border-box;
  3312. width:100%;
  3313. }
  3314. #u15923_img {
  3315. border-width:0px;
  3316. position:absolute;
  3317. left:0px;
  3318. top:0px;
  3319. width:96px;
  3320. height:38px;
  3321. }
  3322. #u15923_text {
  3323. border-width:0px;
  3324. word-wrap:break-word;
  3325. text-transform:none;
  3326. visibility:hidden;
  3327. }
  3328. #u15924 {
  3329. border-width:0px;
  3330. position:absolute;
  3331. left:935px;
  3332. top:123px;
  3333. width:96px;
  3334. height:38px;
  3335. display:flex;
  3336. transition:none;
  3337. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3338. font-weight:400;
  3339. font-style:normal;
  3340. font-size:12px;
  3341. color:#606266;
  3342. }
  3343. #u15924 .text {
  3344. position:absolute;
  3345. align-self:center;
  3346. padding:2px 2px 2px 0px;
  3347. box-sizing:border-box;
  3348. width:100%;
  3349. }
  3350. #u15924_img {
  3351. border-width:0px;
  3352. position:absolute;
  3353. left:0px;
  3354. top:0px;
  3355. width:96px;
  3356. height:38px;
  3357. }
  3358. #u15924_text {
  3359. border-width:0px;
  3360. word-wrap:break-word;
  3361. text-transform:none;
  3362. visibility:hidden;
  3363. }
  3364. #u15925 {
  3365. border-width:0px;
  3366. position:absolute;
  3367. left:1031px;
  3368. top:123px;
  3369. width:96px;
  3370. height:38px;
  3371. display:flex;
  3372. transition:none;
  3373. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3374. font-weight:400;
  3375. font-style:normal;
  3376. font-size:12px;
  3377. color:#606266;
  3378. }
  3379. #u15925 .text {
  3380. position:absolute;
  3381. align-self:center;
  3382. padding:2px 2px 2px 0px;
  3383. box-sizing:border-box;
  3384. width:100%;
  3385. }
  3386. #u15925_img {
  3387. border-width:0px;
  3388. position:absolute;
  3389. left:0px;
  3390. top:0px;
  3391. width:96px;
  3392. height:38px;
  3393. }
  3394. #u15925_text {
  3395. border-width:0px;
  3396. word-wrap:break-word;
  3397. text-transform:none;
  3398. visibility:hidden;
  3399. }
  3400. #u15926 {
  3401. border-width:0px;
  3402. position:absolute;
  3403. left:1127px;
  3404. top:123px;
  3405. width:84px;
  3406. height:38px;
  3407. display:flex;
  3408. transition:none;
  3409. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3410. font-weight:400;
  3411. font-style:normal;
  3412. font-size:12px;
  3413. color:#1890FF;
  3414. }
  3415. #u15926 .text {
  3416. position:absolute;
  3417. align-self:center;
  3418. padding:2px 2px 2px 0px;
  3419. box-sizing:border-box;
  3420. width:100%;
  3421. }
  3422. #u15926_img {
  3423. border-width:0px;
  3424. position:absolute;
  3425. left:0px;
  3426. top:0px;
  3427. width:84px;
  3428. height:38px;
  3429. }
  3430. #u15926_text {
  3431. border-width:0px;
  3432. word-wrap:break-word;
  3433. text-transform:none;
  3434. visibility:hidden;
  3435. }
  3436. #u15927 {
  3437. border-width:0px;
  3438. position:absolute;
  3439. left:0px;
  3440. top:161px;
  3441. width:163px;
  3442. height:38px;
  3443. display:flex;
  3444. transition:none;
  3445. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3446. font-weight:400;
  3447. font-style:normal;
  3448. font-size:12px;
  3449. color:#606266;
  3450. }
  3451. #u15927 .text {
  3452. position:absolute;
  3453. align-self:center;
  3454. padding:2px 2px 2px 0px;
  3455. box-sizing:border-box;
  3456. width:100%;
  3457. }
  3458. #u15927_img {
  3459. border-width:0px;
  3460. position:absolute;
  3461. left:0px;
  3462. top:0px;
  3463. width:163px;
  3464. height:38px;
  3465. }
  3466. #u15927_text {
  3467. border-width:0px;
  3468. word-wrap:break-word;
  3469. text-transform:none;
  3470. visibility:hidden;
  3471. }
  3472. #u15928 {
  3473. border-width:0px;
  3474. position:absolute;
  3475. left:163px;
  3476. top:161px;
  3477. width:96px;
  3478. height:38px;
  3479. display:flex;
  3480. transition:none;
  3481. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3482. font-weight:400;
  3483. font-style:normal;
  3484. font-size:12px;
  3485. color:#606266;
  3486. }
  3487. #u15928 .text {
  3488. position:absolute;
  3489. align-self:center;
  3490. padding:2px 2px 2px 0px;
  3491. box-sizing:border-box;
  3492. width:100%;
  3493. }
  3494. #u15928_img {
  3495. border-width:0px;
  3496. position:absolute;
  3497. left:0px;
  3498. top:0px;
  3499. width:96px;
  3500. height:38px;
  3501. }
  3502. #u15928_text {
  3503. border-width:0px;
  3504. word-wrap:break-word;
  3505. text-transform:none;
  3506. visibility:hidden;
  3507. }
  3508. #u15929 {
  3509. border-width:0px;
  3510. position:absolute;
  3511. left:259px;
  3512. top:161px;
  3513. width:96px;
  3514. height:38px;
  3515. display:flex;
  3516. transition:none;
  3517. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3518. font-weight:400;
  3519. font-style:normal;
  3520. font-size:12px;
  3521. color:#606266;
  3522. }
  3523. #u15929 .text {
  3524. position:absolute;
  3525. align-self:center;
  3526. padding:2px 2px 2px 0px;
  3527. box-sizing:border-box;
  3528. width:100%;
  3529. }
  3530. #u15929_img {
  3531. border-width:0px;
  3532. position:absolute;
  3533. left:0px;
  3534. top:0px;
  3535. width:96px;
  3536. height:38px;
  3537. }
  3538. #u15929_text {
  3539. border-width:0px;
  3540. word-wrap:break-word;
  3541. text-transform:none;
  3542. visibility:hidden;
  3543. }
  3544. #u15930 {
  3545. border-width:0px;
  3546. position:absolute;
  3547. left:355px;
  3548. top:161px;
  3549. width:96px;
  3550. height:38px;
  3551. display:flex;
  3552. transition:none;
  3553. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3554. font-weight:400;
  3555. font-style:normal;
  3556. font-size:12px;
  3557. color:#606266;
  3558. }
  3559. #u15930 .text {
  3560. position:absolute;
  3561. align-self:center;
  3562. padding:2px 2px 2px 0px;
  3563. box-sizing:border-box;
  3564. width:100%;
  3565. }
  3566. #u15930_img {
  3567. border-width:0px;
  3568. position:absolute;
  3569. left:0px;
  3570. top:0px;
  3571. width:96px;
  3572. height:38px;
  3573. }
  3574. #u15930_text {
  3575. border-width:0px;
  3576. word-wrap:break-word;
  3577. text-transform:none;
  3578. visibility:hidden;
  3579. }
  3580. #u15931 {
  3581. border-width:0px;
  3582. position:absolute;
  3583. left:451px;
  3584. top:161px;
  3585. width:100px;
  3586. height:38px;
  3587. display:flex;
  3588. transition:none;
  3589. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3590. font-weight:400;
  3591. font-style:normal;
  3592. font-size:12px;
  3593. color:#606266;
  3594. }
  3595. #u15931 .text {
  3596. position:absolute;
  3597. align-self:center;
  3598. padding:2px 2px 2px 0px;
  3599. box-sizing:border-box;
  3600. width:100%;
  3601. }
  3602. #u15931_img {
  3603. border-width:0px;
  3604. position:absolute;
  3605. left:0px;
  3606. top:0px;
  3607. width:100px;
  3608. height:38px;
  3609. }
  3610. #u15931_text {
  3611. border-width:0px;
  3612. word-wrap:break-word;
  3613. text-transform:none;
  3614. visibility:hidden;
  3615. }
  3616. #u15932 {
  3617. border-width:0px;
  3618. position:absolute;
  3619. left:551px;
  3620. top:161px;
  3621. width:96px;
  3622. height:38px;
  3623. display:flex;
  3624. transition:none;
  3625. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3626. font-weight:400;
  3627. font-style:normal;
  3628. font-size:12px;
  3629. color:#606266;
  3630. }
  3631. #u15932 .text {
  3632. position:absolute;
  3633. align-self:center;
  3634. padding:2px 2px 2px 0px;
  3635. box-sizing:border-box;
  3636. width:100%;
  3637. }
  3638. #u15932_img {
  3639. border-width:0px;
  3640. position:absolute;
  3641. left:0px;
  3642. top:0px;
  3643. width:96px;
  3644. height:38px;
  3645. }
  3646. #u15932_text {
  3647. border-width:0px;
  3648. word-wrap:break-word;
  3649. text-transform:none;
  3650. visibility:hidden;
  3651. }
  3652. #u15933 {
  3653. border-width:0px;
  3654. position:absolute;
  3655. left:647px;
  3656. top:161px;
  3657. width:96px;
  3658. height:38px;
  3659. display:flex;
  3660. transition:none;
  3661. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3662. font-weight:400;
  3663. font-style:normal;
  3664. font-size:12px;
  3665. color:#606266;
  3666. }
  3667. #u15933 .text {
  3668. position:absolute;
  3669. align-self:center;
  3670. padding:2px 2px 2px 0px;
  3671. box-sizing:border-box;
  3672. width:100%;
  3673. }
  3674. #u15933_img {
  3675. border-width:0px;
  3676. position:absolute;
  3677. left:0px;
  3678. top:0px;
  3679. width:96px;
  3680. height:38px;
  3681. }
  3682. #u15933_text {
  3683. border-width:0px;
  3684. word-wrap:break-word;
  3685. text-transform:none;
  3686. visibility:hidden;
  3687. }
  3688. #u15934 {
  3689. border-width:0px;
  3690. position:absolute;
  3691. left:743px;
  3692. top:161px;
  3693. width:96px;
  3694. height:38px;
  3695. display:flex;
  3696. transition:none;
  3697. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3698. font-weight:400;
  3699. font-style:normal;
  3700. font-size:12px;
  3701. color:#606266;
  3702. }
  3703. #u15934 .text {
  3704. position:absolute;
  3705. align-self:center;
  3706. padding:2px 2px 2px 0px;
  3707. box-sizing:border-box;
  3708. width:100%;
  3709. }
  3710. #u15934_img {
  3711. border-width:0px;
  3712. position:absolute;
  3713. left:0px;
  3714. top:0px;
  3715. width:96px;
  3716. height:38px;
  3717. }
  3718. #u15934_text {
  3719. border-width:0px;
  3720. word-wrap:break-word;
  3721. text-transform:none;
  3722. visibility:hidden;
  3723. }
  3724. #u15935 {
  3725. border-width:0px;
  3726. position:absolute;
  3727. left:839px;
  3728. top:161px;
  3729. width:96px;
  3730. height:38px;
  3731. display:flex;
  3732. transition:none;
  3733. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3734. font-weight:400;
  3735. font-style:normal;
  3736. font-size:12px;
  3737. color:#606266;
  3738. }
  3739. #u15935 .text {
  3740. position:absolute;
  3741. align-self:center;
  3742. padding:2px 2px 2px 0px;
  3743. box-sizing:border-box;
  3744. width:100%;
  3745. }
  3746. #u15935_img {
  3747. border-width:0px;
  3748. position:absolute;
  3749. left:0px;
  3750. top:0px;
  3751. width:96px;
  3752. height:38px;
  3753. }
  3754. #u15935_text {
  3755. border-width:0px;
  3756. word-wrap:break-word;
  3757. text-transform:none;
  3758. visibility:hidden;
  3759. }
  3760. #u15936 {
  3761. border-width:0px;
  3762. position:absolute;
  3763. left:935px;
  3764. top:161px;
  3765. width:96px;
  3766. height:38px;
  3767. display:flex;
  3768. transition:none;
  3769. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3770. font-weight:400;
  3771. font-style:normal;
  3772. font-size:12px;
  3773. color:#606266;
  3774. }
  3775. #u15936 .text {
  3776. position:absolute;
  3777. align-self:center;
  3778. padding:2px 2px 2px 0px;
  3779. box-sizing:border-box;
  3780. width:100%;
  3781. }
  3782. #u15936_img {
  3783. border-width:0px;
  3784. position:absolute;
  3785. left:0px;
  3786. top:0px;
  3787. width:96px;
  3788. height:38px;
  3789. }
  3790. #u15936_text {
  3791. border-width:0px;
  3792. word-wrap:break-word;
  3793. text-transform:none;
  3794. visibility:hidden;
  3795. }
  3796. #u15937 {
  3797. border-width:0px;
  3798. position:absolute;
  3799. left:1031px;
  3800. top:161px;
  3801. width:96px;
  3802. height:38px;
  3803. display:flex;
  3804. transition:none;
  3805. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3806. font-weight:400;
  3807. font-style:normal;
  3808. font-size:12px;
  3809. color:#606266;
  3810. }
  3811. #u15937 .text {
  3812. position:absolute;
  3813. align-self:center;
  3814. padding:2px 2px 2px 0px;
  3815. box-sizing:border-box;
  3816. width:100%;
  3817. }
  3818. #u15937_img {
  3819. border-width:0px;
  3820. position:absolute;
  3821. left:0px;
  3822. top:0px;
  3823. width:96px;
  3824. height:38px;
  3825. }
  3826. #u15937_text {
  3827. border-width:0px;
  3828. word-wrap:break-word;
  3829. text-transform:none;
  3830. visibility:hidden;
  3831. }
  3832. #u15938 {
  3833. border-width:0px;
  3834. position:absolute;
  3835. left:1127px;
  3836. top:161px;
  3837. width:84px;
  3838. height:38px;
  3839. display:flex;
  3840. transition:none;
  3841. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3842. font-weight:400;
  3843. font-style:normal;
  3844. font-size:12px;
  3845. color:#606266;
  3846. }
  3847. #u15938 .text {
  3848. position:absolute;
  3849. align-self:center;
  3850. padding:2px 2px 2px 0px;
  3851. box-sizing:border-box;
  3852. width:100%;
  3853. }
  3854. #u15938_img {
  3855. border-width:0px;
  3856. position:absolute;
  3857. left:0px;
  3858. top:0px;
  3859. width:84px;
  3860. height:38px;
  3861. }
  3862. #u15938_text {
  3863. border-width:0px;
  3864. word-wrap:break-word;
  3865. text-transform:none;
  3866. visibility:hidden;
  3867. }
  3868. #u15939 {
  3869. border-width:0px;
  3870. position:absolute;
  3871. left:0px;
  3872. top:199px;
  3873. width:163px;
  3874. height:38px;
  3875. display:flex;
  3876. transition:none;
  3877. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3878. font-weight:400;
  3879. font-style:normal;
  3880. font-size:12px;
  3881. color:#606266;
  3882. }
  3883. #u15939 .text {
  3884. position:absolute;
  3885. align-self:center;
  3886. padding:2px 2px 2px 0px;
  3887. box-sizing:border-box;
  3888. width:100%;
  3889. }
  3890. #u15939_img {
  3891. border-width:0px;
  3892. position:absolute;
  3893. left:0px;
  3894. top:0px;
  3895. width:163px;
  3896. height:38px;
  3897. }
  3898. #u15939_text {
  3899. border-width:0px;
  3900. word-wrap:break-word;
  3901. text-transform:none;
  3902. visibility:hidden;
  3903. }
  3904. #u15940 {
  3905. border-width:0px;
  3906. position:absolute;
  3907. left:163px;
  3908. top:199px;
  3909. width:96px;
  3910. height:38px;
  3911. display:flex;
  3912. transition:none;
  3913. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3914. font-weight:400;
  3915. font-style:normal;
  3916. font-size:12px;
  3917. color:#606266;
  3918. }
  3919. #u15940 .text {
  3920. position:absolute;
  3921. align-self:center;
  3922. padding:2px 2px 2px 0px;
  3923. box-sizing:border-box;
  3924. width:100%;
  3925. }
  3926. #u15940_img {
  3927. border-width:0px;
  3928. position:absolute;
  3929. left:0px;
  3930. top:0px;
  3931. width:96px;
  3932. height:38px;
  3933. }
  3934. #u15940_text {
  3935. border-width:0px;
  3936. word-wrap:break-word;
  3937. text-transform:none;
  3938. visibility:hidden;
  3939. }
  3940. #u15941 {
  3941. border-width:0px;
  3942. position:absolute;
  3943. left:259px;
  3944. top:199px;
  3945. width:96px;
  3946. height:38px;
  3947. display:flex;
  3948. transition:none;
  3949. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3950. font-weight:400;
  3951. font-style:normal;
  3952. font-size:12px;
  3953. color:#606266;
  3954. }
  3955. #u15941 .text {
  3956. position:absolute;
  3957. align-self:center;
  3958. padding:2px 2px 2px 0px;
  3959. box-sizing:border-box;
  3960. width:100%;
  3961. }
  3962. #u15941_img {
  3963. border-width:0px;
  3964. position:absolute;
  3965. left:0px;
  3966. top:0px;
  3967. width:96px;
  3968. height:38px;
  3969. }
  3970. #u15941_text {
  3971. border-width:0px;
  3972. word-wrap:break-word;
  3973. text-transform:none;
  3974. visibility:hidden;
  3975. }
  3976. #u15942 {
  3977. border-width:0px;
  3978. position:absolute;
  3979. left:355px;
  3980. top:199px;
  3981. width:96px;
  3982. height:38px;
  3983. display:flex;
  3984. transition:none;
  3985. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3986. font-weight:400;
  3987. font-style:normal;
  3988. font-size:12px;
  3989. color:#606266;
  3990. }
  3991. #u15942 .text {
  3992. position:absolute;
  3993. align-self:center;
  3994. padding:2px 2px 2px 0px;
  3995. box-sizing:border-box;
  3996. width:100%;
  3997. }
  3998. #u15942_img {
  3999. border-width:0px;
  4000. position:absolute;
  4001. left:0px;
  4002. top:0px;
  4003. width:96px;
  4004. height:38px;
  4005. }
  4006. #u15942_text {
  4007. border-width:0px;
  4008. word-wrap:break-word;
  4009. text-transform:none;
  4010. visibility:hidden;
  4011. }
  4012. #u15943 {
  4013. border-width:0px;
  4014. position:absolute;
  4015. left:451px;
  4016. top:199px;
  4017. width:100px;
  4018. height:38px;
  4019. display:flex;
  4020. transition:none;
  4021. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4022. font-weight:400;
  4023. font-style:normal;
  4024. font-size:12px;
  4025. color:#606266;
  4026. }
  4027. #u15943 .text {
  4028. position:absolute;
  4029. align-self:center;
  4030. padding:2px 2px 2px 0px;
  4031. box-sizing:border-box;
  4032. width:100%;
  4033. }
  4034. #u15943_img {
  4035. border-width:0px;
  4036. position:absolute;
  4037. left:0px;
  4038. top:0px;
  4039. width:100px;
  4040. height:38px;
  4041. }
  4042. #u15943_text {
  4043. border-width:0px;
  4044. word-wrap:break-word;
  4045. text-transform:none;
  4046. visibility:hidden;
  4047. }
  4048. #u15944 {
  4049. border-width:0px;
  4050. position:absolute;
  4051. left:551px;
  4052. top:199px;
  4053. width:96px;
  4054. height:38px;
  4055. display:flex;
  4056. transition:none;
  4057. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4058. font-weight:400;
  4059. font-style:normal;
  4060. font-size:12px;
  4061. color:#606266;
  4062. }
  4063. #u15944 .text {
  4064. position:absolute;
  4065. align-self:center;
  4066. padding:2px 2px 2px 0px;
  4067. box-sizing:border-box;
  4068. width:100%;
  4069. }
  4070. #u15944_img {
  4071. border-width:0px;
  4072. position:absolute;
  4073. left:0px;
  4074. top:0px;
  4075. width:96px;
  4076. height:38px;
  4077. }
  4078. #u15944_text {
  4079. border-width:0px;
  4080. word-wrap:break-word;
  4081. text-transform:none;
  4082. visibility:hidden;
  4083. }
  4084. #u15945 {
  4085. border-width:0px;
  4086. position:absolute;
  4087. left:647px;
  4088. top:199px;
  4089. width:96px;
  4090. height:38px;
  4091. display:flex;
  4092. transition:none;
  4093. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4094. font-weight:400;
  4095. font-style:normal;
  4096. font-size:12px;
  4097. color:#606266;
  4098. }
  4099. #u15945 .text {
  4100. position:absolute;
  4101. align-self:center;
  4102. padding:2px 2px 2px 0px;
  4103. box-sizing:border-box;
  4104. width:100%;
  4105. }
  4106. #u15945_img {
  4107. border-width:0px;
  4108. position:absolute;
  4109. left:0px;
  4110. top:0px;
  4111. width:96px;
  4112. height:38px;
  4113. }
  4114. #u15945_text {
  4115. border-width:0px;
  4116. word-wrap:break-word;
  4117. text-transform:none;
  4118. visibility:hidden;
  4119. }
  4120. #u15946 {
  4121. border-width:0px;
  4122. position:absolute;
  4123. left:743px;
  4124. top:199px;
  4125. width:96px;
  4126. height:38px;
  4127. display:flex;
  4128. transition:none;
  4129. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4130. font-weight:400;
  4131. font-style:normal;
  4132. font-size:12px;
  4133. color:#606266;
  4134. }
  4135. #u15946 .text {
  4136. position:absolute;
  4137. align-self:center;
  4138. padding:2px 2px 2px 0px;
  4139. box-sizing:border-box;
  4140. width:100%;
  4141. }
  4142. #u15946_img {
  4143. border-width:0px;
  4144. position:absolute;
  4145. left:0px;
  4146. top:0px;
  4147. width:96px;
  4148. height:38px;
  4149. }
  4150. #u15946_text {
  4151. border-width:0px;
  4152. word-wrap:break-word;
  4153. text-transform:none;
  4154. visibility:hidden;
  4155. }
  4156. #u15947 {
  4157. border-width:0px;
  4158. position:absolute;
  4159. left:839px;
  4160. top:199px;
  4161. width:96px;
  4162. height:38px;
  4163. display:flex;
  4164. transition:none;
  4165. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4166. font-weight:400;
  4167. font-style:normal;
  4168. font-size:12px;
  4169. color:#606266;
  4170. }
  4171. #u15947 .text {
  4172. position:absolute;
  4173. align-self:center;
  4174. padding:2px 2px 2px 0px;
  4175. box-sizing:border-box;
  4176. width:100%;
  4177. }
  4178. #u15947_img {
  4179. border-width:0px;
  4180. position:absolute;
  4181. left:0px;
  4182. top:0px;
  4183. width:96px;
  4184. height:38px;
  4185. }
  4186. #u15947_text {
  4187. border-width:0px;
  4188. word-wrap:break-word;
  4189. text-transform:none;
  4190. visibility:hidden;
  4191. }
  4192. #u15948 {
  4193. border-width:0px;
  4194. position:absolute;
  4195. left:935px;
  4196. top:199px;
  4197. width:96px;
  4198. height:38px;
  4199. display:flex;
  4200. transition:none;
  4201. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4202. font-weight:400;
  4203. font-style:normal;
  4204. font-size:12px;
  4205. color:#606266;
  4206. }
  4207. #u15948 .text {
  4208. position:absolute;
  4209. align-self:center;
  4210. padding:2px 2px 2px 0px;
  4211. box-sizing:border-box;
  4212. width:100%;
  4213. }
  4214. #u15948_img {
  4215. border-width:0px;
  4216. position:absolute;
  4217. left:0px;
  4218. top:0px;
  4219. width:96px;
  4220. height:38px;
  4221. }
  4222. #u15948_text {
  4223. border-width:0px;
  4224. word-wrap:break-word;
  4225. text-transform:none;
  4226. visibility:hidden;
  4227. }
  4228. #u15949 {
  4229. border-width:0px;
  4230. position:absolute;
  4231. left:1031px;
  4232. top:199px;
  4233. width:96px;
  4234. height:38px;
  4235. display:flex;
  4236. transition:none;
  4237. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4238. font-weight:400;
  4239. font-style:normal;
  4240. font-size:12px;
  4241. color:#606266;
  4242. }
  4243. #u15949 .text {
  4244. position:absolute;
  4245. align-self:center;
  4246. padding:2px 2px 2px 0px;
  4247. box-sizing:border-box;
  4248. width:100%;
  4249. }
  4250. #u15949_img {
  4251. border-width:0px;
  4252. position:absolute;
  4253. left:0px;
  4254. top:0px;
  4255. width:96px;
  4256. height:38px;
  4257. }
  4258. #u15949_text {
  4259. border-width:0px;
  4260. word-wrap:break-word;
  4261. text-transform:none;
  4262. visibility:hidden;
  4263. }
  4264. #u15950 {
  4265. border-width:0px;
  4266. position:absolute;
  4267. left:1127px;
  4268. top:199px;
  4269. width:84px;
  4270. height:38px;
  4271. display:flex;
  4272. transition:none;
  4273. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4274. font-weight:400;
  4275. font-style:normal;
  4276. font-size:12px;
  4277. color:#606266;
  4278. }
  4279. #u15950 .text {
  4280. position:absolute;
  4281. align-self:center;
  4282. padding:2px 2px 2px 0px;
  4283. box-sizing:border-box;
  4284. width:100%;
  4285. }
  4286. #u15950_img {
  4287. border-width:0px;
  4288. position:absolute;
  4289. left:0px;
  4290. top:0px;
  4291. width:84px;
  4292. height:38px;
  4293. }
  4294. #u15950_text {
  4295. border-width:0px;
  4296. word-wrap:break-word;
  4297. text-transform:none;
  4298. visibility:hidden;
  4299. }
  4300. #u15951 {
  4301. border-width:0px;
  4302. position:absolute;
  4303. left:0px;
  4304. top:237px;
  4305. width:163px;
  4306. height:38px;
  4307. display:flex;
  4308. transition:none;
  4309. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4310. font-weight:400;
  4311. font-style:normal;
  4312. font-size:12px;
  4313. color:#606266;
  4314. }
  4315. #u15951 .text {
  4316. position:absolute;
  4317. align-self:center;
  4318. padding:2px 2px 2px 0px;
  4319. box-sizing:border-box;
  4320. width:100%;
  4321. }
  4322. #u15951_img {
  4323. border-width:0px;
  4324. position:absolute;
  4325. left:0px;
  4326. top:0px;
  4327. width:163px;
  4328. height:38px;
  4329. }
  4330. #u15951_text {
  4331. border-width:0px;
  4332. word-wrap:break-word;
  4333. text-transform:none;
  4334. visibility:hidden;
  4335. }
  4336. #u15952 {
  4337. border-width:0px;
  4338. position:absolute;
  4339. left:163px;
  4340. top:237px;
  4341. width:96px;
  4342. height:38px;
  4343. display:flex;
  4344. transition:none;
  4345. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4346. font-weight:400;
  4347. font-style:normal;
  4348. font-size:12px;
  4349. color:#606266;
  4350. }
  4351. #u15952 .text {
  4352. position:absolute;
  4353. align-self:center;
  4354. padding:2px 2px 2px 0px;
  4355. box-sizing:border-box;
  4356. width:100%;
  4357. }
  4358. #u15952_img {
  4359. border-width:0px;
  4360. position:absolute;
  4361. left:0px;
  4362. top:0px;
  4363. width:96px;
  4364. height:38px;
  4365. }
  4366. #u15952_text {
  4367. border-width:0px;
  4368. word-wrap:break-word;
  4369. text-transform:none;
  4370. visibility:hidden;
  4371. }
  4372. #u15953 {
  4373. border-width:0px;
  4374. position:absolute;
  4375. left:259px;
  4376. top:237px;
  4377. width:96px;
  4378. height:38px;
  4379. display:flex;
  4380. transition:none;
  4381. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4382. font-weight:400;
  4383. font-style:normal;
  4384. font-size:12px;
  4385. color:#606266;
  4386. }
  4387. #u15953 .text {
  4388. position:absolute;
  4389. align-self:center;
  4390. padding:2px 2px 2px 0px;
  4391. box-sizing:border-box;
  4392. width:100%;
  4393. }
  4394. #u15953_img {
  4395. border-width:0px;
  4396. position:absolute;
  4397. left:0px;
  4398. top:0px;
  4399. width:96px;
  4400. height:38px;
  4401. }
  4402. #u15953_text {
  4403. border-width:0px;
  4404. word-wrap:break-word;
  4405. text-transform:none;
  4406. visibility:hidden;
  4407. }
  4408. #u15954 {
  4409. border-width:0px;
  4410. position:absolute;
  4411. left:355px;
  4412. top:237px;
  4413. width:96px;
  4414. height:38px;
  4415. display:flex;
  4416. transition:none;
  4417. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4418. font-weight:400;
  4419. font-style:normal;
  4420. font-size:12px;
  4421. color:#606266;
  4422. }
  4423. #u15954 .text {
  4424. position:absolute;
  4425. align-self:center;
  4426. padding:2px 2px 2px 0px;
  4427. box-sizing:border-box;
  4428. width:100%;
  4429. }
  4430. #u15954_img {
  4431. border-width:0px;
  4432. position:absolute;
  4433. left:0px;
  4434. top:0px;
  4435. width:96px;
  4436. height:38px;
  4437. }
  4438. #u15954_text {
  4439. border-width:0px;
  4440. word-wrap:break-word;
  4441. text-transform:none;
  4442. visibility:hidden;
  4443. }
  4444. #u15955 {
  4445. border-width:0px;
  4446. position:absolute;
  4447. left:451px;
  4448. top:237px;
  4449. width:100px;
  4450. height:38px;
  4451. display:flex;
  4452. transition:none;
  4453. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4454. font-weight:400;
  4455. font-style:normal;
  4456. font-size:12px;
  4457. color:#606266;
  4458. }
  4459. #u15955 .text {
  4460. position:absolute;
  4461. align-self:center;
  4462. padding:2px 2px 2px 0px;
  4463. box-sizing:border-box;
  4464. width:100%;
  4465. }
  4466. #u15955_img {
  4467. border-width:0px;
  4468. position:absolute;
  4469. left:0px;
  4470. top:0px;
  4471. width:100px;
  4472. height:38px;
  4473. }
  4474. #u15955_text {
  4475. border-width:0px;
  4476. word-wrap:break-word;
  4477. text-transform:none;
  4478. visibility:hidden;
  4479. }
  4480. #u15956 {
  4481. border-width:0px;
  4482. position:absolute;
  4483. left:551px;
  4484. top:237px;
  4485. width:96px;
  4486. height:38px;
  4487. display:flex;
  4488. transition:none;
  4489. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4490. font-weight:400;
  4491. font-style:normal;
  4492. font-size:12px;
  4493. color:#606266;
  4494. }
  4495. #u15956 .text {
  4496. position:absolute;
  4497. align-self:center;
  4498. padding:2px 2px 2px 0px;
  4499. box-sizing:border-box;
  4500. width:100%;
  4501. }
  4502. #u15956_img {
  4503. border-width:0px;
  4504. position:absolute;
  4505. left:0px;
  4506. top:0px;
  4507. width:96px;
  4508. height:38px;
  4509. }
  4510. #u15956_text {
  4511. border-width:0px;
  4512. word-wrap:break-word;
  4513. text-transform:none;
  4514. visibility:hidden;
  4515. }
  4516. #u15957 {
  4517. border-width:0px;
  4518. position:absolute;
  4519. left:647px;
  4520. top:237px;
  4521. width:96px;
  4522. height:38px;
  4523. display:flex;
  4524. transition:none;
  4525. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4526. font-weight:400;
  4527. font-style:normal;
  4528. font-size:12px;
  4529. color:#606266;
  4530. }
  4531. #u15957 .text {
  4532. position:absolute;
  4533. align-self:center;
  4534. padding:2px 2px 2px 0px;
  4535. box-sizing:border-box;
  4536. width:100%;
  4537. }
  4538. #u15957_img {
  4539. border-width:0px;
  4540. position:absolute;
  4541. left:0px;
  4542. top:0px;
  4543. width:96px;
  4544. height:38px;
  4545. }
  4546. #u15957_text {
  4547. border-width:0px;
  4548. word-wrap:break-word;
  4549. text-transform:none;
  4550. visibility:hidden;
  4551. }
  4552. #u15958 {
  4553. border-width:0px;
  4554. position:absolute;
  4555. left:743px;
  4556. top:237px;
  4557. width:96px;
  4558. height:38px;
  4559. display:flex;
  4560. transition:none;
  4561. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4562. font-weight:400;
  4563. font-style:normal;
  4564. font-size:12px;
  4565. color:#606266;
  4566. }
  4567. #u15958 .text {
  4568. position:absolute;
  4569. align-self:center;
  4570. padding:2px 2px 2px 0px;
  4571. box-sizing:border-box;
  4572. width:100%;
  4573. }
  4574. #u15958_img {
  4575. border-width:0px;
  4576. position:absolute;
  4577. left:0px;
  4578. top:0px;
  4579. width:96px;
  4580. height:38px;
  4581. }
  4582. #u15958_text {
  4583. border-width:0px;
  4584. word-wrap:break-word;
  4585. text-transform:none;
  4586. visibility:hidden;
  4587. }
  4588. #u15959 {
  4589. border-width:0px;
  4590. position:absolute;
  4591. left:839px;
  4592. top:237px;
  4593. width:96px;
  4594. height:38px;
  4595. display:flex;
  4596. transition:none;
  4597. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4598. font-weight:400;
  4599. font-style:normal;
  4600. font-size:12px;
  4601. color:#606266;
  4602. }
  4603. #u15959 .text {
  4604. position:absolute;
  4605. align-self:center;
  4606. padding:2px 2px 2px 0px;
  4607. box-sizing:border-box;
  4608. width:100%;
  4609. }
  4610. #u15959_img {
  4611. border-width:0px;
  4612. position:absolute;
  4613. left:0px;
  4614. top:0px;
  4615. width:96px;
  4616. height:38px;
  4617. }
  4618. #u15959_text {
  4619. border-width:0px;
  4620. word-wrap:break-word;
  4621. text-transform:none;
  4622. visibility:hidden;
  4623. }
  4624. #u15960 {
  4625. border-width:0px;
  4626. position:absolute;
  4627. left:935px;
  4628. top:237px;
  4629. width:96px;
  4630. height:38px;
  4631. display:flex;
  4632. transition:none;
  4633. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4634. font-weight:400;
  4635. font-style:normal;
  4636. font-size:12px;
  4637. color:#606266;
  4638. }
  4639. #u15960 .text {
  4640. position:absolute;
  4641. align-self:center;
  4642. padding:2px 2px 2px 0px;
  4643. box-sizing:border-box;
  4644. width:100%;
  4645. }
  4646. #u15960_img {
  4647. border-width:0px;
  4648. position:absolute;
  4649. left:0px;
  4650. top:0px;
  4651. width:96px;
  4652. height:38px;
  4653. }
  4654. #u15960_text {
  4655. border-width:0px;
  4656. word-wrap:break-word;
  4657. text-transform:none;
  4658. visibility:hidden;
  4659. }
  4660. #u15961 {
  4661. border-width:0px;
  4662. position:absolute;
  4663. left:1031px;
  4664. top:237px;
  4665. width:96px;
  4666. height:38px;
  4667. display:flex;
  4668. transition:none;
  4669. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4670. font-weight:400;
  4671. font-style:normal;
  4672. font-size:12px;
  4673. color:#606266;
  4674. }
  4675. #u15961 .text {
  4676. position:absolute;
  4677. align-self:center;
  4678. padding:2px 2px 2px 0px;
  4679. box-sizing:border-box;
  4680. width:100%;
  4681. }
  4682. #u15961_img {
  4683. border-width:0px;
  4684. position:absolute;
  4685. left:0px;
  4686. top:0px;
  4687. width:96px;
  4688. height:38px;
  4689. }
  4690. #u15961_text {
  4691. border-width:0px;
  4692. word-wrap:break-word;
  4693. text-transform:none;
  4694. visibility:hidden;
  4695. }
  4696. #u15962 {
  4697. border-width:0px;
  4698. position:absolute;
  4699. left:1127px;
  4700. top:237px;
  4701. width:84px;
  4702. height:38px;
  4703. display:flex;
  4704. transition:none;
  4705. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4706. font-weight:400;
  4707. font-style:normal;
  4708. font-size:12px;
  4709. color:#606266;
  4710. }
  4711. #u15962 .text {
  4712. position:absolute;
  4713. align-self:center;
  4714. padding:2px 2px 2px 0px;
  4715. box-sizing:border-box;
  4716. width:100%;
  4717. }
  4718. #u15962_img {
  4719. border-width:0px;
  4720. position:absolute;
  4721. left:0px;
  4722. top:0px;
  4723. width:84px;
  4724. height:38px;
  4725. }
  4726. #u15962_text {
  4727. border-width:0px;
  4728. word-wrap:break-word;
  4729. text-transform:none;
  4730. visibility:hidden;
  4731. }
  4732. #u15963 {
  4733. border-width:0px;
  4734. position:absolute;
  4735. left:0px;
  4736. top:275px;
  4737. width:163px;
  4738. height:38px;
  4739. display:flex;
  4740. transition:none;
  4741. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4742. font-weight:400;
  4743. font-style:normal;
  4744. font-size:12px;
  4745. color:#606266;
  4746. }
  4747. #u15963 .text {
  4748. position:absolute;
  4749. align-self:center;
  4750. padding:2px 2px 2px 0px;
  4751. box-sizing:border-box;
  4752. width:100%;
  4753. }
  4754. #u15963_img {
  4755. border-width:0px;
  4756. position:absolute;
  4757. left:0px;
  4758. top:0px;
  4759. width:163px;
  4760. height:38px;
  4761. }
  4762. #u15963_text {
  4763. border-width:0px;
  4764. word-wrap:break-word;
  4765. text-transform:none;
  4766. visibility:hidden;
  4767. }
  4768. #u15964 {
  4769. border-width:0px;
  4770. position:absolute;
  4771. left:163px;
  4772. top:275px;
  4773. width:96px;
  4774. height:38px;
  4775. display:flex;
  4776. transition:none;
  4777. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4778. font-weight:400;
  4779. font-style:normal;
  4780. font-size:12px;
  4781. color:#606266;
  4782. }
  4783. #u15964 .text {
  4784. position:absolute;
  4785. align-self:center;
  4786. padding:2px 2px 2px 0px;
  4787. box-sizing:border-box;
  4788. width:100%;
  4789. }
  4790. #u15964_img {
  4791. border-width:0px;
  4792. position:absolute;
  4793. left:0px;
  4794. top:0px;
  4795. width:96px;
  4796. height:38px;
  4797. }
  4798. #u15964_text {
  4799. border-width:0px;
  4800. word-wrap:break-word;
  4801. text-transform:none;
  4802. visibility:hidden;
  4803. }
  4804. #u15965 {
  4805. border-width:0px;
  4806. position:absolute;
  4807. left:259px;
  4808. top:275px;
  4809. width:96px;
  4810. height:38px;
  4811. display:flex;
  4812. transition:none;
  4813. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4814. font-weight:400;
  4815. font-style:normal;
  4816. font-size:12px;
  4817. color:#606266;
  4818. }
  4819. #u15965 .text {
  4820. position:absolute;
  4821. align-self:center;
  4822. padding:2px 2px 2px 0px;
  4823. box-sizing:border-box;
  4824. width:100%;
  4825. }
  4826. #u15965_img {
  4827. border-width:0px;
  4828. position:absolute;
  4829. left:0px;
  4830. top:0px;
  4831. width:96px;
  4832. height:38px;
  4833. }
  4834. #u15965_text {
  4835. border-width:0px;
  4836. word-wrap:break-word;
  4837. text-transform:none;
  4838. visibility:hidden;
  4839. }
  4840. #u15966 {
  4841. border-width:0px;
  4842. position:absolute;
  4843. left:355px;
  4844. top:275px;
  4845. width:96px;
  4846. height:38px;
  4847. display:flex;
  4848. transition:none;
  4849. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4850. font-weight:400;
  4851. font-style:normal;
  4852. font-size:12px;
  4853. color:#606266;
  4854. }
  4855. #u15966 .text {
  4856. position:absolute;
  4857. align-self:center;
  4858. padding:2px 2px 2px 0px;
  4859. box-sizing:border-box;
  4860. width:100%;
  4861. }
  4862. #u15966_img {
  4863. border-width:0px;
  4864. position:absolute;
  4865. left:0px;
  4866. top:0px;
  4867. width:96px;
  4868. height:38px;
  4869. }
  4870. #u15966_text {
  4871. border-width:0px;
  4872. word-wrap:break-word;
  4873. text-transform:none;
  4874. visibility:hidden;
  4875. }
  4876. #u15967 {
  4877. border-width:0px;
  4878. position:absolute;
  4879. left:451px;
  4880. top:275px;
  4881. width:100px;
  4882. height:38px;
  4883. display:flex;
  4884. transition:none;
  4885. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4886. font-weight:400;
  4887. font-style:normal;
  4888. font-size:12px;
  4889. color:#606266;
  4890. }
  4891. #u15967 .text {
  4892. position:absolute;
  4893. align-self:center;
  4894. padding:2px 2px 2px 0px;
  4895. box-sizing:border-box;
  4896. width:100%;
  4897. }
  4898. #u15967_img {
  4899. border-width:0px;
  4900. position:absolute;
  4901. left:0px;
  4902. top:0px;
  4903. width:100px;
  4904. height:38px;
  4905. }
  4906. #u15967_text {
  4907. border-width:0px;
  4908. word-wrap:break-word;
  4909. text-transform:none;
  4910. visibility:hidden;
  4911. }
  4912. #u15968 {
  4913. border-width:0px;
  4914. position:absolute;
  4915. left:551px;
  4916. top:275px;
  4917. width:96px;
  4918. height:38px;
  4919. display:flex;
  4920. transition:none;
  4921. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4922. font-weight:400;
  4923. font-style:normal;
  4924. font-size:12px;
  4925. color:#606266;
  4926. }
  4927. #u15968 .text {
  4928. position:absolute;
  4929. align-self:center;
  4930. padding:2px 2px 2px 0px;
  4931. box-sizing:border-box;
  4932. width:100%;
  4933. }
  4934. #u15968_img {
  4935. border-width:0px;
  4936. position:absolute;
  4937. left:0px;
  4938. top:0px;
  4939. width:96px;
  4940. height:38px;
  4941. }
  4942. #u15968_text {
  4943. border-width:0px;
  4944. word-wrap:break-word;
  4945. text-transform:none;
  4946. visibility:hidden;
  4947. }
  4948. #u15969 {
  4949. border-width:0px;
  4950. position:absolute;
  4951. left:647px;
  4952. top:275px;
  4953. width:96px;
  4954. height:38px;
  4955. display:flex;
  4956. transition:none;
  4957. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4958. font-weight:400;
  4959. font-style:normal;
  4960. font-size:12px;
  4961. color:#606266;
  4962. }
  4963. #u15969 .text {
  4964. position:absolute;
  4965. align-self:center;
  4966. padding:2px 2px 2px 0px;
  4967. box-sizing:border-box;
  4968. width:100%;
  4969. }
  4970. #u15969_img {
  4971. border-width:0px;
  4972. position:absolute;
  4973. left:0px;
  4974. top:0px;
  4975. width:96px;
  4976. height:38px;
  4977. }
  4978. #u15969_text {
  4979. border-width:0px;
  4980. word-wrap:break-word;
  4981. text-transform:none;
  4982. visibility:hidden;
  4983. }
  4984. #u15970 {
  4985. border-width:0px;
  4986. position:absolute;
  4987. left:743px;
  4988. top:275px;
  4989. width:96px;
  4990. height:38px;
  4991. display:flex;
  4992. transition:none;
  4993. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4994. font-weight:400;
  4995. font-style:normal;
  4996. font-size:12px;
  4997. color:#606266;
  4998. }
  4999. #u15970 .text {
  5000. position:absolute;
  5001. align-self:center;
  5002. padding:2px 2px 2px 0px;
  5003. box-sizing:border-box;
  5004. width:100%;
  5005. }
  5006. #u15970_img {
  5007. border-width:0px;
  5008. position:absolute;
  5009. left:0px;
  5010. top:0px;
  5011. width:96px;
  5012. height:38px;
  5013. }
  5014. #u15970_text {
  5015. border-width:0px;
  5016. word-wrap:break-word;
  5017. text-transform:none;
  5018. visibility:hidden;
  5019. }
  5020. #u15971 {
  5021. border-width:0px;
  5022. position:absolute;
  5023. left:839px;
  5024. top:275px;
  5025. width:96px;
  5026. height:38px;
  5027. display:flex;
  5028. transition:none;
  5029. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5030. font-weight:400;
  5031. font-style:normal;
  5032. font-size:12px;
  5033. color:#606266;
  5034. }
  5035. #u15971 .text {
  5036. position:absolute;
  5037. align-self:center;
  5038. padding:2px 2px 2px 0px;
  5039. box-sizing:border-box;
  5040. width:100%;
  5041. }
  5042. #u15971_img {
  5043. border-width:0px;
  5044. position:absolute;
  5045. left:0px;
  5046. top:0px;
  5047. width:96px;
  5048. height:38px;
  5049. }
  5050. #u15971_text {
  5051. border-width:0px;
  5052. word-wrap:break-word;
  5053. text-transform:none;
  5054. visibility:hidden;
  5055. }
  5056. #u15972 {
  5057. border-width:0px;
  5058. position:absolute;
  5059. left:935px;
  5060. top:275px;
  5061. width:96px;
  5062. height:38px;
  5063. display:flex;
  5064. transition:none;
  5065. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5066. font-weight:400;
  5067. font-style:normal;
  5068. font-size:12px;
  5069. color:#606266;
  5070. }
  5071. #u15972 .text {
  5072. position:absolute;
  5073. align-self:center;
  5074. padding:2px 2px 2px 0px;
  5075. box-sizing:border-box;
  5076. width:100%;
  5077. }
  5078. #u15972_img {
  5079. border-width:0px;
  5080. position:absolute;
  5081. left:0px;
  5082. top:0px;
  5083. width:96px;
  5084. height:38px;
  5085. }
  5086. #u15972_text {
  5087. border-width:0px;
  5088. word-wrap:break-word;
  5089. text-transform:none;
  5090. visibility:hidden;
  5091. }
  5092. #u15973 {
  5093. border-width:0px;
  5094. position:absolute;
  5095. left:1031px;
  5096. top:275px;
  5097. width:96px;
  5098. height:38px;
  5099. display:flex;
  5100. transition:none;
  5101. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5102. font-weight:400;
  5103. font-style:normal;
  5104. font-size:12px;
  5105. color:#606266;
  5106. }
  5107. #u15973 .text {
  5108. position:absolute;
  5109. align-self:center;
  5110. padding:2px 2px 2px 0px;
  5111. box-sizing:border-box;
  5112. width:100%;
  5113. }
  5114. #u15973_img {
  5115. border-width:0px;
  5116. position:absolute;
  5117. left:0px;
  5118. top:0px;
  5119. width:96px;
  5120. height:38px;
  5121. }
  5122. #u15973_text {
  5123. border-width:0px;
  5124. word-wrap:break-word;
  5125. text-transform:none;
  5126. visibility:hidden;
  5127. }
  5128. #u15974 {
  5129. border-width:0px;
  5130. position:absolute;
  5131. left:1127px;
  5132. top:275px;
  5133. width:84px;
  5134. height:38px;
  5135. display:flex;
  5136. transition:none;
  5137. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5138. font-weight:400;
  5139. font-style:normal;
  5140. font-size:12px;
  5141. color:#606266;
  5142. }
  5143. #u15974 .text {
  5144. position:absolute;
  5145. align-self:center;
  5146. padding:2px 2px 2px 0px;
  5147. box-sizing:border-box;
  5148. width:100%;
  5149. }
  5150. #u15974_img {
  5151. border-width:0px;
  5152. position:absolute;
  5153. left:0px;
  5154. top:0px;
  5155. width:84px;
  5156. height:38px;
  5157. }
  5158. #u15974_text {
  5159. border-width:0px;
  5160. word-wrap:break-word;
  5161. text-transform:none;
  5162. visibility:hidden;
  5163. }
  5164. #u15975_div {
  5165. border-width:0px;
  5166. position:absolute;
  5167. left:0px;
  5168. top:0px;
  5169. width:60px;
  5170. height:30px;
  5171. background:inherit;
  5172. background-color:rgba(24, 144, 255, 1);
  5173. border-radius:4px;
  5174. filter:drop-shadow(none);
  5175. transition:none;
  5176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5177. font-weight:400;
  5178. font-style:normal;
  5179. font-size:14px;
  5180. color:#FFFFFF;
  5181. }
  5182. #u15975 {
  5183. border-width:0px;
  5184. position:absolute;
  5185. left:350px;
  5186. top:232px;
  5187. width:60px;
  5188. height:30px;
  5189. display:flex;
  5190. transition:none;
  5191. transform-origin:50% 50%;
  5192. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5193. font-weight:400;
  5194. font-style:normal;
  5195. font-size:14px;
  5196. color:#FFFFFF;
  5197. }
  5198. #u15975 .text {
  5199. position:absolute;
  5200. align-self:center;
  5201. padding:2px 2px 2px 2px;
  5202. box-sizing:border-box;
  5203. width:100%;
  5204. }
  5205. #u15975_text {
  5206. border-width:0px;
  5207. word-wrap:break-word;
  5208. text-transform:none;
  5209. }
  5210. #u15976_div {
  5211. border-width:0px;
  5212. position:absolute;
  5213. left:0px;
  5214. top:0px;
  5215. width:73px;
  5216. height:50px;
  5217. background:inherit;
  5218. background-color:rgba(255, 255, 255, 0);
  5219. border-left:0px;
  5220. border-top:0px;
  5221. border-right:0px;
  5222. border-radius:0px;
  5223. border-bottom-right-radius:0px;
  5224. border-bottom-left-radius:0px;
  5225. filter:drop-shadow(none);
  5226. transition:none;
  5227. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5228. font-weight:400;
  5229. font-style:normal;
  5230. font-size:18px;
  5231. }
  5232. #u15976 {
  5233. border-width:0px;
  5234. position:absolute;
  5235. left:349px;
  5236. top:52px;
  5237. width:73px;
  5238. height:50px;
  5239. display:flex;
  5240. transition:none;
  5241. transform-origin:50% 50%;
  5242. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5243. font-weight:400;
  5244. font-style:normal;
  5245. font-size:18px;
  5246. }
  5247. #u15976 .text {
  5248. position:absolute;
  5249. align-self:center;
  5250. padding:0px 0px 0px 0px;
  5251. box-sizing:border-box;
  5252. width:100%;
  5253. }
  5254. #u15976_text {
  5255. border-width:0px;
  5256. white-space:nowrap;
  5257. text-transform:none;
  5258. }
  5259. #u15977 {
  5260. border-width:0px;
  5261. position:absolute;
  5262. left:0px;
  5263. top:0px;
  5264. width:0px;
  5265. height:0px;
  5266. }
  5267. #u15978_div {
  5268. border-width:0px;
  5269. position:absolute;
  5270. left:0px;
  5271. top:0px;
  5272. width:80px;
  5273. height:100px;
  5274. background:inherit;
  5275. background-color:rgba(255, 255, 255, 1);
  5276. box-sizing:border-box;
  5277. border-width:1px;
  5278. border-style:solid;
  5279. border-color:rgba(242, 242, 242, 1);
  5280. border-radius:4px;
  5281. filter:drop-shadow(0px 0px 2.5px rgba(0, 0, 0, 0.34901960784313724));
  5282. transition:none;
  5283. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5284. font-weight:400;
  5285. font-style:normal;
  5286. font-size:14px;
  5287. text-align:left;
  5288. }
  5289. #u15978 {
  5290. border-width:0px;
  5291. position:absolute;
  5292. left:1461px;
  5293. top:338px;
  5294. width:80px;
  5295. height:100px;
  5296. display:flex;
  5297. transition:none;
  5298. transform-origin:50% 50%;
  5299. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5300. font-weight:400;
  5301. font-style:normal;
  5302. font-size:14px;
  5303. text-align:left;
  5304. }
  5305. #u15978 .text {
  5306. position:absolute;
  5307. align-self:center;
  5308. padding:2px 2px 2px 2px;
  5309. box-sizing:border-box;
  5310. width:100%;
  5311. }
  5312. #u15978_text {
  5313. border-width:0px;
  5314. word-wrap:break-word;
  5315. text-transform:none;
  5316. visibility:hidden;
  5317. }
  5318. #u15979_div {
  5319. border-width:0px;
  5320. position:absolute;
  5321. left:0px;
  5322. top:0px;
  5323. width:66px;
  5324. height:40px;
  5325. background:inherit;
  5326. background-color:rgba(255, 255, 255, 1);
  5327. box-sizing:border-box;
  5328. border-width:1px;
  5329. border-style:solid;
  5330. border-color:rgba(215, 215, 215, 1);
  5331. border-left:0px;
  5332. border-top:0px;
  5333. border-right:0px;
  5334. border-radius:0px;
  5335. border-bottom-right-radius:0px;
  5336. border-bottom-left-radius:0px;
  5337. filter:drop-shadow(none);
  5338. transition:none;
  5339. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5340. font-weight:400;
  5341. font-style:normal;
  5342. font-size:14px;
  5343. }
  5344. #u15979 {
  5345. border-width:0px;
  5346. position:absolute;
  5347. left:1467px;
  5348. top:348px;
  5349. width:66px;
  5350. height:40px;
  5351. display:flex;
  5352. transition:none;
  5353. transform-origin:50% 50%;
  5354. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5355. font-weight:400;
  5356. font-style:normal;
  5357. font-size:14px;
  5358. }
  5359. #u15979 .text {
  5360. position:absolute;
  5361. align-self:center;
  5362. padding:2px 2px 2px 2px;
  5363. box-sizing:border-box;
  5364. width:100%;
  5365. }
  5366. #u15979_text {
  5367. border-width:0px;
  5368. word-wrap:break-word;
  5369. text-transform:none;
  5370. }
  5371. #u15980_div {
  5372. border-width:0px;
  5373. position:absolute;
  5374. left:0px;
  5375. top:0px;
  5376. width:66px;
  5377. height:40px;
  5378. background:inherit;
  5379. background-color:rgba(255, 255, 255, 1);
  5380. border-left:0px;
  5381. border-top:0px;
  5382. border-right:0px;
  5383. border-radius:0px;
  5384. border-bottom-right-radius:0px;
  5385. border-bottom-left-radius:0px;
  5386. filter:drop-shadow(none);
  5387. transition:none;
  5388. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5389. font-weight:400;
  5390. font-style:normal;
  5391. font-size:14px;
  5392. }
  5393. #u15980 {
  5394. border-width:0px;
  5395. position:absolute;
  5396. left:1467px;
  5397. top:388px;
  5398. width:66px;
  5399. height:40px;
  5400. display:flex;
  5401. transition:none;
  5402. transform-origin:50% 50%;
  5403. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5404. font-weight:400;
  5405. font-style:normal;
  5406. font-size:14px;
  5407. }
  5408. #u15980 .text {
  5409. position:absolute;
  5410. align-self:center;
  5411. padding:2px 2px 2px 2px;
  5412. box-sizing:border-box;
  5413. width:100%;
  5414. }
  5415. #u15980_text {
  5416. border-width:0px;
  5417. word-wrap:break-word;
  5418. text-transform:none;
  5419. }
  5420. #u15981 {
  5421. border-width:0px;
  5422. position:absolute;
  5423. left:0px;
  5424. top:0px;
  5425. width:0px;
  5426. height:0px;
  5427. }
  5428. #u15982_div {
  5429. border-width:0px;
  5430. position:absolute;
  5431. left:0px;
  5432. top:0px;
  5433. width:400px;
  5434. height:160px;
  5435. background:inherit;
  5436. background-color:rgba(255, 255, 255, 1);
  5437. box-sizing:border-box;
  5438. border-width:1px;
  5439. border-style:solid;
  5440. border-color:rgba(204, 204, 204, 1);
  5441. border-radius:0px;
  5442. filter:drop-shadow(none);
  5443. transition:none;
  5444. font-family:"Microsoft YaHei", sans-serif;
  5445. font-weight:400;
  5446. font-style:normal;
  5447. }
  5448. #u15982 {
  5449. border-width:0px;
  5450. position:absolute;
  5451. left:685px;
  5452. top:543px;
  5453. width:400px;
  5454. height:160px;
  5455. display:flex;
  5456. transition:none;
  5457. transform-origin:50% 50%;
  5458. font-family:"Microsoft YaHei", sans-serif;
  5459. font-weight:400;
  5460. font-style:normal;
  5461. }
  5462. #u15982 .text {
  5463. position:absolute;
  5464. align-self:center;
  5465. padding:2px 2px 2px 2px;
  5466. box-sizing:border-box;
  5467. width:100%;
  5468. }
  5469. #u15982_text {
  5470. border-width:0px;
  5471. word-wrap:break-word;
  5472. text-transform:none;
  5473. visibility:hidden;
  5474. }
  5475. #u15983_div {
  5476. border-width:0px;
  5477. position:absolute;
  5478. left:0px;
  5479. top:0px;
  5480. width:127px;
  5481. height:21px;
  5482. background:inherit;
  5483. background-color:rgba(255, 255, 255, 0);
  5484. border-radius:0px;
  5485. filter:drop-shadow(none);
  5486. transition:none;
  5487. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  5488. font-weight:650;
  5489. font-style:normal;
  5490. font-size:18px;
  5491. color:#000000;
  5492. line-height:22px;
  5493. }
  5494. #u15983 {
  5495. border-width:0px;
  5496. position:absolute;
  5497. left:735px;
  5498. top:568px;
  5499. width:127px;
  5500. height:21px;
  5501. display:flex;
  5502. transition:none;
  5503. transform-origin:50% 50%;
  5504. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  5505. font-weight:650;
  5506. font-style:normal;
  5507. font-size:18px;
  5508. color:#000000;
  5509. line-height:22px;
  5510. }
  5511. #u15983 .text {
  5512. position:absolute;
  5513. align-self:flex-start;
  5514. padding:0px 0px 0px 0px;
  5515. box-sizing:border-box;
  5516. width:100%;
  5517. }
  5518. #u15983_text {
  5519. border-width:0px;
  5520. white-space:nowrap;
  5521. text-transform:none;
  5522. }
  5523. #u15984_div {
  5524. border-width:0px;
  5525. position:absolute;
  5526. left:0px;
  5527. top:0px;
  5528. width:61px;
  5529. height:32px;
  5530. background:inherit;
  5531. background-color:rgba(24, 144, 255, 1);
  5532. border-radius:4px;
  5533. filter:drop-shadow(none);
  5534. transition:none;
  5535. font-family:"Microsoft YaHei", sans-serif;
  5536. font-weight:400;
  5537. font-style:normal;
  5538. font-size:14px;
  5539. color:#FFFFFF;
  5540. }
  5541. #u15984 {
  5542. border-width:0px;
  5543. position:absolute;
  5544. left:1004px;
  5545. top:651px;
  5546. width:61px;
  5547. height:32px;
  5548. display:flex;
  5549. transition:none;
  5550. transform-origin:50% 50%;
  5551. font-family:"Microsoft YaHei", sans-serif;
  5552. font-weight:400;
  5553. font-style:normal;
  5554. font-size:14px;
  5555. color:#FFFFFF;
  5556. }
  5557. #u15984 .text {
  5558. position:absolute;
  5559. align-self:center;
  5560. padding:2px 16px 2px 16px;
  5561. box-sizing:border-box;
  5562. width:100%;
  5563. }
  5564. #u15984_text {
  5565. border-width:0px;
  5566. white-space:nowrap;
  5567. text-transform:none;
  5568. }
  5569. #u15985_div {
  5570. border-width:0px;
  5571. position:absolute;
  5572. left:0px;
  5573. top:0px;
  5574. width:66px;
  5575. height:32px;
  5576. background:inherit;
  5577. background-color:rgba(255, 255, 255, 1);
  5578. box-sizing:border-box;
  5579. border-width:1px;
  5580. border-style:solid;
  5581. border-color:rgba(217, 217, 217, 1);
  5582. border-radius:4px;
  5583. filter:drop-shadow(none);
  5584. transition:none;
  5585. font-family:"Microsoft YaHei", sans-serif;
  5586. font-weight:400;
  5587. font-style:normal;
  5588. font-size:14px;
  5589. color:rgba(0, 0, 0, 0.6470588235294118);
  5590. line-height:21px;
  5591. }
  5592. #u15985 {
  5593. border-width:0px;
  5594. position:absolute;
  5595. left:922px;
  5596. top:651px;
  5597. width:66px;
  5598. height:32px;
  5599. display:flex;
  5600. transition:none;
  5601. transform-origin:50% 50%;
  5602. font-family:"Microsoft YaHei", sans-serif;
  5603. font-weight:400;
  5604. font-style:normal;
  5605. font-size:14px;
  5606. color:rgba(0, 0, 0, 0.6470588235294118);
  5607. line-height:21px;
  5608. }
  5609. #u15985 .text {
  5610. position:absolute;
  5611. align-self:center;
  5612. padding:2px 16px 2px 16px;
  5613. box-sizing:border-box;
  5614. width:100%;
  5615. }
  5616. #u15985_text {
  5617. border-width:0px;
  5618. white-space:nowrap;
  5619. text-transform:none;
  5620. }
  5621. #u15986 {
  5622. border-width:0px;
  5623. position:absolute;
  5624. left:699px;
  5625. top:566px;
  5626. width:24px;
  5627. height:24px;
  5628. display:flex;
  5629. transition:none;
  5630. font-family:"Microsoft YaHei", sans-serif;
  5631. font-weight:400;
  5632. font-style:normal;
  5633. font-size:52px;
  5634. color:#FAAD14;
  5635. }
  5636. #u15986 .text {
  5637. position:absolute;
  5638. align-self:center;
  5639. padding:2px 2px 2px 2px;
  5640. box-sizing:border-box;
  5641. width:100%;
  5642. }
  5643. #u15986_img {
  5644. border-width:0px;
  5645. position:absolute;
  5646. left:0px;
  5647. top:0px;
  5648. width:24px;
  5649. height:24px;
  5650. }
  5651. #u15986_text {
  5652. border-width:0px;
  5653. word-wrap:break-word;
  5654. text-transform:none;
  5655. visibility:hidden;
  5656. }
  5657. #u15987_div {
  5658. border-width:0px;
  5659. position:absolute;
  5660. left:0px;
  5661. top:0px;
  5662. width:326px;
  5663. height:22px;
  5664. background:inherit;
  5665. background-color:rgba(255, 255, 255, 0);
  5666. border-radius:0px;
  5667. filter:drop-shadow(none);
  5668. transition:none;
  5669. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5670. font-weight:400;
  5671. font-style:normal;
  5672. font-size:12px;
  5673. color:#7F7F7F;
  5674. line-height:22px;
  5675. }
  5676. #u15987 {
  5677. border-width:0px;
  5678. position:absolute;
  5679. left:735px;
  5680. top:600px;
  5681. width:326px;
  5682. height:22px;
  5683. display:flex;
  5684. transition:none;
  5685. transform-origin:50% 50%;
  5686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5687. font-weight:400;
  5688. font-style:normal;
  5689. font-size:12px;
  5690. color:#7F7F7F;
  5691. line-height:22px;
  5692. }
  5693. #u15987 .text {
  5694. position:absolute;
  5695. align-self:flex-start;
  5696. padding:0px 0px 0px 0px;
  5697. box-sizing:border-box;
  5698. width:100%;
  5699. }
  5700. #u15987_text {
  5701. border-width:0px;
  5702. word-wrap:break-word;
  5703. text-transform:none;
  5704. }
  5705. #u15988 {
  5706. border-width:0px;
  5707. position:absolute;
  5708. left:0px;
  5709. top:0px;
  5710. width:0px;
  5711. height:0px;
  5712. }
  5713. #u15989_div {
  5714. border-width:0px;
  5715. position:absolute;
  5716. left:0px;
  5717. top:0px;
  5718. width:400px;
  5719. height:160px;
  5720. background:inherit;
  5721. background-color:rgba(255, 255, 255, 1);
  5722. box-sizing:border-box;
  5723. border-width:1px;
  5724. border-style:solid;
  5725. border-color:rgba(204, 204, 204, 1);
  5726. border-radius:0px;
  5727. filter:drop-shadow(none);
  5728. transition:none;
  5729. font-family:"Microsoft YaHei", sans-serif;
  5730. font-weight:400;
  5731. font-style:normal;
  5732. }
  5733. #u15989 {
  5734. border-width:0px;
  5735. position:absolute;
  5736. left:1104px;
  5737. top:543px;
  5738. width:400px;
  5739. height:160px;
  5740. display:flex;
  5741. transition:none;
  5742. transform-origin:50% 50%;
  5743. font-family:"Microsoft YaHei", sans-serif;
  5744. font-weight:400;
  5745. font-style:normal;
  5746. }
  5747. #u15989 .text {
  5748. position:absolute;
  5749. align-self:center;
  5750. padding:2px 2px 2px 2px;
  5751. box-sizing:border-box;
  5752. width:100%;
  5753. }
  5754. #u15989_text {
  5755. border-width:0px;
  5756. word-wrap:break-word;
  5757. text-transform:none;
  5758. visibility:hidden;
  5759. }
  5760. #u15990_div {
  5761. border-width:0px;
  5762. position:absolute;
  5763. left:0px;
  5764. top:0px;
  5765. width:127px;
  5766. height:21px;
  5767. background:inherit;
  5768. background-color:rgba(255, 255, 255, 0);
  5769. border-radius:0px;
  5770. filter:drop-shadow(none);
  5771. transition:none;
  5772. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  5773. font-weight:650;
  5774. font-style:normal;
  5775. font-size:18px;
  5776. color:#000000;
  5777. line-height:22px;
  5778. }
  5779. #u15990 {
  5780. border-width:0px;
  5781. position:absolute;
  5782. left:1164px;
  5783. top:578px;
  5784. width:127px;
  5785. height:21px;
  5786. display:flex;
  5787. transition:none;
  5788. transform-origin:50% 50%;
  5789. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  5790. font-weight:650;
  5791. font-style:normal;
  5792. font-size:18px;
  5793. color:#000000;
  5794. line-height:22px;
  5795. }
  5796. #u15990 .text {
  5797. position:absolute;
  5798. align-self:flex-start;
  5799. padding:0px 0px 0px 0px;
  5800. box-sizing:border-box;
  5801. width:100%;
  5802. }
  5803. #u15990_text {
  5804. border-width:0px;
  5805. white-space:nowrap;
  5806. text-transform:none;
  5807. }
  5808. #u15991_div {
  5809. border-width:0px;
  5810. position:absolute;
  5811. left:0px;
  5812. top:0px;
  5813. width:61px;
  5814. height:32px;
  5815. background:inherit;
  5816. background-color:rgba(24, 144, 255, 1);
  5817. border-radius:4px;
  5818. filter:drop-shadow(none);
  5819. transition:none;
  5820. font-family:"Microsoft YaHei", sans-serif;
  5821. font-weight:400;
  5822. font-style:normal;
  5823. font-size:14px;
  5824. color:#FFFFFF;
  5825. }
  5826. #u15991 {
  5827. border-width:0px;
  5828. position:absolute;
  5829. left:1423px;
  5830. top:648px;
  5831. width:61px;
  5832. height:32px;
  5833. display:flex;
  5834. transition:none;
  5835. transform-origin:50% 50%;
  5836. font-family:"Microsoft YaHei", sans-serif;
  5837. font-weight:400;
  5838. font-style:normal;
  5839. font-size:14px;
  5840. color:#FFFFFF;
  5841. }
  5842. #u15991 .text {
  5843. position:absolute;
  5844. align-self:center;
  5845. padding:2px 16px 2px 16px;
  5846. box-sizing:border-box;
  5847. width:100%;
  5848. }
  5849. #u15991_text {
  5850. border-width:0px;
  5851. white-space:nowrap;
  5852. text-transform:none;
  5853. }
  5854. #u15992_div {
  5855. border-width:0px;
  5856. position:absolute;
  5857. left:0px;
  5858. top:0px;
  5859. width:66px;
  5860. height:32px;
  5861. background:inherit;
  5862. background-color:rgba(255, 255, 255, 1);
  5863. box-sizing:border-box;
  5864. border-width:1px;
  5865. border-style:solid;
  5866. border-color:rgba(217, 217, 217, 1);
  5867. border-radius:4px;
  5868. filter:drop-shadow(none);
  5869. transition:none;
  5870. font-family:"Microsoft YaHei", sans-serif;
  5871. font-weight:400;
  5872. font-style:normal;
  5873. font-size:14px;
  5874. color:rgba(0, 0, 0, 0.6470588235294118);
  5875. line-height:21px;
  5876. }
  5877. #u15992 {
  5878. border-width:0px;
  5879. position:absolute;
  5880. left:1341px;
  5881. top:648px;
  5882. width:66px;
  5883. height:32px;
  5884. display:flex;
  5885. transition:none;
  5886. transform-origin:50% 50%;
  5887. font-family:"Microsoft YaHei", sans-serif;
  5888. font-weight:400;
  5889. font-style:normal;
  5890. font-size:14px;
  5891. color:rgba(0, 0, 0, 0.6470588235294118);
  5892. line-height:21px;
  5893. }
  5894. #u15992 .text {
  5895. position:absolute;
  5896. align-self:center;
  5897. padding:2px 16px 2px 16px;
  5898. box-sizing:border-box;
  5899. width:100%;
  5900. }
  5901. #u15992_text {
  5902. border-width:0px;
  5903. white-space:nowrap;
  5904. text-transform:none;
  5905. }
  5906. #u15993_div {
  5907. border-width:0px;
  5908. position:absolute;
  5909. left:0px;
  5910. top:0px;
  5911. width:241px;
  5912. height:22px;
  5913. background:inherit;
  5914. background-color:rgba(255, 255, 255, 0);
  5915. border-radius:0px;
  5916. filter:drop-shadow(none);
  5917. transition:none;
  5918. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5919. font-weight:400;
  5920. font-style:normal;
  5921. font-size:12px;
  5922. color:#7F7F7F;
  5923. line-height:22px;
  5924. }
  5925. #u15993 {
  5926. border-width:0px;
  5927. position:absolute;
  5928. left:1164px;
  5929. top:610px;
  5930. width:241px;
  5931. height:22px;
  5932. display:flex;
  5933. transition:none;
  5934. transform-origin:50% 50%;
  5935. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5936. font-weight:400;
  5937. font-style:normal;
  5938. font-size:12px;
  5939. color:#7F7F7F;
  5940. line-height:22px;
  5941. }
  5942. #u15993 .text {
  5943. position:absolute;
  5944. align-self:flex-start;
  5945. padding:0px 0px 0px 0px;
  5946. box-sizing:border-box;
  5947. width:100%;
  5948. }
  5949. #u15993_text {
  5950. border-width:0px;
  5951. white-space:nowrap;
  5952. text-transform:none;
  5953. }
  5954. #u15994 {
  5955. border-width:0px;
  5956. position:absolute;
  5957. left:1128px;
  5958. top:578px;
  5959. width:24px;
  5960. height:24px;
  5961. display:flex;
  5962. transition:none;
  5963. }
  5964. #u15994 .text {
  5965. position:absolute;
  5966. align-self:center;
  5967. padding:2px 2px 2px 2px;
  5968. box-sizing:border-box;
  5969. width:100%;
  5970. }
  5971. #u15994_img {
  5972. border-width:0px;
  5973. position:absolute;
  5974. left:0px;
  5975. top:0px;
  5976. width:24px;
  5977. height:24px;
  5978. }
  5979. #u15994_text {
  5980. border-width:0px;
  5981. word-wrap:break-word;
  5982. text-transform:none;
  5983. visibility:hidden;
  5984. }
  5985. #u15995 {
  5986. border-width:0px;
  5987. position:absolute;
  5988. left:120px;
  5989. top:50px;
  5990. width:201px;
  5991. height:1190px;
  5992. }
  5993. #u15996 {
  5994. border-width:0px;
  5995. position:absolute;
  5996. left:0px;
  5997. top:0px;
  5998. width:0px;
  5999. height:0px;
  6000. }
  6001. #u15997_div {
  6002. border-width:0px;
  6003. position:absolute;
  6004. left:0px;
  6005. top:0px;
  6006. width:200px;
  6007. height:1190px;
  6008. background:inherit;
  6009. background-color:rgba(255, 255, 255, 1);
  6010. border-radius:0px;
  6011. filter:drop-shadow(none);
  6012. transition:none;
  6013. }
  6014. #u15997 {
  6015. border-width:0px;
  6016. position:absolute;
  6017. left:0px;
  6018. top:0px;
  6019. width:200px;
  6020. height:1190px;
  6021. display:flex;
  6022. transition:none;
  6023. transform-origin:50% 50%;
  6024. }
  6025. #u15997 .text {
  6026. position:absolute;
  6027. align-self:center;
  6028. padding:2px 2px 2px 2px;
  6029. box-sizing:border-box;
  6030. width:100%;
  6031. }
  6032. #u15997_text {
  6033. border-width:0px;
  6034. word-wrap:break-word;
  6035. text-transform:none;
  6036. visibility:hidden;
  6037. }
  6038. #u15998_div {
  6039. border-width:0px;
  6040. position:absolute;
  6041. left:0px;
  6042. top:0px;
  6043. width:200px;
  6044. height:60px;
  6045. background:inherit;
  6046. background-color:rgba(224, 231, 247, 1);
  6047. border-radius:0px;
  6048. filter:drop-shadow(none);
  6049. transition:none;
  6050. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6051. font-weight:500;
  6052. font-style:normal;
  6053. font-size:18px;
  6054. }
  6055. #u15998 {
  6056. border-width:0px;
  6057. position:absolute;
  6058. left:0px;
  6059. top:0px;
  6060. width:200px;
  6061. height:60px;
  6062. display:flex;
  6063. transition:none;
  6064. transform-origin:50% 50%;
  6065. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6066. font-weight:500;
  6067. font-style:normal;
  6068. font-size:18px;
  6069. }
  6070. #u15998 .text {
  6071. position:absolute;
  6072. align-self:center;
  6073. padding:0px 0px 0px 20px;
  6074. box-sizing:border-box;
  6075. width:100%;
  6076. }
  6077. #u15998_text {
  6078. border-width:0px;
  6079. word-wrap:break-word;
  6080. text-transform:none;
  6081. }
  6082. #u15999_div {
  6083. border-width:0px;
  6084. position:absolute;
  6085. left:0px;
  6086. top:0px;
  6087. width:65px;
  6088. height:22px;
  6089. background:inherit;
  6090. background-color:rgba(255, 255, 255, 0);
  6091. border-radius:0px;
  6092. filter:drop-shadow(none);
  6093. transition:none;
  6094. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6095. font-weight:400;
  6096. font-style:normal;
  6097. font-size:16px;
  6098. }
  6099. #u15999 {
  6100. border-width:0px;
  6101. position:absolute;
  6102. left:25px;
  6103. top:526px;
  6104. width:65px;
  6105. height:22px;
  6106. display:flex;
  6107. transition:none;
  6108. transform-origin:50% 50%;
  6109. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6110. font-weight:400;
  6111. font-style:normal;
  6112. font-size:16px;
  6113. }
  6114. #u15999 .text {
  6115. position:absolute;
  6116. align-self:flex-start;
  6117. padding:0px 0px 0px 0px;
  6118. box-sizing:border-box;
  6119. width:100%;
  6120. }
  6121. #u15999_text {
  6122. border-width:0px;
  6123. white-space:nowrap;
  6124. text-transform:none;
  6125. }
  6126. #u16000_div {
  6127. border-width:0px;
  6128. position:absolute;
  6129. left:0px;
  6130. top:0px;
  6131. width:49px;
  6132. height:17px;
  6133. background:inherit;
  6134. background-color:rgba(255, 255, 255, 0);
  6135. border-radius:0px;
  6136. filter:drop-shadow(none);
  6137. transition:none;
  6138. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6139. font-weight:400;
  6140. font-style:normal;
  6141. font-size:12px;
  6142. color:#AAAAAA;
  6143. }
  6144. #u16000 {
  6145. border-width:0px;
  6146. position:absolute;
  6147. left:23px;
  6148. top:489px;
  6149. width:49px;
  6150. height:17px;
  6151. display:flex;
  6152. transition:none;
  6153. transform-origin:50% 50%;
  6154. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6155. font-weight:400;
  6156. font-style:normal;
  6157. font-size:12px;
  6158. color:#AAAAAA;
  6159. }
  6160. #u16000 .text {
  6161. position:absolute;
  6162. align-self:flex-start;
  6163. padding:0px 0px 0px 0px;
  6164. box-sizing:border-box;
  6165. width:100%;
  6166. }
  6167. #u16000_text {
  6168. border-width:0px;
  6169. white-space:nowrap;
  6170. text-transform:none;
  6171. }
  6172. #u16001_div {
  6173. border-width:0px;
  6174. position:absolute;
  6175. left:0px;
  6176. top:0px;
  6177. width:49px;
  6178. height:17px;
  6179. background:inherit;
  6180. background-color:rgba(255, 255, 255, 0);
  6181. border-radius:0px;
  6182. filter:drop-shadow(none);
  6183. transition:none;
  6184. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6185. font-weight:400;
  6186. font-style:normal;
  6187. font-size:12px;
  6188. color:#AAAAAA;
  6189. }
  6190. #u16001 {
  6191. border-width:0px;
  6192. position:absolute;
  6193. left:24px;
  6194. top:81px;
  6195. width:49px;
  6196. height:17px;
  6197. display:flex;
  6198. transition:none;
  6199. transform-origin:50% 50%;
  6200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6201. font-weight:400;
  6202. font-style:normal;
  6203. font-size:12px;
  6204. color:#AAAAAA;
  6205. }
  6206. #u16001 .text {
  6207. position:absolute;
  6208. align-self:flex-start;
  6209. padding:0px 0px 0px 0px;
  6210. box-sizing:border-box;
  6211. width:100%;
  6212. }
  6213. #u16001_text {
  6214. border-width:0px;
  6215. white-space:nowrap;
  6216. text-transform:none;
  6217. }
  6218. #u16002_div {
  6219. border-width:0px;
  6220. position:absolute;
  6221. left:0px;
  6222. top:0px;
  6223. width:65px;
  6224. height:22px;
  6225. background:inherit;
  6226. background-color:rgba(255, 255, 255, 0);
  6227. border-radius:0px;
  6228. filter:drop-shadow(none);
  6229. transition:none;
  6230. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6231. font-weight:400;
  6232. font-style:normal;
  6233. font-size:16px;
  6234. }
  6235. #u16002 {
  6236. border-width:0px;
  6237. position:absolute;
  6238. left:26px;
  6239. top:118px;
  6240. width:65px;
  6241. height:22px;
  6242. display:flex;
  6243. transition:none;
  6244. transform-origin:50% 50%;
  6245. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6246. font-weight:400;
  6247. font-style:normal;
  6248. font-size:16px;
  6249. }
  6250. #u16002 .text {
  6251. position:absolute;
  6252. align-self:flex-start;
  6253. padding:0px 0px 0px 0px;
  6254. box-sizing:border-box;
  6255. width:100%;
  6256. }
  6257. #u16002_text {
  6258. border-width:0px;
  6259. white-space:nowrap;
  6260. text-transform:none;
  6261. }
  6262. #u16003 {
  6263. border-width:0px;
  6264. position:absolute;
  6265. left:0px;
  6266. top:468px;
  6267. width:200px;
  6268. height:1px;
  6269. display:flex;
  6270. transition:none;
  6271. }
  6272. #u16003 .text {
  6273. position:absolute;
  6274. align-self:center;
  6275. padding:2px 2px 2px 2px;
  6276. box-sizing:border-box;
  6277. width:100%;
  6278. }
  6279. #u16003_img {
  6280. border-width:0px;
  6281. position:absolute;
  6282. left:0px;
  6283. top:0px;
  6284. width:201px;
  6285. height:2px;
  6286. }
  6287. #u16003_text {
  6288. border-width:0px;
  6289. word-wrap:break-word;
  6290. text-transform:none;
  6291. visibility:hidden;
  6292. }
  6293. #u16004_div {
  6294. border-width:0px;
  6295. position:absolute;
  6296. left:0px;
  6297. top:0px;
  6298. width:65px;
  6299. height:22px;
  6300. background:inherit;
  6301. background-color:rgba(255, 255, 255, 0);
  6302. border-radius:0px;
  6303. filter:drop-shadow(none);
  6304. transition:none;
  6305. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6306. font-weight:400;
  6307. font-style:normal;
  6308. font-size:16px;
  6309. }
  6310. #u16004 {
  6311. border-width:0px;
  6312. position:absolute;
  6313. left:25px;
  6314. top:568px;
  6315. width:65px;
  6316. height:22px;
  6317. display:flex;
  6318. transition:none;
  6319. transform-origin:50% 50%;
  6320. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6321. font-weight:400;
  6322. font-style:normal;
  6323. font-size:16px;
  6324. }
  6325. #u16004 .text {
  6326. position:absolute;
  6327. align-self:flex-start;
  6328. padding:0px 0px 0px 0px;
  6329. box-sizing:border-box;
  6330. width:100%;
  6331. }
  6332. #u16004_text {
  6333. border-width:0px;
  6334. white-space:nowrap;
  6335. text-transform:none;
  6336. }
  6337. #u16005_div {
  6338. border-width:0px;
  6339. position:absolute;
  6340. left:0px;
  6341. top:0px;
  6342. width:49px;
  6343. height:17px;
  6344. background:inherit;
  6345. background-color:rgba(255, 255, 255, 0);
  6346. border-radius:0px;
  6347. filter:drop-shadow(none);
  6348. transition:none;
  6349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6350. font-weight:400;
  6351. font-style:normal;
  6352. font-size:12px;
  6353. color:#AAAAAA;
  6354. }
  6355. #u16005 {
  6356. border-width:0px;
  6357. position:absolute;
  6358. left:24px;
  6359. top:305px;
  6360. width:49px;
  6361. height:17px;
  6362. display:flex;
  6363. transition:none;
  6364. transform-origin:50% 50%;
  6365. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6366. font-weight:400;
  6367. font-style:normal;
  6368. font-size:12px;
  6369. color:#AAAAAA;
  6370. }
  6371. #u16005 .text {
  6372. position:absolute;
  6373. align-self:flex-start;
  6374. padding:0px 0px 0px 0px;
  6375. box-sizing:border-box;
  6376. width:100%;
  6377. }
  6378. #u16005_text {
  6379. border-width:0px;
  6380. white-space:nowrap;
  6381. text-transform:none;
  6382. }
  6383. #u16006 {
  6384. border-width:0px;
  6385. position:absolute;
  6386. left:1px;
  6387. top:284px;
  6388. width:200px;
  6389. height:1px;
  6390. display:flex;
  6391. transition:none;
  6392. }
  6393. #u16006 .text {
  6394. position:absolute;
  6395. align-self:center;
  6396. padding:2px 2px 2px 2px;
  6397. box-sizing:border-box;
  6398. width:100%;
  6399. }
  6400. #u16006_img {
  6401. border-width:0px;
  6402. position:absolute;
  6403. left:0px;
  6404. top:0px;
  6405. width:201px;
  6406. height:2px;
  6407. }
  6408. #u16006_text {
  6409. border-width:0px;
  6410. word-wrap:break-word;
  6411. text-transform:none;
  6412. visibility:hidden;
  6413. }
  6414. #u16007_div {
  6415. border-width:0px;
  6416. position:absolute;
  6417. left:0px;
  6418. top:0px;
  6419. width:65px;
  6420. height:22px;
  6421. background:inherit;
  6422. background-color:rgba(255, 255, 255, 0);
  6423. border-radius:0px;
  6424. filter:drop-shadow(none);
  6425. transition:none;
  6426. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6427. font-weight:400;
  6428. font-style:normal;
  6429. font-size:16px;
  6430. }
  6431. #u16007 {
  6432. border-width:0px;
  6433. position:absolute;
  6434. left:26px;
  6435. top:342px;
  6436. width:65px;
  6437. height:22px;
  6438. display:flex;
  6439. transition:none;
  6440. transform-origin:50% 50%;
  6441. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6442. font-weight:400;
  6443. font-style:normal;
  6444. font-size:16px;
  6445. }
  6446. #u16007 .text {
  6447. position:absolute;
  6448. align-self:flex-start;
  6449. padding:0px 0px 0px 0px;
  6450. box-sizing:border-box;
  6451. width:100%;
  6452. }
  6453. #u16007_text {
  6454. border-width:0px;
  6455. white-space:nowrap;
  6456. text-transform:none;
  6457. }
  6458. #u16008_div {
  6459. border-width:0px;
  6460. position:absolute;
  6461. left:0px;
  6462. top:0px;
  6463. width:65px;
  6464. height:22px;
  6465. background:inherit;
  6466. background-color:rgba(255, 255, 255, 0);
  6467. border-radius:0px;
  6468. filter:drop-shadow(none);
  6469. transition:none;
  6470. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6471. font-weight:400;
  6472. font-style:normal;
  6473. font-size:16px;
  6474. }
  6475. #u16008 {
  6476. border-width:0px;
  6477. position:absolute;
  6478. left:26px;
  6479. top:384px;
  6480. width:65px;
  6481. height:22px;
  6482. display:flex;
  6483. transition:none;
  6484. transform-origin:50% 50%;
  6485. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6486. font-weight:400;
  6487. font-style:normal;
  6488. font-size:16px;
  6489. }
  6490. #u16008 .text {
  6491. position:absolute;
  6492. align-self:flex-start;
  6493. padding:0px 0px 0px 0px;
  6494. box-sizing:border-box;
  6495. width:100%;
  6496. }
  6497. #u16008_text {
  6498. border-width:0px;
  6499. white-space:nowrap;
  6500. text-transform:none;
  6501. }
  6502. #u16009_div {
  6503. border-width:0px;
  6504. position:absolute;
  6505. left:0px;
  6506. top:0px;
  6507. width:65px;
  6508. height:22px;
  6509. background:inherit;
  6510. background-color:rgba(255, 255, 255, 0);
  6511. border-radius:0px;
  6512. filter:drop-shadow(none);
  6513. transition:none;
  6514. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6515. font-weight:400;
  6516. font-style:normal;
  6517. font-size:16px;
  6518. }
  6519. #u16009 {
  6520. border-width:0px;
  6521. position:absolute;
  6522. left:25px;
  6523. top:876px;
  6524. width:65px;
  6525. height:22px;
  6526. display:flex;
  6527. transition:none;
  6528. transform-origin:50% 50%;
  6529. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6530. font-weight:400;
  6531. font-style:normal;
  6532. font-size:16px;
  6533. }
  6534. #u16009 .text {
  6535. position:absolute;
  6536. align-self:flex-start;
  6537. padding:0px 0px 0px 0px;
  6538. box-sizing:border-box;
  6539. width:100%;
  6540. }
  6541. #u16009_text {
  6542. border-width:0px;
  6543. white-space:nowrap;
  6544. text-transform:none;
  6545. }
  6546. #u16010_div {
  6547. border-width:0px;
  6548. position:absolute;
  6549. left:0px;
  6550. top:0px;
  6551. width:97px;
  6552. height:22px;
  6553. background:inherit;
  6554. background-color:rgba(255, 255, 255, 0);
  6555. border-radius:0px;
  6556. filter:drop-shadow(none);
  6557. transition:none;
  6558. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6559. font-weight:400;
  6560. font-style:normal;
  6561. font-size:16px;
  6562. }
  6563. #u16010 {
  6564. border-width:0px;
  6565. position:absolute;
  6566. left:25px;
  6567. top:668px;
  6568. width:97px;
  6569. height:22px;
  6570. display:flex;
  6571. transition:none;
  6572. transform-origin:50% 50%;
  6573. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6574. font-weight:400;
  6575. font-style:normal;
  6576. font-size:16px;
  6577. }
  6578. #u16010 .text {
  6579. position:absolute;
  6580. align-self:flex-start;
  6581. padding:0px 0px 0px 0px;
  6582. box-sizing:border-box;
  6583. width:100%;
  6584. }
  6585. #u16010_text {
  6586. border-width:0px;
  6587. white-space:nowrap;
  6588. text-transform:none;
  6589. }
  6590. #u16011_div {
  6591. border-width:0px;
  6592. position:absolute;
  6593. left:0px;
  6594. top:0px;
  6595. width:49px;
  6596. height:17px;
  6597. background:inherit;
  6598. background-color:rgba(255, 255, 255, 0);
  6599. border-radius:0px;
  6600. filter:drop-shadow(none);
  6601. transition:none;
  6602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6603. font-weight:400;
  6604. font-style:normal;
  6605. font-size:12px;
  6606. color:#AAAAAA;
  6607. }
  6608. #u16011 {
  6609. border-width:0px;
  6610. position:absolute;
  6611. left:23px;
  6612. top:631px;
  6613. width:49px;
  6614. height:17px;
  6615. display:flex;
  6616. transition:none;
  6617. transform-origin:50% 50%;
  6618. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6619. font-weight:400;
  6620. font-style:normal;
  6621. font-size:12px;
  6622. color:#AAAAAA;
  6623. }
  6624. #u16011 .text {
  6625. position:absolute;
  6626. align-self:flex-start;
  6627. padding:0px 0px 0px 0px;
  6628. box-sizing:border-box;
  6629. width:100%;
  6630. }
  6631. #u16011_text {
  6632. border-width:0px;
  6633. white-space:nowrap;
  6634. text-transform:none;
  6635. }
  6636. #u16012 {
  6637. border-width:0px;
  6638. position:absolute;
  6639. left:0px;
  6640. top:610px;
  6641. width:200px;
  6642. height:1px;
  6643. display:flex;
  6644. transition:none;
  6645. }
  6646. #u16012 .text {
  6647. position:absolute;
  6648. align-self:center;
  6649. padding:2px 2px 2px 2px;
  6650. box-sizing:border-box;
  6651. width:100%;
  6652. }
  6653. #u16012_img {
  6654. border-width:0px;
  6655. position:absolute;
  6656. left:0px;
  6657. top:0px;
  6658. width:201px;
  6659. height:2px;
  6660. }
  6661. #u16012_text {
  6662. border-width:0px;
  6663. word-wrap:break-word;
  6664. text-transform:none;
  6665. visibility:hidden;
  6666. }
  6667. #u16013_div {
  6668. border-width:0px;
  6669. position:absolute;
  6670. left:0px;
  6671. top:0px;
  6672. width:97px;
  6673. height:22px;
  6674. background:inherit;
  6675. background-color:rgba(255, 255, 255, 0);
  6676. border-radius:0px;
  6677. filter:drop-shadow(none);
  6678. transition:none;
  6679. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6680. font-weight:400;
  6681. font-style:normal;
  6682. font-size:16px;
  6683. }
  6684. #u16013 {
  6685. border-width:0px;
  6686. position:absolute;
  6687. left:25px;
  6688. top:750px;
  6689. width:97px;
  6690. height:22px;
  6691. display:flex;
  6692. transition:none;
  6693. transform-origin:50% 50%;
  6694. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6695. font-weight:400;
  6696. font-style:normal;
  6697. font-size:16px;
  6698. }
  6699. #u16013 .text {
  6700. position:absolute;
  6701. align-self:flex-start;
  6702. padding:0px 0px 0px 0px;
  6703. box-sizing:border-box;
  6704. width:100%;
  6705. }
  6706. #u16013_text {
  6707. border-width:0px;
  6708. white-space:nowrap;
  6709. text-transform:none;
  6710. }
  6711. #u16014_div {
  6712. border-width:0px;
  6713. position:absolute;
  6714. left:0px;
  6715. top:0px;
  6716. width:97px;
  6717. height:22px;
  6718. background:inherit;
  6719. background-color:rgba(255, 255, 255, 0);
  6720. border-radius:0px;
  6721. filter:drop-shadow(none);
  6722. transition:none;
  6723. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6724. font-weight:400;
  6725. font-style:normal;
  6726. font-size:16px;
  6727. }
  6728. #u16014 {
  6729. border-width:0px;
  6730. position:absolute;
  6731. left:25px;
  6732. top:792px;
  6733. width:97px;
  6734. height:22px;
  6735. display:flex;
  6736. transition:none;
  6737. transform-origin:50% 50%;
  6738. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6739. font-weight:400;
  6740. font-style:normal;
  6741. font-size:16px;
  6742. }
  6743. #u16014 .text {
  6744. position:absolute;
  6745. align-self:flex-start;
  6746. padding:0px 0px 0px 0px;
  6747. box-sizing:border-box;
  6748. width:100%;
  6749. }
  6750. #u16014_text {
  6751. border-width:0px;
  6752. white-space:nowrap;
  6753. text-transform:none;
  6754. }
  6755. #u16015_div {
  6756. border-width:0px;
  6757. position:absolute;
  6758. left:0px;
  6759. top:0px;
  6760. width:65px;
  6761. height:22px;
  6762. background:inherit;
  6763. background-color:rgba(255, 255, 255, 0);
  6764. border-radius:0px;
  6765. filter:drop-shadow(none);
  6766. transition:none;
  6767. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6768. font-weight:400;
  6769. font-style:normal;
  6770. font-size:16px;
  6771. }
  6772. #u16015 {
  6773. border-width:0px;
  6774. position:absolute;
  6775. left:25px;
  6776. top:976px;
  6777. width:65px;
  6778. height:22px;
  6779. display:flex;
  6780. transition:none;
  6781. transform-origin:50% 50%;
  6782. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6783. font-weight:400;
  6784. font-style:normal;
  6785. font-size:16px;
  6786. }
  6787. #u16015 .text {
  6788. position:absolute;
  6789. align-self:flex-start;
  6790. padding:0px 0px 0px 0px;
  6791. box-sizing:border-box;
  6792. width:100%;
  6793. }
  6794. #u16015_text {
  6795. border-width:0px;
  6796. white-space:nowrap;
  6797. text-transform:none;
  6798. }
  6799. #u16016_div {
  6800. border-width:0px;
  6801. position:absolute;
  6802. left:0px;
  6803. top:0px;
  6804. width:49px;
  6805. height:17px;
  6806. background:inherit;
  6807. background-color:rgba(255, 255, 255, 0);
  6808. border-radius:0px;
  6809. filter:drop-shadow(none);
  6810. transition:none;
  6811. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6812. font-weight:400;
  6813. font-style:normal;
  6814. font-size:12px;
  6815. color:#AAAAAA;
  6816. }
  6817. #u16016 {
  6818. border-width:0px;
  6819. position:absolute;
  6820. left:23px;
  6821. top:939px;
  6822. width:49px;
  6823. height:17px;
  6824. display:flex;
  6825. transition:none;
  6826. transform-origin:50% 50%;
  6827. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6828. font-weight:400;
  6829. font-style:normal;
  6830. font-size:12px;
  6831. color:#AAAAAA;
  6832. }
  6833. #u16016 .text {
  6834. position:absolute;
  6835. align-self:flex-start;
  6836. padding:0px 0px 0px 0px;
  6837. box-sizing:border-box;
  6838. width:100%;
  6839. }
  6840. #u16016_text {
  6841. border-width:0px;
  6842. white-space:nowrap;
  6843. text-transform:none;
  6844. }
  6845. #u16017 {
  6846. border-width:0px;
  6847. position:absolute;
  6848. left:0px;
  6849. top:918px;
  6850. width:200px;
  6851. height:1px;
  6852. display:flex;
  6853. transition:none;
  6854. }
  6855. #u16017 .text {
  6856. position:absolute;
  6857. align-self:center;
  6858. padding:2px 2px 2px 2px;
  6859. box-sizing:border-box;
  6860. width:100%;
  6861. }
  6862. #u16017_img {
  6863. border-width:0px;
  6864. position:absolute;
  6865. left:0px;
  6866. top:0px;
  6867. width:201px;
  6868. height:2px;
  6869. }
  6870. #u16017_text {
  6871. border-width:0px;
  6872. word-wrap:break-word;
  6873. text-transform:none;
  6874. visibility:hidden;
  6875. }
  6876. #u16018_div {
  6877. border-width:0px;
  6878. position:absolute;
  6879. left:0px;
  6880. top:0px;
  6881. width:65px;
  6882. height:22px;
  6883. background:inherit;
  6884. background-color:rgba(255, 255, 255, 0);
  6885. border-radius:0px;
  6886. filter:drop-shadow(none);
  6887. transition:none;
  6888. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6889. font-weight:400;
  6890. font-style:normal;
  6891. font-size:16px;
  6892. }
  6893. #u16018 {
  6894. border-width:0px;
  6895. position:absolute;
  6896. left:25px;
  6897. top:1018px;
  6898. width:65px;
  6899. height:22px;
  6900. display:flex;
  6901. transition:none;
  6902. transform-origin:50% 50%;
  6903. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6904. font-weight:400;
  6905. font-style:normal;
  6906. font-size:16px;
  6907. }
  6908. #u16018 .text {
  6909. position:absolute;
  6910. align-self:flex-start;
  6911. padding:0px 0px 0px 0px;
  6912. box-sizing:border-box;
  6913. width:100%;
  6914. }
  6915. #u16018_text {
  6916. border-width:0px;
  6917. white-space:nowrap;
  6918. text-transform:none;
  6919. }
  6920. #u16019_div {
  6921. border-width:0px;
  6922. position:absolute;
  6923. left:0px;
  6924. top:0px;
  6925. width:97px;
  6926. height:22px;
  6927. background:inherit;
  6928. background-color:rgba(255, 255, 255, 0);
  6929. border-radius:0px;
  6930. filter:drop-shadow(none);
  6931. transition:none;
  6932. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6933. font-weight:400;
  6934. font-style:normal;
  6935. font-size:16px;
  6936. }
  6937. #u16019 {
  6938. border-width:0px;
  6939. position:absolute;
  6940. left:25px;
  6941. top:834px;
  6942. width:97px;
  6943. height:22px;
  6944. display:flex;
  6945. transition:none;
  6946. transform-origin:50% 50%;
  6947. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6948. font-weight:400;
  6949. font-style:normal;
  6950. font-size:16px;
  6951. }
  6952. #u16019 .text {
  6953. position:absolute;
  6954. align-self:flex-start;
  6955. padding:0px 0px 0px 0px;
  6956. box-sizing:border-box;
  6957. width:100%;
  6958. }
  6959. #u16019_text {
  6960. border-width:0px;
  6961. white-space:nowrap;
  6962. text-transform:none;
  6963. }
  6964. #u16020_div {
  6965. border-width:0px;
  6966. position:absolute;
  6967. left:0px;
  6968. top:0px;
  6969. width:81px;
  6970. height:22px;
  6971. background:inherit;
  6972. background-color:rgba(255, 255, 255, 0);
  6973. border-radius:0px;
  6974. filter:drop-shadow(none);
  6975. transition:none;
  6976. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6977. font-weight:400;
  6978. font-style:normal;
  6979. font-size:16px;
  6980. }
  6981. #u16020 {
  6982. border-width:0px;
  6983. position:absolute;
  6984. left:26px;
  6985. top:426px;
  6986. width:81px;
  6987. height:22px;
  6988. display:flex;
  6989. transition:none;
  6990. transform-origin:50% 50%;
  6991. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6992. font-weight:400;
  6993. font-style:normal;
  6994. font-size:16px;
  6995. }
  6996. #u16020 .text {
  6997. position:absolute;
  6998. align-self:flex-start;
  6999. padding:0px 0px 0px 0px;
  7000. box-sizing:border-box;
  7001. width:100%;
  7002. }
  7003. #u16020_text {
  7004. border-width:0px;
  7005. white-space:nowrap;
  7006. text-transform:none;
  7007. }
  7008. #u16021_div {
  7009. border-width:0px;
  7010. position:absolute;
  7011. left:0px;
  7012. top:0px;
  7013. width:97px;
  7014. height:22px;
  7015. background:inherit;
  7016. background-color:rgba(255, 255, 255, 0);
  7017. border-radius:0px;
  7018. filter:drop-shadow(none);
  7019. transition:none;
  7020. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7021. font-weight:400;
  7022. font-style:normal;
  7023. font-size:16px;
  7024. }
  7025. #u16021 {
  7026. border-width:0px;
  7027. position:absolute;
  7028. left:25px;
  7029. top:710px;
  7030. width:97px;
  7031. height:22px;
  7032. display:flex;
  7033. transition:none;
  7034. transform-origin:50% 50%;
  7035. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7036. font-weight:400;
  7037. font-style:normal;
  7038. font-size:16px;
  7039. }
  7040. #u16021 .text {
  7041. position:absolute;
  7042. align-self:flex-start;
  7043. padding:0px 0px 0px 0px;
  7044. box-sizing:border-box;
  7045. width:100%;
  7046. }
  7047. #u16021_text {
  7048. border-width:0px;
  7049. white-space:nowrap;
  7050. text-transform:none;
  7051. }
  7052. #u16022_div {
  7053. border-width:0px;
  7054. position:absolute;
  7055. left:0px;
  7056. top:0px;
  7057. width:65px;
  7058. height:22px;
  7059. background:inherit;
  7060. background-color:rgba(255, 255, 255, 0);
  7061. border-radius:0px;
  7062. filter:drop-shadow(none);
  7063. transition:none;
  7064. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7065. font-weight:400;
  7066. font-style:normal;
  7067. font-size:16px;
  7068. }
  7069. #u16022 {
  7070. border-width:0px;
  7071. position:absolute;
  7072. left:25px;
  7073. top:160px;
  7074. width:65px;
  7075. height:22px;
  7076. display:flex;
  7077. transition:none;
  7078. transform-origin:50% 50%;
  7079. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7080. font-weight:400;
  7081. font-style:normal;
  7082. font-size:16px;
  7083. }
  7084. #u16022 .text {
  7085. position:absolute;
  7086. align-self:flex-start;
  7087. padding:0px 0px 0px 0px;
  7088. box-sizing:border-box;
  7089. width:100%;
  7090. }
  7091. #u16022_text {
  7092. border-width:0px;
  7093. white-space:nowrap;
  7094. text-transform:none;
  7095. }
  7096. #u16023_div {
  7097. border-width:0px;
  7098. position:absolute;
  7099. left:0px;
  7100. top:0px;
  7101. width:81px;
  7102. height:22px;
  7103. background:inherit;
  7104. background-color:rgba(255, 255, 255, 0);
  7105. border-radius:0px;
  7106. filter:drop-shadow(none);
  7107. transition:none;
  7108. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7109. font-weight:400;
  7110. font-style:normal;
  7111. font-size:16px;
  7112. }
  7113. #u16023 {
  7114. border-width:0px;
  7115. position:absolute;
  7116. left:26px;
  7117. top:202px;
  7118. width:81px;
  7119. height:22px;
  7120. display:flex;
  7121. transition:none;
  7122. transform-origin:50% 50%;
  7123. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7124. font-weight:400;
  7125. font-style:normal;
  7126. font-size:16px;
  7127. }
  7128. #u16023 .text {
  7129. position:absolute;
  7130. align-self:flex-start;
  7131. padding:0px 0px 0px 0px;
  7132. box-sizing:border-box;
  7133. width:100%;
  7134. }
  7135. #u16023_text {
  7136. border-width:0px;
  7137. white-space:nowrap;
  7138. text-transform:none;
  7139. }
  7140. #u16024_div {
  7141. border-width:0px;
  7142. position:absolute;
  7143. left:0px;
  7144. top:0px;
  7145. width:65px;
  7146. height:22px;
  7147. background:inherit;
  7148. background-color:rgba(255, 255, 255, 0);
  7149. border-radius:0px;
  7150. filter:drop-shadow(none);
  7151. transition:none;
  7152. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7153. font-weight:400;
  7154. font-style:normal;
  7155. font-size:16px;
  7156. }
  7157. #u16024 {
  7158. border-width:0px;
  7159. position:absolute;
  7160. left:26px;
  7161. top:244px;
  7162. width:65px;
  7163. height:22px;
  7164. display:flex;
  7165. transition:none;
  7166. transform-origin:50% 50%;
  7167. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7168. font-weight:400;
  7169. font-style:normal;
  7170. font-size:16px;
  7171. }
  7172. #u16024 .text {
  7173. position:absolute;
  7174. align-self:flex-start;
  7175. padding:0px 0px 0px 0px;
  7176. box-sizing:border-box;
  7177. width:100%;
  7178. }
  7179. #u16024_text {
  7180. border-width:0px;
  7181. white-space:nowrap;
  7182. text-transform:none;
  7183. }
  7184. #u16025_div {
  7185. border-width:0px;
  7186. position:absolute;
  7187. left:0px;
  7188. top:0px;
  7189. width:407px;
  7190. height:20px;
  7191. background:inherit;
  7192. background-color:rgba(255, 255, 255, 0);
  7193. border-left:0px;
  7194. border-top:0px;
  7195. border-right:0px;
  7196. border-radius:0px;
  7197. border-bottom-right-radius:0px;
  7198. border-bottom-left-radius:0px;
  7199. filter:drop-shadow(none);
  7200. transition:none;
  7201. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7202. font-weight:400;
  7203. font-style:normal;
  7204. font-size:14px;
  7205. color:#7F7F7F;
  7206. }
  7207. #u16025 {
  7208. border-width:0px;
  7209. position:absolute;
  7210. left:352px;
  7211. top:100px;
  7212. width:407px;
  7213. height:20px;
  7214. display:flex;
  7215. transition:none;
  7216. transform-origin:50% 50%;
  7217. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7218. font-weight:400;
  7219. font-style:normal;
  7220. font-size:14px;
  7221. color:#7F7F7F;
  7222. }
  7223. #u16025 .text {
  7224. position:absolute;
  7225. align-self:center;
  7226. padding:0px 0px 0px 0px;
  7227. box-sizing:border-box;
  7228. width:100%;
  7229. }
  7230. #u16025_text {
  7231. border-width:0px;
  7232. white-space:nowrap;
  7233. text-transform:none;
  7234. }
  7235. #u16026_div {
  7236. border-width:0px;
  7237. position:absolute;
  7238. left:0px;
  7239. top:0px;
  7240. width:55px;
  7241. height:30px;
  7242. background:inherit;
  7243. background-color:rgba(255, 255, 255, 1);
  7244. box-sizing:border-box;
  7245. border-width:1px;
  7246. border-style:solid;
  7247. border-color:rgba(170, 170, 170, 1);
  7248. border-radius:4px;
  7249. filter:drop-shadow(none);
  7250. transition:none;
  7251. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7252. font-weight:400;
  7253. font-style:normal;
  7254. font-size:12px;
  7255. color:#555555;
  7256. }
  7257. #u16026 {
  7258. border-width:0px;
  7259. position:absolute;
  7260. left:489px;
  7261. top:232px;
  7262. width:55px;
  7263. height:30px;
  7264. display:flex;
  7265. transition:none;
  7266. transform-origin:50% 50%;
  7267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7268. font-weight:400;
  7269. font-style:normal;
  7270. font-size:12px;
  7271. color:#555555;
  7272. }
  7273. #u16026 .text {
  7274. position:absolute;
  7275. align-self:center;
  7276. padding:5px 15px 5px 15px;
  7277. box-sizing:border-box;
  7278. width:100%;
  7279. }
  7280. #u16026_text {
  7281. border-width:0px;
  7282. white-space:nowrap;
  7283. text-transform:none;
  7284. }
  7285. #u16027_div {
  7286. border-width:0px;
  7287. position:absolute;
  7288. left:0px;
  7289. top:0px;
  7290. width:59px;
  7291. height:30px;
  7292. background:inherit;
  7293. background-color:rgba(255, 255, 255, 1);
  7294. box-sizing:border-box;
  7295. border-width:1px;
  7296. border-style:solid;
  7297. border-color:rgba(170, 170, 170, 1);
  7298. border-radius:4px;
  7299. filter:drop-shadow(none);
  7300. transition:none;
  7301. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7302. font-weight:400;
  7303. font-style:normal;
  7304. font-size:14px;
  7305. color:#555555;
  7306. }
  7307. #u16027 {
  7308. border-width:0px;
  7309. position:absolute;
  7310. left:420px;
  7311. top:232px;
  7312. width:59px;
  7313. height:30px;
  7314. display:flex;
  7315. transition:none;
  7316. transform-origin:50% 50%;
  7317. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7318. font-weight:400;
  7319. font-style:normal;
  7320. font-size:14px;
  7321. color:#555555;
  7322. }
  7323. #u16027 .text {
  7324. position:absolute;
  7325. align-self:center;
  7326. padding:5px 15px 5px 15px;
  7327. box-sizing:border-box;
  7328. width:100%;
  7329. }
  7330. #u16027_text {
  7331. border-width:0px;
  7332. white-space:nowrap;
  7333. text-transform:none;
  7334. }
  7335. #u16028 {
  7336. border-width:0px;
  7337. position:absolute;
  7338. left:0px;
  7339. top:0px;
  7340. width:0px;
  7341. height:0px;
  7342. }
  7343. #u16029_div {
  7344. border-width:0px;
  7345. position:absolute;
  7346. left:0px;
  7347. top:0px;
  7348. width:60px;
  7349. height:30px;
  7350. background:inherit;
  7351. background-color:rgba(24, 144, 255, 1);
  7352. border-radius:4px;
  7353. filter:drop-shadow(none);
  7354. transition:none;
  7355. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7356. font-weight:400;
  7357. font-style:normal;
  7358. font-size:14px;
  7359. color:#FFFFFF;
  7360. }
  7361. #u16029 {
  7362. border-width:0px;
  7363. position:absolute;
  7364. left:350px;
  7365. top:183px;
  7366. width:60px;
  7367. height:30px;
  7368. display:flex;
  7369. transition:none;
  7370. transform-origin:50% 50%;
  7371. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7372. font-weight:400;
  7373. font-style:normal;
  7374. font-size:14px;
  7375. color:#FFFFFF;
  7376. }
  7377. #u16029 .text {
  7378. position:absolute;
  7379. align-self:center;
  7380. padding:2px 2px 2px 2px;
  7381. box-sizing:border-box;
  7382. width:100%;
  7383. }
  7384. #u16029_text {
  7385. border-width:0px;
  7386. word-wrap:break-word;
  7387. text-transform:none;
  7388. }
  7389. #u16030_div {
  7390. border-width:0px;
  7391. position:absolute;
  7392. left:0px;
  7393. top:0px;
  7394. width:60px;
  7395. height:30px;
  7396. background:inherit;
  7397. background-color:rgba(255, 255, 255, 1);
  7398. box-sizing:border-box;
  7399. border-width:1px;
  7400. border-style:solid;
  7401. border-color:rgba(170, 170, 170, 1);
  7402. border-radius:4px;
  7403. filter:drop-shadow(none);
  7404. transition:none;
  7405. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7406. font-weight:400;
  7407. font-style:normal;
  7408. font-size:14px;
  7409. }
  7410. #u16030 {
  7411. border-width:0px;
  7412. position:absolute;
  7413. left:420px;
  7414. top:183px;
  7415. width:60px;
  7416. height:30px;
  7417. display:flex;
  7418. transition:none;
  7419. transform-origin:50% 50%;
  7420. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7421. font-weight:400;
  7422. font-style:normal;
  7423. font-size:14px;
  7424. }
  7425. #u16030 .text {
  7426. position:absolute;
  7427. align-self:center;
  7428. padding:2px 2px 2px 2px;
  7429. box-sizing:border-box;
  7430. width:100%;
  7431. }
  7432. #u16030_text {
  7433. border-width:0px;
  7434. word-wrap:break-word;
  7435. text-transform:none;
  7436. }
  7437. #u16031 {
  7438. border-width:0px;
  7439. position:absolute;
  7440. left:0px;
  7441. top:0px;
  7442. width:0px;
  7443. height:0px;
  7444. }
  7445. #u16032_div {
  7446. border-width:0px;
  7447. position:absolute;
  7448. left:0px;
  7449. top:0px;
  7450. width:140px;
  7451. height:30px;
  7452. background:inherit;
  7453. background-color:rgba(255, 255, 255, 1);
  7454. box-sizing:border-box;
  7455. border-width:1px;
  7456. border-style:solid;
  7457. border-color:rgba(201, 201, 201, 1);
  7458. border-radius:4px;
  7459. filter:drop-shadow(none);
  7460. transition:none;
  7461. font-family:"Microsoft YaHei", sans-serif;
  7462. font-weight:400;
  7463. font-style:normal;
  7464. font-size:14px;
  7465. color:#CCCCCC;
  7466. text-align:left;
  7467. }
  7468. #u16032 {
  7469. border-width:0px;
  7470. position:absolute;
  7471. left:800px;
  7472. top:143px;
  7473. width:140px;
  7474. height:30px;
  7475. display:flex;
  7476. transition:none;
  7477. transform-origin:50% 50%;
  7478. font-family:"Microsoft YaHei", sans-serif;
  7479. font-weight:400;
  7480. font-style:normal;
  7481. font-size:14px;
  7482. color:#CCCCCC;
  7483. text-align:left;
  7484. }
  7485. #u16032 .text {
  7486. position:absolute;
  7487. align-self:center;
  7488. padding:2px 8px 2px 8px;
  7489. box-sizing:border-box;
  7490. width:100%;
  7491. }
  7492. #u16032_text {
  7493. border-width:0px;
  7494. word-wrap:break-word;
  7495. text-transform:none;
  7496. visibility:hidden;
  7497. }
  7498. #u16033_input {
  7499. position:absolute;
  7500. left:0px;
  7501. top:0px;
  7502. width:127px;
  7503. height:25px;
  7504. padding:2px 2px 2px 2px;
  7505. font-family:"Microsoft YaHei", sans-serif;
  7506. font-weight:400;
  7507. font-style:normal;
  7508. font-size:10px;
  7509. letter-spacing:normal;
  7510. color:#000000;
  7511. vertical-align:none;
  7512. text-align:left;
  7513. text-transform:none;
  7514. background-color:transparent;
  7515. border-color:transparent;
  7516. }
  7517. #u16033_input.hint {
  7518. position:absolute;
  7519. left:0px;
  7520. top:0px;
  7521. width:127px;
  7522. height:25px;
  7523. padding:2px 2px 2px 2px;
  7524. font-family:"Microsoft YaHei", sans-serif;
  7525. font-weight:400;
  7526. font-style:normal;
  7527. font-size:12px;
  7528. letter-spacing:normal;
  7529. color:#AAAAAA;
  7530. vertical-align:none;
  7531. text-align:left;
  7532. text-transform:none;
  7533. background-color:transparent;
  7534. border-color:transparent;
  7535. }
  7536. #u16033_input.disabled {
  7537. position:absolute;
  7538. left:0px;
  7539. top:0px;
  7540. width:127px;
  7541. height:25px;
  7542. padding:2px 2px 2px 2px;
  7543. font-family:"Microsoft YaHei", sans-serif;
  7544. font-weight:400;
  7545. font-style:normal;
  7546. font-size:10px;
  7547. letter-spacing:normal;
  7548. color:#000000;
  7549. vertical-align:none;
  7550. text-align:left;
  7551. text-transform:none;
  7552. background-color:transparent;
  7553. border-color:transparent;
  7554. }
  7555. #u16033_input.hint.disabled {
  7556. position:absolute;
  7557. left:0px;
  7558. top:0px;
  7559. width:127px;
  7560. height:25px;
  7561. padding:2px 2px 2px 2px;
  7562. font-family:"Microsoft YaHei", sans-serif;
  7563. font-weight:400;
  7564. font-style:normal;
  7565. font-size:12px;
  7566. letter-spacing:normal;
  7567. color:#AAAAAA;
  7568. vertical-align:none;
  7569. text-align:left;
  7570. text-transform:none;
  7571. background-color:transparent;
  7572. border-color:transparent;
  7573. }
  7574. #u16033_div {
  7575. border-width:0px;
  7576. position:absolute;
  7577. left:0px;
  7578. top:0px;
  7579. width:127px;
  7580. height:25px;
  7581. background:inherit;
  7582. background-color:rgba(255, 255, 255, 1);
  7583. border-radius:0px;
  7584. filter:drop-shadow(none);
  7585. transition:none;
  7586. font-family:"Microsoft YaHei", sans-serif;
  7587. font-weight:400;
  7588. font-style:normal;
  7589. font-size:10px;
  7590. }
  7591. #u16033 {
  7592. border-width:0px;
  7593. position:absolute;
  7594. left:808px;
  7595. top:144px;
  7596. width:127px;
  7597. height:25px;
  7598. display:flex;
  7599. transition:none;
  7600. transform-origin:50% 50%;
  7601. font-family:"Microsoft YaHei", sans-serif;
  7602. font-weight:400;
  7603. font-style:normal;
  7604. font-size:10px;
  7605. }
  7606. #u16033 .text {
  7607. position:absolute;
  7608. align-self:center;
  7609. padding:2px 2px 2px 2px;
  7610. box-sizing:border-box;
  7611. width:100%;
  7612. }
  7613. #u16033_div.hint {
  7614. border-width:0px;
  7615. position:absolute;
  7616. left:0px;
  7617. top:0px;
  7618. width:127px;
  7619. height:25px;
  7620. background:inherit;
  7621. background-color:rgba(255, 255, 255, 1);
  7622. border-radius:0px;
  7623. filter:drop-shadow(none);
  7624. transition:none;
  7625. font-family:"Microsoft YaHei", sans-serif;
  7626. font-weight:400;
  7627. font-style:normal;
  7628. font-size:10px;
  7629. }
  7630. #u16033.hint {
  7631. }
  7632. #u16033_div.disabled {
  7633. border-width:0px;
  7634. position:absolute;
  7635. left:0px;
  7636. top:0px;
  7637. width:127px;
  7638. height:25px;
  7639. background:inherit;
  7640. background-color:rgba(240, 240, 240, 1);
  7641. border-radius:0px;
  7642. filter:drop-shadow(none);
  7643. transition:none;
  7644. font-family:"Microsoft YaHei", sans-serif;
  7645. font-weight:400;
  7646. font-style:normal;
  7647. font-size:10px;
  7648. }
  7649. #u16033.disabled {
  7650. }
  7651. #u16033_div.hint.disabled {
  7652. border-width:0px;
  7653. position:absolute;
  7654. left:0px;
  7655. top:0px;
  7656. width:127px;
  7657. height:25px;
  7658. background:inherit;
  7659. background-color:rgba(240, 240, 240, 1);
  7660. border-radius:0px;
  7661. filter:drop-shadow(none);
  7662. transition:none;
  7663. font-family:"Microsoft YaHei", sans-serif;
  7664. font-weight:400;
  7665. font-style:normal;
  7666. font-size:10px;
  7667. }
  7668. #u16033.hint.disabled {
  7669. }
  7670. #u16034 {
  7671. border-width:0px;
  7672. position:absolute;
  7673. left:0px;
  7674. top:0px;
  7675. width:0px;
  7676. height:0px;
  7677. }
  7678. #u16035_div {
  7679. border-width:0px;
  7680. position:absolute;
  7681. left:0px;
  7682. top:0px;
  7683. width:140px;
  7684. height:30px;
  7685. background:inherit;
  7686. background-color:rgba(255, 255, 255, 1);
  7687. box-sizing:border-box;
  7688. border-width:1px;
  7689. border-style:solid;
  7690. border-color:rgba(201, 201, 201, 1);
  7691. border-radius:4px;
  7692. filter:drop-shadow(none);
  7693. transition:none;
  7694. font-family:"Microsoft YaHei", sans-serif;
  7695. font-weight:400;
  7696. font-style:normal;
  7697. font-size:14px;
  7698. color:#CCCCCC;
  7699. text-align:left;
  7700. }
  7701. #u16035 {
  7702. border-width:0px;
  7703. position:absolute;
  7704. left:950px;
  7705. top:143px;
  7706. width:140px;
  7707. height:30px;
  7708. display:flex;
  7709. transition:none;
  7710. transform-origin:50% 50%;
  7711. font-family:"Microsoft YaHei", sans-serif;
  7712. font-weight:400;
  7713. font-style:normal;
  7714. font-size:14px;
  7715. color:#CCCCCC;
  7716. text-align:left;
  7717. }
  7718. #u16035 .text {
  7719. position:absolute;
  7720. align-self:center;
  7721. padding:2px 8px 2px 8px;
  7722. box-sizing:border-box;
  7723. width:100%;
  7724. }
  7725. #u16035_text {
  7726. border-width:0px;
  7727. word-wrap:break-word;
  7728. text-transform:none;
  7729. visibility:hidden;
  7730. }
  7731. #u16036_input {
  7732. position:absolute;
  7733. left:0px;
  7734. top:0px;
  7735. width:127px;
  7736. height:25px;
  7737. padding:2px 2px 2px 2px;
  7738. font-family:"Microsoft YaHei", sans-serif;
  7739. font-weight:400;
  7740. font-style:normal;
  7741. font-size:10px;
  7742. letter-spacing:normal;
  7743. color:#000000;
  7744. vertical-align:none;
  7745. text-align:left;
  7746. text-transform:none;
  7747. background-color:transparent;
  7748. border-color:transparent;
  7749. }
  7750. #u16036_input.hint {
  7751. position:absolute;
  7752. left:0px;
  7753. top:0px;
  7754. width:127px;
  7755. height:25px;
  7756. padding:2px 2px 2px 2px;
  7757. font-family:"Microsoft YaHei", sans-serif;
  7758. font-weight:400;
  7759. font-style:normal;
  7760. font-size:12px;
  7761. letter-spacing:normal;
  7762. color:#AAAAAA;
  7763. vertical-align:none;
  7764. text-align:left;
  7765. text-transform:none;
  7766. background-color:transparent;
  7767. border-color:transparent;
  7768. }
  7769. #u16036_input.disabled {
  7770. position:absolute;
  7771. left:0px;
  7772. top:0px;
  7773. width:127px;
  7774. height:25px;
  7775. padding:2px 2px 2px 2px;
  7776. font-family:"Microsoft YaHei", sans-serif;
  7777. font-weight:400;
  7778. font-style:normal;
  7779. font-size:10px;
  7780. letter-spacing:normal;
  7781. color:#000000;
  7782. vertical-align:none;
  7783. text-align:left;
  7784. text-transform:none;
  7785. background-color:transparent;
  7786. border-color:transparent;
  7787. }
  7788. #u16036_input.hint.disabled {
  7789. position:absolute;
  7790. left:0px;
  7791. top:0px;
  7792. width:127px;
  7793. height:25px;
  7794. padding:2px 2px 2px 2px;
  7795. font-family:"Microsoft YaHei", sans-serif;
  7796. font-weight:400;
  7797. font-style:normal;
  7798. font-size:12px;
  7799. letter-spacing:normal;
  7800. color:#AAAAAA;
  7801. vertical-align:none;
  7802. text-align:left;
  7803. text-transform:none;
  7804. background-color:transparent;
  7805. border-color:transparent;
  7806. }
  7807. #u16036_div {
  7808. border-width:0px;
  7809. position:absolute;
  7810. left:0px;
  7811. top:0px;
  7812. width:127px;
  7813. height:25px;
  7814. background:inherit;
  7815. background-color:rgba(255, 255, 255, 1);
  7816. border-radius:0px;
  7817. filter:drop-shadow(none);
  7818. transition:none;
  7819. font-family:"Microsoft YaHei", sans-serif;
  7820. font-weight:400;
  7821. font-style:normal;
  7822. font-size:10px;
  7823. }
  7824. #u16036 {
  7825. border-width:0px;
  7826. position:absolute;
  7827. left:958px;
  7828. top:144px;
  7829. width:127px;
  7830. height:25px;
  7831. display:flex;
  7832. transition:none;
  7833. transform-origin:50% 50%;
  7834. font-family:"Microsoft YaHei", sans-serif;
  7835. font-weight:400;
  7836. font-style:normal;
  7837. font-size:10px;
  7838. }
  7839. #u16036 .text {
  7840. position:absolute;
  7841. align-self:center;
  7842. padding:2px 2px 2px 2px;
  7843. box-sizing:border-box;
  7844. width:100%;
  7845. }
  7846. #u16036_div.hint {
  7847. border-width:0px;
  7848. position:absolute;
  7849. left:0px;
  7850. top:0px;
  7851. width:127px;
  7852. height:25px;
  7853. background:inherit;
  7854. background-color:rgba(255, 255, 255, 1);
  7855. border-radius:0px;
  7856. filter:drop-shadow(none);
  7857. transition:none;
  7858. font-family:"Microsoft YaHei", sans-serif;
  7859. font-weight:400;
  7860. font-style:normal;
  7861. font-size:10px;
  7862. }
  7863. #u16036.hint {
  7864. }
  7865. #u16036_div.disabled {
  7866. border-width:0px;
  7867. position:absolute;
  7868. left:0px;
  7869. top:0px;
  7870. width:127px;
  7871. height:25px;
  7872. background:inherit;
  7873. background-color:rgba(240, 240, 240, 1);
  7874. border-radius:0px;
  7875. filter:drop-shadow(none);
  7876. transition:none;
  7877. font-family:"Microsoft YaHei", sans-serif;
  7878. font-weight:400;
  7879. font-style:normal;
  7880. font-size:10px;
  7881. }
  7882. #u16036.disabled {
  7883. }
  7884. #u16036_div.hint.disabled {
  7885. border-width:0px;
  7886. position:absolute;
  7887. left:0px;
  7888. top:0px;
  7889. width:127px;
  7890. height:25px;
  7891. background:inherit;
  7892. background-color:rgba(240, 240, 240, 1);
  7893. border-radius:0px;
  7894. filter:drop-shadow(none);
  7895. transition:none;
  7896. font-family:"Microsoft YaHei", sans-serif;
  7897. font-weight:400;
  7898. font-style:normal;
  7899. font-size:10px;
  7900. }
  7901. #u16036.hint.disabled {
  7902. }
  7903. #u16037 {
  7904. border-width:0px;
  7905. position:absolute;
  7906. left:0px;
  7907. top:0px;
  7908. width:0px;
  7909. height:0px;
  7910. }
  7911. #u16038_div {
  7912. border-width:0px;
  7913. position:absolute;
  7914. left:0px;
  7915. top:0px;
  7916. width:140px;
  7917. height:30px;
  7918. background:inherit;
  7919. background-color:rgba(255, 255, 255, 1);
  7920. box-sizing:border-box;
  7921. border-width:1px;
  7922. border-style:solid;
  7923. border-color:rgba(201, 201, 201, 1);
  7924. border-radius:4px;
  7925. filter:drop-shadow(none);
  7926. transition:none;
  7927. font-family:"Microsoft YaHei", sans-serif;
  7928. font-weight:400;
  7929. font-style:normal;
  7930. font-size:14px;
  7931. color:#CCCCCC;
  7932. text-align:left;
  7933. }
  7934. #u16038 {
  7935. border-width:0px;
  7936. position:absolute;
  7937. left:1250px;
  7938. top:143px;
  7939. width:140px;
  7940. height:30px;
  7941. display:flex;
  7942. transition:none;
  7943. transform-origin:50% 50%;
  7944. font-family:"Microsoft YaHei", sans-serif;
  7945. font-weight:400;
  7946. font-style:normal;
  7947. font-size:14px;
  7948. color:#CCCCCC;
  7949. text-align:left;
  7950. }
  7951. #u16038 .text {
  7952. position:absolute;
  7953. align-self:center;
  7954. padding:2px 8px 2px 8px;
  7955. box-sizing:border-box;
  7956. width:100%;
  7957. }
  7958. #u16038_text {
  7959. border-width:0px;
  7960. word-wrap:break-word;
  7961. text-transform:none;
  7962. visibility:hidden;
  7963. }
  7964. #u16039_input {
  7965. position:absolute;
  7966. left:0px;
  7967. top:0px;
  7968. width:127px;
  7969. height:25px;
  7970. padding:2px 2px 2px 2px;
  7971. font-family:"Microsoft YaHei", sans-serif;
  7972. font-weight:400;
  7973. font-style:normal;
  7974. font-size:10px;
  7975. letter-spacing:normal;
  7976. color:#000000;
  7977. vertical-align:none;
  7978. text-align:left;
  7979. text-transform:none;
  7980. background-color:transparent;
  7981. border-color:transparent;
  7982. }
  7983. #u16039_input.hint {
  7984. position:absolute;
  7985. left:0px;
  7986. top:0px;
  7987. width:127px;
  7988. height:25px;
  7989. padding:2px 2px 2px 2px;
  7990. font-family:"Microsoft YaHei", sans-serif;
  7991. font-weight:400;
  7992. font-style:normal;
  7993. font-size:12px;
  7994. letter-spacing:normal;
  7995. color:#AAAAAA;
  7996. vertical-align:none;
  7997. text-align:left;
  7998. text-transform:none;
  7999. background-color:transparent;
  8000. border-color:transparent;
  8001. }
  8002. #u16039_input.disabled {
  8003. position:absolute;
  8004. left:0px;
  8005. top:0px;
  8006. width:127px;
  8007. height:25px;
  8008. padding:2px 2px 2px 2px;
  8009. font-family:"Microsoft YaHei", sans-serif;
  8010. font-weight:400;
  8011. font-style:normal;
  8012. font-size:10px;
  8013. letter-spacing:normal;
  8014. color:#000000;
  8015. vertical-align:none;
  8016. text-align:left;
  8017. text-transform:none;
  8018. background-color:transparent;
  8019. border-color:transparent;
  8020. }
  8021. #u16039_input.hint.disabled {
  8022. position:absolute;
  8023. left:0px;
  8024. top:0px;
  8025. width:127px;
  8026. height:25px;
  8027. padding:2px 2px 2px 2px;
  8028. font-family:"Microsoft YaHei", sans-serif;
  8029. font-weight:400;
  8030. font-style:normal;
  8031. font-size:12px;
  8032. letter-spacing:normal;
  8033. color:#AAAAAA;
  8034. vertical-align:none;
  8035. text-align:left;
  8036. text-transform:none;
  8037. background-color:transparent;
  8038. border-color:transparent;
  8039. }
  8040. #u16039_div {
  8041. border-width:0px;
  8042. position:absolute;
  8043. left:0px;
  8044. top:0px;
  8045. width:127px;
  8046. height:25px;
  8047. background:inherit;
  8048. background-color:rgba(255, 255, 255, 1);
  8049. border-radius:0px;
  8050. filter:drop-shadow(none);
  8051. transition:none;
  8052. font-family:"Microsoft YaHei", sans-serif;
  8053. font-weight:400;
  8054. font-style:normal;
  8055. font-size:10px;
  8056. }
  8057. #u16039 {
  8058. border-width:0px;
  8059. position:absolute;
  8060. left:1258px;
  8061. top:144px;
  8062. width:127px;
  8063. height:25px;
  8064. display:flex;
  8065. transition:none;
  8066. transform-origin:50% 50%;
  8067. font-family:"Microsoft YaHei", sans-serif;
  8068. font-weight:400;
  8069. font-style:normal;
  8070. font-size:10px;
  8071. }
  8072. #u16039 .text {
  8073. position:absolute;
  8074. align-self:center;
  8075. padding:2px 2px 2px 2px;
  8076. box-sizing:border-box;
  8077. width:100%;
  8078. }
  8079. #u16039_div.hint {
  8080. border-width:0px;
  8081. position:absolute;
  8082. left:0px;
  8083. top:0px;
  8084. width:127px;
  8085. height:25px;
  8086. background:inherit;
  8087. background-color:rgba(255, 255, 255, 1);
  8088. border-radius:0px;
  8089. filter:drop-shadow(none);
  8090. transition:none;
  8091. font-family:"Microsoft YaHei", sans-serif;
  8092. font-weight:400;
  8093. font-style:normal;
  8094. font-size:10px;
  8095. }
  8096. #u16039.hint {
  8097. }
  8098. #u16039_div.disabled {
  8099. border-width:0px;
  8100. position:absolute;
  8101. left:0px;
  8102. top:0px;
  8103. width:127px;
  8104. height:25px;
  8105. background:inherit;
  8106. background-color:rgba(240, 240, 240, 1);
  8107. border-radius:0px;
  8108. filter:drop-shadow(none);
  8109. transition:none;
  8110. font-family:"Microsoft YaHei", sans-serif;
  8111. font-weight:400;
  8112. font-style:normal;
  8113. font-size:10px;
  8114. }
  8115. #u16039.disabled {
  8116. }
  8117. #u16039_div.hint.disabled {
  8118. border-width:0px;
  8119. position:absolute;
  8120. left:0px;
  8121. top:0px;
  8122. width:127px;
  8123. height:25px;
  8124. background:inherit;
  8125. background-color:rgba(240, 240, 240, 1);
  8126. border-radius:0px;
  8127. filter:drop-shadow(none);
  8128. transition:none;
  8129. font-family:"Microsoft YaHei", sans-serif;
  8130. font-weight:400;
  8131. font-style:normal;
  8132. font-size:10px;
  8133. }
  8134. #u16039.hint.disabled {
  8135. }
  8136. #u16040 {
  8137. border-width:0px;
  8138. position:absolute;
  8139. left:0px;
  8140. top:0px;
  8141. width:0px;
  8142. height:0px;
  8143. }
  8144. #u16041_div {
  8145. border-width:0px;
  8146. position:absolute;
  8147. left:0px;
  8148. top:0px;
  8149. width:140px;
  8150. height:30px;
  8151. background:inherit;
  8152. background-color:rgba(255, 255, 255, 1);
  8153. box-sizing:border-box;
  8154. border-width:1px;
  8155. border-style:solid;
  8156. border-color:rgba(215, 215, 215, 1);
  8157. border-radius:4px;
  8158. filter:drop-shadow(none);
  8159. transition:none;
  8160. font-size:14px;
  8161. }
  8162. #u16041 {
  8163. border-width:0px;
  8164. position:absolute;
  8165. left:1100px;
  8166. top:143px;
  8167. width:140px;
  8168. height:30px;
  8169. display:flex;
  8170. transition:none;
  8171. transform-origin:50% 50%;
  8172. font-size:14px;
  8173. }
  8174. #u16041 .text {
  8175. position:absolute;
  8176. align-self:center;
  8177. padding:2px 2px 2px 2px;
  8178. box-sizing:border-box;
  8179. width:100%;
  8180. }
  8181. #u16041_text {
  8182. border-width:0px;
  8183. word-wrap:break-word;
  8184. text-transform:none;
  8185. visibility:hidden;
  8186. }
  8187. #u16042_input {
  8188. position:absolute;
  8189. left:0px;
  8190. top:0px;
  8191. width:134px;
  8192. height:23px;
  8193. padding:2px 2px 2px 2px;
  8194. font-family:'ArialMT', 'Arial', sans-serif;
  8195. font-weight:400;
  8196. font-style:normal;
  8197. font-size:14px;
  8198. letter-spacing:normal;
  8199. color:#AAAAAA;
  8200. vertical-align:none;
  8201. text-align:left;
  8202. text-transform:none;
  8203. background-color:transparent;
  8204. border-color:transparent;
  8205. }
  8206. #u16042_input.disabled {
  8207. position:absolute;
  8208. left:0px;
  8209. top:0px;
  8210. width:134px;
  8211. height:23px;
  8212. padding:2px 2px 2px 2px;
  8213. font-family:'ArialMT', 'Arial', sans-serif;
  8214. font-weight:400;
  8215. font-style:normal;
  8216. font-size:14px;
  8217. letter-spacing:normal;
  8218. color:#AAAAAA;
  8219. vertical-align:none;
  8220. text-align:left;
  8221. text-transform:none;
  8222. background-color:transparent;
  8223. border-color:transparent;
  8224. }
  8225. #u16042_div {
  8226. border-width:0px;
  8227. position:absolute;
  8228. left:0px;
  8229. top:0px;
  8230. width:134px;
  8231. height:23px;
  8232. background:inherit;
  8233. background-color:rgba(255, 255, 255, 1);
  8234. border-radius:0px;
  8235. filter:drop-shadow(none);
  8236. transition:none;
  8237. font-size:14px;
  8238. color:#AAAAAA;
  8239. }
  8240. #u16042 {
  8241. border-width:0px;
  8242. position:absolute;
  8243. left:1104px;
  8244. top:145px;
  8245. width:134px;
  8246. height:23px;
  8247. display:flex;
  8248. transition:none;
  8249. transform-origin:50% 50%;
  8250. font-size:14px;
  8251. color:#AAAAAA;
  8252. }
  8253. #u16042 .text {
  8254. position:absolute;
  8255. align-self:flex-start;
  8256. padding:2px 2px 2px 2px;
  8257. box-sizing:border-box;
  8258. width:100%;
  8259. }
  8260. #u16042_div.disabled {
  8261. border-width:0px;
  8262. position:absolute;
  8263. left:0px;
  8264. top:0px;
  8265. width:134px;
  8266. height:23px;
  8267. background:inherit;
  8268. background-color:rgba(240, 240, 240, 1);
  8269. border-radius:0px;
  8270. filter:drop-shadow(none);
  8271. transition:none;
  8272. font-size:14px;
  8273. color:#AAAAAA;
  8274. }
  8275. #u16042.disabled {
  8276. }
  8277. .u16042_input_option {
  8278. font-size:14px;
  8279. }
  8280. #u16043 {
  8281. border-width:0px;
  8282. position:absolute;
  8283. left:0px;
  8284. top:0px;
  8285. width:0px;
  8286. height:0px;
  8287. }
  8288. #u16044_div {
  8289. border-width:0px;
  8290. position:absolute;
  8291. left:0px;
  8292. top:0px;
  8293. width:140px;
  8294. height:30px;
  8295. background:inherit;
  8296. background-color:rgba(255, 255, 255, 1);
  8297. box-sizing:border-box;
  8298. border-width:1px;
  8299. border-style:solid;
  8300. border-color:rgba(215, 215, 215, 1);
  8301. border-radius:4px;
  8302. filter:drop-shadow(none);
  8303. transition:none;
  8304. font-size:14px;
  8305. }
  8306. #u16044 {
  8307. border-width:0px;
  8308. position:absolute;
  8309. left:350px;
  8310. top:143px;
  8311. width:140px;
  8312. height:30px;
  8313. display:flex;
  8314. transition:none;
  8315. transform-origin:50% 50%;
  8316. font-size:14px;
  8317. }
  8318. #u16044 .text {
  8319. position:absolute;
  8320. align-self:center;
  8321. padding:2px 2px 2px 2px;
  8322. box-sizing:border-box;
  8323. width:100%;
  8324. }
  8325. #u16044_text {
  8326. border-width:0px;
  8327. word-wrap:break-word;
  8328. text-transform:none;
  8329. visibility:hidden;
  8330. }
  8331. #u16045_input {
  8332. position:absolute;
  8333. left:0px;
  8334. top:0px;
  8335. width:134px;
  8336. height:23px;
  8337. padding:2px 2px 2px 2px;
  8338. font-family:'ArialMT', 'Arial', sans-serif;
  8339. font-weight:400;
  8340. font-style:normal;
  8341. font-size:14px;
  8342. letter-spacing:normal;
  8343. color:#AAAAAA;
  8344. vertical-align:none;
  8345. text-align:left;
  8346. text-transform:none;
  8347. background-color:transparent;
  8348. border-color:transparent;
  8349. }
  8350. #u16045_input.disabled {
  8351. position:absolute;
  8352. left:0px;
  8353. top:0px;
  8354. width:134px;
  8355. height:23px;
  8356. padding:2px 2px 2px 2px;
  8357. font-family:'ArialMT', 'Arial', sans-serif;
  8358. font-weight:400;
  8359. font-style:normal;
  8360. font-size:14px;
  8361. letter-spacing:normal;
  8362. color:#AAAAAA;
  8363. vertical-align:none;
  8364. text-align:left;
  8365. text-transform:none;
  8366. background-color:transparent;
  8367. border-color:transparent;
  8368. }
  8369. #u16045_div {
  8370. border-width:0px;
  8371. position:absolute;
  8372. left:0px;
  8373. top:0px;
  8374. width:134px;
  8375. height:23px;
  8376. background:inherit;
  8377. background-color:rgba(255, 255, 255, 1);
  8378. border-radius:0px;
  8379. filter:drop-shadow(none);
  8380. transition:none;
  8381. font-size:14px;
  8382. color:#AAAAAA;
  8383. }
  8384. #u16045 {
  8385. border-width:0px;
  8386. position:absolute;
  8387. left:354px;
  8388. top:145px;
  8389. width:134px;
  8390. height:23px;
  8391. display:flex;
  8392. transition:none;
  8393. transform-origin:50% 50%;
  8394. font-size:14px;
  8395. color:#AAAAAA;
  8396. }
  8397. #u16045 .text {
  8398. position:absolute;
  8399. align-self:flex-start;
  8400. padding:2px 2px 2px 2px;
  8401. box-sizing:border-box;
  8402. width:100%;
  8403. }
  8404. #u16045_div.disabled {
  8405. border-width:0px;
  8406. position:absolute;
  8407. left:0px;
  8408. top:0px;
  8409. width:134px;
  8410. height:23px;
  8411. background:inherit;
  8412. background-color:rgba(240, 240, 240, 1);
  8413. border-radius:0px;
  8414. filter:drop-shadow(none);
  8415. transition:none;
  8416. font-size:14px;
  8417. color:#AAAAAA;
  8418. }
  8419. #u16045.disabled {
  8420. }
  8421. .u16045_input_option {
  8422. font-size:14px;
  8423. }
  8424. #u16046_div {
  8425. border-width:0px;
  8426. position:absolute;
  8427. left:0px;
  8428. top:0px;
  8429. width:680px;
  8430. height:44px;
  8431. background:inherit;
  8432. background-color:rgba(255, 255, 255, 0);
  8433. border-top:0px;
  8434. border-right:0px;
  8435. border-bottom:0px;
  8436. border-radius:0px;
  8437. border-top-left-radius:0px;
  8438. border-bottom-left-radius:0px;
  8439. filter:drop-shadow(none);
  8440. transition:none;
  8441. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8442. font-weight:400;
  8443. font-style:normal;
  8444. font-size:12px;
  8445. color:#D9001B;
  8446. }
  8447. #u16046 {
  8448. border-width:0px;
  8449. position:absolute;
  8450. left:685px;
  8451. top:490px;
  8452. width:680px;
  8453. height:44px;
  8454. display:flex;
  8455. transition:none;
  8456. transform-origin:50% 50%;
  8457. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8458. font-weight:400;
  8459. font-style:normal;
  8460. font-size:12px;
  8461. color:#D9001B;
  8462. }
  8463. #u16046 .text {
  8464. position:absolute;
  8465. align-self:center;
  8466. padding:5px 0px 5px 0px;
  8467. box-sizing:border-box;
  8468. width:100%;
  8469. }
  8470. #u16046_text {
  8471. border-width:0px;
  8472. white-space:nowrap;
  8473. text-transform:none;
  8474. }
  8475. #u16047 {
  8476. border-width:0px;
  8477. position:absolute;
  8478. left:0px;
  8479. top:0px;
  8480. width:0px;
  8481. height:0px;
  8482. }
  8483. #u16048_div {
  8484. border-width:0px;
  8485. position:absolute;
  8486. left:0px;
  8487. top:0px;
  8488. width:140px;
  8489. height:30px;
  8490. background:inherit;
  8491. background-color:rgba(255, 255, 255, 1);
  8492. box-sizing:border-box;
  8493. border-width:1px;
  8494. border-style:solid;
  8495. border-color:rgba(215, 215, 215, 1);
  8496. border-radius:4px;
  8497. filter:drop-shadow(none);
  8498. transition:none;
  8499. font-size:14px;
  8500. }
  8501. #u16048 {
  8502. border-width:0px;
  8503. position:absolute;
  8504. left:648px;
  8505. top:145px;
  8506. width:140px;
  8507. height:30px;
  8508. display:flex;
  8509. transition:none;
  8510. transform-origin:50% 50%;
  8511. font-size:14px;
  8512. }
  8513. #u16048 .text {
  8514. position:absolute;
  8515. align-self:center;
  8516. padding:2px 2px 2px 2px;
  8517. box-sizing:border-box;
  8518. width:100%;
  8519. }
  8520. #u16048_text {
  8521. border-width:0px;
  8522. word-wrap:break-word;
  8523. text-transform:none;
  8524. visibility:hidden;
  8525. }
  8526. #u16049_input {
  8527. position:absolute;
  8528. left:0px;
  8529. top:0px;
  8530. width:134px;
  8531. height:23px;
  8532. padding:2px 2px 2px 2px;
  8533. font-family:'ArialMT', 'Arial', sans-serif;
  8534. font-weight:400;
  8535. font-style:normal;
  8536. font-size:14px;
  8537. letter-spacing:normal;
  8538. color:#AAAAAA;
  8539. vertical-align:none;
  8540. text-align:left;
  8541. text-transform:none;
  8542. background-color:transparent;
  8543. border-color:transparent;
  8544. }
  8545. #u16049_input.disabled {
  8546. position:absolute;
  8547. left:0px;
  8548. top:0px;
  8549. width:134px;
  8550. height:23px;
  8551. padding:2px 2px 2px 2px;
  8552. font-family:'ArialMT', 'Arial', sans-serif;
  8553. font-weight:400;
  8554. font-style:normal;
  8555. font-size:14px;
  8556. letter-spacing:normal;
  8557. color:#AAAAAA;
  8558. vertical-align:none;
  8559. text-align:left;
  8560. text-transform:none;
  8561. background-color:transparent;
  8562. border-color:transparent;
  8563. }
  8564. #u16049_div {
  8565. border-width:0px;
  8566. position:absolute;
  8567. left:0px;
  8568. top:0px;
  8569. width:134px;
  8570. height:23px;
  8571. background:inherit;
  8572. background-color:rgba(255, 255, 255, 1);
  8573. border-radius:0px;
  8574. filter:drop-shadow(none);
  8575. transition:none;
  8576. font-size:14px;
  8577. color:#AAAAAA;
  8578. }
  8579. #u16049 {
  8580. border-width:0px;
  8581. position:absolute;
  8582. left:652px;
  8583. top:147px;
  8584. width:134px;
  8585. height:23px;
  8586. display:flex;
  8587. transition:none;
  8588. transform-origin:50% 50%;
  8589. font-size:14px;
  8590. color:#AAAAAA;
  8591. }
  8592. #u16049 .text {
  8593. position:absolute;
  8594. align-self:flex-start;
  8595. padding:2px 2px 2px 2px;
  8596. box-sizing:border-box;
  8597. width:100%;
  8598. }
  8599. #u16049_div.disabled {
  8600. border-width:0px;
  8601. position:absolute;
  8602. left:0px;
  8603. top:0px;
  8604. width:134px;
  8605. height:23px;
  8606. background:inherit;
  8607. background-color:rgba(240, 240, 240, 1);
  8608. border-radius:0px;
  8609. filter:drop-shadow(none);
  8610. transition:none;
  8611. font-size:14px;
  8612. color:#AAAAAA;
  8613. }
  8614. #u16049.disabled {
  8615. }
  8616. .u16049_input_option {
  8617. font-size:14px;
  8618. }
  8619. #u16050 {
  8620. border-width:0px;
  8621. position:absolute;
  8622. left:0px;
  8623. top:0px;
  8624. width:0px;
  8625. height:0px;
  8626. }
  8627. #u16051_div {
  8628. border-width:0px;
  8629. position:absolute;
  8630. left:0px;
  8631. top:0px;
  8632. width:140px;
  8633. height:30px;
  8634. background:inherit;
  8635. background-color:rgba(255, 255, 255, 1);
  8636. box-sizing:border-box;
  8637. border-width:1px;
  8638. border-style:solid;
  8639. border-color:rgba(215, 215, 215, 1);
  8640. border-radius:4px;
  8641. filter:drop-shadow(none);
  8642. transition:none;
  8643. font-size:14px;
  8644. }
  8645. #u16051 {
  8646. border-width:0px;
  8647. position:absolute;
  8648. left:498px;
  8649. top:145px;
  8650. width:140px;
  8651. height:30px;
  8652. display:flex;
  8653. transition:none;
  8654. transform-origin:50% 50%;
  8655. font-size:14px;
  8656. }
  8657. #u16051 .text {
  8658. position:absolute;
  8659. align-self:center;
  8660. padding:2px 2px 2px 2px;
  8661. box-sizing:border-box;
  8662. width:100%;
  8663. }
  8664. #u16051_text {
  8665. border-width:0px;
  8666. word-wrap:break-word;
  8667. text-transform:none;
  8668. visibility:hidden;
  8669. }
  8670. #u16052_input {
  8671. position:absolute;
  8672. left:0px;
  8673. top:0px;
  8674. width:134px;
  8675. height:23px;
  8676. padding:2px 2px 2px 2px;
  8677. font-family:'ArialMT', 'Arial', sans-serif;
  8678. font-weight:400;
  8679. font-style:normal;
  8680. font-size:14px;
  8681. letter-spacing:normal;
  8682. color:#AAAAAA;
  8683. vertical-align:none;
  8684. text-align:left;
  8685. text-transform:none;
  8686. background-color:transparent;
  8687. border-color:transparent;
  8688. }
  8689. #u16052_input.disabled {
  8690. position:absolute;
  8691. left:0px;
  8692. top:0px;
  8693. width:134px;
  8694. height:23px;
  8695. padding:2px 2px 2px 2px;
  8696. font-family:'ArialMT', 'Arial', sans-serif;
  8697. font-weight:400;
  8698. font-style:normal;
  8699. font-size:14px;
  8700. letter-spacing:normal;
  8701. color:#AAAAAA;
  8702. vertical-align:none;
  8703. text-align:left;
  8704. text-transform:none;
  8705. background-color:transparent;
  8706. border-color:transparent;
  8707. }
  8708. #u16052_div {
  8709. border-width:0px;
  8710. position:absolute;
  8711. left:0px;
  8712. top:0px;
  8713. width:134px;
  8714. height:23px;
  8715. background:inherit;
  8716. background-color:rgba(255, 255, 255, 1);
  8717. border-radius:0px;
  8718. filter:drop-shadow(none);
  8719. transition:none;
  8720. font-size:14px;
  8721. color:#AAAAAA;
  8722. }
  8723. #u16052 {
  8724. border-width:0px;
  8725. position:absolute;
  8726. left:502px;
  8727. top:147px;
  8728. width:134px;
  8729. height:23px;
  8730. display:flex;
  8731. transition:none;
  8732. transform-origin:50% 50%;
  8733. font-size:14px;
  8734. color:#AAAAAA;
  8735. }
  8736. #u16052 .text {
  8737. position:absolute;
  8738. align-self:flex-start;
  8739. padding:2px 2px 2px 2px;
  8740. box-sizing:border-box;
  8741. width:100%;
  8742. }
  8743. #u16052_div.disabled {
  8744. border-width:0px;
  8745. position:absolute;
  8746. left:0px;
  8747. top:0px;
  8748. width:134px;
  8749. height:23px;
  8750. background:inherit;
  8751. background-color:rgba(240, 240, 240, 1);
  8752. border-radius:0px;
  8753. filter:drop-shadow(none);
  8754. transition:none;
  8755. font-size:14px;
  8756. color:#AAAAAA;
  8757. }
  8758. #u16052.disabled {
  8759. }
  8760. .u16052_input_option {
  8761. font-size:14px;
  8762. }
  8763. #u16053_div {
  8764. border-width:0px;
  8765. position:absolute;
  8766. left:0px;
  8767. top:0px;
  8768. width:115px;
  8769. height:30px;
  8770. background:inherit;
  8771. background-color:rgba(255, 255, 255, 1);
  8772. border-radius:4px;
  8773. filter:drop-shadow(none);
  8774. transition:none;
  8775. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8776. font-weight:400;
  8777. font-style:normal;
  8778. font-size:12px;
  8779. text-decoration:underline ;
  8780. color:#298FFF;
  8781. }
  8782. #u16053 {
  8783. border-width:0px;
  8784. position:absolute;
  8785. left:1446px;
  8786. top:232px;
  8787. width:115px;
  8788. height:30px;
  8789. display:flex;
  8790. transition:none;
  8791. transform-origin:50% 50%;
  8792. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8793. font-weight:400;
  8794. font-style:normal;
  8795. font-size:12px;
  8796. text-decoration:underline ;
  8797. color:#298FFF;
  8798. }
  8799. #u16053 .text {
  8800. position:absolute;
  8801. align-self:center;
  8802. padding:5px 15px 5px 15px;
  8803. box-sizing:border-box;
  8804. width:100%;
  8805. }
  8806. #u16053_text {
  8807. border-width:0px;
  8808. white-space:nowrap;
  8809. text-transform:none;
  8810. }
  8811. #u16054 {
  8812. border-width:0px;
  8813. position:absolute;
  8814. left:0px;
  8815. top:0px;
  8816. width:0px;
  8817. height:0px;
  8818. }
  8819. #u16055_div {
  8820. border-width:0px;
  8821. position:absolute;
  8822. left:0px;
  8823. top:0px;
  8824. width:140px;
  8825. height:30px;
  8826. background:inherit;
  8827. background-color:rgba(255, 255, 255, 1);
  8828. box-sizing:border-box;
  8829. border-width:1px;
  8830. border-style:solid;
  8831. border-color:rgba(215, 215, 215, 1);
  8832. border-radius:4px;
  8833. filter:drop-shadow(none);
  8834. transition:none;
  8835. font-size:14px;
  8836. }
  8837. #u16055 {
  8838. border-width:0px;
  8839. position:absolute;
  8840. left:1400px;
  8841. top:143px;
  8842. width:140px;
  8843. height:30px;
  8844. display:flex;
  8845. transition:none;
  8846. transform-origin:50% 50%;
  8847. font-size:14px;
  8848. }
  8849. #u16055 .text {
  8850. position:absolute;
  8851. align-self:center;
  8852. padding:2px 2px 2px 2px;
  8853. box-sizing:border-box;
  8854. width:100%;
  8855. }
  8856. #u16055_text {
  8857. border-width:0px;
  8858. word-wrap:break-word;
  8859. text-transform:none;
  8860. visibility:hidden;
  8861. }
  8862. #u16056_input {
  8863. position:absolute;
  8864. left:0px;
  8865. top:0px;
  8866. width:134px;
  8867. height:23px;
  8868. padding:2px 2px 2px 2px;
  8869. font-family:'ArialMT', 'Arial', sans-serif;
  8870. font-weight:400;
  8871. font-style:normal;
  8872. font-size:14px;
  8873. letter-spacing:normal;
  8874. color:#AAAAAA;
  8875. vertical-align:none;
  8876. text-align:left;
  8877. text-transform:none;
  8878. background-color:transparent;
  8879. border-color:transparent;
  8880. }
  8881. #u16056_input.disabled {
  8882. position:absolute;
  8883. left:0px;
  8884. top:0px;
  8885. width:134px;
  8886. height:23px;
  8887. padding:2px 2px 2px 2px;
  8888. font-family:'ArialMT', 'Arial', sans-serif;
  8889. font-weight:400;
  8890. font-style:normal;
  8891. font-size:14px;
  8892. letter-spacing:normal;
  8893. color:#AAAAAA;
  8894. vertical-align:none;
  8895. text-align:left;
  8896. text-transform:none;
  8897. background-color:transparent;
  8898. border-color:transparent;
  8899. }
  8900. #u16056_div {
  8901. border-width:0px;
  8902. position:absolute;
  8903. left:0px;
  8904. top:0px;
  8905. width:134px;
  8906. height:23px;
  8907. background:inherit;
  8908. background-color:rgba(255, 255, 255, 1);
  8909. border-radius:0px;
  8910. filter:drop-shadow(none);
  8911. transition:none;
  8912. font-size:14px;
  8913. color:#AAAAAA;
  8914. }
  8915. #u16056 {
  8916. border-width:0px;
  8917. position:absolute;
  8918. left:1404px;
  8919. top:145px;
  8920. width:134px;
  8921. height:23px;
  8922. display:flex;
  8923. transition:none;
  8924. transform-origin:50% 50%;
  8925. font-size:14px;
  8926. color:#AAAAAA;
  8927. }
  8928. #u16056 .text {
  8929. position:absolute;
  8930. align-self:flex-start;
  8931. padding:2px 2px 2px 2px;
  8932. box-sizing:border-box;
  8933. width:100%;
  8934. }
  8935. #u16056_div.disabled {
  8936. border-width:0px;
  8937. position:absolute;
  8938. left:0px;
  8939. top:0px;
  8940. width:134px;
  8941. height:23px;
  8942. background:inherit;
  8943. background-color:rgba(240, 240, 240, 1);
  8944. border-radius:0px;
  8945. filter:drop-shadow(none);
  8946. transition:none;
  8947. font-size:14px;
  8948. color:#AAAAAA;
  8949. }
  8950. #u16056.disabled {
  8951. }
  8952. .u16056_input_option {
  8953. font-size:14px;
  8954. }
  8955. #u16057 {
  8956. border-width:0px;
  8957. position:absolute;
  8958. left:0px;
  8959. top:0px;
  8960. width:0px;
  8961. height:0px;
  8962. }
  8963. #u16058_div {
  8964. border-width:0px;
  8965. position:absolute;
  8966. left:0px;
  8967. top:0px;
  8968. width:1000px;
  8969. height:1196px;
  8970. background:inherit;
  8971. background-color:rgba(255, 255, 255, 1);
  8972. box-sizing:border-box;
  8973. border-width:1px;
  8974. border-style:solid;
  8975. border-color:rgba(215, 215, 215, 1);
  8976. border-radius:0px;
  8977. filter:drop-shadow(none);
  8978. transition:none;
  8979. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8980. font-weight:400;
  8981. font-style:normal;
  8982. font-size:14px;
  8983. color:#AAAAAA;
  8984. text-align:center;
  8985. line-height:30px;
  8986. }
  8987. #u16058 {
  8988. border-width:0px;
  8989. position:absolute;
  8990. left:1620px;
  8991. top:47px;
  8992. width:1000px;
  8993. height:1196px;
  8994. display:flex;
  8995. transition:none;
  8996. transform-origin:50% 50%;
  8997. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8998. font-weight:400;
  8999. font-style:normal;
  9000. font-size:14px;
  9001. color:#AAAAAA;
  9002. text-align:center;
  9003. line-height:30px;
  9004. }
  9005. #u16058 .text {
  9006. position:absolute;
  9007. align-self:center;
  9008. padding:5px 10px 5px 10px;
  9009. box-sizing:border-box;
  9010. width:100%;
  9011. }
  9012. #u16058_text {
  9013. border-width:0px;
  9014. word-wrap:break-word;
  9015. text-transform:none;
  9016. visibility:hidden;
  9017. }
  9018. #u16059_div {
  9019. border-width:0px;
  9020. position:absolute;
  9021. left:0px;
  9022. top:0px;
  9023. width:137px;
  9024. height:35px;
  9025. background:inherit;
  9026. background-color:rgba(255, 255, 255, 0);
  9027. border-top:0px;
  9028. border-right:0px;
  9029. border-bottom:0px;
  9030. border-radius:0px;
  9031. border-top-left-radius:0px;
  9032. border-bottom-left-radius:0px;
  9033. filter:drop-shadow(none);
  9034. transition:none;
  9035. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9036. font-weight:500;
  9037. font-style:normal;
  9038. font-size:18px;
  9039. }
  9040. #u16059 {
  9041. border-width:0px;
  9042. position:absolute;
  9043. left:1640px;
  9044. top:65px;
  9045. width:137px;
  9046. height:35px;
  9047. display:flex;
  9048. transition:none;
  9049. transform-origin:50% 50%;
  9050. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9051. font-weight:500;
  9052. font-style:normal;
  9053. font-size:18px;
  9054. }
  9055. #u16059 .text {
  9056. position:absolute;
  9057. align-self:center;
  9058. padding:5px 10px 5px 0px;
  9059. box-sizing:border-box;
  9060. width:100%;
  9061. }
  9062. #u16059_text {
  9063. border-width:0px;
  9064. white-space:nowrap;
  9065. text-transform:none;
  9066. }
  9067. #u16060 {
  9068. border-width:0px;
  9069. position:absolute;
  9070. left:0px;
  9071. top:0px;
  9072. width:0px;
  9073. height:0px;
  9074. }
  9075. #u16061_div {
  9076. border-width:0px;
  9077. position:absolute;
  9078. left:0px;
  9079. top:0px;
  9080. width:40px;
  9081. height:40px;
  9082. background:inherit;
  9083. background-color:rgba(255, 255, 255, 0);
  9084. border-top:0px;
  9085. border-right:0px;
  9086. border-bottom:0px;
  9087. border-radius:0px;
  9088. border-top-left-radius:0px;
  9089. border-bottom-left-radius:0px;
  9090. filter:drop-shadow(none);
  9091. transition:none;
  9092. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9093. font-weight:500;
  9094. font-style:normal;
  9095. font-size:18px;
  9096. text-align:center;
  9097. }
  9098. #u16061 {
  9099. border-width:0px;
  9100. position:absolute;
  9101. left:2580px;
  9102. top:47px;
  9103. width:40px;
  9104. height:40px;
  9105. display:flex;
  9106. transition:none;
  9107. transform-origin:50% 50%;
  9108. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9109. font-weight:500;
  9110. font-style:normal;
  9111. font-size:18px;
  9112. text-align:center;
  9113. }
  9114. #u16061 .text {
  9115. position:absolute;
  9116. align-self:center;
  9117. padding:5px 10px 5px 0px;
  9118. box-sizing:border-box;
  9119. width:100%;
  9120. }
  9121. #u16061_text {
  9122. border-width:0px;
  9123. word-wrap:break-word;
  9124. text-transform:none;
  9125. }
  9126. #u16062 {
  9127. border-width:0px;
  9128. position:absolute;
  9129. left:2568px;
  9130. top:63px;
  9131. width:13px;
  9132. height:13px;
  9133. display:flex;
  9134. transition:none;
  9135. }
  9136. #u16062 .text {
  9137. position:absolute;
  9138. align-self:center;
  9139. padding:2px 2px 2px 2px;
  9140. box-sizing:border-box;
  9141. width:100%;
  9142. }
  9143. #u16062_img {
  9144. border-width:0px;
  9145. position:absolute;
  9146. left:0px;
  9147. top:0px;
  9148. width:13px;
  9149. height:13px;
  9150. }
  9151. #u16062_text {
  9152. border-width:0px;
  9153. word-wrap:break-word;
  9154. text-transform:none;
  9155. visibility:hidden;
  9156. }
  9157. #u16063 {
  9158. border-width:0px;
  9159. position:absolute;
  9160. left:0px;
  9161. top:0px;
  9162. width:0px;
  9163. height:0px;
  9164. }
  9165. #u16064_div {
  9166. border-width:0px;
  9167. position:absolute;
  9168. left:0px;
  9169. top:0px;
  9170. width:1000px;
  9171. height:50px;
  9172. background:inherit;
  9173. background-color:rgba(255, 255, 255, 1);
  9174. box-sizing:border-box;
  9175. border-width:1px;
  9176. border-style:solid;
  9177. border-color:rgba(215, 215, 215, 1);
  9178. border-radius:0px;
  9179. filter:drop-shadow(none);
  9180. transition:none;
  9181. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9182. font-weight:400;
  9183. font-style:normal;
  9184. font-size:14px;
  9185. color:#AAAAAA;
  9186. text-align:center;
  9187. line-height:30px;
  9188. }
  9189. #u16064 {
  9190. border-width:0px;
  9191. position:absolute;
  9192. left:1620px;
  9193. top:1193px;
  9194. width:1000px;
  9195. height:50px;
  9196. display:flex;
  9197. transition:none;
  9198. transform-origin:50% 50%;
  9199. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9200. font-weight:400;
  9201. font-style:normal;
  9202. font-size:14px;
  9203. color:#AAAAAA;
  9204. text-align:center;
  9205. line-height:30px;
  9206. }
  9207. #u16064 .text {
  9208. position:absolute;
  9209. align-self:center;
  9210. padding:5px 10px 5px 10px;
  9211. box-sizing:border-box;
  9212. width:100%;
  9213. }
  9214. #u16064_text {
  9215. border-width:0px;
  9216. word-wrap:break-word;
  9217. text-transform:none;
  9218. visibility:hidden;
  9219. }
  9220. #u16065_div {
  9221. border-width:0px;
  9222. position:absolute;
  9223. left:0px;
  9224. top:0px;
  9225. width:80px;
  9226. height:30px;
  9227. background:inherit;
  9228. background-color:rgba(255, 255, 255, 1);
  9229. box-sizing:border-box;
  9230. border-width:1px;
  9231. border-style:solid;
  9232. border-color:rgba(121, 121, 121, 1);
  9233. border-radius:4px;
  9234. filter:drop-shadow(none);
  9235. transition:none;
  9236. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9237. font-weight:400;
  9238. font-style:normal;
  9239. font-size:14px;
  9240. }
  9241. #u16065 {
  9242. border-width:0px;
  9243. position:absolute;
  9244. left:2520px;
  9245. top:1203px;
  9246. width:80px;
  9247. height:30px;
  9248. display:flex;
  9249. transition:none;
  9250. transform-origin:50% 50%;
  9251. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9252. font-weight:400;
  9253. font-style:normal;
  9254. font-size:14px;
  9255. }
  9256. #u16065 .text {
  9257. position:absolute;
  9258. align-self:center;
  9259. padding:2px 2px 2px 2px;
  9260. box-sizing:border-box;
  9261. width:100%;
  9262. }
  9263. #u16065_text {
  9264. border-width:0px;
  9265. word-wrap:break-word;
  9266. text-transform:none;
  9267. }
  9268. #u16066 {
  9269. border-width:0px;
  9270. position:absolute;
  9271. left:1640px;
  9272. top:170px;
  9273. width:960px;
  9274. height:213px;
  9275. }
  9276. #u16067 {
  9277. border-width:0px;
  9278. position:absolute;
  9279. left:0px;
  9280. top:0px;
  9281. width:59px;
  9282. height:30px;
  9283. display:flex;
  9284. transition:none;
  9285. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9286. font-weight:400;
  9287. font-style:normal;
  9288. color:#FFFFFF;
  9289. }
  9290. #u16067 .text {
  9291. position:absolute;
  9292. align-self:center;
  9293. padding:2px 2px 2px 2px;
  9294. box-sizing:border-box;
  9295. width:100%;
  9296. }
  9297. #u16067_img {
  9298. border-width:0px;
  9299. position:absolute;
  9300. left:0px;
  9301. top:0px;
  9302. width:59px;
  9303. height:30px;
  9304. }
  9305. #u16067_text {
  9306. border-width:0px;
  9307. word-wrap:break-word;
  9308. text-transform:none;
  9309. }
  9310. #u16068 {
  9311. border-width:0px;
  9312. position:absolute;
  9313. left:59px;
  9314. top:0px;
  9315. width:113px;
  9316. height:30px;
  9317. display:flex;
  9318. transition:none;
  9319. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9320. font-weight:400;
  9321. font-style:normal;
  9322. color:#FFFFFF;
  9323. }
  9324. #u16068 .text {
  9325. position:absolute;
  9326. align-self:center;
  9327. padding:2px 2px 2px 2px;
  9328. box-sizing:border-box;
  9329. width:100%;
  9330. }
  9331. #u16068_img {
  9332. border-width:0px;
  9333. position:absolute;
  9334. left:0px;
  9335. top:0px;
  9336. width:113px;
  9337. height:30px;
  9338. }
  9339. #u16068_text {
  9340. border-width:0px;
  9341. word-wrap:break-word;
  9342. text-transform:none;
  9343. }
  9344. #u16069 {
  9345. border-width:0px;
  9346. position:absolute;
  9347. left:171px;
  9348. top:0px;
  9349. width:113px;
  9350. height:30px;
  9351. display:flex;
  9352. transition:none;
  9353. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9354. font-weight:400;
  9355. font-style:normal;
  9356. color:#FFFFFF;
  9357. }
  9358. #u16069 .text {
  9359. position:absolute;
  9360. align-self:center;
  9361. padding:2px 2px 2px 2px;
  9362. box-sizing:border-box;
  9363. width:100%;
  9364. }
  9365. #u16069_img {
  9366. border-width:0px;
  9367. position:absolute;
  9368. left:0px;
  9369. top:0px;
  9370. width:113px;
  9371. height:30px;
  9372. }
  9373. #u16069_text {
  9374. border-width:0px;
  9375. word-wrap:break-word;
  9376. text-transform:none;
  9377. }
  9378. #u16070 {
  9379. border-width:0px;
  9380. position:absolute;
  9381. left:284px;
  9382. top:0px;
  9383. width:113px;
  9384. height:30px;
  9385. display:flex;
  9386. transition:none;
  9387. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9388. font-weight:400;
  9389. font-style:normal;
  9390. color:#FFFFFF;
  9391. }
  9392. #u16070 .text {
  9393. position:absolute;
  9394. align-self:center;
  9395. padding:2px 2px 2px 2px;
  9396. box-sizing:border-box;
  9397. width:100%;
  9398. }
  9399. #u16070_img {
  9400. border-width:0px;
  9401. position:absolute;
  9402. left:0px;
  9403. top:0px;
  9404. width:113px;
  9405. height:30px;
  9406. }
  9407. #u16070_text {
  9408. border-width:0px;
  9409. word-wrap:break-word;
  9410. text-transform:none;
  9411. }
  9412. #u16071 {
  9413. border-width:0px;
  9414. position:absolute;
  9415. left:396px;
  9416. top:0px;
  9417. width:113px;
  9418. height:30px;
  9419. display:flex;
  9420. transition:none;
  9421. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9422. font-weight:400;
  9423. font-style:normal;
  9424. color:#FFFFFF;
  9425. }
  9426. #u16071 .text {
  9427. position:absolute;
  9428. align-self:center;
  9429. padding:2px 2px 2px 2px;
  9430. box-sizing:border-box;
  9431. width:100%;
  9432. }
  9433. #u16071_img {
  9434. border-width:0px;
  9435. position:absolute;
  9436. left:0px;
  9437. top:0px;
  9438. width:113px;
  9439. height:30px;
  9440. }
  9441. #u16071_text {
  9442. border-width:0px;
  9443. word-wrap:break-word;
  9444. text-transform:none;
  9445. }
  9446. #u16072 {
  9447. border-width:0px;
  9448. position:absolute;
  9449. left:509px;
  9450. top:0px;
  9451. width:113px;
  9452. height:30px;
  9453. display:flex;
  9454. transition:none;
  9455. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9456. font-weight:400;
  9457. font-style:normal;
  9458. color:#FFFFFF;
  9459. }
  9460. #u16072 .text {
  9461. position:absolute;
  9462. align-self:center;
  9463. padding:2px 2px 2px 2px;
  9464. box-sizing:border-box;
  9465. width:100%;
  9466. }
  9467. #u16072_img {
  9468. border-width:0px;
  9469. position:absolute;
  9470. left:0px;
  9471. top:0px;
  9472. width:113px;
  9473. height:30px;
  9474. }
  9475. #u16072_text {
  9476. border-width:0px;
  9477. word-wrap:break-word;
  9478. text-transform:none;
  9479. }
  9480. #u16073 {
  9481. border-width:0px;
  9482. position:absolute;
  9483. left:622px;
  9484. top:0px;
  9485. width:113px;
  9486. height:30px;
  9487. display:flex;
  9488. transition:none;
  9489. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9490. font-weight:400;
  9491. font-style:normal;
  9492. color:#FFFFFF;
  9493. }
  9494. #u16073 .text {
  9495. position:absolute;
  9496. align-self:center;
  9497. padding:2px 2px 2px 2px;
  9498. box-sizing:border-box;
  9499. width:100%;
  9500. }
  9501. #u16073_img {
  9502. border-width:0px;
  9503. position:absolute;
  9504. left:0px;
  9505. top:0px;
  9506. width:113px;
  9507. height:30px;
  9508. }
  9509. #u16073_text {
  9510. border-width:0px;
  9511. word-wrap:break-word;
  9512. text-transform:none;
  9513. }
  9514. #u16074 {
  9515. border-width:0px;
  9516. position:absolute;
  9517. left:734px;
  9518. top:0px;
  9519. width:113px;
  9520. height:30px;
  9521. display:flex;
  9522. transition:none;
  9523. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9524. font-weight:400;
  9525. font-style:normal;
  9526. color:#FFFFFF;
  9527. }
  9528. #u16074 .text {
  9529. position:absolute;
  9530. align-self:center;
  9531. padding:2px 2px 2px 2px;
  9532. box-sizing:border-box;
  9533. width:100%;
  9534. }
  9535. #u16074_img {
  9536. border-width:0px;
  9537. position:absolute;
  9538. left:0px;
  9539. top:0px;
  9540. width:113px;
  9541. height:30px;
  9542. }
  9543. #u16074_text {
  9544. border-width:0px;
  9545. word-wrap:break-word;
  9546. text-transform:none;
  9547. }
  9548. #u16075 {
  9549. border-width:0px;
  9550. position:absolute;
  9551. left:847px;
  9552. top:0px;
  9553. width:113px;
  9554. height:30px;
  9555. display:flex;
  9556. transition:none;
  9557. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9558. font-weight:400;
  9559. font-style:normal;
  9560. color:#FFFFFF;
  9561. }
  9562. #u16075 .text {
  9563. position:absolute;
  9564. align-self:center;
  9565. padding:2px 2px 2px 2px;
  9566. box-sizing:border-box;
  9567. width:100%;
  9568. }
  9569. #u16075_img {
  9570. border-width:0px;
  9571. position:absolute;
  9572. left:0px;
  9573. top:0px;
  9574. width:113px;
  9575. height:30px;
  9576. }
  9577. #u16075_text {
  9578. border-width:0px;
  9579. word-wrap:break-word;
  9580. text-transform:none;
  9581. }
  9582. #u16076 {
  9583. border-width:0px;
  9584. position:absolute;
  9585. left:0px;
  9586. top:30px;
  9587. width:59px;
  9588. height:40px;
  9589. display:flex;
  9590. transition:none;
  9591. }
  9592. #u16076 .text {
  9593. position:absolute;
  9594. align-self:center;
  9595. padding:2px 2px 2px 2px;
  9596. box-sizing:border-box;
  9597. width:100%;
  9598. }
  9599. #u16076_img {
  9600. border-width:0px;
  9601. position:absolute;
  9602. left:0px;
  9603. top:0px;
  9604. width:59px;
  9605. height:40px;
  9606. }
  9607. #u16076_text {
  9608. border-width:0px;
  9609. word-wrap:break-word;
  9610. text-transform:none;
  9611. }
  9612. #u16077 {
  9613. border-width:0px;
  9614. position:absolute;
  9615. left:59px;
  9616. top:30px;
  9617. width:113px;
  9618. height:40px;
  9619. display:flex;
  9620. transition:none;
  9621. }
  9622. #u16077 .text {
  9623. position:absolute;
  9624. align-self:center;
  9625. padding:2px 2px 2px 2px;
  9626. box-sizing:border-box;
  9627. width:100%;
  9628. }
  9629. #u16077_img {
  9630. border-width:0px;
  9631. position:absolute;
  9632. left:0px;
  9633. top:0px;
  9634. width:113px;
  9635. height:40px;
  9636. }
  9637. #u16077_text {
  9638. border-width:0px;
  9639. word-wrap:break-word;
  9640. text-transform:none;
  9641. }
  9642. #u16078 {
  9643. border-width:0px;
  9644. position:absolute;
  9645. left:171px;
  9646. top:30px;
  9647. width:113px;
  9648. height:40px;
  9649. display:flex;
  9650. transition:none;
  9651. }
  9652. #u16078 .text {
  9653. position:absolute;
  9654. align-self:center;
  9655. padding:2px 2px 2px 2px;
  9656. box-sizing:border-box;
  9657. width:100%;
  9658. }
  9659. #u16078_img {
  9660. border-width:0px;
  9661. position:absolute;
  9662. left:0px;
  9663. top:0px;
  9664. width:113px;
  9665. height:40px;
  9666. }
  9667. #u16078_text {
  9668. border-width:0px;
  9669. word-wrap:break-word;
  9670. text-transform:none;
  9671. }
  9672. #u16079 {
  9673. border-width:0px;
  9674. position:absolute;
  9675. left:284px;
  9676. top:30px;
  9677. width:113px;
  9678. height:40px;
  9679. display:flex;
  9680. transition:none;
  9681. }
  9682. #u16079 .text {
  9683. position:absolute;
  9684. align-self:center;
  9685. padding:2px 2px 2px 2px;
  9686. box-sizing:border-box;
  9687. width:100%;
  9688. }
  9689. #u16079_img {
  9690. border-width:0px;
  9691. position:absolute;
  9692. left:0px;
  9693. top:0px;
  9694. width:113px;
  9695. height:40px;
  9696. }
  9697. #u16079_text {
  9698. border-width:0px;
  9699. word-wrap:break-word;
  9700. text-transform:none;
  9701. }
  9702. #u16080 {
  9703. border-width:0px;
  9704. position:absolute;
  9705. left:396px;
  9706. top:30px;
  9707. width:113px;
  9708. height:40px;
  9709. display:flex;
  9710. transition:none;
  9711. }
  9712. #u16080 .text {
  9713. position:absolute;
  9714. align-self:center;
  9715. padding:2px 2px 2px 2px;
  9716. box-sizing:border-box;
  9717. width:100%;
  9718. }
  9719. #u16080_img {
  9720. border-width:0px;
  9721. position:absolute;
  9722. left:0px;
  9723. top:0px;
  9724. width:113px;
  9725. height:40px;
  9726. }
  9727. #u16080_text {
  9728. border-width:0px;
  9729. word-wrap:break-word;
  9730. text-transform:none;
  9731. visibility:hidden;
  9732. }
  9733. #u16081 {
  9734. border-width:0px;
  9735. position:absolute;
  9736. left:509px;
  9737. top:30px;
  9738. width:113px;
  9739. height:40px;
  9740. display:flex;
  9741. transition:none;
  9742. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9743. font-weight:400;
  9744. font-style:normal;
  9745. }
  9746. #u16081 .text {
  9747. position:absolute;
  9748. align-self:center;
  9749. padding:2px 2px 2px 2px;
  9750. box-sizing:border-box;
  9751. width:100%;
  9752. }
  9753. #u16081_img {
  9754. border-width:0px;
  9755. position:absolute;
  9756. left:0px;
  9757. top:0px;
  9758. width:113px;
  9759. height:40px;
  9760. }
  9761. #u16081_text {
  9762. border-width:0px;
  9763. word-wrap:break-word;
  9764. text-transform:none;
  9765. }
  9766. #u16082 {
  9767. border-width:0px;
  9768. position:absolute;
  9769. left:622px;
  9770. top:30px;
  9771. width:113px;
  9772. height:40px;
  9773. display:flex;
  9774. transition:none;
  9775. }
  9776. #u16082 .text {
  9777. position:absolute;
  9778. align-self:center;
  9779. padding:2px 2px 2px 2px;
  9780. box-sizing:border-box;
  9781. width:100%;
  9782. }
  9783. #u16082_img {
  9784. border-width:0px;
  9785. position:absolute;
  9786. left:0px;
  9787. top:0px;
  9788. width:113px;
  9789. height:40px;
  9790. }
  9791. #u16082_text {
  9792. border-width:0px;
  9793. word-wrap:break-word;
  9794. text-transform:none;
  9795. }
  9796. #u16083 {
  9797. border-width:0px;
  9798. position:absolute;
  9799. left:734px;
  9800. top:30px;
  9801. width:113px;
  9802. height:40px;
  9803. display:flex;
  9804. transition:none;
  9805. }
  9806. #u16083 .text {
  9807. position:absolute;
  9808. align-self:center;
  9809. padding:2px 2px 2px 2px;
  9810. box-sizing:border-box;
  9811. width:100%;
  9812. }
  9813. #u16083_img {
  9814. border-width:0px;
  9815. position:absolute;
  9816. left:0px;
  9817. top:0px;
  9818. width:113px;
  9819. height:40px;
  9820. }
  9821. #u16083_text {
  9822. border-width:0px;
  9823. word-wrap:break-word;
  9824. text-transform:none;
  9825. }
  9826. #u16084 {
  9827. border-width:0px;
  9828. position:absolute;
  9829. left:847px;
  9830. top:30px;
  9831. width:113px;
  9832. height:40px;
  9833. display:flex;
  9834. transition:none;
  9835. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9836. font-weight:400;
  9837. font-style:normal;
  9838. color:#298FFF;
  9839. }
  9840. #u16084 .text {
  9841. position:absolute;
  9842. align-self:center;
  9843. padding:2px 2px 2px 2px;
  9844. box-sizing:border-box;
  9845. width:100%;
  9846. }
  9847. #u16084_img {
  9848. border-width:0px;
  9849. position:absolute;
  9850. left:0px;
  9851. top:0px;
  9852. width:113px;
  9853. height:40px;
  9854. }
  9855. #u16084_text {
  9856. border-width:0px;
  9857. word-wrap:break-word;
  9858. text-transform:none;
  9859. }
  9860. #u16085 {
  9861. border-width:0px;
  9862. position:absolute;
  9863. left:0px;
  9864. top:70px;
  9865. width:59px;
  9866. height:30px;
  9867. display:flex;
  9868. transition:none;
  9869. }
  9870. #u16085 .text {
  9871. position:absolute;
  9872. align-self:center;
  9873. padding:2px 2px 2px 2px;
  9874. box-sizing:border-box;
  9875. width:100%;
  9876. }
  9877. #u16085_img {
  9878. border-width:0px;
  9879. position:absolute;
  9880. left:0px;
  9881. top:0px;
  9882. width:59px;
  9883. height:30px;
  9884. }
  9885. #u16085_text {
  9886. border-width:0px;
  9887. word-wrap:break-word;
  9888. text-transform:none;
  9889. }
  9890. #u16086 {
  9891. border-width:0px;
  9892. position:absolute;
  9893. left:59px;
  9894. top:70px;
  9895. width:113px;
  9896. height:30px;
  9897. display:flex;
  9898. transition:none;
  9899. }
  9900. #u16086 .text {
  9901. position:absolute;
  9902. align-self:center;
  9903. padding:2px 2px 2px 2px;
  9904. box-sizing:border-box;
  9905. width:100%;
  9906. }
  9907. #u16086_img {
  9908. border-width:0px;
  9909. position:absolute;
  9910. left:0px;
  9911. top:0px;
  9912. width:113px;
  9913. height:30px;
  9914. }
  9915. #u16086_text {
  9916. border-width:0px;
  9917. word-wrap:break-word;
  9918. text-transform:none;
  9919. visibility:hidden;
  9920. }
  9921. #u16087 {
  9922. border-width:0px;
  9923. position:absolute;
  9924. left:171px;
  9925. top:70px;
  9926. width:113px;
  9927. height:30px;
  9928. display:flex;
  9929. transition:none;
  9930. }
  9931. #u16087 .text {
  9932. position:absolute;
  9933. align-self:center;
  9934. padding:2px 2px 2px 2px;
  9935. box-sizing:border-box;
  9936. width:100%;
  9937. }
  9938. #u16087_img {
  9939. border-width:0px;
  9940. position:absolute;
  9941. left:0px;
  9942. top:0px;
  9943. width:113px;
  9944. height:30px;
  9945. }
  9946. #u16087_text {
  9947. border-width:0px;
  9948. word-wrap:break-word;
  9949. text-transform:none;
  9950. visibility:hidden;
  9951. }
  9952. #u16088 {
  9953. border-width:0px;
  9954. position:absolute;
  9955. left:284px;
  9956. top:70px;
  9957. width:113px;
  9958. height:30px;
  9959. display:flex;
  9960. transition:none;
  9961. }
  9962. #u16088 .text {
  9963. position:absolute;
  9964. align-self:center;
  9965. padding:2px 2px 2px 2px;
  9966. box-sizing:border-box;
  9967. width:100%;
  9968. }
  9969. #u16088_img {
  9970. border-width:0px;
  9971. position:absolute;
  9972. left:0px;
  9973. top:0px;
  9974. width:113px;
  9975. height:30px;
  9976. }
  9977. #u16088_text {
  9978. border-width:0px;
  9979. word-wrap:break-word;
  9980. text-transform:none;
  9981. visibility:hidden;
  9982. }
  9983. #u16089 {
  9984. border-width:0px;
  9985. position:absolute;
  9986. left:396px;
  9987. top:70px;
  9988. width:113px;
  9989. height:30px;
  9990. display:flex;
  9991. transition:none;
  9992. }
  9993. #u16089 .text {
  9994. position:absolute;
  9995. align-self:center;
  9996. padding:2px 2px 2px 2px;
  9997. box-sizing:border-box;
  9998. width:100%;
  9999. }
  10000. #u16089_img {
  10001. border-width:0px;
  10002. position:absolute;
  10003. left:0px;
  10004. top:0px;
  10005. width:113px;
  10006. height:30px;
  10007. }
  10008. #u16089_text {
  10009. border-width:0px;
  10010. word-wrap:break-word;
  10011. text-transform:none;
  10012. visibility:hidden;
  10013. }
  10014. #u16090 {
  10015. border-width:0px;
  10016. position:absolute;
  10017. left:509px;
  10018. top:70px;
  10019. width:113px;
  10020. height:30px;
  10021. display:flex;
  10022. transition:none;
  10023. }
  10024. #u16090 .text {
  10025. position:absolute;
  10026. align-self:center;
  10027. padding:2px 2px 2px 2px;
  10028. box-sizing:border-box;
  10029. width:100%;
  10030. }
  10031. #u16090_img {
  10032. border-width:0px;
  10033. position:absolute;
  10034. left:0px;
  10035. top:0px;
  10036. width:113px;
  10037. height:30px;
  10038. }
  10039. #u16090_text {
  10040. border-width:0px;
  10041. word-wrap:break-word;
  10042. text-transform:none;
  10043. visibility:hidden;
  10044. }
  10045. #u16091 {
  10046. border-width:0px;
  10047. position:absolute;
  10048. left:622px;
  10049. top:70px;
  10050. width:113px;
  10051. height:30px;
  10052. display:flex;
  10053. transition:none;
  10054. }
  10055. #u16091 .text {
  10056. position:absolute;
  10057. align-self:center;
  10058. padding:2px 2px 2px 2px;
  10059. box-sizing:border-box;
  10060. width:100%;
  10061. }
  10062. #u16091_img {
  10063. border-width:0px;
  10064. position:absolute;
  10065. left:0px;
  10066. top:0px;
  10067. width:113px;
  10068. height:30px;
  10069. }
  10070. #u16091_text {
  10071. border-width:0px;
  10072. word-wrap:break-word;
  10073. text-transform:none;
  10074. visibility:hidden;
  10075. }
  10076. #u16092 {
  10077. border-width:0px;
  10078. position:absolute;
  10079. left:734px;
  10080. top:70px;
  10081. width:113px;
  10082. height:30px;
  10083. display:flex;
  10084. transition:none;
  10085. }
  10086. #u16092 .text {
  10087. position:absolute;
  10088. align-self:center;
  10089. padding:2px 2px 2px 2px;
  10090. box-sizing:border-box;
  10091. width:100%;
  10092. }
  10093. #u16092_img {
  10094. border-width:0px;
  10095. position:absolute;
  10096. left:0px;
  10097. top:0px;
  10098. width:113px;
  10099. height:30px;
  10100. }
  10101. #u16092_text {
  10102. border-width:0px;
  10103. word-wrap:break-word;
  10104. text-transform:none;
  10105. visibility:hidden;
  10106. }
  10107. #u16093 {
  10108. border-width:0px;
  10109. position:absolute;
  10110. left:847px;
  10111. top:70px;
  10112. width:113px;
  10113. height:30px;
  10114. display:flex;
  10115. transition:none;
  10116. }
  10117. #u16093 .text {
  10118. position:absolute;
  10119. align-self:center;
  10120. padding:2px 2px 2px 2px;
  10121. box-sizing:border-box;
  10122. width:100%;
  10123. }
  10124. #u16093_img {
  10125. border-width:0px;
  10126. position:absolute;
  10127. left:0px;
  10128. top:0px;
  10129. width:113px;
  10130. height:30px;
  10131. }
  10132. #u16093_text {
  10133. border-width:0px;
  10134. word-wrap:break-word;
  10135. text-transform:none;
  10136. visibility:hidden;
  10137. }
  10138. #u16094 {
  10139. border-width:0px;
  10140. position:absolute;
  10141. left:0px;
  10142. top:100px;
  10143. width:59px;
  10144. height:30px;
  10145. display:flex;
  10146. transition:none;
  10147. }
  10148. #u16094 .text {
  10149. position:absolute;
  10150. align-self:center;
  10151. padding:2px 2px 2px 2px;
  10152. box-sizing:border-box;
  10153. width:100%;
  10154. }
  10155. #u16094_img {
  10156. border-width:0px;
  10157. position:absolute;
  10158. left:0px;
  10159. top:0px;
  10160. width:59px;
  10161. height:30px;
  10162. }
  10163. #u16094_text {
  10164. border-width:0px;
  10165. word-wrap:break-word;
  10166. text-transform:none;
  10167. }
  10168. #u16095 {
  10169. border-width:0px;
  10170. position:absolute;
  10171. left:59px;
  10172. top:100px;
  10173. width:113px;
  10174. height:30px;
  10175. display:flex;
  10176. transition:none;
  10177. }
  10178. #u16095 .text {
  10179. position:absolute;
  10180. align-self:center;
  10181. padding:2px 2px 2px 2px;
  10182. box-sizing:border-box;
  10183. width:100%;
  10184. }
  10185. #u16095_img {
  10186. border-width:0px;
  10187. position:absolute;
  10188. left:0px;
  10189. top:0px;
  10190. width:113px;
  10191. height:30px;
  10192. }
  10193. #u16095_text {
  10194. border-width:0px;
  10195. word-wrap:break-word;
  10196. text-transform:none;
  10197. visibility:hidden;
  10198. }
  10199. #u16096 {
  10200. border-width:0px;
  10201. position:absolute;
  10202. left:171px;
  10203. top:100px;
  10204. width:113px;
  10205. height:30px;
  10206. display:flex;
  10207. transition:none;
  10208. }
  10209. #u16096 .text {
  10210. position:absolute;
  10211. align-self:center;
  10212. padding:2px 2px 2px 2px;
  10213. box-sizing:border-box;
  10214. width:100%;
  10215. }
  10216. #u16096_img {
  10217. border-width:0px;
  10218. position:absolute;
  10219. left:0px;
  10220. top:0px;
  10221. width:113px;
  10222. height:30px;
  10223. }
  10224. #u16096_text {
  10225. border-width:0px;
  10226. word-wrap:break-word;
  10227. text-transform:none;
  10228. visibility:hidden;
  10229. }
  10230. #u16097 {
  10231. border-width:0px;
  10232. position:absolute;
  10233. left:284px;
  10234. top:100px;
  10235. width:113px;
  10236. height:30px;
  10237. display:flex;
  10238. transition:none;
  10239. }
  10240. #u16097 .text {
  10241. position:absolute;
  10242. align-self:center;
  10243. padding:2px 2px 2px 2px;
  10244. box-sizing:border-box;
  10245. width:100%;
  10246. }
  10247. #u16097_img {
  10248. border-width:0px;
  10249. position:absolute;
  10250. left:0px;
  10251. top:0px;
  10252. width:113px;
  10253. height:30px;
  10254. }
  10255. #u16097_text {
  10256. border-width:0px;
  10257. word-wrap:break-word;
  10258. text-transform:none;
  10259. visibility:hidden;
  10260. }
  10261. #u16098 {
  10262. border-width:0px;
  10263. position:absolute;
  10264. left:396px;
  10265. top:100px;
  10266. width:113px;
  10267. height:30px;
  10268. display:flex;
  10269. transition:none;
  10270. }
  10271. #u16098 .text {
  10272. position:absolute;
  10273. align-self:center;
  10274. padding:2px 2px 2px 2px;
  10275. box-sizing:border-box;
  10276. width:100%;
  10277. }
  10278. #u16098_img {
  10279. border-width:0px;
  10280. position:absolute;
  10281. left:0px;
  10282. top:0px;
  10283. width:113px;
  10284. height:30px;
  10285. }
  10286. #u16098_text {
  10287. border-width:0px;
  10288. word-wrap:break-word;
  10289. text-transform:none;
  10290. visibility:hidden;
  10291. }
  10292. #u16099 {
  10293. border-width:0px;
  10294. position:absolute;
  10295. left:509px;
  10296. top:100px;
  10297. width:113px;
  10298. height:30px;
  10299. display:flex;
  10300. transition:none;
  10301. }
  10302. #u16099 .text {
  10303. position:absolute;
  10304. align-self:center;
  10305. padding:2px 2px 2px 2px;
  10306. box-sizing:border-box;
  10307. width:100%;
  10308. }
  10309. #u16099_img {
  10310. border-width:0px;
  10311. position:absolute;
  10312. left:0px;
  10313. top:0px;
  10314. width:113px;
  10315. height:30px;
  10316. }
  10317. #u16099_text {
  10318. border-width:0px;
  10319. word-wrap:break-word;
  10320. text-transform:none;
  10321. visibility:hidden;
  10322. }
  10323. #u16100 {
  10324. border-width:0px;
  10325. position:absolute;
  10326. left:622px;
  10327. top:100px;
  10328. width:113px;
  10329. height:30px;
  10330. display:flex;
  10331. transition:none;
  10332. }
  10333. #u16100 .text {
  10334. position:absolute;
  10335. align-self:center;
  10336. padding:2px 2px 2px 2px;
  10337. box-sizing:border-box;
  10338. width:100%;
  10339. }
  10340. #u16100_img {
  10341. border-width:0px;
  10342. position:absolute;
  10343. left:0px;
  10344. top:0px;
  10345. width:113px;
  10346. height:30px;
  10347. }
  10348. #u16100_text {
  10349. border-width:0px;
  10350. word-wrap:break-word;
  10351. text-transform:none;
  10352. visibility:hidden;
  10353. }
  10354. #u16101 {
  10355. border-width:0px;
  10356. position:absolute;
  10357. left:734px;
  10358. top:100px;
  10359. width:113px;
  10360. height:30px;
  10361. display:flex;
  10362. transition:none;
  10363. }
  10364. #u16101 .text {
  10365. position:absolute;
  10366. align-self:center;
  10367. padding:2px 2px 2px 2px;
  10368. box-sizing:border-box;
  10369. width:100%;
  10370. }
  10371. #u16101_img {
  10372. border-width:0px;
  10373. position:absolute;
  10374. left:0px;
  10375. top:0px;
  10376. width:113px;
  10377. height:30px;
  10378. }
  10379. #u16101_text {
  10380. border-width:0px;
  10381. word-wrap:break-word;
  10382. text-transform:none;
  10383. visibility:hidden;
  10384. }
  10385. #u16102 {
  10386. border-width:0px;
  10387. position:absolute;
  10388. left:847px;
  10389. top:100px;
  10390. width:113px;
  10391. height:30px;
  10392. display:flex;
  10393. transition:none;
  10394. }
  10395. #u16102 .text {
  10396. position:absolute;
  10397. align-self:center;
  10398. padding:2px 2px 2px 2px;
  10399. box-sizing:border-box;
  10400. width:100%;
  10401. }
  10402. #u16102_img {
  10403. border-width:0px;
  10404. position:absolute;
  10405. left:0px;
  10406. top:0px;
  10407. width:113px;
  10408. height:30px;
  10409. }
  10410. #u16102_text {
  10411. border-width:0px;
  10412. word-wrap:break-word;
  10413. text-transform:none;
  10414. visibility:hidden;
  10415. }
  10416. #u16103 {
  10417. border-width:0px;
  10418. position:absolute;
  10419. left:0px;
  10420. top:130px;
  10421. width:59px;
  10422. height:30px;
  10423. display:flex;
  10424. transition:none;
  10425. }
  10426. #u16103 .text {
  10427. position:absolute;
  10428. align-self:center;
  10429. padding:2px 2px 2px 2px;
  10430. box-sizing:border-box;
  10431. width:100%;
  10432. }
  10433. #u16103_img {
  10434. border-width:0px;
  10435. position:absolute;
  10436. left:0px;
  10437. top:0px;
  10438. width:59px;
  10439. height:30px;
  10440. }
  10441. #u16103_text {
  10442. border-width:0px;
  10443. word-wrap:break-word;
  10444. text-transform:none;
  10445. }
  10446. #u16104 {
  10447. border-width:0px;
  10448. position:absolute;
  10449. left:59px;
  10450. top:130px;
  10451. width:113px;
  10452. height:30px;
  10453. display:flex;
  10454. transition:none;
  10455. }
  10456. #u16104 .text {
  10457. position:absolute;
  10458. align-self:center;
  10459. padding:2px 2px 2px 2px;
  10460. box-sizing:border-box;
  10461. width:100%;
  10462. }
  10463. #u16104_img {
  10464. border-width:0px;
  10465. position:absolute;
  10466. left:0px;
  10467. top:0px;
  10468. width:113px;
  10469. height:30px;
  10470. }
  10471. #u16104_text {
  10472. border-width:0px;
  10473. word-wrap:break-word;
  10474. text-transform:none;
  10475. visibility:hidden;
  10476. }
  10477. #u16105 {
  10478. border-width:0px;
  10479. position:absolute;
  10480. left:171px;
  10481. top:130px;
  10482. width:113px;
  10483. height:30px;
  10484. display:flex;
  10485. transition:none;
  10486. }
  10487. #u16105 .text {
  10488. position:absolute;
  10489. align-self:center;
  10490. padding:2px 2px 2px 2px;
  10491. box-sizing:border-box;
  10492. width:100%;
  10493. }
  10494. #u16105_img {
  10495. border-width:0px;
  10496. position:absolute;
  10497. left:0px;
  10498. top:0px;
  10499. width:113px;
  10500. height:30px;
  10501. }
  10502. #u16105_text {
  10503. border-width:0px;
  10504. word-wrap:break-word;
  10505. text-transform:none;
  10506. visibility:hidden;
  10507. }
  10508. #u16106 {
  10509. border-width:0px;
  10510. position:absolute;
  10511. left:284px;
  10512. top:130px;
  10513. width:113px;
  10514. height:30px;
  10515. display:flex;
  10516. transition:none;
  10517. }
  10518. #u16106 .text {
  10519. position:absolute;
  10520. align-self:center;
  10521. padding:2px 2px 2px 2px;
  10522. box-sizing:border-box;
  10523. width:100%;
  10524. }
  10525. #u16106_img {
  10526. border-width:0px;
  10527. position:absolute;
  10528. left:0px;
  10529. top:0px;
  10530. width:113px;
  10531. height:30px;
  10532. }
  10533. #u16106_text {
  10534. border-width:0px;
  10535. word-wrap:break-word;
  10536. text-transform:none;
  10537. visibility:hidden;
  10538. }
  10539. #u16107 {
  10540. border-width:0px;
  10541. position:absolute;
  10542. left:396px;
  10543. top:130px;
  10544. width:113px;
  10545. height:30px;
  10546. display:flex;
  10547. transition:none;
  10548. }
  10549. #u16107 .text {
  10550. position:absolute;
  10551. align-self:center;
  10552. padding:2px 2px 2px 2px;
  10553. box-sizing:border-box;
  10554. width:100%;
  10555. }
  10556. #u16107_img {
  10557. border-width:0px;
  10558. position:absolute;
  10559. left:0px;
  10560. top:0px;
  10561. width:113px;
  10562. height:30px;
  10563. }
  10564. #u16107_text {
  10565. border-width:0px;
  10566. word-wrap:break-word;
  10567. text-transform:none;
  10568. visibility:hidden;
  10569. }
  10570. #u16108 {
  10571. border-width:0px;
  10572. position:absolute;
  10573. left:509px;
  10574. top:130px;
  10575. width:113px;
  10576. height:30px;
  10577. display:flex;
  10578. transition:none;
  10579. }
  10580. #u16108 .text {
  10581. position:absolute;
  10582. align-self:center;
  10583. padding:2px 2px 2px 2px;
  10584. box-sizing:border-box;
  10585. width:100%;
  10586. }
  10587. #u16108_img {
  10588. border-width:0px;
  10589. position:absolute;
  10590. left:0px;
  10591. top:0px;
  10592. width:113px;
  10593. height:30px;
  10594. }
  10595. #u16108_text {
  10596. border-width:0px;
  10597. word-wrap:break-word;
  10598. text-transform:none;
  10599. visibility:hidden;
  10600. }
  10601. #u16109 {
  10602. border-width:0px;
  10603. position:absolute;
  10604. left:622px;
  10605. top:130px;
  10606. width:113px;
  10607. height:30px;
  10608. display:flex;
  10609. transition:none;
  10610. }
  10611. #u16109 .text {
  10612. position:absolute;
  10613. align-self:center;
  10614. padding:2px 2px 2px 2px;
  10615. box-sizing:border-box;
  10616. width:100%;
  10617. }
  10618. #u16109_img {
  10619. border-width:0px;
  10620. position:absolute;
  10621. left:0px;
  10622. top:0px;
  10623. width:113px;
  10624. height:30px;
  10625. }
  10626. #u16109_text {
  10627. border-width:0px;
  10628. word-wrap:break-word;
  10629. text-transform:none;
  10630. visibility:hidden;
  10631. }
  10632. #u16110 {
  10633. border-width:0px;
  10634. position:absolute;
  10635. left:734px;
  10636. top:130px;
  10637. width:113px;
  10638. height:30px;
  10639. display:flex;
  10640. transition:none;
  10641. }
  10642. #u16110 .text {
  10643. position:absolute;
  10644. align-self:center;
  10645. padding:2px 2px 2px 2px;
  10646. box-sizing:border-box;
  10647. width:100%;
  10648. }
  10649. #u16110_img {
  10650. border-width:0px;
  10651. position:absolute;
  10652. left:0px;
  10653. top:0px;
  10654. width:113px;
  10655. height:30px;
  10656. }
  10657. #u16110_text {
  10658. border-width:0px;
  10659. word-wrap:break-word;
  10660. text-transform:none;
  10661. visibility:hidden;
  10662. }
  10663. #u16111 {
  10664. border-width:0px;
  10665. position:absolute;
  10666. left:847px;
  10667. top:130px;
  10668. width:113px;
  10669. height:30px;
  10670. display:flex;
  10671. transition:none;
  10672. }
  10673. #u16111 .text {
  10674. position:absolute;
  10675. align-self:center;
  10676. padding:2px 2px 2px 2px;
  10677. box-sizing:border-box;
  10678. width:100%;
  10679. }
  10680. #u16111_img {
  10681. border-width:0px;
  10682. position:absolute;
  10683. left:0px;
  10684. top:0px;
  10685. width:113px;
  10686. height:30px;
  10687. }
  10688. #u16111_text {
  10689. border-width:0px;
  10690. word-wrap:break-word;
  10691. text-transform:none;
  10692. visibility:hidden;
  10693. }
  10694. #u16112 {
  10695. border-width:0px;
  10696. position:absolute;
  10697. left:0px;
  10698. top:160px;
  10699. width:59px;
  10700. height:30px;
  10701. display:flex;
  10702. transition:none;
  10703. }
  10704. #u16112 .text {
  10705. position:absolute;
  10706. align-self:center;
  10707. padding:2px 2px 2px 2px;
  10708. box-sizing:border-box;
  10709. width:100%;
  10710. }
  10711. #u16112_img {
  10712. border-width:0px;
  10713. position:absolute;
  10714. left:0px;
  10715. top:0px;
  10716. width:59px;
  10717. height:30px;
  10718. }
  10719. #u16112_text {
  10720. border-width:0px;
  10721. word-wrap:break-word;
  10722. text-transform:none;
  10723. }
  10724. #u16113 {
  10725. border-width:0px;
  10726. position:absolute;
  10727. left:59px;
  10728. top:160px;
  10729. width:113px;
  10730. height:30px;
  10731. display:flex;
  10732. transition:none;
  10733. }
  10734. #u16113 .text {
  10735. position:absolute;
  10736. align-self:center;
  10737. padding:2px 2px 2px 2px;
  10738. box-sizing:border-box;
  10739. width:100%;
  10740. }
  10741. #u16113_img {
  10742. border-width:0px;
  10743. position:absolute;
  10744. left:0px;
  10745. top:0px;
  10746. width:113px;
  10747. height:30px;
  10748. }
  10749. #u16113_text {
  10750. border-width:0px;
  10751. word-wrap:break-word;
  10752. text-transform:none;
  10753. visibility:hidden;
  10754. }
  10755. #u16114 {
  10756. border-width:0px;
  10757. position:absolute;
  10758. left:171px;
  10759. top:160px;
  10760. width:113px;
  10761. height:30px;
  10762. display:flex;
  10763. transition:none;
  10764. }
  10765. #u16114 .text {
  10766. position:absolute;
  10767. align-self:center;
  10768. padding:2px 2px 2px 2px;
  10769. box-sizing:border-box;
  10770. width:100%;
  10771. }
  10772. #u16114_img {
  10773. border-width:0px;
  10774. position:absolute;
  10775. left:0px;
  10776. top:0px;
  10777. width:113px;
  10778. height:30px;
  10779. }
  10780. #u16114_text {
  10781. border-width:0px;
  10782. word-wrap:break-word;
  10783. text-transform:none;
  10784. visibility:hidden;
  10785. }
  10786. #u16115 {
  10787. border-width:0px;
  10788. position:absolute;
  10789. left:284px;
  10790. top:160px;
  10791. width:113px;
  10792. height:30px;
  10793. display:flex;
  10794. transition:none;
  10795. }
  10796. #u16115 .text {
  10797. position:absolute;
  10798. align-self:center;
  10799. padding:2px 2px 2px 2px;
  10800. box-sizing:border-box;
  10801. width:100%;
  10802. }
  10803. #u16115_img {
  10804. border-width:0px;
  10805. position:absolute;
  10806. left:0px;
  10807. top:0px;
  10808. width:113px;
  10809. height:30px;
  10810. }
  10811. #u16115_text {
  10812. border-width:0px;
  10813. word-wrap:break-word;
  10814. text-transform:none;
  10815. visibility:hidden;
  10816. }
  10817. #u16116 {
  10818. border-width:0px;
  10819. position:absolute;
  10820. left:396px;
  10821. top:160px;
  10822. width:113px;
  10823. height:30px;
  10824. display:flex;
  10825. transition:none;
  10826. }
  10827. #u16116 .text {
  10828. position:absolute;
  10829. align-self:center;
  10830. padding:2px 2px 2px 2px;
  10831. box-sizing:border-box;
  10832. width:100%;
  10833. }
  10834. #u16116_img {
  10835. border-width:0px;
  10836. position:absolute;
  10837. left:0px;
  10838. top:0px;
  10839. width:113px;
  10840. height:30px;
  10841. }
  10842. #u16116_text {
  10843. border-width:0px;
  10844. word-wrap:break-word;
  10845. text-transform:none;
  10846. visibility:hidden;
  10847. }
  10848. #u16117 {
  10849. border-width:0px;
  10850. position:absolute;
  10851. left:509px;
  10852. top:160px;
  10853. width:113px;
  10854. height:30px;
  10855. display:flex;
  10856. transition:none;
  10857. }
  10858. #u16117 .text {
  10859. position:absolute;
  10860. align-self:center;
  10861. padding:2px 2px 2px 2px;
  10862. box-sizing:border-box;
  10863. width:100%;
  10864. }
  10865. #u16117_img {
  10866. border-width:0px;
  10867. position:absolute;
  10868. left:0px;
  10869. top:0px;
  10870. width:113px;
  10871. height:30px;
  10872. }
  10873. #u16117_text {
  10874. border-width:0px;
  10875. word-wrap:break-word;
  10876. text-transform:none;
  10877. visibility:hidden;
  10878. }
  10879. #u16118 {
  10880. border-width:0px;
  10881. position:absolute;
  10882. left:622px;
  10883. top:160px;
  10884. width:113px;
  10885. height:30px;
  10886. display:flex;
  10887. transition:none;
  10888. }
  10889. #u16118 .text {
  10890. position:absolute;
  10891. align-self:center;
  10892. padding:2px 2px 2px 2px;
  10893. box-sizing:border-box;
  10894. width:100%;
  10895. }
  10896. #u16118_img {
  10897. border-width:0px;
  10898. position:absolute;
  10899. left:0px;
  10900. top:0px;
  10901. width:113px;
  10902. height:30px;
  10903. }
  10904. #u16118_text {
  10905. border-width:0px;
  10906. word-wrap:break-word;
  10907. text-transform:none;
  10908. visibility:hidden;
  10909. }
  10910. #u16119 {
  10911. border-width:0px;
  10912. position:absolute;
  10913. left:734px;
  10914. top:160px;
  10915. width:113px;
  10916. height:30px;
  10917. display:flex;
  10918. transition:none;
  10919. }
  10920. #u16119 .text {
  10921. position:absolute;
  10922. align-self:center;
  10923. padding:2px 2px 2px 2px;
  10924. box-sizing:border-box;
  10925. width:100%;
  10926. }
  10927. #u16119_img {
  10928. border-width:0px;
  10929. position:absolute;
  10930. left:0px;
  10931. top:0px;
  10932. width:113px;
  10933. height:30px;
  10934. }
  10935. #u16119_text {
  10936. border-width:0px;
  10937. word-wrap:break-word;
  10938. text-transform:none;
  10939. visibility:hidden;
  10940. }
  10941. #u16120 {
  10942. border-width:0px;
  10943. position:absolute;
  10944. left:847px;
  10945. top:160px;
  10946. width:113px;
  10947. height:30px;
  10948. display:flex;
  10949. transition:none;
  10950. }
  10951. #u16120 .text {
  10952. position:absolute;
  10953. align-self:center;
  10954. padding:2px 2px 2px 2px;
  10955. box-sizing:border-box;
  10956. width:100%;
  10957. }
  10958. #u16120_img {
  10959. border-width:0px;
  10960. position:absolute;
  10961. left:0px;
  10962. top:0px;
  10963. width:113px;
  10964. height:30px;
  10965. }
  10966. #u16120_text {
  10967. border-width:0px;
  10968. word-wrap:break-word;
  10969. text-transform:none;
  10970. visibility:hidden;
  10971. }
  10972. #u16121 {
  10973. border-width:0px;
  10974. position:absolute;
  10975. left:0px;
  10976. top:190px;
  10977. width:59px;
  10978. height:23px;
  10979. display:flex;
  10980. transition:none;
  10981. }
  10982. #u16121 .text {
  10983. position:absolute;
  10984. align-self:center;
  10985. padding:2px 2px 2px 2px;
  10986. box-sizing:border-box;
  10987. width:100%;
  10988. }
  10989. #u16121_img {
  10990. border-width:0px;
  10991. position:absolute;
  10992. left:0px;
  10993. top:0px;
  10994. width:59px;
  10995. height:23px;
  10996. }
  10997. #u16121_text {
  10998. border-width:0px;
  10999. word-wrap:break-word;
  11000. text-transform:none;
  11001. }
  11002. #u16122 {
  11003. border-width:0px;
  11004. position:absolute;
  11005. left:59px;
  11006. top:190px;
  11007. width:113px;
  11008. height:23px;
  11009. display:flex;
  11010. transition:none;
  11011. }
  11012. #u16122 .text {
  11013. position:absolute;
  11014. align-self:center;
  11015. padding:2px 2px 2px 2px;
  11016. box-sizing:border-box;
  11017. width:100%;
  11018. }
  11019. #u16122_img {
  11020. border-width:0px;
  11021. position:absolute;
  11022. left:0px;
  11023. top:0px;
  11024. width:113px;
  11025. height:23px;
  11026. }
  11027. #u16122_text {
  11028. border-width:0px;
  11029. word-wrap:break-word;
  11030. text-transform:none;
  11031. visibility:hidden;
  11032. }
  11033. #u16123 {
  11034. border-width:0px;
  11035. position:absolute;
  11036. left:171px;
  11037. top:190px;
  11038. width:113px;
  11039. height:23px;
  11040. display:flex;
  11041. transition:none;
  11042. }
  11043. #u16123 .text {
  11044. position:absolute;
  11045. align-self:center;
  11046. padding:2px 2px 2px 2px;
  11047. box-sizing:border-box;
  11048. width:100%;
  11049. }
  11050. #u16123_img {
  11051. border-width:0px;
  11052. position:absolute;
  11053. left:0px;
  11054. top:0px;
  11055. width:113px;
  11056. height:23px;
  11057. }
  11058. #u16123_text {
  11059. border-width:0px;
  11060. word-wrap:break-word;
  11061. text-transform:none;
  11062. visibility:hidden;
  11063. }
  11064. #u16124 {
  11065. border-width:0px;
  11066. position:absolute;
  11067. left:284px;
  11068. top:190px;
  11069. width:113px;
  11070. height:23px;
  11071. display:flex;
  11072. transition:none;
  11073. }
  11074. #u16124 .text {
  11075. position:absolute;
  11076. align-self:center;
  11077. padding:2px 2px 2px 2px;
  11078. box-sizing:border-box;
  11079. width:100%;
  11080. }
  11081. #u16124_img {
  11082. border-width:0px;
  11083. position:absolute;
  11084. left:0px;
  11085. top:0px;
  11086. width:113px;
  11087. height:23px;
  11088. }
  11089. #u16124_text {
  11090. border-width:0px;
  11091. word-wrap:break-word;
  11092. text-transform:none;
  11093. visibility:hidden;
  11094. }
  11095. #u16125 {
  11096. border-width:0px;
  11097. position:absolute;
  11098. left:396px;
  11099. top:190px;
  11100. width:113px;
  11101. height:23px;
  11102. display:flex;
  11103. transition:none;
  11104. }
  11105. #u16125 .text {
  11106. position:absolute;
  11107. align-self:center;
  11108. padding:2px 2px 2px 2px;
  11109. box-sizing:border-box;
  11110. width:100%;
  11111. }
  11112. #u16125_img {
  11113. border-width:0px;
  11114. position:absolute;
  11115. left:0px;
  11116. top:0px;
  11117. width:113px;
  11118. height:23px;
  11119. }
  11120. #u16125_text {
  11121. border-width:0px;
  11122. word-wrap:break-word;
  11123. text-transform:none;
  11124. visibility:hidden;
  11125. }
  11126. #u16126 {
  11127. border-width:0px;
  11128. position:absolute;
  11129. left:509px;
  11130. top:190px;
  11131. width:113px;
  11132. height:23px;
  11133. display:flex;
  11134. transition:none;
  11135. }
  11136. #u16126 .text {
  11137. position:absolute;
  11138. align-self:center;
  11139. padding:2px 2px 2px 2px;
  11140. box-sizing:border-box;
  11141. width:100%;
  11142. }
  11143. #u16126_img {
  11144. border-width:0px;
  11145. position:absolute;
  11146. left:0px;
  11147. top:0px;
  11148. width:113px;
  11149. height:23px;
  11150. }
  11151. #u16126_text {
  11152. border-width:0px;
  11153. word-wrap:break-word;
  11154. text-transform:none;
  11155. visibility:hidden;
  11156. }
  11157. #u16127 {
  11158. border-width:0px;
  11159. position:absolute;
  11160. left:622px;
  11161. top:190px;
  11162. width:113px;
  11163. height:23px;
  11164. display:flex;
  11165. transition:none;
  11166. }
  11167. #u16127 .text {
  11168. position:absolute;
  11169. align-self:center;
  11170. padding:2px 2px 2px 2px;
  11171. box-sizing:border-box;
  11172. width:100%;
  11173. }
  11174. #u16127_img {
  11175. border-width:0px;
  11176. position:absolute;
  11177. left:0px;
  11178. top:0px;
  11179. width:113px;
  11180. height:23px;
  11181. }
  11182. #u16127_text {
  11183. border-width:0px;
  11184. word-wrap:break-word;
  11185. text-transform:none;
  11186. visibility:hidden;
  11187. }
  11188. #u16128 {
  11189. border-width:0px;
  11190. position:absolute;
  11191. left:734px;
  11192. top:190px;
  11193. width:113px;
  11194. height:23px;
  11195. display:flex;
  11196. transition:none;
  11197. }
  11198. #u16128 .text {
  11199. position:absolute;
  11200. align-self:center;
  11201. padding:2px 2px 2px 2px;
  11202. box-sizing:border-box;
  11203. width:100%;
  11204. }
  11205. #u16128_img {
  11206. border-width:0px;
  11207. position:absolute;
  11208. left:0px;
  11209. top:0px;
  11210. width:113px;
  11211. height:23px;
  11212. }
  11213. #u16128_text {
  11214. border-width:0px;
  11215. word-wrap:break-word;
  11216. text-transform:none;
  11217. visibility:hidden;
  11218. }
  11219. #u16129 {
  11220. border-width:0px;
  11221. position:absolute;
  11222. left:847px;
  11223. top:190px;
  11224. width:113px;
  11225. height:23px;
  11226. display:flex;
  11227. transition:none;
  11228. }
  11229. #u16129 .text {
  11230. position:absolute;
  11231. align-self:center;
  11232. padding:2px 2px 2px 2px;
  11233. box-sizing:border-box;
  11234. width:100%;
  11235. }
  11236. #u16129_img {
  11237. border-width:0px;
  11238. position:absolute;
  11239. left:0px;
  11240. top:0px;
  11241. width:113px;
  11242. height:23px;
  11243. }
  11244. #u16129_text {
  11245. border-width:0px;
  11246. word-wrap:break-word;
  11247. text-transform:none;
  11248. visibility:hidden;
  11249. }
  11250. #u16130 {
  11251. border-width:0px;
  11252. position:absolute;
  11253. left:0px;
  11254. top:0px;
  11255. width:0px;
  11256. height:0px;
  11257. }
  11258. #u16131_div {
  11259. border-width:0px;
  11260. position:absolute;
  11261. left:0px;
  11262. top:0px;
  11263. width:120px;
  11264. height:30px;
  11265. background:inherit;
  11266. background-color:rgba(255, 255, 255, 1);
  11267. box-sizing:border-box;
  11268. border-width:1px;
  11269. border-style:solid;
  11270. border-color:rgba(201, 201, 201, 1);
  11271. border-radius:4px;
  11272. filter:drop-shadow(none);
  11273. transition:none;
  11274. font-family:"Microsoft YaHei", sans-serif;
  11275. font-weight:400;
  11276. font-style:normal;
  11277. font-size:14px;
  11278. color:#CCCCCC;
  11279. text-align:left;
  11280. }
  11281. #u16131 {
  11282. border-width:0px;
  11283. position:absolute;
  11284. left:2160px;
  11285. top:120px;
  11286. width:120px;
  11287. height:30px;
  11288. display:flex;
  11289. transition:none;
  11290. transform-origin:50% 50%;
  11291. font-family:"Microsoft YaHei", sans-serif;
  11292. font-weight:400;
  11293. font-style:normal;
  11294. font-size:14px;
  11295. color:#CCCCCC;
  11296. text-align:left;
  11297. }
  11298. #u16131 .text {
  11299. position:absolute;
  11300. align-self:center;
  11301. padding:2px 8px 2px 8px;
  11302. box-sizing:border-box;
  11303. width:100%;
  11304. }
  11305. #u16131_text {
  11306. border-width:0px;
  11307. word-wrap:break-word;
  11308. text-transform:none;
  11309. visibility:hidden;
  11310. }
  11311. #u16132_input {
  11312. position:absolute;
  11313. left:0px;
  11314. top:0px;
  11315. width:109px;
  11316. height:25px;
  11317. padding:2px 2px 2px 2px;
  11318. font-family:"Microsoft YaHei", sans-serif;
  11319. font-weight:400;
  11320. font-style:normal;
  11321. font-size:10px;
  11322. letter-spacing:normal;
  11323. color:#000000;
  11324. vertical-align:none;
  11325. text-align:left;
  11326. text-transform:none;
  11327. background-color:transparent;
  11328. border-color:transparent;
  11329. }
  11330. #u16132_input.hint {
  11331. position:absolute;
  11332. left:0px;
  11333. top:0px;
  11334. width:109px;
  11335. height:25px;
  11336. padding:2px 2px 2px 2px;
  11337. font-family:"Microsoft YaHei", sans-serif;
  11338. font-weight:400;
  11339. font-style:normal;
  11340. font-size:12px;
  11341. letter-spacing:normal;
  11342. color:#AAAAAA;
  11343. vertical-align:none;
  11344. text-align:left;
  11345. text-transform:none;
  11346. background-color:transparent;
  11347. border-color:transparent;
  11348. }
  11349. #u16132_input.disabled {
  11350. position:absolute;
  11351. left:0px;
  11352. top:0px;
  11353. width:109px;
  11354. height:25px;
  11355. padding:2px 2px 2px 2px;
  11356. font-family:"Microsoft YaHei", sans-serif;
  11357. font-weight:400;
  11358. font-style:normal;
  11359. font-size:10px;
  11360. letter-spacing:normal;
  11361. color:#000000;
  11362. vertical-align:none;
  11363. text-align:left;
  11364. text-transform:none;
  11365. background-color:transparent;
  11366. border-color:transparent;
  11367. }
  11368. #u16132_input.hint.disabled {
  11369. position:absolute;
  11370. left:0px;
  11371. top:0px;
  11372. width:109px;
  11373. height:25px;
  11374. padding:2px 2px 2px 2px;
  11375. font-family:"Microsoft YaHei", sans-serif;
  11376. font-weight:400;
  11377. font-style:normal;
  11378. font-size:12px;
  11379. letter-spacing:normal;
  11380. color:#AAAAAA;
  11381. vertical-align:none;
  11382. text-align:left;
  11383. text-transform:none;
  11384. background-color:transparent;
  11385. border-color:transparent;
  11386. }
  11387. #u16132_div {
  11388. border-width:0px;
  11389. position:absolute;
  11390. left:0px;
  11391. top:0px;
  11392. width:109px;
  11393. height:25px;
  11394. background:inherit;
  11395. background-color:rgba(255, 255, 255, 1);
  11396. border-radius:0px;
  11397. filter:drop-shadow(none);
  11398. transition:none;
  11399. font-family:"Microsoft YaHei", sans-serif;
  11400. font-weight:400;
  11401. font-style:normal;
  11402. font-size:10px;
  11403. }
  11404. #u16132 {
  11405. border-width:0px;
  11406. position:absolute;
  11407. left:2167px;
  11408. top:121px;
  11409. width:109px;
  11410. height:25px;
  11411. display:flex;
  11412. transition:none;
  11413. transform-origin:50% 50%;
  11414. font-family:"Microsoft YaHei", sans-serif;
  11415. font-weight:400;
  11416. font-style:normal;
  11417. font-size:10px;
  11418. }
  11419. #u16132 .text {
  11420. position:absolute;
  11421. align-self:center;
  11422. padding:2px 2px 2px 2px;
  11423. box-sizing:border-box;
  11424. width:100%;
  11425. }
  11426. #u16132_div.hint {
  11427. border-width:0px;
  11428. position:absolute;
  11429. left:0px;
  11430. top:0px;
  11431. width:109px;
  11432. height:25px;
  11433. background:inherit;
  11434. background-color:rgba(255, 255, 255, 1);
  11435. border-radius:0px;
  11436. filter:drop-shadow(none);
  11437. transition:none;
  11438. font-family:"Microsoft YaHei", sans-serif;
  11439. font-weight:400;
  11440. font-style:normal;
  11441. font-size:10px;
  11442. }
  11443. #u16132.hint {
  11444. }
  11445. #u16132_div.disabled {
  11446. border-width:0px;
  11447. position:absolute;
  11448. left:0px;
  11449. top:0px;
  11450. width:109px;
  11451. height:25px;
  11452. background:inherit;
  11453. background-color:rgba(240, 240, 240, 1);
  11454. border-radius:0px;
  11455. filter:drop-shadow(none);
  11456. transition:none;
  11457. font-family:"Microsoft YaHei", sans-serif;
  11458. font-weight:400;
  11459. font-style:normal;
  11460. font-size:10px;
  11461. }
  11462. #u16132.disabled {
  11463. }
  11464. #u16132_div.hint.disabled {
  11465. border-width:0px;
  11466. position:absolute;
  11467. left:0px;
  11468. top:0px;
  11469. width:109px;
  11470. height:25px;
  11471. background:inherit;
  11472. background-color:rgba(240, 240, 240, 1);
  11473. border-radius:0px;
  11474. filter:drop-shadow(none);
  11475. transition:none;
  11476. font-family:"Microsoft YaHei", sans-serif;
  11477. font-weight:400;
  11478. font-style:normal;
  11479. font-size:10px;
  11480. }
  11481. #u16132.hint.disabled {
  11482. }
  11483. #u16133 {
  11484. border-width:0px;
  11485. position:absolute;
  11486. left:0px;
  11487. top:0px;
  11488. width:0px;
  11489. height:0px;
  11490. }
  11491. #u16134_div {
  11492. border-width:0px;
  11493. position:absolute;
  11494. left:0px;
  11495. top:0px;
  11496. width:120px;
  11497. height:30px;
  11498. background:inherit;
  11499. background-color:rgba(255, 255, 255, 1);
  11500. box-sizing:border-box;
  11501. border-width:1px;
  11502. border-style:solid;
  11503. border-color:rgba(201, 201, 201, 1);
  11504. border-radius:4px;
  11505. filter:drop-shadow(none);
  11506. transition:none;
  11507. font-family:"Microsoft YaHei", sans-serif;
  11508. font-weight:400;
  11509. font-style:normal;
  11510. font-size:14px;
  11511. color:#CCCCCC;
  11512. text-align:left;
  11513. }
  11514. #u16134 {
  11515. border-width:0px;
  11516. position:absolute;
  11517. left:2290px;
  11518. top:120px;
  11519. width:120px;
  11520. height:30px;
  11521. display:flex;
  11522. transition:none;
  11523. transform-origin:50% 50%;
  11524. font-family:"Microsoft YaHei", sans-serif;
  11525. font-weight:400;
  11526. font-style:normal;
  11527. font-size:14px;
  11528. color:#CCCCCC;
  11529. text-align:left;
  11530. }
  11531. #u16134 .text {
  11532. position:absolute;
  11533. align-self:center;
  11534. padding:2px 8px 2px 8px;
  11535. box-sizing:border-box;
  11536. width:100%;
  11537. }
  11538. #u16134_text {
  11539. border-width:0px;
  11540. word-wrap:break-word;
  11541. text-transform:none;
  11542. visibility:hidden;
  11543. }
  11544. #u16135_input {
  11545. position:absolute;
  11546. left:0px;
  11547. top:0px;
  11548. width:109px;
  11549. height:25px;
  11550. padding:2px 2px 2px 2px;
  11551. font-family:"Microsoft YaHei", sans-serif;
  11552. font-weight:400;
  11553. font-style:normal;
  11554. font-size:10px;
  11555. letter-spacing:normal;
  11556. color:#000000;
  11557. vertical-align:none;
  11558. text-align:left;
  11559. text-transform:none;
  11560. background-color:transparent;
  11561. border-color:transparent;
  11562. }
  11563. #u16135_input.hint {
  11564. position:absolute;
  11565. left:0px;
  11566. top:0px;
  11567. width:109px;
  11568. height:25px;
  11569. padding:2px 2px 2px 2px;
  11570. font-family:"Microsoft YaHei", sans-serif;
  11571. font-weight:400;
  11572. font-style:normal;
  11573. font-size:12px;
  11574. letter-spacing:normal;
  11575. color:#AAAAAA;
  11576. vertical-align:none;
  11577. text-align:left;
  11578. text-transform:none;
  11579. background-color:transparent;
  11580. border-color:transparent;
  11581. }
  11582. #u16135_input.disabled {
  11583. position:absolute;
  11584. left:0px;
  11585. top:0px;
  11586. width:109px;
  11587. height:25px;
  11588. padding:2px 2px 2px 2px;
  11589. font-family:"Microsoft YaHei", sans-serif;
  11590. font-weight:400;
  11591. font-style:normal;
  11592. font-size:10px;
  11593. letter-spacing:normal;
  11594. color:#000000;
  11595. vertical-align:none;
  11596. text-align:left;
  11597. text-transform:none;
  11598. background-color:transparent;
  11599. border-color:transparent;
  11600. }
  11601. #u16135_input.hint.disabled {
  11602. position:absolute;
  11603. left:0px;
  11604. top:0px;
  11605. width:109px;
  11606. height:25px;
  11607. padding:2px 2px 2px 2px;
  11608. font-family:"Microsoft YaHei", sans-serif;
  11609. font-weight:400;
  11610. font-style:normal;
  11611. font-size:12px;
  11612. letter-spacing:normal;
  11613. color:#AAAAAA;
  11614. vertical-align:none;
  11615. text-align:left;
  11616. text-transform:none;
  11617. background-color:transparent;
  11618. border-color:transparent;
  11619. }
  11620. #u16135_div {
  11621. border-width:0px;
  11622. position:absolute;
  11623. left:0px;
  11624. top:0px;
  11625. width:109px;
  11626. height:25px;
  11627. background:inherit;
  11628. background-color:rgba(255, 255, 255, 1);
  11629. border-radius:0px;
  11630. filter:drop-shadow(none);
  11631. transition:none;
  11632. font-family:"Microsoft YaHei", sans-serif;
  11633. font-weight:400;
  11634. font-style:normal;
  11635. font-size:10px;
  11636. }
  11637. #u16135 {
  11638. border-width:0px;
  11639. position:absolute;
  11640. left:2297px;
  11641. top:121px;
  11642. width:109px;
  11643. height:25px;
  11644. display:flex;
  11645. transition:none;
  11646. transform-origin:50% 50%;
  11647. font-family:"Microsoft YaHei", sans-serif;
  11648. font-weight:400;
  11649. font-style:normal;
  11650. font-size:10px;
  11651. }
  11652. #u16135 .text {
  11653. position:absolute;
  11654. align-self:center;
  11655. padding:2px 2px 2px 2px;
  11656. box-sizing:border-box;
  11657. width:100%;
  11658. }
  11659. #u16135_div.hint {
  11660. border-width:0px;
  11661. position:absolute;
  11662. left:0px;
  11663. top:0px;
  11664. width:109px;
  11665. height:25px;
  11666. background:inherit;
  11667. background-color:rgba(255, 255, 255, 1);
  11668. border-radius:0px;
  11669. filter:drop-shadow(none);
  11670. transition:none;
  11671. font-family:"Microsoft YaHei", sans-serif;
  11672. font-weight:400;
  11673. font-style:normal;
  11674. font-size:10px;
  11675. }
  11676. #u16135.hint {
  11677. }
  11678. #u16135_div.disabled {
  11679. border-width:0px;
  11680. position:absolute;
  11681. left:0px;
  11682. top:0px;
  11683. width:109px;
  11684. height:25px;
  11685. background:inherit;
  11686. background-color:rgba(240, 240, 240, 1);
  11687. border-radius:0px;
  11688. filter:drop-shadow(none);
  11689. transition:none;
  11690. font-family:"Microsoft YaHei", sans-serif;
  11691. font-weight:400;
  11692. font-style:normal;
  11693. font-size:10px;
  11694. }
  11695. #u16135.disabled {
  11696. }
  11697. #u16135_div.hint.disabled {
  11698. border-width:0px;
  11699. position:absolute;
  11700. left:0px;
  11701. top:0px;
  11702. width:109px;
  11703. height:25px;
  11704. background:inherit;
  11705. background-color:rgba(240, 240, 240, 1);
  11706. border-radius:0px;
  11707. filter:drop-shadow(none);
  11708. transition:none;
  11709. font-family:"Microsoft YaHei", sans-serif;
  11710. font-weight:400;
  11711. font-style:normal;
  11712. font-size:10px;
  11713. }
  11714. #u16135.hint.disabled {
  11715. }
  11716. #u16136 {
  11717. border-width:0px;
  11718. position:absolute;
  11719. left:0px;
  11720. top:0px;
  11721. width:0px;
  11722. height:0px;
  11723. }
  11724. #u16137_div {
  11725. border-width:0px;
  11726. position:absolute;
  11727. left:0px;
  11728. top:0px;
  11729. width:60px;
  11730. height:30px;
  11731. background:inherit;
  11732. background-color:rgba(24, 144, 255, 1);
  11733. border-radius:4px;
  11734. filter:drop-shadow(none);
  11735. transition:none;
  11736. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11737. font-weight:400;
  11738. font-style:normal;
  11739. font-size:14px;
  11740. color:#FFFFFF;
  11741. }
  11742. #u16137 {
  11743. border-width:0px;
  11744. position:absolute;
  11745. left:2420px;
  11746. top:120px;
  11747. width:60px;
  11748. height:30px;
  11749. display:flex;
  11750. transition:none;
  11751. transform-origin:50% 50%;
  11752. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11753. font-weight:400;
  11754. font-style:normal;
  11755. font-size:14px;
  11756. color:#FFFFFF;
  11757. }
  11758. #u16137 .text {
  11759. position:absolute;
  11760. align-self:center;
  11761. padding:2px 2px 2px 2px;
  11762. box-sizing:border-box;
  11763. width:100%;
  11764. }
  11765. #u16137_text {
  11766. border-width:0px;
  11767. word-wrap:break-word;
  11768. text-transform:none;
  11769. }
  11770. #u16138_div {
  11771. border-width:0px;
  11772. position:absolute;
  11773. left:0px;
  11774. top:0px;
  11775. width:60px;
  11776. height:30px;
  11777. background:inherit;
  11778. background-color:rgba(255, 255, 255, 1);
  11779. box-sizing:border-box;
  11780. border-width:1px;
  11781. border-style:solid;
  11782. border-color:rgba(170, 170, 170, 1);
  11783. border-radius:4px;
  11784. filter:drop-shadow(none);
  11785. transition:none;
  11786. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11787. font-weight:400;
  11788. font-style:normal;
  11789. font-size:14px;
  11790. }
  11791. #u16138 {
  11792. border-width:0px;
  11793. position:absolute;
  11794. left:2490px;
  11795. top:120px;
  11796. width:60px;
  11797. height:30px;
  11798. display:flex;
  11799. transition:none;
  11800. transform-origin:50% 50%;
  11801. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11802. font-weight:400;
  11803. font-style:normal;
  11804. font-size:14px;
  11805. }
  11806. #u16138 .text {
  11807. position:absolute;
  11808. align-self:center;
  11809. padding:2px 2px 2px 2px;
  11810. box-sizing:border-box;
  11811. width:100%;
  11812. }
  11813. #u16138_text {
  11814. border-width:0px;
  11815. word-wrap:break-word;
  11816. text-transform:none;
  11817. }
  11818. #u16139 {
  11819. border-width:0px;
  11820. position:absolute;
  11821. left:0px;
  11822. top:0px;
  11823. width:0px;
  11824. height:0px;
  11825. }
  11826. #u16140_div {
  11827. border-width:0px;
  11828. position:absolute;
  11829. left:0px;
  11830. top:0px;
  11831. width:120px;
  11832. height:30px;
  11833. background:inherit;
  11834. background-color:rgba(255, 255, 255, 1);
  11835. box-sizing:border-box;
  11836. border-width:1px;
  11837. border-style:solid;
  11838. border-color:rgba(215, 215, 215, 1);
  11839. border-radius:4px;
  11840. filter:drop-shadow(none);
  11841. transition:none;
  11842. font-size:14px;
  11843. }
  11844. #u16140 {
  11845. border-width:0px;
  11846. position:absolute;
  11847. left:1900px;
  11848. top:120px;
  11849. width:120px;
  11850. height:30px;
  11851. display:flex;
  11852. transition:none;
  11853. transform-origin:50% 50%;
  11854. font-size:14px;
  11855. }
  11856. #u16140 .text {
  11857. position:absolute;
  11858. align-self:center;
  11859. padding:2px 2px 2px 2px;
  11860. box-sizing:border-box;
  11861. width:100%;
  11862. }
  11863. #u16140_text {
  11864. border-width:0px;
  11865. word-wrap:break-word;
  11866. text-transform:none;
  11867. visibility:hidden;
  11868. }
  11869. #u16141_input {
  11870. position:absolute;
  11871. left:0px;
  11872. top:0px;
  11873. width:115px;
  11874. height:23px;
  11875. padding:2px 2px 2px 2px;
  11876. font-family:'ArialMT', 'Arial', sans-serif;
  11877. font-weight:400;
  11878. font-style:normal;
  11879. font-size:14px;
  11880. letter-spacing:normal;
  11881. color:#AAAAAA;
  11882. vertical-align:none;
  11883. text-align:left;
  11884. text-transform:none;
  11885. background-color:transparent;
  11886. border-color:transparent;
  11887. }
  11888. #u16141_input.disabled {
  11889. position:absolute;
  11890. left:0px;
  11891. top:0px;
  11892. width:115px;
  11893. height:23px;
  11894. padding:2px 2px 2px 2px;
  11895. font-family:'ArialMT', 'Arial', sans-serif;
  11896. font-weight:400;
  11897. font-style:normal;
  11898. font-size:14px;
  11899. letter-spacing:normal;
  11900. color:#AAAAAA;
  11901. vertical-align:none;
  11902. text-align:left;
  11903. text-transform:none;
  11904. background-color:transparent;
  11905. border-color:transparent;
  11906. }
  11907. #u16141_div {
  11908. border-width:0px;
  11909. position:absolute;
  11910. left:0px;
  11911. top:0px;
  11912. width:115px;
  11913. height:23px;
  11914. background:inherit;
  11915. background-color:rgba(255, 255, 255, 1);
  11916. border-radius:0px;
  11917. filter:drop-shadow(none);
  11918. transition:none;
  11919. font-size:14px;
  11920. color:#AAAAAA;
  11921. }
  11922. #u16141 {
  11923. border-width:0px;
  11924. position:absolute;
  11925. left:1903px;
  11926. top:122px;
  11927. width:115px;
  11928. height:23px;
  11929. display:flex;
  11930. transition:none;
  11931. transform-origin:50% 50%;
  11932. font-size:14px;
  11933. color:#AAAAAA;
  11934. }
  11935. #u16141 .text {
  11936. position:absolute;
  11937. align-self:flex-start;
  11938. padding:2px 2px 2px 2px;
  11939. box-sizing:border-box;
  11940. width:100%;
  11941. }
  11942. #u16141_div.disabled {
  11943. border-width:0px;
  11944. position:absolute;
  11945. left:0px;
  11946. top:0px;
  11947. width:115px;
  11948. height:23px;
  11949. background:inherit;
  11950. background-color:rgba(240, 240, 240, 1);
  11951. border-radius:0px;
  11952. filter:drop-shadow(none);
  11953. transition:none;
  11954. font-size:14px;
  11955. color:#AAAAAA;
  11956. }
  11957. #u16141.disabled {
  11958. }
  11959. .u16141_input_option {
  11960. font-size:14px;
  11961. }
  11962. #u16142 {
  11963. border-width:0px;
  11964. position:absolute;
  11965. left:0px;
  11966. top:0px;
  11967. width:0px;
  11968. height:0px;
  11969. }
  11970. #u16143_div {
  11971. border-width:0px;
  11972. position:absolute;
  11973. left:0px;
  11974. top:0px;
  11975. width:120px;
  11976. height:30px;
  11977. background:inherit;
  11978. background-color:rgba(255, 255, 255, 1);
  11979. box-sizing:border-box;
  11980. border-width:1px;
  11981. border-style:solid;
  11982. border-color:rgba(215, 215, 215, 1);
  11983. border-radius:4px;
  11984. filter:drop-shadow(none);
  11985. transition:none;
  11986. font-size:14px;
  11987. }
  11988. #u16143 {
  11989. border-width:0px;
  11990. position:absolute;
  11991. left:1770px;
  11992. top:120px;
  11993. width:120px;
  11994. height:30px;
  11995. display:flex;
  11996. transition:none;
  11997. transform-origin:50% 50%;
  11998. font-size:14px;
  11999. }
  12000. #u16143 .text {
  12001. position:absolute;
  12002. align-self:center;
  12003. padding:2px 2px 2px 2px;
  12004. box-sizing:border-box;
  12005. width:100%;
  12006. }
  12007. #u16143_text {
  12008. border-width:0px;
  12009. word-wrap:break-word;
  12010. text-transform:none;
  12011. visibility:hidden;
  12012. }
  12013. #u16144_input {
  12014. position:absolute;
  12015. left:0px;
  12016. top:0px;
  12017. width:115px;
  12018. height:23px;
  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:#AAAAAA;
  12026. vertical-align:none;
  12027. text-align:left;
  12028. text-transform:none;
  12029. background-color:transparent;
  12030. border-color:transparent;
  12031. }
  12032. #u16144_input.disabled {
  12033. position:absolute;
  12034. left:0px;
  12035. top:0px;
  12036. width:115px;
  12037. height:23px;
  12038. padding:2px 2px 2px 2px;
  12039. font-family:'ArialMT', 'Arial', sans-serif;
  12040. font-weight:400;
  12041. font-style:normal;
  12042. font-size:14px;
  12043. letter-spacing:normal;
  12044. color:#AAAAAA;
  12045. vertical-align:none;
  12046. text-align:left;
  12047. text-transform:none;
  12048. background-color:transparent;
  12049. border-color:transparent;
  12050. }
  12051. #u16144_div {
  12052. border-width:0px;
  12053. position:absolute;
  12054. left:0px;
  12055. top:0px;
  12056. width:115px;
  12057. height:23px;
  12058. background:inherit;
  12059. background-color:rgba(255, 255, 255, 1);
  12060. border-radius:0px;
  12061. filter:drop-shadow(none);
  12062. transition:none;
  12063. font-size:14px;
  12064. color:#AAAAAA;
  12065. }
  12066. #u16144 {
  12067. border-width:0px;
  12068. position:absolute;
  12069. left:1773px;
  12070. top:122px;
  12071. width:115px;
  12072. height:23px;
  12073. display:flex;
  12074. transition:none;
  12075. transform-origin:50% 50%;
  12076. font-size:14px;
  12077. color:#AAAAAA;
  12078. }
  12079. #u16144 .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. #u16144_div.disabled {
  12087. border-width:0px;
  12088. position:absolute;
  12089. left:0px;
  12090. top:0px;
  12091. width:115px;
  12092. height:23px;
  12093. background:inherit;
  12094. background-color:rgba(240, 240, 240, 1);
  12095. border-radius:0px;
  12096. filter:drop-shadow(none);
  12097. transition:none;
  12098. font-size:14px;
  12099. color:#AAAAAA;
  12100. }
  12101. #u16144.disabled {
  12102. }
  12103. .u16144_input_option {
  12104. font-size:14px;
  12105. }
  12106. #u16145 {
  12107. border-width:0px;
  12108. position:absolute;
  12109. left:0px;
  12110. top:0px;
  12111. width:0px;
  12112. height:0px;
  12113. }
  12114. #u16146_div {
  12115. border-width:0px;
  12116. position:absolute;
  12117. left:0px;
  12118. top:0px;
  12119. width:120px;
  12120. height:30px;
  12121. background:inherit;
  12122. background-color:rgba(255, 255, 255, 1);
  12123. box-sizing:border-box;
  12124. border-width:1px;
  12125. border-style:solid;
  12126. border-color:rgba(215, 215, 215, 1);
  12127. border-radius:4px;
  12128. filter:drop-shadow(none);
  12129. transition:none;
  12130. font-size:14px;
  12131. }
  12132. #u16146 {
  12133. border-width:0px;
  12134. position:absolute;
  12135. left:1640px;
  12136. top:120px;
  12137. width:120px;
  12138. height:30px;
  12139. display:flex;
  12140. transition:none;
  12141. transform-origin:50% 50%;
  12142. font-size:14px;
  12143. }
  12144. #u16146 .text {
  12145. position:absolute;
  12146. align-self:center;
  12147. padding:2px 2px 2px 2px;
  12148. box-sizing:border-box;
  12149. width:100%;
  12150. }
  12151. #u16146_text {
  12152. border-width:0px;
  12153. word-wrap:break-word;
  12154. text-transform:none;
  12155. visibility:hidden;
  12156. }
  12157. #u16147_input {
  12158. position:absolute;
  12159. left:0px;
  12160. top:0px;
  12161. width:115px;
  12162. height:23px;
  12163. padding:2px 2px 2px 2px;
  12164. font-family:'ArialMT', 'Arial', sans-serif;
  12165. font-weight:400;
  12166. font-style:normal;
  12167. font-size:14px;
  12168. letter-spacing:normal;
  12169. color:#AAAAAA;
  12170. vertical-align:none;
  12171. text-align:left;
  12172. text-transform:none;
  12173. background-color:transparent;
  12174. border-color:transparent;
  12175. }
  12176. #u16147_input.disabled {
  12177. position:absolute;
  12178. left:0px;
  12179. top:0px;
  12180. width:115px;
  12181. height:23px;
  12182. padding:2px 2px 2px 2px;
  12183. font-family:'ArialMT', 'Arial', sans-serif;
  12184. font-weight:400;
  12185. font-style:normal;
  12186. font-size:14px;
  12187. letter-spacing:normal;
  12188. color:#AAAAAA;
  12189. vertical-align:none;
  12190. text-align:left;
  12191. text-transform:none;
  12192. background-color:transparent;
  12193. border-color:transparent;
  12194. }
  12195. #u16147_div {
  12196. border-width:0px;
  12197. position:absolute;
  12198. left:0px;
  12199. top:0px;
  12200. width:115px;
  12201. height:23px;
  12202. background:inherit;
  12203. background-color:rgba(255, 255, 255, 1);
  12204. border-radius:0px;
  12205. filter:drop-shadow(none);
  12206. transition:none;
  12207. font-size:14px;
  12208. color:#AAAAAA;
  12209. }
  12210. #u16147 {
  12211. border-width:0px;
  12212. position:absolute;
  12213. left:1643px;
  12214. top:122px;
  12215. width:115px;
  12216. height:23px;
  12217. display:flex;
  12218. transition:none;
  12219. transform-origin:50% 50%;
  12220. font-size:14px;
  12221. color:#AAAAAA;
  12222. }
  12223. #u16147 .text {
  12224. position:absolute;
  12225. align-self:flex-start;
  12226. padding:2px 2px 2px 2px;
  12227. box-sizing:border-box;
  12228. width:100%;
  12229. }
  12230. #u16147_div.disabled {
  12231. border-width:0px;
  12232. position:absolute;
  12233. left:0px;
  12234. top:0px;
  12235. width:115px;
  12236. height:23px;
  12237. background:inherit;
  12238. background-color:rgba(240, 240, 240, 1);
  12239. border-radius:0px;
  12240. filter:drop-shadow(none);
  12241. transition:none;
  12242. font-size:14px;
  12243. color:#AAAAAA;
  12244. }
  12245. #u16147.disabled {
  12246. }
  12247. .u16147_input_option {
  12248. font-size:14px;
  12249. }
  12250. #u16148 {
  12251. border-width:0px;
  12252. position:absolute;
  12253. left:0px;
  12254. top:0px;
  12255. width:0px;
  12256. height:0px;
  12257. }
  12258. #u16149_div {
  12259. border-width:0px;
  12260. position:absolute;
  12261. left:0px;
  12262. top:0px;
  12263. width:120px;
  12264. height:30px;
  12265. background:inherit;
  12266. background-color:rgba(255, 255, 255, 1);
  12267. box-sizing:border-box;
  12268. border-width:1px;
  12269. border-style:solid;
  12270. border-color:rgba(201, 201, 201, 1);
  12271. border-radius:4px;
  12272. filter:drop-shadow(none);
  12273. transition:none;
  12274. font-family:"Microsoft YaHei", sans-serif;
  12275. font-weight:400;
  12276. font-style:normal;
  12277. font-size:14px;
  12278. color:#CCCCCC;
  12279. text-align:left;
  12280. }
  12281. #u16149 {
  12282. border-width:0px;
  12283. position:absolute;
  12284. left:2030px;
  12285. top:120px;
  12286. width:120px;
  12287. height:30px;
  12288. display:flex;
  12289. transition:none;
  12290. transform-origin:50% 50%;
  12291. font-family:"Microsoft YaHei", sans-serif;
  12292. font-weight:400;
  12293. font-style:normal;
  12294. font-size:14px;
  12295. color:#CCCCCC;
  12296. text-align:left;
  12297. }
  12298. #u16149 .text {
  12299. position:absolute;
  12300. align-self:center;
  12301. padding:2px 8px 2px 8px;
  12302. box-sizing:border-box;
  12303. width:100%;
  12304. }
  12305. #u16149_text {
  12306. border-width:0px;
  12307. word-wrap:break-word;
  12308. text-transform:none;
  12309. visibility:hidden;
  12310. }
  12311. #u16150_input {
  12312. position:absolute;
  12313. left:0px;
  12314. top:0px;
  12315. width:109px;
  12316. height:25px;
  12317. padding:2px 2px 2px 2px;
  12318. font-family:"Microsoft YaHei", sans-serif;
  12319. font-weight:400;
  12320. font-style:normal;
  12321. font-size:10px;
  12322. letter-spacing:normal;
  12323. color:#000000;
  12324. vertical-align:none;
  12325. text-align:left;
  12326. text-transform:none;
  12327. background-color:transparent;
  12328. border-color:transparent;
  12329. }
  12330. #u16150_input.hint {
  12331. position:absolute;
  12332. left:0px;
  12333. top:0px;
  12334. width:109px;
  12335. height:25px;
  12336. padding:2px 2px 2px 2px;
  12337. font-family:"Microsoft YaHei", sans-serif;
  12338. font-weight:400;
  12339. font-style:normal;
  12340. font-size:12px;
  12341. letter-spacing:normal;
  12342. color:#AAAAAA;
  12343. vertical-align:none;
  12344. text-align:left;
  12345. text-transform:none;
  12346. background-color:transparent;
  12347. border-color:transparent;
  12348. }
  12349. #u16150_input.disabled {
  12350. position:absolute;
  12351. left:0px;
  12352. top:0px;
  12353. width:109px;
  12354. height:25px;
  12355. padding:2px 2px 2px 2px;
  12356. font-family:"Microsoft YaHei", sans-serif;
  12357. font-weight:400;
  12358. font-style:normal;
  12359. font-size:10px;
  12360. letter-spacing:normal;
  12361. color:#000000;
  12362. vertical-align:none;
  12363. text-align:left;
  12364. text-transform:none;
  12365. background-color:transparent;
  12366. border-color:transparent;
  12367. }
  12368. #u16150_input.hint.disabled {
  12369. position:absolute;
  12370. left:0px;
  12371. top:0px;
  12372. width:109px;
  12373. height:25px;
  12374. padding:2px 2px 2px 2px;
  12375. font-family:"Microsoft YaHei", sans-serif;
  12376. font-weight:400;
  12377. font-style:normal;
  12378. font-size:12px;
  12379. letter-spacing:normal;
  12380. color:#AAAAAA;
  12381. vertical-align:none;
  12382. text-align:left;
  12383. text-transform:none;
  12384. background-color:transparent;
  12385. border-color:transparent;
  12386. }
  12387. #u16150_div {
  12388. border-width:0px;
  12389. position:absolute;
  12390. left:0px;
  12391. top:0px;
  12392. width:109px;
  12393. height:25px;
  12394. background:inherit;
  12395. background-color:rgba(255, 255, 255, 1);
  12396. border-radius:0px;
  12397. filter:drop-shadow(none);
  12398. transition:none;
  12399. font-family:"Microsoft YaHei", sans-serif;
  12400. font-weight:400;
  12401. font-style:normal;
  12402. font-size:10px;
  12403. }
  12404. #u16150 {
  12405. border-width:0px;
  12406. position:absolute;
  12407. left:2037px;
  12408. top:121px;
  12409. width:109px;
  12410. height:25px;
  12411. display:flex;
  12412. transition:none;
  12413. transform-origin:50% 50%;
  12414. font-family:"Microsoft YaHei", sans-serif;
  12415. font-weight:400;
  12416. font-style:normal;
  12417. font-size:10px;
  12418. }
  12419. #u16150 .text {
  12420. position:absolute;
  12421. align-self:center;
  12422. padding:2px 2px 2px 2px;
  12423. box-sizing:border-box;
  12424. width:100%;
  12425. }
  12426. #u16150_div.hint {
  12427. border-width:0px;
  12428. position:absolute;
  12429. left:0px;
  12430. top:0px;
  12431. width:109px;
  12432. height:25px;
  12433. background:inherit;
  12434. background-color:rgba(255, 255, 255, 1);
  12435. border-radius:0px;
  12436. filter:drop-shadow(none);
  12437. transition:none;
  12438. font-family:"Microsoft YaHei", sans-serif;
  12439. font-weight:400;
  12440. font-style:normal;
  12441. font-size:10px;
  12442. }
  12443. #u16150.hint {
  12444. }
  12445. #u16150_div.disabled {
  12446. border-width:0px;
  12447. position:absolute;
  12448. left:0px;
  12449. top:0px;
  12450. width:109px;
  12451. height:25px;
  12452. background:inherit;
  12453. background-color:rgba(240, 240, 240, 1);
  12454. border-radius:0px;
  12455. filter:drop-shadow(none);
  12456. transition:none;
  12457. font-family:"Microsoft YaHei", sans-serif;
  12458. font-weight:400;
  12459. font-style:normal;
  12460. font-size:10px;
  12461. }
  12462. #u16150.disabled {
  12463. }
  12464. #u16150_div.hint.disabled {
  12465. border-width:0px;
  12466. position:absolute;
  12467. left:0px;
  12468. top:0px;
  12469. width:109px;
  12470. height:25px;
  12471. background:inherit;
  12472. background-color:rgba(240, 240, 240, 1);
  12473. border-radius:0px;
  12474. filter:drop-shadow(none);
  12475. transition:none;
  12476. font-family:"Microsoft YaHei", sans-serif;
  12477. font-weight:400;
  12478. font-style:normal;
  12479. font-size:10px;
  12480. }
  12481. #u16150.hint.disabled {
  12482. }
  12483. #u16151 {
  12484. border-width:0px;
  12485. position:absolute;
  12486. left:0px;
  12487. top:0px;
  12488. width:0px;
  12489. height:0px;
  12490. }
  12491. #u16152 {
  12492. border-width:0px;
  12493. position:absolute;
  12494. left:0px;
  12495. top:0px;
  12496. width:0px;
  12497. height:0px;
  12498. }
  12499. #u16153_div {
  12500. border-width:0px;
  12501. position:absolute;
  12502. left:0px;
  12503. top:0px;
  12504. width:380px;
  12505. height:160px;
  12506. background:inherit;
  12507. background-color:rgba(255, 255, 255, 1);
  12508. box-sizing:border-box;
  12509. border-width:1px;
  12510. border-style:solid;
  12511. border-color:rgba(242, 242, 242, 1);
  12512. border-radius:4px;
  12513. filter:drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.4470588235294118));
  12514. transition:none;
  12515. font-family:"Microsoft YaHei", sans-serif;
  12516. font-weight:400;
  12517. font-style:normal;
  12518. }
  12519. #u16153 {
  12520. border-width:0px;
  12521. position:absolute;
  12522. left:1955px;
  12523. top:368px;
  12524. width:380px;
  12525. height:160px;
  12526. display:flex;
  12527. transition:none;
  12528. transform-origin:50% 50%;
  12529. font-family:"Microsoft YaHei", sans-serif;
  12530. font-weight:400;
  12531. font-style:normal;
  12532. }
  12533. #u16153 .text {
  12534. position:absolute;
  12535. align-self:center;
  12536. padding:2px 2px 2px 2px;
  12537. box-sizing:border-box;
  12538. width:100%;
  12539. }
  12540. #u16153_text {
  12541. border-width:0px;
  12542. word-wrap:break-word;
  12543. text-transform:none;
  12544. visibility:hidden;
  12545. }
  12546. #u16154_div {
  12547. border-width:0px;
  12548. position:absolute;
  12549. left:0px;
  12550. top:0px;
  12551. width:217px;
  12552. height:21px;
  12553. background:inherit;
  12554. background-color:rgba(255, 255, 255, 0);
  12555. border-radius:0px;
  12556. filter:drop-shadow(none);
  12557. transition:none;
  12558. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  12559. font-weight:650;
  12560. font-style:normal;
  12561. font-size:18px;
  12562. color:#000000;
  12563. line-height:22px;
  12564. }
  12565. #u16154 {
  12566. border-width:0px;
  12567. position:absolute;
  12568. left:2015px;
  12569. top:393px;
  12570. width:217px;
  12571. height:21px;
  12572. display:flex;
  12573. transition:none;
  12574. transform-origin:50% 50%;
  12575. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  12576. font-weight:650;
  12577. font-style:normal;
  12578. font-size:18px;
  12579. color:#000000;
  12580. line-height:22px;
  12581. }
  12582. #u16154 .text {
  12583. position:absolute;
  12584. align-self:flex-start;
  12585. padding:0px 0px 0px 0px;
  12586. box-sizing:border-box;
  12587. width:100%;
  12588. }
  12589. #u16154_text {
  12590. border-width:0px;
  12591. white-space:nowrap;
  12592. text-transform:none;
  12593. }
  12594. #u16155_div {
  12595. border-width:0px;
  12596. position:absolute;
  12597. left:0px;
  12598. top:0px;
  12599. width:61px;
  12600. height:32px;
  12601. background:inherit;
  12602. background-color:rgba(24, 144, 255, 1);
  12603. border-radius:4px;
  12604. filter:drop-shadow(none);
  12605. transition:none;
  12606. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12607. font-weight:400;
  12608. font-style:normal;
  12609. font-size:14px;
  12610. color:#FFFFFF;
  12611. }
  12612. #u16155 {
  12613. border-width:0px;
  12614. position:absolute;
  12615. left:2254px;
  12616. top:480px;
  12617. width:61px;
  12618. height:32px;
  12619. display:flex;
  12620. transition:none;
  12621. transform-origin:50% 50%;
  12622. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12623. font-weight:400;
  12624. font-style:normal;
  12625. font-size:14px;
  12626. color:#FFFFFF;
  12627. }
  12628. #u16155 .text {
  12629. position:absolute;
  12630. align-self:center;
  12631. padding:2px 16px 2px 16px;
  12632. box-sizing:border-box;
  12633. width:100%;
  12634. }
  12635. #u16155_text {
  12636. border-width:0px;
  12637. white-space:nowrap;
  12638. text-transform:none;
  12639. }
  12640. #u16156 {
  12641. border-width:0px;
  12642. position:absolute;
  12643. left:1984px;
  12644. top:397px;
  12645. width:20px;
  12646. height:20px;
  12647. display:flex;
  12648. transition:none;
  12649. }
  12650. #u16156 .text {
  12651. position:absolute;
  12652. align-self:center;
  12653. padding:2px 2px 2px 2px;
  12654. box-sizing:border-box;
  12655. width:100%;
  12656. }
  12657. #u16156_img {
  12658. border-width:0px;
  12659. position:absolute;
  12660. left:0px;
  12661. top:0px;
  12662. width:20px;
  12663. height:20px;
  12664. }
  12665. #u16156_text {
  12666. border-width:0px;
  12667. word-wrap:break-word;
  12668. text-transform:none;
  12669. visibility:hidden;
  12670. }
  12671. #u16157_div {
  12672. border-width:0px;
  12673. position:absolute;
  12674. left:0px;
  12675. top:0px;
  12676. width:300px;
  12677. height:44px;
  12678. background:inherit;
  12679. background-color:rgba(255, 255, 255, 0);
  12680. border-radius:0px;
  12681. filter:drop-shadow(none);
  12682. transition:none;
  12683. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12684. font-weight:400;
  12685. font-style:normal;
  12686. font-size:14px;
  12687. color:#7F7F7F;
  12688. line-height:22px;
  12689. }
  12690. #u16157 {
  12691. border-width:0px;
  12692. position:absolute;
  12693. left:2015px;
  12694. top:427px;
  12695. width:300px;
  12696. height:44px;
  12697. display:flex;
  12698. transition:none;
  12699. transform-origin:50% 50%;
  12700. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12701. font-weight:400;
  12702. font-style:normal;
  12703. font-size:14px;
  12704. color:#7F7F7F;
  12705. line-height:22px;
  12706. }
  12707. #u16157 .text {
  12708. position:absolute;
  12709. align-self:flex-start;
  12710. padding:0px 0px 0px 0px;
  12711. box-sizing:border-box;
  12712. width:100%;
  12713. }
  12714. #u16157_text {
  12715. border-width:0px;
  12716. word-wrap:break-word;
  12717. text-transform:none;
  12718. }
  12719. #u16158_div {
  12720. border-width:0px;
  12721. position:absolute;
  12722. left:0px;
  12723. top:0px;
  12724. width:66px;
  12725. height:32px;
  12726. background:inherit;
  12727. background-color:rgba(255, 255, 255, 1);
  12728. box-sizing:border-box;
  12729. border-width:1px;
  12730. border-style:solid;
  12731. border-color:rgba(217, 217, 217, 1);
  12732. border-radius:4px;
  12733. filter:drop-shadow(none);
  12734. transition:none;
  12735. font-family:"Microsoft YaHei", sans-serif;
  12736. font-weight:400;
  12737. font-style:normal;
  12738. font-size:14px;
  12739. color:rgba(0, 0, 0, 0.6470588235294118);
  12740. line-height:21px;
  12741. }
  12742. #u16158 {
  12743. border-width:0px;
  12744. position:absolute;
  12745. left:2171px;
  12746. top:480px;
  12747. width:66px;
  12748. height:32px;
  12749. display:flex;
  12750. transition:none;
  12751. transform-origin:50% 50%;
  12752. font-family:"Microsoft YaHei", sans-serif;
  12753. font-weight:400;
  12754. font-style:normal;
  12755. font-size:14px;
  12756. color:rgba(0, 0, 0, 0.6470588235294118);
  12757. line-height:21px;
  12758. }
  12759. #u16158 .text {
  12760. position:absolute;
  12761. align-self:center;
  12762. padding:2px 16px 2px 16px;
  12763. box-sizing:border-box;
  12764. width:100%;
  12765. }
  12766. #u16158_text {
  12767. border-width:0px;
  12768. white-space:nowrap;
  12769. text-transform:none;
  12770. }