styles.css 151 KB

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