styles.css 171 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1600px;
  7. margin-left:auto;
  8. margin-right:auto;
  9. text-align:left;
  10. }
  11. .form_sketch {
  12. border-color:transparent;
  13. background-color:transparent;
  14. }
  15. #base {
  16. position:absolute;
  17. z-index:0;
  18. }
  19. #u19834_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. #u19834 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u19834 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u19834_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u19835_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. #u19835 {
  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. #u19835 .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. #u19835_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u19836_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. #u19836 {
  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. #u19836 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u19836_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u19837 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u19838_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u19838 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u19838 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u19838_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u19839_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. #u19839 {
  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. #u19839 .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. #u19839_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u19840_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. #u19840 {
  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. #u19840 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u19840_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u19841 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u19842_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. #u19842 {
  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. #u19842 .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. #u19842_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u19843_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u19843 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:175px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u19843 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u19843_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u19844 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u19845_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. #u19845 {
  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. #u19845 .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. #u19845_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u19846_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u19846 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:385px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u19846 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u19846_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u19847 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u19848_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. #u19848 {
  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. #u19848 .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. #u19848_text {
  475. border-width:0px;
  476. white-space:nowrap;
  477. text-transform:none;
  478. }
  479. #u19849_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:14px;
  485. height:14px;
  486. }
  487. #u19849 {
  488. border-width:0px;
  489. position:absolute;
  490. left:20px;
  491. top:137px;
  492. width:14px;
  493. height:14px;
  494. display:flex;
  495. }
  496. #u19849 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u19849_text {
  504. border-width:0px;
  505. word-wrap:break-word;
  506. text-transform:none;
  507. visibility:hidden;
  508. }
  509. #u19850 {
  510. border-width:0px;
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:0px;
  515. height:0px;
  516. }
  517. #u19851_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. #u19851 {
  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. #u19851 .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. #u19851_text {
  559. border-width:0px;
  560. white-space:nowrap;
  561. text-transform:none;
  562. }
  563. #u19852_img {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:14px;
  569. height:14px;
  570. }
  571. #u19852 {
  572. border-width:0px;
  573. position:absolute;
  574. left:20px;
  575. top:427px;
  576. width:14px;
  577. height:14px;
  578. display:flex;
  579. }
  580. #u19852 .text {
  581. position:absolute;
  582. align-self:center;
  583. padding:2px 2px 2px 2px;
  584. box-sizing:border-box;
  585. width:100%;
  586. }
  587. #u19852_text {
  588. border-width:0px;
  589. word-wrap:break-word;
  590. text-transform:none;
  591. visibility:hidden;
  592. }
  593. #u19853 {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:0px;
  599. height:0px;
  600. }
  601. #u19854_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. #u19854 {
  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. #u19854 .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. #u19854_text {
  643. border-width:0px;
  644. white-space:nowrap;
  645. text-transform:none;
  646. }
  647. #u19855_img {
  648. border-width:0px;
  649. position:absolute;
  650. left:0px;
  651. top:0px;
  652. width:14px;
  653. height:14px;
  654. }
  655. #u19855 {
  656. border-width:0px;
  657. position:absolute;
  658. left:20px;
  659. top:301px;
  660. width:14px;
  661. height:14px;
  662. display:flex;
  663. }
  664. #u19855 .text {
  665. position:absolute;
  666. align-self:center;
  667. padding:2px 2px 2px 2px;
  668. box-sizing:border-box;
  669. width:100%;
  670. }
  671. #u19855_text {
  672. border-width:0px;
  673. word-wrap:break-word;
  674. text-transform:none;
  675. visibility:hidden;
  676. }
  677. #u19856 {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:0px;
  683. height:0px;
  684. }
  685. #u19857_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. #u19857 {
  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. #u19857 .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. #u19857_text {
  727. border-width:0px;
  728. white-space:nowrap;
  729. text-transform:none;
  730. }
  731. #u19858_img {
  732. border-width:0px;
  733. position:absolute;
  734. left:0px;
  735. top:0px;
  736. width:14px;
  737. height:14px;
  738. }
  739. #u19858 {
  740. border-width:0px;
  741. position:absolute;
  742. left:20px;
  743. top:217px;
  744. width:14px;
  745. height:14px;
  746. display:flex;
  747. }
  748. #u19858 .text {
  749. position:absolute;
  750. align-self:center;
  751. padding:2px 2px 2px 2px;
  752. box-sizing:border-box;
  753. width:100%;
  754. }
  755. #u19858_text {
  756. border-width:0px;
  757. word-wrap:break-word;
  758. text-transform:none;
  759. visibility:hidden;
  760. }
  761. #u19859 {
  762. border-width:0px;
  763. position:absolute;
  764. left:0px;
  765. top:0px;
  766. width:0px;
  767. height:0px;
  768. }
  769. #u19860_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. #u19860 {
  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. #u19860 .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. #u19860_text {
  811. border-width:0px;
  812. white-space:nowrap;
  813. text-transform:none;
  814. }
  815. #u19861_img {
  816. border-width:0px;
  817. position:absolute;
  818. left:0px;
  819. top:0px;
  820. width:14px;
  821. height:14px;
  822. }
  823. #u19861 {
  824. border-width:0px;
  825. position:absolute;
  826. left:20px;
  827. top:343px;
  828. width:14px;
  829. height:14px;
  830. display:flex;
  831. }
  832. #u19861 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 2px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u19861_text {
  840. border-width:0px;
  841. word-wrap:break-word;
  842. text-transform:none;
  843. visibility:hidden;
  844. }
  845. #u19862 {
  846. border-width:0px;
  847. position:absolute;
  848. left:0px;
  849. top:0px;
  850. width:0px;
  851. height:0px;
  852. }
  853. #u19863_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. #u19863 {
  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. #u19863 .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. #u19863_text {
  895. border-width:0px;
  896. white-space:nowrap;
  897. text-transform:none;
  898. }
  899. #u19864_img {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:14px;
  905. height:14px;
  906. }
  907. #u19864 {
  908. border-width:0px;
  909. position:absolute;
  910. left:20px;
  911. top:469px;
  912. width:14px;
  913. height:14px;
  914. display:flex;
  915. }
  916. #u19864 .text {
  917. position:absolute;
  918. align-self:center;
  919. padding:2px 2px 2px 2px;
  920. box-sizing:border-box;
  921. width:100%;
  922. }
  923. #u19864_text {
  924. border-width:0px;
  925. word-wrap:break-word;
  926. text-transform:none;
  927. visibility:hidden;
  928. }
  929. #u19865 {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:0px;
  935. height:0px;
  936. }
  937. #u19866_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. #u19866 {
  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. #u19866 .text {
  970. position:absolute;
  971. align-self:center;
  972. padding:0px 0px 0px 0px;
  973. box-sizing:border-box;
  974. width:100%;
  975. }
  976. #u19866_text {
  977. border-width:0px;
  978. white-space:nowrap;
  979. text-transform:none;
  980. }
  981. #u19867_img {
  982. border-width:0px;
  983. position:absolute;
  984. left:0px;
  985. top:0px;
  986. width:22px;
  987. height:22px;
  988. }
  989. #u19867 {
  990. border-width:0px;
  991. position:absolute;
  992. left:20px;
  993. top:1144px;
  994. width:22px;
  995. height:22px;
  996. display:flex;
  997. }
  998. #u19867 .text {
  999. position:absolute;
  1000. align-self:center;
  1001. padding:2px 2px 2px 2px;
  1002. box-sizing:border-box;
  1003. width:100%;
  1004. }
  1005. #u19867_text {
  1006. border-width:0px;
  1007. word-wrap:break-word;
  1008. text-transform:none;
  1009. visibility:hidden;
  1010. }
  1011. #u19868 {
  1012. border-width:0px;
  1013. position:absolute;
  1014. left:0px;
  1015. top:0px;
  1016. width:0px;
  1017. height:0px;
  1018. }
  1019. #u19869_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. #u19869 {
  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. #u19869 .text {
  1052. position:absolute;
  1053. align-self:center;
  1054. padding:0px 0px 0px 0px;
  1055. box-sizing:border-box;
  1056. width:100%;
  1057. }
  1058. #u19869_text {
  1059. border-width:0px;
  1060. white-space:nowrap;
  1061. text-transform:none;
  1062. }
  1063. #u19870_img {
  1064. border-width:0px;
  1065. position:absolute;
  1066. left:0px;
  1067. top:0px;
  1068. width:22px;
  1069. height:22px;
  1070. }
  1071. #u19870 {
  1072. border-width:0px;
  1073. position:absolute;
  1074. left:20px;
  1075. top:1186px;
  1076. width:22px;
  1077. height:22px;
  1078. display:flex;
  1079. }
  1080. #u19870 .text {
  1081. position:absolute;
  1082. align-self:center;
  1083. padding:2px 2px 2px 2px;
  1084. box-sizing:border-box;
  1085. width:100%;
  1086. }
  1087. #u19870_text {
  1088. border-width:0px;
  1089. word-wrap:break-word;
  1090. text-transform:none;
  1091. visibility:hidden;
  1092. }
  1093. #u19871 {
  1094. border-width:0px;
  1095. position:absolute;
  1096. left:0px;
  1097. top:0px;
  1098. width:0px;
  1099. height:0px;
  1100. }
  1101. #u19872_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. #u19872 {
  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. #u19872 .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. #u19872_text {
  1143. border-width:0px;
  1144. white-space:nowrap;
  1145. text-transform:none;
  1146. }
  1147. #u19873_img {
  1148. border-width:0px;
  1149. position:absolute;
  1150. left:0px;
  1151. top:0px;
  1152. width:14px;
  1153. height:14px;
  1154. }
  1155. #u19873 {
  1156. border-width:0px;
  1157. position:absolute;
  1158. left:20px;
  1159. top:259px;
  1160. width:14px;
  1161. height:14px;
  1162. display:flex;
  1163. }
  1164. #u19873 .text {
  1165. position:absolute;
  1166. align-self:center;
  1167. padding:2px 2px 2px 2px;
  1168. box-sizing:border-box;
  1169. width:100%;
  1170. }
  1171. #u19873_text {
  1172. border-width:0px;
  1173. word-wrap:break-word;
  1174. text-transform:none;
  1175. visibility:hidden;
  1176. }
  1177. #u19874 {
  1178. border-width:0px;
  1179. position:absolute;
  1180. left:0px;
  1181. top:0px;
  1182. width:0px;
  1183. height:0px;
  1184. }
  1185. #u19875_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. #u19875_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. #u19875_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. #u19875 {
  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. #u19875 .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. #u19875_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. #u19875.disabled {
  1276. }
  1277. .u19875_input_option {
  1278. font-size:14px;
  1279. }
  1280. #u19876_img {
  1281. border-width:0px;
  1282. position:absolute;
  1283. left:0px;
  1284. top:0px;
  1285. width:22px;
  1286. height:22px;
  1287. }
  1288. #u19876 {
  1289. border-width:0px;
  1290. position:absolute;
  1291. left:1194px;
  1292. top:14px;
  1293. width:22px;
  1294. height:22px;
  1295. display:flex;
  1296. }
  1297. #u19876 .text {
  1298. position:absolute;
  1299. align-self:center;
  1300. padding:2px 2px 2px 2px;
  1301. box-sizing:border-box;
  1302. width:100%;
  1303. }
  1304. #u19876_text {
  1305. border-width:0px;
  1306. word-wrap:break-word;
  1307. text-transform:none;
  1308. visibility:hidden;
  1309. }
  1310. #u19877_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. #u19877 {
  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. #u19877 .text {
  1345. position:absolute;
  1346. align-self:center;
  1347. padding:0px 0px 0px 0px;
  1348. box-sizing:border-box;
  1349. width:100%;
  1350. }
  1351. #u19877_text {
  1352. border-width:0px;
  1353. word-wrap:break-word;
  1354. text-transform:none;
  1355. }
  1356. #u19878_img {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:0px;
  1360. top:0px;
  1361. width:2px;
  1362. height:12px;
  1363. }
  1364. #u19878 {
  1365. border-width:0px;
  1366. position:absolute;
  1367. left:1452px;
  1368. top:19px;
  1369. width:1px;
  1370. height:11px;
  1371. display:flex;
  1372. }
  1373. #u19878 .text {
  1374. position:absolute;
  1375. align-self:center;
  1376. padding:2px 2px 2px 2px;
  1377. box-sizing:border-box;
  1378. width:100%;
  1379. }
  1380. #u19878_text {
  1381. border-width:0px;
  1382. word-wrap:break-word;
  1383. text-transform:none;
  1384. visibility:hidden;
  1385. }
  1386. #u19879 {
  1387. border-width:0px;
  1388. position:absolute;
  1389. left:0px;
  1390. top:0px;
  1391. width:0px;
  1392. height:0px;
  1393. }
  1394. #u19880_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. #u19880 {
  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. #u19880 .text {
  1427. position:absolute;
  1428. align-self:center;
  1429. padding:0px 0px 0px 0px;
  1430. box-sizing:border-box;
  1431. width:100%;
  1432. }
  1433. #u19880_text {
  1434. border-width:0px;
  1435. white-space:nowrap;
  1436. text-transform:none;
  1437. }
  1438. #u19881_img {
  1439. border-width:0px;
  1440. position:absolute;
  1441. left:0px;
  1442. top:0px;
  1443. width:22px;
  1444. height:22px;
  1445. }
  1446. #u19881 {
  1447. border-width:0px;
  1448. position:absolute;
  1449. left:20px;
  1450. top:1081px;
  1451. width:22px;
  1452. height:22px;
  1453. display:flex;
  1454. }
  1455. #u19881 .text {
  1456. position:absolute;
  1457. align-self:center;
  1458. padding:2px 2px 2px 2px;
  1459. box-sizing:border-box;
  1460. width:100%;
  1461. }
  1462. #u19881_text {
  1463. border-width:0px;
  1464. word-wrap:break-word;
  1465. text-transform:none;
  1466. visibility:hidden;
  1467. }
  1468. #u19882_img {
  1469. border-width:0px;
  1470. position:absolute;
  1471. left:0px;
  1472. top:0px;
  1473. width:69px;
  1474. height:2px;
  1475. }
  1476. #u19882 {
  1477. border-width:0px;
  1478. position:absolute;
  1479. left:20px;
  1480. top:1123px;
  1481. width:68px;
  1482. height:1px;
  1483. display:flex;
  1484. }
  1485. #u19882 .text {
  1486. position:absolute;
  1487. align-self:center;
  1488. padding:2px 2px 2px 2px;
  1489. box-sizing:border-box;
  1490. width:100%;
  1491. }
  1492. #u19882_text {
  1493. border-width:0px;
  1494. word-wrap:break-word;
  1495. text-transform:none;
  1496. visibility:hidden;
  1497. }
  1498. #u19883_img {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:0px;
  1502. top:0px;
  1503. width:69px;
  1504. height:2px;
  1505. }
  1506. #u19883 {
  1507. border-width:0px;
  1508. position:absolute;
  1509. left:20px;
  1510. top:1061px;
  1511. width:68px;
  1512. height:1px;
  1513. display:flex;
  1514. }
  1515. #u19883 .text {
  1516. position:absolute;
  1517. align-self:center;
  1518. padding:2px 2px 2px 2px;
  1519. box-sizing:border-box;
  1520. width:100%;
  1521. }
  1522. #u19883_text {
  1523. border-width:0px;
  1524. word-wrap:break-word;
  1525. text-transform:none;
  1526. visibility:hidden;
  1527. }
  1528. #u19884_img {
  1529. border-width:0px;
  1530. position:absolute;
  1531. left:0px;
  1532. top:0px;
  1533. width:57px;
  1534. height:2px;
  1535. }
  1536. #u19884 {
  1537. border-width:0px;
  1538. position:absolute;
  1539. left:20px;
  1540. top:112px;
  1541. width:56px;
  1542. height:1px;
  1543. display:flex;
  1544. }
  1545. #u19884 .text {
  1546. position:absolute;
  1547. align-self:center;
  1548. padding:2px 2px 2px 2px;
  1549. box-sizing:border-box;
  1550. width:100%;
  1551. }
  1552. #u19884_text {
  1553. border-width:0px;
  1554. word-wrap:break-word;
  1555. text-transform:none;
  1556. visibility:hidden;
  1557. }
  1558. #u19885 {
  1559. border-width:0px;
  1560. position:absolute;
  1561. left:0px;
  1562. top:0px;
  1563. width:0px;
  1564. height:0px;
  1565. }
  1566. #u19886_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. #u19886 {
  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. #u19886 .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. #u19886_text {
  1608. border-width:0px;
  1609. white-space:nowrap;
  1610. text-transform:none;
  1611. }
  1612. #u19887_img {
  1613. border-width:0px;
  1614. position:absolute;
  1615. left:0px;
  1616. top:0px;
  1617. width:18px;
  1618. height:14px;
  1619. }
  1620. #u19887 {
  1621. border-width:0px;
  1622. position:absolute;
  1623. left:20px;
  1624. top:75px;
  1625. width:18px;
  1626. height:14px;
  1627. display:flex;
  1628. }
  1629. #u19887 .text {
  1630. position:absolute;
  1631. align-self:center;
  1632. padding:2px 2px 2px 2px;
  1633. box-sizing:border-box;
  1634. width:100%;
  1635. }
  1636. #u19887_text {
  1637. border-width:0px;
  1638. word-wrap:break-word;
  1639. text-transform:none;
  1640. visibility:hidden;
  1641. }
  1642. #u19888_div {
  1643. border-width:0px;
  1644. position:absolute;
  1645. left:0px;
  1646. top:0px;
  1647. width:1280px;
  1648. height:1180px;
  1649. background:inherit;
  1650. background-color:rgba(242, 242, 242, 1);
  1651. border:none;
  1652. border-radius:0px;
  1653. -moz-box-shadow:none;
  1654. -webkit-box-shadow:none;
  1655. box-shadow:none;
  1656. }
  1657. #u19888 {
  1658. border-width:0px;
  1659. position:absolute;
  1660. left:320px;
  1661. top:50px;
  1662. width:1280px;
  1663. height:1180px;
  1664. display:flex;
  1665. }
  1666. #u19888 .text {
  1667. position:absolute;
  1668. align-self:center;
  1669. padding:2px 2px 2px 2px;
  1670. box-sizing:border-box;
  1671. width:100%;
  1672. }
  1673. #u19888_text {
  1674. border-width:0px;
  1675. word-wrap:break-word;
  1676. text-transform:none;
  1677. visibility:hidden;
  1678. }
  1679. #u19889_div {
  1680. border-width:0px;
  1681. position:absolute;
  1682. left:0px;
  1683. top:0px;
  1684. width:1258px;
  1685. height:1180px;
  1686. background:inherit;
  1687. background-color:rgba(255, 255, 255, 1);
  1688. border:none;
  1689. border-radius:0px;
  1690. -moz-box-shadow:none;
  1691. -webkit-box-shadow:none;
  1692. box-shadow:none;
  1693. }
  1694. #u19889 {
  1695. border-width:0px;
  1696. position:absolute;
  1697. left:333px;
  1698. top:50px;
  1699. width:1258px;
  1700. height:1180px;
  1701. display:flex;
  1702. }
  1703. #u19889 .text {
  1704. position:absolute;
  1705. align-self:center;
  1706. padding:2px 2px 2px 2px;
  1707. box-sizing:border-box;
  1708. width:100%;
  1709. }
  1710. #u19889_text {
  1711. border-width:0px;
  1712. word-wrap:break-word;
  1713. text-transform:none;
  1714. visibility:hidden;
  1715. }
  1716. #u19890_div {
  1717. border-width:0px;
  1718. position:absolute;
  1719. left:0px;
  1720. top:0px;
  1721. width:73px;
  1722. height:50px;
  1723. background:inherit;
  1724. background-color:rgba(255, 255, 255, 0);
  1725. border:none;
  1726. border-left:0px;
  1727. border-top:0px;
  1728. border-right:0px;
  1729. border-radius:0px;
  1730. border-bottom-right-radius:0px;
  1731. border-bottom-left-radius:0px;
  1732. -moz-box-shadow:none;
  1733. -webkit-box-shadow:none;
  1734. box-shadow:none;
  1735. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1736. font-weight:400;
  1737. font-style:normal;
  1738. font-size:18px;
  1739. line-height:40px;
  1740. }
  1741. #u19890 {
  1742. border-width:0px;
  1743. position:absolute;
  1744. left:353px;
  1745. top:51px;
  1746. width:73px;
  1747. height:50px;
  1748. display:flex;
  1749. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1750. font-weight:400;
  1751. font-style:normal;
  1752. font-size:18px;
  1753. line-height:40px;
  1754. }
  1755. #u19890 .text {
  1756. position:absolute;
  1757. align-self:center;
  1758. padding:0px 0px 0px 0px;
  1759. box-sizing:border-box;
  1760. width:100%;
  1761. }
  1762. #u19890_text {
  1763. border-width:0px;
  1764. white-space:nowrap;
  1765. text-transform:none;
  1766. }
  1767. #u19891 {
  1768. border-width:0px;
  1769. position:absolute;
  1770. left:353px;
  1771. top:201px;
  1772. width:1218px;
  1773. height:461px;
  1774. }
  1775. #u19892_img {
  1776. border-width:0px;
  1777. position:absolute;
  1778. left:0px;
  1779. top:0px;
  1780. width:93px;
  1781. height:31px;
  1782. }
  1783. #u19892 {
  1784. border-width:0px;
  1785. position:absolute;
  1786. left:0px;
  1787. top:0px;
  1788. width:93px;
  1789. height:31px;
  1790. display:flex;
  1791. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1792. font-weight:400;
  1793. font-style:normal;
  1794. font-size:14px;
  1795. color:#FFFFFF;
  1796. }
  1797. #u19892 .text {
  1798. position:absolute;
  1799. align-self:center;
  1800. padding:2px 2px 2px 2px;
  1801. box-sizing:border-box;
  1802. width:100%;
  1803. }
  1804. #u19892_text {
  1805. border-width:0px;
  1806. word-wrap:break-word;
  1807. text-transform:none;
  1808. }
  1809. #u19893_img {
  1810. border-width:0px;
  1811. position:absolute;
  1812. left:0px;
  1813. top:0px;
  1814. width:95px;
  1815. height:31px;
  1816. }
  1817. #u19893 {
  1818. border-width:0px;
  1819. position:absolute;
  1820. left:93px;
  1821. top:0px;
  1822. width:95px;
  1823. height:31px;
  1824. display:flex;
  1825. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1826. font-weight:400;
  1827. font-style:normal;
  1828. font-size:14px;
  1829. color:#FFFFFF;
  1830. }
  1831. #u19893 .text {
  1832. position:absolute;
  1833. align-self:center;
  1834. padding:2px 2px 2px 2px;
  1835. box-sizing:border-box;
  1836. width:100%;
  1837. }
  1838. #u19893_text {
  1839. border-width:0px;
  1840. word-wrap:break-word;
  1841. text-transform:none;
  1842. }
  1843. #u19894_img {
  1844. border-width:0px;
  1845. position:absolute;
  1846. left:0px;
  1847. top:0px;
  1848. width:93px;
  1849. height:31px;
  1850. }
  1851. #u19894 {
  1852. border-width:0px;
  1853. position:absolute;
  1854. left:188px;
  1855. top:0px;
  1856. width:93px;
  1857. height:31px;
  1858. display:flex;
  1859. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1860. font-weight:400;
  1861. font-style:normal;
  1862. font-size:14px;
  1863. color:#FFFFFF;
  1864. }
  1865. #u19894 .text {
  1866. position:absolute;
  1867. align-self:center;
  1868. padding:2px 2px 2px 2px;
  1869. box-sizing:border-box;
  1870. width:100%;
  1871. }
  1872. #u19894_text {
  1873. border-width:0px;
  1874. word-wrap:break-word;
  1875. text-transform:none;
  1876. }
  1877. #u19895_img {
  1878. border-width:0px;
  1879. position:absolute;
  1880. left:0px;
  1881. top:0px;
  1882. width:114px;
  1883. height:31px;
  1884. }
  1885. #u19895 {
  1886. border-width:0px;
  1887. position:absolute;
  1888. left:281px;
  1889. top:0px;
  1890. width:114px;
  1891. height:31px;
  1892. display:flex;
  1893. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1894. font-weight:400;
  1895. font-style:normal;
  1896. font-size:14px;
  1897. color:#FFFFFF;
  1898. }
  1899. #u19895 .text {
  1900. position:absolute;
  1901. align-self:center;
  1902. padding:2px 2px 2px 2px;
  1903. box-sizing:border-box;
  1904. width:100%;
  1905. }
  1906. #u19895_text {
  1907. border-width:0px;
  1908. word-wrap:break-word;
  1909. text-transform:none;
  1910. }
  1911. #u19896_img {
  1912. border-width:0px;
  1913. position:absolute;
  1914. left:0px;
  1915. top:0px;
  1916. width:114px;
  1917. height:31px;
  1918. }
  1919. #u19896 {
  1920. border-width:0px;
  1921. position:absolute;
  1922. left:395px;
  1923. top:0px;
  1924. width:114px;
  1925. height:31px;
  1926. display:flex;
  1927. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1928. font-weight:400;
  1929. font-style:normal;
  1930. font-size:14px;
  1931. color:#FFFFFF;
  1932. }
  1933. #u19896 .text {
  1934. position:absolute;
  1935. align-self:center;
  1936. padding:2px 2px 2px 2px;
  1937. box-sizing:border-box;
  1938. width:100%;
  1939. }
  1940. #u19896_text {
  1941. border-width:0px;
  1942. word-wrap:break-word;
  1943. text-transform:none;
  1944. }
  1945. #u19897_img {
  1946. border-width:0px;
  1947. position:absolute;
  1948. left:0px;
  1949. top:0px;
  1950. width:102px;
  1951. height:31px;
  1952. }
  1953. #u19897 {
  1954. border-width:0px;
  1955. position:absolute;
  1956. left:509px;
  1957. top:0px;
  1958. width:102px;
  1959. height:31px;
  1960. display:flex;
  1961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1962. font-weight:400;
  1963. font-style:normal;
  1964. font-size:14px;
  1965. color:#FFFFFF;
  1966. }
  1967. #u19897 .text {
  1968. position:absolute;
  1969. align-self:center;
  1970. padding:2px 2px 2px 2px;
  1971. box-sizing:border-box;
  1972. width:100%;
  1973. }
  1974. #u19897_text {
  1975. border-width:0px;
  1976. word-wrap:break-word;
  1977. text-transform:none;
  1978. }
  1979. #u19898_img {
  1980. border-width:0px;
  1981. position:absolute;
  1982. left:0px;
  1983. top:0px;
  1984. width:100px;
  1985. height:31px;
  1986. }
  1987. #u19898 {
  1988. border-width:0px;
  1989. position:absolute;
  1990. left:611px;
  1991. top:0px;
  1992. width:100px;
  1993. height:31px;
  1994. display:flex;
  1995. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1996. font-weight:400;
  1997. font-style:normal;
  1998. font-size:14px;
  1999. color:#FFFFFF;
  2000. }
  2001. #u19898 .text {
  2002. position:absolute;
  2003. align-self:center;
  2004. padding:2px 2px 2px 2px;
  2005. box-sizing:border-box;
  2006. width:100%;
  2007. }
  2008. #u19898_text {
  2009. border-width:0px;
  2010. word-wrap:break-word;
  2011. text-transform:none;
  2012. }
  2013. #u19899_img {
  2014. border-width:0px;
  2015. position:absolute;
  2016. left:0px;
  2017. top:0px;
  2018. width:100px;
  2019. height:31px;
  2020. }
  2021. #u19899 {
  2022. border-width:0px;
  2023. position:absolute;
  2024. left:711px;
  2025. top:0px;
  2026. width:100px;
  2027. height:31px;
  2028. display:flex;
  2029. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2030. font-weight:400;
  2031. font-style:normal;
  2032. font-size:14px;
  2033. color:#FFFFFF;
  2034. }
  2035. #u19899 .text {
  2036. position:absolute;
  2037. align-self:center;
  2038. padding:2px 2px 2px 2px;
  2039. box-sizing:border-box;
  2040. width:100%;
  2041. }
  2042. #u19899_text {
  2043. border-width:0px;
  2044. word-wrap:break-word;
  2045. text-transform:none;
  2046. }
  2047. #u19900_img {
  2048. border-width:0px;
  2049. position:absolute;
  2050. left:0px;
  2051. top:0px;
  2052. width:102px;
  2053. height:31px;
  2054. }
  2055. #u19900 {
  2056. border-width:0px;
  2057. position:absolute;
  2058. left:811px;
  2059. top:0px;
  2060. width:102px;
  2061. height:31px;
  2062. display:flex;
  2063. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2064. font-weight:400;
  2065. font-style:normal;
  2066. font-size:14px;
  2067. color:#FFFFFF;
  2068. }
  2069. #u19900 .text {
  2070. position:absolute;
  2071. align-self:center;
  2072. padding:2px 2px 2px 2px;
  2073. box-sizing:border-box;
  2074. width:100%;
  2075. }
  2076. #u19900_text {
  2077. border-width:0px;
  2078. word-wrap:break-word;
  2079. text-transform:none;
  2080. }
  2081. #u19901_img {
  2082. border-width:0px;
  2083. position:absolute;
  2084. left:0px;
  2085. top:0px;
  2086. width:102px;
  2087. height:31px;
  2088. }
  2089. #u19901 {
  2090. border-width:0px;
  2091. position:absolute;
  2092. left:913px;
  2093. top:0px;
  2094. width:102px;
  2095. height:31px;
  2096. display:flex;
  2097. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2098. font-weight:400;
  2099. font-style:normal;
  2100. font-size:14px;
  2101. color:#FFFFFF;
  2102. }
  2103. #u19901 .text {
  2104. position:absolute;
  2105. align-self:center;
  2106. padding:2px 2px 2px 2px;
  2107. box-sizing:border-box;
  2108. width:100%;
  2109. }
  2110. #u19901_text {
  2111. border-width:0px;
  2112. word-wrap:break-word;
  2113. text-transform:none;
  2114. }
  2115. #u19902_img {
  2116. border-width:0px;
  2117. position:absolute;
  2118. left:0px;
  2119. top:0px;
  2120. width:101px;
  2121. height:31px;
  2122. }
  2123. #u19902 {
  2124. border-width:0px;
  2125. position:absolute;
  2126. left:1015px;
  2127. top:0px;
  2128. width:101px;
  2129. height:31px;
  2130. display:flex;
  2131. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2132. font-weight:400;
  2133. font-style:normal;
  2134. font-size:14px;
  2135. color:#FFFFFF;
  2136. }
  2137. #u19902 .text {
  2138. position:absolute;
  2139. align-self:center;
  2140. padding:2px 2px 2px 2px;
  2141. box-sizing:border-box;
  2142. width:100%;
  2143. }
  2144. #u19902_text {
  2145. border-width:0px;
  2146. word-wrap:break-word;
  2147. text-transform:none;
  2148. }
  2149. #u19903_img {
  2150. border-width:0px;
  2151. position:absolute;
  2152. left:0px;
  2153. top:0px;
  2154. width:102px;
  2155. height:31px;
  2156. }
  2157. #u19903 {
  2158. border-width:0px;
  2159. position:absolute;
  2160. left:1116px;
  2161. top:0px;
  2162. width:102px;
  2163. height:31px;
  2164. display:flex;
  2165. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2166. font-weight:400;
  2167. font-style:normal;
  2168. font-size:14px;
  2169. color:#FFFFFF;
  2170. }
  2171. #u19903 .text {
  2172. position:absolute;
  2173. align-self:center;
  2174. padding:2px 2px 2px 2px;
  2175. box-sizing:border-box;
  2176. width:100%;
  2177. }
  2178. #u19903_text {
  2179. border-width:0px;
  2180. word-wrap:break-word;
  2181. text-transform:none;
  2182. }
  2183. #u19904_img {
  2184. border-width:0px;
  2185. position:absolute;
  2186. left:0px;
  2187. top:0px;
  2188. width:93px;
  2189. height:36px;
  2190. }
  2191. #u19904 {
  2192. border-width:0px;
  2193. position:absolute;
  2194. left:0px;
  2195. top:31px;
  2196. width:93px;
  2197. height:36px;
  2198. display:flex;
  2199. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2200. font-weight:400;
  2201. font-style:normal;
  2202. font-size:14px;
  2203. }
  2204. #u19904 .text {
  2205. position:absolute;
  2206. align-self:center;
  2207. padding:2px 2px 2px 2px;
  2208. box-sizing:border-box;
  2209. width:100%;
  2210. }
  2211. #u19904_text {
  2212. border-width:0px;
  2213. word-wrap:break-word;
  2214. text-transform:none;
  2215. visibility:hidden;
  2216. }
  2217. #u19905_img {
  2218. border-width:0px;
  2219. position:absolute;
  2220. left:0px;
  2221. top:0px;
  2222. width:95px;
  2223. height:36px;
  2224. }
  2225. #u19905 {
  2226. border-width:0px;
  2227. position:absolute;
  2228. left:93px;
  2229. top:31px;
  2230. width:95px;
  2231. height:36px;
  2232. display:flex;
  2233. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2234. font-weight:400;
  2235. font-style:normal;
  2236. font-size:14px;
  2237. }
  2238. #u19905 .text {
  2239. position:absolute;
  2240. align-self:center;
  2241. padding:2px 2px 2px 2px;
  2242. box-sizing:border-box;
  2243. width:100%;
  2244. }
  2245. #u19905_text {
  2246. border-width:0px;
  2247. word-wrap:break-word;
  2248. text-transform:none;
  2249. }
  2250. #u19906_img {
  2251. border-width:0px;
  2252. position:absolute;
  2253. left:0px;
  2254. top:0px;
  2255. width:93px;
  2256. height:36px;
  2257. }
  2258. #u19906 {
  2259. border-width:0px;
  2260. position:absolute;
  2261. left:188px;
  2262. top:31px;
  2263. width:93px;
  2264. height:36px;
  2265. display:flex;
  2266. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2267. font-weight:400;
  2268. font-style:normal;
  2269. font-size:14px;
  2270. }
  2271. #u19906 .text {
  2272. position:absolute;
  2273. align-self:center;
  2274. padding:2px 2px 2px 2px;
  2275. box-sizing:border-box;
  2276. width:100%;
  2277. }
  2278. #u19906_text {
  2279. border-width:0px;
  2280. word-wrap:break-word;
  2281. text-transform:none;
  2282. visibility:hidden;
  2283. }
  2284. #u19907_img {
  2285. border-width:0px;
  2286. position:absolute;
  2287. left:0px;
  2288. top:0px;
  2289. width:114px;
  2290. height:36px;
  2291. }
  2292. #u19907 {
  2293. border-width:0px;
  2294. position:absolute;
  2295. left:281px;
  2296. top:31px;
  2297. width:114px;
  2298. height:36px;
  2299. display:flex;
  2300. font-size:14px;
  2301. }
  2302. #u19907 .text {
  2303. position:absolute;
  2304. align-self:center;
  2305. padding:2px 2px 2px 2px;
  2306. box-sizing:border-box;
  2307. width:100%;
  2308. }
  2309. #u19907_text {
  2310. border-width:0px;
  2311. word-wrap:break-word;
  2312. text-transform:none;
  2313. }
  2314. #u19908_img {
  2315. border-width:0px;
  2316. position:absolute;
  2317. left:0px;
  2318. top:0px;
  2319. width:114px;
  2320. height:36px;
  2321. }
  2322. #u19908 {
  2323. border-width:0px;
  2324. position:absolute;
  2325. left:395px;
  2326. top:31px;
  2327. width:114px;
  2328. height:36px;
  2329. display:flex;
  2330. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2331. font-weight:400;
  2332. font-style:normal;
  2333. font-size:14px;
  2334. }
  2335. #u19908 .text {
  2336. position:absolute;
  2337. align-self:center;
  2338. padding:2px 2px 2px 2px;
  2339. box-sizing:border-box;
  2340. width:100%;
  2341. }
  2342. #u19908_text {
  2343. border-width:0px;
  2344. word-wrap:break-word;
  2345. text-transform:none;
  2346. visibility:hidden;
  2347. }
  2348. #u19909_img {
  2349. border-width:0px;
  2350. position:absolute;
  2351. left:0px;
  2352. top:0px;
  2353. width:102px;
  2354. height:36px;
  2355. }
  2356. #u19909 {
  2357. border-width:0px;
  2358. position:absolute;
  2359. left:509px;
  2360. top:31px;
  2361. width:102px;
  2362. height:36px;
  2363. display:flex;
  2364. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2365. font-weight:400;
  2366. font-style:normal;
  2367. font-size:14px;
  2368. }
  2369. #u19909 .text {
  2370. position:absolute;
  2371. align-self:center;
  2372. padding:2px 2px 2px 2px;
  2373. box-sizing:border-box;
  2374. width:100%;
  2375. }
  2376. #u19909_text {
  2377. border-width:0px;
  2378. word-wrap:break-word;
  2379. text-transform:none;
  2380. visibility:hidden;
  2381. }
  2382. #u19910_img {
  2383. border-width:0px;
  2384. position:absolute;
  2385. left:0px;
  2386. top:0px;
  2387. width:100px;
  2388. height:36px;
  2389. }
  2390. #u19910 {
  2391. border-width:0px;
  2392. position:absolute;
  2393. left:611px;
  2394. top:31px;
  2395. width:100px;
  2396. height:36px;
  2397. display:flex;
  2398. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2399. font-weight:400;
  2400. font-style:normal;
  2401. font-size:14px;
  2402. }
  2403. #u19910 .text {
  2404. position:absolute;
  2405. align-self:center;
  2406. padding:2px 2px 2px 2px;
  2407. box-sizing:border-box;
  2408. width:100%;
  2409. }
  2410. #u19910_text {
  2411. border-width:0px;
  2412. word-wrap:break-word;
  2413. text-transform:none;
  2414. }
  2415. #u19911_img {
  2416. border-width:0px;
  2417. position:absolute;
  2418. left:0px;
  2419. top:0px;
  2420. width:100px;
  2421. height:36px;
  2422. }
  2423. #u19911 {
  2424. border-width:0px;
  2425. position:absolute;
  2426. left:711px;
  2427. top:31px;
  2428. width:100px;
  2429. height:36px;
  2430. display:flex;
  2431. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2432. font-weight:400;
  2433. font-style:normal;
  2434. font-size:14px;
  2435. }
  2436. #u19911 .text {
  2437. position:absolute;
  2438. align-self:center;
  2439. padding:2px 2px 2px 2px;
  2440. box-sizing:border-box;
  2441. width:100%;
  2442. }
  2443. #u19911_text {
  2444. border-width:0px;
  2445. word-wrap:break-word;
  2446. text-transform:none;
  2447. visibility:hidden;
  2448. }
  2449. #u19912_img {
  2450. border-width:0px;
  2451. position:absolute;
  2452. left:0px;
  2453. top:0px;
  2454. width:102px;
  2455. height:36px;
  2456. }
  2457. #u19912 {
  2458. border-width:0px;
  2459. position:absolute;
  2460. left:811px;
  2461. top:31px;
  2462. width:102px;
  2463. height:36px;
  2464. display:flex;
  2465. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2466. font-weight:400;
  2467. font-style:normal;
  2468. font-size:14px;
  2469. }
  2470. #u19912 .text {
  2471. position:absolute;
  2472. align-self:center;
  2473. padding:2px 2px 2px 2px;
  2474. box-sizing:border-box;
  2475. width:100%;
  2476. }
  2477. #u19912_text {
  2478. border-width:0px;
  2479. word-wrap:break-word;
  2480. text-transform:none;
  2481. visibility:hidden;
  2482. }
  2483. #u19913_img {
  2484. border-width:0px;
  2485. position:absolute;
  2486. left:0px;
  2487. top:0px;
  2488. width:102px;
  2489. height:36px;
  2490. }
  2491. #u19913 {
  2492. border-width:0px;
  2493. position:absolute;
  2494. left:913px;
  2495. top:31px;
  2496. width:102px;
  2497. height:36px;
  2498. display:flex;
  2499. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2500. font-weight:400;
  2501. font-style:normal;
  2502. font-size:14px;
  2503. }
  2504. #u19913 .text {
  2505. position:absolute;
  2506. align-self:center;
  2507. padding:2px 2px 2px 2px;
  2508. box-sizing:border-box;
  2509. width:100%;
  2510. }
  2511. #u19913_text {
  2512. border-width:0px;
  2513. word-wrap:break-word;
  2514. text-transform:none;
  2515. visibility:hidden;
  2516. }
  2517. #u19914_img {
  2518. border-width:0px;
  2519. position:absolute;
  2520. left:0px;
  2521. top:0px;
  2522. width:101px;
  2523. height:36px;
  2524. }
  2525. #u19914 {
  2526. border-width:0px;
  2527. position:absolute;
  2528. left:1015px;
  2529. top:31px;
  2530. width:101px;
  2531. height:36px;
  2532. display:flex;
  2533. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2534. font-weight:400;
  2535. font-style:normal;
  2536. font-size:14px;
  2537. }
  2538. #u19914 .text {
  2539. position:absolute;
  2540. align-self:center;
  2541. padding:2px 2px 2px 2px;
  2542. box-sizing:border-box;
  2543. width:100%;
  2544. }
  2545. #u19914_text {
  2546. border-width:0px;
  2547. word-wrap:break-word;
  2548. text-transform:none;
  2549. }
  2550. #u19915_img {
  2551. border-width:0px;
  2552. position:absolute;
  2553. left:0px;
  2554. top:0px;
  2555. width:102px;
  2556. height:36px;
  2557. }
  2558. #u19915 {
  2559. border-width:0px;
  2560. position:absolute;
  2561. left:1116px;
  2562. top:31px;
  2563. width:102px;
  2564. height:36px;
  2565. display:flex;
  2566. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2567. font-weight:400;
  2568. font-style:normal;
  2569. font-size:14px;
  2570. color:#1890FF;
  2571. }
  2572. #u19915 .text {
  2573. position:absolute;
  2574. align-self:center;
  2575. padding:2px 2px 2px 2px;
  2576. box-sizing:border-box;
  2577. width:100%;
  2578. }
  2579. #u19915_text {
  2580. border-width:0px;
  2581. word-wrap:break-word;
  2582. text-transform:none;
  2583. }
  2584. #u19916_img {
  2585. border-width:0px;
  2586. position:absolute;
  2587. left:0px;
  2588. top:0px;
  2589. width:93px;
  2590. height:35px;
  2591. }
  2592. #u19916 {
  2593. border-width:0px;
  2594. position:absolute;
  2595. left:0px;
  2596. top:67px;
  2597. width:93px;
  2598. height:35px;
  2599. display:flex;
  2600. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2601. font-weight:400;
  2602. font-style:normal;
  2603. font-size:14px;
  2604. }
  2605. #u19916 .text {
  2606. position:absolute;
  2607. align-self:center;
  2608. padding:2px 2px 2px 2px;
  2609. box-sizing:border-box;
  2610. width:100%;
  2611. }
  2612. #u19916_text {
  2613. border-width:0px;
  2614. word-wrap:break-word;
  2615. text-transform:none;
  2616. visibility:hidden;
  2617. }
  2618. #u19917_img {
  2619. border-width:0px;
  2620. position:absolute;
  2621. left:0px;
  2622. top:0px;
  2623. width:95px;
  2624. height:35px;
  2625. }
  2626. #u19917 {
  2627. border-width:0px;
  2628. position:absolute;
  2629. left:93px;
  2630. top:67px;
  2631. width:95px;
  2632. height:35px;
  2633. display:flex;
  2634. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2635. font-weight:400;
  2636. font-style:normal;
  2637. font-size:14px;
  2638. }
  2639. #u19917 .text {
  2640. position:absolute;
  2641. align-self:center;
  2642. padding:2px 2px 2px 2px;
  2643. box-sizing:border-box;
  2644. width:100%;
  2645. }
  2646. #u19917_text {
  2647. border-width:0px;
  2648. word-wrap:break-word;
  2649. text-transform:none;
  2650. visibility:hidden;
  2651. }
  2652. #u19918_img {
  2653. border-width:0px;
  2654. position:absolute;
  2655. left:0px;
  2656. top:0px;
  2657. width:93px;
  2658. height:35px;
  2659. }
  2660. #u19918 {
  2661. border-width:0px;
  2662. position:absolute;
  2663. left:188px;
  2664. top:67px;
  2665. width:93px;
  2666. height:35px;
  2667. display:flex;
  2668. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2669. font-weight:400;
  2670. font-style:normal;
  2671. font-size:14px;
  2672. }
  2673. #u19918 .text {
  2674. position:absolute;
  2675. align-self:center;
  2676. padding:2px 2px 2px 2px;
  2677. box-sizing:border-box;
  2678. width:100%;
  2679. }
  2680. #u19918_text {
  2681. border-width:0px;
  2682. word-wrap:break-word;
  2683. text-transform:none;
  2684. visibility:hidden;
  2685. }
  2686. #u19919_img {
  2687. border-width:0px;
  2688. position:absolute;
  2689. left:0px;
  2690. top:0px;
  2691. width:114px;
  2692. height:35px;
  2693. }
  2694. #u19919 {
  2695. border-width:0px;
  2696. position:absolute;
  2697. left:281px;
  2698. top:67px;
  2699. width:114px;
  2700. height:35px;
  2701. display:flex;
  2702. font-size:14px;
  2703. }
  2704. #u19919 .text {
  2705. position:absolute;
  2706. align-self:center;
  2707. padding:2px 2px 2px 2px;
  2708. box-sizing:border-box;
  2709. width:100%;
  2710. }
  2711. #u19919_text {
  2712. border-width:0px;
  2713. word-wrap:break-word;
  2714. text-transform:none;
  2715. visibility:hidden;
  2716. }
  2717. #u19920_img {
  2718. border-width:0px;
  2719. position:absolute;
  2720. left:0px;
  2721. top:0px;
  2722. width:114px;
  2723. height:35px;
  2724. }
  2725. #u19920 {
  2726. border-width:0px;
  2727. position:absolute;
  2728. left:395px;
  2729. top:67px;
  2730. width:114px;
  2731. height:35px;
  2732. display:flex;
  2733. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2734. font-weight:400;
  2735. font-style:normal;
  2736. font-size:14px;
  2737. }
  2738. #u19920 .text {
  2739. position:absolute;
  2740. align-self:center;
  2741. padding:2px 2px 2px 2px;
  2742. box-sizing:border-box;
  2743. width:100%;
  2744. }
  2745. #u19920_text {
  2746. border-width:0px;
  2747. word-wrap:break-word;
  2748. text-transform:none;
  2749. visibility:hidden;
  2750. }
  2751. #u19921_img {
  2752. border-width:0px;
  2753. position:absolute;
  2754. left:0px;
  2755. top:0px;
  2756. width:102px;
  2757. height:35px;
  2758. }
  2759. #u19921 {
  2760. border-width:0px;
  2761. position:absolute;
  2762. left:509px;
  2763. top:67px;
  2764. width:102px;
  2765. height:35px;
  2766. display:flex;
  2767. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2768. font-weight:400;
  2769. font-style:normal;
  2770. font-size:14px;
  2771. }
  2772. #u19921 .text {
  2773. position:absolute;
  2774. align-self:center;
  2775. padding:2px 2px 2px 2px;
  2776. box-sizing:border-box;
  2777. width:100%;
  2778. }
  2779. #u19921_text {
  2780. border-width:0px;
  2781. word-wrap:break-word;
  2782. text-transform:none;
  2783. visibility:hidden;
  2784. }
  2785. #u19922_img {
  2786. border-width:0px;
  2787. position:absolute;
  2788. left:0px;
  2789. top:0px;
  2790. width:100px;
  2791. height:35px;
  2792. }
  2793. #u19922 {
  2794. border-width:0px;
  2795. position:absolute;
  2796. left:611px;
  2797. top:67px;
  2798. width:100px;
  2799. height:35px;
  2800. display:flex;
  2801. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2802. font-weight:400;
  2803. font-style:normal;
  2804. font-size:14px;
  2805. }
  2806. #u19922 .text {
  2807. position:absolute;
  2808. align-self:center;
  2809. padding:2px 2px 2px 2px;
  2810. box-sizing:border-box;
  2811. width:100%;
  2812. }
  2813. #u19922_text {
  2814. border-width:0px;
  2815. word-wrap:break-word;
  2816. text-transform:none;
  2817. visibility:hidden;
  2818. }
  2819. #u19923_img {
  2820. border-width:0px;
  2821. position:absolute;
  2822. left:0px;
  2823. top:0px;
  2824. width:100px;
  2825. height:35px;
  2826. }
  2827. #u19923 {
  2828. border-width:0px;
  2829. position:absolute;
  2830. left:711px;
  2831. top:67px;
  2832. width:100px;
  2833. height:35px;
  2834. display:flex;
  2835. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2836. font-weight:400;
  2837. font-style:normal;
  2838. font-size:14px;
  2839. }
  2840. #u19923 .text {
  2841. position:absolute;
  2842. align-self:center;
  2843. padding:2px 2px 2px 2px;
  2844. box-sizing:border-box;
  2845. width:100%;
  2846. }
  2847. #u19923_text {
  2848. border-width:0px;
  2849. word-wrap:break-word;
  2850. text-transform:none;
  2851. visibility:hidden;
  2852. }
  2853. #u19924_img {
  2854. border-width:0px;
  2855. position:absolute;
  2856. left:0px;
  2857. top:0px;
  2858. width:102px;
  2859. height:35px;
  2860. }
  2861. #u19924 {
  2862. border-width:0px;
  2863. position:absolute;
  2864. left:811px;
  2865. top:67px;
  2866. width:102px;
  2867. height:35px;
  2868. display:flex;
  2869. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2870. font-weight:400;
  2871. font-style:normal;
  2872. font-size:14px;
  2873. }
  2874. #u19924 .text {
  2875. position:absolute;
  2876. align-self:center;
  2877. padding:2px 2px 2px 2px;
  2878. box-sizing:border-box;
  2879. width:100%;
  2880. }
  2881. #u19924_text {
  2882. border-width:0px;
  2883. word-wrap:break-word;
  2884. text-transform:none;
  2885. visibility:hidden;
  2886. }
  2887. #u19925_img {
  2888. border-width:0px;
  2889. position:absolute;
  2890. left:0px;
  2891. top:0px;
  2892. width:102px;
  2893. height:35px;
  2894. }
  2895. #u19925 {
  2896. border-width:0px;
  2897. position:absolute;
  2898. left:913px;
  2899. top:67px;
  2900. width:102px;
  2901. height:35px;
  2902. display:flex;
  2903. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2904. font-weight:400;
  2905. font-style:normal;
  2906. font-size:14px;
  2907. }
  2908. #u19925 .text {
  2909. position:absolute;
  2910. align-self:center;
  2911. padding:2px 2px 2px 2px;
  2912. box-sizing:border-box;
  2913. width:100%;
  2914. }
  2915. #u19925_text {
  2916. border-width:0px;
  2917. word-wrap:break-word;
  2918. text-transform:none;
  2919. visibility:hidden;
  2920. }
  2921. #u19926_img {
  2922. border-width:0px;
  2923. position:absolute;
  2924. left:0px;
  2925. top:0px;
  2926. width:101px;
  2927. height:35px;
  2928. }
  2929. #u19926 {
  2930. border-width:0px;
  2931. position:absolute;
  2932. left:1015px;
  2933. top:67px;
  2934. width:101px;
  2935. height:35px;
  2936. display:flex;
  2937. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2938. font-weight:400;
  2939. font-style:normal;
  2940. font-size:14px;
  2941. }
  2942. #u19926 .text {
  2943. position:absolute;
  2944. align-self:center;
  2945. padding:2px 2px 2px 2px;
  2946. box-sizing:border-box;
  2947. width:100%;
  2948. }
  2949. #u19926_text {
  2950. border-width:0px;
  2951. word-wrap:break-word;
  2952. text-transform:none;
  2953. }
  2954. #u19927_img {
  2955. border-width:0px;
  2956. position:absolute;
  2957. left:0px;
  2958. top:0px;
  2959. width:102px;
  2960. height:35px;
  2961. }
  2962. #u19927 {
  2963. border-width:0px;
  2964. position:absolute;
  2965. left:1116px;
  2966. top:67px;
  2967. width:102px;
  2968. height:35px;
  2969. display:flex;
  2970. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2971. font-weight:400;
  2972. font-style:normal;
  2973. font-size:14px;
  2974. }
  2975. #u19927 .text {
  2976. position:absolute;
  2977. align-self:center;
  2978. padding:2px 2px 2px 2px;
  2979. box-sizing:border-box;
  2980. width:100%;
  2981. }
  2982. #u19927_text {
  2983. border-width:0px;
  2984. word-wrap:break-word;
  2985. text-transform:none;
  2986. }
  2987. #u19928_img {
  2988. border-width:0px;
  2989. position:absolute;
  2990. left:0px;
  2991. top:0px;
  2992. width:93px;
  2993. height:30px;
  2994. }
  2995. #u19928 {
  2996. border-width:0px;
  2997. position:absolute;
  2998. left:0px;
  2999. top:102px;
  3000. width:93px;
  3001. height:30px;
  3002. display:flex;
  3003. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3004. font-weight:400;
  3005. font-style:normal;
  3006. font-size:14px;
  3007. }
  3008. #u19928 .text {
  3009. position:absolute;
  3010. align-self:center;
  3011. padding:2px 2px 2px 2px;
  3012. box-sizing:border-box;
  3013. width:100%;
  3014. }
  3015. #u19928_text {
  3016. border-width:0px;
  3017. word-wrap:break-word;
  3018. text-transform:none;
  3019. visibility:hidden;
  3020. }
  3021. #u19929_img {
  3022. border-width:0px;
  3023. position:absolute;
  3024. left:0px;
  3025. top:0px;
  3026. width:95px;
  3027. height:30px;
  3028. }
  3029. #u19929 {
  3030. border-width:0px;
  3031. position:absolute;
  3032. left:93px;
  3033. top:102px;
  3034. width:95px;
  3035. height:30px;
  3036. display:flex;
  3037. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3038. font-weight:400;
  3039. font-style:normal;
  3040. font-size:14px;
  3041. }
  3042. #u19929 .text {
  3043. position:absolute;
  3044. align-self:center;
  3045. padding:2px 2px 2px 2px;
  3046. box-sizing:border-box;
  3047. width:100%;
  3048. }
  3049. #u19929_text {
  3050. border-width:0px;
  3051. word-wrap:break-word;
  3052. text-transform:none;
  3053. visibility:hidden;
  3054. }
  3055. #u19930_img {
  3056. border-width:0px;
  3057. position:absolute;
  3058. left:0px;
  3059. top:0px;
  3060. width:93px;
  3061. height:30px;
  3062. }
  3063. #u19930 {
  3064. border-width:0px;
  3065. position:absolute;
  3066. left:188px;
  3067. top:102px;
  3068. width:93px;
  3069. height:30px;
  3070. display:flex;
  3071. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3072. font-weight:400;
  3073. font-style:normal;
  3074. font-size:14px;
  3075. }
  3076. #u19930 .text {
  3077. position:absolute;
  3078. align-self:center;
  3079. padding:2px 2px 2px 2px;
  3080. box-sizing:border-box;
  3081. width:100%;
  3082. }
  3083. #u19930_text {
  3084. border-width:0px;
  3085. word-wrap:break-word;
  3086. text-transform:none;
  3087. visibility:hidden;
  3088. }
  3089. #u19931_img {
  3090. border-width:0px;
  3091. position:absolute;
  3092. left:0px;
  3093. top:0px;
  3094. width:114px;
  3095. height:30px;
  3096. }
  3097. #u19931 {
  3098. border-width:0px;
  3099. position:absolute;
  3100. left:281px;
  3101. top:102px;
  3102. width:114px;
  3103. height:30px;
  3104. display:flex;
  3105. font-size:14px;
  3106. }
  3107. #u19931 .text {
  3108. position:absolute;
  3109. align-self:center;
  3110. padding:2px 2px 2px 2px;
  3111. box-sizing:border-box;
  3112. width:100%;
  3113. }
  3114. #u19931_text {
  3115. border-width:0px;
  3116. word-wrap:break-word;
  3117. text-transform:none;
  3118. visibility:hidden;
  3119. }
  3120. #u19932_img {
  3121. border-width:0px;
  3122. position:absolute;
  3123. left:0px;
  3124. top:0px;
  3125. width:114px;
  3126. height:30px;
  3127. }
  3128. #u19932 {
  3129. border-width:0px;
  3130. position:absolute;
  3131. left:395px;
  3132. top:102px;
  3133. width:114px;
  3134. height:30px;
  3135. display:flex;
  3136. font-size:14px;
  3137. }
  3138. #u19932 .text {
  3139. position:absolute;
  3140. align-self:center;
  3141. padding:2px 2px 2px 2px;
  3142. box-sizing:border-box;
  3143. width:100%;
  3144. }
  3145. #u19932_text {
  3146. border-width:0px;
  3147. word-wrap:break-word;
  3148. text-transform:none;
  3149. visibility:hidden;
  3150. }
  3151. #u19933_img {
  3152. border-width:0px;
  3153. position:absolute;
  3154. left:0px;
  3155. top:0px;
  3156. width:102px;
  3157. height:30px;
  3158. }
  3159. #u19933 {
  3160. border-width:0px;
  3161. position:absolute;
  3162. left:509px;
  3163. top:102px;
  3164. width:102px;
  3165. height:30px;
  3166. display:flex;
  3167. font-size:14px;
  3168. }
  3169. #u19933 .text {
  3170. position:absolute;
  3171. align-self:center;
  3172. padding:2px 2px 2px 2px;
  3173. box-sizing:border-box;
  3174. width:100%;
  3175. }
  3176. #u19933_text {
  3177. border-width:0px;
  3178. word-wrap:break-word;
  3179. text-transform:none;
  3180. visibility:hidden;
  3181. }
  3182. #u19934_img {
  3183. border-width:0px;
  3184. position:absolute;
  3185. left:0px;
  3186. top:0px;
  3187. width:100px;
  3188. height:30px;
  3189. }
  3190. #u19934 {
  3191. border-width:0px;
  3192. position:absolute;
  3193. left:611px;
  3194. top:102px;
  3195. width:100px;
  3196. height:30px;
  3197. display:flex;
  3198. font-size:14px;
  3199. }
  3200. #u19934 .text {
  3201. position:absolute;
  3202. align-self:center;
  3203. padding:2px 2px 2px 2px;
  3204. box-sizing:border-box;
  3205. width:100%;
  3206. }
  3207. #u19934_text {
  3208. border-width:0px;
  3209. word-wrap:break-word;
  3210. text-transform:none;
  3211. visibility:hidden;
  3212. }
  3213. #u19935_img {
  3214. border-width:0px;
  3215. position:absolute;
  3216. left:0px;
  3217. top:0px;
  3218. width:100px;
  3219. height:30px;
  3220. }
  3221. #u19935 {
  3222. border-width:0px;
  3223. position:absolute;
  3224. left:711px;
  3225. top:102px;
  3226. width:100px;
  3227. height:30px;
  3228. display:flex;
  3229. font-size:14px;
  3230. }
  3231. #u19935 .text {
  3232. position:absolute;
  3233. align-self:center;
  3234. padding:2px 2px 2px 2px;
  3235. box-sizing:border-box;
  3236. width:100%;
  3237. }
  3238. #u19935_text {
  3239. border-width:0px;
  3240. word-wrap:break-word;
  3241. text-transform:none;
  3242. visibility:hidden;
  3243. }
  3244. #u19936_img {
  3245. border-width:0px;
  3246. position:absolute;
  3247. left:0px;
  3248. top:0px;
  3249. width:102px;
  3250. height:30px;
  3251. }
  3252. #u19936 {
  3253. border-width:0px;
  3254. position:absolute;
  3255. left:811px;
  3256. top:102px;
  3257. width:102px;
  3258. height:30px;
  3259. display:flex;
  3260. font-size:14px;
  3261. }
  3262. #u19936 .text {
  3263. position:absolute;
  3264. align-self:center;
  3265. padding:2px 2px 2px 2px;
  3266. box-sizing:border-box;
  3267. width:100%;
  3268. }
  3269. #u19936_text {
  3270. border-width:0px;
  3271. word-wrap:break-word;
  3272. text-transform:none;
  3273. visibility:hidden;
  3274. }
  3275. #u19937_img {
  3276. border-width:0px;
  3277. position:absolute;
  3278. left:0px;
  3279. top:0px;
  3280. width:102px;
  3281. height:30px;
  3282. }
  3283. #u19937 {
  3284. border-width:0px;
  3285. position:absolute;
  3286. left:913px;
  3287. top:102px;
  3288. width:102px;
  3289. height:30px;
  3290. display:flex;
  3291. font-size:14px;
  3292. }
  3293. #u19937 .text {
  3294. position:absolute;
  3295. align-self:center;
  3296. padding:2px 2px 2px 2px;
  3297. box-sizing:border-box;
  3298. width:100%;
  3299. }
  3300. #u19937_text {
  3301. border-width:0px;
  3302. word-wrap:break-word;
  3303. text-transform:none;
  3304. visibility:hidden;
  3305. }
  3306. #u19938_img {
  3307. border-width:0px;
  3308. position:absolute;
  3309. left:0px;
  3310. top:0px;
  3311. width:101px;
  3312. height:30px;
  3313. }
  3314. #u19938 {
  3315. border-width:0px;
  3316. position:absolute;
  3317. left:1015px;
  3318. top:102px;
  3319. width:101px;
  3320. height:30px;
  3321. display:flex;
  3322. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3323. font-weight:400;
  3324. font-style:normal;
  3325. font-size:14px;
  3326. }
  3327. #u19938 .text {
  3328. position:absolute;
  3329. align-self:center;
  3330. padding:2px 2px 2px 2px;
  3331. box-sizing:border-box;
  3332. width:100%;
  3333. }
  3334. #u19938_text {
  3335. border-width:0px;
  3336. word-wrap:break-word;
  3337. text-transform:none;
  3338. }
  3339. #u19939_img {
  3340. border-width:0px;
  3341. position:absolute;
  3342. left:0px;
  3343. top:0px;
  3344. width:102px;
  3345. height:30px;
  3346. }
  3347. #u19939 {
  3348. border-width:0px;
  3349. position:absolute;
  3350. left:1116px;
  3351. top:102px;
  3352. width:102px;
  3353. height:30px;
  3354. display:flex;
  3355. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3356. font-weight:400;
  3357. font-style:normal;
  3358. font-size:14px;
  3359. }
  3360. #u19939 .text {
  3361. position:absolute;
  3362. align-self:center;
  3363. padding:2px 2px 2px 2px;
  3364. box-sizing:border-box;
  3365. width:100%;
  3366. }
  3367. #u19939_text {
  3368. border-width:0px;
  3369. word-wrap:break-word;
  3370. text-transform:none;
  3371. }
  3372. #u19940_img {
  3373. border-width:0px;
  3374. position:absolute;
  3375. left:0px;
  3376. top:0px;
  3377. width:93px;
  3378. height:30px;
  3379. }
  3380. #u19940 {
  3381. border-width:0px;
  3382. position:absolute;
  3383. left:0px;
  3384. top:132px;
  3385. width:93px;
  3386. height:30px;
  3387. display:flex;
  3388. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3389. font-weight:400;
  3390. font-style:normal;
  3391. font-size:14px;
  3392. }
  3393. #u19940 .text {
  3394. position:absolute;
  3395. align-self:center;
  3396. padding:2px 2px 2px 2px;
  3397. box-sizing:border-box;
  3398. width:100%;
  3399. }
  3400. #u19940_text {
  3401. border-width:0px;
  3402. word-wrap:break-word;
  3403. text-transform:none;
  3404. visibility:hidden;
  3405. }
  3406. #u19941_img {
  3407. border-width:0px;
  3408. position:absolute;
  3409. left:0px;
  3410. top:0px;
  3411. width:95px;
  3412. height:30px;
  3413. }
  3414. #u19941 {
  3415. border-width:0px;
  3416. position:absolute;
  3417. left:93px;
  3418. top:132px;
  3419. width:95px;
  3420. height:30px;
  3421. display:flex;
  3422. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3423. font-weight:400;
  3424. font-style:normal;
  3425. font-size:14px;
  3426. }
  3427. #u19941 .text {
  3428. position:absolute;
  3429. align-self:center;
  3430. padding:2px 2px 2px 2px;
  3431. box-sizing:border-box;
  3432. width:100%;
  3433. }
  3434. #u19941_text {
  3435. border-width:0px;
  3436. word-wrap:break-word;
  3437. text-transform:none;
  3438. visibility:hidden;
  3439. }
  3440. #u19942_img {
  3441. border-width:0px;
  3442. position:absolute;
  3443. left:0px;
  3444. top:0px;
  3445. width:93px;
  3446. height:30px;
  3447. }
  3448. #u19942 {
  3449. border-width:0px;
  3450. position:absolute;
  3451. left:188px;
  3452. top:132px;
  3453. width:93px;
  3454. height:30px;
  3455. display:flex;
  3456. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3457. font-weight:400;
  3458. font-style:normal;
  3459. font-size:14px;
  3460. }
  3461. #u19942 .text {
  3462. position:absolute;
  3463. align-self:center;
  3464. padding:2px 2px 2px 2px;
  3465. box-sizing:border-box;
  3466. width:100%;
  3467. }
  3468. #u19942_text {
  3469. border-width:0px;
  3470. word-wrap:break-word;
  3471. text-transform:none;
  3472. visibility:hidden;
  3473. }
  3474. #u19943_img {
  3475. border-width:0px;
  3476. position:absolute;
  3477. left:0px;
  3478. top:0px;
  3479. width:114px;
  3480. height:30px;
  3481. }
  3482. #u19943 {
  3483. border-width:0px;
  3484. position:absolute;
  3485. left:281px;
  3486. top:132px;
  3487. width:114px;
  3488. height:30px;
  3489. display:flex;
  3490. font-size:14px;
  3491. }
  3492. #u19943 .text {
  3493. position:absolute;
  3494. align-self:center;
  3495. padding:2px 2px 2px 2px;
  3496. box-sizing:border-box;
  3497. width:100%;
  3498. }
  3499. #u19943_text {
  3500. border-width:0px;
  3501. word-wrap:break-word;
  3502. text-transform:none;
  3503. visibility:hidden;
  3504. }
  3505. #u19944_img {
  3506. border-width:0px;
  3507. position:absolute;
  3508. left:0px;
  3509. top:0px;
  3510. width:114px;
  3511. height:30px;
  3512. }
  3513. #u19944 {
  3514. border-width:0px;
  3515. position:absolute;
  3516. left:395px;
  3517. top:132px;
  3518. width:114px;
  3519. height:30px;
  3520. display:flex;
  3521. font-size:14px;
  3522. }
  3523. #u19944 .text {
  3524. position:absolute;
  3525. align-self:center;
  3526. padding:2px 2px 2px 2px;
  3527. box-sizing:border-box;
  3528. width:100%;
  3529. }
  3530. #u19944_text {
  3531. border-width:0px;
  3532. word-wrap:break-word;
  3533. text-transform:none;
  3534. visibility:hidden;
  3535. }
  3536. #u19945_img {
  3537. border-width:0px;
  3538. position:absolute;
  3539. left:0px;
  3540. top:0px;
  3541. width:102px;
  3542. height:30px;
  3543. }
  3544. #u19945 {
  3545. border-width:0px;
  3546. position:absolute;
  3547. left:509px;
  3548. top:132px;
  3549. width:102px;
  3550. height:30px;
  3551. display:flex;
  3552. font-size:14px;
  3553. }
  3554. #u19945 .text {
  3555. position:absolute;
  3556. align-self:center;
  3557. padding:2px 2px 2px 2px;
  3558. box-sizing:border-box;
  3559. width:100%;
  3560. }
  3561. #u19945_text {
  3562. border-width:0px;
  3563. word-wrap:break-word;
  3564. text-transform:none;
  3565. visibility:hidden;
  3566. }
  3567. #u19946_img {
  3568. border-width:0px;
  3569. position:absolute;
  3570. left:0px;
  3571. top:0px;
  3572. width:100px;
  3573. height:30px;
  3574. }
  3575. #u19946 {
  3576. border-width:0px;
  3577. position:absolute;
  3578. left:611px;
  3579. top:132px;
  3580. width:100px;
  3581. height:30px;
  3582. display:flex;
  3583. font-size:14px;
  3584. }
  3585. #u19946 .text {
  3586. position:absolute;
  3587. align-self:center;
  3588. padding:2px 2px 2px 2px;
  3589. box-sizing:border-box;
  3590. width:100%;
  3591. }
  3592. #u19946_text {
  3593. border-width:0px;
  3594. word-wrap:break-word;
  3595. text-transform:none;
  3596. visibility:hidden;
  3597. }
  3598. #u19947_img {
  3599. border-width:0px;
  3600. position:absolute;
  3601. left:0px;
  3602. top:0px;
  3603. width:100px;
  3604. height:30px;
  3605. }
  3606. #u19947 {
  3607. border-width:0px;
  3608. position:absolute;
  3609. left:711px;
  3610. top:132px;
  3611. width:100px;
  3612. height:30px;
  3613. display:flex;
  3614. font-size:14px;
  3615. }
  3616. #u19947 .text {
  3617. position:absolute;
  3618. align-self:center;
  3619. padding:2px 2px 2px 2px;
  3620. box-sizing:border-box;
  3621. width:100%;
  3622. }
  3623. #u19947_text {
  3624. border-width:0px;
  3625. word-wrap:break-word;
  3626. text-transform:none;
  3627. visibility:hidden;
  3628. }
  3629. #u19948_img {
  3630. border-width:0px;
  3631. position:absolute;
  3632. left:0px;
  3633. top:0px;
  3634. width:102px;
  3635. height:30px;
  3636. }
  3637. #u19948 {
  3638. border-width:0px;
  3639. position:absolute;
  3640. left:811px;
  3641. top:132px;
  3642. width:102px;
  3643. height:30px;
  3644. display:flex;
  3645. font-size:14px;
  3646. }
  3647. #u19948 .text {
  3648. position:absolute;
  3649. align-self:center;
  3650. padding:2px 2px 2px 2px;
  3651. box-sizing:border-box;
  3652. width:100%;
  3653. }
  3654. #u19948_text {
  3655. border-width:0px;
  3656. word-wrap:break-word;
  3657. text-transform:none;
  3658. visibility:hidden;
  3659. }
  3660. #u19949_img {
  3661. border-width:0px;
  3662. position:absolute;
  3663. left:0px;
  3664. top:0px;
  3665. width:102px;
  3666. height:30px;
  3667. }
  3668. #u19949 {
  3669. border-width:0px;
  3670. position:absolute;
  3671. left:913px;
  3672. top:132px;
  3673. width:102px;
  3674. height:30px;
  3675. display:flex;
  3676. font-size:14px;
  3677. }
  3678. #u19949 .text {
  3679. position:absolute;
  3680. align-self:center;
  3681. padding:2px 2px 2px 2px;
  3682. box-sizing:border-box;
  3683. width:100%;
  3684. }
  3685. #u19949_text {
  3686. border-width:0px;
  3687. word-wrap:break-word;
  3688. text-transform:none;
  3689. visibility:hidden;
  3690. }
  3691. #u19950_img {
  3692. border-width:0px;
  3693. position:absolute;
  3694. left:0px;
  3695. top:0px;
  3696. width:101px;
  3697. height:30px;
  3698. }
  3699. #u19950 {
  3700. border-width:0px;
  3701. position:absolute;
  3702. left:1015px;
  3703. top:132px;
  3704. width:101px;
  3705. height:30px;
  3706. display:flex;
  3707. font-size:14px;
  3708. }
  3709. #u19950 .text {
  3710. position:absolute;
  3711. align-self:center;
  3712. padding:2px 2px 2px 2px;
  3713. box-sizing:border-box;
  3714. width:100%;
  3715. }
  3716. #u19950_text {
  3717. border-width:0px;
  3718. word-wrap:break-word;
  3719. text-transform:none;
  3720. visibility:hidden;
  3721. }
  3722. #u19951_img {
  3723. border-width:0px;
  3724. position:absolute;
  3725. left:0px;
  3726. top:0px;
  3727. width:102px;
  3728. height:30px;
  3729. }
  3730. #u19951 {
  3731. border-width:0px;
  3732. position:absolute;
  3733. left:1116px;
  3734. top:132px;
  3735. width:102px;
  3736. height:30px;
  3737. display:flex;
  3738. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3739. font-weight:400;
  3740. font-style:normal;
  3741. font-size:14px;
  3742. color:#1890FF;
  3743. }
  3744. #u19951 .text {
  3745. position:absolute;
  3746. align-self:center;
  3747. padding:2px 2px 2px 2px;
  3748. box-sizing:border-box;
  3749. width:100%;
  3750. }
  3751. #u19951_text {
  3752. border-width:0px;
  3753. word-wrap:break-word;
  3754. text-transform:none;
  3755. visibility:hidden;
  3756. }
  3757. #u19952_img {
  3758. border-width:0px;
  3759. position:absolute;
  3760. left:0px;
  3761. top:0px;
  3762. width:93px;
  3763. height:30px;
  3764. }
  3765. #u19952 {
  3766. border-width:0px;
  3767. position:absolute;
  3768. left:0px;
  3769. top:162px;
  3770. width:93px;
  3771. height:30px;
  3772. display:flex;
  3773. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3774. font-weight:400;
  3775. font-style:normal;
  3776. font-size:14px;
  3777. }
  3778. #u19952 .text {
  3779. position:absolute;
  3780. align-self:center;
  3781. padding:2px 2px 2px 2px;
  3782. box-sizing:border-box;
  3783. width:100%;
  3784. }
  3785. #u19952_text {
  3786. border-width:0px;
  3787. word-wrap:break-word;
  3788. text-transform:none;
  3789. visibility:hidden;
  3790. }
  3791. #u19953_img {
  3792. border-width:0px;
  3793. position:absolute;
  3794. left:0px;
  3795. top:0px;
  3796. width:95px;
  3797. height:30px;
  3798. }
  3799. #u19953 {
  3800. border-width:0px;
  3801. position:absolute;
  3802. left:93px;
  3803. top:162px;
  3804. width:95px;
  3805. height:30px;
  3806. display:flex;
  3807. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3808. font-weight:400;
  3809. font-style:normal;
  3810. font-size:14px;
  3811. }
  3812. #u19953 .text {
  3813. position:absolute;
  3814. align-self:center;
  3815. padding:2px 2px 2px 2px;
  3816. box-sizing:border-box;
  3817. width:100%;
  3818. }
  3819. #u19953_text {
  3820. border-width:0px;
  3821. word-wrap:break-word;
  3822. text-transform:none;
  3823. visibility:hidden;
  3824. }
  3825. #u19954_img {
  3826. border-width:0px;
  3827. position:absolute;
  3828. left:0px;
  3829. top:0px;
  3830. width:93px;
  3831. height:30px;
  3832. }
  3833. #u19954 {
  3834. border-width:0px;
  3835. position:absolute;
  3836. left:188px;
  3837. top:162px;
  3838. width:93px;
  3839. height:30px;
  3840. display:flex;
  3841. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3842. font-weight:400;
  3843. font-style:normal;
  3844. font-size:14px;
  3845. }
  3846. #u19954 .text {
  3847. position:absolute;
  3848. align-self:center;
  3849. padding:2px 2px 2px 2px;
  3850. box-sizing:border-box;
  3851. width:100%;
  3852. }
  3853. #u19954_text {
  3854. border-width:0px;
  3855. word-wrap:break-word;
  3856. text-transform:none;
  3857. visibility:hidden;
  3858. }
  3859. #u19955_img {
  3860. border-width:0px;
  3861. position:absolute;
  3862. left:0px;
  3863. top:0px;
  3864. width:114px;
  3865. height:30px;
  3866. }
  3867. #u19955 {
  3868. border-width:0px;
  3869. position:absolute;
  3870. left:281px;
  3871. top:162px;
  3872. width:114px;
  3873. height:30px;
  3874. display:flex;
  3875. font-size:14px;
  3876. }
  3877. #u19955 .text {
  3878. position:absolute;
  3879. align-self:center;
  3880. padding:2px 2px 2px 2px;
  3881. box-sizing:border-box;
  3882. width:100%;
  3883. }
  3884. #u19955_text {
  3885. border-width:0px;
  3886. word-wrap:break-word;
  3887. text-transform:none;
  3888. visibility:hidden;
  3889. }
  3890. #u19956_img {
  3891. border-width:0px;
  3892. position:absolute;
  3893. left:0px;
  3894. top:0px;
  3895. width:114px;
  3896. height:30px;
  3897. }
  3898. #u19956 {
  3899. border-width:0px;
  3900. position:absolute;
  3901. left:395px;
  3902. top:162px;
  3903. width:114px;
  3904. height:30px;
  3905. display:flex;
  3906. font-size:14px;
  3907. }
  3908. #u19956 .text {
  3909. position:absolute;
  3910. align-self:center;
  3911. padding:2px 2px 2px 2px;
  3912. box-sizing:border-box;
  3913. width:100%;
  3914. }
  3915. #u19956_text {
  3916. border-width:0px;
  3917. word-wrap:break-word;
  3918. text-transform:none;
  3919. visibility:hidden;
  3920. }
  3921. #u19957_img {
  3922. border-width:0px;
  3923. position:absolute;
  3924. left:0px;
  3925. top:0px;
  3926. width:102px;
  3927. height:30px;
  3928. }
  3929. #u19957 {
  3930. border-width:0px;
  3931. position:absolute;
  3932. left:509px;
  3933. top:162px;
  3934. width:102px;
  3935. height:30px;
  3936. display:flex;
  3937. font-size:14px;
  3938. }
  3939. #u19957 .text {
  3940. position:absolute;
  3941. align-self:center;
  3942. padding:2px 2px 2px 2px;
  3943. box-sizing:border-box;
  3944. width:100%;
  3945. }
  3946. #u19957_text {
  3947. border-width:0px;
  3948. word-wrap:break-word;
  3949. text-transform:none;
  3950. visibility:hidden;
  3951. }
  3952. #u19958_img {
  3953. border-width:0px;
  3954. position:absolute;
  3955. left:0px;
  3956. top:0px;
  3957. width:100px;
  3958. height:30px;
  3959. }
  3960. #u19958 {
  3961. border-width:0px;
  3962. position:absolute;
  3963. left:611px;
  3964. top:162px;
  3965. width:100px;
  3966. height:30px;
  3967. display:flex;
  3968. font-size:14px;
  3969. }
  3970. #u19958 .text {
  3971. position:absolute;
  3972. align-self:center;
  3973. padding:2px 2px 2px 2px;
  3974. box-sizing:border-box;
  3975. width:100%;
  3976. }
  3977. #u19958_text {
  3978. border-width:0px;
  3979. word-wrap:break-word;
  3980. text-transform:none;
  3981. visibility:hidden;
  3982. }
  3983. #u19959_img {
  3984. border-width:0px;
  3985. position:absolute;
  3986. left:0px;
  3987. top:0px;
  3988. width:100px;
  3989. height:30px;
  3990. }
  3991. #u19959 {
  3992. border-width:0px;
  3993. position:absolute;
  3994. left:711px;
  3995. top:162px;
  3996. width:100px;
  3997. height:30px;
  3998. display:flex;
  3999. font-size:14px;
  4000. }
  4001. #u19959 .text {
  4002. position:absolute;
  4003. align-self:center;
  4004. padding:2px 2px 2px 2px;
  4005. box-sizing:border-box;
  4006. width:100%;
  4007. }
  4008. #u19959_text {
  4009. border-width:0px;
  4010. word-wrap:break-word;
  4011. text-transform:none;
  4012. visibility:hidden;
  4013. }
  4014. #u19960_img {
  4015. border-width:0px;
  4016. position:absolute;
  4017. left:0px;
  4018. top:0px;
  4019. width:102px;
  4020. height:30px;
  4021. }
  4022. #u19960 {
  4023. border-width:0px;
  4024. position:absolute;
  4025. left:811px;
  4026. top:162px;
  4027. width:102px;
  4028. height:30px;
  4029. display:flex;
  4030. font-size:14px;
  4031. }
  4032. #u19960 .text {
  4033. position:absolute;
  4034. align-self:center;
  4035. padding:2px 2px 2px 2px;
  4036. box-sizing:border-box;
  4037. width:100%;
  4038. }
  4039. #u19960_text {
  4040. border-width:0px;
  4041. word-wrap:break-word;
  4042. text-transform:none;
  4043. visibility:hidden;
  4044. }
  4045. #u19961_img {
  4046. border-width:0px;
  4047. position:absolute;
  4048. left:0px;
  4049. top:0px;
  4050. width:102px;
  4051. height:30px;
  4052. }
  4053. #u19961 {
  4054. border-width:0px;
  4055. position:absolute;
  4056. left:913px;
  4057. top:162px;
  4058. width:102px;
  4059. height:30px;
  4060. display:flex;
  4061. font-size:14px;
  4062. }
  4063. #u19961 .text {
  4064. position:absolute;
  4065. align-self:center;
  4066. padding:2px 2px 2px 2px;
  4067. box-sizing:border-box;
  4068. width:100%;
  4069. }
  4070. #u19961_text {
  4071. border-width:0px;
  4072. word-wrap:break-word;
  4073. text-transform:none;
  4074. visibility:hidden;
  4075. }
  4076. #u19962_img {
  4077. border-width:0px;
  4078. position:absolute;
  4079. left:0px;
  4080. top:0px;
  4081. width:101px;
  4082. height:30px;
  4083. }
  4084. #u19962 {
  4085. border-width:0px;
  4086. position:absolute;
  4087. left:1015px;
  4088. top:162px;
  4089. width:101px;
  4090. height:30px;
  4091. display:flex;
  4092. font-size:14px;
  4093. }
  4094. #u19962 .text {
  4095. position:absolute;
  4096. align-self:center;
  4097. padding:2px 2px 2px 2px;
  4098. box-sizing:border-box;
  4099. width:100%;
  4100. }
  4101. #u19962_text {
  4102. border-width:0px;
  4103. word-wrap:break-word;
  4104. text-transform:none;
  4105. visibility:hidden;
  4106. }
  4107. #u19963_img {
  4108. border-width:0px;
  4109. position:absolute;
  4110. left:0px;
  4111. top:0px;
  4112. width:102px;
  4113. height:30px;
  4114. }
  4115. #u19963 {
  4116. border-width:0px;
  4117. position:absolute;
  4118. left:1116px;
  4119. top:162px;
  4120. width:102px;
  4121. height:30px;
  4122. display:flex;
  4123. font-size:14px;
  4124. }
  4125. #u19963 .text {
  4126. position:absolute;
  4127. align-self:center;
  4128. padding:2px 2px 2px 2px;
  4129. box-sizing:border-box;
  4130. width:100%;
  4131. }
  4132. #u19963_text {
  4133. border-width:0px;
  4134. word-wrap:break-word;
  4135. text-transform:none;
  4136. visibility:hidden;
  4137. }
  4138. #u19964_img {
  4139. border-width:0px;
  4140. position:absolute;
  4141. left:0px;
  4142. top:0px;
  4143. width:93px;
  4144. height:30px;
  4145. }
  4146. #u19964 {
  4147. border-width:0px;
  4148. position:absolute;
  4149. left:0px;
  4150. top:192px;
  4151. width:93px;
  4152. height:30px;
  4153. display:flex;
  4154. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4155. font-weight:400;
  4156. font-style:normal;
  4157. font-size:14px;
  4158. }
  4159. #u19964 .text {
  4160. position:absolute;
  4161. align-self:center;
  4162. padding:2px 2px 2px 2px;
  4163. box-sizing:border-box;
  4164. width:100%;
  4165. }
  4166. #u19964_text {
  4167. border-width:0px;
  4168. word-wrap:break-word;
  4169. text-transform:none;
  4170. visibility:hidden;
  4171. }
  4172. #u19965_img {
  4173. border-width:0px;
  4174. position:absolute;
  4175. left:0px;
  4176. top:0px;
  4177. width:95px;
  4178. height:30px;
  4179. }
  4180. #u19965 {
  4181. border-width:0px;
  4182. position:absolute;
  4183. left:93px;
  4184. top:192px;
  4185. width:95px;
  4186. height:30px;
  4187. display:flex;
  4188. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4189. font-weight:400;
  4190. font-style:normal;
  4191. font-size:14px;
  4192. }
  4193. #u19965 .text {
  4194. position:absolute;
  4195. align-self:center;
  4196. padding:2px 2px 2px 2px;
  4197. box-sizing:border-box;
  4198. width:100%;
  4199. }
  4200. #u19965_text {
  4201. border-width:0px;
  4202. word-wrap:break-word;
  4203. text-transform:none;
  4204. visibility:hidden;
  4205. }
  4206. #u19966_img {
  4207. border-width:0px;
  4208. position:absolute;
  4209. left:0px;
  4210. top:0px;
  4211. width:93px;
  4212. height:30px;
  4213. }
  4214. #u19966 {
  4215. border-width:0px;
  4216. position:absolute;
  4217. left:188px;
  4218. top:192px;
  4219. width:93px;
  4220. height:30px;
  4221. display:flex;
  4222. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4223. font-weight:400;
  4224. font-style:normal;
  4225. font-size:14px;
  4226. }
  4227. #u19966 .text {
  4228. position:absolute;
  4229. align-self:center;
  4230. padding:2px 2px 2px 2px;
  4231. box-sizing:border-box;
  4232. width:100%;
  4233. }
  4234. #u19966_text {
  4235. border-width:0px;
  4236. word-wrap:break-word;
  4237. text-transform:none;
  4238. visibility:hidden;
  4239. }
  4240. #u19967_img {
  4241. border-width:0px;
  4242. position:absolute;
  4243. left:0px;
  4244. top:0px;
  4245. width:114px;
  4246. height:30px;
  4247. }
  4248. #u19967 {
  4249. border-width:0px;
  4250. position:absolute;
  4251. left:281px;
  4252. top:192px;
  4253. width:114px;
  4254. height:30px;
  4255. display:flex;
  4256. font-size:14px;
  4257. }
  4258. #u19967 .text {
  4259. position:absolute;
  4260. align-self:center;
  4261. padding:2px 2px 2px 2px;
  4262. box-sizing:border-box;
  4263. width:100%;
  4264. }
  4265. #u19967_text {
  4266. border-width:0px;
  4267. word-wrap:break-word;
  4268. text-transform:none;
  4269. visibility:hidden;
  4270. }
  4271. #u19968_img {
  4272. border-width:0px;
  4273. position:absolute;
  4274. left:0px;
  4275. top:0px;
  4276. width:114px;
  4277. height:30px;
  4278. }
  4279. #u19968 {
  4280. border-width:0px;
  4281. position:absolute;
  4282. left:395px;
  4283. top:192px;
  4284. width:114px;
  4285. height:30px;
  4286. display:flex;
  4287. font-size:14px;
  4288. }
  4289. #u19968 .text {
  4290. position:absolute;
  4291. align-self:center;
  4292. padding:2px 2px 2px 2px;
  4293. box-sizing:border-box;
  4294. width:100%;
  4295. }
  4296. #u19968_text {
  4297. border-width:0px;
  4298. word-wrap:break-word;
  4299. text-transform:none;
  4300. visibility:hidden;
  4301. }
  4302. #u19969_img {
  4303. border-width:0px;
  4304. position:absolute;
  4305. left:0px;
  4306. top:0px;
  4307. width:102px;
  4308. height:30px;
  4309. }
  4310. #u19969 {
  4311. border-width:0px;
  4312. position:absolute;
  4313. left:509px;
  4314. top:192px;
  4315. width:102px;
  4316. height:30px;
  4317. display:flex;
  4318. font-size:14px;
  4319. }
  4320. #u19969 .text {
  4321. position:absolute;
  4322. align-self:center;
  4323. padding:2px 2px 2px 2px;
  4324. box-sizing:border-box;
  4325. width:100%;
  4326. }
  4327. #u19969_text {
  4328. border-width:0px;
  4329. word-wrap:break-word;
  4330. text-transform:none;
  4331. visibility:hidden;
  4332. }
  4333. #u19970_img {
  4334. border-width:0px;
  4335. position:absolute;
  4336. left:0px;
  4337. top:0px;
  4338. width:100px;
  4339. height:30px;
  4340. }
  4341. #u19970 {
  4342. border-width:0px;
  4343. position:absolute;
  4344. left:611px;
  4345. top:192px;
  4346. width:100px;
  4347. height:30px;
  4348. display:flex;
  4349. font-size:14px;
  4350. }
  4351. #u19970 .text {
  4352. position:absolute;
  4353. align-self:center;
  4354. padding:2px 2px 2px 2px;
  4355. box-sizing:border-box;
  4356. width:100%;
  4357. }
  4358. #u19970_text {
  4359. border-width:0px;
  4360. word-wrap:break-word;
  4361. text-transform:none;
  4362. visibility:hidden;
  4363. }
  4364. #u19971_img {
  4365. border-width:0px;
  4366. position:absolute;
  4367. left:0px;
  4368. top:0px;
  4369. width:100px;
  4370. height:30px;
  4371. }
  4372. #u19971 {
  4373. border-width:0px;
  4374. position:absolute;
  4375. left:711px;
  4376. top:192px;
  4377. width:100px;
  4378. height:30px;
  4379. display:flex;
  4380. font-size:14px;
  4381. }
  4382. #u19971 .text {
  4383. position:absolute;
  4384. align-self:center;
  4385. padding:2px 2px 2px 2px;
  4386. box-sizing:border-box;
  4387. width:100%;
  4388. }
  4389. #u19971_text {
  4390. border-width:0px;
  4391. word-wrap:break-word;
  4392. text-transform:none;
  4393. visibility:hidden;
  4394. }
  4395. #u19972_img {
  4396. border-width:0px;
  4397. position:absolute;
  4398. left:0px;
  4399. top:0px;
  4400. width:102px;
  4401. height:30px;
  4402. }
  4403. #u19972 {
  4404. border-width:0px;
  4405. position:absolute;
  4406. left:811px;
  4407. top:192px;
  4408. width:102px;
  4409. height:30px;
  4410. display:flex;
  4411. font-size:14px;
  4412. }
  4413. #u19972 .text {
  4414. position:absolute;
  4415. align-self:center;
  4416. padding:2px 2px 2px 2px;
  4417. box-sizing:border-box;
  4418. width:100%;
  4419. }
  4420. #u19972_text {
  4421. border-width:0px;
  4422. word-wrap:break-word;
  4423. text-transform:none;
  4424. visibility:hidden;
  4425. }
  4426. #u19973_img {
  4427. border-width:0px;
  4428. position:absolute;
  4429. left:0px;
  4430. top:0px;
  4431. width:102px;
  4432. height:30px;
  4433. }
  4434. #u19973 {
  4435. border-width:0px;
  4436. position:absolute;
  4437. left:913px;
  4438. top:192px;
  4439. width:102px;
  4440. height:30px;
  4441. display:flex;
  4442. font-size:14px;
  4443. }
  4444. #u19973 .text {
  4445. position:absolute;
  4446. align-self:center;
  4447. padding:2px 2px 2px 2px;
  4448. box-sizing:border-box;
  4449. width:100%;
  4450. }
  4451. #u19973_text {
  4452. border-width:0px;
  4453. word-wrap:break-word;
  4454. text-transform:none;
  4455. visibility:hidden;
  4456. }
  4457. #u19974_img {
  4458. border-width:0px;
  4459. position:absolute;
  4460. left:0px;
  4461. top:0px;
  4462. width:101px;
  4463. height:30px;
  4464. }
  4465. #u19974 {
  4466. border-width:0px;
  4467. position:absolute;
  4468. left:1015px;
  4469. top:192px;
  4470. width:101px;
  4471. height:30px;
  4472. display:flex;
  4473. font-size:14px;
  4474. }
  4475. #u19974 .text {
  4476. position:absolute;
  4477. align-self:center;
  4478. padding:2px 2px 2px 2px;
  4479. box-sizing:border-box;
  4480. width:100%;
  4481. }
  4482. #u19974_text {
  4483. border-width:0px;
  4484. word-wrap:break-word;
  4485. text-transform:none;
  4486. visibility:hidden;
  4487. }
  4488. #u19975_img {
  4489. border-width:0px;
  4490. position:absolute;
  4491. left:0px;
  4492. top:0px;
  4493. width:102px;
  4494. height:30px;
  4495. }
  4496. #u19975 {
  4497. border-width:0px;
  4498. position:absolute;
  4499. left:1116px;
  4500. top:192px;
  4501. width:102px;
  4502. height:30px;
  4503. display:flex;
  4504. font-size:14px;
  4505. }
  4506. #u19975 .text {
  4507. position:absolute;
  4508. align-self:center;
  4509. padding:2px 2px 2px 2px;
  4510. box-sizing:border-box;
  4511. width:100%;
  4512. }
  4513. #u19975_text {
  4514. border-width:0px;
  4515. word-wrap:break-word;
  4516. text-transform:none;
  4517. visibility:hidden;
  4518. }
  4519. #u19976_img {
  4520. border-width:0px;
  4521. position:absolute;
  4522. left:0px;
  4523. top:0px;
  4524. width:93px;
  4525. height:30px;
  4526. }
  4527. #u19976 {
  4528. border-width:0px;
  4529. position:absolute;
  4530. left:0px;
  4531. top:222px;
  4532. width:93px;
  4533. height:30px;
  4534. display:flex;
  4535. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4536. font-weight:400;
  4537. font-style:normal;
  4538. font-size:14px;
  4539. }
  4540. #u19976 .text {
  4541. position:absolute;
  4542. align-self:center;
  4543. padding:2px 2px 2px 2px;
  4544. box-sizing:border-box;
  4545. width:100%;
  4546. }
  4547. #u19976_text {
  4548. border-width:0px;
  4549. word-wrap:break-word;
  4550. text-transform:none;
  4551. visibility:hidden;
  4552. }
  4553. #u19977_img {
  4554. border-width:0px;
  4555. position:absolute;
  4556. left:0px;
  4557. top:0px;
  4558. width:95px;
  4559. height:30px;
  4560. }
  4561. #u19977 {
  4562. border-width:0px;
  4563. position:absolute;
  4564. left:93px;
  4565. top:222px;
  4566. width:95px;
  4567. height:30px;
  4568. display:flex;
  4569. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4570. font-weight:400;
  4571. font-style:normal;
  4572. font-size:14px;
  4573. }
  4574. #u19977 .text {
  4575. position:absolute;
  4576. align-self:center;
  4577. padding:2px 2px 2px 2px;
  4578. box-sizing:border-box;
  4579. width:100%;
  4580. }
  4581. #u19977_text {
  4582. border-width:0px;
  4583. word-wrap:break-word;
  4584. text-transform:none;
  4585. visibility:hidden;
  4586. }
  4587. #u19978_img {
  4588. border-width:0px;
  4589. position:absolute;
  4590. left:0px;
  4591. top:0px;
  4592. width:93px;
  4593. height:30px;
  4594. }
  4595. #u19978 {
  4596. border-width:0px;
  4597. position:absolute;
  4598. left:188px;
  4599. top:222px;
  4600. width:93px;
  4601. height:30px;
  4602. display:flex;
  4603. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4604. font-weight:400;
  4605. font-style:normal;
  4606. font-size:14px;
  4607. }
  4608. #u19978 .text {
  4609. position:absolute;
  4610. align-self:center;
  4611. padding:2px 2px 2px 2px;
  4612. box-sizing:border-box;
  4613. width:100%;
  4614. }
  4615. #u19978_text {
  4616. border-width:0px;
  4617. word-wrap:break-word;
  4618. text-transform:none;
  4619. visibility:hidden;
  4620. }
  4621. #u19979_img {
  4622. border-width:0px;
  4623. position:absolute;
  4624. left:0px;
  4625. top:0px;
  4626. width:114px;
  4627. height:30px;
  4628. }
  4629. #u19979 {
  4630. border-width:0px;
  4631. position:absolute;
  4632. left:281px;
  4633. top:222px;
  4634. width:114px;
  4635. height:30px;
  4636. display:flex;
  4637. font-size:14px;
  4638. }
  4639. #u19979 .text {
  4640. position:absolute;
  4641. align-self:center;
  4642. padding:2px 2px 2px 2px;
  4643. box-sizing:border-box;
  4644. width:100%;
  4645. }
  4646. #u19979_text {
  4647. border-width:0px;
  4648. word-wrap:break-word;
  4649. text-transform:none;
  4650. visibility:hidden;
  4651. }
  4652. #u19980_img {
  4653. border-width:0px;
  4654. position:absolute;
  4655. left:0px;
  4656. top:0px;
  4657. width:114px;
  4658. height:30px;
  4659. }
  4660. #u19980 {
  4661. border-width:0px;
  4662. position:absolute;
  4663. left:395px;
  4664. top:222px;
  4665. width:114px;
  4666. height:30px;
  4667. display:flex;
  4668. font-size:14px;
  4669. }
  4670. #u19980 .text {
  4671. position:absolute;
  4672. align-self:center;
  4673. padding:2px 2px 2px 2px;
  4674. box-sizing:border-box;
  4675. width:100%;
  4676. }
  4677. #u19980_text {
  4678. border-width:0px;
  4679. word-wrap:break-word;
  4680. text-transform:none;
  4681. visibility:hidden;
  4682. }
  4683. #u19981_img {
  4684. border-width:0px;
  4685. position:absolute;
  4686. left:0px;
  4687. top:0px;
  4688. width:102px;
  4689. height:30px;
  4690. }
  4691. #u19981 {
  4692. border-width:0px;
  4693. position:absolute;
  4694. left:509px;
  4695. top:222px;
  4696. width:102px;
  4697. height:30px;
  4698. display:flex;
  4699. font-size:14px;
  4700. }
  4701. #u19981 .text {
  4702. position:absolute;
  4703. align-self:center;
  4704. padding:2px 2px 2px 2px;
  4705. box-sizing:border-box;
  4706. width:100%;
  4707. }
  4708. #u19981_text {
  4709. border-width:0px;
  4710. word-wrap:break-word;
  4711. text-transform:none;
  4712. visibility:hidden;
  4713. }
  4714. #u19982_img {
  4715. border-width:0px;
  4716. position:absolute;
  4717. left:0px;
  4718. top:0px;
  4719. width:100px;
  4720. height:30px;
  4721. }
  4722. #u19982 {
  4723. border-width:0px;
  4724. position:absolute;
  4725. left:611px;
  4726. top:222px;
  4727. width:100px;
  4728. height:30px;
  4729. display:flex;
  4730. font-size:14px;
  4731. }
  4732. #u19982 .text {
  4733. position:absolute;
  4734. align-self:center;
  4735. padding:2px 2px 2px 2px;
  4736. box-sizing:border-box;
  4737. width:100%;
  4738. }
  4739. #u19982_text {
  4740. border-width:0px;
  4741. word-wrap:break-word;
  4742. text-transform:none;
  4743. visibility:hidden;
  4744. }
  4745. #u19983_img {
  4746. border-width:0px;
  4747. position:absolute;
  4748. left:0px;
  4749. top:0px;
  4750. width:100px;
  4751. height:30px;
  4752. }
  4753. #u19983 {
  4754. border-width:0px;
  4755. position:absolute;
  4756. left:711px;
  4757. top:222px;
  4758. width:100px;
  4759. height:30px;
  4760. display:flex;
  4761. font-size:14px;
  4762. }
  4763. #u19983 .text {
  4764. position:absolute;
  4765. align-self:center;
  4766. padding:2px 2px 2px 2px;
  4767. box-sizing:border-box;
  4768. width:100%;
  4769. }
  4770. #u19983_text {
  4771. border-width:0px;
  4772. word-wrap:break-word;
  4773. text-transform:none;
  4774. visibility:hidden;
  4775. }
  4776. #u19984_img {
  4777. border-width:0px;
  4778. position:absolute;
  4779. left:0px;
  4780. top:0px;
  4781. width:102px;
  4782. height:30px;
  4783. }
  4784. #u19984 {
  4785. border-width:0px;
  4786. position:absolute;
  4787. left:811px;
  4788. top:222px;
  4789. width:102px;
  4790. height:30px;
  4791. display:flex;
  4792. font-size:14px;
  4793. }
  4794. #u19984 .text {
  4795. position:absolute;
  4796. align-self:center;
  4797. padding:2px 2px 2px 2px;
  4798. box-sizing:border-box;
  4799. width:100%;
  4800. }
  4801. #u19984_text {
  4802. border-width:0px;
  4803. word-wrap:break-word;
  4804. text-transform:none;
  4805. visibility:hidden;
  4806. }
  4807. #u19985_img {
  4808. border-width:0px;
  4809. position:absolute;
  4810. left:0px;
  4811. top:0px;
  4812. width:102px;
  4813. height:30px;
  4814. }
  4815. #u19985 {
  4816. border-width:0px;
  4817. position:absolute;
  4818. left:913px;
  4819. top:222px;
  4820. width:102px;
  4821. height:30px;
  4822. display:flex;
  4823. font-size:14px;
  4824. }
  4825. #u19985 .text {
  4826. position:absolute;
  4827. align-self:center;
  4828. padding:2px 2px 2px 2px;
  4829. box-sizing:border-box;
  4830. width:100%;
  4831. }
  4832. #u19985_text {
  4833. border-width:0px;
  4834. word-wrap:break-word;
  4835. text-transform:none;
  4836. visibility:hidden;
  4837. }
  4838. #u19986_img {
  4839. border-width:0px;
  4840. position:absolute;
  4841. left:0px;
  4842. top:0px;
  4843. width:101px;
  4844. height:30px;
  4845. }
  4846. #u19986 {
  4847. border-width:0px;
  4848. position:absolute;
  4849. left:1015px;
  4850. top:222px;
  4851. width:101px;
  4852. height:30px;
  4853. display:flex;
  4854. font-size:14px;
  4855. }
  4856. #u19986 .text {
  4857. position:absolute;
  4858. align-self:center;
  4859. padding:2px 2px 2px 2px;
  4860. box-sizing:border-box;
  4861. width:100%;
  4862. }
  4863. #u19986_text {
  4864. border-width:0px;
  4865. word-wrap:break-word;
  4866. text-transform:none;
  4867. visibility:hidden;
  4868. }
  4869. #u19987_img {
  4870. border-width:0px;
  4871. position:absolute;
  4872. left:0px;
  4873. top:0px;
  4874. width:102px;
  4875. height:30px;
  4876. }
  4877. #u19987 {
  4878. border-width:0px;
  4879. position:absolute;
  4880. left:1116px;
  4881. top:222px;
  4882. width:102px;
  4883. height:30px;
  4884. display:flex;
  4885. font-size:14px;
  4886. }
  4887. #u19987 .text {
  4888. position:absolute;
  4889. align-self:center;
  4890. padding:2px 2px 2px 2px;
  4891. box-sizing:border-box;
  4892. width:100%;
  4893. }
  4894. #u19987_text {
  4895. border-width:0px;
  4896. word-wrap:break-word;
  4897. text-transform:none;
  4898. visibility:hidden;
  4899. }
  4900. #u19988_img {
  4901. border-width:0px;
  4902. position:absolute;
  4903. left:0px;
  4904. top:0px;
  4905. width:93px;
  4906. height:30px;
  4907. }
  4908. #u19988 {
  4909. border-width:0px;
  4910. position:absolute;
  4911. left:0px;
  4912. top:252px;
  4913. width:93px;
  4914. height:30px;
  4915. display:flex;
  4916. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4917. font-weight:400;
  4918. font-style:normal;
  4919. font-size:14px;
  4920. }
  4921. #u19988 .text {
  4922. position:absolute;
  4923. align-self:center;
  4924. padding:2px 2px 2px 2px;
  4925. box-sizing:border-box;
  4926. width:100%;
  4927. }
  4928. #u19988_text {
  4929. border-width:0px;
  4930. word-wrap:break-word;
  4931. text-transform:none;
  4932. visibility:hidden;
  4933. }
  4934. #u19989_img {
  4935. border-width:0px;
  4936. position:absolute;
  4937. left:0px;
  4938. top:0px;
  4939. width:95px;
  4940. height:30px;
  4941. }
  4942. #u19989 {
  4943. border-width:0px;
  4944. position:absolute;
  4945. left:93px;
  4946. top:252px;
  4947. width:95px;
  4948. height:30px;
  4949. display:flex;
  4950. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4951. font-weight:400;
  4952. font-style:normal;
  4953. font-size:14px;
  4954. }
  4955. #u19989 .text {
  4956. position:absolute;
  4957. align-self:center;
  4958. padding:2px 2px 2px 2px;
  4959. box-sizing:border-box;
  4960. width:100%;
  4961. }
  4962. #u19989_text {
  4963. border-width:0px;
  4964. word-wrap:break-word;
  4965. text-transform:none;
  4966. visibility:hidden;
  4967. }
  4968. #u19990_img {
  4969. border-width:0px;
  4970. position:absolute;
  4971. left:0px;
  4972. top:0px;
  4973. width:93px;
  4974. height:30px;
  4975. }
  4976. #u19990 {
  4977. border-width:0px;
  4978. position:absolute;
  4979. left:188px;
  4980. top:252px;
  4981. width:93px;
  4982. height:30px;
  4983. display:flex;
  4984. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4985. font-weight:400;
  4986. font-style:normal;
  4987. font-size:14px;
  4988. }
  4989. #u19990 .text {
  4990. position:absolute;
  4991. align-self:center;
  4992. padding:2px 2px 2px 2px;
  4993. box-sizing:border-box;
  4994. width:100%;
  4995. }
  4996. #u19990_text {
  4997. border-width:0px;
  4998. word-wrap:break-word;
  4999. text-transform:none;
  5000. visibility:hidden;
  5001. }
  5002. #u19991_img {
  5003. border-width:0px;
  5004. position:absolute;
  5005. left:0px;
  5006. top:0px;
  5007. width:114px;
  5008. height:30px;
  5009. }
  5010. #u19991 {
  5011. border-width:0px;
  5012. position:absolute;
  5013. left:281px;
  5014. top:252px;
  5015. width:114px;
  5016. height:30px;
  5017. display:flex;
  5018. font-size:14px;
  5019. }
  5020. #u19991 .text {
  5021. position:absolute;
  5022. align-self:center;
  5023. padding:2px 2px 2px 2px;
  5024. box-sizing:border-box;
  5025. width:100%;
  5026. }
  5027. #u19991_text {
  5028. border-width:0px;
  5029. word-wrap:break-word;
  5030. text-transform:none;
  5031. visibility:hidden;
  5032. }
  5033. #u19992_img {
  5034. border-width:0px;
  5035. position:absolute;
  5036. left:0px;
  5037. top:0px;
  5038. width:114px;
  5039. height:30px;
  5040. }
  5041. #u19992 {
  5042. border-width:0px;
  5043. position:absolute;
  5044. left:395px;
  5045. top:252px;
  5046. width:114px;
  5047. height:30px;
  5048. display:flex;
  5049. font-size:14px;
  5050. }
  5051. #u19992 .text {
  5052. position:absolute;
  5053. align-self:center;
  5054. padding:2px 2px 2px 2px;
  5055. box-sizing:border-box;
  5056. width:100%;
  5057. }
  5058. #u19992_text {
  5059. border-width:0px;
  5060. word-wrap:break-word;
  5061. text-transform:none;
  5062. visibility:hidden;
  5063. }
  5064. #u19993_img {
  5065. border-width:0px;
  5066. position:absolute;
  5067. left:0px;
  5068. top:0px;
  5069. width:102px;
  5070. height:30px;
  5071. }
  5072. #u19993 {
  5073. border-width:0px;
  5074. position:absolute;
  5075. left:509px;
  5076. top:252px;
  5077. width:102px;
  5078. height:30px;
  5079. display:flex;
  5080. font-size:14px;
  5081. }
  5082. #u19993 .text {
  5083. position:absolute;
  5084. align-self:center;
  5085. padding:2px 2px 2px 2px;
  5086. box-sizing:border-box;
  5087. width:100%;
  5088. }
  5089. #u19993_text {
  5090. border-width:0px;
  5091. word-wrap:break-word;
  5092. text-transform:none;
  5093. visibility:hidden;
  5094. }
  5095. #u19994_img {
  5096. border-width:0px;
  5097. position:absolute;
  5098. left:0px;
  5099. top:0px;
  5100. width:100px;
  5101. height:30px;
  5102. }
  5103. #u19994 {
  5104. border-width:0px;
  5105. position:absolute;
  5106. left:611px;
  5107. top:252px;
  5108. width:100px;
  5109. height:30px;
  5110. display:flex;
  5111. font-size:14px;
  5112. }
  5113. #u19994 .text {
  5114. position:absolute;
  5115. align-self:center;
  5116. padding:2px 2px 2px 2px;
  5117. box-sizing:border-box;
  5118. width:100%;
  5119. }
  5120. #u19994_text {
  5121. border-width:0px;
  5122. word-wrap:break-word;
  5123. text-transform:none;
  5124. visibility:hidden;
  5125. }
  5126. #u19995_img {
  5127. border-width:0px;
  5128. position:absolute;
  5129. left:0px;
  5130. top:0px;
  5131. width:100px;
  5132. height:30px;
  5133. }
  5134. #u19995 {
  5135. border-width:0px;
  5136. position:absolute;
  5137. left:711px;
  5138. top:252px;
  5139. width:100px;
  5140. height:30px;
  5141. display:flex;
  5142. font-size:14px;
  5143. }
  5144. #u19995 .text {
  5145. position:absolute;
  5146. align-self:center;
  5147. padding:2px 2px 2px 2px;
  5148. box-sizing:border-box;
  5149. width:100%;
  5150. }
  5151. #u19995_text {
  5152. border-width:0px;
  5153. word-wrap:break-word;
  5154. text-transform:none;
  5155. visibility:hidden;
  5156. }
  5157. #u19996_img {
  5158. border-width:0px;
  5159. position:absolute;
  5160. left:0px;
  5161. top:0px;
  5162. width:102px;
  5163. height:30px;
  5164. }
  5165. #u19996 {
  5166. border-width:0px;
  5167. position:absolute;
  5168. left:811px;
  5169. top:252px;
  5170. width:102px;
  5171. height:30px;
  5172. display:flex;
  5173. font-size:14px;
  5174. }
  5175. #u19996 .text {
  5176. position:absolute;
  5177. align-self:center;
  5178. padding:2px 2px 2px 2px;
  5179. box-sizing:border-box;
  5180. width:100%;
  5181. }
  5182. #u19996_text {
  5183. border-width:0px;
  5184. word-wrap:break-word;
  5185. text-transform:none;
  5186. visibility:hidden;
  5187. }
  5188. #u19997_img {
  5189. border-width:0px;
  5190. position:absolute;
  5191. left:0px;
  5192. top:0px;
  5193. width:102px;
  5194. height:30px;
  5195. }
  5196. #u19997 {
  5197. border-width:0px;
  5198. position:absolute;
  5199. left:913px;
  5200. top:252px;
  5201. width:102px;
  5202. height:30px;
  5203. display:flex;
  5204. font-size:14px;
  5205. }
  5206. #u19997 .text {
  5207. position:absolute;
  5208. align-self:center;
  5209. padding:2px 2px 2px 2px;
  5210. box-sizing:border-box;
  5211. width:100%;
  5212. }
  5213. #u19997_text {
  5214. border-width:0px;
  5215. word-wrap:break-word;
  5216. text-transform:none;
  5217. visibility:hidden;
  5218. }
  5219. #u19998_img {
  5220. border-width:0px;
  5221. position:absolute;
  5222. left:0px;
  5223. top:0px;
  5224. width:101px;
  5225. height:30px;
  5226. }
  5227. #u19998 {
  5228. border-width:0px;
  5229. position:absolute;
  5230. left:1015px;
  5231. top:252px;
  5232. width:101px;
  5233. height:30px;
  5234. display:flex;
  5235. font-size:14px;
  5236. }
  5237. #u19998 .text {
  5238. position:absolute;
  5239. align-self:center;
  5240. padding:2px 2px 2px 2px;
  5241. box-sizing:border-box;
  5242. width:100%;
  5243. }
  5244. #u19998_text {
  5245. border-width:0px;
  5246. word-wrap:break-word;
  5247. text-transform:none;
  5248. visibility:hidden;
  5249. }
  5250. #u19999_img {
  5251. border-width:0px;
  5252. position:absolute;
  5253. left:0px;
  5254. top:0px;
  5255. width:102px;
  5256. height:30px;
  5257. }
  5258. #u19999 {
  5259. border-width:0px;
  5260. position:absolute;
  5261. left:1116px;
  5262. top:252px;
  5263. width:102px;
  5264. height:30px;
  5265. display:flex;
  5266. font-size:14px;
  5267. }
  5268. #u19999 .text {
  5269. position:absolute;
  5270. align-self:center;
  5271. padding:2px 2px 2px 2px;
  5272. box-sizing:border-box;
  5273. width:100%;
  5274. }
  5275. #u19999_text {
  5276. border-width:0px;
  5277. word-wrap:break-word;
  5278. text-transform:none;
  5279. visibility:hidden;
  5280. }
  5281. #u20000_img {
  5282. border-width:0px;
  5283. position:absolute;
  5284. left:0px;
  5285. top:0px;
  5286. width:93px;
  5287. height:30px;
  5288. }
  5289. #u20000 {
  5290. border-width:0px;
  5291. position:absolute;
  5292. left:0px;
  5293. top:282px;
  5294. width:93px;
  5295. height:30px;
  5296. display:flex;
  5297. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5298. font-weight:400;
  5299. font-style:normal;
  5300. font-size:14px;
  5301. }
  5302. #u20000 .text {
  5303. position:absolute;
  5304. align-self:center;
  5305. padding:2px 2px 2px 2px;
  5306. box-sizing:border-box;
  5307. width:100%;
  5308. }
  5309. #u20000_text {
  5310. border-width:0px;
  5311. word-wrap:break-word;
  5312. text-transform:none;
  5313. visibility:hidden;
  5314. }
  5315. #u20001_img {
  5316. border-width:0px;
  5317. position:absolute;
  5318. left:0px;
  5319. top:0px;
  5320. width:95px;
  5321. height:30px;
  5322. }
  5323. #u20001 {
  5324. border-width:0px;
  5325. position:absolute;
  5326. left:93px;
  5327. top:282px;
  5328. width:95px;
  5329. height:30px;
  5330. display:flex;
  5331. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5332. font-weight:400;
  5333. font-style:normal;
  5334. font-size:14px;
  5335. }
  5336. #u20001 .text {
  5337. position:absolute;
  5338. align-self:center;
  5339. padding:2px 2px 2px 2px;
  5340. box-sizing:border-box;
  5341. width:100%;
  5342. }
  5343. #u20001_text {
  5344. border-width:0px;
  5345. word-wrap:break-word;
  5346. text-transform:none;
  5347. visibility:hidden;
  5348. }
  5349. #u20002_img {
  5350. border-width:0px;
  5351. position:absolute;
  5352. left:0px;
  5353. top:0px;
  5354. width:93px;
  5355. height:30px;
  5356. }
  5357. #u20002 {
  5358. border-width:0px;
  5359. position:absolute;
  5360. left:188px;
  5361. top:282px;
  5362. width:93px;
  5363. height:30px;
  5364. display:flex;
  5365. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5366. font-weight:400;
  5367. font-style:normal;
  5368. font-size:14px;
  5369. }
  5370. #u20002 .text {
  5371. position:absolute;
  5372. align-self:center;
  5373. padding:2px 2px 2px 2px;
  5374. box-sizing:border-box;
  5375. width:100%;
  5376. }
  5377. #u20002_text {
  5378. border-width:0px;
  5379. word-wrap:break-word;
  5380. text-transform:none;
  5381. visibility:hidden;
  5382. }
  5383. #u20003_img {
  5384. border-width:0px;
  5385. position:absolute;
  5386. left:0px;
  5387. top:0px;
  5388. width:114px;
  5389. height:30px;
  5390. }
  5391. #u20003 {
  5392. border-width:0px;
  5393. position:absolute;
  5394. left:281px;
  5395. top:282px;
  5396. width:114px;
  5397. height:30px;
  5398. display:flex;
  5399. font-size:14px;
  5400. }
  5401. #u20003 .text {
  5402. position:absolute;
  5403. align-self:center;
  5404. padding:2px 2px 2px 2px;
  5405. box-sizing:border-box;
  5406. width:100%;
  5407. }
  5408. #u20003_text {
  5409. border-width:0px;
  5410. word-wrap:break-word;
  5411. text-transform:none;
  5412. visibility:hidden;
  5413. }
  5414. #u20004_img {
  5415. border-width:0px;
  5416. position:absolute;
  5417. left:0px;
  5418. top:0px;
  5419. width:114px;
  5420. height:30px;
  5421. }
  5422. #u20004 {
  5423. border-width:0px;
  5424. position:absolute;
  5425. left:395px;
  5426. top:282px;
  5427. width:114px;
  5428. height:30px;
  5429. display:flex;
  5430. font-size:14px;
  5431. }
  5432. #u20004 .text {
  5433. position:absolute;
  5434. align-self:center;
  5435. padding:2px 2px 2px 2px;
  5436. box-sizing:border-box;
  5437. width:100%;
  5438. }
  5439. #u20004_text {
  5440. border-width:0px;
  5441. word-wrap:break-word;
  5442. text-transform:none;
  5443. visibility:hidden;
  5444. }
  5445. #u20005_img {
  5446. border-width:0px;
  5447. position:absolute;
  5448. left:0px;
  5449. top:0px;
  5450. width:102px;
  5451. height:30px;
  5452. }
  5453. #u20005 {
  5454. border-width:0px;
  5455. position:absolute;
  5456. left:509px;
  5457. top:282px;
  5458. width:102px;
  5459. height:30px;
  5460. display:flex;
  5461. font-size:14px;
  5462. }
  5463. #u20005 .text {
  5464. position:absolute;
  5465. align-self:center;
  5466. padding:2px 2px 2px 2px;
  5467. box-sizing:border-box;
  5468. width:100%;
  5469. }
  5470. #u20005_text {
  5471. border-width:0px;
  5472. word-wrap:break-word;
  5473. text-transform:none;
  5474. visibility:hidden;
  5475. }
  5476. #u20006_img {
  5477. border-width:0px;
  5478. position:absolute;
  5479. left:0px;
  5480. top:0px;
  5481. width:100px;
  5482. height:30px;
  5483. }
  5484. #u20006 {
  5485. border-width:0px;
  5486. position:absolute;
  5487. left:611px;
  5488. top:282px;
  5489. width:100px;
  5490. height:30px;
  5491. display:flex;
  5492. font-size:14px;
  5493. }
  5494. #u20006 .text {
  5495. position:absolute;
  5496. align-self:center;
  5497. padding:2px 2px 2px 2px;
  5498. box-sizing:border-box;
  5499. width:100%;
  5500. }
  5501. #u20006_text {
  5502. border-width:0px;
  5503. word-wrap:break-word;
  5504. text-transform:none;
  5505. visibility:hidden;
  5506. }
  5507. #u20007_img {
  5508. border-width:0px;
  5509. position:absolute;
  5510. left:0px;
  5511. top:0px;
  5512. width:100px;
  5513. height:30px;
  5514. }
  5515. #u20007 {
  5516. border-width:0px;
  5517. position:absolute;
  5518. left:711px;
  5519. top:282px;
  5520. width:100px;
  5521. height:30px;
  5522. display:flex;
  5523. font-size:14px;
  5524. }
  5525. #u20007 .text {
  5526. position:absolute;
  5527. align-self:center;
  5528. padding:2px 2px 2px 2px;
  5529. box-sizing:border-box;
  5530. width:100%;
  5531. }
  5532. #u20007_text {
  5533. border-width:0px;
  5534. word-wrap:break-word;
  5535. text-transform:none;
  5536. visibility:hidden;
  5537. }
  5538. #u20008_img {
  5539. border-width:0px;
  5540. position:absolute;
  5541. left:0px;
  5542. top:0px;
  5543. width:102px;
  5544. height:30px;
  5545. }
  5546. #u20008 {
  5547. border-width:0px;
  5548. position:absolute;
  5549. left:811px;
  5550. top:282px;
  5551. width:102px;
  5552. height:30px;
  5553. display:flex;
  5554. font-size:14px;
  5555. }
  5556. #u20008 .text {
  5557. position:absolute;
  5558. align-self:center;
  5559. padding:2px 2px 2px 2px;
  5560. box-sizing:border-box;
  5561. width:100%;
  5562. }
  5563. #u20008_text {
  5564. border-width:0px;
  5565. word-wrap:break-word;
  5566. text-transform:none;
  5567. visibility:hidden;
  5568. }
  5569. #u20009_img {
  5570. border-width:0px;
  5571. position:absolute;
  5572. left:0px;
  5573. top:0px;
  5574. width:102px;
  5575. height:30px;
  5576. }
  5577. #u20009 {
  5578. border-width:0px;
  5579. position:absolute;
  5580. left:913px;
  5581. top:282px;
  5582. width:102px;
  5583. height:30px;
  5584. display:flex;
  5585. font-size:14px;
  5586. }
  5587. #u20009 .text {
  5588. position:absolute;
  5589. align-self:center;
  5590. padding:2px 2px 2px 2px;
  5591. box-sizing:border-box;
  5592. width:100%;
  5593. }
  5594. #u20009_text {
  5595. border-width:0px;
  5596. word-wrap:break-word;
  5597. text-transform:none;
  5598. visibility:hidden;
  5599. }
  5600. #u20010_img {
  5601. border-width:0px;
  5602. position:absolute;
  5603. left:0px;
  5604. top:0px;
  5605. width:101px;
  5606. height:30px;
  5607. }
  5608. #u20010 {
  5609. border-width:0px;
  5610. position:absolute;
  5611. left:1015px;
  5612. top:282px;
  5613. width:101px;
  5614. height:30px;
  5615. display:flex;
  5616. font-size:14px;
  5617. }
  5618. #u20010 .text {
  5619. position:absolute;
  5620. align-self:center;
  5621. padding:2px 2px 2px 2px;
  5622. box-sizing:border-box;
  5623. width:100%;
  5624. }
  5625. #u20010_text {
  5626. border-width:0px;
  5627. word-wrap:break-word;
  5628. text-transform:none;
  5629. visibility:hidden;
  5630. }
  5631. #u20011_img {
  5632. border-width:0px;
  5633. position:absolute;
  5634. left:0px;
  5635. top:0px;
  5636. width:102px;
  5637. height:30px;
  5638. }
  5639. #u20011 {
  5640. border-width:0px;
  5641. position:absolute;
  5642. left:1116px;
  5643. top:282px;
  5644. width:102px;
  5645. height:30px;
  5646. display:flex;
  5647. font-size:14px;
  5648. }
  5649. #u20011 .text {
  5650. position:absolute;
  5651. align-self:center;
  5652. padding:2px 2px 2px 2px;
  5653. box-sizing:border-box;
  5654. width:100%;
  5655. }
  5656. #u20011_text {
  5657. border-width:0px;
  5658. word-wrap:break-word;
  5659. text-transform:none;
  5660. visibility:hidden;
  5661. }
  5662. #u20012_img {
  5663. border-width:0px;
  5664. position:absolute;
  5665. left:0px;
  5666. top:0px;
  5667. width:93px;
  5668. height:30px;
  5669. }
  5670. #u20012 {
  5671. border-width:0px;
  5672. position:absolute;
  5673. left:0px;
  5674. top:312px;
  5675. width:93px;
  5676. height:30px;
  5677. display:flex;
  5678. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5679. font-weight:400;
  5680. font-style:normal;
  5681. font-size:14px;
  5682. }
  5683. #u20012 .text {
  5684. position:absolute;
  5685. align-self:center;
  5686. padding:2px 2px 2px 2px;
  5687. box-sizing:border-box;
  5688. width:100%;
  5689. }
  5690. #u20012_text {
  5691. border-width:0px;
  5692. word-wrap:break-word;
  5693. text-transform:none;
  5694. visibility:hidden;
  5695. }
  5696. #u20013_img {
  5697. border-width:0px;
  5698. position:absolute;
  5699. left:0px;
  5700. top:0px;
  5701. width:95px;
  5702. height:30px;
  5703. }
  5704. #u20013 {
  5705. border-width:0px;
  5706. position:absolute;
  5707. left:93px;
  5708. top:312px;
  5709. width:95px;
  5710. height:30px;
  5711. display:flex;
  5712. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5713. font-weight:400;
  5714. font-style:normal;
  5715. font-size:14px;
  5716. }
  5717. #u20013 .text {
  5718. position:absolute;
  5719. align-self:center;
  5720. padding:2px 2px 2px 2px;
  5721. box-sizing:border-box;
  5722. width:100%;
  5723. }
  5724. #u20013_text {
  5725. border-width:0px;
  5726. word-wrap:break-word;
  5727. text-transform:none;
  5728. visibility:hidden;
  5729. }
  5730. #u20014_img {
  5731. border-width:0px;
  5732. position:absolute;
  5733. left:0px;
  5734. top:0px;
  5735. width:93px;
  5736. height:30px;
  5737. }
  5738. #u20014 {
  5739. border-width:0px;
  5740. position:absolute;
  5741. left:188px;
  5742. top:312px;
  5743. width:93px;
  5744. height:30px;
  5745. display:flex;
  5746. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5747. font-weight:400;
  5748. font-style:normal;
  5749. font-size:14px;
  5750. }
  5751. #u20014 .text {
  5752. position:absolute;
  5753. align-self:center;
  5754. padding:2px 2px 2px 2px;
  5755. box-sizing:border-box;
  5756. width:100%;
  5757. }
  5758. #u20014_text {
  5759. border-width:0px;
  5760. word-wrap:break-word;
  5761. text-transform:none;
  5762. visibility:hidden;
  5763. }
  5764. #u20015_img {
  5765. border-width:0px;
  5766. position:absolute;
  5767. left:0px;
  5768. top:0px;
  5769. width:114px;
  5770. height:30px;
  5771. }
  5772. #u20015 {
  5773. border-width:0px;
  5774. position:absolute;
  5775. left:281px;
  5776. top:312px;
  5777. width:114px;
  5778. height:30px;
  5779. display:flex;
  5780. font-size:14px;
  5781. }
  5782. #u20015 .text {
  5783. position:absolute;
  5784. align-self:center;
  5785. padding:2px 2px 2px 2px;
  5786. box-sizing:border-box;
  5787. width:100%;
  5788. }
  5789. #u20015_text {
  5790. border-width:0px;
  5791. word-wrap:break-word;
  5792. text-transform:none;
  5793. visibility:hidden;
  5794. }
  5795. #u20016_img {
  5796. border-width:0px;
  5797. position:absolute;
  5798. left:0px;
  5799. top:0px;
  5800. width:114px;
  5801. height:30px;
  5802. }
  5803. #u20016 {
  5804. border-width:0px;
  5805. position:absolute;
  5806. left:395px;
  5807. top:312px;
  5808. width:114px;
  5809. height:30px;
  5810. display:flex;
  5811. font-size:14px;
  5812. }
  5813. #u20016 .text {
  5814. position:absolute;
  5815. align-self:center;
  5816. padding:2px 2px 2px 2px;
  5817. box-sizing:border-box;
  5818. width:100%;
  5819. }
  5820. #u20016_text {
  5821. border-width:0px;
  5822. word-wrap:break-word;
  5823. text-transform:none;
  5824. visibility:hidden;
  5825. }
  5826. #u20017_img {
  5827. border-width:0px;
  5828. position:absolute;
  5829. left:0px;
  5830. top:0px;
  5831. width:102px;
  5832. height:30px;
  5833. }
  5834. #u20017 {
  5835. border-width:0px;
  5836. position:absolute;
  5837. left:509px;
  5838. top:312px;
  5839. width:102px;
  5840. height:30px;
  5841. display:flex;
  5842. font-size:14px;
  5843. }
  5844. #u20017 .text {
  5845. position:absolute;
  5846. align-self:center;
  5847. padding:2px 2px 2px 2px;
  5848. box-sizing:border-box;
  5849. width:100%;
  5850. }
  5851. #u20017_text {
  5852. border-width:0px;
  5853. word-wrap:break-word;
  5854. text-transform:none;
  5855. visibility:hidden;
  5856. }
  5857. #u20018_img {
  5858. border-width:0px;
  5859. position:absolute;
  5860. left:0px;
  5861. top:0px;
  5862. width:100px;
  5863. height:30px;
  5864. }
  5865. #u20018 {
  5866. border-width:0px;
  5867. position:absolute;
  5868. left:611px;
  5869. top:312px;
  5870. width:100px;
  5871. height:30px;
  5872. display:flex;
  5873. font-size:14px;
  5874. }
  5875. #u20018 .text {
  5876. position:absolute;
  5877. align-self:center;
  5878. padding:2px 2px 2px 2px;
  5879. box-sizing:border-box;
  5880. width:100%;
  5881. }
  5882. #u20018_text {
  5883. border-width:0px;
  5884. word-wrap:break-word;
  5885. text-transform:none;
  5886. visibility:hidden;
  5887. }
  5888. #u20019_img {
  5889. border-width:0px;
  5890. position:absolute;
  5891. left:0px;
  5892. top:0px;
  5893. width:100px;
  5894. height:30px;
  5895. }
  5896. #u20019 {
  5897. border-width:0px;
  5898. position:absolute;
  5899. left:711px;
  5900. top:312px;
  5901. width:100px;
  5902. height:30px;
  5903. display:flex;
  5904. font-size:14px;
  5905. }
  5906. #u20019 .text {
  5907. position:absolute;
  5908. align-self:center;
  5909. padding:2px 2px 2px 2px;
  5910. box-sizing:border-box;
  5911. width:100%;
  5912. }
  5913. #u20019_text {
  5914. border-width:0px;
  5915. word-wrap:break-word;
  5916. text-transform:none;
  5917. visibility:hidden;
  5918. }
  5919. #u20020_img {
  5920. border-width:0px;
  5921. position:absolute;
  5922. left:0px;
  5923. top:0px;
  5924. width:102px;
  5925. height:30px;
  5926. }
  5927. #u20020 {
  5928. border-width:0px;
  5929. position:absolute;
  5930. left:811px;
  5931. top:312px;
  5932. width:102px;
  5933. height:30px;
  5934. display:flex;
  5935. font-size:14px;
  5936. }
  5937. #u20020 .text {
  5938. position:absolute;
  5939. align-self:center;
  5940. padding:2px 2px 2px 2px;
  5941. box-sizing:border-box;
  5942. width:100%;
  5943. }
  5944. #u20020_text {
  5945. border-width:0px;
  5946. word-wrap:break-word;
  5947. text-transform:none;
  5948. visibility:hidden;
  5949. }
  5950. #u20021_img {
  5951. border-width:0px;
  5952. position:absolute;
  5953. left:0px;
  5954. top:0px;
  5955. width:102px;
  5956. height:30px;
  5957. }
  5958. #u20021 {
  5959. border-width:0px;
  5960. position:absolute;
  5961. left:913px;
  5962. top:312px;
  5963. width:102px;
  5964. height:30px;
  5965. display:flex;
  5966. font-size:14px;
  5967. }
  5968. #u20021 .text {
  5969. position:absolute;
  5970. align-self:center;
  5971. padding:2px 2px 2px 2px;
  5972. box-sizing:border-box;
  5973. width:100%;
  5974. }
  5975. #u20021_text {
  5976. border-width:0px;
  5977. word-wrap:break-word;
  5978. text-transform:none;
  5979. visibility:hidden;
  5980. }
  5981. #u20022_img {
  5982. border-width:0px;
  5983. position:absolute;
  5984. left:0px;
  5985. top:0px;
  5986. width:101px;
  5987. height:30px;
  5988. }
  5989. #u20022 {
  5990. border-width:0px;
  5991. position:absolute;
  5992. left:1015px;
  5993. top:312px;
  5994. width:101px;
  5995. height:30px;
  5996. display:flex;
  5997. font-size:14px;
  5998. }
  5999. #u20022 .text {
  6000. position:absolute;
  6001. align-self:center;
  6002. padding:2px 2px 2px 2px;
  6003. box-sizing:border-box;
  6004. width:100%;
  6005. }
  6006. #u20022_text {
  6007. border-width:0px;
  6008. word-wrap:break-word;
  6009. text-transform:none;
  6010. visibility:hidden;
  6011. }
  6012. #u20023_img {
  6013. border-width:0px;
  6014. position:absolute;
  6015. left:0px;
  6016. top:0px;
  6017. width:102px;
  6018. height:30px;
  6019. }
  6020. #u20023 {
  6021. border-width:0px;
  6022. position:absolute;
  6023. left:1116px;
  6024. top:312px;
  6025. width:102px;
  6026. height:30px;
  6027. display:flex;
  6028. font-size:14px;
  6029. }
  6030. #u20023 .text {
  6031. position:absolute;
  6032. align-self:center;
  6033. padding:2px 2px 2px 2px;
  6034. box-sizing:border-box;
  6035. width:100%;
  6036. }
  6037. #u20023_text {
  6038. border-width:0px;
  6039. word-wrap:break-word;
  6040. text-transform:none;
  6041. visibility:hidden;
  6042. }
  6043. #u20024_img {
  6044. border-width:0px;
  6045. position:absolute;
  6046. left:0px;
  6047. top:0px;
  6048. width:93px;
  6049. height:30px;
  6050. }
  6051. #u20024 {
  6052. border-width:0px;
  6053. position:absolute;
  6054. left:0px;
  6055. top:342px;
  6056. width:93px;
  6057. height:30px;
  6058. display:flex;
  6059. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6060. font-weight:400;
  6061. font-style:normal;
  6062. font-size:14px;
  6063. }
  6064. #u20024 .text {
  6065. position:absolute;
  6066. align-self:center;
  6067. padding:2px 2px 2px 2px;
  6068. box-sizing:border-box;
  6069. width:100%;
  6070. }
  6071. #u20024_text {
  6072. border-width:0px;
  6073. word-wrap:break-word;
  6074. text-transform:none;
  6075. visibility:hidden;
  6076. }
  6077. #u20025_img {
  6078. border-width:0px;
  6079. position:absolute;
  6080. left:0px;
  6081. top:0px;
  6082. width:95px;
  6083. height:30px;
  6084. }
  6085. #u20025 {
  6086. border-width:0px;
  6087. position:absolute;
  6088. left:93px;
  6089. top:342px;
  6090. width:95px;
  6091. height:30px;
  6092. display:flex;
  6093. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6094. font-weight:400;
  6095. font-style:normal;
  6096. font-size:14px;
  6097. }
  6098. #u20025 .text {
  6099. position:absolute;
  6100. align-self:center;
  6101. padding:2px 2px 2px 2px;
  6102. box-sizing:border-box;
  6103. width:100%;
  6104. }
  6105. #u20025_text {
  6106. border-width:0px;
  6107. word-wrap:break-word;
  6108. text-transform:none;
  6109. visibility:hidden;
  6110. }
  6111. #u20026_img {
  6112. border-width:0px;
  6113. position:absolute;
  6114. left:0px;
  6115. top:0px;
  6116. width:93px;
  6117. height:30px;
  6118. }
  6119. #u20026 {
  6120. border-width:0px;
  6121. position:absolute;
  6122. left:188px;
  6123. top:342px;
  6124. width:93px;
  6125. height:30px;
  6126. display:flex;
  6127. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6128. font-weight:400;
  6129. font-style:normal;
  6130. font-size:14px;
  6131. }
  6132. #u20026 .text {
  6133. position:absolute;
  6134. align-self:center;
  6135. padding:2px 2px 2px 2px;
  6136. box-sizing:border-box;
  6137. width:100%;
  6138. }
  6139. #u20026_text {
  6140. border-width:0px;
  6141. word-wrap:break-word;
  6142. text-transform:none;
  6143. visibility:hidden;
  6144. }
  6145. #u20027_img {
  6146. border-width:0px;
  6147. position:absolute;
  6148. left:0px;
  6149. top:0px;
  6150. width:114px;
  6151. height:30px;
  6152. }
  6153. #u20027 {
  6154. border-width:0px;
  6155. position:absolute;
  6156. left:281px;
  6157. top:342px;
  6158. width:114px;
  6159. height:30px;
  6160. display:flex;
  6161. font-size:14px;
  6162. }
  6163. #u20027 .text {
  6164. position:absolute;
  6165. align-self:center;
  6166. padding:2px 2px 2px 2px;
  6167. box-sizing:border-box;
  6168. width:100%;
  6169. }
  6170. #u20027_text {
  6171. border-width:0px;
  6172. word-wrap:break-word;
  6173. text-transform:none;
  6174. visibility:hidden;
  6175. }
  6176. #u20028_img {
  6177. border-width:0px;
  6178. position:absolute;
  6179. left:0px;
  6180. top:0px;
  6181. width:114px;
  6182. height:30px;
  6183. }
  6184. #u20028 {
  6185. border-width:0px;
  6186. position:absolute;
  6187. left:395px;
  6188. top:342px;
  6189. width:114px;
  6190. height:30px;
  6191. display:flex;
  6192. font-size:14px;
  6193. }
  6194. #u20028 .text {
  6195. position:absolute;
  6196. align-self:center;
  6197. padding:2px 2px 2px 2px;
  6198. box-sizing:border-box;
  6199. width:100%;
  6200. }
  6201. #u20028_text {
  6202. border-width:0px;
  6203. word-wrap:break-word;
  6204. text-transform:none;
  6205. visibility:hidden;
  6206. }
  6207. #u20029_img {
  6208. border-width:0px;
  6209. position:absolute;
  6210. left:0px;
  6211. top:0px;
  6212. width:102px;
  6213. height:30px;
  6214. }
  6215. #u20029 {
  6216. border-width:0px;
  6217. position:absolute;
  6218. left:509px;
  6219. top:342px;
  6220. width:102px;
  6221. height:30px;
  6222. display:flex;
  6223. font-size:14px;
  6224. }
  6225. #u20029 .text {
  6226. position:absolute;
  6227. align-self:center;
  6228. padding:2px 2px 2px 2px;
  6229. box-sizing:border-box;
  6230. width:100%;
  6231. }
  6232. #u20029_text {
  6233. border-width:0px;
  6234. word-wrap:break-word;
  6235. text-transform:none;
  6236. visibility:hidden;
  6237. }
  6238. #u20030_img {
  6239. border-width:0px;
  6240. position:absolute;
  6241. left:0px;
  6242. top:0px;
  6243. width:100px;
  6244. height:30px;
  6245. }
  6246. #u20030 {
  6247. border-width:0px;
  6248. position:absolute;
  6249. left:611px;
  6250. top:342px;
  6251. width:100px;
  6252. height:30px;
  6253. display:flex;
  6254. font-size:14px;
  6255. }
  6256. #u20030 .text {
  6257. position:absolute;
  6258. align-self:center;
  6259. padding:2px 2px 2px 2px;
  6260. box-sizing:border-box;
  6261. width:100%;
  6262. }
  6263. #u20030_text {
  6264. border-width:0px;
  6265. word-wrap:break-word;
  6266. text-transform:none;
  6267. visibility:hidden;
  6268. }
  6269. #u20031_img {
  6270. border-width:0px;
  6271. position:absolute;
  6272. left:0px;
  6273. top:0px;
  6274. width:100px;
  6275. height:30px;
  6276. }
  6277. #u20031 {
  6278. border-width:0px;
  6279. position:absolute;
  6280. left:711px;
  6281. top:342px;
  6282. width:100px;
  6283. height:30px;
  6284. display:flex;
  6285. font-size:14px;
  6286. }
  6287. #u20031 .text {
  6288. position:absolute;
  6289. align-self:center;
  6290. padding:2px 2px 2px 2px;
  6291. box-sizing:border-box;
  6292. width:100%;
  6293. }
  6294. #u20031_text {
  6295. border-width:0px;
  6296. word-wrap:break-word;
  6297. text-transform:none;
  6298. visibility:hidden;
  6299. }
  6300. #u20032_img {
  6301. border-width:0px;
  6302. position:absolute;
  6303. left:0px;
  6304. top:0px;
  6305. width:102px;
  6306. height:30px;
  6307. }
  6308. #u20032 {
  6309. border-width:0px;
  6310. position:absolute;
  6311. left:811px;
  6312. top:342px;
  6313. width:102px;
  6314. height:30px;
  6315. display:flex;
  6316. font-size:14px;
  6317. }
  6318. #u20032 .text {
  6319. position:absolute;
  6320. align-self:center;
  6321. padding:2px 2px 2px 2px;
  6322. box-sizing:border-box;
  6323. width:100%;
  6324. }
  6325. #u20032_text {
  6326. border-width:0px;
  6327. word-wrap:break-word;
  6328. text-transform:none;
  6329. visibility:hidden;
  6330. }
  6331. #u20033_img {
  6332. border-width:0px;
  6333. position:absolute;
  6334. left:0px;
  6335. top:0px;
  6336. width:102px;
  6337. height:30px;
  6338. }
  6339. #u20033 {
  6340. border-width:0px;
  6341. position:absolute;
  6342. left:913px;
  6343. top:342px;
  6344. width:102px;
  6345. height:30px;
  6346. display:flex;
  6347. font-size:14px;
  6348. }
  6349. #u20033 .text {
  6350. position:absolute;
  6351. align-self:center;
  6352. padding:2px 2px 2px 2px;
  6353. box-sizing:border-box;
  6354. width:100%;
  6355. }
  6356. #u20033_text {
  6357. border-width:0px;
  6358. word-wrap:break-word;
  6359. text-transform:none;
  6360. visibility:hidden;
  6361. }
  6362. #u20034_img {
  6363. border-width:0px;
  6364. position:absolute;
  6365. left:0px;
  6366. top:0px;
  6367. width:101px;
  6368. height:30px;
  6369. }
  6370. #u20034 {
  6371. border-width:0px;
  6372. position:absolute;
  6373. left:1015px;
  6374. top:342px;
  6375. width:101px;
  6376. height:30px;
  6377. display:flex;
  6378. font-size:14px;
  6379. }
  6380. #u20034 .text {
  6381. position:absolute;
  6382. align-self:center;
  6383. padding:2px 2px 2px 2px;
  6384. box-sizing:border-box;
  6385. width:100%;
  6386. }
  6387. #u20034_text {
  6388. border-width:0px;
  6389. word-wrap:break-word;
  6390. text-transform:none;
  6391. visibility:hidden;
  6392. }
  6393. #u20035_img {
  6394. border-width:0px;
  6395. position:absolute;
  6396. left:0px;
  6397. top:0px;
  6398. width:102px;
  6399. height:30px;
  6400. }
  6401. #u20035 {
  6402. border-width:0px;
  6403. position:absolute;
  6404. left:1116px;
  6405. top:342px;
  6406. width:102px;
  6407. height:30px;
  6408. display:flex;
  6409. font-size:14px;
  6410. }
  6411. #u20035 .text {
  6412. position:absolute;
  6413. align-self:center;
  6414. padding:2px 2px 2px 2px;
  6415. box-sizing:border-box;
  6416. width:100%;
  6417. }
  6418. #u20035_text {
  6419. border-width:0px;
  6420. word-wrap:break-word;
  6421. text-transform:none;
  6422. visibility:hidden;
  6423. }
  6424. #u20036_img {
  6425. border-width:0px;
  6426. position:absolute;
  6427. left:0px;
  6428. top:0px;
  6429. width:93px;
  6430. height:30px;
  6431. }
  6432. #u20036 {
  6433. border-width:0px;
  6434. position:absolute;
  6435. left:0px;
  6436. top:372px;
  6437. width:93px;
  6438. height:30px;
  6439. display:flex;
  6440. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6441. font-weight:400;
  6442. font-style:normal;
  6443. font-size:14px;
  6444. }
  6445. #u20036 .text {
  6446. position:absolute;
  6447. align-self:center;
  6448. padding:2px 2px 2px 2px;
  6449. box-sizing:border-box;
  6450. width:100%;
  6451. }
  6452. #u20036_text {
  6453. border-width:0px;
  6454. word-wrap:break-word;
  6455. text-transform:none;
  6456. visibility:hidden;
  6457. }
  6458. #u20037_img {
  6459. border-width:0px;
  6460. position:absolute;
  6461. left:0px;
  6462. top:0px;
  6463. width:95px;
  6464. height:30px;
  6465. }
  6466. #u20037 {
  6467. border-width:0px;
  6468. position:absolute;
  6469. left:93px;
  6470. top:372px;
  6471. width:95px;
  6472. height:30px;
  6473. display:flex;
  6474. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6475. font-weight:400;
  6476. font-style:normal;
  6477. font-size:14px;
  6478. }
  6479. #u20037 .text {
  6480. position:absolute;
  6481. align-self:center;
  6482. padding:2px 2px 2px 2px;
  6483. box-sizing:border-box;
  6484. width:100%;
  6485. }
  6486. #u20037_text {
  6487. border-width:0px;
  6488. word-wrap:break-word;
  6489. text-transform:none;
  6490. visibility:hidden;
  6491. }
  6492. #u20038_img {
  6493. border-width:0px;
  6494. position:absolute;
  6495. left:0px;
  6496. top:0px;
  6497. width:93px;
  6498. height:30px;
  6499. }
  6500. #u20038 {
  6501. border-width:0px;
  6502. position:absolute;
  6503. left:188px;
  6504. top:372px;
  6505. width:93px;
  6506. height:30px;
  6507. display:flex;
  6508. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6509. font-weight:400;
  6510. font-style:normal;
  6511. font-size:14px;
  6512. }
  6513. #u20038 .text {
  6514. position:absolute;
  6515. align-self:center;
  6516. padding:2px 2px 2px 2px;
  6517. box-sizing:border-box;
  6518. width:100%;
  6519. }
  6520. #u20038_text {
  6521. border-width:0px;
  6522. word-wrap:break-word;
  6523. text-transform:none;
  6524. visibility:hidden;
  6525. }
  6526. #u20039_img {
  6527. border-width:0px;
  6528. position:absolute;
  6529. left:0px;
  6530. top:0px;
  6531. width:114px;
  6532. height:30px;
  6533. }
  6534. #u20039 {
  6535. border-width:0px;
  6536. position:absolute;
  6537. left:281px;
  6538. top:372px;
  6539. width:114px;
  6540. height:30px;
  6541. display:flex;
  6542. font-size:14px;
  6543. }
  6544. #u20039 .text {
  6545. position:absolute;
  6546. align-self:center;
  6547. padding:2px 2px 2px 2px;
  6548. box-sizing:border-box;
  6549. width:100%;
  6550. }
  6551. #u20039_text {
  6552. border-width:0px;
  6553. word-wrap:break-word;
  6554. text-transform:none;
  6555. visibility:hidden;
  6556. }
  6557. #u20040_img {
  6558. border-width:0px;
  6559. position:absolute;
  6560. left:0px;
  6561. top:0px;
  6562. width:114px;
  6563. height:30px;
  6564. }
  6565. #u20040 {
  6566. border-width:0px;
  6567. position:absolute;
  6568. left:395px;
  6569. top:372px;
  6570. width:114px;
  6571. height:30px;
  6572. display:flex;
  6573. font-size:14px;
  6574. }
  6575. #u20040 .text {
  6576. position:absolute;
  6577. align-self:center;
  6578. padding:2px 2px 2px 2px;
  6579. box-sizing:border-box;
  6580. width:100%;
  6581. }
  6582. #u20040_text {
  6583. border-width:0px;
  6584. word-wrap:break-word;
  6585. text-transform:none;
  6586. visibility:hidden;
  6587. }
  6588. #u20041_img {
  6589. border-width:0px;
  6590. position:absolute;
  6591. left:0px;
  6592. top:0px;
  6593. width:102px;
  6594. height:30px;
  6595. }
  6596. #u20041 {
  6597. border-width:0px;
  6598. position:absolute;
  6599. left:509px;
  6600. top:372px;
  6601. width:102px;
  6602. height:30px;
  6603. display:flex;
  6604. font-size:14px;
  6605. }
  6606. #u20041 .text {
  6607. position:absolute;
  6608. align-self:center;
  6609. padding:2px 2px 2px 2px;
  6610. box-sizing:border-box;
  6611. width:100%;
  6612. }
  6613. #u20041_text {
  6614. border-width:0px;
  6615. word-wrap:break-word;
  6616. text-transform:none;
  6617. visibility:hidden;
  6618. }
  6619. #u20042_img {
  6620. border-width:0px;
  6621. position:absolute;
  6622. left:0px;
  6623. top:0px;
  6624. width:100px;
  6625. height:30px;
  6626. }
  6627. #u20042 {
  6628. border-width:0px;
  6629. position:absolute;
  6630. left:611px;
  6631. top:372px;
  6632. width:100px;
  6633. height:30px;
  6634. display:flex;
  6635. font-size:14px;
  6636. }
  6637. #u20042 .text {
  6638. position:absolute;
  6639. align-self:center;
  6640. padding:2px 2px 2px 2px;
  6641. box-sizing:border-box;
  6642. width:100%;
  6643. }
  6644. #u20042_text {
  6645. border-width:0px;
  6646. word-wrap:break-word;
  6647. text-transform:none;
  6648. visibility:hidden;
  6649. }
  6650. #u20043_img {
  6651. border-width:0px;
  6652. position:absolute;
  6653. left:0px;
  6654. top:0px;
  6655. width:100px;
  6656. height:30px;
  6657. }
  6658. #u20043 {
  6659. border-width:0px;
  6660. position:absolute;
  6661. left:711px;
  6662. top:372px;
  6663. width:100px;
  6664. height:30px;
  6665. display:flex;
  6666. font-size:14px;
  6667. }
  6668. #u20043 .text {
  6669. position:absolute;
  6670. align-self:center;
  6671. padding:2px 2px 2px 2px;
  6672. box-sizing:border-box;
  6673. width:100%;
  6674. }
  6675. #u20043_text {
  6676. border-width:0px;
  6677. word-wrap:break-word;
  6678. text-transform:none;
  6679. visibility:hidden;
  6680. }
  6681. #u20044_img {
  6682. border-width:0px;
  6683. position:absolute;
  6684. left:0px;
  6685. top:0px;
  6686. width:102px;
  6687. height:30px;
  6688. }
  6689. #u20044 {
  6690. border-width:0px;
  6691. position:absolute;
  6692. left:811px;
  6693. top:372px;
  6694. width:102px;
  6695. height:30px;
  6696. display:flex;
  6697. font-size:14px;
  6698. }
  6699. #u20044 .text {
  6700. position:absolute;
  6701. align-self:center;
  6702. padding:2px 2px 2px 2px;
  6703. box-sizing:border-box;
  6704. width:100%;
  6705. }
  6706. #u20044_text {
  6707. border-width:0px;
  6708. word-wrap:break-word;
  6709. text-transform:none;
  6710. visibility:hidden;
  6711. }
  6712. #u20045_img {
  6713. border-width:0px;
  6714. position:absolute;
  6715. left:0px;
  6716. top:0px;
  6717. width:102px;
  6718. height:30px;
  6719. }
  6720. #u20045 {
  6721. border-width:0px;
  6722. position:absolute;
  6723. left:913px;
  6724. top:372px;
  6725. width:102px;
  6726. height:30px;
  6727. display:flex;
  6728. font-size:14px;
  6729. }
  6730. #u20045 .text {
  6731. position:absolute;
  6732. align-self:center;
  6733. padding:2px 2px 2px 2px;
  6734. box-sizing:border-box;
  6735. width:100%;
  6736. }
  6737. #u20045_text {
  6738. border-width:0px;
  6739. word-wrap:break-word;
  6740. text-transform:none;
  6741. visibility:hidden;
  6742. }
  6743. #u20046_img {
  6744. border-width:0px;
  6745. position:absolute;
  6746. left:0px;
  6747. top:0px;
  6748. width:101px;
  6749. height:30px;
  6750. }
  6751. #u20046 {
  6752. border-width:0px;
  6753. position:absolute;
  6754. left:1015px;
  6755. top:372px;
  6756. width:101px;
  6757. height:30px;
  6758. display:flex;
  6759. font-size:14px;
  6760. }
  6761. #u20046 .text {
  6762. position:absolute;
  6763. align-self:center;
  6764. padding:2px 2px 2px 2px;
  6765. box-sizing:border-box;
  6766. width:100%;
  6767. }
  6768. #u20046_text {
  6769. border-width:0px;
  6770. word-wrap:break-word;
  6771. text-transform:none;
  6772. visibility:hidden;
  6773. }
  6774. #u20047_img {
  6775. border-width:0px;
  6776. position:absolute;
  6777. left:0px;
  6778. top:0px;
  6779. width:102px;
  6780. height:30px;
  6781. }
  6782. #u20047 {
  6783. border-width:0px;
  6784. position:absolute;
  6785. left:1116px;
  6786. top:372px;
  6787. width:102px;
  6788. height:30px;
  6789. display:flex;
  6790. font-size:14px;
  6791. }
  6792. #u20047 .text {
  6793. position:absolute;
  6794. align-self:center;
  6795. padding:2px 2px 2px 2px;
  6796. box-sizing:border-box;
  6797. width:100%;
  6798. }
  6799. #u20047_text {
  6800. border-width:0px;
  6801. word-wrap:break-word;
  6802. text-transform:none;
  6803. visibility:hidden;
  6804. }
  6805. #u20048_img {
  6806. border-width:0px;
  6807. position:absolute;
  6808. left:0px;
  6809. top:0px;
  6810. width:93px;
  6811. height:30px;
  6812. }
  6813. #u20048 {
  6814. border-width:0px;
  6815. position:absolute;
  6816. left:0px;
  6817. top:402px;
  6818. width:93px;
  6819. height:30px;
  6820. display:flex;
  6821. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6822. font-weight:400;
  6823. font-style:normal;
  6824. font-size:14px;
  6825. }
  6826. #u20048 .text {
  6827. position:absolute;
  6828. align-self:center;
  6829. padding:2px 2px 2px 2px;
  6830. box-sizing:border-box;
  6831. width:100%;
  6832. }
  6833. #u20048_text {
  6834. border-width:0px;
  6835. word-wrap:break-word;
  6836. text-transform:none;
  6837. visibility:hidden;
  6838. }
  6839. #u20049_img {
  6840. border-width:0px;
  6841. position:absolute;
  6842. left:0px;
  6843. top:0px;
  6844. width:95px;
  6845. height:30px;
  6846. }
  6847. #u20049 {
  6848. border-width:0px;
  6849. position:absolute;
  6850. left:93px;
  6851. top:402px;
  6852. width:95px;
  6853. height:30px;
  6854. display:flex;
  6855. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6856. font-weight:400;
  6857. font-style:normal;
  6858. font-size:14px;
  6859. }
  6860. #u20049 .text {
  6861. position:absolute;
  6862. align-self:center;
  6863. padding:2px 2px 2px 2px;
  6864. box-sizing:border-box;
  6865. width:100%;
  6866. }
  6867. #u20049_text {
  6868. border-width:0px;
  6869. word-wrap:break-word;
  6870. text-transform:none;
  6871. visibility:hidden;
  6872. }
  6873. #u20050_img {
  6874. border-width:0px;
  6875. position:absolute;
  6876. left:0px;
  6877. top:0px;
  6878. width:93px;
  6879. height:30px;
  6880. }
  6881. #u20050 {
  6882. border-width:0px;
  6883. position:absolute;
  6884. left:188px;
  6885. top:402px;
  6886. width:93px;
  6887. height:30px;
  6888. display:flex;
  6889. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6890. font-weight:400;
  6891. font-style:normal;
  6892. font-size:14px;
  6893. }
  6894. #u20050 .text {
  6895. position:absolute;
  6896. align-self:center;
  6897. padding:2px 2px 2px 2px;
  6898. box-sizing:border-box;
  6899. width:100%;
  6900. }
  6901. #u20050_text {
  6902. border-width:0px;
  6903. word-wrap:break-word;
  6904. text-transform:none;
  6905. visibility:hidden;
  6906. }
  6907. #u20051_img {
  6908. border-width:0px;
  6909. position:absolute;
  6910. left:0px;
  6911. top:0px;
  6912. width:114px;
  6913. height:30px;
  6914. }
  6915. #u20051 {
  6916. border-width:0px;
  6917. position:absolute;
  6918. left:281px;
  6919. top:402px;
  6920. width:114px;
  6921. height:30px;
  6922. display:flex;
  6923. font-size:14px;
  6924. }
  6925. #u20051 .text {
  6926. position:absolute;
  6927. align-self:center;
  6928. padding:2px 2px 2px 2px;
  6929. box-sizing:border-box;
  6930. width:100%;
  6931. }
  6932. #u20051_text {
  6933. border-width:0px;
  6934. word-wrap:break-word;
  6935. text-transform:none;
  6936. visibility:hidden;
  6937. }
  6938. #u20052_img {
  6939. border-width:0px;
  6940. position:absolute;
  6941. left:0px;
  6942. top:0px;
  6943. width:114px;
  6944. height:30px;
  6945. }
  6946. #u20052 {
  6947. border-width:0px;
  6948. position:absolute;
  6949. left:395px;
  6950. top:402px;
  6951. width:114px;
  6952. height:30px;
  6953. display:flex;
  6954. font-size:14px;
  6955. }
  6956. #u20052 .text {
  6957. position:absolute;
  6958. align-self:center;
  6959. padding:2px 2px 2px 2px;
  6960. box-sizing:border-box;
  6961. width:100%;
  6962. }
  6963. #u20052_text {
  6964. border-width:0px;
  6965. word-wrap:break-word;
  6966. text-transform:none;
  6967. visibility:hidden;
  6968. }
  6969. #u20053_img {
  6970. border-width:0px;
  6971. position:absolute;
  6972. left:0px;
  6973. top:0px;
  6974. width:102px;
  6975. height:30px;
  6976. }
  6977. #u20053 {
  6978. border-width:0px;
  6979. position:absolute;
  6980. left:509px;
  6981. top:402px;
  6982. width:102px;
  6983. height:30px;
  6984. display:flex;
  6985. font-size:14px;
  6986. }
  6987. #u20053 .text {
  6988. position:absolute;
  6989. align-self:center;
  6990. padding:2px 2px 2px 2px;
  6991. box-sizing:border-box;
  6992. width:100%;
  6993. }
  6994. #u20053_text {
  6995. border-width:0px;
  6996. word-wrap:break-word;
  6997. text-transform:none;
  6998. visibility:hidden;
  6999. }
  7000. #u20054_img {
  7001. border-width:0px;
  7002. position:absolute;
  7003. left:0px;
  7004. top:0px;
  7005. width:100px;
  7006. height:30px;
  7007. }
  7008. #u20054 {
  7009. border-width:0px;
  7010. position:absolute;
  7011. left:611px;
  7012. top:402px;
  7013. width:100px;
  7014. height:30px;
  7015. display:flex;
  7016. font-size:14px;
  7017. }
  7018. #u20054 .text {
  7019. position:absolute;
  7020. align-self:center;
  7021. padding:2px 2px 2px 2px;
  7022. box-sizing:border-box;
  7023. width:100%;
  7024. }
  7025. #u20054_text {
  7026. border-width:0px;
  7027. word-wrap:break-word;
  7028. text-transform:none;
  7029. visibility:hidden;
  7030. }
  7031. #u20055_img {
  7032. border-width:0px;
  7033. position:absolute;
  7034. left:0px;
  7035. top:0px;
  7036. width:100px;
  7037. height:30px;
  7038. }
  7039. #u20055 {
  7040. border-width:0px;
  7041. position:absolute;
  7042. left:711px;
  7043. top:402px;
  7044. width:100px;
  7045. height:30px;
  7046. display:flex;
  7047. font-size:14px;
  7048. }
  7049. #u20055 .text {
  7050. position:absolute;
  7051. align-self:center;
  7052. padding:2px 2px 2px 2px;
  7053. box-sizing:border-box;
  7054. width:100%;
  7055. }
  7056. #u20055_text {
  7057. border-width:0px;
  7058. word-wrap:break-word;
  7059. text-transform:none;
  7060. visibility:hidden;
  7061. }
  7062. #u20056_img {
  7063. border-width:0px;
  7064. position:absolute;
  7065. left:0px;
  7066. top:0px;
  7067. width:102px;
  7068. height:30px;
  7069. }
  7070. #u20056 {
  7071. border-width:0px;
  7072. position:absolute;
  7073. left:811px;
  7074. top:402px;
  7075. width:102px;
  7076. height:30px;
  7077. display:flex;
  7078. font-size:14px;
  7079. }
  7080. #u20056 .text {
  7081. position:absolute;
  7082. align-self:center;
  7083. padding:2px 2px 2px 2px;
  7084. box-sizing:border-box;
  7085. width:100%;
  7086. }
  7087. #u20056_text {
  7088. border-width:0px;
  7089. word-wrap:break-word;
  7090. text-transform:none;
  7091. visibility:hidden;
  7092. }
  7093. #u20057_img {
  7094. border-width:0px;
  7095. position:absolute;
  7096. left:0px;
  7097. top:0px;
  7098. width:102px;
  7099. height:30px;
  7100. }
  7101. #u20057 {
  7102. border-width:0px;
  7103. position:absolute;
  7104. left:913px;
  7105. top:402px;
  7106. width:102px;
  7107. height:30px;
  7108. display:flex;
  7109. font-size:14px;
  7110. }
  7111. #u20057 .text {
  7112. position:absolute;
  7113. align-self:center;
  7114. padding:2px 2px 2px 2px;
  7115. box-sizing:border-box;
  7116. width:100%;
  7117. }
  7118. #u20057_text {
  7119. border-width:0px;
  7120. word-wrap:break-word;
  7121. text-transform:none;
  7122. visibility:hidden;
  7123. }
  7124. #u20058_img {
  7125. border-width:0px;
  7126. position:absolute;
  7127. left:0px;
  7128. top:0px;
  7129. width:101px;
  7130. height:30px;
  7131. }
  7132. #u20058 {
  7133. border-width:0px;
  7134. position:absolute;
  7135. left:1015px;
  7136. top:402px;
  7137. width:101px;
  7138. height:30px;
  7139. display:flex;
  7140. font-size:14px;
  7141. }
  7142. #u20058 .text {
  7143. position:absolute;
  7144. align-self:center;
  7145. padding:2px 2px 2px 2px;
  7146. box-sizing:border-box;
  7147. width:100%;
  7148. }
  7149. #u20058_text {
  7150. border-width:0px;
  7151. word-wrap:break-word;
  7152. text-transform:none;
  7153. visibility:hidden;
  7154. }
  7155. #u20059_img {
  7156. border-width:0px;
  7157. position:absolute;
  7158. left:0px;
  7159. top:0px;
  7160. width:102px;
  7161. height:30px;
  7162. }
  7163. #u20059 {
  7164. border-width:0px;
  7165. position:absolute;
  7166. left:1116px;
  7167. top:402px;
  7168. width:102px;
  7169. height:30px;
  7170. display:flex;
  7171. font-size:14px;
  7172. }
  7173. #u20059 .text {
  7174. position:absolute;
  7175. align-self:center;
  7176. padding:2px 2px 2px 2px;
  7177. box-sizing:border-box;
  7178. width:100%;
  7179. }
  7180. #u20059_text {
  7181. border-width:0px;
  7182. word-wrap:break-word;
  7183. text-transform:none;
  7184. visibility:hidden;
  7185. }
  7186. #u20060_img {
  7187. border-width:0px;
  7188. position:absolute;
  7189. left:0px;
  7190. top:0px;
  7191. width:93px;
  7192. height:29px;
  7193. }
  7194. #u20060 {
  7195. border-width:0px;
  7196. position:absolute;
  7197. left:0px;
  7198. top:432px;
  7199. width:93px;
  7200. height:29px;
  7201. display:flex;
  7202. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7203. font-weight:400;
  7204. font-style:normal;
  7205. font-size:14px;
  7206. }
  7207. #u20060 .text {
  7208. position:absolute;
  7209. align-self:center;
  7210. padding:2px 2px 2px 2px;
  7211. box-sizing:border-box;
  7212. width:100%;
  7213. }
  7214. #u20060_text {
  7215. border-width:0px;
  7216. word-wrap:break-word;
  7217. text-transform:none;
  7218. visibility:hidden;
  7219. }
  7220. #u20061_img {
  7221. border-width:0px;
  7222. position:absolute;
  7223. left:0px;
  7224. top:0px;
  7225. width:95px;
  7226. height:29px;
  7227. }
  7228. #u20061 {
  7229. border-width:0px;
  7230. position:absolute;
  7231. left:93px;
  7232. top:432px;
  7233. width:95px;
  7234. height:29px;
  7235. display:flex;
  7236. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7237. font-weight:400;
  7238. font-style:normal;
  7239. font-size:14px;
  7240. }
  7241. #u20061 .text {
  7242. position:absolute;
  7243. align-self:center;
  7244. padding:2px 2px 2px 2px;
  7245. box-sizing:border-box;
  7246. width:100%;
  7247. }
  7248. #u20061_text {
  7249. border-width:0px;
  7250. word-wrap:break-word;
  7251. text-transform:none;
  7252. visibility:hidden;
  7253. }
  7254. #u20062_img {
  7255. border-width:0px;
  7256. position:absolute;
  7257. left:0px;
  7258. top:0px;
  7259. width:93px;
  7260. height:29px;
  7261. }
  7262. #u20062 {
  7263. border-width:0px;
  7264. position:absolute;
  7265. left:188px;
  7266. top:432px;
  7267. width:93px;
  7268. height:29px;
  7269. display:flex;
  7270. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7271. font-weight:400;
  7272. font-style:normal;
  7273. font-size:14px;
  7274. }
  7275. #u20062 .text {
  7276. position:absolute;
  7277. align-self:center;
  7278. padding:2px 2px 2px 2px;
  7279. box-sizing:border-box;
  7280. width:100%;
  7281. }
  7282. #u20062_text {
  7283. border-width:0px;
  7284. word-wrap:break-word;
  7285. text-transform:none;
  7286. visibility:hidden;
  7287. }
  7288. #u20063_img {
  7289. border-width:0px;
  7290. position:absolute;
  7291. left:0px;
  7292. top:0px;
  7293. width:114px;
  7294. height:29px;
  7295. }
  7296. #u20063 {
  7297. border-width:0px;
  7298. position:absolute;
  7299. left:281px;
  7300. top:432px;
  7301. width:114px;
  7302. height:29px;
  7303. display:flex;
  7304. font-size:14px;
  7305. }
  7306. #u20063 .text {
  7307. position:absolute;
  7308. align-self:center;
  7309. padding:2px 2px 2px 2px;
  7310. box-sizing:border-box;
  7311. width:100%;
  7312. }
  7313. #u20063_text {
  7314. border-width:0px;
  7315. word-wrap:break-word;
  7316. text-transform:none;
  7317. visibility:hidden;
  7318. }
  7319. #u20064_img {
  7320. border-width:0px;
  7321. position:absolute;
  7322. left:0px;
  7323. top:0px;
  7324. width:114px;
  7325. height:29px;
  7326. }
  7327. #u20064 {
  7328. border-width:0px;
  7329. position:absolute;
  7330. left:395px;
  7331. top:432px;
  7332. width:114px;
  7333. height:29px;
  7334. display:flex;
  7335. font-size:14px;
  7336. }
  7337. #u20064 .text {
  7338. position:absolute;
  7339. align-self:center;
  7340. padding:2px 2px 2px 2px;
  7341. box-sizing:border-box;
  7342. width:100%;
  7343. }
  7344. #u20064_text {
  7345. border-width:0px;
  7346. word-wrap:break-word;
  7347. text-transform:none;
  7348. visibility:hidden;
  7349. }
  7350. #u20065_img {
  7351. border-width:0px;
  7352. position:absolute;
  7353. left:0px;
  7354. top:0px;
  7355. width:102px;
  7356. height:29px;
  7357. }
  7358. #u20065 {
  7359. border-width:0px;
  7360. position:absolute;
  7361. left:509px;
  7362. top:432px;
  7363. width:102px;
  7364. height:29px;
  7365. display:flex;
  7366. font-size:14px;
  7367. }
  7368. #u20065 .text {
  7369. position:absolute;
  7370. align-self:center;
  7371. padding:2px 2px 2px 2px;
  7372. box-sizing:border-box;
  7373. width:100%;
  7374. }
  7375. #u20065_text {
  7376. border-width:0px;
  7377. word-wrap:break-word;
  7378. text-transform:none;
  7379. visibility:hidden;
  7380. }
  7381. #u20066_img {
  7382. border-width:0px;
  7383. position:absolute;
  7384. left:0px;
  7385. top:0px;
  7386. width:100px;
  7387. height:29px;
  7388. }
  7389. #u20066 {
  7390. border-width:0px;
  7391. position:absolute;
  7392. left:611px;
  7393. top:432px;
  7394. width:100px;
  7395. height:29px;
  7396. display:flex;
  7397. font-size:14px;
  7398. }
  7399. #u20066 .text {
  7400. position:absolute;
  7401. align-self:center;
  7402. padding:2px 2px 2px 2px;
  7403. box-sizing:border-box;
  7404. width:100%;
  7405. }
  7406. #u20066_text {
  7407. border-width:0px;
  7408. word-wrap:break-word;
  7409. text-transform:none;
  7410. visibility:hidden;
  7411. }
  7412. #u20067_img {
  7413. border-width:0px;
  7414. position:absolute;
  7415. left:0px;
  7416. top:0px;
  7417. width:100px;
  7418. height:29px;
  7419. }
  7420. #u20067 {
  7421. border-width:0px;
  7422. position:absolute;
  7423. left:711px;
  7424. top:432px;
  7425. width:100px;
  7426. height:29px;
  7427. display:flex;
  7428. font-size:14px;
  7429. }
  7430. #u20067 .text {
  7431. position:absolute;
  7432. align-self:center;
  7433. padding:2px 2px 2px 2px;
  7434. box-sizing:border-box;
  7435. width:100%;
  7436. }
  7437. #u20067_text {
  7438. border-width:0px;
  7439. word-wrap:break-word;
  7440. text-transform:none;
  7441. visibility:hidden;
  7442. }
  7443. #u20068_img {
  7444. border-width:0px;
  7445. position:absolute;
  7446. left:0px;
  7447. top:0px;
  7448. width:102px;
  7449. height:29px;
  7450. }
  7451. #u20068 {
  7452. border-width:0px;
  7453. position:absolute;
  7454. left:811px;
  7455. top:432px;
  7456. width:102px;
  7457. height:29px;
  7458. display:flex;
  7459. font-size:14px;
  7460. }
  7461. #u20068 .text {
  7462. position:absolute;
  7463. align-self:center;
  7464. padding:2px 2px 2px 2px;
  7465. box-sizing:border-box;
  7466. width:100%;
  7467. }
  7468. #u20068_text {
  7469. border-width:0px;
  7470. word-wrap:break-word;
  7471. text-transform:none;
  7472. visibility:hidden;
  7473. }
  7474. #u20069_img {
  7475. border-width:0px;
  7476. position:absolute;
  7477. left:0px;
  7478. top:0px;
  7479. width:102px;
  7480. height:29px;
  7481. }
  7482. #u20069 {
  7483. border-width:0px;
  7484. position:absolute;
  7485. left:913px;
  7486. top:432px;
  7487. width:102px;
  7488. height:29px;
  7489. display:flex;
  7490. font-size:14px;
  7491. }
  7492. #u20069 .text {
  7493. position:absolute;
  7494. align-self:center;
  7495. padding:2px 2px 2px 2px;
  7496. box-sizing:border-box;
  7497. width:100%;
  7498. }
  7499. #u20069_text {
  7500. border-width:0px;
  7501. word-wrap:break-word;
  7502. text-transform:none;
  7503. visibility:hidden;
  7504. }
  7505. #u20070_img {
  7506. border-width:0px;
  7507. position:absolute;
  7508. left:0px;
  7509. top:0px;
  7510. width:101px;
  7511. height:29px;
  7512. }
  7513. #u20070 {
  7514. border-width:0px;
  7515. position:absolute;
  7516. left:1015px;
  7517. top:432px;
  7518. width:101px;
  7519. height:29px;
  7520. display:flex;
  7521. font-size:14px;
  7522. }
  7523. #u20070 .text {
  7524. position:absolute;
  7525. align-self:center;
  7526. padding:2px 2px 2px 2px;
  7527. box-sizing:border-box;
  7528. width:100%;
  7529. }
  7530. #u20070_text {
  7531. border-width:0px;
  7532. word-wrap:break-word;
  7533. text-transform:none;
  7534. visibility:hidden;
  7535. }
  7536. #u20071_img {
  7537. border-width:0px;
  7538. position:absolute;
  7539. left:0px;
  7540. top:0px;
  7541. width:102px;
  7542. height:29px;
  7543. }
  7544. #u20071 {
  7545. border-width:0px;
  7546. position:absolute;
  7547. left:1116px;
  7548. top:432px;
  7549. width:102px;
  7550. height:29px;
  7551. display:flex;
  7552. font-size:14px;
  7553. }
  7554. #u20071 .text {
  7555. position:absolute;
  7556. align-self:center;
  7557. padding:2px 2px 2px 2px;
  7558. box-sizing:border-box;
  7559. width:100%;
  7560. }
  7561. #u20071_text {
  7562. border-width:0px;
  7563. word-wrap:break-word;
  7564. text-transform:none;
  7565. visibility:hidden;
  7566. }
  7567. #u20072 {
  7568. border-width:0px;
  7569. position:absolute;
  7570. left:0px;
  7571. top:0px;
  7572. width:0px;
  7573. height:0px;
  7574. }
  7575. #u20073_div {
  7576. border-width:0px;
  7577. position:absolute;
  7578. left:0px;
  7579. top:0px;
  7580. width:140px;
  7581. height:30px;
  7582. background:inherit;
  7583. background-color:rgba(255, 255, 255, 1);
  7584. box-sizing:border-box;
  7585. border-width:1px;
  7586. border-style:solid;
  7587. border-color:rgba(215, 215, 215, 1);
  7588. border-radius:4px;
  7589. -moz-box-shadow:none;
  7590. -webkit-box-shadow:none;
  7591. box-shadow:none;
  7592. font-size:14px;
  7593. }
  7594. #u20073 {
  7595. border-width:0px;
  7596. position:absolute;
  7597. left:511px;
  7598. top:151px;
  7599. width:140px;
  7600. height:30px;
  7601. display:flex;
  7602. font-size:14px;
  7603. }
  7604. #u20073 .text {
  7605. position:absolute;
  7606. align-self:center;
  7607. padding:2px 2px 2px 2px;
  7608. box-sizing:border-box;
  7609. width:100%;
  7610. }
  7611. #u20073_text {
  7612. border-width:0px;
  7613. word-wrap:break-word;
  7614. text-transform:none;
  7615. visibility:hidden;
  7616. }
  7617. #u20074_input {
  7618. position:absolute;
  7619. left:0px;
  7620. top:0px;
  7621. width:134px;
  7622. height:23px;
  7623. padding:2px 2px 2px 2px;
  7624. font-family:'ArialMT', 'Arial', sans-serif;
  7625. font-weight:400;
  7626. font-style:normal;
  7627. font-size:14px;
  7628. letter-spacing:normal;
  7629. color:#AAAAAA;
  7630. vertical-align:none;
  7631. text-align:left;
  7632. text-transform:none;
  7633. background-color:transparent;
  7634. border-color:transparent;
  7635. }
  7636. #u20074_input.disabled {
  7637. position:absolute;
  7638. left:0px;
  7639. top:0px;
  7640. width:134px;
  7641. height:23px;
  7642. padding:2px 2px 2px 2px;
  7643. font-family:'ArialMT', 'Arial', sans-serif;
  7644. font-weight:400;
  7645. font-style:normal;
  7646. font-size:14px;
  7647. letter-spacing:normal;
  7648. color:#AAAAAA;
  7649. vertical-align:none;
  7650. text-align:left;
  7651. text-transform:none;
  7652. background-color:transparent;
  7653. border-color:transparent;
  7654. }
  7655. #u20074_div {
  7656. border-width:0px;
  7657. position:absolute;
  7658. left:0px;
  7659. top:0px;
  7660. width:134px;
  7661. height:23px;
  7662. background:inherit;
  7663. background-color:rgba(255, 255, 255, 1);
  7664. border:none;
  7665. border-radius:0px;
  7666. -moz-box-shadow:none;
  7667. -webkit-box-shadow:none;
  7668. box-shadow:none;
  7669. font-size:14px;
  7670. color:#AAAAAA;
  7671. }
  7672. #u20074 {
  7673. border-width:0px;
  7674. position:absolute;
  7675. left:515px;
  7676. top:153px;
  7677. width:134px;
  7678. height:23px;
  7679. display:flex;
  7680. font-size:14px;
  7681. color:#AAAAAA;
  7682. }
  7683. #u20074 .text {
  7684. position:absolute;
  7685. align-self:flex-start;
  7686. padding:2px 2px 2px 2px;
  7687. box-sizing:border-box;
  7688. width:100%;
  7689. }
  7690. #u20074_div.disabled {
  7691. border-width:0px;
  7692. position:absolute;
  7693. left:0px;
  7694. top:0px;
  7695. width:134px;
  7696. height:23px;
  7697. background:inherit;
  7698. background-color:rgba(240, 240, 240, 1);
  7699. border:none;
  7700. border-radius:0px;
  7701. -moz-box-shadow:none;
  7702. -webkit-box-shadow:none;
  7703. box-shadow:none;
  7704. font-size:14px;
  7705. color:#AAAAAA;
  7706. }
  7707. #u20074.disabled {
  7708. }
  7709. .u20074_input_option {
  7710. font-size:14px;
  7711. }
  7712. #u20075 {
  7713. border-width:0px;
  7714. position:absolute;
  7715. left:0px;
  7716. top:0px;
  7717. width:0px;
  7718. height:0px;
  7719. }
  7720. #u20076_div {
  7721. border-width:0px;
  7722. position:absolute;
  7723. left:0px;
  7724. top:0px;
  7725. width:140px;
  7726. height:30px;
  7727. background:inherit;
  7728. background-color:rgba(255, 255, 255, 1);
  7729. box-sizing:border-box;
  7730. border-width:1px;
  7731. border-style:solid;
  7732. border-color:rgba(215, 215, 215, 1);
  7733. border-radius:4px;
  7734. -moz-box-shadow:none;
  7735. -webkit-box-shadow:none;
  7736. box-shadow:none;
  7737. font-size:14px;
  7738. }
  7739. #u20076 {
  7740. border-width:0px;
  7741. position:absolute;
  7742. left:811px;
  7743. top:151px;
  7744. width:140px;
  7745. height:30px;
  7746. display:flex;
  7747. font-size:14px;
  7748. }
  7749. #u20076 .text {
  7750. position:absolute;
  7751. align-self:center;
  7752. padding:2px 2px 2px 2px;
  7753. box-sizing:border-box;
  7754. width:100%;
  7755. }
  7756. #u20076_text {
  7757. border-width:0px;
  7758. word-wrap:break-word;
  7759. text-transform:none;
  7760. visibility:hidden;
  7761. }
  7762. #u20077_input {
  7763. position:absolute;
  7764. left:0px;
  7765. top:0px;
  7766. width:134px;
  7767. height:23px;
  7768. padding:2px 2px 2px 2px;
  7769. font-family:'ArialMT', 'Arial', sans-serif;
  7770. font-weight:400;
  7771. font-style:normal;
  7772. font-size:14px;
  7773. letter-spacing:normal;
  7774. color:#AAAAAA;
  7775. vertical-align:none;
  7776. text-align:left;
  7777. text-transform:none;
  7778. background-color:transparent;
  7779. border-color:transparent;
  7780. }
  7781. #u20077_input.disabled {
  7782. position:absolute;
  7783. left:0px;
  7784. top:0px;
  7785. width:134px;
  7786. height:23px;
  7787. padding:2px 2px 2px 2px;
  7788. font-family:'ArialMT', 'Arial', sans-serif;
  7789. font-weight:400;
  7790. font-style:normal;
  7791. font-size:14px;
  7792. letter-spacing:normal;
  7793. color:#AAAAAA;
  7794. vertical-align:none;
  7795. text-align:left;
  7796. text-transform:none;
  7797. background-color:transparent;
  7798. border-color:transparent;
  7799. }
  7800. #u20077_div {
  7801. border-width:0px;
  7802. position:absolute;
  7803. left:0px;
  7804. top:0px;
  7805. width:134px;
  7806. height:23px;
  7807. background:inherit;
  7808. background-color:rgba(255, 255, 255, 1);
  7809. border:none;
  7810. border-radius:0px;
  7811. -moz-box-shadow:none;
  7812. -webkit-box-shadow:none;
  7813. box-shadow:none;
  7814. font-size:14px;
  7815. color:#AAAAAA;
  7816. }
  7817. #u20077 {
  7818. border-width:0px;
  7819. position:absolute;
  7820. left:815px;
  7821. top:153px;
  7822. width:134px;
  7823. height:23px;
  7824. display:flex;
  7825. font-size:14px;
  7826. color:#AAAAAA;
  7827. }
  7828. #u20077 .text {
  7829. position:absolute;
  7830. align-self:flex-start;
  7831. padding:2px 2px 2px 2px;
  7832. box-sizing:border-box;
  7833. width:100%;
  7834. }
  7835. #u20077_div.disabled {
  7836. border-width:0px;
  7837. position:absolute;
  7838. left:0px;
  7839. top:0px;
  7840. width:134px;
  7841. height:23px;
  7842. background:inherit;
  7843. background-color:rgba(240, 240, 240, 1);
  7844. border:none;
  7845. border-radius:0px;
  7846. -moz-box-shadow:none;
  7847. -webkit-box-shadow:none;
  7848. box-shadow:none;
  7849. font-size:14px;
  7850. color:#AAAAAA;
  7851. }
  7852. #u20077.disabled {
  7853. }
  7854. .u20077_input_option {
  7855. font-size:14px;
  7856. }
  7857. #u20078 {
  7858. border-width:0px;
  7859. position:absolute;
  7860. left:0px;
  7861. top:0px;
  7862. width:0px;
  7863. height:0px;
  7864. }
  7865. #u20079_div {
  7866. border-width:0px;
  7867. position:absolute;
  7868. left:0px;
  7869. top:0px;
  7870. width:60px;
  7871. height:30px;
  7872. background:inherit;
  7873. background-color:rgba(24, 144, 255, 1);
  7874. border:none;
  7875. border-radius:4px;
  7876. -moz-box-shadow:none;
  7877. -webkit-box-shadow:none;
  7878. box-shadow:none;
  7879. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7880. font-weight:400;
  7881. font-style:normal;
  7882. font-size:14px;
  7883. color:#FFFFFF;
  7884. }
  7885. #u20079 {
  7886. border-width:0px;
  7887. position:absolute;
  7888. left:1261px;
  7889. top:151px;
  7890. width:60px;
  7891. height:30px;
  7892. display:flex;
  7893. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7894. font-weight:400;
  7895. font-style:normal;
  7896. font-size:14px;
  7897. color:#FFFFFF;
  7898. }
  7899. #u20079 .text {
  7900. position:absolute;
  7901. align-self:center;
  7902. padding:2px 2px 2px 2px;
  7903. box-sizing:border-box;
  7904. width:100%;
  7905. }
  7906. #u20079_text {
  7907. border-width:0px;
  7908. word-wrap:break-word;
  7909. text-transform:none;
  7910. }
  7911. #u20080_div {
  7912. border-width:0px;
  7913. position:absolute;
  7914. left:0px;
  7915. top:0px;
  7916. width:60px;
  7917. height:30px;
  7918. background:inherit;
  7919. background-color:rgba(255, 255, 255, 1);
  7920. box-sizing:border-box;
  7921. border-width:1px;
  7922. border-style:solid;
  7923. border-color:rgba(170, 170, 170, 1);
  7924. border-radius:4px;
  7925. -moz-box-shadow:none;
  7926. -webkit-box-shadow:none;
  7927. box-shadow:none;
  7928. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7929. font-weight:400;
  7930. font-style:normal;
  7931. font-size:14px;
  7932. }
  7933. #u20080 {
  7934. border-width:0px;
  7935. position:absolute;
  7936. left:1331px;
  7937. top:151px;
  7938. width:60px;
  7939. height:30px;
  7940. display:flex;
  7941. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7942. font-weight:400;
  7943. font-style:normal;
  7944. font-size:14px;
  7945. }
  7946. #u20080 .text {
  7947. position:absolute;
  7948. align-self:center;
  7949. padding:2px 2px 2px 2px;
  7950. box-sizing:border-box;
  7951. width:100%;
  7952. }
  7953. #u20080_text {
  7954. border-width:0px;
  7955. word-wrap:break-word;
  7956. text-transform:none;
  7957. }
  7958. #u20081 {
  7959. border-width:0px;
  7960. position:absolute;
  7961. left:0px;
  7962. top:0px;
  7963. width:0px;
  7964. height:0px;
  7965. }
  7966. #u20082_div {
  7967. border-width:0px;
  7968. position:absolute;
  7969. left:0px;
  7970. top:0px;
  7971. width:140px;
  7972. height:30px;
  7973. background:inherit;
  7974. background-color:rgba(255, 255, 255, 1);
  7975. box-sizing:border-box;
  7976. border-width:1px;
  7977. border-style:solid;
  7978. border-color:rgba(215, 215, 215, 1);
  7979. border-radius:4px;
  7980. -moz-box-shadow:none;
  7981. -webkit-box-shadow:none;
  7982. box-shadow:none;
  7983. font-size:14px;
  7984. }
  7985. #u20082 {
  7986. border-width:0px;
  7987. position:absolute;
  7988. left:353px;
  7989. top:151px;
  7990. width:140px;
  7991. height:30px;
  7992. display:flex;
  7993. font-size:14px;
  7994. }
  7995. #u20082 .text {
  7996. position:absolute;
  7997. align-self:center;
  7998. padding:2px 2px 2px 2px;
  7999. box-sizing:border-box;
  8000. width:100%;
  8001. }
  8002. #u20082_text {
  8003. border-width:0px;
  8004. word-wrap:break-word;
  8005. text-transform:none;
  8006. visibility:hidden;
  8007. }
  8008. #u20083_input {
  8009. position:absolute;
  8010. left:0px;
  8011. top:0px;
  8012. width:134px;
  8013. height:23px;
  8014. padding:2px 2px 2px 2px;
  8015. font-family:'ArialMT', 'Arial', sans-serif;
  8016. font-weight:400;
  8017. font-style:normal;
  8018. font-size:14px;
  8019. letter-spacing:normal;
  8020. color:#AAAAAA;
  8021. vertical-align:none;
  8022. text-align:left;
  8023. text-transform:none;
  8024. background-color:transparent;
  8025. border-color:transparent;
  8026. }
  8027. #u20083_input.disabled {
  8028. position:absolute;
  8029. left:0px;
  8030. top:0px;
  8031. width:134px;
  8032. height:23px;
  8033. padding:2px 2px 2px 2px;
  8034. font-family:'ArialMT', 'Arial', sans-serif;
  8035. font-weight:400;
  8036. font-style:normal;
  8037. font-size:14px;
  8038. letter-spacing:normal;
  8039. color:#AAAAAA;
  8040. vertical-align:none;
  8041. text-align:left;
  8042. text-transform:none;
  8043. background-color:transparent;
  8044. border-color:transparent;
  8045. }
  8046. #u20083_div {
  8047. border-width:0px;
  8048. position:absolute;
  8049. left:0px;
  8050. top:0px;
  8051. width:134px;
  8052. height:23px;
  8053. background:inherit;
  8054. background-color:rgba(255, 255, 255, 1);
  8055. border:none;
  8056. border-radius:0px;
  8057. -moz-box-shadow:none;
  8058. -webkit-box-shadow:none;
  8059. box-shadow:none;
  8060. font-size:14px;
  8061. color:#AAAAAA;
  8062. }
  8063. #u20083 {
  8064. border-width:0px;
  8065. position:absolute;
  8066. left:357px;
  8067. top:153px;
  8068. width:134px;
  8069. height:23px;
  8070. display:flex;
  8071. font-size:14px;
  8072. color:#AAAAAA;
  8073. }
  8074. #u20083 .text {
  8075. position:absolute;
  8076. align-self:flex-start;
  8077. padding:2px 2px 2px 2px;
  8078. box-sizing:border-box;
  8079. width:100%;
  8080. }
  8081. #u20083_div.disabled {
  8082. border-width:0px;
  8083. position:absolute;
  8084. left:0px;
  8085. top:0px;
  8086. width:134px;
  8087. height:23px;
  8088. background:inherit;
  8089. background-color:rgba(240, 240, 240, 1);
  8090. border:none;
  8091. border-radius:0px;
  8092. -moz-box-shadow:none;
  8093. -webkit-box-shadow:none;
  8094. box-shadow:none;
  8095. font-size:14px;
  8096. color:#AAAAAA;
  8097. }
  8098. #u20083.disabled {
  8099. }
  8100. .u20083_input_option {
  8101. font-size:14px;
  8102. }
  8103. #u20084 {
  8104. border-width:0px;
  8105. position:absolute;
  8106. left:0px;
  8107. top:0px;
  8108. width:0px;
  8109. height:0px;
  8110. }
  8111. #u20085_div {
  8112. border-width:0px;
  8113. position:absolute;
  8114. left:0px;
  8115. top:0px;
  8116. width:140px;
  8117. height:30px;
  8118. background:inherit;
  8119. background-color:rgba(255, 255, 255, 1);
  8120. box-sizing:border-box;
  8121. border-width:1px;
  8122. border-style:solid;
  8123. border-color:rgba(215, 215, 215, 1);
  8124. border-radius:4px;
  8125. -moz-box-shadow:none;
  8126. -webkit-box-shadow:none;
  8127. box-shadow:none;
  8128. font-size:14px;
  8129. }
  8130. #u20085 {
  8131. border-width:0px;
  8132. position:absolute;
  8133. left:661px;
  8134. top:151px;
  8135. width:140px;
  8136. height:30px;
  8137. display:flex;
  8138. font-size:14px;
  8139. }
  8140. #u20085 .text {
  8141. position:absolute;
  8142. align-self:center;
  8143. padding:2px 2px 2px 2px;
  8144. box-sizing:border-box;
  8145. width:100%;
  8146. }
  8147. #u20085_text {
  8148. border-width:0px;
  8149. word-wrap:break-word;
  8150. text-transform:none;
  8151. visibility:hidden;
  8152. }
  8153. #u20086_input {
  8154. position:absolute;
  8155. left:0px;
  8156. top:0px;
  8157. width:134px;
  8158. height:23px;
  8159. padding:2px 2px 2px 2px;
  8160. font-family:'ArialMT', 'Arial', sans-serif;
  8161. font-weight:400;
  8162. font-style:normal;
  8163. font-size:14px;
  8164. letter-spacing:normal;
  8165. color:#AAAAAA;
  8166. vertical-align:none;
  8167. text-align:left;
  8168. text-transform:none;
  8169. background-color:transparent;
  8170. border-color:transparent;
  8171. }
  8172. #u20086_input.disabled {
  8173. position:absolute;
  8174. left:0px;
  8175. top:0px;
  8176. width:134px;
  8177. height:23px;
  8178. padding:2px 2px 2px 2px;
  8179. font-family:'ArialMT', 'Arial', sans-serif;
  8180. font-weight:400;
  8181. font-style:normal;
  8182. font-size:14px;
  8183. letter-spacing:normal;
  8184. color:#AAAAAA;
  8185. vertical-align:none;
  8186. text-align:left;
  8187. text-transform:none;
  8188. background-color:transparent;
  8189. border-color:transparent;
  8190. }
  8191. #u20086_div {
  8192. border-width:0px;
  8193. position:absolute;
  8194. left:0px;
  8195. top:0px;
  8196. width:134px;
  8197. height:23px;
  8198. background:inherit;
  8199. background-color:rgba(255, 255, 255, 1);
  8200. border:none;
  8201. border-radius:0px;
  8202. -moz-box-shadow:none;
  8203. -webkit-box-shadow:none;
  8204. box-shadow:none;
  8205. font-size:14px;
  8206. color:#AAAAAA;
  8207. }
  8208. #u20086 {
  8209. border-width:0px;
  8210. position:absolute;
  8211. left:665px;
  8212. top:153px;
  8213. width:134px;
  8214. height:23px;
  8215. display:flex;
  8216. font-size:14px;
  8217. color:#AAAAAA;
  8218. }
  8219. #u20086 .text {
  8220. position:absolute;
  8221. align-self:flex-start;
  8222. padding:2px 2px 2px 2px;
  8223. box-sizing:border-box;
  8224. width:100%;
  8225. }
  8226. #u20086_div.disabled {
  8227. border-width:0px;
  8228. position:absolute;
  8229. left:0px;
  8230. top:0px;
  8231. width:134px;
  8232. height:23px;
  8233. background:inherit;
  8234. background-color:rgba(240, 240, 240, 1);
  8235. border:none;
  8236. border-radius:0px;
  8237. -moz-box-shadow:none;
  8238. -webkit-box-shadow:none;
  8239. box-shadow:none;
  8240. font-size:14px;
  8241. color:#AAAAAA;
  8242. }
  8243. #u20086.disabled {
  8244. }
  8245. .u20086_input_option {
  8246. font-size:14px;
  8247. }
  8248. #u20087 {
  8249. border-width:0px;
  8250. position:absolute;
  8251. left:0px;
  8252. top:0px;
  8253. width:0px;
  8254. height:0px;
  8255. }
  8256. #u20088_div {
  8257. border-width:0px;
  8258. position:absolute;
  8259. left:0px;
  8260. top:0px;
  8261. width:140px;
  8262. height:30px;
  8263. background:inherit;
  8264. background-color:rgba(255, 255, 255, 1);
  8265. box-sizing:border-box;
  8266. border-width:1px;
  8267. border-style:solid;
  8268. border-color:rgba(201, 201, 201, 1);
  8269. border-radius:4px;
  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. font-size:14px;
  8277. color:#CCCCCC;
  8278. text-align:left;
  8279. }
  8280. #u20088 {
  8281. border-width:0px;
  8282. position:absolute;
  8283. left:961px;
  8284. top:151px;
  8285. width:140px;
  8286. height:30px;
  8287. display:flex;
  8288. font-family:'Microsoft YaHei', sans-serif;
  8289. font-weight:400;
  8290. font-style:normal;
  8291. font-size:14px;
  8292. color:#CCCCCC;
  8293. text-align:left;
  8294. }
  8295. #u20088 .text {
  8296. position:absolute;
  8297. align-self:center;
  8298. padding:2px 8px 2px 8px;
  8299. box-sizing:border-box;
  8300. width:100%;
  8301. }
  8302. #u20088_text {
  8303. border-width:0px;
  8304. word-wrap:break-word;
  8305. text-transform:none;
  8306. visibility:hidden;
  8307. }
  8308. #u20089_input {
  8309. position:absolute;
  8310. left:0px;
  8311. top:0px;
  8312. width:127px;
  8313. height:25px;
  8314. padding:2px 2px 2px 2px;
  8315. font-family:'Microsoft YaHei', sans-serif;
  8316. font-weight:400;
  8317. font-style:normal;
  8318. font-size:10px;
  8319. letter-spacing:normal;
  8320. color:#000000;
  8321. vertical-align:none;
  8322. text-align:left;
  8323. text-transform:none;
  8324. background-color:transparent;
  8325. border-color:transparent;
  8326. }
  8327. #u20089_input.disabled {
  8328. position:absolute;
  8329. left:0px;
  8330. top:0px;
  8331. width:127px;
  8332. height:25px;
  8333. padding:2px 2px 2px 2px;
  8334. font-family:'Microsoft YaHei', sans-serif;
  8335. font-weight:400;
  8336. font-style:normal;
  8337. font-size:10px;
  8338. letter-spacing:normal;
  8339. color:#000000;
  8340. vertical-align:none;
  8341. text-align:left;
  8342. text-transform:none;
  8343. background-color:transparent;
  8344. border-color:transparent;
  8345. }
  8346. #u20089_div {
  8347. border-width:0px;
  8348. position:absolute;
  8349. left:0px;
  8350. top:0px;
  8351. width:127px;
  8352. height:25px;
  8353. background:inherit;
  8354. background-color:rgba(255, 255, 255, 1);
  8355. border:none;
  8356. border-radius:0px;
  8357. -moz-box-shadow:none;
  8358. -webkit-box-shadow:none;
  8359. box-shadow:none;
  8360. font-family:'Microsoft YaHei', sans-serif;
  8361. font-weight:400;
  8362. font-style:normal;
  8363. font-size:10px;
  8364. }
  8365. #u20089 {
  8366. border-width:0px;
  8367. position:absolute;
  8368. left:969px;
  8369. top:152px;
  8370. width:127px;
  8371. height:25px;
  8372. display:flex;
  8373. font-family:'Microsoft YaHei', sans-serif;
  8374. font-weight:400;
  8375. font-style:normal;
  8376. font-size:10px;
  8377. }
  8378. #u20089 .text {
  8379. position:absolute;
  8380. align-self:center;
  8381. padding:2px 2px 2px 2px;
  8382. box-sizing:border-box;
  8383. width:100%;
  8384. }
  8385. #u20089_div.disabled {
  8386. border-width:0px;
  8387. position:absolute;
  8388. left:0px;
  8389. top:0px;
  8390. width:127px;
  8391. height:25px;
  8392. background:inherit;
  8393. background-color:rgba(240, 240, 240, 1);
  8394. border:none;
  8395. border-radius:0px;
  8396. -moz-box-shadow:none;
  8397. -webkit-box-shadow:none;
  8398. box-shadow:none;
  8399. font-family:'Microsoft YaHei', sans-serif;
  8400. font-weight:400;
  8401. font-style:normal;
  8402. font-size:10px;
  8403. }
  8404. #u20089.disabled {
  8405. }
  8406. #u20091_div {
  8407. border-width:0px;
  8408. position:absolute;
  8409. left:0px;
  8410. top:0px;
  8411. width:200px;
  8412. height:1180px;
  8413. background:inherit;
  8414. background-color:rgba(255, 255, 255, 1);
  8415. border:none;
  8416. border-radius:0px;
  8417. -moz-box-shadow:none;
  8418. -webkit-box-shadow:none;
  8419. box-shadow:none;
  8420. }
  8421. #u20091 {
  8422. border-width:0px;
  8423. position:absolute;
  8424. left:120px;
  8425. top:50px;
  8426. width:200px;
  8427. height:1180px;
  8428. display:flex;
  8429. }
  8430. #u20091 .text {
  8431. position:absolute;
  8432. align-self:center;
  8433. padding:2px 2px 2px 2px;
  8434. box-sizing:border-box;
  8435. width:100%;
  8436. }
  8437. #u20091_text {
  8438. border-width:0px;
  8439. word-wrap:break-word;
  8440. text-transform:none;
  8441. visibility:hidden;
  8442. }
  8443. #u20092_div {
  8444. border-width:0px;
  8445. position:absolute;
  8446. left:0px;
  8447. top:0px;
  8448. width:200px;
  8449. height:60px;
  8450. background:inherit;
  8451. background-color:rgba(224, 231, 247, 1);
  8452. border:none;
  8453. border-radius:0px;
  8454. -moz-box-shadow:none;
  8455. -webkit-box-shadow:none;
  8456. box-shadow:none;
  8457. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8458. font-weight:500;
  8459. font-style:normal;
  8460. font-size:18px;
  8461. }
  8462. #u20092 {
  8463. border-width:0px;
  8464. position:absolute;
  8465. left:120px;
  8466. top:50px;
  8467. width:200px;
  8468. height:60px;
  8469. display:flex;
  8470. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8471. font-weight:500;
  8472. font-style:normal;
  8473. font-size:18px;
  8474. }
  8475. #u20092 .text {
  8476. position:absolute;
  8477. align-self:center;
  8478. padding:0px 0px 0px 20px;
  8479. box-sizing:border-box;
  8480. width:100%;
  8481. }
  8482. #u20092_text {
  8483. border-width:0px;
  8484. word-wrap:break-word;
  8485. text-transform:none;
  8486. }
  8487. #u20093_div {
  8488. border-width:0px;
  8489. position:absolute;
  8490. left:0px;
  8491. top:0px;
  8492. width:65px;
  8493. height:22px;
  8494. background:inherit;
  8495. background-color:rgba(255, 255, 255, 0);
  8496. border:none;
  8497. border-radius:0px;
  8498. -moz-box-shadow:none;
  8499. -webkit-box-shadow:none;
  8500. box-shadow:none;
  8501. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8502. font-weight:400;
  8503. font-style:normal;
  8504. font-size:16px;
  8505. }
  8506. #u20093 {
  8507. border-width:0px;
  8508. position:absolute;
  8509. left:143px;
  8510. top:163px;
  8511. width:65px;
  8512. height:22px;
  8513. display:flex;
  8514. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8515. font-weight:400;
  8516. font-style:normal;
  8517. font-size:16px;
  8518. }
  8519. #u20093 .text {
  8520. position:absolute;
  8521. align-self:flex-start;
  8522. padding:0px 0px 0px 0px;
  8523. box-sizing:border-box;
  8524. width:100%;
  8525. }
  8526. #u20093_text {
  8527. border-width:0px;
  8528. white-space:nowrap;
  8529. text-transform:none;
  8530. }
  8531. #u20094_div {
  8532. border-width:0px;
  8533. position:absolute;
  8534. left:0px;
  8535. top:0px;
  8536. width:49px;
  8537. height:17px;
  8538. background:inherit;
  8539. background-color:rgba(255, 255, 255, 0);
  8540. border:none;
  8541. border-radius:0px;
  8542. -moz-box-shadow:none;
  8543. -webkit-box-shadow:none;
  8544. box-shadow:none;
  8545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8546. font-weight:400;
  8547. font-style:normal;
  8548. font-size:12px;
  8549. color:#AAAAAA;
  8550. }
  8551. #u20094 {
  8552. border-width:0px;
  8553. position:absolute;
  8554. left:143px;
  8555. top:130px;
  8556. width:49px;
  8557. height:17px;
  8558. display:flex;
  8559. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8560. font-weight:400;
  8561. font-style:normal;
  8562. font-size:12px;
  8563. color:#AAAAAA;
  8564. }
  8565. #u20094 .text {
  8566. position:absolute;
  8567. align-self:flex-start;
  8568. padding:0px 0px 0px 0px;
  8569. box-sizing:border-box;
  8570. width:100%;
  8571. }
  8572. #u20094_text {
  8573. border-width:0px;
  8574. white-space:nowrap;
  8575. text-transform:none;
  8576. }
  8577. #u20095_div {
  8578. border-width:0px;
  8579. position:absolute;
  8580. left:0px;
  8581. top:0px;
  8582. width:65px;
  8583. height:22px;
  8584. background:inherit;
  8585. background-color:rgba(255, 255, 255, 0);
  8586. border:none;
  8587. border-radius:0px;
  8588. -moz-box-shadow:none;
  8589. -webkit-box-shadow:none;
  8590. box-shadow:none;
  8591. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8592. font-weight:400;
  8593. font-style:normal;
  8594. font-size:16px;
  8595. }
  8596. #u20095 {
  8597. border-width:0px;
  8598. position:absolute;
  8599. left:143px;
  8600. top:205px;
  8601. width:65px;
  8602. height:22px;
  8603. display:flex;
  8604. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8605. font-weight:400;
  8606. font-style:normal;
  8607. font-size:16px;
  8608. }
  8609. #u20095 .text {
  8610. position:absolute;
  8611. align-self:flex-start;
  8612. padding:0px 0px 0px 0px;
  8613. box-sizing:border-box;
  8614. width:100%;
  8615. }
  8616. #u20095_text {
  8617. border-width:0px;
  8618. white-space:nowrap;
  8619. text-transform:none;
  8620. }
  8621. #u20096_div {
  8622. border-width:0px;
  8623. position:absolute;
  8624. left:0px;
  8625. top:0px;
  8626. width:65px;
  8627. height:22px;
  8628. background:inherit;
  8629. background-color:rgba(255, 255, 255, 0);
  8630. border:none;
  8631. border-radius:0px;
  8632. -moz-box-shadow:none;
  8633. -webkit-box-shadow:none;
  8634. box-shadow:none;
  8635. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8636. font-weight:400;
  8637. font-style:normal;
  8638. font-size:16px;
  8639. }
  8640. #u20096 {
  8641. border-width:0px;
  8642. position:absolute;
  8643. left:143px;
  8644. top:357px;
  8645. width:65px;
  8646. height:22px;
  8647. display:flex;
  8648. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8649. font-weight:400;
  8650. font-style:normal;
  8651. font-size:16px;
  8652. }
  8653. #u20096 .text {
  8654. position:absolute;
  8655. align-self:flex-start;
  8656. padding:0px 0px 0px 0px;
  8657. box-sizing:border-box;
  8658. width:100%;
  8659. }
  8660. #u20096_text {
  8661. border-width:0px;
  8662. white-space:nowrap;
  8663. text-transform:none;
  8664. }
  8665. #u20097_div {
  8666. border-width:0px;
  8667. position:absolute;
  8668. left:0px;
  8669. top:0px;
  8670. width:65px;
  8671. height:22px;
  8672. background:inherit;
  8673. background-color:rgba(255, 255, 255, 0);
  8674. border:none;
  8675. border-radius:0px;
  8676. -moz-box-shadow:none;
  8677. -webkit-box-shadow:none;
  8678. box-shadow:none;
  8679. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8680. font-weight:400;
  8681. font-style:normal;
  8682. font-size:16px;
  8683. }
  8684. #u20097 {
  8685. border-width:0px;
  8686. position:absolute;
  8687. left:143px;
  8688. top:452px;
  8689. width:65px;
  8690. height:22px;
  8691. display:flex;
  8692. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8693. font-weight:400;
  8694. font-style:normal;
  8695. font-size:16px;
  8696. }
  8697. #u20097 .text {
  8698. position:absolute;
  8699. align-self:flex-start;
  8700. padding:0px 0px 0px 0px;
  8701. box-sizing:border-box;
  8702. width:100%;
  8703. }
  8704. #u20097_text {
  8705. border-width:0px;
  8706. white-space:nowrap;
  8707. text-transform:none;
  8708. }
  8709. #u20098_img {
  8710. border-width:0px;
  8711. position:absolute;
  8712. left:0px;
  8713. top:0px;
  8714. width:201px;
  8715. height:2px;
  8716. }
  8717. #u20098 {
  8718. border-width:0px;
  8719. position:absolute;
  8720. left:120px;
  8721. top:399px;
  8722. width:200px;
  8723. height:1px;
  8724. display:flex;
  8725. }
  8726. #u20098 .text {
  8727. position:absolute;
  8728. align-self:center;
  8729. padding:2px 2px 2px 2px;
  8730. box-sizing:border-box;
  8731. width:100%;
  8732. }
  8733. #u20098_text {
  8734. border-width:0px;
  8735. word-wrap:break-word;
  8736. text-transform:none;
  8737. visibility:hidden;
  8738. }
  8739. #u20099_div {
  8740. border-width:0px;
  8741. position:absolute;
  8742. left:0px;
  8743. top:0px;
  8744. width:49px;
  8745. height:17px;
  8746. background:inherit;
  8747. background-color:rgba(255, 255, 255, 0);
  8748. border:none;
  8749. border-radius:0px;
  8750. -moz-box-shadow:none;
  8751. -webkit-box-shadow:none;
  8752. box-shadow:none;
  8753. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8754. font-weight:400;
  8755. font-style:normal;
  8756. font-size:12px;
  8757. color:#AAAAAA;
  8758. }
  8759. #u20099 {
  8760. border-width:0px;
  8761. position:absolute;
  8762. left:143px;
  8763. top:419px;
  8764. width:49px;
  8765. height:17px;
  8766. display:flex;
  8767. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8768. font-weight:400;
  8769. font-style:normal;
  8770. font-size:12px;
  8771. color:#AAAAAA;
  8772. }
  8773. #u20099 .text {
  8774. position:absolute;
  8775. align-self:flex-start;
  8776. padding:0px 0px 0px 0px;
  8777. box-sizing:border-box;
  8778. width:100%;
  8779. }
  8780. #u20099_text {
  8781. border-width:0px;
  8782. white-space:nowrap;
  8783. text-transform:none;
  8784. }
  8785. #u20100_div {
  8786. border-width:0px;
  8787. position:absolute;
  8788. left:0px;
  8789. top:0px;
  8790. width:65px;
  8791. height:22px;
  8792. background:inherit;
  8793. background-color:rgba(255, 255, 255, 0);
  8794. border:none;
  8795. border-radius:0px;
  8796. -moz-box-shadow:none;
  8797. -webkit-box-shadow:none;
  8798. box-shadow:none;
  8799. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8800. font-weight:400;
  8801. font-style:normal;
  8802. font-size:16px;
  8803. }
  8804. #u20100 {
  8805. border-width:0px;
  8806. position:absolute;
  8807. left:143px;
  8808. top:494px;
  8809. width:65px;
  8810. height:22px;
  8811. display:flex;
  8812. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8813. font-weight:400;
  8814. font-style:normal;
  8815. font-size:16px;
  8816. }
  8817. #u20100 .text {
  8818. position:absolute;
  8819. align-self:flex-start;
  8820. padding:0px 0px 0px 0px;
  8821. box-sizing:border-box;
  8822. width:100%;
  8823. }
  8824. #u20100_text {
  8825. border-width:0px;
  8826. white-space:nowrap;
  8827. text-transform:none;
  8828. }
  8829. #u20101_div {
  8830. border-width:0px;
  8831. position:absolute;
  8832. left:0px;
  8833. top:0px;
  8834. width:65px;
  8835. height:22px;
  8836. background:inherit;
  8837. background-color:rgba(255, 255, 255, 0);
  8838. border:none;
  8839. border-radius:0px;
  8840. -moz-box-shadow:none;
  8841. -webkit-box-shadow:none;
  8842. box-shadow:none;
  8843. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8844. font-weight:400;
  8845. font-style:normal;
  8846. font-size:16px;
  8847. }
  8848. #u20101 {
  8849. border-width:0px;
  8850. position:absolute;
  8851. left:143px;
  8852. top:247px;
  8853. width:65px;
  8854. height:22px;
  8855. display:flex;
  8856. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8857. font-weight:400;
  8858. font-style:normal;
  8859. font-size:16px;
  8860. }
  8861. #u20101 .text {
  8862. position:absolute;
  8863. align-self:flex-start;
  8864. padding:0px 0px 0px 0px;
  8865. box-sizing:border-box;
  8866. width:100%;
  8867. }
  8868. #u20101_text {
  8869. border-width:0px;
  8870. white-space:nowrap;
  8871. text-transform:none;
  8872. }
  8873. #u20102_div {
  8874. border-width:0px;
  8875. position:absolute;
  8876. left:0px;
  8877. top:0px;
  8878. width:73px;
  8879. height:17px;
  8880. background:inherit;
  8881. background-color:rgba(255, 255, 255, 0);
  8882. border:none;
  8883. border-radius:0px;
  8884. -moz-box-shadow:none;
  8885. -webkit-box-shadow:none;
  8886. box-shadow:none;
  8887. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8888. font-weight:400;
  8889. font-style:normal;
  8890. font-size:12px;
  8891. color:#AAAAAA;
  8892. }
  8893. #u20102 {
  8894. border-width:0px;
  8895. position:absolute;
  8896. left:143px;
  8897. top:316px;
  8898. width:73px;
  8899. height:17px;
  8900. display:flex;
  8901. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8902. font-weight:400;
  8903. font-style:normal;
  8904. font-size:12px;
  8905. color:#AAAAAA;
  8906. }
  8907. #u20102 .text {
  8908. position:absolute;
  8909. align-self:flex-start;
  8910. padding:0px 0px 0px 0px;
  8911. box-sizing:border-box;
  8912. width:100%;
  8913. }
  8914. #u20102_text {
  8915. border-width:0px;
  8916. white-space:nowrap;
  8917. text-transform:none;
  8918. }
  8919. #u20103_img {
  8920. border-width:0px;
  8921. position:absolute;
  8922. left:0px;
  8923. top:0px;
  8924. width:201px;
  8925. height:2px;
  8926. }
  8927. #u20103 {
  8928. border-width:0px;
  8929. position:absolute;
  8930. left:120px;
  8931. top:296px;
  8932. width:200px;
  8933. height:1px;
  8934. display:flex;
  8935. }
  8936. #u20103 .text {
  8937. position:absolute;
  8938. align-self:center;
  8939. padding:2px 2px 2px 2px;
  8940. box-sizing:border-box;
  8941. width:100%;
  8942. }
  8943. #u20103_text {
  8944. border-width:0px;
  8945. word-wrap:break-word;
  8946. text-transform:none;
  8947. visibility:hidden;
  8948. }
  8949. #u20104_div {
  8950. border-width:0px;
  8951. position:absolute;
  8952. left:0px;
  8953. top:0px;
  8954. width:729px;
  8955. height:20px;
  8956. background:inherit;
  8957. background-color:rgba(255, 255, 255, 0);
  8958. border:none;
  8959. border-left:0px;
  8960. border-top:0px;
  8961. border-right:0px;
  8962. border-radius:0px;
  8963. border-bottom-right-radius:0px;
  8964. border-bottom-left-radius:0px;
  8965. -moz-box-shadow:none;
  8966. -webkit-box-shadow:none;
  8967. box-shadow:none;
  8968. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8969. font-weight:400;
  8970. font-style:normal;
  8971. font-size:14px;
  8972. color:#7F7F7F;
  8973. }
  8974. #u20104 {
  8975. border-width:0px;
  8976. position:absolute;
  8977. left:352px;
  8978. top:100px;
  8979. width:729px;
  8980. height:20px;
  8981. display:flex;
  8982. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8983. font-weight:400;
  8984. font-style:normal;
  8985. font-size:14px;
  8986. color:#7F7F7F;
  8987. }
  8988. #u20104 .text {
  8989. position:absolute;
  8990. align-self:center;
  8991. padding:0px 0px 0px 0px;
  8992. box-sizing:border-box;
  8993. width:100%;
  8994. }
  8995. #u20104_text {
  8996. border-width:0px;
  8997. white-space:nowrap;
  8998. text-transform:none;
  8999. }
  9000. #u20106 {
  9001. border-width:0px;
  9002. position:absolute;
  9003. left:0px;
  9004. top:0px;
  9005. width:0px;
  9006. height:0px;
  9007. }
  9008. #u20107_div {
  9009. border-width:0px;
  9010. position:absolute;
  9011. left:0px;
  9012. top:0px;
  9013. width:30px;
  9014. height:30px;
  9015. background:inherit;
  9016. background-color:rgba(255, 255, 255, 1);
  9017. box-sizing:border-box;
  9018. border-width:1px;
  9019. border-style:solid;
  9020. border-color:rgba(228, 228, 228, 1);
  9021. border-radius:4px;
  9022. -moz-box-shadow:none;
  9023. -webkit-box-shadow:none;
  9024. box-shadow:none;
  9025. font-family:'Microsoft YaHei', sans-serif;
  9026. font-weight:400;
  9027. font-style:normal;
  9028. font-size:14px;
  9029. }
  9030. #u20107 {
  9031. border-width:0px;
  9032. position:absolute;
  9033. left:996px;
  9034. top:1183px;
  9035. width:30px;
  9036. height:30px;
  9037. display:flex;
  9038. font-family:'Microsoft YaHei', sans-serif;
  9039. font-weight:400;
  9040. font-style:normal;
  9041. font-size:14px;
  9042. }
  9043. #u20107 .text {
  9044. position:absolute;
  9045. align-self:center;
  9046. padding:2px 2px 2px 2px;
  9047. box-sizing:border-box;
  9048. width:100%;
  9049. }
  9050. #u20107_text {
  9051. border-width:0px;
  9052. word-wrap:break-word;
  9053. text-transform:none;
  9054. }
  9055. #u20108_div {
  9056. border-width:0px;
  9057. position:absolute;
  9058. left:0px;
  9059. top:0px;
  9060. width:49px;
  9061. height:30px;
  9062. background:inherit;
  9063. background-color:rgba(255, 255, 255, 0);
  9064. box-sizing:border-box;
  9065. border-width:1px;
  9066. border-style:solid;
  9067. border-color:rgba(188, 188, 188, 1);
  9068. border-radius:4px;
  9069. -moz-box-shadow:none;
  9070. -webkit-box-shadow:none;
  9071. box-shadow:none;
  9072. font-family:'Microsoft YaHei', sans-serif;
  9073. font-weight:400;
  9074. font-style:normal;
  9075. font-size:14px;
  9076. color:#1E1E1E;
  9077. }
  9078. #u20108 {
  9079. border-width:0px;
  9080. position:absolute;
  9081. left:1512px;
  9082. top:1183px;
  9083. width:49px;
  9084. height:30px;
  9085. display:flex;
  9086. font-family:'Microsoft YaHei', sans-serif;
  9087. font-weight:400;
  9088. font-style:normal;
  9089. font-size:14px;
  9090. color:#1E1E1E;
  9091. }
  9092. #u20108 .text {
  9093. position:absolute;
  9094. align-self:center;
  9095. padding:5px 10px 5px 10px;
  9096. box-sizing:border-box;
  9097. width:100%;
  9098. }
  9099. #u20108_text {
  9100. border-width:0px;
  9101. white-space:nowrap;
  9102. text-transform:none;
  9103. }
  9104. #u20109 {
  9105. border-width:0px;
  9106. position:absolute;
  9107. left:0px;
  9108. top:0px;
  9109. width:0px;
  9110. height:0px;
  9111. }
  9112. #u20110_div {
  9113. border-width:0px;
  9114. position:absolute;
  9115. left:0px;
  9116. top:0px;
  9117. width:33px;
  9118. height:24px;
  9119. background:inherit;
  9120. background-color:rgba(255, 255, 255, 1);
  9121. border:none;
  9122. border-radius:0px;
  9123. -moz-box-shadow:none;
  9124. -webkit-box-shadow:none;
  9125. box-shadow:none;
  9126. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9127. font-weight:400;
  9128. font-style:normal;
  9129. font-size:14px;
  9130. color:#BCBCBC;
  9131. text-align:left;
  9132. }
  9133. #u20110 {
  9134. border-width:0px;
  9135. position:absolute;
  9136. left:1280px;
  9137. top:1186px;
  9138. width:33px;
  9139. height:24px;
  9140. display:flex;
  9141. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9142. font-weight:400;
  9143. font-style:normal;
  9144. font-size:14px;
  9145. color:#BCBCBC;
  9146. text-align:left;
  9147. }
  9148. #u20110 .text {
  9149. position:absolute;
  9150. align-self:center;
  9151. padding:2px 2px 2px 2px;
  9152. box-sizing:border-box;
  9153. width:100%;
  9154. }
  9155. #u20110_text {
  9156. border-width:0px;
  9157. white-space:nowrap;
  9158. text-transform:none;
  9159. }
  9160. #u20111_div {
  9161. border-width:0px;
  9162. position:absolute;
  9163. left:0px;
  9164. top:0px;
  9165. width:40px;
  9166. height:30px;
  9167. background:inherit;
  9168. background-color:rgba(255, 255, 255, 1);
  9169. box-sizing:border-box;
  9170. border-width:1px;
  9171. border-style:solid;
  9172. border-color:rgba(228, 228, 228, 1);
  9173. border-radius:4px;
  9174. -moz-box-shadow:none;
  9175. -webkit-box-shadow:none;
  9176. box-shadow:none;
  9177. font-family:'Microsoft YaHei', sans-serif;
  9178. font-weight:400;
  9179. font-style:normal;
  9180. font-size:14px;
  9181. }
  9182. #u20111 {
  9183. border-width:0px;
  9184. position:absolute;
  9185. left:1315px;
  9186. top:1183px;
  9187. width:40px;
  9188. height:30px;
  9189. display:flex;
  9190. font-family:'Microsoft YaHei', sans-serif;
  9191. font-weight:400;
  9192. font-style:normal;
  9193. font-size:14px;
  9194. }
  9195. #u20111 .text {
  9196. position:absolute;
  9197. align-self:center;
  9198. padding:2px 2px 2px 2px;
  9199. box-sizing:border-box;
  9200. width:100%;
  9201. }
  9202. #u20111_text {
  9203. border-width:0px;
  9204. word-wrap:break-word;
  9205. text-transform:none;
  9206. visibility:hidden;
  9207. }
  9208. #u20112_div {
  9209. border-width:0px;
  9210. position:absolute;
  9211. left:0px;
  9212. top:0px;
  9213. width:19px;
  9214. height:24px;
  9215. background:inherit;
  9216. background-color:rgba(255, 255, 255, 1);
  9217. border:none;
  9218. border-radius:0px;
  9219. -moz-box-shadow:none;
  9220. -webkit-box-shadow:none;
  9221. box-shadow:none;
  9222. font-family:'Microsoft YaHei', sans-serif;
  9223. font-weight:400;
  9224. font-style:normal;
  9225. font-size:14px;
  9226. color:#BCBCBC;
  9227. text-align:left;
  9228. }
  9229. #u20112 {
  9230. border-width:0px;
  9231. position:absolute;
  9232. left:1357px;
  9233. top:1187px;
  9234. width:19px;
  9235. height:24px;
  9236. display:flex;
  9237. font-family:'Microsoft YaHei', sans-serif;
  9238. font-weight:400;
  9239. font-style:normal;
  9240. font-size:14px;
  9241. color:#BCBCBC;
  9242. text-align:left;
  9243. }
  9244. #u20112 .text {
  9245. position:absolute;
  9246. align-self:center;
  9247. padding:2px 2px 2px 2px;
  9248. box-sizing:border-box;
  9249. width:100%;
  9250. }
  9251. #u20112_text {
  9252. border-width:0px;
  9253. white-space:nowrap;
  9254. text-transform:none;
  9255. }
  9256. #u20113_input {
  9257. position:absolute;
  9258. left:0px;
  9259. top:0px;
  9260. width:34px;
  9261. height:25px;
  9262. padding:2px 2px 2px 2px;
  9263. font-family:'Microsoft YaHei', sans-serif;
  9264. font-weight:400;
  9265. font-style:normal;
  9266. font-size:13px;
  9267. letter-spacing:normal;
  9268. color:#000000;
  9269. vertical-align:none;
  9270. text-align:left;
  9271. text-transform:none;
  9272. background-color:transparent;
  9273. border-color:transparent;
  9274. }
  9275. #u20113_input.disabled {
  9276. position:absolute;
  9277. left:0px;
  9278. top:0px;
  9279. width:34px;
  9280. height:25px;
  9281. padding:2px 2px 2px 2px;
  9282. font-family:'Microsoft YaHei', sans-serif;
  9283. font-weight:400;
  9284. font-style:normal;
  9285. font-size:13px;
  9286. letter-spacing:normal;
  9287. color:#000000;
  9288. vertical-align:none;
  9289. text-align:left;
  9290. text-transform:none;
  9291. background-color:transparent;
  9292. border-color:transparent;
  9293. }
  9294. #u20113_div {
  9295. border-width:0px;
  9296. position:absolute;
  9297. left:0px;
  9298. top:0px;
  9299. width:34px;
  9300. height:25px;
  9301. background:inherit;
  9302. background-color:rgba(255, 255, 255, 1);
  9303. border:none;
  9304. border-radius:0px;
  9305. -moz-box-shadow:none;
  9306. -webkit-box-shadow:none;
  9307. box-shadow:none;
  9308. font-family:'Microsoft YaHei', sans-serif;
  9309. font-weight:400;
  9310. font-style:normal;
  9311. }
  9312. #u20113 {
  9313. border-width:0px;
  9314. position:absolute;
  9315. left:1318px;
  9316. top:1185px;
  9317. width:34px;
  9318. height:25px;
  9319. display:flex;
  9320. font-family:'Microsoft YaHei', sans-serif;
  9321. font-weight:400;
  9322. font-style:normal;
  9323. }
  9324. #u20113 .text {
  9325. position:absolute;
  9326. align-self:center;
  9327. padding:2px 2px 2px 2px;
  9328. box-sizing:border-box;
  9329. width:100%;
  9330. }
  9331. #u20113_div.disabled {
  9332. border-width:0px;
  9333. position:absolute;
  9334. left:0px;
  9335. top:0px;
  9336. width:34px;
  9337. height:25px;
  9338. background:inherit;
  9339. background-color:rgba(240, 240, 240, 1);
  9340. border:none;
  9341. border-radius:0px;
  9342. -moz-box-shadow:none;
  9343. -webkit-box-shadow:none;
  9344. box-shadow:none;
  9345. font-family:'Microsoft YaHei', sans-serif;
  9346. font-weight:400;
  9347. font-style:normal;
  9348. }
  9349. #u20113.disabled {
  9350. }
  9351. #u20114_div {
  9352. border-width:0px;
  9353. position:absolute;
  9354. left:0px;
  9355. top:0px;
  9356. width:30px;
  9357. height:30px;
  9358. background:inherit;
  9359. background-color:rgba(41, 143, 255, 1);
  9360. border:none;
  9361. border-radius:4px;
  9362. -moz-box-shadow:none;
  9363. -webkit-box-shadow:none;
  9364. box-shadow:none;
  9365. font-family:'Microsoft YaHei', sans-serif;
  9366. font-weight:400;
  9367. font-style:normal;
  9368. font-size:14px;
  9369. color:#FFFFFF;
  9370. }
  9371. #u20114 {
  9372. border-width:0px;
  9373. position:absolute;
  9374. left:1030px;
  9375. top:1183px;
  9376. width:30px;
  9377. height:30px;
  9378. display:flex;
  9379. font-family:'Microsoft YaHei', sans-serif;
  9380. font-weight:400;
  9381. font-style:normal;
  9382. font-size:14px;
  9383. color:#FFFFFF;
  9384. }
  9385. #u20114 .text {
  9386. position:absolute;
  9387. align-self:center;
  9388. padding:2px 2px 2px 2px;
  9389. box-sizing:border-box;
  9390. width:100%;
  9391. }
  9392. #u20114_text {
  9393. border-width:0px;
  9394. word-wrap:break-word;
  9395. text-transform:none;
  9396. }
  9397. #u20115_div {
  9398. border-width:0px;
  9399. position:absolute;
  9400. left:0px;
  9401. top:0px;
  9402. width:30px;
  9403. height:30px;
  9404. background:inherit;
  9405. background-color:rgba(255, 255, 255, 1);
  9406. box-sizing:border-box;
  9407. border-width:1px;
  9408. border-style:solid;
  9409. border-color:rgba(228, 228, 228, 1);
  9410. border-radius:4px;
  9411. -moz-box-shadow:none;
  9412. -webkit-box-shadow:none;
  9413. box-shadow:none;
  9414. font-family:'Microsoft YaHei', sans-serif;
  9415. font-weight:400;
  9416. font-style:normal;
  9417. font-size:14px;
  9418. }
  9419. #u20115 {
  9420. border-width:0px;
  9421. position:absolute;
  9422. left:1064px;
  9423. top:1183px;
  9424. width:30px;
  9425. height:30px;
  9426. display:flex;
  9427. font-family:'Microsoft YaHei', sans-serif;
  9428. font-weight:400;
  9429. font-style:normal;
  9430. font-size:14px;
  9431. }
  9432. #u20115 .text {
  9433. position:absolute;
  9434. align-self:center;
  9435. padding:2px 2px 2px 2px;
  9436. box-sizing:border-box;
  9437. width:100%;
  9438. }
  9439. #u20115_text {
  9440. border-width:0px;
  9441. word-wrap:break-word;
  9442. text-transform:none;
  9443. }
  9444. #u20116_div {
  9445. border-width:0px;
  9446. position:absolute;
  9447. left:0px;
  9448. top:0px;
  9449. width:30px;
  9450. height:30px;
  9451. background:inherit;
  9452. background-color:rgba(255, 255, 255, 1);
  9453. box-sizing:border-box;
  9454. border-width:1px;
  9455. border-style:solid;
  9456. border-color:rgba(228, 228, 228, 1);
  9457. border-radius:4px;
  9458. -moz-box-shadow:none;
  9459. -webkit-box-shadow:none;
  9460. box-shadow:none;
  9461. font-family:'Microsoft YaHei', sans-serif;
  9462. font-weight:400;
  9463. font-style:normal;
  9464. font-size:14px;
  9465. }
  9466. #u20116 {
  9467. border-width:0px;
  9468. position:absolute;
  9469. left:1098px;
  9470. top:1183px;
  9471. width:30px;
  9472. height:30px;
  9473. display:flex;
  9474. font-family:'Microsoft YaHei', sans-serif;
  9475. font-weight:400;
  9476. font-style:normal;
  9477. font-size:14px;
  9478. }
  9479. #u20116 .text {
  9480. position:absolute;
  9481. align-self:center;
  9482. padding:2px 2px 2px 2px;
  9483. box-sizing:border-box;
  9484. width:100%;
  9485. }
  9486. #u20116_text {
  9487. border-width:0px;
  9488. word-wrap:break-word;
  9489. text-transform:none;
  9490. }
  9491. #u20117_div {
  9492. border-width:0px;
  9493. position:absolute;
  9494. left:0px;
  9495. top:0px;
  9496. width:30px;
  9497. height:30px;
  9498. background:inherit;
  9499. background-color:rgba(255, 255, 255, 1);
  9500. border:none;
  9501. border-radius:4px;
  9502. -moz-box-shadow:none;
  9503. -webkit-box-shadow:none;
  9504. box-shadow:none;
  9505. font-family:'Microsoft YaHei', sans-serif;
  9506. font-weight:400;
  9507. font-style:normal;
  9508. font-size:14px;
  9509. }
  9510. #u20117 {
  9511. border-width:0px;
  9512. position:absolute;
  9513. left:1128px;
  9514. top:1183px;
  9515. width:30px;
  9516. height:30px;
  9517. display:flex;
  9518. font-family:'Microsoft YaHei', sans-serif;
  9519. font-weight:400;
  9520. font-style:normal;
  9521. font-size:14px;
  9522. }
  9523. #u20117 .text {
  9524. position:absolute;
  9525. align-self:center;
  9526. padding:2px 2px 2px 2px;
  9527. box-sizing:border-box;
  9528. width:100%;
  9529. }
  9530. #u20117_text {
  9531. border-width:0px;
  9532. word-wrap:break-word;
  9533. text-transform:none;
  9534. }
  9535. #u20118_div {
  9536. border-width:0px;
  9537. position:absolute;
  9538. left:0px;
  9539. top:0px;
  9540. width:30px;
  9541. height:30px;
  9542. background:inherit;
  9543. background-color:rgba(255, 255, 255, 1);
  9544. box-sizing:border-box;
  9545. border-width:1px;
  9546. border-style:solid;
  9547. border-color:rgba(228, 228, 228, 1);
  9548. border-radius:4px;
  9549. -moz-box-shadow:none;
  9550. -webkit-box-shadow:none;
  9551. box-shadow:none;
  9552. font-family:'Microsoft YaHei', sans-serif;
  9553. font-weight:400;
  9554. font-style:normal;
  9555. font-size:14px;
  9556. }
  9557. #u20118 {
  9558. border-width:0px;
  9559. position:absolute;
  9560. left:1162px;
  9561. top:1183px;
  9562. width:30px;
  9563. height:30px;
  9564. display:flex;
  9565. font-family:'Microsoft YaHei', sans-serif;
  9566. font-weight:400;
  9567. font-style:normal;
  9568. font-size:14px;
  9569. }
  9570. #u20118 .text {
  9571. position:absolute;
  9572. align-self:center;
  9573. padding:2px 2px 2px 2px;
  9574. box-sizing:border-box;
  9575. width:100%;
  9576. }
  9577. #u20118_text {
  9578. border-width:0px;
  9579. word-wrap:break-word;
  9580. text-transform:none;
  9581. }
  9582. #u20119_div {
  9583. border-width:0px;
  9584. position:absolute;
  9585. left:0px;
  9586. top:0px;
  9587. width:32px;
  9588. height:21px;
  9589. background:inherit;
  9590. background-color:rgba(255, 255, 255, 1);
  9591. border:none;
  9592. border-radius:15px;
  9593. -moz-box-shadow:none;
  9594. -webkit-box-shadow:none;
  9595. box-shadow:none;
  9596. font-family:'Microsoft YaHei', sans-serif;
  9597. font-weight:400;
  9598. font-style:normal;
  9599. font-size:14px;
  9600. color:#1E1E1E;
  9601. }
  9602. #u20119 {
  9603. border-width:0px;
  9604. position:absolute;
  9605. left:1236px;
  9606. top:1188px;
  9607. width:32px;
  9608. height:21px;
  9609. display:flex;
  9610. font-family:'Microsoft YaHei', sans-serif;
  9611. font-weight:400;
  9612. font-style:normal;
  9613. font-size:14px;
  9614. color:#1E1E1E;
  9615. }
  9616. #u20119 .text {
  9617. position:absolute;
  9618. align-self:center;
  9619. padding:2px 2px 2px 2px;
  9620. box-sizing:border-box;
  9621. width:100%;
  9622. }
  9623. #u20119_text {
  9624. border-width:0px;
  9625. white-space:nowrap;
  9626. text-transform:none;
  9627. }
  9628. #u20120 {
  9629. border-width:0px;
  9630. position:absolute;
  9631. left:0px;
  9632. top:0px;
  9633. width:0px;
  9634. height:0px;
  9635. }
  9636. #u20121_div {
  9637. border-width:0px;
  9638. position:absolute;
  9639. left:0px;
  9640. top:0px;
  9641. width:31px;
  9642. height:30px;
  9643. background:inherit;
  9644. background-color:rgba(255, 255, 255, 1);
  9645. box-sizing:border-box;
  9646. border-width:1px;
  9647. border-style:solid;
  9648. border-color:rgba(228, 228, 228, 1);
  9649. border-radius:4px;
  9650. -moz-box-shadow:none;
  9651. -webkit-box-shadow:none;
  9652. box-shadow:none;
  9653. font-family:'Microsoft YaHei', sans-serif;
  9654. font-weight:400;
  9655. font-style:normal;
  9656. font-size:12px;
  9657. }
  9658. #u20121 {
  9659. border-width:0px;
  9660. position:absolute;
  9661. left:961px;
  9662. top:1183px;
  9663. width:31px;
  9664. height:30px;
  9665. display:flex;
  9666. font-family:'Microsoft YaHei', sans-serif;
  9667. font-weight:400;
  9668. font-style:normal;
  9669. font-size:12px;
  9670. }
  9671. #u20121 .text {
  9672. position:absolute;
  9673. align-self:center;
  9674. padding:2px 2px 2px 2px;
  9675. box-sizing:border-box;
  9676. width:100%;
  9677. }
  9678. #u20121_text {
  9679. border-width:0px;
  9680. word-wrap:break-word;
  9681. text-transform:none;
  9682. visibility:hidden;
  9683. }
  9684. #u20122_img {
  9685. border-width:0px;
  9686. position:absolute;
  9687. left:0px;
  9688. top:0px;
  9689. width:8px;
  9690. height:14px;
  9691. }
  9692. #u20122 {
  9693. border-width:0px;
  9694. position:absolute;
  9695. left:973px;
  9696. top:1191px;
  9697. width:8px;
  9698. height:14px;
  9699. display:flex;
  9700. font-family:'Microsoft YaHei', sans-serif;
  9701. font-weight:400;
  9702. font-style:normal;
  9703. font-size:12px;
  9704. }
  9705. #u20122 .text {
  9706. position:absolute;
  9707. align-self:center;
  9708. padding:2px 2px 2px 2px;
  9709. box-sizing:border-box;
  9710. width:100%;
  9711. }
  9712. #u20122_text {
  9713. border-width:0px;
  9714. word-wrap:break-word;
  9715. text-transform:none;
  9716. visibility:hidden;
  9717. }
  9718. #u20123 {
  9719. border-width:0px;
  9720. position:absolute;
  9721. left:0px;
  9722. top:0px;
  9723. width:0px;
  9724. height:0px;
  9725. }
  9726. #u20124_div {
  9727. border-width:0px;
  9728. position:absolute;
  9729. left:0px;
  9730. top:0px;
  9731. width:31px;
  9732. height:30px;
  9733. background:inherit;
  9734. background-color:rgba(255, 255, 255, 1);
  9735. box-sizing:border-box;
  9736. border-width:1px;
  9737. border-style:solid;
  9738. border-color:rgba(228, 228, 228, 1);
  9739. border-radius:4px;
  9740. -moz-box-shadow:none;
  9741. -webkit-box-shadow:none;
  9742. box-shadow:none;
  9743. font-family:'Microsoft YaHei', sans-serif;
  9744. font-weight:400;
  9745. font-style:normal;
  9746. font-size:12px;
  9747. }
  9748. #u20124 {
  9749. border-width:0px;
  9750. position:absolute;
  9751. left:1195px;
  9752. top:1183px;
  9753. width:31px;
  9754. height:30px;
  9755. display:flex;
  9756. font-family:'Microsoft YaHei', sans-serif;
  9757. font-weight:400;
  9758. font-style:normal;
  9759. font-size:12px;
  9760. }
  9761. #u20124 .text {
  9762. position:absolute;
  9763. align-self:center;
  9764. padding:2px 2px 2px 2px;
  9765. box-sizing:border-box;
  9766. width:100%;
  9767. }
  9768. #u20124_text {
  9769. border-width:0px;
  9770. word-wrap:break-word;
  9771. text-transform:none;
  9772. visibility:hidden;
  9773. }
  9774. #u20125_img {
  9775. border-width:0px;
  9776. position:absolute;
  9777. left:0px;
  9778. top:0px;
  9779. width:8px;
  9780. height:14px;
  9781. }
  9782. #u20125 {
  9783. border-width:0px;
  9784. position:absolute;
  9785. left:1208px;
  9786. top:1191px;
  9787. width:8px;
  9788. height:14px;
  9789. display:flex;
  9790. font-family:'Microsoft YaHei', sans-serif;
  9791. font-weight:400;
  9792. font-style:normal;
  9793. font-size:12px;
  9794. }
  9795. #u20125 .text {
  9796. position:absolute;
  9797. align-self:center;
  9798. padding:2px 2px 2px 2px;
  9799. box-sizing:border-box;
  9800. width:100%;
  9801. }
  9802. #u20125_text {
  9803. border-width:0px;
  9804. word-wrap:break-word;
  9805. text-transform:none;
  9806. visibility:hidden;
  9807. }
  9808. #u20126 {
  9809. border-width:0px;
  9810. position:absolute;
  9811. left:0px;
  9812. top:0px;
  9813. width:0px;
  9814. height:0px;
  9815. }
  9816. #u20127_div {
  9817. border-width:0px;
  9818. position:absolute;
  9819. left:0px;
  9820. top:0px;
  9821. width:33px;
  9822. height:24px;
  9823. background:inherit;
  9824. background-color:rgba(255, 255, 255, 1);
  9825. border:none;
  9826. border-radius:0px;
  9827. -moz-box-shadow:none;
  9828. -webkit-box-shadow:none;
  9829. box-shadow:none;
  9830. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9831. font-weight:400;
  9832. font-style:normal;
  9833. font-size:14px;
  9834. color:#BCBCBC;
  9835. text-align:left;
  9836. }
  9837. #u20127 {
  9838. border-width:0px;
  9839. position:absolute;
  9840. left:1396px;
  9841. top:1186px;
  9842. width:33px;
  9843. height:24px;
  9844. display:flex;
  9845. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9846. font-weight:400;
  9847. font-style:normal;
  9848. font-size:14px;
  9849. color:#BCBCBC;
  9850. text-align:left;
  9851. }
  9852. #u20127 .text {
  9853. position:absolute;
  9854. align-self:center;
  9855. padding:2px 2px 2px 2px;
  9856. box-sizing:border-box;
  9857. width:100%;
  9858. }
  9859. #u20127_text {
  9860. border-width:0px;
  9861. white-space:nowrap;
  9862. text-transform:none;
  9863. }
  9864. #u20128_div {
  9865. border-width:0px;
  9866. position:absolute;
  9867. left:0px;
  9868. top:0px;
  9869. width:40px;
  9870. height:30px;
  9871. background:inherit;
  9872. background-color:rgba(255, 255, 255, 1);
  9873. box-sizing:border-box;
  9874. border-width:1px;
  9875. border-style:solid;
  9876. border-color:rgba(228, 228, 228, 1);
  9877. border-radius:4px;
  9878. -moz-box-shadow:none;
  9879. -webkit-box-shadow:none;
  9880. box-shadow:none;
  9881. font-family:'Microsoft YaHei', sans-serif;
  9882. font-weight:400;
  9883. font-style:normal;
  9884. font-size:14px;
  9885. }
  9886. #u20128 {
  9887. border-width:0px;
  9888. position:absolute;
  9889. left:1431px;
  9890. top:1183px;
  9891. width:40px;
  9892. height:30px;
  9893. display:flex;
  9894. font-family:'Microsoft YaHei', sans-serif;
  9895. font-weight:400;
  9896. font-style:normal;
  9897. font-size:14px;
  9898. }
  9899. #u20128 .text {
  9900. position:absolute;
  9901. align-self:center;
  9902. padding:2px 2px 2px 2px;
  9903. box-sizing:border-box;
  9904. width:100%;
  9905. }
  9906. #u20128_text {
  9907. border-width:0px;
  9908. word-wrap:break-word;
  9909. text-transform:none;
  9910. visibility:hidden;
  9911. }
  9912. #u20129_div {
  9913. border-width:0px;
  9914. position:absolute;
  9915. left:0px;
  9916. top:0px;
  9917. width:19px;
  9918. height:24px;
  9919. background:inherit;
  9920. background-color:rgba(255, 255, 255, 1);
  9921. border:none;
  9922. border-radius:0px;
  9923. -moz-box-shadow:none;
  9924. -webkit-box-shadow:none;
  9925. box-shadow:none;
  9926. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9927. font-weight:400;
  9928. font-style:normal;
  9929. font-size:14px;
  9930. color:#BCBCBC;
  9931. text-align:left;
  9932. }
  9933. #u20129 {
  9934. border-width:0px;
  9935. position:absolute;
  9936. left:1473px;
  9937. top:1187px;
  9938. width:19px;
  9939. height:24px;
  9940. display:flex;
  9941. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9942. font-weight:400;
  9943. font-style:normal;
  9944. font-size:14px;
  9945. color:#BCBCBC;
  9946. text-align:left;
  9947. }
  9948. #u20129 .text {
  9949. position:absolute;
  9950. align-self:center;
  9951. padding:2px 2px 2px 2px;
  9952. box-sizing:border-box;
  9953. width:100%;
  9954. }
  9955. #u20129_text {
  9956. border-width:0px;
  9957. white-space:nowrap;
  9958. text-transform:none;
  9959. }
  9960. #u20130_input {
  9961. position:absolute;
  9962. left:0px;
  9963. top:0px;
  9964. width:34px;
  9965. height:25px;
  9966. padding:2px 2px 2px 2px;
  9967. font-family:'Microsoft YaHei', sans-serif;
  9968. font-weight:400;
  9969. font-style:normal;
  9970. font-size:13px;
  9971. letter-spacing:normal;
  9972. color:#000000;
  9973. vertical-align:none;
  9974. text-align:left;
  9975. text-transform:none;
  9976. background-color:transparent;
  9977. border-color:transparent;
  9978. }
  9979. #u20130_input.disabled {
  9980. position:absolute;
  9981. left:0px;
  9982. top:0px;
  9983. width:34px;
  9984. height:25px;
  9985. padding:2px 2px 2px 2px;
  9986. font-family:'Microsoft YaHei', sans-serif;
  9987. font-weight:400;
  9988. font-style:normal;
  9989. font-size:13px;
  9990. letter-spacing:normal;
  9991. color:#000000;
  9992. vertical-align:none;
  9993. text-align:left;
  9994. text-transform:none;
  9995. background-color:transparent;
  9996. border-color:transparent;
  9997. }
  9998. #u20130_div {
  9999. border-width:0px;
  10000. position:absolute;
  10001. left:0px;
  10002. top:0px;
  10003. width:34px;
  10004. height:25px;
  10005. background:inherit;
  10006. background-color:rgba(255, 255, 255, 1);
  10007. border:none;
  10008. border-radius:0px;
  10009. -moz-box-shadow:none;
  10010. -webkit-box-shadow:none;
  10011. box-shadow:none;
  10012. font-family:'Microsoft YaHei', sans-serif;
  10013. font-weight:400;
  10014. font-style:normal;
  10015. }
  10016. #u20130 {
  10017. border-width:0px;
  10018. position:absolute;
  10019. left:1434px;
  10020. top:1185px;
  10021. width:34px;
  10022. height:25px;
  10023. display:flex;
  10024. font-family:'Microsoft YaHei', sans-serif;
  10025. font-weight:400;
  10026. font-style:normal;
  10027. }
  10028. #u20130 .text {
  10029. position:absolute;
  10030. align-self:center;
  10031. padding:2px 2px 2px 2px;
  10032. box-sizing:border-box;
  10033. width:100%;
  10034. }
  10035. #u20130_div.disabled {
  10036. border-width:0px;
  10037. position:absolute;
  10038. left:0px;
  10039. top:0px;
  10040. width:34px;
  10041. height:25px;
  10042. background:inherit;
  10043. background-color:rgba(240, 240, 240, 1);
  10044. border:none;
  10045. border-radius:0px;
  10046. -moz-box-shadow:none;
  10047. -webkit-box-shadow:none;
  10048. box-shadow:none;
  10049. font-family:'Microsoft YaHei', sans-serif;
  10050. font-weight:400;
  10051. font-style:normal;
  10052. }
  10053. #u20130.disabled {
  10054. }
  10055. #u20131 {
  10056. border-width:0px;
  10057. position:absolute;
  10058. left:0px;
  10059. top:0px;
  10060. width:0px;
  10061. height:0px;
  10062. }
  10063. #u20132_div {
  10064. border-width:0px;
  10065. position:absolute;
  10066. left:0px;
  10067. top:0px;
  10068. width:140px;
  10069. height:30px;
  10070. background:inherit;
  10071. background-color:rgba(255, 255, 255, 1);
  10072. box-sizing:border-box;
  10073. border-width:1px;
  10074. border-style:solid;
  10075. border-color:rgba(215, 215, 215, 1);
  10076. border-radius:4px;
  10077. -moz-box-shadow:none;
  10078. -webkit-box-shadow:none;
  10079. box-shadow:none;
  10080. font-size:14px;
  10081. }
  10082. #u20132 {
  10083. border-width:0px;
  10084. position:absolute;
  10085. left:1111px;
  10086. top:151px;
  10087. width:140px;
  10088. height:30px;
  10089. display:flex;
  10090. font-size:14px;
  10091. }
  10092. #u20132 .text {
  10093. position:absolute;
  10094. align-self:center;
  10095. padding:2px 2px 2px 2px;
  10096. box-sizing:border-box;
  10097. width:100%;
  10098. }
  10099. #u20132_text {
  10100. border-width:0px;
  10101. word-wrap:break-word;
  10102. text-transform:none;
  10103. visibility:hidden;
  10104. }
  10105. #u20133_input {
  10106. position:absolute;
  10107. left:0px;
  10108. top:0px;
  10109. width:134px;
  10110. height:23px;
  10111. padding:2px 2px 2px 2px;
  10112. font-family:'ArialMT', 'Arial', sans-serif;
  10113. font-weight:400;
  10114. font-style:normal;
  10115. font-size:14px;
  10116. letter-spacing:normal;
  10117. color:#AAAAAA;
  10118. vertical-align:none;
  10119. text-align:left;
  10120. text-transform:none;
  10121. background-color:transparent;
  10122. border-color:transparent;
  10123. }
  10124. #u20133_input.disabled {
  10125. position:absolute;
  10126. left:0px;
  10127. top:0px;
  10128. width:134px;
  10129. height:23px;
  10130. padding:2px 2px 2px 2px;
  10131. font-family:'ArialMT', 'Arial', sans-serif;
  10132. font-weight:400;
  10133. font-style:normal;
  10134. font-size:14px;
  10135. letter-spacing:normal;
  10136. color:#AAAAAA;
  10137. vertical-align:none;
  10138. text-align:left;
  10139. text-transform:none;
  10140. background-color:transparent;
  10141. border-color:transparent;
  10142. }
  10143. #u20133_div {
  10144. border-width:0px;
  10145. position:absolute;
  10146. left:0px;
  10147. top:0px;
  10148. width:134px;
  10149. height:23px;
  10150. background:inherit;
  10151. background-color:rgba(255, 255, 255, 1);
  10152. border:none;
  10153. border-radius:0px;
  10154. -moz-box-shadow:none;
  10155. -webkit-box-shadow:none;
  10156. box-shadow:none;
  10157. font-size:14px;
  10158. color:#AAAAAA;
  10159. }
  10160. #u20133 {
  10161. border-width:0px;
  10162. position:absolute;
  10163. left:1115px;
  10164. top:153px;
  10165. width:134px;
  10166. height:23px;
  10167. display:flex;
  10168. font-size:14px;
  10169. color:#AAAAAA;
  10170. }
  10171. #u20133 .text {
  10172. position:absolute;
  10173. align-self:flex-start;
  10174. padding:2px 2px 2px 2px;
  10175. box-sizing:border-box;
  10176. width:100%;
  10177. }
  10178. #u20133_div.disabled {
  10179. border-width:0px;
  10180. position:absolute;
  10181. left:0px;
  10182. top:0px;
  10183. width:134px;
  10184. height:23px;
  10185. background:inherit;
  10186. background-color:rgba(240, 240, 240, 1);
  10187. border:none;
  10188. border-radius:0px;
  10189. -moz-box-shadow:none;
  10190. -webkit-box-shadow:none;
  10191. box-shadow:none;
  10192. font-size:14px;
  10193. color:#AAAAAA;
  10194. }
  10195. #u20133.disabled {
  10196. }
  10197. .u20133_input_option {
  10198. font-size:14px;
  10199. }