styles.css 205 KB

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