styles.css 156 KB

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