styles.css 154 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115
  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. #u19113_div {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1480px;
  25. height:1200px;
  26. background:inherit;
  27. background-color:rgba(242, 242, 242, 1);
  28. border:none;
  29. border-radius:0px;
  30. -moz-box-shadow:none;
  31. -webkit-box-shadow:none;
  32. box-shadow:none;
  33. }
  34. #u19113 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u19113 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u19113_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u19114_div {
  57. border-width:0px;
  58. position:absolute;
  59. left:0px;
  60. top:0px;
  61. width:129px;
  62. height:22px;
  63. background:inherit;
  64. background-color:rgba(255, 255, 255, 0);
  65. border:none;
  66. border-radius:0px;
  67. -moz-box-shadow:none;
  68. -webkit-box-shadow:none;
  69. box-shadow:none;
  70. font-size:16px;
  71. color:#FFFFFF;
  72. }
  73. #u19114 {
  74. border-width:0px;
  75. position:absolute;
  76. left:49px;
  77. top:14px;
  78. width:129px;
  79. height:22px;
  80. display:flex;
  81. font-size:16px;
  82. color:#FFFFFF;
  83. }
  84. #u19114 .text {
  85. position:absolute;
  86. align-self:flex-start;
  87. padding:0px 0px 0px 0px;
  88. box-sizing:border-box;
  89. width:100%;
  90. }
  91. #u19114_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u19115_div {
  97. border-width:0px;
  98. position:absolute;
  99. left:0px;
  100. top:0px;
  101. width:1600px;
  102. height:50px;
  103. background:inherit;
  104. background-color:rgba(30, 42, 68, 1);
  105. border:none;
  106. border-radius:0px;
  107. -moz-box-shadow:none;
  108. -webkit-box-shadow:none;
  109. box-shadow:none;
  110. color:#AFB3B6;
  111. }
  112. #u19115 {
  113. border-width:0px;
  114. position:absolute;
  115. left:0px;
  116. top:0px;
  117. width:1600px;
  118. height:50px;
  119. display:flex;
  120. color:#AFB3B6;
  121. }
  122. #u19115 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u19115_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u19116 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u19117_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u19117 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u19117 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u19117_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u19118_div {
  173. border-width:0px;
  174. position:absolute;
  175. left:0px;
  176. top:0px;
  177. width:161px;
  178. height:22px;
  179. background:inherit;
  180. background-color:rgba(255, 255, 255, 0);
  181. border:none;
  182. border-radius:0px;
  183. -moz-box-shadow:none;
  184. -webkit-box-shadow:none;
  185. box-shadow:none;
  186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  187. font-weight:400;
  188. font-style:normal;
  189. font-size:16px;
  190. color:#FFFFFF;
  191. }
  192. #u19118 {
  193. border-width:0px;
  194. position:absolute;
  195. left:62px;
  196. top:14px;
  197. width:161px;
  198. height:22px;
  199. display:flex;
  200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  201. font-weight:400;
  202. font-style:normal;
  203. font-size:16px;
  204. color:#FFFFFF;
  205. }
  206. #u19118 .text {
  207. position:absolute;
  208. align-self:flex-start;
  209. padding:0px 0px 0px 0px;
  210. box-sizing:border-box;
  211. width:100%;
  212. }
  213. #u19118_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u19119_div {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:120px;
  224. height:1200px;
  225. background:inherit;
  226. background-color:rgba(30, 42, 68, 1);
  227. border:none;
  228. border-radius:0px;
  229. -moz-box-shadow:none;
  230. -webkit-box-shadow:none;
  231. box-shadow:none;
  232. color:#AFB3B6;
  233. }
  234. #u19119 {
  235. border-width:0px;
  236. position:absolute;
  237. left:0px;
  238. top:47px;
  239. width:120px;
  240. height:1200px;
  241. display:flex;
  242. color:#AFB3B6;
  243. }
  244. #u19119 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u19119_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u19120 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u19121_div {
  266. border-width:0px;
  267. position:absolute;
  268. left:0px;
  269. top:0px;
  270. width:33px;
  271. height:22px;
  272. background:inherit;
  273. background-color:rgba(255, 255, 255, 0);
  274. border:none;
  275. border-radius:0px;
  276. -moz-box-shadow:none;
  277. -webkit-box-shadow:none;
  278. box-shadow:none;
  279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  280. font-weight:400;
  281. font-style:normal;
  282. font-size:16px;
  283. color:#FFFFFF;
  284. }
  285. #u19121 {
  286. border-width:0px;
  287. position:absolute;
  288. left:39px;
  289. top:171px;
  290. width:33px;
  291. height:22px;
  292. display:flex;
  293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  294. font-weight:400;
  295. font-style:normal;
  296. font-size:16px;
  297. color:#FFFFFF;
  298. }
  299. #u19121 .text {
  300. position:absolute;
  301. align-self:flex-start;
  302. padding:0px 0px 0px 0px;
  303. box-sizing:border-box;
  304. width:100%;
  305. }
  306. #u19121_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u19122_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u19122 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:175px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u19122 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u19122_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u19123 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u19124_div {
  350. border-width:0px;
  351. position:absolute;
  352. left:0px;
  353. top:0px;
  354. width:33px;
  355. height:22px;
  356. background:inherit;
  357. background-color:rgba(255, 255, 255, 0);
  358. border:none;
  359. border-radius:0px;
  360. -moz-box-shadow:none;
  361. -webkit-box-shadow:none;
  362. box-shadow:none;
  363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  364. font-weight:400;
  365. font-style:normal;
  366. font-size:16px;
  367. color:#FFFFFF;
  368. }
  369. #u19124 {
  370. border-width:0px;
  371. position:absolute;
  372. left:39px;
  373. top:381px;
  374. width:33px;
  375. height:22px;
  376. display:flex;
  377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  378. font-weight:400;
  379. font-style:normal;
  380. font-size:16px;
  381. color:#FFFFFF;
  382. }
  383. #u19124 .text {
  384. position:absolute;
  385. align-self:flex-start;
  386. padding:0px 0px 0px 0px;
  387. box-sizing:border-box;
  388. width:100%;
  389. }
  390. #u19124_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u19125_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u19125 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:385px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u19125 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u19125_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u19126 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u19127_div {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:49px;
  439. height:22px;
  440. background:inherit;
  441. background-color:rgba(255, 255, 255, 0);
  442. border:none;
  443. border-radius:0px;
  444. -moz-box-shadow:none;
  445. -webkit-box-shadow:none;
  446. box-shadow:none;
  447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  448. font-weight:400;
  449. font-style:normal;
  450. font-size:16px;
  451. color:#FFFFFF;
  452. }
  453. #u19127 {
  454. border-width:0px;
  455. position:absolute;
  456. left:39px;
  457. top:133px;
  458. width:49px;
  459. height:22px;
  460. display:flex;
  461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  462. font-weight:400;
  463. font-style:normal;
  464. font-size:16px;
  465. color:#FFFFFF;
  466. }
  467. #u19127 .text {
  468. position:absolute;
  469. align-self:flex-start;
  470. padding:0px 0px 0px 0px;
  471. box-sizing:border-box;
  472. width:100%;
  473. }
  474. #u19127_text {
  475. border-width:0px;
  476. white-space:nowrap;
  477. text-transform:none;
  478. }
  479. #u19128_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:14px;
  485. height:14px;
  486. }
  487. #u19128 {
  488. border-width:0px;
  489. position:absolute;
  490. left:20px;
  491. top:137px;
  492. width:14px;
  493. height:14px;
  494. display:flex;
  495. }
  496. #u19128 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u19128_text {
  504. border-width:0px;
  505. word-wrap:break-word;
  506. text-transform:none;
  507. visibility:hidden;
  508. }
  509. #u19129 {
  510. border-width:0px;
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:0px;
  515. height:0px;
  516. }
  517. #u19130_div {
  518. border-width:0px;
  519. position:absolute;
  520. left:0px;
  521. top:0px;
  522. width:33px;
  523. height:22px;
  524. background:inherit;
  525. background-color:rgba(255, 255, 255, 0);
  526. border:none;
  527. border-radius:0px;
  528. -moz-box-shadow:none;
  529. -webkit-box-shadow:none;
  530. box-shadow:none;
  531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  532. font-weight:400;
  533. font-style:normal;
  534. font-size:16px;
  535. color:#FFFFFF;
  536. }
  537. #u19130 {
  538. border-width:0px;
  539. position:absolute;
  540. left:39px;
  541. top:423px;
  542. width:33px;
  543. height:22px;
  544. display:flex;
  545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  546. font-weight:400;
  547. font-style:normal;
  548. font-size:16px;
  549. color:#FFFFFF;
  550. }
  551. #u19130 .text {
  552. position:absolute;
  553. align-self:flex-start;
  554. padding:0px 0px 0px 0px;
  555. box-sizing:border-box;
  556. width:100%;
  557. }
  558. #u19130_text {
  559. border-width:0px;
  560. white-space:nowrap;
  561. text-transform:none;
  562. }
  563. #u19131_img {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:14px;
  569. height:14px;
  570. }
  571. #u19131 {
  572. border-width:0px;
  573. position:absolute;
  574. left:20px;
  575. top:427px;
  576. width:14px;
  577. height:14px;
  578. display:flex;
  579. }
  580. #u19131 .text {
  581. position:absolute;
  582. align-self:center;
  583. padding:2px 2px 2px 2px;
  584. box-sizing:border-box;
  585. width:100%;
  586. }
  587. #u19131_text {
  588. border-width:0px;
  589. word-wrap:break-word;
  590. text-transform:none;
  591. visibility:hidden;
  592. }
  593. #u19132 {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:0px;
  599. height:0px;
  600. }
  601. #u19133_div {
  602. border-width:0px;
  603. position:absolute;
  604. left:0px;
  605. top:0px;
  606. width:33px;
  607. height:22px;
  608. background:inherit;
  609. background-color:rgba(255, 255, 255, 0);
  610. border:none;
  611. border-radius:0px;
  612. -moz-box-shadow:none;
  613. -webkit-box-shadow:none;
  614. box-shadow:none;
  615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  616. font-weight:400;
  617. font-style:normal;
  618. font-size:16px;
  619. color:#FFFFFF;
  620. }
  621. #u19133 {
  622. border-width:0px;
  623. position:absolute;
  624. left:39px;
  625. top:297px;
  626. width:33px;
  627. height:22px;
  628. display:flex;
  629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  630. font-weight:400;
  631. font-style:normal;
  632. font-size:16px;
  633. color:#FFFFFF;
  634. }
  635. #u19133 .text {
  636. position:absolute;
  637. align-self:flex-start;
  638. padding:0px 0px 0px 0px;
  639. box-sizing:border-box;
  640. width:100%;
  641. }
  642. #u19133_text {
  643. border-width:0px;
  644. white-space:nowrap;
  645. text-transform:none;
  646. }
  647. #u19134_img {
  648. border-width:0px;
  649. position:absolute;
  650. left:0px;
  651. top:0px;
  652. width:14px;
  653. height:14px;
  654. }
  655. #u19134 {
  656. border-width:0px;
  657. position:absolute;
  658. left:20px;
  659. top:301px;
  660. width:14px;
  661. height:14px;
  662. display:flex;
  663. }
  664. #u19134 .text {
  665. position:absolute;
  666. align-self:center;
  667. padding:2px 2px 2px 2px;
  668. box-sizing:border-box;
  669. width:100%;
  670. }
  671. #u19134_text {
  672. border-width:0px;
  673. word-wrap:break-word;
  674. text-transform:none;
  675. visibility:hidden;
  676. }
  677. #u19135 {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:0px;
  683. height:0px;
  684. }
  685. #u19136_div {
  686. border-width:0px;
  687. position:absolute;
  688. left:0px;
  689. top:0px;
  690. width:33px;
  691. height:22px;
  692. background:inherit;
  693. background-color:rgba(255, 255, 255, 0);
  694. border:none;
  695. border-radius:0px;
  696. -moz-box-shadow:none;
  697. -webkit-box-shadow:none;
  698. box-shadow:none;
  699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  700. font-weight:400;
  701. font-style:normal;
  702. font-size:16px;
  703. color:#FFFFFF;
  704. }
  705. #u19136 {
  706. border-width:0px;
  707. position:absolute;
  708. left:39px;
  709. top:213px;
  710. width:33px;
  711. height:22px;
  712. display:flex;
  713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  714. font-weight:400;
  715. font-style:normal;
  716. font-size:16px;
  717. color:#FFFFFF;
  718. }
  719. #u19136 .text {
  720. position:absolute;
  721. align-self:flex-start;
  722. padding:0px 0px 0px 0px;
  723. box-sizing:border-box;
  724. width:100%;
  725. }
  726. #u19136_text {
  727. border-width:0px;
  728. white-space:nowrap;
  729. text-transform:none;
  730. }
  731. #u19137_img {
  732. border-width:0px;
  733. position:absolute;
  734. left:0px;
  735. top:0px;
  736. width:14px;
  737. height:14px;
  738. }
  739. #u19137 {
  740. border-width:0px;
  741. position:absolute;
  742. left:20px;
  743. top:217px;
  744. width:14px;
  745. height:14px;
  746. display:flex;
  747. }
  748. #u19137 .text {
  749. position:absolute;
  750. align-self:center;
  751. padding:2px 2px 2px 2px;
  752. box-sizing:border-box;
  753. width:100%;
  754. }
  755. #u19137_text {
  756. border-width:0px;
  757. word-wrap:break-word;
  758. text-transform:none;
  759. visibility:hidden;
  760. }
  761. #u19138 {
  762. border-width:0px;
  763. position:absolute;
  764. left:0px;
  765. top:0px;
  766. width:0px;
  767. height:0px;
  768. }
  769. #u19139_div {
  770. border-width:0px;
  771. position:absolute;
  772. left:0px;
  773. top:0px;
  774. width:33px;
  775. height:22px;
  776. background:inherit;
  777. background-color:rgba(255, 255, 255, 0);
  778. border:none;
  779. border-radius:0px;
  780. -moz-box-shadow:none;
  781. -webkit-box-shadow:none;
  782. box-shadow:none;
  783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  784. font-weight:400;
  785. font-style:normal;
  786. font-size:16px;
  787. color:#FFFFFF;
  788. }
  789. #u19139 {
  790. border-width:0px;
  791. position:absolute;
  792. left:39px;
  793. top:339px;
  794. width:33px;
  795. height:22px;
  796. display:flex;
  797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  798. font-weight:400;
  799. font-style:normal;
  800. font-size:16px;
  801. color:#FFFFFF;
  802. }
  803. #u19139 .text {
  804. position:absolute;
  805. align-self:flex-start;
  806. padding:0px 0px 0px 0px;
  807. box-sizing:border-box;
  808. width:100%;
  809. }
  810. #u19139_text {
  811. border-width:0px;
  812. white-space:nowrap;
  813. text-transform:none;
  814. }
  815. #u19140_img {
  816. border-width:0px;
  817. position:absolute;
  818. left:0px;
  819. top:0px;
  820. width:14px;
  821. height:14px;
  822. }
  823. #u19140 {
  824. border-width:0px;
  825. position:absolute;
  826. left:20px;
  827. top:343px;
  828. width:14px;
  829. height:14px;
  830. display:flex;
  831. }
  832. #u19140 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 2px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u19140_text {
  840. border-width:0px;
  841. word-wrap:break-word;
  842. text-transform:none;
  843. visibility:hidden;
  844. }
  845. #u19141 {
  846. border-width:0px;
  847. position:absolute;
  848. left:0px;
  849. top:0px;
  850. width:0px;
  851. height:0px;
  852. }
  853. #u19142_div {
  854. border-width:0px;
  855. position:absolute;
  856. left:0px;
  857. top:0px;
  858. width:33px;
  859. height:22px;
  860. background:inherit;
  861. background-color:rgba(255, 255, 255, 0);
  862. border:none;
  863. border-radius:0px;
  864. -moz-box-shadow:none;
  865. -webkit-box-shadow:none;
  866. box-shadow:none;
  867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  868. font-weight:400;
  869. font-style:normal;
  870. font-size:16px;
  871. color:#FFFFFF;
  872. }
  873. #u19142 {
  874. border-width:0px;
  875. position:absolute;
  876. left:39px;
  877. top:465px;
  878. width:33px;
  879. height:22px;
  880. display:flex;
  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. #u19142 .text {
  888. position:absolute;
  889. align-self:flex-start;
  890. padding:0px 0px 0px 0px;
  891. box-sizing:border-box;
  892. width:100%;
  893. }
  894. #u19142_text {
  895. border-width:0px;
  896. white-space:nowrap;
  897. text-transform:none;
  898. }
  899. #u19143_img {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:14px;
  905. height:14px;
  906. }
  907. #u19143 {
  908. border-width:0px;
  909. position:absolute;
  910. left:20px;
  911. top:469px;
  912. width:14px;
  913. height:14px;
  914. display:flex;
  915. }
  916. #u19143 .text {
  917. position:absolute;
  918. align-self:center;
  919. padding:2px 2px 2px 2px;
  920. box-sizing:border-box;
  921. width:100%;
  922. }
  923. #u19143_text {
  924. border-width:0px;
  925. word-wrap:break-word;
  926. text-transform:none;
  927. visibility:hidden;
  928. }
  929. #u19144 {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:0px;
  935. height:0px;
  936. }
  937. #u19145_div {
  938. border-width:0px;
  939. position:absolute;
  940. left:0px;
  941. top:0px;
  942. width:29px;
  943. height:20px;
  944. background:inherit;
  945. background-color:rgba(255, 255, 255, 0);
  946. border:none;
  947. border-radius:25px;
  948. -moz-box-shadow:none;
  949. -webkit-box-shadow:none;
  950. box-shadow:none;
  951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  952. font-weight:400;
  953. font-style:normal;
  954. color:#FFFFFF;
  955. }
  956. #u19145 {
  957. border-width:0px;
  958. position:absolute;
  959. left:52px;
  960. top:1145px;
  961. width:29px;
  962. height:20px;
  963. display:flex;
  964. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  965. font-weight:400;
  966. font-style:normal;
  967. color:#FFFFFF;
  968. }
  969. #u19145 .text {
  970. position:absolute;
  971. align-self:center;
  972. padding:0px 0px 0px 0px;
  973. box-sizing:border-box;
  974. width:100%;
  975. }
  976. #u19145_text {
  977. border-width:0px;
  978. white-space:nowrap;
  979. text-transform:none;
  980. }
  981. #u19146_img {
  982. border-width:0px;
  983. position:absolute;
  984. left:0px;
  985. top:0px;
  986. width:22px;
  987. height:22px;
  988. }
  989. #u19146 {
  990. border-width:0px;
  991. position:absolute;
  992. left:20px;
  993. top:1144px;
  994. width:22px;
  995. height:22px;
  996. display:flex;
  997. }
  998. #u19146 .text {
  999. position:absolute;
  1000. align-self:center;
  1001. padding:2px 2px 2px 2px;
  1002. box-sizing:border-box;
  1003. width:100%;
  1004. }
  1005. #u19146_text {
  1006. border-width:0px;
  1007. word-wrap:break-word;
  1008. text-transform:none;
  1009. visibility:hidden;
  1010. }
  1011. #u19147 {
  1012. border-width:0px;
  1013. position:absolute;
  1014. left:0px;
  1015. top:0px;
  1016. width:0px;
  1017. height:0px;
  1018. }
  1019. #u19148_div {
  1020. border-width:0px;
  1021. position:absolute;
  1022. left:0px;
  1023. top:0px;
  1024. width:29px;
  1025. height:20px;
  1026. background:inherit;
  1027. background-color:rgba(255, 255, 255, 0);
  1028. border:none;
  1029. border-radius:25px;
  1030. -moz-box-shadow:none;
  1031. -webkit-box-shadow:none;
  1032. box-shadow:none;
  1033. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1034. font-weight:400;
  1035. font-style:normal;
  1036. color:#FFFFFF;
  1037. }
  1038. #u19148 {
  1039. border-width:0px;
  1040. position:absolute;
  1041. left:52px;
  1042. top:1187px;
  1043. width:29px;
  1044. height:20px;
  1045. display:flex;
  1046. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1047. font-weight:400;
  1048. font-style:normal;
  1049. color:#FFFFFF;
  1050. }
  1051. #u19148 .text {
  1052. position:absolute;
  1053. align-self:center;
  1054. padding:0px 0px 0px 0px;
  1055. box-sizing:border-box;
  1056. width:100%;
  1057. }
  1058. #u19148_text {
  1059. border-width:0px;
  1060. white-space:nowrap;
  1061. text-transform:none;
  1062. }
  1063. #u19149_img {
  1064. border-width:0px;
  1065. position:absolute;
  1066. left:0px;
  1067. top:0px;
  1068. width:22px;
  1069. height:22px;
  1070. }
  1071. #u19149 {
  1072. border-width:0px;
  1073. position:absolute;
  1074. left:20px;
  1075. top:1186px;
  1076. width:22px;
  1077. height:22px;
  1078. display:flex;
  1079. }
  1080. #u19149 .text {
  1081. position:absolute;
  1082. align-self:center;
  1083. padding:2px 2px 2px 2px;
  1084. box-sizing:border-box;
  1085. width:100%;
  1086. }
  1087. #u19149_text {
  1088. border-width:0px;
  1089. word-wrap:break-word;
  1090. text-transform:none;
  1091. visibility:hidden;
  1092. }
  1093. #u19150 {
  1094. border-width:0px;
  1095. position:absolute;
  1096. left:0px;
  1097. top:0px;
  1098. width:0px;
  1099. height:0px;
  1100. }
  1101. #u19151_div {
  1102. border-width:0px;
  1103. position:absolute;
  1104. left:0px;
  1105. top:0px;
  1106. width:33px;
  1107. height:22px;
  1108. background:inherit;
  1109. background-color:rgba(255, 255, 255, 0);
  1110. border:none;
  1111. border-radius:0px;
  1112. -moz-box-shadow:none;
  1113. -webkit-box-shadow:none;
  1114. box-shadow:none;
  1115. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1116. font-weight:400;
  1117. font-style:normal;
  1118. font-size:16px;
  1119. color:#FFFFFF;
  1120. }
  1121. #u19151 {
  1122. border-width:0px;
  1123. position:absolute;
  1124. left:39px;
  1125. top:255px;
  1126. width:33px;
  1127. height:22px;
  1128. display:flex;
  1129. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1130. font-weight:400;
  1131. font-style:normal;
  1132. font-size:16px;
  1133. color:#FFFFFF;
  1134. }
  1135. #u19151 .text {
  1136. position:absolute;
  1137. align-self:flex-start;
  1138. padding:0px 0px 0px 0px;
  1139. box-sizing:border-box;
  1140. width:100%;
  1141. }
  1142. #u19151_text {
  1143. border-width:0px;
  1144. white-space:nowrap;
  1145. text-transform:none;
  1146. }
  1147. #u19152_img {
  1148. border-width:0px;
  1149. position:absolute;
  1150. left:0px;
  1151. top:0px;
  1152. width:14px;
  1153. height:14px;
  1154. }
  1155. #u19152 {
  1156. border-width:0px;
  1157. position:absolute;
  1158. left:20px;
  1159. top:259px;
  1160. width:14px;
  1161. height:14px;
  1162. display:flex;
  1163. }
  1164. #u19152 .text {
  1165. position:absolute;
  1166. align-self:center;
  1167. padding:2px 2px 2px 2px;
  1168. box-sizing:border-box;
  1169. width:100%;
  1170. }
  1171. #u19152_text {
  1172. border-width:0px;
  1173. word-wrap:break-word;
  1174. text-transform:none;
  1175. visibility:hidden;
  1176. }
  1177. #u19153 {
  1178. border-width:0px;
  1179. position:absolute;
  1180. left:0px;
  1181. top:0px;
  1182. width:0px;
  1183. height:0px;
  1184. }
  1185. #u19154_input {
  1186. position:absolute;
  1187. left:0px;
  1188. top:0px;
  1189. width:214px;
  1190. height:27px;
  1191. padding:2px 2px 2px 2px;
  1192. font-family:'ArialMT', 'Arial', sans-serif;
  1193. font-weight:400;
  1194. font-style:normal;
  1195. font-size:14px;
  1196. letter-spacing:normal;
  1197. color:#FFFFFF;
  1198. vertical-align:none;
  1199. text-align:left;
  1200. text-transform:none;
  1201. background-color:transparent;
  1202. border-color:transparent;
  1203. }
  1204. #u19154_input.disabled {
  1205. position:absolute;
  1206. left:0px;
  1207. top:0px;
  1208. width:214px;
  1209. height:27px;
  1210. padding:2px 2px 2px 2px;
  1211. font-family:'ArialMT', 'Arial', sans-serif;
  1212. font-weight:400;
  1213. font-style:normal;
  1214. font-size:14px;
  1215. letter-spacing:normal;
  1216. color:#FFFFFF;
  1217. vertical-align:none;
  1218. text-align:left;
  1219. text-transform:none;
  1220. background-color:transparent;
  1221. border-color:transparent;
  1222. }
  1223. #u19154_div {
  1224. border-width:0px;
  1225. position:absolute;
  1226. left:0px;
  1227. top:0px;
  1228. width:214px;
  1229. height:27px;
  1230. background:inherit;
  1231. background-color:rgba(255, 255, 255, 0);
  1232. border:none;
  1233. border-radius:0px;
  1234. -moz-box-shadow:none;
  1235. -webkit-box-shadow:none;
  1236. box-shadow:none;
  1237. font-size:14px;
  1238. color:#FFFFFF;
  1239. }
  1240. #u19154 {
  1241. border-width:0px;
  1242. position:absolute;
  1243. left:1221px;
  1244. top:11px;
  1245. width:214px;
  1246. height:27px;
  1247. display:flex;
  1248. font-size:14px;
  1249. color:#FFFFFF;
  1250. }
  1251. #u19154 .text {
  1252. position:absolute;
  1253. align-self:flex-start;
  1254. padding:2px 2px 2px 2px;
  1255. box-sizing:border-box;
  1256. width:100%;
  1257. }
  1258. #u19154_div.disabled {
  1259. border-width:0px;
  1260. position:absolute;
  1261. left:0px;
  1262. top:0px;
  1263. width:214px;
  1264. height:27px;
  1265. background:inherit;
  1266. background-color:rgba(240, 240, 240, 1);
  1267. border:none;
  1268. border-radius:0px;
  1269. -moz-box-shadow:none;
  1270. -webkit-box-shadow:none;
  1271. box-shadow:none;
  1272. font-size:14px;
  1273. color:#FFFFFF;
  1274. }
  1275. #u19154.disabled {
  1276. }
  1277. .u19154_input_option {
  1278. font-size:14px;
  1279. }
  1280. #u19155_img {
  1281. border-width:0px;
  1282. position:absolute;
  1283. left:0px;
  1284. top:0px;
  1285. width:22px;
  1286. height:22px;
  1287. }
  1288. #u19155 {
  1289. border-width:0px;
  1290. position:absolute;
  1291. left:1194px;
  1292. top:14px;
  1293. width:22px;
  1294. height:22px;
  1295. display:flex;
  1296. }
  1297. #u19155 .text {
  1298. position:absolute;
  1299. align-self:center;
  1300. padding:2px 2px 2px 2px;
  1301. box-sizing:border-box;
  1302. width:100%;
  1303. }
  1304. #u19155_text {
  1305. border-width:0px;
  1306. word-wrap:break-word;
  1307. text-transform:none;
  1308. visibility:hidden;
  1309. }
  1310. #u19156_div {
  1311. border-width:0px;
  1312. position:absolute;
  1313. left:0px;
  1314. top:0px;
  1315. width:100px;
  1316. height:24px;
  1317. background:inherit;
  1318. background-color:rgba(242, 242, 242, 0.2);
  1319. border:none;
  1320. border-radius:25px;
  1321. -moz-box-shadow:none;
  1322. -webkit-box-shadow:none;
  1323. box-shadow:none;
  1324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1325. font-weight:400;
  1326. font-style:normal;
  1327. color:#FFFFFF;
  1328. text-align:center;
  1329. }
  1330. #u19156 {
  1331. border-width:0px;
  1332. position:absolute;
  1333. left:1480px;
  1334. top:13px;
  1335. width:100px;
  1336. height:24px;
  1337. display:flex;
  1338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1339. font-weight:400;
  1340. font-style:normal;
  1341. color:#FFFFFF;
  1342. text-align:center;
  1343. }
  1344. #u19156 .text {
  1345. position:absolute;
  1346. align-self:center;
  1347. padding:0px 0px 0px 0px;
  1348. box-sizing:border-box;
  1349. width:100%;
  1350. }
  1351. #u19156_text {
  1352. border-width:0px;
  1353. word-wrap:break-word;
  1354. text-transform:none;
  1355. }
  1356. #u19157_img {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:0px;
  1360. top:0px;
  1361. width:2px;
  1362. height:12px;
  1363. }
  1364. #u19157 {
  1365. border-width:0px;
  1366. position:absolute;
  1367. left:1452px;
  1368. top:19px;
  1369. width:1px;
  1370. height:11px;
  1371. display:flex;
  1372. }
  1373. #u19157 .text {
  1374. position:absolute;
  1375. align-self:center;
  1376. padding:2px 2px 2px 2px;
  1377. box-sizing:border-box;
  1378. width:100%;
  1379. }
  1380. #u19157_text {
  1381. border-width:0px;
  1382. word-wrap:break-word;
  1383. text-transform:none;
  1384. visibility:hidden;
  1385. }
  1386. #u19158 {
  1387. border-width:0px;
  1388. position:absolute;
  1389. left:0px;
  1390. top:0px;
  1391. width:0px;
  1392. height:0px;
  1393. }
  1394. #u19159_div {
  1395. border-width:0px;
  1396. position:absolute;
  1397. left:0px;
  1398. top:0px;
  1399. width:29px;
  1400. height:20px;
  1401. background:inherit;
  1402. background-color:rgba(255, 255, 255, 0);
  1403. border:none;
  1404. border-radius:25px;
  1405. -moz-box-shadow:none;
  1406. -webkit-box-shadow:none;
  1407. box-shadow:none;
  1408. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1409. font-weight:400;
  1410. font-style:normal;
  1411. color:#FFFFFF;
  1412. }
  1413. #u19159 {
  1414. border-width:0px;
  1415. position:absolute;
  1416. left:52px;
  1417. top:1082px;
  1418. width:29px;
  1419. height:20px;
  1420. display:flex;
  1421. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1422. font-weight:400;
  1423. font-style:normal;
  1424. color:#FFFFFF;
  1425. }
  1426. #u19159 .text {
  1427. position:absolute;
  1428. align-self:center;
  1429. padding:0px 0px 0px 0px;
  1430. box-sizing:border-box;
  1431. width:100%;
  1432. }
  1433. #u19159_text {
  1434. border-width:0px;
  1435. white-space:nowrap;
  1436. text-transform:none;
  1437. }
  1438. #u19160_img {
  1439. border-width:0px;
  1440. position:absolute;
  1441. left:0px;
  1442. top:0px;
  1443. width:22px;
  1444. height:22px;
  1445. }
  1446. #u19160 {
  1447. border-width:0px;
  1448. position:absolute;
  1449. left:20px;
  1450. top:1081px;
  1451. width:22px;
  1452. height:22px;
  1453. display:flex;
  1454. }
  1455. #u19160 .text {
  1456. position:absolute;
  1457. align-self:center;
  1458. padding:2px 2px 2px 2px;
  1459. box-sizing:border-box;
  1460. width:100%;
  1461. }
  1462. #u19160_text {
  1463. border-width:0px;
  1464. word-wrap:break-word;
  1465. text-transform:none;
  1466. visibility:hidden;
  1467. }
  1468. #u19161_img {
  1469. border-width:0px;
  1470. position:absolute;
  1471. left:0px;
  1472. top:0px;
  1473. width:69px;
  1474. height:2px;
  1475. }
  1476. #u19161 {
  1477. border-width:0px;
  1478. position:absolute;
  1479. left:20px;
  1480. top:1123px;
  1481. width:68px;
  1482. height:1px;
  1483. display:flex;
  1484. }
  1485. #u19161 .text {
  1486. position:absolute;
  1487. align-self:center;
  1488. padding:2px 2px 2px 2px;
  1489. box-sizing:border-box;
  1490. width:100%;
  1491. }
  1492. #u19161_text {
  1493. border-width:0px;
  1494. word-wrap:break-word;
  1495. text-transform:none;
  1496. visibility:hidden;
  1497. }
  1498. #u19162_img {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:0px;
  1502. top:0px;
  1503. width:69px;
  1504. height:2px;
  1505. }
  1506. #u19162 {
  1507. border-width:0px;
  1508. position:absolute;
  1509. left:20px;
  1510. top:1061px;
  1511. width:68px;
  1512. height:1px;
  1513. display:flex;
  1514. }
  1515. #u19162 .text {
  1516. position:absolute;
  1517. align-self:center;
  1518. padding:2px 2px 2px 2px;
  1519. box-sizing:border-box;
  1520. width:100%;
  1521. }
  1522. #u19162_text {
  1523. border-width:0px;
  1524. word-wrap:break-word;
  1525. text-transform:none;
  1526. visibility:hidden;
  1527. }
  1528. #u19163_img {
  1529. border-width:0px;
  1530. position:absolute;
  1531. left:0px;
  1532. top:0px;
  1533. width:57px;
  1534. height:2px;
  1535. }
  1536. #u19163 {
  1537. border-width:0px;
  1538. position:absolute;
  1539. left:20px;
  1540. top:112px;
  1541. width:56px;
  1542. height:1px;
  1543. display:flex;
  1544. }
  1545. #u19163 .text {
  1546. position:absolute;
  1547. align-self:center;
  1548. padding:2px 2px 2px 2px;
  1549. box-sizing:border-box;
  1550. width:100%;
  1551. }
  1552. #u19163_text {
  1553. border-width:0px;
  1554. word-wrap:break-word;
  1555. text-transform:none;
  1556. visibility:hidden;
  1557. }
  1558. #u19164 {
  1559. border-width:0px;
  1560. position:absolute;
  1561. left:0px;
  1562. top:0px;
  1563. width:0px;
  1564. height:0px;
  1565. }
  1566. #u19165_div {
  1567. border-width:0px;
  1568. position:absolute;
  1569. left:0px;
  1570. top:0px;
  1571. width:33px;
  1572. height:22px;
  1573. background:inherit;
  1574. background-color:rgba(255, 255, 255, 0);
  1575. border:none;
  1576. border-radius:0px;
  1577. -moz-box-shadow:none;
  1578. -webkit-box-shadow:none;
  1579. box-shadow:none;
  1580. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1581. font-weight:400;
  1582. font-style:normal;
  1583. font-size:16px;
  1584. color:#FFFFFF;
  1585. }
  1586. #u19165 {
  1587. border-width:0px;
  1588. position:absolute;
  1589. left:43px;
  1590. top:71px;
  1591. width:33px;
  1592. height:22px;
  1593. display:flex;
  1594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1595. font-weight:400;
  1596. font-style:normal;
  1597. font-size:16px;
  1598. color:#FFFFFF;
  1599. }
  1600. #u19165 .text {
  1601. position:absolute;
  1602. align-self:flex-start;
  1603. padding:0px 0px 0px 0px;
  1604. box-sizing:border-box;
  1605. width:100%;
  1606. }
  1607. #u19165_text {
  1608. border-width:0px;
  1609. white-space:nowrap;
  1610. text-transform:none;
  1611. }
  1612. #u19166_img {
  1613. border-width:0px;
  1614. position:absolute;
  1615. left:0px;
  1616. top:0px;
  1617. width:18px;
  1618. height:14px;
  1619. }
  1620. #u19166 {
  1621. border-width:0px;
  1622. position:absolute;
  1623. left:20px;
  1624. top:75px;
  1625. width:18px;
  1626. height:14px;
  1627. display:flex;
  1628. }
  1629. #u19166 .text {
  1630. position:absolute;
  1631. align-self:center;
  1632. padding:2px 2px 2px 2px;
  1633. box-sizing:border-box;
  1634. width:100%;
  1635. }
  1636. #u19166_text {
  1637. border-width:0px;
  1638. word-wrap:break-word;
  1639. text-transform:none;
  1640. visibility:hidden;
  1641. }
  1642. #u19167_div {
  1643. border-width:0px;
  1644. position:absolute;
  1645. left:0px;
  1646. top:0px;
  1647. width:1257px;
  1648. height:1180px;
  1649. background:inherit;
  1650. background-color:rgba(255, 255, 255, 1);
  1651. border:none;
  1652. border-radius:0px;
  1653. -moz-box-shadow:none;
  1654. -webkit-box-shadow:none;
  1655. box-shadow:none;
  1656. }
  1657. #u19167 {
  1658. border-width:0px;
  1659. position:absolute;
  1660. left:333px;
  1661. top:50px;
  1662. width:1257px;
  1663. height:1180px;
  1664. display:flex;
  1665. }
  1666. #u19167 .text {
  1667. position:absolute;
  1668. align-self:center;
  1669. padding:2px 2px 2px 2px;
  1670. box-sizing:border-box;
  1671. width:100%;
  1672. }
  1673. #u19167_text {
  1674. border-width:0px;
  1675. word-wrap:break-word;
  1676. text-transform:none;
  1677. visibility:hidden;
  1678. }
  1679. #u19168_div {
  1680. border-width:0px;
  1681. position:absolute;
  1682. left:0px;
  1683. top:0px;
  1684. width:73px;
  1685. height:50px;
  1686. background:inherit;
  1687. background-color:rgba(255, 255, 255, 0);
  1688. border:none;
  1689. border-left:0px;
  1690. border-top:0px;
  1691. border-right:0px;
  1692. border-radius:0px;
  1693. border-bottom-right-radius:0px;
  1694. border-bottom-left-radius:0px;
  1695. -moz-box-shadow:none;
  1696. -webkit-box-shadow:none;
  1697. box-shadow:none;
  1698. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1699. font-weight:400;
  1700. font-style:normal;
  1701. font-size:18px;
  1702. line-height:40px;
  1703. }
  1704. #u19168 {
  1705. border-width:0px;
  1706. position:absolute;
  1707. left:352px;
  1708. top:54px;
  1709. width:73px;
  1710. height:50px;
  1711. display:flex;
  1712. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1713. font-weight:400;
  1714. font-style:normal;
  1715. font-size:18px;
  1716. line-height:40px;
  1717. }
  1718. #u19168 .text {
  1719. position:absolute;
  1720. align-self:center;
  1721. padding:0px 0px 0px 0px;
  1722. box-sizing:border-box;
  1723. width:100%;
  1724. }
  1725. #u19168_text {
  1726. border-width:0px;
  1727. white-space:nowrap;
  1728. text-transform:none;
  1729. }
  1730. #u19169 {
  1731. border-width:0px;
  1732. position:absolute;
  1733. left:352px;
  1734. top:235px;
  1735. width:1219px;
  1736. height:426px;
  1737. }
  1738. #u19170_img {
  1739. border-width:0px;
  1740. position:absolute;
  1741. left:0px;
  1742. top:0px;
  1743. width:42px;
  1744. height:31px;
  1745. }
  1746. #u19170 {
  1747. border-width:0px;
  1748. position:absolute;
  1749. left:0px;
  1750. top:0px;
  1751. width:42px;
  1752. height:31px;
  1753. display:flex;
  1754. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1755. font-weight:400;
  1756. font-style:normal;
  1757. font-size:14px;
  1758. color:#FFFFFF;
  1759. }
  1760. #u19170 .text {
  1761. position:absolute;
  1762. align-self:center;
  1763. padding:2px 2px 2px 2px;
  1764. box-sizing:border-box;
  1765. width:100%;
  1766. }
  1767. #u19170_text {
  1768. border-width:0px;
  1769. word-wrap:break-word;
  1770. text-transform:none;
  1771. visibility:hidden;
  1772. }
  1773. #u19171_img {
  1774. border-width:0px;
  1775. position:absolute;
  1776. left:0px;
  1777. top:0px;
  1778. width:131px;
  1779. height:31px;
  1780. }
  1781. #u19171 {
  1782. border-width:0px;
  1783. position:absolute;
  1784. left:42px;
  1785. top:0px;
  1786. width:131px;
  1787. height:31px;
  1788. display:flex;
  1789. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1790. font-weight:400;
  1791. font-style:normal;
  1792. font-size:14px;
  1793. color:#FFFFFF;
  1794. }
  1795. #u19171 .text {
  1796. position:absolute;
  1797. align-self:center;
  1798. padding:2px 2px 2px 2px;
  1799. box-sizing:border-box;
  1800. width:100%;
  1801. }
  1802. #u19171_text {
  1803. border-width:0px;
  1804. word-wrap:break-word;
  1805. text-transform:none;
  1806. }
  1807. #u19172_img {
  1808. border-width:0px;
  1809. position:absolute;
  1810. left:0px;
  1811. top:0px;
  1812. width:132px;
  1813. height:31px;
  1814. }
  1815. #u19172 {
  1816. border-width:0px;
  1817. position:absolute;
  1818. left:173px;
  1819. top:0px;
  1820. width:132px;
  1821. height:31px;
  1822. display:flex;
  1823. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1824. font-weight:400;
  1825. font-style:normal;
  1826. font-size:14px;
  1827. color:#FFFFFF;
  1828. }
  1829. #u19172 .text {
  1830. position:absolute;
  1831. align-self:center;
  1832. padding:2px 2px 2px 2px;
  1833. box-sizing:border-box;
  1834. width:100%;
  1835. }
  1836. #u19172_text {
  1837. border-width:0px;
  1838. word-wrap:break-word;
  1839. text-transform:none;
  1840. }
  1841. #u19173_img {
  1842. border-width:0px;
  1843. position:absolute;
  1844. left:0px;
  1845. top:0px;
  1846. width:131px;
  1847. height:31px;
  1848. }
  1849. #u19173 {
  1850. border-width:0px;
  1851. position:absolute;
  1852. left:305px;
  1853. top:0px;
  1854. width:131px;
  1855. height:31px;
  1856. display:flex;
  1857. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1858. font-weight:400;
  1859. font-style:normal;
  1860. font-size:14px;
  1861. color:#FFFFFF;
  1862. }
  1863. #u19173 .text {
  1864. position:absolute;
  1865. align-self:center;
  1866. padding:2px 2px 2px 2px;
  1867. box-sizing:border-box;
  1868. width:100%;
  1869. }
  1870. #u19173_text {
  1871. border-width:0px;
  1872. word-wrap:break-word;
  1873. text-transform:none;
  1874. }
  1875. #u19174_img {
  1876. border-width:0px;
  1877. position:absolute;
  1878. left:0px;
  1879. top:0px;
  1880. width:159px;
  1881. height:31px;
  1882. }
  1883. #u19174 {
  1884. border-width:0px;
  1885. position:absolute;
  1886. left:436px;
  1887. top:0px;
  1888. width:159px;
  1889. height:31px;
  1890. display:flex;
  1891. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1892. font-weight:400;
  1893. font-style:normal;
  1894. font-size:14px;
  1895. color:#FFFFFF;
  1896. }
  1897. #u19174 .text {
  1898. position:absolute;
  1899. align-self:center;
  1900. padding:2px 2px 2px 2px;
  1901. box-sizing:border-box;
  1902. width:100%;
  1903. }
  1904. #u19174_text {
  1905. border-width:0px;
  1906. word-wrap:break-word;
  1907. text-transform:none;
  1908. }
  1909. #u19175_img {
  1910. border-width:0px;
  1911. position:absolute;
  1912. left:0px;
  1913. top:0px;
  1914. width:105px;
  1915. height:31px;
  1916. }
  1917. #u19175 {
  1918. border-width:0px;
  1919. position:absolute;
  1920. left:595px;
  1921. top:0px;
  1922. width:105px;
  1923. height:31px;
  1924. display:flex;
  1925. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1926. font-weight:400;
  1927. font-style:normal;
  1928. font-size:14px;
  1929. color:#FFFFFF;
  1930. }
  1931. #u19175 .text {
  1932. position:absolute;
  1933. align-self:center;
  1934. padding:2px 2px 2px 2px;
  1935. box-sizing:border-box;
  1936. width:100%;
  1937. }
  1938. #u19175_text {
  1939. border-width:0px;
  1940. word-wrap:break-word;
  1941. text-transform:none;
  1942. }
  1943. #u19176_img {
  1944. border-width:0px;
  1945. position:absolute;
  1946. left:0px;
  1947. top:0px;
  1948. width:141px;
  1949. height:31px;
  1950. }
  1951. #u19176 {
  1952. border-width:0px;
  1953. position:absolute;
  1954. left:700px;
  1955. top:0px;
  1956. width:141px;
  1957. height:31px;
  1958. display:flex;
  1959. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1960. font-weight:400;
  1961. font-style:normal;
  1962. font-size:14px;
  1963. color:#FFFFFF;
  1964. }
  1965. #u19176 .text {
  1966. position:absolute;
  1967. align-self:center;
  1968. padding:2px 2px 2px 2px;
  1969. box-sizing:border-box;
  1970. width:100%;
  1971. }
  1972. #u19176_text {
  1973. border-width:0px;
  1974. word-wrap:break-word;
  1975. text-transform:none;
  1976. }
  1977. #u19177_img {
  1978. border-width:0px;
  1979. position:absolute;
  1980. left:0px;
  1981. top:0px;
  1982. width:132px;
  1983. height:31px;
  1984. }
  1985. #u19177 {
  1986. border-width:0px;
  1987. position:absolute;
  1988. left:841px;
  1989. top:0px;
  1990. width:132px;
  1991. height:31px;
  1992. display:flex;
  1993. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1994. font-weight:400;
  1995. font-style:normal;
  1996. font-size:14px;
  1997. color:#FFFFFF;
  1998. }
  1999. #u19177 .text {
  2000. position:absolute;
  2001. align-self:center;
  2002. padding:2px 2px 2px 2px;
  2003. box-sizing:border-box;
  2004. width:100%;
  2005. }
  2006. #u19177_text {
  2007. border-width:0px;
  2008. word-wrap:break-word;
  2009. text-transform:none;
  2010. }
  2011. #u19178_img {
  2012. border-width:0px;
  2013. position:absolute;
  2014. left:0px;
  2015. top:0px;
  2016. width:140px;
  2017. height:31px;
  2018. }
  2019. #u19178 {
  2020. border-width:0px;
  2021. position:absolute;
  2022. left:973px;
  2023. top:0px;
  2024. width:140px;
  2025. height:31px;
  2026. display:flex;
  2027. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2028. font-weight:400;
  2029. font-style:normal;
  2030. font-size:14px;
  2031. color:#FFFFFF;
  2032. }
  2033. #u19178 .text {
  2034. position:absolute;
  2035. align-self:center;
  2036. padding:2px 2px 2px 2px;
  2037. box-sizing:border-box;
  2038. width:100%;
  2039. }
  2040. #u19178_text {
  2041. border-width:0px;
  2042. word-wrap:break-word;
  2043. text-transform:none;
  2044. }
  2045. #u19179_img {
  2046. border-width:0px;
  2047. position:absolute;
  2048. left:0px;
  2049. top:0px;
  2050. width:106px;
  2051. height:31px;
  2052. }
  2053. #u19179 {
  2054. border-width:0px;
  2055. position:absolute;
  2056. left:1113px;
  2057. top:0px;
  2058. width:106px;
  2059. height:31px;
  2060. display:flex;
  2061. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2062. font-weight:400;
  2063. font-style:normal;
  2064. font-size:14px;
  2065. color:#FFFFFF;
  2066. }
  2067. #u19179 .text {
  2068. position:absolute;
  2069. align-self:center;
  2070. padding:2px 2px 2px 2px;
  2071. box-sizing:border-box;
  2072. width:100%;
  2073. }
  2074. #u19179_text {
  2075. border-width:0px;
  2076. word-wrap:break-word;
  2077. text-transform:none;
  2078. }
  2079. #u19180_img {
  2080. border-width:0px;
  2081. position:absolute;
  2082. left:0px;
  2083. top:0px;
  2084. width:42px;
  2085. height:35px;
  2086. }
  2087. #u19180 {
  2088. border-width:0px;
  2089. position:absolute;
  2090. left:0px;
  2091. top:31px;
  2092. width:42px;
  2093. height:35px;
  2094. display:flex;
  2095. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2096. font-weight:400;
  2097. font-style:normal;
  2098. font-size:14px;
  2099. }
  2100. #u19180 .text {
  2101. position:absolute;
  2102. align-self:center;
  2103. padding:2px 2px 2px 2px;
  2104. box-sizing:border-box;
  2105. width:100%;
  2106. }
  2107. #u19180_text {
  2108. border-width:0px;
  2109. word-wrap:break-word;
  2110. text-transform:none;
  2111. visibility:hidden;
  2112. }
  2113. #u19181_img {
  2114. border-width:0px;
  2115. position:absolute;
  2116. left:0px;
  2117. top:0px;
  2118. width:131px;
  2119. height:35px;
  2120. }
  2121. #u19181 {
  2122. border-width:0px;
  2123. position:absolute;
  2124. left:42px;
  2125. top:31px;
  2126. width:131px;
  2127. height:35px;
  2128. display:flex;
  2129. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2130. font-weight:400;
  2131. font-style:normal;
  2132. font-size:14px;
  2133. }
  2134. #u19181 .text {
  2135. position:absolute;
  2136. align-self:center;
  2137. padding:2px 2px 2px 2px;
  2138. box-sizing:border-box;
  2139. width:100%;
  2140. }
  2141. #u19181_text {
  2142. border-width:0px;
  2143. word-wrap:break-word;
  2144. text-transform:none;
  2145. visibility:hidden;
  2146. }
  2147. #u19182_img {
  2148. border-width:0px;
  2149. position:absolute;
  2150. left:0px;
  2151. top:0px;
  2152. width:132px;
  2153. height:35px;
  2154. }
  2155. #u19182 {
  2156. border-width:0px;
  2157. position:absolute;
  2158. left:173px;
  2159. top:31px;
  2160. width:132px;
  2161. height:35px;
  2162. display:flex;
  2163. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2164. font-weight:400;
  2165. font-style:normal;
  2166. font-size:14px;
  2167. }
  2168. #u19182 .text {
  2169. position:absolute;
  2170. align-self:center;
  2171. padding:2px 2px 2px 2px;
  2172. box-sizing:border-box;
  2173. width:100%;
  2174. }
  2175. #u19182_text {
  2176. border-width:0px;
  2177. word-wrap:break-word;
  2178. text-transform:none;
  2179. }
  2180. #u19183_img {
  2181. border-width:0px;
  2182. position:absolute;
  2183. left:0px;
  2184. top:0px;
  2185. width:131px;
  2186. height:35px;
  2187. }
  2188. #u19183 {
  2189. border-width:0px;
  2190. position:absolute;
  2191. left:305px;
  2192. top:31px;
  2193. width:131px;
  2194. height:35px;
  2195. display:flex;
  2196. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2197. font-weight:400;
  2198. font-style:normal;
  2199. font-size:14px;
  2200. }
  2201. #u19183 .text {
  2202. position:absolute;
  2203. align-self:center;
  2204. padding:2px 2px 2px 2px;
  2205. box-sizing:border-box;
  2206. width:100%;
  2207. }
  2208. #u19183_text {
  2209. border-width:0px;
  2210. word-wrap:break-word;
  2211. text-transform:none;
  2212. visibility:hidden;
  2213. }
  2214. #u19184_img {
  2215. border-width:0px;
  2216. position:absolute;
  2217. left:0px;
  2218. top:0px;
  2219. width:159px;
  2220. height:35px;
  2221. }
  2222. #u19184 {
  2223. border-width:0px;
  2224. position:absolute;
  2225. left:436px;
  2226. top:31px;
  2227. width:159px;
  2228. height:35px;
  2229. display:flex;
  2230. font-size:14px;
  2231. }
  2232. #u19184 .text {
  2233. position:absolute;
  2234. align-self:center;
  2235. padding:2px 2px 2px 2px;
  2236. box-sizing:border-box;
  2237. width:100%;
  2238. }
  2239. #u19184_text {
  2240. border-width:0px;
  2241. word-wrap:break-word;
  2242. text-transform:none;
  2243. }
  2244. #u19185_img {
  2245. border-width:0px;
  2246. position:absolute;
  2247. left:0px;
  2248. top:0px;
  2249. width:105px;
  2250. height:35px;
  2251. }
  2252. #u19185 {
  2253. border-width:0px;
  2254. position:absolute;
  2255. left:595px;
  2256. top:31px;
  2257. width:105px;
  2258. height:35px;
  2259. display:flex;
  2260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2261. font-weight:400;
  2262. font-style:normal;
  2263. font-size:14px;
  2264. }
  2265. #u19185 .text {
  2266. position:absolute;
  2267. align-self:center;
  2268. padding:2px 2px 2px 2px;
  2269. box-sizing:border-box;
  2270. width:100%;
  2271. }
  2272. #u19185_text {
  2273. border-width:0px;
  2274. word-wrap:break-word;
  2275. text-transform:none;
  2276. visibility:hidden;
  2277. }
  2278. #u19186_img {
  2279. border-width:0px;
  2280. position:absolute;
  2281. left:0px;
  2282. top:0px;
  2283. width:141px;
  2284. height:35px;
  2285. }
  2286. #u19186 {
  2287. border-width:0px;
  2288. position:absolute;
  2289. left:700px;
  2290. top:31px;
  2291. width:141px;
  2292. height:35px;
  2293. display:flex;
  2294. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2295. font-weight:400;
  2296. font-style:normal;
  2297. font-size:14px;
  2298. }
  2299. #u19186 .text {
  2300. position:absolute;
  2301. align-self:center;
  2302. padding:2px 2px 2px 2px;
  2303. box-sizing:border-box;
  2304. width:100%;
  2305. }
  2306. #u19186_text {
  2307. border-width:0px;
  2308. word-wrap:break-word;
  2309. text-transform:none;
  2310. visibility:hidden;
  2311. }
  2312. #u19187_img {
  2313. border-width:0px;
  2314. position:absolute;
  2315. left:0px;
  2316. top:0px;
  2317. width:132px;
  2318. height:35px;
  2319. }
  2320. #u19187 {
  2321. border-width:0px;
  2322. position:absolute;
  2323. left:841px;
  2324. top:31px;
  2325. width:132px;
  2326. height:35px;
  2327. display:flex;
  2328. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2329. font-weight:400;
  2330. font-style:normal;
  2331. font-size:14px;
  2332. }
  2333. #u19187 .text {
  2334. position:absolute;
  2335. align-self:center;
  2336. padding:2px 2px 2px 2px;
  2337. box-sizing:border-box;
  2338. width:100%;
  2339. }
  2340. #u19187_text {
  2341. border-width:0px;
  2342. word-wrap:break-word;
  2343. text-transform:none;
  2344. }
  2345. #u19188_img {
  2346. border-width:0px;
  2347. position:absolute;
  2348. left:0px;
  2349. top:0px;
  2350. width:140px;
  2351. height:35px;
  2352. }
  2353. #u19188 {
  2354. border-width:0px;
  2355. position:absolute;
  2356. left:973px;
  2357. top:31px;
  2358. width:140px;
  2359. height:35px;
  2360. display:flex;
  2361. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2362. font-weight:400;
  2363. font-style:normal;
  2364. font-size:14px;
  2365. }
  2366. #u19188 .text {
  2367. position:absolute;
  2368. align-self:center;
  2369. padding:2px 2px 2px 2px;
  2370. box-sizing:border-box;
  2371. width:100%;
  2372. }
  2373. #u19188_text {
  2374. border-width:0px;
  2375. word-wrap:break-word;
  2376. text-transform:none;
  2377. visibility:hidden;
  2378. }
  2379. #u19189_img {
  2380. border-width:0px;
  2381. position:absolute;
  2382. left:0px;
  2383. top:0px;
  2384. width:106px;
  2385. height:35px;
  2386. }
  2387. #u19189 {
  2388. border-width:0px;
  2389. position:absolute;
  2390. left:1113px;
  2391. top:31px;
  2392. width:106px;
  2393. height:35px;
  2394. display:flex;
  2395. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2396. font-weight:400;
  2397. font-style:normal;
  2398. font-size:14px;
  2399. color:#1890FF;
  2400. }
  2401. #u19189 .text {
  2402. position:absolute;
  2403. align-self:center;
  2404. padding:2px 2px 2px 2px;
  2405. box-sizing:border-box;
  2406. width:100%;
  2407. }
  2408. #u19189_text {
  2409. border-width:0px;
  2410. word-wrap:break-word;
  2411. text-transform:none;
  2412. }
  2413. #u19190_img {
  2414. border-width:0px;
  2415. position:absolute;
  2416. left:0px;
  2417. top:0px;
  2418. width:42px;
  2419. height:30px;
  2420. }
  2421. #u19190 {
  2422. border-width:0px;
  2423. position:absolute;
  2424. left:0px;
  2425. top:66px;
  2426. width:42px;
  2427. height:30px;
  2428. display:flex;
  2429. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2430. font-weight:400;
  2431. font-style:normal;
  2432. font-size:14px;
  2433. }
  2434. #u19190 .text {
  2435. position:absolute;
  2436. align-self:center;
  2437. padding:2px 2px 2px 2px;
  2438. box-sizing:border-box;
  2439. width:100%;
  2440. }
  2441. #u19190_text {
  2442. border-width:0px;
  2443. word-wrap:break-word;
  2444. text-transform:none;
  2445. visibility:hidden;
  2446. }
  2447. #u19191_img {
  2448. border-width:0px;
  2449. position:absolute;
  2450. left:0px;
  2451. top:0px;
  2452. width:131px;
  2453. height:30px;
  2454. }
  2455. #u19191 {
  2456. border-width:0px;
  2457. position:absolute;
  2458. left:42px;
  2459. top:66px;
  2460. width:131px;
  2461. height:30px;
  2462. display:flex;
  2463. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2464. font-weight:400;
  2465. font-style:normal;
  2466. font-size:14px;
  2467. }
  2468. #u19191 .text {
  2469. position:absolute;
  2470. align-self:center;
  2471. padding:2px 2px 2px 2px;
  2472. box-sizing:border-box;
  2473. width:100%;
  2474. }
  2475. #u19191_text {
  2476. border-width:0px;
  2477. word-wrap:break-word;
  2478. text-transform:none;
  2479. visibility:hidden;
  2480. }
  2481. #u19192_img {
  2482. border-width:0px;
  2483. position:absolute;
  2484. left:0px;
  2485. top:0px;
  2486. width:132px;
  2487. height:30px;
  2488. }
  2489. #u19192 {
  2490. border-width:0px;
  2491. position:absolute;
  2492. left:173px;
  2493. top:66px;
  2494. width:132px;
  2495. height:30px;
  2496. display:flex;
  2497. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2498. font-weight:400;
  2499. font-style:normal;
  2500. font-size:14px;
  2501. }
  2502. #u19192 .text {
  2503. position:absolute;
  2504. align-self:center;
  2505. padding:2px 2px 2px 2px;
  2506. box-sizing:border-box;
  2507. width:100%;
  2508. }
  2509. #u19192_text {
  2510. border-width:0px;
  2511. word-wrap:break-word;
  2512. text-transform:none;
  2513. visibility:hidden;
  2514. }
  2515. #u19193_img {
  2516. border-width:0px;
  2517. position:absolute;
  2518. left:0px;
  2519. top:0px;
  2520. width:131px;
  2521. height:30px;
  2522. }
  2523. #u19193 {
  2524. border-width:0px;
  2525. position:absolute;
  2526. left:305px;
  2527. top:66px;
  2528. width:131px;
  2529. height:30px;
  2530. display:flex;
  2531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2532. font-weight:400;
  2533. font-style:normal;
  2534. font-size:14px;
  2535. }
  2536. #u19193 .text {
  2537. position:absolute;
  2538. align-self:center;
  2539. padding:2px 2px 2px 2px;
  2540. box-sizing:border-box;
  2541. width:100%;
  2542. }
  2543. #u19193_text {
  2544. border-width:0px;
  2545. word-wrap:break-word;
  2546. text-transform:none;
  2547. visibility:hidden;
  2548. }
  2549. #u19194_img {
  2550. border-width:0px;
  2551. position:absolute;
  2552. left:0px;
  2553. top:0px;
  2554. width:159px;
  2555. height:30px;
  2556. }
  2557. #u19194 {
  2558. border-width:0px;
  2559. position:absolute;
  2560. left:436px;
  2561. top:66px;
  2562. width:159px;
  2563. height:30px;
  2564. display:flex;
  2565. font-size:14px;
  2566. }
  2567. #u19194 .text {
  2568. position:absolute;
  2569. align-self:center;
  2570. padding:2px 2px 2px 2px;
  2571. box-sizing:border-box;
  2572. width:100%;
  2573. }
  2574. #u19194_text {
  2575. border-width:0px;
  2576. word-wrap:break-word;
  2577. text-transform:none;
  2578. visibility:hidden;
  2579. }
  2580. #u19195_img {
  2581. border-width:0px;
  2582. position:absolute;
  2583. left:0px;
  2584. top:0px;
  2585. width:105px;
  2586. height:30px;
  2587. }
  2588. #u19195 {
  2589. border-width:0px;
  2590. position:absolute;
  2591. left:595px;
  2592. top:66px;
  2593. width:105px;
  2594. height:30px;
  2595. display:flex;
  2596. font-size:14px;
  2597. }
  2598. #u19195 .text {
  2599. position:absolute;
  2600. align-self:center;
  2601. padding:2px 2px 2px 2px;
  2602. box-sizing:border-box;
  2603. width:100%;
  2604. }
  2605. #u19195_text {
  2606. border-width:0px;
  2607. word-wrap:break-word;
  2608. text-transform:none;
  2609. visibility:hidden;
  2610. }
  2611. #u19196_img {
  2612. border-width:0px;
  2613. position:absolute;
  2614. left:0px;
  2615. top:0px;
  2616. width:141px;
  2617. height:30px;
  2618. }
  2619. #u19196 {
  2620. border-width:0px;
  2621. position:absolute;
  2622. left:700px;
  2623. top:66px;
  2624. width:141px;
  2625. height:30px;
  2626. display:flex;
  2627. font-size:14px;
  2628. }
  2629. #u19196 .text {
  2630. position:absolute;
  2631. align-self:center;
  2632. padding:2px 2px 2px 2px;
  2633. box-sizing:border-box;
  2634. width:100%;
  2635. }
  2636. #u19196_text {
  2637. border-width:0px;
  2638. word-wrap:break-word;
  2639. text-transform:none;
  2640. visibility:hidden;
  2641. }
  2642. #u19197_img {
  2643. border-width:0px;
  2644. position:absolute;
  2645. left:0px;
  2646. top:0px;
  2647. width:132px;
  2648. height:30px;
  2649. }
  2650. #u19197 {
  2651. border-width:0px;
  2652. position:absolute;
  2653. left:841px;
  2654. top:66px;
  2655. width:132px;
  2656. height:30px;
  2657. display:flex;
  2658. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2659. font-weight:400;
  2660. font-style:normal;
  2661. font-size:14px;
  2662. }
  2663. #u19197 .text {
  2664. position:absolute;
  2665. align-self:center;
  2666. padding:2px 2px 2px 2px;
  2667. box-sizing:border-box;
  2668. width:100%;
  2669. }
  2670. #u19197_text {
  2671. border-width:0px;
  2672. word-wrap:break-word;
  2673. text-transform:none;
  2674. }
  2675. #u19198_img {
  2676. border-width:0px;
  2677. position:absolute;
  2678. left:0px;
  2679. top:0px;
  2680. width:140px;
  2681. height:30px;
  2682. }
  2683. #u19198 {
  2684. border-width:0px;
  2685. position:absolute;
  2686. left:973px;
  2687. top:66px;
  2688. width:140px;
  2689. height:30px;
  2690. display:flex;
  2691. font-size:14px;
  2692. }
  2693. #u19198 .text {
  2694. position:absolute;
  2695. align-self:center;
  2696. padding:2px 2px 2px 2px;
  2697. box-sizing:border-box;
  2698. width:100%;
  2699. }
  2700. #u19198_text {
  2701. border-width:0px;
  2702. word-wrap:break-word;
  2703. text-transform:none;
  2704. visibility:hidden;
  2705. }
  2706. #u19199_img {
  2707. border-width:0px;
  2708. position:absolute;
  2709. left:0px;
  2710. top:0px;
  2711. width:106px;
  2712. height:30px;
  2713. }
  2714. #u19199 {
  2715. border-width:0px;
  2716. position:absolute;
  2717. left:1113px;
  2718. top:66px;
  2719. width:106px;
  2720. height:30px;
  2721. display:flex;
  2722. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2723. font-weight:400;
  2724. font-style:normal;
  2725. font-size:14px;
  2726. color:#1890FF;
  2727. }
  2728. #u19199 .text {
  2729. position:absolute;
  2730. align-self:center;
  2731. padding:2px 2px 2px 2px;
  2732. box-sizing:border-box;
  2733. width:100%;
  2734. }
  2735. #u19199_text {
  2736. border-width:0px;
  2737. word-wrap:break-word;
  2738. text-transform:none;
  2739. }
  2740. #u19200_img {
  2741. border-width:0px;
  2742. position:absolute;
  2743. left:0px;
  2744. top:0px;
  2745. width:42px;
  2746. height:30px;
  2747. }
  2748. #u19200 {
  2749. border-width:0px;
  2750. position:absolute;
  2751. left:0px;
  2752. top:96px;
  2753. width:42px;
  2754. height:30px;
  2755. display:flex;
  2756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2757. font-weight:400;
  2758. font-style:normal;
  2759. font-size:14px;
  2760. }
  2761. #u19200 .text {
  2762. position:absolute;
  2763. align-self:center;
  2764. padding:2px 2px 2px 2px;
  2765. box-sizing:border-box;
  2766. width:100%;
  2767. }
  2768. #u19200_text {
  2769. border-width:0px;
  2770. word-wrap:break-word;
  2771. text-transform:none;
  2772. visibility:hidden;
  2773. }
  2774. #u19201_img {
  2775. border-width:0px;
  2776. position:absolute;
  2777. left:0px;
  2778. top:0px;
  2779. width:131px;
  2780. height:30px;
  2781. }
  2782. #u19201 {
  2783. border-width:0px;
  2784. position:absolute;
  2785. left:42px;
  2786. top:96px;
  2787. width:131px;
  2788. height:30px;
  2789. display:flex;
  2790. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2791. font-weight:400;
  2792. font-style:normal;
  2793. font-size:14px;
  2794. }
  2795. #u19201 .text {
  2796. position:absolute;
  2797. align-self:center;
  2798. padding:2px 2px 2px 2px;
  2799. box-sizing:border-box;
  2800. width:100%;
  2801. }
  2802. #u19201_text {
  2803. border-width:0px;
  2804. word-wrap:break-word;
  2805. text-transform:none;
  2806. visibility:hidden;
  2807. }
  2808. #u19202_img {
  2809. border-width:0px;
  2810. position:absolute;
  2811. left:0px;
  2812. top:0px;
  2813. width:132px;
  2814. height:30px;
  2815. }
  2816. #u19202 {
  2817. border-width:0px;
  2818. position:absolute;
  2819. left:173px;
  2820. top:96px;
  2821. width:132px;
  2822. height:30px;
  2823. display:flex;
  2824. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2825. font-weight:400;
  2826. font-style:normal;
  2827. font-size:14px;
  2828. }
  2829. #u19202 .text {
  2830. position:absolute;
  2831. align-self:center;
  2832. padding:2px 2px 2px 2px;
  2833. box-sizing:border-box;
  2834. width:100%;
  2835. }
  2836. #u19202_text {
  2837. border-width:0px;
  2838. word-wrap:break-word;
  2839. text-transform:none;
  2840. visibility:hidden;
  2841. }
  2842. #u19203_img {
  2843. border-width:0px;
  2844. position:absolute;
  2845. left:0px;
  2846. top:0px;
  2847. width:131px;
  2848. height:30px;
  2849. }
  2850. #u19203 {
  2851. border-width:0px;
  2852. position:absolute;
  2853. left:305px;
  2854. top:96px;
  2855. width:131px;
  2856. height:30px;
  2857. display:flex;
  2858. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2859. font-weight:400;
  2860. font-style:normal;
  2861. font-size:14px;
  2862. }
  2863. #u19203 .text {
  2864. position:absolute;
  2865. align-self:center;
  2866. padding:2px 2px 2px 2px;
  2867. box-sizing:border-box;
  2868. width:100%;
  2869. }
  2870. #u19203_text {
  2871. border-width:0px;
  2872. word-wrap:break-word;
  2873. text-transform:none;
  2874. visibility:hidden;
  2875. }
  2876. #u19204_img {
  2877. border-width:0px;
  2878. position:absolute;
  2879. left:0px;
  2880. top:0px;
  2881. width:159px;
  2882. height:30px;
  2883. }
  2884. #u19204 {
  2885. border-width:0px;
  2886. position:absolute;
  2887. left:436px;
  2888. top:96px;
  2889. width:159px;
  2890. height:30px;
  2891. display:flex;
  2892. font-size:14px;
  2893. }
  2894. #u19204 .text {
  2895. position:absolute;
  2896. align-self:center;
  2897. padding:2px 2px 2px 2px;
  2898. box-sizing:border-box;
  2899. width:100%;
  2900. }
  2901. #u19204_text {
  2902. border-width:0px;
  2903. word-wrap:break-word;
  2904. text-transform:none;
  2905. visibility:hidden;
  2906. }
  2907. #u19205_img {
  2908. border-width:0px;
  2909. position:absolute;
  2910. left:0px;
  2911. top:0px;
  2912. width:105px;
  2913. height:30px;
  2914. }
  2915. #u19205 {
  2916. border-width:0px;
  2917. position:absolute;
  2918. left:595px;
  2919. top:96px;
  2920. width:105px;
  2921. height:30px;
  2922. display:flex;
  2923. font-size:14px;
  2924. }
  2925. #u19205 .text {
  2926. position:absolute;
  2927. align-self:center;
  2928. padding:2px 2px 2px 2px;
  2929. box-sizing:border-box;
  2930. width:100%;
  2931. }
  2932. #u19205_text {
  2933. border-width:0px;
  2934. word-wrap:break-word;
  2935. text-transform:none;
  2936. visibility:hidden;
  2937. }
  2938. #u19206_img {
  2939. border-width:0px;
  2940. position:absolute;
  2941. left:0px;
  2942. top:0px;
  2943. width:141px;
  2944. height:30px;
  2945. }
  2946. #u19206 {
  2947. border-width:0px;
  2948. position:absolute;
  2949. left:700px;
  2950. top:96px;
  2951. width:141px;
  2952. height:30px;
  2953. display:flex;
  2954. font-size:14px;
  2955. }
  2956. #u19206 .text {
  2957. position:absolute;
  2958. align-self:center;
  2959. padding:2px 2px 2px 2px;
  2960. box-sizing:border-box;
  2961. width:100%;
  2962. }
  2963. #u19206_text {
  2964. border-width:0px;
  2965. word-wrap:break-word;
  2966. text-transform:none;
  2967. visibility:hidden;
  2968. }
  2969. #u19207_img {
  2970. border-width:0px;
  2971. position:absolute;
  2972. left:0px;
  2973. top:0px;
  2974. width:132px;
  2975. height:30px;
  2976. }
  2977. #u19207 {
  2978. border-width:0px;
  2979. position:absolute;
  2980. left:841px;
  2981. top:96px;
  2982. width:132px;
  2983. height:30px;
  2984. display:flex;
  2985. font-size:14px;
  2986. }
  2987. #u19207 .text {
  2988. position:absolute;
  2989. align-self:center;
  2990. padding:2px 2px 2px 2px;
  2991. box-sizing:border-box;
  2992. width:100%;
  2993. }
  2994. #u19207_text {
  2995. border-width:0px;
  2996. word-wrap:break-word;
  2997. text-transform:none;
  2998. visibility:hidden;
  2999. }
  3000. #u19208_img {
  3001. border-width:0px;
  3002. position:absolute;
  3003. left:0px;
  3004. top:0px;
  3005. width:140px;
  3006. height:30px;
  3007. }
  3008. #u19208 {
  3009. border-width:0px;
  3010. position:absolute;
  3011. left:973px;
  3012. top:96px;
  3013. width:140px;
  3014. height:30px;
  3015. display:flex;
  3016. font-size:14px;
  3017. }
  3018. #u19208 .text {
  3019. position:absolute;
  3020. align-self:center;
  3021. padding:2px 2px 2px 2px;
  3022. box-sizing:border-box;
  3023. width:100%;
  3024. }
  3025. #u19208_text {
  3026. border-width:0px;
  3027. word-wrap:break-word;
  3028. text-transform:none;
  3029. visibility:hidden;
  3030. }
  3031. #u19209_img {
  3032. border-width:0px;
  3033. position:absolute;
  3034. left:0px;
  3035. top:0px;
  3036. width:106px;
  3037. height:30px;
  3038. }
  3039. #u19209 {
  3040. border-width:0px;
  3041. position:absolute;
  3042. left:1113px;
  3043. top:96px;
  3044. width:106px;
  3045. height:30px;
  3046. display:flex;
  3047. font-size:14px;
  3048. }
  3049. #u19209 .text {
  3050. position:absolute;
  3051. align-self:center;
  3052. padding:2px 2px 2px 2px;
  3053. box-sizing:border-box;
  3054. width:100%;
  3055. }
  3056. #u19209_text {
  3057. border-width:0px;
  3058. word-wrap:break-word;
  3059. text-transform:none;
  3060. visibility:hidden;
  3061. }
  3062. #u19210_img {
  3063. border-width:0px;
  3064. position:absolute;
  3065. left:0px;
  3066. top:0px;
  3067. width:42px;
  3068. height:30px;
  3069. }
  3070. #u19210 {
  3071. border-width:0px;
  3072. position:absolute;
  3073. left:0px;
  3074. top:126px;
  3075. width:42px;
  3076. height:30px;
  3077. display:flex;
  3078. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3079. font-weight:400;
  3080. font-style:normal;
  3081. font-size:14px;
  3082. }
  3083. #u19210 .text {
  3084. position:absolute;
  3085. align-self:center;
  3086. padding:2px 2px 2px 2px;
  3087. box-sizing:border-box;
  3088. width:100%;
  3089. }
  3090. #u19210_text {
  3091. border-width:0px;
  3092. word-wrap:break-word;
  3093. text-transform:none;
  3094. visibility:hidden;
  3095. }
  3096. #u19211_img {
  3097. border-width:0px;
  3098. position:absolute;
  3099. left:0px;
  3100. top:0px;
  3101. width:131px;
  3102. height:30px;
  3103. }
  3104. #u19211 {
  3105. border-width:0px;
  3106. position:absolute;
  3107. left:42px;
  3108. top:126px;
  3109. width:131px;
  3110. height:30px;
  3111. display:flex;
  3112. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3113. font-weight:400;
  3114. font-style:normal;
  3115. font-size:14px;
  3116. }
  3117. #u19211 .text {
  3118. position:absolute;
  3119. align-self:center;
  3120. padding:2px 2px 2px 2px;
  3121. box-sizing:border-box;
  3122. width:100%;
  3123. }
  3124. #u19211_text {
  3125. border-width:0px;
  3126. word-wrap:break-word;
  3127. text-transform:none;
  3128. visibility:hidden;
  3129. }
  3130. #u19212_img {
  3131. border-width:0px;
  3132. position:absolute;
  3133. left:0px;
  3134. top:0px;
  3135. width:132px;
  3136. height:30px;
  3137. }
  3138. #u19212 {
  3139. border-width:0px;
  3140. position:absolute;
  3141. left:173px;
  3142. top:126px;
  3143. width:132px;
  3144. height:30px;
  3145. display:flex;
  3146. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3147. font-weight:400;
  3148. font-style:normal;
  3149. font-size:14px;
  3150. }
  3151. #u19212 .text {
  3152. position:absolute;
  3153. align-self:center;
  3154. padding:2px 2px 2px 2px;
  3155. box-sizing:border-box;
  3156. width:100%;
  3157. }
  3158. #u19212_text {
  3159. border-width:0px;
  3160. word-wrap:break-word;
  3161. text-transform:none;
  3162. visibility:hidden;
  3163. }
  3164. #u19213_img {
  3165. border-width:0px;
  3166. position:absolute;
  3167. left:0px;
  3168. top:0px;
  3169. width:131px;
  3170. height:30px;
  3171. }
  3172. #u19213 {
  3173. border-width:0px;
  3174. position:absolute;
  3175. left:305px;
  3176. top:126px;
  3177. width:131px;
  3178. height:30px;
  3179. display:flex;
  3180. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3181. font-weight:400;
  3182. font-style:normal;
  3183. font-size:14px;
  3184. }
  3185. #u19213 .text {
  3186. position:absolute;
  3187. align-self:center;
  3188. padding:2px 2px 2px 2px;
  3189. box-sizing:border-box;
  3190. width:100%;
  3191. }
  3192. #u19213_text {
  3193. border-width:0px;
  3194. word-wrap:break-word;
  3195. text-transform:none;
  3196. visibility:hidden;
  3197. }
  3198. #u19214_img {
  3199. border-width:0px;
  3200. position:absolute;
  3201. left:0px;
  3202. top:0px;
  3203. width:159px;
  3204. height:30px;
  3205. }
  3206. #u19214 {
  3207. border-width:0px;
  3208. position:absolute;
  3209. left:436px;
  3210. top:126px;
  3211. width:159px;
  3212. height:30px;
  3213. display:flex;
  3214. font-size:14px;
  3215. }
  3216. #u19214 .text {
  3217. position:absolute;
  3218. align-self:center;
  3219. padding:2px 2px 2px 2px;
  3220. box-sizing:border-box;
  3221. width:100%;
  3222. }
  3223. #u19214_text {
  3224. border-width:0px;
  3225. word-wrap:break-word;
  3226. text-transform:none;
  3227. visibility:hidden;
  3228. }
  3229. #u19215_img {
  3230. border-width:0px;
  3231. position:absolute;
  3232. left:0px;
  3233. top:0px;
  3234. width:105px;
  3235. height:30px;
  3236. }
  3237. #u19215 {
  3238. border-width:0px;
  3239. position:absolute;
  3240. left:595px;
  3241. top:126px;
  3242. width:105px;
  3243. height:30px;
  3244. display:flex;
  3245. font-size:14px;
  3246. }
  3247. #u19215 .text {
  3248. position:absolute;
  3249. align-self:center;
  3250. padding:2px 2px 2px 2px;
  3251. box-sizing:border-box;
  3252. width:100%;
  3253. }
  3254. #u19215_text {
  3255. border-width:0px;
  3256. word-wrap:break-word;
  3257. text-transform:none;
  3258. visibility:hidden;
  3259. }
  3260. #u19216_img {
  3261. border-width:0px;
  3262. position:absolute;
  3263. left:0px;
  3264. top:0px;
  3265. width:141px;
  3266. height:30px;
  3267. }
  3268. #u19216 {
  3269. border-width:0px;
  3270. position:absolute;
  3271. left:700px;
  3272. top:126px;
  3273. width:141px;
  3274. height:30px;
  3275. display:flex;
  3276. font-size:14px;
  3277. }
  3278. #u19216 .text {
  3279. position:absolute;
  3280. align-self:center;
  3281. padding:2px 2px 2px 2px;
  3282. box-sizing:border-box;
  3283. width:100%;
  3284. }
  3285. #u19216_text {
  3286. border-width:0px;
  3287. word-wrap:break-word;
  3288. text-transform:none;
  3289. visibility:hidden;
  3290. }
  3291. #u19217_img {
  3292. border-width:0px;
  3293. position:absolute;
  3294. left:0px;
  3295. top:0px;
  3296. width:132px;
  3297. height:30px;
  3298. }
  3299. #u19217 {
  3300. border-width:0px;
  3301. position:absolute;
  3302. left:841px;
  3303. top:126px;
  3304. width:132px;
  3305. height:30px;
  3306. display:flex;
  3307. font-size:14px;
  3308. }
  3309. #u19217 .text {
  3310. position:absolute;
  3311. align-self:center;
  3312. padding:2px 2px 2px 2px;
  3313. box-sizing:border-box;
  3314. width:100%;
  3315. }
  3316. #u19217_text {
  3317. border-width:0px;
  3318. word-wrap:break-word;
  3319. text-transform:none;
  3320. visibility:hidden;
  3321. }
  3322. #u19218_img {
  3323. border-width:0px;
  3324. position:absolute;
  3325. left:0px;
  3326. top:0px;
  3327. width:140px;
  3328. height:30px;
  3329. }
  3330. #u19218 {
  3331. border-width:0px;
  3332. position:absolute;
  3333. left:973px;
  3334. top:126px;
  3335. width:140px;
  3336. height:30px;
  3337. display:flex;
  3338. font-size:14px;
  3339. }
  3340. #u19218 .text {
  3341. position:absolute;
  3342. align-self:center;
  3343. padding:2px 2px 2px 2px;
  3344. box-sizing:border-box;
  3345. width:100%;
  3346. }
  3347. #u19218_text {
  3348. border-width:0px;
  3349. word-wrap:break-word;
  3350. text-transform:none;
  3351. visibility:hidden;
  3352. }
  3353. #u19219_img {
  3354. border-width:0px;
  3355. position:absolute;
  3356. left:0px;
  3357. top:0px;
  3358. width:106px;
  3359. height:30px;
  3360. }
  3361. #u19219 {
  3362. border-width:0px;
  3363. position:absolute;
  3364. left:1113px;
  3365. top:126px;
  3366. width:106px;
  3367. height:30px;
  3368. display:flex;
  3369. font-size:14px;
  3370. }
  3371. #u19219 .text {
  3372. position:absolute;
  3373. align-self:center;
  3374. padding:2px 2px 2px 2px;
  3375. box-sizing:border-box;
  3376. width:100%;
  3377. }
  3378. #u19219_text {
  3379. border-width:0px;
  3380. word-wrap:break-word;
  3381. text-transform:none;
  3382. visibility:hidden;
  3383. }
  3384. #u19220_img {
  3385. border-width:0px;
  3386. position:absolute;
  3387. left:0px;
  3388. top:0px;
  3389. width:42px;
  3390. height:30px;
  3391. }
  3392. #u19220 {
  3393. border-width:0px;
  3394. position:absolute;
  3395. left:0px;
  3396. top:156px;
  3397. width:42px;
  3398. height:30px;
  3399. display:flex;
  3400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3401. font-weight:400;
  3402. font-style:normal;
  3403. font-size:14px;
  3404. }
  3405. #u19220 .text {
  3406. position:absolute;
  3407. align-self:center;
  3408. padding:2px 2px 2px 2px;
  3409. box-sizing:border-box;
  3410. width:100%;
  3411. }
  3412. #u19220_text {
  3413. border-width:0px;
  3414. word-wrap:break-word;
  3415. text-transform:none;
  3416. visibility:hidden;
  3417. }
  3418. #u19221_img {
  3419. border-width:0px;
  3420. position:absolute;
  3421. left:0px;
  3422. top:0px;
  3423. width:131px;
  3424. height:30px;
  3425. }
  3426. #u19221 {
  3427. border-width:0px;
  3428. position:absolute;
  3429. left:42px;
  3430. top:156px;
  3431. width:131px;
  3432. height:30px;
  3433. display:flex;
  3434. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3435. font-weight:400;
  3436. font-style:normal;
  3437. font-size:14px;
  3438. }
  3439. #u19221 .text {
  3440. position:absolute;
  3441. align-self:center;
  3442. padding:2px 2px 2px 2px;
  3443. box-sizing:border-box;
  3444. width:100%;
  3445. }
  3446. #u19221_text {
  3447. border-width:0px;
  3448. word-wrap:break-word;
  3449. text-transform:none;
  3450. visibility:hidden;
  3451. }
  3452. #u19222_img {
  3453. border-width:0px;
  3454. position:absolute;
  3455. left:0px;
  3456. top:0px;
  3457. width:132px;
  3458. height:30px;
  3459. }
  3460. #u19222 {
  3461. border-width:0px;
  3462. position:absolute;
  3463. left:173px;
  3464. top:156px;
  3465. width:132px;
  3466. height:30px;
  3467. display:flex;
  3468. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3469. font-weight:400;
  3470. font-style:normal;
  3471. font-size:14px;
  3472. }
  3473. #u19222 .text {
  3474. position:absolute;
  3475. align-self:center;
  3476. padding:2px 2px 2px 2px;
  3477. box-sizing:border-box;
  3478. width:100%;
  3479. }
  3480. #u19222_text {
  3481. border-width:0px;
  3482. word-wrap:break-word;
  3483. text-transform:none;
  3484. visibility:hidden;
  3485. }
  3486. #u19223_img {
  3487. border-width:0px;
  3488. position:absolute;
  3489. left:0px;
  3490. top:0px;
  3491. width:131px;
  3492. height:30px;
  3493. }
  3494. #u19223 {
  3495. border-width:0px;
  3496. position:absolute;
  3497. left:305px;
  3498. top:156px;
  3499. width:131px;
  3500. height:30px;
  3501. display:flex;
  3502. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3503. font-weight:400;
  3504. font-style:normal;
  3505. font-size:14px;
  3506. }
  3507. #u19223 .text {
  3508. position:absolute;
  3509. align-self:center;
  3510. padding:2px 2px 2px 2px;
  3511. box-sizing:border-box;
  3512. width:100%;
  3513. }
  3514. #u19223_text {
  3515. border-width:0px;
  3516. word-wrap:break-word;
  3517. text-transform:none;
  3518. visibility:hidden;
  3519. }
  3520. #u19224_img {
  3521. border-width:0px;
  3522. position:absolute;
  3523. left:0px;
  3524. top:0px;
  3525. width:159px;
  3526. height:30px;
  3527. }
  3528. #u19224 {
  3529. border-width:0px;
  3530. position:absolute;
  3531. left:436px;
  3532. top:156px;
  3533. width:159px;
  3534. height:30px;
  3535. display:flex;
  3536. font-size:14px;
  3537. }
  3538. #u19224 .text {
  3539. position:absolute;
  3540. align-self:center;
  3541. padding:2px 2px 2px 2px;
  3542. box-sizing:border-box;
  3543. width:100%;
  3544. }
  3545. #u19224_text {
  3546. border-width:0px;
  3547. word-wrap:break-word;
  3548. text-transform:none;
  3549. visibility:hidden;
  3550. }
  3551. #u19225_img {
  3552. border-width:0px;
  3553. position:absolute;
  3554. left:0px;
  3555. top:0px;
  3556. width:105px;
  3557. height:30px;
  3558. }
  3559. #u19225 {
  3560. border-width:0px;
  3561. position:absolute;
  3562. left:595px;
  3563. top:156px;
  3564. width:105px;
  3565. height:30px;
  3566. display:flex;
  3567. font-size:14px;
  3568. }
  3569. #u19225 .text {
  3570. position:absolute;
  3571. align-self:center;
  3572. padding:2px 2px 2px 2px;
  3573. box-sizing:border-box;
  3574. width:100%;
  3575. }
  3576. #u19225_text {
  3577. border-width:0px;
  3578. word-wrap:break-word;
  3579. text-transform:none;
  3580. visibility:hidden;
  3581. }
  3582. #u19226_img {
  3583. border-width:0px;
  3584. position:absolute;
  3585. left:0px;
  3586. top:0px;
  3587. width:141px;
  3588. height:30px;
  3589. }
  3590. #u19226 {
  3591. border-width:0px;
  3592. position:absolute;
  3593. left:700px;
  3594. top:156px;
  3595. width:141px;
  3596. height:30px;
  3597. display:flex;
  3598. font-size:14px;
  3599. }
  3600. #u19226 .text {
  3601. position:absolute;
  3602. align-self:center;
  3603. padding:2px 2px 2px 2px;
  3604. box-sizing:border-box;
  3605. width:100%;
  3606. }
  3607. #u19226_text {
  3608. border-width:0px;
  3609. word-wrap:break-word;
  3610. text-transform:none;
  3611. visibility:hidden;
  3612. }
  3613. #u19227_img {
  3614. border-width:0px;
  3615. position:absolute;
  3616. left:0px;
  3617. top:0px;
  3618. width:132px;
  3619. height:30px;
  3620. }
  3621. #u19227 {
  3622. border-width:0px;
  3623. position:absolute;
  3624. left:841px;
  3625. top:156px;
  3626. width:132px;
  3627. height:30px;
  3628. display:flex;
  3629. font-size:14px;
  3630. }
  3631. #u19227 .text {
  3632. position:absolute;
  3633. align-self:center;
  3634. padding:2px 2px 2px 2px;
  3635. box-sizing:border-box;
  3636. width:100%;
  3637. }
  3638. #u19227_text {
  3639. border-width:0px;
  3640. word-wrap:break-word;
  3641. text-transform:none;
  3642. visibility:hidden;
  3643. }
  3644. #u19228_img {
  3645. border-width:0px;
  3646. position:absolute;
  3647. left:0px;
  3648. top:0px;
  3649. width:140px;
  3650. height:30px;
  3651. }
  3652. #u19228 {
  3653. border-width:0px;
  3654. position:absolute;
  3655. left:973px;
  3656. top:156px;
  3657. width:140px;
  3658. height:30px;
  3659. display:flex;
  3660. font-size:14px;
  3661. }
  3662. #u19228 .text {
  3663. position:absolute;
  3664. align-self:center;
  3665. padding:2px 2px 2px 2px;
  3666. box-sizing:border-box;
  3667. width:100%;
  3668. }
  3669. #u19228_text {
  3670. border-width:0px;
  3671. word-wrap:break-word;
  3672. text-transform:none;
  3673. visibility:hidden;
  3674. }
  3675. #u19229_img {
  3676. border-width:0px;
  3677. position:absolute;
  3678. left:0px;
  3679. top:0px;
  3680. width:106px;
  3681. height:30px;
  3682. }
  3683. #u19229 {
  3684. border-width:0px;
  3685. position:absolute;
  3686. left:1113px;
  3687. top:156px;
  3688. width:106px;
  3689. height:30px;
  3690. display:flex;
  3691. font-size:14px;
  3692. }
  3693. #u19229 .text {
  3694. position:absolute;
  3695. align-self:center;
  3696. padding:2px 2px 2px 2px;
  3697. box-sizing:border-box;
  3698. width:100%;
  3699. }
  3700. #u19229_text {
  3701. border-width:0px;
  3702. word-wrap:break-word;
  3703. text-transform:none;
  3704. visibility:hidden;
  3705. }
  3706. #u19230_img {
  3707. border-width:0px;
  3708. position:absolute;
  3709. left:0px;
  3710. top:0px;
  3711. width:42px;
  3712. height:30px;
  3713. }
  3714. #u19230 {
  3715. border-width:0px;
  3716. position:absolute;
  3717. left:0px;
  3718. top:186px;
  3719. width:42px;
  3720. height:30px;
  3721. display:flex;
  3722. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3723. font-weight:400;
  3724. font-style:normal;
  3725. font-size:14px;
  3726. }
  3727. #u19230 .text {
  3728. position:absolute;
  3729. align-self:center;
  3730. padding:2px 2px 2px 2px;
  3731. box-sizing:border-box;
  3732. width:100%;
  3733. }
  3734. #u19230_text {
  3735. border-width:0px;
  3736. word-wrap:break-word;
  3737. text-transform:none;
  3738. visibility:hidden;
  3739. }
  3740. #u19231_img {
  3741. border-width:0px;
  3742. position:absolute;
  3743. left:0px;
  3744. top:0px;
  3745. width:131px;
  3746. height:30px;
  3747. }
  3748. #u19231 {
  3749. border-width:0px;
  3750. position:absolute;
  3751. left:42px;
  3752. top:186px;
  3753. width:131px;
  3754. height:30px;
  3755. display:flex;
  3756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3757. font-weight:400;
  3758. font-style:normal;
  3759. font-size:14px;
  3760. }
  3761. #u19231 .text {
  3762. position:absolute;
  3763. align-self:center;
  3764. padding:2px 2px 2px 2px;
  3765. box-sizing:border-box;
  3766. width:100%;
  3767. }
  3768. #u19231_text {
  3769. border-width:0px;
  3770. word-wrap:break-word;
  3771. text-transform:none;
  3772. visibility:hidden;
  3773. }
  3774. #u19232_img {
  3775. border-width:0px;
  3776. position:absolute;
  3777. left:0px;
  3778. top:0px;
  3779. width:132px;
  3780. height:30px;
  3781. }
  3782. #u19232 {
  3783. border-width:0px;
  3784. position:absolute;
  3785. left:173px;
  3786. top:186px;
  3787. width:132px;
  3788. height:30px;
  3789. display:flex;
  3790. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3791. font-weight:400;
  3792. font-style:normal;
  3793. font-size:14px;
  3794. }
  3795. #u19232 .text {
  3796. position:absolute;
  3797. align-self:center;
  3798. padding:2px 2px 2px 2px;
  3799. box-sizing:border-box;
  3800. width:100%;
  3801. }
  3802. #u19232_text {
  3803. border-width:0px;
  3804. word-wrap:break-word;
  3805. text-transform:none;
  3806. visibility:hidden;
  3807. }
  3808. #u19233_img {
  3809. border-width:0px;
  3810. position:absolute;
  3811. left:0px;
  3812. top:0px;
  3813. width:131px;
  3814. height:30px;
  3815. }
  3816. #u19233 {
  3817. border-width:0px;
  3818. position:absolute;
  3819. left:305px;
  3820. top:186px;
  3821. width:131px;
  3822. height:30px;
  3823. display:flex;
  3824. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3825. font-weight:400;
  3826. font-style:normal;
  3827. font-size:14px;
  3828. }
  3829. #u19233 .text {
  3830. position:absolute;
  3831. align-self:center;
  3832. padding:2px 2px 2px 2px;
  3833. box-sizing:border-box;
  3834. width:100%;
  3835. }
  3836. #u19233_text {
  3837. border-width:0px;
  3838. word-wrap:break-word;
  3839. text-transform:none;
  3840. visibility:hidden;
  3841. }
  3842. #u19234_img {
  3843. border-width:0px;
  3844. position:absolute;
  3845. left:0px;
  3846. top:0px;
  3847. width:159px;
  3848. height:30px;
  3849. }
  3850. #u19234 {
  3851. border-width:0px;
  3852. position:absolute;
  3853. left:436px;
  3854. top:186px;
  3855. width:159px;
  3856. height:30px;
  3857. display:flex;
  3858. font-size:14px;
  3859. }
  3860. #u19234 .text {
  3861. position:absolute;
  3862. align-self:center;
  3863. padding:2px 2px 2px 2px;
  3864. box-sizing:border-box;
  3865. width:100%;
  3866. }
  3867. #u19234_text {
  3868. border-width:0px;
  3869. word-wrap:break-word;
  3870. text-transform:none;
  3871. visibility:hidden;
  3872. }
  3873. #u19235_img {
  3874. border-width:0px;
  3875. position:absolute;
  3876. left:0px;
  3877. top:0px;
  3878. width:105px;
  3879. height:30px;
  3880. }
  3881. #u19235 {
  3882. border-width:0px;
  3883. position:absolute;
  3884. left:595px;
  3885. top:186px;
  3886. width:105px;
  3887. height:30px;
  3888. display:flex;
  3889. font-size:14px;
  3890. }
  3891. #u19235 .text {
  3892. position:absolute;
  3893. align-self:center;
  3894. padding:2px 2px 2px 2px;
  3895. box-sizing:border-box;
  3896. width:100%;
  3897. }
  3898. #u19235_text {
  3899. border-width:0px;
  3900. word-wrap:break-word;
  3901. text-transform:none;
  3902. visibility:hidden;
  3903. }
  3904. #u19236_img {
  3905. border-width:0px;
  3906. position:absolute;
  3907. left:0px;
  3908. top:0px;
  3909. width:141px;
  3910. height:30px;
  3911. }
  3912. #u19236 {
  3913. border-width:0px;
  3914. position:absolute;
  3915. left:700px;
  3916. top:186px;
  3917. width:141px;
  3918. height:30px;
  3919. display:flex;
  3920. font-size:14px;
  3921. }
  3922. #u19236 .text {
  3923. position:absolute;
  3924. align-self:center;
  3925. padding:2px 2px 2px 2px;
  3926. box-sizing:border-box;
  3927. width:100%;
  3928. }
  3929. #u19236_text {
  3930. border-width:0px;
  3931. word-wrap:break-word;
  3932. text-transform:none;
  3933. visibility:hidden;
  3934. }
  3935. #u19237_img {
  3936. border-width:0px;
  3937. position:absolute;
  3938. left:0px;
  3939. top:0px;
  3940. width:132px;
  3941. height:30px;
  3942. }
  3943. #u19237 {
  3944. border-width:0px;
  3945. position:absolute;
  3946. left:841px;
  3947. top:186px;
  3948. width:132px;
  3949. height:30px;
  3950. display:flex;
  3951. font-size:14px;
  3952. }
  3953. #u19237 .text {
  3954. position:absolute;
  3955. align-self:center;
  3956. padding:2px 2px 2px 2px;
  3957. box-sizing:border-box;
  3958. width:100%;
  3959. }
  3960. #u19237_text {
  3961. border-width:0px;
  3962. word-wrap:break-word;
  3963. text-transform:none;
  3964. visibility:hidden;
  3965. }
  3966. #u19238_img {
  3967. border-width:0px;
  3968. position:absolute;
  3969. left:0px;
  3970. top:0px;
  3971. width:140px;
  3972. height:30px;
  3973. }
  3974. #u19238 {
  3975. border-width:0px;
  3976. position:absolute;
  3977. left:973px;
  3978. top:186px;
  3979. width:140px;
  3980. height:30px;
  3981. display:flex;
  3982. font-size:14px;
  3983. }
  3984. #u19238 .text {
  3985. position:absolute;
  3986. align-self:center;
  3987. padding:2px 2px 2px 2px;
  3988. box-sizing:border-box;
  3989. width:100%;
  3990. }
  3991. #u19238_text {
  3992. border-width:0px;
  3993. word-wrap:break-word;
  3994. text-transform:none;
  3995. visibility:hidden;
  3996. }
  3997. #u19239_img {
  3998. border-width:0px;
  3999. position:absolute;
  4000. left:0px;
  4001. top:0px;
  4002. width:106px;
  4003. height:30px;
  4004. }
  4005. #u19239 {
  4006. border-width:0px;
  4007. position:absolute;
  4008. left:1113px;
  4009. top:186px;
  4010. width:106px;
  4011. height:30px;
  4012. display:flex;
  4013. font-size:14px;
  4014. }
  4015. #u19239 .text {
  4016. position:absolute;
  4017. align-self:center;
  4018. padding:2px 2px 2px 2px;
  4019. box-sizing:border-box;
  4020. width:100%;
  4021. }
  4022. #u19239_text {
  4023. border-width:0px;
  4024. word-wrap:break-word;
  4025. text-transform:none;
  4026. visibility:hidden;
  4027. }
  4028. #u19240_img {
  4029. border-width:0px;
  4030. position:absolute;
  4031. left:0px;
  4032. top:0px;
  4033. width:42px;
  4034. height:30px;
  4035. }
  4036. #u19240 {
  4037. border-width:0px;
  4038. position:absolute;
  4039. left:0px;
  4040. top:216px;
  4041. width:42px;
  4042. height:30px;
  4043. display:flex;
  4044. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4045. font-weight:400;
  4046. font-style:normal;
  4047. font-size:14px;
  4048. }
  4049. #u19240 .text {
  4050. position:absolute;
  4051. align-self:center;
  4052. padding:2px 2px 2px 2px;
  4053. box-sizing:border-box;
  4054. width:100%;
  4055. }
  4056. #u19240_text {
  4057. border-width:0px;
  4058. word-wrap:break-word;
  4059. text-transform:none;
  4060. visibility:hidden;
  4061. }
  4062. #u19241_img {
  4063. border-width:0px;
  4064. position:absolute;
  4065. left:0px;
  4066. top:0px;
  4067. width:131px;
  4068. height:30px;
  4069. }
  4070. #u19241 {
  4071. border-width:0px;
  4072. position:absolute;
  4073. left:42px;
  4074. top:216px;
  4075. width:131px;
  4076. height:30px;
  4077. display:flex;
  4078. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4079. font-weight:400;
  4080. font-style:normal;
  4081. font-size:14px;
  4082. }
  4083. #u19241 .text {
  4084. position:absolute;
  4085. align-self:center;
  4086. padding:2px 2px 2px 2px;
  4087. box-sizing:border-box;
  4088. width:100%;
  4089. }
  4090. #u19241_text {
  4091. border-width:0px;
  4092. word-wrap:break-word;
  4093. text-transform:none;
  4094. visibility:hidden;
  4095. }
  4096. #u19242_img {
  4097. border-width:0px;
  4098. position:absolute;
  4099. left:0px;
  4100. top:0px;
  4101. width:132px;
  4102. height:30px;
  4103. }
  4104. #u19242 {
  4105. border-width:0px;
  4106. position:absolute;
  4107. left:173px;
  4108. top:216px;
  4109. width:132px;
  4110. height:30px;
  4111. display:flex;
  4112. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4113. font-weight:400;
  4114. font-style:normal;
  4115. font-size:14px;
  4116. }
  4117. #u19242 .text {
  4118. position:absolute;
  4119. align-self:center;
  4120. padding:2px 2px 2px 2px;
  4121. box-sizing:border-box;
  4122. width:100%;
  4123. }
  4124. #u19242_text {
  4125. border-width:0px;
  4126. word-wrap:break-word;
  4127. text-transform:none;
  4128. visibility:hidden;
  4129. }
  4130. #u19243_img {
  4131. border-width:0px;
  4132. position:absolute;
  4133. left:0px;
  4134. top:0px;
  4135. width:131px;
  4136. height:30px;
  4137. }
  4138. #u19243 {
  4139. border-width:0px;
  4140. position:absolute;
  4141. left:305px;
  4142. top:216px;
  4143. width:131px;
  4144. height:30px;
  4145. display:flex;
  4146. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4147. font-weight:400;
  4148. font-style:normal;
  4149. font-size:14px;
  4150. }
  4151. #u19243 .text {
  4152. position:absolute;
  4153. align-self:center;
  4154. padding:2px 2px 2px 2px;
  4155. box-sizing:border-box;
  4156. width:100%;
  4157. }
  4158. #u19243_text {
  4159. border-width:0px;
  4160. word-wrap:break-word;
  4161. text-transform:none;
  4162. visibility:hidden;
  4163. }
  4164. #u19244_img {
  4165. border-width:0px;
  4166. position:absolute;
  4167. left:0px;
  4168. top:0px;
  4169. width:159px;
  4170. height:30px;
  4171. }
  4172. #u19244 {
  4173. border-width:0px;
  4174. position:absolute;
  4175. left:436px;
  4176. top:216px;
  4177. width:159px;
  4178. height:30px;
  4179. display:flex;
  4180. font-size:14px;
  4181. }
  4182. #u19244 .text {
  4183. position:absolute;
  4184. align-self:center;
  4185. padding:2px 2px 2px 2px;
  4186. box-sizing:border-box;
  4187. width:100%;
  4188. }
  4189. #u19244_text {
  4190. border-width:0px;
  4191. word-wrap:break-word;
  4192. text-transform:none;
  4193. visibility:hidden;
  4194. }
  4195. #u19245_img {
  4196. border-width:0px;
  4197. position:absolute;
  4198. left:0px;
  4199. top:0px;
  4200. width:105px;
  4201. height:30px;
  4202. }
  4203. #u19245 {
  4204. border-width:0px;
  4205. position:absolute;
  4206. left:595px;
  4207. top:216px;
  4208. width:105px;
  4209. height:30px;
  4210. display:flex;
  4211. font-size:14px;
  4212. }
  4213. #u19245 .text {
  4214. position:absolute;
  4215. align-self:center;
  4216. padding:2px 2px 2px 2px;
  4217. box-sizing:border-box;
  4218. width:100%;
  4219. }
  4220. #u19245_text {
  4221. border-width:0px;
  4222. word-wrap:break-word;
  4223. text-transform:none;
  4224. visibility:hidden;
  4225. }
  4226. #u19246_img {
  4227. border-width:0px;
  4228. position:absolute;
  4229. left:0px;
  4230. top:0px;
  4231. width:141px;
  4232. height:30px;
  4233. }
  4234. #u19246 {
  4235. border-width:0px;
  4236. position:absolute;
  4237. left:700px;
  4238. top:216px;
  4239. width:141px;
  4240. height:30px;
  4241. display:flex;
  4242. font-size:14px;
  4243. }
  4244. #u19246 .text {
  4245. position:absolute;
  4246. align-self:center;
  4247. padding:2px 2px 2px 2px;
  4248. box-sizing:border-box;
  4249. width:100%;
  4250. }
  4251. #u19246_text {
  4252. border-width:0px;
  4253. word-wrap:break-word;
  4254. text-transform:none;
  4255. visibility:hidden;
  4256. }
  4257. #u19247_img {
  4258. border-width:0px;
  4259. position:absolute;
  4260. left:0px;
  4261. top:0px;
  4262. width:132px;
  4263. height:30px;
  4264. }
  4265. #u19247 {
  4266. border-width:0px;
  4267. position:absolute;
  4268. left:841px;
  4269. top:216px;
  4270. width:132px;
  4271. height:30px;
  4272. display:flex;
  4273. font-size:14px;
  4274. }
  4275. #u19247 .text {
  4276. position:absolute;
  4277. align-self:center;
  4278. padding:2px 2px 2px 2px;
  4279. box-sizing:border-box;
  4280. width:100%;
  4281. }
  4282. #u19247_text {
  4283. border-width:0px;
  4284. word-wrap:break-word;
  4285. text-transform:none;
  4286. visibility:hidden;
  4287. }
  4288. #u19248_img {
  4289. border-width:0px;
  4290. position:absolute;
  4291. left:0px;
  4292. top:0px;
  4293. width:140px;
  4294. height:30px;
  4295. }
  4296. #u19248 {
  4297. border-width:0px;
  4298. position:absolute;
  4299. left:973px;
  4300. top:216px;
  4301. width:140px;
  4302. height:30px;
  4303. display:flex;
  4304. font-size:14px;
  4305. }
  4306. #u19248 .text {
  4307. position:absolute;
  4308. align-self:center;
  4309. padding:2px 2px 2px 2px;
  4310. box-sizing:border-box;
  4311. width:100%;
  4312. }
  4313. #u19248_text {
  4314. border-width:0px;
  4315. word-wrap:break-word;
  4316. text-transform:none;
  4317. visibility:hidden;
  4318. }
  4319. #u19249_img {
  4320. border-width:0px;
  4321. position:absolute;
  4322. left:0px;
  4323. top:0px;
  4324. width:106px;
  4325. height:30px;
  4326. }
  4327. #u19249 {
  4328. border-width:0px;
  4329. position:absolute;
  4330. left:1113px;
  4331. top:216px;
  4332. width:106px;
  4333. height:30px;
  4334. display:flex;
  4335. font-size:14px;
  4336. }
  4337. #u19249 .text {
  4338. position:absolute;
  4339. align-self:center;
  4340. padding:2px 2px 2px 2px;
  4341. box-sizing:border-box;
  4342. width:100%;
  4343. }
  4344. #u19249_text {
  4345. border-width:0px;
  4346. word-wrap:break-word;
  4347. text-transform:none;
  4348. visibility:hidden;
  4349. }
  4350. #u19250_img {
  4351. border-width:0px;
  4352. position:absolute;
  4353. left:0px;
  4354. top:0px;
  4355. width:42px;
  4356. height:30px;
  4357. }
  4358. #u19250 {
  4359. border-width:0px;
  4360. position:absolute;
  4361. left:0px;
  4362. top:246px;
  4363. width:42px;
  4364. height:30px;
  4365. display:flex;
  4366. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4367. font-weight:400;
  4368. font-style:normal;
  4369. font-size:14px;
  4370. }
  4371. #u19250 .text {
  4372. position:absolute;
  4373. align-self:center;
  4374. padding:2px 2px 2px 2px;
  4375. box-sizing:border-box;
  4376. width:100%;
  4377. }
  4378. #u19250_text {
  4379. border-width:0px;
  4380. word-wrap:break-word;
  4381. text-transform:none;
  4382. visibility:hidden;
  4383. }
  4384. #u19251_img {
  4385. border-width:0px;
  4386. position:absolute;
  4387. left:0px;
  4388. top:0px;
  4389. width:131px;
  4390. height:30px;
  4391. }
  4392. #u19251 {
  4393. border-width:0px;
  4394. position:absolute;
  4395. left:42px;
  4396. top:246px;
  4397. width:131px;
  4398. height:30px;
  4399. display:flex;
  4400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4401. font-weight:400;
  4402. font-style:normal;
  4403. font-size:14px;
  4404. }
  4405. #u19251 .text {
  4406. position:absolute;
  4407. align-self:center;
  4408. padding:2px 2px 2px 2px;
  4409. box-sizing:border-box;
  4410. width:100%;
  4411. }
  4412. #u19251_text {
  4413. border-width:0px;
  4414. word-wrap:break-word;
  4415. text-transform:none;
  4416. visibility:hidden;
  4417. }
  4418. #u19252_img {
  4419. border-width:0px;
  4420. position:absolute;
  4421. left:0px;
  4422. top:0px;
  4423. width:132px;
  4424. height:30px;
  4425. }
  4426. #u19252 {
  4427. border-width:0px;
  4428. position:absolute;
  4429. left:173px;
  4430. top:246px;
  4431. width:132px;
  4432. height:30px;
  4433. display:flex;
  4434. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4435. font-weight:400;
  4436. font-style:normal;
  4437. font-size:14px;
  4438. }
  4439. #u19252 .text {
  4440. position:absolute;
  4441. align-self:center;
  4442. padding:2px 2px 2px 2px;
  4443. box-sizing:border-box;
  4444. width:100%;
  4445. }
  4446. #u19252_text {
  4447. border-width:0px;
  4448. word-wrap:break-word;
  4449. text-transform:none;
  4450. visibility:hidden;
  4451. }
  4452. #u19253_img {
  4453. border-width:0px;
  4454. position:absolute;
  4455. left:0px;
  4456. top:0px;
  4457. width:131px;
  4458. height:30px;
  4459. }
  4460. #u19253 {
  4461. border-width:0px;
  4462. position:absolute;
  4463. left:305px;
  4464. top:246px;
  4465. width:131px;
  4466. height:30px;
  4467. display:flex;
  4468. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4469. font-weight:400;
  4470. font-style:normal;
  4471. font-size:14px;
  4472. }
  4473. #u19253 .text {
  4474. position:absolute;
  4475. align-self:center;
  4476. padding:2px 2px 2px 2px;
  4477. box-sizing:border-box;
  4478. width:100%;
  4479. }
  4480. #u19253_text {
  4481. border-width:0px;
  4482. word-wrap:break-word;
  4483. text-transform:none;
  4484. visibility:hidden;
  4485. }
  4486. #u19254_img {
  4487. border-width:0px;
  4488. position:absolute;
  4489. left:0px;
  4490. top:0px;
  4491. width:159px;
  4492. height:30px;
  4493. }
  4494. #u19254 {
  4495. border-width:0px;
  4496. position:absolute;
  4497. left:436px;
  4498. top:246px;
  4499. width:159px;
  4500. height:30px;
  4501. display:flex;
  4502. font-size:14px;
  4503. }
  4504. #u19254 .text {
  4505. position:absolute;
  4506. align-self:center;
  4507. padding:2px 2px 2px 2px;
  4508. box-sizing:border-box;
  4509. width:100%;
  4510. }
  4511. #u19254_text {
  4512. border-width:0px;
  4513. word-wrap:break-word;
  4514. text-transform:none;
  4515. visibility:hidden;
  4516. }
  4517. #u19255_img {
  4518. border-width:0px;
  4519. position:absolute;
  4520. left:0px;
  4521. top:0px;
  4522. width:105px;
  4523. height:30px;
  4524. }
  4525. #u19255 {
  4526. border-width:0px;
  4527. position:absolute;
  4528. left:595px;
  4529. top:246px;
  4530. width:105px;
  4531. height:30px;
  4532. display:flex;
  4533. font-size:14px;
  4534. }
  4535. #u19255 .text {
  4536. position:absolute;
  4537. align-self:center;
  4538. padding:2px 2px 2px 2px;
  4539. box-sizing:border-box;
  4540. width:100%;
  4541. }
  4542. #u19255_text {
  4543. border-width:0px;
  4544. word-wrap:break-word;
  4545. text-transform:none;
  4546. visibility:hidden;
  4547. }
  4548. #u19256_img {
  4549. border-width:0px;
  4550. position:absolute;
  4551. left:0px;
  4552. top:0px;
  4553. width:141px;
  4554. height:30px;
  4555. }
  4556. #u19256 {
  4557. border-width:0px;
  4558. position:absolute;
  4559. left:700px;
  4560. top:246px;
  4561. width:141px;
  4562. height:30px;
  4563. display:flex;
  4564. font-size:14px;
  4565. }
  4566. #u19256 .text {
  4567. position:absolute;
  4568. align-self:center;
  4569. padding:2px 2px 2px 2px;
  4570. box-sizing:border-box;
  4571. width:100%;
  4572. }
  4573. #u19256_text {
  4574. border-width:0px;
  4575. word-wrap:break-word;
  4576. text-transform:none;
  4577. visibility:hidden;
  4578. }
  4579. #u19257_img {
  4580. border-width:0px;
  4581. position:absolute;
  4582. left:0px;
  4583. top:0px;
  4584. width:132px;
  4585. height:30px;
  4586. }
  4587. #u19257 {
  4588. border-width:0px;
  4589. position:absolute;
  4590. left:841px;
  4591. top:246px;
  4592. width:132px;
  4593. height:30px;
  4594. display:flex;
  4595. font-size:14px;
  4596. }
  4597. #u19257 .text {
  4598. position:absolute;
  4599. align-self:center;
  4600. padding:2px 2px 2px 2px;
  4601. box-sizing:border-box;
  4602. width:100%;
  4603. }
  4604. #u19257_text {
  4605. border-width:0px;
  4606. word-wrap:break-word;
  4607. text-transform:none;
  4608. visibility:hidden;
  4609. }
  4610. #u19258_img {
  4611. border-width:0px;
  4612. position:absolute;
  4613. left:0px;
  4614. top:0px;
  4615. width:140px;
  4616. height:30px;
  4617. }
  4618. #u19258 {
  4619. border-width:0px;
  4620. position:absolute;
  4621. left:973px;
  4622. top:246px;
  4623. width:140px;
  4624. height:30px;
  4625. display:flex;
  4626. font-size:14px;
  4627. }
  4628. #u19258 .text {
  4629. position:absolute;
  4630. align-self:center;
  4631. padding:2px 2px 2px 2px;
  4632. box-sizing:border-box;
  4633. width:100%;
  4634. }
  4635. #u19258_text {
  4636. border-width:0px;
  4637. word-wrap:break-word;
  4638. text-transform:none;
  4639. visibility:hidden;
  4640. }
  4641. #u19259_img {
  4642. border-width:0px;
  4643. position:absolute;
  4644. left:0px;
  4645. top:0px;
  4646. width:106px;
  4647. height:30px;
  4648. }
  4649. #u19259 {
  4650. border-width:0px;
  4651. position:absolute;
  4652. left:1113px;
  4653. top:246px;
  4654. width:106px;
  4655. height:30px;
  4656. display:flex;
  4657. font-size:14px;
  4658. }
  4659. #u19259 .text {
  4660. position:absolute;
  4661. align-self:center;
  4662. padding:2px 2px 2px 2px;
  4663. box-sizing:border-box;
  4664. width:100%;
  4665. }
  4666. #u19259_text {
  4667. border-width:0px;
  4668. word-wrap:break-word;
  4669. text-transform:none;
  4670. visibility:hidden;
  4671. }
  4672. #u19260_img {
  4673. border-width:0px;
  4674. position:absolute;
  4675. left:0px;
  4676. top:0px;
  4677. width:42px;
  4678. height:30px;
  4679. }
  4680. #u19260 {
  4681. border-width:0px;
  4682. position:absolute;
  4683. left:0px;
  4684. top:276px;
  4685. width:42px;
  4686. height:30px;
  4687. display:flex;
  4688. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4689. font-weight:400;
  4690. font-style:normal;
  4691. font-size:14px;
  4692. }
  4693. #u19260 .text {
  4694. position:absolute;
  4695. align-self:center;
  4696. padding:2px 2px 2px 2px;
  4697. box-sizing:border-box;
  4698. width:100%;
  4699. }
  4700. #u19260_text {
  4701. border-width:0px;
  4702. word-wrap:break-word;
  4703. text-transform:none;
  4704. visibility:hidden;
  4705. }
  4706. #u19261_img {
  4707. border-width:0px;
  4708. position:absolute;
  4709. left:0px;
  4710. top:0px;
  4711. width:131px;
  4712. height:30px;
  4713. }
  4714. #u19261 {
  4715. border-width:0px;
  4716. position:absolute;
  4717. left:42px;
  4718. top:276px;
  4719. width:131px;
  4720. height:30px;
  4721. display:flex;
  4722. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4723. font-weight:400;
  4724. font-style:normal;
  4725. font-size:14px;
  4726. }
  4727. #u19261 .text {
  4728. position:absolute;
  4729. align-self:center;
  4730. padding:2px 2px 2px 2px;
  4731. box-sizing:border-box;
  4732. width:100%;
  4733. }
  4734. #u19261_text {
  4735. border-width:0px;
  4736. word-wrap:break-word;
  4737. text-transform:none;
  4738. visibility:hidden;
  4739. }
  4740. #u19262_img {
  4741. border-width:0px;
  4742. position:absolute;
  4743. left:0px;
  4744. top:0px;
  4745. width:132px;
  4746. height:30px;
  4747. }
  4748. #u19262 {
  4749. border-width:0px;
  4750. position:absolute;
  4751. left:173px;
  4752. top:276px;
  4753. width:132px;
  4754. height:30px;
  4755. display:flex;
  4756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4757. font-weight:400;
  4758. font-style:normal;
  4759. font-size:14px;
  4760. }
  4761. #u19262 .text {
  4762. position:absolute;
  4763. align-self:center;
  4764. padding:2px 2px 2px 2px;
  4765. box-sizing:border-box;
  4766. width:100%;
  4767. }
  4768. #u19262_text {
  4769. border-width:0px;
  4770. word-wrap:break-word;
  4771. text-transform:none;
  4772. visibility:hidden;
  4773. }
  4774. #u19263_img {
  4775. border-width:0px;
  4776. position:absolute;
  4777. left:0px;
  4778. top:0px;
  4779. width:131px;
  4780. height:30px;
  4781. }
  4782. #u19263 {
  4783. border-width:0px;
  4784. position:absolute;
  4785. left:305px;
  4786. top:276px;
  4787. width:131px;
  4788. height:30px;
  4789. display:flex;
  4790. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4791. font-weight:400;
  4792. font-style:normal;
  4793. font-size:14px;
  4794. }
  4795. #u19263 .text {
  4796. position:absolute;
  4797. align-self:center;
  4798. padding:2px 2px 2px 2px;
  4799. box-sizing:border-box;
  4800. width:100%;
  4801. }
  4802. #u19263_text {
  4803. border-width:0px;
  4804. word-wrap:break-word;
  4805. text-transform:none;
  4806. visibility:hidden;
  4807. }
  4808. #u19264_img {
  4809. border-width:0px;
  4810. position:absolute;
  4811. left:0px;
  4812. top:0px;
  4813. width:159px;
  4814. height:30px;
  4815. }
  4816. #u19264 {
  4817. border-width:0px;
  4818. position:absolute;
  4819. left:436px;
  4820. top:276px;
  4821. width:159px;
  4822. height:30px;
  4823. display:flex;
  4824. font-size:14px;
  4825. }
  4826. #u19264 .text {
  4827. position:absolute;
  4828. align-self:center;
  4829. padding:2px 2px 2px 2px;
  4830. box-sizing:border-box;
  4831. width:100%;
  4832. }
  4833. #u19264_text {
  4834. border-width:0px;
  4835. word-wrap:break-word;
  4836. text-transform:none;
  4837. visibility:hidden;
  4838. }
  4839. #u19265_img {
  4840. border-width:0px;
  4841. position:absolute;
  4842. left:0px;
  4843. top:0px;
  4844. width:105px;
  4845. height:30px;
  4846. }
  4847. #u19265 {
  4848. border-width:0px;
  4849. position:absolute;
  4850. left:595px;
  4851. top:276px;
  4852. width:105px;
  4853. height:30px;
  4854. display:flex;
  4855. font-size:14px;
  4856. }
  4857. #u19265 .text {
  4858. position:absolute;
  4859. align-self:center;
  4860. padding:2px 2px 2px 2px;
  4861. box-sizing:border-box;
  4862. width:100%;
  4863. }
  4864. #u19265_text {
  4865. border-width:0px;
  4866. word-wrap:break-word;
  4867. text-transform:none;
  4868. visibility:hidden;
  4869. }
  4870. #u19266_img {
  4871. border-width:0px;
  4872. position:absolute;
  4873. left:0px;
  4874. top:0px;
  4875. width:141px;
  4876. height:30px;
  4877. }
  4878. #u19266 {
  4879. border-width:0px;
  4880. position:absolute;
  4881. left:700px;
  4882. top:276px;
  4883. width:141px;
  4884. height:30px;
  4885. display:flex;
  4886. font-size:14px;
  4887. }
  4888. #u19266 .text {
  4889. position:absolute;
  4890. align-self:center;
  4891. padding:2px 2px 2px 2px;
  4892. box-sizing:border-box;
  4893. width:100%;
  4894. }
  4895. #u19266_text {
  4896. border-width:0px;
  4897. word-wrap:break-word;
  4898. text-transform:none;
  4899. visibility:hidden;
  4900. }
  4901. #u19267_img {
  4902. border-width:0px;
  4903. position:absolute;
  4904. left:0px;
  4905. top:0px;
  4906. width:132px;
  4907. height:30px;
  4908. }
  4909. #u19267 {
  4910. border-width:0px;
  4911. position:absolute;
  4912. left:841px;
  4913. top:276px;
  4914. width:132px;
  4915. height:30px;
  4916. display:flex;
  4917. font-size:14px;
  4918. }
  4919. #u19267 .text {
  4920. position:absolute;
  4921. align-self:center;
  4922. padding:2px 2px 2px 2px;
  4923. box-sizing:border-box;
  4924. width:100%;
  4925. }
  4926. #u19267_text {
  4927. border-width:0px;
  4928. word-wrap:break-word;
  4929. text-transform:none;
  4930. visibility:hidden;
  4931. }
  4932. #u19268_img {
  4933. border-width:0px;
  4934. position:absolute;
  4935. left:0px;
  4936. top:0px;
  4937. width:140px;
  4938. height:30px;
  4939. }
  4940. #u19268 {
  4941. border-width:0px;
  4942. position:absolute;
  4943. left:973px;
  4944. top:276px;
  4945. width:140px;
  4946. height:30px;
  4947. display:flex;
  4948. font-size:14px;
  4949. }
  4950. #u19268 .text {
  4951. position:absolute;
  4952. align-self:center;
  4953. padding:2px 2px 2px 2px;
  4954. box-sizing:border-box;
  4955. width:100%;
  4956. }
  4957. #u19268_text {
  4958. border-width:0px;
  4959. word-wrap:break-word;
  4960. text-transform:none;
  4961. visibility:hidden;
  4962. }
  4963. #u19269_img {
  4964. border-width:0px;
  4965. position:absolute;
  4966. left:0px;
  4967. top:0px;
  4968. width:106px;
  4969. height:30px;
  4970. }
  4971. #u19269 {
  4972. border-width:0px;
  4973. position:absolute;
  4974. left:1113px;
  4975. top:276px;
  4976. width:106px;
  4977. height:30px;
  4978. display:flex;
  4979. font-size:14px;
  4980. }
  4981. #u19269 .text {
  4982. position:absolute;
  4983. align-self:center;
  4984. padding:2px 2px 2px 2px;
  4985. box-sizing:border-box;
  4986. width:100%;
  4987. }
  4988. #u19269_text {
  4989. border-width:0px;
  4990. word-wrap:break-word;
  4991. text-transform:none;
  4992. visibility:hidden;
  4993. }
  4994. #u19270_img {
  4995. border-width:0px;
  4996. position:absolute;
  4997. left:0px;
  4998. top:0px;
  4999. width:42px;
  5000. height:30px;
  5001. }
  5002. #u19270 {
  5003. border-width:0px;
  5004. position:absolute;
  5005. left:0px;
  5006. top:306px;
  5007. width:42px;
  5008. height:30px;
  5009. display:flex;
  5010. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5011. font-weight:400;
  5012. font-style:normal;
  5013. font-size:14px;
  5014. }
  5015. #u19270 .text {
  5016. position:absolute;
  5017. align-self:center;
  5018. padding:2px 2px 2px 2px;
  5019. box-sizing:border-box;
  5020. width:100%;
  5021. }
  5022. #u19270_text {
  5023. border-width:0px;
  5024. word-wrap:break-word;
  5025. text-transform:none;
  5026. visibility:hidden;
  5027. }
  5028. #u19271_img {
  5029. border-width:0px;
  5030. position:absolute;
  5031. left:0px;
  5032. top:0px;
  5033. width:131px;
  5034. height:30px;
  5035. }
  5036. #u19271 {
  5037. border-width:0px;
  5038. position:absolute;
  5039. left:42px;
  5040. top:306px;
  5041. width:131px;
  5042. height:30px;
  5043. display:flex;
  5044. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5045. font-weight:400;
  5046. font-style:normal;
  5047. font-size:14px;
  5048. }
  5049. #u19271 .text {
  5050. position:absolute;
  5051. align-self:center;
  5052. padding:2px 2px 2px 2px;
  5053. box-sizing:border-box;
  5054. width:100%;
  5055. }
  5056. #u19271_text {
  5057. border-width:0px;
  5058. word-wrap:break-word;
  5059. text-transform:none;
  5060. visibility:hidden;
  5061. }
  5062. #u19272_img {
  5063. border-width:0px;
  5064. position:absolute;
  5065. left:0px;
  5066. top:0px;
  5067. width:132px;
  5068. height:30px;
  5069. }
  5070. #u19272 {
  5071. border-width:0px;
  5072. position:absolute;
  5073. left:173px;
  5074. top:306px;
  5075. width:132px;
  5076. height:30px;
  5077. display:flex;
  5078. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5079. font-weight:400;
  5080. font-style:normal;
  5081. font-size:14px;
  5082. }
  5083. #u19272 .text {
  5084. position:absolute;
  5085. align-self:center;
  5086. padding:2px 2px 2px 2px;
  5087. box-sizing:border-box;
  5088. width:100%;
  5089. }
  5090. #u19272_text {
  5091. border-width:0px;
  5092. word-wrap:break-word;
  5093. text-transform:none;
  5094. visibility:hidden;
  5095. }
  5096. #u19273_img {
  5097. border-width:0px;
  5098. position:absolute;
  5099. left:0px;
  5100. top:0px;
  5101. width:131px;
  5102. height:30px;
  5103. }
  5104. #u19273 {
  5105. border-width:0px;
  5106. position:absolute;
  5107. left:305px;
  5108. top:306px;
  5109. width:131px;
  5110. height:30px;
  5111. display:flex;
  5112. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5113. font-weight:400;
  5114. font-style:normal;
  5115. font-size:14px;
  5116. }
  5117. #u19273 .text {
  5118. position:absolute;
  5119. align-self:center;
  5120. padding:2px 2px 2px 2px;
  5121. box-sizing:border-box;
  5122. width:100%;
  5123. }
  5124. #u19273_text {
  5125. border-width:0px;
  5126. word-wrap:break-word;
  5127. text-transform:none;
  5128. visibility:hidden;
  5129. }
  5130. #u19274_img {
  5131. border-width:0px;
  5132. position:absolute;
  5133. left:0px;
  5134. top:0px;
  5135. width:159px;
  5136. height:30px;
  5137. }
  5138. #u19274 {
  5139. border-width:0px;
  5140. position:absolute;
  5141. left:436px;
  5142. top:306px;
  5143. width:159px;
  5144. height:30px;
  5145. display:flex;
  5146. font-size:14px;
  5147. }
  5148. #u19274 .text {
  5149. position:absolute;
  5150. align-self:center;
  5151. padding:2px 2px 2px 2px;
  5152. box-sizing:border-box;
  5153. width:100%;
  5154. }
  5155. #u19274_text {
  5156. border-width:0px;
  5157. word-wrap:break-word;
  5158. text-transform:none;
  5159. visibility:hidden;
  5160. }
  5161. #u19275_img {
  5162. border-width:0px;
  5163. position:absolute;
  5164. left:0px;
  5165. top:0px;
  5166. width:105px;
  5167. height:30px;
  5168. }
  5169. #u19275 {
  5170. border-width:0px;
  5171. position:absolute;
  5172. left:595px;
  5173. top:306px;
  5174. width:105px;
  5175. height:30px;
  5176. display:flex;
  5177. font-size:14px;
  5178. }
  5179. #u19275 .text {
  5180. position:absolute;
  5181. align-self:center;
  5182. padding:2px 2px 2px 2px;
  5183. box-sizing:border-box;
  5184. width:100%;
  5185. }
  5186. #u19275_text {
  5187. border-width:0px;
  5188. word-wrap:break-word;
  5189. text-transform:none;
  5190. visibility:hidden;
  5191. }
  5192. #u19276_img {
  5193. border-width:0px;
  5194. position:absolute;
  5195. left:0px;
  5196. top:0px;
  5197. width:141px;
  5198. height:30px;
  5199. }
  5200. #u19276 {
  5201. border-width:0px;
  5202. position:absolute;
  5203. left:700px;
  5204. top:306px;
  5205. width:141px;
  5206. height:30px;
  5207. display:flex;
  5208. font-size:14px;
  5209. }
  5210. #u19276 .text {
  5211. position:absolute;
  5212. align-self:center;
  5213. padding:2px 2px 2px 2px;
  5214. box-sizing:border-box;
  5215. width:100%;
  5216. }
  5217. #u19276_text {
  5218. border-width:0px;
  5219. word-wrap:break-word;
  5220. text-transform:none;
  5221. visibility:hidden;
  5222. }
  5223. #u19277_img {
  5224. border-width:0px;
  5225. position:absolute;
  5226. left:0px;
  5227. top:0px;
  5228. width:132px;
  5229. height:30px;
  5230. }
  5231. #u19277 {
  5232. border-width:0px;
  5233. position:absolute;
  5234. left:841px;
  5235. top:306px;
  5236. width:132px;
  5237. height:30px;
  5238. display:flex;
  5239. font-size:14px;
  5240. }
  5241. #u19277 .text {
  5242. position:absolute;
  5243. align-self:center;
  5244. padding:2px 2px 2px 2px;
  5245. box-sizing:border-box;
  5246. width:100%;
  5247. }
  5248. #u19277_text {
  5249. border-width:0px;
  5250. word-wrap:break-word;
  5251. text-transform:none;
  5252. visibility:hidden;
  5253. }
  5254. #u19278_img {
  5255. border-width:0px;
  5256. position:absolute;
  5257. left:0px;
  5258. top:0px;
  5259. width:140px;
  5260. height:30px;
  5261. }
  5262. #u19278 {
  5263. border-width:0px;
  5264. position:absolute;
  5265. left:973px;
  5266. top:306px;
  5267. width:140px;
  5268. height:30px;
  5269. display:flex;
  5270. font-size:14px;
  5271. }
  5272. #u19278 .text {
  5273. position:absolute;
  5274. align-self:center;
  5275. padding:2px 2px 2px 2px;
  5276. box-sizing:border-box;
  5277. width:100%;
  5278. }
  5279. #u19278_text {
  5280. border-width:0px;
  5281. word-wrap:break-word;
  5282. text-transform:none;
  5283. visibility:hidden;
  5284. }
  5285. #u19279_img {
  5286. border-width:0px;
  5287. position:absolute;
  5288. left:0px;
  5289. top:0px;
  5290. width:106px;
  5291. height:30px;
  5292. }
  5293. #u19279 {
  5294. border-width:0px;
  5295. position:absolute;
  5296. left:1113px;
  5297. top:306px;
  5298. width:106px;
  5299. height:30px;
  5300. display:flex;
  5301. font-size:14px;
  5302. }
  5303. #u19279 .text {
  5304. position:absolute;
  5305. align-self:center;
  5306. padding:2px 2px 2px 2px;
  5307. box-sizing:border-box;
  5308. width:100%;
  5309. }
  5310. #u19279_text {
  5311. border-width:0px;
  5312. word-wrap:break-word;
  5313. text-transform:none;
  5314. visibility:hidden;
  5315. }
  5316. #u19280_img {
  5317. border-width:0px;
  5318. position:absolute;
  5319. left:0px;
  5320. top:0px;
  5321. width:42px;
  5322. height:30px;
  5323. }
  5324. #u19280 {
  5325. border-width:0px;
  5326. position:absolute;
  5327. left:0px;
  5328. top:336px;
  5329. width:42px;
  5330. height:30px;
  5331. display:flex;
  5332. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5333. font-weight:400;
  5334. font-style:normal;
  5335. font-size:14px;
  5336. }
  5337. #u19280 .text {
  5338. position:absolute;
  5339. align-self:center;
  5340. padding:2px 2px 2px 2px;
  5341. box-sizing:border-box;
  5342. width:100%;
  5343. }
  5344. #u19280_text {
  5345. border-width:0px;
  5346. word-wrap:break-word;
  5347. text-transform:none;
  5348. visibility:hidden;
  5349. }
  5350. #u19281_img {
  5351. border-width:0px;
  5352. position:absolute;
  5353. left:0px;
  5354. top:0px;
  5355. width:131px;
  5356. height:30px;
  5357. }
  5358. #u19281 {
  5359. border-width:0px;
  5360. position:absolute;
  5361. left:42px;
  5362. top:336px;
  5363. width:131px;
  5364. height:30px;
  5365. display:flex;
  5366. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5367. font-weight:400;
  5368. font-style:normal;
  5369. font-size:14px;
  5370. }
  5371. #u19281 .text {
  5372. position:absolute;
  5373. align-self:center;
  5374. padding:2px 2px 2px 2px;
  5375. box-sizing:border-box;
  5376. width:100%;
  5377. }
  5378. #u19281_text {
  5379. border-width:0px;
  5380. word-wrap:break-word;
  5381. text-transform:none;
  5382. visibility:hidden;
  5383. }
  5384. #u19282_img {
  5385. border-width:0px;
  5386. position:absolute;
  5387. left:0px;
  5388. top:0px;
  5389. width:132px;
  5390. height:30px;
  5391. }
  5392. #u19282 {
  5393. border-width:0px;
  5394. position:absolute;
  5395. left:173px;
  5396. top:336px;
  5397. width:132px;
  5398. height:30px;
  5399. display:flex;
  5400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5401. font-weight:400;
  5402. font-style:normal;
  5403. font-size:14px;
  5404. }
  5405. #u19282 .text {
  5406. position:absolute;
  5407. align-self:center;
  5408. padding:2px 2px 2px 2px;
  5409. box-sizing:border-box;
  5410. width:100%;
  5411. }
  5412. #u19282_text {
  5413. border-width:0px;
  5414. word-wrap:break-word;
  5415. text-transform:none;
  5416. visibility:hidden;
  5417. }
  5418. #u19283_img {
  5419. border-width:0px;
  5420. position:absolute;
  5421. left:0px;
  5422. top:0px;
  5423. width:131px;
  5424. height:30px;
  5425. }
  5426. #u19283 {
  5427. border-width:0px;
  5428. position:absolute;
  5429. left:305px;
  5430. top:336px;
  5431. width:131px;
  5432. height:30px;
  5433. display:flex;
  5434. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5435. font-weight:400;
  5436. font-style:normal;
  5437. font-size:14px;
  5438. }
  5439. #u19283 .text {
  5440. position:absolute;
  5441. align-self:center;
  5442. padding:2px 2px 2px 2px;
  5443. box-sizing:border-box;
  5444. width:100%;
  5445. }
  5446. #u19283_text {
  5447. border-width:0px;
  5448. word-wrap:break-word;
  5449. text-transform:none;
  5450. visibility:hidden;
  5451. }
  5452. #u19284_img {
  5453. border-width:0px;
  5454. position:absolute;
  5455. left:0px;
  5456. top:0px;
  5457. width:159px;
  5458. height:30px;
  5459. }
  5460. #u19284 {
  5461. border-width:0px;
  5462. position:absolute;
  5463. left:436px;
  5464. top:336px;
  5465. width:159px;
  5466. height:30px;
  5467. display:flex;
  5468. font-size:14px;
  5469. }
  5470. #u19284 .text {
  5471. position:absolute;
  5472. align-self:center;
  5473. padding:2px 2px 2px 2px;
  5474. box-sizing:border-box;
  5475. width:100%;
  5476. }
  5477. #u19284_text {
  5478. border-width:0px;
  5479. word-wrap:break-word;
  5480. text-transform:none;
  5481. visibility:hidden;
  5482. }
  5483. #u19285_img {
  5484. border-width:0px;
  5485. position:absolute;
  5486. left:0px;
  5487. top:0px;
  5488. width:105px;
  5489. height:30px;
  5490. }
  5491. #u19285 {
  5492. border-width:0px;
  5493. position:absolute;
  5494. left:595px;
  5495. top:336px;
  5496. width:105px;
  5497. height:30px;
  5498. display:flex;
  5499. font-size:14px;
  5500. }
  5501. #u19285 .text {
  5502. position:absolute;
  5503. align-self:center;
  5504. padding:2px 2px 2px 2px;
  5505. box-sizing:border-box;
  5506. width:100%;
  5507. }
  5508. #u19285_text {
  5509. border-width:0px;
  5510. word-wrap:break-word;
  5511. text-transform:none;
  5512. visibility:hidden;
  5513. }
  5514. #u19286_img {
  5515. border-width:0px;
  5516. position:absolute;
  5517. left:0px;
  5518. top:0px;
  5519. width:141px;
  5520. height:30px;
  5521. }
  5522. #u19286 {
  5523. border-width:0px;
  5524. position:absolute;
  5525. left:700px;
  5526. top:336px;
  5527. width:141px;
  5528. height:30px;
  5529. display:flex;
  5530. font-size:14px;
  5531. }
  5532. #u19286 .text {
  5533. position:absolute;
  5534. align-self:center;
  5535. padding:2px 2px 2px 2px;
  5536. box-sizing:border-box;
  5537. width:100%;
  5538. }
  5539. #u19286_text {
  5540. border-width:0px;
  5541. word-wrap:break-word;
  5542. text-transform:none;
  5543. visibility:hidden;
  5544. }
  5545. #u19287_img {
  5546. border-width:0px;
  5547. position:absolute;
  5548. left:0px;
  5549. top:0px;
  5550. width:132px;
  5551. height:30px;
  5552. }
  5553. #u19287 {
  5554. border-width:0px;
  5555. position:absolute;
  5556. left:841px;
  5557. top:336px;
  5558. width:132px;
  5559. height:30px;
  5560. display:flex;
  5561. font-size:14px;
  5562. }
  5563. #u19287 .text {
  5564. position:absolute;
  5565. align-self:center;
  5566. padding:2px 2px 2px 2px;
  5567. box-sizing:border-box;
  5568. width:100%;
  5569. }
  5570. #u19287_text {
  5571. border-width:0px;
  5572. word-wrap:break-word;
  5573. text-transform:none;
  5574. visibility:hidden;
  5575. }
  5576. #u19288_img {
  5577. border-width:0px;
  5578. position:absolute;
  5579. left:0px;
  5580. top:0px;
  5581. width:140px;
  5582. height:30px;
  5583. }
  5584. #u19288 {
  5585. border-width:0px;
  5586. position:absolute;
  5587. left:973px;
  5588. top:336px;
  5589. width:140px;
  5590. height:30px;
  5591. display:flex;
  5592. font-size:14px;
  5593. }
  5594. #u19288 .text {
  5595. position:absolute;
  5596. align-self:center;
  5597. padding:2px 2px 2px 2px;
  5598. box-sizing:border-box;
  5599. width:100%;
  5600. }
  5601. #u19288_text {
  5602. border-width:0px;
  5603. word-wrap:break-word;
  5604. text-transform:none;
  5605. visibility:hidden;
  5606. }
  5607. #u19289_img {
  5608. border-width:0px;
  5609. position:absolute;
  5610. left:0px;
  5611. top:0px;
  5612. width:106px;
  5613. height:30px;
  5614. }
  5615. #u19289 {
  5616. border-width:0px;
  5617. position:absolute;
  5618. left:1113px;
  5619. top:336px;
  5620. width:106px;
  5621. height:30px;
  5622. display:flex;
  5623. font-size:14px;
  5624. }
  5625. #u19289 .text {
  5626. position:absolute;
  5627. align-self:center;
  5628. padding:2px 2px 2px 2px;
  5629. box-sizing:border-box;
  5630. width:100%;
  5631. }
  5632. #u19289_text {
  5633. border-width:0px;
  5634. word-wrap:break-word;
  5635. text-transform:none;
  5636. visibility:hidden;
  5637. }
  5638. #u19290_img {
  5639. border-width:0px;
  5640. position:absolute;
  5641. left:0px;
  5642. top:0px;
  5643. width:42px;
  5644. height:30px;
  5645. }
  5646. #u19290 {
  5647. border-width:0px;
  5648. position:absolute;
  5649. left:0px;
  5650. top:366px;
  5651. width:42px;
  5652. height:30px;
  5653. display:flex;
  5654. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5655. font-weight:400;
  5656. font-style:normal;
  5657. font-size:14px;
  5658. }
  5659. #u19290 .text {
  5660. position:absolute;
  5661. align-self:center;
  5662. padding:2px 2px 2px 2px;
  5663. box-sizing:border-box;
  5664. width:100%;
  5665. }
  5666. #u19290_text {
  5667. border-width:0px;
  5668. word-wrap:break-word;
  5669. text-transform:none;
  5670. visibility:hidden;
  5671. }
  5672. #u19291_img {
  5673. border-width:0px;
  5674. position:absolute;
  5675. left:0px;
  5676. top:0px;
  5677. width:131px;
  5678. height:30px;
  5679. }
  5680. #u19291 {
  5681. border-width:0px;
  5682. position:absolute;
  5683. left:42px;
  5684. top:366px;
  5685. width:131px;
  5686. height:30px;
  5687. display:flex;
  5688. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5689. font-weight:400;
  5690. font-style:normal;
  5691. font-size:14px;
  5692. }
  5693. #u19291 .text {
  5694. position:absolute;
  5695. align-self:center;
  5696. padding:2px 2px 2px 2px;
  5697. box-sizing:border-box;
  5698. width:100%;
  5699. }
  5700. #u19291_text {
  5701. border-width:0px;
  5702. word-wrap:break-word;
  5703. text-transform:none;
  5704. visibility:hidden;
  5705. }
  5706. #u19292_img {
  5707. border-width:0px;
  5708. position:absolute;
  5709. left:0px;
  5710. top:0px;
  5711. width:132px;
  5712. height:30px;
  5713. }
  5714. #u19292 {
  5715. border-width:0px;
  5716. position:absolute;
  5717. left:173px;
  5718. top:366px;
  5719. width:132px;
  5720. height:30px;
  5721. display:flex;
  5722. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5723. font-weight:400;
  5724. font-style:normal;
  5725. font-size:14px;
  5726. }
  5727. #u19292 .text {
  5728. position:absolute;
  5729. align-self:center;
  5730. padding:2px 2px 2px 2px;
  5731. box-sizing:border-box;
  5732. width:100%;
  5733. }
  5734. #u19292_text {
  5735. border-width:0px;
  5736. word-wrap:break-word;
  5737. text-transform:none;
  5738. visibility:hidden;
  5739. }
  5740. #u19293_img {
  5741. border-width:0px;
  5742. position:absolute;
  5743. left:0px;
  5744. top:0px;
  5745. width:131px;
  5746. height:30px;
  5747. }
  5748. #u19293 {
  5749. border-width:0px;
  5750. position:absolute;
  5751. left:305px;
  5752. top:366px;
  5753. width:131px;
  5754. height:30px;
  5755. display:flex;
  5756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5757. font-weight:400;
  5758. font-style:normal;
  5759. font-size:14px;
  5760. }
  5761. #u19293 .text {
  5762. position:absolute;
  5763. align-self:center;
  5764. padding:2px 2px 2px 2px;
  5765. box-sizing:border-box;
  5766. width:100%;
  5767. }
  5768. #u19293_text {
  5769. border-width:0px;
  5770. word-wrap:break-word;
  5771. text-transform:none;
  5772. visibility:hidden;
  5773. }
  5774. #u19294_img {
  5775. border-width:0px;
  5776. position:absolute;
  5777. left:0px;
  5778. top:0px;
  5779. width:159px;
  5780. height:30px;
  5781. }
  5782. #u19294 {
  5783. border-width:0px;
  5784. position:absolute;
  5785. left:436px;
  5786. top:366px;
  5787. width:159px;
  5788. height:30px;
  5789. display:flex;
  5790. font-size:14px;
  5791. }
  5792. #u19294 .text {
  5793. position:absolute;
  5794. align-self:center;
  5795. padding:2px 2px 2px 2px;
  5796. box-sizing:border-box;
  5797. width:100%;
  5798. }
  5799. #u19294_text {
  5800. border-width:0px;
  5801. word-wrap:break-word;
  5802. text-transform:none;
  5803. visibility:hidden;
  5804. }
  5805. #u19295_img {
  5806. border-width:0px;
  5807. position:absolute;
  5808. left:0px;
  5809. top:0px;
  5810. width:105px;
  5811. height:30px;
  5812. }
  5813. #u19295 {
  5814. border-width:0px;
  5815. position:absolute;
  5816. left:595px;
  5817. top:366px;
  5818. width:105px;
  5819. height:30px;
  5820. display:flex;
  5821. font-size:14px;
  5822. }
  5823. #u19295 .text {
  5824. position:absolute;
  5825. align-self:center;
  5826. padding:2px 2px 2px 2px;
  5827. box-sizing:border-box;
  5828. width:100%;
  5829. }
  5830. #u19295_text {
  5831. border-width:0px;
  5832. word-wrap:break-word;
  5833. text-transform:none;
  5834. visibility:hidden;
  5835. }
  5836. #u19296_img {
  5837. border-width:0px;
  5838. position:absolute;
  5839. left:0px;
  5840. top:0px;
  5841. width:141px;
  5842. height:30px;
  5843. }
  5844. #u19296 {
  5845. border-width:0px;
  5846. position:absolute;
  5847. left:700px;
  5848. top:366px;
  5849. width:141px;
  5850. height:30px;
  5851. display:flex;
  5852. font-size:14px;
  5853. }
  5854. #u19296 .text {
  5855. position:absolute;
  5856. align-self:center;
  5857. padding:2px 2px 2px 2px;
  5858. box-sizing:border-box;
  5859. width:100%;
  5860. }
  5861. #u19296_text {
  5862. border-width:0px;
  5863. word-wrap:break-word;
  5864. text-transform:none;
  5865. visibility:hidden;
  5866. }
  5867. #u19297_img {
  5868. border-width:0px;
  5869. position:absolute;
  5870. left:0px;
  5871. top:0px;
  5872. width:132px;
  5873. height:30px;
  5874. }
  5875. #u19297 {
  5876. border-width:0px;
  5877. position:absolute;
  5878. left:841px;
  5879. top:366px;
  5880. width:132px;
  5881. height:30px;
  5882. display:flex;
  5883. font-size:14px;
  5884. }
  5885. #u19297 .text {
  5886. position:absolute;
  5887. align-self:center;
  5888. padding:2px 2px 2px 2px;
  5889. box-sizing:border-box;
  5890. width:100%;
  5891. }
  5892. #u19297_text {
  5893. border-width:0px;
  5894. word-wrap:break-word;
  5895. text-transform:none;
  5896. visibility:hidden;
  5897. }
  5898. #u19298_img {
  5899. border-width:0px;
  5900. position:absolute;
  5901. left:0px;
  5902. top:0px;
  5903. width:140px;
  5904. height:30px;
  5905. }
  5906. #u19298 {
  5907. border-width:0px;
  5908. position:absolute;
  5909. left:973px;
  5910. top:366px;
  5911. width:140px;
  5912. height:30px;
  5913. display:flex;
  5914. font-size:14px;
  5915. }
  5916. #u19298 .text {
  5917. position:absolute;
  5918. align-self:center;
  5919. padding:2px 2px 2px 2px;
  5920. box-sizing:border-box;
  5921. width:100%;
  5922. }
  5923. #u19298_text {
  5924. border-width:0px;
  5925. word-wrap:break-word;
  5926. text-transform:none;
  5927. visibility:hidden;
  5928. }
  5929. #u19299_img {
  5930. border-width:0px;
  5931. position:absolute;
  5932. left:0px;
  5933. top:0px;
  5934. width:106px;
  5935. height:30px;
  5936. }
  5937. #u19299 {
  5938. border-width:0px;
  5939. position:absolute;
  5940. left:1113px;
  5941. top:366px;
  5942. width:106px;
  5943. height:30px;
  5944. display:flex;
  5945. font-size:14px;
  5946. }
  5947. #u19299 .text {
  5948. position:absolute;
  5949. align-self:center;
  5950. padding:2px 2px 2px 2px;
  5951. box-sizing:border-box;
  5952. width:100%;
  5953. }
  5954. #u19299_text {
  5955. border-width:0px;
  5956. word-wrap:break-word;
  5957. text-transform:none;
  5958. visibility:hidden;
  5959. }
  5960. #u19300_img {
  5961. border-width:0px;
  5962. position:absolute;
  5963. left:0px;
  5964. top:0px;
  5965. width:42px;
  5966. height:30px;
  5967. }
  5968. #u19300 {
  5969. border-width:0px;
  5970. position:absolute;
  5971. left:0px;
  5972. top:396px;
  5973. width:42px;
  5974. height:30px;
  5975. display:flex;
  5976. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5977. font-weight:400;
  5978. font-style:normal;
  5979. font-size:14px;
  5980. }
  5981. #u19300 .text {
  5982. position:absolute;
  5983. align-self:center;
  5984. padding:2px 2px 2px 2px;
  5985. box-sizing:border-box;
  5986. width:100%;
  5987. }
  5988. #u19300_text {
  5989. border-width:0px;
  5990. word-wrap:break-word;
  5991. text-transform:none;
  5992. visibility:hidden;
  5993. }
  5994. #u19301_img {
  5995. border-width:0px;
  5996. position:absolute;
  5997. left:0px;
  5998. top:0px;
  5999. width:131px;
  6000. height:30px;
  6001. }
  6002. #u19301 {
  6003. border-width:0px;
  6004. position:absolute;
  6005. left:42px;
  6006. top:396px;
  6007. width:131px;
  6008. height:30px;
  6009. display:flex;
  6010. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6011. font-weight:400;
  6012. font-style:normal;
  6013. font-size:14px;
  6014. }
  6015. #u19301 .text {
  6016. position:absolute;
  6017. align-self:center;
  6018. padding:2px 2px 2px 2px;
  6019. box-sizing:border-box;
  6020. width:100%;
  6021. }
  6022. #u19301_text {
  6023. border-width:0px;
  6024. word-wrap:break-word;
  6025. text-transform:none;
  6026. visibility:hidden;
  6027. }
  6028. #u19302_img {
  6029. border-width:0px;
  6030. position:absolute;
  6031. left:0px;
  6032. top:0px;
  6033. width:132px;
  6034. height:30px;
  6035. }
  6036. #u19302 {
  6037. border-width:0px;
  6038. position:absolute;
  6039. left:173px;
  6040. top:396px;
  6041. width:132px;
  6042. height:30px;
  6043. display:flex;
  6044. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6045. font-weight:400;
  6046. font-style:normal;
  6047. font-size:14px;
  6048. }
  6049. #u19302 .text {
  6050. position:absolute;
  6051. align-self:center;
  6052. padding:2px 2px 2px 2px;
  6053. box-sizing:border-box;
  6054. width:100%;
  6055. }
  6056. #u19302_text {
  6057. border-width:0px;
  6058. word-wrap:break-word;
  6059. text-transform:none;
  6060. visibility:hidden;
  6061. }
  6062. #u19303_img {
  6063. border-width:0px;
  6064. position:absolute;
  6065. left:0px;
  6066. top:0px;
  6067. width:131px;
  6068. height:30px;
  6069. }
  6070. #u19303 {
  6071. border-width:0px;
  6072. position:absolute;
  6073. left:305px;
  6074. top:396px;
  6075. width:131px;
  6076. height:30px;
  6077. display:flex;
  6078. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6079. font-weight:400;
  6080. font-style:normal;
  6081. font-size:14px;
  6082. }
  6083. #u19303 .text {
  6084. position:absolute;
  6085. align-self:center;
  6086. padding:2px 2px 2px 2px;
  6087. box-sizing:border-box;
  6088. width:100%;
  6089. }
  6090. #u19303_text {
  6091. border-width:0px;
  6092. word-wrap:break-word;
  6093. text-transform:none;
  6094. visibility:hidden;
  6095. }
  6096. #u19304_img {
  6097. border-width:0px;
  6098. position:absolute;
  6099. left:0px;
  6100. top:0px;
  6101. width:159px;
  6102. height:30px;
  6103. }
  6104. #u19304 {
  6105. border-width:0px;
  6106. position:absolute;
  6107. left:436px;
  6108. top:396px;
  6109. width:159px;
  6110. height:30px;
  6111. display:flex;
  6112. font-size:14px;
  6113. }
  6114. #u19304 .text {
  6115. position:absolute;
  6116. align-self:center;
  6117. padding:2px 2px 2px 2px;
  6118. box-sizing:border-box;
  6119. width:100%;
  6120. }
  6121. #u19304_text {
  6122. border-width:0px;
  6123. word-wrap:break-word;
  6124. text-transform:none;
  6125. visibility:hidden;
  6126. }
  6127. #u19305_img {
  6128. border-width:0px;
  6129. position:absolute;
  6130. left:0px;
  6131. top:0px;
  6132. width:105px;
  6133. height:30px;
  6134. }
  6135. #u19305 {
  6136. border-width:0px;
  6137. position:absolute;
  6138. left:595px;
  6139. top:396px;
  6140. width:105px;
  6141. height:30px;
  6142. display:flex;
  6143. font-size:14px;
  6144. }
  6145. #u19305 .text {
  6146. position:absolute;
  6147. align-self:center;
  6148. padding:2px 2px 2px 2px;
  6149. box-sizing:border-box;
  6150. width:100%;
  6151. }
  6152. #u19305_text {
  6153. border-width:0px;
  6154. word-wrap:break-word;
  6155. text-transform:none;
  6156. visibility:hidden;
  6157. }
  6158. #u19306_img {
  6159. border-width:0px;
  6160. position:absolute;
  6161. left:0px;
  6162. top:0px;
  6163. width:141px;
  6164. height:30px;
  6165. }
  6166. #u19306 {
  6167. border-width:0px;
  6168. position:absolute;
  6169. left:700px;
  6170. top:396px;
  6171. width:141px;
  6172. height:30px;
  6173. display:flex;
  6174. font-size:14px;
  6175. }
  6176. #u19306 .text {
  6177. position:absolute;
  6178. align-self:center;
  6179. padding:2px 2px 2px 2px;
  6180. box-sizing:border-box;
  6181. width:100%;
  6182. }
  6183. #u19306_text {
  6184. border-width:0px;
  6185. word-wrap:break-word;
  6186. text-transform:none;
  6187. visibility:hidden;
  6188. }
  6189. #u19307_img {
  6190. border-width:0px;
  6191. position:absolute;
  6192. left:0px;
  6193. top:0px;
  6194. width:132px;
  6195. height:30px;
  6196. }
  6197. #u19307 {
  6198. border-width:0px;
  6199. position:absolute;
  6200. left:841px;
  6201. top:396px;
  6202. width:132px;
  6203. height:30px;
  6204. display:flex;
  6205. font-size:14px;
  6206. }
  6207. #u19307 .text {
  6208. position:absolute;
  6209. align-self:center;
  6210. padding:2px 2px 2px 2px;
  6211. box-sizing:border-box;
  6212. width:100%;
  6213. }
  6214. #u19307_text {
  6215. border-width:0px;
  6216. word-wrap:break-word;
  6217. text-transform:none;
  6218. visibility:hidden;
  6219. }
  6220. #u19308_img {
  6221. border-width:0px;
  6222. position:absolute;
  6223. left:0px;
  6224. top:0px;
  6225. width:140px;
  6226. height:30px;
  6227. }
  6228. #u19308 {
  6229. border-width:0px;
  6230. position:absolute;
  6231. left:973px;
  6232. top:396px;
  6233. width:140px;
  6234. height:30px;
  6235. display:flex;
  6236. font-size:14px;
  6237. }
  6238. #u19308 .text {
  6239. position:absolute;
  6240. align-self:center;
  6241. padding:2px 2px 2px 2px;
  6242. box-sizing:border-box;
  6243. width:100%;
  6244. }
  6245. #u19308_text {
  6246. border-width:0px;
  6247. word-wrap:break-word;
  6248. text-transform:none;
  6249. visibility:hidden;
  6250. }
  6251. #u19309_img {
  6252. border-width:0px;
  6253. position:absolute;
  6254. left:0px;
  6255. top:0px;
  6256. width:106px;
  6257. height:30px;
  6258. }
  6259. #u19309 {
  6260. border-width:0px;
  6261. position:absolute;
  6262. left:1113px;
  6263. top:396px;
  6264. width:106px;
  6265. height:30px;
  6266. display:flex;
  6267. font-size:14px;
  6268. }
  6269. #u19309 .text {
  6270. position:absolute;
  6271. align-self:center;
  6272. padding:2px 2px 2px 2px;
  6273. box-sizing:border-box;
  6274. width:100%;
  6275. }
  6276. #u19309_text {
  6277. border-width:0px;
  6278. word-wrap:break-word;
  6279. text-transform:none;
  6280. visibility:hidden;
  6281. }
  6282. #u19310_div {
  6283. border-width:0px;
  6284. position:absolute;
  6285. left:0px;
  6286. top:0px;
  6287. width:80px;
  6288. height:30px;
  6289. background:inherit;
  6290. background-color:rgba(24, 144, 255, 1);
  6291. border:none;
  6292. border-radius:4px;
  6293. -moz-box-shadow:none;
  6294. -webkit-box-shadow:none;
  6295. box-shadow:none;
  6296. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6297. font-weight:400;
  6298. font-style:normal;
  6299. font-size:14px;
  6300. color:#FFFFFF;
  6301. }
  6302. #u19310 {
  6303. border-width:0px;
  6304. position:absolute;
  6305. left:352px;
  6306. top:189px;
  6307. width:80px;
  6308. height:30px;
  6309. display:flex;
  6310. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6311. font-weight:400;
  6312. font-style:normal;
  6313. font-size:14px;
  6314. color:#FFFFFF;
  6315. }
  6316. #u19310 .text {
  6317. position:absolute;
  6318. align-self:center;
  6319. padding:2px 2px 2px 2px;
  6320. box-sizing:border-box;
  6321. width:100%;
  6322. }
  6323. #u19310_text {
  6324. border-width:0px;
  6325. word-wrap:break-word;
  6326. text-transform:none;
  6327. }
  6328. #u19311 {
  6329. border-width:0px;
  6330. position:absolute;
  6331. left:0px;
  6332. top:0px;
  6333. width:0px;
  6334. height:0px;
  6335. }
  6336. #u19312_div {
  6337. border-width:0px;
  6338. position:absolute;
  6339. left:0px;
  6340. top:0px;
  6341. width:140px;
  6342. height:30px;
  6343. background:inherit;
  6344. background-color:rgba(255, 255, 255, 1);
  6345. box-sizing:border-box;
  6346. border-width:1px;
  6347. border-style:solid;
  6348. border-color:rgba(215, 215, 215, 1);
  6349. border-radius:4px;
  6350. -moz-box-shadow:none;
  6351. -webkit-box-shadow:none;
  6352. box-shadow:none;
  6353. font-size:14px;
  6354. }
  6355. #u19312 {
  6356. border-width:0px;
  6357. position:absolute;
  6358. left:502px;
  6359. top:140px;
  6360. width:140px;
  6361. height:30px;
  6362. display:flex;
  6363. font-size:14px;
  6364. }
  6365. #u19312 .text {
  6366. position:absolute;
  6367. align-self:center;
  6368. padding:2px 2px 2px 2px;
  6369. box-sizing:border-box;
  6370. width:100%;
  6371. }
  6372. #u19312_text {
  6373. border-width:0px;
  6374. word-wrap:break-word;
  6375. text-transform:none;
  6376. visibility:hidden;
  6377. }
  6378. #u19313_input {
  6379. position:absolute;
  6380. left:0px;
  6381. top:0px;
  6382. width:134px;
  6383. height:23px;
  6384. padding:2px 2px 2px 2px;
  6385. font-family:'ArialMT', 'Arial', sans-serif;
  6386. font-weight:400;
  6387. font-style:normal;
  6388. font-size:14px;
  6389. letter-spacing:normal;
  6390. color:#AAAAAA;
  6391. vertical-align:none;
  6392. text-align:left;
  6393. text-transform:none;
  6394. background-color:transparent;
  6395. border-color:transparent;
  6396. }
  6397. #u19313_input.disabled {
  6398. position:absolute;
  6399. left:0px;
  6400. top:0px;
  6401. width:134px;
  6402. height:23px;
  6403. padding:2px 2px 2px 2px;
  6404. font-family:'ArialMT', 'Arial', sans-serif;
  6405. font-weight:400;
  6406. font-style:normal;
  6407. font-size:14px;
  6408. letter-spacing:normal;
  6409. color:#AAAAAA;
  6410. vertical-align:none;
  6411. text-align:left;
  6412. text-transform:none;
  6413. background-color:transparent;
  6414. border-color:transparent;
  6415. }
  6416. #u19313_div {
  6417. border-width:0px;
  6418. position:absolute;
  6419. left:0px;
  6420. top:0px;
  6421. width:134px;
  6422. height:23px;
  6423. background:inherit;
  6424. background-color:rgba(255, 255, 255, 1);
  6425. border:none;
  6426. border-radius:0px;
  6427. -moz-box-shadow:none;
  6428. -webkit-box-shadow:none;
  6429. box-shadow:none;
  6430. font-size:14px;
  6431. color:#AAAAAA;
  6432. }
  6433. #u19313 {
  6434. border-width:0px;
  6435. position:absolute;
  6436. left:506px;
  6437. top:142px;
  6438. width:134px;
  6439. height:23px;
  6440. display:flex;
  6441. font-size:14px;
  6442. color:#AAAAAA;
  6443. }
  6444. #u19313 .text {
  6445. position:absolute;
  6446. align-self:flex-start;
  6447. padding:2px 2px 2px 2px;
  6448. box-sizing:border-box;
  6449. width:100%;
  6450. }
  6451. #u19313_div.disabled {
  6452. border-width:0px;
  6453. position:absolute;
  6454. left:0px;
  6455. top:0px;
  6456. width:134px;
  6457. height:23px;
  6458. background:inherit;
  6459. background-color:rgba(240, 240, 240, 1);
  6460. border:none;
  6461. border-radius:0px;
  6462. -moz-box-shadow:none;
  6463. -webkit-box-shadow:none;
  6464. box-shadow:none;
  6465. font-size:14px;
  6466. color:#AAAAAA;
  6467. }
  6468. #u19313.disabled {
  6469. }
  6470. .u19313_input_option {
  6471. font-size:14px;
  6472. }
  6473. #u19314 {
  6474. border-width:0px;
  6475. position:absolute;
  6476. left:0px;
  6477. top:0px;
  6478. width:0px;
  6479. height:0px;
  6480. }
  6481. #u19315_div {
  6482. border-width:0px;
  6483. position:absolute;
  6484. left:0px;
  6485. top:0px;
  6486. width:140px;
  6487. height:30px;
  6488. background:inherit;
  6489. background-color:rgba(255, 255, 255, 1);
  6490. box-sizing:border-box;
  6491. border-width:1px;
  6492. border-style:solid;
  6493. border-color:rgba(215, 215, 215, 1);
  6494. border-radius:4px;
  6495. -moz-box-shadow:none;
  6496. -webkit-box-shadow:none;
  6497. box-shadow:none;
  6498. font-size:14px;
  6499. }
  6500. #u19315 {
  6501. border-width:0px;
  6502. position:absolute;
  6503. left:802px;
  6504. top:140px;
  6505. width:140px;
  6506. height:30px;
  6507. display:flex;
  6508. font-size:14px;
  6509. }
  6510. #u19315 .text {
  6511. position:absolute;
  6512. align-self:center;
  6513. padding:2px 2px 2px 2px;
  6514. box-sizing:border-box;
  6515. width:100%;
  6516. }
  6517. #u19315_text {
  6518. border-width:0px;
  6519. word-wrap:break-word;
  6520. text-transform:none;
  6521. visibility:hidden;
  6522. }
  6523. #u19316_input {
  6524. position:absolute;
  6525. left:0px;
  6526. top:0px;
  6527. width:134px;
  6528. height:23px;
  6529. padding:2px 2px 2px 2px;
  6530. font-family:'ArialMT', 'Arial', sans-serif;
  6531. font-weight:400;
  6532. font-style:normal;
  6533. font-size:14px;
  6534. letter-spacing:normal;
  6535. color:#AAAAAA;
  6536. vertical-align:none;
  6537. text-align:left;
  6538. text-transform:none;
  6539. background-color:transparent;
  6540. border-color:transparent;
  6541. }
  6542. #u19316_input.disabled {
  6543. position:absolute;
  6544. left:0px;
  6545. top:0px;
  6546. width:134px;
  6547. height:23px;
  6548. padding:2px 2px 2px 2px;
  6549. font-family:'ArialMT', 'Arial', sans-serif;
  6550. font-weight:400;
  6551. font-style:normal;
  6552. font-size:14px;
  6553. letter-spacing:normal;
  6554. color:#AAAAAA;
  6555. vertical-align:none;
  6556. text-align:left;
  6557. text-transform:none;
  6558. background-color:transparent;
  6559. border-color:transparent;
  6560. }
  6561. #u19316_div {
  6562. border-width:0px;
  6563. position:absolute;
  6564. left:0px;
  6565. top:0px;
  6566. width:134px;
  6567. height:23px;
  6568. background:inherit;
  6569. background-color:rgba(255, 255, 255, 1);
  6570. border:none;
  6571. border-radius:0px;
  6572. -moz-box-shadow:none;
  6573. -webkit-box-shadow:none;
  6574. box-shadow:none;
  6575. font-size:14px;
  6576. color:#AAAAAA;
  6577. }
  6578. #u19316 {
  6579. border-width:0px;
  6580. position:absolute;
  6581. left:806px;
  6582. top:142px;
  6583. width:134px;
  6584. height:23px;
  6585. display:flex;
  6586. font-size:14px;
  6587. color:#AAAAAA;
  6588. }
  6589. #u19316 .text {
  6590. position:absolute;
  6591. align-self:flex-start;
  6592. padding:2px 2px 2px 2px;
  6593. box-sizing:border-box;
  6594. width:100%;
  6595. }
  6596. #u19316_div.disabled {
  6597. border-width:0px;
  6598. position:absolute;
  6599. left:0px;
  6600. top:0px;
  6601. width:134px;
  6602. height:23px;
  6603. background:inherit;
  6604. background-color:rgba(240, 240, 240, 1);
  6605. border:none;
  6606. border-radius:0px;
  6607. -moz-box-shadow:none;
  6608. -webkit-box-shadow:none;
  6609. box-shadow:none;
  6610. font-size:14px;
  6611. color:#AAAAAA;
  6612. }
  6613. #u19316.disabled {
  6614. }
  6615. .u19316_input_option {
  6616. font-size:14px;
  6617. }
  6618. #u19317 {
  6619. border-width:0px;
  6620. position:absolute;
  6621. left:0px;
  6622. top:0px;
  6623. width:0px;
  6624. height:0px;
  6625. }
  6626. #u19318_div {
  6627. border-width:0px;
  6628. position:absolute;
  6629. left:0px;
  6630. top:0px;
  6631. width:60px;
  6632. height:30px;
  6633. background:inherit;
  6634. background-color:rgba(24, 144, 255, 1);
  6635. border:none;
  6636. border-radius:4px;
  6637. -moz-box-shadow:none;
  6638. -webkit-box-shadow:none;
  6639. box-shadow:none;
  6640. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6641. font-weight:400;
  6642. font-style:normal;
  6643. font-size:14px;
  6644. color:#FFFFFF;
  6645. }
  6646. #u19318 {
  6647. border-width:0px;
  6648. position:absolute;
  6649. left:1103px;
  6650. top:140px;
  6651. width:60px;
  6652. height:30px;
  6653. display:flex;
  6654. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6655. font-weight:400;
  6656. font-style:normal;
  6657. font-size:14px;
  6658. color:#FFFFFF;
  6659. }
  6660. #u19318 .text {
  6661. position:absolute;
  6662. align-self:center;
  6663. padding:2px 2px 2px 2px;
  6664. box-sizing:border-box;
  6665. width:100%;
  6666. }
  6667. #u19318_text {
  6668. border-width:0px;
  6669. word-wrap:break-word;
  6670. text-transform:none;
  6671. }
  6672. #u19319_div {
  6673. border-width:0px;
  6674. position:absolute;
  6675. left:0px;
  6676. top:0px;
  6677. width:60px;
  6678. height:30px;
  6679. background:inherit;
  6680. background-color:rgba(255, 255, 255, 1);
  6681. box-sizing:border-box;
  6682. border-width:1px;
  6683. border-style:solid;
  6684. border-color:rgba(170, 170, 170, 1);
  6685. border-radius:4px;
  6686. -moz-box-shadow:none;
  6687. -webkit-box-shadow:none;
  6688. box-shadow:none;
  6689. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6690. font-weight:400;
  6691. font-style:normal;
  6692. font-size:14px;
  6693. }
  6694. #u19319 {
  6695. border-width:0px;
  6696. position:absolute;
  6697. left:1173px;
  6698. top:140px;
  6699. width:60px;
  6700. height:30px;
  6701. display:flex;
  6702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6703. font-weight:400;
  6704. font-style:normal;
  6705. font-size:14px;
  6706. }
  6707. #u19319 .text {
  6708. position:absolute;
  6709. align-self:center;
  6710. padding:2px 2px 2px 2px;
  6711. box-sizing:border-box;
  6712. width:100%;
  6713. }
  6714. #u19319_text {
  6715. border-width:0px;
  6716. word-wrap:break-word;
  6717. text-transform:none;
  6718. }
  6719. #u19320_div {
  6720. border-width:0px;
  6721. position:absolute;
  6722. left:0px;
  6723. top:0px;
  6724. width:895px;
  6725. height:50px;
  6726. background:inherit;
  6727. background-color:rgba(255, 255, 255, 0);
  6728. border:none;
  6729. border-radius:0px;
  6730. -moz-box-shadow:none;
  6731. -webkit-box-shadow:none;
  6732. box-shadow:none;
  6733. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6734. font-weight:400;
  6735. font-style:normal;
  6736. font-size:18px;
  6737. color:#D9001B;
  6738. }
  6739. #u19320 {
  6740. border-width:0px;
  6741. position:absolute;
  6742. left:398px;
  6743. top:722px;
  6744. width:895px;
  6745. height:50px;
  6746. display:flex;
  6747. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6748. font-weight:400;
  6749. font-style:normal;
  6750. font-size:18px;
  6751. color:#D9001B;
  6752. }
  6753. #u19320 .text {
  6754. position:absolute;
  6755. align-self:flex-start;
  6756. padding:0px 0px 0px 0px;
  6757. box-sizing:border-box;
  6758. width:100%;
  6759. }
  6760. #u19320_text {
  6761. border-width:0px;
  6762. white-space:nowrap;
  6763. text-transform:none;
  6764. }
  6765. #u19321_div {
  6766. border-width:0px;
  6767. position:absolute;
  6768. left:0px;
  6769. top:0px;
  6770. width:1116px;
  6771. height:80px;
  6772. background:inherit;
  6773. background-color:rgba(255, 255, 255, 0);
  6774. border:none;
  6775. border-left:0px;
  6776. border-top:0px;
  6777. border-right:0px;
  6778. border-radius:0px;
  6779. border-bottom-right-radius:0px;
  6780. border-bottom-left-radius:0px;
  6781. -moz-box-shadow:none;
  6782. -webkit-box-shadow:none;
  6783. box-shadow:none;
  6784. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6785. font-weight:400;
  6786. font-style:normal;
  6787. font-size:18px;
  6788. color:#1890FF;
  6789. line-height:40px;
  6790. }
  6791. #u19321 {
  6792. border-width:0px;
  6793. position:absolute;
  6794. left:398px;
  6795. top:804px;
  6796. width:1116px;
  6797. height:80px;
  6798. display:flex;
  6799. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6800. font-weight:400;
  6801. font-style:normal;
  6802. font-size:18px;
  6803. color:#1890FF;
  6804. line-height:40px;
  6805. }
  6806. #u19321 .text {
  6807. position:absolute;
  6808. align-self:center;
  6809. padding:0px 0px 0px 0px;
  6810. box-sizing:border-box;
  6811. width:100%;
  6812. }
  6813. #u19321_text {
  6814. border-width:0px;
  6815. word-wrap:break-word;
  6816. text-transform:none;
  6817. }
  6818. #u19322 {
  6819. border-width:0px;
  6820. position:absolute;
  6821. left:0px;
  6822. top:0px;
  6823. width:0px;
  6824. height:0px;
  6825. }
  6826. #u19323_div {
  6827. border-width:0px;
  6828. position:absolute;
  6829. left:0px;
  6830. top:0px;
  6831. width:140px;
  6832. height:30px;
  6833. background:inherit;
  6834. background-color:rgba(255, 255, 255, 1);
  6835. box-sizing:border-box;
  6836. border-width:1px;
  6837. border-style:solid;
  6838. border-color:rgba(215, 215, 215, 1);
  6839. border-radius:4px;
  6840. -moz-box-shadow:none;
  6841. -webkit-box-shadow:none;
  6842. box-shadow:none;
  6843. font-size:14px;
  6844. }
  6845. #u19323 {
  6846. border-width:0px;
  6847. position:absolute;
  6848. left:352px;
  6849. top:140px;
  6850. width:140px;
  6851. height:30px;
  6852. display:flex;
  6853. font-size:14px;
  6854. }
  6855. #u19323 .text {
  6856. position:absolute;
  6857. align-self:center;
  6858. padding:2px 2px 2px 2px;
  6859. box-sizing:border-box;
  6860. width:100%;
  6861. }
  6862. #u19323_text {
  6863. border-width:0px;
  6864. word-wrap:break-word;
  6865. text-transform:none;
  6866. visibility:hidden;
  6867. }
  6868. #u19324_input {
  6869. position:absolute;
  6870. left:0px;
  6871. top:0px;
  6872. width:134px;
  6873. height:23px;
  6874. padding:2px 2px 2px 2px;
  6875. font-family:'ArialMT', 'Arial', sans-serif;
  6876. font-weight:400;
  6877. font-style:normal;
  6878. font-size:14px;
  6879. letter-spacing:normal;
  6880. color:#AAAAAA;
  6881. vertical-align:none;
  6882. text-align:left;
  6883. text-transform:none;
  6884. background-color:transparent;
  6885. border-color:transparent;
  6886. }
  6887. #u19324_input.disabled {
  6888. position:absolute;
  6889. left:0px;
  6890. top:0px;
  6891. width:134px;
  6892. height:23px;
  6893. padding:2px 2px 2px 2px;
  6894. font-family:'ArialMT', 'Arial', sans-serif;
  6895. font-weight:400;
  6896. font-style:normal;
  6897. font-size:14px;
  6898. letter-spacing:normal;
  6899. color:#AAAAAA;
  6900. vertical-align:none;
  6901. text-align:left;
  6902. text-transform:none;
  6903. background-color:transparent;
  6904. border-color:transparent;
  6905. }
  6906. #u19324_div {
  6907. border-width:0px;
  6908. position:absolute;
  6909. left:0px;
  6910. top:0px;
  6911. width:134px;
  6912. height:23px;
  6913. background:inherit;
  6914. background-color:rgba(255, 255, 255, 1);
  6915. border:none;
  6916. border-radius:0px;
  6917. -moz-box-shadow:none;
  6918. -webkit-box-shadow:none;
  6919. box-shadow:none;
  6920. font-size:14px;
  6921. color:#AAAAAA;
  6922. }
  6923. #u19324 {
  6924. border-width:0px;
  6925. position:absolute;
  6926. left:356px;
  6927. top:142px;
  6928. width:134px;
  6929. height:23px;
  6930. display:flex;
  6931. font-size:14px;
  6932. color:#AAAAAA;
  6933. }
  6934. #u19324 .text {
  6935. position:absolute;
  6936. align-self:flex-start;
  6937. padding:2px 2px 2px 2px;
  6938. box-sizing:border-box;
  6939. width:100%;
  6940. }
  6941. #u19324_div.disabled {
  6942. border-width:0px;
  6943. position:absolute;
  6944. left:0px;
  6945. top:0px;
  6946. width:134px;
  6947. height:23px;
  6948. background:inherit;
  6949. background-color:rgba(240, 240, 240, 1);
  6950. border:none;
  6951. border-radius:0px;
  6952. -moz-box-shadow:none;
  6953. -webkit-box-shadow:none;
  6954. box-shadow:none;
  6955. font-size:14px;
  6956. color:#AAAAAA;
  6957. }
  6958. #u19324.disabled {
  6959. }
  6960. .u19324_input_option {
  6961. font-size:14px;
  6962. }
  6963. #u19326_div {
  6964. border-width:0px;
  6965. position:absolute;
  6966. left:0px;
  6967. top:0px;
  6968. width:200px;
  6969. height:1180px;
  6970. background:inherit;
  6971. background-color:rgba(255, 255, 255, 1);
  6972. border:none;
  6973. border-radius:0px;
  6974. -moz-box-shadow:none;
  6975. -webkit-box-shadow:none;
  6976. box-shadow:none;
  6977. }
  6978. #u19326 {
  6979. border-width:0px;
  6980. position:absolute;
  6981. left:120px;
  6982. top:50px;
  6983. width:200px;
  6984. height:1180px;
  6985. display:flex;
  6986. }
  6987. #u19326 .text {
  6988. position:absolute;
  6989. align-self:center;
  6990. padding:2px 2px 2px 2px;
  6991. box-sizing:border-box;
  6992. width:100%;
  6993. }
  6994. #u19326_text {
  6995. border-width:0px;
  6996. word-wrap:break-word;
  6997. text-transform:none;
  6998. visibility:hidden;
  6999. }
  7000. #u19327_div {
  7001. border-width:0px;
  7002. position:absolute;
  7003. left:0px;
  7004. top:0px;
  7005. width:200px;
  7006. height:60px;
  7007. background:inherit;
  7008. background-color:rgba(224, 231, 247, 1);
  7009. border:none;
  7010. border-radius:0px;
  7011. -moz-box-shadow:none;
  7012. -webkit-box-shadow:none;
  7013. box-shadow:none;
  7014. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7015. font-weight:500;
  7016. font-style:normal;
  7017. font-size:18px;
  7018. }
  7019. #u19327 {
  7020. border-width:0px;
  7021. position:absolute;
  7022. left:120px;
  7023. top:50px;
  7024. width:200px;
  7025. height:60px;
  7026. display:flex;
  7027. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7028. font-weight:500;
  7029. font-style:normal;
  7030. font-size:18px;
  7031. }
  7032. #u19327 .text {
  7033. position:absolute;
  7034. align-self:center;
  7035. padding:0px 0px 0px 20px;
  7036. box-sizing:border-box;
  7037. width:100%;
  7038. }
  7039. #u19327_text {
  7040. border-width:0px;
  7041. word-wrap:break-word;
  7042. text-transform:none;
  7043. }
  7044. #u19328_div {
  7045. border-width:0px;
  7046. position:absolute;
  7047. left:0px;
  7048. top:0px;
  7049. width:65px;
  7050. height:22px;
  7051. background:inherit;
  7052. background-color:rgba(255, 255, 255, 0);
  7053. border:none;
  7054. border-radius:0px;
  7055. -moz-box-shadow:none;
  7056. -webkit-box-shadow:none;
  7057. box-shadow:none;
  7058. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7059. font-weight:400;
  7060. font-style:normal;
  7061. font-size:16px;
  7062. }
  7063. #u19328 {
  7064. border-width:0px;
  7065. position:absolute;
  7066. left:143px;
  7067. top:163px;
  7068. width:65px;
  7069. height:22px;
  7070. display:flex;
  7071. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7072. font-weight:400;
  7073. font-style:normal;
  7074. font-size:16px;
  7075. }
  7076. #u19328 .text {
  7077. position:absolute;
  7078. align-self:flex-start;
  7079. padding:0px 0px 0px 0px;
  7080. box-sizing:border-box;
  7081. width:100%;
  7082. }
  7083. #u19328_text {
  7084. border-width:0px;
  7085. white-space:nowrap;
  7086. text-transform:none;
  7087. }
  7088. #u19329_div {
  7089. border-width:0px;
  7090. position:absolute;
  7091. left:0px;
  7092. top:0px;
  7093. width:49px;
  7094. height:17px;
  7095. background:inherit;
  7096. background-color:rgba(255, 255, 255, 0);
  7097. border:none;
  7098. border-radius:0px;
  7099. -moz-box-shadow:none;
  7100. -webkit-box-shadow:none;
  7101. box-shadow:none;
  7102. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7103. font-weight:400;
  7104. font-style:normal;
  7105. font-size:12px;
  7106. color:#AAAAAA;
  7107. }
  7108. #u19329 {
  7109. border-width:0px;
  7110. position:absolute;
  7111. left:143px;
  7112. top:130px;
  7113. width:49px;
  7114. height:17px;
  7115. display:flex;
  7116. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7117. font-weight:400;
  7118. font-style:normal;
  7119. font-size:12px;
  7120. color:#AAAAAA;
  7121. }
  7122. #u19329 .text {
  7123. position:absolute;
  7124. align-self:flex-start;
  7125. padding:0px 0px 0px 0px;
  7126. box-sizing:border-box;
  7127. width:100%;
  7128. }
  7129. #u19329_text {
  7130. border-width:0px;
  7131. white-space:nowrap;
  7132. text-transform:none;
  7133. }
  7134. #u19330_div {
  7135. border-width:0px;
  7136. position:absolute;
  7137. left:0px;
  7138. top:0px;
  7139. width:65px;
  7140. height:22px;
  7141. background:inherit;
  7142. background-color:rgba(255, 255, 255, 0);
  7143. border:none;
  7144. border-radius:0px;
  7145. -moz-box-shadow:none;
  7146. -webkit-box-shadow:none;
  7147. box-shadow:none;
  7148. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7149. font-weight:400;
  7150. font-style:normal;
  7151. font-size:16px;
  7152. }
  7153. #u19330 {
  7154. border-width:0px;
  7155. position:absolute;
  7156. left:143px;
  7157. top:205px;
  7158. width:65px;
  7159. height:22px;
  7160. display:flex;
  7161. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7162. font-weight:400;
  7163. font-style:normal;
  7164. font-size:16px;
  7165. }
  7166. #u19330 .text {
  7167. position:absolute;
  7168. align-self:flex-start;
  7169. padding:0px 0px 0px 0px;
  7170. box-sizing:border-box;
  7171. width:100%;
  7172. }
  7173. #u19330_text {
  7174. border-width:0px;
  7175. white-space:nowrap;
  7176. text-transform:none;
  7177. }
  7178. #u19331_div {
  7179. border-width:0px;
  7180. position:absolute;
  7181. left:0px;
  7182. top:0px;
  7183. width:65px;
  7184. height:22px;
  7185. background:inherit;
  7186. background-color:rgba(255, 255, 255, 0);
  7187. border:none;
  7188. border-radius:0px;
  7189. -moz-box-shadow:none;
  7190. -webkit-box-shadow:none;
  7191. box-shadow:none;
  7192. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7193. font-weight:400;
  7194. font-style:normal;
  7195. font-size:16px;
  7196. }
  7197. #u19331 {
  7198. border-width:0px;
  7199. position:absolute;
  7200. left:143px;
  7201. top:357px;
  7202. width:65px;
  7203. height:22px;
  7204. display:flex;
  7205. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7206. font-weight:400;
  7207. font-style:normal;
  7208. font-size:16px;
  7209. }
  7210. #u19331 .text {
  7211. position:absolute;
  7212. align-self:flex-start;
  7213. padding:0px 0px 0px 0px;
  7214. box-sizing:border-box;
  7215. width:100%;
  7216. }
  7217. #u19331_text {
  7218. border-width:0px;
  7219. white-space:nowrap;
  7220. text-transform:none;
  7221. }
  7222. #u19332_div {
  7223. border-width:0px;
  7224. position:absolute;
  7225. left:0px;
  7226. top:0px;
  7227. width:65px;
  7228. height:22px;
  7229. background:inherit;
  7230. background-color:rgba(255, 255, 255, 0);
  7231. border:none;
  7232. border-radius:0px;
  7233. -moz-box-shadow:none;
  7234. -webkit-box-shadow:none;
  7235. box-shadow:none;
  7236. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7237. font-weight:400;
  7238. font-style:normal;
  7239. font-size:16px;
  7240. }
  7241. #u19332 {
  7242. border-width:0px;
  7243. position:absolute;
  7244. left:143px;
  7245. top:452px;
  7246. width:65px;
  7247. height:22px;
  7248. display:flex;
  7249. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7250. font-weight:400;
  7251. font-style:normal;
  7252. font-size:16px;
  7253. }
  7254. #u19332 .text {
  7255. position:absolute;
  7256. align-self:flex-start;
  7257. padding:0px 0px 0px 0px;
  7258. box-sizing:border-box;
  7259. width:100%;
  7260. }
  7261. #u19332_text {
  7262. border-width:0px;
  7263. white-space:nowrap;
  7264. text-transform:none;
  7265. }
  7266. #u19333_img {
  7267. border-width:0px;
  7268. position:absolute;
  7269. left:0px;
  7270. top:0px;
  7271. width:201px;
  7272. height:2px;
  7273. }
  7274. #u19333 {
  7275. border-width:0px;
  7276. position:absolute;
  7277. left:120px;
  7278. top:399px;
  7279. width:200px;
  7280. height:1px;
  7281. display:flex;
  7282. }
  7283. #u19333 .text {
  7284. position:absolute;
  7285. align-self:center;
  7286. padding:2px 2px 2px 2px;
  7287. box-sizing:border-box;
  7288. width:100%;
  7289. }
  7290. #u19333_text {
  7291. border-width:0px;
  7292. word-wrap:break-word;
  7293. text-transform:none;
  7294. visibility:hidden;
  7295. }
  7296. #u19334_div {
  7297. border-width:0px;
  7298. position:absolute;
  7299. left:0px;
  7300. top:0px;
  7301. width:49px;
  7302. height:17px;
  7303. background:inherit;
  7304. background-color:rgba(255, 255, 255, 0);
  7305. border:none;
  7306. border-radius:0px;
  7307. -moz-box-shadow:none;
  7308. -webkit-box-shadow:none;
  7309. box-shadow:none;
  7310. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7311. font-weight:400;
  7312. font-style:normal;
  7313. font-size:12px;
  7314. color:#AAAAAA;
  7315. }
  7316. #u19334 {
  7317. border-width:0px;
  7318. position:absolute;
  7319. left:143px;
  7320. top:419px;
  7321. width:49px;
  7322. height:17px;
  7323. display:flex;
  7324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7325. font-weight:400;
  7326. font-style:normal;
  7327. font-size:12px;
  7328. color:#AAAAAA;
  7329. }
  7330. #u19334 .text {
  7331. position:absolute;
  7332. align-self:flex-start;
  7333. padding:0px 0px 0px 0px;
  7334. box-sizing:border-box;
  7335. width:100%;
  7336. }
  7337. #u19334_text {
  7338. border-width:0px;
  7339. white-space:nowrap;
  7340. text-transform:none;
  7341. }
  7342. #u19335_div {
  7343. border-width:0px;
  7344. position:absolute;
  7345. left:0px;
  7346. top:0px;
  7347. width:65px;
  7348. height:22px;
  7349. background:inherit;
  7350. background-color:rgba(255, 255, 255, 0);
  7351. border:none;
  7352. border-radius:0px;
  7353. -moz-box-shadow:none;
  7354. -webkit-box-shadow:none;
  7355. box-shadow:none;
  7356. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7357. font-weight:400;
  7358. font-style:normal;
  7359. font-size:16px;
  7360. }
  7361. #u19335 {
  7362. border-width:0px;
  7363. position:absolute;
  7364. left:143px;
  7365. top:494px;
  7366. width:65px;
  7367. height:22px;
  7368. display:flex;
  7369. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7370. font-weight:400;
  7371. font-style:normal;
  7372. font-size:16px;
  7373. }
  7374. #u19335 .text {
  7375. position:absolute;
  7376. align-self:flex-start;
  7377. padding:0px 0px 0px 0px;
  7378. box-sizing:border-box;
  7379. width:100%;
  7380. }
  7381. #u19335_text {
  7382. border-width:0px;
  7383. white-space:nowrap;
  7384. text-transform:none;
  7385. }
  7386. #u19336_div {
  7387. border-width:0px;
  7388. position:absolute;
  7389. left:0px;
  7390. top:0px;
  7391. width:65px;
  7392. height:22px;
  7393. background:inherit;
  7394. background-color:rgba(255, 255, 255, 0);
  7395. border:none;
  7396. border-radius:0px;
  7397. -moz-box-shadow:none;
  7398. -webkit-box-shadow:none;
  7399. box-shadow:none;
  7400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7401. font-weight:400;
  7402. font-style:normal;
  7403. font-size:16px;
  7404. }
  7405. #u19336 {
  7406. border-width:0px;
  7407. position:absolute;
  7408. left:143px;
  7409. top:247px;
  7410. width:65px;
  7411. height:22px;
  7412. display:flex;
  7413. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7414. font-weight:400;
  7415. font-style:normal;
  7416. font-size:16px;
  7417. }
  7418. #u19336 .text {
  7419. position:absolute;
  7420. align-self:flex-start;
  7421. padding:0px 0px 0px 0px;
  7422. box-sizing:border-box;
  7423. width:100%;
  7424. }
  7425. #u19336_text {
  7426. border-width:0px;
  7427. white-space:nowrap;
  7428. text-transform:none;
  7429. }
  7430. #u19337_div {
  7431. border-width:0px;
  7432. position:absolute;
  7433. left:0px;
  7434. top:0px;
  7435. width:73px;
  7436. height:17px;
  7437. background:inherit;
  7438. background-color:rgba(255, 255, 255, 0);
  7439. border:none;
  7440. border-radius:0px;
  7441. -moz-box-shadow:none;
  7442. -webkit-box-shadow:none;
  7443. box-shadow:none;
  7444. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7445. font-weight:400;
  7446. font-style:normal;
  7447. font-size:12px;
  7448. color:#AAAAAA;
  7449. }
  7450. #u19337 {
  7451. border-width:0px;
  7452. position:absolute;
  7453. left:143px;
  7454. top:316px;
  7455. width:73px;
  7456. height:17px;
  7457. display:flex;
  7458. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7459. font-weight:400;
  7460. font-style:normal;
  7461. font-size:12px;
  7462. color:#AAAAAA;
  7463. }
  7464. #u19337 .text {
  7465. position:absolute;
  7466. align-self:flex-start;
  7467. padding:0px 0px 0px 0px;
  7468. box-sizing:border-box;
  7469. width:100%;
  7470. }
  7471. #u19337_text {
  7472. border-width:0px;
  7473. white-space:nowrap;
  7474. text-transform:none;
  7475. }
  7476. #u19338_img {
  7477. border-width:0px;
  7478. position:absolute;
  7479. left:0px;
  7480. top:0px;
  7481. width:201px;
  7482. height:2px;
  7483. }
  7484. #u19338 {
  7485. border-width:0px;
  7486. position:absolute;
  7487. left:120px;
  7488. top:296px;
  7489. width:200px;
  7490. height:1px;
  7491. display:flex;
  7492. }
  7493. #u19338 .text {
  7494. position:absolute;
  7495. align-self:center;
  7496. padding:2px 2px 2px 2px;
  7497. box-sizing:border-box;
  7498. width:100%;
  7499. }
  7500. #u19338_text {
  7501. border-width:0px;
  7502. word-wrap:break-word;
  7503. text-transform:none;
  7504. visibility:hidden;
  7505. }
  7506. #u19339_div {
  7507. border-width:0px;
  7508. position:absolute;
  7509. left:0px;
  7510. top:0px;
  7511. width:379px;
  7512. height:20px;
  7513. background:inherit;
  7514. background-color:rgba(255, 255, 255, 0);
  7515. border:none;
  7516. border-left:0px;
  7517. border-top:0px;
  7518. border-right:0px;
  7519. border-radius:0px;
  7520. border-bottom-right-radius:0px;
  7521. border-bottom-left-radius:0px;
  7522. -moz-box-shadow:none;
  7523. -webkit-box-shadow:none;
  7524. box-shadow:none;
  7525. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7526. font-weight:400;
  7527. font-style:normal;
  7528. font-size:14px;
  7529. color:#7F7F7F;
  7530. }
  7531. #u19339 {
  7532. border-width:0px;
  7533. position:absolute;
  7534. left:352px;
  7535. top:100px;
  7536. width:379px;
  7537. height:20px;
  7538. display:flex;
  7539. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7540. font-weight:400;
  7541. font-style:normal;
  7542. font-size:14px;
  7543. color:#7F7F7F;
  7544. }
  7545. #u19339 .text {
  7546. position:absolute;
  7547. align-self:center;
  7548. padding:0px 0px 0px 0px;
  7549. box-sizing:border-box;
  7550. width:100%;
  7551. }
  7552. #u19339_text {
  7553. border-width:0px;
  7554. white-space:nowrap;
  7555. text-transform:none;
  7556. }
  7557. #u19341 {
  7558. border-width:0px;
  7559. position:absolute;
  7560. left:0px;
  7561. top:0px;
  7562. width:0px;
  7563. height:0px;
  7564. }
  7565. #u19342_div {
  7566. border-width:0px;
  7567. position:absolute;
  7568. left:0px;
  7569. top:0px;
  7570. width:30px;
  7571. height:30px;
  7572. background:inherit;
  7573. background-color:rgba(255, 255, 255, 1);
  7574. box-sizing:border-box;
  7575. border-width:1px;
  7576. border-style:solid;
  7577. border-color:rgba(228, 228, 228, 1);
  7578. border-radius:4px;
  7579. -moz-box-shadow:none;
  7580. -webkit-box-shadow:none;
  7581. box-shadow:none;
  7582. font-family:'Microsoft YaHei', sans-serif;
  7583. font-weight:400;
  7584. font-style:normal;
  7585. font-size:14px;
  7586. }
  7587. #u19342 {
  7588. border-width:0px;
  7589. position:absolute;
  7590. left:996px;
  7591. top:1183px;
  7592. width:30px;
  7593. height:30px;
  7594. display:flex;
  7595. font-family:'Microsoft YaHei', sans-serif;
  7596. font-weight:400;
  7597. font-style:normal;
  7598. font-size:14px;
  7599. }
  7600. #u19342 .text {
  7601. position:absolute;
  7602. align-self:center;
  7603. padding:2px 2px 2px 2px;
  7604. box-sizing:border-box;
  7605. width:100%;
  7606. }
  7607. #u19342_text {
  7608. border-width:0px;
  7609. word-wrap:break-word;
  7610. text-transform:none;
  7611. }
  7612. #u19343_div {
  7613. border-width:0px;
  7614. position:absolute;
  7615. left:0px;
  7616. top:0px;
  7617. width:49px;
  7618. height:30px;
  7619. background:inherit;
  7620. background-color:rgba(255, 255, 255, 0);
  7621. box-sizing:border-box;
  7622. border-width:1px;
  7623. border-style:solid;
  7624. border-color:rgba(188, 188, 188, 1);
  7625. border-radius:4px;
  7626. -moz-box-shadow:none;
  7627. -webkit-box-shadow:none;
  7628. box-shadow:none;
  7629. font-family:'Microsoft YaHei', sans-serif;
  7630. font-weight:400;
  7631. font-style:normal;
  7632. font-size:14px;
  7633. color:#1E1E1E;
  7634. }
  7635. #u19343 {
  7636. border-width:0px;
  7637. position:absolute;
  7638. left:1512px;
  7639. top:1183px;
  7640. width:49px;
  7641. height:30px;
  7642. display:flex;
  7643. font-family:'Microsoft YaHei', sans-serif;
  7644. font-weight:400;
  7645. font-style:normal;
  7646. font-size:14px;
  7647. color:#1E1E1E;
  7648. }
  7649. #u19343 .text {
  7650. position:absolute;
  7651. align-self:center;
  7652. padding:5px 10px 5px 10px;
  7653. box-sizing:border-box;
  7654. width:100%;
  7655. }
  7656. #u19343_text {
  7657. border-width:0px;
  7658. white-space:nowrap;
  7659. text-transform:none;
  7660. }
  7661. #u19344 {
  7662. border-width:0px;
  7663. position:absolute;
  7664. left:0px;
  7665. top:0px;
  7666. width:0px;
  7667. height:0px;
  7668. }
  7669. #u19345_div {
  7670. border-width:0px;
  7671. position:absolute;
  7672. left:0px;
  7673. top:0px;
  7674. width:33px;
  7675. height:24px;
  7676. background:inherit;
  7677. background-color:rgba(255, 255, 255, 1);
  7678. border:none;
  7679. border-radius:0px;
  7680. -moz-box-shadow:none;
  7681. -webkit-box-shadow:none;
  7682. box-shadow:none;
  7683. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7684. font-weight:400;
  7685. font-style:normal;
  7686. font-size:14px;
  7687. color:#BCBCBC;
  7688. text-align:left;
  7689. }
  7690. #u19345 {
  7691. border-width:0px;
  7692. position:absolute;
  7693. left:1280px;
  7694. top:1186px;
  7695. width:33px;
  7696. height:24px;
  7697. display:flex;
  7698. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7699. font-weight:400;
  7700. font-style:normal;
  7701. font-size:14px;
  7702. color:#BCBCBC;
  7703. text-align:left;
  7704. }
  7705. #u19345 .text {
  7706. position:absolute;
  7707. align-self:center;
  7708. padding:2px 2px 2px 2px;
  7709. box-sizing:border-box;
  7710. width:100%;
  7711. }
  7712. #u19345_text {
  7713. border-width:0px;
  7714. white-space:nowrap;
  7715. text-transform:none;
  7716. }
  7717. #u19346_div {
  7718. border-width:0px;
  7719. position:absolute;
  7720. left:0px;
  7721. top:0px;
  7722. width:40px;
  7723. height:30px;
  7724. background:inherit;
  7725. background-color:rgba(255, 255, 255, 1);
  7726. box-sizing:border-box;
  7727. border-width:1px;
  7728. border-style:solid;
  7729. border-color:rgba(228, 228, 228, 1);
  7730. border-radius:4px;
  7731. -moz-box-shadow:none;
  7732. -webkit-box-shadow:none;
  7733. box-shadow:none;
  7734. font-family:'Microsoft YaHei', sans-serif;
  7735. font-weight:400;
  7736. font-style:normal;
  7737. font-size:14px;
  7738. }
  7739. #u19346 {
  7740. border-width:0px;
  7741. position:absolute;
  7742. left:1315px;
  7743. top:1183px;
  7744. width:40px;
  7745. height:30px;
  7746. display:flex;
  7747. font-family:'Microsoft YaHei', sans-serif;
  7748. font-weight:400;
  7749. font-style:normal;
  7750. font-size:14px;
  7751. }
  7752. #u19346 .text {
  7753. position:absolute;
  7754. align-self:center;
  7755. padding:2px 2px 2px 2px;
  7756. box-sizing:border-box;
  7757. width:100%;
  7758. }
  7759. #u19346_text {
  7760. border-width:0px;
  7761. word-wrap:break-word;
  7762. text-transform:none;
  7763. visibility:hidden;
  7764. }
  7765. #u19347_div {
  7766. border-width:0px;
  7767. position:absolute;
  7768. left:0px;
  7769. top:0px;
  7770. width:19px;
  7771. height:24px;
  7772. background:inherit;
  7773. background-color:rgba(255, 255, 255, 1);
  7774. border:none;
  7775. border-radius:0px;
  7776. -moz-box-shadow:none;
  7777. -webkit-box-shadow:none;
  7778. box-shadow:none;
  7779. font-family:'Microsoft YaHei', sans-serif;
  7780. font-weight:400;
  7781. font-style:normal;
  7782. font-size:14px;
  7783. color:#BCBCBC;
  7784. text-align:left;
  7785. }
  7786. #u19347 {
  7787. border-width:0px;
  7788. position:absolute;
  7789. left:1357px;
  7790. top:1187px;
  7791. width:19px;
  7792. height:24px;
  7793. display:flex;
  7794. font-family:'Microsoft YaHei', sans-serif;
  7795. font-weight:400;
  7796. font-style:normal;
  7797. font-size:14px;
  7798. color:#BCBCBC;
  7799. text-align:left;
  7800. }
  7801. #u19347 .text {
  7802. position:absolute;
  7803. align-self:center;
  7804. padding:2px 2px 2px 2px;
  7805. box-sizing:border-box;
  7806. width:100%;
  7807. }
  7808. #u19347_text {
  7809. border-width:0px;
  7810. white-space:nowrap;
  7811. text-transform:none;
  7812. }
  7813. #u19348_input {
  7814. position:absolute;
  7815. left:0px;
  7816. top:0px;
  7817. width:34px;
  7818. height:25px;
  7819. padding:2px 2px 2px 2px;
  7820. font-family:'Microsoft YaHei', sans-serif;
  7821. font-weight:400;
  7822. font-style:normal;
  7823. font-size:13px;
  7824. letter-spacing:normal;
  7825. color:#000000;
  7826. vertical-align:none;
  7827. text-align:left;
  7828. text-transform:none;
  7829. background-color:transparent;
  7830. border-color:transparent;
  7831. }
  7832. #u19348_input.disabled {
  7833. position:absolute;
  7834. left:0px;
  7835. top:0px;
  7836. width:34px;
  7837. height:25px;
  7838. padding:2px 2px 2px 2px;
  7839. font-family:'Microsoft YaHei', sans-serif;
  7840. font-weight:400;
  7841. font-style:normal;
  7842. font-size:13px;
  7843. letter-spacing:normal;
  7844. color:#000000;
  7845. vertical-align:none;
  7846. text-align:left;
  7847. text-transform:none;
  7848. background-color:transparent;
  7849. border-color:transparent;
  7850. }
  7851. #u19348_div {
  7852. border-width:0px;
  7853. position:absolute;
  7854. left:0px;
  7855. top:0px;
  7856. width:34px;
  7857. height:25px;
  7858. background:inherit;
  7859. background-color:rgba(255, 255, 255, 1);
  7860. border:none;
  7861. border-radius:0px;
  7862. -moz-box-shadow:none;
  7863. -webkit-box-shadow:none;
  7864. box-shadow:none;
  7865. font-family:'Microsoft YaHei', sans-serif;
  7866. font-weight:400;
  7867. font-style:normal;
  7868. }
  7869. #u19348 {
  7870. border-width:0px;
  7871. position:absolute;
  7872. left:1318px;
  7873. top:1185px;
  7874. width:34px;
  7875. height:25px;
  7876. display:flex;
  7877. font-family:'Microsoft YaHei', sans-serif;
  7878. font-weight:400;
  7879. font-style:normal;
  7880. }
  7881. #u19348 .text {
  7882. position:absolute;
  7883. align-self:center;
  7884. padding:2px 2px 2px 2px;
  7885. box-sizing:border-box;
  7886. width:100%;
  7887. }
  7888. #u19348_div.disabled {
  7889. border-width:0px;
  7890. position:absolute;
  7891. left:0px;
  7892. top:0px;
  7893. width:34px;
  7894. height:25px;
  7895. background:inherit;
  7896. background-color:rgba(240, 240, 240, 1);
  7897. border:none;
  7898. border-radius:0px;
  7899. -moz-box-shadow:none;
  7900. -webkit-box-shadow:none;
  7901. box-shadow:none;
  7902. font-family:'Microsoft YaHei', sans-serif;
  7903. font-weight:400;
  7904. font-style:normal;
  7905. }
  7906. #u19348.disabled {
  7907. }
  7908. #u19349_div {
  7909. border-width:0px;
  7910. position:absolute;
  7911. left:0px;
  7912. top:0px;
  7913. width:30px;
  7914. height:30px;
  7915. background:inherit;
  7916. background-color:rgba(41, 143, 255, 1);
  7917. border:none;
  7918. border-radius:4px;
  7919. -moz-box-shadow:none;
  7920. -webkit-box-shadow:none;
  7921. box-shadow:none;
  7922. font-family:'Microsoft YaHei', sans-serif;
  7923. font-weight:400;
  7924. font-style:normal;
  7925. font-size:14px;
  7926. color:#FFFFFF;
  7927. }
  7928. #u19349 {
  7929. border-width:0px;
  7930. position:absolute;
  7931. left:1030px;
  7932. top:1183px;
  7933. width:30px;
  7934. height:30px;
  7935. display:flex;
  7936. font-family:'Microsoft YaHei', sans-serif;
  7937. font-weight:400;
  7938. font-style:normal;
  7939. font-size:14px;
  7940. color:#FFFFFF;
  7941. }
  7942. #u19349 .text {
  7943. position:absolute;
  7944. align-self:center;
  7945. padding:2px 2px 2px 2px;
  7946. box-sizing:border-box;
  7947. width:100%;
  7948. }
  7949. #u19349_text {
  7950. border-width:0px;
  7951. word-wrap:break-word;
  7952. text-transform:none;
  7953. }
  7954. #u19350_div {
  7955. border-width:0px;
  7956. position:absolute;
  7957. left:0px;
  7958. top:0px;
  7959. width:30px;
  7960. height:30px;
  7961. background:inherit;
  7962. background-color:rgba(255, 255, 255, 1);
  7963. box-sizing:border-box;
  7964. border-width:1px;
  7965. border-style:solid;
  7966. border-color:rgba(228, 228, 228, 1);
  7967. border-radius:4px;
  7968. -moz-box-shadow:none;
  7969. -webkit-box-shadow:none;
  7970. box-shadow:none;
  7971. font-family:'Microsoft YaHei', sans-serif;
  7972. font-weight:400;
  7973. font-style:normal;
  7974. font-size:14px;
  7975. }
  7976. #u19350 {
  7977. border-width:0px;
  7978. position:absolute;
  7979. left:1064px;
  7980. top:1183px;
  7981. width:30px;
  7982. height:30px;
  7983. display:flex;
  7984. font-family:'Microsoft YaHei', sans-serif;
  7985. font-weight:400;
  7986. font-style:normal;
  7987. font-size:14px;
  7988. }
  7989. #u19350 .text {
  7990. position:absolute;
  7991. align-self:center;
  7992. padding:2px 2px 2px 2px;
  7993. box-sizing:border-box;
  7994. width:100%;
  7995. }
  7996. #u19350_text {
  7997. border-width:0px;
  7998. word-wrap:break-word;
  7999. text-transform:none;
  8000. }
  8001. #u19351_div {
  8002. border-width:0px;
  8003. position:absolute;
  8004. left:0px;
  8005. top:0px;
  8006. width:30px;
  8007. height:30px;
  8008. background:inherit;
  8009. background-color:rgba(255, 255, 255, 1);
  8010. box-sizing:border-box;
  8011. border-width:1px;
  8012. border-style:solid;
  8013. border-color:rgba(228, 228, 228, 1);
  8014. border-radius:4px;
  8015. -moz-box-shadow:none;
  8016. -webkit-box-shadow:none;
  8017. box-shadow:none;
  8018. font-family:'Microsoft YaHei', sans-serif;
  8019. font-weight:400;
  8020. font-style:normal;
  8021. font-size:14px;
  8022. }
  8023. #u19351 {
  8024. border-width:0px;
  8025. position:absolute;
  8026. left:1098px;
  8027. top:1183px;
  8028. width:30px;
  8029. height:30px;
  8030. display:flex;
  8031. font-family:'Microsoft YaHei', sans-serif;
  8032. font-weight:400;
  8033. font-style:normal;
  8034. font-size:14px;
  8035. }
  8036. #u19351 .text {
  8037. position:absolute;
  8038. align-self:center;
  8039. padding:2px 2px 2px 2px;
  8040. box-sizing:border-box;
  8041. width:100%;
  8042. }
  8043. #u19351_text {
  8044. border-width:0px;
  8045. word-wrap:break-word;
  8046. text-transform:none;
  8047. }
  8048. #u19352_div {
  8049. border-width:0px;
  8050. position:absolute;
  8051. left:0px;
  8052. top:0px;
  8053. width:30px;
  8054. height:30px;
  8055. background:inherit;
  8056. background-color:rgba(255, 255, 255, 1);
  8057. border:none;
  8058. border-radius:4px;
  8059. -moz-box-shadow:none;
  8060. -webkit-box-shadow:none;
  8061. box-shadow:none;
  8062. font-family:'Microsoft YaHei', sans-serif;
  8063. font-weight:400;
  8064. font-style:normal;
  8065. font-size:14px;
  8066. }
  8067. #u19352 {
  8068. border-width:0px;
  8069. position:absolute;
  8070. left:1128px;
  8071. top:1183px;
  8072. width:30px;
  8073. height:30px;
  8074. display:flex;
  8075. font-family:'Microsoft YaHei', sans-serif;
  8076. font-weight:400;
  8077. font-style:normal;
  8078. font-size:14px;
  8079. }
  8080. #u19352 .text {
  8081. position:absolute;
  8082. align-self:center;
  8083. padding:2px 2px 2px 2px;
  8084. box-sizing:border-box;
  8085. width:100%;
  8086. }
  8087. #u19352_text {
  8088. border-width:0px;
  8089. word-wrap:break-word;
  8090. text-transform:none;
  8091. }
  8092. #u19353_div {
  8093. border-width:0px;
  8094. position:absolute;
  8095. left:0px;
  8096. top:0px;
  8097. width:30px;
  8098. height:30px;
  8099. background:inherit;
  8100. background-color:rgba(255, 255, 255, 1);
  8101. box-sizing:border-box;
  8102. border-width:1px;
  8103. border-style:solid;
  8104. border-color:rgba(228, 228, 228, 1);
  8105. border-radius:4px;
  8106. -moz-box-shadow:none;
  8107. -webkit-box-shadow:none;
  8108. box-shadow:none;
  8109. font-family:'Microsoft YaHei', sans-serif;
  8110. font-weight:400;
  8111. font-style:normal;
  8112. font-size:14px;
  8113. }
  8114. #u19353 {
  8115. border-width:0px;
  8116. position:absolute;
  8117. left:1162px;
  8118. top:1183px;
  8119. width:30px;
  8120. height:30px;
  8121. display:flex;
  8122. font-family:'Microsoft YaHei', sans-serif;
  8123. font-weight:400;
  8124. font-style:normal;
  8125. font-size:14px;
  8126. }
  8127. #u19353 .text {
  8128. position:absolute;
  8129. align-self:center;
  8130. padding:2px 2px 2px 2px;
  8131. box-sizing:border-box;
  8132. width:100%;
  8133. }
  8134. #u19353_text {
  8135. border-width:0px;
  8136. word-wrap:break-word;
  8137. text-transform:none;
  8138. }
  8139. #u19354_div {
  8140. border-width:0px;
  8141. position:absolute;
  8142. left:0px;
  8143. top:0px;
  8144. width:32px;
  8145. height:21px;
  8146. background:inherit;
  8147. background-color:rgba(255, 255, 255, 1);
  8148. border:none;
  8149. border-radius:15px;
  8150. -moz-box-shadow:none;
  8151. -webkit-box-shadow:none;
  8152. box-shadow:none;
  8153. font-family:'Microsoft YaHei', sans-serif;
  8154. font-weight:400;
  8155. font-style:normal;
  8156. font-size:14px;
  8157. color:#1E1E1E;
  8158. }
  8159. #u19354 {
  8160. border-width:0px;
  8161. position:absolute;
  8162. left:1236px;
  8163. top:1188px;
  8164. width:32px;
  8165. height:21px;
  8166. display:flex;
  8167. font-family:'Microsoft YaHei', sans-serif;
  8168. font-weight:400;
  8169. font-style:normal;
  8170. font-size:14px;
  8171. color:#1E1E1E;
  8172. }
  8173. #u19354 .text {
  8174. position:absolute;
  8175. align-self:center;
  8176. padding:2px 2px 2px 2px;
  8177. box-sizing:border-box;
  8178. width:100%;
  8179. }
  8180. #u19354_text {
  8181. border-width:0px;
  8182. white-space:nowrap;
  8183. text-transform:none;
  8184. }
  8185. #u19355 {
  8186. border-width:0px;
  8187. position:absolute;
  8188. left:0px;
  8189. top:0px;
  8190. width:0px;
  8191. height:0px;
  8192. }
  8193. #u19356_div {
  8194. border-width:0px;
  8195. position:absolute;
  8196. left:0px;
  8197. top:0px;
  8198. width:31px;
  8199. height:30px;
  8200. background:inherit;
  8201. background-color:rgba(255, 255, 255, 1);
  8202. box-sizing:border-box;
  8203. border-width:1px;
  8204. border-style:solid;
  8205. border-color:rgba(228, 228, 228, 1);
  8206. border-radius:4px;
  8207. -moz-box-shadow:none;
  8208. -webkit-box-shadow:none;
  8209. box-shadow:none;
  8210. font-family:'Microsoft YaHei', sans-serif;
  8211. font-weight:400;
  8212. font-style:normal;
  8213. font-size:12px;
  8214. }
  8215. #u19356 {
  8216. border-width:0px;
  8217. position:absolute;
  8218. left:961px;
  8219. top:1183px;
  8220. width:31px;
  8221. height:30px;
  8222. display:flex;
  8223. font-family:'Microsoft YaHei', sans-serif;
  8224. font-weight:400;
  8225. font-style:normal;
  8226. font-size:12px;
  8227. }
  8228. #u19356 .text {
  8229. position:absolute;
  8230. align-self:center;
  8231. padding:2px 2px 2px 2px;
  8232. box-sizing:border-box;
  8233. width:100%;
  8234. }
  8235. #u19356_text {
  8236. border-width:0px;
  8237. word-wrap:break-word;
  8238. text-transform:none;
  8239. visibility:hidden;
  8240. }
  8241. #u19357_img {
  8242. border-width:0px;
  8243. position:absolute;
  8244. left:0px;
  8245. top:0px;
  8246. width:8px;
  8247. height:14px;
  8248. }
  8249. #u19357 {
  8250. border-width:0px;
  8251. position:absolute;
  8252. left:973px;
  8253. top:1191px;
  8254. width:8px;
  8255. height:14px;
  8256. display:flex;
  8257. font-family:'Microsoft YaHei', sans-serif;
  8258. font-weight:400;
  8259. font-style:normal;
  8260. font-size:12px;
  8261. }
  8262. #u19357 .text {
  8263. position:absolute;
  8264. align-self:center;
  8265. padding:2px 2px 2px 2px;
  8266. box-sizing:border-box;
  8267. width:100%;
  8268. }
  8269. #u19357_text {
  8270. border-width:0px;
  8271. word-wrap:break-word;
  8272. text-transform:none;
  8273. visibility:hidden;
  8274. }
  8275. #u19358 {
  8276. border-width:0px;
  8277. position:absolute;
  8278. left:0px;
  8279. top:0px;
  8280. width:0px;
  8281. height:0px;
  8282. }
  8283. #u19359_div {
  8284. border-width:0px;
  8285. position:absolute;
  8286. left:0px;
  8287. top:0px;
  8288. width:31px;
  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(228, 228, 228, 1);
  8296. border-radius:4px;
  8297. -moz-box-shadow:none;
  8298. -webkit-box-shadow:none;
  8299. box-shadow:none;
  8300. font-family:'Microsoft YaHei', sans-serif;
  8301. font-weight:400;
  8302. font-style:normal;
  8303. font-size:12px;
  8304. }
  8305. #u19359 {
  8306. border-width:0px;
  8307. position:absolute;
  8308. left:1195px;
  8309. top:1183px;
  8310. width:31px;
  8311. height:30px;
  8312. display:flex;
  8313. font-family:'Microsoft YaHei', sans-serif;
  8314. font-weight:400;
  8315. font-style:normal;
  8316. font-size:12px;
  8317. }
  8318. #u19359 .text {
  8319. position:absolute;
  8320. align-self:center;
  8321. padding:2px 2px 2px 2px;
  8322. box-sizing:border-box;
  8323. width:100%;
  8324. }
  8325. #u19359_text {
  8326. border-width:0px;
  8327. word-wrap:break-word;
  8328. text-transform:none;
  8329. visibility:hidden;
  8330. }
  8331. #u19360_img {
  8332. border-width:0px;
  8333. position:absolute;
  8334. left:0px;
  8335. top:0px;
  8336. width:8px;
  8337. height:14px;
  8338. }
  8339. #u19360 {
  8340. border-width:0px;
  8341. position:absolute;
  8342. left:1208px;
  8343. top:1191px;
  8344. width:8px;
  8345. height:14px;
  8346. display:flex;
  8347. font-family:'Microsoft YaHei', sans-serif;
  8348. font-weight:400;
  8349. font-style:normal;
  8350. font-size:12px;
  8351. }
  8352. #u19360 .text {
  8353. position:absolute;
  8354. align-self:center;
  8355. padding:2px 2px 2px 2px;
  8356. box-sizing:border-box;
  8357. width:100%;
  8358. }
  8359. #u19360_text {
  8360. border-width:0px;
  8361. word-wrap:break-word;
  8362. text-transform:none;
  8363. visibility:hidden;
  8364. }
  8365. #u19361 {
  8366. border-width:0px;
  8367. position:absolute;
  8368. left:0px;
  8369. top:0px;
  8370. width:0px;
  8371. height:0px;
  8372. }
  8373. #u19362_div {
  8374. border-width:0px;
  8375. position:absolute;
  8376. left:0px;
  8377. top:0px;
  8378. width:33px;
  8379. height:24px;
  8380. background:inherit;
  8381. background-color:rgba(255, 255, 255, 1);
  8382. border:none;
  8383. border-radius:0px;
  8384. -moz-box-shadow:none;
  8385. -webkit-box-shadow:none;
  8386. box-shadow:none;
  8387. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8388. font-weight:400;
  8389. font-style:normal;
  8390. font-size:14px;
  8391. color:#BCBCBC;
  8392. text-align:left;
  8393. }
  8394. #u19362 {
  8395. border-width:0px;
  8396. position:absolute;
  8397. left:1396px;
  8398. top:1186px;
  8399. width:33px;
  8400. height:24px;
  8401. display:flex;
  8402. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8403. font-weight:400;
  8404. font-style:normal;
  8405. font-size:14px;
  8406. color:#BCBCBC;
  8407. text-align:left;
  8408. }
  8409. #u19362 .text {
  8410. position:absolute;
  8411. align-self:center;
  8412. padding:2px 2px 2px 2px;
  8413. box-sizing:border-box;
  8414. width:100%;
  8415. }
  8416. #u19362_text {
  8417. border-width:0px;
  8418. white-space:nowrap;
  8419. text-transform:none;
  8420. }
  8421. #u19363_div {
  8422. border-width:0px;
  8423. position:absolute;
  8424. left:0px;
  8425. top:0px;
  8426. width:40px;
  8427. height:30px;
  8428. background:inherit;
  8429. background-color:rgba(255, 255, 255, 1);
  8430. box-sizing:border-box;
  8431. border-width:1px;
  8432. border-style:solid;
  8433. border-color:rgba(228, 228, 228, 1);
  8434. border-radius:4px;
  8435. -moz-box-shadow:none;
  8436. -webkit-box-shadow:none;
  8437. box-shadow:none;
  8438. font-family:'Microsoft YaHei', sans-serif;
  8439. font-weight:400;
  8440. font-style:normal;
  8441. font-size:14px;
  8442. }
  8443. #u19363 {
  8444. border-width:0px;
  8445. position:absolute;
  8446. left:1431px;
  8447. top:1183px;
  8448. width:40px;
  8449. height:30px;
  8450. display:flex;
  8451. font-family:'Microsoft YaHei', sans-serif;
  8452. font-weight:400;
  8453. font-style:normal;
  8454. font-size:14px;
  8455. }
  8456. #u19363 .text {
  8457. position:absolute;
  8458. align-self:center;
  8459. padding:2px 2px 2px 2px;
  8460. box-sizing:border-box;
  8461. width:100%;
  8462. }
  8463. #u19363_text {
  8464. border-width:0px;
  8465. word-wrap:break-word;
  8466. text-transform:none;
  8467. visibility:hidden;
  8468. }
  8469. #u19364_div {
  8470. border-width:0px;
  8471. position:absolute;
  8472. left:0px;
  8473. top:0px;
  8474. width:19px;
  8475. height:24px;
  8476. background:inherit;
  8477. background-color:rgba(255, 255, 255, 1);
  8478. border:none;
  8479. border-radius:0px;
  8480. -moz-box-shadow:none;
  8481. -webkit-box-shadow:none;
  8482. box-shadow:none;
  8483. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8484. font-weight:400;
  8485. font-style:normal;
  8486. font-size:14px;
  8487. color:#BCBCBC;
  8488. text-align:left;
  8489. }
  8490. #u19364 {
  8491. border-width:0px;
  8492. position:absolute;
  8493. left:1473px;
  8494. top:1187px;
  8495. width:19px;
  8496. height:24px;
  8497. display:flex;
  8498. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8499. font-weight:400;
  8500. font-style:normal;
  8501. font-size:14px;
  8502. color:#BCBCBC;
  8503. text-align:left;
  8504. }
  8505. #u19364 .text {
  8506. position:absolute;
  8507. align-self:center;
  8508. padding:2px 2px 2px 2px;
  8509. box-sizing:border-box;
  8510. width:100%;
  8511. }
  8512. #u19364_text {
  8513. border-width:0px;
  8514. white-space:nowrap;
  8515. text-transform:none;
  8516. }
  8517. #u19365_input {
  8518. position:absolute;
  8519. left:0px;
  8520. top:0px;
  8521. width:34px;
  8522. height:25px;
  8523. padding:2px 2px 2px 2px;
  8524. font-family:'Microsoft YaHei', sans-serif;
  8525. font-weight:400;
  8526. font-style:normal;
  8527. font-size:13px;
  8528. letter-spacing:normal;
  8529. color:#000000;
  8530. vertical-align:none;
  8531. text-align:left;
  8532. text-transform:none;
  8533. background-color:transparent;
  8534. border-color:transparent;
  8535. }
  8536. #u19365_input.disabled {
  8537. position:absolute;
  8538. left:0px;
  8539. top:0px;
  8540. width:34px;
  8541. height:25px;
  8542. padding:2px 2px 2px 2px;
  8543. font-family:'Microsoft YaHei', sans-serif;
  8544. font-weight:400;
  8545. font-style:normal;
  8546. font-size:13px;
  8547. letter-spacing:normal;
  8548. color:#000000;
  8549. vertical-align:none;
  8550. text-align:left;
  8551. text-transform:none;
  8552. background-color:transparent;
  8553. border-color:transparent;
  8554. }
  8555. #u19365_div {
  8556. border-width:0px;
  8557. position:absolute;
  8558. left:0px;
  8559. top:0px;
  8560. width:34px;
  8561. height:25px;
  8562. background:inherit;
  8563. background-color:rgba(255, 255, 255, 1);
  8564. border:none;
  8565. border-radius:0px;
  8566. -moz-box-shadow:none;
  8567. -webkit-box-shadow:none;
  8568. box-shadow:none;
  8569. font-family:'Microsoft YaHei', sans-serif;
  8570. font-weight:400;
  8571. font-style:normal;
  8572. }
  8573. #u19365 {
  8574. border-width:0px;
  8575. position:absolute;
  8576. left:1434px;
  8577. top:1185px;
  8578. width:34px;
  8579. height:25px;
  8580. display:flex;
  8581. font-family:'Microsoft YaHei', sans-serif;
  8582. font-weight:400;
  8583. font-style:normal;
  8584. }
  8585. #u19365 .text {
  8586. position:absolute;
  8587. align-self:center;
  8588. padding:2px 2px 2px 2px;
  8589. box-sizing:border-box;
  8590. width:100%;
  8591. }
  8592. #u19365_div.disabled {
  8593. border-width:0px;
  8594. position:absolute;
  8595. left:0px;
  8596. top:0px;
  8597. width:34px;
  8598. height:25px;
  8599. background:inherit;
  8600. background-color:rgba(240, 240, 240, 1);
  8601. border:none;
  8602. border-radius:0px;
  8603. -moz-box-shadow:none;
  8604. -webkit-box-shadow:none;
  8605. box-shadow:none;
  8606. font-family:'Microsoft YaHei', sans-serif;
  8607. font-weight:400;
  8608. font-style:normal;
  8609. }
  8610. #u19365.disabled {
  8611. }
  8612. #u19366_div {
  8613. border-width:0px;
  8614. position:absolute;
  8615. left:0px;
  8616. top:0px;
  8617. width:55px;
  8618. height:30px;
  8619. background:inherit;
  8620. background-color:rgba(255, 255, 255, 1);
  8621. box-sizing:border-box;
  8622. border-width:1px;
  8623. border-style:solid;
  8624. border-color:rgba(170, 170, 170, 1);
  8625. border-radius:4px;
  8626. -moz-box-shadow:none;
  8627. -webkit-box-shadow:none;
  8628. box-shadow:none;
  8629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8630. font-weight:400;
  8631. font-style:normal;
  8632. font-size:12px;
  8633. color:#555555;
  8634. }
  8635. #u19366 {
  8636. border-width:0px;
  8637. position:absolute;
  8638. left:511px;
  8639. top:189px;
  8640. width:55px;
  8641. height:30px;
  8642. display:flex;
  8643. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8644. font-weight:400;
  8645. font-style:normal;
  8646. font-size:12px;
  8647. color:#555555;
  8648. }
  8649. #u19366 .text {
  8650. position:absolute;
  8651. align-self:center;
  8652. padding:5px 15px 5px 15px;
  8653. box-sizing:border-box;
  8654. width:100%;
  8655. }
  8656. #u19366_text {
  8657. border-width:0px;
  8658. white-space:nowrap;
  8659. text-transform:none;
  8660. }
  8661. #u19367_div {
  8662. border-width:0px;
  8663. position:absolute;
  8664. left:0px;
  8665. top:0px;
  8666. width:59px;
  8667. height:30px;
  8668. background:inherit;
  8669. background-color:rgba(255, 255, 255, 1);
  8670. box-sizing:border-box;
  8671. border-width:1px;
  8672. border-style:solid;
  8673. border-color:rgba(170, 170, 170, 1);
  8674. border-radius:4px;
  8675. -moz-box-shadow:none;
  8676. -webkit-box-shadow:none;
  8677. box-shadow:none;
  8678. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8679. font-weight:400;
  8680. font-style:normal;
  8681. font-size:14px;
  8682. color:#555555;
  8683. }
  8684. #u19367 {
  8685. border-width:0px;
  8686. position:absolute;
  8687. left:442px;
  8688. top:189px;
  8689. width:59px;
  8690. height:30px;
  8691. display:flex;
  8692. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8693. font-weight:400;
  8694. font-style:normal;
  8695. font-size:14px;
  8696. color:#555555;
  8697. }
  8698. #u19367 .text {
  8699. position:absolute;
  8700. align-self:center;
  8701. padding:5px 15px 5px 15px;
  8702. box-sizing:border-box;
  8703. width:100%;
  8704. }
  8705. #u19367_text {
  8706. border-width:0px;
  8707. white-space:nowrap;
  8708. text-transform:none;
  8709. }
  8710. #u19368 {
  8711. border-width:0px;
  8712. position:absolute;
  8713. left:0px;
  8714. top:0px;
  8715. width:0px;
  8716. height:0px;
  8717. }
  8718. #u19369_div {
  8719. border-width:0px;
  8720. position:absolute;
  8721. left:0px;
  8722. top:0px;
  8723. width:140px;
  8724. height:30px;
  8725. background:inherit;
  8726. background-color:rgba(255, 255, 255, 1);
  8727. box-sizing:border-box;
  8728. border-width:1px;
  8729. border-style:solid;
  8730. border-color:rgba(215, 215, 215, 1);
  8731. border-radius:4px;
  8732. -moz-box-shadow:none;
  8733. -webkit-box-shadow:none;
  8734. box-shadow:none;
  8735. font-size:14px;
  8736. }
  8737. #u19369 {
  8738. border-width:0px;
  8739. position:absolute;
  8740. left:953px;
  8741. top:140px;
  8742. width:140px;
  8743. height:30px;
  8744. display:flex;
  8745. font-size:14px;
  8746. }
  8747. #u19369 .text {
  8748. position:absolute;
  8749. align-self:center;
  8750. padding:2px 2px 2px 2px;
  8751. box-sizing:border-box;
  8752. width:100%;
  8753. }
  8754. #u19369_text {
  8755. border-width:0px;
  8756. word-wrap:break-word;
  8757. text-transform:none;
  8758. visibility:hidden;
  8759. }
  8760. #u19370_input {
  8761. position:absolute;
  8762. left:0px;
  8763. top:0px;
  8764. width:134px;
  8765. height:23px;
  8766. padding:2px 2px 2px 2px;
  8767. font-family:'ArialMT', 'Arial', sans-serif;
  8768. font-weight:400;
  8769. font-style:normal;
  8770. font-size:14px;
  8771. letter-spacing:normal;
  8772. color:#AAAAAA;
  8773. vertical-align:none;
  8774. text-align:left;
  8775. text-transform:none;
  8776. background-color:transparent;
  8777. border-color:transparent;
  8778. }
  8779. #u19370_input.disabled {
  8780. position:absolute;
  8781. left:0px;
  8782. top:0px;
  8783. width:134px;
  8784. height:23px;
  8785. padding:2px 2px 2px 2px;
  8786. font-family:'ArialMT', 'Arial', sans-serif;
  8787. font-weight:400;
  8788. font-style:normal;
  8789. font-size:14px;
  8790. letter-spacing:normal;
  8791. color:#AAAAAA;
  8792. vertical-align:none;
  8793. text-align:left;
  8794. text-transform:none;
  8795. background-color:transparent;
  8796. border-color:transparent;
  8797. }
  8798. #u19370_div {
  8799. border-width:0px;
  8800. position:absolute;
  8801. left:0px;
  8802. top:0px;
  8803. width:134px;
  8804. height:23px;
  8805. background:inherit;
  8806. background-color:rgba(255, 255, 255, 1);
  8807. border:none;
  8808. border-radius:0px;
  8809. -moz-box-shadow:none;
  8810. -webkit-box-shadow:none;
  8811. box-shadow:none;
  8812. font-size:14px;
  8813. color:#AAAAAA;
  8814. }
  8815. #u19370 {
  8816. border-width:0px;
  8817. position:absolute;
  8818. left:957px;
  8819. top:142px;
  8820. width:134px;
  8821. height:23px;
  8822. display:flex;
  8823. font-size:14px;
  8824. color:#AAAAAA;
  8825. }
  8826. #u19370 .text {
  8827. position:absolute;
  8828. align-self:flex-start;
  8829. padding:2px 2px 2px 2px;
  8830. box-sizing:border-box;
  8831. width:100%;
  8832. }
  8833. #u19370_div.disabled {
  8834. border-width:0px;
  8835. position:absolute;
  8836. left:0px;
  8837. top:0px;
  8838. width:134px;
  8839. height:23px;
  8840. background:inherit;
  8841. background-color:rgba(240, 240, 240, 1);
  8842. border:none;
  8843. border-radius:0px;
  8844. -moz-box-shadow:none;
  8845. -webkit-box-shadow:none;
  8846. box-shadow:none;
  8847. font-size:14px;
  8848. color:#AAAAAA;
  8849. }
  8850. #u19370.disabled {
  8851. }
  8852. .u19370_input_option {
  8853. font-size:14px;
  8854. }
  8855. #u19371 label {
  8856. left:0px;
  8857. width:100%;
  8858. }
  8859. #u19371_img {
  8860. border-width:0px;
  8861. position:absolute;
  8862. left:0px;
  8863. top:0px;
  8864. width:12px;
  8865. height:12px;
  8866. }
  8867. #u19371 {
  8868. border-width:0px;
  8869. position:absolute;
  8870. left:367px;
  8871. top:247px;
  8872. width:42px;
  8873. height:16px;
  8874. display:flex;
  8875. }
  8876. #u19371 .text {
  8877. position:absolute;
  8878. align-self:center;
  8879. padding:0px 2px 0px 2px;
  8880. box-sizing:border-box;
  8881. }
  8882. #u19371_img.selected {
  8883. }
  8884. #u19371.selected {
  8885. }
  8886. #u19371_img.disabled {
  8887. }
  8888. #u19371.disabled {
  8889. }
  8890. #u19371_img.selectedDisabled {
  8891. }
  8892. #u19371.selectedDisabled {
  8893. }
  8894. #u19371_text {
  8895. border-width:0px;
  8896. position:absolute;
  8897. left:14px;
  8898. top:0px;
  8899. width:26px;
  8900. word-wrap:break-word;
  8901. text-transform:none;
  8902. visibility:hidden;
  8903. }
  8904. #u19371_input {
  8905. border-width:0px;
  8906. position:absolute;
  8907. left:0px;
  8908. top:0px;
  8909. width:0px;
  8910. height:0px;
  8911. opacity:0;
  8912. }
  8913. #u19372 label {
  8914. left:0px;
  8915. width:100%;
  8916. }
  8917. #u19372_img {
  8918. border-width:0px;
  8919. position:absolute;
  8920. left:0px;
  8921. top:0px;
  8922. width:12px;
  8923. height:12px;
  8924. }
  8925. #u19372 {
  8926. border-width:0px;
  8927. position:absolute;
  8928. left:367px;
  8929. top:283px;
  8930. width:42px;
  8931. height:16px;
  8932. display:flex;
  8933. }
  8934. #u19372 .text {
  8935. position:absolute;
  8936. align-self:center;
  8937. padding:0px 2px 0px 2px;
  8938. box-sizing:border-box;
  8939. }
  8940. #u19372_img.selected {
  8941. }
  8942. #u19372.selected {
  8943. }
  8944. #u19372_img.disabled {
  8945. }
  8946. #u19372.disabled {
  8947. }
  8948. #u19372_img.selectedDisabled {
  8949. }
  8950. #u19372.selectedDisabled {
  8951. }
  8952. #u19372_text {
  8953. border-width:0px;
  8954. position:absolute;
  8955. left:14px;
  8956. top:0px;
  8957. width:26px;
  8958. word-wrap:break-word;
  8959. text-transform:none;
  8960. visibility:hidden;
  8961. }
  8962. #u19372_input {
  8963. border-width:0px;
  8964. position:absolute;
  8965. left:0px;
  8966. top:0px;
  8967. width:0px;
  8968. height:0px;
  8969. opacity:0;
  8970. }
  8971. #u19373 {
  8972. border-width:0px;
  8973. position:absolute;
  8974. left:0px;
  8975. top:0px;
  8976. width:0px;
  8977. height:0px;
  8978. }
  8979. #u19374_div {
  8980. border-width:0px;
  8981. position:absolute;
  8982. left:0px;
  8983. top:0px;
  8984. width:140px;
  8985. height:30px;
  8986. background:inherit;
  8987. background-color:rgba(255, 255, 255, 1);
  8988. box-sizing:border-box;
  8989. border-width:1px;
  8990. border-style:solid;
  8991. border-color:rgba(215, 215, 215, 1);
  8992. border-radius:4px;
  8993. -moz-box-shadow:none;
  8994. -webkit-box-shadow:none;
  8995. box-shadow:none;
  8996. font-size:14px;
  8997. }
  8998. #u19374 {
  8999. border-width:0px;
  9000. position:absolute;
  9001. left:650px;
  9002. top:140px;
  9003. width:140px;
  9004. height:30px;
  9005. display:flex;
  9006. font-size:14px;
  9007. }
  9008. #u19374 .text {
  9009. position:absolute;
  9010. align-self:center;
  9011. padding:2px 2px 2px 2px;
  9012. box-sizing:border-box;
  9013. width:100%;
  9014. }
  9015. #u19374_text {
  9016. border-width:0px;
  9017. word-wrap:break-word;
  9018. text-transform:none;
  9019. visibility:hidden;
  9020. }
  9021. #u19375_input {
  9022. position:absolute;
  9023. left:0px;
  9024. top:0px;
  9025. width:134px;
  9026. height:23px;
  9027. padding:2px 2px 2px 2px;
  9028. font-family:'ArialMT', 'Arial', sans-serif;
  9029. font-weight:400;
  9030. font-style:normal;
  9031. font-size:14px;
  9032. letter-spacing:normal;
  9033. color:#AAAAAA;
  9034. vertical-align:none;
  9035. text-align:left;
  9036. text-transform:none;
  9037. background-color:transparent;
  9038. border-color:transparent;
  9039. }
  9040. #u19375_input.disabled {
  9041. position:absolute;
  9042. left:0px;
  9043. top:0px;
  9044. width:134px;
  9045. height:23px;
  9046. padding:2px 2px 2px 2px;
  9047. font-family:'ArialMT', 'Arial', sans-serif;
  9048. font-weight:400;
  9049. font-style:normal;
  9050. font-size:14px;
  9051. letter-spacing:normal;
  9052. color:#AAAAAA;
  9053. vertical-align:none;
  9054. text-align:left;
  9055. text-transform:none;
  9056. background-color:transparent;
  9057. border-color:transparent;
  9058. }
  9059. #u19375_div {
  9060. border-width:0px;
  9061. position:absolute;
  9062. left:0px;
  9063. top:0px;
  9064. width:134px;
  9065. height:23px;
  9066. background:inherit;
  9067. background-color:rgba(255, 255, 255, 1);
  9068. border:none;
  9069. border-radius:0px;
  9070. -moz-box-shadow:none;
  9071. -webkit-box-shadow:none;
  9072. box-shadow:none;
  9073. font-size:14px;
  9074. color:#AAAAAA;
  9075. }
  9076. #u19375 {
  9077. border-width:0px;
  9078. position:absolute;
  9079. left:654px;
  9080. top:142px;
  9081. width:134px;
  9082. height:23px;
  9083. display:flex;
  9084. font-size:14px;
  9085. color:#AAAAAA;
  9086. }
  9087. #u19375 .text {
  9088. position:absolute;
  9089. align-self:flex-start;
  9090. padding:2px 2px 2px 2px;
  9091. box-sizing:border-box;
  9092. width:100%;
  9093. }
  9094. #u19375_div.disabled {
  9095. border-width:0px;
  9096. position:absolute;
  9097. left:0px;
  9098. top:0px;
  9099. width:134px;
  9100. height:23px;
  9101. background:inherit;
  9102. background-color:rgba(240, 240, 240, 1);
  9103. border:none;
  9104. border-radius:0px;
  9105. -moz-box-shadow:none;
  9106. -webkit-box-shadow:none;
  9107. box-shadow:none;
  9108. font-size:14px;
  9109. color:#AAAAAA;
  9110. }
  9111. #u19375.disabled {
  9112. }
  9113. .u19375_input_option {
  9114. font-size:14px;
  9115. }