styles.css 216 KB

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