styles.css 165 KB

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