styles.css 117 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763
  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. #u20784_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1600px;
  25. height:1250px;
  26. }
  27. #u20784 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:1600px;
  33. height:1250px;
  34. display:flex;
  35. }
  36. #u20784 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u20784_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u20785_div {
  50. border-width:0px;
  51. position:absolute;
  52. left:0px;
  53. top:0px;
  54. width:1600px;
  55. height:1250px;
  56. background:inherit;
  57. background-color:rgba(51, 51, 51, 0.498039215686275);
  58. border:none;
  59. border-radius:0px;
  60. -moz-box-shadow:none;
  61. -webkit-box-shadow:none;
  62. box-shadow:none;
  63. }
  64. #u20785 {
  65. border-width:0px;
  66. position:absolute;
  67. left:0px;
  68. top:0px;
  69. width:1600px;
  70. height:1250px;
  71. display:flex;
  72. }
  73. #u20785 .text {
  74. position:absolute;
  75. align-self:center;
  76. padding:2px 2px 2px 2px;
  77. box-sizing:border-box;
  78. width:100%;
  79. }
  80. #u20785_text {
  81. border-width:0px;
  82. word-wrap:break-word;
  83. text-transform:none;
  84. visibility:hidden;
  85. }
  86. #u20786 {
  87. border-width:0px;
  88. position:absolute;
  89. left:0px;
  90. top:0px;
  91. width:0px;
  92. height:0px;
  93. }
  94. #u20787_div {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:1000px;
  100. height:710px;
  101. background:inherit;
  102. background-color:rgba(255, 255, 255, 1);
  103. box-sizing:border-box;
  104. border-width:1px;
  105. border-style:solid;
  106. border-color:rgba(215, 215, 215, 1);
  107. border-radius:0px;
  108. -moz-box-shadow:none;
  109. -webkit-box-shadow:none;
  110. box-shadow:none;
  111. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  112. font-weight:400;
  113. font-style:normal;
  114. font-size:14px;
  115. color:#AAAAAA;
  116. text-align:center;
  117. line-height:30px;
  118. }
  119. #u20787 {
  120. border-width:0px;
  121. position:absolute;
  122. left:340px;
  123. top:198px;
  124. width:1000px;
  125. height:710px;
  126. display:flex;
  127. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  128. font-weight:400;
  129. font-style:normal;
  130. font-size:14px;
  131. color:#AAAAAA;
  132. text-align:center;
  133. line-height:30px;
  134. }
  135. #u20787 .text {
  136. position:absolute;
  137. align-self:center;
  138. padding:5px 10px 5px 10px;
  139. box-sizing:border-box;
  140. width:100%;
  141. }
  142. #u20787_text {
  143. border-width:0px;
  144. word-wrap:break-word;
  145. text-transform:none;
  146. visibility:hidden;
  147. }
  148. #u20788_div {
  149. border-width:0px;
  150. position:absolute;
  151. left:0px;
  152. top:0px;
  153. width:137px;
  154. height:35px;
  155. background:inherit;
  156. background-color:rgba(255, 255, 255, 0);
  157. border:none;
  158. border-top:0px;
  159. border-right:0px;
  160. border-bottom:0px;
  161. border-radius:0px;
  162. border-top-left-radius:0px;
  163. border-bottom-left-radius:0px;
  164. -moz-box-shadow:none;
  165. -webkit-box-shadow:none;
  166. box-shadow:none;
  167. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  168. font-weight:500;
  169. font-style:normal;
  170. font-size:18px;
  171. }
  172. #u20788 {
  173. border-width:0px;
  174. position:absolute;
  175. left:360px;
  176. top:216px;
  177. width:137px;
  178. height:35px;
  179. display:flex;
  180. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  181. font-weight:500;
  182. font-style:normal;
  183. font-size:18px;
  184. }
  185. #u20788 .text {
  186. position:absolute;
  187. align-self:center;
  188. padding:5px 10px 5px 0px;
  189. box-sizing:border-box;
  190. width:100%;
  191. }
  192. #u20788_text {
  193. border-width:0px;
  194. white-space:nowrap;
  195. text-transform:none;
  196. }
  197. #u20789 {
  198. border-width:0px;
  199. position:absolute;
  200. left:0px;
  201. top:0px;
  202. width:0px;
  203. height:0px;
  204. }
  205. #u20790_div {
  206. border-width:0px;
  207. position:absolute;
  208. left:0px;
  209. top:0px;
  210. width:40px;
  211. height:40px;
  212. background:inherit;
  213. background-color:rgba(255, 255, 255, 0);
  214. border:none;
  215. border-top:0px;
  216. border-right:0px;
  217. border-bottom:0px;
  218. border-radius:0px;
  219. border-top-left-radius:0px;
  220. border-bottom-left-radius:0px;
  221. -moz-box-shadow:none;
  222. -webkit-box-shadow:none;
  223. box-shadow:none;
  224. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  225. font-weight:500;
  226. font-style:normal;
  227. font-size:14px;
  228. text-align:center;
  229. }
  230. #u20790 {
  231. border-width:0px;
  232. position:absolute;
  233. left:1300px;
  234. top:198px;
  235. width:40px;
  236. height:40px;
  237. display:flex;
  238. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  239. font-weight:500;
  240. font-style:normal;
  241. font-size:14px;
  242. text-align:center;
  243. }
  244. #u20790 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:5px 10px 5px 0px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u20790_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. }
  256. #u20791_img {
  257. border-width:0px;
  258. position:absolute;
  259. left:0px;
  260. top:0px;
  261. width:13px;
  262. height:13px;
  263. }
  264. #u20791 {
  265. border-width:0px;
  266. position:absolute;
  267. left:1288px;
  268. top:214px;
  269. width:13px;
  270. height:13px;
  271. display:flex;
  272. font-size:14px;
  273. }
  274. #u20791 .text {
  275. position:absolute;
  276. align-self:center;
  277. padding:2px 2px 2px 2px;
  278. box-sizing:border-box;
  279. width:100%;
  280. }
  281. #u20791_text {
  282. border-width:0px;
  283. word-wrap:break-word;
  284. text-transform:none;
  285. visibility:hidden;
  286. }
  287. #u20792 {
  288. border-width:0px;
  289. position:absolute;
  290. left:360px;
  291. top:341px;
  292. width:960px;
  293. height:438px;
  294. }
  295. #u20793_img {
  296. border-width:0px;
  297. position:absolute;
  298. left:0px;
  299. top:0px;
  300. width:39px;
  301. height:38px;
  302. }
  303. #u20793 {
  304. border-width:0px;
  305. position:absolute;
  306. left:0px;
  307. top:0px;
  308. width:39px;
  309. height:38px;
  310. display:flex;
  311. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  312. font-weight:400;
  313. font-style:normal;
  314. font-size:12px;
  315. color:#FFFFFF;
  316. }
  317. #u20793 .text {
  318. position:absolute;
  319. align-self:center;
  320. padding:2px 2px 2px 0px;
  321. box-sizing:border-box;
  322. width:100%;
  323. }
  324. #u20793_text {
  325. border-width:0px;
  326. word-wrap:break-word;
  327. text-transform:none;
  328. visibility:hidden;
  329. }
  330. #u20794_img {
  331. border-width:0px;
  332. position:absolute;
  333. left:0px;
  334. top:0px;
  335. width:73px;
  336. height:38px;
  337. }
  338. #u20794 {
  339. border-width:0px;
  340. position:absolute;
  341. left:39px;
  342. top:0px;
  343. width:73px;
  344. height:38px;
  345. display:flex;
  346. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  347. font-weight:400;
  348. font-style:normal;
  349. font-size:12px;
  350. color:#FFFFFF;
  351. }
  352. #u20794 .text {
  353. position:absolute;
  354. align-self:center;
  355. padding:2px 2px 2px 0px;
  356. box-sizing:border-box;
  357. width:100%;
  358. }
  359. #u20794_text {
  360. border-width:0px;
  361. word-wrap:break-word;
  362. text-transform:none;
  363. }
  364. #u20795_img {
  365. border-width:0px;
  366. position:absolute;
  367. left:0px;
  368. top:0px;
  369. width:73px;
  370. height:38px;
  371. }
  372. #u20795 {
  373. border-width:0px;
  374. position:absolute;
  375. left:112px;
  376. top:0px;
  377. width:73px;
  378. height:38px;
  379. display:flex;
  380. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  381. font-weight:400;
  382. font-style:normal;
  383. font-size:12px;
  384. color:#FFFFFF;
  385. }
  386. #u20795 .text {
  387. position:absolute;
  388. align-self:center;
  389. padding:2px 2px 2px 0px;
  390. box-sizing:border-box;
  391. width:100%;
  392. }
  393. #u20795_text {
  394. border-width:0px;
  395. word-wrap:break-word;
  396. text-transform:none;
  397. }
  398. #u20796_img {
  399. border-width:0px;
  400. position:absolute;
  401. left:0px;
  402. top:0px;
  403. width:76px;
  404. height:38px;
  405. }
  406. #u20796 {
  407. border-width:0px;
  408. position:absolute;
  409. left:185px;
  410. top:0px;
  411. width:76px;
  412. height:38px;
  413. display:flex;
  414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  415. font-weight:400;
  416. font-style:normal;
  417. font-size:12px;
  418. color:#FFFFFF;
  419. }
  420. #u20796 .text {
  421. position:absolute;
  422. align-self:center;
  423. padding:2px 2px 2px 0px;
  424. box-sizing:border-box;
  425. width:100%;
  426. }
  427. #u20796_text {
  428. border-width:0px;
  429. word-wrap:break-word;
  430. text-transform:none;
  431. }
  432. #u20797_img {
  433. border-width:0px;
  434. position:absolute;
  435. left:0px;
  436. top:0px;
  437. width:76px;
  438. height:38px;
  439. }
  440. #u20797 {
  441. border-width:0px;
  442. position:absolute;
  443. left:261px;
  444. top:0px;
  445. width:76px;
  446. height:38px;
  447. display:flex;
  448. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  449. font-weight:400;
  450. font-style:normal;
  451. font-size:12px;
  452. color:#FFFFFF;
  453. }
  454. #u20797 .text {
  455. position:absolute;
  456. align-self:center;
  457. padding:2px 2px 2px 0px;
  458. box-sizing:border-box;
  459. width:100%;
  460. }
  461. #u20797_text {
  462. border-width:0px;
  463. word-wrap:break-word;
  464. text-transform:none;
  465. }
  466. #u20798_img {
  467. border-width:0px;
  468. position:absolute;
  469. left:0px;
  470. top:0px;
  471. width:76px;
  472. height:38px;
  473. }
  474. #u20798 {
  475. border-width:0px;
  476. position:absolute;
  477. left:337px;
  478. top:0px;
  479. width:76px;
  480. height:38px;
  481. display:flex;
  482. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  483. font-weight:400;
  484. font-style:normal;
  485. font-size:12px;
  486. color:#FFFFFF;
  487. }
  488. #u20798 .text {
  489. position:absolute;
  490. align-self:center;
  491. padding:2px 2px 2px 0px;
  492. box-sizing:border-box;
  493. width:100%;
  494. }
  495. #u20798_text {
  496. border-width:0px;
  497. word-wrap:break-word;
  498. text-transform:none;
  499. }
  500. #u20799_img {
  501. border-width:0px;
  502. position:absolute;
  503. left:0px;
  504. top:0px;
  505. width:76px;
  506. height:38px;
  507. }
  508. #u20799 {
  509. border-width:0px;
  510. position:absolute;
  511. left:413px;
  512. top:0px;
  513. width:76px;
  514. height:38px;
  515. display:flex;
  516. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  517. font-weight:400;
  518. font-style:normal;
  519. font-size:12px;
  520. color:#FFFFFF;
  521. }
  522. #u20799 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 0px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u20799_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u20800_img {
  535. border-width:0px;
  536. position:absolute;
  537. left:0px;
  538. top:0px;
  539. width:80px;
  540. height:38px;
  541. }
  542. #u20800 {
  543. border-width:0px;
  544. position:absolute;
  545. left:489px;
  546. top:0px;
  547. width:80px;
  548. height:38px;
  549. display:flex;
  550. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  551. font-weight:400;
  552. font-style:normal;
  553. font-size:12px;
  554. color:#FFFFFF;
  555. }
  556. #u20800 .text {
  557. position:absolute;
  558. align-self:center;
  559. padding:2px 2px 2px 0px;
  560. box-sizing:border-box;
  561. width:100%;
  562. }
  563. #u20800_text {
  564. border-width:0px;
  565. word-wrap:break-word;
  566. text-transform:none;
  567. }
  568. #u20801_img {
  569. border-width:0px;
  570. position:absolute;
  571. left:0px;
  572. top:0px;
  573. width:98px;
  574. height:38px;
  575. }
  576. #u20801 {
  577. border-width:0px;
  578. position:absolute;
  579. left:569px;
  580. top:0px;
  581. width:98px;
  582. height:38px;
  583. display:flex;
  584. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  585. font-weight:400;
  586. font-style:normal;
  587. font-size:12px;
  588. color:#FFFFFF;
  589. }
  590. #u20801 .text {
  591. position:absolute;
  592. align-self:center;
  593. padding:2px 2px 2px 0px;
  594. box-sizing:border-box;
  595. width:100%;
  596. }
  597. #u20801_text {
  598. border-width:0px;
  599. word-wrap:break-word;
  600. text-transform:none;
  601. }
  602. #u20802_img {
  603. border-width:0px;
  604. position:absolute;
  605. left:0px;
  606. top:0px;
  607. width:98px;
  608. height:38px;
  609. }
  610. #u20802 {
  611. border-width:0px;
  612. position:absolute;
  613. left:667px;
  614. top:0px;
  615. width:98px;
  616. height:38px;
  617. display:flex;
  618. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  619. font-weight:400;
  620. font-style:normal;
  621. font-size:12px;
  622. color:#FFFFFF;
  623. }
  624. #u20802 .text {
  625. position:absolute;
  626. align-self:center;
  627. padding:2px 2px 2px 0px;
  628. box-sizing:border-box;
  629. width:100%;
  630. }
  631. #u20802_text {
  632. border-width:0px;
  633. word-wrap:break-word;
  634. text-transform:none;
  635. }
  636. #u20803_img {
  637. border-width:0px;
  638. position:absolute;
  639. left:0px;
  640. top:0px;
  641. width:106px;
  642. height:38px;
  643. }
  644. #u20803 {
  645. border-width:0px;
  646. position:absolute;
  647. left:765px;
  648. top:0px;
  649. width:106px;
  650. height:38px;
  651. display:flex;
  652. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  653. font-weight:400;
  654. font-style:normal;
  655. font-size:12px;
  656. color:#FFFFFF;
  657. }
  658. #u20803 .text {
  659. position:absolute;
  660. align-self:center;
  661. padding:2px 2px 2px 0px;
  662. box-sizing:border-box;
  663. width:100%;
  664. }
  665. #u20803_text {
  666. border-width:0px;
  667. word-wrap:break-word;
  668. text-transform:none;
  669. }
  670. #u20804_img {
  671. border-width:0px;
  672. position:absolute;
  673. left:0px;
  674. top:0px;
  675. width:89px;
  676. height:38px;
  677. }
  678. #u20804 {
  679. border-width:0px;
  680. position:absolute;
  681. left:871px;
  682. top:0px;
  683. width:89px;
  684. height:38px;
  685. display:flex;
  686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  687. font-weight:400;
  688. font-style:normal;
  689. font-size:12px;
  690. color:#FFFFFF;
  691. }
  692. #u20804 .text {
  693. position:absolute;
  694. align-self:center;
  695. padding:2px 2px 2px 0px;
  696. box-sizing:border-box;
  697. width:100%;
  698. }
  699. #u20804_text {
  700. border-width:0px;
  701. word-wrap:break-word;
  702. text-transform:none;
  703. }
  704. #u20805_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:39px;
  710. height:40px;
  711. }
  712. #u20805 {
  713. border-width:0px;
  714. position:absolute;
  715. left:0px;
  716. top:38px;
  717. width:39px;
  718. height:40px;
  719. display:flex;
  720. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  721. font-weight:400;
  722. font-style:normal;
  723. font-size:12px;
  724. color:#333333;
  725. }
  726. #u20805 .text {
  727. position:absolute;
  728. align-self:center;
  729. padding:2px 2px 2px 0px;
  730. box-sizing:border-box;
  731. width:100%;
  732. }
  733. #u20805_text {
  734. border-width:0px;
  735. word-wrap:break-word;
  736. text-transform:none;
  737. visibility:hidden;
  738. }
  739. #u20806_img {
  740. border-width:0px;
  741. position:absolute;
  742. left:0px;
  743. top:0px;
  744. width:73px;
  745. height:40px;
  746. }
  747. #u20806 {
  748. border-width:0px;
  749. position:absolute;
  750. left:39px;
  751. top:38px;
  752. width:73px;
  753. height:40px;
  754. display:flex;
  755. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  756. font-weight:400;
  757. font-style:normal;
  758. font-size:12px;
  759. color:#333333;
  760. }
  761. #u20806 .text {
  762. position:absolute;
  763. align-self:center;
  764. padding:2px 2px 2px 0px;
  765. box-sizing:border-box;
  766. width:100%;
  767. }
  768. #u20806_text {
  769. border-width:0px;
  770. word-wrap:break-word;
  771. text-transform:none;
  772. visibility:hidden;
  773. }
  774. #u20807_img {
  775. border-width:0px;
  776. position:absolute;
  777. left:0px;
  778. top:0px;
  779. width:73px;
  780. height:40px;
  781. }
  782. #u20807 {
  783. border-width:0px;
  784. position:absolute;
  785. left:112px;
  786. top:38px;
  787. width:73px;
  788. height:40px;
  789. display:flex;
  790. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  791. font-weight:400;
  792. font-style:normal;
  793. font-size:12px;
  794. color:#333333;
  795. }
  796. #u20807 .text {
  797. position:absolute;
  798. align-self:center;
  799. padding:2px 2px 2px 0px;
  800. box-sizing:border-box;
  801. width:100%;
  802. }
  803. #u20807_text {
  804. border-width:0px;
  805. word-wrap:break-word;
  806. text-transform:none;
  807. visibility:hidden;
  808. }
  809. #u20808_img {
  810. border-width:0px;
  811. position:absolute;
  812. left:0px;
  813. top:0px;
  814. width:76px;
  815. height:40px;
  816. }
  817. #u20808 {
  818. border-width:0px;
  819. position:absolute;
  820. left:185px;
  821. top:38px;
  822. width:76px;
  823. height:40px;
  824. display:flex;
  825. font-family:'ArialMT', 'Arial', sans-serif;
  826. font-weight:400;
  827. font-style:normal;
  828. font-size:12px;
  829. color:#AAAAAA;
  830. text-align:left;
  831. }
  832. #u20808 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 0px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u20808_text {
  840. border-width:0px;
  841. word-wrap:break-word;
  842. text-transform:none;
  843. visibility:hidden;
  844. }
  845. #u20809_img {
  846. border-width:0px;
  847. position:absolute;
  848. left:0px;
  849. top:0px;
  850. width:76px;
  851. height:40px;
  852. }
  853. #u20809 {
  854. border-width:0px;
  855. position:absolute;
  856. left:261px;
  857. top:38px;
  858. width:76px;
  859. height:40px;
  860. display:flex;
  861. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  862. font-weight:400;
  863. font-style:normal;
  864. font-size:12px;
  865. color:#333333;
  866. }
  867. #u20809 .text {
  868. position:absolute;
  869. align-self:center;
  870. padding:2px 2px 2px 0px;
  871. box-sizing:border-box;
  872. width:100%;
  873. }
  874. #u20809_text {
  875. border-width:0px;
  876. word-wrap:break-word;
  877. text-transform:none;
  878. visibility:hidden;
  879. }
  880. #u20810_img {
  881. border-width:0px;
  882. position:absolute;
  883. left:0px;
  884. top:0px;
  885. width:76px;
  886. height:40px;
  887. }
  888. #u20810 {
  889. border-width:0px;
  890. position:absolute;
  891. left:337px;
  892. top:38px;
  893. width:76px;
  894. height:40px;
  895. display:flex;
  896. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  897. font-weight:400;
  898. font-style:normal;
  899. font-size:12px;
  900. color:#333333;
  901. }
  902. #u20810 .text {
  903. position:absolute;
  904. align-self:center;
  905. padding:2px 2px 2px 0px;
  906. box-sizing:border-box;
  907. width:100%;
  908. }
  909. #u20810_text {
  910. border-width:0px;
  911. word-wrap:break-word;
  912. text-transform:none;
  913. visibility:hidden;
  914. }
  915. #u20811_img {
  916. border-width:0px;
  917. position:absolute;
  918. left:0px;
  919. top:0px;
  920. width:76px;
  921. height:40px;
  922. }
  923. #u20811 {
  924. border-width:0px;
  925. position:absolute;
  926. left:413px;
  927. top:38px;
  928. width:76px;
  929. height:40px;
  930. display:flex;
  931. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  932. font-weight:400;
  933. font-style:normal;
  934. font-size:12px;
  935. color:#333333;
  936. }
  937. #u20811 .text {
  938. position:absolute;
  939. align-self:center;
  940. padding:2px 2px 2px 0px;
  941. box-sizing:border-box;
  942. width:100%;
  943. }
  944. #u20811_text {
  945. border-width:0px;
  946. word-wrap:break-word;
  947. text-transform:none;
  948. visibility:hidden;
  949. }
  950. #u20812_img {
  951. border-width:0px;
  952. position:absolute;
  953. left:0px;
  954. top:0px;
  955. width:80px;
  956. height:40px;
  957. }
  958. #u20812 {
  959. border-width:0px;
  960. position:absolute;
  961. left:489px;
  962. top:38px;
  963. width:80px;
  964. height:40px;
  965. display:flex;
  966. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  967. font-weight:400;
  968. font-style:normal;
  969. font-size:12px;
  970. color:#333333;
  971. }
  972. #u20812 .text {
  973. position:absolute;
  974. align-self:center;
  975. padding:2px 2px 2px 0px;
  976. box-sizing:border-box;
  977. width:100%;
  978. }
  979. #u20812_text {
  980. border-width:0px;
  981. word-wrap:break-word;
  982. text-transform:none;
  983. visibility:hidden;
  984. }
  985. #u20813_img {
  986. border-width:0px;
  987. position:absolute;
  988. left:0px;
  989. top:0px;
  990. width:98px;
  991. height:40px;
  992. }
  993. #u20813 {
  994. border-width:0px;
  995. position:absolute;
  996. left:569px;
  997. top:38px;
  998. width:98px;
  999. height:40px;
  1000. display:flex;
  1001. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1002. font-weight:400;
  1003. font-style:normal;
  1004. font-size:12px;
  1005. color:#0089FE;
  1006. }
  1007. #u20813 .text {
  1008. position:absolute;
  1009. align-self:center;
  1010. padding:2px 2px 2px 0px;
  1011. box-sizing:border-box;
  1012. width:100%;
  1013. }
  1014. #u20813_text {
  1015. border-width:0px;
  1016. word-wrap:break-word;
  1017. text-transform:none;
  1018. visibility:hidden;
  1019. }
  1020. #u20814_img {
  1021. border-width:0px;
  1022. position:absolute;
  1023. left:0px;
  1024. top:0px;
  1025. width:98px;
  1026. height:40px;
  1027. }
  1028. #u20814 {
  1029. border-width:0px;
  1030. position:absolute;
  1031. left:667px;
  1032. top:38px;
  1033. width:98px;
  1034. height:40px;
  1035. display:flex;
  1036. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1037. font-weight:400;
  1038. font-style:normal;
  1039. font-size:12px;
  1040. color:#0089FE;
  1041. }
  1042. #u20814 .text {
  1043. position:absolute;
  1044. align-self:center;
  1045. padding:2px 2px 2px 0px;
  1046. box-sizing:border-box;
  1047. width:100%;
  1048. }
  1049. #u20814_text {
  1050. border-width:0px;
  1051. word-wrap:break-word;
  1052. text-transform:none;
  1053. visibility:hidden;
  1054. }
  1055. #u20815_img {
  1056. border-width:0px;
  1057. position:absolute;
  1058. left:0px;
  1059. top:0px;
  1060. width:106px;
  1061. height:40px;
  1062. }
  1063. #u20815 {
  1064. border-width:0px;
  1065. position:absolute;
  1066. left:765px;
  1067. top:38px;
  1068. width:106px;
  1069. height:40px;
  1070. display:flex;
  1071. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1072. font-weight:400;
  1073. font-style:normal;
  1074. font-size:12px;
  1075. color:#0089FE;
  1076. }
  1077. #u20815 .text {
  1078. position:absolute;
  1079. align-self:center;
  1080. padding:2px 2px 2px 0px;
  1081. box-sizing:border-box;
  1082. width:100%;
  1083. }
  1084. #u20815_text {
  1085. border-width:0px;
  1086. word-wrap:break-word;
  1087. text-transform:none;
  1088. visibility:hidden;
  1089. }
  1090. #u20816_img {
  1091. border-width:0px;
  1092. position:absolute;
  1093. left:0px;
  1094. top:0px;
  1095. width:89px;
  1096. height:40px;
  1097. }
  1098. #u20816 {
  1099. border-width:0px;
  1100. position:absolute;
  1101. left:871px;
  1102. top:38px;
  1103. width:89px;
  1104. height:40px;
  1105. display:flex;
  1106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1107. font-weight:400;
  1108. font-style:normal;
  1109. font-size:12px;
  1110. color:#0089FE;
  1111. }
  1112. #u20816 .text {
  1113. position:absolute;
  1114. align-self:center;
  1115. padding:2px 2px 2px 0px;
  1116. box-sizing:border-box;
  1117. width:100%;
  1118. }
  1119. #u20816_text {
  1120. border-width:0px;
  1121. word-wrap:break-word;
  1122. text-transform:none;
  1123. visibility:hidden;
  1124. }
  1125. #u20817_img {
  1126. border-width:0px;
  1127. position:absolute;
  1128. left:0px;
  1129. top:0px;
  1130. width:39px;
  1131. height:40px;
  1132. }
  1133. #u20817 {
  1134. border-width:0px;
  1135. position:absolute;
  1136. left:0px;
  1137. top:78px;
  1138. width:39px;
  1139. height:40px;
  1140. display:flex;
  1141. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1142. font-weight:400;
  1143. font-style:normal;
  1144. font-size:12px;
  1145. color:#333333;
  1146. }
  1147. #u20817 .text {
  1148. position:absolute;
  1149. align-self:center;
  1150. padding:2px 2px 2px 0px;
  1151. box-sizing:border-box;
  1152. width:100%;
  1153. }
  1154. #u20817_text {
  1155. border-width:0px;
  1156. word-wrap:break-word;
  1157. text-transform:none;
  1158. visibility:hidden;
  1159. }
  1160. #u20818_img {
  1161. border-width:0px;
  1162. position:absolute;
  1163. left:0px;
  1164. top:0px;
  1165. width:73px;
  1166. height:40px;
  1167. }
  1168. #u20818 {
  1169. border-width:0px;
  1170. position:absolute;
  1171. left:39px;
  1172. top:78px;
  1173. width:73px;
  1174. height:40px;
  1175. display:flex;
  1176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1177. font-weight:400;
  1178. font-style:normal;
  1179. font-size:12px;
  1180. color:#333333;
  1181. }
  1182. #u20818 .text {
  1183. position:absolute;
  1184. align-self:center;
  1185. padding:2px 2px 2px 0px;
  1186. box-sizing:border-box;
  1187. width:100%;
  1188. }
  1189. #u20818_text {
  1190. border-width:0px;
  1191. word-wrap:break-word;
  1192. text-transform:none;
  1193. visibility:hidden;
  1194. }
  1195. #u20819_img {
  1196. border-width:0px;
  1197. position:absolute;
  1198. left:0px;
  1199. top:0px;
  1200. width:73px;
  1201. height:40px;
  1202. }
  1203. #u20819 {
  1204. border-width:0px;
  1205. position:absolute;
  1206. left:112px;
  1207. top:78px;
  1208. width:73px;
  1209. height:40px;
  1210. display:flex;
  1211. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1212. font-weight:400;
  1213. font-style:normal;
  1214. font-size:12px;
  1215. color:#333333;
  1216. }
  1217. #u20819 .text {
  1218. position:absolute;
  1219. align-self:center;
  1220. padding:2px 2px 2px 0px;
  1221. box-sizing:border-box;
  1222. width:100%;
  1223. }
  1224. #u20819_text {
  1225. border-width:0px;
  1226. word-wrap:break-word;
  1227. text-transform:none;
  1228. visibility:hidden;
  1229. }
  1230. #u20820_img {
  1231. border-width:0px;
  1232. position:absolute;
  1233. left:0px;
  1234. top:0px;
  1235. width:76px;
  1236. height:40px;
  1237. }
  1238. #u20820 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:185px;
  1242. top:78px;
  1243. width:76px;
  1244. height:40px;
  1245. display:flex;
  1246. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1247. font-weight:400;
  1248. font-style:normal;
  1249. font-size:12px;
  1250. color:#333333;
  1251. }
  1252. #u20820 .text {
  1253. position:absolute;
  1254. align-self:center;
  1255. padding:2px 2px 2px 0px;
  1256. box-sizing:border-box;
  1257. width:100%;
  1258. }
  1259. #u20820_text {
  1260. border-width:0px;
  1261. word-wrap:break-word;
  1262. text-transform:none;
  1263. visibility:hidden;
  1264. }
  1265. #u20821_img {
  1266. border-width:0px;
  1267. position:absolute;
  1268. left:0px;
  1269. top:0px;
  1270. width:76px;
  1271. height:40px;
  1272. }
  1273. #u20821 {
  1274. border-width:0px;
  1275. position:absolute;
  1276. left:261px;
  1277. top:78px;
  1278. width:76px;
  1279. height:40px;
  1280. display:flex;
  1281. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1282. font-weight:400;
  1283. font-style:normal;
  1284. font-size:12px;
  1285. color:#333333;
  1286. }
  1287. #u20821 .text {
  1288. position:absolute;
  1289. align-self:center;
  1290. padding:2px 2px 2px 0px;
  1291. box-sizing:border-box;
  1292. width:100%;
  1293. }
  1294. #u20821_text {
  1295. border-width:0px;
  1296. word-wrap:break-word;
  1297. text-transform:none;
  1298. visibility:hidden;
  1299. }
  1300. #u20822_img {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:0px;
  1304. top:0px;
  1305. width:76px;
  1306. height:40px;
  1307. }
  1308. #u20822 {
  1309. border-width:0px;
  1310. position:absolute;
  1311. left:337px;
  1312. top:78px;
  1313. width:76px;
  1314. height:40px;
  1315. display:flex;
  1316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1317. font-weight:400;
  1318. font-style:normal;
  1319. font-size:12px;
  1320. color:#333333;
  1321. }
  1322. #u20822 .text {
  1323. position:absolute;
  1324. align-self:center;
  1325. padding:2px 2px 2px 0px;
  1326. box-sizing:border-box;
  1327. width:100%;
  1328. }
  1329. #u20822_text {
  1330. border-width:0px;
  1331. word-wrap:break-word;
  1332. text-transform:none;
  1333. visibility:hidden;
  1334. }
  1335. #u20823_img {
  1336. border-width:0px;
  1337. position:absolute;
  1338. left:0px;
  1339. top:0px;
  1340. width:76px;
  1341. height:40px;
  1342. }
  1343. #u20823 {
  1344. border-width:0px;
  1345. position:absolute;
  1346. left:413px;
  1347. top:78px;
  1348. width:76px;
  1349. height:40px;
  1350. display:flex;
  1351. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1352. font-weight:400;
  1353. font-style:normal;
  1354. font-size:12px;
  1355. color:#333333;
  1356. }
  1357. #u20823 .text {
  1358. position:absolute;
  1359. align-self:center;
  1360. padding:2px 2px 2px 0px;
  1361. box-sizing:border-box;
  1362. width:100%;
  1363. }
  1364. #u20823_text {
  1365. border-width:0px;
  1366. word-wrap:break-word;
  1367. text-transform:none;
  1368. visibility:hidden;
  1369. }
  1370. #u20824_img {
  1371. border-width:0px;
  1372. position:absolute;
  1373. left:0px;
  1374. top:0px;
  1375. width:80px;
  1376. height:40px;
  1377. }
  1378. #u20824 {
  1379. border-width:0px;
  1380. position:absolute;
  1381. left:489px;
  1382. top:78px;
  1383. width:80px;
  1384. height:40px;
  1385. display:flex;
  1386. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1387. font-weight:400;
  1388. font-style:normal;
  1389. font-size:12px;
  1390. color:#333333;
  1391. }
  1392. #u20824 .text {
  1393. position:absolute;
  1394. align-self:center;
  1395. padding:2px 2px 2px 0px;
  1396. box-sizing:border-box;
  1397. width:100%;
  1398. }
  1399. #u20824_text {
  1400. border-width:0px;
  1401. word-wrap:break-word;
  1402. text-transform:none;
  1403. visibility:hidden;
  1404. }
  1405. #u20825_img {
  1406. border-width:0px;
  1407. position:absolute;
  1408. left:0px;
  1409. top:0px;
  1410. width:98px;
  1411. height:40px;
  1412. }
  1413. #u20825 {
  1414. border-width:0px;
  1415. position:absolute;
  1416. left:569px;
  1417. top:78px;
  1418. width:98px;
  1419. height:40px;
  1420. display:flex;
  1421. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1422. font-weight:400;
  1423. font-style:normal;
  1424. font-size:12px;
  1425. color:#0089FE;
  1426. }
  1427. #u20825 .text {
  1428. position:absolute;
  1429. align-self:center;
  1430. padding:2px 2px 2px 0px;
  1431. box-sizing:border-box;
  1432. width:100%;
  1433. }
  1434. #u20825_text {
  1435. border-width:0px;
  1436. word-wrap:break-word;
  1437. text-transform:none;
  1438. visibility:hidden;
  1439. }
  1440. #u20826_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:98px;
  1446. height:40px;
  1447. }
  1448. #u20826 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:667px;
  1452. top:78px;
  1453. width:98px;
  1454. height:40px;
  1455. display:flex;
  1456. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1457. font-weight:400;
  1458. font-style:normal;
  1459. font-size:12px;
  1460. color:#0089FE;
  1461. }
  1462. #u20826 .text {
  1463. position:absolute;
  1464. align-self:center;
  1465. padding:2px 2px 2px 0px;
  1466. box-sizing:border-box;
  1467. width:100%;
  1468. }
  1469. #u20826_text {
  1470. border-width:0px;
  1471. word-wrap:break-word;
  1472. text-transform:none;
  1473. visibility:hidden;
  1474. }
  1475. #u20827_img {
  1476. border-width:0px;
  1477. position:absolute;
  1478. left:0px;
  1479. top:0px;
  1480. width:106px;
  1481. height:40px;
  1482. }
  1483. #u20827 {
  1484. border-width:0px;
  1485. position:absolute;
  1486. left:765px;
  1487. top:78px;
  1488. width:106px;
  1489. height:40px;
  1490. display:flex;
  1491. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1492. font-weight:400;
  1493. font-style:normal;
  1494. font-size:12px;
  1495. color:#0089FE;
  1496. }
  1497. #u20827 .text {
  1498. position:absolute;
  1499. align-self:center;
  1500. padding:2px 2px 2px 0px;
  1501. box-sizing:border-box;
  1502. width:100%;
  1503. }
  1504. #u20827_text {
  1505. border-width:0px;
  1506. word-wrap:break-word;
  1507. text-transform:none;
  1508. visibility:hidden;
  1509. }
  1510. #u20828_img {
  1511. border-width:0px;
  1512. position:absolute;
  1513. left:0px;
  1514. top:0px;
  1515. width:89px;
  1516. height:40px;
  1517. }
  1518. #u20828 {
  1519. border-width:0px;
  1520. position:absolute;
  1521. left:871px;
  1522. top:78px;
  1523. width:89px;
  1524. height:40px;
  1525. display:flex;
  1526. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1527. font-weight:400;
  1528. font-style:normal;
  1529. font-size:12px;
  1530. color:#0089FE;
  1531. }
  1532. #u20828 .text {
  1533. position:absolute;
  1534. align-self:center;
  1535. padding:2px 2px 2px 0px;
  1536. box-sizing:border-box;
  1537. width:100%;
  1538. }
  1539. #u20828_text {
  1540. border-width:0px;
  1541. word-wrap:break-word;
  1542. text-transform:none;
  1543. visibility:hidden;
  1544. }
  1545. #u20829_img {
  1546. border-width:0px;
  1547. position:absolute;
  1548. left:0px;
  1549. top:0px;
  1550. width:39px;
  1551. height:40px;
  1552. }
  1553. #u20829 {
  1554. border-width:0px;
  1555. position:absolute;
  1556. left:0px;
  1557. top:118px;
  1558. width:39px;
  1559. height:40px;
  1560. display:flex;
  1561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1562. font-weight:400;
  1563. font-style:normal;
  1564. font-size:12px;
  1565. color:#333333;
  1566. }
  1567. #u20829 .text {
  1568. position:absolute;
  1569. align-self:center;
  1570. padding:2px 2px 2px 0px;
  1571. box-sizing:border-box;
  1572. width:100%;
  1573. }
  1574. #u20829_text {
  1575. border-width:0px;
  1576. word-wrap:break-word;
  1577. text-transform:none;
  1578. visibility:hidden;
  1579. }
  1580. #u20830_img {
  1581. border-width:0px;
  1582. position:absolute;
  1583. left:0px;
  1584. top:0px;
  1585. width:73px;
  1586. height:40px;
  1587. }
  1588. #u20830 {
  1589. border-width:0px;
  1590. position:absolute;
  1591. left:39px;
  1592. top:118px;
  1593. width:73px;
  1594. height:40px;
  1595. display:flex;
  1596. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1597. font-weight:400;
  1598. font-style:normal;
  1599. font-size:12px;
  1600. color:#333333;
  1601. }
  1602. #u20830 .text {
  1603. position:absolute;
  1604. align-self:center;
  1605. padding:2px 2px 2px 0px;
  1606. box-sizing:border-box;
  1607. width:100%;
  1608. }
  1609. #u20830_text {
  1610. border-width:0px;
  1611. word-wrap:break-word;
  1612. text-transform:none;
  1613. visibility:hidden;
  1614. }
  1615. #u20831_img {
  1616. border-width:0px;
  1617. position:absolute;
  1618. left:0px;
  1619. top:0px;
  1620. width:73px;
  1621. height:40px;
  1622. }
  1623. #u20831 {
  1624. border-width:0px;
  1625. position:absolute;
  1626. left:112px;
  1627. top:118px;
  1628. width:73px;
  1629. height:40px;
  1630. display:flex;
  1631. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1632. font-weight:400;
  1633. font-style:normal;
  1634. font-size:12px;
  1635. color:#333333;
  1636. }
  1637. #u20831 .text {
  1638. position:absolute;
  1639. align-self:center;
  1640. padding:2px 2px 2px 0px;
  1641. box-sizing:border-box;
  1642. width:100%;
  1643. }
  1644. #u20831_text {
  1645. border-width:0px;
  1646. word-wrap:break-word;
  1647. text-transform:none;
  1648. visibility:hidden;
  1649. }
  1650. #u20832_img {
  1651. border-width:0px;
  1652. position:absolute;
  1653. left:0px;
  1654. top:0px;
  1655. width:76px;
  1656. height:40px;
  1657. }
  1658. #u20832 {
  1659. border-width:0px;
  1660. position:absolute;
  1661. left:185px;
  1662. top:118px;
  1663. width:76px;
  1664. height:40px;
  1665. display:flex;
  1666. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1667. font-weight:400;
  1668. font-style:normal;
  1669. font-size:12px;
  1670. color:#333333;
  1671. }
  1672. #u20832 .text {
  1673. position:absolute;
  1674. align-self:center;
  1675. padding:2px 2px 2px 0px;
  1676. box-sizing:border-box;
  1677. width:100%;
  1678. }
  1679. #u20832_text {
  1680. border-width:0px;
  1681. word-wrap:break-word;
  1682. text-transform:none;
  1683. visibility:hidden;
  1684. }
  1685. #u20833_img {
  1686. border-width:0px;
  1687. position:absolute;
  1688. left:0px;
  1689. top:0px;
  1690. width:76px;
  1691. height:40px;
  1692. }
  1693. #u20833 {
  1694. border-width:0px;
  1695. position:absolute;
  1696. left:261px;
  1697. top:118px;
  1698. width:76px;
  1699. height:40px;
  1700. display:flex;
  1701. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1702. font-weight:400;
  1703. font-style:normal;
  1704. font-size:12px;
  1705. color:#333333;
  1706. }
  1707. #u20833 .text {
  1708. position:absolute;
  1709. align-self:center;
  1710. padding:2px 2px 2px 0px;
  1711. box-sizing:border-box;
  1712. width:100%;
  1713. }
  1714. #u20833_text {
  1715. border-width:0px;
  1716. word-wrap:break-word;
  1717. text-transform:none;
  1718. visibility:hidden;
  1719. }
  1720. #u20834_img {
  1721. border-width:0px;
  1722. position:absolute;
  1723. left:0px;
  1724. top:0px;
  1725. width:76px;
  1726. height:40px;
  1727. }
  1728. #u20834 {
  1729. border-width:0px;
  1730. position:absolute;
  1731. left:337px;
  1732. top:118px;
  1733. width:76px;
  1734. height:40px;
  1735. display:flex;
  1736. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1737. font-weight:400;
  1738. font-style:normal;
  1739. font-size:12px;
  1740. color:#333333;
  1741. }
  1742. #u20834 .text {
  1743. position:absolute;
  1744. align-self:center;
  1745. padding:2px 2px 2px 0px;
  1746. box-sizing:border-box;
  1747. width:100%;
  1748. }
  1749. #u20834_text {
  1750. border-width:0px;
  1751. word-wrap:break-word;
  1752. text-transform:none;
  1753. visibility:hidden;
  1754. }
  1755. #u20835_img {
  1756. border-width:0px;
  1757. position:absolute;
  1758. left:0px;
  1759. top:0px;
  1760. width:76px;
  1761. height:40px;
  1762. }
  1763. #u20835 {
  1764. border-width:0px;
  1765. position:absolute;
  1766. left:413px;
  1767. top:118px;
  1768. width:76px;
  1769. height:40px;
  1770. display:flex;
  1771. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1772. font-weight:400;
  1773. font-style:normal;
  1774. font-size:12px;
  1775. color:#333333;
  1776. }
  1777. #u20835 .text {
  1778. position:absolute;
  1779. align-self:center;
  1780. padding:2px 2px 2px 0px;
  1781. box-sizing:border-box;
  1782. width:100%;
  1783. }
  1784. #u20835_text {
  1785. border-width:0px;
  1786. word-wrap:break-word;
  1787. text-transform:none;
  1788. visibility:hidden;
  1789. }
  1790. #u20836_img {
  1791. border-width:0px;
  1792. position:absolute;
  1793. left:0px;
  1794. top:0px;
  1795. width:80px;
  1796. height:40px;
  1797. }
  1798. #u20836 {
  1799. border-width:0px;
  1800. position:absolute;
  1801. left:489px;
  1802. top:118px;
  1803. width:80px;
  1804. height:40px;
  1805. display:flex;
  1806. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1807. font-weight:400;
  1808. font-style:normal;
  1809. font-size:12px;
  1810. color:#333333;
  1811. }
  1812. #u20836 .text {
  1813. position:absolute;
  1814. align-self:center;
  1815. padding:2px 2px 2px 0px;
  1816. box-sizing:border-box;
  1817. width:100%;
  1818. }
  1819. #u20836_text {
  1820. border-width:0px;
  1821. word-wrap:break-word;
  1822. text-transform:none;
  1823. visibility:hidden;
  1824. }
  1825. #u20837_img {
  1826. border-width:0px;
  1827. position:absolute;
  1828. left:0px;
  1829. top:0px;
  1830. width:98px;
  1831. height:40px;
  1832. }
  1833. #u20837 {
  1834. border-width:0px;
  1835. position:absolute;
  1836. left:569px;
  1837. top:118px;
  1838. width:98px;
  1839. height:40px;
  1840. display:flex;
  1841. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1842. font-weight:400;
  1843. font-style:normal;
  1844. font-size:12px;
  1845. color:#0089FE;
  1846. }
  1847. #u20837 .text {
  1848. position:absolute;
  1849. align-self:center;
  1850. padding:2px 2px 2px 0px;
  1851. box-sizing:border-box;
  1852. width:100%;
  1853. }
  1854. #u20837_text {
  1855. border-width:0px;
  1856. word-wrap:break-word;
  1857. text-transform:none;
  1858. visibility:hidden;
  1859. }
  1860. #u20838_img {
  1861. border-width:0px;
  1862. position:absolute;
  1863. left:0px;
  1864. top:0px;
  1865. width:98px;
  1866. height:40px;
  1867. }
  1868. #u20838 {
  1869. border-width:0px;
  1870. position:absolute;
  1871. left:667px;
  1872. top:118px;
  1873. width:98px;
  1874. height:40px;
  1875. display:flex;
  1876. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1877. font-weight:400;
  1878. font-style:normal;
  1879. font-size:12px;
  1880. color:#0089FE;
  1881. }
  1882. #u20838 .text {
  1883. position:absolute;
  1884. align-self:center;
  1885. padding:2px 2px 2px 0px;
  1886. box-sizing:border-box;
  1887. width:100%;
  1888. }
  1889. #u20838_text {
  1890. border-width:0px;
  1891. word-wrap:break-word;
  1892. text-transform:none;
  1893. visibility:hidden;
  1894. }
  1895. #u20839_img {
  1896. border-width:0px;
  1897. position:absolute;
  1898. left:0px;
  1899. top:0px;
  1900. width:106px;
  1901. height:40px;
  1902. }
  1903. #u20839 {
  1904. border-width:0px;
  1905. position:absolute;
  1906. left:765px;
  1907. top:118px;
  1908. width:106px;
  1909. height:40px;
  1910. display:flex;
  1911. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1912. font-weight:400;
  1913. font-style:normal;
  1914. font-size:12px;
  1915. color:#0089FE;
  1916. }
  1917. #u20839 .text {
  1918. position:absolute;
  1919. align-self:center;
  1920. padding:2px 2px 2px 0px;
  1921. box-sizing:border-box;
  1922. width:100%;
  1923. }
  1924. #u20839_text {
  1925. border-width:0px;
  1926. word-wrap:break-word;
  1927. text-transform:none;
  1928. visibility:hidden;
  1929. }
  1930. #u20840_img {
  1931. border-width:0px;
  1932. position:absolute;
  1933. left:0px;
  1934. top:0px;
  1935. width:89px;
  1936. height:40px;
  1937. }
  1938. #u20840 {
  1939. border-width:0px;
  1940. position:absolute;
  1941. left:871px;
  1942. top:118px;
  1943. width:89px;
  1944. height:40px;
  1945. display:flex;
  1946. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1947. font-weight:400;
  1948. font-style:normal;
  1949. font-size:12px;
  1950. color:#0089FE;
  1951. }
  1952. #u20840 .text {
  1953. position:absolute;
  1954. align-self:center;
  1955. padding:2px 2px 2px 0px;
  1956. box-sizing:border-box;
  1957. width:100%;
  1958. }
  1959. #u20840_text {
  1960. border-width:0px;
  1961. word-wrap:break-word;
  1962. text-transform:none;
  1963. visibility:hidden;
  1964. }
  1965. #u20841_img {
  1966. border-width:0px;
  1967. position:absolute;
  1968. left:0px;
  1969. top:0px;
  1970. width:39px;
  1971. height:40px;
  1972. }
  1973. #u20841 {
  1974. border-width:0px;
  1975. position:absolute;
  1976. left:0px;
  1977. top:158px;
  1978. width:39px;
  1979. height:40px;
  1980. display:flex;
  1981. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1982. font-weight:400;
  1983. font-style:normal;
  1984. font-size:12px;
  1985. color:#333333;
  1986. }
  1987. #u20841 .text {
  1988. position:absolute;
  1989. align-self:center;
  1990. padding:2px 2px 2px 0px;
  1991. box-sizing:border-box;
  1992. width:100%;
  1993. }
  1994. #u20841_text {
  1995. border-width:0px;
  1996. word-wrap:break-word;
  1997. text-transform:none;
  1998. visibility:hidden;
  1999. }
  2000. #u20842_img {
  2001. border-width:0px;
  2002. position:absolute;
  2003. left:0px;
  2004. top:0px;
  2005. width:73px;
  2006. height:40px;
  2007. }
  2008. #u20842 {
  2009. border-width:0px;
  2010. position:absolute;
  2011. left:39px;
  2012. top:158px;
  2013. width:73px;
  2014. height:40px;
  2015. display:flex;
  2016. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2017. font-weight:400;
  2018. font-style:normal;
  2019. font-size:12px;
  2020. color:#333333;
  2021. }
  2022. #u20842 .text {
  2023. position:absolute;
  2024. align-self:center;
  2025. padding:2px 2px 2px 0px;
  2026. box-sizing:border-box;
  2027. width:100%;
  2028. }
  2029. #u20842_text {
  2030. border-width:0px;
  2031. word-wrap:break-word;
  2032. text-transform:none;
  2033. visibility:hidden;
  2034. }
  2035. #u20843_img {
  2036. border-width:0px;
  2037. position:absolute;
  2038. left:0px;
  2039. top:0px;
  2040. width:73px;
  2041. height:40px;
  2042. }
  2043. #u20843 {
  2044. border-width:0px;
  2045. position:absolute;
  2046. left:112px;
  2047. top:158px;
  2048. width:73px;
  2049. height:40px;
  2050. display:flex;
  2051. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2052. font-weight:400;
  2053. font-style:normal;
  2054. font-size:12px;
  2055. color:#333333;
  2056. }
  2057. #u20843 .text {
  2058. position:absolute;
  2059. align-self:center;
  2060. padding:2px 2px 2px 0px;
  2061. box-sizing:border-box;
  2062. width:100%;
  2063. }
  2064. #u20843_text {
  2065. border-width:0px;
  2066. word-wrap:break-word;
  2067. text-transform:none;
  2068. visibility:hidden;
  2069. }
  2070. #u20844_img {
  2071. border-width:0px;
  2072. position:absolute;
  2073. left:0px;
  2074. top:0px;
  2075. width:76px;
  2076. height:40px;
  2077. }
  2078. #u20844 {
  2079. border-width:0px;
  2080. position:absolute;
  2081. left:185px;
  2082. top:158px;
  2083. width:76px;
  2084. height:40px;
  2085. display:flex;
  2086. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2087. font-weight:400;
  2088. font-style:normal;
  2089. font-size:12px;
  2090. color:#333333;
  2091. }
  2092. #u20844 .text {
  2093. position:absolute;
  2094. align-self:center;
  2095. padding:2px 2px 2px 0px;
  2096. box-sizing:border-box;
  2097. width:100%;
  2098. }
  2099. #u20844_text {
  2100. border-width:0px;
  2101. word-wrap:break-word;
  2102. text-transform:none;
  2103. visibility:hidden;
  2104. }
  2105. #u20845_img {
  2106. border-width:0px;
  2107. position:absolute;
  2108. left:0px;
  2109. top:0px;
  2110. width:76px;
  2111. height:40px;
  2112. }
  2113. #u20845 {
  2114. border-width:0px;
  2115. position:absolute;
  2116. left:261px;
  2117. top:158px;
  2118. width:76px;
  2119. height:40px;
  2120. display:flex;
  2121. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2122. font-weight:400;
  2123. font-style:normal;
  2124. font-size:12px;
  2125. color:#333333;
  2126. }
  2127. #u20845 .text {
  2128. position:absolute;
  2129. align-self:center;
  2130. padding:2px 2px 2px 0px;
  2131. box-sizing:border-box;
  2132. width:100%;
  2133. }
  2134. #u20845_text {
  2135. border-width:0px;
  2136. word-wrap:break-word;
  2137. text-transform:none;
  2138. visibility:hidden;
  2139. }
  2140. #u20846_img {
  2141. border-width:0px;
  2142. position:absolute;
  2143. left:0px;
  2144. top:0px;
  2145. width:76px;
  2146. height:40px;
  2147. }
  2148. #u20846 {
  2149. border-width:0px;
  2150. position:absolute;
  2151. left:337px;
  2152. top:158px;
  2153. width:76px;
  2154. height:40px;
  2155. display:flex;
  2156. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2157. font-weight:400;
  2158. font-style:normal;
  2159. font-size:12px;
  2160. color:#333333;
  2161. }
  2162. #u20846 .text {
  2163. position:absolute;
  2164. align-self:center;
  2165. padding:2px 2px 2px 0px;
  2166. box-sizing:border-box;
  2167. width:100%;
  2168. }
  2169. #u20846_text {
  2170. border-width:0px;
  2171. word-wrap:break-word;
  2172. text-transform:none;
  2173. visibility:hidden;
  2174. }
  2175. #u20847_img {
  2176. border-width:0px;
  2177. position:absolute;
  2178. left:0px;
  2179. top:0px;
  2180. width:76px;
  2181. height:40px;
  2182. }
  2183. #u20847 {
  2184. border-width:0px;
  2185. position:absolute;
  2186. left:413px;
  2187. top:158px;
  2188. width:76px;
  2189. height:40px;
  2190. display:flex;
  2191. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2192. font-weight:400;
  2193. font-style:normal;
  2194. font-size:12px;
  2195. color:#333333;
  2196. }
  2197. #u20847 .text {
  2198. position:absolute;
  2199. align-self:center;
  2200. padding:2px 2px 2px 0px;
  2201. box-sizing:border-box;
  2202. width:100%;
  2203. }
  2204. #u20847_text {
  2205. border-width:0px;
  2206. word-wrap:break-word;
  2207. text-transform:none;
  2208. visibility:hidden;
  2209. }
  2210. #u20848_img {
  2211. border-width:0px;
  2212. position:absolute;
  2213. left:0px;
  2214. top:0px;
  2215. width:80px;
  2216. height:40px;
  2217. }
  2218. #u20848 {
  2219. border-width:0px;
  2220. position:absolute;
  2221. left:489px;
  2222. top:158px;
  2223. width:80px;
  2224. height:40px;
  2225. display:flex;
  2226. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2227. font-weight:400;
  2228. font-style:normal;
  2229. font-size:12px;
  2230. color:#333333;
  2231. }
  2232. #u20848 .text {
  2233. position:absolute;
  2234. align-self:center;
  2235. padding:2px 2px 2px 0px;
  2236. box-sizing:border-box;
  2237. width:100%;
  2238. }
  2239. #u20848_text {
  2240. border-width:0px;
  2241. word-wrap:break-word;
  2242. text-transform:none;
  2243. visibility:hidden;
  2244. }
  2245. #u20849_img {
  2246. border-width:0px;
  2247. position:absolute;
  2248. left:0px;
  2249. top:0px;
  2250. width:98px;
  2251. height:40px;
  2252. }
  2253. #u20849 {
  2254. border-width:0px;
  2255. position:absolute;
  2256. left:569px;
  2257. top:158px;
  2258. width:98px;
  2259. height:40px;
  2260. display:flex;
  2261. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2262. font-weight:400;
  2263. font-style:normal;
  2264. font-size:12px;
  2265. color:#AAAAAA;
  2266. }
  2267. #u20849 .text {
  2268. position:absolute;
  2269. align-self:center;
  2270. padding:2px 2px 2px 0px;
  2271. box-sizing:border-box;
  2272. width:100%;
  2273. }
  2274. #u20849_text {
  2275. border-width:0px;
  2276. word-wrap:break-word;
  2277. text-transform:none;
  2278. visibility:hidden;
  2279. }
  2280. #u20850_img {
  2281. border-width:0px;
  2282. position:absolute;
  2283. left:0px;
  2284. top:0px;
  2285. width:98px;
  2286. height:40px;
  2287. }
  2288. #u20850 {
  2289. border-width:0px;
  2290. position:absolute;
  2291. left:667px;
  2292. top:158px;
  2293. width:98px;
  2294. height:40px;
  2295. display:flex;
  2296. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2297. font-weight:400;
  2298. font-style:normal;
  2299. font-size:12px;
  2300. color:#AAAAAA;
  2301. }
  2302. #u20850 .text {
  2303. position:absolute;
  2304. align-self:center;
  2305. padding:2px 2px 2px 0px;
  2306. box-sizing:border-box;
  2307. width:100%;
  2308. }
  2309. #u20850_text {
  2310. border-width:0px;
  2311. word-wrap:break-word;
  2312. text-transform:none;
  2313. visibility:hidden;
  2314. }
  2315. #u20851_img {
  2316. border-width:0px;
  2317. position:absolute;
  2318. left:0px;
  2319. top:0px;
  2320. width:106px;
  2321. height:40px;
  2322. }
  2323. #u20851 {
  2324. border-width:0px;
  2325. position:absolute;
  2326. left:765px;
  2327. top:158px;
  2328. width:106px;
  2329. height:40px;
  2330. display:flex;
  2331. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2332. font-weight:400;
  2333. font-style:normal;
  2334. font-size:12px;
  2335. color:#AAAAAA;
  2336. }
  2337. #u20851 .text {
  2338. position:absolute;
  2339. align-self:center;
  2340. padding:2px 2px 2px 0px;
  2341. box-sizing:border-box;
  2342. width:100%;
  2343. }
  2344. #u20851_text {
  2345. border-width:0px;
  2346. word-wrap:break-word;
  2347. text-transform:none;
  2348. visibility:hidden;
  2349. }
  2350. #u20852_img {
  2351. border-width:0px;
  2352. position:absolute;
  2353. left:0px;
  2354. top:0px;
  2355. width:89px;
  2356. height:40px;
  2357. }
  2358. #u20852 {
  2359. border-width:0px;
  2360. position:absolute;
  2361. left:871px;
  2362. top:158px;
  2363. width:89px;
  2364. height:40px;
  2365. display:flex;
  2366. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2367. font-weight:400;
  2368. font-style:normal;
  2369. font-size:12px;
  2370. color:#AAAAAA;
  2371. }
  2372. #u20852 .text {
  2373. position:absolute;
  2374. align-self:center;
  2375. padding:2px 2px 2px 0px;
  2376. box-sizing:border-box;
  2377. width:100%;
  2378. }
  2379. #u20852_text {
  2380. border-width:0px;
  2381. word-wrap:break-word;
  2382. text-transform:none;
  2383. visibility:hidden;
  2384. }
  2385. #u20853_img {
  2386. border-width:0px;
  2387. position:absolute;
  2388. left:0px;
  2389. top:0px;
  2390. width:39px;
  2391. height:40px;
  2392. }
  2393. #u20853 {
  2394. border-width:0px;
  2395. position:absolute;
  2396. left:0px;
  2397. top:198px;
  2398. width:39px;
  2399. height:40px;
  2400. display:flex;
  2401. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2402. font-weight:400;
  2403. font-style:normal;
  2404. font-size:12px;
  2405. color:#333333;
  2406. }
  2407. #u20853 .text {
  2408. position:absolute;
  2409. align-self:center;
  2410. padding:2px 2px 2px 0px;
  2411. box-sizing:border-box;
  2412. width:100%;
  2413. }
  2414. #u20853_text {
  2415. border-width:0px;
  2416. word-wrap:break-word;
  2417. text-transform:none;
  2418. visibility:hidden;
  2419. }
  2420. #u20854_img {
  2421. border-width:0px;
  2422. position:absolute;
  2423. left:0px;
  2424. top:0px;
  2425. width:73px;
  2426. height:40px;
  2427. }
  2428. #u20854 {
  2429. border-width:0px;
  2430. position:absolute;
  2431. left:39px;
  2432. top:198px;
  2433. width:73px;
  2434. height:40px;
  2435. display:flex;
  2436. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2437. font-weight:400;
  2438. font-style:normal;
  2439. font-size:12px;
  2440. color:#333333;
  2441. }
  2442. #u20854 .text {
  2443. position:absolute;
  2444. align-self:center;
  2445. padding:2px 2px 2px 0px;
  2446. box-sizing:border-box;
  2447. width:100%;
  2448. }
  2449. #u20854_text {
  2450. border-width:0px;
  2451. word-wrap:break-word;
  2452. text-transform:none;
  2453. visibility:hidden;
  2454. }
  2455. #u20855_img {
  2456. border-width:0px;
  2457. position:absolute;
  2458. left:0px;
  2459. top:0px;
  2460. width:73px;
  2461. height:40px;
  2462. }
  2463. #u20855 {
  2464. border-width:0px;
  2465. position:absolute;
  2466. left:112px;
  2467. top:198px;
  2468. width:73px;
  2469. height:40px;
  2470. display:flex;
  2471. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2472. font-weight:400;
  2473. font-style:normal;
  2474. font-size:12px;
  2475. color:#333333;
  2476. }
  2477. #u20855 .text {
  2478. position:absolute;
  2479. align-self:center;
  2480. padding:2px 2px 2px 0px;
  2481. box-sizing:border-box;
  2482. width:100%;
  2483. }
  2484. #u20855_text {
  2485. border-width:0px;
  2486. word-wrap:break-word;
  2487. text-transform:none;
  2488. visibility:hidden;
  2489. }
  2490. #u20856_img {
  2491. border-width:0px;
  2492. position:absolute;
  2493. left:0px;
  2494. top:0px;
  2495. width:76px;
  2496. height:40px;
  2497. }
  2498. #u20856 {
  2499. border-width:0px;
  2500. position:absolute;
  2501. left:185px;
  2502. top:198px;
  2503. width:76px;
  2504. height:40px;
  2505. display:flex;
  2506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2507. font-weight:400;
  2508. font-style:normal;
  2509. font-size:12px;
  2510. color:#333333;
  2511. }
  2512. #u20856 .text {
  2513. position:absolute;
  2514. align-self:center;
  2515. padding:2px 2px 2px 0px;
  2516. box-sizing:border-box;
  2517. width:100%;
  2518. }
  2519. #u20856_text {
  2520. border-width:0px;
  2521. word-wrap:break-word;
  2522. text-transform:none;
  2523. visibility:hidden;
  2524. }
  2525. #u20857_img {
  2526. border-width:0px;
  2527. position:absolute;
  2528. left:0px;
  2529. top:0px;
  2530. width:76px;
  2531. height:40px;
  2532. }
  2533. #u20857 {
  2534. border-width:0px;
  2535. position:absolute;
  2536. left:261px;
  2537. top:198px;
  2538. width:76px;
  2539. height:40px;
  2540. display:flex;
  2541. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2542. font-weight:400;
  2543. font-style:normal;
  2544. font-size:12px;
  2545. color:#333333;
  2546. }
  2547. #u20857 .text {
  2548. position:absolute;
  2549. align-self:center;
  2550. padding:2px 2px 2px 0px;
  2551. box-sizing:border-box;
  2552. width:100%;
  2553. }
  2554. #u20857_text {
  2555. border-width:0px;
  2556. word-wrap:break-word;
  2557. text-transform:none;
  2558. visibility:hidden;
  2559. }
  2560. #u20858_img {
  2561. border-width:0px;
  2562. position:absolute;
  2563. left:0px;
  2564. top:0px;
  2565. width:76px;
  2566. height:40px;
  2567. }
  2568. #u20858 {
  2569. border-width:0px;
  2570. position:absolute;
  2571. left:337px;
  2572. top:198px;
  2573. width:76px;
  2574. height:40px;
  2575. display:flex;
  2576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2577. font-weight:400;
  2578. font-style:normal;
  2579. font-size:12px;
  2580. color:#333333;
  2581. }
  2582. #u20858 .text {
  2583. position:absolute;
  2584. align-self:center;
  2585. padding:2px 2px 2px 0px;
  2586. box-sizing:border-box;
  2587. width:100%;
  2588. }
  2589. #u20858_text {
  2590. border-width:0px;
  2591. word-wrap:break-word;
  2592. text-transform:none;
  2593. visibility:hidden;
  2594. }
  2595. #u20859_img {
  2596. border-width:0px;
  2597. position:absolute;
  2598. left:0px;
  2599. top:0px;
  2600. width:76px;
  2601. height:40px;
  2602. }
  2603. #u20859 {
  2604. border-width:0px;
  2605. position:absolute;
  2606. left:413px;
  2607. top:198px;
  2608. width:76px;
  2609. height:40px;
  2610. display:flex;
  2611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2612. font-weight:400;
  2613. font-style:normal;
  2614. font-size:12px;
  2615. color:#333333;
  2616. }
  2617. #u20859 .text {
  2618. position:absolute;
  2619. align-self:center;
  2620. padding:2px 2px 2px 0px;
  2621. box-sizing:border-box;
  2622. width:100%;
  2623. }
  2624. #u20859_text {
  2625. border-width:0px;
  2626. word-wrap:break-word;
  2627. text-transform:none;
  2628. visibility:hidden;
  2629. }
  2630. #u20860_img {
  2631. border-width:0px;
  2632. position:absolute;
  2633. left:0px;
  2634. top:0px;
  2635. width:80px;
  2636. height:40px;
  2637. }
  2638. #u20860 {
  2639. border-width:0px;
  2640. position:absolute;
  2641. left:489px;
  2642. top:198px;
  2643. width:80px;
  2644. height:40px;
  2645. display:flex;
  2646. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2647. font-weight:400;
  2648. font-style:normal;
  2649. font-size:12px;
  2650. color:#333333;
  2651. }
  2652. #u20860 .text {
  2653. position:absolute;
  2654. align-self:center;
  2655. padding:2px 2px 2px 0px;
  2656. box-sizing:border-box;
  2657. width:100%;
  2658. }
  2659. #u20860_text {
  2660. border-width:0px;
  2661. word-wrap:break-word;
  2662. text-transform:none;
  2663. visibility:hidden;
  2664. }
  2665. #u20861_img {
  2666. border-width:0px;
  2667. position:absolute;
  2668. left:0px;
  2669. top:0px;
  2670. width:98px;
  2671. height:40px;
  2672. }
  2673. #u20861 {
  2674. border-width:0px;
  2675. position:absolute;
  2676. left:569px;
  2677. top:198px;
  2678. width:98px;
  2679. height:40px;
  2680. display:flex;
  2681. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2682. font-weight:400;
  2683. font-style:normal;
  2684. font-size:12px;
  2685. color:#AAAAAA;
  2686. }
  2687. #u20861 .text {
  2688. position:absolute;
  2689. align-self:center;
  2690. padding:2px 2px 2px 0px;
  2691. box-sizing:border-box;
  2692. width:100%;
  2693. }
  2694. #u20861_text {
  2695. border-width:0px;
  2696. word-wrap:break-word;
  2697. text-transform:none;
  2698. visibility:hidden;
  2699. }
  2700. #u20862_img {
  2701. border-width:0px;
  2702. position:absolute;
  2703. left:0px;
  2704. top:0px;
  2705. width:98px;
  2706. height:40px;
  2707. }
  2708. #u20862 {
  2709. border-width:0px;
  2710. position:absolute;
  2711. left:667px;
  2712. top:198px;
  2713. width:98px;
  2714. height:40px;
  2715. display:flex;
  2716. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2717. font-weight:400;
  2718. font-style:normal;
  2719. font-size:12px;
  2720. color:#AAAAAA;
  2721. }
  2722. #u20862 .text {
  2723. position:absolute;
  2724. align-self:center;
  2725. padding:2px 2px 2px 0px;
  2726. box-sizing:border-box;
  2727. width:100%;
  2728. }
  2729. #u20862_text {
  2730. border-width:0px;
  2731. word-wrap:break-word;
  2732. text-transform:none;
  2733. visibility:hidden;
  2734. }
  2735. #u20863_img {
  2736. border-width:0px;
  2737. position:absolute;
  2738. left:0px;
  2739. top:0px;
  2740. width:106px;
  2741. height:40px;
  2742. }
  2743. #u20863 {
  2744. border-width:0px;
  2745. position:absolute;
  2746. left:765px;
  2747. top:198px;
  2748. width:106px;
  2749. height:40px;
  2750. display:flex;
  2751. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2752. font-weight:400;
  2753. font-style:normal;
  2754. font-size:12px;
  2755. color:#AAAAAA;
  2756. }
  2757. #u20863 .text {
  2758. position:absolute;
  2759. align-self:center;
  2760. padding:2px 2px 2px 0px;
  2761. box-sizing:border-box;
  2762. width:100%;
  2763. }
  2764. #u20863_text {
  2765. border-width:0px;
  2766. word-wrap:break-word;
  2767. text-transform:none;
  2768. visibility:hidden;
  2769. }
  2770. #u20864_img {
  2771. border-width:0px;
  2772. position:absolute;
  2773. left:0px;
  2774. top:0px;
  2775. width:89px;
  2776. height:40px;
  2777. }
  2778. #u20864 {
  2779. border-width:0px;
  2780. position:absolute;
  2781. left:871px;
  2782. top:198px;
  2783. width:89px;
  2784. height:40px;
  2785. display:flex;
  2786. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2787. font-weight:400;
  2788. font-style:normal;
  2789. font-size:12px;
  2790. color:#AAAAAA;
  2791. }
  2792. #u20864 .text {
  2793. position:absolute;
  2794. align-self:center;
  2795. padding:2px 2px 2px 0px;
  2796. box-sizing:border-box;
  2797. width:100%;
  2798. }
  2799. #u20864_text {
  2800. border-width:0px;
  2801. word-wrap:break-word;
  2802. text-transform:none;
  2803. visibility:hidden;
  2804. }
  2805. #u20865_img {
  2806. border-width:0px;
  2807. position:absolute;
  2808. left:0px;
  2809. top:0px;
  2810. width:39px;
  2811. height:40px;
  2812. }
  2813. #u20865 {
  2814. border-width:0px;
  2815. position:absolute;
  2816. left:0px;
  2817. top:238px;
  2818. width:39px;
  2819. height:40px;
  2820. display:flex;
  2821. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2822. font-weight:400;
  2823. font-style:normal;
  2824. font-size:12px;
  2825. color:#333333;
  2826. }
  2827. #u20865 .text {
  2828. position:absolute;
  2829. align-self:center;
  2830. padding:2px 2px 2px 0px;
  2831. box-sizing:border-box;
  2832. width:100%;
  2833. }
  2834. #u20865_text {
  2835. border-width:0px;
  2836. word-wrap:break-word;
  2837. text-transform:none;
  2838. visibility:hidden;
  2839. }
  2840. #u20866_img {
  2841. border-width:0px;
  2842. position:absolute;
  2843. left:0px;
  2844. top:0px;
  2845. width:73px;
  2846. height:40px;
  2847. }
  2848. #u20866 {
  2849. border-width:0px;
  2850. position:absolute;
  2851. left:39px;
  2852. top:238px;
  2853. width:73px;
  2854. height:40px;
  2855. display:flex;
  2856. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2857. font-weight:400;
  2858. font-style:normal;
  2859. font-size:12px;
  2860. color:#333333;
  2861. }
  2862. #u20866 .text {
  2863. position:absolute;
  2864. align-self:center;
  2865. padding:2px 2px 2px 0px;
  2866. box-sizing:border-box;
  2867. width:100%;
  2868. }
  2869. #u20866_text {
  2870. border-width:0px;
  2871. word-wrap:break-word;
  2872. text-transform:none;
  2873. visibility:hidden;
  2874. }
  2875. #u20867_img {
  2876. border-width:0px;
  2877. position:absolute;
  2878. left:0px;
  2879. top:0px;
  2880. width:73px;
  2881. height:40px;
  2882. }
  2883. #u20867 {
  2884. border-width:0px;
  2885. position:absolute;
  2886. left:112px;
  2887. top:238px;
  2888. width:73px;
  2889. height:40px;
  2890. display:flex;
  2891. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2892. font-weight:400;
  2893. font-style:normal;
  2894. font-size:12px;
  2895. color:#333333;
  2896. }
  2897. #u20867 .text {
  2898. position:absolute;
  2899. align-self:center;
  2900. padding:2px 2px 2px 0px;
  2901. box-sizing:border-box;
  2902. width:100%;
  2903. }
  2904. #u20867_text {
  2905. border-width:0px;
  2906. word-wrap:break-word;
  2907. text-transform:none;
  2908. visibility:hidden;
  2909. }
  2910. #u20868_img {
  2911. border-width:0px;
  2912. position:absolute;
  2913. left:0px;
  2914. top:0px;
  2915. width:76px;
  2916. height:40px;
  2917. }
  2918. #u20868 {
  2919. border-width:0px;
  2920. position:absolute;
  2921. left:185px;
  2922. top:238px;
  2923. width:76px;
  2924. height:40px;
  2925. display:flex;
  2926. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2927. font-weight:400;
  2928. font-style:normal;
  2929. font-size:12px;
  2930. color:#333333;
  2931. }
  2932. #u20868 .text {
  2933. position:absolute;
  2934. align-self:center;
  2935. padding:2px 2px 2px 0px;
  2936. box-sizing:border-box;
  2937. width:100%;
  2938. }
  2939. #u20868_text {
  2940. border-width:0px;
  2941. word-wrap:break-word;
  2942. text-transform:none;
  2943. visibility:hidden;
  2944. }
  2945. #u20869_img {
  2946. border-width:0px;
  2947. position:absolute;
  2948. left:0px;
  2949. top:0px;
  2950. width:76px;
  2951. height:40px;
  2952. }
  2953. #u20869 {
  2954. border-width:0px;
  2955. position:absolute;
  2956. left:261px;
  2957. top:238px;
  2958. width:76px;
  2959. height:40px;
  2960. display:flex;
  2961. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2962. font-weight:400;
  2963. font-style:normal;
  2964. font-size:12px;
  2965. color:#333333;
  2966. }
  2967. #u20869 .text {
  2968. position:absolute;
  2969. align-self:center;
  2970. padding:2px 2px 2px 0px;
  2971. box-sizing:border-box;
  2972. width:100%;
  2973. }
  2974. #u20869_text {
  2975. border-width:0px;
  2976. word-wrap:break-word;
  2977. text-transform:none;
  2978. visibility:hidden;
  2979. }
  2980. #u20870_img {
  2981. border-width:0px;
  2982. position:absolute;
  2983. left:0px;
  2984. top:0px;
  2985. width:76px;
  2986. height:40px;
  2987. }
  2988. #u20870 {
  2989. border-width:0px;
  2990. position:absolute;
  2991. left:337px;
  2992. top:238px;
  2993. width:76px;
  2994. height:40px;
  2995. display:flex;
  2996. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2997. font-weight:400;
  2998. font-style:normal;
  2999. font-size:12px;
  3000. color:#333333;
  3001. }
  3002. #u20870 .text {
  3003. position:absolute;
  3004. align-self:center;
  3005. padding:2px 2px 2px 0px;
  3006. box-sizing:border-box;
  3007. width:100%;
  3008. }
  3009. #u20870_text {
  3010. border-width:0px;
  3011. word-wrap:break-word;
  3012. text-transform:none;
  3013. visibility:hidden;
  3014. }
  3015. #u20871_img {
  3016. border-width:0px;
  3017. position:absolute;
  3018. left:0px;
  3019. top:0px;
  3020. width:76px;
  3021. height:40px;
  3022. }
  3023. #u20871 {
  3024. border-width:0px;
  3025. position:absolute;
  3026. left:413px;
  3027. top:238px;
  3028. width:76px;
  3029. height:40px;
  3030. display:flex;
  3031. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3032. font-weight:400;
  3033. font-style:normal;
  3034. font-size:12px;
  3035. color:#333333;
  3036. }
  3037. #u20871 .text {
  3038. position:absolute;
  3039. align-self:center;
  3040. padding:2px 2px 2px 0px;
  3041. box-sizing:border-box;
  3042. width:100%;
  3043. }
  3044. #u20871_text {
  3045. border-width:0px;
  3046. word-wrap:break-word;
  3047. text-transform:none;
  3048. visibility:hidden;
  3049. }
  3050. #u20872_img {
  3051. border-width:0px;
  3052. position:absolute;
  3053. left:0px;
  3054. top:0px;
  3055. width:80px;
  3056. height:40px;
  3057. }
  3058. #u20872 {
  3059. border-width:0px;
  3060. position:absolute;
  3061. left:489px;
  3062. top:238px;
  3063. width:80px;
  3064. height:40px;
  3065. display:flex;
  3066. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3067. font-weight:400;
  3068. font-style:normal;
  3069. font-size:12px;
  3070. color:#333333;
  3071. }
  3072. #u20872 .text {
  3073. position:absolute;
  3074. align-self:center;
  3075. padding:2px 2px 2px 0px;
  3076. box-sizing:border-box;
  3077. width:100%;
  3078. }
  3079. #u20872_text {
  3080. border-width:0px;
  3081. word-wrap:break-word;
  3082. text-transform:none;
  3083. visibility:hidden;
  3084. }
  3085. #u20873_img {
  3086. border-width:0px;
  3087. position:absolute;
  3088. left:0px;
  3089. top:0px;
  3090. width:98px;
  3091. height:40px;
  3092. }
  3093. #u20873 {
  3094. border-width:0px;
  3095. position:absolute;
  3096. left:569px;
  3097. top:238px;
  3098. width:98px;
  3099. height:40px;
  3100. display:flex;
  3101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3102. font-weight:400;
  3103. font-style:normal;
  3104. font-size:12px;
  3105. color:#333333;
  3106. }
  3107. #u20873 .text {
  3108. position:absolute;
  3109. align-self:center;
  3110. padding:2px 2px 2px 0px;
  3111. box-sizing:border-box;
  3112. width:100%;
  3113. }
  3114. #u20873_text {
  3115. border-width:0px;
  3116. word-wrap:break-word;
  3117. text-transform:none;
  3118. visibility:hidden;
  3119. }
  3120. #u20874_img {
  3121. border-width:0px;
  3122. position:absolute;
  3123. left:0px;
  3124. top:0px;
  3125. width:98px;
  3126. height:40px;
  3127. }
  3128. #u20874 {
  3129. border-width:0px;
  3130. position:absolute;
  3131. left:667px;
  3132. top:238px;
  3133. width:98px;
  3134. height:40px;
  3135. display:flex;
  3136. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3137. font-weight:400;
  3138. font-style:normal;
  3139. font-size:12px;
  3140. color:#333333;
  3141. }
  3142. #u20874 .text {
  3143. position:absolute;
  3144. align-self:center;
  3145. padding:2px 2px 2px 0px;
  3146. box-sizing:border-box;
  3147. width:100%;
  3148. }
  3149. #u20874_text {
  3150. border-width:0px;
  3151. word-wrap:break-word;
  3152. text-transform:none;
  3153. visibility:hidden;
  3154. }
  3155. #u20875_img {
  3156. border-width:0px;
  3157. position:absolute;
  3158. left:0px;
  3159. top:0px;
  3160. width:106px;
  3161. height:40px;
  3162. }
  3163. #u20875 {
  3164. border-width:0px;
  3165. position:absolute;
  3166. left:765px;
  3167. top:238px;
  3168. width:106px;
  3169. height:40px;
  3170. display:flex;
  3171. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3172. font-weight:400;
  3173. font-style:normal;
  3174. font-size:12px;
  3175. color:#333333;
  3176. }
  3177. #u20875 .text {
  3178. position:absolute;
  3179. align-self:center;
  3180. padding:2px 2px 2px 0px;
  3181. box-sizing:border-box;
  3182. width:100%;
  3183. }
  3184. #u20875_text {
  3185. border-width:0px;
  3186. word-wrap:break-word;
  3187. text-transform:none;
  3188. visibility:hidden;
  3189. }
  3190. #u20876_img {
  3191. border-width:0px;
  3192. position:absolute;
  3193. left:0px;
  3194. top:0px;
  3195. width:89px;
  3196. height:40px;
  3197. }
  3198. #u20876 {
  3199. border-width:0px;
  3200. position:absolute;
  3201. left:871px;
  3202. top:238px;
  3203. width:89px;
  3204. height:40px;
  3205. display:flex;
  3206. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3207. font-weight:400;
  3208. font-style:normal;
  3209. font-size:12px;
  3210. color:#333333;
  3211. }
  3212. #u20876 .text {
  3213. position:absolute;
  3214. align-self:center;
  3215. padding:2px 2px 2px 0px;
  3216. box-sizing:border-box;
  3217. width:100%;
  3218. }
  3219. #u20876_text {
  3220. border-width:0px;
  3221. word-wrap:break-word;
  3222. text-transform:none;
  3223. visibility:hidden;
  3224. }
  3225. #u20877_img {
  3226. border-width:0px;
  3227. position:absolute;
  3228. left:0px;
  3229. top:0px;
  3230. width:39px;
  3231. height:40px;
  3232. }
  3233. #u20877 {
  3234. border-width:0px;
  3235. position:absolute;
  3236. left:0px;
  3237. top:278px;
  3238. width:39px;
  3239. height:40px;
  3240. display:flex;
  3241. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3242. font-weight:400;
  3243. font-style:normal;
  3244. font-size:12px;
  3245. color:#333333;
  3246. }
  3247. #u20877 .text {
  3248. position:absolute;
  3249. align-self:center;
  3250. padding:2px 2px 2px 0px;
  3251. box-sizing:border-box;
  3252. width:100%;
  3253. }
  3254. #u20877_text {
  3255. border-width:0px;
  3256. word-wrap:break-word;
  3257. text-transform:none;
  3258. visibility:hidden;
  3259. }
  3260. #u20878_img {
  3261. border-width:0px;
  3262. position:absolute;
  3263. left:0px;
  3264. top:0px;
  3265. width:73px;
  3266. height:40px;
  3267. }
  3268. #u20878 {
  3269. border-width:0px;
  3270. position:absolute;
  3271. left:39px;
  3272. top:278px;
  3273. width:73px;
  3274. height:40px;
  3275. display:flex;
  3276. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3277. font-weight:400;
  3278. font-style:normal;
  3279. font-size:12px;
  3280. color:#333333;
  3281. }
  3282. #u20878 .text {
  3283. position:absolute;
  3284. align-self:center;
  3285. padding:2px 2px 2px 0px;
  3286. box-sizing:border-box;
  3287. width:100%;
  3288. }
  3289. #u20878_text {
  3290. border-width:0px;
  3291. word-wrap:break-word;
  3292. text-transform:none;
  3293. visibility:hidden;
  3294. }
  3295. #u20879_img {
  3296. border-width:0px;
  3297. position:absolute;
  3298. left:0px;
  3299. top:0px;
  3300. width:73px;
  3301. height:40px;
  3302. }
  3303. #u20879 {
  3304. border-width:0px;
  3305. position:absolute;
  3306. left:112px;
  3307. top:278px;
  3308. width:73px;
  3309. height:40px;
  3310. display:flex;
  3311. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3312. font-weight:400;
  3313. font-style:normal;
  3314. font-size:12px;
  3315. color:#333333;
  3316. }
  3317. #u20879 .text {
  3318. position:absolute;
  3319. align-self:center;
  3320. padding:2px 2px 2px 0px;
  3321. box-sizing:border-box;
  3322. width:100%;
  3323. }
  3324. #u20879_text {
  3325. border-width:0px;
  3326. word-wrap:break-word;
  3327. text-transform:none;
  3328. visibility:hidden;
  3329. }
  3330. #u20880_img {
  3331. border-width:0px;
  3332. position:absolute;
  3333. left:0px;
  3334. top:0px;
  3335. width:76px;
  3336. height:40px;
  3337. }
  3338. #u20880 {
  3339. border-width:0px;
  3340. position:absolute;
  3341. left:185px;
  3342. top:278px;
  3343. width:76px;
  3344. height:40px;
  3345. display:flex;
  3346. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3347. font-weight:400;
  3348. font-style:normal;
  3349. font-size:12px;
  3350. color:#333333;
  3351. }
  3352. #u20880 .text {
  3353. position:absolute;
  3354. align-self:center;
  3355. padding:2px 2px 2px 0px;
  3356. box-sizing:border-box;
  3357. width:100%;
  3358. }
  3359. #u20880_text {
  3360. border-width:0px;
  3361. word-wrap:break-word;
  3362. text-transform:none;
  3363. visibility:hidden;
  3364. }
  3365. #u20881_img {
  3366. border-width:0px;
  3367. position:absolute;
  3368. left:0px;
  3369. top:0px;
  3370. width:76px;
  3371. height:40px;
  3372. }
  3373. #u20881 {
  3374. border-width:0px;
  3375. position:absolute;
  3376. left:261px;
  3377. top:278px;
  3378. width:76px;
  3379. height:40px;
  3380. display:flex;
  3381. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3382. font-weight:400;
  3383. font-style:normal;
  3384. font-size:12px;
  3385. color:#333333;
  3386. }
  3387. #u20881 .text {
  3388. position:absolute;
  3389. align-self:center;
  3390. padding:2px 2px 2px 0px;
  3391. box-sizing:border-box;
  3392. width:100%;
  3393. }
  3394. #u20881_text {
  3395. border-width:0px;
  3396. word-wrap:break-word;
  3397. text-transform:none;
  3398. visibility:hidden;
  3399. }
  3400. #u20882_img {
  3401. border-width:0px;
  3402. position:absolute;
  3403. left:0px;
  3404. top:0px;
  3405. width:76px;
  3406. height:40px;
  3407. }
  3408. #u20882 {
  3409. border-width:0px;
  3410. position:absolute;
  3411. left:337px;
  3412. top:278px;
  3413. width:76px;
  3414. height:40px;
  3415. display:flex;
  3416. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3417. font-weight:400;
  3418. font-style:normal;
  3419. font-size:12px;
  3420. color:#333333;
  3421. }
  3422. #u20882 .text {
  3423. position:absolute;
  3424. align-self:center;
  3425. padding:2px 2px 2px 0px;
  3426. box-sizing:border-box;
  3427. width:100%;
  3428. }
  3429. #u20882_text {
  3430. border-width:0px;
  3431. word-wrap:break-word;
  3432. text-transform:none;
  3433. visibility:hidden;
  3434. }
  3435. #u20883_img {
  3436. border-width:0px;
  3437. position:absolute;
  3438. left:0px;
  3439. top:0px;
  3440. width:76px;
  3441. height:40px;
  3442. }
  3443. #u20883 {
  3444. border-width:0px;
  3445. position:absolute;
  3446. left:413px;
  3447. top:278px;
  3448. width:76px;
  3449. height:40px;
  3450. display:flex;
  3451. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3452. font-weight:400;
  3453. font-style:normal;
  3454. font-size:12px;
  3455. color:#333333;
  3456. }
  3457. #u20883 .text {
  3458. position:absolute;
  3459. align-self:center;
  3460. padding:2px 2px 2px 0px;
  3461. box-sizing:border-box;
  3462. width:100%;
  3463. }
  3464. #u20883_text {
  3465. border-width:0px;
  3466. word-wrap:break-word;
  3467. text-transform:none;
  3468. visibility:hidden;
  3469. }
  3470. #u20884_img {
  3471. border-width:0px;
  3472. position:absolute;
  3473. left:0px;
  3474. top:0px;
  3475. width:80px;
  3476. height:40px;
  3477. }
  3478. #u20884 {
  3479. border-width:0px;
  3480. position:absolute;
  3481. left:489px;
  3482. top:278px;
  3483. width:80px;
  3484. height:40px;
  3485. display:flex;
  3486. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3487. font-weight:400;
  3488. font-style:normal;
  3489. font-size:12px;
  3490. color:#333333;
  3491. }
  3492. #u20884 .text {
  3493. position:absolute;
  3494. align-self:center;
  3495. padding:2px 2px 2px 0px;
  3496. box-sizing:border-box;
  3497. width:100%;
  3498. }
  3499. #u20884_text {
  3500. border-width:0px;
  3501. word-wrap:break-word;
  3502. text-transform:none;
  3503. visibility:hidden;
  3504. }
  3505. #u20885_img {
  3506. border-width:0px;
  3507. position:absolute;
  3508. left:0px;
  3509. top:0px;
  3510. width:98px;
  3511. height:40px;
  3512. }
  3513. #u20885 {
  3514. border-width:0px;
  3515. position:absolute;
  3516. left:569px;
  3517. top:278px;
  3518. width:98px;
  3519. height:40px;
  3520. display:flex;
  3521. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3522. font-weight:400;
  3523. font-style:normal;
  3524. font-size:12px;
  3525. color:#333333;
  3526. }
  3527. #u20885 .text {
  3528. position:absolute;
  3529. align-self:center;
  3530. padding:2px 2px 2px 0px;
  3531. box-sizing:border-box;
  3532. width:100%;
  3533. }
  3534. #u20885_text {
  3535. border-width:0px;
  3536. word-wrap:break-word;
  3537. text-transform:none;
  3538. visibility:hidden;
  3539. }
  3540. #u20886_img {
  3541. border-width:0px;
  3542. position:absolute;
  3543. left:0px;
  3544. top:0px;
  3545. width:98px;
  3546. height:40px;
  3547. }
  3548. #u20886 {
  3549. border-width:0px;
  3550. position:absolute;
  3551. left:667px;
  3552. top:278px;
  3553. width:98px;
  3554. height:40px;
  3555. display:flex;
  3556. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3557. font-weight:400;
  3558. font-style:normal;
  3559. font-size:12px;
  3560. color:#333333;
  3561. }
  3562. #u20886 .text {
  3563. position:absolute;
  3564. align-self:center;
  3565. padding:2px 2px 2px 0px;
  3566. box-sizing:border-box;
  3567. width:100%;
  3568. }
  3569. #u20886_text {
  3570. border-width:0px;
  3571. word-wrap:break-word;
  3572. text-transform:none;
  3573. visibility:hidden;
  3574. }
  3575. #u20887_img {
  3576. border-width:0px;
  3577. position:absolute;
  3578. left:0px;
  3579. top:0px;
  3580. width:106px;
  3581. height:40px;
  3582. }
  3583. #u20887 {
  3584. border-width:0px;
  3585. position:absolute;
  3586. left:765px;
  3587. top:278px;
  3588. width:106px;
  3589. height:40px;
  3590. display:flex;
  3591. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3592. font-weight:400;
  3593. font-style:normal;
  3594. font-size:12px;
  3595. color:#333333;
  3596. }
  3597. #u20887 .text {
  3598. position:absolute;
  3599. align-self:center;
  3600. padding:2px 2px 2px 0px;
  3601. box-sizing:border-box;
  3602. width:100%;
  3603. }
  3604. #u20887_text {
  3605. border-width:0px;
  3606. word-wrap:break-word;
  3607. text-transform:none;
  3608. visibility:hidden;
  3609. }
  3610. #u20888_img {
  3611. border-width:0px;
  3612. position:absolute;
  3613. left:0px;
  3614. top:0px;
  3615. width:89px;
  3616. height:40px;
  3617. }
  3618. #u20888 {
  3619. border-width:0px;
  3620. position:absolute;
  3621. left:871px;
  3622. top:278px;
  3623. width:89px;
  3624. height:40px;
  3625. display:flex;
  3626. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3627. font-weight:400;
  3628. font-style:normal;
  3629. font-size:12px;
  3630. color:#333333;
  3631. }
  3632. #u20888 .text {
  3633. position:absolute;
  3634. align-self:center;
  3635. padding:2px 2px 2px 0px;
  3636. box-sizing:border-box;
  3637. width:100%;
  3638. }
  3639. #u20888_text {
  3640. border-width:0px;
  3641. word-wrap:break-word;
  3642. text-transform:none;
  3643. visibility:hidden;
  3644. }
  3645. #u20889_img {
  3646. border-width:0px;
  3647. position:absolute;
  3648. left:0px;
  3649. top:0px;
  3650. width:39px;
  3651. height:40px;
  3652. }
  3653. #u20889 {
  3654. border-width:0px;
  3655. position:absolute;
  3656. left:0px;
  3657. top:318px;
  3658. width:39px;
  3659. height:40px;
  3660. display:flex;
  3661. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3662. font-weight:400;
  3663. font-style:normal;
  3664. font-size:12px;
  3665. color:#333333;
  3666. }
  3667. #u20889 .text {
  3668. position:absolute;
  3669. align-self:center;
  3670. padding:2px 2px 2px 0px;
  3671. box-sizing:border-box;
  3672. width:100%;
  3673. }
  3674. #u20889_text {
  3675. border-width:0px;
  3676. word-wrap:break-word;
  3677. text-transform:none;
  3678. visibility:hidden;
  3679. }
  3680. #u20890_img {
  3681. border-width:0px;
  3682. position:absolute;
  3683. left:0px;
  3684. top:0px;
  3685. width:73px;
  3686. height:40px;
  3687. }
  3688. #u20890 {
  3689. border-width:0px;
  3690. position:absolute;
  3691. left:39px;
  3692. top:318px;
  3693. width:73px;
  3694. height:40px;
  3695. display:flex;
  3696. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3697. font-weight:400;
  3698. font-style:normal;
  3699. font-size:12px;
  3700. color:#333333;
  3701. }
  3702. #u20890 .text {
  3703. position:absolute;
  3704. align-self:center;
  3705. padding:2px 2px 2px 0px;
  3706. box-sizing:border-box;
  3707. width:100%;
  3708. }
  3709. #u20890_text {
  3710. border-width:0px;
  3711. word-wrap:break-word;
  3712. text-transform:none;
  3713. visibility:hidden;
  3714. }
  3715. #u20891_img {
  3716. border-width:0px;
  3717. position:absolute;
  3718. left:0px;
  3719. top:0px;
  3720. width:73px;
  3721. height:40px;
  3722. }
  3723. #u20891 {
  3724. border-width:0px;
  3725. position:absolute;
  3726. left:112px;
  3727. top:318px;
  3728. width:73px;
  3729. height:40px;
  3730. display:flex;
  3731. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3732. font-weight:400;
  3733. font-style:normal;
  3734. font-size:12px;
  3735. color:#333333;
  3736. }
  3737. #u20891 .text {
  3738. position:absolute;
  3739. align-self:center;
  3740. padding:2px 2px 2px 0px;
  3741. box-sizing:border-box;
  3742. width:100%;
  3743. }
  3744. #u20891_text {
  3745. border-width:0px;
  3746. word-wrap:break-word;
  3747. text-transform:none;
  3748. visibility:hidden;
  3749. }
  3750. #u20892_img {
  3751. border-width:0px;
  3752. position:absolute;
  3753. left:0px;
  3754. top:0px;
  3755. width:76px;
  3756. height:40px;
  3757. }
  3758. #u20892 {
  3759. border-width:0px;
  3760. position:absolute;
  3761. left:185px;
  3762. top:318px;
  3763. width:76px;
  3764. height:40px;
  3765. display:flex;
  3766. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3767. font-weight:400;
  3768. font-style:normal;
  3769. font-size:12px;
  3770. color:#333333;
  3771. }
  3772. #u20892 .text {
  3773. position:absolute;
  3774. align-self:center;
  3775. padding:2px 2px 2px 0px;
  3776. box-sizing:border-box;
  3777. width:100%;
  3778. }
  3779. #u20892_text {
  3780. border-width:0px;
  3781. word-wrap:break-word;
  3782. text-transform:none;
  3783. visibility:hidden;
  3784. }
  3785. #u20893_img {
  3786. border-width:0px;
  3787. position:absolute;
  3788. left:0px;
  3789. top:0px;
  3790. width:76px;
  3791. height:40px;
  3792. }
  3793. #u20893 {
  3794. border-width:0px;
  3795. position:absolute;
  3796. left:261px;
  3797. top:318px;
  3798. width:76px;
  3799. height:40px;
  3800. display:flex;
  3801. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3802. font-weight:400;
  3803. font-style:normal;
  3804. font-size:12px;
  3805. color:#333333;
  3806. }
  3807. #u20893 .text {
  3808. position:absolute;
  3809. align-self:center;
  3810. padding:2px 2px 2px 0px;
  3811. box-sizing:border-box;
  3812. width:100%;
  3813. }
  3814. #u20893_text {
  3815. border-width:0px;
  3816. word-wrap:break-word;
  3817. text-transform:none;
  3818. visibility:hidden;
  3819. }
  3820. #u20894_img {
  3821. border-width:0px;
  3822. position:absolute;
  3823. left:0px;
  3824. top:0px;
  3825. width:76px;
  3826. height:40px;
  3827. }
  3828. #u20894 {
  3829. border-width:0px;
  3830. position:absolute;
  3831. left:337px;
  3832. top:318px;
  3833. width:76px;
  3834. height:40px;
  3835. display:flex;
  3836. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3837. font-weight:400;
  3838. font-style:normal;
  3839. font-size:12px;
  3840. color:#333333;
  3841. }
  3842. #u20894 .text {
  3843. position:absolute;
  3844. align-self:center;
  3845. padding:2px 2px 2px 0px;
  3846. box-sizing:border-box;
  3847. width:100%;
  3848. }
  3849. #u20894_text {
  3850. border-width:0px;
  3851. word-wrap:break-word;
  3852. text-transform:none;
  3853. visibility:hidden;
  3854. }
  3855. #u20895_img {
  3856. border-width:0px;
  3857. position:absolute;
  3858. left:0px;
  3859. top:0px;
  3860. width:76px;
  3861. height:40px;
  3862. }
  3863. #u20895 {
  3864. border-width:0px;
  3865. position:absolute;
  3866. left:413px;
  3867. top:318px;
  3868. width:76px;
  3869. height:40px;
  3870. display:flex;
  3871. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3872. font-weight:400;
  3873. font-style:normal;
  3874. font-size:12px;
  3875. color:#333333;
  3876. }
  3877. #u20895 .text {
  3878. position:absolute;
  3879. align-self:center;
  3880. padding:2px 2px 2px 0px;
  3881. box-sizing:border-box;
  3882. width:100%;
  3883. }
  3884. #u20895_text {
  3885. border-width:0px;
  3886. word-wrap:break-word;
  3887. text-transform:none;
  3888. visibility:hidden;
  3889. }
  3890. #u20896_img {
  3891. border-width:0px;
  3892. position:absolute;
  3893. left:0px;
  3894. top:0px;
  3895. width:80px;
  3896. height:40px;
  3897. }
  3898. #u20896 {
  3899. border-width:0px;
  3900. position:absolute;
  3901. left:489px;
  3902. top:318px;
  3903. width:80px;
  3904. height:40px;
  3905. display:flex;
  3906. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3907. font-weight:400;
  3908. font-style:normal;
  3909. font-size:12px;
  3910. color:#333333;
  3911. }
  3912. #u20896 .text {
  3913. position:absolute;
  3914. align-self:center;
  3915. padding:2px 2px 2px 0px;
  3916. box-sizing:border-box;
  3917. width:100%;
  3918. }
  3919. #u20896_text {
  3920. border-width:0px;
  3921. word-wrap:break-word;
  3922. text-transform:none;
  3923. visibility:hidden;
  3924. }
  3925. #u20897_img {
  3926. border-width:0px;
  3927. position:absolute;
  3928. left:0px;
  3929. top:0px;
  3930. width:98px;
  3931. height:40px;
  3932. }
  3933. #u20897 {
  3934. border-width:0px;
  3935. position:absolute;
  3936. left:569px;
  3937. top:318px;
  3938. width:98px;
  3939. height:40px;
  3940. display:flex;
  3941. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3942. font-weight:400;
  3943. font-style:normal;
  3944. font-size:12px;
  3945. color:#333333;
  3946. }
  3947. #u20897 .text {
  3948. position:absolute;
  3949. align-self:center;
  3950. padding:2px 2px 2px 0px;
  3951. box-sizing:border-box;
  3952. width:100%;
  3953. }
  3954. #u20897_text {
  3955. border-width:0px;
  3956. word-wrap:break-word;
  3957. text-transform:none;
  3958. visibility:hidden;
  3959. }
  3960. #u20898_img {
  3961. border-width:0px;
  3962. position:absolute;
  3963. left:0px;
  3964. top:0px;
  3965. width:98px;
  3966. height:40px;
  3967. }
  3968. #u20898 {
  3969. border-width:0px;
  3970. position:absolute;
  3971. left:667px;
  3972. top:318px;
  3973. width:98px;
  3974. height:40px;
  3975. display:flex;
  3976. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3977. font-weight:400;
  3978. font-style:normal;
  3979. font-size:12px;
  3980. color:#333333;
  3981. }
  3982. #u20898 .text {
  3983. position:absolute;
  3984. align-self:center;
  3985. padding:2px 2px 2px 0px;
  3986. box-sizing:border-box;
  3987. width:100%;
  3988. }
  3989. #u20898_text {
  3990. border-width:0px;
  3991. word-wrap:break-word;
  3992. text-transform:none;
  3993. visibility:hidden;
  3994. }
  3995. #u20899_img {
  3996. border-width:0px;
  3997. position:absolute;
  3998. left:0px;
  3999. top:0px;
  4000. width:106px;
  4001. height:40px;
  4002. }
  4003. #u20899 {
  4004. border-width:0px;
  4005. position:absolute;
  4006. left:765px;
  4007. top:318px;
  4008. width:106px;
  4009. height:40px;
  4010. display:flex;
  4011. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4012. font-weight:400;
  4013. font-style:normal;
  4014. font-size:12px;
  4015. color:#333333;
  4016. }
  4017. #u20899 .text {
  4018. position:absolute;
  4019. align-self:center;
  4020. padding:2px 2px 2px 0px;
  4021. box-sizing:border-box;
  4022. width:100%;
  4023. }
  4024. #u20899_text {
  4025. border-width:0px;
  4026. word-wrap:break-word;
  4027. text-transform:none;
  4028. visibility:hidden;
  4029. }
  4030. #u20900_img {
  4031. border-width:0px;
  4032. position:absolute;
  4033. left:0px;
  4034. top:0px;
  4035. width:89px;
  4036. height:40px;
  4037. }
  4038. #u20900 {
  4039. border-width:0px;
  4040. position:absolute;
  4041. left:871px;
  4042. top:318px;
  4043. width:89px;
  4044. height:40px;
  4045. display:flex;
  4046. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4047. font-weight:400;
  4048. font-style:normal;
  4049. font-size:12px;
  4050. color:#333333;
  4051. }
  4052. #u20900 .text {
  4053. position:absolute;
  4054. align-self:center;
  4055. padding:2px 2px 2px 0px;
  4056. box-sizing:border-box;
  4057. width:100%;
  4058. }
  4059. #u20900_text {
  4060. border-width:0px;
  4061. word-wrap:break-word;
  4062. text-transform:none;
  4063. visibility:hidden;
  4064. }
  4065. #u20901_img {
  4066. border-width:0px;
  4067. position:absolute;
  4068. left:0px;
  4069. top:0px;
  4070. width:39px;
  4071. height:40px;
  4072. }
  4073. #u20901 {
  4074. border-width:0px;
  4075. position:absolute;
  4076. left:0px;
  4077. top:358px;
  4078. width:39px;
  4079. height:40px;
  4080. display:flex;
  4081. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4082. font-weight:400;
  4083. font-style:normal;
  4084. font-size:12px;
  4085. color:#333333;
  4086. }
  4087. #u20901 .text {
  4088. position:absolute;
  4089. align-self:center;
  4090. padding:2px 2px 2px 0px;
  4091. box-sizing:border-box;
  4092. width:100%;
  4093. }
  4094. #u20901_text {
  4095. border-width:0px;
  4096. word-wrap:break-word;
  4097. text-transform:none;
  4098. visibility:hidden;
  4099. }
  4100. #u20902_img {
  4101. border-width:0px;
  4102. position:absolute;
  4103. left:0px;
  4104. top:0px;
  4105. width:73px;
  4106. height:40px;
  4107. }
  4108. #u20902 {
  4109. border-width:0px;
  4110. position:absolute;
  4111. left:39px;
  4112. top:358px;
  4113. width:73px;
  4114. height:40px;
  4115. display:flex;
  4116. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4117. font-weight:400;
  4118. font-style:normal;
  4119. font-size:12px;
  4120. color:#333333;
  4121. }
  4122. #u20902 .text {
  4123. position:absolute;
  4124. align-self:center;
  4125. padding:2px 2px 2px 0px;
  4126. box-sizing:border-box;
  4127. width:100%;
  4128. }
  4129. #u20902_text {
  4130. border-width:0px;
  4131. word-wrap:break-word;
  4132. text-transform:none;
  4133. visibility:hidden;
  4134. }
  4135. #u20903_img {
  4136. border-width:0px;
  4137. position:absolute;
  4138. left:0px;
  4139. top:0px;
  4140. width:73px;
  4141. height:40px;
  4142. }
  4143. #u20903 {
  4144. border-width:0px;
  4145. position:absolute;
  4146. left:112px;
  4147. top:358px;
  4148. width:73px;
  4149. height:40px;
  4150. display:flex;
  4151. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4152. font-weight:400;
  4153. font-style:normal;
  4154. font-size:12px;
  4155. color:#333333;
  4156. }
  4157. #u20903 .text {
  4158. position:absolute;
  4159. align-self:center;
  4160. padding:2px 2px 2px 0px;
  4161. box-sizing:border-box;
  4162. width:100%;
  4163. }
  4164. #u20903_text {
  4165. border-width:0px;
  4166. word-wrap:break-word;
  4167. text-transform:none;
  4168. visibility:hidden;
  4169. }
  4170. #u20904_img {
  4171. border-width:0px;
  4172. position:absolute;
  4173. left:0px;
  4174. top:0px;
  4175. width:76px;
  4176. height:40px;
  4177. }
  4178. #u20904 {
  4179. border-width:0px;
  4180. position:absolute;
  4181. left:185px;
  4182. top:358px;
  4183. width:76px;
  4184. height:40px;
  4185. display:flex;
  4186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4187. font-weight:400;
  4188. font-style:normal;
  4189. font-size:12px;
  4190. color:#333333;
  4191. }
  4192. #u20904 .text {
  4193. position:absolute;
  4194. align-self:center;
  4195. padding:2px 2px 2px 0px;
  4196. box-sizing:border-box;
  4197. width:100%;
  4198. }
  4199. #u20904_text {
  4200. border-width:0px;
  4201. word-wrap:break-word;
  4202. text-transform:none;
  4203. visibility:hidden;
  4204. }
  4205. #u20905_img {
  4206. border-width:0px;
  4207. position:absolute;
  4208. left:0px;
  4209. top:0px;
  4210. width:76px;
  4211. height:40px;
  4212. }
  4213. #u20905 {
  4214. border-width:0px;
  4215. position:absolute;
  4216. left:261px;
  4217. top:358px;
  4218. width:76px;
  4219. height:40px;
  4220. display:flex;
  4221. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4222. font-weight:400;
  4223. font-style:normal;
  4224. font-size:12px;
  4225. color:#333333;
  4226. }
  4227. #u20905 .text {
  4228. position:absolute;
  4229. align-self:center;
  4230. padding:2px 2px 2px 0px;
  4231. box-sizing:border-box;
  4232. width:100%;
  4233. }
  4234. #u20905_text {
  4235. border-width:0px;
  4236. word-wrap:break-word;
  4237. text-transform:none;
  4238. visibility:hidden;
  4239. }
  4240. #u20906_img {
  4241. border-width:0px;
  4242. position:absolute;
  4243. left:0px;
  4244. top:0px;
  4245. width:76px;
  4246. height:40px;
  4247. }
  4248. #u20906 {
  4249. border-width:0px;
  4250. position:absolute;
  4251. left:337px;
  4252. top:358px;
  4253. width:76px;
  4254. height:40px;
  4255. display:flex;
  4256. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4257. font-weight:400;
  4258. font-style:normal;
  4259. font-size:12px;
  4260. color:#333333;
  4261. }
  4262. #u20906 .text {
  4263. position:absolute;
  4264. align-self:center;
  4265. padding:2px 2px 2px 0px;
  4266. box-sizing:border-box;
  4267. width:100%;
  4268. }
  4269. #u20906_text {
  4270. border-width:0px;
  4271. word-wrap:break-word;
  4272. text-transform:none;
  4273. visibility:hidden;
  4274. }
  4275. #u20907_img {
  4276. border-width:0px;
  4277. position:absolute;
  4278. left:0px;
  4279. top:0px;
  4280. width:76px;
  4281. height:40px;
  4282. }
  4283. #u20907 {
  4284. border-width:0px;
  4285. position:absolute;
  4286. left:413px;
  4287. top:358px;
  4288. width:76px;
  4289. height:40px;
  4290. display:flex;
  4291. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4292. font-weight:400;
  4293. font-style:normal;
  4294. font-size:12px;
  4295. color:#333333;
  4296. }
  4297. #u20907 .text {
  4298. position:absolute;
  4299. align-self:center;
  4300. padding:2px 2px 2px 0px;
  4301. box-sizing:border-box;
  4302. width:100%;
  4303. }
  4304. #u20907_text {
  4305. border-width:0px;
  4306. word-wrap:break-word;
  4307. text-transform:none;
  4308. visibility:hidden;
  4309. }
  4310. #u20908_img {
  4311. border-width:0px;
  4312. position:absolute;
  4313. left:0px;
  4314. top:0px;
  4315. width:80px;
  4316. height:40px;
  4317. }
  4318. #u20908 {
  4319. border-width:0px;
  4320. position:absolute;
  4321. left:489px;
  4322. top:358px;
  4323. width:80px;
  4324. height:40px;
  4325. display:flex;
  4326. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4327. font-weight:400;
  4328. font-style:normal;
  4329. font-size:12px;
  4330. color:#333333;
  4331. }
  4332. #u20908 .text {
  4333. position:absolute;
  4334. align-self:center;
  4335. padding:2px 2px 2px 0px;
  4336. box-sizing:border-box;
  4337. width:100%;
  4338. }
  4339. #u20908_text {
  4340. border-width:0px;
  4341. word-wrap:break-word;
  4342. text-transform:none;
  4343. visibility:hidden;
  4344. }
  4345. #u20909_img {
  4346. border-width:0px;
  4347. position:absolute;
  4348. left:0px;
  4349. top:0px;
  4350. width:98px;
  4351. height:40px;
  4352. }
  4353. #u20909 {
  4354. border-width:0px;
  4355. position:absolute;
  4356. left:569px;
  4357. top:358px;
  4358. width:98px;
  4359. height:40px;
  4360. display:flex;
  4361. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4362. font-weight:400;
  4363. font-style:normal;
  4364. font-size:12px;
  4365. color:#333333;
  4366. }
  4367. #u20909 .text {
  4368. position:absolute;
  4369. align-self:center;
  4370. padding:2px 2px 2px 0px;
  4371. box-sizing:border-box;
  4372. width:100%;
  4373. }
  4374. #u20909_text {
  4375. border-width:0px;
  4376. word-wrap:break-word;
  4377. text-transform:none;
  4378. visibility:hidden;
  4379. }
  4380. #u20910_img {
  4381. border-width:0px;
  4382. position:absolute;
  4383. left:0px;
  4384. top:0px;
  4385. width:98px;
  4386. height:40px;
  4387. }
  4388. #u20910 {
  4389. border-width:0px;
  4390. position:absolute;
  4391. left:667px;
  4392. top:358px;
  4393. width:98px;
  4394. height:40px;
  4395. display:flex;
  4396. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4397. font-weight:400;
  4398. font-style:normal;
  4399. font-size:12px;
  4400. color:#333333;
  4401. }
  4402. #u20910 .text {
  4403. position:absolute;
  4404. align-self:center;
  4405. padding:2px 2px 2px 0px;
  4406. box-sizing:border-box;
  4407. width:100%;
  4408. }
  4409. #u20910_text {
  4410. border-width:0px;
  4411. word-wrap:break-word;
  4412. text-transform:none;
  4413. visibility:hidden;
  4414. }
  4415. #u20911_img {
  4416. border-width:0px;
  4417. position:absolute;
  4418. left:0px;
  4419. top:0px;
  4420. width:106px;
  4421. height:40px;
  4422. }
  4423. #u20911 {
  4424. border-width:0px;
  4425. position:absolute;
  4426. left:765px;
  4427. top:358px;
  4428. width:106px;
  4429. height:40px;
  4430. display:flex;
  4431. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4432. font-weight:400;
  4433. font-style:normal;
  4434. font-size:12px;
  4435. color:#333333;
  4436. }
  4437. #u20911 .text {
  4438. position:absolute;
  4439. align-self:center;
  4440. padding:2px 2px 2px 0px;
  4441. box-sizing:border-box;
  4442. width:100%;
  4443. }
  4444. #u20911_text {
  4445. border-width:0px;
  4446. word-wrap:break-word;
  4447. text-transform:none;
  4448. visibility:hidden;
  4449. }
  4450. #u20912_img {
  4451. border-width:0px;
  4452. position:absolute;
  4453. left:0px;
  4454. top:0px;
  4455. width:89px;
  4456. height:40px;
  4457. }
  4458. #u20912 {
  4459. border-width:0px;
  4460. position:absolute;
  4461. left:871px;
  4462. top:358px;
  4463. width:89px;
  4464. height:40px;
  4465. display:flex;
  4466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4467. font-weight:400;
  4468. font-style:normal;
  4469. font-size:12px;
  4470. color:#333333;
  4471. }
  4472. #u20912 .text {
  4473. position:absolute;
  4474. align-self:center;
  4475. padding:2px 2px 2px 0px;
  4476. box-sizing:border-box;
  4477. width:100%;
  4478. }
  4479. #u20912_text {
  4480. border-width:0px;
  4481. word-wrap:break-word;
  4482. text-transform:none;
  4483. visibility:hidden;
  4484. }
  4485. #u20913_img {
  4486. border-width:0px;
  4487. position:absolute;
  4488. left:0px;
  4489. top:0px;
  4490. width:39px;
  4491. height:40px;
  4492. }
  4493. #u20913 {
  4494. border-width:0px;
  4495. position:absolute;
  4496. left:0px;
  4497. top:398px;
  4498. width:39px;
  4499. height:40px;
  4500. display:flex;
  4501. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4502. font-weight:400;
  4503. font-style:normal;
  4504. font-size:12px;
  4505. color:#333333;
  4506. }
  4507. #u20913 .text {
  4508. position:absolute;
  4509. align-self:center;
  4510. padding:2px 2px 2px 0px;
  4511. box-sizing:border-box;
  4512. width:100%;
  4513. }
  4514. #u20913_text {
  4515. border-width:0px;
  4516. word-wrap:break-word;
  4517. text-transform:none;
  4518. visibility:hidden;
  4519. }
  4520. #u20914_img {
  4521. border-width:0px;
  4522. position:absolute;
  4523. left:0px;
  4524. top:0px;
  4525. width:73px;
  4526. height:40px;
  4527. }
  4528. #u20914 {
  4529. border-width:0px;
  4530. position:absolute;
  4531. left:39px;
  4532. top:398px;
  4533. width:73px;
  4534. height:40px;
  4535. display:flex;
  4536. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4537. font-weight:400;
  4538. font-style:normal;
  4539. font-size:12px;
  4540. color:#333333;
  4541. }
  4542. #u20914 .text {
  4543. position:absolute;
  4544. align-self:center;
  4545. padding:2px 2px 2px 0px;
  4546. box-sizing:border-box;
  4547. width:100%;
  4548. }
  4549. #u20914_text {
  4550. border-width:0px;
  4551. word-wrap:break-word;
  4552. text-transform:none;
  4553. visibility:hidden;
  4554. }
  4555. #u20915_img {
  4556. border-width:0px;
  4557. position:absolute;
  4558. left:0px;
  4559. top:0px;
  4560. width:73px;
  4561. height:40px;
  4562. }
  4563. #u20915 {
  4564. border-width:0px;
  4565. position:absolute;
  4566. left:112px;
  4567. top:398px;
  4568. width:73px;
  4569. height:40px;
  4570. display:flex;
  4571. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4572. font-weight:400;
  4573. font-style:normal;
  4574. font-size:12px;
  4575. color:#333333;
  4576. }
  4577. #u20915 .text {
  4578. position:absolute;
  4579. align-self:center;
  4580. padding:2px 2px 2px 0px;
  4581. box-sizing:border-box;
  4582. width:100%;
  4583. }
  4584. #u20915_text {
  4585. border-width:0px;
  4586. word-wrap:break-word;
  4587. text-transform:none;
  4588. visibility:hidden;
  4589. }
  4590. #u20916_img {
  4591. border-width:0px;
  4592. position:absolute;
  4593. left:0px;
  4594. top:0px;
  4595. width:76px;
  4596. height:40px;
  4597. }
  4598. #u20916 {
  4599. border-width:0px;
  4600. position:absolute;
  4601. left:185px;
  4602. top:398px;
  4603. width:76px;
  4604. height:40px;
  4605. display:flex;
  4606. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4607. font-weight:400;
  4608. font-style:normal;
  4609. font-size:12px;
  4610. color:#333333;
  4611. }
  4612. #u20916 .text {
  4613. position:absolute;
  4614. align-self:center;
  4615. padding:2px 2px 2px 0px;
  4616. box-sizing:border-box;
  4617. width:100%;
  4618. }
  4619. #u20916_text {
  4620. border-width:0px;
  4621. word-wrap:break-word;
  4622. text-transform:none;
  4623. visibility:hidden;
  4624. }
  4625. #u20917_img {
  4626. border-width:0px;
  4627. position:absolute;
  4628. left:0px;
  4629. top:0px;
  4630. width:76px;
  4631. height:40px;
  4632. }
  4633. #u20917 {
  4634. border-width:0px;
  4635. position:absolute;
  4636. left:261px;
  4637. top:398px;
  4638. width:76px;
  4639. height:40px;
  4640. display:flex;
  4641. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4642. font-weight:400;
  4643. font-style:normal;
  4644. font-size:12px;
  4645. color:#333333;
  4646. }
  4647. #u20917 .text {
  4648. position:absolute;
  4649. align-self:center;
  4650. padding:2px 2px 2px 0px;
  4651. box-sizing:border-box;
  4652. width:100%;
  4653. }
  4654. #u20917_text {
  4655. border-width:0px;
  4656. word-wrap:break-word;
  4657. text-transform:none;
  4658. visibility:hidden;
  4659. }
  4660. #u20918_img {
  4661. border-width:0px;
  4662. position:absolute;
  4663. left:0px;
  4664. top:0px;
  4665. width:76px;
  4666. height:40px;
  4667. }
  4668. #u20918 {
  4669. border-width:0px;
  4670. position:absolute;
  4671. left:337px;
  4672. top:398px;
  4673. width:76px;
  4674. height:40px;
  4675. display:flex;
  4676. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4677. font-weight:400;
  4678. font-style:normal;
  4679. font-size:12px;
  4680. color:#333333;
  4681. }
  4682. #u20918 .text {
  4683. position:absolute;
  4684. align-self:center;
  4685. padding:2px 2px 2px 0px;
  4686. box-sizing:border-box;
  4687. width:100%;
  4688. }
  4689. #u20918_text {
  4690. border-width:0px;
  4691. word-wrap:break-word;
  4692. text-transform:none;
  4693. visibility:hidden;
  4694. }
  4695. #u20919_img {
  4696. border-width:0px;
  4697. position:absolute;
  4698. left:0px;
  4699. top:0px;
  4700. width:76px;
  4701. height:40px;
  4702. }
  4703. #u20919 {
  4704. border-width:0px;
  4705. position:absolute;
  4706. left:413px;
  4707. top:398px;
  4708. width:76px;
  4709. height:40px;
  4710. display:flex;
  4711. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4712. font-weight:400;
  4713. font-style:normal;
  4714. font-size:12px;
  4715. color:#333333;
  4716. }
  4717. #u20919 .text {
  4718. position:absolute;
  4719. align-self:center;
  4720. padding:2px 2px 2px 0px;
  4721. box-sizing:border-box;
  4722. width:100%;
  4723. }
  4724. #u20919_text {
  4725. border-width:0px;
  4726. word-wrap:break-word;
  4727. text-transform:none;
  4728. visibility:hidden;
  4729. }
  4730. #u20920_img {
  4731. border-width:0px;
  4732. position:absolute;
  4733. left:0px;
  4734. top:0px;
  4735. width:80px;
  4736. height:40px;
  4737. }
  4738. #u20920 {
  4739. border-width:0px;
  4740. position:absolute;
  4741. left:489px;
  4742. top:398px;
  4743. width:80px;
  4744. height:40px;
  4745. display:flex;
  4746. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4747. font-weight:400;
  4748. font-style:normal;
  4749. font-size:12px;
  4750. color:#333333;
  4751. }
  4752. #u20920 .text {
  4753. position:absolute;
  4754. align-self:center;
  4755. padding:2px 2px 2px 0px;
  4756. box-sizing:border-box;
  4757. width:100%;
  4758. }
  4759. #u20920_text {
  4760. border-width:0px;
  4761. word-wrap:break-word;
  4762. text-transform:none;
  4763. visibility:hidden;
  4764. }
  4765. #u20921_img {
  4766. border-width:0px;
  4767. position:absolute;
  4768. left:0px;
  4769. top:0px;
  4770. width:98px;
  4771. height:40px;
  4772. }
  4773. #u20921 {
  4774. border-width:0px;
  4775. position:absolute;
  4776. left:569px;
  4777. top:398px;
  4778. width:98px;
  4779. height:40px;
  4780. display:flex;
  4781. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4782. font-weight:400;
  4783. font-style:normal;
  4784. font-size:12px;
  4785. color:#333333;
  4786. }
  4787. #u20921 .text {
  4788. position:absolute;
  4789. align-self:center;
  4790. padding:2px 2px 2px 0px;
  4791. box-sizing:border-box;
  4792. width:100%;
  4793. }
  4794. #u20921_text {
  4795. border-width:0px;
  4796. word-wrap:break-word;
  4797. text-transform:none;
  4798. visibility:hidden;
  4799. }
  4800. #u20922_img {
  4801. border-width:0px;
  4802. position:absolute;
  4803. left:0px;
  4804. top:0px;
  4805. width:98px;
  4806. height:40px;
  4807. }
  4808. #u20922 {
  4809. border-width:0px;
  4810. position:absolute;
  4811. left:667px;
  4812. top:398px;
  4813. width:98px;
  4814. height:40px;
  4815. display:flex;
  4816. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4817. font-weight:400;
  4818. font-style:normal;
  4819. font-size:12px;
  4820. color:#333333;
  4821. }
  4822. #u20922 .text {
  4823. position:absolute;
  4824. align-self:center;
  4825. padding:2px 2px 2px 0px;
  4826. box-sizing:border-box;
  4827. width:100%;
  4828. }
  4829. #u20922_text {
  4830. border-width:0px;
  4831. word-wrap:break-word;
  4832. text-transform:none;
  4833. visibility:hidden;
  4834. }
  4835. #u20923_img {
  4836. border-width:0px;
  4837. position:absolute;
  4838. left:0px;
  4839. top:0px;
  4840. width:106px;
  4841. height:40px;
  4842. }
  4843. #u20923 {
  4844. border-width:0px;
  4845. position:absolute;
  4846. left:765px;
  4847. top:398px;
  4848. width:106px;
  4849. height:40px;
  4850. display:flex;
  4851. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4852. font-weight:400;
  4853. font-style:normal;
  4854. font-size:12px;
  4855. color:#333333;
  4856. }
  4857. #u20923 .text {
  4858. position:absolute;
  4859. align-self:center;
  4860. padding:2px 2px 2px 0px;
  4861. box-sizing:border-box;
  4862. width:100%;
  4863. }
  4864. #u20923_text {
  4865. border-width:0px;
  4866. word-wrap:break-word;
  4867. text-transform:none;
  4868. visibility:hidden;
  4869. }
  4870. #u20924_img {
  4871. border-width:0px;
  4872. position:absolute;
  4873. left:0px;
  4874. top:0px;
  4875. width:89px;
  4876. height:40px;
  4877. }
  4878. #u20924 {
  4879. border-width:0px;
  4880. position:absolute;
  4881. left:871px;
  4882. top:398px;
  4883. width:89px;
  4884. height:40px;
  4885. display:flex;
  4886. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4887. font-weight:400;
  4888. font-style:normal;
  4889. font-size:12px;
  4890. color:#333333;
  4891. }
  4892. #u20924 .text {
  4893. position:absolute;
  4894. align-self:center;
  4895. padding:2px 2px 2px 0px;
  4896. box-sizing:border-box;
  4897. width:100%;
  4898. }
  4899. #u20924_text {
  4900. border-width:0px;
  4901. word-wrap:break-word;
  4902. text-transform:none;
  4903. visibility:hidden;
  4904. }
  4905. #u20925 label {
  4906. left:0px;
  4907. width:100%;
  4908. }
  4909. #u20925_img {
  4910. border-width:0px;
  4911. position:absolute;
  4912. left:0px;
  4913. top:0px;
  4914. width:12px;
  4915. height:12px;
  4916. }
  4917. #u20925 {
  4918. border-width:0px;
  4919. position:absolute;
  4920. left:368px;
  4921. top:355px;
  4922. width:30px;
  4923. height:16px;
  4924. display:flex;
  4925. }
  4926. #u20925 .text {
  4927. position:absolute;
  4928. align-self:center;
  4929. padding:0px 2px 0px 2px;
  4930. box-sizing:border-box;
  4931. }
  4932. #u20925_img.selected {
  4933. }
  4934. #u20925.selected {
  4935. }
  4936. #u20925_img.disabled {
  4937. }
  4938. #u20925.disabled {
  4939. }
  4940. #u20925_img.selectedDisabled {
  4941. }
  4942. #u20925.selectedDisabled {
  4943. }
  4944. #u20925_text {
  4945. border-width:0px;
  4946. position:absolute;
  4947. left:14px;
  4948. top:0px;
  4949. width:14px;
  4950. word-wrap:break-word;
  4951. text-transform:none;
  4952. visibility:hidden;
  4953. }
  4954. #u20925_input {
  4955. border-width:0px;
  4956. position:absolute;
  4957. left:0px;
  4958. top:0px;
  4959. width:0px;
  4960. height:0px;
  4961. opacity:0;
  4962. }
  4963. #u20926 {
  4964. border-width:0px;
  4965. position:absolute;
  4966. left:0px;
  4967. top:0px;
  4968. width:0px;
  4969. height:0px;
  4970. }
  4971. #u20927_div {
  4972. border-width:0px;
  4973. position:absolute;
  4974. left:0px;
  4975. top:0px;
  4976. width:140px;
  4977. height:30px;
  4978. background:inherit;
  4979. background-color:rgba(255, 255, 255, 1);
  4980. box-sizing:border-box;
  4981. border-width:1px;
  4982. border-style:solid;
  4983. border-color:rgba(201, 201, 201, 1);
  4984. border-radius:4px;
  4985. -moz-box-shadow:none;
  4986. -webkit-box-shadow:none;
  4987. box-shadow:none;
  4988. font-family:'Microsoft YaHei', sans-serif;
  4989. font-weight:400;
  4990. font-style:normal;
  4991. font-size:14px;
  4992. color:#CCCCCC;
  4993. text-align:left;
  4994. }
  4995. #u20927 {
  4996. border-width:0px;
  4997. position:absolute;
  4998. left:360px;
  4999. top:263px;
  5000. width:140px;
  5001. height:30px;
  5002. display:flex;
  5003. font-family:'Microsoft YaHei', sans-serif;
  5004. font-weight:400;
  5005. font-style:normal;
  5006. font-size:14px;
  5007. color:#CCCCCC;
  5008. text-align:left;
  5009. }
  5010. #u20927 .text {
  5011. position:absolute;
  5012. align-self:center;
  5013. padding:2px 8px 2px 8px;
  5014. box-sizing:border-box;
  5015. width:100%;
  5016. }
  5017. #u20927_text {
  5018. border-width:0px;
  5019. word-wrap:break-word;
  5020. text-transform:none;
  5021. visibility:hidden;
  5022. }
  5023. #u20928_input {
  5024. position:absolute;
  5025. left:0px;
  5026. top:0px;
  5027. width:127px;
  5028. height:25px;
  5029. padding:2px 2px 2px 2px;
  5030. font-family:'Microsoft YaHei', sans-serif;
  5031. font-weight:400;
  5032. font-style:normal;
  5033. font-size:10px;
  5034. letter-spacing:normal;
  5035. color:#000000;
  5036. vertical-align:none;
  5037. text-align:left;
  5038. text-transform:none;
  5039. background-color:transparent;
  5040. border-color:transparent;
  5041. }
  5042. #u20928_input.disabled {
  5043. position:absolute;
  5044. left:0px;
  5045. top:0px;
  5046. width:127px;
  5047. height:25px;
  5048. padding:2px 2px 2px 2px;
  5049. font-family:'Microsoft YaHei', sans-serif;
  5050. font-weight:400;
  5051. font-style:normal;
  5052. font-size:10px;
  5053. letter-spacing:normal;
  5054. color:#000000;
  5055. vertical-align:none;
  5056. text-align:left;
  5057. text-transform:none;
  5058. background-color:transparent;
  5059. border-color:transparent;
  5060. }
  5061. #u20928_div {
  5062. border-width:0px;
  5063. position:absolute;
  5064. left:0px;
  5065. top:0px;
  5066. width:127px;
  5067. height:25px;
  5068. background:inherit;
  5069. background-color:rgba(255, 255, 255, 1);
  5070. border:none;
  5071. border-radius:0px;
  5072. -moz-box-shadow:none;
  5073. -webkit-box-shadow:none;
  5074. box-shadow:none;
  5075. font-family:'Microsoft YaHei', sans-serif;
  5076. font-weight:400;
  5077. font-style:normal;
  5078. font-size:10px;
  5079. }
  5080. #u20928 {
  5081. border-width:0px;
  5082. position:absolute;
  5083. left:368px;
  5084. top:264px;
  5085. width:127px;
  5086. height:25px;
  5087. display:flex;
  5088. font-family:'Microsoft YaHei', sans-serif;
  5089. font-weight:400;
  5090. font-style:normal;
  5091. font-size:10px;
  5092. }
  5093. #u20928 .text {
  5094. position:absolute;
  5095. align-self:center;
  5096. padding:2px 2px 2px 2px;
  5097. box-sizing:border-box;
  5098. width:100%;
  5099. }
  5100. #u20928_div.disabled {
  5101. border-width:0px;
  5102. position:absolute;
  5103. left:0px;
  5104. top:0px;
  5105. width:127px;
  5106. height:25px;
  5107. background:inherit;
  5108. background-color:rgba(240, 240, 240, 1);
  5109. border:none;
  5110. border-radius:0px;
  5111. -moz-box-shadow:none;
  5112. -webkit-box-shadow:none;
  5113. box-shadow:none;
  5114. font-family:'Microsoft YaHei', sans-serif;
  5115. font-weight:400;
  5116. font-style:normal;
  5117. font-size:10px;
  5118. }
  5119. #u20928.disabled {
  5120. }
  5121. #u20929 {
  5122. border-width:0px;
  5123. position:absolute;
  5124. left:0px;
  5125. top:0px;
  5126. width:0px;
  5127. height:0px;
  5128. }
  5129. #u20930_div {
  5130. border-width:0px;
  5131. position:absolute;
  5132. left:0px;
  5133. top:0px;
  5134. width:140px;
  5135. height:30px;
  5136. background:inherit;
  5137. background-color:rgba(255, 255, 255, 1);
  5138. box-sizing:border-box;
  5139. border-width:1px;
  5140. border-style:solid;
  5141. border-color:rgba(215, 215, 215, 1);
  5142. border-radius:4px;
  5143. -moz-box-shadow:none;
  5144. -webkit-box-shadow:none;
  5145. box-shadow:none;
  5146. font-size:11px;
  5147. }
  5148. #u20930 {
  5149. border-width:0px;
  5150. position:absolute;
  5151. left:510px;
  5152. top:262px;
  5153. width:140px;
  5154. height:30px;
  5155. display:flex;
  5156. font-size:11px;
  5157. }
  5158. #u20930 .text {
  5159. position:absolute;
  5160. align-self:center;
  5161. padding:2px 2px 2px 2px;
  5162. box-sizing:border-box;
  5163. width:100%;
  5164. }
  5165. #u20930_text {
  5166. border-width:0px;
  5167. word-wrap:break-word;
  5168. text-transform:none;
  5169. visibility:hidden;
  5170. }
  5171. #u20931_input {
  5172. position:absolute;
  5173. left:0px;
  5174. top:0px;
  5175. width:126px;
  5176. height:23px;
  5177. padding:2px 2px 2px 2px;
  5178. font-family:'ArialMT', 'Arial', sans-serif;
  5179. font-weight:400;
  5180. font-style:normal;
  5181. font-size:11px;
  5182. letter-spacing:normal;
  5183. color:#AAAAAA;
  5184. vertical-align:none;
  5185. text-align:left;
  5186. text-transform:none;
  5187. background-color:transparent;
  5188. border-color:transparent;
  5189. }
  5190. #u20931_input.disabled {
  5191. position:absolute;
  5192. left:0px;
  5193. top:0px;
  5194. width:126px;
  5195. height:23px;
  5196. padding:2px 2px 2px 2px;
  5197. font-family:'ArialMT', 'Arial', sans-serif;
  5198. font-weight:400;
  5199. font-style:normal;
  5200. font-size:11px;
  5201. letter-spacing:normal;
  5202. color:#AAAAAA;
  5203. vertical-align:none;
  5204. text-align:left;
  5205. text-transform:none;
  5206. background-color:transparent;
  5207. border-color:transparent;
  5208. }
  5209. #u20931_div {
  5210. border-width:0px;
  5211. position:absolute;
  5212. left:0px;
  5213. top:0px;
  5214. width:126px;
  5215. height:23px;
  5216. background:inherit;
  5217. background-color:rgba(255, 255, 255, 1);
  5218. border:none;
  5219. border-radius:0px;
  5220. -moz-box-shadow:none;
  5221. -webkit-box-shadow:none;
  5222. box-shadow:none;
  5223. font-size:11px;
  5224. color:#AAAAAA;
  5225. }
  5226. #u20931 {
  5227. border-width:0px;
  5228. position:absolute;
  5229. left:517px;
  5230. top:264px;
  5231. width:126px;
  5232. height:23px;
  5233. display:flex;
  5234. font-size:11px;
  5235. color:#AAAAAA;
  5236. }
  5237. #u20931 .text {
  5238. position:absolute;
  5239. align-self:flex-start;
  5240. padding:2px 2px 2px 2px;
  5241. box-sizing:border-box;
  5242. width:100%;
  5243. }
  5244. #u20931_div.disabled {
  5245. border-width:0px;
  5246. position:absolute;
  5247. left:0px;
  5248. top:0px;
  5249. width:126px;
  5250. height:23px;
  5251. background:inherit;
  5252. background-color:rgba(240, 240, 240, 1);
  5253. border:none;
  5254. border-radius:0px;
  5255. -moz-box-shadow:none;
  5256. -webkit-box-shadow:none;
  5257. box-shadow:none;
  5258. font-size:11px;
  5259. color:#AAAAAA;
  5260. }
  5261. #u20931.disabled {
  5262. }
  5263. .u20931_input_option {
  5264. font-size:11px;
  5265. }
  5266. #u20932 {
  5267. border-width:0px;
  5268. position:absolute;
  5269. left:0px;
  5270. top:0px;
  5271. width:0px;
  5272. height:0px;
  5273. }
  5274. #u20933_div {
  5275. border-width:0px;
  5276. position:absolute;
  5277. left:0px;
  5278. top:0px;
  5279. width:140px;
  5280. height:30px;
  5281. background:inherit;
  5282. background-color:rgba(255, 255, 255, 1);
  5283. box-sizing:border-box;
  5284. border-width:1px;
  5285. border-style:solid;
  5286. border-color:rgba(201, 201, 201, 1);
  5287. border-radius:4px;
  5288. -moz-box-shadow:none;
  5289. -webkit-box-shadow:none;
  5290. box-shadow:none;
  5291. font-family:'Microsoft YaHei', sans-serif;
  5292. font-weight:400;
  5293. font-style:normal;
  5294. font-size:14px;
  5295. color:#CCCCCC;
  5296. text-align:left;
  5297. }
  5298. #u20933 {
  5299. border-width:0px;
  5300. position:absolute;
  5301. left:660px;
  5302. top:261px;
  5303. width:140px;
  5304. height:30px;
  5305. display:flex;
  5306. font-family:'Microsoft YaHei', sans-serif;
  5307. font-weight:400;
  5308. font-style:normal;
  5309. font-size:14px;
  5310. color:#CCCCCC;
  5311. text-align:left;
  5312. }
  5313. #u20933 .text {
  5314. position:absolute;
  5315. align-self:center;
  5316. padding:2px 8px 2px 8px;
  5317. box-sizing:border-box;
  5318. width:100%;
  5319. }
  5320. #u20933_text {
  5321. border-width:0px;
  5322. word-wrap:break-word;
  5323. text-transform:none;
  5324. visibility:hidden;
  5325. }
  5326. #u20934_input {
  5327. position:absolute;
  5328. left:0px;
  5329. top:0px;
  5330. width:127px;
  5331. height:25px;
  5332. padding:2px 2px 2px 2px;
  5333. font-family:'Microsoft YaHei', sans-serif;
  5334. font-weight:400;
  5335. font-style:normal;
  5336. font-size:10px;
  5337. letter-spacing:normal;
  5338. color:#000000;
  5339. vertical-align:none;
  5340. text-align:left;
  5341. text-transform:none;
  5342. background-color:transparent;
  5343. border-color:transparent;
  5344. }
  5345. #u20934_input.disabled {
  5346. position:absolute;
  5347. left:0px;
  5348. top:0px;
  5349. width:127px;
  5350. height:25px;
  5351. padding:2px 2px 2px 2px;
  5352. font-family:'Microsoft YaHei', sans-serif;
  5353. font-weight:400;
  5354. font-style:normal;
  5355. font-size:10px;
  5356. letter-spacing:normal;
  5357. color:#000000;
  5358. vertical-align:none;
  5359. text-align:left;
  5360. text-transform:none;
  5361. background-color:transparent;
  5362. border-color:transparent;
  5363. }
  5364. #u20934_div {
  5365. border-width:0px;
  5366. position:absolute;
  5367. left:0px;
  5368. top:0px;
  5369. width:127px;
  5370. height:25px;
  5371. background:inherit;
  5372. background-color:rgba(255, 255, 255, 1);
  5373. border:none;
  5374. border-radius:0px;
  5375. -moz-box-shadow:none;
  5376. -webkit-box-shadow:none;
  5377. box-shadow:none;
  5378. font-family:'Microsoft YaHei', sans-serif;
  5379. font-weight:400;
  5380. font-style:normal;
  5381. font-size:10px;
  5382. }
  5383. #u20934 {
  5384. border-width:0px;
  5385. position:absolute;
  5386. left:668px;
  5387. top:262px;
  5388. width:127px;
  5389. height:25px;
  5390. display:flex;
  5391. font-family:'Microsoft YaHei', sans-serif;
  5392. font-weight:400;
  5393. font-style:normal;
  5394. font-size:10px;
  5395. }
  5396. #u20934 .text {
  5397. position:absolute;
  5398. align-self:center;
  5399. padding:2px 2px 2px 2px;
  5400. box-sizing:border-box;
  5401. width:100%;
  5402. }
  5403. #u20934_div.disabled {
  5404. border-width:0px;
  5405. position:absolute;
  5406. left:0px;
  5407. top:0px;
  5408. width:127px;
  5409. height:25px;
  5410. background:inherit;
  5411. background-color:rgba(240, 240, 240, 1);
  5412. border:none;
  5413. border-radius:0px;
  5414. -moz-box-shadow:none;
  5415. -webkit-box-shadow:none;
  5416. box-shadow:none;
  5417. font-family:'Microsoft YaHei', sans-serif;
  5418. font-weight:400;
  5419. font-style:normal;
  5420. font-size:10px;
  5421. }
  5422. #u20934.disabled {
  5423. }
  5424. #u20935 {
  5425. border-width:0px;
  5426. position:absolute;
  5427. left:0px;
  5428. top:0px;
  5429. width:0px;
  5430. height:0px;
  5431. }
  5432. #u20936_div {
  5433. border-width:0px;
  5434. position:absolute;
  5435. left:0px;
  5436. top:0px;
  5437. width:140px;
  5438. height:30px;
  5439. background:inherit;
  5440. background-color:rgba(255, 255, 255, 1);
  5441. box-sizing:border-box;
  5442. border-width:1px;
  5443. border-style:solid;
  5444. border-color:rgba(201, 201, 201, 1);
  5445. border-radius:4px;
  5446. -moz-box-shadow:none;
  5447. -webkit-box-shadow:none;
  5448. box-shadow:none;
  5449. font-family:'Microsoft YaHei', sans-serif;
  5450. font-weight:400;
  5451. font-style:normal;
  5452. font-size:14px;
  5453. color:#CCCCCC;
  5454. text-align:left;
  5455. }
  5456. #u20936 {
  5457. border-width:0px;
  5458. position:absolute;
  5459. left:810px;
  5460. top:261px;
  5461. width:140px;
  5462. height:30px;
  5463. display:flex;
  5464. font-family:'Microsoft YaHei', sans-serif;
  5465. font-weight:400;
  5466. font-style:normal;
  5467. font-size:14px;
  5468. color:#CCCCCC;
  5469. text-align:left;
  5470. }
  5471. #u20936 .text {
  5472. position:absolute;
  5473. align-self:center;
  5474. padding:2px 8px 2px 8px;
  5475. box-sizing:border-box;
  5476. width:100%;
  5477. }
  5478. #u20936_text {
  5479. border-width:0px;
  5480. word-wrap:break-word;
  5481. text-transform:none;
  5482. visibility:hidden;
  5483. }
  5484. #u20937_input {
  5485. position:absolute;
  5486. left:0px;
  5487. top:0px;
  5488. width:127px;
  5489. height:25px;
  5490. padding:2px 2px 2px 2px;
  5491. font-family:'Microsoft YaHei', sans-serif;
  5492. font-weight:400;
  5493. font-style:normal;
  5494. font-size:10px;
  5495. letter-spacing:normal;
  5496. color:#000000;
  5497. vertical-align:none;
  5498. text-align:left;
  5499. text-transform:none;
  5500. background-color:transparent;
  5501. border-color:transparent;
  5502. }
  5503. #u20937_input.disabled {
  5504. position:absolute;
  5505. left:0px;
  5506. top:0px;
  5507. width:127px;
  5508. height:25px;
  5509. padding:2px 2px 2px 2px;
  5510. font-family:'Microsoft YaHei', sans-serif;
  5511. font-weight:400;
  5512. font-style:normal;
  5513. font-size:10px;
  5514. letter-spacing:normal;
  5515. color:#000000;
  5516. vertical-align:none;
  5517. text-align:left;
  5518. text-transform:none;
  5519. background-color:transparent;
  5520. border-color:transparent;
  5521. }
  5522. #u20937_div {
  5523. border-width:0px;
  5524. position:absolute;
  5525. left:0px;
  5526. top:0px;
  5527. width:127px;
  5528. height:25px;
  5529. background:inherit;
  5530. background-color:rgba(255, 255, 255, 1);
  5531. border:none;
  5532. border-radius:0px;
  5533. -moz-box-shadow:none;
  5534. -webkit-box-shadow:none;
  5535. box-shadow:none;
  5536. font-family:'Microsoft YaHei', sans-serif;
  5537. font-weight:400;
  5538. font-style:normal;
  5539. font-size:10px;
  5540. }
  5541. #u20937 {
  5542. border-width:0px;
  5543. position:absolute;
  5544. left:818px;
  5545. top:262px;
  5546. width:127px;
  5547. height:25px;
  5548. display:flex;
  5549. font-family:'Microsoft YaHei', sans-serif;
  5550. font-weight:400;
  5551. font-style:normal;
  5552. font-size:10px;
  5553. }
  5554. #u20937 .text {
  5555. position:absolute;
  5556. align-self:center;
  5557. padding:2px 2px 2px 2px;
  5558. box-sizing:border-box;
  5559. width:100%;
  5560. }
  5561. #u20937_div.disabled {
  5562. border-width:0px;
  5563. position:absolute;
  5564. left:0px;
  5565. top:0px;
  5566. width:127px;
  5567. height:25px;
  5568. background:inherit;
  5569. background-color:rgba(240, 240, 240, 1);
  5570. border:none;
  5571. border-radius:0px;
  5572. -moz-box-shadow:none;
  5573. -webkit-box-shadow:none;
  5574. box-shadow:none;
  5575. font-family:'Microsoft YaHei', sans-serif;
  5576. font-weight:400;
  5577. font-style:normal;
  5578. font-size:10px;
  5579. }
  5580. #u20937.disabled {
  5581. }
  5582. #u20938 {
  5583. border-width:0px;
  5584. position:absolute;
  5585. left:0px;
  5586. top:0px;
  5587. width:0px;
  5588. height:0px;
  5589. }
  5590. #u20939_div {
  5591. border-width:0px;
  5592. position:absolute;
  5593. left:0px;
  5594. top:0px;
  5595. width:140px;
  5596. height:30px;
  5597. background:inherit;
  5598. background-color:rgba(255, 255, 255, 1);
  5599. box-sizing:border-box;
  5600. border-width:1px;
  5601. border-style:solid;
  5602. border-color:rgba(201, 201, 201, 1);
  5603. border-radius:4px;
  5604. -moz-box-shadow:none;
  5605. -webkit-box-shadow:none;
  5606. box-shadow:none;
  5607. font-family:'Microsoft YaHei', sans-serif;
  5608. font-weight:400;
  5609. font-style:normal;
  5610. font-size:14px;
  5611. color:#CCCCCC;
  5612. text-align:left;
  5613. }
  5614. #u20939 {
  5615. border-width:0px;
  5616. position:absolute;
  5617. left:960px;
  5618. top:261px;
  5619. width:140px;
  5620. height:30px;
  5621. display:flex;
  5622. font-family:'Microsoft YaHei', sans-serif;
  5623. font-weight:400;
  5624. font-style:normal;
  5625. font-size:14px;
  5626. color:#CCCCCC;
  5627. text-align:left;
  5628. }
  5629. #u20939 .text {
  5630. position:absolute;
  5631. align-self:center;
  5632. padding:2px 8px 2px 8px;
  5633. box-sizing:border-box;
  5634. width:100%;
  5635. }
  5636. #u20939_text {
  5637. border-width:0px;
  5638. word-wrap:break-word;
  5639. text-transform:none;
  5640. visibility:hidden;
  5641. }
  5642. #u20940_input {
  5643. position:absolute;
  5644. left:0px;
  5645. top:0px;
  5646. width:127px;
  5647. height:25px;
  5648. padding:2px 2px 2px 2px;
  5649. font-family:'Microsoft YaHei', sans-serif;
  5650. font-weight:400;
  5651. font-style:normal;
  5652. font-size:10px;
  5653. letter-spacing:normal;
  5654. color:#000000;
  5655. vertical-align:none;
  5656. text-align:left;
  5657. text-transform:none;
  5658. background-color:transparent;
  5659. border-color:transparent;
  5660. }
  5661. #u20940_input.disabled {
  5662. position:absolute;
  5663. left:0px;
  5664. top:0px;
  5665. width:127px;
  5666. height:25px;
  5667. padding:2px 2px 2px 2px;
  5668. font-family:'Microsoft YaHei', sans-serif;
  5669. font-weight:400;
  5670. font-style:normal;
  5671. font-size:10px;
  5672. letter-spacing:normal;
  5673. color:#000000;
  5674. vertical-align:none;
  5675. text-align:left;
  5676. text-transform:none;
  5677. background-color:transparent;
  5678. border-color:transparent;
  5679. }
  5680. #u20940_div {
  5681. border-width:0px;
  5682. position:absolute;
  5683. left:0px;
  5684. top:0px;
  5685. width:127px;
  5686. height:25px;
  5687. background:inherit;
  5688. background-color:rgba(255, 255, 255, 1);
  5689. border:none;
  5690. border-radius:0px;
  5691. -moz-box-shadow:none;
  5692. -webkit-box-shadow:none;
  5693. box-shadow:none;
  5694. font-family:'Microsoft YaHei', sans-serif;
  5695. font-weight:400;
  5696. font-style:normal;
  5697. font-size:10px;
  5698. }
  5699. #u20940 {
  5700. border-width:0px;
  5701. position:absolute;
  5702. left:968px;
  5703. top:262px;
  5704. width:127px;
  5705. height:25px;
  5706. display:flex;
  5707. font-family:'Microsoft YaHei', sans-serif;
  5708. font-weight:400;
  5709. font-style:normal;
  5710. font-size:10px;
  5711. }
  5712. #u20940 .text {
  5713. position:absolute;
  5714. align-self:center;
  5715. padding:2px 2px 2px 2px;
  5716. box-sizing:border-box;
  5717. width:100%;
  5718. }
  5719. #u20940_div.disabled {
  5720. border-width:0px;
  5721. position:absolute;
  5722. left:0px;
  5723. top:0px;
  5724. width:127px;
  5725. height:25px;
  5726. background:inherit;
  5727. background-color:rgba(240, 240, 240, 1);
  5728. border:none;
  5729. border-radius:0px;
  5730. -moz-box-shadow:none;
  5731. -webkit-box-shadow:none;
  5732. box-shadow:none;
  5733. font-family:'Microsoft YaHei', sans-serif;
  5734. font-weight:400;
  5735. font-style:normal;
  5736. font-size:10px;
  5737. }
  5738. #u20940.disabled {
  5739. }
  5740. #u20941 {
  5741. border-width:0px;
  5742. position:absolute;
  5743. left:0px;
  5744. top:0px;
  5745. width:0px;
  5746. height:0px;
  5747. }
  5748. #u20942_div {
  5749. border-width:0px;
  5750. position:absolute;
  5751. left:0px;
  5752. top:0px;
  5753. width:140px;
  5754. height:30px;
  5755. background:inherit;
  5756. background-color:rgba(255, 255, 255, 1);
  5757. box-sizing:border-box;
  5758. border-width:1px;
  5759. border-style:solid;
  5760. border-color:rgba(201, 201, 201, 1);
  5761. border-radius:4px;
  5762. -moz-box-shadow:none;
  5763. -webkit-box-shadow:none;
  5764. box-shadow:none;
  5765. font-family:'Microsoft YaHei', sans-serif;
  5766. font-weight:400;
  5767. font-style:normal;
  5768. font-size:14px;
  5769. color:#CCCCCC;
  5770. text-align:left;
  5771. }
  5772. #u20942 {
  5773. border-width:0px;
  5774. position:absolute;
  5775. left:1110px;
  5776. top:261px;
  5777. width:140px;
  5778. height:30px;
  5779. display:flex;
  5780. font-family:'Microsoft YaHei', sans-serif;
  5781. font-weight:400;
  5782. font-style:normal;
  5783. font-size:14px;
  5784. color:#CCCCCC;
  5785. text-align:left;
  5786. }
  5787. #u20942 .text {
  5788. position:absolute;
  5789. align-self:center;
  5790. padding:2px 8px 2px 8px;
  5791. box-sizing:border-box;
  5792. width:100%;
  5793. }
  5794. #u20942_text {
  5795. border-width:0px;
  5796. word-wrap:break-word;
  5797. text-transform:none;
  5798. visibility:hidden;
  5799. }
  5800. #u20943_input {
  5801. position:absolute;
  5802. left:0px;
  5803. top:0px;
  5804. width:127px;
  5805. height:25px;
  5806. padding:2px 2px 2px 2px;
  5807. font-family:'Microsoft YaHei', sans-serif;
  5808. font-weight:400;
  5809. font-style:normal;
  5810. font-size:10px;
  5811. letter-spacing:normal;
  5812. color:#000000;
  5813. vertical-align:none;
  5814. text-align:left;
  5815. text-transform:none;
  5816. background-color:transparent;
  5817. border-color:transparent;
  5818. }
  5819. #u20943_input.disabled {
  5820. position:absolute;
  5821. left:0px;
  5822. top:0px;
  5823. width:127px;
  5824. height:25px;
  5825. padding:2px 2px 2px 2px;
  5826. font-family:'Microsoft YaHei', sans-serif;
  5827. font-weight:400;
  5828. font-style:normal;
  5829. font-size:10px;
  5830. letter-spacing:normal;
  5831. color:#000000;
  5832. vertical-align:none;
  5833. text-align:left;
  5834. text-transform:none;
  5835. background-color:transparent;
  5836. border-color:transparent;
  5837. }
  5838. #u20943_div {
  5839. border-width:0px;
  5840. position:absolute;
  5841. left:0px;
  5842. top:0px;
  5843. width:127px;
  5844. height:25px;
  5845. background:inherit;
  5846. background-color:rgba(255, 255, 255, 1);
  5847. border:none;
  5848. border-radius:0px;
  5849. -moz-box-shadow:none;
  5850. -webkit-box-shadow:none;
  5851. box-shadow:none;
  5852. font-family:'Microsoft YaHei', sans-serif;
  5853. font-weight:400;
  5854. font-style:normal;
  5855. font-size:10px;
  5856. }
  5857. #u20943 {
  5858. border-width:0px;
  5859. position:absolute;
  5860. left:1118px;
  5861. top:262px;
  5862. width:127px;
  5863. height:25px;
  5864. display:flex;
  5865. font-family:'Microsoft YaHei', sans-serif;
  5866. font-weight:400;
  5867. font-style:normal;
  5868. font-size:10px;
  5869. }
  5870. #u20943 .text {
  5871. position:absolute;
  5872. align-self:center;
  5873. padding:2px 2px 2px 2px;
  5874. box-sizing:border-box;
  5875. width:100%;
  5876. }
  5877. #u20943_div.disabled {
  5878. border-width:0px;
  5879. position:absolute;
  5880. left:0px;
  5881. top:0px;
  5882. width:127px;
  5883. height:25px;
  5884. background:inherit;
  5885. background-color:rgba(240, 240, 240, 1);
  5886. border:none;
  5887. border-radius:0px;
  5888. -moz-box-shadow:none;
  5889. -webkit-box-shadow:none;
  5890. box-shadow:none;
  5891. font-family:'Microsoft YaHei', sans-serif;
  5892. font-weight:400;
  5893. font-style:normal;
  5894. font-size:10px;
  5895. }
  5896. #u20943.disabled {
  5897. }
  5898. #u20944 {
  5899. border-width:0px;
  5900. position:absolute;
  5901. left:0px;
  5902. top:0px;
  5903. width:0px;
  5904. height:0px;
  5905. }
  5906. #u20945_div {
  5907. border-width:0px;
  5908. position:absolute;
  5909. left:0px;
  5910. top:0px;
  5911. width:140px;
  5912. height:30px;
  5913. background:inherit;
  5914. background-color:rgba(255, 255, 255, 1);
  5915. box-sizing:border-box;
  5916. border-width:1px;
  5917. border-style:solid;
  5918. border-color:rgba(215, 215, 215, 1);
  5919. border-radius:4px;
  5920. -moz-box-shadow:none;
  5921. -webkit-box-shadow:none;
  5922. box-shadow:none;
  5923. font-size:11px;
  5924. }
  5925. #u20945 {
  5926. border-width:0px;
  5927. position:absolute;
  5928. left:360px;
  5929. top:303px;
  5930. width:140px;
  5931. height:30px;
  5932. display:flex;
  5933. font-size:11px;
  5934. }
  5935. #u20945 .text {
  5936. position:absolute;
  5937. align-self:center;
  5938. padding:2px 2px 2px 2px;
  5939. box-sizing:border-box;
  5940. width:100%;
  5941. }
  5942. #u20945_text {
  5943. border-width:0px;
  5944. word-wrap:break-word;
  5945. text-transform:none;
  5946. visibility:hidden;
  5947. }
  5948. #u20946_input {
  5949. position:absolute;
  5950. left:0px;
  5951. top:0px;
  5952. width:126px;
  5953. height:23px;
  5954. padding:2px 2px 2px 2px;
  5955. font-family:'ArialMT', 'Arial', sans-serif;
  5956. font-weight:400;
  5957. font-style:normal;
  5958. font-size:11px;
  5959. letter-spacing:normal;
  5960. color:#AAAAAA;
  5961. vertical-align:none;
  5962. text-align:left;
  5963. text-transform:none;
  5964. background-color:transparent;
  5965. border-color:transparent;
  5966. }
  5967. #u20946_input.disabled {
  5968. position:absolute;
  5969. left:0px;
  5970. top:0px;
  5971. width:126px;
  5972. height:23px;
  5973. padding:2px 2px 2px 2px;
  5974. font-family:'ArialMT', 'Arial', sans-serif;
  5975. font-weight:400;
  5976. font-style:normal;
  5977. font-size:11px;
  5978. letter-spacing:normal;
  5979. color:#AAAAAA;
  5980. vertical-align:none;
  5981. text-align:left;
  5982. text-transform:none;
  5983. background-color:transparent;
  5984. border-color:transparent;
  5985. }
  5986. #u20946_div {
  5987. border-width:0px;
  5988. position:absolute;
  5989. left:0px;
  5990. top:0px;
  5991. width:126px;
  5992. height:23px;
  5993. background:inherit;
  5994. background-color:rgba(255, 255, 255, 1);
  5995. border:none;
  5996. border-radius:0px;
  5997. -moz-box-shadow:none;
  5998. -webkit-box-shadow:none;
  5999. box-shadow:none;
  6000. font-size:11px;
  6001. color:#AAAAAA;
  6002. }
  6003. #u20946 {
  6004. border-width:0px;
  6005. position:absolute;
  6006. left:367px;
  6007. top:305px;
  6008. width:126px;
  6009. height:23px;
  6010. display:flex;
  6011. font-size:11px;
  6012. color:#AAAAAA;
  6013. }
  6014. #u20946 .text {
  6015. position:absolute;
  6016. align-self:flex-start;
  6017. padding:2px 2px 2px 2px;
  6018. box-sizing:border-box;
  6019. width:100%;
  6020. }
  6021. #u20946_div.disabled {
  6022. border-width:0px;
  6023. position:absolute;
  6024. left:0px;
  6025. top:0px;
  6026. width:126px;
  6027. height:23px;
  6028. background:inherit;
  6029. background-color:rgba(240, 240, 240, 1);
  6030. border:none;
  6031. border-radius:0px;
  6032. -moz-box-shadow:none;
  6033. -webkit-box-shadow:none;
  6034. box-shadow:none;
  6035. font-size:11px;
  6036. color:#AAAAAA;
  6037. }
  6038. #u20946.disabled {
  6039. }
  6040. .u20946_input_option {
  6041. font-size:11px;
  6042. }
  6043. #u20947 {
  6044. border-width:0px;
  6045. position:absolute;
  6046. left:0px;
  6047. top:0px;
  6048. width:0px;
  6049. height:0px;
  6050. }
  6051. #u20948_div {
  6052. border-width:0px;
  6053. position:absolute;
  6054. left:0px;
  6055. top:0px;
  6056. width:140px;
  6057. height:30px;
  6058. background:inherit;
  6059. background-color:rgba(255, 255, 255, 1);
  6060. box-sizing:border-box;
  6061. border-width:1px;
  6062. border-style:solid;
  6063. border-color:rgba(215, 215, 215, 1);
  6064. border-radius:4px;
  6065. -moz-box-shadow:none;
  6066. -webkit-box-shadow:none;
  6067. box-shadow:none;
  6068. font-size:11px;
  6069. }
  6070. #u20948 {
  6071. border-width:0px;
  6072. position:absolute;
  6073. left:510px;
  6074. top:303px;
  6075. width:140px;
  6076. height:30px;
  6077. display:flex;
  6078. font-size:11px;
  6079. }
  6080. #u20948 .text {
  6081. position:absolute;
  6082. align-self:center;
  6083. padding:2px 2px 2px 2px;
  6084. box-sizing:border-box;
  6085. width:100%;
  6086. }
  6087. #u20948_text {
  6088. border-width:0px;
  6089. word-wrap:break-word;
  6090. text-transform:none;
  6091. visibility:hidden;
  6092. }
  6093. #u20949_input {
  6094. position:absolute;
  6095. left:0px;
  6096. top:0px;
  6097. width:126px;
  6098. height:23px;
  6099. padding:2px 2px 2px 2px;
  6100. font-family:'ArialMT', 'Arial', sans-serif;
  6101. font-weight:400;
  6102. font-style:normal;
  6103. font-size:11px;
  6104. letter-spacing:normal;
  6105. color:#AAAAAA;
  6106. vertical-align:none;
  6107. text-align:left;
  6108. text-transform:none;
  6109. background-color:transparent;
  6110. border-color:transparent;
  6111. }
  6112. #u20949_input.disabled {
  6113. position:absolute;
  6114. left:0px;
  6115. top:0px;
  6116. width:126px;
  6117. height:23px;
  6118. padding:2px 2px 2px 2px;
  6119. font-family:'ArialMT', 'Arial', sans-serif;
  6120. font-weight:400;
  6121. font-style:normal;
  6122. font-size:11px;
  6123. letter-spacing:normal;
  6124. color:#AAAAAA;
  6125. vertical-align:none;
  6126. text-align:left;
  6127. text-transform:none;
  6128. background-color:transparent;
  6129. border-color:transparent;
  6130. }
  6131. #u20949_div {
  6132. border-width:0px;
  6133. position:absolute;
  6134. left:0px;
  6135. top:0px;
  6136. width:126px;
  6137. height:23px;
  6138. background:inherit;
  6139. background-color:rgba(255, 255, 255, 1);
  6140. border:none;
  6141. border-radius:0px;
  6142. -moz-box-shadow:none;
  6143. -webkit-box-shadow:none;
  6144. box-shadow:none;
  6145. font-size:11px;
  6146. color:#AAAAAA;
  6147. }
  6148. #u20949 {
  6149. border-width:0px;
  6150. position:absolute;
  6151. left:517px;
  6152. top:305px;
  6153. width:126px;
  6154. height:23px;
  6155. display:flex;
  6156. font-size:11px;
  6157. color:#AAAAAA;
  6158. }
  6159. #u20949 .text {
  6160. position:absolute;
  6161. align-self:flex-start;
  6162. padding:2px 2px 2px 2px;
  6163. box-sizing:border-box;
  6164. width:100%;
  6165. }
  6166. #u20949_div.disabled {
  6167. border-width:0px;
  6168. position:absolute;
  6169. left:0px;
  6170. top:0px;
  6171. width:126px;
  6172. height:23px;
  6173. background:inherit;
  6174. background-color:rgba(240, 240, 240, 1);
  6175. border:none;
  6176. border-radius:0px;
  6177. -moz-box-shadow:none;
  6178. -webkit-box-shadow:none;
  6179. box-shadow:none;
  6180. font-size:11px;
  6181. color:#AAAAAA;
  6182. }
  6183. #u20949.disabled {
  6184. }
  6185. .u20949_input_option {
  6186. font-size:11px;
  6187. }
  6188. #u20950_div {
  6189. border-width:0px;
  6190. position:absolute;
  6191. left:0px;
  6192. top:0px;
  6193. width:60px;
  6194. height:30px;
  6195. background:inherit;
  6196. background-color:rgba(255, 255, 255, 1);
  6197. box-sizing:border-box;
  6198. border-width:1px;
  6199. border-style:solid;
  6200. border-color:rgba(170, 170, 170, 1);
  6201. border-radius:4px;
  6202. -moz-box-shadow:none;
  6203. -webkit-box-shadow:none;
  6204. box-shadow:none;
  6205. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6206. font-weight:400;
  6207. font-style:normal;
  6208. font-size:14px;
  6209. }
  6210. #u20950 {
  6211. border-width:0px;
  6212. position:absolute;
  6213. left:735px;
  6214. top:303px;
  6215. width:60px;
  6216. height:30px;
  6217. display:flex;
  6218. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6219. font-weight:400;
  6220. font-style:normal;
  6221. font-size:14px;
  6222. }
  6223. #u20950 .text {
  6224. position:absolute;
  6225. align-self:center;
  6226. padding:2px 2px 2px 2px;
  6227. box-sizing:border-box;
  6228. width:100%;
  6229. }
  6230. #u20950_text {
  6231. border-width:0px;
  6232. word-wrap:break-word;
  6233. text-transform:none;
  6234. }
  6235. #u20951_div {
  6236. border-width:0px;
  6237. position:absolute;
  6238. left:0px;
  6239. top:0px;
  6240. width:60px;
  6241. height:30px;
  6242. background:inherit;
  6243. background-color:rgba(24, 144, 255, 1);
  6244. border:none;
  6245. border-radius:4px;
  6246. -moz-box-shadow:none;
  6247. -webkit-box-shadow:none;
  6248. box-shadow:none;
  6249. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6250. font-weight:400;
  6251. font-style:normal;
  6252. font-size:14px;
  6253. color:#FFFFFF;
  6254. }
  6255. #u20951 {
  6256. border-width:0px;
  6257. position:absolute;
  6258. left:665px;
  6259. top:303px;
  6260. width:60px;
  6261. height:30px;
  6262. display:flex;
  6263. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6264. font-weight:400;
  6265. font-style:normal;
  6266. font-size:14px;
  6267. color:#FFFFFF;
  6268. }
  6269. #u20951 .text {
  6270. position:absolute;
  6271. align-self:center;
  6272. padding:2px 2px 2px 2px;
  6273. box-sizing:border-box;
  6274. width:100%;
  6275. }
  6276. #u20951_text {
  6277. border-width:0px;
  6278. word-wrap:break-word;
  6279. text-transform:none;
  6280. }
  6281. #u20952 {
  6282. border-width:0px;
  6283. position:absolute;
  6284. left:0px;
  6285. top:0px;
  6286. width:0px;
  6287. height:0px;
  6288. }
  6289. #u20953_div {
  6290. border-width:0px;
  6291. position:absolute;
  6292. left:0px;
  6293. top:0px;
  6294. width:1000px;
  6295. height:60px;
  6296. background:inherit;
  6297. background-color:rgba(255, 255, 255, 1);
  6298. box-sizing:border-box;
  6299. border-width:1px;
  6300. border-style:solid;
  6301. border-color:rgba(215, 215, 215, 1);
  6302. border-radius:0px;
  6303. -moz-box-shadow:none;
  6304. -webkit-box-shadow:none;
  6305. box-shadow:none;
  6306. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6307. font-weight:400;
  6308. font-style:normal;
  6309. font-size:14px;
  6310. color:#AAAAAA;
  6311. text-align:center;
  6312. line-height:30px;
  6313. }
  6314. #u20953 {
  6315. border-width:0px;
  6316. position:absolute;
  6317. left:340px;
  6318. top:848px;
  6319. width:1000px;
  6320. height:60px;
  6321. display:flex;
  6322. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6323. font-weight:400;
  6324. font-style:normal;
  6325. font-size:14px;
  6326. color:#AAAAAA;
  6327. text-align:center;
  6328. line-height:30px;
  6329. }
  6330. #u20953 .text {
  6331. position:absolute;
  6332. align-self:center;
  6333. padding:5px 10px 5px 10px;
  6334. box-sizing:border-box;
  6335. width:100%;
  6336. }
  6337. #u20953_text {
  6338. border-width:0px;
  6339. word-wrap:break-word;
  6340. text-transform:none;
  6341. visibility:hidden;
  6342. }
  6343. #u20954_div {
  6344. border-width:0px;
  6345. position:absolute;
  6346. left:0px;
  6347. top:0px;
  6348. width:80px;
  6349. height:30px;
  6350. background:inherit;
  6351. background-color:rgba(255, 255, 255, 1);
  6352. box-sizing:border-box;
  6353. border-width:1px;
  6354. border-style:solid;
  6355. border-color:rgba(170, 170, 170, 1);
  6356. border-radius:4px;
  6357. -moz-box-shadow:none;
  6358. -webkit-box-shadow:none;
  6359. box-shadow:none;
  6360. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6361. font-weight:400;
  6362. font-style:normal;
  6363. font-size:14px;
  6364. }
  6365. #u20954 {
  6366. border-width:0px;
  6367. position:absolute;
  6368. left:1150px;
  6369. top:863px;
  6370. width:80px;
  6371. height:30px;
  6372. display:flex;
  6373. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6374. font-weight:400;
  6375. font-style:normal;
  6376. font-size:14px;
  6377. }
  6378. #u20954 .text {
  6379. position:absolute;
  6380. align-self:center;
  6381. padding:2px 2px 2px 2px;
  6382. box-sizing:border-box;
  6383. width:100%;
  6384. }
  6385. #u20954_text {
  6386. border-width:0px;
  6387. word-wrap:break-word;
  6388. text-transform:none;
  6389. }
  6390. #u20955_div {
  6391. border-width:0px;
  6392. position:absolute;
  6393. left:0px;
  6394. top:0px;
  6395. width:80px;
  6396. height:30px;
  6397. background:inherit;
  6398. background-color:rgba(24, 144, 255, 1);
  6399. border:none;
  6400. border-radius:4px;
  6401. -moz-box-shadow:none;
  6402. -webkit-box-shadow:none;
  6403. box-shadow:none;
  6404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6405. font-weight:400;
  6406. font-style:normal;
  6407. font-size:14px;
  6408. color:#FFFFFF;
  6409. }
  6410. #u20955 {
  6411. border-width:0px;
  6412. position:absolute;
  6413. left:1240px;
  6414. top:863px;
  6415. width:80px;
  6416. height:30px;
  6417. display:flex;
  6418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6419. font-weight:400;
  6420. font-style:normal;
  6421. font-size:14px;
  6422. color:#FFFFFF;
  6423. }
  6424. #u20955 .text {
  6425. position:absolute;
  6426. align-self:center;
  6427. padding:2px 2px 2px 2px;
  6428. box-sizing:border-box;
  6429. width:100%;
  6430. }
  6431. #u20955_text {
  6432. border-width:0px;
  6433. word-wrap:break-word;
  6434. text-transform:none;
  6435. }
  6436. #u20956 {
  6437. border-width:0px;
  6438. position:absolute;
  6439. left:0px;
  6440. top:0px;
  6441. width:0px;
  6442. height:0px;
  6443. }
  6444. #u20957 {
  6445. border-width:0px;
  6446. position:absolute;
  6447. left:0px;
  6448. top:0px;
  6449. width:0px;
  6450. height:0px;
  6451. }
  6452. #u20958_div {
  6453. border-width:0px;
  6454. position:absolute;
  6455. left:0px;
  6456. top:0px;
  6457. width:31px;
  6458. height:30px;
  6459. background:inherit;
  6460. background-color:rgba(255, 255, 255, 1);
  6461. box-sizing:border-box;
  6462. border-width:1px;
  6463. border-style:solid;
  6464. border-color:rgba(228, 228, 228, 1);
  6465. border-radius:4px;
  6466. -moz-box-shadow:none;
  6467. -webkit-box-shadow:none;
  6468. box-shadow:none;
  6469. font-family:'Microsoft YaHei', sans-serif;
  6470. font-weight:400;
  6471. font-style:normal;
  6472. font-size:12px;
  6473. }
  6474. #u20958 {
  6475. border-width:0px;
  6476. position:absolute;
  6477. left:1204px;
  6478. top:789px;
  6479. width:31px;
  6480. height:30px;
  6481. display:flex;
  6482. font-family:'Microsoft YaHei', sans-serif;
  6483. font-weight:400;
  6484. font-style:normal;
  6485. font-size:12px;
  6486. }
  6487. #u20958 .text {
  6488. position:absolute;
  6489. align-self:center;
  6490. padding:2px 2px 2px 2px;
  6491. box-sizing:border-box;
  6492. width:100%;
  6493. }
  6494. #u20958_text {
  6495. border-width:0px;
  6496. word-wrap:break-word;
  6497. text-transform:none;
  6498. visibility:hidden;
  6499. }
  6500. #u20959_img {
  6501. border-width:0px;
  6502. position:absolute;
  6503. left:0px;
  6504. top:0px;
  6505. width:8px;
  6506. height:14px;
  6507. }
  6508. #u20959 {
  6509. border-width:0px;
  6510. position:absolute;
  6511. left:1216px;
  6512. top:797px;
  6513. width:8px;
  6514. height:14px;
  6515. display:flex;
  6516. font-family:'Microsoft YaHei', sans-serif;
  6517. font-weight:400;
  6518. font-style:normal;
  6519. font-size:12px;
  6520. }
  6521. #u20959 .text {
  6522. position:absolute;
  6523. align-self:center;
  6524. padding:2px 2px 2px 2px;
  6525. box-sizing:border-box;
  6526. width:100%;
  6527. }
  6528. #u20959_text {
  6529. border-width:0px;
  6530. word-wrap:break-word;
  6531. text-transform:none;
  6532. visibility:hidden;
  6533. }
  6534. #u20960 {
  6535. border-width:0px;
  6536. position:absolute;
  6537. left:0px;
  6538. top:0px;
  6539. width:0px;
  6540. height:0px;
  6541. }
  6542. #u20961_div {
  6543. border-width:0px;
  6544. position:absolute;
  6545. left:0px;
  6546. top:0px;
  6547. width:31px;
  6548. height:30px;
  6549. background:inherit;
  6550. background-color:rgba(255, 255, 255, 1);
  6551. box-sizing:border-box;
  6552. border-width:1px;
  6553. border-style:solid;
  6554. border-color:rgba(228, 228, 228, 1);
  6555. border-radius:4px;
  6556. -moz-box-shadow:none;
  6557. -webkit-box-shadow:none;
  6558. box-shadow:none;
  6559. font-family:'Microsoft YaHei', sans-serif;
  6560. font-weight:400;
  6561. font-style:normal;
  6562. font-size:12px;
  6563. }
  6564. #u20961 {
  6565. border-width:0px;
  6566. position:absolute;
  6567. left:1289px;
  6568. top:789px;
  6569. width:31px;
  6570. height:30px;
  6571. display:flex;
  6572. font-family:'Microsoft YaHei', sans-serif;
  6573. font-weight:400;
  6574. font-style:normal;
  6575. font-size:12px;
  6576. }
  6577. #u20961 .text {
  6578. position:absolute;
  6579. align-self:center;
  6580. padding:2px 2px 2px 2px;
  6581. box-sizing:border-box;
  6582. width:100%;
  6583. }
  6584. #u20961_text {
  6585. border-width:0px;
  6586. word-wrap:break-word;
  6587. text-transform:none;
  6588. visibility:hidden;
  6589. }
  6590. #u20962_img {
  6591. border-width:0px;
  6592. position:absolute;
  6593. left:0px;
  6594. top:0px;
  6595. width:8px;
  6596. height:14px;
  6597. }
  6598. #u20962 {
  6599. border-width:0px;
  6600. position:absolute;
  6601. left:1302px;
  6602. top:797px;
  6603. width:8px;
  6604. height:14px;
  6605. display:flex;
  6606. font-family:'Microsoft YaHei', sans-serif;
  6607. font-weight:400;
  6608. font-style:normal;
  6609. font-size:12px;
  6610. }
  6611. #u20962 .text {
  6612. position:absolute;
  6613. align-self:center;
  6614. padding:2px 2px 2px 2px;
  6615. box-sizing:border-box;
  6616. width:100%;
  6617. }
  6618. #u20962_text {
  6619. border-width:0px;
  6620. word-wrap:break-word;
  6621. text-transform:none;
  6622. visibility:hidden;
  6623. }
  6624. #u20963_div {
  6625. border-width:0px;
  6626. position:absolute;
  6627. left:0px;
  6628. top:0px;
  6629. width:32px;
  6630. height:21px;
  6631. background:inherit;
  6632. background-color:rgba(255, 255, 255, 1);
  6633. border:none;
  6634. border-radius:15px;
  6635. -moz-box-shadow:none;
  6636. -webkit-box-shadow:none;
  6637. box-shadow:none;
  6638. font-family:'Microsoft YaHei', sans-serif;
  6639. font-weight:400;
  6640. font-style:normal;
  6641. font-size:14px;
  6642. color:#1E1E1E;
  6643. }
  6644. #u20963 {
  6645. border-width:0px;
  6646. position:absolute;
  6647. left:1245px;
  6648. top:794px;
  6649. width:32px;
  6650. height:21px;
  6651. display:flex;
  6652. font-family:'Microsoft YaHei', sans-serif;
  6653. font-weight:400;
  6654. font-style:normal;
  6655. font-size:14px;
  6656. color:#1E1E1E;
  6657. }
  6658. #u20963 .text {
  6659. position:absolute;
  6660. align-self:center;
  6661. padding:2px 2px 2px 2px;
  6662. box-sizing:border-box;
  6663. width:100%;
  6664. }
  6665. #u20963_text {
  6666. border-width:0px;
  6667. white-space:nowrap;
  6668. text-transform:none;
  6669. }
  6670. #u20964_div {
  6671. border-width:0px;
  6672. position:absolute;
  6673. left:0px;
  6674. top:0px;
  6675. width:771px;
  6676. height:60px;
  6677. background:inherit;
  6678. background-color:rgba(255, 255, 255, 0);
  6679. box-sizing:border-box;
  6680. border-width:1px;
  6681. border-style:solid;
  6682. border-color:rgba(217, 0, 27, 1);
  6683. border-radius:3px;
  6684. -moz-box-shadow:none;
  6685. -webkit-box-shadow:none;
  6686. box-shadow:none;
  6687. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6688. font-weight:400;
  6689. font-style:normal;
  6690. color:#D9001B;
  6691. }
  6692. #u20964 {
  6693. border-width:0px;
  6694. position:absolute;
  6695. left:510px;
  6696. top:201px;
  6697. width:771px;
  6698. height:60px;
  6699. display:flex;
  6700. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6701. font-weight:400;
  6702. font-style:normal;
  6703. color:#D9001B;
  6704. }
  6705. #u20964 .text {
  6706. position:absolute;
  6707. align-self:flex-start;
  6708. padding:10px 10px 10px 10px;
  6709. box-sizing:border-box;
  6710. width:100%;
  6711. }
  6712. #u20964_text {
  6713. border-width:0px;
  6714. white-space:nowrap;
  6715. text-transform:none;
  6716. }
  6717. #u20965_div {
  6718. border-width:0px;
  6719. position:absolute;
  6720. left:0px;
  6721. top:0px;
  6722. width:673px;
  6723. height:60px;
  6724. background:inherit;
  6725. background-color:rgba(255, 255, 255, 0);
  6726. box-sizing:border-box;
  6727. border-width:1px;
  6728. border-style:solid;
  6729. border-color:rgba(217, 0, 27, 1);
  6730. border-radius:3px;
  6731. -moz-box-shadow:none;
  6732. -webkit-box-shadow:none;
  6733. box-shadow:none;
  6734. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6735. font-weight:400;
  6736. font-style:normal;
  6737. color:#D9001B;
  6738. }
  6739. #u20965 {
  6740. border-width:0px;
  6741. position:absolute;
  6742. left:647px;
  6743. top:797px;
  6744. width:673px;
  6745. height:60px;
  6746. display:flex;
  6747. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6748. font-weight:400;
  6749. font-style:normal;
  6750. color:#D9001B;
  6751. }
  6752. #u20965 .text {
  6753. position:absolute;
  6754. align-self:flex-start;
  6755. padding:10px 10px 10px 10px;
  6756. box-sizing:border-box;
  6757. width:100%;
  6758. }
  6759. #u20965_text {
  6760. border-width:0px;
  6761. white-space:nowrap;
  6762. text-transform:none;
  6763. }