styles.css 132 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585
  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. #u20033_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. #u20033 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u20033 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u20033_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u20034_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. #u20034 {
  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. #u20034 .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. #u20034_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u20035_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. #u20035 {
  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. #u20035 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u20035_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u20036 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u20037_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u20037 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u20037 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u20037_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u20038_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. #u20038 {
  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. #u20038 .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. #u20038_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u20039_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. #u20039 {
  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. #u20039 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u20039_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u20040 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u20041_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. #u20041 {
  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. #u20041 .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. #u20041_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u20042_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u20042 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:175px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u20042 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u20042_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u20043 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u20044_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. #u20044 {
  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. #u20044 .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. #u20044_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u20045_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u20045 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:385px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u20045 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u20045_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u20046 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u20047_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. #u20047 {
  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. #u20047 .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. #u20047_text {
  475. border-width:0px;
  476. white-space:nowrap;
  477. text-transform:none;
  478. }
  479. #u20048_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:14px;
  485. height:14px;
  486. }
  487. #u20048 {
  488. border-width:0px;
  489. position:absolute;
  490. left:20px;
  491. top:137px;
  492. width:14px;
  493. height:14px;
  494. display:flex;
  495. }
  496. #u20048 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u20048_text {
  504. border-width:0px;
  505. word-wrap:break-word;
  506. text-transform:none;
  507. visibility:hidden;
  508. }
  509. #u20049 {
  510. border-width:0px;
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:0px;
  515. height:0px;
  516. }
  517. #u20050_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. #u20050 {
  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. #u20050 .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. #u20050_text {
  559. border-width:0px;
  560. white-space:nowrap;
  561. text-transform:none;
  562. }
  563. #u20051_img {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:14px;
  569. height:14px;
  570. }
  571. #u20051 {
  572. border-width:0px;
  573. position:absolute;
  574. left:20px;
  575. top:427px;
  576. width:14px;
  577. height:14px;
  578. display:flex;
  579. }
  580. #u20051 .text {
  581. position:absolute;
  582. align-self:center;
  583. padding:2px 2px 2px 2px;
  584. box-sizing:border-box;
  585. width:100%;
  586. }
  587. #u20051_text {
  588. border-width:0px;
  589. word-wrap:break-word;
  590. text-transform:none;
  591. visibility:hidden;
  592. }
  593. #u20052 {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:0px;
  599. height:0px;
  600. }
  601. #u20053_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. #u20053 {
  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. #u20053 .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. #u20053_text {
  643. border-width:0px;
  644. white-space:nowrap;
  645. text-transform:none;
  646. }
  647. #u20054_img {
  648. border-width:0px;
  649. position:absolute;
  650. left:0px;
  651. top:0px;
  652. width:14px;
  653. height:14px;
  654. }
  655. #u20054 {
  656. border-width:0px;
  657. position:absolute;
  658. left:20px;
  659. top:301px;
  660. width:14px;
  661. height:14px;
  662. display:flex;
  663. }
  664. #u20054 .text {
  665. position:absolute;
  666. align-self:center;
  667. padding:2px 2px 2px 2px;
  668. box-sizing:border-box;
  669. width:100%;
  670. }
  671. #u20054_text {
  672. border-width:0px;
  673. word-wrap:break-word;
  674. text-transform:none;
  675. visibility:hidden;
  676. }
  677. #u20055 {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:0px;
  683. height:0px;
  684. }
  685. #u20056_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. #u20056 {
  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. #u20056 .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. #u20056_text {
  727. border-width:0px;
  728. white-space:nowrap;
  729. text-transform:none;
  730. }
  731. #u20057_img {
  732. border-width:0px;
  733. position:absolute;
  734. left:0px;
  735. top:0px;
  736. width:14px;
  737. height:14px;
  738. }
  739. #u20057 {
  740. border-width:0px;
  741. position:absolute;
  742. left:20px;
  743. top:217px;
  744. width:14px;
  745. height:14px;
  746. display:flex;
  747. }
  748. #u20057 .text {
  749. position:absolute;
  750. align-self:center;
  751. padding:2px 2px 2px 2px;
  752. box-sizing:border-box;
  753. width:100%;
  754. }
  755. #u20057_text {
  756. border-width:0px;
  757. word-wrap:break-word;
  758. text-transform:none;
  759. visibility:hidden;
  760. }
  761. #u20058 {
  762. border-width:0px;
  763. position:absolute;
  764. left:0px;
  765. top:0px;
  766. width:0px;
  767. height:0px;
  768. }
  769. #u20059_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. #u20059 {
  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. #u20059 .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. #u20059_text {
  811. border-width:0px;
  812. white-space:nowrap;
  813. text-transform:none;
  814. }
  815. #u20060_img {
  816. border-width:0px;
  817. position:absolute;
  818. left:0px;
  819. top:0px;
  820. width:14px;
  821. height:14px;
  822. }
  823. #u20060 {
  824. border-width:0px;
  825. position:absolute;
  826. left:20px;
  827. top:343px;
  828. width:14px;
  829. height:14px;
  830. display:flex;
  831. }
  832. #u20060 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 2px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u20060_text {
  840. border-width:0px;
  841. word-wrap:break-word;
  842. text-transform:none;
  843. visibility:hidden;
  844. }
  845. #u20061 {
  846. border-width:0px;
  847. position:absolute;
  848. left:0px;
  849. top:0px;
  850. width:0px;
  851. height:0px;
  852. }
  853. #u20062_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. #u20062 {
  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. #u20062 .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. #u20062_text {
  895. border-width:0px;
  896. white-space:nowrap;
  897. text-transform:none;
  898. }
  899. #u20063_img {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:14px;
  905. height:14px;
  906. }
  907. #u20063 {
  908. border-width:0px;
  909. position:absolute;
  910. left:20px;
  911. top:469px;
  912. width:14px;
  913. height:14px;
  914. display:flex;
  915. }
  916. #u20063 .text {
  917. position:absolute;
  918. align-self:center;
  919. padding:2px 2px 2px 2px;
  920. box-sizing:border-box;
  921. width:100%;
  922. }
  923. #u20063_text {
  924. border-width:0px;
  925. word-wrap:break-word;
  926. text-transform:none;
  927. visibility:hidden;
  928. }
  929. #u20064 {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:0px;
  935. height:0px;
  936. }
  937. #u20065_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. #u20065 {
  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. #u20065 .text {
  970. position:absolute;
  971. align-self:center;
  972. padding:0px 0px 0px 0px;
  973. box-sizing:border-box;
  974. width:100%;
  975. }
  976. #u20065_text {
  977. border-width:0px;
  978. white-space:nowrap;
  979. text-transform:none;
  980. }
  981. #u20066_img {
  982. border-width:0px;
  983. position:absolute;
  984. left:0px;
  985. top:0px;
  986. width:22px;
  987. height:22px;
  988. }
  989. #u20066 {
  990. border-width:0px;
  991. position:absolute;
  992. left:20px;
  993. top:1144px;
  994. width:22px;
  995. height:22px;
  996. display:flex;
  997. }
  998. #u20066 .text {
  999. position:absolute;
  1000. align-self:center;
  1001. padding:2px 2px 2px 2px;
  1002. box-sizing:border-box;
  1003. width:100%;
  1004. }
  1005. #u20066_text {
  1006. border-width:0px;
  1007. word-wrap:break-word;
  1008. text-transform:none;
  1009. visibility:hidden;
  1010. }
  1011. #u20067 {
  1012. border-width:0px;
  1013. position:absolute;
  1014. left:0px;
  1015. top:0px;
  1016. width:0px;
  1017. height:0px;
  1018. }
  1019. #u20068_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. #u20068 {
  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. #u20068 .text {
  1052. position:absolute;
  1053. align-self:center;
  1054. padding:0px 0px 0px 0px;
  1055. box-sizing:border-box;
  1056. width:100%;
  1057. }
  1058. #u20068_text {
  1059. border-width:0px;
  1060. white-space:nowrap;
  1061. text-transform:none;
  1062. }
  1063. #u20069_img {
  1064. border-width:0px;
  1065. position:absolute;
  1066. left:0px;
  1067. top:0px;
  1068. width:22px;
  1069. height:22px;
  1070. }
  1071. #u20069 {
  1072. border-width:0px;
  1073. position:absolute;
  1074. left:20px;
  1075. top:1186px;
  1076. width:22px;
  1077. height:22px;
  1078. display:flex;
  1079. }
  1080. #u20069 .text {
  1081. position:absolute;
  1082. align-self:center;
  1083. padding:2px 2px 2px 2px;
  1084. box-sizing:border-box;
  1085. width:100%;
  1086. }
  1087. #u20069_text {
  1088. border-width:0px;
  1089. word-wrap:break-word;
  1090. text-transform:none;
  1091. visibility:hidden;
  1092. }
  1093. #u20070 {
  1094. border-width:0px;
  1095. position:absolute;
  1096. left:0px;
  1097. top:0px;
  1098. width:0px;
  1099. height:0px;
  1100. }
  1101. #u20071_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. #u20071 {
  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. #u20071 .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. #u20071_text {
  1143. border-width:0px;
  1144. white-space:nowrap;
  1145. text-transform:none;
  1146. }
  1147. #u20072_img {
  1148. border-width:0px;
  1149. position:absolute;
  1150. left:0px;
  1151. top:0px;
  1152. width:14px;
  1153. height:14px;
  1154. }
  1155. #u20072 {
  1156. border-width:0px;
  1157. position:absolute;
  1158. left:20px;
  1159. top:259px;
  1160. width:14px;
  1161. height:14px;
  1162. display:flex;
  1163. }
  1164. #u20072 .text {
  1165. position:absolute;
  1166. align-self:center;
  1167. padding:2px 2px 2px 2px;
  1168. box-sizing:border-box;
  1169. width:100%;
  1170. }
  1171. #u20072_text {
  1172. border-width:0px;
  1173. word-wrap:break-word;
  1174. text-transform:none;
  1175. visibility:hidden;
  1176. }
  1177. #u20073 {
  1178. border-width:0px;
  1179. position:absolute;
  1180. left:0px;
  1181. top:0px;
  1182. width:0px;
  1183. height:0px;
  1184. }
  1185. #u20074_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. #u20074_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. #u20074_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. #u20074 {
  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. #u20074 .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. #u20074_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. #u20074.disabled {
  1276. }
  1277. .u20074_input_option {
  1278. font-size:14px;
  1279. }
  1280. #u20075_img {
  1281. border-width:0px;
  1282. position:absolute;
  1283. left:0px;
  1284. top:0px;
  1285. width:22px;
  1286. height:22px;
  1287. }
  1288. #u20075 {
  1289. border-width:0px;
  1290. position:absolute;
  1291. left:1194px;
  1292. top:14px;
  1293. width:22px;
  1294. height:22px;
  1295. display:flex;
  1296. }
  1297. #u20075 .text {
  1298. position:absolute;
  1299. align-self:center;
  1300. padding:2px 2px 2px 2px;
  1301. box-sizing:border-box;
  1302. width:100%;
  1303. }
  1304. #u20075_text {
  1305. border-width:0px;
  1306. word-wrap:break-word;
  1307. text-transform:none;
  1308. visibility:hidden;
  1309. }
  1310. #u20076_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. #u20076 {
  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. #u20076 .text {
  1345. position:absolute;
  1346. align-self:center;
  1347. padding:0px 0px 0px 0px;
  1348. box-sizing:border-box;
  1349. width:100%;
  1350. }
  1351. #u20076_text {
  1352. border-width:0px;
  1353. word-wrap:break-word;
  1354. text-transform:none;
  1355. }
  1356. #u20077_img {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:0px;
  1360. top:0px;
  1361. width:2px;
  1362. height:12px;
  1363. }
  1364. #u20077 {
  1365. border-width:0px;
  1366. position:absolute;
  1367. left:1452px;
  1368. top:19px;
  1369. width:1px;
  1370. height:11px;
  1371. display:flex;
  1372. }
  1373. #u20077 .text {
  1374. position:absolute;
  1375. align-self:center;
  1376. padding:2px 2px 2px 2px;
  1377. box-sizing:border-box;
  1378. width:100%;
  1379. }
  1380. #u20077_text {
  1381. border-width:0px;
  1382. word-wrap:break-word;
  1383. text-transform:none;
  1384. visibility:hidden;
  1385. }
  1386. #u20078 {
  1387. border-width:0px;
  1388. position:absolute;
  1389. left:0px;
  1390. top:0px;
  1391. width:0px;
  1392. height:0px;
  1393. }
  1394. #u20079_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. #u20079 {
  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. #u20079 .text {
  1427. position:absolute;
  1428. align-self:center;
  1429. padding:0px 0px 0px 0px;
  1430. box-sizing:border-box;
  1431. width:100%;
  1432. }
  1433. #u20079_text {
  1434. border-width:0px;
  1435. white-space:nowrap;
  1436. text-transform:none;
  1437. }
  1438. #u20080_img {
  1439. border-width:0px;
  1440. position:absolute;
  1441. left:0px;
  1442. top:0px;
  1443. width:22px;
  1444. height:22px;
  1445. }
  1446. #u20080 {
  1447. border-width:0px;
  1448. position:absolute;
  1449. left:20px;
  1450. top:1081px;
  1451. width:22px;
  1452. height:22px;
  1453. display:flex;
  1454. }
  1455. #u20080 .text {
  1456. position:absolute;
  1457. align-self:center;
  1458. padding:2px 2px 2px 2px;
  1459. box-sizing:border-box;
  1460. width:100%;
  1461. }
  1462. #u20080_text {
  1463. border-width:0px;
  1464. word-wrap:break-word;
  1465. text-transform:none;
  1466. visibility:hidden;
  1467. }
  1468. #u20081_img {
  1469. border-width:0px;
  1470. position:absolute;
  1471. left:0px;
  1472. top:0px;
  1473. width:69px;
  1474. height:2px;
  1475. }
  1476. #u20081 {
  1477. border-width:0px;
  1478. position:absolute;
  1479. left:20px;
  1480. top:1123px;
  1481. width:68px;
  1482. height:1px;
  1483. display:flex;
  1484. }
  1485. #u20081 .text {
  1486. position:absolute;
  1487. align-self:center;
  1488. padding:2px 2px 2px 2px;
  1489. box-sizing:border-box;
  1490. width:100%;
  1491. }
  1492. #u20081_text {
  1493. border-width:0px;
  1494. word-wrap:break-word;
  1495. text-transform:none;
  1496. visibility:hidden;
  1497. }
  1498. #u20082_img {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:0px;
  1502. top:0px;
  1503. width:69px;
  1504. height:2px;
  1505. }
  1506. #u20082 {
  1507. border-width:0px;
  1508. position:absolute;
  1509. left:20px;
  1510. top:1061px;
  1511. width:68px;
  1512. height:1px;
  1513. display:flex;
  1514. }
  1515. #u20082 .text {
  1516. position:absolute;
  1517. align-self:center;
  1518. padding:2px 2px 2px 2px;
  1519. box-sizing:border-box;
  1520. width:100%;
  1521. }
  1522. #u20082_text {
  1523. border-width:0px;
  1524. word-wrap:break-word;
  1525. text-transform:none;
  1526. visibility:hidden;
  1527. }
  1528. #u20083_img {
  1529. border-width:0px;
  1530. position:absolute;
  1531. left:0px;
  1532. top:0px;
  1533. width:57px;
  1534. height:2px;
  1535. }
  1536. #u20083 {
  1537. border-width:0px;
  1538. position:absolute;
  1539. left:20px;
  1540. top:112px;
  1541. width:56px;
  1542. height:1px;
  1543. display:flex;
  1544. }
  1545. #u20083 .text {
  1546. position:absolute;
  1547. align-self:center;
  1548. padding:2px 2px 2px 2px;
  1549. box-sizing:border-box;
  1550. width:100%;
  1551. }
  1552. #u20083_text {
  1553. border-width:0px;
  1554. word-wrap:break-word;
  1555. text-transform:none;
  1556. visibility:hidden;
  1557. }
  1558. #u20084 {
  1559. border-width:0px;
  1560. position:absolute;
  1561. left:0px;
  1562. top:0px;
  1563. width:0px;
  1564. height:0px;
  1565. }
  1566. #u20085_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. #u20085 {
  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. #u20085 .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. #u20085_text {
  1608. border-width:0px;
  1609. white-space:nowrap;
  1610. text-transform:none;
  1611. }
  1612. #u20086_img {
  1613. border-width:0px;
  1614. position:absolute;
  1615. left:0px;
  1616. top:0px;
  1617. width:18px;
  1618. height:14px;
  1619. }
  1620. #u20086 {
  1621. border-width:0px;
  1622. position:absolute;
  1623. left:20px;
  1624. top:75px;
  1625. width:18px;
  1626. height:14px;
  1627. display:flex;
  1628. }
  1629. #u20086 .text {
  1630. position:absolute;
  1631. align-self:center;
  1632. padding:2px 2px 2px 2px;
  1633. box-sizing:border-box;
  1634. width:100%;
  1635. }
  1636. #u20086_text {
  1637. border-width:0px;
  1638. word-wrap:break-word;
  1639. text-transform:none;
  1640. visibility:hidden;
  1641. }
  1642. #u20087_div {
  1643. border-width:0px;
  1644. position:absolute;
  1645. left:0px;
  1646. top:0px;
  1647. width:1265px;
  1648. height:1193px;
  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. #u20087 {
  1659. border-width:0px;
  1660. position:absolute;
  1661. left:329px;
  1662. top:50px;
  1663. width:1265px;
  1664. height:1193px;
  1665. display:flex;
  1666. color:#1890FF;
  1667. }
  1668. #u20087 .text {
  1669. position:absolute;
  1670. align-self:center;
  1671. padding:2px 2px 2px 2px;
  1672. box-sizing:border-box;
  1673. width:100%;
  1674. }
  1675. #u20087_text {
  1676. border-width:0px;
  1677. word-wrap:break-word;
  1678. text-transform:none;
  1679. visibility:hidden;
  1680. }
  1681. #u20088 {
  1682. border-width:0px;
  1683. position:absolute;
  1684. left:348px;
  1685. top:230px;
  1686. width:1231px;
  1687. height:366px;
  1688. }
  1689. #u20089_img {
  1690. border-width:0px;
  1691. position:absolute;
  1692. left:0px;
  1693. top:0px;
  1694. width:121px;
  1695. height:39px;
  1696. }
  1697. #u20089 {
  1698. border-width:0px;
  1699. position:absolute;
  1700. left:0px;
  1701. top:0px;
  1702. width:121px;
  1703. height:39px;
  1704. display:flex;
  1705. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1706. font-weight:400;
  1707. font-style:normal;
  1708. font-size:12px;
  1709. color:#FFFFFF;
  1710. }
  1711. #u20089 .text {
  1712. position:absolute;
  1713. align-self:center;
  1714. padding:2px 2px 2px 0px;
  1715. box-sizing:border-box;
  1716. width:100%;
  1717. }
  1718. #u20089_text {
  1719. border-width:0px;
  1720. word-wrap:break-word;
  1721. text-transform:none;
  1722. }
  1723. #u20090_img {
  1724. border-width:0px;
  1725. position:absolute;
  1726. left:0px;
  1727. top:0px;
  1728. width:121px;
  1729. height:39px;
  1730. }
  1731. #u20090 {
  1732. border-width:0px;
  1733. position:absolute;
  1734. left:121px;
  1735. top:0px;
  1736. width:121px;
  1737. height:39px;
  1738. display:flex;
  1739. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1740. font-weight:400;
  1741. font-style:normal;
  1742. font-size:12px;
  1743. color:#FFFFFF;
  1744. }
  1745. #u20090 .text {
  1746. position:absolute;
  1747. align-self:center;
  1748. padding:2px 2px 2px 0px;
  1749. box-sizing:border-box;
  1750. width:100%;
  1751. }
  1752. #u20090_text {
  1753. border-width:0px;
  1754. word-wrap:break-word;
  1755. text-transform:none;
  1756. }
  1757. #u20091_img {
  1758. border-width:0px;
  1759. position:absolute;
  1760. left:0px;
  1761. top:0px;
  1762. width:125px;
  1763. height:39px;
  1764. }
  1765. #u20091 {
  1766. border-width:0px;
  1767. position:absolute;
  1768. left:242px;
  1769. top:0px;
  1770. width:125px;
  1771. height:39px;
  1772. display:flex;
  1773. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1774. font-weight:400;
  1775. font-style:normal;
  1776. font-size:12px;
  1777. color:#FFFFFF;
  1778. }
  1779. #u20091 .text {
  1780. position:absolute;
  1781. align-self:center;
  1782. padding:2px 2px 2px 0px;
  1783. box-sizing:border-box;
  1784. width:100%;
  1785. }
  1786. #u20091_text {
  1787. border-width:0px;
  1788. word-wrap:break-word;
  1789. text-transform:none;
  1790. }
  1791. #u20092_img {
  1792. border-width:0px;
  1793. position:absolute;
  1794. left:0px;
  1795. top:0px;
  1796. width:121px;
  1797. height:39px;
  1798. }
  1799. #u20092 {
  1800. border-width:0px;
  1801. position:absolute;
  1802. left:367px;
  1803. top:0px;
  1804. width:121px;
  1805. height:39px;
  1806. display:flex;
  1807. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1808. font-weight:400;
  1809. font-style:normal;
  1810. font-size:12px;
  1811. color:#FFFFFF;
  1812. }
  1813. #u20092 .text {
  1814. position:absolute;
  1815. align-self:center;
  1816. padding:2px 2px 2px 0px;
  1817. box-sizing:border-box;
  1818. width:100%;
  1819. }
  1820. #u20092_text {
  1821. border-width:0px;
  1822. word-wrap:break-word;
  1823. text-transform:none;
  1824. }
  1825. #u20093_img {
  1826. border-width:0px;
  1827. position:absolute;
  1828. left:0px;
  1829. top:0px;
  1830. width:138px;
  1831. height:39px;
  1832. }
  1833. #u20093 {
  1834. border-width:0px;
  1835. position:absolute;
  1836. left:488px;
  1837. top:0px;
  1838. width:138px;
  1839. height:39px;
  1840. display:flex;
  1841. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1842. font-weight:400;
  1843. font-style:normal;
  1844. font-size:12px;
  1845. color:#FFFFFF;
  1846. }
  1847. #u20093 .text {
  1848. position:absolute;
  1849. align-self:center;
  1850. padding:2px 2px 2px 0px;
  1851. box-sizing:border-box;
  1852. width:100%;
  1853. }
  1854. #u20093_text {
  1855. border-width:0px;
  1856. word-wrap:break-word;
  1857. text-transform:none;
  1858. }
  1859. #u20094_img {
  1860. border-width:0px;
  1861. position:absolute;
  1862. left:0px;
  1863. top:0px;
  1864. width:123px;
  1865. height:39px;
  1866. }
  1867. #u20094 {
  1868. border-width:0px;
  1869. position:absolute;
  1870. left:626px;
  1871. top:0px;
  1872. width:123px;
  1873. height:39px;
  1874. display:flex;
  1875. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1876. font-weight:400;
  1877. font-style:normal;
  1878. font-size:12px;
  1879. color:#FFFFFF;
  1880. }
  1881. #u20094 .text {
  1882. position:absolute;
  1883. align-self:center;
  1884. padding:2px 2px 2px 0px;
  1885. box-sizing:border-box;
  1886. width:100%;
  1887. }
  1888. #u20094_text {
  1889. border-width:0px;
  1890. word-wrap:break-word;
  1891. text-transform:none;
  1892. }
  1893. #u20095_img {
  1894. border-width:0px;
  1895. position:absolute;
  1896. left:0px;
  1897. top:0px;
  1898. width:121px;
  1899. height:39px;
  1900. }
  1901. #u20095 {
  1902. border-width:0px;
  1903. position:absolute;
  1904. left:749px;
  1905. top:0px;
  1906. width:121px;
  1907. height:39px;
  1908. display:flex;
  1909. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1910. font-weight:400;
  1911. font-style:normal;
  1912. font-size:12px;
  1913. color:#FFFFFF;
  1914. }
  1915. #u20095 .text {
  1916. position:absolute;
  1917. align-self:center;
  1918. padding:2px 2px 2px 0px;
  1919. box-sizing:border-box;
  1920. width:100%;
  1921. }
  1922. #u20095_text {
  1923. border-width:0px;
  1924. word-wrap:break-word;
  1925. text-transform:none;
  1926. }
  1927. #u20096_img {
  1928. border-width:0px;
  1929. position:absolute;
  1930. left:0px;
  1931. top:0px;
  1932. width:121px;
  1933. height:39px;
  1934. }
  1935. #u20096 {
  1936. border-width:0px;
  1937. position:absolute;
  1938. left:870px;
  1939. top:0px;
  1940. width:121px;
  1941. height:39px;
  1942. display:flex;
  1943. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1944. font-weight:400;
  1945. font-style:normal;
  1946. font-size:12px;
  1947. color:#FFFFFF;
  1948. }
  1949. #u20096 .text {
  1950. position:absolute;
  1951. align-self:center;
  1952. padding:2px 2px 2px 0px;
  1953. box-sizing:border-box;
  1954. width:100%;
  1955. }
  1956. #u20096_text {
  1957. border-width:0px;
  1958. word-wrap:break-word;
  1959. text-transform:none;
  1960. }
  1961. #u20097_img {
  1962. border-width:0px;
  1963. position:absolute;
  1964. left:0px;
  1965. top:0px;
  1966. width:121px;
  1967. height:39px;
  1968. }
  1969. #u20097 {
  1970. border-width:0px;
  1971. position:absolute;
  1972. left:991px;
  1973. top:0px;
  1974. width:121px;
  1975. height:39px;
  1976. display:flex;
  1977. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1978. font-weight:400;
  1979. font-style:normal;
  1980. font-size:12px;
  1981. color:#FFFFFF;
  1982. }
  1983. #u20097 .text {
  1984. position:absolute;
  1985. align-self:center;
  1986. padding:2px 2px 2px 0px;
  1987. box-sizing:border-box;
  1988. width:100%;
  1989. }
  1990. #u20097_text {
  1991. border-width:0px;
  1992. word-wrap:break-word;
  1993. text-transform:none;
  1994. }
  1995. #u20098_img {
  1996. border-width:0px;
  1997. position:absolute;
  1998. left:0px;
  1999. top:0px;
  2000. width:119px;
  2001. height:39px;
  2002. }
  2003. #u20098 {
  2004. border-width:0px;
  2005. position:absolute;
  2006. left:1112px;
  2007. top:0px;
  2008. width:119px;
  2009. height:39px;
  2010. display:flex;
  2011. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2012. font-weight:400;
  2013. font-style:normal;
  2014. font-size:12px;
  2015. color:#FFFFFF;
  2016. }
  2017. #u20098 .text {
  2018. position:absolute;
  2019. align-self:center;
  2020. padding:2px 2px 2px 0px;
  2021. box-sizing:border-box;
  2022. width:100%;
  2023. }
  2024. #u20098_text {
  2025. border-width:0px;
  2026. word-wrap:break-word;
  2027. text-transform:none;
  2028. }
  2029. #u20099_img {
  2030. border-width:0px;
  2031. position:absolute;
  2032. left:0px;
  2033. top:0px;
  2034. width:121px;
  2035. height:38px;
  2036. }
  2037. #u20099 {
  2038. border-width:0px;
  2039. position:absolute;
  2040. left:0px;
  2041. top:39px;
  2042. width:121px;
  2043. height:38px;
  2044. display:flex;
  2045. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2046. font-weight:400;
  2047. font-style:normal;
  2048. font-size:12px;
  2049. }
  2050. #u20099 .text {
  2051. position:absolute;
  2052. align-self:center;
  2053. padding:2px 2px 2px 0px;
  2054. box-sizing:border-box;
  2055. width:100%;
  2056. }
  2057. #u20099_text {
  2058. border-width:0px;
  2059. word-wrap:break-word;
  2060. text-transform:none;
  2061. visibility:hidden;
  2062. }
  2063. #u20100_img {
  2064. border-width:0px;
  2065. position:absolute;
  2066. left:0px;
  2067. top:0px;
  2068. width:121px;
  2069. height:38px;
  2070. }
  2071. #u20100 {
  2072. border-width:0px;
  2073. position:absolute;
  2074. left:121px;
  2075. top:39px;
  2076. width:121px;
  2077. height:38px;
  2078. display:flex;
  2079. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2080. font-weight:400;
  2081. font-style:normal;
  2082. font-size:12px;
  2083. }
  2084. #u20100 .text {
  2085. position:absolute;
  2086. align-self:center;
  2087. padding:2px 2px 2px 0px;
  2088. box-sizing:border-box;
  2089. width:100%;
  2090. }
  2091. #u20100_text {
  2092. border-width:0px;
  2093. word-wrap:break-word;
  2094. text-transform:none;
  2095. visibility:hidden;
  2096. }
  2097. #u20101_img {
  2098. border-width:0px;
  2099. position:absolute;
  2100. left:0px;
  2101. top:0px;
  2102. width:125px;
  2103. height:38px;
  2104. }
  2105. #u20101 {
  2106. border-width:0px;
  2107. position:absolute;
  2108. left:242px;
  2109. top:39px;
  2110. width:125px;
  2111. height:38px;
  2112. display:flex;
  2113. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2114. font-weight:400;
  2115. font-style:normal;
  2116. font-size:12px;
  2117. }
  2118. #u20101 .text {
  2119. position:absolute;
  2120. align-self:center;
  2121. padding:2px 2px 2px 0px;
  2122. box-sizing:border-box;
  2123. width:100%;
  2124. }
  2125. #u20101_text {
  2126. border-width:0px;
  2127. word-wrap:break-word;
  2128. text-transform:none;
  2129. }
  2130. #u20102_img {
  2131. border-width:0px;
  2132. position:absolute;
  2133. left:0px;
  2134. top:0px;
  2135. width:121px;
  2136. height:38px;
  2137. }
  2138. #u20102 {
  2139. border-width:0px;
  2140. position:absolute;
  2141. left:367px;
  2142. top:39px;
  2143. width:121px;
  2144. height:38px;
  2145. display:flex;
  2146. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2147. font-weight:400;
  2148. font-style:normal;
  2149. font-size:12px;
  2150. }
  2151. #u20102 .text {
  2152. position:absolute;
  2153. align-self:center;
  2154. padding:2px 2px 2px 0px;
  2155. box-sizing:border-box;
  2156. width:100%;
  2157. }
  2158. #u20102_text {
  2159. border-width:0px;
  2160. word-wrap:break-word;
  2161. text-transform:none;
  2162. visibility:hidden;
  2163. }
  2164. #u20103_img {
  2165. border-width:0px;
  2166. position:absolute;
  2167. left:0px;
  2168. top:0px;
  2169. width:138px;
  2170. height:38px;
  2171. }
  2172. #u20103 {
  2173. border-width:0px;
  2174. position:absolute;
  2175. left:488px;
  2176. top:39px;
  2177. width:138px;
  2178. height:38px;
  2179. display:flex;
  2180. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2181. font-weight:400;
  2182. font-style:normal;
  2183. font-size:12px;
  2184. }
  2185. #u20103 .text {
  2186. position:absolute;
  2187. align-self:center;
  2188. padding:2px 2px 2px 0px;
  2189. box-sizing:border-box;
  2190. width:100%;
  2191. }
  2192. #u20103_text {
  2193. border-width:0px;
  2194. word-wrap:break-word;
  2195. text-transform:none;
  2196. visibility:hidden;
  2197. }
  2198. #u20104_img {
  2199. border-width:0px;
  2200. position:absolute;
  2201. left:0px;
  2202. top:0px;
  2203. width:123px;
  2204. height:38px;
  2205. }
  2206. #u20104 {
  2207. border-width:0px;
  2208. position:absolute;
  2209. left:626px;
  2210. top:39px;
  2211. width:123px;
  2212. height:38px;
  2213. display:flex;
  2214. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2215. font-weight:400;
  2216. font-style:normal;
  2217. font-size:12px;
  2218. }
  2219. #u20104 .text {
  2220. position:absolute;
  2221. align-self:center;
  2222. padding:2px 2px 2px 0px;
  2223. box-sizing:border-box;
  2224. width:100%;
  2225. }
  2226. #u20104_text {
  2227. border-width:0px;
  2228. word-wrap:break-word;
  2229. text-transform:none;
  2230. visibility:hidden;
  2231. }
  2232. #u20105_img {
  2233. border-width:0px;
  2234. position:absolute;
  2235. left:0px;
  2236. top:0px;
  2237. width:121px;
  2238. height:38px;
  2239. }
  2240. #u20105 {
  2241. border-width:0px;
  2242. position:absolute;
  2243. left:749px;
  2244. top:39px;
  2245. width:121px;
  2246. height:38px;
  2247. display:flex;
  2248. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2249. font-weight:400;
  2250. font-style:normal;
  2251. font-size:12px;
  2252. }
  2253. #u20105 .text {
  2254. position:absolute;
  2255. align-self:center;
  2256. padding:2px 2px 2px 0px;
  2257. box-sizing:border-box;
  2258. width:100%;
  2259. }
  2260. #u20105_text {
  2261. border-width:0px;
  2262. word-wrap:break-word;
  2263. text-transform:none;
  2264. visibility:hidden;
  2265. }
  2266. #u20106_img {
  2267. border-width:0px;
  2268. position:absolute;
  2269. left:0px;
  2270. top:0px;
  2271. width:121px;
  2272. height:38px;
  2273. }
  2274. #u20106 {
  2275. border-width:0px;
  2276. position:absolute;
  2277. left:870px;
  2278. top:39px;
  2279. width:121px;
  2280. height:38px;
  2281. display:flex;
  2282. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2283. font-weight:400;
  2284. font-style:normal;
  2285. font-size:12px;
  2286. }
  2287. #u20106 .text {
  2288. position:absolute;
  2289. align-self:center;
  2290. padding:2px 2px 2px 0px;
  2291. box-sizing:border-box;
  2292. width:100%;
  2293. }
  2294. #u20106_text {
  2295. border-width:0px;
  2296. word-wrap:break-word;
  2297. text-transform:none;
  2298. visibility:hidden;
  2299. }
  2300. #u20107_img {
  2301. border-width:0px;
  2302. position:absolute;
  2303. left:0px;
  2304. top:0px;
  2305. width:121px;
  2306. height:38px;
  2307. }
  2308. #u20107 {
  2309. border-width:0px;
  2310. position:absolute;
  2311. left:991px;
  2312. top:39px;
  2313. width:121px;
  2314. height:38px;
  2315. display:flex;
  2316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2317. font-weight:400;
  2318. font-style:normal;
  2319. font-size:12px;
  2320. }
  2321. #u20107 .text {
  2322. position:absolute;
  2323. align-self:center;
  2324. padding:2px 2px 2px 0px;
  2325. box-sizing:border-box;
  2326. width:100%;
  2327. }
  2328. #u20107_text {
  2329. border-width:0px;
  2330. word-wrap:break-word;
  2331. text-transform:none;
  2332. visibility:hidden;
  2333. }
  2334. #u20108_img {
  2335. border-width:0px;
  2336. position:absolute;
  2337. left:0px;
  2338. top:0px;
  2339. width:119px;
  2340. height:38px;
  2341. }
  2342. #u20108 {
  2343. border-width:0px;
  2344. position:absolute;
  2345. left:1112px;
  2346. top:39px;
  2347. width:119px;
  2348. height:38px;
  2349. display:flex;
  2350. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2351. font-weight:400;
  2352. font-style:normal;
  2353. font-size:12px;
  2354. }
  2355. #u20108 .text {
  2356. position:absolute;
  2357. align-self:center;
  2358. padding:2px 2px 2px 0px;
  2359. box-sizing:border-box;
  2360. width:100%;
  2361. }
  2362. #u20108_text {
  2363. border-width:0px;
  2364. word-wrap:break-word;
  2365. text-transform:none;
  2366. visibility:hidden;
  2367. }
  2368. #u20109_img {
  2369. border-width:0px;
  2370. position:absolute;
  2371. left:0px;
  2372. top:0px;
  2373. width:121px;
  2374. height:38px;
  2375. }
  2376. #u20109 {
  2377. border-width:0px;
  2378. position:absolute;
  2379. left:0px;
  2380. top:77px;
  2381. width:121px;
  2382. height:38px;
  2383. display:flex;
  2384. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2385. font-weight:400;
  2386. font-style:normal;
  2387. font-size:12px;
  2388. }
  2389. #u20109 .text {
  2390. position:absolute;
  2391. align-self:center;
  2392. padding:2px 2px 2px 0px;
  2393. box-sizing:border-box;
  2394. width:100%;
  2395. }
  2396. #u20109_text {
  2397. border-width:0px;
  2398. word-wrap:break-word;
  2399. text-transform:none;
  2400. visibility:hidden;
  2401. }
  2402. #u20110_img {
  2403. border-width:0px;
  2404. position:absolute;
  2405. left:0px;
  2406. top:0px;
  2407. width:121px;
  2408. height:38px;
  2409. }
  2410. #u20110 {
  2411. border-width:0px;
  2412. position:absolute;
  2413. left:121px;
  2414. top:77px;
  2415. width:121px;
  2416. height:38px;
  2417. display:flex;
  2418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2419. font-weight:400;
  2420. font-style:normal;
  2421. font-size:12px;
  2422. }
  2423. #u20110 .text {
  2424. position:absolute;
  2425. align-self:center;
  2426. padding:2px 2px 2px 0px;
  2427. box-sizing:border-box;
  2428. width:100%;
  2429. }
  2430. #u20110_text {
  2431. border-width:0px;
  2432. word-wrap:break-word;
  2433. text-transform:none;
  2434. visibility:hidden;
  2435. }
  2436. #u20111_img {
  2437. border-width:0px;
  2438. position:absolute;
  2439. left:0px;
  2440. top:0px;
  2441. width:125px;
  2442. height:38px;
  2443. }
  2444. #u20111 {
  2445. border-width:0px;
  2446. position:absolute;
  2447. left:242px;
  2448. top:77px;
  2449. width:125px;
  2450. height:38px;
  2451. display:flex;
  2452. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2453. font-weight:400;
  2454. font-style:normal;
  2455. font-size:12px;
  2456. }
  2457. #u20111 .text {
  2458. position:absolute;
  2459. align-self:center;
  2460. padding:2px 2px 2px 0px;
  2461. box-sizing:border-box;
  2462. width:100%;
  2463. }
  2464. #u20111_text {
  2465. border-width:0px;
  2466. word-wrap:break-word;
  2467. text-transform:none;
  2468. visibility:hidden;
  2469. }
  2470. #u20112_img {
  2471. border-width:0px;
  2472. position:absolute;
  2473. left:0px;
  2474. top:0px;
  2475. width:121px;
  2476. height:38px;
  2477. }
  2478. #u20112 {
  2479. border-width:0px;
  2480. position:absolute;
  2481. left:367px;
  2482. top:77px;
  2483. width:121px;
  2484. height:38px;
  2485. display:flex;
  2486. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2487. font-weight:400;
  2488. font-style:normal;
  2489. font-size:12px;
  2490. }
  2491. #u20112 .text {
  2492. position:absolute;
  2493. align-self:center;
  2494. padding:2px 2px 2px 0px;
  2495. box-sizing:border-box;
  2496. width:100%;
  2497. }
  2498. #u20112_text {
  2499. border-width:0px;
  2500. word-wrap:break-word;
  2501. text-transform:none;
  2502. visibility:hidden;
  2503. }
  2504. #u20113_img {
  2505. border-width:0px;
  2506. position:absolute;
  2507. left:0px;
  2508. top:0px;
  2509. width:138px;
  2510. height:38px;
  2511. }
  2512. #u20113 {
  2513. border-width:0px;
  2514. position:absolute;
  2515. left:488px;
  2516. top:77px;
  2517. width:138px;
  2518. height:38px;
  2519. display:flex;
  2520. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2521. font-weight:400;
  2522. font-style:normal;
  2523. font-size:12px;
  2524. }
  2525. #u20113 .text {
  2526. position:absolute;
  2527. align-self:center;
  2528. padding:2px 2px 2px 0px;
  2529. box-sizing:border-box;
  2530. width:100%;
  2531. }
  2532. #u20113_text {
  2533. border-width:0px;
  2534. word-wrap:break-word;
  2535. text-transform:none;
  2536. visibility:hidden;
  2537. }
  2538. #u20114_img {
  2539. border-width:0px;
  2540. position:absolute;
  2541. left:0px;
  2542. top:0px;
  2543. width:123px;
  2544. height:38px;
  2545. }
  2546. #u20114 {
  2547. border-width:0px;
  2548. position:absolute;
  2549. left:626px;
  2550. top:77px;
  2551. width:123px;
  2552. height:38px;
  2553. display:flex;
  2554. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2555. font-weight:400;
  2556. font-style:normal;
  2557. font-size:12px;
  2558. }
  2559. #u20114 .text {
  2560. position:absolute;
  2561. align-self:center;
  2562. padding:2px 2px 2px 0px;
  2563. box-sizing:border-box;
  2564. width:100%;
  2565. }
  2566. #u20114_text {
  2567. border-width:0px;
  2568. word-wrap:break-word;
  2569. text-transform:none;
  2570. visibility:hidden;
  2571. }
  2572. #u20115_img {
  2573. border-width:0px;
  2574. position:absolute;
  2575. left:0px;
  2576. top:0px;
  2577. width:121px;
  2578. height:38px;
  2579. }
  2580. #u20115 {
  2581. border-width:0px;
  2582. position:absolute;
  2583. left:749px;
  2584. top:77px;
  2585. width:121px;
  2586. height:38px;
  2587. display:flex;
  2588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2589. font-weight:400;
  2590. font-style:normal;
  2591. font-size:12px;
  2592. }
  2593. #u20115 .text {
  2594. position:absolute;
  2595. align-self:center;
  2596. padding:2px 2px 2px 0px;
  2597. box-sizing:border-box;
  2598. width:100%;
  2599. }
  2600. #u20115_text {
  2601. border-width:0px;
  2602. word-wrap:break-word;
  2603. text-transform:none;
  2604. visibility:hidden;
  2605. }
  2606. #u20116_img {
  2607. border-width:0px;
  2608. position:absolute;
  2609. left:0px;
  2610. top:0px;
  2611. width:121px;
  2612. height:38px;
  2613. }
  2614. #u20116 {
  2615. border-width:0px;
  2616. position:absolute;
  2617. left:870px;
  2618. top:77px;
  2619. width:121px;
  2620. height:38px;
  2621. display:flex;
  2622. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2623. font-weight:400;
  2624. font-style:normal;
  2625. font-size:12px;
  2626. }
  2627. #u20116 .text {
  2628. position:absolute;
  2629. align-self:center;
  2630. padding:2px 2px 2px 0px;
  2631. box-sizing:border-box;
  2632. width:100%;
  2633. }
  2634. #u20116_text {
  2635. border-width:0px;
  2636. word-wrap:break-word;
  2637. text-transform:none;
  2638. visibility:hidden;
  2639. }
  2640. #u20117_img {
  2641. border-width:0px;
  2642. position:absolute;
  2643. left:0px;
  2644. top:0px;
  2645. width:121px;
  2646. height:38px;
  2647. }
  2648. #u20117 {
  2649. border-width:0px;
  2650. position:absolute;
  2651. left:991px;
  2652. top:77px;
  2653. width:121px;
  2654. height:38px;
  2655. display:flex;
  2656. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2657. font-weight:400;
  2658. font-style:normal;
  2659. font-size:12px;
  2660. }
  2661. #u20117 .text {
  2662. position:absolute;
  2663. align-self:center;
  2664. padding:2px 2px 2px 0px;
  2665. box-sizing:border-box;
  2666. width:100%;
  2667. }
  2668. #u20117_text {
  2669. border-width:0px;
  2670. word-wrap:break-word;
  2671. text-transform:none;
  2672. visibility:hidden;
  2673. }
  2674. #u20118_img {
  2675. border-width:0px;
  2676. position:absolute;
  2677. left:0px;
  2678. top:0px;
  2679. width:119px;
  2680. height:38px;
  2681. }
  2682. #u20118 {
  2683. border-width:0px;
  2684. position:absolute;
  2685. left:1112px;
  2686. top:77px;
  2687. width:119px;
  2688. height:38px;
  2689. display:flex;
  2690. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2691. font-weight:400;
  2692. font-style:normal;
  2693. font-size:12px;
  2694. }
  2695. #u20118 .text {
  2696. position:absolute;
  2697. align-self:center;
  2698. padding:2px 2px 2px 0px;
  2699. box-sizing:border-box;
  2700. width:100%;
  2701. }
  2702. #u20118_text {
  2703. border-width:0px;
  2704. word-wrap:break-word;
  2705. text-transform:none;
  2706. visibility:hidden;
  2707. }
  2708. #u20119_img {
  2709. border-width:0px;
  2710. position:absolute;
  2711. left:0px;
  2712. top:0px;
  2713. width:121px;
  2714. height:38px;
  2715. }
  2716. #u20119 {
  2717. border-width:0px;
  2718. position:absolute;
  2719. left:0px;
  2720. top:115px;
  2721. width:121px;
  2722. height:38px;
  2723. display:flex;
  2724. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2725. font-weight:400;
  2726. font-style:normal;
  2727. font-size:12px;
  2728. }
  2729. #u20119 .text {
  2730. position:absolute;
  2731. align-self:center;
  2732. padding:2px 2px 2px 0px;
  2733. box-sizing:border-box;
  2734. width:100%;
  2735. }
  2736. #u20119_text {
  2737. border-width:0px;
  2738. word-wrap:break-word;
  2739. text-transform:none;
  2740. visibility:hidden;
  2741. }
  2742. #u20120_img {
  2743. border-width:0px;
  2744. position:absolute;
  2745. left:0px;
  2746. top:0px;
  2747. width:121px;
  2748. height:38px;
  2749. }
  2750. #u20120 {
  2751. border-width:0px;
  2752. position:absolute;
  2753. left:121px;
  2754. top:115px;
  2755. width:121px;
  2756. height:38px;
  2757. display:flex;
  2758. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2759. font-weight:400;
  2760. font-style:normal;
  2761. font-size:12px;
  2762. }
  2763. #u20120 .text {
  2764. position:absolute;
  2765. align-self:center;
  2766. padding:2px 2px 2px 0px;
  2767. box-sizing:border-box;
  2768. width:100%;
  2769. }
  2770. #u20120_text {
  2771. border-width:0px;
  2772. word-wrap:break-word;
  2773. text-transform:none;
  2774. visibility:hidden;
  2775. }
  2776. #u20121_img {
  2777. border-width:0px;
  2778. position:absolute;
  2779. left:0px;
  2780. top:0px;
  2781. width:125px;
  2782. height:38px;
  2783. }
  2784. #u20121 {
  2785. border-width:0px;
  2786. position:absolute;
  2787. left:242px;
  2788. top:115px;
  2789. width:125px;
  2790. height:38px;
  2791. display:flex;
  2792. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2793. font-weight:400;
  2794. font-style:normal;
  2795. font-size:12px;
  2796. }
  2797. #u20121 .text {
  2798. position:absolute;
  2799. align-self:center;
  2800. padding:2px 2px 2px 0px;
  2801. box-sizing:border-box;
  2802. width:100%;
  2803. }
  2804. #u20121_text {
  2805. border-width:0px;
  2806. word-wrap:break-word;
  2807. text-transform:none;
  2808. visibility:hidden;
  2809. }
  2810. #u20122_img {
  2811. border-width:0px;
  2812. position:absolute;
  2813. left:0px;
  2814. top:0px;
  2815. width:121px;
  2816. height:38px;
  2817. }
  2818. #u20122 {
  2819. border-width:0px;
  2820. position:absolute;
  2821. left:367px;
  2822. top:115px;
  2823. width:121px;
  2824. height:38px;
  2825. display:flex;
  2826. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2827. font-weight:400;
  2828. font-style:normal;
  2829. font-size:12px;
  2830. }
  2831. #u20122 .text {
  2832. position:absolute;
  2833. align-self:center;
  2834. padding:2px 2px 2px 0px;
  2835. box-sizing:border-box;
  2836. width:100%;
  2837. }
  2838. #u20122_text {
  2839. border-width:0px;
  2840. word-wrap:break-word;
  2841. text-transform:none;
  2842. visibility:hidden;
  2843. }
  2844. #u20123_img {
  2845. border-width:0px;
  2846. position:absolute;
  2847. left:0px;
  2848. top:0px;
  2849. width:138px;
  2850. height:38px;
  2851. }
  2852. #u20123 {
  2853. border-width:0px;
  2854. position:absolute;
  2855. left:488px;
  2856. top:115px;
  2857. width:138px;
  2858. height:38px;
  2859. display:flex;
  2860. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2861. font-weight:400;
  2862. font-style:normal;
  2863. font-size:12px;
  2864. }
  2865. #u20123 .text {
  2866. position:absolute;
  2867. align-self:center;
  2868. padding:2px 2px 2px 0px;
  2869. box-sizing:border-box;
  2870. width:100%;
  2871. }
  2872. #u20123_text {
  2873. border-width:0px;
  2874. word-wrap:break-word;
  2875. text-transform:none;
  2876. visibility:hidden;
  2877. }
  2878. #u20124_img {
  2879. border-width:0px;
  2880. position:absolute;
  2881. left:0px;
  2882. top:0px;
  2883. width:123px;
  2884. height:38px;
  2885. }
  2886. #u20124 {
  2887. border-width:0px;
  2888. position:absolute;
  2889. left:626px;
  2890. top:115px;
  2891. width:123px;
  2892. height:38px;
  2893. display:flex;
  2894. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2895. font-weight:400;
  2896. font-style:normal;
  2897. font-size:12px;
  2898. }
  2899. #u20124 .text {
  2900. position:absolute;
  2901. align-self:center;
  2902. padding:2px 2px 2px 0px;
  2903. box-sizing:border-box;
  2904. width:100%;
  2905. }
  2906. #u20124_text {
  2907. border-width:0px;
  2908. word-wrap:break-word;
  2909. text-transform:none;
  2910. visibility:hidden;
  2911. }
  2912. #u20125_img {
  2913. border-width:0px;
  2914. position:absolute;
  2915. left:0px;
  2916. top:0px;
  2917. width:121px;
  2918. height:38px;
  2919. }
  2920. #u20125 {
  2921. border-width:0px;
  2922. position:absolute;
  2923. left:749px;
  2924. top:115px;
  2925. width:121px;
  2926. height:38px;
  2927. display:flex;
  2928. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2929. font-weight:400;
  2930. font-style:normal;
  2931. font-size:12px;
  2932. }
  2933. #u20125 .text {
  2934. position:absolute;
  2935. align-self:center;
  2936. padding:2px 2px 2px 0px;
  2937. box-sizing:border-box;
  2938. width:100%;
  2939. }
  2940. #u20125_text {
  2941. border-width:0px;
  2942. word-wrap:break-word;
  2943. text-transform:none;
  2944. visibility:hidden;
  2945. }
  2946. #u20126_img {
  2947. border-width:0px;
  2948. position:absolute;
  2949. left:0px;
  2950. top:0px;
  2951. width:121px;
  2952. height:38px;
  2953. }
  2954. #u20126 {
  2955. border-width:0px;
  2956. position:absolute;
  2957. left:870px;
  2958. top:115px;
  2959. width:121px;
  2960. height:38px;
  2961. display:flex;
  2962. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2963. font-weight:400;
  2964. font-style:normal;
  2965. font-size:12px;
  2966. }
  2967. #u20126 .text {
  2968. position:absolute;
  2969. align-self:center;
  2970. padding:2px 2px 2px 0px;
  2971. box-sizing:border-box;
  2972. width:100%;
  2973. }
  2974. #u20126_text {
  2975. border-width:0px;
  2976. word-wrap:break-word;
  2977. text-transform:none;
  2978. visibility:hidden;
  2979. }
  2980. #u20127_img {
  2981. border-width:0px;
  2982. position:absolute;
  2983. left:0px;
  2984. top:0px;
  2985. width:121px;
  2986. height:38px;
  2987. }
  2988. #u20127 {
  2989. border-width:0px;
  2990. position:absolute;
  2991. left:991px;
  2992. top:115px;
  2993. width:121px;
  2994. height:38px;
  2995. display:flex;
  2996. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2997. font-weight:400;
  2998. font-style:normal;
  2999. font-size:12px;
  3000. }
  3001. #u20127 .text {
  3002. position:absolute;
  3003. align-self:center;
  3004. padding:2px 2px 2px 0px;
  3005. box-sizing:border-box;
  3006. width:100%;
  3007. }
  3008. #u20127_text {
  3009. border-width:0px;
  3010. word-wrap:break-word;
  3011. text-transform:none;
  3012. visibility:hidden;
  3013. }
  3014. #u20128_img {
  3015. border-width:0px;
  3016. position:absolute;
  3017. left:0px;
  3018. top:0px;
  3019. width:119px;
  3020. height:38px;
  3021. }
  3022. #u20128 {
  3023. border-width:0px;
  3024. position:absolute;
  3025. left:1112px;
  3026. top:115px;
  3027. width:119px;
  3028. height:38px;
  3029. display:flex;
  3030. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3031. font-weight:400;
  3032. font-style:normal;
  3033. font-size:12px;
  3034. }
  3035. #u20128 .text {
  3036. position:absolute;
  3037. align-self:center;
  3038. padding:2px 2px 2px 0px;
  3039. box-sizing:border-box;
  3040. width:100%;
  3041. }
  3042. #u20128_text {
  3043. border-width:0px;
  3044. word-wrap:break-word;
  3045. text-transform:none;
  3046. visibility:hidden;
  3047. }
  3048. #u20129_img {
  3049. border-width:0px;
  3050. position:absolute;
  3051. left:0px;
  3052. top:0px;
  3053. width:121px;
  3054. height:38px;
  3055. }
  3056. #u20129 {
  3057. border-width:0px;
  3058. position:absolute;
  3059. left:0px;
  3060. top:153px;
  3061. width:121px;
  3062. height:38px;
  3063. display:flex;
  3064. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3065. font-weight:400;
  3066. font-style:normal;
  3067. font-size:12px;
  3068. }
  3069. #u20129 .text {
  3070. position:absolute;
  3071. align-self:center;
  3072. padding:2px 2px 2px 0px;
  3073. box-sizing:border-box;
  3074. width:100%;
  3075. }
  3076. #u20129_text {
  3077. border-width:0px;
  3078. word-wrap:break-word;
  3079. text-transform:none;
  3080. visibility:hidden;
  3081. }
  3082. #u20130_img {
  3083. border-width:0px;
  3084. position:absolute;
  3085. left:0px;
  3086. top:0px;
  3087. width:121px;
  3088. height:38px;
  3089. }
  3090. #u20130 {
  3091. border-width:0px;
  3092. position:absolute;
  3093. left:121px;
  3094. top:153px;
  3095. width:121px;
  3096. height:38px;
  3097. display:flex;
  3098. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3099. font-weight:400;
  3100. font-style:normal;
  3101. font-size:12px;
  3102. }
  3103. #u20130 .text {
  3104. position:absolute;
  3105. align-self:center;
  3106. padding:2px 2px 2px 0px;
  3107. box-sizing:border-box;
  3108. width:100%;
  3109. }
  3110. #u20130_text {
  3111. border-width:0px;
  3112. word-wrap:break-word;
  3113. text-transform:none;
  3114. visibility:hidden;
  3115. }
  3116. #u20131_img {
  3117. border-width:0px;
  3118. position:absolute;
  3119. left:0px;
  3120. top:0px;
  3121. width:125px;
  3122. height:38px;
  3123. }
  3124. #u20131 {
  3125. border-width:0px;
  3126. position:absolute;
  3127. left:242px;
  3128. top:153px;
  3129. width:125px;
  3130. height:38px;
  3131. display:flex;
  3132. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3133. font-weight:400;
  3134. font-style:normal;
  3135. font-size:12px;
  3136. }
  3137. #u20131 .text {
  3138. position:absolute;
  3139. align-self:center;
  3140. padding:2px 2px 2px 0px;
  3141. box-sizing:border-box;
  3142. width:100%;
  3143. }
  3144. #u20131_text {
  3145. border-width:0px;
  3146. word-wrap:break-word;
  3147. text-transform:none;
  3148. visibility:hidden;
  3149. }
  3150. #u20132_img {
  3151. border-width:0px;
  3152. position:absolute;
  3153. left:0px;
  3154. top:0px;
  3155. width:121px;
  3156. height:38px;
  3157. }
  3158. #u20132 {
  3159. border-width:0px;
  3160. position:absolute;
  3161. left:367px;
  3162. top:153px;
  3163. width:121px;
  3164. height:38px;
  3165. display:flex;
  3166. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3167. font-weight:400;
  3168. font-style:normal;
  3169. font-size:12px;
  3170. }
  3171. #u20132 .text {
  3172. position:absolute;
  3173. align-self:center;
  3174. padding:2px 2px 2px 0px;
  3175. box-sizing:border-box;
  3176. width:100%;
  3177. }
  3178. #u20132_text {
  3179. border-width:0px;
  3180. word-wrap:break-word;
  3181. text-transform:none;
  3182. visibility:hidden;
  3183. }
  3184. #u20133_img {
  3185. border-width:0px;
  3186. position:absolute;
  3187. left:0px;
  3188. top:0px;
  3189. width:138px;
  3190. height:38px;
  3191. }
  3192. #u20133 {
  3193. border-width:0px;
  3194. position:absolute;
  3195. left:488px;
  3196. top:153px;
  3197. width:138px;
  3198. height:38px;
  3199. display:flex;
  3200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3201. font-weight:400;
  3202. font-style:normal;
  3203. font-size:12px;
  3204. }
  3205. #u20133 .text {
  3206. position:absolute;
  3207. align-self:center;
  3208. padding:2px 2px 2px 0px;
  3209. box-sizing:border-box;
  3210. width:100%;
  3211. }
  3212. #u20133_text {
  3213. border-width:0px;
  3214. word-wrap:break-word;
  3215. text-transform:none;
  3216. visibility:hidden;
  3217. }
  3218. #u20134_img {
  3219. border-width:0px;
  3220. position:absolute;
  3221. left:0px;
  3222. top:0px;
  3223. width:123px;
  3224. height:38px;
  3225. }
  3226. #u20134 {
  3227. border-width:0px;
  3228. position:absolute;
  3229. left:626px;
  3230. top:153px;
  3231. width:123px;
  3232. height:38px;
  3233. display:flex;
  3234. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3235. font-weight:400;
  3236. font-style:normal;
  3237. font-size:12px;
  3238. }
  3239. #u20134 .text {
  3240. position:absolute;
  3241. align-self:center;
  3242. padding:2px 2px 2px 0px;
  3243. box-sizing:border-box;
  3244. width:100%;
  3245. }
  3246. #u20134_text {
  3247. border-width:0px;
  3248. word-wrap:break-word;
  3249. text-transform:none;
  3250. visibility:hidden;
  3251. }
  3252. #u20135_img {
  3253. border-width:0px;
  3254. position:absolute;
  3255. left:0px;
  3256. top:0px;
  3257. width:121px;
  3258. height:38px;
  3259. }
  3260. #u20135 {
  3261. border-width:0px;
  3262. position:absolute;
  3263. left:749px;
  3264. top:153px;
  3265. width:121px;
  3266. height:38px;
  3267. display:flex;
  3268. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3269. font-weight:400;
  3270. font-style:normal;
  3271. font-size:12px;
  3272. }
  3273. #u20135 .text {
  3274. position:absolute;
  3275. align-self:center;
  3276. padding:2px 2px 2px 0px;
  3277. box-sizing:border-box;
  3278. width:100%;
  3279. }
  3280. #u20135_text {
  3281. border-width:0px;
  3282. word-wrap:break-word;
  3283. text-transform:none;
  3284. visibility:hidden;
  3285. }
  3286. #u20136_img {
  3287. border-width:0px;
  3288. position:absolute;
  3289. left:0px;
  3290. top:0px;
  3291. width:121px;
  3292. height:38px;
  3293. }
  3294. #u20136 {
  3295. border-width:0px;
  3296. position:absolute;
  3297. left:870px;
  3298. top:153px;
  3299. width:121px;
  3300. height:38px;
  3301. display:flex;
  3302. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3303. font-weight:400;
  3304. font-style:normal;
  3305. font-size:12px;
  3306. }
  3307. #u20136 .text {
  3308. position:absolute;
  3309. align-self:center;
  3310. padding:2px 2px 2px 0px;
  3311. box-sizing:border-box;
  3312. width:100%;
  3313. }
  3314. #u20136_text {
  3315. border-width:0px;
  3316. word-wrap:break-word;
  3317. text-transform:none;
  3318. visibility:hidden;
  3319. }
  3320. #u20137_img {
  3321. border-width:0px;
  3322. position:absolute;
  3323. left:0px;
  3324. top:0px;
  3325. width:121px;
  3326. height:38px;
  3327. }
  3328. #u20137 {
  3329. border-width:0px;
  3330. position:absolute;
  3331. left:991px;
  3332. top:153px;
  3333. width:121px;
  3334. height:38px;
  3335. display:flex;
  3336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3337. font-weight:400;
  3338. font-style:normal;
  3339. font-size:12px;
  3340. }
  3341. #u20137 .text {
  3342. position:absolute;
  3343. align-self:center;
  3344. padding:2px 2px 2px 0px;
  3345. box-sizing:border-box;
  3346. width:100%;
  3347. }
  3348. #u20137_text {
  3349. border-width:0px;
  3350. word-wrap:break-word;
  3351. text-transform:none;
  3352. visibility:hidden;
  3353. }
  3354. #u20138_img {
  3355. border-width:0px;
  3356. position:absolute;
  3357. left:0px;
  3358. top:0px;
  3359. width:119px;
  3360. height:38px;
  3361. }
  3362. #u20138 {
  3363. border-width:0px;
  3364. position:absolute;
  3365. left:1112px;
  3366. top:153px;
  3367. width:119px;
  3368. height:38px;
  3369. display:flex;
  3370. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3371. font-weight:400;
  3372. font-style:normal;
  3373. font-size:12px;
  3374. }
  3375. #u20138 .text {
  3376. position:absolute;
  3377. align-self:center;
  3378. padding:2px 2px 2px 0px;
  3379. box-sizing:border-box;
  3380. width:100%;
  3381. }
  3382. #u20138_text {
  3383. border-width:0px;
  3384. word-wrap:break-word;
  3385. text-transform:none;
  3386. visibility:hidden;
  3387. }
  3388. #u20139_img {
  3389. border-width:0px;
  3390. position:absolute;
  3391. left:0px;
  3392. top:0px;
  3393. width:121px;
  3394. height:35px;
  3395. }
  3396. #u20139 {
  3397. border-width:0px;
  3398. position:absolute;
  3399. left:0px;
  3400. top:191px;
  3401. width:121px;
  3402. height:35px;
  3403. display:flex;
  3404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3405. font-weight:400;
  3406. font-style:normal;
  3407. font-size:12px;
  3408. color:#606266;
  3409. }
  3410. #u20139 .text {
  3411. position:absolute;
  3412. align-self:center;
  3413. padding:2px 2px 2px 0px;
  3414. box-sizing:border-box;
  3415. width:100%;
  3416. }
  3417. #u20139_text {
  3418. border-width:0px;
  3419. word-wrap:break-word;
  3420. text-transform:none;
  3421. visibility:hidden;
  3422. }
  3423. #u20140_img {
  3424. border-width:0px;
  3425. position:absolute;
  3426. left:0px;
  3427. top:0px;
  3428. width:121px;
  3429. height:35px;
  3430. }
  3431. #u20140 {
  3432. border-width:0px;
  3433. position:absolute;
  3434. left:121px;
  3435. top:191px;
  3436. width:121px;
  3437. height:35px;
  3438. display:flex;
  3439. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3440. font-weight:400;
  3441. font-style:normal;
  3442. font-size:12px;
  3443. color:#606266;
  3444. }
  3445. #u20140 .text {
  3446. position:absolute;
  3447. align-self:center;
  3448. padding:2px 2px 2px 0px;
  3449. box-sizing:border-box;
  3450. width:100%;
  3451. }
  3452. #u20140_text {
  3453. border-width:0px;
  3454. word-wrap:break-word;
  3455. text-transform:none;
  3456. visibility:hidden;
  3457. }
  3458. #u20141_img {
  3459. border-width:0px;
  3460. position:absolute;
  3461. left:0px;
  3462. top:0px;
  3463. width:125px;
  3464. height:35px;
  3465. }
  3466. #u20141 {
  3467. border-width:0px;
  3468. position:absolute;
  3469. left:242px;
  3470. top:191px;
  3471. width:125px;
  3472. height:35px;
  3473. display:flex;
  3474. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3475. font-weight:400;
  3476. font-style:normal;
  3477. font-size:12px;
  3478. color:#606266;
  3479. }
  3480. #u20141 .text {
  3481. position:absolute;
  3482. align-self:center;
  3483. padding:2px 2px 2px 0px;
  3484. box-sizing:border-box;
  3485. width:100%;
  3486. }
  3487. #u20141_text {
  3488. border-width:0px;
  3489. word-wrap:break-word;
  3490. text-transform:none;
  3491. visibility:hidden;
  3492. }
  3493. #u20142_img {
  3494. border-width:0px;
  3495. position:absolute;
  3496. left:0px;
  3497. top:0px;
  3498. width:121px;
  3499. height:35px;
  3500. }
  3501. #u20142 {
  3502. border-width:0px;
  3503. position:absolute;
  3504. left:367px;
  3505. top:191px;
  3506. width:121px;
  3507. height:35px;
  3508. display:flex;
  3509. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3510. font-weight:400;
  3511. font-style:normal;
  3512. font-size:12px;
  3513. color:#606266;
  3514. }
  3515. #u20142 .text {
  3516. position:absolute;
  3517. align-self:center;
  3518. padding:2px 2px 2px 0px;
  3519. box-sizing:border-box;
  3520. width:100%;
  3521. }
  3522. #u20142_text {
  3523. border-width:0px;
  3524. word-wrap:break-word;
  3525. text-transform:none;
  3526. visibility:hidden;
  3527. }
  3528. #u20143_img {
  3529. border-width:0px;
  3530. position:absolute;
  3531. left:0px;
  3532. top:0px;
  3533. width:138px;
  3534. height:35px;
  3535. }
  3536. #u20143 {
  3537. border-width:0px;
  3538. position:absolute;
  3539. left:488px;
  3540. top:191px;
  3541. width:138px;
  3542. height:35px;
  3543. display:flex;
  3544. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3545. font-weight:400;
  3546. font-style:normal;
  3547. font-size:12px;
  3548. color:#606266;
  3549. }
  3550. #u20143 .text {
  3551. position:absolute;
  3552. align-self:center;
  3553. padding:2px 2px 2px 0px;
  3554. box-sizing:border-box;
  3555. width:100%;
  3556. }
  3557. #u20143_text {
  3558. border-width:0px;
  3559. word-wrap:break-word;
  3560. text-transform:none;
  3561. visibility:hidden;
  3562. }
  3563. #u20144_img {
  3564. border-width:0px;
  3565. position:absolute;
  3566. left:0px;
  3567. top:0px;
  3568. width:123px;
  3569. height:35px;
  3570. }
  3571. #u20144 {
  3572. border-width:0px;
  3573. position:absolute;
  3574. left:626px;
  3575. top:191px;
  3576. width:123px;
  3577. height:35px;
  3578. display:flex;
  3579. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3580. font-weight:400;
  3581. font-style:normal;
  3582. font-size:12px;
  3583. color:#606266;
  3584. }
  3585. #u20144 .text {
  3586. position:absolute;
  3587. align-self:center;
  3588. padding:2px 2px 2px 0px;
  3589. box-sizing:border-box;
  3590. width:100%;
  3591. }
  3592. #u20144_text {
  3593. border-width:0px;
  3594. word-wrap:break-word;
  3595. text-transform:none;
  3596. visibility:hidden;
  3597. }
  3598. #u20145_img {
  3599. border-width:0px;
  3600. position:absolute;
  3601. left:0px;
  3602. top:0px;
  3603. width:121px;
  3604. height:35px;
  3605. }
  3606. #u20145 {
  3607. border-width:0px;
  3608. position:absolute;
  3609. left:749px;
  3610. top:191px;
  3611. width:121px;
  3612. height:35px;
  3613. display:flex;
  3614. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3615. font-weight:400;
  3616. font-style:normal;
  3617. font-size:12px;
  3618. color:#606266;
  3619. }
  3620. #u20145 .text {
  3621. position:absolute;
  3622. align-self:center;
  3623. padding:2px 2px 2px 0px;
  3624. box-sizing:border-box;
  3625. width:100%;
  3626. }
  3627. #u20145_text {
  3628. border-width:0px;
  3629. word-wrap:break-word;
  3630. text-transform:none;
  3631. visibility:hidden;
  3632. }
  3633. #u20146_img {
  3634. border-width:0px;
  3635. position:absolute;
  3636. left:0px;
  3637. top:0px;
  3638. width:121px;
  3639. height:35px;
  3640. }
  3641. #u20146 {
  3642. border-width:0px;
  3643. position:absolute;
  3644. left:870px;
  3645. top:191px;
  3646. width:121px;
  3647. height:35px;
  3648. display:flex;
  3649. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3650. font-weight:400;
  3651. font-style:normal;
  3652. font-size:12px;
  3653. color:#606266;
  3654. }
  3655. #u20146 .text {
  3656. position:absolute;
  3657. align-self:center;
  3658. padding:2px 2px 2px 0px;
  3659. box-sizing:border-box;
  3660. width:100%;
  3661. }
  3662. #u20146_text {
  3663. border-width:0px;
  3664. word-wrap:break-word;
  3665. text-transform:none;
  3666. visibility:hidden;
  3667. }
  3668. #u20147_img {
  3669. border-width:0px;
  3670. position:absolute;
  3671. left:0px;
  3672. top:0px;
  3673. width:121px;
  3674. height:35px;
  3675. }
  3676. #u20147 {
  3677. border-width:0px;
  3678. position:absolute;
  3679. left:991px;
  3680. top:191px;
  3681. width:121px;
  3682. height:35px;
  3683. display:flex;
  3684. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3685. font-weight:400;
  3686. font-style:normal;
  3687. font-size:12px;
  3688. color:#606266;
  3689. }
  3690. #u20147 .text {
  3691. position:absolute;
  3692. align-self:center;
  3693. padding:2px 2px 2px 0px;
  3694. box-sizing:border-box;
  3695. width:100%;
  3696. }
  3697. #u20147_text {
  3698. border-width:0px;
  3699. word-wrap:break-word;
  3700. text-transform:none;
  3701. visibility:hidden;
  3702. }
  3703. #u20148_img {
  3704. border-width:0px;
  3705. position:absolute;
  3706. left:0px;
  3707. top:0px;
  3708. width:119px;
  3709. height:35px;
  3710. }
  3711. #u20148 {
  3712. border-width:0px;
  3713. position:absolute;
  3714. left:1112px;
  3715. top:191px;
  3716. width:119px;
  3717. height:35px;
  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. color:#606266;
  3724. }
  3725. #u20148 .text {
  3726. position:absolute;
  3727. align-self:center;
  3728. padding:2px 2px 2px 0px;
  3729. box-sizing:border-box;
  3730. width:100%;
  3731. }
  3732. #u20148_text {
  3733. border-width:0px;
  3734. word-wrap:break-word;
  3735. text-transform:none;
  3736. visibility:hidden;
  3737. }
  3738. #u20149_img {
  3739. border-width:0px;
  3740. position:absolute;
  3741. left:0px;
  3742. top:0px;
  3743. width:121px;
  3744. height:35px;
  3745. }
  3746. #u20149 {
  3747. border-width:0px;
  3748. position:absolute;
  3749. left:0px;
  3750. top:226px;
  3751. width:121px;
  3752. height:35px;
  3753. display:flex;
  3754. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3755. font-weight:400;
  3756. font-style:normal;
  3757. font-size:12px;
  3758. color:#606266;
  3759. }
  3760. #u20149 .text {
  3761. position:absolute;
  3762. align-self:center;
  3763. padding:2px 2px 2px 0px;
  3764. box-sizing:border-box;
  3765. width:100%;
  3766. }
  3767. #u20149_text {
  3768. border-width:0px;
  3769. word-wrap:break-word;
  3770. text-transform:none;
  3771. visibility:hidden;
  3772. }
  3773. #u20150_img {
  3774. border-width:0px;
  3775. position:absolute;
  3776. left:0px;
  3777. top:0px;
  3778. width:121px;
  3779. height:35px;
  3780. }
  3781. #u20150 {
  3782. border-width:0px;
  3783. position:absolute;
  3784. left:121px;
  3785. top:226px;
  3786. width:121px;
  3787. height:35px;
  3788. display:flex;
  3789. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3790. font-weight:400;
  3791. font-style:normal;
  3792. font-size:12px;
  3793. color:#606266;
  3794. }
  3795. #u20150 .text {
  3796. position:absolute;
  3797. align-self:center;
  3798. padding:2px 2px 2px 0px;
  3799. box-sizing:border-box;
  3800. width:100%;
  3801. }
  3802. #u20150_text {
  3803. border-width:0px;
  3804. word-wrap:break-word;
  3805. text-transform:none;
  3806. visibility:hidden;
  3807. }
  3808. #u20151_img {
  3809. border-width:0px;
  3810. position:absolute;
  3811. left:0px;
  3812. top:0px;
  3813. width:125px;
  3814. height:35px;
  3815. }
  3816. #u20151 {
  3817. border-width:0px;
  3818. position:absolute;
  3819. left:242px;
  3820. top:226px;
  3821. width:125px;
  3822. height:35px;
  3823. display:flex;
  3824. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3825. font-weight:400;
  3826. font-style:normal;
  3827. font-size:12px;
  3828. color:#606266;
  3829. }
  3830. #u20151 .text {
  3831. position:absolute;
  3832. align-self:center;
  3833. padding:2px 2px 2px 0px;
  3834. box-sizing:border-box;
  3835. width:100%;
  3836. }
  3837. #u20151_text {
  3838. border-width:0px;
  3839. word-wrap:break-word;
  3840. text-transform:none;
  3841. visibility:hidden;
  3842. }
  3843. #u20152_img {
  3844. border-width:0px;
  3845. position:absolute;
  3846. left:0px;
  3847. top:0px;
  3848. width:121px;
  3849. height:35px;
  3850. }
  3851. #u20152 {
  3852. border-width:0px;
  3853. position:absolute;
  3854. left:367px;
  3855. top:226px;
  3856. width:121px;
  3857. height:35px;
  3858. display:flex;
  3859. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3860. font-weight:400;
  3861. font-style:normal;
  3862. font-size:12px;
  3863. color:#606266;
  3864. }
  3865. #u20152 .text {
  3866. position:absolute;
  3867. align-self:center;
  3868. padding:2px 2px 2px 0px;
  3869. box-sizing:border-box;
  3870. width:100%;
  3871. }
  3872. #u20152_text {
  3873. border-width:0px;
  3874. word-wrap:break-word;
  3875. text-transform:none;
  3876. visibility:hidden;
  3877. }
  3878. #u20153_img {
  3879. border-width:0px;
  3880. position:absolute;
  3881. left:0px;
  3882. top:0px;
  3883. width:138px;
  3884. height:35px;
  3885. }
  3886. #u20153 {
  3887. border-width:0px;
  3888. position:absolute;
  3889. left:488px;
  3890. top:226px;
  3891. width:138px;
  3892. height:35px;
  3893. display:flex;
  3894. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3895. font-weight:400;
  3896. font-style:normal;
  3897. font-size:12px;
  3898. color:#606266;
  3899. }
  3900. #u20153 .text {
  3901. position:absolute;
  3902. align-self:center;
  3903. padding:2px 2px 2px 0px;
  3904. box-sizing:border-box;
  3905. width:100%;
  3906. }
  3907. #u20153_text {
  3908. border-width:0px;
  3909. word-wrap:break-word;
  3910. text-transform:none;
  3911. visibility:hidden;
  3912. }
  3913. #u20154_img {
  3914. border-width:0px;
  3915. position:absolute;
  3916. left:0px;
  3917. top:0px;
  3918. width:123px;
  3919. height:35px;
  3920. }
  3921. #u20154 {
  3922. border-width:0px;
  3923. position:absolute;
  3924. left:626px;
  3925. top:226px;
  3926. width:123px;
  3927. height:35px;
  3928. display:flex;
  3929. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3930. font-weight:400;
  3931. font-style:normal;
  3932. font-size:12px;
  3933. color:#606266;
  3934. }
  3935. #u20154 .text {
  3936. position:absolute;
  3937. align-self:center;
  3938. padding:2px 2px 2px 0px;
  3939. box-sizing:border-box;
  3940. width:100%;
  3941. }
  3942. #u20154_text {
  3943. border-width:0px;
  3944. word-wrap:break-word;
  3945. text-transform:none;
  3946. visibility:hidden;
  3947. }
  3948. #u20155_img {
  3949. border-width:0px;
  3950. position:absolute;
  3951. left:0px;
  3952. top:0px;
  3953. width:121px;
  3954. height:35px;
  3955. }
  3956. #u20155 {
  3957. border-width:0px;
  3958. position:absolute;
  3959. left:749px;
  3960. top:226px;
  3961. width:121px;
  3962. height:35px;
  3963. display:flex;
  3964. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3965. font-weight:400;
  3966. font-style:normal;
  3967. font-size:12px;
  3968. color:#606266;
  3969. }
  3970. #u20155 .text {
  3971. position:absolute;
  3972. align-self:center;
  3973. padding:2px 2px 2px 0px;
  3974. box-sizing:border-box;
  3975. width:100%;
  3976. }
  3977. #u20155_text {
  3978. border-width:0px;
  3979. word-wrap:break-word;
  3980. text-transform:none;
  3981. visibility:hidden;
  3982. }
  3983. #u20156_img {
  3984. border-width:0px;
  3985. position:absolute;
  3986. left:0px;
  3987. top:0px;
  3988. width:121px;
  3989. height:35px;
  3990. }
  3991. #u20156 {
  3992. border-width:0px;
  3993. position:absolute;
  3994. left:870px;
  3995. top:226px;
  3996. width:121px;
  3997. height:35px;
  3998. display:flex;
  3999. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4000. font-weight:400;
  4001. font-style:normal;
  4002. font-size:12px;
  4003. color:#606266;
  4004. }
  4005. #u20156 .text {
  4006. position:absolute;
  4007. align-self:center;
  4008. padding:2px 2px 2px 0px;
  4009. box-sizing:border-box;
  4010. width:100%;
  4011. }
  4012. #u20156_text {
  4013. border-width:0px;
  4014. word-wrap:break-word;
  4015. text-transform:none;
  4016. visibility:hidden;
  4017. }
  4018. #u20157_img {
  4019. border-width:0px;
  4020. position:absolute;
  4021. left:0px;
  4022. top:0px;
  4023. width:121px;
  4024. height:35px;
  4025. }
  4026. #u20157 {
  4027. border-width:0px;
  4028. position:absolute;
  4029. left:991px;
  4030. top:226px;
  4031. width:121px;
  4032. height:35px;
  4033. display:flex;
  4034. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4035. font-weight:400;
  4036. font-style:normal;
  4037. font-size:12px;
  4038. color:#606266;
  4039. }
  4040. #u20157 .text {
  4041. position:absolute;
  4042. align-self:center;
  4043. padding:2px 2px 2px 0px;
  4044. box-sizing:border-box;
  4045. width:100%;
  4046. }
  4047. #u20157_text {
  4048. border-width:0px;
  4049. word-wrap:break-word;
  4050. text-transform:none;
  4051. visibility:hidden;
  4052. }
  4053. #u20158_img {
  4054. border-width:0px;
  4055. position:absolute;
  4056. left:0px;
  4057. top:0px;
  4058. width:119px;
  4059. height:35px;
  4060. }
  4061. #u20158 {
  4062. border-width:0px;
  4063. position:absolute;
  4064. left:1112px;
  4065. top:226px;
  4066. width:119px;
  4067. height:35px;
  4068. display:flex;
  4069. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4070. font-weight:400;
  4071. font-style:normal;
  4072. font-size:12px;
  4073. color:#606266;
  4074. }
  4075. #u20158 .text {
  4076. position:absolute;
  4077. align-self:center;
  4078. padding:2px 2px 2px 0px;
  4079. box-sizing:border-box;
  4080. width:100%;
  4081. }
  4082. #u20158_text {
  4083. border-width:0px;
  4084. word-wrap:break-word;
  4085. text-transform:none;
  4086. visibility:hidden;
  4087. }
  4088. #u20159_img {
  4089. border-width:0px;
  4090. position:absolute;
  4091. left:0px;
  4092. top:0px;
  4093. width:121px;
  4094. height:35px;
  4095. }
  4096. #u20159 {
  4097. border-width:0px;
  4098. position:absolute;
  4099. left:0px;
  4100. top:261px;
  4101. width:121px;
  4102. height:35px;
  4103. display:flex;
  4104. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4105. font-weight:400;
  4106. font-style:normal;
  4107. font-size:12px;
  4108. color:#606266;
  4109. }
  4110. #u20159 .text {
  4111. position:absolute;
  4112. align-self:center;
  4113. padding:2px 2px 2px 0px;
  4114. box-sizing:border-box;
  4115. width:100%;
  4116. }
  4117. #u20159_text {
  4118. border-width:0px;
  4119. word-wrap:break-word;
  4120. text-transform:none;
  4121. visibility:hidden;
  4122. }
  4123. #u20160_img {
  4124. border-width:0px;
  4125. position:absolute;
  4126. left:0px;
  4127. top:0px;
  4128. width:121px;
  4129. height:35px;
  4130. }
  4131. #u20160 {
  4132. border-width:0px;
  4133. position:absolute;
  4134. left:121px;
  4135. top:261px;
  4136. width:121px;
  4137. height:35px;
  4138. display:flex;
  4139. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4140. font-weight:400;
  4141. font-style:normal;
  4142. font-size:12px;
  4143. color:#606266;
  4144. }
  4145. #u20160 .text {
  4146. position:absolute;
  4147. align-self:center;
  4148. padding:2px 2px 2px 0px;
  4149. box-sizing:border-box;
  4150. width:100%;
  4151. }
  4152. #u20160_text {
  4153. border-width:0px;
  4154. word-wrap:break-word;
  4155. text-transform:none;
  4156. visibility:hidden;
  4157. }
  4158. #u20161_img {
  4159. border-width:0px;
  4160. position:absolute;
  4161. left:0px;
  4162. top:0px;
  4163. width:125px;
  4164. height:35px;
  4165. }
  4166. #u20161 {
  4167. border-width:0px;
  4168. position:absolute;
  4169. left:242px;
  4170. top:261px;
  4171. width:125px;
  4172. height:35px;
  4173. display:flex;
  4174. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4175. font-weight:400;
  4176. font-style:normal;
  4177. font-size:12px;
  4178. color:#606266;
  4179. }
  4180. #u20161 .text {
  4181. position:absolute;
  4182. align-self:center;
  4183. padding:2px 2px 2px 0px;
  4184. box-sizing:border-box;
  4185. width:100%;
  4186. }
  4187. #u20161_text {
  4188. border-width:0px;
  4189. word-wrap:break-word;
  4190. text-transform:none;
  4191. visibility:hidden;
  4192. }
  4193. #u20162_img {
  4194. border-width:0px;
  4195. position:absolute;
  4196. left:0px;
  4197. top:0px;
  4198. width:121px;
  4199. height:35px;
  4200. }
  4201. #u20162 {
  4202. border-width:0px;
  4203. position:absolute;
  4204. left:367px;
  4205. top:261px;
  4206. width:121px;
  4207. height:35px;
  4208. display:flex;
  4209. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4210. font-weight:400;
  4211. font-style:normal;
  4212. font-size:12px;
  4213. color:#606266;
  4214. }
  4215. #u20162 .text {
  4216. position:absolute;
  4217. align-self:center;
  4218. padding:2px 2px 2px 0px;
  4219. box-sizing:border-box;
  4220. width:100%;
  4221. }
  4222. #u20162_text {
  4223. border-width:0px;
  4224. word-wrap:break-word;
  4225. text-transform:none;
  4226. visibility:hidden;
  4227. }
  4228. #u20163_img {
  4229. border-width:0px;
  4230. position:absolute;
  4231. left:0px;
  4232. top:0px;
  4233. width:138px;
  4234. height:35px;
  4235. }
  4236. #u20163 {
  4237. border-width:0px;
  4238. position:absolute;
  4239. left:488px;
  4240. top:261px;
  4241. width:138px;
  4242. height:35px;
  4243. display:flex;
  4244. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4245. font-weight:400;
  4246. font-style:normal;
  4247. font-size:12px;
  4248. color:#606266;
  4249. }
  4250. #u20163 .text {
  4251. position:absolute;
  4252. align-self:center;
  4253. padding:2px 2px 2px 0px;
  4254. box-sizing:border-box;
  4255. width:100%;
  4256. }
  4257. #u20163_text {
  4258. border-width:0px;
  4259. word-wrap:break-word;
  4260. text-transform:none;
  4261. visibility:hidden;
  4262. }
  4263. #u20164_img {
  4264. border-width:0px;
  4265. position:absolute;
  4266. left:0px;
  4267. top:0px;
  4268. width:123px;
  4269. height:35px;
  4270. }
  4271. #u20164 {
  4272. border-width:0px;
  4273. position:absolute;
  4274. left:626px;
  4275. top:261px;
  4276. width:123px;
  4277. height:35px;
  4278. display:flex;
  4279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4280. font-weight:400;
  4281. font-style:normal;
  4282. font-size:12px;
  4283. color:#606266;
  4284. }
  4285. #u20164 .text {
  4286. position:absolute;
  4287. align-self:center;
  4288. padding:2px 2px 2px 0px;
  4289. box-sizing:border-box;
  4290. width:100%;
  4291. }
  4292. #u20164_text {
  4293. border-width:0px;
  4294. word-wrap:break-word;
  4295. text-transform:none;
  4296. visibility:hidden;
  4297. }
  4298. #u20165_img {
  4299. border-width:0px;
  4300. position:absolute;
  4301. left:0px;
  4302. top:0px;
  4303. width:121px;
  4304. height:35px;
  4305. }
  4306. #u20165 {
  4307. border-width:0px;
  4308. position:absolute;
  4309. left:749px;
  4310. top:261px;
  4311. width:121px;
  4312. height:35px;
  4313. display:flex;
  4314. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4315. font-weight:400;
  4316. font-style:normal;
  4317. font-size:12px;
  4318. color:#606266;
  4319. }
  4320. #u20165 .text {
  4321. position:absolute;
  4322. align-self:center;
  4323. padding:2px 2px 2px 0px;
  4324. box-sizing:border-box;
  4325. width:100%;
  4326. }
  4327. #u20165_text {
  4328. border-width:0px;
  4329. word-wrap:break-word;
  4330. text-transform:none;
  4331. visibility:hidden;
  4332. }
  4333. #u20166_img {
  4334. border-width:0px;
  4335. position:absolute;
  4336. left:0px;
  4337. top:0px;
  4338. width:121px;
  4339. height:35px;
  4340. }
  4341. #u20166 {
  4342. border-width:0px;
  4343. position:absolute;
  4344. left:870px;
  4345. top:261px;
  4346. width:121px;
  4347. height:35px;
  4348. display:flex;
  4349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4350. font-weight:400;
  4351. font-style:normal;
  4352. font-size:12px;
  4353. color:#606266;
  4354. }
  4355. #u20166 .text {
  4356. position:absolute;
  4357. align-self:center;
  4358. padding:2px 2px 2px 0px;
  4359. box-sizing:border-box;
  4360. width:100%;
  4361. }
  4362. #u20166_text {
  4363. border-width:0px;
  4364. word-wrap:break-word;
  4365. text-transform:none;
  4366. visibility:hidden;
  4367. }
  4368. #u20167_img {
  4369. border-width:0px;
  4370. position:absolute;
  4371. left:0px;
  4372. top:0px;
  4373. width:121px;
  4374. height:35px;
  4375. }
  4376. #u20167 {
  4377. border-width:0px;
  4378. position:absolute;
  4379. left:991px;
  4380. top:261px;
  4381. width:121px;
  4382. height:35px;
  4383. display:flex;
  4384. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4385. font-weight:400;
  4386. font-style:normal;
  4387. font-size:12px;
  4388. color:#606266;
  4389. }
  4390. #u20167 .text {
  4391. position:absolute;
  4392. align-self:center;
  4393. padding:2px 2px 2px 0px;
  4394. box-sizing:border-box;
  4395. width:100%;
  4396. }
  4397. #u20167_text {
  4398. border-width:0px;
  4399. word-wrap:break-word;
  4400. text-transform:none;
  4401. visibility:hidden;
  4402. }
  4403. #u20168_img {
  4404. border-width:0px;
  4405. position:absolute;
  4406. left:0px;
  4407. top:0px;
  4408. width:119px;
  4409. height:35px;
  4410. }
  4411. #u20168 {
  4412. border-width:0px;
  4413. position:absolute;
  4414. left:1112px;
  4415. top:261px;
  4416. width:119px;
  4417. height:35px;
  4418. display:flex;
  4419. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4420. font-weight:400;
  4421. font-style:normal;
  4422. font-size:12px;
  4423. color:#606266;
  4424. }
  4425. #u20168 .text {
  4426. position:absolute;
  4427. align-self:center;
  4428. padding:2px 2px 2px 0px;
  4429. box-sizing:border-box;
  4430. width:100%;
  4431. }
  4432. #u20168_text {
  4433. border-width:0px;
  4434. word-wrap:break-word;
  4435. text-transform:none;
  4436. visibility:hidden;
  4437. }
  4438. #u20169_img {
  4439. border-width:0px;
  4440. position:absolute;
  4441. left:0px;
  4442. top:0px;
  4443. width:121px;
  4444. height:35px;
  4445. }
  4446. #u20169 {
  4447. border-width:0px;
  4448. position:absolute;
  4449. left:0px;
  4450. top:296px;
  4451. width:121px;
  4452. height:35px;
  4453. display:flex;
  4454. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4455. font-weight:400;
  4456. font-style:normal;
  4457. font-size:12px;
  4458. color:#606266;
  4459. }
  4460. #u20169 .text {
  4461. position:absolute;
  4462. align-self:center;
  4463. padding:2px 2px 2px 0px;
  4464. box-sizing:border-box;
  4465. width:100%;
  4466. }
  4467. #u20169_text {
  4468. border-width:0px;
  4469. word-wrap:break-word;
  4470. text-transform:none;
  4471. visibility:hidden;
  4472. }
  4473. #u20170_img {
  4474. border-width:0px;
  4475. position:absolute;
  4476. left:0px;
  4477. top:0px;
  4478. width:121px;
  4479. height:35px;
  4480. }
  4481. #u20170 {
  4482. border-width:0px;
  4483. position:absolute;
  4484. left:121px;
  4485. top:296px;
  4486. width:121px;
  4487. height:35px;
  4488. display:flex;
  4489. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4490. font-weight:400;
  4491. font-style:normal;
  4492. font-size:12px;
  4493. color:#606266;
  4494. }
  4495. #u20170 .text {
  4496. position:absolute;
  4497. align-self:center;
  4498. padding:2px 2px 2px 0px;
  4499. box-sizing:border-box;
  4500. width:100%;
  4501. }
  4502. #u20170_text {
  4503. border-width:0px;
  4504. word-wrap:break-word;
  4505. text-transform:none;
  4506. visibility:hidden;
  4507. }
  4508. #u20171_img {
  4509. border-width:0px;
  4510. position:absolute;
  4511. left:0px;
  4512. top:0px;
  4513. width:125px;
  4514. height:35px;
  4515. }
  4516. #u20171 {
  4517. border-width:0px;
  4518. position:absolute;
  4519. left:242px;
  4520. top:296px;
  4521. width:125px;
  4522. height:35px;
  4523. display:flex;
  4524. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4525. font-weight:400;
  4526. font-style:normal;
  4527. font-size:12px;
  4528. color:#606266;
  4529. }
  4530. #u20171 .text {
  4531. position:absolute;
  4532. align-self:center;
  4533. padding:2px 2px 2px 0px;
  4534. box-sizing:border-box;
  4535. width:100%;
  4536. }
  4537. #u20171_text {
  4538. border-width:0px;
  4539. word-wrap:break-word;
  4540. text-transform:none;
  4541. visibility:hidden;
  4542. }
  4543. #u20172_img {
  4544. border-width:0px;
  4545. position:absolute;
  4546. left:0px;
  4547. top:0px;
  4548. width:121px;
  4549. height:35px;
  4550. }
  4551. #u20172 {
  4552. border-width:0px;
  4553. position:absolute;
  4554. left:367px;
  4555. top:296px;
  4556. width:121px;
  4557. height:35px;
  4558. display:flex;
  4559. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4560. font-weight:400;
  4561. font-style:normal;
  4562. font-size:12px;
  4563. color:#606266;
  4564. }
  4565. #u20172 .text {
  4566. position:absolute;
  4567. align-self:center;
  4568. padding:2px 2px 2px 0px;
  4569. box-sizing:border-box;
  4570. width:100%;
  4571. }
  4572. #u20172_text {
  4573. border-width:0px;
  4574. word-wrap:break-word;
  4575. text-transform:none;
  4576. visibility:hidden;
  4577. }
  4578. #u20173_img {
  4579. border-width:0px;
  4580. position:absolute;
  4581. left:0px;
  4582. top:0px;
  4583. width:138px;
  4584. height:35px;
  4585. }
  4586. #u20173 {
  4587. border-width:0px;
  4588. position:absolute;
  4589. left:488px;
  4590. top:296px;
  4591. width:138px;
  4592. height:35px;
  4593. display:flex;
  4594. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4595. font-weight:400;
  4596. font-style:normal;
  4597. font-size:12px;
  4598. color:#606266;
  4599. }
  4600. #u20173 .text {
  4601. position:absolute;
  4602. align-self:center;
  4603. padding:2px 2px 2px 0px;
  4604. box-sizing:border-box;
  4605. width:100%;
  4606. }
  4607. #u20173_text {
  4608. border-width:0px;
  4609. word-wrap:break-word;
  4610. text-transform:none;
  4611. visibility:hidden;
  4612. }
  4613. #u20174_img {
  4614. border-width:0px;
  4615. position:absolute;
  4616. left:0px;
  4617. top:0px;
  4618. width:123px;
  4619. height:35px;
  4620. }
  4621. #u20174 {
  4622. border-width:0px;
  4623. position:absolute;
  4624. left:626px;
  4625. top:296px;
  4626. width:123px;
  4627. height:35px;
  4628. display:flex;
  4629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4630. font-weight:400;
  4631. font-style:normal;
  4632. font-size:12px;
  4633. color:#606266;
  4634. }
  4635. #u20174 .text {
  4636. position:absolute;
  4637. align-self:center;
  4638. padding:2px 2px 2px 0px;
  4639. box-sizing:border-box;
  4640. width:100%;
  4641. }
  4642. #u20174_text {
  4643. border-width:0px;
  4644. word-wrap:break-word;
  4645. text-transform:none;
  4646. visibility:hidden;
  4647. }
  4648. #u20175_img {
  4649. border-width:0px;
  4650. position:absolute;
  4651. left:0px;
  4652. top:0px;
  4653. width:121px;
  4654. height:35px;
  4655. }
  4656. #u20175 {
  4657. border-width:0px;
  4658. position:absolute;
  4659. left:749px;
  4660. top:296px;
  4661. width:121px;
  4662. height:35px;
  4663. display:flex;
  4664. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4665. font-weight:400;
  4666. font-style:normal;
  4667. font-size:12px;
  4668. color:#606266;
  4669. }
  4670. #u20175 .text {
  4671. position:absolute;
  4672. align-self:center;
  4673. padding:2px 2px 2px 0px;
  4674. box-sizing:border-box;
  4675. width:100%;
  4676. }
  4677. #u20175_text {
  4678. border-width:0px;
  4679. word-wrap:break-word;
  4680. text-transform:none;
  4681. visibility:hidden;
  4682. }
  4683. #u20176_img {
  4684. border-width:0px;
  4685. position:absolute;
  4686. left:0px;
  4687. top:0px;
  4688. width:121px;
  4689. height:35px;
  4690. }
  4691. #u20176 {
  4692. border-width:0px;
  4693. position:absolute;
  4694. left:870px;
  4695. top:296px;
  4696. width:121px;
  4697. height:35px;
  4698. display:flex;
  4699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4700. font-weight:400;
  4701. font-style:normal;
  4702. font-size:12px;
  4703. color:#606266;
  4704. }
  4705. #u20176 .text {
  4706. position:absolute;
  4707. align-self:center;
  4708. padding:2px 2px 2px 0px;
  4709. box-sizing:border-box;
  4710. width:100%;
  4711. }
  4712. #u20176_text {
  4713. border-width:0px;
  4714. word-wrap:break-word;
  4715. text-transform:none;
  4716. visibility:hidden;
  4717. }
  4718. #u20177_img {
  4719. border-width:0px;
  4720. position:absolute;
  4721. left:0px;
  4722. top:0px;
  4723. width:121px;
  4724. height:35px;
  4725. }
  4726. #u20177 {
  4727. border-width:0px;
  4728. position:absolute;
  4729. left:991px;
  4730. top:296px;
  4731. width:121px;
  4732. height:35px;
  4733. display:flex;
  4734. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4735. font-weight:400;
  4736. font-style:normal;
  4737. font-size:12px;
  4738. color:#606266;
  4739. }
  4740. #u20177 .text {
  4741. position:absolute;
  4742. align-self:center;
  4743. padding:2px 2px 2px 0px;
  4744. box-sizing:border-box;
  4745. width:100%;
  4746. }
  4747. #u20177_text {
  4748. border-width:0px;
  4749. word-wrap:break-word;
  4750. text-transform:none;
  4751. visibility:hidden;
  4752. }
  4753. #u20178_img {
  4754. border-width:0px;
  4755. position:absolute;
  4756. left:0px;
  4757. top:0px;
  4758. width:119px;
  4759. height:35px;
  4760. }
  4761. #u20178 {
  4762. border-width:0px;
  4763. position:absolute;
  4764. left:1112px;
  4765. top:296px;
  4766. width:119px;
  4767. height:35px;
  4768. display:flex;
  4769. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4770. font-weight:400;
  4771. font-style:normal;
  4772. font-size:12px;
  4773. color:#606266;
  4774. }
  4775. #u20178 .text {
  4776. position:absolute;
  4777. align-self:center;
  4778. padding:2px 2px 2px 0px;
  4779. box-sizing:border-box;
  4780. width:100%;
  4781. }
  4782. #u20178_text {
  4783. border-width:0px;
  4784. word-wrap:break-word;
  4785. text-transform:none;
  4786. visibility:hidden;
  4787. }
  4788. #u20179_img {
  4789. border-width:0px;
  4790. position:absolute;
  4791. left:0px;
  4792. top:0px;
  4793. width:121px;
  4794. height:35px;
  4795. }
  4796. #u20179 {
  4797. border-width:0px;
  4798. position:absolute;
  4799. left:0px;
  4800. top:331px;
  4801. width:121px;
  4802. height:35px;
  4803. display:flex;
  4804. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4805. font-weight:400;
  4806. font-style:normal;
  4807. font-size:12px;
  4808. color:#606266;
  4809. }
  4810. #u20179 .text {
  4811. position:absolute;
  4812. align-self:center;
  4813. padding:2px 2px 2px 0px;
  4814. box-sizing:border-box;
  4815. width:100%;
  4816. }
  4817. #u20179_text {
  4818. border-width:0px;
  4819. word-wrap:break-word;
  4820. text-transform:none;
  4821. visibility:hidden;
  4822. }
  4823. #u20180_img {
  4824. border-width:0px;
  4825. position:absolute;
  4826. left:0px;
  4827. top:0px;
  4828. width:121px;
  4829. height:35px;
  4830. }
  4831. #u20180 {
  4832. border-width:0px;
  4833. position:absolute;
  4834. left:121px;
  4835. top:331px;
  4836. width:121px;
  4837. height:35px;
  4838. display:flex;
  4839. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4840. font-weight:400;
  4841. font-style:normal;
  4842. font-size:12px;
  4843. color:#606266;
  4844. }
  4845. #u20180 .text {
  4846. position:absolute;
  4847. align-self:center;
  4848. padding:2px 2px 2px 0px;
  4849. box-sizing:border-box;
  4850. width:100%;
  4851. }
  4852. #u20180_text {
  4853. border-width:0px;
  4854. word-wrap:break-word;
  4855. text-transform:none;
  4856. visibility:hidden;
  4857. }
  4858. #u20181_img {
  4859. border-width:0px;
  4860. position:absolute;
  4861. left:0px;
  4862. top:0px;
  4863. width:125px;
  4864. height:35px;
  4865. }
  4866. #u20181 {
  4867. border-width:0px;
  4868. position:absolute;
  4869. left:242px;
  4870. top:331px;
  4871. width:125px;
  4872. height:35px;
  4873. display:flex;
  4874. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4875. font-weight:400;
  4876. font-style:normal;
  4877. font-size:12px;
  4878. color:#606266;
  4879. }
  4880. #u20181 .text {
  4881. position:absolute;
  4882. align-self:center;
  4883. padding:2px 2px 2px 0px;
  4884. box-sizing:border-box;
  4885. width:100%;
  4886. }
  4887. #u20181_text {
  4888. border-width:0px;
  4889. word-wrap:break-word;
  4890. text-transform:none;
  4891. visibility:hidden;
  4892. }
  4893. #u20182_img {
  4894. border-width:0px;
  4895. position:absolute;
  4896. left:0px;
  4897. top:0px;
  4898. width:121px;
  4899. height:35px;
  4900. }
  4901. #u20182 {
  4902. border-width:0px;
  4903. position:absolute;
  4904. left:367px;
  4905. top:331px;
  4906. width:121px;
  4907. height:35px;
  4908. display:flex;
  4909. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4910. font-weight:400;
  4911. font-style:normal;
  4912. font-size:12px;
  4913. color:#606266;
  4914. }
  4915. #u20182 .text {
  4916. position:absolute;
  4917. align-self:center;
  4918. padding:2px 2px 2px 0px;
  4919. box-sizing:border-box;
  4920. width:100%;
  4921. }
  4922. #u20182_text {
  4923. border-width:0px;
  4924. word-wrap:break-word;
  4925. text-transform:none;
  4926. visibility:hidden;
  4927. }
  4928. #u20183_img {
  4929. border-width:0px;
  4930. position:absolute;
  4931. left:0px;
  4932. top:0px;
  4933. width:138px;
  4934. height:35px;
  4935. }
  4936. #u20183 {
  4937. border-width:0px;
  4938. position:absolute;
  4939. left:488px;
  4940. top:331px;
  4941. width:138px;
  4942. height:35px;
  4943. display:flex;
  4944. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4945. font-weight:400;
  4946. font-style:normal;
  4947. font-size:12px;
  4948. color:#606266;
  4949. }
  4950. #u20183 .text {
  4951. position:absolute;
  4952. align-self:center;
  4953. padding:2px 2px 2px 0px;
  4954. box-sizing:border-box;
  4955. width:100%;
  4956. }
  4957. #u20183_text {
  4958. border-width:0px;
  4959. word-wrap:break-word;
  4960. text-transform:none;
  4961. visibility:hidden;
  4962. }
  4963. #u20184_img {
  4964. border-width:0px;
  4965. position:absolute;
  4966. left:0px;
  4967. top:0px;
  4968. width:123px;
  4969. height:35px;
  4970. }
  4971. #u20184 {
  4972. border-width:0px;
  4973. position:absolute;
  4974. left:626px;
  4975. top:331px;
  4976. width:123px;
  4977. height:35px;
  4978. display:flex;
  4979. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4980. font-weight:400;
  4981. font-style:normal;
  4982. font-size:12px;
  4983. color:#606266;
  4984. }
  4985. #u20184 .text {
  4986. position:absolute;
  4987. align-self:center;
  4988. padding:2px 2px 2px 0px;
  4989. box-sizing:border-box;
  4990. width:100%;
  4991. }
  4992. #u20184_text {
  4993. border-width:0px;
  4994. word-wrap:break-word;
  4995. text-transform:none;
  4996. visibility:hidden;
  4997. }
  4998. #u20185_img {
  4999. border-width:0px;
  5000. position:absolute;
  5001. left:0px;
  5002. top:0px;
  5003. width:121px;
  5004. height:35px;
  5005. }
  5006. #u20185 {
  5007. border-width:0px;
  5008. position:absolute;
  5009. left:749px;
  5010. top:331px;
  5011. width:121px;
  5012. height:35px;
  5013. display:flex;
  5014. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5015. font-weight:400;
  5016. font-style:normal;
  5017. font-size:12px;
  5018. color:#606266;
  5019. }
  5020. #u20185 .text {
  5021. position:absolute;
  5022. align-self:center;
  5023. padding:2px 2px 2px 0px;
  5024. box-sizing:border-box;
  5025. width:100%;
  5026. }
  5027. #u20185_text {
  5028. border-width:0px;
  5029. word-wrap:break-word;
  5030. text-transform:none;
  5031. visibility:hidden;
  5032. }
  5033. #u20186_img {
  5034. border-width:0px;
  5035. position:absolute;
  5036. left:0px;
  5037. top:0px;
  5038. width:121px;
  5039. height:35px;
  5040. }
  5041. #u20186 {
  5042. border-width:0px;
  5043. position:absolute;
  5044. left:870px;
  5045. top:331px;
  5046. width:121px;
  5047. height:35px;
  5048. display:flex;
  5049. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5050. font-weight:400;
  5051. font-style:normal;
  5052. font-size:12px;
  5053. color:#606266;
  5054. }
  5055. #u20186 .text {
  5056. position:absolute;
  5057. align-self:center;
  5058. padding:2px 2px 2px 0px;
  5059. box-sizing:border-box;
  5060. width:100%;
  5061. }
  5062. #u20186_text {
  5063. border-width:0px;
  5064. word-wrap:break-word;
  5065. text-transform:none;
  5066. visibility:hidden;
  5067. }
  5068. #u20187_img {
  5069. border-width:0px;
  5070. position:absolute;
  5071. left:0px;
  5072. top:0px;
  5073. width:121px;
  5074. height:35px;
  5075. }
  5076. #u20187 {
  5077. border-width:0px;
  5078. position:absolute;
  5079. left:991px;
  5080. top:331px;
  5081. width:121px;
  5082. height:35px;
  5083. display:flex;
  5084. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5085. font-weight:400;
  5086. font-style:normal;
  5087. font-size:12px;
  5088. color:#606266;
  5089. }
  5090. #u20187 .text {
  5091. position:absolute;
  5092. align-self:center;
  5093. padding:2px 2px 2px 0px;
  5094. box-sizing:border-box;
  5095. width:100%;
  5096. }
  5097. #u20187_text {
  5098. border-width:0px;
  5099. word-wrap:break-word;
  5100. text-transform:none;
  5101. visibility:hidden;
  5102. }
  5103. #u20188_img {
  5104. border-width:0px;
  5105. position:absolute;
  5106. left:0px;
  5107. top:0px;
  5108. width:119px;
  5109. height:35px;
  5110. }
  5111. #u20188 {
  5112. border-width:0px;
  5113. position:absolute;
  5114. left:1112px;
  5115. top:331px;
  5116. width:119px;
  5117. height:35px;
  5118. display:flex;
  5119. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5120. font-weight:400;
  5121. font-style:normal;
  5122. font-size:12px;
  5123. color:#606266;
  5124. }
  5125. #u20188 .text {
  5126. position:absolute;
  5127. align-self:center;
  5128. padding:2px 2px 2px 0px;
  5129. box-sizing:border-box;
  5130. width:100%;
  5131. }
  5132. #u20188_text {
  5133. border-width:0px;
  5134. word-wrap:break-word;
  5135. text-transform:none;
  5136. visibility:hidden;
  5137. }
  5138. #u20189 {
  5139. border-width:0px;
  5140. position:absolute;
  5141. left:0px;
  5142. top:0px;
  5143. width:0px;
  5144. height:0px;
  5145. }
  5146. #u20190_div {
  5147. border-width:0px;
  5148. position:absolute;
  5149. left:0px;
  5150. top:0px;
  5151. width:59px;
  5152. height:30px;
  5153. background:inherit;
  5154. background-color:rgba(24, 144, 255, 1);
  5155. box-sizing:border-box;
  5156. border-width:1px;
  5157. border-style:solid;
  5158. border-color:rgba(0, 153, 255, 1);
  5159. border-radius:4px;
  5160. -moz-box-shadow:none;
  5161. -webkit-box-shadow:none;
  5162. box-shadow:none;
  5163. font-family:'Microsoft YaHei', sans-serif;
  5164. font-weight:400;
  5165. font-style:normal;
  5166. font-size:14px;
  5167. color:#FFFFFF;
  5168. }
  5169. #u20190 {
  5170. border-width:0px;
  5171. position:absolute;
  5172. left:800px;
  5173. top:180px;
  5174. width:59px;
  5175. height:30px;
  5176. display:flex;
  5177. font-family:'Microsoft YaHei', sans-serif;
  5178. font-weight:400;
  5179. font-style:normal;
  5180. font-size:14px;
  5181. color:#FFFFFF;
  5182. }
  5183. #u20190 .text {
  5184. position:absolute;
  5185. align-self:center;
  5186. padding:5px 15px 5px 15px;
  5187. box-sizing:border-box;
  5188. width:100%;
  5189. }
  5190. #u20190_text {
  5191. border-width:0px;
  5192. white-space:nowrap;
  5193. text-transform:none;
  5194. }
  5195. #u20191_div {
  5196. border-width:0px;
  5197. position:absolute;
  5198. left:0px;
  5199. top:0px;
  5200. width:55px;
  5201. height:30px;
  5202. background:inherit;
  5203. background-color:rgba(255, 255, 255, 1);
  5204. box-sizing:border-box;
  5205. border-width:1px;
  5206. border-style:solid;
  5207. border-color:rgba(170, 170, 170, 1);
  5208. border-radius:4px;
  5209. -moz-box-shadow:none;
  5210. -webkit-box-shadow:none;
  5211. box-shadow:none;
  5212. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5213. font-weight:400;
  5214. font-style:normal;
  5215. font-size:12px;
  5216. color:#555555;
  5217. }
  5218. #u20191 {
  5219. border-width:0px;
  5220. position:absolute;
  5221. left:869px;
  5222. top:180px;
  5223. width:55px;
  5224. height:30px;
  5225. display:flex;
  5226. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5227. font-weight:400;
  5228. font-style:normal;
  5229. font-size:12px;
  5230. color:#555555;
  5231. }
  5232. #u20191 .text {
  5233. position:absolute;
  5234. align-self:center;
  5235. padding:5px 15px 5px 15px;
  5236. box-sizing:border-box;
  5237. width:100%;
  5238. }
  5239. #u20191_text {
  5240. border-width:0px;
  5241. white-space:nowrap;
  5242. text-transform:none;
  5243. }
  5244. #u20192 {
  5245. border-width:0px;
  5246. position:absolute;
  5247. left:0px;
  5248. top:0px;
  5249. width:0px;
  5250. height:0px;
  5251. }
  5252. #u20193_div {
  5253. border-width:0px;
  5254. position:absolute;
  5255. left:0px;
  5256. top:0px;
  5257. width:140px;
  5258. height:30px;
  5259. background:inherit;
  5260. background-color:rgba(255, 255, 255, 1);
  5261. box-sizing:border-box;
  5262. border-width:1px;
  5263. border-style:solid;
  5264. border-color:rgba(215, 215, 215, 1);
  5265. border-radius:4px;
  5266. -moz-box-shadow:none;
  5267. -webkit-box-shadow:none;
  5268. box-shadow:none;
  5269. font-size:14px;
  5270. }
  5271. #u20193 {
  5272. border-width:0px;
  5273. position:absolute;
  5274. left:350px;
  5275. top:140px;
  5276. width:140px;
  5277. height:30px;
  5278. display:flex;
  5279. font-size:14px;
  5280. }
  5281. #u20193 .text {
  5282. position:absolute;
  5283. align-self:center;
  5284. padding:2px 2px 2px 2px;
  5285. box-sizing:border-box;
  5286. width:100%;
  5287. }
  5288. #u20193_text {
  5289. border-width:0px;
  5290. word-wrap:break-word;
  5291. text-transform:none;
  5292. visibility:hidden;
  5293. }
  5294. #u20194_input {
  5295. position:absolute;
  5296. left:0px;
  5297. top:0px;
  5298. width:134px;
  5299. height:23px;
  5300. padding:2px 2px 2px 2px;
  5301. font-family:'ArialMT', 'Arial', sans-serif;
  5302. font-weight:400;
  5303. font-style:normal;
  5304. font-size:14px;
  5305. letter-spacing:normal;
  5306. color:#AAAAAA;
  5307. vertical-align:none;
  5308. text-align:left;
  5309. text-transform:none;
  5310. background-color:transparent;
  5311. border-color:transparent;
  5312. }
  5313. #u20194_input.disabled {
  5314. position:absolute;
  5315. left:0px;
  5316. top:0px;
  5317. width:134px;
  5318. height:23px;
  5319. padding:2px 2px 2px 2px;
  5320. font-family:'ArialMT', 'Arial', sans-serif;
  5321. font-weight:400;
  5322. font-style:normal;
  5323. font-size:14px;
  5324. letter-spacing:normal;
  5325. color:#AAAAAA;
  5326. vertical-align:none;
  5327. text-align:left;
  5328. text-transform:none;
  5329. background-color:transparent;
  5330. border-color:transparent;
  5331. }
  5332. #u20194_div {
  5333. border-width:0px;
  5334. position:absolute;
  5335. left:0px;
  5336. top:0px;
  5337. width:134px;
  5338. height:23px;
  5339. background:inherit;
  5340. background-color:rgba(255, 255, 255, 1);
  5341. border:none;
  5342. border-radius:0px;
  5343. -moz-box-shadow:none;
  5344. -webkit-box-shadow:none;
  5345. box-shadow:none;
  5346. font-size:14px;
  5347. color:#AAAAAA;
  5348. }
  5349. #u20194 {
  5350. border-width:0px;
  5351. position:absolute;
  5352. left:354px;
  5353. top:142px;
  5354. width:134px;
  5355. height:23px;
  5356. display:flex;
  5357. font-size:14px;
  5358. color:#AAAAAA;
  5359. }
  5360. #u20194 .text {
  5361. position:absolute;
  5362. align-self:flex-start;
  5363. padding:2px 2px 2px 2px;
  5364. box-sizing:border-box;
  5365. width:100%;
  5366. }
  5367. #u20194_div.disabled {
  5368. border-width:0px;
  5369. position:absolute;
  5370. left:0px;
  5371. top:0px;
  5372. width:134px;
  5373. height:23px;
  5374. background:inherit;
  5375. background-color:rgba(240, 240, 240, 1);
  5376. border:none;
  5377. border-radius:0px;
  5378. -moz-box-shadow:none;
  5379. -webkit-box-shadow:none;
  5380. box-shadow:none;
  5381. font-size:14px;
  5382. color:#AAAAAA;
  5383. }
  5384. #u20194.disabled {
  5385. }
  5386. .u20194_input_option {
  5387. font-size:14px;
  5388. }
  5389. #u20195 {
  5390. border-width:0px;
  5391. position:absolute;
  5392. left:0px;
  5393. top:0px;
  5394. width:0px;
  5395. height:0px;
  5396. }
  5397. #u20196_div {
  5398. border-width:0px;
  5399. position:absolute;
  5400. left:0px;
  5401. top:0px;
  5402. width:140px;
  5403. height:30px;
  5404. background:inherit;
  5405. background-color:rgba(255, 255, 255, 1);
  5406. box-sizing:border-box;
  5407. border-width:1px;
  5408. border-style:solid;
  5409. border-color:rgba(215, 215, 215, 1);
  5410. border-radius:4px;
  5411. -moz-box-shadow:none;
  5412. -webkit-box-shadow:none;
  5413. box-shadow:none;
  5414. font-size:14px;
  5415. }
  5416. #u20196 {
  5417. border-width:0px;
  5418. position:absolute;
  5419. left:500px;
  5420. top:140px;
  5421. width:140px;
  5422. height:30px;
  5423. display:flex;
  5424. font-size:14px;
  5425. }
  5426. #u20196 .text {
  5427. position:absolute;
  5428. align-self:center;
  5429. padding:2px 2px 2px 2px;
  5430. box-sizing:border-box;
  5431. width:100%;
  5432. }
  5433. #u20196_text {
  5434. border-width:0px;
  5435. word-wrap:break-word;
  5436. text-transform:none;
  5437. visibility:hidden;
  5438. }
  5439. #u20197_input {
  5440. position:absolute;
  5441. left:0px;
  5442. top:0px;
  5443. width:134px;
  5444. height:23px;
  5445. padding:2px 2px 2px 2px;
  5446. font-family:'ArialMT', 'Arial', sans-serif;
  5447. font-weight:400;
  5448. font-style:normal;
  5449. font-size:14px;
  5450. letter-spacing:normal;
  5451. color:#AAAAAA;
  5452. vertical-align:none;
  5453. text-align:left;
  5454. text-transform:none;
  5455. background-color:transparent;
  5456. border-color:transparent;
  5457. }
  5458. #u20197_input.disabled {
  5459. position:absolute;
  5460. left:0px;
  5461. top:0px;
  5462. width:134px;
  5463. height:23px;
  5464. padding:2px 2px 2px 2px;
  5465. font-family:'ArialMT', 'Arial', sans-serif;
  5466. font-weight:400;
  5467. font-style:normal;
  5468. font-size:14px;
  5469. letter-spacing:normal;
  5470. color:#AAAAAA;
  5471. vertical-align:none;
  5472. text-align:left;
  5473. text-transform:none;
  5474. background-color:transparent;
  5475. border-color:transparent;
  5476. }
  5477. #u20197_div {
  5478. border-width:0px;
  5479. position:absolute;
  5480. left:0px;
  5481. top:0px;
  5482. width:134px;
  5483. height:23px;
  5484. background:inherit;
  5485. background-color:rgba(255, 255, 255, 1);
  5486. border:none;
  5487. border-radius:0px;
  5488. -moz-box-shadow:none;
  5489. -webkit-box-shadow:none;
  5490. box-shadow:none;
  5491. font-size:14px;
  5492. color:#AAAAAA;
  5493. }
  5494. #u20197 {
  5495. border-width:0px;
  5496. position:absolute;
  5497. left:504px;
  5498. top:142px;
  5499. width:134px;
  5500. height:23px;
  5501. display:flex;
  5502. font-size:14px;
  5503. color:#AAAAAA;
  5504. }
  5505. #u20197 .text {
  5506. position:absolute;
  5507. align-self:flex-start;
  5508. padding:2px 2px 2px 2px;
  5509. box-sizing:border-box;
  5510. width:100%;
  5511. }
  5512. #u20197_div.disabled {
  5513. border-width:0px;
  5514. position:absolute;
  5515. left:0px;
  5516. top:0px;
  5517. width:134px;
  5518. height:23px;
  5519. background:inherit;
  5520. background-color:rgba(240, 240, 240, 1);
  5521. border:none;
  5522. border-radius:0px;
  5523. -moz-box-shadow:none;
  5524. -webkit-box-shadow:none;
  5525. box-shadow:none;
  5526. font-size:14px;
  5527. color:#AAAAAA;
  5528. }
  5529. #u20197.disabled {
  5530. }
  5531. .u20197_input_option {
  5532. font-size:14px;
  5533. }
  5534. #u20198 {
  5535. border-width:0px;
  5536. position:absolute;
  5537. left:0px;
  5538. top:0px;
  5539. width:0px;
  5540. height:0px;
  5541. }
  5542. #u20199_div {
  5543. border-width:0px;
  5544. position:absolute;
  5545. left:0px;
  5546. top:0px;
  5547. width:140px;
  5548. height:30px;
  5549. background:inherit;
  5550. background-color:rgba(255, 255, 255, 1);
  5551. box-sizing:border-box;
  5552. border-width:1px;
  5553. border-style:solid;
  5554. border-color:rgba(201, 201, 201, 1);
  5555. border-radius:4px;
  5556. -moz-box-shadow:none;
  5557. -webkit-box-shadow:none;
  5558. box-shadow:none;
  5559. font-family:'Microsoft YaHei', sans-serif;
  5560. font-weight:400;
  5561. font-style:normal;
  5562. font-size:14px;
  5563. color:#CCCCCC;
  5564. text-align:left;
  5565. }
  5566. #u20199 {
  5567. border-width:0px;
  5568. position:absolute;
  5569. left:1108px;
  5570. top:140px;
  5571. width:140px;
  5572. height:30px;
  5573. display:flex;
  5574. font-family:'Microsoft YaHei', sans-serif;
  5575. font-weight:400;
  5576. font-style:normal;
  5577. font-size:14px;
  5578. color:#CCCCCC;
  5579. text-align:left;
  5580. }
  5581. #u20199 .text {
  5582. position:absolute;
  5583. align-self:center;
  5584. padding:2px 8px 2px 8px;
  5585. box-sizing:border-box;
  5586. width:100%;
  5587. }
  5588. #u20199_text {
  5589. border-width:0px;
  5590. word-wrap:break-word;
  5591. text-transform:none;
  5592. visibility:hidden;
  5593. }
  5594. #u20200_input {
  5595. position:absolute;
  5596. left:0px;
  5597. top:0px;
  5598. width:127px;
  5599. height:25px;
  5600. padding:2px 2px 2px 2px;
  5601. font-family:'Microsoft YaHei', sans-serif;
  5602. font-weight:400;
  5603. font-style:normal;
  5604. font-size:10px;
  5605. letter-spacing:normal;
  5606. color:#000000;
  5607. vertical-align:none;
  5608. text-align:left;
  5609. text-transform:none;
  5610. background-color:transparent;
  5611. border-color:transparent;
  5612. }
  5613. #u20200_input.disabled {
  5614. position:absolute;
  5615. left:0px;
  5616. top:0px;
  5617. width:127px;
  5618. height:25px;
  5619. padding:2px 2px 2px 2px;
  5620. font-family:'Microsoft YaHei', sans-serif;
  5621. font-weight:400;
  5622. font-style:normal;
  5623. font-size:10px;
  5624. letter-spacing:normal;
  5625. color:#000000;
  5626. vertical-align:none;
  5627. text-align:left;
  5628. text-transform:none;
  5629. background-color:transparent;
  5630. border-color:transparent;
  5631. }
  5632. #u20200_div {
  5633. border-width:0px;
  5634. position:absolute;
  5635. left:0px;
  5636. top:0px;
  5637. width:127px;
  5638. height:25px;
  5639. background:inherit;
  5640. background-color:rgba(255, 255, 255, 1);
  5641. border:none;
  5642. border-radius:0px;
  5643. -moz-box-shadow:none;
  5644. -webkit-box-shadow:none;
  5645. box-shadow:none;
  5646. font-family:'Microsoft YaHei', sans-serif;
  5647. font-weight:400;
  5648. font-style:normal;
  5649. font-size:10px;
  5650. }
  5651. #u20200 {
  5652. border-width:0px;
  5653. position:absolute;
  5654. left:1116px;
  5655. top:141px;
  5656. width:127px;
  5657. height:25px;
  5658. display:flex;
  5659. font-family:'Microsoft YaHei', sans-serif;
  5660. font-weight:400;
  5661. font-style:normal;
  5662. font-size:10px;
  5663. }
  5664. #u20200 .text {
  5665. position:absolute;
  5666. align-self:center;
  5667. padding:2px 2px 2px 2px;
  5668. box-sizing:border-box;
  5669. width:100%;
  5670. }
  5671. #u20200_div.disabled {
  5672. border-width:0px;
  5673. position:absolute;
  5674. left:0px;
  5675. top:0px;
  5676. width:127px;
  5677. height:25px;
  5678. background:inherit;
  5679. background-color:rgba(240, 240, 240, 1);
  5680. border:none;
  5681. border-radius:0px;
  5682. -moz-box-shadow:none;
  5683. -webkit-box-shadow:none;
  5684. box-shadow:none;
  5685. font-family:'Microsoft YaHei', sans-serif;
  5686. font-weight:400;
  5687. font-style:normal;
  5688. font-size:10px;
  5689. }
  5690. #u20200.disabled {
  5691. }
  5692. #u20201 {
  5693. border-width:0px;
  5694. position:absolute;
  5695. left:0px;
  5696. top:0px;
  5697. width:0px;
  5698. height:0px;
  5699. }
  5700. #u20202_div {
  5701. border-width:0px;
  5702. position:absolute;
  5703. left:0px;
  5704. top:0px;
  5705. width:140px;
  5706. height:30px;
  5707. background:inherit;
  5708. background-color:rgba(255, 255, 255, 1);
  5709. box-sizing:border-box;
  5710. border-width:1px;
  5711. border-style:solid;
  5712. border-color:rgba(215, 215, 215, 1);
  5713. border-radius:4px;
  5714. -moz-box-shadow:none;
  5715. -webkit-box-shadow:none;
  5716. box-shadow:none;
  5717. font-size:14px;
  5718. }
  5719. #u20202 {
  5720. border-width:0px;
  5721. position:absolute;
  5722. left:500px;
  5723. top:180px;
  5724. width:140px;
  5725. height:30px;
  5726. display:flex;
  5727. font-size:14px;
  5728. }
  5729. #u20202 .text {
  5730. position:absolute;
  5731. align-self:center;
  5732. padding:2px 2px 2px 2px;
  5733. box-sizing:border-box;
  5734. width:100%;
  5735. }
  5736. #u20202_text {
  5737. border-width:0px;
  5738. word-wrap:break-word;
  5739. text-transform:none;
  5740. visibility:hidden;
  5741. }
  5742. #u20203_input {
  5743. position:absolute;
  5744. left:0px;
  5745. top:0px;
  5746. width:134px;
  5747. height:23px;
  5748. padding:2px 2px 2px 2px;
  5749. font-family:'ArialMT', 'Arial', sans-serif;
  5750. font-weight:400;
  5751. font-style:normal;
  5752. font-size:14px;
  5753. letter-spacing:normal;
  5754. color:#AAAAAA;
  5755. vertical-align:none;
  5756. text-align:left;
  5757. text-transform:none;
  5758. background-color:transparent;
  5759. border-color:transparent;
  5760. }
  5761. #u20203_input.disabled {
  5762. position:absolute;
  5763. left:0px;
  5764. top:0px;
  5765. width:134px;
  5766. height:23px;
  5767. padding:2px 2px 2px 2px;
  5768. font-family:'ArialMT', 'Arial', sans-serif;
  5769. font-weight:400;
  5770. font-style:normal;
  5771. font-size:14px;
  5772. letter-spacing:normal;
  5773. color:#AAAAAA;
  5774. vertical-align:none;
  5775. text-align:left;
  5776. text-transform:none;
  5777. background-color:transparent;
  5778. border-color:transparent;
  5779. }
  5780. #u20203_div {
  5781. border-width:0px;
  5782. position:absolute;
  5783. left:0px;
  5784. top:0px;
  5785. width:134px;
  5786. height:23px;
  5787. background:inherit;
  5788. background-color:rgba(255, 255, 255, 1);
  5789. border:none;
  5790. border-radius:0px;
  5791. -moz-box-shadow:none;
  5792. -webkit-box-shadow:none;
  5793. box-shadow:none;
  5794. font-size:14px;
  5795. color:#AAAAAA;
  5796. }
  5797. #u20203 {
  5798. border-width:0px;
  5799. position:absolute;
  5800. left:504px;
  5801. top:182px;
  5802. width:134px;
  5803. height:23px;
  5804. display:flex;
  5805. font-size:14px;
  5806. color:#AAAAAA;
  5807. }
  5808. #u20203 .text {
  5809. position:absolute;
  5810. align-self:flex-start;
  5811. padding:2px 2px 2px 2px;
  5812. box-sizing:border-box;
  5813. width:100%;
  5814. }
  5815. #u20203_div.disabled {
  5816. border-width:0px;
  5817. position:absolute;
  5818. left:0px;
  5819. top:0px;
  5820. width:134px;
  5821. height:23px;
  5822. background:inherit;
  5823. background-color:rgba(240, 240, 240, 1);
  5824. border:none;
  5825. border-radius:0px;
  5826. -moz-box-shadow:none;
  5827. -webkit-box-shadow:none;
  5828. box-shadow:none;
  5829. font-size:14px;
  5830. color:#AAAAAA;
  5831. }
  5832. #u20203.disabled {
  5833. }
  5834. .u20203_input_option {
  5835. font-size:14px;
  5836. }
  5837. #u20204 {
  5838. border-width:0px;
  5839. position:absolute;
  5840. left:0px;
  5841. top:0px;
  5842. width:0px;
  5843. height:0px;
  5844. }
  5845. #u20205_div {
  5846. border-width:0px;
  5847. position:absolute;
  5848. left:0px;
  5849. top:0px;
  5850. width:140px;
  5851. height:30px;
  5852. background:inherit;
  5853. background-color:rgba(255, 255, 255, 1);
  5854. box-sizing:border-box;
  5855. border-width:1px;
  5856. border-style:solid;
  5857. border-color:rgba(215, 215, 215, 1);
  5858. border-radius:4px;
  5859. -moz-box-shadow:none;
  5860. -webkit-box-shadow:none;
  5861. box-shadow:none;
  5862. font-size:14px;
  5863. }
  5864. #u20205 {
  5865. border-width:0px;
  5866. position:absolute;
  5867. left:650px;
  5868. top:180px;
  5869. width:140px;
  5870. height:30px;
  5871. display:flex;
  5872. font-size:14px;
  5873. }
  5874. #u20205 .text {
  5875. position:absolute;
  5876. align-self:center;
  5877. padding:2px 2px 2px 2px;
  5878. box-sizing:border-box;
  5879. width:100%;
  5880. }
  5881. #u20205_text {
  5882. border-width:0px;
  5883. word-wrap:break-word;
  5884. text-transform:none;
  5885. visibility:hidden;
  5886. }
  5887. #u20206_input {
  5888. position:absolute;
  5889. left:0px;
  5890. top:0px;
  5891. width:134px;
  5892. height:23px;
  5893. padding:2px 2px 2px 2px;
  5894. font-family:'ArialMT', 'Arial', sans-serif;
  5895. font-weight:400;
  5896. font-style:normal;
  5897. font-size:14px;
  5898. letter-spacing:normal;
  5899. color:#AAAAAA;
  5900. vertical-align:none;
  5901. text-align:left;
  5902. text-transform:none;
  5903. background-color:transparent;
  5904. border-color:transparent;
  5905. }
  5906. #u20206_input.disabled {
  5907. position:absolute;
  5908. left:0px;
  5909. top:0px;
  5910. width:134px;
  5911. height:23px;
  5912. padding:2px 2px 2px 2px;
  5913. font-family:'ArialMT', 'Arial', sans-serif;
  5914. font-weight:400;
  5915. font-style:normal;
  5916. font-size:14px;
  5917. letter-spacing:normal;
  5918. color:#AAAAAA;
  5919. vertical-align:none;
  5920. text-align:left;
  5921. text-transform:none;
  5922. background-color:transparent;
  5923. border-color:transparent;
  5924. }
  5925. #u20206_div {
  5926. border-width:0px;
  5927. position:absolute;
  5928. left:0px;
  5929. top:0px;
  5930. width:134px;
  5931. height:23px;
  5932. background:inherit;
  5933. background-color:rgba(255, 255, 255, 1);
  5934. border:none;
  5935. border-radius:0px;
  5936. -moz-box-shadow:none;
  5937. -webkit-box-shadow:none;
  5938. box-shadow:none;
  5939. font-size:14px;
  5940. color:#AAAAAA;
  5941. }
  5942. #u20206 {
  5943. border-width:0px;
  5944. position:absolute;
  5945. left:654px;
  5946. top:182px;
  5947. width:134px;
  5948. height:23px;
  5949. display:flex;
  5950. font-size:14px;
  5951. color:#AAAAAA;
  5952. }
  5953. #u20206 .text {
  5954. position:absolute;
  5955. align-self:flex-start;
  5956. padding:2px 2px 2px 2px;
  5957. box-sizing:border-box;
  5958. width:100%;
  5959. }
  5960. #u20206_div.disabled {
  5961. border-width:0px;
  5962. position:absolute;
  5963. left:0px;
  5964. top:0px;
  5965. width:134px;
  5966. height:23px;
  5967. background:inherit;
  5968. background-color:rgba(240, 240, 240, 1);
  5969. border:none;
  5970. border-radius:0px;
  5971. -moz-box-shadow:none;
  5972. -webkit-box-shadow:none;
  5973. box-shadow:none;
  5974. font-size:14px;
  5975. color:#AAAAAA;
  5976. }
  5977. #u20206.disabled {
  5978. }
  5979. .u20206_input_option {
  5980. font-size:14px;
  5981. }
  5982. #u20207 {
  5983. border-width:0px;
  5984. position:absolute;
  5985. left:0px;
  5986. top:0px;
  5987. width:0px;
  5988. height:0px;
  5989. }
  5990. #u20208_div {
  5991. border-width:0px;
  5992. position:absolute;
  5993. left:0px;
  5994. top:0px;
  5995. width:140px;
  5996. height:30px;
  5997. background:inherit;
  5998. background-color:rgba(255, 255, 255, 1);
  5999. box-sizing:border-box;
  6000. border-width:1px;
  6001. border-style:solid;
  6002. border-color:rgba(201, 201, 201, 1);
  6003. border-radius:4px;
  6004. -moz-box-shadow:none;
  6005. -webkit-box-shadow:none;
  6006. box-shadow:none;
  6007. font-family:'Microsoft YaHei', sans-serif;
  6008. font-weight:400;
  6009. font-style:normal;
  6010. font-size:14px;
  6011. color:#CCCCCC;
  6012. text-align:left;
  6013. }
  6014. #u20208 {
  6015. border-width:0px;
  6016. position:absolute;
  6017. left:1408px;
  6018. top:140px;
  6019. width:140px;
  6020. height:30px;
  6021. display:flex;
  6022. font-family:'Microsoft YaHei', sans-serif;
  6023. font-weight:400;
  6024. font-style:normal;
  6025. font-size:14px;
  6026. color:#CCCCCC;
  6027. text-align:left;
  6028. }
  6029. #u20208 .text {
  6030. position:absolute;
  6031. align-self:center;
  6032. padding:2px 8px 2px 8px;
  6033. box-sizing:border-box;
  6034. width:100%;
  6035. }
  6036. #u20208_text {
  6037. border-width:0px;
  6038. word-wrap:break-word;
  6039. text-transform:none;
  6040. visibility:hidden;
  6041. }
  6042. #u20209_input {
  6043. position:absolute;
  6044. left:0px;
  6045. top:0px;
  6046. width:127px;
  6047. height:25px;
  6048. padding:2px 2px 2px 2px;
  6049. font-family:'Microsoft YaHei', sans-serif;
  6050. font-weight:400;
  6051. font-style:normal;
  6052. font-size:14px;
  6053. letter-spacing:normal;
  6054. color:#000000;
  6055. vertical-align:none;
  6056. text-align:left;
  6057. text-transform:none;
  6058. background-color:transparent;
  6059. border-color:transparent;
  6060. }
  6061. #u20209_input.disabled {
  6062. position:absolute;
  6063. left:0px;
  6064. top:0px;
  6065. width:127px;
  6066. height:25px;
  6067. padding:2px 2px 2px 2px;
  6068. font-family:'Microsoft YaHei', sans-serif;
  6069. font-weight:400;
  6070. font-style:normal;
  6071. font-size:14px;
  6072. letter-spacing:normal;
  6073. color:#000000;
  6074. vertical-align:none;
  6075. text-align:left;
  6076. text-transform:none;
  6077. background-color:transparent;
  6078. border-color:transparent;
  6079. }
  6080. #u20209_div {
  6081. border-width:0px;
  6082. position:absolute;
  6083. left:0px;
  6084. top:0px;
  6085. width:127px;
  6086. height:25px;
  6087. background:inherit;
  6088. background-color:rgba(255, 255, 255, 1);
  6089. border:none;
  6090. border-radius:0px;
  6091. -moz-box-shadow:none;
  6092. -webkit-box-shadow:none;
  6093. box-shadow:none;
  6094. font-family:'Microsoft YaHei', sans-serif;
  6095. font-weight:400;
  6096. font-style:normal;
  6097. font-size:14px;
  6098. }
  6099. #u20209 {
  6100. border-width:0px;
  6101. position:absolute;
  6102. left:1416px;
  6103. top:141px;
  6104. width:127px;
  6105. height:25px;
  6106. display:flex;
  6107. font-family:'Microsoft YaHei', sans-serif;
  6108. font-weight:400;
  6109. font-style:normal;
  6110. font-size:14px;
  6111. }
  6112. #u20209 .text {
  6113. position:absolute;
  6114. align-self:center;
  6115. padding:2px 2px 2px 2px;
  6116. box-sizing:border-box;
  6117. width:100%;
  6118. }
  6119. #u20209_div.disabled {
  6120. border-width:0px;
  6121. position:absolute;
  6122. left:0px;
  6123. top:0px;
  6124. width:127px;
  6125. height:25px;
  6126. background:inherit;
  6127. background-color:rgba(240, 240, 240, 1);
  6128. border:none;
  6129. border-radius:0px;
  6130. -moz-box-shadow:none;
  6131. -webkit-box-shadow:none;
  6132. box-shadow:none;
  6133. font-family:'Microsoft YaHei', sans-serif;
  6134. font-weight:400;
  6135. font-style:normal;
  6136. font-size:14px;
  6137. }
  6138. #u20209.disabled {
  6139. }
  6140. #u20211 {
  6141. border-width:0px;
  6142. position:absolute;
  6143. left:0px;
  6144. top:0px;
  6145. width:0px;
  6146. height:0px;
  6147. }
  6148. #u20212_div {
  6149. border-width:0px;
  6150. position:absolute;
  6151. left:0px;
  6152. top:0px;
  6153. width:200px;
  6154. height:1193px;
  6155. background:inherit;
  6156. background-color:rgba(255, 255, 255, 1);
  6157. border:none;
  6158. border-radius:0px;
  6159. -moz-box-shadow:none;
  6160. -webkit-box-shadow:none;
  6161. box-shadow:none;
  6162. }
  6163. #u20212 {
  6164. border-width:0px;
  6165. position:absolute;
  6166. left:120px;
  6167. top:50px;
  6168. width:200px;
  6169. height:1193px;
  6170. display:flex;
  6171. }
  6172. #u20212 .text {
  6173. position:absolute;
  6174. align-self:center;
  6175. padding:2px 2px 2px 2px;
  6176. box-sizing:border-box;
  6177. width:100%;
  6178. }
  6179. #u20212_text {
  6180. border-width:0px;
  6181. word-wrap:break-word;
  6182. text-transform:none;
  6183. visibility:hidden;
  6184. }
  6185. #u20213_div {
  6186. border-width:0px;
  6187. position:absolute;
  6188. left:0px;
  6189. top:0px;
  6190. width:200px;
  6191. height:60px;
  6192. background:inherit;
  6193. background-color:rgba(224, 231, 247, 1);
  6194. border:none;
  6195. border-radius:0px;
  6196. -moz-box-shadow:none;
  6197. -webkit-box-shadow:none;
  6198. box-shadow:none;
  6199. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6200. font-weight:500;
  6201. font-style:normal;
  6202. font-size:18px;
  6203. }
  6204. #u20213 {
  6205. border-width:0px;
  6206. position:absolute;
  6207. left:120px;
  6208. top:50px;
  6209. width:200px;
  6210. height:60px;
  6211. display:flex;
  6212. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6213. font-weight:500;
  6214. font-style:normal;
  6215. font-size:18px;
  6216. }
  6217. #u20213 .text {
  6218. position:absolute;
  6219. align-self:center;
  6220. padding:0px 0px 0px 20px;
  6221. box-sizing:border-box;
  6222. width:100%;
  6223. }
  6224. #u20213_text {
  6225. border-width:0px;
  6226. word-wrap:break-word;
  6227. text-transform:none;
  6228. }
  6229. #u20214_div {
  6230. border-width:0px;
  6231. position:absolute;
  6232. left:0px;
  6233. top:0px;
  6234. width:65px;
  6235. height:22px;
  6236. background:inherit;
  6237. background-color:rgba(255, 255, 255, 0);
  6238. border:none;
  6239. border-radius:0px;
  6240. -moz-box-shadow:none;
  6241. -webkit-box-shadow:none;
  6242. box-shadow:none;
  6243. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6244. font-weight:400;
  6245. font-style:normal;
  6246. font-size:16px;
  6247. }
  6248. #u20214 {
  6249. border-width:0px;
  6250. position:absolute;
  6251. left:150px;
  6252. top:164px;
  6253. width:65px;
  6254. height:22px;
  6255. display:flex;
  6256. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6257. font-weight:400;
  6258. font-style:normal;
  6259. font-size:16px;
  6260. }
  6261. #u20214 .text {
  6262. position:absolute;
  6263. align-self:flex-start;
  6264. padding:0px 0px 0px 0px;
  6265. box-sizing:border-box;
  6266. width:100%;
  6267. }
  6268. #u20214_text {
  6269. border-width:0px;
  6270. white-space:nowrap;
  6271. text-transform:none;
  6272. }
  6273. #u20215_div {
  6274. border-width:0px;
  6275. position:absolute;
  6276. left:0px;
  6277. top:0px;
  6278. width:61px;
  6279. height:17px;
  6280. background:inherit;
  6281. background-color:rgba(255, 255, 255, 0);
  6282. border:none;
  6283. border-radius:0px;
  6284. -moz-box-shadow:none;
  6285. -webkit-box-shadow:none;
  6286. box-shadow:none;
  6287. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6288. font-weight:400;
  6289. font-style:normal;
  6290. font-size:12px;
  6291. color:#AAAAAA;
  6292. }
  6293. #u20215 {
  6294. border-width:0px;
  6295. position:absolute;
  6296. left:150px;
  6297. top:128px;
  6298. width:61px;
  6299. height:17px;
  6300. display:flex;
  6301. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6302. font-weight:400;
  6303. font-style:normal;
  6304. font-size:12px;
  6305. color:#AAAAAA;
  6306. }
  6307. #u20215 .text {
  6308. position:absolute;
  6309. align-self:flex-start;
  6310. padding:0px 0px 0px 0px;
  6311. box-sizing:border-box;
  6312. width:100%;
  6313. }
  6314. #u20215_text {
  6315. border-width:0px;
  6316. white-space:nowrap;
  6317. text-transform:none;
  6318. }
  6319. #u20216_img {
  6320. border-width:0px;
  6321. position:absolute;
  6322. left:0px;
  6323. top:0px;
  6324. width:201px;
  6325. height:2px;
  6326. }
  6327. #u20216 {
  6328. border-width:0px;
  6329. position:absolute;
  6330. left:120px;
  6331. top:292px;
  6332. width:200px;
  6333. height:1px;
  6334. display:flex;
  6335. }
  6336. #u20216 .text {
  6337. position:absolute;
  6338. align-self:center;
  6339. padding:2px 2px 2px 2px;
  6340. box-sizing:border-box;
  6341. width:100%;
  6342. }
  6343. #u20216_text {
  6344. border-width:0px;
  6345. word-wrap:break-word;
  6346. text-transform:none;
  6347. visibility:hidden;
  6348. }
  6349. #u20217_div {
  6350. border-width:0px;
  6351. position:absolute;
  6352. left:0px;
  6353. top:0px;
  6354. width:65px;
  6355. height:22px;
  6356. background:inherit;
  6357. background-color:rgba(255, 255, 255, 0);
  6358. border:none;
  6359. border-radius:0px;
  6360. -moz-box-shadow:none;
  6361. -webkit-box-shadow:none;
  6362. box-shadow:none;
  6363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6364. font-weight:400;
  6365. font-style:normal;
  6366. font-size:16px;
  6367. }
  6368. #u20217 {
  6369. border-width:0px;
  6370. position:absolute;
  6371. left:150px;
  6372. top:248px;
  6373. width:65px;
  6374. height:22px;
  6375. display:flex;
  6376. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6377. font-weight:400;
  6378. font-style:normal;
  6379. font-size:16px;
  6380. }
  6381. #u20217 .text {
  6382. position:absolute;
  6383. align-self:flex-start;
  6384. padding:0px 0px 0px 0px;
  6385. box-sizing:border-box;
  6386. width:100%;
  6387. }
  6388. #u20217_text {
  6389. border-width:0px;
  6390. white-space:nowrap;
  6391. text-transform:none;
  6392. }
  6393. #u20218_div {
  6394. border-width:0px;
  6395. position:absolute;
  6396. left:0px;
  6397. top:0px;
  6398. width:65px;
  6399. height:22px;
  6400. background:inherit;
  6401. background-color:rgba(255, 255, 255, 0);
  6402. border:none;
  6403. border-radius:0px;
  6404. -moz-box-shadow:none;
  6405. -webkit-box-shadow:none;
  6406. box-shadow:none;
  6407. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6408. font-weight:400;
  6409. font-style:normal;
  6410. font-size:16px;
  6411. }
  6412. #u20218 {
  6413. border-width:0px;
  6414. position:absolute;
  6415. left:150px;
  6416. top:349px;
  6417. width:65px;
  6418. height:22px;
  6419. display:flex;
  6420. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6421. font-weight:400;
  6422. font-style:normal;
  6423. font-size:16px;
  6424. }
  6425. #u20218 .text {
  6426. position:absolute;
  6427. align-self:flex-start;
  6428. padding:0px 0px 0px 0px;
  6429. box-sizing:border-box;
  6430. width:100%;
  6431. }
  6432. #u20218_text {
  6433. border-width:0px;
  6434. white-space:nowrap;
  6435. text-transform:none;
  6436. }
  6437. #u20219_div {
  6438. border-width:0px;
  6439. position:absolute;
  6440. left:0px;
  6441. top:0px;
  6442. width:49px;
  6443. height:17px;
  6444. background:inherit;
  6445. background-color:rgba(255, 255, 255, 0);
  6446. border:none;
  6447. border-radius:0px;
  6448. -moz-box-shadow:none;
  6449. -webkit-box-shadow:none;
  6450. box-shadow:none;
  6451. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6452. font-weight:400;
  6453. font-style:normal;
  6454. font-size:12px;
  6455. color:#AAAAAA;
  6456. }
  6457. #u20219 {
  6458. border-width:0px;
  6459. position:absolute;
  6460. left:150px;
  6461. top:313px;
  6462. width:49px;
  6463. height:17px;
  6464. display:flex;
  6465. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6466. font-weight:400;
  6467. font-style:normal;
  6468. font-size:12px;
  6469. color:#AAAAAA;
  6470. }
  6471. #u20219 .text {
  6472. position:absolute;
  6473. align-self:flex-start;
  6474. padding:0px 0px 0px 0px;
  6475. box-sizing:border-box;
  6476. width:100%;
  6477. }
  6478. #u20219_text {
  6479. border-width:0px;
  6480. white-space:nowrap;
  6481. text-transform:none;
  6482. }
  6483. #u20220_div {
  6484. border-width:0px;
  6485. position:absolute;
  6486. left:0px;
  6487. top:0px;
  6488. width:65px;
  6489. height:22px;
  6490. background:inherit;
  6491. background-color:rgba(255, 255, 255, 0);
  6492. border:none;
  6493. border-radius:0px;
  6494. -moz-box-shadow:none;
  6495. -webkit-box-shadow:none;
  6496. box-shadow:none;
  6497. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6498. font-weight:400;
  6499. font-style:normal;
  6500. font-size:16px;
  6501. }
  6502. #u20220 {
  6503. border-width:0px;
  6504. position:absolute;
  6505. left:150px;
  6506. top:391px;
  6507. width:65px;
  6508. height:22px;
  6509. display:flex;
  6510. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6511. font-weight:400;
  6512. font-style:normal;
  6513. font-size:16px;
  6514. }
  6515. #u20220 .text {
  6516. position:absolute;
  6517. align-self:flex-start;
  6518. padding:0px 0px 0px 0px;
  6519. box-sizing:border-box;
  6520. width:100%;
  6521. }
  6522. #u20220_text {
  6523. border-width:0px;
  6524. white-space:nowrap;
  6525. text-transform:none;
  6526. }
  6527. #u20221_img {
  6528. border-width:0px;
  6529. position:absolute;
  6530. left:0px;
  6531. top:0px;
  6532. width:201px;
  6533. height:2px;
  6534. }
  6535. #u20221 {
  6536. border-width:0px;
  6537. position:absolute;
  6538. left:120px;
  6539. top:473px;
  6540. width:200px;
  6541. height:1px;
  6542. display:flex;
  6543. }
  6544. #u20221 .text {
  6545. position:absolute;
  6546. align-self:center;
  6547. padding:2px 2px 2px 2px;
  6548. box-sizing:border-box;
  6549. width:100%;
  6550. }
  6551. #u20221_text {
  6552. border-width:0px;
  6553. word-wrap:break-word;
  6554. text-transform:none;
  6555. visibility:hidden;
  6556. }
  6557. #u20222_div {
  6558. border-width:0px;
  6559. position:absolute;
  6560. left:0px;
  6561. top:0px;
  6562. width:49px;
  6563. height:22px;
  6564. background:inherit;
  6565. background-color:rgba(255, 255, 255, 0);
  6566. border:none;
  6567. border-radius:0px;
  6568. -moz-box-shadow:none;
  6569. -webkit-box-shadow:none;
  6570. box-shadow:none;
  6571. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6572. font-weight:400;
  6573. font-style:normal;
  6574. font-size:16px;
  6575. }
  6576. #u20222 {
  6577. border-width:0px;
  6578. position:absolute;
  6579. left:150px;
  6580. top:530px;
  6581. width:49px;
  6582. height:22px;
  6583. display:flex;
  6584. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6585. font-weight:400;
  6586. font-style:normal;
  6587. font-size:16px;
  6588. }
  6589. #u20222 .text {
  6590. position:absolute;
  6591. align-self:flex-start;
  6592. padding:0px 0px 0px 0px;
  6593. box-sizing:border-box;
  6594. width:100%;
  6595. }
  6596. #u20222_text {
  6597. border-width:0px;
  6598. white-space:nowrap;
  6599. text-transform:none;
  6600. }
  6601. #u20223_div {
  6602. border-width:0px;
  6603. position:absolute;
  6604. left:0px;
  6605. top:0px;
  6606. width:49px;
  6607. height:17px;
  6608. background:inherit;
  6609. background-color:rgba(255, 255, 255, 0);
  6610. border:none;
  6611. border-radius:0px;
  6612. -moz-box-shadow:none;
  6613. -webkit-box-shadow:none;
  6614. box-shadow:none;
  6615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6616. font-weight:400;
  6617. font-style:normal;
  6618. font-size:12px;
  6619. color:#AAAAAA;
  6620. }
  6621. #u20223 {
  6622. border-width:0px;
  6623. position:absolute;
  6624. left:150px;
  6625. top:494px;
  6626. width:49px;
  6627. height:17px;
  6628. display:flex;
  6629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6630. font-weight:400;
  6631. font-style:normal;
  6632. font-size:12px;
  6633. color:#AAAAAA;
  6634. }
  6635. #u20223 .text {
  6636. position:absolute;
  6637. align-self:flex-start;
  6638. padding:0px 0px 0px 0px;
  6639. box-sizing:border-box;
  6640. width:100%;
  6641. }
  6642. #u20223_text {
  6643. border-width:0px;
  6644. white-space:nowrap;
  6645. text-transform:none;
  6646. }
  6647. #u20224_div {
  6648. border-width:0px;
  6649. position:absolute;
  6650. left:0px;
  6651. top:0px;
  6652. width:65px;
  6653. height:22px;
  6654. background:inherit;
  6655. background-color:rgba(255, 255, 255, 0);
  6656. border:none;
  6657. border-radius:0px;
  6658. -moz-box-shadow:none;
  6659. -webkit-box-shadow:none;
  6660. box-shadow:none;
  6661. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6662. font-weight:400;
  6663. font-style:normal;
  6664. font-size:16px;
  6665. }
  6666. #u20224 {
  6667. border-width:0px;
  6668. position:absolute;
  6669. left:150px;
  6670. top:206px;
  6671. width:65px;
  6672. height:22px;
  6673. display:flex;
  6674. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6675. font-weight:400;
  6676. font-style:normal;
  6677. font-size:16px;
  6678. }
  6679. #u20224 .text {
  6680. position:absolute;
  6681. align-self:flex-start;
  6682. padding:0px 0px 0px 0px;
  6683. box-sizing:border-box;
  6684. width:100%;
  6685. }
  6686. #u20224_text {
  6687. border-width:0px;
  6688. white-space:nowrap;
  6689. text-transform:none;
  6690. }
  6691. #u20225_div {
  6692. border-width:0px;
  6693. position:absolute;
  6694. left:0px;
  6695. top:0px;
  6696. width:65px;
  6697. height:22px;
  6698. background:inherit;
  6699. background-color:rgba(255, 255, 255, 0);
  6700. border:none;
  6701. border-radius:0px;
  6702. -moz-box-shadow:none;
  6703. -webkit-box-shadow:none;
  6704. box-shadow:none;
  6705. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6706. font-weight:400;
  6707. font-style:normal;
  6708. font-size:16px;
  6709. }
  6710. #u20225 {
  6711. border-width:0px;
  6712. position:absolute;
  6713. left:150px;
  6714. top:433px;
  6715. width:65px;
  6716. height:22px;
  6717. display:flex;
  6718. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6719. font-weight:400;
  6720. font-style:normal;
  6721. font-size:16px;
  6722. }
  6723. #u20225 .text {
  6724. position:absolute;
  6725. align-self:flex-start;
  6726. padding:0px 0px 0px 0px;
  6727. box-sizing:border-box;
  6728. width:100%;
  6729. }
  6730. #u20225_text {
  6731. border-width:0px;
  6732. white-space:nowrap;
  6733. text-transform:none;
  6734. }
  6735. #u20226_div {
  6736. border-width:0px;
  6737. position:absolute;
  6738. left:0px;
  6739. top:0px;
  6740. width:73px;
  6741. height:50px;
  6742. background:inherit;
  6743. background-color:rgba(255, 255, 255, 0);
  6744. border:none;
  6745. border-left:0px;
  6746. border-top:0px;
  6747. border-right:0px;
  6748. border-radius:0px;
  6749. border-bottom-right-radius:0px;
  6750. border-bottom-left-radius:0px;
  6751. -moz-box-shadow:none;
  6752. -webkit-box-shadow:none;
  6753. box-shadow:none;
  6754. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6755. font-weight:500;
  6756. font-style:normal;
  6757. font-size:18px;
  6758. }
  6759. #u20226 {
  6760. border-width:0px;
  6761. position:absolute;
  6762. left:352px;
  6763. top:50px;
  6764. width:73px;
  6765. height:50px;
  6766. display:flex;
  6767. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6768. font-weight:500;
  6769. font-style:normal;
  6770. font-size:18px;
  6771. }
  6772. #u20226 .text {
  6773. position:absolute;
  6774. align-self:center;
  6775. padding:0px 0px 0px 0px;
  6776. box-sizing:border-box;
  6777. width:100%;
  6778. }
  6779. #u20226_text {
  6780. border-width:0px;
  6781. white-space:nowrap;
  6782. text-transform:none;
  6783. }
  6784. #u20227_div {
  6785. border-width:0px;
  6786. position:absolute;
  6787. left:0px;
  6788. top:0px;
  6789. width:267px;
  6790. height:20px;
  6791. background:inherit;
  6792. background-color:rgba(255, 255, 255, 0);
  6793. border:none;
  6794. border-left:0px;
  6795. border-top:0px;
  6796. border-right:0px;
  6797. border-radius:0px;
  6798. border-bottom-right-radius:0px;
  6799. border-bottom-left-radius:0px;
  6800. -moz-box-shadow:none;
  6801. -webkit-box-shadow:none;
  6802. box-shadow:none;
  6803. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6804. font-weight:400;
  6805. font-style:normal;
  6806. font-size:14px;
  6807. color:#7F7F7F;
  6808. }
  6809. #u20227 {
  6810. border-width:0px;
  6811. position:absolute;
  6812. left:352px;
  6813. top:100px;
  6814. width:267px;
  6815. height:20px;
  6816. display:flex;
  6817. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6818. font-weight:400;
  6819. font-style:normal;
  6820. font-size:14px;
  6821. color:#7F7F7F;
  6822. }
  6823. #u20227 .text {
  6824. position:absolute;
  6825. align-self:center;
  6826. padding:0px 0px 0px 0px;
  6827. box-sizing:border-box;
  6828. width:100%;
  6829. }
  6830. #u20227_text {
  6831. border-width:0px;
  6832. white-space:nowrap;
  6833. text-transform:none;
  6834. }
  6835. #u20228 {
  6836. border-width:0px;
  6837. position:absolute;
  6838. left:0px;
  6839. top:0px;
  6840. width:0px;
  6841. height:0px;
  6842. }
  6843. #u20229_div {
  6844. border-width:0px;
  6845. position:absolute;
  6846. left:0px;
  6847. top:0px;
  6848. width:140px;
  6849. height:30px;
  6850. background:inherit;
  6851. background-color:rgba(255, 255, 255, 1);
  6852. box-sizing:border-box;
  6853. border-width:1px;
  6854. border-style:solid;
  6855. border-color:rgba(215, 215, 215, 1);
  6856. border-radius:4px;
  6857. -moz-box-shadow:none;
  6858. -webkit-box-shadow:none;
  6859. box-shadow:none;
  6860. font-size:14px;
  6861. }
  6862. #u20229 {
  6863. border-width:0px;
  6864. position:absolute;
  6865. left:954px;
  6866. top:140px;
  6867. width:140px;
  6868. height:30px;
  6869. display:flex;
  6870. font-size:14px;
  6871. }
  6872. #u20229 .text {
  6873. position:absolute;
  6874. align-self:center;
  6875. padding:2px 2px 2px 2px;
  6876. box-sizing:border-box;
  6877. width:100%;
  6878. }
  6879. #u20229_text {
  6880. border-width:0px;
  6881. word-wrap:break-word;
  6882. text-transform:none;
  6883. visibility:hidden;
  6884. }
  6885. #u20230_input {
  6886. position:absolute;
  6887. left:0px;
  6888. top:0px;
  6889. width:134px;
  6890. height:23px;
  6891. padding:2px 2px 2px 2px;
  6892. font-family:'ArialMT', 'Arial', sans-serif;
  6893. font-weight:400;
  6894. font-style:normal;
  6895. font-size:14px;
  6896. letter-spacing:normal;
  6897. color:#AAAAAA;
  6898. vertical-align:none;
  6899. text-align:left;
  6900. text-transform:none;
  6901. background-color:transparent;
  6902. border-color:transparent;
  6903. }
  6904. #u20230_input.disabled {
  6905. position:absolute;
  6906. left:0px;
  6907. top:0px;
  6908. width:134px;
  6909. height:23px;
  6910. padding:2px 2px 2px 2px;
  6911. font-family:'ArialMT', 'Arial', sans-serif;
  6912. font-weight:400;
  6913. font-style:normal;
  6914. font-size:14px;
  6915. letter-spacing:normal;
  6916. color:#AAAAAA;
  6917. vertical-align:none;
  6918. text-align:left;
  6919. text-transform:none;
  6920. background-color:transparent;
  6921. border-color:transparent;
  6922. }
  6923. #u20230_div {
  6924. border-width:0px;
  6925. position:absolute;
  6926. left:0px;
  6927. top:0px;
  6928. width:134px;
  6929. height:23px;
  6930. background:inherit;
  6931. background-color:rgba(255, 255, 255, 1);
  6932. border:none;
  6933. border-radius:0px;
  6934. -moz-box-shadow:none;
  6935. -webkit-box-shadow:none;
  6936. box-shadow:none;
  6937. font-size:14px;
  6938. color:#AAAAAA;
  6939. }
  6940. #u20230 {
  6941. border-width:0px;
  6942. position:absolute;
  6943. left:958px;
  6944. top:142px;
  6945. width:134px;
  6946. height:23px;
  6947. display:flex;
  6948. font-size:14px;
  6949. color:#AAAAAA;
  6950. }
  6951. #u20230 .text {
  6952. position:absolute;
  6953. align-self:flex-start;
  6954. padding:2px 2px 2px 2px;
  6955. box-sizing:border-box;
  6956. width:100%;
  6957. }
  6958. #u20230_div.disabled {
  6959. border-width:0px;
  6960. position:absolute;
  6961. left:0px;
  6962. top:0px;
  6963. width:134px;
  6964. height:23px;
  6965. background:inherit;
  6966. background-color:rgba(240, 240, 240, 1);
  6967. border:none;
  6968. border-radius:0px;
  6969. -moz-box-shadow:none;
  6970. -webkit-box-shadow:none;
  6971. box-shadow:none;
  6972. font-size:14px;
  6973. color:#AAAAAA;
  6974. }
  6975. #u20230.disabled {
  6976. }
  6977. .u20230_input_option {
  6978. font-size:14px;
  6979. }
  6980. #u20231 {
  6981. border-width:0px;
  6982. position:absolute;
  6983. left:0px;
  6984. top:0px;
  6985. width:0px;
  6986. height:0px;
  6987. }
  6988. #u20232_div {
  6989. border-width:0px;
  6990. position:absolute;
  6991. left:0px;
  6992. top:0px;
  6993. width:140px;
  6994. height:30px;
  6995. background:inherit;
  6996. background-color:rgba(255, 255, 255, 1);
  6997. box-sizing:border-box;
  6998. border-width:1px;
  6999. border-style:solid;
  7000. border-color:rgba(201, 201, 201, 1);
  7001. border-radius:4px;
  7002. -moz-box-shadow:none;
  7003. -webkit-box-shadow:none;
  7004. box-shadow:none;
  7005. font-family:'Microsoft YaHei', sans-serif;
  7006. font-weight:400;
  7007. font-style:normal;
  7008. font-size:14px;
  7009. color:#CCCCCC;
  7010. text-align:left;
  7011. }
  7012. #u20232 {
  7013. border-width:0px;
  7014. position:absolute;
  7015. left:1258px;
  7016. top:140px;
  7017. width:140px;
  7018. height:30px;
  7019. display:flex;
  7020. font-family:'Microsoft YaHei', sans-serif;
  7021. font-weight:400;
  7022. font-style:normal;
  7023. font-size:14px;
  7024. color:#CCCCCC;
  7025. text-align:left;
  7026. }
  7027. #u20232 .text {
  7028. position:absolute;
  7029. align-self:center;
  7030. padding:2px 8px 2px 8px;
  7031. box-sizing:border-box;
  7032. width:100%;
  7033. }
  7034. #u20232_text {
  7035. border-width:0px;
  7036. word-wrap:break-word;
  7037. text-transform:none;
  7038. visibility:hidden;
  7039. }
  7040. #u20233_input {
  7041. position:absolute;
  7042. left:0px;
  7043. top:0px;
  7044. width:127px;
  7045. height:25px;
  7046. padding:2px 2px 2px 2px;
  7047. font-family:'Microsoft YaHei', sans-serif;
  7048. font-weight:400;
  7049. font-style:normal;
  7050. font-size:10px;
  7051. letter-spacing:normal;
  7052. color:#000000;
  7053. vertical-align:none;
  7054. text-align:left;
  7055. text-transform:none;
  7056. background-color:transparent;
  7057. border-color:transparent;
  7058. }
  7059. #u20233_input.disabled {
  7060. position:absolute;
  7061. left:0px;
  7062. top:0px;
  7063. width:127px;
  7064. height:25px;
  7065. padding:2px 2px 2px 2px;
  7066. font-family:'Microsoft YaHei', sans-serif;
  7067. font-weight:400;
  7068. font-style:normal;
  7069. font-size:10px;
  7070. letter-spacing:normal;
  7071. color:#000000;
  7072. vertical-align:none;
  7073. text-align:left;
  7074. text-transform:none;
  7075. background-color:transparent;
  7076. border-color:transparent;
  7077. }
  7078. #u20233_div {
  7079. border-width:0px;
  7080. position:absolute;
  7081. left:0px;
  7082. top:0px;
  7083. width:127px;
  7084. height:25px;
  7085. background:inherit;
  7086. background-color:rgba(255, 255, 255, 1);
  7087. border:none;
  7088. border-radius:0px;
  7089. -moz-box-shadow:none;
  7090. -webkit-box-shadow:none;
  7091. box-shadow:none;
  7092. font-family:'Microsoft YaHei', sans-serif;
  7093. font-weight:400;
  7094. font-style:normal;
  7095. font-size:10px;
  7096. }
  7097. #u20233 {
  7098. border-width:0px;
  7099. position:absolute;
  7100. left:1266px;
  7101. top:141px;
  7102. width:127px;
  7103. height:25px;
  7104. display:flex;
  7105. font-family:'Microsoft YaHei', sans-serif;
  7106. font-weight:400;
  7107. font-style:normal;
  7108. font-size:10px;
  7109. }
  7110. #u20233 .text {
  7111. position:absolute;
  7112. align-self:center;
  7113. padding:2px 2px 2px 2px;
  7114. box-sizing:border-box;
  7115. width:100%;
  7116. }
  7117. #u20233_div.disabled {
  7118. border-width:0px;
  7119. position:absolute;
  7120. left:0px;
  7121. top:0px;
  7122. width:127px;
  7123. height:25px;
  7124. background:inherit;
  7125. background-color:rgba(240, 240, 240, 1);
  7126. border:none;
  7127. border-radius:0px;
  7128. -moz-box-shadow:none;
  7129. -webkit-box-shadow:none;
  7130. box-shadow:none;
  7131. font-family:'Microsoft YaHei', sans-serif;
  7132. font-weight:400;
  7133. font-style:normal;
  7134. font-size:10px;
  7135. }
  7136. #u20233.disabled {
  7137. }
  7138. #u20234 {
  7139. border-width:0px;
  7140. position:absolute;
  7141. left:0px;
  7142. top:0px;
  7143. width:0px;
  7144. height:0px;
  7145. }
  7146. #u20235_div {
  7147. border-width:0px;
  7148. position:absolute;
  7149. left:0px;
  7150. top:0px;
  7151. width:140px;
  7152. height:30px;
  7153. background:inherit;
  7154. background-color:rgba(255, 255, 255, 1);
  7155. box-sizing:border-box;
  7156. border-width:1px;
  7157. border-style:solid;
  7158. border-color:rgba(215, 215, 215, 1);
  7159. border-radius:4px;
  7160. -moz-box-shadow:none;
  7161. -webkit-box-shadow:none;
  7162. box-shadow:none;
  7163. font-size:14px;
  7164. }
  7165. #u20235 {
  7166. border-width:0px;
  7167. position:absolute;
  7168. left:348px;
  7169. top:180px;
  7170. width:140px;
  7171. height:30px;
  7172. display:flex;
  7173. font-size:14px;
  7174. }
  7175. #u20235 .text {
  7176. position:absolute;
  7177. align-self:center;
  7178. padding:2px 2px 2px 2px;
  7179. box-sizing:border-box;
  7180. width:100%;
  7181. }
  7182. #u20235_text {
  7183. border-width:0px;
  7184. word-wrap:break-word;
  7185. text-transform:none;
  7186. visibility:hidden;
  7187. }
  7188. #u20236_input {
  7189. position:absolute;
  7190. left:0px;
  7191. top:0px;
  7192. width:134px;
  7193. height:23px;
  7194. padding:2px 2px 2px 2px;
  7195. font-family:'ArialMT', 'Arial', sans-serif;
  7196. font-weight:400;
  7197. font-style:normal;
  7198. font-size:14px;
  7199. letter-spacing:normal;
  7200. color:#AAAAAA;
  7201. vertical-align:none;
  7202. text-align:left;
  7203. text-transform:none;
  7204. background-color:transparent;
  7205. border-color:transparent;
  7206. }
  7207. #u20236_input.disabled {
  7208. position:absolute;
  7209. left:0px;
  7210. top:0px;
  7211. width:134px;
  7212. height:23px;
  7213. padding:2px 2px 2px 2px;
  7214. font-family:'ArialMT', 'Arial', sans-serif;
  7215. font-weight:400;
  7216. font-style:normal;
  7217. font-size:14px;
  7218. letter-spacing:normal;
  7219. color:#AAAAAA;
  7220. vertical-align:none;
  7221. text-align:left;
  7222. text-transform:none;
  7223. background-color:transparent;
  7224. border-color:transparent;
  7225. }
  7226. #u20236_div {
  7227. border-width:0px;
  7228. position:absolute;
  7229. left:0px;
  7230. top:0px;
  7231. width:134px;
  7232. height:23px;
  7233. background:inherit;
  7234. background-color:rgba(255, 255, 255, 1);
  7235. border:none;
  7236. border-radius:0px;
  7237. -moz-box-shadow:none;
  7238. -webkit-box-shadow:none;
  7239. box-shadow:none;
  7240. font-size:14px;
  7241. color:#AAAAAA;
  7242. }
  7243. #u20236 {
  7244. border-width:0px;
  7245. position:absolute;
  7246. left:352px;
  7247. top:182px;
  7248. width:134px;
  7249. height:23px;
  7250. display:flex;
  7251. font-size:14px;
  7252. color:#AAAAAA;
  7253. }
  7254. #u20236 .text {
  7255. position:absolute;
  7256. align-self:flex-start;
  7257. padding:2px 2px 2px 2px;
  7258. box-sizing:border-box;
  7259. width:100%;
  7260. }
  7261. #u20236_div.disabled {
  7262. border-width:0px;
  7263. position:absolute;
  7264. left:0px;
  7265. top:0px;
  7266. width:134px;
  7267. height:23px;
  7268. background:inherit;
  7269. background-color:rgba(240, 240, 240, 1);
  7270. border:none;
  7271. border-radius:0px;
  7272. -moz-box-shadow:none;
  7273. -webkit-box-shadow:none;
  7274. box-shadow:none;
  7275. font-size:14px;
  7276. color:#AAAAAA;
  7277. }
  7278. #u20236.disabled {
  7279. }
  7280. .u20236_input_option {
  7281. font-size:14px;
  7282. }
  7283. #u20237 {
  7284. border-width:0px;
  7285. position:absolute;
  7286. left:0px;
  7287. top:0px;
  7288. width:0px;
  7289. height:0px;
  7290. }
  7291. #u20238_div {
  7292. border-width:0px;
  7293. position:absolute;
  7294. left:0px;
  7295. top:0px;
  7296. width:140px;
  7297. height:30px;
  7298. background:inherit;
  7299. background-color:rgba(255, 255, 255, 1);
  7300. box-sizing:border-box;
  7301. border-width:1px;
  7302. border-style:solid;
  7303. border-color:rgba(215, 215, 215, 1);
  7304. border-radius:4px;
  7305. -moz-box-shadow:none;
  7306. -webkit-box-shadow:none;
  7307. box-shadow:none;
  7308. font-size:14px;
  7309. }
  7310. #u20238 {
  7311. border-width:0px;
  7312. position:absolute;
  7313. left:650px;
  7314. top:140px;
  7315. width:140px;
  7316. height:30px;
  7317. display:flex;
  7318. font-size:14px;
  7319. }
  7320. #u20238 .text {
  7321. position:absolute;
  7322. align-self:center;
  7323. padding:2px 2px 2px 2px;
  7324. box-sizing:border-box;
  7325. width:100%;
  7326. }
  7327. #u20238_text {
  7328. border-width:0px;
  7329. word-wrap:break-word;
  7330. text-transform:none;
  7331. visibility:hidden;
  7332. }
  7333. #u20239_input {
  7334. position:absolute;
  7335. left:0px;
  7336. top:0px;
  7337. width:134px;
  7338. height:23px;
  7339. padding:2px 2px 2px 2px;
  7340. font-family:'ArialMT', 'Arial', sans-serif;
  7341. font-weight:400;
  7342. font-style:normal;
  7343. font-size:14px;
  7344. letter-spacing:normal;
  7345. color:#AAAAAA;
  7346. vertical-align:none;
  7347. text-align:left;
  7348. text-transform:none;
  7349. background-color:transparent;
  7350. border-color:transparent;
  7351. }
  7352. #u20239_input.disabled {
  7353. position:absolute;
  7354. left:0px;
  7355. top:0px;
  7356. width:134px;
  7357. height:23px;
  7358. padding:2px 2px 2px 2px;
  7359. font-family:'ArialMT', 'Arial', sans-serif;
  7360. font-weight:400;
  7361. font-style:normal;
  7362. font-size:14px;
  7363. letter-spacing:normal;
  7364. color:#AAAAAA;
  7365. vertical-align:none;
  7366. text-align:left;
  7367. text-transform:none;
  7368. background-color:transparent;
  7369. border-color:transparent;
  7370. }
  7371. #u20239_div {
  7372. border-width:0px;
  7373. position:absolute;
  7374. left:0px;
  7375. top:0px;
  7376. width:134px;
  7377. height:23px;
  7378. background:inherit;
  7379. background-color:rgba(255, 255, 255, 1);
  7380. border:none;
  7381. border-radius:0px;
  7382. -moz-box-shadow:none;
  7383. -webkit-box-shadow:none;
  7384. box-shadow:none;
  7385. font-size:14px;
  7386. color:#AAAAAA;
  7387. }
  7388. #u20239 {
  7389. border-width:0px;
  7390. position:absolute;
  7391. left:654px;
  7392. top:142px;
  7393. width:134px;
  7394. height:23px;
  7395. display:flex;
  7396. font-size:14px;
  7397. color:#AAAAAA;
  7398. }
  7399. #u20239 .text {
  7400. position:absolute;
  7401. align-self:flex-start;
  7402. padding:2px 2px 2px 2px;
  7403. box-sizing:border-box;
  7404. width:100%;
  7405. }
  7406. #u20239_div.disabled {
  7407. border-width:0px;
  7408. position:absolute;
  7409. left:0px;
  7410. top:0px;
  7411. width:134px;
  7412. height:23px;
  7413. background:inherit;
  7414. background-color:rgba(240, 240, 240, 1);
  7415. border:none;
  7416. border-radius:0px;
  7417. -moz-box-shadow:none;
  7418. -webkit-box-shadow:none;
  7419. box-shadow:none;
  7420. font-size:14px;
  7421. color:#AAAAAA;
  7422. }
  7423. #u20239.disabled {
  7424. }
  7425. .u20239_input_option {
  7426. font-size:14px;
  7427. }
  7428. #u20240 {
  7429. border-width:0px;
  7430. position:absolute;
  7431. left:0px;
  7432. top:0px;
  7433. width:0px;
  7434. height:0px;
  7435. }
  7436. #u20241_div {
  7437. border-width:0px;
  7438. position:absolute;
  7439. left:0px;
  7440. top:0px;
  7441. width:140px;
  7442. height:30px;
  7443. background:inherit;
  7444. background-color:rgba(255, 255, 255, 1);
  7445. box-sizing:border-box;
  7446. border-width:1px;
  7447. border-style:solid;
  7448. border-color:rgba(201, 201, 201, 1);
  7449. border-radius:4px;
  7450. -moz-box-shadow:none;
  7451. -webkit-box-shadow:none;
  7452. box-shadow:none;
  7453. font-family:'Microsoft YaHei', sans-serif;
  7454. font-weight:400;
  7455. font-style:normal;
  7456. font-size:14px;
  7457. color:#CCCCCC;
  7458. text-align:left;
  7459. }
  7460. #u20241 {
  7461. border-width:0px;
  7462. position:absolute;
  7463. left:800px;
  7464. top:140px;
  7465. width:140px;
  7466. height:30px;
  7467. display:flex;
  7468. font-family:'Microsoft YaHei', sans-serif;
  7469. font-weight:400;
  7470. font-style:normal;
  7471. font-size:14px;
  7472. color:#CCCCCC;
  7473. text-align:left;
  7474. }
  7475. #u20241 .text {
  7476. position:absolute;
  7477. align-self:center;
  7478. padding:2px 8px 2px 8px;
  7479. box-sizing:border-box;
  7480. width:100%;
  7481. }
  7482. #u20241_text {
  7483. border-width:0px;
  7484. word-wrap:break-word;
  7485. text-transform:none;
  7486. visibility:hidden;
  7487. }
  7488. #u20242_input {
  7489. position:absolute;
  7490. left:0px;
  7491. top:0px;
  7492. width:127px;
  7493. height:25px;
  7494. padding:2px 2px 2px 2px;
  7495. font-family:'Microsoft YaHei', sans-serif;
  7496. font-weight:400;
  7497. font-style:normal;
  7498. font-size:10px;
  7499. letter-spacing:normal;
  7500. color:#000000;
  7501. vertical-align:none;
  7502. text-align:left;
  7503. text-transform:none;
  7504. background-color:transparent;
  7505. border-color:transparent;
  7506. }
  7507. #u20242_input.disabled {
  7508. position:absolute;
  7509. left:0px;
  7510. top:0px;
  7511. width:127px;
  7512. height:25px;
  7513. padding:2px 2px 2px 2px;
  7514. font-family:'Microsoft YaHei', sans-serif;
  7515. font-weight:400;
  7516. font-style:normal;
  7517. font-size:10px;
  7518. letter-spacing:normal;
  7519. color:#000000;
  7520. vertical-align:none;
  7521. text-align:left;
  7522. text-transform:none;
  7523. background-color:transparent;
  7524. border-color:transparent;
  7525. }
  7526. #u20242_div {
  7527. border-width:0px;
  7528. position:absolute;
  7529. left:0px;
  7530. top:0px;
  7531. width:127px;
  7532. height:25px;
  7533. background:inherit;
  7534. background-color:rgba(255, 255, 255, 1);
  7535. border:none;
  7536. border-radius:0px;
  7537. -moz-box-shadow:none;
  7538. -webkit-box-shadow:none;
  7539. box-shadow:none;
  7540. font-family:'Microsoft YaHei', sans-serif;
  7541. font-weight:400;
  7542. font-style:normal;
  7543. font-size:10px;
  7544. }
  7545. #u20242 {
  7546. border-width:0px;
  7547. position:absolute;
  7548. left:808px;
  7549. top:141px;
  7550. width:127px;
  7551. height:25px;
  7552. display:flex;
  7553. font-family:'Microsoft YaHei', sans-serif;
  7554. font-weight:400;
  7555. font-style:normal;
  7556. font-size:10px;
  7557. }
  7558. #u20242 .text {
  7559. position:absolute;
  7560. align-self:center;
  7561. padding:2px 2px 2px 2px;
  7562. box-sizing:border-box;
  7563. width:100%;
  7564. }
  7565. #u20242_div.disabled {
  7566. border-width:0px;
  7567. position:absolute;
  7568. left:0px;
  7569. top:0px;
  7570. width:127px;
  7571. height:25px;
  7572. background:inherit;
  7573. background-color:rgba(240, 240, 240, 1);
  7574. border:none;
  7575. border-radius:0px;
  7576. -moz-box-shadow:none;
  7577. -webkit-box-shadow:none;
  7578. box-shadow:none;
  7579. font-family:'Microsoft YaHei', sans-serif;
  7580. font-weight:400;
  7581. font-style:normal;
  7582. font-size:10px;
  7583. }
  7584. #u20242.disabled {
  7585. }