styles.css 214 KB

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