styles.css 216 KB

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