styles.css 151 KB

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