styles.css 162 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-0px;
  6. width:1600px;
  7. margin-left:auto;
  8. margin-right:auto;
  9. text-align:left;
  10. }
  11. .form_sketch {
  12. border-color:transparent;
  13. background-color:transparent;
  14. }
  15. #base {
  16. position:absolute;
  17. z-index:0;
  18. }
  19. #u18957 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1600px;
  25. height:1250px;
  26. }
  27. #u18958_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. #u18958 {
  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. #u18958 .text {
  52. position:absolute;
  53. align-self:center;
  54. padding:2px 2px 2px 2px;
  55. box-sizing:border-box;
  56. width:100%;
  57. }
  58. #u18958_text {
  59. border-width:0px;
  60. word-wrap:break-word;
  61. text-transform:none;
  62. visibility:hidden;
  63. }
  64. #u18959_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. #u18959 {
  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. #u18959 .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. #u18959_text {
  100. border-width:0px;
  101. white-space:nowrap;
  102. text-transform:none;
  103. }
  104. #u18960_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. #u18960 {
  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. #u18960 .text {
  131. position:absolute;
  132. align-self:center;
  133. padding:2px 2px 2px 2px;
  134. box-sizing:border-box;
  135. width:100%;
  136. }
  137. #u18960_text {
  138. border-width:0px;
  139. word-wrap:break-word;
  140. text-transform:none;
  141. visibility:hidden;
  142. }
  143. #u18961 {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:0px;
  149. height:0px;
  150. }
  151. #u18962 {
  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. #u18962 .text {
  162. position:absolute;
  163. align-self:center;
  164. padding:2px 2px 2px 2px;
  165. box-sizing:border-box;
  166. width:100%;
  167. }
  168. #u18962_img {
  169. border-width:0px;
  170. position:absolute;
  171. left:0px;
  172. top:0px;
  173. width:31px;
  174. height:31px;
  175. }
  176. #u18962_text {
  177. border-width:0px;
  178. word-wrap:break-word;
  179. text-transform:none;
  180. }
  181. #u18963_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. #u18963 {
  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. #u18963 .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. #u18963_text {
  223. border-width:0px;
  224. white-space:nowrap;
  225. text-transform:none;
  226. }
  227. #u18964_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. #u18964 {
  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. #u18964 .text {
  254. position:absolute;
  255. align-self:center;
  256. padding:2px 2px 2px 2px;
  257. box-sizing:border-box;
  258. width:100%;
  259. }
  260. #u18964_text {
  261. border-width:0px;
  262. word-wrap:break-word;
  263. text-transform:none;
  264. visibility:hidden;
  265. }
  266. #u18965 {
  267. border-width:0px;
  268. position:absolute;
  269. left:0px;
  270. top:0px;
  271. width:0px;
  272. height:0px;
  273. }
  274. #u18966_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. #u18966 {
  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. #u18966 .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. #u18966_text {
  316. border-width:0px;
  317. white-space:nowrap;
  318. text-transform:none;
  319. }
  320. #u18967 {
  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. #u18967 .text {
  331. position:absolute;
  332. align-self:center;
  333. padding:2px 2px 2px 2px;
  334. box-sizing:border-box;
  335. width:100%;
  336. }
  337. #u18967_img {
  338. border-width:0px;
  339. position:absolute;
  340. left:0px;
  341. top:0px;
  342. width:14px;
  343. height:14px;
  344. }
  345. #u18967_text {
  346. border-width:0px;
  347. word-wrap:break-word;
  348. text-transform:none;
  349. visibility:hidden;
  350. }
  351. #u18968 {
  352. border-width:0px;
  353. position:absolute;
  354. left:0px;
  355. top:0px;
  356. width:0px;
  357. height:0px;
  358. }
  359. #u18969_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. #u18969 {
  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. #u18969 .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. #u18969_text {
  401. border-width:0px;
  402. white-space:nowrap;
  403. text-transform:none;
  404. }
  405. #u18970 {
  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. #u18970 .text {
  416. position:absolute;
  417. align-self:center;
  418. padding:2px 2px 2px 2px;
  419. box-sizing:border-box;
  420. width:100%;
  421. }
  422. #u18970_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:14px;
  428. height:14px;
  429. }
  430. #u18970_text {
  431. border-width:0px;
  432. word-wrap:break-word;
  433. text-transform:none;
  434. visibility:hidden;
  435. }
  436. #u18971 {
  437. border-width:0px;
  438. position:absolute;
  439. left:0px;
  440. top:0px;
  441. width:0px;
  442. height:0px;
  443. }
  444. #u18972_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. #u18972 {
  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. #u18972 .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. #u18972_text {
  486. border-width:0px;
  487. white-space:nowrap;
  488. text-transform:none;
  489. }
  490. #u18973 {
  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. #u18973 .text {
  501. position:absolute;
  502. align-self:center;
  503. padding:2px 2px 2px 2px;
  504. box-sizing:border-box;
  505. width:100%;
  506. }
  507. #u18973_img {
  508. border-width:0px;
  509. position:absolute;
  510. left:0px;
  511. top:0px;
  512. width:14px;
  513. height:14px;
  514. }
  515. #u18973_text {
  516. border-width:0px;
  517. word-wrap:break-word;
  518. text-transform:none;
  519. visibility:hidden;
  520. }
  521. #u18974 {
  522. border-width:0px;
  523. position:absolute;
  524. left:0px;
  525. top:0px;
  526. width:0px;
  527. height:0px;
  528. }
  529. #u18975_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. #u18975 {
  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. #u18975 .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. #u18975_text {
  571. border-width:0px;
  572. white-space:nowrap;
  573. text-transform:none;
  574. }
  575. #u18976 {
  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. #u18976 .text {
  586. position:absolute;
  587. align-self:center;
  588. padding:2px 2px 2px 2px;
  589. box-sizing:border-box;
  590. width:100%;
  591. }
  592. #u18976_img {
  593. border-width:0px;
  594. position:absolute;
  595. left:0px;
  596. top:0px;
  597. width:14px;
  598. height:14px;
  599. }
  600. #u18976_text {
  601. border-width:0px;
  602. word-wrap:break-word;
  603. text-transform:none;
  604. visibility:hidden;
  605. }
  606. #u18977 {
  607. border-width:0px;
  608. position:absolute;
  609. left:0px;
  610. top:0px;
  611. width:0px;
  612. height:0px;
  613. }
  614. #u18978_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. #u18978 {
  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. #u18978 .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. #u18978_text {
  656. border-width:0px;
  657. white-space:nowrap;
  658. text-transform:none;
  659. }
  660. #u18979 {
  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. #u18979 .text {
  671. position:absolute;
  672. align-self:center;
  673. padding:2px 2px 2px 2px;
  674. box-sizing:border-box;
  675. width:100%;
  676. }
  677. #u18979_img {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:14px;
  683. height:14px;
  684. }
  685. #u18979_text {
  686. border-width:0px;
  687. word-wrap:break-word;
  688. text-transform:none;
  689. visibility:hidden;
  690. }
  691. #u18980 {
  692. border-width:0px;
  693. position:absolute;
  694. left:0px;
  695. top:0px;
  696. width:0px;
  697. height:0px;
  698. }
  699. #u18981_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. #u18981 {
  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. #u18981 .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. #u18981_text {
  741. border-width:0px;
  742. white-space:nowrap;
  743. text-transform:none;
  744. }
  745. #u18982 {
  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. #u18982 .text {
  756. position:absolute;
  757. align-self:center;
  758. padding:2px 2px 2px 2px;
  759. box-sizing:border-box;
  760. width:100%;
  761. }
  762. #u18982_img {
  763. border-width:0px;
  764. position:absolute;
  765. left:0px;
  766. top:0px;
  767. width:14px;
  768. height:14px;
  769. }
  770. #u18982_text {
  771. border-width:0px;
  772. word-wrap:break-word;
  773. text-transform:none;
  774. visibility:hidden;
  775. }
  776. #u18983 {
  777. border-width:0px;
  778. position:absolute;
  779. left:0px;
  780. top:0px;
  781. width:0px;
  782. height:0px;
  783. }
  784. #u18984_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. #u18984 {
  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. #u18984 .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. #u18984_text {
  826. border-width:0px;
  827. white-space:nowrap;
  828. text-transform:none;
  829. }
  830. #u18985 {
  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. #u18985 .text {
  841. position:absolute;
  842. align-self:center;
  843. padding:2px 2px 2px 2px;
  844. box-sizing:border-box;
  845. width:100%;
  846. }
  847. #u18985_img {
  848. border-width:0px;
  849. position:absolute;
  850. left:0px;
  851. top:0px;
  852. width:14px;
  853. height:14px;
  854. }
  855. #u18985_text {
  856. border-width:0px;
  857. word-wrap:break-word;
  858. text-transform:none;
  859. visibility:hidden;
  860. }
  861. #u18986 {
  862. border-width:0px;
  863. position:absolute;
  864. left:0px;
  865. top:0px;
  866. width:0px;
  867. height:0px;
  868. }
  869. #u18987_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. #u18987 {
  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. #u18987 .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. #u18987_text {
  911. border-width:0px;
  912. white-space:nowrap;
  913. text-transform:none;
  914. }
  915. #u18988 {
  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. #u18988 .text {
  926. position:absolute;
  927. align-self:center;
  928. padding:2px 2px 2px 2px;
  929. box-sizing:border-box;
  930. width:100%;
  931. }
  932. #u18988_img {
  933. border-width:0px;
  934. position:absolute;
  935. left:0px;
  936. top:0px;
  937. width:14px;
  938. height:14px;
  939. }
  940. #u18988_text {
  941. border-width:0px;
  942. word-wrap:break-word;
  943. text-transform:none;
  944. visibility:hidden;
  945. }
  946. #u18989 {
  947. border-width:0px;
  948. position:absolute;
  949. left:0px;
  950. top:0px;
  951. width:0px;
  952. height:0px;
  953. }
  954. #u18990_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. #u18990 {
  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. #u18990 .text {
  987. position:absolute;
  988. align-self:center;
  989. padding:0px 0px 0px 0px;
  990. box-sizing:border-box;
  991. width:100%;
  992. }
  993. #u18990_text {
  994. border-width:0px;
  995. white-space:nowrap;
  996. text-transform:none;
  997. }
  998. #u18991 {
  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. #u18991 .text {
  1009. position:absolute;
  1010. align-self:center;
  1011. padding:2px 2px 2px 2px;
  1012. box-sizing:border-box;
  1013. width:100%;
  1014. }
  1015. #u18991_img {
  1016. border-width:0px;
  1017. position:absolute;
  1018. left:0px;
  1019. top:0px;
  1020. width:22px;
  1021. height:22px;
  1022. }
  1023. #u18991_text {
  1024. border-width:0px;
  1025. word-wrap:break-word;
  1026. text-transform:none;
  1027. visibility:hidden;
  1028. }
  1029. #u18992 {
  1030. border-width:0px;
  1031. position:absolute;
  1032. left:0px;
  1033. top:0px;
  1034. width:0px;
  1035. height:0px;
  1036. }
  1037. #u18993_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. #u18993 {
  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. #u18993 .text {
  1070. position:absolute;
  1071. align-self:center;
  1072. padding:0px 0px 0px 0px;
  1073. box-sizing:border-box;
  1074. width:100%;
  1075. }
  1076. #u18993_text {
  1077. border-width:0px;
  1078. white-space:nowrap;
  1079. text-transform:none;
  1080. }
  1081. #u18994 {
  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. #u18994 .text {
  1092. position:absolute;
  1093. align-self:center;
  1094. padding:2px 2px 2px 2px;
  1095. box-sizing:border-box;
  1096. width:100%;
  1097. }
  1098. #u18994_img {
  1099. border-width:0px;
  1100. position:absolute;
  1101. left:0px;
  1102. top:0px;
  1103. width:22px;
  1104. height:22px;
  1105. }
  1106. #u18994_text {
  1107. border-width:0px;
  1108. word-wrap:break-word;
  1109. text-transform:none;
  1110. visibility:hidden;
  1111. }
  1112. #u18995 {
  1113. border-width:0px;
  1114. position:absolute;
  1115. left:0px;
  1116. top:0px;
  1117. width:0px;
  1118. height:0px;
  1119. }
  1120. #u18996_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. #u18996 {
  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. #u18996 .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. #u18996_text {
  1162. border-width:0px;
  1163. white-space:nowrap;
  1164. text-transform:none;
  1165. }
  1166. #u18997 {
  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. #u18997 .text {
  1177. position:absolute;
  1178. align-self:center;
  1179. padding:2px 2px 2px 2px;
  1180. box-sizing:border-box;
  1181. width:100%;
  1182. }
  1183. #u18997_img {
  1184. border-width:0px;
  1185. position:absolute;
  1186. left:0px;
  1187. top:0px;
  1188. width:14px;
  1189. height:14px;
  1190. }
  1191. #u18997_text {
  1192. border-width:0px;
  1193. word-wrap:break-word;
  1194. text-transform:none;
  1195. visibility:hidden;
  1196. }
  1197. #u18998 {
  1198. border-width:0px;
  1199. position:absolute;
  1200. left:0px;
  1201. top:0px;
  1202. width:0px;
  1203. height:0px;
  1204. }
  1205. #u18999_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. #u18999_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. #u18999_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. #u18999 {
  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. #u18999 .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. #u18999_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. #u18999.disabled {
  1294. }
  1295. .u18999_input_option {
  1296. font-size:14px;
  1297. }
  1298. #u19000 {
  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. #u19000 .text {
  1309. position:absolute;
  1310. align-self:center;
  1311. padding:2px 2px 2px 2px;
  1312. box-sizing:border-box;
  1313. width:100%;
  1314. }
  1315. #u19000_img {
  1316. border-width:0px;
  1317. position:absolute;
  1318. left:0px;
  1319. top:0px;
  1320. width:22px;
  1321. height:22px;
  1322. }
  1323. #u19000_text {
  1324. border-width:0px;
  1325. word-wrap:break-word;
  1326. text-transform:none;
  1327. visibility:hidden;
  1328. }
  1329. #u19001_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. #u19001 {
  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. #u19001 .text {
  1364. position:absolute;
  1365. align-self:center;
  1366. padding:0px 0px 0px 0px;
  1367. box-sizing:border-box;
  1368. width:100%;
  1369. }
  1370. #u19001_text {
  1371. border-width:0px;
  1372. word-wrap:break-word;
  1373. text-transform:none;
  1374. }
  1375. #u19002 {
  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. #u19002 .text {
  1386. position:absolute;
  1387. align-self:center;
  1388. padding:2px 2px 2px 2px;
  1389. box-sizing:border-box;
  1390. width:100%;
  1391. }
  1392. #u19002_img {
  1393. border-width:0px;
  1394. position:absolute;
  1395. left:0px;
  1396. top:0px;
  1397. width:2px;
  1398. height:12px;
  1399. }
  1400. #u19002_text {
  1401. border-width:0px;
  1402. word-wrap:break-word;
  1403. text-transform:none;
  1404. visibility:hidden;
  1405. }
  1406. #u19003 {
  1407. border-width:0px;
  1408. position:absolute;
  1409. left:0px;
  1410. top:0px;
  1411. width:0px;
  1412. height:0px;
  1413. }
  1414. #u19004_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. #u19004 {
  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. #u19004 .text {
  1447. position:absolute;
  1448. align-self:center;
  1449. padding:0px 0px 0px 0px;
  1450. box-sizing:border-box;
  1451. width:100%;
  1452. }
  1453. #u19004_text {
  1454. border-width:0px;
  1455. white-space:nowrap;
  1456. text-transform:none;
  1457. }
  1458. #u19005 {
  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. #u19005 .text {
  1469. position:absolute;
  1470. align-self:center;
  1471. padding:2px 2px 2px 2px;
  1472. box-sizing:border-box;
  1473. width:100%;
  1474. }
  1475. #u19005_img {
  1476. border-width:0px;
  1477. position:absolute;
  1478. left:0px;
  1479. top:0px;
  1480. width:22px;
  1481. height:22px;
  1482. }
  1483. #u19005_text {
  1484. border-width:0px;
  1485. word-wrap:break-word;
  1486. text-transform:none;
  1487. visibility:hidden;
  1488. }
  1489. #u19006 {
  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. #u19006 .text {
  1500. position:absolute;
  1501. align-self:center;
  1502. padding:2px 2px 2px 2px;
  1503. box-sizing:border-box;
  1504. width:100%;
  1505. }
  1506. #u19006_img {
  1507. border-width:0px;
  1508. position:absolute;
  1509. left:0px;
  1510. top:0px;
  1511. width:69px;
  1512. height:2px;
  1513. }
  1514. #u19006_text {
  1515. border-width:0px;
  1516. word-wrap:break-word;
  1517. text-transform:none;
  1518. visibility:hidden;
  1519. }
  1520. #u19007 {
  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. #u19007 .text {
  1531. position:absolute;
  1532. align-self:center;
  1533. padding:2px 2px 2px 2px;
  1534. box-sizing:border-box;
  1535. width:100%;
  1536. }
  1537. #u19007_img {
  1538. border-width:0px;
  1539. position:absolute;
  1540. left:0px;
  1541. top:0px;
  1542. width:69px;
  1543. height:2px;
  1544. }
  1545. #u19007_text {
  1546. border-width:0px;
  1547. word-wrap:break-word;
  1548. text-transform:none;
  1549. visibility:hidden;
  1550. }
  1551. #u19008 {
  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. #u19008 .text {
  1562. position:absolute;
  1563. align-self:center;
  1564. padding:2px 2px 2px 2px;
  1565. box-sizing:border-box;
  1566. width:100%;
  1567. }
  1568. #u19008_img {
  1569. border-width:0px;
  1570. position:absolute;
  1571. left:0px;
  1572. top:0px;
  1573. width:57px;
  1574. height:2px;
  1575. }
  1576. #u19008_text {
  1577. border-width:0px;
  1578. word-wrap:break-word;
  1579. text-transform:none;
  1580. visibility:hidden;
  1581. }
  1582. #u19009 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:0px;
  1586. top:0px;
  1587. width:0px;
  1588. height:0px;
  1589. }
  1590. #u19010_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. #u19010 {
  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. #u19010 .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. #u19010_text {
  1632. border-width:0px;
  1633. white-space:nowrap;
  1634. text-transform:none;
  1635. }
  1636. #u19011 {
  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. #u19011 .text {
  1647. position:absolute;
  1648. align-self:center;
  1649. padding:2px 2px 2px 2px;
  1650. box-sizing:border-box;
  1651. width:100%;
  1652. }
  1653. #u19011_img {
  1654. border-width:0px;
  1655. position:absolute;
  1656. left:0px;
  1657. top:0px;
  1658. width:18px;
  1659. height:14px;
  1660. }
  1661. #u19011_text {
  1662. border-width:0px;
  1663. word-wrap:break-word;
  1664. text-transform:none;
  1665. visibility:hidden;
  1666. }
  1667. #u19012_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. #u19012 {
  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. #u19012 .text {
  1692. position:absolute;
  1693. align-self:center;
  1694. padding:2px 2px 2px 2px;
  1695. box-sizing:border-box;
  1696. width:100%;
  1697. }
  1698. #u19012_text {
  1699. border-width:0px;
  1700. word-wrap:break-word;
  1701. text-transform:none;
  1702. visibility:hidden;
  1703. }
  1704. #u19013 {
  1705. border-width:0px;
  1706. position:absolute;
  1707. left:350px;
  1708. top:237px;
  1709. width:1219px;
  1710. height:275px;
  1711. }
  1712. #u19014 {
  1713. border-width:0px;
  1714. position:absolute;
  1715. left:0px;
  1716. top:0px;
  1717. width:102px;
  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. #u19014 .text {
  1728. position:absolute;
  1729. align-self:center;
  1730. padding:2px 2px 2px 0px;
  1731. box-sizing:border-box;
  1732. width:100%;
  1733. }
  1734. #u19014_img {
  1735. border-width:0px;
  1736. position:absolute;
  1737. left:0px;
  1738. top:0px;
  1739. width:102px;
  1740. height:35px;
  1741. }
  1742. #u19014_text {
  1743. border-width:0px;
  1744. word-wrap:break-word;
  1745. text-transform:none;
  1746. }
  1747. #u19015 {
  1748. border-width:0px;
  1749. position:absolute;
  1750. left:102px;
  1751. top:0px;
  1752. width:110px;
  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. #u19015 .text {
  1763. position:absolute;
  1764. align-self:center;
  1765. padding:2px 2px 2px 0px;
  1766. box-sizing:border-box;
  1767. width:100%;
  1768. }
  1769. #u19015_img {
  1770. border-width:0px;
  1771. position:absolute;
  1772. left:0px;
  1773. top:0px;
  1774. width:110px;
  1775. height:35px;
  1776. }
  1777. #u19015_text {
  1778. border-width:0px;
  1779. word-wrap:break-word;
  1780. text-transform:none;
  1781. }
  1782. #u19016 {
  1783. border-width:0px;
  1784. position:absolute;
  1785. left:212px;
  1786. top:0px;
  1787. width:72px;
  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. #u19016 .text {
  1798. position:absolute;
  1799. align-self:center;
  1800. padding:2px 2px 2px 0px;
  1801. box-sizing:border-box;
  1802. width:100%;
  1803. }
  1804. #u19016_img {
  1805. border-width:0px;
  1806. position:absolute;
  1807. left:0px;
  1808. top:0px;
  1809. width:72px;
  1810. height:35px;
  1811. }
  1812. #u19016_text {
  1813. border-width:0px;
  1814. word-wrap:break-word;
  1815. text-transform:none;
  1816. }
  1817. #u19017 {
  1818. border-width:0px;
  1819. position:absolute;
  1820. left:284px;
  1821. top:0px;
  1822. width:72px;
  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. #u19017 .text {
  1833. position:absolute;
  1834. align-self:center;
  1835. padding:2px 2px 2px 0px;
  1836. box-sizing:border-box;
  1837. width:100%;
  1838. }
  1839. #u19017_img {
  1840. border-width:0px;
  1841. position:absolute;
  1842. left:0px;
  1843. top:0px;
  1844. width:72px;
  1845. height:35px;
  1846. }
  1847. #u19017_text {
  1848. border-width:0px;
  1849. word-wrap:break-word;
  1850. text-transform:none;
  1851. }
  1852. #u19018 {
  1853. border-width:0px;
  1854. position:absolute;
  1855. left:357px;
  1856. top:0px;
  1857. width:72px;
  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. #u19018 .text {
  1868. position:absolute;
  1869. align-self:center;
  1870. padding:2px 2px 2px 0px;
  1871. box-sizing:border-box;
  1872. width:100%;
  1873. }
  1874. #u19018_img {
  1875. border-width:0px;
  1876. position:absolute;
  1877. left:0px;
  1878. top:0px;
  1879. width:72px;
  1880. height:35px;
  1881. }
  1882. #u19018_text {
  1883. border-width:0px;
  1884. word-wrap:break-word;
  1885. text-transform:none;
  1886. }
  1887. #u19019 {
  1888. border-width:0px;
  1889. position:absolute;
  1890. left:429px;
  1891. top:0px;
  1892. width:91px;
  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. #u19019 .text {
  1903. position:absolute;
  1904. align-self:center;
  1905. padding:2px 2px 2px 0px;
  1906. box-sizing:border-box;
  1907. width:100%;
  1908. }
  1909. #u19019_img {
  1910. border-width:0px;
  1911. position:absolute;
  1912. left:0px;
  1913. top:0px;
  1914. width:91px;
  1915. height:35px;
  1916. }
  1917. #u19019_text {
  1918. border-width:0px;
  1919. word-wrap:break-word;
  1920. text-transform:none;
  1921. }
  1922. #u19020 {
  1923. border-width:0px;
  1924. position:absolute;
  1925. left:520px;
  1926. top:0px;
  1927. width:81px;
  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. #u19020 .text {
  1938. position:absolute;
  1939. align-self:center;
  1940. padding:2px 2px 2px 0px;
  1941. box-sizing:border-box;
  1942. width:100%;
  1943. }
  1944. #u19020_img {
  1945. border-width:0px;
  1946. position:absolute;
  1947. left:0px;
  1948. top:0px;
  1949. width:81px;
  1950. height:35px;
  1951. }
  1952. #u19020_text {
  1953. border-width:0px;
  1954. word-wrap:break-word;
  1955. text-transform:none;
  1956. }
  1957. #u19021 {
  1958. border-width:0px;
  1959. position:absolute;
  1960. left:601px;
  1961. top:0px;
  1962. width:81px;
  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. #u19021 .text {
  1973. position:absolute;
  1974. align-self:center;
  1975. padding:2px 2px 2px 0px;
  1976. box-sizing:border-box;
  1977. width:100%;
  1978. }
  1979. #u19021_img {
  1980. border-width:0px;
  1981. position:absolute;
  1982. left:0px;
  1983. top:0px;
  1984. width:81px;
  1985. height:35px;
  1986. }
  1987. #u19021_text {
  1988. border-width:0px;
  1989. word-wrap:break-word;
  1990. text-transform:none;
  1991. }
  1992. #u19022 {
  1993. border-width:0px;
  1994. position:absolute;
  1995. left:682px;
  1996. top:0px;
  1997. width:72px;
  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. #u19022 .text {
  2008. position:absolute;
  2009. align-self:center;
  2010. padding:2px 2px 2px 0px;
  2011. box-sizing:border-box;
  2012. width:100%;
  2013. }
  2014. #u19022_img {
  2015. border-width:0px;
  2016. position:absolute;
  2017. left:0px;
  2018. top:0px;
  2019. width:72px;
  2020. height:35px;
  2021. }
  2022. #u19022_text {
  2023. border-width:0px;
  2024. word-wrap:break-word;
  2025. text-transform:none;
  2026. }
  2027. #u19023 {
  2028. border-width:0px;
  2029. position:absolute;
  2030. left:754px;
  2031. top:0px;
  2032. width:91px;
  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. #u19023 .text {
  2043. position:absolute;
  2044. align-self:center;
  2045. padding:2px 2px 2px 0px;
  2046. box-sizing:border-box;
  2047. width:100%;
  2048. }
  2049. #u19023_img {
  2050. border-width:0px;
  2051. position:absolute;
  2052. left:0px;
  2053. top:0px;
  2054. width:91px;
  2055. height:35px;
  2056. }
  2057. #u19023_text {
  2058. border-width:0px;
  2059. word-wrap:break-word;
  2060. text-transform:none;
  2061. }
  2062. #u19024 {
  2063. border-width:0px;
  2064. position:absolute;
  2065. left:845px;
  2066. top:0px;
  2067. width:80px;
  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. #u19024 .text {
  2078. position:absolute;
  2079. align-self:center;
  2080. padding:2px 2px 2px 0px;
  2081. box-sizing:border-box;
  2082. width:100%;
  2083. }
  2084. #u19024_img {
  2085. border-width:0px;
  2086. position:absolute;
  2087. left:0px;
  2088. top:0px;
  2089. width:80px;
  2090. height:35px;
  2091. }
  2092. #u19024_text {
  2093. border-width:0px;
  2094. word-wrap:break-word;
  2095. text-transform:none;
  2096. }
  2097. #u19025 {
  2098. border-width:0px;
  2099. position:absolute;
  2100. left:925px;
  2101. top:0px;
  2102. width:83px;
  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. #u19025 .text {
  2113. position:absolute;
  2114. align-self:center;
  2115. padding:2px 2px 2px 0px;
  2116. box-sizing:border-box;
  2117. width:100%;
  2118. }
  2119. #u19025_img {
  2120. border-width:0px;
  2121. position:absolute;
  2122. left:0px;
  2123. top:0px;
  2124. width:83px;
  2125. height:35px;
  2126. }
  2127. #u19025_text {
  2128. border-width:0px;
  2129. word-wrap:break-word;
  2130. text-transform:none;
  2131. }
  2132. #u19026 {
  2133. border-width:0px;
  2134. position:absolute;
  2135. left:1008px;
  2136. top:0px;
  2137. width:72px;
  2138. height:35px;
  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:#FFFFFF;
  2146. }
  2147. #u19026 .text {
  2148. position:absolute;
  2149. align-self:center;
  2150. padding:2px 2px 2px 0px;
  2151. box-sizing:border-box;
  2152. width:100%;
  2153. }
  2154. #u19026_img {
  2155. border-width:0px;
  2156. position:absolute;
  2157. left:0px;
  2158. top:0px;
  2159. width:72px;
  2160. height:35px;
  2161. }
  2162. #u19026_text {
  2163. border-width:0px;
  2164. word-wrap:break-word;
  2165. text-transform:none;
  2166. }
  2167. #u19027 {
  2168. border-width:0px;
  2169. position:absolute;
  2170. left:1079px;
  2171. top:0px;
  2172. width:72px;
  2173. height:35px;
  2174. display:flex;
  2175. transition:none;
  2176. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2177. font-weight:400;
  2178. font-style:normal;
  2179. font-size:12px;
  2180. color:#FFFFFF;
  2181. }
  2182. #u19027 .text {
  2183. position:absolute;
  2184. align-self:center;
  2185. padding:2px 2px 2px 0px;
  2186. box-sizing:border-box;
  2187. width:100%;
  2188. }
  2189. #u19027_img {
  2190. border-width:0px;
  2191. position:absolute;
  2192. left:0px;
  2193. top:0px;
  2194. width:72px;
  2195. height:35px;
  2196. }
  2197. #u19027_text {
  2198. border-width:0px;
  2199. word-wrap:break-word;
  2200. text-transform:none;
  2201. }
  2202. #u19028 {
  2203. border-width:0px;
  2204. position:absolute;
  2205. left:1151px;
  2206. top:0px;
  2207. width:68px;
  2208. height:35px;
  2209. display:flex;
  2210. transition:none;
  2211. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2212. font-weight:400;
  2213. font-style:normal;
  2214. font-size:12px;
  2215. color:#FFFFFF;
  2216. }
  2217. #u19028 .text {
  2218. position:absolute;
  2219. align-self:center;
  2220. padding:2px 2px 2px 0px;
  2221. box-sizing:border-box;
  2222. width:100%;
  2223. }
  2224. #u19028_img {
  2225. border-width:0px;
  2226. position:absolute;
  2227. left:0px;
  2228. top:0px;
  2229. width:68px;
  2230. height:35px;
  2231. }
  2232. #u19028_text {
  2233. border-width:0px;
  2234. word-wrap:break-word;
  2235. text-transform:none;
  2236. }
  2237. #u19029 {
  2238. border-width:0px;
  2239. position:absolute;
  2240. left:0px;
  2241. top:35px;
  2242. width:102px;
  2243. height:44px;
  2244. display:flex;
  2245. transition:none;
  2246. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2247. font-weight:400;
  2248. font-style:normal;
  2249. font-size:12px;
  2250. color:#333333;
  2251. line-height:40px;
  2252. }
  2253. #u19029 .text {
  2254. position:absolute;
  2255. align-self:center;
  2256. padding:2px 2px 2px 0px;
  2257. box-sizing:border-box;
  2258. width:100%;
  2259. }
  2260. #u19029_img {
  2261. border-width:0px;
  2262. position:absolute;
  2263. left:0px;
  2264. top:0px;
  2265. width:102px;
  2266. height:44px;
  2267. }
  2268. #u19029_text {
  2269. border-width:0px;
  2270. word-wrap:break-word;
  2271. text-transform:none;
  2272. }
  2273. #u19030 {
  2274. border-width:0px;
  2275. position:absolute;
  2276. left:102px;
  2277. top:35px;
  2278. width:110px;
  2279. height:44px;
  2280. display:flex;
  2281. transition:none;
  2282. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2283. font-weight:400;
  2284. font-style:normal;
  2285. font-size:12px;
  2286. color:#333333;
  2287. line-height:40px;
  2288. }
  2289. #u19030 .text {
  2290. position:absolute;
  2291. align-self:center;
  2292. padding:2px 2px 2px 0px;
  2293. box-sizing:border-box;
  2294. width:100%;
  2295. }
  2296. #u19030_img {
  2297. border-width:0px;
  2298. position:absolute;
  2299. left:0px;
  2300. top:0px;
  2301. width:110px;
  2302. height:44px;
  2303. }
  2304. #u19030_text {
  2305. border-width:0px;
  2306. word-wrap:break-word;
  2307. text-transform:none;
  2308. }
  2309. #u19031 {
  2310. border-width:0px;
  2311. position:absolute;
  2312. left:212px;
  2313. top:35px;
  2314. width:72px;
  2315. height:44px;
  2316. display:flex;
  2317. transition:none;
  2318. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2319. font-weight:400;
  2320. font-style:normal;
  2321. font-size:12px;
  2322. color:#333333;
  2323. line-height:40px;
  2324. }
  2325. #u19031 .text {
  2326. position:absolute;
  2327. align-self:center;
  2328. padding:2px 2px 2px 0px;
  2329. box-sizing:border-box;
  2330. width:100%;
  2331. }
  2332. #u19031_img {
  2333. border-width:0px;
  2334. position:absolute;
  2335. left:0px;
  2336. top:0px;
  2337. width:72px;
  2338. height:44px;
  2339. }
  2340. #u19031_text {
  2341. border-width:0px;
  2342. word-wrap:break-word;
  2343. text-transform:none;
  2344. }
  2345. #u19032 {
  2346. border-width:0px;
  2347. position:absolute;
  2348. left:284px;
  2349. top:35px;
  2350. width:72px;
  2351. height:44px;
  2352. display:flex;
  2353. transition:none;
  2354. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2355. font-weight:400;
  2356. font-style:normal;
  2357. font-size:12px;
  2358. }
  2359. #u19032 .text {
  2360. position:absolute;
  2361. align-self:center;
  2362. padding:2px 2px 2px 0px;
  2363. box-sizing:border-box;
  2364. width:100%;
  2365. }
  2366. #u19032_img {
  2367. border-width:0px;
  2368. position:absolute;
  2369. left:0px;
  2370. top:0px;
  2371. width:72px;
  2372. height:44px;
  2373. }
  2374. #u19032_text {
  2375. border-width:0px;
  2376. word-wrap:break-word;
  2377. text-transform:none;
  2378. }
  2379. #u19033 {
  2380. border-width:0px;
  2381. position:absolute;
  2382. left:357px;
  2383. top:35px;
  2384. width:72px;
  2385. height:44px;
  2386. display:flex;
  2387. transition:none;
  2388. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2389. font-weight:400;
  2390. font-style:normal;
  2391. font-size:12px;
  2392. color:#606266;
  2393. }
  2394. #u19033 .text {
  2395. position:absolute;
  2396. align-self:center;
  2397. padding:2px 2px 2px 0px;
  2398. box-sizing:border-box;
  2399. width:100%;
  2400. }
  2401. #u19033_img {
  2402. border-width:0px;
  2403. position:absolute;
  2404. left:0px;
  2405. top:0px;
  2406. width:72px;
  2407. height:44px;
  2408. }
  2409. #u19033_text {
  2410. border-width:0px;
  2411. word-wrap:break-word;
  2412. text-transform:none;
  2413. }
  2414. #u19034 {
  2415. border-width:0px;
  2416. position:absolute;
  2417. left:429px;
  2418. top:35px;
  2419. width:91px;
  2420. height:44px;
  2421. display:flex;
  2422. transition:none;
  2423. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2424. font-weight:400;
  2425. font-style:normal;
  2426. font-size:12px;
  2427. color:#333333;
  2428. }
  2429. #u19034 .text {
  2430. position:absolute;
  2431. align-self:center;
  2432. padding:2px 2px 2px 0px;
  2433. box-sizing:border-box;
  2434. width:100%;
  2435. }
  2436. #u19034_img {
  2437. border-width:0px;
  2438. position:absolute;
  2439. left:0px;
  2440. top:0px;
  2441. width:91px;
  2442. height:44px;
  2443. }
  2444. #u19034_text {
  2445. border-width:0px;
  2446. word-wrap:break-word;
  2447. text-transform:none;
  2448. }
  2449. #u19035 {
  2450. border-width:0px;
  2451. position:absolute;
  2452. left:520px;
  2453. top:35px;
  2454. width:81px;
  2455. height:44px;
  2456. display:flex;
  2457. transition:none;
  2458. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2459. font-weight:400;
  2460. font-style:normal;
  2461. font-size:12px;
  2462. color:#333333;
  2463. }
  2464. #u19035 .text {
  2465. position:absolute;
  2466. align-self:center;
  2467. padding:2px 2px 2px 0px;
  2468. box-sizing:border-box;
  2469. width:100%;
  2470. }
  2471. #u19035_img {
  2472. border-width:0px;
  2473. position:absolute;
  2474. left:0px;
  2475. top:0px;
  2476. width:81px;
  2477. height:44px;
  2478. }
  2479. #u19035_text {
  2480. border-width:0px;
  2481. word-wrap:break-word;
  2482. text-transform:none;
  2483. visibility:hidden;
  2484. }
  2485. #u19036 {
  2486. border-width:0px;
  2487. position:absolute;
  2488. left:601px;
  2489. top:35px;
  2490. width:81px;
  2491. height:44px;
  2492. display:flex;
  2493. transition:none;
  2494. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2495. font-weight:400;
  2496. font-style:normal;
  2497. font-size:12px;
  2498. color:#333333;
  2499. }
  2500. #u19036 .text {
  2501. position:absolute;
  2502. align-self:center;
  2503. padding:2px 2px 2px 0px;
  2504. box-sizing:border-box;
  2505. width:100%;
  2506. }
  2507. #u19036_img {
  2508. border-width:0px;
  2509. position:absolute;
  2510. left:0px;
  2511. top:0px;
  2512. width:81px;
  2513. height:44px;
  2514. }
  2515. #u19036_text {
  2516. border-width:0px;
  2517. word-wrap:break-word;
  2518. text-transform:none;
  2519. visibility:hidden;
  2520. }
  2521. #u19037 {
  2522. border-width:0px;
  2523. position:absolute;
  2524. left:682px;
  2525. top:35px;
  2526. width:72px;
  2527. height:44px;
  2528. display:flex;
  2529. transition:none;
  2530. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2531. font-weight:400;
  2532. font-style:normal;
  2533. font-size:12px;
  2534. color:#333333;
  2535. }
  2536. #u19037 .text {
  2537. position:absolute;
  2538. align-self:center;
  2539. padding:2px 2px 2px 0px;
  2540. box-sizing:border-box;
  2541. width:100%;
  2542. }
  2543. #u19037_img {
  2544. border-width:0px;
  2545. position:absolute;
  2546. left:0px;
  2547. top:0px;
  2548. width:72px;
  2549. height:44px;
  2550. }
  2551. #u19037_text {
  2552. border-width:0px;
  2553. word-wrap:break-word;
  2554. text-transform:none;
  2555. visibility:hidden;
  2556. }
  2557. #u19038 {
  2558. border-width:0px;
  2559. position:absolute;
  2560. left:754px;
  2561. top:35px;
  2562. width:91px;
  2563. height:44px;
  2564. display:flex;
  2565. transition:none;
  2566. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2567. font-weight:400;
  2568. font-style:normal;
  2569. font-size:12px;
  2570. color:#333333;
  2571. }
  2572. #u19038 .text {
  2573. position:absolute;
  2574. align-self:center;
  2575. padding:2px 2px 2px 0px;
  2576. box-sizing:border-box;
  2577. width:100%;
  2578. }
  2579. #u19038_img {
  2580. border-width:0px;
  2581. position:absolute;
  2582. left:0px;
  2583. top:0px;
  2584. width:91px;
  2585. height:44px;
  2586. }
  2587. #u19038_text {
  2588. border-width:0px;
  2589. word-wrap:break-word;
  2590. text-transform:none;
  2591. }
  2592. #u19039 {
  2593. border-width:0px;
  2594. position:absolute;
  2595. left:845px;
  2596. top:35px;
  2597. width:80px;
  2598. height:44px;
  2599. display:flex;
  2600. transition:none;
  2601. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2602. font-weight:400;
  2603. font-style:normal;
  2604. font-size:12px;
  2605. color:#333333;
  2606. }
  2607. #u19039 .text {
  2608. position:absolute;
  2609. align-self:center;
  2610. padding:2px 2px 2px 0px;
  2611. box-sizing:border-box;
  2612. width:100%;
  2613. }
  2614. #u19039_img {
  2615. border-width:0px;
  2616. position:absolute;
  2617. left:0px;
  2618. top:0px;
  2619. width:80px;
  2620. height:44px;
  2621. }
  2622. #u19039_text {
  2623. border-width:0px;
  2624. word-wrap:break-word;
  2625. text-transform:none;
  2626. }
  2627. #u19040 {
  2628. border-width:0px;
  2629. position:absolute;
  2630. left:925px;
  2631. top:35px;
  2632. width:83px;
  2633. height:44px;
  2634. display:flex;
  2635. transition:none;
  2636. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2637. font-weight:400;
  2638. font-style:normal;
  2639. font-size:12px;
  2640. color:#333333;
  2641. }
  2642. #u19040 .text {
  2643. position:absolute;
  2644. align-self:center;
  2645. padding:2px 2px 2px 0px;
  2646. box-sizing:border-box;
  2647. width:100%;
  2648. }
  2649. #u19040_img {
  2650. border-width:0px;
  2651. position:absolute;
  2652. left:0px;
  2653. top:0px;
  2654. width:83px;
  2655. height:44px;
  2656. }
  2657. #u19040_text {
  2658. border-width:0px;
  2659. word-wrap:break-word;
  2660. text-transform:none;
  2661. }
  2662. #u19041 {
  2663. border-width:0px;
  2664. position:absolute;
  2665. left:1008px;
  2666. top:35px;
  2667. width:72px;
  2668. height:44px;
  2669. display:flex;
  2670. transition:none;
  2671. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2672. font-weight:400;
  2673. font-style:normal;
  2674. font-size:12px;
  2675. color:#333333;
  2676. }
  2677. #u19041 .text {
  2678. position:absolute;
  2679. align-self:center;
  2680. padding:2px 2px 2px 0px;
  2681. box-sizing:border-box;
  2682. width:100%;
  2683. }
  2684. #u19041_img {
  2685. border-width:0px;
  2686. position:absolute;
  2687. left:0px;
  2688. top:0px;
  2689. width:72px;
  2690. height:44px;
  2691. }
  2692. #u19041_text {
  2693. border-width:0px;
  2694. word-wrap:break-word;
  2695. text-transform:none;
  2696. visibility:hidden;
  2697. }
  2698. #u19042 {
  2699. border-width:0px;
  2700. position:absolute;
  2701. left:1079px;
  2702. top:35px;
  2703. width:72px;
  2704. height:44px;
  2705. display:flex;
  2706. transition:none;
  2707. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2708. font-weight:400;
  2709. font-style:normal;
  2710. font-size:12px;
  2711. color:#333333;
  2712. }
  2713. #u19042 .text {
  2714. position:absolute;
  2715. align-self:center;
  2716. padding:2px 2px 2px 0px;
  2717. box-sizing:border-box;
  2718. width:100%;
  2719. }
  2720. #u19042_img {
  2721. border-width:0px;
  2722. position:absolute;
  2723. left:0px;
  2724. top:0px;
  2725. width:72px;
  2726. height:44px;
  2727. }
  2728. #u19042_text {
  2729. border-width:0px;
  2730. word-wrap:break-word;
  2731. text-transform:none;
  2732. visibility:hidden;
  2733. }
  2734. #u19043 {
  2735. border-width:0px;
  2736. position:absolute;
  2737. left:1151px;
  2738. top:35px;
  2739. width:68px;
  2740. height:44px;
  2741. display:flex;
  2742. transition:none;
  2743. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2744. font-weight:400;
  2745. font-style:normal;
  2746. font-size:12px;
  2747. color:#298FFF;
  2748. line-height:35px;
  2749. }
  2750. #u19043 .text {
  2751. position:absolute;
  2752. align-self:center;
  2753. padding:2px 2px 2px 0px;
  2754. box-sizing:border-box;
  2755. width:100%;
  2756. }
  2757. #u19043_img {
  2758. border-width:0px;
  2759. position:absolute;
  2760. left:0px;
  2761. top:0px;
  2762. width:68px;
  2763. height:44px;
  2764. }
  2765. #u19043_text {
  2766. border-width:0px;
  2767. word-wrap:break-word;
  2768. text-transform:none;
  2769. }
  2770. #u19044 {
  2771. border-width:0px;
  2772. position:absolute;
  2773. left:0px;
  2774. top:79px;
  2775. width:102px;
  2776. height:44px;
  2777. display:flex;
  2778. transition:none;
  2779. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2780. font-weight:400;
  2781. font-style:normal;
  2782. font-size:12px;
  2783. color:#333333;
  2784. line-height:40px;
  2785. }
  2786. #u19044 .text {
  2787. position:absolute;
  2788. align-self:center;
  2789. padding:2px 2px 2px 0px;
  2790. box-sizing:border-box;
  2791. width:100%;
  2792. }
  2793. #u19044_img {
  2794. border-width:0px;
  2795. position:absolute;
  2796. left:0px;
  2797. top:0px;
  2798. width:102px;
  2799. height:44px;
  2800. }
  2801. #u19044_text {
  2802. border-width:0px;
  2803. word-wrap:break-word;
  2804. text-transform:none;
  2805. visibility:hidden;
  2806. }
  2807. #u19045 {
  2808. border-width:0px;
  2809. position:absolute;
  2810. left:102px;
  2811. top:79px;
  2812. width:110px;
  2813. height:44px;
  2814. display:flex;
  2815. transition:none;
  2816. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2817. font-weight:400;
  2818. font-style:normal;
  2819. font-size:12px;
  2820. color:#333333;
  2821. line-height:40px;
  2822. }
  2823. #u19045 .text {
  2824. position:absolute;
  2825. align-self:center;
  2826. padding:2px 2px 2px 0px;
  2827. box-sizing:border-box;
  2828. width:100%;
  2829. }
  2830. #u19045_img {
  2831. border-width:0px;
  2832. position:absolute;
  2833. left:0px;
  2834. top:0px;
  2835. width:110px;
  2836. height:44px;
  2837. }
  2838. #u19045_text {
  2839. border-width:0px;
  2840. word-wrap:break-word;
  2841. text-transform:none;
  2842. visibility:hidden;
  2843. }
  2844. #u19046 {
  2845. border-width:0px;
  2846. position:absolute;
  2847. left:212px;
  2848. top:79px;
  2849. width:72px;
  2850. height:44px;
  2851. display:flex;
  2852. transition:none;
  2853. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  2854. font-weight:400;
  2855. font-style:normal;
  2856. font-size:12px;
  2857. color:#333333;
  2858. line-height:40px;
  2859. }
  2860. #u19046 .text {
  2861. position:absolute;
  2862. align-self:center;
  2863. padding:2px 2px 2px 0px;
  2864. box-sizing:border-box;
  2865. width:100%;
  2866. }
  2867. #u19046_img {
  2868. border-width:0px;
  2869. position:absolute;
  2870. left:0px;
  2871. top:0px;
  2872. width:72px;
  2873. height:44px;
  2874. }
  2875. #u19046_text {
  2876. border-width:0px;
  2877. word-wrap:break-word;
  2878. text-transform:none;
  2879. }
  2880. #u19047 {
  2881. border-width:0px;
  2882. position:absolute;
  2883. left:284px;
  2884. top:79px;
  2885. width:72px;
  2886. height:44px;
  2887. display:flex;
  2888. transition:none;
  2889. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2890. font-weight:400;
  2891. font-style:normal;
  2892. font-size:12px;
  2893. color:#606266;
  2894. }
  2895. #u19047 .text {
  2896. position:absolute;
  2897. align-self:center;
  2898. padding:2px 2px 2px 0px;
  2899. box-sizing:border-box;
  2900. width:100%;
  2901. }
  2902. #u19047_img {
  2903. border-width:0px;
  2904. position:absolute;
  2905. left:0px;
  2906. top:0px;
  2907. width:72px;
  2908. height:44px;
  2909. }
  2910. #u19047_text {
  2911. border-width:0px;
  2912. word-wrap:break-word;
  2913. text-transform:none;
  2914. visibility:hidden;
  2915. }
  2916. #u19048 {
  2917. border-width:0px;
  2918. position:absolute;
  2919. left:357px;
  2920. top:79px;
  2921. width:72px;
  2922. height:44px;
  2923. display:flex;
  2924. transition:none;
  2925. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2926. font-weight:400;
  2927. font-style:normal;
  2928. font-size:12px;
  2929. color:#606266;
  2930. }
  2931. #u19048 .text {
  2932. position:absolute;
  2933. align-self:center;
  2934. padding:2px 2px 2px 0px;
  2935. box-sizing:border-box;
  2936. width:100%;
  2937. }
  2938. #u19048_img {
  2939. border-width:0px;
  2940. position:absolute;
  2941. left:0px;
  2942. top:0px;
  2943. width:72px;
  2944. height:44px;
  2945. }
  2946. #u19048_text {
  2947. border-width:0px;
  2948. word-wrap:break-word;
  2949. text-transform:none;
  2950. visibility:hidden;
  2951. }
  2952. #u19049 {
  2953. border-width:0px;
  2954. position:absolute;
  2955. left:429px;
  2956. top:79px;
  2957. width:91px;
  2958. height:44px;
  2959. display:flex;
  2960. transition:none;
  2961. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2962. font-weight:400;
  2963. font-style:normal;
  2964. font-size:12px;
  2965. color:#606266;
  2966. }
  2967. #u19049 .text {
  2968. position:absolute;
  2969. align-self:center;
  2970. padding:2px 2px 2px 0px;
  2971. box-sizing:border-box;
  2972. width:100%;
  2973. }
  2974. #u19049_img {
  2975. border-width:0px;
  2976. position:absolute;
  2977. left:0px;
  2978. top:0px;
  2979. width:91px;
  2980. height:44px;
  2981. }
  2982. #u19049_text {
  2983. border-width:0px;
  2984. word-wrap:break-word;
  2985. text-transform:none;
  2986. visibility:hidden;
  2987. }
  2988. #u19050 {
  2989. border-width:0px;
  2990. position:absolute;
  2991. left:520px;
  2992. top:79px;
  2993. width:81px;
  2994. height:44px;
  2995. display:flex;
  2996. transition:none;
  2997. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2998. font-weight:400;
  2999. font-style:normal;
  3000. font-size:12px;
  3001. color:#606266;
  3002. }
  3003. #u19050 .text {
  3004. position:absolute;
  3005. align-self:center;
  3006. padding:2px 2px 2px 0px;
  3007. box-sizing:border-box;
  3008. width:100%;
  3009. }
  3010. #u19050_img {
  3011. border-width:0px;
  3012. position:absolute;
  3013. left:0px;
  3014. top:0px;
  3015. width:81px;
  3016. height:44px;
  3017. }
  3018. #u19050_text {
  3019. border-width:0px;
  3020. word-wrap:break-word;
  3021. text-transform:none;
  3022. visibility:hidden;
  3023. }
  3024. #u19051 {
  3025. border-width:0px;
  3026. position:absolute;
  3027. left:601px;
  3028. top:79px;
  3029. width:81px;
  3030. height:44px;
  3031. display:flex;
  3032. transition:none;
  3033. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3034. font-weight:400;
  3035. font-style:normal;
  3036. font-size:12px;
  3037. color:#606266;
  3038. }
  3039. #u19051 .text {
  3040. position:absolute;
  3041. align-self:center;
  3042. padding:2px 2px 2px 0px;
  3043. box-sizing:border-box;
  3044. width:100%;
  3045. }
  3046. #u19051_img {
  3047. border-width:0px;
  3048. position:absolute;
  3049. left:0px;
  3050. top:0px;
  3051. width:81px;
  3052. height:44px;
  3053. }
  3054. #u19051_text {
  3055. border-width:0px;
  3056. word-wrap:break-word;
  3057. text-transform:none;
  3058. visibility:hidden;
  3059. }
  3060. #u19052 {
  3061. border-width:0px;
  3062. position:absolute;
  3063. left:682px;
  3064. top:79px;
  3065. width:72px;
  3066. height:44px;
  3067. display:flex;
  3068. transition:none;
  3069. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3070. font-weight:400;
  3071. font-style:normal;
  3072. font-size:12px;
  3073. color:#606266;
  3074. }
  3075. #u19052 .text {
  3076. position:absolute;
  3077. align-self:center;
  3078. padding:2px 2px 2px 0px;
  3079. box-sizing:border-box;
  3080. width:100%;
  3081. }
  3082. #u19052_img {
  3083. border-width:0px;
  3084. position:absolute;
  3085. left:0px;
  3086. top:0px;
  3087. width:72px;
  3088. height:44px;
  3089. }
  3090. #u19052_text {
  3091. border-width:0px;
  3092. word-wrap:break-word;
  3093. text-transform:none;
  3094. visibility:hidden;
  3095. }
  3096. #u19053 {
  3097. border-width:0px;
  3098. position:absolute;
  3099. left:754px;
  3100. top:79px;
  3101. width:91px;
  3102. height:44px;
  3103. display:flex;
  3104. transition:none;
  3105. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3106. font-weight:400;
  3107. font-style:normal;
  3108. font-size:12px;
  3109. color:#606266;
  3110. }
  3111. #u19053 .text {
  3112. position:absolute;
  3113. align-self:center;
  3114. padding:2px 2px 2px 0px;
  3115. box-sizing:border-box;
  3116. width:100%;
  3117. }
  3118. #u19053_img {
  3119. border-width:0px;
  3120. position:absolute;
  3121. left:0px;
  3122. top:0px;
  3123. width:91px;
  3124. height:44px;
  3125. }
  3126. #u19053_text {
  3127. border-width:0px;
  3128. word-wrap:break-word;
  3129. text-transform:none;
  3130. visibility:hidden;
  3131. }
  3132. #u19054 {
  3133. border-width:0px;
  3134. position:absolute;
  3135. left:845px;
  3136. top:79px;
  3137. width:80px;
  3138. height:44px;
  3139. display:flex;
  3140. transition:none;
  3141. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3142. font-weight:400;
  3143. font-style:normal;
  3144. font-size:12px;
  3145. color:#333333;
  3146. }
  3147. #u19054 .text {
  3148. position:absolute;
  3149. align-self:center;
  3150. padding:2px 2px 2px 0px;
  3151. box-sizing:border-box;
  3152. width:100%;
  3153. }
  3154. #u19054_img {
  3155. border-width:0px;
  3156. position:absolute;
  3157. left:0px;
  3158. top:0px;
  3159. width:80px;
  3160. height:44px;
  3161. }
  3162. #u19054_text {
  3163. border-width:0px;
  3164. word-wrap:break-word;
  3165. text-transform:none;
  3166. visibility:hidden;
  3167. }
  3168. #u19055 {
  3169. border-width:0px;
  3170. position:absolute;
  3171. left:925px;
  3172. top:79px;
  3173. width:83px;
  3174. height:44px;
  3175. display:flex;
  3176. transition:none;
  3177. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3178. font-weight:400;
  3179. font-style:normal;
  3180. font-size:12px;
  3181. color:#333333;
  3182. }
  3183. #u19055 .text {
  3184. position:absolute;
  3185. align-self:center;
  3186. padding:2px 2px 2px 0px;
  3187. box-sizing:border-box;
  3188. width:100%;
  3189. }
  3190. #u19055_img {
  3191. border-width:0px;
  3192. position:absolute;
  3193. left:0px;
  3194. top:0px;
  3195. width:83px;
  3196. height:44px;
  3197. }
  3198. #u19055_text {
  3199. border-width:0px;
  3200. word-wrap:break-word;
  3201. text-transform:none;
  3202. }
  3203. #u19056 {
  3204. border-width:0px;
  3205. position:absolute;
  3206. left:1008px;
  3207. top:79px;
  3208. width:72px;
  3209. height:44px;
  3210. display:flex;
  3211. transition:none;
  3212. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3213. font-weight:400;
  3214. font-style:normal;
  3215. font-size:12px;
  3216. color:#606266;
  3217. }
  3218. #u19056 .text {
  3219. position:absolute;
  3220. align-self:center;
  3221. padding:2px 2px 2px 0px;
  3222. box-sizing:border-box;
  3223. width:100%;
  3224. }
  3225. #u19056_img {
  3226. border-width:0px;
  3227. position:absolute;
  3228. left:0px;
  3229. top:0px;
  3230. width:72px;
  3231. height:44px;
  3232. }
  3233. #u19056_text {
  3234. border-width:0px;
  3235. word-wrap:break-word;
  3236. text-transform:none;
  3237. }
  3238. #u19057 {
  3239. border-width:0px;
  3240. position:absolute;
  3241. left:1079px;
  3242. top:79px;
  3243. width:72px;
  3244. height:44px;
  3245. display:flex;
  3246. transition:none;
  3247. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3248. font-weight:400;
  3249. font-style:normal;
  3250. font-size:12px;
  3251. color:#606266;
  3252. }
  3253. #u19057 .text {
  3254. position:absolute;
  3255. align-self:center;
  3256. padding:2px 2px 2px 0px;
  3257. box-sizing:border-box;
  3258. width:100%;
  3259. }
  3260. #u19057_img {
  3261. border-width:0px;
  3262. position:absolute;
  3263. left:0px;
  3264. top:0px;
  3265. width:72px;
  3266. height:44px;
  3267. }
  3268. #u19057_text {
  3269. border-width:0px;
  3270. word-wrap:break-word;
  3271. text-transform:none;
  3272. }
  3273. #u19058 {
  3274. border-width:0px;
  3275. position:absolute;
  3276. left:1151px;
  3277. top:79px;
  3278. width:68px;
  3279. height:44px;
  3280. display:flex;
  3281. transition:none;
  3282. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3283. font-weight:400;
  3284. font-style:normal;
  3285. font-size:12px;
  3286. color:#1890FF;
  3287. }
  3288. #u19058 .text {
  3289. position:absolute;
  3290. align-self:center;
  3291. padding:2px 2px 2px 0px;
  3292. box-sizing:border-box;
  3293. width:100%;
  3294. }
  3295. #u19058_img {
  3296. border-width:0px;
  3297. position:absolute;
  3298. left:0px;
  3299. top:0px;
  3300. width:68px;
  3301. height:44px;
  3302. }
  3303. #u19058_text {
  3304. border-width:0px;
  3305. word-wrap:break-word;
  3306. text-transform:none;
  3307. visibility:hidden;
  3308. }
  3309. #u19059 {
  3310. border-width:0px;
  3311. position:absolute;
  3312. left:0px;
  3313. top:123px;
  3314. width:102px;
  3315. height:38px;
  3316. display:flex;
  3317. transition:none;
  3318. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3319. font-weight:400;
  3320. font-style:normal;
  3321. font-size:12px;
  3322. color:#606266;
  3323. }
  3324. #u19059 .text {
  3325. position:absolute;
  3326. align-self:center;
  3327. padding:2px 2px 2px 0px;
  3328. box-sizing:border-box;
  3329. width:100%;
  3330. }
  3331. #u19059_img {
  3332. border-width:0px;
  3333. position:absolute;
  3334. left:0px;
  3335. top:0px;
  3336. width:102px;
  3337. height:38px;
  3338. }
  3339. #u19059_text {
  3340. border-width:0px;
  3341. word-wrap:break-word;
  3342. text-transform:none;
  3343. visibility:hidden;
  3344. }
  3345. #u19060 {
  3346. border-width:0px;
  3347. position:absolute;
  3348. left:102px;
  3349. top:123px;
  3350. width:110px;
  3351. height:38px;
  3352. display:flex;
  3353. transition:none;
  3354. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3355. font-weight:400;
  3356. font-style:normal;
  3357. font-size:12px;
  3358. color:#606266;
  3359. }
  3360. #u19060 .text {
  3361. position:absolute;
  3362. align-self:center;
  3363. padding:2px 2px 2px 0px;
  3364. box-sizing:border-box;
  3365. width:100%;
  3366. }
  3367. #u19060_img {
  3368. border-width:0px;
  3369. position:absolute;
  3370. left:0px;
  3371. top:0px;
  3372. width:110px;
  3373. height:38px;
  3374. }
  3375. #u19060_text {
  3376. border-width:0px;
  3377. word-wrap:break-word;
  3378. text-transform:none;
  3379. visibility:hidden;
  3380. }
  3381. #u19061 {
  3382. border-width:0px;
  3383. position:absolute;
  3384. left:212px;
  3385. top:123px;
  3386. width:72px;
  3387. height:38px;
  3388. display:flex;
  3389. transition:none;
  3390. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3391. font-weight:400;
  3392. font-style:normal;
  3393. font-size:12px;
  3394. color:#606266;
  3395. }
  3396. #u19061 .text {
  3397. position:absolute;
  3398. align-self:center;
  3399. padding:2px 2px 2px 0px;
  3400. box-sizing:border-box;
  3401. width:100%;
  3402. }
  3403. #u19061_img {
  3404. border-width:0px;
  3405. position:absolute;
  3406. left:0px;
  3407. top:0px;
  3408. width:72px;
  3409. height:38px;
  3410. }
  3411. #u19061_text {
  3412. border-width:0px;
  3413. word-wrap:break-word;
  3414. text-transform:none;
  3415. visibility:hidden;
  3416. }
  3417. #u19062 {
  3418. border-width:0px;
  3419. position:absolute;
  3420. left:284px;
  3421. top:123px;
  3422. width:72px;
  3423. height:38px;
  3424. display:flex;
  3425. transition:none;
  3426. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3427. font-weight:400;
  3428. font-style:normal;
  3429. font-size:12px;
  3430. color:#606266;
  3431. }
  3432. #u19062 .text {
  3433. position:absolute;
  3434. align-self:center;
  3435. padding:2px 2px 2px 0px;
  3436. box-sizing:border-box;
  3437. width:100%;
  3438. }
  3439. #u19062_img {
  3440. border-width:0px;
  3441. position:absolute;
  3442. left:0px;
  3443. top:0px;
  3444. width:72px;
  3445. height:38px;
  3446. }
  3447. #u19062_text {
  3448. border-width:0px;
  3449. word-wrap:break-word;
  3450. text-transform:none;
  3451. visibility:hidden;
  3452. }
  3453. #u19063 {
  3454. border-width:0px;
  3455. position:absolute;
  3456. left:357px;
  3457. top:123px;
  3458. width:72px;
  3459. height:38px;
  3460. display:flex;
  3461. transition:none;
  3462. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3463. font-weight:400;
  3464. font-style:normal;
  3465. font-size:12px;
  3466. color:#606266;
  3467. }
  3468. #u19063 .text {
  3469. position:absolute;
  3470. align-self:center;
  3471. padding:2px 2px 2px 0px;
  3472. box-sizing:border-box;
  3473. width:100%;
  3474. }
  3475. #u19063_img {
  3476. border-width:0px;
  3477. position:absolute;
  3478. left:0px;
  3479. top:0px;
  3480. width:72px;
  3481. height:38px;
  3482. }
  3483. #u19063_text {
  3484. border-width:0px;
  3485. word-wrap:break-word;
  3486. text-transform:none;
  3487. visibility:hidden;
  3488. }
  3489. #u19064 {
  3490. border-width:0px;
  3491. position:absolute;
  3492. left:429px;
  3493. top:123px;
  3494. width:91px;
  3495. height:38px;
  3496. display:flex;
  3497. transition:none;
  3498. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3499. font-weight:400;
  3500. font-style:normal;
  3501. font-size:12px;
  3502. color:#606266;
  3503. }
  3504. #u19064 .text {
  3505. position:absolute;
  3506. align-self:center;
  3507. padding:2px 2px 2px 0px;
  3508. box-sizing:border-box;
  3509. width:100%;
  3510. }
  3511. #u19064_img {
  3512. border-width:0px;
  3513. position:absolute;
  3514. left:0px;
  3515. top:0px;
  3516. width:91px;
  3517. height:38px;
  3518. }
  3519. #u19064_text {
  3520. border-width:0px;
  3521. word-wrap:break-word;
  3522. text-transform:none;
  3523. visibility:hidden;
  3524. }
  3525. #u19065 {
  3526. border-width:0px;
  3527. position:absolute;
  3528. left:520px;
  3529. top:123px;
  3530. width:81px;
  3531. height:38px;
  3532. display:flex;
  3533. transition:none;
  3534. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3535. font-weight:400;
  3536. font-style:normal;
  3537. font-size:12px;
  3538. color:#606266;
  3539. }
  3540. #u19065 .text {
  3541. position:absolute;
  3542. align-self:center;
  3543. padding:2px 2px 2px 0px;
  3544. box-sizing:border-box;
  3545. width:100%;
  3546. }
  3547. #u19065_img {
  3548. border-width:0px;
  3549. position:absolute;
  3550. left:0px;
  3551. top:0px;
  3552. width:81px;
  3553. height:38px;
  3554. }
  3555. #u19065_text {
  3556. border-width:0px;
  3557. word-wrap:break-word;
  3558. text-transform:none;
  3559. visibility:hidden;
  3560. }
  3561. #u19066 {
  3562. border-width:0px;
  3563. position:absolute;
  3564. left:601px;
  3565. top:123px;
  3566. width:81px;
  3567. height:38px;
  3568. display:flex;
  3569. transition:none;
  3570. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3571. font-weight:400;
  3572. font-style:normal;
  3573. font-size:12px;
  3574. color:#606266;
  3575. }
  3576. #u19066 .text {
  3577. position:absolute;
  3578. align-self:center;
  3579. padding:2px 2px 2px 0px;
  3580. box-sizing:border-box;
  3581. width:100%;
  3582. }
  3583. #u19066_img {
  3584. border-width:0px;
  3585. position:absolute;
  3586. left:0px;
  3587. top:0px;
  3588. width:81px;
  3589. height:38px;
  3590. }
  3591. #u19066_text {
  3592. border-width:0px;
  3593. word-wrap:break-word;
  3594. text-transform:none;
  3595. visibility:hidden;
  3596. }
  3597. #u19067 {
  3598. border-width:0px;
  3599. position:absolute;
  3600. left:682px;
  3601. top:123px;
  3602. width:72px;
  3603. height:38px;
  3604. display:flex;
  3605. transition:none;
  3606. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3607. font-weight:400;
  3608. font-style:normal;
  3609. font-size:12px;
  3610. color:#606266;
  3611. }
  3612. #u19067 .text {
  3613. position:absolute;
  3614. align-self:center;
  3615. padding:2px 2px 2px 0px;
  3616. box-sizing:border-box;
  3617. width:100%;
  3618. }
  3619. #u19067_img {
  3620. border-width:0px;
  3621. position:absolute;
  3622. left:0px;
  3623. top:0px;
  3624. width:72px;
  3625. height:38px;
  3626. }
  3627. #u19067_text {
  3628. border-width:0px;
  3629. word-wrap:break-word;
  3630. text-transform:none;
  3631. visibility:hidden;
  3632. }
  3633. #u19068 {
  3634. border-width:0px;
  3635. position:absolute;
  3636. left:754px;
  3637. top:123px;
  3638. width:91px;
  3639. height:38px;
  3640. display:flex;
  3641. transition:none;
  3642. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3643. font-weight:400;
  3644. font-style:normal;
  3645. font-size:12px;
  3646. color:#606266;
  3647. }
  3648. #u19068 .text {
  3649. position:absolute;
  3650. align-self:center;
  3651. padding:2px 2px 2px 0px;
  3652. box-sizing:border-box;
  3653. width:100%;
  3654. }
  3655. #u19068_img {
  3656. border-width:0px;
  3657. position:absolute;
  3658. left:0px;
  3659. top:0px;
  3660. width:91px;
  3661. height:38px;
  3662. }
  3663. #u19068_text {
  3664. border-width:0px;
  3665. word-wrap:break-word;
  3666. text-transform:none;
  3667. visibility:hidden;
  3668. }
  3669. #u19069 {
  3670. border-width:0px;
  3671. position:absolute;
  3672. left:845px;
  3673. top:123px;
  3674. width:80px;
  3675. height:38px;
  3676. display:flex;
  3677. transition:none;
  3678. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3679. font-weight:400;
  3680. font-style:normal;
  3681. font-size:12px;
  3682. color:#606266;
  3683. }
  3684. #u19069 .text {
  3685. position:absolute;
  3686. align-self:center;
  3687. padding:2px 2px 2px 0px;
  3688. box-sizing:border-box;
  3689. width:100%;
  3690. }
  3691. #u19069_img {
  3692. border-width:0px;
  3693. position:absolute;
  3694. left:0px;
  3695. top:0px;
  3696. width:80px;
  3697. height:38px;
  3698. }
  3699. #u19069_text {
  3700. border-width:0px;
  3701. word-wrap:break-word;
  3702. text-transform:none;
  3703. visibility:hidden;
  3704. }
  3705. #u19070 {
  3706. border-width:0px;
  3707. position:absolute;
  3708. left:925px;
  3709. top:123px;
  3710. width:83px;
  3711. height:38px;
  3712. display:flex;
  3713. transition:none;
  3714. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  3715. font-weight:400;
  3716. font-style:normal;
  3717. font-size:12px;
  3718. color:#333333;
  3719. }
  3720. #u19070 .text {
  3721. position:absolute;
  3722. align-self:center;
  3723. padding:2px 2px 2px 0px;
  3724. box-sizing:border-box;
  3725. width:100%;
  3726. }
  3727. #u19070_img {
  3728. border-width:0px;
  3729. position:absolute;
  3730. left:0px;
  3731. top:0px;
  3732. width:83px;
  3733. height:38px;
  3734. }
  3735. #u19070_text {
  3736. border-width:0px;
  3737. word-wrap:break-word;
  3738. text-transform:none;
  3739. }
  3740. #u19071 {
  3741. border-width:0px;
  3742. position:absolute;
  3743. left:1008px;
  3744. top:123px;
  3745. width:72px;
  3746. height:38px;
  3747. display:flex;
  3748. transition:none;
  3749. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3750. font-weight:400;
  3751. font-style:normal;
  3752. font-size:12px;
  3753. color:#606266;
  3754. }
  3755. #u19071 .text {
  3756. position:absolute;
  3757. align-self:center;
  3758. padding:2px 2px 2px 0px;
  3759. box-sizing:border-box;
  3760. width:100%;
  3761. }
  3762. #u19071_img {
  3763. border-width:0px;
  3764. position:absolute;
  3765. left:0px;
  3766. top:0px;
  3767. width:72px;
  3768. height:38px;
  3769. }
  3770. #u19071_text {
  3771. border-width:0px;
  3772. word-wrap:break-word;
  3773. text-transform:none;
  3774. visibility:hidden;
  3775. }
  3776. #u19072 {
  3777. border-width:0px;
  3778. position:absolute;
  3779. left:1079px;
  3780. top:123px;
  3781. width:72px;
  3782. height:38px;
  3783. display:flex;
  3784. transition:none;
  3785. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3786. font-weight:400;
  3787. font-style:normal;
  3788. font-size:12px;
  3789. color:#606266;
  3790. }
  3791. #u19072 .text {
  3792. position:absolute;
  3793. align-self:center;
  3794. padding:2px 2px 2px 0px;
  3795. box-sizing:border-box;
  3796. width:100%;
  3797. }
  3798. #u19072_img {
  3799. border-width:0px;
  3800. position:absolute;
  3801. left:0px;
  3802. top:0px;
  3803. width:72px;
  3804. height:38px;
  3805. }
  3806. #u19072_text {
  3807. border-width:0px;
  3808. word-wrap:break-word;
  3809. text-transform:none;
  3810. visibility:hidden;
  3811. }
  3812. #u19073 {
  3813. border-width:0px;
  3814. position:absolute;
  3815. left:1151px;
  3816. top:123px;
  3817. width:68px;
  3818. height:38px;
  3819. display:flex;
  3820. transition:none;
  3821. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3822. font-weight:400;
  3823. font-style:normal;
  3824. font-size:12px;
  3825. color:#606266;
  3826. }
  3827. #u19073 .text {
  3828. position:absolute;
  3829. align-self:center;
  3830. padding:2px 2px 2px 0px;
  3831. box-sizing:border-box;
  3832. width:100%;
  3833. }
  3834. #u19073_img {
  3835. border-width:0px;
  3836. position:absolute;
  3837. left:0px;
  3838. top:0px;
  3839. width:68px;
  3840. height:38px;
  3841. }
  3842. #u19073_text {
  3843. border-width:0px;
  3844. word-wrap:break-word;
  3845. text-transform:none;
  3846. visibility:hidden;
  3847. }
  3848. #u19074 {
  3849. border-width:0px;
  3850. position:absolute;
  3851. left:0px;
  3852. top:161px;
  3853. width:102px;
  3854. height:38px;
  3855. display:flex;
  3856. transition:none;
  3857. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3858. font-weight:400;
  3859. font-style:normal;
  3860. font-size:12px;
  3861. color:#606266;
  3862. }
  3863. #u19074 .text {
  3864. position:absolute;
  3865. align-self:center;
  3866. padding:2px 2px 2px 0px;
  3867. box-sizing:border-box;
  3868. width:100%;
  3869. }
  3870. #u19074_img {
  3871. border-width:0px;
  3872. position:absolute;
  3873. left:0px;
  3874. top:0px;
  3875. width:102px;
  3876. height:38px;
  3877. }
  3878. #u19074_text {
  3879. border-width:0px;
  3880. word-wrap:break-word;
  3881. text-transform:none;
  3882. visibility:hidden;
  3883. }
  3884. #u19075 {
  3885. border-width:0px;
  3886. position:absolute;
  3887. left:102px;
  3888. top:161px;
  3889. width:110px;
  3890. height:38px;
  3891. display:flex;
  3892. transition:none;
  3893. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3894. font-weight:400;
  3895. font-style:normal;
  3896. font-size:12px;
  3897. color:#606266;
  3898. }
  3899. #u19075 .text {
  3900. position:absolute;
  3901. align-self:center;
  3902. padding:2px 2px 2px 0px;
  3903. box-sizing:border-box;
  3904. width:100%;
  3905. }
  3906. #u19075_img {
  3907. border-width:0px;
  3908. position:absolute;
  3909. left:0px;
  3910. top:0px;
  3911. width:110px;
  3912. height:38px;
  3913. }
  3914. #u19075_text {
  3915. border-width:0px;
  3916. word-wrap:break-word;
  3917. text-transform:none;
  3918. visibility:hidden;
  3919. }
  3920. #u19076 {
  3921. border-width:0px;
  3922. position:absolute;
  3923. left:212px;
  3924. top:161px;
  3925. width:72px;
  3926. height:38px;
  3927. display:flex;
  3928. transition:none;
  3929. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3930. font-weight:400;
  3931. font-style:normal;
  3932. font-size:12px;
  3933. color:#606266;
  3934. }
  3935. #u19076 .text {
  3936. position:absolute;
  3937. align-self:center;
  3938. padding:2px 2px 2px 0px;
  3939. box-sizing:border-box;
  3940. width:100%;
  3941. }
  3942. #u19076_img {
  3943. border-width:0px;
  3944. position:absolute;
  3945. left:0px;
  3946. top:0px;
  3947. width:72px;
  3948. height:38px;
  3949. }
  3950. #u19076_text {
  3951. border-width:0px;
  3952. word-wrap:break-word;
  3953. text-transform:none;
  3954. visibility:hidden;
  3955. }
  3956. #u19077 {
  3957. border-width:0px;
  3958. position:absolute;
  3959. left:284px;
  3960. top:161px;
  3961. width:72px;
  3962. height:38px;
  3963. display:flex;
  3964. transition:none;
  3965. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3966. font-weight:400;
  3967. font-style:normal;
  3968. font-size:12px;
  3969. color:#606266;
  3970. }
  3971. #u19077 .text {
  3972. position:absolute;
  3973. align-self:center;
  3974. padding:2px 2px 2px 0px;
  3975. box-sizing:border-box;
  3976. width:100%;
  3977. }
  3978. #u19077_img {
  3979. border-width:0px;
  3980. position:absolute;
  3981. left:0px;
  3982. top:0px;
  3983. width:72px;
  3984. height:38px;
  3985. }
  3986. #u19077_text {
  3987. border-width:0px;
  3988. word-wrap:break-word;
  3989. text-transform:none;
  3990. visibility:hidden;
  3991. }
  3992. #u19078 {
  3993. border-width:0px;
  3994. position:absolute;
  3995. left:357px;
  3996. top:161px;
  3997. width:72px;
  3998. height:38px;
  3999. display:flex;
  4000. transition:none;
  4001. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4002. font-weight:400;
  4003. font-style:normal;
  4004. font-size:12px;
  4005. color:#606266;
  4006. }
  4007. #u19078 .text {
  4008. position:absolute;
  4009. align-self:center;
  4010. padding:2px 2px 2px 0px;
  4011. box-sizing:border-box;
  4012. width:100%;
  4013. }
  4014. #u19078_img {
  4015. border-width:0px;
  4016. position:absolute;
  4017. left:0px;
  4018. top:0px;
  4019. width:72px;
  4020. height:38px;
  4021. }
  4022. #u19078_text {
  4023. border-width:0px;
  4024. word-wrap:break-word;
  4025. text-transform:none;
  4026. visibility:hidden;
  4027. }
  4028. #u19079 {
  4029. border-width:0px;
  4030. position:absolute;
  4031. left:429px;
  4032. top:161px;
  4033. width:91px;
  4034. height:38px;
  4035. display:flex;
  4036. transition:none;
  4037. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4038. font-weight:400;
  4039. font-style:normal;
  4040. font-size:12px;
  4041. color:#606266;
  4042. }
  4043. #u19079 .text {
  4044. position:absolute;
  4045. align-self:center;
  4046. padding:2px 2px 2px 0px;
  4047. box-sizing:border-box;
  4048. width:100%;
  4049. }
  4050. #u19079_img {
  4051. border-width:0px;
  4052. position:absolute;
  4053. left:0px;
  4054. top:0px;
  4055. width:91px;
  4056. height:38px;
  4057. }
  4058. #u19079_text {
  4059. border-width:0px;
  4060. word-wrap:break-word;
  4061. text-transform:none;
  4062. visibility:hidden;
  4063. }
  4064. #u19080 {
  4065. border-width:0px;
  4066. position:absolute;
  4067. left:520px;
  4068. top:161px;
  4069. width:81px;
  4070. height:38px;
  4071. display:flex;
  4072. transition:none;
  4073. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4074. font-weight:400;
  4075. font-style:normal;
  4076. font-size:12px;
  4077. color:#606266;
  4078. }
  4079. #u19080 .text {
  4080. position:absolute;
  4081. align-self:center;
  4082. padding:2px 2px 2px 0px;
  4083. box-sizing:border-box;
  4084. width:100%;
  4085. }
  4086. #u19080_img {
  4087. border-width:0px;
  4088. position:absolute;
  4089. left:0px;
  4090. top:0px;
  4091. width:81px;
  4092. height:38px;
  4093. }
  4094. #u19080_text {
  4095. border-width:0px;
  4096. word-wrap:break-word;
  4097. text-transform:none;
  4098. visibility:hidden;
  4099. }
  4100. #u19081 {
  4101. border-width:0px;
  4102. position:absolute;
  4103. left:601px;
  4104. top:161px;
  4105. width:81px;
  4106. height:38px;
  4107. display:flex;
  4108. transition:none;
  4109. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4110. font-weight:400;
  4111. font-style:normal;
  4112. font-size:12px;
  4113. color:#606266;
  4114. }
  4115. #u19081 .text {
  4116. position:absolute;
  4117. align-self:center;
  4118. padding:2px 2px 2px 0px;
  4119. box-sizing:border-box;
  4120. width:100%;
  4121. }
  4122. #u19081_img {
  4123. border-width:0px;
  4124. position:absolute;
  4125. left:0px;
  4126. top:0px;
  4127. width:81px;
  4128. height:38px;
  4129. }
  4130. #u19081_text {
  4131. border-width:0px;
  4132. word-wrap:break-word;
  4133. text-transform:none;
  4134. visibility:hidden;
  4135. }
  4136. #u19082 {
  4137. border-width:0px;
  4138. position:absolute;
  4139. left:682px;
  4140. top:161px;
  4141. width:72px;
  4142. height:38px;
  4143. display:flex;
  4144. transition:none;
  4145. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4146. font-weight:400;
  4147. font-style:normal;
  4148. font-size:12px;
  4149. color:#606266;
  4150. }
  4151. #u19082 .text {
  4152. position:absolute;
  4153. align-self:center;
  4154. padding:2px 2px 2px 0px;
  4155. box-sizing:border-box;
  4156. width:100%;
  4157. }
  4158. #u19082_img {
  4159. border-width:0px;
  4160. position:absolute;
  4161. left:0px;
  4162. top:0px;
  4163. width:72px;
  4164. height:38px;
  4165. }
  4166. #u19082_text {
  4167. border-width:0px;
  4168. word-wrap:break-word;
  4169. text-transform:none;
  4170. visibility:hidden;
  4171. }
  4172. #u19083 {
  4173. border-width:0px;
  4174. position:absolute;
  4175. left:754px;
  4176. top:161px;
  4177. width:91px;
  4178. height:38px;
  4179. display:flex;
  4180. transition:none;
  4181. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4182. font-weight:400;
  4183. font-style:normal;
  4184. font-size:12px;
  4185. color:#606266;
  4186. }
  4187. #u19083 .text {
  4188. position:absolute;
  4189. align-self:center;
  4190. padding:2px 2px 2px 0px;
  4191. box-sizing:border-box;
  4192. width:100%;
  4193. }
  4194. #u19083_img {
  4195. border-width:0px;
  4196. position:absolute;
  4197. left:0px;
  4198. top:0px;
  4199. width:91px;
  4200. height:38px;
  4201. }
  4202. #u19083_text {
  4203. border-width:0px;
  4204. word-wrap:break-word;
  4205. text-transform:none;
  4206. visibility:hidden;
  4207. }
  4208. #u19084 {
  4209. border-width:0px;
  4210. position:absolute;
  4211. left:845px;
  4212. top:161px;
  4213. width:80px;
  4214. height:38px;
  4215. display:flex;
  4216. transition:none;
  4217. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4218. font-weight:400;
  4219. font-style:normal;
  4220. font-size:12px;
  4221. color:#606266;
  4222. }
  4223. #u19084 .text {
  4224. position:absolute;
  4225. align-self:center;
  4226. padding:2px 2px 2px 0px;
  4227. box-sizing:border-box;
  4228. width:100%;
  4229. }
  4230. #u19084_img {
  4231. border-width:0px;
  4232. position:absolute;
  4233. left:0px;
  4234. top:0px;
  4235. width:80px;
  4236. height:38px;
  4237. }
  4238. #u19084_text {
  4239. border-width:0px;
  4240. word-wrap:break-word;
  4241. text-transform:none;
  4242. visibility:hidden;
  4243. }
  4244. #u19085 {
  4245. border-width:0px;
  4246. position:absolute;
  4247. left:925px;
  4248. top:161px;
  4249. width:83px;
  4250. height:38px;
  4251. display:flex;
  4252. transition:none;
  4253. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  4254. font-weight:400;
  4255. font-style:normal;
  4256. font-size:12px;
  4257. color:#606266;
  4258. }
  4259. #u19085 .text {
  4260. position:absolute;
  4261. align-self:center;
  4262. padding:2px 2px 2px 0px;
  4263. box-sizing:border-box;
  4264. width:100%;
  4265. }
  4266. #u19085_img {
  4267. border-width:0px;
  4268. position:absolute;
  4269. left:0px;
  4270. top:0px;
  4271. width:83px;
  4272. height:38px;
  4273. }
  4274. #u19085_text {
  4275. border-width:0px;
  4276. word-wrap:break-word;
  4277. text-transform:none;
  4278. }
  4279. #u19086 {
  4280. border-width:0px;
  4281. position:absolute;
  4282. left:1008px;
  4283. top:161px;
  4284. width:72px;
  4285. height:38px;
  4286. display:flex;
  4287. transition:none;
  4288. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4289. font-weight:400;
  4290. font-style:normal;
  4291. font-size:12px;
  4292. color:#606266;
  4293. }
  4294. #u19086 .text {
  4295. position:absolute;
  4296. align-self:center;
  4297. padding:2px 2px 2px 0px;
  4298. box-sizing:border-box;
  4299. width:100%;
  4300. }
  4301. #u19086_img {
  4302. border-width:0px;
  4303. position:absolute;
  4304. left:0px;
  4305. top:0px;
  4306. width:72px;
  4307. height:38px;
  4308. }
  4309. #u19086_text {
  4310. border-width:0px;
  4311. word-wrap:break-word;
  4312. text-transform:none;
  4313. visibility:hidden;
  4314. }
  4315. #u19087 {
  4316. border-width:0px;
  4317. position:absolute;
  4318. left:1079px;
  4319. top:161px;
  4320. width:72px;
  4321. height:38px;
  4322. display:flex;
  4323. transition:none;
  4324. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4325. font-weight:400;
  4326. font-style:normal;
  4327. font-size:12px;
  4328. color:#606266;
  4329. }
  4330. #u19087 .text {
  4331. position:absolute;
  4332. align-self:center;
  4333. padding:2px 2px 2px 0px;
  4334. box-sizing:border-box;
  4335. width:100%;
  4336. }
  4337. #u19087_img {
  4338. border-width:0px;
  4339. position:absolute;
  4340. left:0px;
  4341. top:0px;
  4342. width:72px;
  4343. height:38px;
  4344. }
  4345. #u19087_text {
  4346. border-width:0px;
  4347. word-wrap:break-word;
  4348. text-transform:none;
  4349. visibility:hidden;
  4350. }
  4351. #u19088 {
  4352. border-width:0px;
  4353. position:absolute;
  4354. left:1151px;
  4355. top:161px;
  4356. width:68px;
  4357. height:38px;
  4358. display:flex;
  4359. transition:none;
  4360. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4361. font-weight:400;
  4362. font-style:normal;
  4363. font-size:12px;
  4364. color:#606266;
  4365. }
  4366. #u19088 .text {
  4367. position:absolute;
  4368. align-self:center;
  4369. padding:2px 2px 2px 0px;
  4370. box-sizing:border-box;
  4371. width:100%;
  4372. }
  4373. #u19088_img {
  4374. border-width:0px;
  4375. position:absolute;
  4376. left:0px;
  4377. top:0px;
  4378. width:68px;
  4379. height:38px;
  4380. }
  4381. #u19088_text {
  4382. border-width:0px;
  4383. word-wrap:break-word;
  4384. text-transform:none;
  4385. visibility:hidden;
  4386. }
  4387. #u19089 {
  4388. border-width:0px;
  4389. position:absolute;
  4390. left:0px;
  4391. top:199px;
  4392. width:102px;
  4393. height:38px;
  4394. display:flex;
  4395. transition:none;
  4396. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4397. font-weight:400;
  4398. font-style:normal;
  4399. font-size:12px;
  4400. color:#606266;
  4401. }
  4402. #u19089 .text {
  4403. position:absolute;
  4404. align-self:center;
  4405. padding:2px 2px 2px 0px;
  4406. box-sizing:border-box;
  4407. width:100%;
  4408. }
  4409. #u19089_img {
  4410. border-width:0px;
  4411. position:absolute;
  4412. left:0px;
  4413. top:0px;
  4414. width:102px;
  4415. height:38px;
  4416. }
  4417. #u19089_text {
  4418. border-width:0px;
  4419. word-wrap:break-word;
  4420. text-transform:none;
  4421. visibility:hidden;
  4422. }
  4423. #u19090 {
  4424. border-width:0px;
  4425. position:absolute;
  4426. left:102px;
  4427. top:199px;
  4428. width:110px;
  4429. height:38px;
  4430. display:flex;
  4431. transition:none;
  4432. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4433. font-weight:400;
  4434. font-style:normal;
  4435. font-size:12px;
  4436. color:#606266;
  4437. }
  4438. #u19090 .text {
  4439. position:absolute;
  4440. align-self:center;
  4441. padding:2px 2px 2px 0px;
  4442. box-sizing:border-box;
  4443. width:100%;
  4444. }
  4445. #u19090_img {
  4446. border-width:0px;
  4447. position:absolute;
  4448. left:0px;
  4449. top:0px;
  4450. width:110px;
  4451. height:38px;
  4452. }
  4453. #u19090_text {
  4454. border-width:0px;
  4455. word-wrap:break-word;
  4456. text-transform:none;
  4457. visibility:hidden;
  4458. }
  4459. #u19091 {
  4460. border-width:0px;
  4461. position:absolute;
  4462. left:212px;
  4463. top:199px;
  4464. width:72px;
  4465. height:38px;
  4466. display:flex;
  4467. transition:none;
  4468. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4469. font-weight:400;
  4470. font-style:normal;
  4471. font-size:12px;
  4472. color:#606266;
  4473. }
  4474. #u19091 .text {
  4475. position:absolute;
  4476. align-self:center;
  4477. padding:2px 2px 2px 0px;
  4478. box-sizing:border-box;
  4479. width:100%;
  4480. }
  4481. #u19091_img {
  4482. border-width:0px;
  4483. position:absolute;
  4484. left:0px;
  4485. top:0px;
  4486. width:72px;
  4487. height:38px;
  4488. }
  4489. #u19091_text {
  4490. border-width:0px;
  4491. word-wrap:break-word;
  4492. text-transform:none;
  4493. visibility:hidden;
  4494. }
  4495. #u19092 {
  4496. border-width:0px;
  4497. position:absolute;
  4498. left:284px;
  4499. top:199px;
  4500. width:72px;
  4501. height:38px;
  4502. display:flex;
  4503. transition:none;
  4504. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4505. font-weight:400;
  4506. font-style:normal;
  4507. font-size:12px;
  4508. color:#606266;
  4509. }
  4510. #u19092 .text {
  4511. position:absolute;
  4512. align-self:center;
  4513. padding:2px 2px 2px 0px;
  4514. box-sizing:border-box;
  4515. width:100%;
  4516. }
  4517. #u19092_img {
  4518. border-width:0px;
  4519. position:absolute;
  4520. left:0px;
  4521. top:0px;
  4522. width:72px;
  4523. height:38px;
  4524. }
  4525. #u19092_text {
  4526. border-width:0px;
  4527. word-wrap:break-word;
  4528. text-transform:none;
  4529. visibility:hidden;
  4530. }
  4531. #u19093 {
  4532. border-width:0px;
  4533. position:absolute;
  4534. left:357px;
  4535. top:199px;
  4536. width:72px;
  4537. height:38px;
  4538. display:flex;
  4539. transition:none;
  4540. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4541. font-weight:400;
  4542. font-style:normal;
  4543. font-size:12px;
  4544. color:#606266;
  4545. }
  4546. #u19093 .text {
  4547. position:absolute;
  4548. align-self:center;
  4549. padding:2px 2px 2px 0px;
  4550. box-sizing:border-box;
  4551. width:100%;
  4552. }
  4553. #u19093_img {
  4554. border-width:0px;
  4555. position:absolute;
  4556. left:0px;
  4557. top:0px;
  4558. width:72px;
  4559. height:38px;
  4560. }
  4561. #u19093_text {
  4562. border-width:0px;
  4563. word-wrap:break-word;
  4564. text-transform:none;
  4565. visibility:hidden;
  4566. }
  4567. #u19094 {
  4568. border-width:0px;
  4569. position:absolute;
  4570. left:429px;
  4571. top:199px;
  4572. width:91px;
  4573. height:38px;
  4574. display:flex;
  4575. transition:none;
  4576. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4577. font-weight:400;
  4578. font-style:normal;
  4579. font-size:12px;
  4580. color:#606266;
  4581. }
  4582. #u19094 .text {
  4583. position:absolute;
  4584. align-self:center;
  4585. padding:2px 2px 2px 0px;
  4586. box-sizing:border-box;
  4587. width:100%;
  4588. }
  4589. #u19094_img {
  4590. border-width:0px;
  4591. position:absolute;
  4592. left:0px;
  4593. top:0px;
  4594. width:91px;
  4595. height:38px;
  4596. }
  4597. #u19094_text {
  4598. border-width:0px;
  4599. word-wrap:break-word;
  4600. text-transform:none;
  4601. visibility:hidden;
  4602. }
  4603. #u19095 {
  4604. border-width:0px;
  4605. position:absolute;
  4606. left:520px;
  4607. top:199px;
  4608. width:81px;
  4609. height:38px;
  4610. display:flex;
  4611. transition:none;
  4612. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4613. font-weight:400;
  4614. font-style:normal;
  4615. font-size:12px;
  4616. color:#606266;
  4617. }
  4618. #u19095 .text {
  4619. position:absolute;
  4620. align-self:center;
  4621. padding:2px 2px 2px 0px;
  4622. box-sizing:border-box;
  4623. width:100%;
  4624. }
  4625. #u19095_img {
  4626. border-width:0px;
  4627. position:absolute;
  4628. left:0px;
  4629. top:0px;
  4630. width:81px;
  4631. height:38px;
  4632. }
  4633. #u19095_text {
  4634. border-width:0px;
  4635. word-wrap:break-word;
  4636. text-transform:none;
  4637. visibility:hidden;
  4638. }
  4639. #u19096 {
  4640. border-width:0px;
  4641. position:absolute;
  4642. left:601px;
  4643. top:199px;
  4644. width:81px;
  4645. height:38px;
  4646. display:flex;
  4647. transition:none;
  4648. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4649. font-weight:400;
  4650. font-style:normal;
  4651. font-size:12px;
  4652. color:#606266;
  4653. }
  4654. #u19096 .text {
  4655. position:absolute;
  4656. align-self:center;
  4657. padding:2px 2px 2px 0px;
  4658. box-sizing:border-box;
  4659. width:100%;
  4660. }
  4661. #u19096_img {
  4662. border-width:0px;
  4663. position:absolute;
  4664. left:0px;
  4665. top:0px;
  4666. width:81px;
  4667. height:38px;
  4668. }
  4669. #u19096_text {
  4670. border-width:0px;
  4671. word-wrap:break-word;
  4672. text-transform:none;
  4673. visibility:hidden;
  4674. }
  4675. #u19097 {
  4676. border-width:0px;
  4677. position:absolute;
  4678. left:682px;
  4679. top:199px;
  4680. width:72px;
  4681. height:38px;
  4682. display:flex;
  4683. transition:none;
  4684. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4685. font-weight:400;
  4686. font-style:normal;
  4687. font-size:12px;
  4688. color:#606266;
  4689. }
  4690. #u19097 .text {
  4691. position:absolute;
  4692. align-self:center;
  4693. padding:2px 2px 2px 0px;
  4694. box-sizing:border-box;
  4695. width:100%;
  4696. }
  4697. #u19097_img {
  4698. border-width:0px;
  4699. position:absolute;
  4700. left:0px;
  4701. top:0px;
  4702. width:72px;
  4703. height:38px;
  4704. }
  4705. #u19097_text {
  4706. border-width:0px;
  4707. word-wrap:break-word;
  4708. text-transform:none;
  4709. visibility:hidden;
  4710. }
  4711. #u19098 {
  4712. border-width:0px;
  4713. position:absolute;
  4714. left:754px;
  4715. top:199px;
  4716. width:91px;
  4717. height:38px;
  4718. display:flex;
  4719. transition:none;
  4720. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4721. font-weight:400;
  4722. font-style:normal;
  4723. font-size:12px;
  4724. color:#606266;
  4725. }
  4726. #u19098 .text {
  4727. position:absolute;
  4728. align-self:center;
  4729. padding:2px 2px 2px 0px;
  4730. box-sizing:border-box;
  4731. width:100%;
  4732. }
  4733. #u19098_img {
  4734. border-width:0px;
  4735. position:absolute;
  4736. left:0px;
  4737. top:0px;
  4738. width:91px;
  4739. height:38px;
  4740. }
  4741. #u19098_text {
  4742. border-width:0px;
  4743. word-wrap:break-word;
  4744. text-transform:none;
  4745. visibility:hidden;
  4746. }
  4747. #u19099 {
  4748. border-width:0px;
  4749. position:absolute;
  4750. left:845px;
  4751. top:199px;
  4752. width:80px;
  4753. height:38px;
  4754. display:flex;
  4755. transition:none;
  4756. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4757. font-weight:400;
  4758. font-style:normal;
  4759. font-size:12px;
  4760. color:#606266;
  4761. }
  4762. #u19099 .text {
  4763. position:absolute;
  4764. align-self:center;
  4765. padding:2px 2px 2px 0px;
  4766. box-sizing:border-box;
  4767. width:100%;
  4768. }
  4769. #u19099_img {
  4770. border-width:0px;
  4771. position:absolute;
  4772. left:0px;
  4773. top:0px;
  4774. width:80px;
  4775. height:38px;
  4776. }
  4777. #u19099_text {
  4778. border-width:0px;
  4779. word-wrap:break-word;
  4780. text-transform:none;
  4781. visibility:hidden;
  4782. }
  4783. #u19100 {
  4784. border-width:0px;
  4785. position:absolute;
  4786. left:925px;
  4787. top:199px;
  4788. width:83px;
  4789. height:38px;
  4790. display:flex;
  4791. transition:none;
  4792. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4793. font-weight:400;
  4794. font-style:normal;
  4795. font-size:12px;
  4796. color:#606266;
  4797. }
  4798. #u19100 .text {
  4799. position:absolute;
  4800. align-self:center;
  4801. padding:2px 2px 2px 0px;
  4802. box-sizing:border-box;
  4803. width:100%;
  4804. }
  4805. #u19100_img {
  4806. border-width:0px;
  4807. position:absolute;
  4808. left:0px;
  4809. top:0px;
  4810. width:83px;
  4811. height:38px;
  4812. }
  4813. #u19100_text {
  4814. border-width:0px;
  4815. word-wrap:break-word;
  4816. text-transform:none;
  4817. visibility:hidden;
  4818. }
  4819. #u19101 {
  4820. border-width:0px;
  4821. position:absolute;
  4822. left:1008px;
  4823. top:199px;
  4824. width:72px;
  4825. height:38px;
  4826. display:flex;
  4827. transition:none;
  4828. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4829. font-weight:400;
  4830. font-style:normal;
  4831. font-size:12px;
  4832. color:#606266;
  4833. }
  4834. #u19101 .text {
  4835. position:absolute;
  4836. align-self:center;
  4837. padding:2px 2px 2px 0px;
  4838. box-sizing:border-box;
  4839. width:100%;
  4840. }
  4841. #u19101_img {
  4842. border-width:0px;
  4843. position:absolute;
  4844. left:0px;
  4845. top:0px;
  4846. width:72px;
  4847. height:38px;
  4848. }
  4849. #u19101_text {
  4850. border-width:0px;
  4851. word-wrap:break-word;
  4852. text-transform:none;
  4853. visibility:hidden;
  4854. }
  4855. #u19102 {
  4856. border-width:0px;
  4857. position:absolute;
  4858. left:1079px;
  4859. top:199px;
  4860. width:72px;
  4861. height:38px;
  4862. display:flex;
  4863. transition:none;
  4864. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4865. font-weight:400;
  4866. font-style:normal;
  4867. font-size:12px;
  4868. color:#606266;
  4869. }
  4870. #u19102 .text {
  4871. position:absolute;
  4872. align-self:center;
  4873. padding:2px 2px 2px 0px;
  4874. box-sizing:border-box;
  4875. width:100%;
  4876. }
  4877. #u19102_img {
  4878. border-width:0px;
  4879. position:absolute;
  4880. left:0px;
  4881. top:0px;
  4882. width:72px;
  4883. height:38px;
  4884. }
  4885. #u19102_text {
  4886. border-width:0px;
  4887. word-wrap:break-word;
  4888. text-transform:none;
  4889. visibility:hidden;
  4890. }
  4891. #u19103 {
  4892. border-width:0px;
  4893. position:absolute;
  4894. left:1151px;
  4895. top:199px;
  4896. width:68px;
  4897. height:38px;
  4898. display:flex;
  4899. transition:none;
  4900. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4901. font-weight:400;
  4902. font-style:normal;
  4903. font-size:12px;
  4904. color:#606266;
  4905. }
  4906. #u19103 .text {
  4907. position:absolute;
  4908. align-self:center;
  4909. padding:2px 2px 2px 0px;
  4910. box-sizing:border-box;
  4911. width:100%;
  4912. }
  4913. #u19103_img {
  4914. border-width:0px;
  4915. position:absolute;
  4916. left:0px;
  4917. top:0px;
  4918. width:68px;
  4919. height:38px;
  4920. }
  4921. #u19103_text {
  4922. border-width:0px;
  4923. word-wrap:break-word;
  4924. text-transform:none;
  4925. visibility:hidden;
  4926. }
  4927. #u19104 {
  4928. border-width:0px;
  4929. position:absolute;
  4930. left:0px;
  4931. top:237px;
  4932. width:102px;
  4933. height:38px;
  4934. display:flex;
  4935. transition:none;
  4936. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4937. font-weight:400;
  4938. font-style:normal;
  4939. font-size:12px;
  4940. color:#606266;
  4941. }
  4942. #u19104 .text {
  4943. position:absolute;
  4944. align-self:center;
  4945. padding:2px 2px 2px 0px;
  4946. box-sizing:border-box;
  4947. width:100%;
  4948. }
  4949. #u19104_img {
  4950. border-width:0px;
  4951. position:absolute;
  4952. left:0px;
  4953. top:0px;
  4954. width:102px;
  4955. height:38px;
  4956. }
  4957. #u19104_text {
  4958. border-width:0px;
  4959. word-wrap:break-word;
  4960. text-transform:none;
  4961. visibility:hidden;
  4962. }
  4963. #u19105 {
  4964. border-width:0px;
  4965. position:absolute;
  4966. left:102px;
  4967. top:237px;
  4968. width:110px;
  4969. height:38px;
  4970. display:flex;
  4971. transition:none;
  4972. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4973. font-weight:400;
  4974. font-style:normal;
  4975. font-size:12px;
  4976. color:#606266;
  4977. }
  4978. #u19105 .text {
  4979. position:absolute;
  4980. align-self:center;
  4981. padding:2px 2px 2px 0px;
  4982. box-sizing:border-box;
  4983. width:100%;
  4984. }
  4985. #u19105_img {
  4986. border-width:0px;
  4987. position:absolute;
  4988. left:0px;
  4989. top:0px;
  4990. width:110px;
  4991. height:38px;
  4992. }
  4993. #u19105_text {
  4994. border-width:0px;
  4995. word-wrap:break-word;
  4996. text-transform:none;
  4997. visibility:hidden;
  4998. }
  4999. #u19106 {
  5000. border-width:0px;
  5001. position:absolute;
  5002. left:212px;
  5003. top:237px;
  5004. width:72px;
  5005. height:38px;
  5006. display:flex;
  5007. transition:none;
  5008. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5009. font-weight:400;
  5010. font-style:normal;
  5011. font-size:12px;
  5012. color:#606266;
  5013. }
  5014. #u19106 .text {
  5015. position:absolute;
  5016. align-self:center;
  5017. padding:2px 2px 2px 0px;
  5018. box-sizing:border-box;
  5019. width:100%;
  5020. }
  5021. #u19106_img {
  5022. border-width:0px;
  5023. position:absolute;
  5024. left:0px;
  5025. top:0px;
  5026. width:72px;
  5027. height:38px;
  5028. }
  5029. #u19106_text {
  5030. border-width:0px;
  5031. word-wrap:break-word;
  5032. text-transform:none;
  5033. visibility:hidden;
  5034. }
  5035. #u19107 {
  5036. border-width:0px;
  5037. position:absolute;
  5038. left:284px;
  5039. top:237px;
  5040. width:72px;
  5041. height:38px;
  5042. display:flex;
  5043. transition:none;
  5044. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5045. font-weight:400;
  5046. font-style:normal;
  5047. font-size:12px;
  5048. color:#606266;
  5049. }
  5050. #u19107 .text {
  5051. position:absolute;
  5052. align-self:center;
  5053. padding:2px 2px 2px 0px;
  5054. box-sizing:border-box;
  5055. width:100%;
  5056. }
  5057. #u19107_img {
  5058. border-width:0px;
  5059. position:absolute;
  5060. left:0px;
  5061. top:0px;
  5062. width:72px;
  5063. height:38px;
  5064. }
  5065. #u19107_text {
  5066. border-width:0px;
  5067. word-wrap:break-word;
  5068. text-transform:none;
  5069. visibility:hidden;
  5070. }
  5071. #u19108 {
  5072. border-width:0px;
  5073. position:absolute;
  5074. left:357px;
  5075. top:237px;
  5076. width:72px;
  5077. height:38px;
  5078. display:flex;
  5079. transition:none;
  5080. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5081. font-weight:400;
  5082. font-style:normal;
  5083. font-size:12px;
  5084. color:#606266;
  5085. }
  5086. #u19108 .text {
  5087. position:absolute;
  5088. align-self:center;
  5089. padding:2px 2px 2px 0px;
  5090. box-sizing:border-box;
  5091. width:100%;
  5092. }
  5093. #u19108_img {
  5094. border-width:0px;
  5095. position:absolute;
  5096. left:0px;
  5097. top:0px;
  5098. width:72px;
  5099. height:38px;
  5100. }
  5101. #u19108_text {
  5102. border-width:0px;
  5103. word-wrap:break-word;
  5104. text-transform:none;
  5105. visibility:hidden;
  5106. }
  5107. #u19109 {
  5108. border-width:0px;
  5109. position:absolute;
  5110. left:429px;
  5111. top:237px;
  5112. width:91px;
  5113. height:38px;
  5114. display:flex;
  5115. transition:none;
  5116. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5117. font-weight:400;
  5118. font-style:normal;
  5119. font-size:12px;
  5120. color:#606266;
  5121. }
  5122. #u19109 .text {
  5123. position:absolute;
  5124. align-self:center;
  5125. padding:2px 2px 2px 0px;
  5126. box-sizing:border-box;
  5127. width:100%;
  5128. }
  5129. #u19109_img {
  5130. border-width:0px;
  5131. position:absolute;
  5132. left:0px;
  5133. top:0px;
  5134. width:91px;
  5135. height:38px;
  5136. }
  5137. #u19109_text {
  5138. border-width:0px;
  5139. word-wrap:break-word;
  5140. text-transform:none;
  5141. visibility:hidden;
  5142. }
  5143. #u19110 {
  5144. border-width:0px;
  5145. position:absolute;
  5146. left:520px;
  5147. top:237px;
  5148. width:81px;
  5149. height:38px;
  5150. display:flex;
  5151. transition:none;
  5152. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5153. font-weight:400;
  5154. font-style:normal;
  5155. font-size:12px;
  5156. color:#606266;
  5157. }
  5158. #u19110 .text {
  5159. position:absolute;
  5160. align-self:center;
  5161. padding:2px 2px 2px 0px;
  5162. box-sizing:border-box;
  5163. width:100%;
  5164. }
  5165. #u19110_img {
  5166. border-width:0px;
  5167. position:absolute;
  5168. left:0px;
  5169. top:0px;
  5170. width:81px;
  5171. height:38px;
  5172. }
  5173. #u19110_text {
  5174. border-width:0px;
  5175. word-wrap:break-word;
  5176. text-transform:none;
  5177. visibility:hidden;
  5178. }
  5179. #u19111 {
  5180. border-width:0px;
  5181. position:absolute;
  5182. left:601px;
  5183. top:237px;
  5184. width:81px;
  5185. height:38px;
  5186. display:flex;
  5187. transition:none;
  5188. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5189. font-weight:400;
  5190. font-style:normal;
  5191. font-size:12px;
  5192. color:#606266;
  5193. }
  5194. #u19111 .text {
  5195. position:absolute;
  5196. align-self:center;
  5197. padding:2px 2px 2px 0px;
  5198. box-sizing:border-box;
  5199. width:100%;
  5200. }
  5201. #u19111_img {
  5202. border-width:0px;
  5203. position:absolute;
  5204. left:0px;
  5205. top:0px;
  5206. width:81px;
  5207. height:38px;
  5208. }
  5209. #u19111_text {
  5210. border-width:0px;
  5211. word-wrap:break-word;
  5212. text-transform:none;
  5213. visibility:hidden;
  5214. }
  5215. #u19112 {
  5216. border-width:0px;
  5217. position:absolute;
  5218. left:682px;
  5219. top:237px;
  5220. width:72px;
  5221. height:38px;
  5222. display:flex;
  5223. transition:none;
  5224. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5225. font-weight:400;
  5226. font-style:normal;
  5227. font-size:12px;
  5228. color:#606266;
  5229. }
  5230. #u19112 .text {
  5231. position:absolute;
  5232. align-self:center;
  5233. padding:2px 2px 2px 0px;
  5234. box-sizing:border-box;
  5235. width:100%;
  5236. }
  5237. #u19112_img {
  5238. border-width:0px;
  5239. position:absolute;
  5240. left:0px;
  5241. top:0px;
  5242. width:72px;
  5243. height:38px;
  5244. }
  5245. #u19112_text {
  5246. border-width:0px;
  5247. word-wrap:break-word;
  5248. text-transform:none;
  5249. visibility:hidden;
  5250. }
  5251. #u19113 {
  5252. border-width:0px;
  5253. position:absolute;
  5254. left:754px;
  5255. top:237px;
  5256. width:91px;
  5257. height:38px;
  5258. display:flex;
  5259. transition:none;
  5260. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5261. font-weight:400;
  5262. font-style:normal;
  5263. font-size:12px;
  5264. color:#606266;
  5265. }
  5266. #u19113 .text {
  5267. position:absolute;
  5268. align-self:center;
  5269. padding:2px 2px 2px 0px;
  5270. box-sizing:border-box;
  5271. width:100%;
  5272. }
  5273. #u19113_img {
  5274. border-width:0px;
  5275. position:absolute;
  5276. left:0px;
  5277. top:0px;
  5278. width:91px;
  5279. height:38px;
  5280. }
  5281. #u19113_text {
  5282. border-width:0px;
  5283. word-wrap:break-word;
  5284. text-transform:none;
  5285. visibility:hidden;
  5286. }
  5287. #u19114 {
  5288. border-width:0px;
  5289. position:absolute;
  5290. left:845px;
  5291. top:237px;
  5292. width:80px;
  5293. height:38px;
  5294. display:flex;
  5295. transition:none;
  5296. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5297. font-weight:400;
  5298. font-style:normal;
  5299. font-size:12px;
  5300. color:#606266;
  5301. }
  5302. #u19114 .text {
  5303. position:absolute;
  5304. align-self:center;
  5305. padding:2px 2px 2px 0px;
  5306. box-sizing:border-box;
  5307. width:100%;
  5308. }
  5309. #u19114_img {
  5310. border-width:0px;
  5311. position:absolute;
  5312. left:0px;
  5313. top:0px;
  5314. width:80px;
  5315. height:38px;
  5316. }
  5317. #u19114_text {
  5318. border-width:0px;
  5319. word-wrap:break-word;
  5320. text-transform:none;
  5321. visibility:hidden;
  5322. }
  5323. #u19115 {
  5324. border-width:0px;
  5325. position:absolute;
  5326. left:925px;
  5327. top:237px;
  5328. width:83px;
  5329. height:38px;
  5330. display:flex;
  5331. transition:none;
  5332. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5333. font-weight:400;
  5334. font-style:normal;
  5335. font-size:12px;
  5336. color:#606266;
  5337. }
  5338. #u19115 .text {
  5339. position:absolute;
  5340. align-self:center;
  5341. padding:2px 2px 2px 0px;
  5342. box-sizing:border-box;
  5343. width:100%;
  5344. }
  5345. #u19115_img {
  5346. border-width:0px;
  5347. position:absolute;
  5348. left:0px;
  5349. top:0px;
  5350. width:83px;
  5351. height:38px;
  5352. }
  5353. #u19115_text {
  5354. border-width:0px;
  5355. word-wrap:break-word;
  5356. text-transform:none;
  5357. visibility:hidden;
  5358. }
  5359. #u19116 {
  5360. border-width:0px;
  5361. position:absolute;
  5362. left:1008px;
  5363. top:237px;
  5364. width:72px;
  5365. height:38px;
  5366. display:flex;
  5367. transition:none;
  5368. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5369. font-weight:400;
  5370. font-style:normal;
  5371. font-size:12px;
  5372. color:#606266;
  5373. }
  5374. #u19116 .text {
  5375. position:absolute;
  5376. align-self:center;
  5377. padding:2px 2px 2px 0px;
  5378. box-sizing:border-box;
  5379. width:100%;
  5380. }
  5381. #u19116_img {
  5382. border-width:0px;
  5383. position:absolute;
  5384. left:0px;
  5385. top:0px;
  5386. width:72px;
  5387. height:38px;
  5388. }
  5389. #u19116_text {
  5390. border-width:0px;
  5391. word-wrap:break-word;
  5392. text-transform:none;
  5393. visibility:hidden;
  5394. }
  5395. #u19117 {
  5396. border-width:0px;
  5397. position:absolute;
  5398. left:1079px;
  5399. top:237px;
  5400. width:72px;
  5401. height:38px;
  5402. display:flex;
  5403. transition:none;
  5404. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5405. font-weight:400;
  5406. font-style:normal;
  5407. font-size:12px;
  5408. color:#606266;
  5409. }
  5410. #u19117 .text {
  5411. position:absolute;
  5412. align-self:center;
  5413. padding:2px 2px 2px 0px;
  5414. box-sizing:border-box;
  5415. width:100%;
  5416. }
  5417. #u19117_img {
  5418. border-width:0px;
  5419. position:absolute;
  5420. left:0px;
  5421. top:0px;
  5422. width:72px;
  5423. height:38px;
  5424. }
  5425. #u19117_text {
  5426. border-width:0px;
  5427. word-wrap:break-word;
  5428. text-transform:none;
  5429. visibility:hidden;
  5430. }
  5431. #u19118 {
  5432. border-width:0px;
  5433. position:absolute;
  5434. left:1151px;
  5435. top:237px;
  5436. width:68px;
  5437. height:38px;
  5438. display:flex;
  5439. transition:none;
  5440. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5441. font-weight:400;
  5442. font-style:normal;
  5443. font-size:12px;
  5444. color:#606266;
  5445. }
  5446. #u19118 .text {
  5447. position:absolute;
  5448. align-self:center;
  5449. padding:2px 2px 2px 0px;
  5450. box-sizing:border-box;
  5451. width:100%;
  5452. }
  5453. #u19118_img {
  5454. border-width:0px;
  5455. position:absolute;
  5456. left:0px;
  5457. top:0px;
  5458. width:68px;
  5459. height:38px;
  5460. }
  5461. #u19118_text {
  5462. border-width:0px;
  5463. word-wrap:break-word;
  5464. text-transform:none;
  5465. visibility:hidden;
  5466. }
  5467. #u19119_div {
  5468. border-width:0px;
  5469. position:absolute;
  5470. left:0px;
  5471. top:0px;
  5472. width:109px;
  5473. height:50px;
  5474. background:inherit;
  5475. background-color:rgba(255, 255, 255, 0);
  5476. border-left:0px;
  5477. border-top:0px;
  5478. border-right:0px;
  5479. border-radius:0px;
  5480. border-bottom-right-radius:0px;
  5481. border-bottom-left-radius:0px;
  5482. filter:drop-shadow(none);
  5483. transition:none;
  5484. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5485. font-weight:400;
  5486. font-style:normal;
  5487. font-size:18px;
  5488. }
  5489. #u19119 {
  5490. border-width:0px;
  5491. position:absolute;
  5492. left:349px;
  5493. top:52px;
  5494. width:109px;
  5495. height:50px;
  5496. display:flex;
  5497. transition:none;
  5498. transform-origin:50% 50%;
  5499. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5500. font-weight:400;
  5501. font-style:normal;
  5502. font-size:18px;
  5503. }
  5504. #u19119 .text {
  5505. position:absolute;
  5506. align-self:center;
  5507. padding:0px 0px 0px 0px;
  5508. box-sizing:border-box;
  5509. width:100%;
  5510. }
  5511. #u19119_text {
  5512. border-width:0px;
  5513. white-space:nowrap;
  5514. text-transform:none;
  5515. }
  5516. #u19120 {
  5517. border-width:0px;
  5518. position:absolute;
  5519. left:120px;
  5520. top:50px;
  5521. width:201px;
  5522. height:1190px;
  5523. }
  5524. #u19121 {
  5525. border-width:0px;
  5526. position:absolute;
  5527. left:0px;
  5528. top:0px;
  5529. width:0px;
  5530. height:0px;
  5531. }
  5532. #u19122_div {
  5533. border-width:0px;
  5534. position:absolute;
  5535. left:0px;
  5536. top:0px;
  5537. width:200px;
  5538. height:1190px;
  5539. background:inherit;
  5540. background-color:rgba(255, 255, 255, 1);
  5541. border-radius:0px;
  5542. filter:drop-shadow(none);
  5543. transition:none;
  5544. }
  5545. #u19122 {
  5546. border-width:0px;
  5547. position:absolute;
  5548. left:0px;
  5549. top:0px;
  5550. width:200px;
  5551. height:1190px;
  5552. display:flex;
  5553. transition:none;
  5554. transform-origin:50% 50%;
  5555. }
  5556. #u19122 .text {
  5557. position:absolute;
  5558. align-self:center;
  5559. padding:2px 2px 2px 2px;
  5560. box-sizing:border-box;
  5561. width:100%;
  5562. }
  5563. #u19122_text {
  5564. border-width:0px;
  5565. word-wrap:break-word;
  5566. text-transform:none;
  5567. visibility:hidden;
  5568. }
  5569. #u19123_div {
  5570. border-width:0px;
  5571. position:absolute;
  5572. left:0px;
  5573. top:0px;
  5574. width:200px;
  5575. height:60px;
  5576. background:inherit;
  5577. background-color:rgba(224, 231, 247, 1);
  5578. border-radius:0px;
  5579. filter:drop-shadow(none);
  5580. transition:none;
  5581. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  5582. font-weight:500;
  5583. font-style:normal;
  5584. font-size:18px;
  5585. }
  5586. #u19123 {
  5587. border-width:0px;
  5588. position:absolute;
  5589. left:0px;
  5590. top:0px;
  5591. width:200px;
  5592. height:60px;
  5593. display:flex;
  5594. transition:none;
  5595. transform-origin:50% 50%;
  5596. font-family:"PingFangSC-Medium", "PingFang SC Medium", "PingFang SC", sans-serif;
  5597. font-weight:500;
  5598. font-style:normal;
  5599. font-size:18px;
  5600. }
  5601. #u19123 .text {
  5602. position:absolute;
  5603. align-self:center;
  5604. padding:0px 0px 0px 20px;
  5605. box-sizing:border-box;
  5606. width:100%;
  5607. }
  5608. #u19123_text {
  5609. border-width:0px;
  5610. word-wrap:break-word;
  5611. text-transform:none;
  5612. }
  5613. #u19124_div {
  5614. border-width:0px;
  5615. position:absolute;
  5616. left:0px;
  5617. top:0px;
  5618. width:65px;
  5619. height:22px;
  5620. background:inherit;
  5621. background-color:rgba(255, 255, 255, 0);
  5622. border-radius:0px;
  5623. filter:drop-shadow(none);
  5624. transition:none;
  5625. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5626. font-weight:400;
  5627. font-style:normal;
  5628. font-size:16px;
  5629. }
  5630. #u19124 {
  5631. border-width:0px;
  5632. position:absolute;
  5633. left:25px;
  5634. top:456px;
  5635. width:65px;
  5636. height:22px;
  5637. display:flex;
  5638. transition:none;
  5639. transform-origin:50% 50%;
  5640. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5641. font-weight:400;
  5642. font-style:normal;
  5643. font-size:16px;
  5644. }
  5645. #u19124 .text {
  5646. position:absolute;
  5647. align-self:flex-start;
  5648. padding:0px 0px 0px 0px;
  5649. box-sizing:border-box;
  5650. width:100%;
  5651. }
  5652. #u19124_text {
  5653. border-width:0px;
  5654. white-space:nowrap;
  5655. text-transform:none;
  5656. }
  5657. #u19125_div {
  5658. border-width:0px;
  5659. position:absolute;
  5660. left:0px;
  5661. top:0px;
  5662. width:49px;
  5663. height:17px;
  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:#AAAAAA;
  5674. }
  5675. #u19125 {
  5676. border-width:0px;
  5677. position:absolute;
  5678. left:23px;
  5679. top:419px;
  5680. width:49px;
  5681. height:17px;
  5682. display:flex;
  5683. transition:none;
  5684. transform-origin:50% 50%;
  5685. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5686. font-weight:400;
  5687. font-style:normal;
  5688. font-size:12px;
  5689. color:#AAAAAA;
  5690. }
  5691. #u19125 .text {
  5692. position:absolute;
  5693. align-self:flex-start;
  5694. padding:0px 0px 0px 0px;
  5695. box-sizing:border-box;
  5696. width:100%;
  5697. }
  5698. #u19125_text {
  5699. border-width:0px;
  5700. white-space:nowrap;
  5701. text-transform:none;
  5702. }
  5703. #u19126_div {
  5704. border-width:0px;
  5705. position:absolute;
  5706. left:0px;
  5707. top:0px;
  5708. width:49px;
  5709. height:17px;
  5710. background:inherit;
  5711. background-color:rgba(255, 255, 255, 0);
  5712. border-radius:0px;
  5713. filter:drop-shadow(none);
  5714. transition:none;
  5715. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5716. font-weight:400;
  5717. font-style:normal;
  5718. font-size:12px;
  5719. color:#AAAAAA;
  5720. }
  5721. #u19126 {
  5722. border-width:0px;
  5723. position:absolute;
  5724. left:24px;
  5725. top:81px;
  5726. width:49px;
  5727. height:17px;
  5728. display:flex;
  5729. transition:none;
  5730. transform-origin:50% 50%;
  5731. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5732. font-weight:400;
  5733. font-style:normal;
  5734. font-size:12px;
  5735. color:#AAAAAA;
  5736. }
  5737. #u19126 .text {
  5738. position:absolute;
  5739. align-self:flex-start;
  5740. padding:0px 0px 0px 0px;
  5741. box-sizing:border-box;
  5742. width:100%;
  5743. }
  5744. #u19126_text {
  5745. border-width:0px;
  5746. white-space:nowrap;
  5747. text-transform:none;
  5748. }
  5749. #u19127_div {
  5750. border-width:0px;
  5751. position:absolute;
  5752. left:0px;
  5753. top:0px;
  5754. width:65px;
  5755. height:22px;
  5756. background:inherit;
  5757. background-color:rgba(255, 255, 255, 0);
  5758. border-radius:0px;
  5759. filter:drop-shadow(none);
  5760. transition:none;
  5761. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5762. font-weight:400;
  5763. font-style:normal;
  5764. font-size:16px;
  5765. }
  5766. #u19127 {
  5767. border-width:0px;
  5768. position:absolute;
  5769. left:26px;
  5770. top:118px;
  5771. width:65px;
  5772. height:22px;
  5773. display:flex;
  5774. transition:none;
  5775. transform-origin:50% 50%;
  5776. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5777. font-weight:400;
  5778. font-style:normal;
  5779. font-size:16px;
  5780. }
  5781. #u19127 .text {
  5782. position:absolute;
  5783. align-self:flex-start;
  5784. padding:0px 0px 0px 0px;
  5785. box-sizing:border-box;
  5786. width:100%;
  5787. }
  5788. #u19127_text {
  5789. border-width:0px;
  5790. white-space:nowrap;
  5791. text-transform:none;
  5792. }
  5793. #u19128 {
  5794. border-width:0px;
  5795. position:absolute;
  5796. left:0px;
  5797. top:398px;
  5798. width:200px;
  5799. height:1px;
  5800. display:flex;
  5801. transition:none;
  5802. }
  5803. #u19128 .text {
  5804. position:absolute;
  5805. align-self:center;
  5806. padding:2px 2px 2px 2px;
  5807. box-sizing:border-box;
  5808. width:100%;
  5809. }
  5810. #u19128_img {
  5811. border-width:0px;
  5812. position:absolute;
  5813. left:0px;
  5814. top:0px;
  5815. width:201px;
  5816. height:2px;
  5817. }
  5818. #u19128_text {
  5819. border-width:0px;
  5820. word-wrap:break-word;
  5821. text-transform:none;
  5822. visibility:hidden;
  5823. }
  5824. #u19129_div {
  5825. border-width:0px;
  5826. position:absolute;
  5827. left:0px;
  5828. top:0px;
  5829. width:65px;
  5830. height:22px;
  5831. background:inherit;
  5832. background-color:rgba(255, 255, 255, 0);
  5833. border-radius:0px;
  5834. filter:drop-shadow(none);
  5835. transition:none;
  5836. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5837. font-weight:400;
  5838. font-style:normal;
  5839. font-size:16px;
  5840. }
  5841. #u19129 {
  5842. border-width:0px;
  5843. position:absolute;
  5844. left:25px;
  5845. top:498px;
  5846. width:65px;
  5847. height:22px;
  5848. display:flex;
  5849. transition:none;
  5850. transform-origin:50% 50%;
  5851. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5852. font-weight:400;
  5853. font-style:normal;
  5854. font-size:16px;
  5855. }
  5856. #u19129 .text {
  5857. position:absolute;
  5858. align-self:flex-start;
  5859. padding:0px 0px 0px 0px;
  5860. box-sizing:border-box;
  5861. width:100%;
  5862. }
  5863. #u19129_text {
  5864. border-width:0px;
  5865. white-space:nowrap;
  5866. text-transform:none;
  5867. }
  5868. #u19130_div {
  5869. border-width:0px;
  5870. position:absolute;
  5871. left:0px;
  5872. top:0px;
  5873. width:49px;
  5874. height:17px;
  5875. background:inherit;
  5876. background-color:rgba(255, 255, 255, 0);
  5877. border-radius:0px;
  5878. filter:drop-shadow(none);
  5879. transition:none;
  5880. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5881. font-weight:400;
  5882. font-style:normal;
  5883. font-size:12px;
  5884. color:#AAAAAA;
  5885. }
  5886. #u19130 {
  5887. border-width:0px;
  5888. position:absolute;
  5889. left:24px;
  5890. top:235px;
  5891. width:49px;
  5892. height:17px;
  5893. display:flex;
  5894. transition:none;
  5895. transform-origin:50% 50%;
  5896. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5897. font-weight:400;
  5898. font-style:normal;
  5899. font-size:12px;
  5900. color:#AAAAAA;
  5901. }
  5902. #u19130 .text {
  5903. position:absolute;
  5904. align-self:flex-start;
  5905. padding:0px 0px 0px 0px;
  5906. box-sizing:border-box;
  5907. width:100%;
  5908. }
  5909. #u19130_text {
  5910. border-width:0px;
  5911. white-space:nowrap;
  5912. text-transform:none;
  5913. }
  5914. #u19131 {
  5915. border-width:0px;
  5916. position:absolute;
  5917. left:1px;
  5918. top:214px;
  5919. width:200px;
  5920. height:1px;
  5921. display:flex;
  5922. transition:none;
  5923. }
  5924. #u19131 .text {
  5925. position:absolute;
  5926. align-self:center;
  5927. padding:2px 2px 2px 2px;
  5928. box-sizing:border-box;
  5929. width:100%;
  5930. }
  5931. #u19131_img {
  5932. border-width:0px;
  5933. position:absolute;
  5934. left:0px;
  5935. top:0px;
  5936. width:201px;
  5937. height:2px;
  5938. }
  5939. #u19131_text {
  5940. border-width:0px;
  5941. word-wrap:break-word;
  5942. text-transform:none;
  5943. visibility:hidden;
  5944. }
  5945. #u19132_div {
  5946. border-width:0px;
  5947. position:absolute;
  5948. left:0px;
  5949. top:0px;
  5950. width:65px;
  5951. height:22px;
  5952. background:inherit;
  5953. background-color:rgba(255, 255, 255, 0);
  5954. border-radius:0px;
  5955. filter:drop-shadow(none);
  5956. transition:none;
  5957. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5958. font-weight:400;
  5959. font-style:normal;
  5960. font-size:16px;
  5961. }
  5962. #u19132 {
  5963. border-width:0px;
  5964. position:absolute;
  5965. left:26px;
  5966. top:272px;
  5967. width:65px;
  5968. height:22px;
  5969. display:flex;
  5970. transition:none;
  5971. transform-origin:50% 50%;
  5972. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  5973. font-weight:400;
  5974. font-style:normal;
  5975. font-size:16px;
  5976. }
  5977. #u19132 .text {
  5978. position:absolute;
  5979. align-self:flex-start;
  5980. padding:0px 0px 0px 0px;
  5981. box-sizing:border-box;
  5982. width:100%;
  5983. }
  5984. #u19132_text {
  5985. border-width:0px;
  5986. white-space:nowrap;
  5987. text-transform:none;
  5988. }
  5989. #u19133_div {
  5990. border-width:0px;
  5991. position:absolute;
  5992. left:0px;
  5993. top:0px;
  5994. width:65px;
  5995. height:22px;
  5996. background:inherit;
  5997. background-color:rgba(255, 255, 255, 0);
  5998. border-radius:0px;
  5999. filter:drop-shadow(none);
  6000. transition:none;
  6001. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6002. font-weight:400;
  6003. font-style:normal;
  6004. font-size:16px;
  6005. }
  6006. #u19133 {
  6007. border-width:0px;
  6008. position:absolute;
  6009. left:26px;
  6010. top:314px;
  6011. width:65px;
  6012. height:22px;
  6013. display:flex;
  6014. transition:none;
  6015. transform-origin:50% 50%;
  6016. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6017. font-weight:400;
  6018. font-style:normal;
  6019. font-size:16px;
  6020. }
  6021. #u19133 .text {
  6022. position:absolute;
  6023. align-self:flex-start;
  6024. padding:0px 0px 0px 0px;
  6025. box-sizing:border-box;
  6026. width:100%;
  6027. }
  6028. #u19133_text {
  6029. border-width:0px;
  6030. white-space:nowrap;
  6031. text-transform:none;
  6032. }
  6033. #u19134_div {
  6034. border-width:0px;
  6035. position:absolute;
  6036. left:0px;
  6037. top:0px;
  6038. width:129px;
  6039. height:22px;
  6040. background:inherit;
  6041. background-color:rgba(255, 255, 255, 0);
  6042. border-radius:0px;
  6043. filter:drop-shadow(none);
  6044. transition:none;
  6045. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6046. font-weight:400;
  6047. font-style:normal;
  6048. font-size:16px;
  6049. }
  6050. #u19134 {
  6051. border-width:0px;
  6052. position:absolute;
  6053. left:25px;
  6054. top:956px;
  6055. width:129px;
  6056. height:22px;
  6057. display:flex;
  6058. transition:none;
  6059. transform-origin:50% 50%;
  6060. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6061. font-weight:400;
  6062. font-style:normal;
  6063. font-size:16px;
  6064. }
  6065. #u19134 .text {
  6066. position:absolute;
  6067. align-self:flex-start;
  6068. padding:0px 0px 0px 0px;
  6069. box-sizing:border-box;
  6070. width:100%;
  6071. }
  6072. #u19134_text {
  6073. border-width:0px;
  6074. white-space:nowrap;
  6075. text-transform:none;
  6076. }
  6077. #u19135_div {
  6078. border-width:0px;
  6079. position:absolute;
  6080. left:0px;
  6081. top:0px;
  6082. width:129px;
  6083. height:22px;
  6084. background:inherit;
  6085. background-color:rgba(255, 255, 255, 0);
  6086. border-radius:0px;
  6087. filter:drop-shadow(none);
  6088. transition:none;
  6089. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6090. font-weight:400;
  6091. font-style:normal;
  6092. font-size:16px;
  6093. }
  6094. #u19135 {
  6095. border-width:0px;
  6096. position:absolute;
  6097. left:25px;
  6098. top:748px;
  6099. width:129px;
  6100. height:22px;
  6101. display:flex;
  6102. transition:none;
  6103. transform-origin:50% 50%;
  6104. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6105. font-weight:400;
  6106. font-style:normal;
  6107. font-size:16px;
  6108. }
  6109. #u19135 .text {
  6110. position:absolute;
  6111. align-self:flex-start;
  6112. padding:0px 0px 0px 0px;
  6113. box-sizing:border-box;
  6114. width:100%;
  6115. }
  6116. #u19135_text {
  6117. border-width:0px;
  6118. white-space:nowrap;
  6119. text-transform:none;
  6120. }
  6121. #u19136_div {
  6122. border-width:0px;
  6123. position:absolute;
  6124. left:0px;
  6125. top:0px;
  6126. width:97px;
  6127. height:17px;
  6128. background:inherit;
  6129. background-color:rgba(255, 255, 255, 0);
  6130. border-radius:0px;
  6131. filter:drop-shadow(none);
  6132. transition:none;
  6133. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6134. font-weight:400;
  6135. font-style:normal;
  6136. font-size:12px;
  6137. color:#AAAAAA;
  6138. }
  6139. #u19136 {
  6140. border-width:0px;
  6141. position:absolute;
  6142. left:23px;
  6143. top:711px;
  6144. width:97px;
  6145. height:17px;
  6146. display:flex;
  6147. transition:none;
  6148. transform-origin:50% 50%;
  6149. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6150. font-weight:400;
  6151. font-style:normal;
  6152. font-size:12px;
  6153. color:#AAAAAA;
  6154. }
  6155. #u19136 .text {
  6156. position:absolute;
  6157. align-self:flex-start;
  6158. padding:0px 0px 0px 0px;
  6159. box-sizing:border-box;
  6160. width:100%;
  6161. }
  6162. #u19136_text {
  6163. border-width:0px;
  6164. white-space:nowrap;
  6165. text-transform:none;
  6166. }
  6167. #u19137 {
  6168. border-width:0px;
  6169. position:absolute;
  6170. left:0px;
  6171. top:690px;
  6172. width:200px;
  6173. height:1px;
  6174. display:flex;
  6175. transition:none;
  6176. }
  6177. #u19137 .text {
  6178. position:absolute;
  6179. align-self:center;
  6180. padding:2px 2px 2px 2px;
  6181. box-sizing:border-box;
  6182. width:100%;
  6183. }
  6184. #u19137_img {
  6185. border-width:0px;
  6186. position:absolute;
  6187. left:0px;
  6188. top:0px;
  6189. width:201px;
  6190. height:2px;
  6191. }
  6192. #u19137_text {
  6193. border-width:0px;
  6194. word-wrap:break-word;
  6195. text-transform:none;
  6196. visibility:hidden;
  6197. }
  6198. #u19138_div {
  6199. border-width:0px;
  6200. position:absolute;
  6201. left:0px;
  6202. top:0px;
  6203. width:129px;
  6204. height:22px;
  6205. background:inherit;
  6206. background-color:rgba(255, 255, 255, 0);
  6207. border-radius:0px;
  6208. filter:drop-shadow(none);
  6209. transition:none;
  6210. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6211. font-weight:400;
  6212. font-style:normal;
  6213. font-size:16px;
  6214. }
  6215. #u19138 {
  6216. border-width:0px;
  6217. position:absolute;
  6218. left:25px;
  6219. top:830px;
  6220. width:129px;
  6221. height:22px;
  6222. display:flex;
  6223. transition:none;
  6224. transform-origin:50% 50%;
  6225. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6226. font-weight:400;
  6227. font-style:normal;
  6228. font-size:16px;
  6229. }
  6230. #u19138 .text {
  6231. position:absolute;
  6232. align-self:flex-start;
  6233. padding:0px 0px 0px 0px;
  6234. box-sizing:border-box;
  6235. width:100%;
  6236. }
  6237. #u19138_text {
  6238. border-width:0px;
  6239. white-space:nowrap;
  6240. text-transform:none;
  6241. }
  6242. #u19139_div {
  6243. border-width:0px;
  6244. position:absolute;
  6245. left:0px;
  6246. top:0px;
  6247. width:129px;
  6248. height:22px;
  6249. background:inherit;
  6250. background-color:rgba(255, 255, 255, 0);
  6251. border-radius:0px;
  6252. filter:drop-shadow(none);
  6253. transition:none;
  6254. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6255. font-weight:400;
  6256. font-style:normal;
  6257. font-size:16px;
  6258. }
  6259. #u19139 {
  6260. border-width:0px;
  6261. position:absolute;
  6262. left:25px;
  6263. top:872px;
  6264. width:129px;
  6265. height:22px;
  6266. display:flex;
  6267. transition:none;
  6268. transform-origin:50% 50%;
  6269. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6270. font-weight:400;
  6271. font-style:normal;
  6272. font-size:16px;
  6273. }
  6274. #u19139 .text {
  6275. position:absolute;
  6276. align-self:flex-start;
  6277. padding:0px 0px 0px 0px;
  6278. box-sizing:border-box;
  6279. width:100%;
  6280. }
  6281. #u19139_text {
  6282. border-width:0px;
  6283. white-space:nowrap;
  6284. text-transform:none;
  6285. }
  6286. #u19140_div {
  6287. border-width:0px;
  6288. position:absolute;
  6289. left:0px;
  6290. top:0px;
  6291. width:65px;
  6292. height:22px;
  6293. background:inherit;
  6294. background-color:rgba(255, 255, 255, 0);
  6295. border-radius:0px;
  6296. filter:drop-shadow(none);
  6297. transition:none;
  6298. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6299. font-weight:400;
  6300. font-style:normal;
  6301. font-size:16px;
  6302. }
  6303. #u19140 {
  6304. border-width:0px;
  6305. position:absolute;
  6306. left:25px;
  6307. top:1056px;
  6308. width:65px;
  6309. height:22px;
  6310. display:flex;
  6311. transition:none;
  6312. transform-origin:50% 50%;
  6313. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6314. font-weight:400;
  6315. font-style:normal;
  6316. font-size:16px;
  6317. }
  6318. #u19140 .text {
  6319. position:absolute;
  6320. align-self:flex-start;
  6321. padding:0px 0px 0px 0px;
  6322. box-sizing:border-box;
  6323. width:100%;
  6324. }
  6325. #u19140_text {
  6326. border-width:0px;
  6327. white-space:nowrap;
  6328. text-transform:none;
  6329. }
  6330. #u19141_div {
  6331. border-width:0px;
  6332. position:absolute;
  6333. left:0px;
  6334. top:0px;
  6335. width:49px;
  6336. height:17px;
  6337. background:inherit;
  6338. background-color:rgba(255, 255, 255, 0);
  6339. border-radius:0px;
  6340. filter:drop-shadow(none);
  6341. transition:none;
  6342. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6343. font-weight:400;
  6344. font-style:normal;
  6345. font-size:12px;
  6346. color:#AAAAAA;
  6347. }
  6348. #u19141 {
  6349. border-width:0px;
  6350. position:absolute;
  6351. left:23px;
  6352. top:1019px;
  6353. width:49px;
  6354. height:17px;
  6355. display:flex;
  6356. transition:none;
  6357. transform-origin:50% 50%;
  6358. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6359. font-weight:400;
  6360. font-style:normal;
  6361. font-size:12px;
  6362. color:#AAAAAA;
  6363. }
  6364. #u19141 .text {
  6365. position:absolute;
  6366. align-self:flex-start;
  6367. padding:0px 0px 0px 0px;
  6368. box-sizing:border-box;
  6369. width:100%;
  6370. }
  6371. #u19141_text {
  6372. border-width:0px;
  6373. white-space:nowrap;
  6374. text-transform:none;
  6375. }
  6376. #u19142 {
  6377. border-width:0px;
  6378. position:absolute;
  6379. left:0px;
  6380. top:998px;
  6381. width:200px;
  6382. height:1px;
  6383. display:flex;
  6384. transition:none;
  6385. }
  6386. #u19142 .text {
  6387. position:absolute;
  6388. align-self:center;
  6389. padding:2px 2px 2px 2px;
  6390. box-sizing:border-box;
  6391. width:100%;
  6392. }
  6393. #u19142_img {
  6394. border-width:0px;
  6395. position:absolute;
  6396. left:0px;
  6397. top:0px;
  6398. width:201px;
  6399. height:2px;
  6400. }
  6401. #u19142_text {
  6402. border-width:0px;
  6403. word-wrap:break-word;
  6404. text-transform:none;
  6405. visibility:hidden;
  6406. }
  6407. #u19143_div {
  6408. border-width:0px;
  6409. position:absolute;
  6410. left:0px;
  6411. top:0px;
  6412. width:65px;
  6413. height:22px;
  6414. background:inherit;
  6415. background-color:rgba(255, 255, 255, 0);
  6416. border-radius:0px;
  6417. filter:drop-shadow(none);
  6418. transition:none;
  6419. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6420. font-weight:400;
  6421. font-style:normal;
  6422. font-size:16px;
  6423. }
  6424. #u19143 {
  6425. border-width:0px;
  6426. position:absolute;
  6427. left:25px;
  6428. top:1098px;
  6429. width:65px;
  6430. height:22px;
  6431. display:flex;
  6432. transition:none;
  6433. transform-origin:50% 50%;
  6434. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6435. font-weight:400;
  6436. font-style:normal;
  6437. font-size:16px;
  6438. }
  6439. #u19143 .text {
  6440. position:absolute;
  6441. align-self:flex-start;
  6442. padding:0px 0px 0px 0px;
  6443. box-sizing:border-box;
  6444. width:100%;
  6445. }
  6446. #u19143_text {
  6447. border-width:0px;
  6448. white-space:nowrap;
  6449. text-transform:none;
  6450. }
  6451. #u19144_div {
  6452. border-width:0px;
  6453. position:absolute;
  6454. left:0px;
  6455. top:0px;
  6456. width:129px;
  6457. height:22px;
  6458. background:inherit;
  6459. background-color:rgba(255, 255, 255, 0);
  6460. border-radius:0px;
  6461. filter:drop-shadow(none);
  6462. transition:none;
  6463. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6464. font-weight:400;
  6465. font-style:normal;
  6466. font-size:16px;
  6467. }
  6468. #u19144 {
  6469. border-width:0px;
  6470. position:absolute;
  6471. left:25px;
  6472. top:914px;
  6473. width:129px;
  6474. height:22px;
  6475. display:flex;
  6476. transition:none;
  6477. transform-origin:50% 50%;
  6478. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6479. font-weight:400;
  6480. font-style:normal;
  6481. font-size:16px;
  6482. }
  6483. #u19144 .text {
  6484. position:absolute;
  6485. align-self:flex-start;
  6486. padding:0px 0px 0px 0px;
  6487. box-sizing:border-box;
  6488. width:100%;
  6489. }
  6490. #u19144_text {
  6491. border-width:0px;
  6492. white-space:nowrap;
  6493. text-transform:none;
  6494. }
  6495. #u19145_div {
  6496. border-width:0px;
  6497. position:absolute;
  6498. left:0px;
  6499. top:0px;
  6500. width:81px;
  6501. height:22px;
  6502. background:inherit;
  6503. background-color:rgba(255, 255, 255, 0);
  6504. border-radius:0px;
  6505. filter:drop-shadow(none);
  6506. transition:none;
  6507. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6508. font-weight:400;
  6509. font-style:normal;
  6510. font-size:16px;
  6511. }
  6512. #u19145 {
  6513. border-width:0px;
  6514. position:absolute;
  6515. left:26px;
  6516. top:356px;
  6517. width:81px;
  6518. height:22px;
  6519. display:flex;
  6520. transition:none;
  6521. transform-origin:50% 50%;
  6522. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6523. font-weight:400;
  6524. font-style:normal;
  6525. font-size:16px;
  6526. }
  6527. #u19145 .text {
  6528. position:absolute;
  6529. align-self:flex-start;
  6530. padding:0px 0px 0px 0px;
  6531. box-sizing:border-box;
  6532. width:100%;
  6533. }
  6534. #u19145_text {
  6535. border-width:0px;
  6536. white-space:nowrap;
  6537. text-transform:none;
  6538. }
  6539. #u19146_div {
  6540. border-width:0px;
  6541. position:absolute;
  6542. left:0px;
  6543. top:0px;
  6544. width:129px;
  6545. height:22px;
  6546. background:inherit;
  6547. background-color:rgba(255, 255, 255, 0);
  6548. border-radius:0px;
  6549. filter:drop-shadow(none);
  6550. transition:none;
  6551. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6552. font-weight:400;
  6553. font-style:normal;
  6554. font-size:16px;
  6555. }
  6556. #u19146 {
  6557. border-width:0px;
  6558. position:absolute;
  6559. left:25px;
  6560. top:790px;
  6561. width:129px;
  6562. height:22px;
  6563. display:flex;
  6564. transition:none;
  6565. transform-origin:50% 50%;
  6566. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6567. font-weight:400;
  6568. font-style:normal;
  6569. font-size:16px;
  6570. }
  6571. #u19146 .text {
  6572. position:absolute;
  6573. align-self:flex-start;
  6574. padding:0px 0px 0px 0px;
  6575. box-sizing:border-box;
  6576. width:100%;
  6577. }
  6578. #u19146_text {
  6579. border-width:0px;
  6580. white-space:nowrap;
  6581. text-transform:none;
  6582. }
  6583. #u19147_div {
  6584. border-width:0px;
  6585. position:absolute;
  6586. left:0px;
  6587. top:0px;
  6588. width:65px;
  6589. height:22px;
  6590. background:inherit;
  6591. background-color:rgba(255, 255, 255, 0);
  6592. border-radius:0px;
  6593. filter:drop-shadow(none);
  6594. transition:none;
  6595. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6596. font-weight:400;
  6597. font-style:normal;
  6598. font-size:16px;
  6599. }
  6600. #u19147 {
  6601. border-width:0px;
  6602. position:absolute;
  6603. left:25px;
  6604. top:160px;
  6605. width:65px;
  6606. height:22px;
  6607. display:flex;
  6608. transition:none;
  6609. transform-origin:50% 50%;
  6610. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6611. font-weight:400;
  6612. font-style:normal;
  6613. font-size:16px;
  6614. }
  6615. #u19147 .text {
  6616. position:absolute;
  6617. align-self:flex-start;
  6618. padding:0px 0px 0px 0px;
  6619. box-sizing:border-box;
  6620. width:100%;
  6621. }
  6622. #u19147_text {
  6623. border-width:0px;
  6624. white-space:nowrap;
  6625. text-transform:none;
  6626. }
  6627. #u19148_div {
  6628. border-width:0px;
  6629. position:absolute;
  6630. left:0px;
  6631. top:0px;
  6632. width:81px;
  6633. height:22px;
  6634. background:inherit;
  6635. background-color:rgba(255, 255, 255, 0);
  6636. border-radius:0px;
  6637. filter:drop-shadow(none);
  6638. transition:none;
  6639. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6640. font-weight:400;
  6641. font-style:normal;
  6642. font-size:16px;
  6643. }
  6644. #u19148 {
  6645. border-width:0px;
  6646. position:absolute;
  6647. left:25px;
  6648. top:598px;
  6649. width:81px;
  6650. height:22px;
  6651. display:flex;
  6652. transition:none;
  6653. transform-origin:50% 50%;
  6654. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6655. font-weight:400;
  6656. font-style:normal;
  6657. font-size:16px;
  6658. }
  6659. #u19148 .text {
  6660. position:absolute;
  6661. align-self:flex-start;
  6662. padding:0px 0px 0px 0px;
  6663. box-sizing:border-box;
  6664. width:100%;
  6665. }
  6666. #u19148_text {
  6667. border-width:0px;
  6668. white-space:nowrap;
  6669. text-transform:none;
  6670. }
  6671. #u19149_div {
  6672. border-width:0px;
  6673. position:absolute;
  6674. left:0px;
  6675. top:0px;
  6676. width:65px;
  6677. height:22px;
  6678. background:inherit;
  6679. background-color:rgba(255, 255, 255, 0);
  6680. border-radius:0px;
  6681. filter:drop-shadow(none);
  6682. transition:none;
  6683. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6684. font-weight:400;
  6685. font-style:normal;
  6686. font-size:16px;
  6687. }
  6688. #u19149 {
  6689. border-width:0px;
  6690. position:absolute;
  6691. left:25px;
  6692. top:640px;
  6693. width:65px;
  6694. height:22px;
  6695. display:flex;
  6696. transition:none;
  6697. transform-origin:50% 50%;
  6698. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6699. font-weight:400;
  6700. font-style:normal;
  6701. font-size:16px;
  6702. }
  6703. #u19149 .text {
  6704. position:absolute;
  6705. align-self:flex-start;
  6706. padding:0px 0px 0px 0px;
  6707. box-sizing:border-box;
  6708. width:100%;
  6709. }
  6710. #u19149_text {
  6711. border-width:0px;
  6712. white-space:nowrap;
  6713. text-transform:none;
  6714. }
  6715. #u19150_div {
  6716. border-width:0px;
  6717. position:absolute;
  6718. left:0px;
  6719. top:0px;
  6720. width:73px;
  6721. height:17px;
  6722. background:inherit;
  6723. background-color:rgba(255, 255, 255, 0);
  6724. border-radius:0px;
  6725. filter:drop-shadow(none);
  6726. transition:none;
  6727. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6728. font-weight:400;
  6729. font-style:normal;
  6730. font-size:12px;
  6731. color:#AAAAAA;
  6732. }
  6733. #u19150 {
  6734. border-width:0px;
  6735. position:absolute;
  6736. left:23px;
  6737. top:561px;
  6738. width:73px;
  6739. height:17px;
  6740. display:flex;
  6741. transition:none;
  6742. transform-origin:50% 50%;
  6743. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6744. font-weight:400;
  6745. font-style:normal;
  6746. font-size:12px;
  6747. color:#AAAAAA;
  6748. }
  6749. #u19150 .text {
  6750. position:absolute;
  6751. align-self:flex-start;
  6752. padding:0px 0px 0px 0px;
  6753. box-sizing:border-box;
  6754. width:100%;
  6755. }
  6756. #u19150_text {
  6757. border-width:0px;
  6758. white-space:nowrap;
  6759. text-transform:none;
  6760. }
  6761. #u19151 {
  6762. border-width:0px;
  6763. position:absolute;
  6764. left:0px;
  6765. top:540px;
  6766. width:200px;
  6767. height:1px;
  6768. display:flex;
  6769. transition:none;
  6770. }
  6771. #u19151 .text {
  6772. position:absolute;
  6773. align-self:center;
  6774. padding:2px 2px 2px 2px;
  6775. box-sizing:border-box;
  6776. width:100%;
  6777. }
  6778. #u19151_img {
  6779. border-width:0px;
  6780. position:absolute;
  6781. left:0px;
  6782. top:0px;
  6783. width:201px;
  6784. height:2px;
  6785. }
  6786. #u19151_text {
  6787. border-width:0px;
  6788. word-wrap:break-word;
  6789. text-transform:none;
  6790. visibility:hidden;
  6791. }
  6792. #u19152_div {
  6793. border-width:0px;
  6794. position:absolute;
  6795. left:0px;
  6796. top:0px;
  6797. width:834px;
  6798. height:20px;
  6799. background:inherit;
  6800. background-color:rgba(255, 255, 255, 0);
  6801. border-left:0px;
  6802. border-top:0px;
  6803. border-right:0px;
  6804. border-radius:0px;
  6805. border-bottom-right-radius:0px;
  6806. border-bottom-left-radius:0px;
  6807. filter:drop-shadow(none);
  6808. transition:none;
  6809. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6810. font-weight:400;
  6811. font-style:normal;
  6812. font-size:14px;
  6813. color:#7F7F7F;
  6814. }
  6815. #u19152 {
  6816. border-width:0px;
  6817. position:absolute;
  6818. left:352px;
  6819. top:100px;
  6820. width:834px;
  6821. height:20px;
  6822. display:flex;
  6823. transition:none;
  6824. transform-origin:50% 50%;
  6825. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6826. font-weight:400;
  6827. font-style:normal;
  6828. font-size:14px;
  6829. color:#7F7F7F;
  6830. }
  6831. #u19152 .text {
  6832. position:absolute;
  6833. align-self:center;
  6834. padding:0px 0px 0px 0px;
  6835. box-sizing:border-box;
  6836. width:100%;
  6837. }
  6838. #u19152_text {
  6839. border-width:0px;
  6840. white-space:nowrap;
  6841. text-transform:none;
  6842. }
  6843. #u19153 {
  6844. border-width:0px;
  6845. position:absolute;
  6846. left:0px;
  6847. top:0px;
  6848. width:0px;
  6849. height:0px;
  6850. }
  6851. #u19154_div {
  6852. border-width:0px;
  6853. position:absolute;
  6854. left:0px;
  6855. top:0px;
  6856. width:60px;
  6857. height:30px;
  6858. background:inherit;
  6859. background-color:rgba(24, 144, 255, 1);
  6860. border-radius:4px;
  6861. filter:drop-shadow(none);
  6862. transition:none;
  6863. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6864. font-weight:400;
  6865. font-style:normal;
  6866. font-size:14px;
  6867. color:#FFFFFF;
  6868. }
  6869. #u19154 {
  6870. border-width:0px;
  6871. position:absolute;
  6872. left:1100px;
  6873. top:183px;
  6874. width:60px;
  6875. height:30px;
  6876. display:flex;
  6877. transition:none;
  6878. transform-origin:50% 50%;
  6879. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6880. font-weight:400;
  6881. font-style:normal;
  6882. font-size:14px;
  6883. color:#FFFFFF;
  6884. }
  6885. #u19154 .text {
  6886. position:absolute;
  6887. align-self:center;
  6888. padding:2px 2px 2px 2px;
  6889. box-sizing:border-box;
  6890. width:100%;
  6891. }
  6892. #u19154_text {
  6893. border-width:0px;
  6894. word-wrap:break-word;
  6895. text-transform:none;
  6896. }
  6897. #u19155_div {
  6898. border-width:0px;
  6899. position:absolute;
  6900. left:0px;
  6901. top:0px;
  6902. width:60px;
  6903. height:30px;
  6904. background:inherit;
  6905. background-color:rgba(255, 255, 255, 1);
  6906. box-sizing:border-box;
  6907. border-width:1px;
  6908. border-style:solid;
  6909. border-color:rgba(170, 170, 170, 1);
  6910. border-radius:4px;
  6911. filter:drop-shadow(none);
  6912. transition:none;
  6913. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6914. font-weight:400;
  6915. font-style:normal;
  6916. font-size:14px;
  6917. }
  6918. #u19155 {
  6919. border-width:0px;
  6920. position:absolute;
  6921. left:1170px;
  6922. top:183px;
  6923. width:60px;
  6924. height:30px;
  6925. display:flex;
  6926. transition:none;
  6927. transform-origin:50% 50%;
  6928. font-family:"PingFangSC-Regular", "PingFang SC", sans-serif;
  6929. font-weight:400;
  6930. font-style:normal;
  6931. font-size:14px;
  6932. }
  6933. #u19155 .text {
  6934. position:absolute;
  6935. align-self:center;
  6936. padding:2px 2px 2px 2px;
  6937. box-sizing:border-box;
  6938. width:100%;
  6939. }
  6940. #u19155_text {
  6941. border-width:0px;
  6942. word-wrap:break-word;
  6943. text-transform:none;
  6944. }
  6945. #u19156 {
  6946. border-width:0px;
  6947. position:absolute;
  6948. left:0px;
  6949. top:0px;
  6950. width:0px;
  6951. height:0px;
  6952. }
  6953. #u19157_div {
  6954. border-width:0px;
  6955. position:absolute;
  6956. left:0px;
  6957. top:0px;
  6958. width:140px;
  6959. height:30px;
  6960. background:inherit;
  6961. background-color:rgba(255, 255, 255, 1);
  6962. box-sizing:border-box;
  6963. border-width:1px;
  6964. border-style:solid;
  6965. border-color:rgba(215, 215, 215, 1);
  6966. border-radius:4px;
  6967. filter:drop-shadow(none);
  6968. transition:none;
  6969. font-size:14px;
  6970. }
  6971. #u19157 {
  6972. border-width:0px;
  6973. position:absolute;
  6974. left:350px;
  6975. top:143px;
  6976. width:140px;
  6977. height:30px;
  6978. display:flex;
  6979. transition:none;
  6980. transform-origin:50% 50%;
  6981. font-size:14px;
  6982. }
  6983. #u19157 .text {
  6984. position:absolute;
  6985. align-self:center;
  6986. padding:2px 2px 2px 2px;
  6987. box-sizing:border-box;
  6988. width:100%;
  6989. }
  6990. #u19157_text {
  6991. border-width:0px;
  6992. word-wrap:break-word;
  6993. text-transform:none;
  6994. visibility:hidden;
  6995. }
  6996. #u19158_input {
  6997. position:absolute;
  6998. left:0px;
  6999. top:0px;
  7000. width:134px;
  7001. height:23px;
  7002. padding:2px 2px 2px 2px;
  7003. font-family:"ArialMT", "Arial", sans-serif;
  7004. font-weight:400;
  7005. font-style:normal;
  7006. font-size:14px;
  7007. letter-spacing:normal;
  7008. color:#AAAAAA;
  7009. vertical-align:none;
  7010. text-align:left;
  7011. text-transform:none;
  7012. background-color:transparent;
  7013. border-color:transparent;
  7014. }
  7015. #u19158_input.disabled {
  7016. position:absolute;
  7017. left:0px;
  7018. top:0px;
  7019. width:134px;
  7020. height:23px;
  7021. padding:2px 2px 2px 2px;
  7022. font-family:"ArialMT", "Arial", sans-serif;
  7023. font-weight:400;
  7024. font-style:normal;
  7025. font-size:14px;
  7026. letter-spacing:normal;
  7027. color:#AAAAAA;
  7028. vertical-align:none;
  7029. text-align:left;
  7030. text-transform:none;
  7031. background-color:transparent;
  7032. border-color:transparent;
  7033. }
  7034. #u19158_div {
  7035. border-width:0px;
  7036. position:absolute;
  7037. left:0px;
  7038. top:0px;
  7039. width:134px;
  7040. height:23px;
  7041. background:inherit;
  7042. background-color:rgba(255, 255, 255, 1);
  7043. border-radius:0px;
  7044. filter:drop-shadow(none);
  7045. transition:none;
  7046. font-size:14px;
  7047. color:#AAAAAA;
  7048. }
  7049. #u19158 {
  7050. border-width:0px;
  7051. position:absolute;
  7052. left:354px;
  7053. top:145px;
  7054. width:134px;
  7055. height:23px;
  7056. display:flex;
  7057. transition:none;
  7058. transform-origin:50% 50%;
  7059. font-size:14px;
  7060. color:#AAAAAA;
  7061. }
  7062. #u19158 .text {
  7063. position:absolute;
  7064. align-self:flex-start;
  7065. padding:2px 2px 2px 2px;
  7066. box-sizing:border-box;
  7067. width:100%;
  7068. }
  7069. #u19158_div.disabled {
  7070. border-width:0px;
  7071. position:absolute;
  7072. left:0px;
  7073. top:0px;
  7074. width:134px;
  7075. height:23px;
  7076. background:inherit;
  7077. background-color:rgba(240, 240, 240, 1);
  7078. border-radius:0px;
  7079. filter:drop-shadow(none);
  7080. transition:none;
  7081. font-size:14px;
  7082. color:#AAAAAA;
  7083. }
  7084. #u19158.disabled {
  7085. }
  7086. .u19158_input_option {
  7087. font-size:14px;
  7088. }
  7089. #u19159 {
  7090. border-width:0px;
  7091. position:absolute;
  7092. left:0px;
  7093. top:0px;
  7094. width:0px;
  7095. height:0px;
  7096. }
  7097. #u19160_div {
  7098. border-width:0px;
  7099. position:absolute;
  7100. left:0px;
  7101. top:0px;
  7102. width:140px;
  7103. height:30px;
  7104. background:inherit;
  7105. background-color:rgba(255, 255, 255, 1);
  7106. box-sizing:border-box;
  7107. border-width:1px;
  7108. border-style:solid;
  7109. border-color:rgba(215, 215, 215, 1);
  7110. border-radius:4px;
  7111. filter:drop-shadow(none);
  7112. transition:none;
  7113. font-size:14px;
  7114. }
  7115. #u19160 {
  7116. border-width:0px;
  7117. position:absolute;
  7118. left:650px;
  7119. top:143px;
  7120. width:140px;
  7121. height:30px;
  7122. display:flex;
  7123. transition:none;
  7124. transform-origin:50% 50%;
  7125. font-size:14px;
  7126. }
  7127. #u19160 .text {
  7128. position:absolute;
  7129. align-self:center;
  7130. padding:2px 2px 2px 2px;
  7131. box-sizing:border-box;
  7132. width:100%;
  7133. }
  7134. #u19160_text {
  7135. border-width:0px;
  7136. word-wrap:break-word;
  7137. text-transform:none;
  7138. visibility:hidden;
  7139. }
  7140. #u19161_input {
  7141. position:absolute;
  7142. left:0px;
  7143. top:0px;
  7144. width:134px;
  7145. height:23px;
  7146. padding:2px 2px 2px 2px;
  7147. font-family:"ArialMT", "Arial", sans-serif;
  7148. font-weight:400;
  7149. font-style:normal;
  7150. font-size:14px;
  7151. letter-spacing:normal;
  7152. color:#AAAAAA;
  7153. vertical-align:none;
  7154. text-align:left;
  7155. text-transform:none;
  7156. background-color:transparent;
  7157. border-color:transparent;
  7158. }
  7159. #u19161_input.disabled {
  7160. position:absolute;
  7161. left:0px;
  7162. top:0px;
  7163. width:134px;
  7164. height:23px;
  7165. padding:2px 2px 2px 2px;
  7166. font-family:"ArialMT", "Arial", sans-serif;
  7167. font-weight:400;
  7168. font-style:normal;
  7169. font-size:14px;
  7170. letter-spacing:normal;
  7171. color:#AAAAAA;
  7172. vertical-align:none;
  7173. text-align:left;
  7174. text-transform:none;
  7175. background-color:transparent;
  7176. border-color:transparent;
  7177. }
  7178. #u19161_div {
  7179. border-width:0px;
  7180. position:absolute;
  7181. left:0px;
  7182. top:0px;
  7183. width:134px;
  7184. height:23px;
  7185. background:inherit;
  7186. background-color:rgba(255, 255, 255, 1);
  7187. border-radius:0px;
  7188. filter:drop-shadow(none);
  7189. transition:none;
  7190. font-size:14px;
  7191. color:#AAAAAA;
  7192. }
  7193. #u19161 {
  7194. border-width:0px;
  7195. position:absolute;
  7196. left:654px;
  7197. top:145px;
  7198. width:134px;
  7199. height:23px;
  7200. display:flex;
  7201. transition:none;
  7202. transform-origin:50% 50%;
  7203. font-size:14px;
  7204. color:#AAAAAA;
  7205. }
  7206. #u19161 .text {
  7207. position:absolute;
  7208. align-self:flex-start;
  7209. padding:2px 2px 2px 2px;
  7210. box-sizing:border-box;
  7211. width:100%;
  7212. }
  7213. #u19161_div.disabled {
  7214. border-width:0px;
  7215. position:absolute;
  7216. left:0px;
  7217. top:0px;
  7218. width:134px;
  7219. height:23px;
  7220. background:inherit;
  7221. background-color:rgba(240, 240, 240, 1);
  7222. border-radius:0px;
  7223. filter:drop-shadow(none);
  7224. transition:none;
  7225. font-size:14px;
  7226. color:#AAAAAA;
  7227. }
  7228. #u19161.disabled {
  7229. }
  7230. .u19161_input_option {
  7231. font-size:14px;
  7232. }
  7233. #u19162 {
  7234. border-width:0px;
  7235. position:absolute;
  7236. left:0px;
  7237. top:0px;
  7238. width:0px;
  7239. height:0px;
  7240. }
  7241. #u19163_div {
  7242. border-width:0px;
  7243. position:absolute;
  7244. left:0px;
  7245. top:0px;
  7246. width:140px;
  7247. height:30px;
  7248. background:inherit;
  7249. background-color:rgba(255, 255, 255, 1);
  7250. box-sizing:border-box;
  7251. border-width:1px;
  7252. border-style:solid;
  7253. border-color:rgba(215, 215, 215, 1);
  7254. border-radius:4px;
  7255. filter:drop-shadow(none);
  7256. transition:none;
  7257. font-size:14px;
  7258. }
  7259. #u19163 {
  7260. border-width:0px;
  7261. position:absolute;
  7262. left:500px;
  7263. top:143px;
  7264. width:140px;
  7265. height:30px;
  7266. display:flex;
  7267. transition:none;
  7268. transform-origin:50% 50%;
  7269. font-size:14px;
  7270. }
  7271. #u19163 .text {
  7272. position:absolute;
  7273. align-self:center;
  7274. padding:2px 2px 2px 2px;
  7275. box-sizing:border-box;
  7276. width:100%;
  7277. }
  7278. #u19163_text {
  7279. border-width:0px;
  7280. word-wrap:break-word;
  7281. text-transform:none;
  7282. visibility:hidden;
  7283. }
  7284. #u19164_input {
  7285. position:absolute;
  7286. left:0px;
  7287. top:0px;
  7288. width:134px;
  7289. height:23px;
  7290. padding:2px 2px 2px 2px;
  7291. font-family:"ArialMT", "Arial", sans-serif;
  7292. font-weight:400;
  7293. font-style:normal;
  7294. font-size:14px;
  7295. letter-spacing:normal;
  7296. color:#AAAAAA;
  7297. vertical-align:none;
  7298. text-align:left;
  7299. text-transform:none;
  7300. background-color:transparent;
  7301. border-color:transparent;
  7302. }
  7303. #u19164_input.disabled {
  7304. position:absolute;
  7305. left:0px;
  7306. top:0px;
  7307. width:134px;
  7308. height:23px;
  7309. padding:2px 2px 2px 2px;
  7310. font-family:"ArialMT", "Arial", sans-serif;
  7311. font-weight:400;
  7312. font-style:normal;
  7313. font-size:14px;
  7314. letter-spacing:normal;
  7315. color:#AAAAAA;
  7316. vertical-align:none;
  7317. text-align:left;
  7318. text-transform:none;
  7319. background-color:transparent;
  7320. border-color:transparent;
  7321. }
  7322. #u19164_div {
  7323. border-width:0px;
  7324. position:absolute;
  7325. left:0px;
  7326. top:0px;
  7327. width:134px;
  7328. height:23px;
  7329. background:inherit;
  7330. background-color:rgba(255, 255, 255, 1);
  7331. border-radius:0px;
  7332. filter:drop-shadow(none);
  7333. transition:none;
  7334. font-size:14px;
  7335. color:#AAAAAA;
  7336. }
  7337. #u19164 {
  7338. border-width:0px;
  7339. position:absolute;
  7340. left:504px;
  7341. top:145px;
  7342. width:134px;
  7343. height:23px;
  7344. display:flex;
  7345. transition:none;
  7346. transform-origin:50% 50%;
  7347. font-size:14px;
  7348. color:#AAAAAA;
  7349. }
  7350. #u19164 .text {
  7351. position:absolute;
  7352. align-self:flex-start;
  7353. padding:2px 2px 2px 2px;
  7354. box-sizing:border-box;
  7355. width:100%;
  7356. }
  7357. #u19164_div.disabled {
  7358. border-width:0px;
  7359. position:absolute;
  7360. left:0px;
  7361. top:0px;
  7362. width:134px;
  7363. height:23px;
  7364. background:inherit;
  7365. background-color:rgba(240, 240, 240, 1);
  7366. border-radius:0px;
  7367. filter:drop-shadow(none);
  7368. transition:none;
  7369. font-size:14px;
  7370. color:#AAAAAA;
  7371. }
  7372. #u19164.disabled {
  7373. }
  7374. .u19164_input_option {
  7375. font-size:14px;
  7376. }
  7377. #u19165 {
  7378. border-width:0px;
  7379. position:absolute;
  7380. left:0px;
  7381. top:0px;
  7382. width:0px;
  7383. height:0px;
  7384. }
  7385. #u19166_div {
  7386. border-width:0px;
  7387. position:absolute;
  7388. left:0px;
  7389. top:0px;
  7390. width:140px;
  7391. height:30px;
  7392. background:inherit;
  7393. background-color:rgba(255, 255, 255, 1);
  7394. box-sizing:border-box;
  7395. border-width:1px;
  7396. border-style:solid;
  7397. border-color:rgba(215, 215, 215, 1);
  7398. border-radius:4px;
  7399. filter:drop-shadow(none);
  7400. transition:none;
  7401. font-size:14px;
  7402. }
  7403. #u19166 {
  7404. border-width:0px;
  7405. position:absolute;
  7406. left:800px;
  7407. top:143px;
  7408. width:140px;
  7409. height:30px;
  7410. display:flex;
  7411. transition:none;
  7412. transform-origin:50% 50%;
  7413. font-size:14px;
  7414. }
  7415. #u19166 .text {
  7416. position:absolute;
  7417. align-self:center;
  7418. padding:2px 2px 2px 2px;
  7419. box-sizing:border-box;
  7420. width:100%;
  7421. }
  7422. #u19166_text {
  7423. border-width:0px;
  7424. word-wrap:break-word;
  7425. text-transform:none;
  7426. visibility:hidden;
  7427. }
  7428. #u19167_input {
  7429. position:absolute;
  7430. left:0px;
  7431. top:0px;
  7432. width:134px;
  7433. height:23px;
  7434. padding:2px 2px 2px 2px;
  7435. font-family:"ArialMT", "Arial", sans-serif;
  7436. font-weight:400;
  7437. font-style:normal;
  7438. font-size:14px;
  7439. letter-spacing:normal;
  7440. color:#AAAAAA;
  7441. vertical-align:none;
  7442. text-align:left;
  7443. text-transform:none;
  7444. background-color:transparent;
  7445. border-color:transparent;
  7446. }
  7447. #u19167_input.disabled {
  7448. position:absolute;
  7449. left:0px;
  7450. top:0px;
  7451. width:134px;
  7452. height:23px;
  7453. padding:2px 2px 2px 2px;
  7454. font-family:"ArialMT", "Arial", sans-serif;
  7455. font-weight:400;
  7456. font-style:normal;
  7457. font-size:14px;
  7458. letter-spacing:normal;
  7459. color:#AAAAAA;
  7460. vertical-align:none;
  7461. text-align:left;
  7462. text-transform:none;
  7463. background-color:transparent;
  7464. border-color:transparent;
  7465. }
  7466. #u19167_div {
  7467. border-width:0px;
  7468. position:absolute;
  7469. left:0px;
  7470. top:0px;
  7471. width:134px;
  7472. height:23px;
  7473. background:inherit;
  7474. background-color:rgba(255, 255, 255, 1);
  7475. border-radius:0px;
  7476. filter:drop-shadow(none);
  7477. transition:none;
  7478. font-size:14px;
  7479. color:#AAAAAA;
  7480. }
  7481. #u19167 {
  7482. border-width:0px;
  7483. position:absolute;
  7484. left:804px;
  7485. top:145px;
  7486. width:134px;
  7487. height:23px;
  7488. display:flex;
  7489. transition:none;
  7490. transform-origin:50% 50%;
  7491. font-size:14px;
  7492. color:#AAAAAA;
  7493. }
  7494. #u19167 .text {
  7495. position:absolute;
  7496. align-self:flex-start;
  7497. padding:2px 2px 2px 2px;
  7498. box-sizing:border-box;
  7499. width:100%;
  7500. }
  7501. #u19167_div.disabled {
  7502. border-width:0px;
  7503. position:absolute;
  7504. left:0px;
  7505. top:0px;
  7506. width:134px;
  7507. height:23px;
  7508. background:inherit;
  7509. background-color:rgba(240, 240, 240, 1);
  7510. border-radius:0px;
  7511. filter:drop-shadow(none);
  7512. transition:none;
  7513. font-size:14px;
  7514. color:#AAAAAA;
  7515. }
  7516. #u19167.disabled {
  7517. }
  7518. .u19167_input_option {
  7519. font-size:14px;
  7520. }
  7521. #u19168 {
  7522. border-width:0px;
  7523. position:absolute;
  7524. left:0px;
  7525. top:0px;
  7526. width:0px;
  7527. height:0px;
  7528. }
  7529. #u19169_div {
  7530. border-width:0px;
  7531. position:absolute;
  7532. left:0px;
  7533. top:0px;
  7534. width:140px;
  7535. height:30px;
  7536. background:inherit;
  7537. background-color:rgba(255, 255, 255, 1);
  7538. box-sizing:border-box;
  7539. border-width:1px;
  7540. border-style:solid;
  7541. border-color:rgba(215, 215, 215, 1);
  7542. border-radius:4px;
  7543. filter:drop-shadow(none);
  7544. transition:none;
  7545. font-size:14px;
  7546. }
  7547. #u19169 {
  7548. border-width:0px;
  7549. position:absolute;
  7550. left:500px;
  7551. top:183px;
  7552. width:140px;
  7553. height:30px;
  7554. display:flex;
  7555. transition:none;
  7556. transform-origin:50% 50%;
  7557. font-size:14px;
  7558. }
  7559. #u19169 .text {
  7560. position:absolute;
  7561. align-self:center;
  7562. padding:2px 2px 2px 2px;
  7563. box-sizing:border-box;
  7564. width:100%;
  7565. }
  7566. #u19169_text {
  7567. border-width:0px;
  7568. word-wrap:break-word;
  7569. text-transform:none;
  7570. visibility:hidden;
  7571. }
  7572. #u19170_input {
  7573. position:absolute;
  7574. left:0px;
  7575. top:0px;
  7576. width:134px;
  7577. height:23px;
  7578. padding:2px 2px 2px 2px;
  7579. font-family:"ArialMT", "Arial", sans-serif;
  7580. font-weight:400;
  7581. font-style:normal;
  7582. font-size:14px;
  7583. letter-spacing:normal;
  7584. color:#AAAAAA;
  7585. vertical-align:none;
  7586. text-align:left;
  7587. text-transform:none;
  7588. background-color:transparent;
  7589. border-color:transparent;
  7590. }
  7591. #u19170_input.disabled {
  7592. position:absolute;
  7593. left:0px;
  7594. top:0px;
  7595. width:134px;
  7596. height:23px;
  7597. padding:2px 2px 2px 2px;
  7598. font-family:"ArialMT", "Arial", sans-serif;
  7599. font-weight:400;
  7600. font-style:normal;
  7601. font-size:14px;
  7602. letter-spacing:normal;
  7603. color:#AAAAAA;
  7604. vertical-align:none;
  7605. text-align:left;
  7606. text-transform:none;
  7607. background-color:transparent;
  7608. border-color:transparent;
  7609. }
  7610. #u19170_div {
  7611. border-width:0px;
  7612. position:absolute;
  7613. left:0px;
  7614. top:0px;
  7615. width:134px;
  7616. height:23px;
  7617. background:inherit;
  7618. background-color:rgba(255, 255, 255, 1);
  7619. border-radius:0px;
  7620. filter:drop-shadow(none);
  7621. transition:none;
  7622. font-size:14px;
  7623. color:#AAAAAA;
  7624. }
  7625. #u19170 {
  7626. border-width:0px;
  7627. position:absolute;
  7628. left:504px;
  7629. top:185px;
  7630. width:134px;
  7631. height:23px;
  7632. display:flex;
  7633. transition:none;
  7634. transform-origin:50% 50%;
  7635. font-size:14px;
  7636. color:#AAAAAA;
  7637. }
  7638. #u19170 .text {
  7639. position:absolute;
  7640. align-self:flex-start;
  7641. padding:2px 2px 2px 2px;
  7642. box-sizing:border-box;
  7643. width:100%;
  7644. }
  7645. #u19170_div.disabled {
  7646. border-width:0px;
  7647. position:absolute;
  7648. left:0px;
  7649. top:0px;
  7650. width:134px;
  7651. height:23px;
  7652. background:inherit;
  7653. background-color:rgba(240, 240, 240, 1);
  7654. border-radius:0px;
  7655. filter:drop-shadow(none);
  7656. transition:none;
  7657. font-size:14px;
  7658. color:#AAAAAA;
  7659. }
  7660. #u19170.disabled {
  7661. }
  7662. .u19170_input_option {
  7663. font-size:14px;
  7664. }
  7665. #u19171 {
  7666. border-width:0px;
  7667. position:absolute;
  7668. left:0px;
  7669. top:0px;
  7670. width:0px;
  7671. height:0px;
  7672. }
  7673. #u19172_div {
  7674. border-width:0px;
  7675. position:absolute;
  7676. left:0px;
  7677. top:0px;
  7678. width:140px;
  7679. height:30px;
  7680. background:inherit;
  7681. background-color:rgba(255, 255, 255, 1);
  7682. box-sizing:border-box;
  7683. border-width:1px;
  7684. border-style:solid;
  7685. border-color:rgba(201, 201, 201, 1);
  7686. border-radius:4px;
  7687. filter:drop-shadow(none);
  7688. transition:none;
  7689. font-family:"Microsoft YaHei", sans-serif;
  7690. font-weight:400;
  7691. font-style:normal;
  7692. font-size:14px;
  7693. color:#CCCCCC;
  7694. text-align:left;
  7695. }
  7696. #u19172 {
  7697. border-width:0px;
  7698. position:absolute;
  7699. left:348px;
  7700. top:183px;
  7701. width:140px;
  7702. height:30px;
  7703. display:flex;
  7704. transition:none;
  7705. transform-origin:50% 50%;
  7706. font-family:"Microsoft YaHei", sans-serif;
  7707. font-weight:400;
  7708. font-style:normal;
  7709. font-size:14px;
  7710. color:#CCCCCC;
  7711. text-align:left;
  7712. }
  7713. #u19172 .text {
  7714. position:absolute;
  7715. align-self:center;
  7716. padding:2px 8px 2px 8px;
  7717. box-sizing:border-box;
  7718. width:100%;
  7719. }
  7720. #u19172_text {
  7721. border-width:0px;
  7722. word-wrap:break-word;
  7723. text-transform:none;
  7724. visibility:hidden;
  7725. }
  7726. #u19173_input {
  7727. position:absolute;
  7728. left:0px;
  7729. top:0px;
  7730. width:127px;
  7731. height:25px;
  7732. padding:2px 2px 2px 2px;
  7733. font-family:"Microsoft YaHei", sans-serif;
  7734. font-weight:400;
  7735. font-style:normal;
  7736. font-size:10px;
  7737. letter-spacing:normal;
  7738. color:#000000;
  7739. vertical-align:none;
  7740. text-align:left;
  7741. text-transform:none;
  7742. background-color:transparent;
  7743. border-color:transparent;
  7744. }
  7745. #u19173_input.hint {
  7746. position:absolute;
  7747. left:0px;
  7748. top:0px;
  7749. width:127px;
  7750. height:25px;
  7751. padding:2px 2px 2px 2px;
  7752. font-family:"Microsoft YaHei", sans-serif;
  7753. font-weight:400;
  7754. font-style:normal;
  7755. font-size:12px;
  7756. letter-spacing:normal;
  7757. color:#AAAAAA;
  7758. vertical-align:none;
  7759. text-align:left;
  7760. text-transform:none;
  7761. background-color:transparent;
  7762. border-color:transparent;
  7763. }
  7764. #u19173_input.disabled {
  7765. position:absolute;
  7766. left:0px;
  7767. top:0px;
  7768. width:127px;
  7769. height:25px;
  7770. padding:2px 2px 2px 2px;
  7771. font-family:"Microsoft YaHei", sans-serif;
  7772. font-weight:400;
  7773. font-style:normal;
  7774. font-size:10px;
  7775. letter-spacing:normal;
  7776. color:#000000;
  7777. vertical-align:none;
  7778. text-align:left;
  7779. text-transform:none;
  7780. background-color:transparent;
  7781. border-color:transparent;
  7782. }
  7783. #u19173_input.hint.disabled {
  7784. position:absolute;
  7785. left:0px;
  7786. top:0px;
  7787. width:127px;
  7788. height:25px;
  7789. padding:2px 2px 2px 2px;
  7790. font-family:"Microsoft YaHei", sans-serif;
  7791. font-weight:400;
  7792. font-style:normal;
  7793. font-size:12px;
  7794. letter-spacing:normal;
  7795. color:#AAAAAA;
  7796. vertical-align:none;
  7797. text-align:left;
  7798. text-transform:none;
  7799. background-color:transparent;
  7800. border-color:transparent;
  7801. }
  7802. #u19173_div {
  7803. border-width:0px;
  7804. position:absolute;
  7805. left:0px;
  7806. top:0px;
  7807. width:127px;
  7808. height:25px;
  7809. background:inherit;
  7810. background-color:rgba(255, 255, 255, 1);
  7811. border-radius:0px;
  7812. filter:drop-shadow(none);
  7813. transition:none;
  7814. font-family:"Microsoft YaHei", sans-serif;
  7815. font-weight:400;
  7816. font-style:normal;
  7817. font-size:10px;
  7818. }
  7819. #u19173 {
  7820. border-width:0px;
  7821. position:absolute;
  7822. left:356px;
  7823. top:184px;
  7824. width:127px;
  7825. height:25px;
  7826. display:flex;
  7827. transition:none;
  7828. transform-origin:50% 50%;
  7829. font-family:"Microsoft YaHei", sans-serif;
  7830. font-weight:400;
  7831. font-style:normal;
  7832. font-size:10px;
  7833. }
  7834. #u19173 .text {
  7835. position:absolute;
  7836. align-self:center;
  7837. padding:2px 2px 2px 2px;
  7838. box-sizing:border-box;
  7839. width:100%;
  7840. }
  7841. #u19173_div.hint {
  7842. border-width:0px;
  7843. position:absolute;
  7844. left:0px;
  7845. top:0px;
  7846. width:127px;
  7847. height:25px;
  7848. background:inherit;
  7849. background-color:rgba(255, 255, 255, 1);
  7850. border-radius:0px;
  7851. filter:drop-shadow(none);
  7852. transition:none;
  7853. font-family:"Microsoft YaHei", sans-serif;
  7854. font-weight:400;
  7855. font-style:normal;
  7856. font-size:10px;
  7857. }
  7858. #u19173.hint {
  7859. }
  7860. #u19173_div.disabled {
  7861. border-width:0px;
  7862. position:absolute;
  7863. left:0px;
  7864. top:0px;
  7865. width:127px;
  7866. height:25px;
  7867. background:inherit;
  7868. background-color:rgba(240, 240, 240, 1);
  7869. border-radius:0px;
  7870. filter:drop-shadow(none);
  7871. transition:none;
  7872. font-family:"Microsoft YaHei", sans-serif;
  7873. font-weight:400;
  7874. font-style:normal;
  7875. font-size:10px;
  7876. }
  7877. #u19173.disabled {
  7878. }
  7879. #u19173_div.hint.disabled {
  7880. border-width:0px;
  7881. position:absolute;
  7882. left:0px;
  7883. top:0px;
  7884. width:127px;
  7885. height:25px;
  7886. background:inherit;
  7887. background-color:rgba(240, 240, 240, 1);
  7888. border-radius:0px;
  7889. filter:drop-shadow(none);
  7890. transition:none;
  7891. font-family:"Microsoft YaHei", sans-serif;
  7892. font-weight:400;
  7893. font-style:normal;
  7894. font-size:10px;
  7895. }
  7896. #u19173.hint.disabled {
  7897. }
  7898. #u19174 {
  7899. border-width:0px;
  7900. position:absolute;
  7901. left:0px;
  7902. top:0px;
  7903. width:0px;
  7904. height:0px;
  7905. }
  7906. #u19175_div {
  7907. border-width:0px;
  7908. position:absolute;
  7909. left:0px;
  7910. top:0px;
  7911. width:140px;
  7912. height:30px;
  7913. background:inherit;
  7914. background-color:rgba(255, 255, 255, 1);
  7915. box-sizing:border-box;
  7916. border-width:1px;
  7917. border-style:solid;
  7918. border-color:rgba(201, 201, 201, 1);
  7919. border-radius:4px;
  7920. filter:drop-shadow(none);
  7921. transition:none;
  7922. font-family:"Microsoft YaHei", sans-serif;
  7923. font-weight:400;
  7924. font-style:normal;
  7925. font-size:14px;
  7926. color:#CCCCCC;
  7927. text-align:left;
  7928. }
  7929. #u19175 {
  7930. border-width:0px;
  7931. position:absolute;
  7932. left:1400px;
  7933. top:143px;
  7934. width:140px;
  7935. height:30px;
  7936. display:flex;
  7937. transition:none;
  7938. transform-origin:50% 50%;
  7939. font-family:"Microsoft YaHei", sans-serif;
  7940. font-weight:400;
  7941. font-style:normal;
  7942. font-size:14px;
  7943. color:#CCCCCC;
  7944. text-align:left;
  7945. }
  7946. #u19175 .text {
  7947. position:absolute;
  7948. align-self:center;
  7949. padding:2px 8px 2px 8px;
  7950. box-sizing:border-box;
  7951. width:100%;
  7952. }
  7953. #u19175_text {
  7954. border-width:0px;
  7955. word-wrap:break-word;
  7956. text-transform:none;
  7957. visibility:hidden;
  7958. }
  7959. #u19176_input {
  7960. position:absolute;
  7961. left:0px;
  7962. top:0px;
  7963. width:127px;
  7964. height:25px;
  7965. padding:2px 2px 2px 2px;
  7966. font-family:"Microsoft YaHei", sans-serif;
  7967. font-weight:400;
  7968. font-style:normal;
  7969. font-size:10px;
  7970. letter-spacing:normal;
  7971. color:#000000;
  7972. vertical-align:none;
  7973. text-align:left;
  7974. text-transform:none;
  7975. background-color:transparent;
  7976. border-color:transparent;
  7977. }
  7978. #u19176_input.hint {
  7979. position:absolute;
  7980. left:0px;
  7981. top:0px;
  7982. width:127px;
  7983. height:25px;
  7984. padding:2px 2px 2px 2px;
  7985. font-family:"Microsoft YaHei", sans-serif;
  7986. font-weight:400;
  7987. font-style:normal;
  7988. font-size:12px;
  7989. letter-spacing:normal;
  7990. color:#AAAAAA;
  7991. vertical-align:none;
  7992. text-align:left;
  7993. text-transform:none;
  7994. background-color:transparent;
  7995. border-color:transparent;
  7996. }
  7997. #u19176_input.disabled {
  7998. position:absolute;
  7999. left:0px;
  8000. top:0px;
  8001. width:127px;
  8002. height:25px;
  8003. padding:2px 2px 2px 2px;
  8004. font-family:"Microsoft YaHei", sans-serif;
  8005. font-weight:400;
  8006. font-style:normal;
  8007. font-size:10px;
  8008. letter-spacing:normal;
  8009. color:#000000;
  8010. vertical-align:none;
  8011. text-align:left;
  8012. text-transform:none;
  8013. background-color:transparent;
  8014. border-color:transparent;
  8015. }
  8016. #u19176_input.hint.disabled {
  8017. position:absolute;
  8018. left:0px;
  8019. top:0px;
  8020. width:127px;
  8021. height:25px;
  8022. padding:2px 2px 2px 2px;
  8023. font-family:"Microsoft YaHei", sans-serif;
  8024. font-weight:400;
  8025. font-style:normal;
  8026. font-size:12px;
  8027. letter-spacing:normal;
  8028. color:#AAAAAA;
  8029. vertical-align:none;
  8030. text-align:left;
  8031. text-transform:none;
  8032. background-color:transparent;
  8033. border-color:transparent;
  8034. }
  8035. #u19176_div {
  8036. border-width:0px;
  8037. position:absolute;
  8038. left:0px;
  8039. top:0px;
  8040. width:127px;
  8041. height:25px;
  8042. background:inherit;
  8043. background-color:rgba(255, 255, 255, 1);
  8044. border-radius:0px;
  8045. filter:drop-shadow(none);
  8046. transition:none;
  8047. font-family:"Microsoft YaHei", sans-serif;
  8048. font-weight:400;
  8049. font-style:normal;
  8050. font-size:10px;
  8051. }
  8052. #u19176 {
  8053. border-width:0px;
  8054. position:absolute;
  8055. left:1408px;
  8056. top:144px;
  8057. width:127px;
  8058. height:25px;
  8059. display:flex;
  8060. transition:none;
  8061. transform-origin:50% 50%;
  8062. font-family:"Microsoft YaHei", sans-serif;
  8063. font-weight:400;
  8064. font-style:normal;
  8065. font-size:10px;
  8066. }
  8067. #u19176 .text {
  8068. position:absolute;
  8069. align-self:center;
  8070. padding:2px 2px 2px 2px;
  8071. box-sizing:border-box;
  8072. width:100%;
  8073. }
  8074. #u19176_div.hint {
  8075. border-width:0px;
  8076. position:absolute;
  8077. left:0px;
  8078. top:0px;
  8079. width:127px;
  8080. height:25px;
  8081. background:inherit;
  8082. background-color:rgba(255, 255, 255, 1);
  8083. border-radius:0px;
  8084. filter:drop-shadow(none);
  8085. transition:none;
  8086. font-family:"Microsoft YaHei", sans-serif;
  8087. font-weight:400;
  8088. font-style:normal;
  8089. font-size:10px;
  8090. }
  8091. #u19176.hint {
  8092. }
  8093. #u19176_div.disabled {
  8094. border-width:0px;
  8095. position:absolute;
  8096. left:0px;
  8097. top:0px;
  8098. width:127px;
  8099. height:25px;
  8100. background:inherit;
  8101. background-color:rgba(240, 240, 240, 1);
  8102. border-radius:0px;
  8103. filter:drop-shadow(none);
  8104. transition:none;
  8105. font-family:"Microsoft YaHei", sans-serif;
  8106. font-weight:400;
  8107. font-style:normal;
  8108. font-size:10px;
  8109. }
  8110. #u19176.disabled {
  8111. }
  8112. #u19176_div.hint.disabled {
  8113. border-width:0px;
  8114. position:absolute;
  8115. left:0px;
  8116. top:0px;
  8117. width:127px;
  8118. height:25px;
  8119. background:inherit;
  8120. background-color:rgba(240, 240, 240, 1);
  8121. border-radius:0px;
  8122. filter:drop-shadow(none);
  8123. transition:none;
  8124. font-family:"Microsoft YaHei", sans-serif;
  8125. font-weight:400;
  8126. font-style:normal;
  8127. font-size:10px;
  8128. }
  8129. #u19176.hint.disabled {
  8130. }
  8131. #u19177 {
  8132. border-width:0px;
  8133. position:absolute;
  8134. left:0px;
  8135. top:0px;
  8136. width:0px;
  8137. height:0px;
  8138. }
  8139. #u19178_div {
  8140. border-width:0px;
  8141. position:absolute;
  8142. left:0px;
  8143. top:0px;
  8144. width:140px;
  8145. height:30px;
  8146. background:inherit;
  8147. background-color:rgba(255, 255, 255, 1);
  8148. box-sizing:border-box;
  8149. border-width:1px;
  8150. border-style:solid;
  8151. border-color:rgba(215, 215, 215, 1);
  8152. border-radius:4px;
  8153. filter:drop-shadow(none);
  8154. transition:none;
  8155. font-size:14px;
  8156. }
  8157. #u19178 {
  8158. border-width:0px;
  8159. position:absolute;
  8160. left:1250px;
  8161. top:143px;
  8162. width:140px;
  8163. height:30px;
  8164. display:flex;
  8165. transition:none;
  8166. transform-origin:50% 50%;
  8167. font-size:14px;
  8168. }
  8169. #u19178 .text {
  8170. position:absolute;
  8171. align-self:center;
  8172. padding:2px 2px 2px 2px;
  8173. box-sizing:border-box;
  8174. width:100%;
  8175. }
  8176. #u19178_text {
  8177. border-width:0px;
  8178. word-wrap:break-word;
  8179. text-transform:none;
  8180. visibility:hidden;
  8181. }
  8182. #u19179_input {
  8183. position:absolute;
  8184. left:0px;
  8185. top:0px;
  8186. width:134px;
  8187. height:23px;
  8188. padding:2px 2px 2px 2px;
  8189. font-family:"ArialMT", "Arial", sans-serif;
  8190. font-weight:400;
  8191. font-style:normal;
  8192. font-size:14px;
  8193. letter-spacing:normal;
  8194. color:#AAAAAA;
  8195. vertical-align:none;
  8196. text-align:left;
  8197. text-transform:none;
  8198. background-color:transparent;
  8199. border-color:transparent;
  8200. }
  8201. #u19179_input.disabled {
  8202. position:absolute;
  8203. left:0px;
  8204. top:0px;
  8205. width:134px;
  8206. height:23px;
  8207. padding:2px 2px 2px 2px;
  8208. font-family:"ArialMT", "Arial", sans-serif;
  8209. font-weight:400;
  8210. font-style:normal;
  8211. font-size:14px;
  8212. letter-spacing:normal;
  8213. color:#AAAAAA;
  8214. vertical-align:none;
  8215. text-align:left;
  8216. text-transform:none;
  8217. background-color:transparent;
  8218. border-color:transparent;
  8219. }
  8220. #u19179_div {
  8221. border-width:0px;
  8222. position:absolute;
  8223. left:0px;
  8224. top:0px;
  8225. width:134px;
  8226. height:23px;
  8227. background:inherit;
  8228. background-color:rgba(255, 255, 255, 1);
  8229. border-radius:0px;
  8230. filter:drop-shadow(none);
  8231. transition:none;
  8232. font-size:14px;
  8233. color:#AAAAAA;
  8234. }
  8235. #u19179 {
  8236. border-width:0px;
  8237. position:absolute;
  8238. left:1254px;
  8239. top:145px;
  8240. width:134px;
  8241. height:23px;
  8242. display:flex;
  8243. transition:none;
  8244. transform-origin:50% 50%;
  8245. font-size:14px;
  8246. color:#AAAAAA;
  8247. }
  8248. #u19179 .text {
  8249. position:absolute;
  8250. align-self:flex-start;
  8251. padding:2px 2px 2px 2px;
  8252. box-sizing:border-box;
  8253. width:100%;
  8254. }
  8255. #u19179_div.disabled {
  8256. border-width:0px;
  8257. position:absolute;
  8258. left:0px;
  8259. top:0px;
  8260. width:134px;
  8261. height:23px;
  8262. background:inherit;
  8263. background-color:rgba(240, 240, 240, 1);
  8264. border-radius:0px;
  8265. filter:drop-shadow(none);
  8266. transition:none;
  8267. font-size:14px;
  8268. color:#AAAAAA;
  8269. }
  8270. #u19179.disabled {
  8271. }
  8272. .u19179_input_option {
  8273. font-size:14px;
  8274. }
  8275. #u19180 {
  8276. border-width:0px;
  8277. position:absolute;
  8278. left:0px;
  8279. top:0px;
  8280. width:0px;
  8281. height:0px;
  8282. }
  8283. #u19181_div {
  8284. border-width:0px;
  8285. position:absolute;
  8286. left:0px;
  8287. top:0px;
  8288. width:140px;
  8289. height:30px;
  8290. background:inherit;
  8291. background-color:rgba(255, 255, 255, 1);
  8292. box-sizing:border-box;
  8293. border-width:1px;
  8294. border-style:solid;
  8295. border-color:rgba(215, 215, 215, 1);
  8296. border-radius:4px;
  8297. filter:drop-shadow(none);
  8298. transition:none;
  8299. font-size:14px;
  8300. }
  8301. #u19181 {
  8302. border-width:0px;
  8303. position:absolute;
  8304. left:650px;
  8305. top:183px;
  8306. width:140px;
  8307. height:30px;
  8308. display:flex;
  8309. transition:none;
  8310. transform-origin:50% 50%;
  8311. font-size:14px;
  8312. }
  8313. #u19181 .text {
  8314. position:absolute;
  8315. align-self:center;
  8316. padding:2px 2px 2px 2px;
  8317. box-sizing:border-box;
  8318. width:100%;
  8319. }
  8320. #u19181_text {
  8321. border-width:0px;
  8322. word-wrap:break-word;
  8323. text-transform:none;
  8324. visibility:hidden;
  8325. }
  8326. #u19182_input {
  8327. position:absolute;
  8328. left:0px;
  8329. top:0px;
  8330. width:134px;
  8331. height:23px;
  8332. padding:2px 2px 2px 2px;
  8333. font-family:"ArialMT", "Arial", sans-serif;
  8334. font-weight:400;
  8335. font-style:normal;
  8336. font-size:14px;
  8337. letter-spacing:normal;
  8338. color:#AAAAAA;
  8339. vertical-align:none;
  8340. text-align:left;
  8341. text-transform:none;
  8342. background-color:transparent;
  8343. border-color:transparent;
  8344. }
  8345. #u19182_input.disabled {
  8346. position:absolute;
  8347. left:0px;
  8348. top:0px;
  8349. width:134px;
  8350. height:23px;
  8351. padding:2px 2px 2px 2px;
  8352. font-family:"ArialMT", "Arial", sans-serif;
  8353. font-weight:400;
  8354. font-style:normal;
  8355. font-size:14px;
  8356. letter-spacing:normal;
  8357. color:#AAAAAA;
  8358. vertical-align:none;
  8359. text-align:left;
  8360. text-transform:none;
  8361. background-color:transparent;
  8362. border-color:transparent;
  8363. }
  8364. #u19182_div {
  8365. border-width:0px;
  8366. position:absolute;
  8367. left:0px;
  8368. top:0px;
  8369. width:134px;
  8370. height:23px;
  8371. background:inherit;
  8372. background-color:rgba(255, 255, 255, 1);
  8373. border-radius:0px;
  8374. filter:drop-shadow(none);
  8375. transition:none;
  8376. font-size:14px;
  8377. color:#AAAAAA;
  8378. }
  8379. #u19182 {
  8380. border-width:0px;
  8381. position:absolute;
  8382. left:654px;
  8383. top:185px;
  8384. width:134px;
  8385. height:23px;
  8386. display:flex;
  8387. transition:none;
  8388. transform-origin:50% 50%;
  8389. font-size:14px;
  8390. color:#AAAAAA;
  8391. }
  8392. #u19182 .text {
  8393. position:absolute;
  8394. align-self:flex-start;
  8395. padding:2px 2px 2px 2px;
  8396. box-sizing:border-box;
  8397. width:100%;
  8398. }
  8399. #u19182_div.disabled {
  8400. border-width:0px;
  8401. position:absolute;
  8402. left:0px;
  8403. top:0px;
  8404. width:134px;
  8405. height:23px;
  8406. background:inherit;
  8407. background-color:rgba(240, 240, 240, 1);
  8408. border-radius:0px;
  8409. filter:drop-shadow(none);
  8410. transition:none;
  8411. font-size:14px;
  8412. color:#AAAAAA;
  8413. }
  8414. #u19182.disabled {
  8415. }
  8416. .u19182_input_option {
  8417. font-size:14px;
  8418. }
  8419. #u19183 {
  8420. border-width:0px;
  8421. position:absolute;
  8422. left:0px;
  8423. top:0px;
  8424. width:0px;
  8425. height:0px;
  8426. }
  8427. #u19184_div {
  8428. border-width:0px;
  8429. position:absolute;
  8430. left:0px;
  8431. top:0px;
  8432. width:140px;
  8433. height:30px;
  8434. background:inherit;
  8435. background-color:rgba(255, 255, 255, 1);
  8436. box-sizing:border-box;
  8437. border-width:1px;
  8438. border-style:solid;
  8439. border-color:rgba(215, 215, 215, 1);
  8440. border-radius:4px;
  8441. filter:drop-shadow(none);
  8442. transition:none;
  8443. font-size:14px;
  8444. }
  8445. #u19184 {
  8446. border-width:0px;
  8447. position:absolute;
  8448. left:950px;
  8449. top:183px;
  8450. width:140px;
  8451. height:30px;
  8452. display:flex;
  8453. transition:none;
  8454. transform-origin:50% 50%;
  8455. font-size:14px;
  8456. }
  8457. #u19184 .text {
  8458. position:absolute;
  8459. align-self:center;
  8460. padding:2px 2px 2px 2px;
  8461. box-sizing:border-box;
  8462. width:100%;
  8463. }
  8464. #u19184_text {
  8465. border-width:0px;
  8466. word-wrap:break-word;
  8467. text-transform:none;
  8468. visibility:hidden;
  8469. }
  8470. #u19185_input {
  8471. position:absolute;
  8472. left:0px;
  8473. top:0px;
  8474. width:134px;
  8475. height:23px;
  8476. padding:2px 2px 2px 2px;
  8477. font-family:"ArialMT", "Arial", sans-serif;
  8478. font-weight:400;
  8479. font-style:normal;
  8480. font-size:14px;
  8481. letter-spacing:normal;
  8482. color:#AAAAAA;
  8483. vertical-align:none;
  8484. text-align:left;
  8485. text-transform:none;
  8486. background-color:transparent;
  8487. border-color:transparent;
  8488. }
  8489. #u19185_input.disabled {
  8490. position:absolute;
  8491. left:0px;
  8492. top:0px;
  8493. width:134px;
  8494. height:23px;
  8495. padding:2px 2px 2px 2px;
  8496. font-family:"ArialMT", "Arial", sans-serif;
  8497. font-weight:400;
  8498. font-style:normal;
  8499. font-size:14px;
  8500. letter-spacing:normal;
  8501. color:#AAAAAA;
  8502. vertical-align:none;
  8503. text-align:left;
  8504. text-transform:none;
  8505. background-color:transparent;
  8506. border-color:transparent;
  8507. }
  8508. #u19185_div {
  8509. border-width:0px;
  8510. position:absolute;
  8511. left:0px;
  8512. top:0px;
  8513. width:134px;
  8514. height:23px;
  8515. background:inherit;
  8516. background-color:rgba(255, 255, 255, 1);
  8517. border-radius:0px;
  8518. filter:drop-shadow(none);
  8519. transition:none;
  8520. font-size:14px;
  8521. color:#AAAAAA;
  8522. }
  8523. #u19185 {
  8524. border-width:0px;
  8525. position:absolute;
  8526. left:954px;
  8527. top:185px;
  8528. width:134px;
  8529. height:23px;
  8530. display:flex;
  8531. transition:none;
  8532. transform-origin:50% 50%;
  8533. font-size:14px;
  8534. color:#AAAAAA;
  8535. }
  8536. #u19185 .text {
  8537. position:absolute;
  8538. align-self:flex-start;
  8539. padding:2px 2px 2px 2px;
  8540. box-sizing:border-box;
  8541. width:100%;
  8542. }
  8543. #u19185_div.disabled {
  8544. border-width:0px;
  8545. position:absolute;
  8546. left:0px;
  8547. top:0px;
  8548. width:134px;
  8549. height:23px;
  8550. background:inherit;
  8551. background-color:rgba(240, 240, 240, 1);
  8552. border-radius:0px;
  8553. filter:drop-shadow(none);
  8554. transition:none;
  8555. font-size:14px;
  8556. color:#AAAAAA;
  8557. }
  8558. #u19185.disabled {
  8559. }
  8560. .u19185_input_option {
  8561. font-size:14px;
  8562. }
  8563. #u19186 {
  8564. border-width:0px;
  8565. position:absolute;
  8566. left:0px;
  8567. top:0px;
  8568. width:0px;
  8569. height:0px;
  8570. }
  8571. #u19187_div {
  8572. border-width:0px;
  8573. position:absolute;
  8574. left:0px;
  8575. top:0px;
  8576. width:140px;
  8577. height:30px;
  8578. background:inherit;
  8579. background-color:rgba(255, 255, 255, 1);
  8580. box-sizing:border-box;
  8581. border-width:1px;
  8582. border-style:solid;
  8583. border-color:rgba(215, 215, 215, 1);
  8584. border-radius:4px;
  8585. filter:drop-shadow(none);
  8586. transition:none;
  8587. font-size:14px;
  8588. }
  8589. #u19187 {
  8590. border-width:0px;
  8591. position:absolute;
  8592. left:950px;
  8593. top:143px;
  8594. width:140px;
  8595. height:30px;
  8596. display:flex;
  8597. transition:none;
  8598. transform-origin:50% 50%;
  8599. font-size:14px;
  8600. }
  8601. #u19187 .text {
  8602. position:absolute;
  8603. align-self:center;
  8604. padding:2px 2px 2px 2px;
  8605. box-sizing:border-box;
  8606. width:100%;
  8607. }
  8608. #u19187_text {
  8609. border-width:0px;
  8610. word-wrap:break-word;
  8611. text-transform:none;
  8612. visibility:hidden;
  8613. }
  8614. #u19188_input {
  8615. position:absolute;
  8616. left:0px;
  8617. top:0px;
  8618. width:134px;
  8619. height:23px;
  8620. padding:2px 2px 2px 2px;
  8621. font-family:"ArialMT", "Arial", sans-serif;
  8622. font-weight:400;
  8623. font-style:normal;
  8624. font-size:14px;
  8625. letter-spacing:normal;
  8626. color:#AAAAAA;
  8627. vertical-align:none;
  8628. text-align:left;
  8629. text-transform:none;
  8630. background-color:transparent;
  8631. border-color:transparent;
  8632. }
  8633. #u19188_input.disabled {
  8634. position:absolute;
  8635. left:0px;
  8636. top:0px;
  8637. width:134px;
  8638. height:23px;
  8639. padding:2px 2px 2px 2px;
  8640. font-family:"ArialMT", "Arial", sans-serif;
  8641. font-weight:400;
  8642. font-style:normal;
  8643. font-size:14px;
  8644. letter-spacing:normal;
  8645. color:#AAAAAA;
  8646. vertical-align:none;
  8647. text-align:left;
  8648. text-transform:none;
  8649. background-color:transparent;
  8650. border-color:transparent;
  8651. }
  8652. #u19188_div {
  8653. border-width:0px;
  8654. position:absolute;
  8655. left:0px;
  8656. top:0px;
  8657. width:134px;
  8658. height:23px;
  8659. background:inherit;
  8660. background-color:rgba(255, 255, 255, 1);
  8661. border-radius:0px;
  8662. filter:drop-shadow(none);
  8663. transition:none;
  8664. font-size:14px;
  8665. color:#AAAAAA;
  8666. }
  8667. #u19188 {
  8668. border-width:0px;
  8669. position:absolute;
  8670. left:954px;
  8671. top:145px;
  8672. width:134px;
  8673. height:23px;
  8674. display:flex;
  8675. transition:none;
  8676. transform-origin:50% 50%;
  8677. font-size:14px;
  8678. color:#AAAAAA;
  8679. }
  8680. #u19188 .text {
  8681. position:absolute;
  8682. align-self:flex-start;
  8683. padding:2px 2px 2px 2px;
  8684. box-sizing:border-box;
  8685. width:100%;
  8686. }
  8687. #u19188_div.disabled {
  8688. border-width:0px;
  8689. position:absolute;
  8690. left:0px;
  8691. top:0px;
  8692. width:134px;
  8693. height:23px;
  8694. background:inherit;
  8695. background-color:rgba(240, 240, 240, 1);
  8696. border-radius:0px;
  8697. filter:drop-shadow(none);
  8698. transition:none;
  8699. font-size:14px;
  8700. color:#AAAAAA;
  8701. }
  8702. #u19188.disabled {
  8703. }
  8704. .u19188_input_option {
  8705. font-size:14px;
  8706. }
  8707. #u19189 {
  8708. border-width:0px;
  8709. position:absolute;
  8710. left:0px;
  8711. top:0px;
  8712. width:0px;
  8713. height:0px;
  8714. }
  8715. #u19190_div {
  8716. border-width:0px;
  8717. position:absolute;
  8718. left:0px;
  8719. top:0px;
  8720. width:140px;
  8721. height:30px;
  8722. background:inherit;
  8723. background-color:rgba(255, 255, 255, 1);
  8724. box-sizing:border-box;
  8725. border-width:1px;
  8726. border-style:solid;
  8727. border-color:rgba(201, 201, 201, 1);
  8728. border-radius:4px;
  8729. filter:drop-shadow(none);
  8730. transition:none;
  8731. font-family:"Microsoft YaHei", sans-serif;
  8732. font-weight:400;
  8733. font-style:normal;
  8734. font-size:14px;
  8735. color:#CCCCCC;
  8736. text-align:left;
  8737. }
  8738. #u19190 {
  8739. border-width:0px;
  8740. position:absolute;
  8741. left:1100px;
  8742. top:143px;
  8743. width:140px;
  8744. height:30px;
  8745. display:flex;
  8746. transition:none;
  8747. transform-origin:50% 50%;
  8748. font-family:"Microsoft YaHei", sans-serif;
  8749. font-weight:400;
  8750. font-style:normal;
  8751. font-size:14px;
  8752. color:#CCCCCC;
  8753. text-align:left;
  8754. }
  8755. #u19190 .text {
  8756. position:absolute;
  8757. align-self:center;
  8758. padding:2px 8px 2px 8px;
  8759. box-sizing:border-box;
  8760. width:100%;
  8761. }
  8762. #u19190_text {
  8763. border-width:0px;
  8764. word-wrap:break-word;
  8765. text-transform:none;
  8766. visibility:hidden;
  8767. }
  8768. #u19191_input {
  8769. position:absolute;
  8770. left:0px;
  8771. top:0px;
  8772. width:127px;
  8773. height:25px;
  8774. padding:2px 2px 2px 2px;
  8775. font-family:"Microsoft YaHei", sans-serif;
  8776. font-weight:400;
  8777. font-style:normal;
  8778. font-size:10px;
  8779. letter-spacing:normal;
  8780. color:#000000;
  8781. vertical-align:none;
  8782. text-align:left;
  8783. text-transform:none;
  8784. background-color:transparent;
  8785. border-color:transparent;
  8786. }
  8787. #u19191_input.hint {
  8788. position:absolute;
  8789. left:0px;
  8790. top:0px;
  8791. width:127px;
  8792. height:25px;
  8793. padding:2px 2px 2px 2px;
  8794. font-family:"Microsoft YaHei", sans-serif;
  8795. font-weight:400;
  8796. font-style:normal;
  8797. font-size:12px;
  8798. letter-spacing:normal;
  8799. color:#AAAAAA;
  8800. vertical-align:none;
  8801. text-align:left;
  8802. text-transform:none;
  8803. background-color:transparent;
  8804. border-color:transparent;
  8805. }
  8806. #u19191_input.disabled {
  8807. position:absolute;
  8808. left:0px;
  8809. top:0px;
  8810. width:127px;
  8811. height:25px;
  8812. padding:2px 2px 2px 2px;
  8813. font-family:"Microsoft YaHei", sans-serif;
  8814. font-weight:400;
  8815. font-style:normal;
  8816. font-size:10px;
  8817. letter-spacing:normal;
  8818. color:#000000;
  8819. vertical-align:none;
  8820. text-align:left;
  8821. text-transform:none;
  8822. background-color:transparent;
  8823. border-color:transparent;
  8824. }
  8825. #u19191_input.hint.disabled {
  8826. position:absolute;
  8827. left:0px;
  8828. top:0px;
  8829. width:127px;
  8830. height:25px;
  8831. padding:2px 2px 2px 2px;
  8832. font-family:"Microsoft YaHei", sans-serif;
  8833. font-weight:400;
  8834. font-style:normal;
  8835. font-size:12px;
  8836. letter-spacing:normal;
  8837. color:#AAAAAA;
  8838. vertical-align:none;
  8839. text-align:left;
  8840. text-transform:none;
  8841. background-color:transparent;
  8842. border-color:transparent;
  8843. }
  8844. #u19191_div {
  8845. border-width:0px;
  8846. position:absolute;
  8847. left:0px;
  8848. top:0px;
  8849. width:127px;
  8850. height:25px;
  8851. background:inherit;
  8852. background-color:rgba(255, 255, 255, 1);
  8853. border-radius:0px;
  8854. filter:drop-shadow(none);
  8855. transition:none;
  8856. font-family:"Microsoft YaHei", sans-serif;
  8857. font-weight:400;
  8858. font-style:normal;
  8859. font-size:10px;
  8860. }
  8861. #u19191 {
  8862. border-width:0px;
  8863. position:absolute;
  8864. left:1108px;
  8865. top:144px;
  8866. width:127px;
  8867. height:25px;
  8868. display:flex;
  8869. transition:none;
  8870. transform-origin:50% 50%;
  8871. font-family:"Microsoft YaHei", sans-serif;
  8872. font-weight:400;
  8873. font-style:normal;
  8874. font-size:10px;
  8875. }
  8876. #u19191 .text {
  8877. position:absolute;
  8878. align-self:center;
  8879. padding:2px 2px 2px 2px;
  8880. box-sizing:border-box;
  8881. width:100%;
  8882. }
  8883. #u19191_div.hint {
  8884. border-width:0px;
  8885. position:absolute;
  8886. left:0px;
  8887. top:0px;
  8888. width:127px;
  8889. height:25px;
  8890. background:inherit;
  8891. background-color:rgba(255, 255, 255, 1);
  8892. border-radius:0px;
  8893. filter:drop-shadow(none);
  8894. transition:none;
  8895. font-family:"Microsoft YaHei", sans-serif;
  8896. font-weight:400;
  8897. font-style:normal;
  8898. font-size:10px;
  8899. }
  8900. #u19191.hint {
  8901. }
  8902. #u19191_div.disabled {
  8903. border-width:0px;
  8904. position:absolute;
  8905. left:0px;
  8906. top:0px;
  8907. width:127px;
  8908. height:25px;
  8909. background:inherit;
  8910. background-color:rgba(240, 240, 240, 1);
  8911. border-radius:0px;
  8912. filter:drop-shadow(none);
  8913. transition:none;
  8914. font-family:"Microsoft YaHei", sans-serif;
  8915. font-weight:400;
  8916. font-style:normal;
  8917. font-size:10px;
  8918. }
  8919. #u19191.disabled {
  8920. }
  8921. #u19191_div.hint.disabled {
  8922. border-width:0px;
  8923. position:absolute;
  8924. left:0px;
  8925. top:0px;
  8926. width:127px;
  8927. height:25px;
  8928. background:inherit;
  8929. background-color:rgba(240, 240, 240, 1);
  8930. border-radius:0px;
  8931. filter:drop-shadow(none);
  8932. transition:none;
  8933. font-family:"Microsoft YaHei", sans-serif;
  8934. font-weight:400;
  8935. font-style:normal;
  8936. font-size:10px;
  8937. }
  8938. #u19191.hint.disabled {
  8939. }
  8940. #u19192 {
  8941. border-width:0px;
  8942. position:absolute;
  8943. left:0px;
  8944. top:0px;
  8945. width:0px;
  8946. height:0px;
  8947. }
  8948. #u19193_div {
  8949. border-width:0px;
  8950. position:absolute;
  8951. left:0px;
  8952. top:0px;
  8953. width:140px;
  8954. height:30px;
  8955. background:inherit;
  8956. background-color:rgba(255, 255, 255, 1);
  8957. box-sizing:border-box;
  8958. border-width:1px;
  8959. border-style:solid;
  8960. border-color:rgba(201, 201, 201, 1);
  8961. border-radius:4px;
  8962. filter:drop-shadow(none);
  8963. transition:none;
  8964. font-family:"Microsoft YaHei", sans-serif;
  8965. font-weight:400;
  8966. font-style:normal;
  8967. font-size:14px;
  8968. color:#CCCCCC;
  8969. text-align:left;
  8970. }
  8971. #u19193 {
  8972. border-width:0px;
  8973. position:absolute;
  8974. left:800px;
  8975. top:183px;
  8976. width:140px;
  8977. height:30px;
  8978. display:flex;
  8979. transition:none;
  8980. transform-origin:50% 50%;
  8981. font-family:"Microsoft YaHei", sans-serif;
  8982. font-weight:400;
  8983. font-style:normal;
  8984. font-size:14px;
  8985. color:#CCCCCC;
  8986. text-align:left;
  8987. }
  8988. #u19193 .text {
  8989. position:absolute;
  8990. align-self:center;
  8991. padding:2px 8px 2px 8px;
  8992. box-sizing:border-box;
  8993. width:100%;
  8994. }
  8995. #u19193_text {
  8996. border-width:0px;
  8997. word-wrap:break-word;
  8998. text-transform:none;
  8999. visibility:hidden;
  9000. }
  9001. #u19194_input {
  9002. position:absolute;
  9003. left:0px;
  9004. top:0px;
  9005. width:127px;
  9006. height:25px;
  9007. padding:2px 2px 2px 2px;
  9008. font-family:"Microsoft YaHei", sans-serif;
  9009. font-weight:400;
  9010. font-style:normal;
  9011. font-size:10px;
  9012. letter-spacing:normal;
  9013. color:#000000;
  9014. vertical-align:none;
  9015. text-align:left;
  9016. text-transform:none;
  9017. background-color:transparent;
  9018. border-color:transparent;
  9019. }
  9020. #u19194_input.hint {
  9021. position:absolute;
  9022. left:0px;
  9023. top:0px;
  9024. width:127px;
  9025. height:25px;
  9026. padding:2px 2px 2px 2px;
  9027. font-family:"Microsoft YaHei", sans-serif;
  9028. font-weight:400;
  9029. font-style:normal;
  9030. font-size:12px;
  9031. letter-spacing:normal;
  9032. color:#AAAAAA;
  9033. vertical-align:none;
  9034. text-align:left;
  9035. text-transform:none;
  9036. background-color:transparent;
  9037. border-color:transparent;
  9038. }
  9039. #u19194_input.disabled {
  9040. position:absolute;
  9041. left:0px;
  9042. top:0px;
  9043. width:127px;
  9044. height:25px;
  9045. padding:2px 2px 2px 2px;
  9046. font-family:"Microsoft YaHei", sans-serif;
  9047. font-weight:400;
  9048. font-style:normal;
  9049. font-size:10px;
  9050. letter-spacing:normal;
  9051. color:#000000;
  9052. vertical-align:none;
  9053. text-align:left;
  9054. text-transform:none;
  9055. background-color:transparent;
  9056. border-color:transparent;
  9057. }
  9058. #u19194_input.hint.disabled {
  9059. position:absolute;
  9060. left:0px;
  9061. top:0px;
  9062. width:127px;
  9063. height:25px;
  9064. padding:2px 2px 2px 2px;
  9065. font-family:"Microsoft YaHei", sans-serif;
  9066. font-weight:400;
  9067. font-style:normal;
  9068. font-size:12px;
  9069. letter-spacing:normal;
  9070. color:#AAAAAA;
  9071. vertical-align:none;
  9072. text-align:left;
  9073. text-transform:none;
  9074. background-color:transparent;
  9075. border-color:transparent;
  9076. }
  9077. #u19194_div {
  9078. border-width:0px;
  9079. position:absolute;
  9080. left:0px;
  9081. top:0px;
  9082. width:127px;
  9083. height:25px;
  9084. background:inherit;
  9085. background-color:rgba(255, 255, 255, 1);
  9086. border-radius:0px;
  9087. filter:drop-shadow(none);
  9088. transition:none;
  9089. font-family:"Microsoft YaHei", sans-serif;
  9090. font-weight:400;
  9091. font-style:normal;
  9092. font-size:10px;
  9093. }
  9094. #u19194 {
  9095. border-width:0px;
  9096. position:absolute;
  9097. left:808px;
  9098. top:184px;
  9099. width:127px;
  9100. height:25px;
  9101. display:flex;
  9102. transition:none;
  9103. transform-origin:50% 50%;
  9104. font-family:"Microsoft YaHei", sans-serif;
  9105. font-weight:400;
  9106. font-style:normal;
  9107. font-size:10px;
  9108. }
  9109. #u19194 .text {
  9110. position:absolute;
  9111. align-self:center;
  9112. padding:2px 2px 2px 2px;
  9113. box-sizing:border-box;
  9114. width:100%;
  9115. }
  9116. #u19194_div.hint {
  9117. border-width:0px;
  9118. position:absolute;
  9119. left:0px;
  9120. top:0px;
  9121. width:127px;
  9122. height:25px;
  9123. background:inherit;
  9124. background-color:rgba(255, 255, 255, 1);
  9125. border-radius:0px;
  9126. filter:drop-shadow(none);
  9127. transition:none;
  9128. font-family:"Microsoft YaHei", sans-serif;
  9129. font-weight:400;
  9130. font-style:normal;
  9131. font-size:10px;
  9132. }
  9133. #u19194.hint {
  9134. }
  9135. #u19194_div.disabled {
  9136. border-width:0px;
  9137. position:absolute;
  9138. left:0px;
  9139. top:0px;
  9140. width:127px;
  9141. height:25px;
  9142. background:inherit;
  9143. background-color:rgba(240, 240, 240, 1);
  9144. border-radius:0px;
  9145. filter:drop-shadow(none);
  9146. transition:none;
  9147. font-family:"Microsoft YaHei", sans-serif;
  9148. font-weight:400;
  9149. font-style:normal;
  9150. font-size:10px;
  9151. }
  9152. #u19194.disabled {
  9153. }
  9154. #u19194_div.hint.disabled {
  9155. border-width:0px;
  9156. position:absolute;
  9157. left:0px;
  9158. top:0px;
  9159. width:127px;
  9160. height:25px;
  9161. background:inherit;
  9162. background-color:rgba(240, 240, 240, 1);
  9163. border-radius:0px;
  9164. filter:drop-shadow(none);
  9165. transition:none;
  9166. font-family:"Microsoft YaHei", sans-serif;
  9167. font-weight:400;
  9168. font-style:normal;
  9169. font-size:10px;
  9170. }
  9171. #u19194.hint.disabled {
  9172. }