styles.css 109 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-110px;
  6. width:1169px;
  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. #u50885 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u50886_div {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:1169px;
  33. height:1198px;
  34. background:inherit;
  35. background-color:rgba(255, 255, 255, 1);
  36. box-sizing:border-box;
  37. border-width:1px;
  38. border-style:solid;
  39. border-color:rgba(215, 215, 215, 1);
  40. border-radius:0px;
  41. -moz-box-shadow:none;
  42. -webkit-box-shadow:none;
  43. box-shadow:none;
  44. }
  45. #u50886 {
  46. border-width:0px;
  47. position:absolute;
  48. left:110px;
  49. top:91px;
  50. width:1169px;
  51. height:1198px;
  52. display:flex;
  53. }
  54. #u50886 .text {
  55. position:absolute;
  56. align-self:center;
  57. padding:2px 2px 2px 2px;
  58. box-sizing:border-box;
  59. width:100%;
  60. }
  61. #u50886_text {
  62. border-width:0px;
  63. word-wrap:break-word;
  64. text-transform:none;
  65. visibility:hidden;
  66. }
  67. #u50887_div {
  68. border-width:0px;
  69. position:absolute;
  70. left:0px;
  71. top:0px;
  72. width:73px;
  73. height:30px;
  74. background:inherit;
  75. background-color:rgba(255, 255, 255, 0);
  76. border:none;
  77. border-radius:0px;
  78. -moz-box-shadow:none;
  79. -webkit-box-shadow:none;
  80. box-shadow:none;
  81. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  82. font-weight:400;
  83. font-style:normal;
  84. font-size:18px;
  85. color:#000000;
  86. line-height:30px;
  87. }
  88. #u50887 {
  89. border-width:0px;
  90. position:absolute;
  91. left:130px;
  92. top:111px;
  93. width:73px;
  94. height:30px;
  95. display:flex;
  96. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  97. font-weight:400;
  98. font-style:normal;
  99. font-size:18px;
  100. color:#000000;
  101. line-height:30px;
  102. }
  103. #u50887 .text {
  104. position:absolute;
  105. align-self:flex-start;
  106. padding:0px 0px 0px 0px;
  107. box-sizing:border-box;
  108. width:100%;
  109. }
  110. #u50887_text {
  111. border-width:0px;
  112. white-space:nowrap;
  113. text-transform:none;
  114. }
  115. #u50888_div {
  116. border-width:0px;
  117. position:absolute;
  118. left:0px;
  119. top:0px;
  120. width:71px;
  121. height:30px;
  122. background:inherit;
  123. background-color:rgba(255, 255, 255, 0);
  124. border:none;
  125. border-top:0px;
  126. border-right:0px;
  127. border-bottom:0px;
  128. border-radius:0px;
  129. border-top-left-radius:0px;
  130. border-bottom-left-radius:0px;
  131. -moz-box-shadow:none;
  132. -webkit-box-shadow:none;
  133. box-shadow:none;
  134. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  135. font-weight:400;
  136. font-style:normal;
  137. font-size:14px;
  138. text-align:right;
  139. }
  140. #u50888 {
  141. border-width:0px;
  142. position:absolute;
  143. left:361px;
  144. top:208px;
  145. width:71px;
  146. height:30px;
  147. display:flex;
  148. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  149. font-weight:400;
  150. font-style:normal;
  151. font-size:14px;
  152. text-align:right;
  153. }
  154. #u50888 .text {
  155. position:absolute;
  156. align-self:center;
  157. padding:5px 0px 5px 0px;
  158. box-sizing:border-box;
  159. width:100%;
  160. }
  161. #u50888_text {
  162. border-width:0px;
  163. white-space:nowrap;
  164. text-transform:none;
  165. }
  166. #u50889 {
  167. border-width:0px;
  168. position:absolute;
  169. left:0px;
  170. top:0px;
  171. width:0px;
  172. height:0px;
  173. }
  174. #u50890_div {
  175. border-width:0px;
  176. position:absolute;
  177. left:0px;
  178. top:0px;
  179. width:40px;
  180. height:40px;
  181. background:inherit;
  182. background-color:rgba(255, 255, 255, 0);
  183. border:none;
  184. border-top:0px;
  185. border-right:0px;
  186. border-bottom:0px;
  187. border-radius:0px;
  188. border-top-left-radius:0px;
  189. border-bottom-left-radius:0px;
  190. -moz-box-shadow:none;
  191. -webkit-box-shadow:none;
  192. box-shadow:none;
  193. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  194. font-weight:500;
  195. font-style:normal;
  196. font-size:18px;
  197. text-align:center;
  198. }
  199. #u50890 {
  200. border-width:0px;
  201. position:absolute;
  202. left:1239px;
  203. top:91px;
  204. width:40px;
  205. height:40px;
  206. display:flex;
  207. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  208. font-weight:500;
  209. font-style:normal;
  210. font-size:18px;
  211. text-align:center;
  212. }
  213. #u50890 .text {
  214. position:absolute;
  215. align-self:center;
  216. padding:5px 10px 5px 0px;
  217. box-sizing:border-box;
  218. width:100%;
  219. }
  220. #u50890_text {
  221. border-width:0px;
  222. word-wrap:break-word;
  223. text-transform:none;
  224. }
  225. #u50891_img {
  226. border-width:0px;
  227. position:absolute;
  228. left:0px;
  229. top:0px;
  230. width:13px;
  231. height:17px;
  232. }
  233. #u50891 {
  234. border-width:0px;
  235. position:absolute;
  236. left:1226px;
  237. top:103px;
  238. width:13px;
  239. height:17px;
  240. display:flex;
  241. }
  242. #u50891 .text {
  243. position:absolute;
  244. align-self:center;
  245. padding:2px 2px 2px 2px;
  246. box-sizing:border-box;
  247. width:100%;
  248. }
  249. #u50891_text {
  250. border-width:0px;
  251. word-wrap:break-word;
  252. text-transform:none;
  253. visibility:hidden;
  254. }
  255. #u50892 {
  256. border-width:0px;
  257. position:absolute;
  258. left:0px;
  259. top:0px;
  260. width:0px;
  261. height:0px;
  262. }
  263. #u50893_div {
  264. border-width:0px;
  265. position:absolute;
  266. left:0px;
  267. top:0px;
  268. width:1169px;
  269. height:60px;
  270. background:inherit;
  271. background-color:rgba(255, 255, 255, 1);
  272. box-sizing:border-box;
  273. border-width:1px;
  274. border-style:solid;
  275. border-color:rgba(215, 215, 215, 1);
  276. border-radius:0px;
  277. -moz-box-shadow:none;
  278. -webkit-box-shadow:none;
  279. box-shadow:none;
  280. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  281. font-weight:400;
  282. font-style:normal;
  283. font-size:14px;
  284. color:#AAAAAA;
  285. text-align:center;
  286. line-height:30px;
  287. }
  288. #u50893 {
  289. border-width:0px;
  290. position:absolute;
  291. left:110px;
  292. top:1230px;
  293. width:1169px;
  294. height:60px;
  295. display:flex;
  296. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  297. font-weight:400;
  298. font-style:normal;
  299. font-size:14px;
  300. color:#AAAAAA;
  301. text-align:center;
  302. line-height:30px;
  303. }
  304. #u50893 .text {
  305. position:absolute;
  306. align-self:center;
  307. padding:5px 10px 5px 10px;
  308. box-sizing:border-box;
  309. width:100%;
  310. }
  311. #u50893_text {
  312. border-width:0px;
  313. word-wrap:break-word;
  314. text-transform:none;
  315. visibility:hidden;
  316. }
  317. #u50894_div {
  318. border-width:0px;
  319. position:absolute;
  320. left:0px;
  321. top:0px;
  322. width:80px;
  323. height:30px;
  324. background:inherit;
  325. background-color:rgba(24, 144, 255, 1);
  326. border:none;
  327. border-radius:4px;
  328. -moz-box-shadow:none;
  329. -webkit-box-shadow:none;
  330. box-shadow:none;
  331. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  332. font-weight:400;
  333. font-style:normal;
  334. font-size:14px;
  335. color:#FFFFFF;
  336. }
  337. #u50894 {
  338. border-width:0px;
  339. position:absolute;
  340. left:1154px;
  341. top:1245px;
  342. width:80px;
  343. height:30px;
  344. display:flex;
  345. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  346. font-weight:400;
  347. font-style:normal;
  348. font-size:14px;
  349. color:#FFFFFF;
  350. }
  351. #u50894 .text {
  352. position:absolute;
  353. align-self:center;
  354. padding:2px 2px 2px 2px;
  355. box-sizing:border-box;
  356. width:100%;
  357. }
  358. #u50894_text {
  359. border-width:0px;
  360. word-wrap:break-word;
  361. text-transform:none;
  362. }
  363. #u50895_div {
  364. border-width:0px;
  365. position:absolute;
  366. left:0px;
  367. top:0px;
  368. width:80px;
  369. height:30px;
  370. background:inherit;
  371. background-color:rgba(255, 255, 255, 1);
  372. box-sizing:border-box;
  373. border-width:1px;
  374. border-style:solid;
  375. border-color:rgba(170, 170, 170, 1);
  376. border-radius:4px;
  377. -moz-box-shadow:none;
  378. -webkit-box-shadow:none;
  379. box-shadow:none;
  380. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  381. font-weight:400;
  382. font-style:normal;
  383. font-size:14px;
  384. }
  385. #u50895 {
  386. border-width:0px;
  387. position:absolute;
  388. left:1055px;
  389. top:1245px;
  390. width:80px;
  391. height:30px;
  392. display:flex;
  393. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  394. font-weight:400;
  395. font-style:normal;
  396. font-size:14px;
  397. }
  398. #u50895 .text {
  399. position:absolute;
  400. align-self:center;
  401. padding:2px 2px 2px 2px;
  402. box-sizing:border-box;
  403. width:100%;
  404. }
  405. #u50895_text {
  406. border-width:0px;
  407. word-wrap:break-word;
  408. text-transform:none;
  409. }
  410. #u50896 {
  411. border-width:0px;
  412. position:absolute;
  413. left:0px;
  414. top:0px;
  415. width:0px;
  416. height:0px;
  417. }
  418. #u50897_div {
  419. border-width:0px;
  420. position:absolute;
  421. left:0px;
  422. top:0px;
  423. width:140px;
  424. height:30px;
  425. background:inherit;
  426. background-color:rgba(255, 255, 255, 1);
  427. box-sizing:border-box;
  428. border-width:1px;
  429. border-style:solid;
  430. border-color:rgba(170, 170, 170, 1);
  431. border-radius:4px;
  432. -moz-box-shadow:none;
  433. -webkit-box-shadow:none;
  434. box-shadow:none;
  435. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  436. font-weight:400;
  437. font-style:normal;
  438. text-align:left;
  439. }
  440. #u50897 {
  441. border-width:0px;
  442. position:absolute;
  443. left:432px;
  444. top:208px;
  445. width:140px;
  446. height:30px;
  447. display:flex;
  448. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  449. font-weight:400;
  450. font-style:normal;
  451. text-align:left;
  452. }
  453. #u50897 .text {
  454. position:absolute;
  455. align-self:center;
  456. padding:2px 2px 2px 10px;
  457. box-sizing:border-box;
  458. width:100%;
  459. }
  460. #u50897_text {
  461. border-width:0px;
  462. word-wrap:break-word;
  463. text-transform:none;
  464. visibility:hidden;
  465. }
  466. #u50898_input {
  467. position:absolute;
  468. left:0px;
  469. top:0px;
  470. width:132px;
  471. height:23px;
  472. padding:2px 2px 2px 2px;
  473. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  474. font-weight:400;
  475. font-style:normal;
  476. font-size:13px;
  477. letter-spacing:normal;
  478. color:#AAAAAA;
  479. vertical-align:none;
  480. text-align:left;
  481. text-transform:none;
  482. background-color:transparent;
  483. border-color:transparent;
  484. }
  485. #u50898_input.disabled {
  486. position:absolute;
  487. left:0px;
  488. top:0px;
  489. width:132px;
  490. height:23px;
  491. padding:2px 2px 2px 2px;
  492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  493. font-weight:400;
  494. font-style:normal;
  495. font-size:13px;
  496. letter-spacing:normal;
  497. color:#AAAAAA;
  498. vertical-align:none;
  499. text-align:left;
  500. text-transform:none;
  501. background-color:transparent;
  502. border-color:transparent;
  503. }
  504. #u50898_div {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:132px;
  510. height:23px;
  511. background:inherit;
  512. background-color:rgba(255, 255, 255, 1);
  513. border:none;
  514. border-radius:0px;
  515. -moz-box-shadow:none;
  516. -webkit-box-shadow:none;
  517. box-shadow:none;
  518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  519. font-weight:400;
  520. font-style:normal;
  521. color:#AAAAAA;
  522. }
  523. #u50898 {
  524. border-width:0px;
  525. position:absolute;
  526. left:436px;
  527. top:212px;
  528. width:132px;
  529. height:23px;
  530. display:flex;
  531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  532. font-weight:400;
  533. font-style:normal;
  534. color:#AAAAAA;
  535. }
  536. #u50898 .text {
  537. position:absolute;
  538. align-self:center;
  539. padding:2px 2px 2px 2px;
  540. box-sizing:border-box;
  541. width:100%;
  542. }
  543. #u50898_div.disabled {
  544. border-width:0px;
  545. position:absolute;
  546. left:0px;
  547. top:0px;
  548. width:132px;
  549. height:23px;
  550. background:inherit;
  551. background-color:rgba(240, 240, 240, 1);
  552. border:none;
  553. border-radius:0px;
  554. -moz-box-shadow:none;
  555. -webkit-box-shadow:none;
  556. box-shadow:none;
  557. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  558. font-weight:400;
  559. font-style:normal;
  560. color:#AAAAAA;
  561. }
  562. #u50898.disabled {
  563. }
  564. #u50899_div {
  565. border-width:0px;
  566. position:absolute;
  567. left:0px;
  568. top:0px;
  569. width:43px;
  570. height:30px;
  571. background:inherit;
  572. background-color:rgba(255, 255, 255, 0);
  573. border:none;
  574. border-top:0px;
  575. border-right:0px;
  576. border-bottom:0px;
  577. border-radius:0px;
  578. border-top-left-radius:0px;
  579. border-bottom-left-radius:0px;
  580. -moz-box-shadow:none;
  581. -webkit-box-shadow:none;
  582. box-shadow:none;
  583. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  584. font-weight:400;
  585. font-style:normal;
  586. font-size:14px;
  587. text-align:right;
  588. }
  589. #u50899 {
  590. border-width:0px;
  591. position:absolute;
  592. left:158px;
  593. top:168px;
  594. width:43px;
  595. height:30px;
  596. display:flex;
  597. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  598. font-weight:400;
  599. font-style:normal;
  600. font-size:14px;
  601. text-align:right;
  602. }
  603. #u50899 .text {
  604. position:absolute;
  605. align-self:center;
  606. padding:5px 0px 5px 0px;
  607. box-sizing:border-box;
  608. width:100%;
  609. }
  610. #u50899_text {
  611. border-width:0px;
  612. white-space:nowrap;
  613. text-transform:none;
  614. }
  615. #u50900 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u50901_div {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:140px;
  629. height:30px;
  630. background:inherit;
  631. background-color:rgba(255, 255, 255, 1);
  632. box-sizing:border-box;
  633. border-width:1px;
  634. border-style:solid;
  635. border-color:rgba(170, 170, 170, 1);
  636. border-radius:4px;
  637. -moz-box-shadow:none;
  638. -webkit-box-shadow:none;
  639. box-shadow:none;
  640. }
  641. #u50901 {
  642. border-width:0px;
  643. position:absolute;
  644. left:201px;
  645. top:168px;
  646. width:140px;
  647. height:30px;
  648. display:flex;
  649. }
  650. #u50901 .text {
  651. position:absolute;
  652. align-self:center;
  653. padding:2px 2px 2px 0px;
  654. box-sizing:border-box;
  655. width:100%;
  656. }
  657. #u50901_text {
  658. border-width:0px;
  659. word-wrap:break-word;
  660. text-transform:none;
  661. visibility:hidden;
  662. }
  663. #u50902_input {
  664. position:absolute;
  665. left:0px;
  666. top:0px;
  667. width:133px;
  668. height:23px;
  669. padding:2px 2px 2px 0px;
  670. font-family:'ArialMT', 'Arial', sans-serif;
  671. font-weight:400;
  672. font-style:normal;
  673. font-size:13px;
  674. letter-spacing:normal;
  675. color:#AAAAAA;
  676. vertical-align:none;
  677. text-align:left;
  678. text-transform:none;
  679. background-color:transparent;
  680. border-color:transparent;
  681. }
  682. #u50902_input.disabled {
  683. position:absolute;
  684. left:0px;
  685. top:0px;
  686. width:133px;
  687. height:23px;
  688. padding:2px 2px 2px 0px;
  689. font-family:'ArialMT', 'Arial', sans-serif;
  690. font-weight:400;
  691. font-style:normal;
  692. font-size:13px;
  693. letter-spacing:normal;
  694. color:#AAAAAA;
  695. vertical-align:none;
  696. text-align:left;
  697. text-transform:none;
  698. background-color:transparent;
  699. border-color:transparent;
  700. }
  701. #u50902_div {
  702. border-width:0px;
  703. position:absolute;
  704. left:0px;
  705. top:0px;
  706. width:133px;
  707. height:23px;
  708. background:inherit;
  709. background-color:rgba(255, 255, 255, 1);
  710. border:none;
  711. border-radius:0px;
  712. -moz-box-shadow:none;
  713. -webkit-box-shadow:none;
  714. box-shadow:none;
  715. color:#AAAAAA;
  716. }
  717. #u50902 {
  718. border-width:0px;
  719. position:absolute;
  720. left:205px;
  721. top:173px;
  722. width:133px;
  723. height:23px;
  724. display:flex;
  725. color:#AAAAAA;
  726. }
  727. #u50902 .text {
  728. position:absolute;
  729. align-self:flex-start;
  730. padding:2px 2px 2px 0px;
  731. box-sizing:border-box;
  732. width:100%;
  733. }
  734. #u50902_div.disabled {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:133px;
  740. height:23px;
  741. background:inherit;
  742. background-color:rgba(240, 240, 240, 1);
  743. border:none;
  744. border-radius:0px;
  745. -moz-box-shadow:none;
  746. -webkit-box-shadow:none;
  747. box-shadow:none;
  748. color:#AAAAAA;
  749. }
  750. #u50902.disabled {
  751. }
  752. .u50902_input_option {
  753. }
  754. #u50903_div {
  755. border-width:0px;
  756. position:absolute;
  757. left:0px;
  758. top:0px;
  759. width:43px;
  760. height:30px;
  761. background:inherit;
  762. background-color:rgba(255, 255, 255, 0);
  763. border:none;
  764. border-top:0px;
  765. border-right:0px;
  766. border-bottom:0px;
  767. border-radius:0px;
  768. border-top-left-radius:0px;
  769. border-bottom-left-radius:0px;
  770. -moz-box-shadow:none;
  771. -webkit-box-shadow:none;
  772. box-shadow:none;
  773. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  774. font-weight:400;
  775. font-style:normal;
  776. font-size:14px;
  777. text-align:right;
  778. }
  779. #u50903 {
  780. border-width:0px;
  781. position:absolute;
  782. left:592px;
  783. top:168px;
  784. width:43px;
  785. height:30px;
  786. display:flex;
  787. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  788. font-weight:400;
  789. font-style:normal;
  790. font-size:14px;
  791. text-align:right;
  792. }
  793. #u50903 .text {
  794. position:absolute;
  795. align-self:center;
  796. padding:5px 0px 5px 0px;
  797. box-sizing:border-box;
  798. width:100%;
  799. }
  800. #u50903_text {
  801. border-width:0px;
  802. white-space:nowrap;
  803. text-transform:none;
  804. }
  805. #u50904 {
  806. border-width:0px;
  807. position:absolute;
  808. left:0px;
  809. top:0px;
  810. width:0px;
  811. height:0px;
  812. }
  813. #u50905_div {
  814. border-width:0px;
  815. position:absolute;
  816. left:0px;
  817. top:0px;
  818. width:140px;
  819. height:30px;
  820. background:inherit;
  821. background-color:rgba(255, 255, 255, 1);
  822. box-sizing:border-box;
  823. border-width:1px;
  824. border-style:solid;
  825. border-color:rgba(170, 170, 170, 1);
  826. border-radius:4px;
  827. -moz-box-shadow:none;
  828. -webkit-box-shadow:none;
  829. box-shadow:none;
  830. }
  831. #u50905 {
  832. border-width:0px;
  833. position:absolute;
  834. left:663px;
  835. top:168px;
  836. width:140px;
  837. height:30px;
  838. display:flex;
  839. }
  840. #u50905 .text {
  841. position:absolute;
  842. align-self:center;
  843. padding:2px 2px 2px 0px;
  844. box-sizing:border-box;
  845. width:100%;
  846. }
  847. #u50905_text {
  848. border-width:0px;
  849. word-wrap:break-word;
  850. text-transform:none;
  851. visibility:hidden;
  852. }
  853. #u50906_input {
  854. position:absolute;
  855. left:0px;
  856. top:0px;
  857. width:133px;
  858. height:23px;
  859. padding:2px 2px 2px 0px;
  860. font-family:'ArialMT', 'Arial', sans-serif;
  861. font-weight:400;
  862. font-style:normal;
  863. font-size:13px;
  864. letter-spacing:normal;
  865. color:#AAAAAA;
  866. vertical-align:none;
  867. text-align:left;
  868. text-transform:none;
  869. background-color:transparent;
  870. border-color:transparent;
  871. }
  872. #u50906_input.disabled {
  873. position:absolute;
  874. left:0px;
  875. top:0px;
  876. width:133px;
  877. height:23px;
  878. padding:2px 2px 2px 0px;
  879. font-family:'ArialMT', 'Arial', sans-serif;
  880. font-weight:400;
  881. font-style:normal;
  882. font-size:13px;
  883. letter-spacing:normal;
  884. color:#AAAAAA;
  885. vertical-align:none;
  886. text-align:left;
  887. text-transform:none;
  888. background-color:transparent;
  889. border-color:transparent;
  890. }
  891. #u50906_div {
  892. border-width:0px;
  893. position:absolute;
  894. left:0px;
  895. top:0px;
  896. width:133px;
  897. height:23px;
  898. background:inherit;
  899. background-color:rgba(255, 255, 255, 1);
  900. border:none;
  901. border-radius:0px;
  902. -moz-box-shadow:none;
  903. -webkit-box-shadow:none;
  904. box-shadow:none;
  905. color:#AAAAAA;
  906. }
  907. #u50906 {
  908. border-width:0px;
  909. position:absolute;
  910. left:667px;
  911. top:173px;
  912. width:133px;
  913. height:23px;
  914. display:flex;
  915. color:#AAAAAA;
  916. }
  917. #u50906 .text {
  918. position:absolute;
  919. align-self:flex-start;
  920. padding:2px 2px 2px 0px;
  921. box-sizing:border-box;
  922. width:100%;
  923. }
  924. #u50906_div.disabled {
  925. border-width:0px;
  926. position:absolute;
  927. left:0px;
  928. top:0px;
  929. width:133px;
  930. height:23px;
  931. background:inherit;
  932. background-color:rgba(240, 240, 240, 1);
  933. border:none;
  934. border-radius:0px;
  935. -moz-box-shadow:none;
  936. -webkit-box-shadow:none;
  937. box-shadow:none;
  938. color:#AAAAAA;
  939. }
  940. #u50906.disabled {
  941. }
  942. .u50906_input_option {
  943. }
  944. #u50907_div {
  945. border-width:0px;
  946. position:absolute;
  947. left:0px;
  948. top:0px;
  949. width:71px;
  950. height:30px;
  951. background:inherit;
  952. background-color:rgba(255, 255, 255, 0);
  953. border:none;
  954. border-top:0px;
  955. border-right:0px;
  956. border-bottom:0px;
  957. border-radius:0px;
  958. border-top-left-radius:0px;
  959. border-bottom-left-radius:0px;
  960. -moz-box-shadow:none;
  961. -webkit-box-shadow:none;
  962. box-shadow:none;
  963. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  964. font-weight:400;
  965. font-style:normal;
  966. font-size:14px;
  967. text-align:right;
  968. }
  969. #u50907 {
  970. border-width:0px;
  971. position:absolute;
  972. left:592px;
  973. top:208px;
  974. width:71px;
  975. height:30px;
  976. display:flex;
  977. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  978. font-weight:400;
  979. font-style:normal;
  980. font-size:14px;
  981. text-align:right;
  982. }
  983. #u50907 .text {
  984. position:absolute;
  985. align-self:center;
  986. padding:5px 0px 5px 0px;
  987. box-sizing:border-box;
  988. width:100%;
  989. }
  990. #u50907_text {
  991. border-width:0px;
  992. white-space:nowrap;
  993. text-transform:none;
  994. }
  995. #u50908 {
  996. border-width:0px;
  997. position:absolute;
  998. left:0px;
  999. top:0px;
  1000. width:0px;
  1001. height:0px;
  1002. }
  1003. #u50909_div {
  1004. border-width:0px;
  1005. position:absolute;
  1006. left:0px;
  1007. top:0px;
  1008. width:140px;
  1009. height:30px;
  1010. background:inherit;
  1011. background-color:rgba(255, 255, 255, 1);
  1012. box-sizing:border-box;
  1013. border-width:1px;
  1014. border-style:solid;
  1015. border-color:rgba(170, 170, 170, 1);
  1016. border-radius:4px;
  1017. -moz-box-shadow:none;
  1018. -webkit-box-shadow:none;
  1019. box-shadow:none;
  1020. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1021. font-weight:400;
  1022. font-style:normal;
  1023. text-align:left;
  1024. }
  1025. #u50909 {
  1026. border-width:0px;
  1027. position:absolute;
  1028. left:663px;
  1029. top:208px;
  1030. width:140px;
  1031. height:30px;
  1032. display:flex;
  1033. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1034. font-weight:400;
  1035. font-style:normal;
  1036. text-align:left;
  1037. }
  1038. #u50909 .text {
  1039. position:absolute;
  1040. align-self:center;
  1041. padding:2px 2px 2px 10px;
  1042. box-sizing:border-box;
  1043. width:100%;
  1044. }
  1045. #u50909_text {
  1046. border-width:0px;
  1047. word-wrap:break-word;
  1048. text-transform:none;
  1049. visibility:hidden;
  1050. }
  1051. #u50910_input {
  1052. position:absolute;
  1053. left:0px;
  1054. top:0px;
  1055. width:132px;
  1056. height:23px;
  1057. padding:2px 2px 2px 2px;
  1058. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1059. font-weight:400;
  1060. font-style:normal;
  1061. font-size:13px;
  1062. letter-spacing:normal;
  1063. color:#AAAAAA;
  1064. vertical-align:none;
  1065. text-align:left;
  1066. text-transform:none;
  1067. background-color:transparent;
  1068. border-color:transparent;
  1069. }
  1070. #u50910_input.disabled {
  1071. position:absolute;
  1072. left:0px;
  1073. top:0px;
  1074. width:132px;
  1075. height:23px;
  1076. padding:2px 2px 2px 2px;
  1077. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1078. font-weight:400;
  1079. font-style:normal;
  1080. font-size:13px;
  1081. letter-spacing:normal;
  1082. color:#AAAAAA;
  1083. vertical-align:none;
  1084. text-align:left;
  1085. text-transform:none;
  1086. background-color:transparent;
  1087. border-color:transparent;
  1088. }
  1089. #u50910_div {
  1090. border-width:0px;
  1091. position:absolute;
  1092. left:0px;
  1093. top:0px;
  1094. width:132px;
  1095. height:23px;
  1096. background:inherit;
  1097. background-color:rgba(255, 255, 255, 1);
  1098. border:none;
  1099. border-radius:0px;
  1100. -moz-box-shadow:none;
  1101. -webkit-box-shadow:none;
  1102. box-shadow:none;
  1103. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1104. font-weight:400;
  1105. font-style:normal;
  1106. color:#AAAAAA;
  1107. }
  1108. #u50910 {
  1109. border-width:0px;
  1110. position:absolute;
  1111. left:667px;
  1112. top:212px;
  1113. width:132px;
  1114. height:23px;
  1115. display:flex;
  1116. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1117. font-weight:400;
  1118. font-style:normal;
  1119. color:#AAAAAA;
  1120. }
  1121. #u50910 .text {
  1122. position:absolute;
  1123. align-self:center;
  1124. padding:2px 2px 2px 2px;
  1125. box-sizing:border-box;
  1126. width:100%;
  1127. }
  1128. #u50910_div.disabled {
  1129. border-width:0px;
  1130. position:absolute;
  1131. left:0px;
  1132. top:0px;
  1133. width:132px;
  1134. height:23px;
  1135. background:inherit;
  1136. background-color:rgba(240, 240, 240, 1);
  1137. border:none;
  1138. border-radius:0px;
  1139. -moz-box-shadow:none;
  1140. -webkit-box-shadow:none;
  1141. box-shadow:none;
  1142. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1143. font-weight:400;
  1144. font-style:normal;
  1145. color:#AAAAAA;
  1146. }
  1147. #u50910.disabled {
  1148. }
  1149. #u50911_div {
  1150. border-width:0px;
  1151. position:absolute;
  1152. left:0px;
  1153. top:0px;
  1154. width:71px;
  1155. height:30px;
  1156. background:inherit;
  1157. background-color:rgba(255, 255, 255, 0);
  1158. border:none;
  1159. border-top:0px;
  1160. border-right:0px;
  1161. border-bottom:0px;
  1162. border-radius:0px;
  1163. border-top-left-radius:0px;
  1164. border-bottom-left-radius:0px;
  1165. -moz-box-shadow:none;
  1166. -webkit-box-shadow:none;
  1167. box-shadow:none;
  1168. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1169. font-weight:400;
  1170. font-style:normal;
  1171. font-size:14px;
  1172. text-align:right;
  1173. }
  1174. #u50911 {
  1175. border-width:0px;
  1176. position:absolute;
  1177. left:361px;
  1178. top:168px;
  1179. width:71px;
  1180. height:30px;
  1181. display:flex;
  1182. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1183. font-weight:400;
  1184. font-style:normal;
  1185. font-size:14px;
  1186. text-align:right;
  1187. }
  1188. #u50911 .text {
  1189. position:absolute;
  1190. align-self:center;
  1191. padding:5px 0px 5px 0px;
  1192. box-sizing:border-box;
  1193. width:100%;
  1194. }
  1195. #u50911_text {
  1196. border-width:0px;
  1197. white-space:nowrap;
  1198. text-transform:none;
  1199. }
  1200. #u50912 {
  1201. border-width:0px;
  1202. position:absolute;
  1203. left:0px;
  1204. top:0px;
  1205. width:0px;
  1206. height:0px;
  1207. }
  1208. #u50913_div {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:140px;
  1214. height:30px;
  1215. background:inherit;
  1216. background-color:rgba(255, 255, 255, 1);
  1217. box-sizing:border-box;
  1218. border-width:1px;
  1219. border-style:solid;
  1220. border-color:rgba(170, 170, 170, 1);
  1221. border-radius:4px;
  1222. -moz-box-shadow:none;
  1223. -webkit-box-shadow:none;
  1224. box-shadow:none;
  1225. }
  1226. #u50913 {
  1227. border-width:0px;
  1228. position:absolute;
  1229. left:432px;
  1230. top:168px;
  1231. width:140px;
  1232. height:30px;
  1233. display:flex;
  1234. }
  1235. #u50913 .text {
  1236. position:absolute;
  1237. align-self:center;
  1238. padding:2px 2px 2px 0px;
  1239. box-sizing:border-box;
  1240. width:100%;
  1241. }
  1242. #u50913_text {
  1243. border-width:0px;
  1244. word-wrap:break-word;
  1245. text-transform:none;
  1246. visibility:hidden;
  1247. }
  1248. #u50914_input {
  1249. position:absolute;
  1250. left:0px;
  1251. top:0px;
  1252. width:133px;
  1253. height:23px;
  1254. padding:2px 2px 2px 0px;
  1255. font-family:'ArialMT', 'Arial', sans-serif;
  1256. font-weight:400;
  1257. font-style:normal;
  1258. font-size:13px;
  1259. letter-spacing:normal;
  1260. color:#AAAAAA;
  1261. vertical-align:none;
  1262. text-align:left;
  1263. text-transform:none;
  1264. background-color:transparent;
  1265. border-color:transparent;
  1266. }
  1267. #u50914_input.disabled {
  1268. position:absolute;
  1269. left:0px;
  1270. top:0px;
  1271. width:133px;
  1272. height:23px;
  1273. padding:2px 2px 2px 0px;
  1274. font-family:'ArialMT', 'Arial', sans-serif;
  1275. font-weight:400;
  1276. font-style:normal;
  1277. font-size:13px;
  1278. letter-spacing:normal;
  1279. color:#AAAAAA;
  1280. vertical-align:none;
  1281. text-align:left;
  1282. text-transform:none;
  1283. background-color:transparent;
  1284. border-color:transparent;
  1285. }
  1286. #u50914_div {
  1287. border-width:0px;
  1288. position:absolute;
  1289. left:0px;
  1290. top:0px;
  1291. width:133px;
  1292. height:23px;
  1293. background:inherit;
  1294. background-color:rgba(255, 255, 255, 1);
  1295. border:none;
  1296. border-radius:0px;
  1297. -moz-box-shadow:none;
  1298. -webkit-box-shadow:none;
  1299. box-shadow:none;
  1300. color:#AAAAAA;
  1301. }
  1302. #u50914 {
  1303. border-width:0px;
  1304. position:absolute;
  1305. left:436px;
  1306. top:173px;
  1307. width:133px;
  1308. height:23px;
  1309. display:flex;
  1310. color:#AAAAAA;
  1311. }
  1312. #u50914 .text {
  1313. position:absolute;
  1314. align-self:flex-start;
  1315. padding:2px 2px 2px 0px;
  1316. box-sizing:border-box;
  1317. width:100%;
  1318. }
  1319. #u50914_div.disabled {
  1320. border-width:0px;
  1321. position:absolute;
  1322. left:0px;
  1323. top:0px;
  1324. width:133px;
  1325. height:23px;
  1326. background:inherit;
  1327. background-color:rgba(240, 240, 240, 1);
  1328. border:none;
  1329. border-radius:0px;
  1330. -moz-box-shadow:none;
  1331. -webkit-box-shadow:none;
  1332. box-shadow:none;
  1333. color:#AAAAAA;
  1334. }
  1335. #u50914.disabled {
  1336. }
  1337. .u50914_input_option {
  1338. }
  1339. #u50915 {
  1340. border-width:0px;
  1341. position:absolute;
  1342. left:158px;
  1343. top:265px;
  1344. width:1087px;
  1345. height:520px;
  1346. }
  1347. #u50916_img {
  1348. border-width:0px;
  1349. position:absolute;
  1350. left:0px;
  1351. top:0px;
  1352. width:51px;
  1353. height:40px;
  1354. }
  1355. #u50916 {
  1356. border-width:0px;
  1357. position:absolute;
  1358. left:0px;
  1359. top:0px;
  1360. width:51px;
  1361. height:40px;
  1362. display:flex;
  1363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1364. font-weight:400;
  1365. font-style:normal;
  1366. font-size:14px;
  1367. color:#FFFFFF;
  1368. }
  1369. #u50916 .text {
  1370. position:absolute;
  1371. align-self:center;
  1372. padding:2px 2px 2px 0px;
  1373. box-sizing:border-box;
  1374. width:100%;
  1375. }
  1376. #u50916_text {
  1377. border-width:0px;
  1378. word-wrap:break-word;
  1379. text-transform:none;
  1380. visibility:hidden;
  1381. }
  1382. #u50917_img {
  1383. border-width:0px;
  1384. position:absolute;
  1385. left:0px;
  1386. top:0px;
  1387. width:143px;
  1388. height:40px;
  1389. }
  1390. #u50917 {
  1391. border-width:0px;
  1392. position:absolute;
  1393. left:51px;
  1394. top:0px;
  1395. width:143px;
  1396. height:40px;
  1397. display:flex;
  1398. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1399. font-weight:400;
  1400. font-style:normal;
  1401. font-size:14px;
  1402. color:#FFFFFF;
  1403. }
  1404. #u50917 .text {
  1405. position:absolute;
  1406. align-self:center;
  1407. padding:2px 2px 2px 0px;
  1408. box-sizing:border-box;
  1409. width:100%;
  1410. }
  1411. #u50917_text {
  1412. border-width:0px;
  1413. word-wrap:break-word;
  1414. text-transform:none;
  1415. }
  1416. #u50918_img {
  1417. border-width:0px;
  1418. position:absolute;
  1419. left:0px;
  1420. top:0px;
  1421. width:129px;
  1422. height:40px;
  1423. }
  1424. #u50918 {
  1425. border-width:0px;
  1426. position:absolute;
  1427. left:194px;
  1428. top:0px;
  1429. width:129px;
  1430. height:40px;
  1431. display:flex;
  1432. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1433. font-weight:400;
  1434. font-style:normal;
  1435. font-size:14px;
  1436. color:#FFFFFF;
  1437. }
  1438. #u50918 .text {
  1439. position:absolute;
  1440. align-self:center;
  1441. padding:2px 2px 2px 0px;
  1442. box-sizing:border-box;
  1443. width:100%;
  1444. }
  1445. #u50918_text {
  1446. border-width:0px;
  1447. word-wrap:break-word;
  1448. text-transform:none;
  1449. }
  1450. #u50919_img {
  1451. border-width:0px;
  1452. position:absolute;
  1453. left:0px;
  1454. top:0px;
  1455. width:159px;
  1456. height:40px;
  1457. }
  1458. #u50919 {
  1459. border-width:0px;
  1460. position:absolute;
  1461. left:323px;
  1462. top:0px;
  1463. width:159px;
  1464. height:40px;
  1465. display:flex;
  1466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1467. font-weight:400;
  1468. font-style:normal;
  1469. font-size:14px;
  1470. color:#FFFFFF;
  1471. }
  1472. #u50919 .text {
  1473. position:absolute;
  1474. align-self:center;
  1475. padding:2px 2px 2px 0px;
  1476. box-sizing:border-box;
  1477. width:100%;
  1478. }
  1479. #u50919_text {
  1480. border-width:0px;
  1481. word-wrap:break-word;
  1482. text-transform:none;
  1483. }
  1484. #u50920_img {
  1485. border-width:0px;
  1486. position:absolute;
  1487. left:0px;
  1488. top:0px;
  1489. width:159px;
  1490. height:40px;
  1491. }
  1492. #u50920 {
  1493. border-width:0px;
  1494. position:absolute;
  1495. left:482px;
  1496. top:0px;
  1497. width:159px;
  1498. height:40px;
  1499. display:flex;
  1500. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1501. font-weight:400;
  1502. font-style:normal;
  1503. font-size:14px;
  1504. color:#FFFFFF;
  1505. }
  1506. #u50920 .text {
  1507. position:absolute;
  1508. align-self:center;
  1509. padding:2px 2px 2px 0px;
  1510. box-sizing:border-box;
  1511. width:100%;
  1512. }
  1513. #u50920_text {
  1514. border-width:0px;
  1515. word-wrap:break-word;
  1516. text-transform:none;
  1517. }
  1518. #u50921_img {
  1519. border-width:0px;
  1520. position:absolute;
  1521. left:0px;
  1522. top:0px;
  1523. width:159px;
  1524. height:40px;
  1525. }
  1526. #u50921 {
  1527. border-width:0px;
  1528. position:absolute;
  1529. left:641px;
  1530. top:0px;
  1531. width:159px;
  1532. height:40px;
  1533. display:flex;
  1534. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1535. font-weight:400;
  1536. font-style:normal;
  1537. font-size:14px;
  1538. color:#FFFFFF;
  1539. }
  1540. #u50921 .text {
  1541. position:absolute;
  1542. align-self:center;
  1543. padding:2px 2px 2px 0px;
  1544. box-sizing:border-box;
  1545. width:100%;
  1546. }
  1547. #u50921_text {
  1548. border-width:0px;
  1549. word-wrap:break-word;
  1550. text-transform:none;
  1551. }
  1552. #u50922_img {
  1553. border-width:0px;
  1554. position:absolute;
  1555. left:0px;
  1556. top:0px;
  1557. width:143px;
  1558. height:40px;
  1559. }
  1560. #u50922 {
  1561. border-width:0px;
  1562. position:absolute;
  1563. left:800px;
  1564. top:0px;
  1565. width:143px;
  1566. height:40px;
  1567. display:flex;
  1568. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1569. font-weight:400;
  1570. font-style:normal;
  1571. font-size:14px;
  1572. color:#FFFFFF;
  1573. }
  1574. #u50922 .text {
  1575. position:absolute;
  1576. align-self:center;
  1577. padding:2px 2px 2px 0px;
  1578. box-sizing:border-box;
  1579. width:100%;
  1580. }
  1581. #u50922_text {
  1582. border-width:0px;
  1583. word-wrap:break-word;
  1584. text-transform:none;
  1585. }
  1586. #u50923_img {
  1587. border-width:0px;
  1588. position:absolute;
  1589. left:0px;
  1590. top:0px;
  1591. width:144px;
  1592. height:40px;
  1593. }
  1594. #u50923 {
  1595. border-width:0px;
  1596. position:absolute;
  1597. left:943px;
  1598. top:0px;
  1599. width:144px;
  1600. height:40px;
  1601. display:flex;
  1602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1603. font-weight:400;
  1604. font-style:normal;
  1605. font-size:14px;
  1606. color:#FFFFFF;
  1607. }
  1608. #u50923 .text {
  1609. position:absolute;
  1610. align-self:center;
  1611. padding:2px 2px 2px 0px;
  1612. box-sizing:border-box;
  1613. width:100%;
  1614. }
  1615. #u50923_text {
  1616. border-width:0px;
  1617. word-wrap:break-word;
  1618. text-transform:none;
  1619. }
  1620. #u50924_img {
  1621. border-width:0px;
  1622. position:absolute;
  1623. left:0px;
  1624. top:0px;
  1625. width:51px;
  1626. height:40px;
  1627. }
  1628. #u50924 {
  1629. border-width:0px;
  1630. position:absolute;
  1631. left:0px;
  1632. top:40px;
  1633. width:51px;
  1634. height:40px;
  1635. display:flex;
  1636. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1637. font-weight:400;
  1638. font-style:normal;
  1639. font-size:12px;
  1640. color:#333333;
  1641. }
  1642. #u50924 .text {
  1643. position:absolute;
  1644. align-self:center;
  1645. padding:2px 2px 2px 0px;
  1646. box-sizing:border-box;
  1647. width:100%;
  1648. }
  1649. #u50924_text {
  1650. border-width:0px;
  1651. word-wrap:break-word;
  1652. text-transform:none;
  1653. visibility:hidden;
  1654. }
  1655. #u50925_img {
  1656. border-width:0px;
  1657. position:absolute;
  1658. left:0px;
  1659. top:0px;
  1660. width:143px;
  1661. height:40px;
  1662. }
  1663. #u50925 {
  1664. border-width:0px;
  1665. position:absolute;
  1666. left:51px;
  1667. top:40px;
  1668. width:143px;
  1669. height:40px;
  1670. display:flex;
  1671. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1672. font-weight:400;
  1673. font-style:normal;
  1674. font-size:12px;
  1675. color:#333333;
  1676. }
  1677. #u50925 .text {
  1678. position:absolute;
  1679. align-self:center;
  1680. padding:2px 2px 2px 0px;
  1681. box-sizing:border-box;
  1682. width:100%;
  1683. }
  1684. #u50925_text {
  1685. border-width:0px;
  1686. word-wrap:break-word;
  1687. text-transform:none;
  1688. visibility:hidden;
  1689. }
  1690. #u50926_img {
  1691. border-width:0px;
  1692. position:absolute;
  1693. left:0px;
  1694. top:0px;
  1695. width:129px;
  1696. height:40px;
  1697. }
  1698. #u50926 {
  1699. border-width:0px;
  1700. position:absolute;
  1701. left:194px;
  1702. top:40px;
  1703. width:129px;
  1704. height:40px;
  1705. display:flex;
  1706. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1707. font-weight:400;
  1708. font-style:normal;
  1709. font-size:12px;
  1710. color:#333333;
  1711. }
  1712. #u50926 .text {
  1713. position:absolute;
  1714. align-self:center;
  1715. padding:2px 2px 2px 0px;
  1716. box-sizing:border-box;
  1717. width:100%;
  1718. }
  1719. #u50926_text {
  1720. border-width:0px;
  1721. word-wrap:break-word;
  1722. text-transform:none;
  1723. }
  1724. #u50927_img {
  1725. border-width:0px;
  1726. position:absolute;
  1727. left:0px;
  1728. top:0px;
  1729. width:159px;
  1730. height:40px;
  1731. }
  1732. #u50927 {
  1733. border-width:0px;
  1734. position:absolute;
  1735. left:323px;
  1736. top:40px;
  1737. width:159px;
  1738. height:40px;
  1739. display:flex;
  1740. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1741. font-weight:400;
  1742. font-style:normal;
  1743. font-size:12px;
  1744. color:#333333;
  1745. }
  1746. #u50927 .text {
  1747. position:absolute;
  1748. align-self:center;
  1749. padding:2px 2px 2px 0px;
  1750. box-sizing:border-box;
  1751. width:100%;
  1752. }
  1753. #u50927_text {
  1754. border-width:0px;
  1755. word-wrap:break-word;
  1756. text-transform:none;
  1757. }
  1758. #u50928_img {
  1759. border-width:0px;
  1760. position:absolute;
  1761. left:0px;
  1762. top:0px;
  1763. width:159px;
  1764. height:40px;
  1765. }
  1766. #u50928 {
  1767. border-width:0px;
  1768. position:absolute;
  1769. left:482px;
  1770. top:40px;
  1771. width:159px;
  1772. height:40px;
  1773. display:flex;
  1774. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1775. font-weight:400;
  1776. font-style:normal;
  1777. font-size:12px;
  1778. color:#333333;
  1779. }
  1780. #u50928 .text {
  1781. position:absolute;
  1782. align-self:center;
  1783. padding:2px 2px 2px 0px;
  1784. box-sizing:border-box;
  1785. width:100%;
  1786. }
  1787. #u50928_text {
  1788. border-width:0px;
  1789. word-wrap:break-word;
  1790. text-transform:none;
  1791. }
  1792. #u50929_img {
  1793. border-width:0px;
  1794. position:absolute;
  1795. left:0px;
  1796. top:0px;
  1797. width:159px;
  1798. height:40px;
  1799. }
  1800. #u50929 {
  1801. border-width:0px;
  1802. position:absolute;
  1803. left:641px;
  1804. top:40px;
  1805. width:159px;
  1806. height:40px;
  1807. display:flex;
  1808. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1809. font-weight:400;
  1810. font-style:normal;
  1811. font-size:12px;
  1812. color:#333333;
  1813. }
  1814. #u50929 .text {
  1815. position:absolute;
  1816. align-self:center;
  1817. padding:2px 2px 2px 0px;
  1818. box-sizing:border-box;
  1819. width:100%;
  1820. }
  1821. #u50929_text {
  1822. border-width:0px;
  1823. word-wrap:break-word;
  1824. text-transform:none;
  1825. }
  1826. #u50930_img {
  1827. border-width:0px;
  1828. position:absolute;
  1829. left:0px;
  1830. top:0px;
  1831. width:143px;
  1832. height:40px;
  1833. }
  1834. #u50930 {
  1835. border-width:0px;
  1836. position:absolute;
  1837. left:800px;
  1838. top:40px;
  1839. width:143px;
  1840. height:40px;
  1841. display:flex;
  1842. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1843. font-weight:400;
  1844. font-style:normal;
  1845. font-size:12px;
  1846. color:#333333;
  1847. }
  1848. #u50930 .text {
  1849. position:absolute;
  1850. align-self:center;
  1851. padding:2px 2px 2px 0px;
  1852. box-sizing:border-box;
  1853. width:100%;
  1854. }
  1855. #u50930_text {
  1856. border-width:0px;
  1857. word-wrap:break-word;
  1858. text-transform:none;
  1859. visibility:hidden;
  1860. }
  1861. #u50931_img {
  1862. border-width:0px;
  1863. position:absolute;
  1864. left:0px;
  1865. top:0px;
  1866. width:144px;
  1867. height:40px;
  1868. }
  1869. #u50931 {
  1870. border-width:0px;
  1871. position:absolute;
  1872. left:943px;
  1873. top:40px;
  1874. width:144px;
  1875. height:40px;
  1876. display:flex;
  1877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1878. font-weight:400;
  1879. font-style:normal;
  1880. font-size:12px;
  1881. color:#333333;
  1882. }
  1883. #u50931 .text {
  1884. position:absolute;
  1885. align-self:center;
  1886. padding:2px 2px 2px 0px;
  1887. box-sizing:border-box;
  1888. width:100%;
  1889. }
  1890. #u50931_text {
  1891. border-width:0px;
  1892. word-wrap:break-word;
  1893. text-transform:none;
  1894. visibility:hidden;
  1895. }
  1896. #u50932_img {
  1897. border-width:0px;
  1898. position:absolute;
  1899. left:0px;
  1900. top:0px;
  1901. width:51px;
  1902. height:40px;
  1903. }
  1904. #u50932 {
  1905. border-width:0px;
  1906. position:absolute;
  1907. left:0px;
  1908. top:80px;
  1909. width:51px;
  1910. height:40px;
  1911. display:flex;
  1912. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1913. font-weight:400;
  1914. font-style:normal;
  1915. font-size:12px;
  1916. color:#333333;
  1917. }
  1918. #u50932 .text {
  1919. position:absolute;
  1920. align-self:center;
  1921. padding:2px 2px 2px 0px;
  1922. box-sizing:border-box;
  1923. width:100%;
  1924. }
  1925. #u50932_text {
  1926. border-width:0px;
  1927. word-wrap:break-word;
  1928. text-transform:none;
  1929. visibility:hidden;
  1930. }
  1931. #u50933_img {
  1932. border-width:0px;
  1933. position:absolute;
  1934. left:0px;
  1935. top:0px;
  1936. width:143px;
  1937. height:40px;
  1938. }
  1939. #u50933 {
  1940. border-width:0px;
  1941. position:absolute;
  1942. left:51px;
  1943. top:80px;
  1944. width:143px;
  1945. height:40px;
  1946. display:flex;
  1947. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1948. font-weight:400;
  1949. font-style:normal;
  1950. font-size:12px;
  1951. color:#333333;
  1952. }
  1953. #u50933 .text {
  1954. position:absolute;
  1955. align-self:center;
  1956. padding:2px 2px 2px 0px;
  1957. box-sizing:border-box;
  1958. width:100%;
  1959. }
  1960. #u50933_text {
  1961. border-width:0px;
  1962. word-wrap:break-word;
  1963. text-transform:none;
  1964. visibility:hidden;
  1965. }
  1966. #u50934_img {
  1967. border-width:0px;
  1968. position:absolute;
  1969. left:0px;
  1970. top:0px;
  1971. width:129px;
  1972. height:40px;
  1973. }
  1974. #u50934 {
  1975. border-width:0px;
  1976. position:absolute;
  1977. left:194px;
  1978. top:80px;
  1979. width:129px;
  1980. height:40px;
  1981. display:flex;
  1982. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1983. font-weight:400;
  1984. font-style:normal;
  1985. font-size:12px;
  1986. color:#333333;
  1987. }
  1988. #u50934 .text {
  1989. position:absolute;
  1990. align-self:center;
  1991. padding:2px 2px 2px 0px;
  1992. box-sizing:border-box;
  1993. width:100%;
  1994. }
  1995. #u50934_text {
  1996. border-width:0px;
  1997. word-wrap:break-word;
  1998. text-transform:none;
  1999. visibility:hidden;
  2000. }
  2001. #u50935_img {
  2002. border-width:0px;
  2003. position:absolute;
  2004. left:0px;
  2005. top:0px;
  2006. width:159px;
  2007. height:40px;
  2008. }
  2009. #u50935 {
  2010. border-width:0px;
  2011. position:absolute;
  2012. left:323px;
  2013. top:80px;
  2014. width:159px;
  2015. height:40px;
  2016. display:flex;
  2017. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2018. font-weight:400;
  2019. font-style:normal;
  2020. font-size:12px;
  2021. color:#333333;
  2022. }
  2023. #u50935 .text {
  2024. position:absolute;
  2025. align-self:center;
  2026. padding:2px 2px 2px 0px;
  2027. box-sizing:border-box;
  2028. width:100%;
  2029. }
  2030. #u50935_text {
  2031. border-width:0px;
  2032. word-wrap:break-word;
  2033. text-transform:none;
  2034. visibility:hidden;
  2035. }
  2036. #u50936_img {
  2037. border-width:0px;
  2038. position:absolute;
  2039. left:0px;
  2040. top:0px;
  2041. width:159px;
  2042. height:40px;
  2043. }
  2044. #u50936 {
  2045. border-width:0px;
  2046. position:absolute;
  2047. left:482px;
  2048. top:80px;
  2049. width:159px;
  2050. height:40px;
  2051. display:flex;
  2052. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2053. font-weight:400;
  2054. font-style:normal;
  2055. font-size:12px;
  2056. color:#333333;
  2057. }
  2058. #u50936 .text {
  2059. position:absolute;
  2060. align-self:center;
  2061. padding:2px 2px 2px 0px;
  2062. box-sizing:border-box;
  2063. width:100%;
  2064. }
  2065. #u50936_text {
  2066. border-width:0px;
  2067. word-wrap:break-word;
  2068. text-transform:none;
  2069. visibility:hidden;
  2070. }
  2071. #u50937_img {
  2072. border-width:0px;
  2073. position:absolute;
  2074. left:0px;
  2075. top:0px;
  2076. width:159px;
  2077. height:40px;
  2078. }
  2079. #u50937 {
  2080. border-width:0px;
  2081. position:absolute;
  2082. left:641px;
  2083. top:80px;
  2084. width:159px;
  2085. height:40px;
  2086. display:flex;
  2087. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2088. font-weight:400;
  2089. font-style:normal;
  2090. font-size:12px;
  2091. color:#333333;
  2092. }
  2093. #u50937 .text {
  2094. position:absolute;
  2095. align-self:center;
  2096. padding:2px 2px 2px 0px;
  2097. box-sizing:border-box;
  2098. width:100%;
  2099. }
  2100. #u50937_text {
  2101. border-width:0px;
  2102. word-wrap:break-word;
  2103. text-transform:none;
  2104. visibility:hidden;
  2105. }
  2106. #u50938_img {
  2107. border-width:0px;
  2108. position:absolute;
  2109. left:0px;
  2110. top:0px;
  2111. width:143px;
  2112. height:40px;
  2113. }
  2114. #u50938 {
  2115. border-width:0px;
  2116. position:absolute;
  2117. left:800px;
  2118. top:80px;
  2119. width:143px;
  2120. height:40px;
  2121. display:flex;
  2122. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2123. font-weight:400;
  2124. font-style:normal;
  2125. font-size:12px;
  2126. color:#333333;
  2127. }
  2128. #u50938 .text {
  2129. position:absolute;
  2130. align-self:center;
  2131. padding:2px 2px 2px 0px;
  2132. box-sizing:border-box;
  2133. width:100%;
  2134. }
  2135. #u50938_text {
  2136. border-width:0px;
  2137. word-wrap:break-word;
  2138. text-transform:none;
  2139. visibility:hidden;
  2140. }
  2141. #u50939_img {
  2142. border-width:0px;
  2143. position:absolute;
  2144. left:0px;
  2145. top:0px;
  2146. width:144px;
  2147. height:40px;
  2148. }
  2149. #u50939 {
  2150. border-width:0px;
  2151. position:absolute;
  2152. left:943px;
  2153. top:80px;
  2154. width:144px;
  2155. height:40px;
  2156. display:flex;
  2157. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2158. font-weight:400;
  2159. font-style:normal;
  2160. font-size:12px;
  2161. color:#333333;
  2162. }
  2163. #u50939 .text {
  2164. position:absolute;
  2165. align-self:center;
  2166. padding:2px 2px 2px 0px;
  2167. box-sizing:border-box;
  2168. width:100%;
  2169. }
  2170. #u50939_text {
  2171. border-width:0px;
  2172. word-wrap:break-word;
  2173. text-transform:none;
  2174. visibility:hidden;
  2175. }
  2176. #u50940_img {
  2177. border-width:0px;
  2178. position:absolute;
  2179. left:0px;
  2180. top:0px;
  2181. width:51px;
  2182. height:40px;
  2183. }
  2184. #u50940 {
  2185. border-width:0px;
  2186. position:absolute;
  2187. left:0px;
  2188. top:120px;
  2189. width:51px;
  2190. height:40px;
  2191. display:flex;
  2192. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2193. font-weight:400;
  2194. font-style:normal;
  2195. font-size:12px;
  2196. color:#333333;
  2197. }
  2198. #u50940 .text {
  2199. position:absolute;
  2200. align-self:center;
  2201. padding:2px 2px 2px 0px;
  2202. box-sizing:border-box;
  2203. width:100%;
  2204. }
  2205. #u50940_text {
  2206. border-width:0px;
  2207. word-wrap:break-word;
  2208. text-transform:none;
  2209. visibility:hidden;
  2210. }
  2211. #u50941_img {
  2212. border-width:0px;
  2213. position:absolute;
  2214. left:0px;
  2215. top:0px;
  2216. width:143px;
  2217. height:40px;
  2218. }
  2219. #u50941 {
  2220. border-width:0px;
  2221. position:absolute;
  2222. left:51px;
  2223. top:120px;
  2224. width:143px;
  2225. height:40px;
  2226. display:flex;
  2227. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2228. font-weight:400;
  2229. font-style:normal;
  2230. font-size:12px;
  2231. color:#333333;
  2232. }
  2233. #u50941 .text {
  2234. position:absolute;
  2235. align-self:center;
  2236. padding:2px 2px 2px 0px;
  2237. box-sizing:border-box;
  2238. width:100%;
  2239. }
  2240. #u50941_text {
  2241. border-width:0px;
  2242. word-wrap:break-word;
  2243. text-transform:none;
  2244. visibility:hidden;
  2245. }
  2246. #u50942_img {
  2247. border-width:0px;
  2248. position:absolute;
  2249. left:0px;
  2250. top:0px;
  2251. width:129px;
  2252. height:40px;
  2253. }
  2254. #u50942 {
  2255. border-width:0px;
  2256. position:absolute;
  2257. left:194px;
  2258. top:120px;
  2259. width:129px;
  2260. height:40px;
  2261. display:flex;
  2262. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2263. font-weight:400;
  2264. font-style:normal;
  2265. font-size:12px;
  2266. color:#333333;
  2267. }
  2268. #u50942 .text {
  2269. position:absolute;
  2270. align-self:center;
  2271. padding:2px 2px 2px 0px;
  2272. box-sizing:border-box;
  2273. width:100%;
  2274. }
  2275. #u50942_text {
  2276. border-width:0px;
  2277. word-wrap:break-word;
  2278. text-transform:none;
  2279. visibility:hidden;
  2280. }
  2281. #u50943_img {
  2282. border-width:0px;
  2283. position:absolute;
  2284. left:0px;
  2285. top:0px;
  2286. width:159px;
  2287. height:40px;
  2288. }
  2289. #u50943 {
  2290. border-width:0px;
  2291. position:absolute;
  2292. left:323px;
  2293. top:120px;
  2294. width:159px;
  2295. height:40px;
  2296. display:flex;
  2297. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2298. font-weight:400;
  2299. font-style:normal;
  2300. font-size:12px;
  2301. color:#333333;
  2302. }
  2303. #u50943 .text {
  2304. position:absolute;
  2305. align-self:center;
  2306. padding:2px 2px 2px 0px;
  2307. box-sizing:border-box;
  2308. width:100%;
  2309. }
  2310. #u50943_text {
  2311. border-width:0px;
  2312. word-wrap:break-word;
  2313. text-transform:none;
  2314. visibility:hidden;
  2315. }
  2316. #u50944_img {
  2317. border-width:0px;
  2318. position:absolute;
  2319. left:0px;
  2320. top:0px;
  2321. width:159px;
  2322. height:40px;
  2323. }
  2324. #u50944 {
  2325. border-width:0px;
  2326. position:absolute;
  2327. left:482px;
  2328. top:120px;
  2329. width:159px;
  2330. height:40px;
  2331. display:flex;
  2332. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2333. font-weight:400;
  2334. font-style:normal;
  2335. font-size:12px;
  2336. color:#333333;
  2337. }
  2338. #u50944 .text {
  2339. position:absolute;
  2340. align-self:center;
  2341. padding:2px 2px 2px 0px;
  2342. box-sizing:border-box;
  2343. width:100%;
  2344. }
  2345. #u50944_text {
  2346. border-width:0px;
  2347. word-wrap:break-word;
  2348. text-transform:none;
  2349. visibility:hidden;
  2350. }
  2351. #u50945_img {
  2352. border-width:0px;
  2353. position:absolute;
  2354. left:0px;
  2355. top:0px;
  2356. width:159px;
  2357. height:40px;
  2358. }
  2359. #u50945 {
  2360. border-width:0px;
  2361. position:absolute;
  2362. left:641px;
  2363. top:120px;
  2364. width:159px;
  2365. height:40px;
  2366. display:flex;
  2367. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2368. font-weight:400;
  2369. font-style:normal;
  2370. font-size:12px;
  2371. color:#333333;
  2372. }
  2373. #u50945 .text {
  2374. position:absolute;
  2375. align-self:center;
  2376. padding:2px 2px 2px 0px;
  2377. box-sizing:border-box;
  2378. width:100%;
  2379. }
  2380. #u50945_text {
  2381. border-width:0px;
  2382. word-wrap:break-word;
  2383. text-transform:none;
  2384. visibility:hidden;
  2385. }
  2386. #u50946_img {
  2387. border-width:0px;
  2388. position:absolute;
  2389. left:0px;
  2390. top:0px;
  2391. width:143px;
  2392. height:40px;
  2393. }
  2394. #u50946 {
  2395. border-width:0px;
  2396. position:absolute;
  2397. left:800px;
  2398. top:120px;
  2399. width:143px;
  2400. height:40px;
  2401. display:flex;
  2402. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2403. font-weight:400;
  2404. font-style:normal;
  2405. font-size:12px;
  2406. color:#333333;
  2407. }
  2408. #u50946 .text {
  2409. position:absolute;
  2410. align-self:center;
  2411. padding:2px 2px 2px 0px;
  2412. box-sizing:border-box;
  2413. width:100%;
  2414. }
  2415. #u50946_text {
  2416. border-width:0px;
  2417. word-wrap:break-word;
  2418. text-transform:none;
  2419. visibility:hidden;
  2420. }
  2421. #u50947_img {
  2422. border-width:0px;
  2423. position:absolute;
  2424. left:0px;
  2425. top:0px;
  2426. width:144px;
  2427. height:40px;
  2428. }
  2429. #u50947 {
  2430. border-width:0px;
  2431. position:absolute;
  2432. left:943px;
  2433. top:120px;
  2434. width:144px;
  2435. height:40px;
  2436. display:flex;
  2437. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2438. font-weight:400;
  2439. font-style:normal;
  2440. font-size:12px;
  2441. color:#333333;
  2442. }
  2443. #u50947 .text {
  2444. position:absolute;
  2445. align-self:center;
  2446. padding:2px 2px 2px 0px;
  2447. box-sizing:border-box;
  2448. width:100%;
  2449. }
  2450. #u50947_text {
  2451. border-width:0px;
  2452. word-wrap:break-word;
  2453. text-transform:none;
  2454. visibility:hidden;
  2455. }
  2456. #u50948_img {
  2457. border-width:0px;
  2458. position:absolute;
  2459. left:0px;
  2460. top:0px;
  2461. width:51px;
  2462. height:40px;
  2463. }
  2464. #u50948 {
  2465. border-width:0px;
  2466. position:absolute;
  2467. left:0px;
  2468. top:160px;
  2469. width:51px;
  2470. height:40px;
  2471. display:flex;
  2472. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2473. font-weight:400;
  2474. font-style:normal;
  2475. font-size:12px;
  2476. color:#333333;
  2477. }
  2478. #u50948 .text {
  2479. position:absolute;
  2480. align-self:center;
  2481. padding:2px 2px 2px 0px;
  2482. box-sizing:border-box;
  2483. width:100%;
  2484. }
  2485. #u50948_text {
  2486. border-width:0px;
  2487. word-wrap:break-word;
  2488. text-transform:none;
  2489. visibility:hidden;
  2490. }
  2491. #u50949_img {
  2492. border-width:0px;
  2493. position:absolute;
  2494. left:0px;
  2495. top:0px;
  2496. width:143px;
  2497. height:40px;
  2498. }
  2499. #u50949 {
  2500. border-width:0px;
  2501. position:absolute;
  2502. left:51px;
  2503. top:160px;
  2504. width:143px;
  2505. height:40px;
  2506. display:flex;
  2507. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2508. font-weight:400;
  2509. font-style:normal;
  2510. font-size:12px;
  2511. color:#333333;
  2512. }
  2513. #u50949 .text {
  2514. position:absolute;
  2515. align-self:center;
  2516. padding:2px 2px 2px 0px;
  2517. box-sizing:border-box;
  2518. width:100%;
  2519. }
  2520. #u50949_text {
  2521. border-width:0px;
  2522. word-wrap:break-word;
  2523. text-transform:none;
  2524. visibility:hidden;
  2525. }
  2526. #u50950_img {
  2527. border-width:0px;
  2528. position:absolute;
  2529. left:0px;
  2530. top:0px;
  2531. width:129px;
  2532. height:40px;
  2533. }
  2534. #u50950 {
  2535. border-width:0px;
  2536. position:absolute;
  2537. left:194px;
  2538. top:160px;
  2539. width:129px;
  2540. height:40px;
  2541. display:flex;
  2542. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2543. font-weight:400;
  2544. font-style:normal;
  2545. font-size:12px;
  2546. color:#333333;
  2547. }
  2548. #u50950 .text {
  2549. position:absolute;
  2550. align-self:center;
  2551. padding:2px 2px 2px 0px;
  2552. box-sizing:border-box;
  2553. width:100%;
  2554. }
  2555. #u50950_text {
  2556. border-width:0px;
  2557. word-wrap:break-word;
  2558. text-transform:none;
  2559. visibility:hidden;
  2560. }
  2561. #u50951_img {
  2562. border-width:0px;
  2563. position:absolute;
  2564. left:0px;
  2565. top:0px;
  2566. width:159px;
  2567. height:40px;
  2568. }
  2569. #u50951 {
  2570. border-width:0px;
  2571. position:absolute;
  2572. left:323px;
  2573. top:160px;
  2574. width:159px;
  2575. height:40px;
  2576. display:flex;
  2577. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2578. font-weight:400;
  2579. font-style:normal;
  2580. font-size:12px;
  2581. color:#333333;
  2582. }
  2583. #u50951 .text {
  2584. position:absolute;
  2585. align-self:center;
  2586. padding:2px 2px 2px 0px;
  2587. box-sizing:border-box;
  2588. width:100%;
  2589. }
  2590. #u50951_text {
  2591. border-width:0px;
  2592. word-wrap:break-word;
  2593. text-transform:none;
  2594. visibility:hidden;
  2595. }
  2596. #u50952_img {
  2597. border-width:0px;
  2598. position:absolute;
  2599. left:0px;
  2600. top:0px;
  2601. width:159px;
  2602. height:40px;
  2603. }
  2604. #u50952 {
  2605. border-width:0px;
  2606. position:absolute;
  2607. left:482px;
  2608. top:160px;
  2609. width:159px;
  2610. height:40px;
  2611. display:flex;
  2612. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2613. font-weight:400;
  2614. font-style:normal;
  2615. font-size:12px;
  2616. color:#333333;
  2617. }
  2618. #u50952 .text {
  2619. position:absolute;
  2620. align-self:center;
  2621. padding:2px 2px 2px 0px;
  2622. box-sizing:border-box;
  2623. width:100%;
  2624. }
  2625. #u50952_text {
  2626. border-width:0px;
  2627. word-wrap:break-word;
  2628. text-transform:none;
  2629. visibility:hidden;
  2630. }
  2631. #u50953_img {
  2632. border-width:0px;
  2633. position:absolute;
  2634. left:0px;
  2635. top:0px;
  2636. width:159px;
  2637. height:40px;
  2638. }
  2639. #u50953 {
  2640. border-width:0px;
  2641. position:absolute;
  2642. left:641px;
  2643. top:160px;
  2644. width:159px;
  2645. height:40px;
  2646. display:flex;
  2647. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2648. font-weight:400;
  2649. font-style:normal;
  2650. font-size:12px;
  2651. color:#333333;
  2652. }
  2653. #u50953 .text {
  2654. position:absolute;
  2655. align-self:center;
  2656. padding:2px 2px 2px 0px;
  2657. box-sizing:border-box;
  2658. width:100%;
  2659. }
  2660. #u50953_text {
  2661. border-width:0px;
  2662. word-wrap:break-word;
  2663. text-transform:none;
  2664. visibility:hidden;
  2665. }
  2666. #u50954_img {
  2667. border-width:0px;
  2668. position:absolute;
  2669. left:0px;
  2670. top:0px;
  2671. width:143px;
  2672. height:40px;
  2673. }
  2674. #u50954 {
  2675. border-width:0px;
  2676. position:absolute;
  2677. left:800px;
  2678. top:160px;
  2679. width:143px;
  2680. height:40px;
  2681. display:flex;
  2682. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2683. font-weight:400;
  2684. font-style:normal;
  2685. font-size:12px;
  2686. color:#333333;
  2687. }
  2688. #u50954 .text {
  2689. position:absolute;
  2690. align-self:center;
  2691. padding:2px 2px 2px 0px;
  2692. box-sizing:border-box;
  2693. width:100%;
  2694. }
  2695. #u50954_text {
  2696. border-width:0px;
  2697. word-wrap:break-word;
  2698. text-transform:none;
  2699. visibility:hidden;
  2700. }
  2701. #u50955_img {
  2702. border-width:0px;
  2703. position:absolute;
  2704. left:0px;
  2705. top:0px;
  2706. width:144px;
  2707. height:40px;
  2708. }
  2709. #u50955 {
  2710. border-width:0px;
  2711. position:absolute;
  2712. left:943px;
  2713. top:160px;
  2714. width:144px;
  2715. height:40px;
  2716. display:flex;
  2717. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2718. font-weight:400;
  2719. font-style:normal;
  2720. font-size:12px;
  2721. color:#333333;
  2722. }
  2723. #u50955 .text {
  2724. position:absolute;
  2725. align-self:center;
  2726. padding:2px 2px 2px 0px;
  2727. box-sizing:border-box;
  2728. width:100%;
  2729. }
  2730. #u50955_text {
  2731. border-width:0px;
  2732. word-wrap:break-word;
  2733. text-transform:none;
  2734. visibility:hidden;
  2735. }
  2736. #u50956_img {
  2737. border-width:0px;
  2738. position:absolute;
  2739. left:0px;
  2740. top:0px;
  2741. width:51px;
  2742. height:40px;
  2743. }
  2744. #u50956 {
  2745. border-width:0px;
  2746. position:absolute;
  2747. left:0px;
  2748. top:200px;
  2749. width:51px;
  2750. height:40px;
  2751. display:flex;
  2752. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2753. font-weight:400;
  2754. font-style:normal;
  2755. font-size:12px;
  2756. color:#333333;
  2757. }
  2758. #u50956 .text {
  2759. position:absolute;
  2760. align-self:center;
  2761. padding:2px 2px 2px 0px;
  2762. box-sizing:border-box;
  2763. width:100%;
  2764. }
  2765. #u50956_text {
  2766. border-width:0px;
  2767. word-wrap:break-word;
  2768. text-transform:none;
  2769. visibility:hidden;
  2770. }
  2771. #u50957_img {
  2772. border-width:0px;
  2773. position:absolute;
  2774. left:0px;
  2775. top:0px;
  2776. width:143px;
  2777. height:40px;
  2778. }
  2779. #u50957 {
  2780. border-width:0px;
  2781. position:absolute;
  2782. left:51px;
  2783. top:200px;
  2784. width:143px;
  2785. height:40px;
  2786. display:flex;
  2787. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2788. font-weight:400;
  2789. font-style:normal;
  2790. font-size:12px;
  2791. color:#333333;
  2792. }
  2793. #u50957 .text {
  2794. position:absolute;
  2795. align-self:center;
  2796. padding:2px 2px 2px 0px;
  2797. box-sizing:border-box;
  2798. width:100%;
  2799. }
  2800. #u50957_text {
  2801. border-width:0px;
  2802. word-wrap:break-word;
  2803. text-transform:none;
  2804. visibility:hidden;
  2805. }
  2806. #u50958_img {
  2807. border-width:0px;
  2808. position:absolute;
  2809. left:0px;
  2810. top:0px;
  2811. width:129px;
  2812. height:40px;
  2813. }
  2814. #u50958 {
  2815. border-width:0px;
  2816. position:absolute;
  2817. left:194px;
  2818. top:200px;
  2819. width:129px;
  2820. height:40px;
  2821. display:flex;
  2822. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2823. font-weight:400;
  2824. font-style:normal;
  2825. font-size:12px;
  2826. color:#333333;
  2827. }
  2828. #u50958 .text {
  2829. position:absolute;
  2830. align-self:center;
  2831. padding:2px 2px 2px 0px;
  2832. box-sizing:border-box;
  2833. width:100%;
  2834. }
  2835. #u50958_text {
  2836. border-width:0px;
  2837. word-wrap:break-word;
  2838. text-transform:none;
  2839. visibility:hidden;
  2840. }
  2841. #u50959_img {
  2842. border-width:0px;
  2843. position:absolute;
  2844. left:0px;
  2845. top:0px;
  2846. width:159px;
  2847. height:40px;
  2848. }
  2849. #u50959 {
  2850. border-width:0px;
  2851. position:absolute;
  2852. left:323px;
  2853. top:200px;
  2854. width:159px;
  2855. height:40px;
  2856. display:flex;
  2857. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2858. font-weight:400;
  2859. font-style:normal;
  2860. font-size:12px;
  2861. color:#333333;
  2862. }
  2863. #u50959 .text {
  2864. position:absolute;
  2865. align-self:center;
  2866. padding:2px 2px 2px 0px;
  2867. box-sizing:border-box;
  2868. width:100%;
  2869. }
  2870. #u50959_text {
  2871. border-width:0px;
  2872. word-wrap:break-word;
  2873. text-transform:none;
  2874. visibility:hidden;
  2875. }
  2876. #u50960_img {
  2877. border-width:0px;
  2878. position:absolute;
  2879. left:0px;
  2880. top:0px;
  2881. width:159px;
  2882. height:40px;
  2883. }
  2884. #u50960 {
  2885. border-width:0px;
  2886. position:absolute;
  2887. left:482px;
  2888. top:200px;
  2889. width:159px;
  2890. height:40px;
  2891. display:flex;
  2892. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2893. font-weight:400;
  2894. font-style:normal;
  2895. font-size:12px;
  2896. color:#333333;
  2897. }
  2898. #u50960 .text {
  2899. position:absolute;
  2900. align-self:center;
  2901. padding:2px 2px 2px 0px;
  2902. box-sizing:border-box;
  2903. width:100%;
  2904. }
  2905. #u50960_text {
  2906. border-width:0px;
  2907. word-wrap:break-word;
  2908. text-transform:none;
  2909. visibility:hidden;
  2910. }
  2911. #u50961_img {
  2912. border-width:0px;
  2913. position:absolute;
  2914. left:0px;
  2915. top:0px;
  2916. width:159px;
  2917. height:40px;
  2918. }
  2919. #u50961 {
  2920. border-width:0px;
  2921. position:absolute;
  2922. left:641px;
  2923. top:200px;
  2924. width:159px;
  2925. height:40px;
  2926. display:flex;
  2927. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2928. font-weight:400;
  2929. font-style:normal;
  2930. font-size:12px;
  2931. color:#333333;
  2932. }
  2933. #u50961 .text {
  2934. position:absolute;
  2935. align-self:center;
  2936. padding:2px 2px 2px 0px;
  2937. box-sizing:border-box;
  2938. width:100%;
  2939. }
  2940. #u50961_text {
  2941. border-width:0px;
  2942. word-wrap:break-word;
  2943. text-transform:none;
  2944. visibility:hidden;
  2945. }
  2946. #u50962_img {
  2947. border-width:0px;
  2948. position:absolute;
  2949. left:0px;
  2950. top:0px;
  2951. width:143px;
  2952. height:40px;
  2953. }
  2954. #u50962 {
  2955. border-width:0px;
  2956. position:absolute;
  2957. left:800px;
  2958. top:200px;
  2959. width:143px;
  2960. height:40px;
  2961. display:flex;
  2962. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2963. font-weight:400;
  2964. font-style:normal;
  2965. font-size:12px;
  2966. color:#333333;
  2967. }
  2968. #u50962 .text {
  2969. position:absolute;
  2970. align-self:center;
  2971. padding:2px 2px 2px 0px;
  2972. box-sizing:border-box;
  2973. width:100%;
  2974. }
  2975. #u50962_text {
  2976. border-width:0px;
  2977. word-wrap:break-word;
  2978. text-transform:none;
  2979. visibility:hidden;
  2980. }
  2981. #u50963_img {
  2982. border-width:0px;
  2983. position:absolute;
  2984. left:0px;
  2985. top:0px;
  2986. width:144px;
  2987. height:40px;
  2988. }
  2989. #u50963 {
  2990. border-width:0px;
  2991. position:absolute;
  2992. left:943px;
  2993. top:200px;
  2994. width:144px;
  2995. height:40px;
  2996. display:flex;
  2997. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2998. font-weight:400;
  2999. font-style:normal;
  3000. font-size:12px;
  3001. color:#333333;
  3002. }
  3003. #u50963 .text {
  3004. position:absolute;
  3005. align-self:center;
  3006. padding:2px 2px 2px 0px;
  3007. box-sizing:border-box;
  3008. width:100%;
  3009. }
  3010. #u50963_text {
  3011. border-width:0px;
  3012. word-wrap:break-word;
  3013. text-transform:none;
  3014. visibility:hidden;
  3015. }
  3016. #u50964_img {
  3017. border-width:0px;
  3018. position:absolute;
  3019. left:0px;
  3020. top:0px;
  3021. width:51px;
  3022. height:40px;
  3023. }
  3024. #u50964 {
  3025. border-width:0px;
  3026. position:absolute;
  3027. left:0px;
  3028. top:240px;
  3029. width:51px;
  3030. height:40px;
  3031. display:flex;
  3032. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3033. font-weight:400;
  3034. font-style:normal;
  3035. font-size:12px;
  3036. color:#333333;
  3037. }
  3038. #u50964 .text {
  3039. position:absolute;
  3040. align-self:center;
  3041. padding:2px 2px 2px 0px;
  3042. box-sizing:border-box;
  3043. width:100%;
  3044. }
  3045. #u50964_text {
  3046. border-width:0px;
  3047. word-wrap:break-word;
  3048. text-transform:none;
  3049. visibility:hidden;
  3050. }
  3051. #u50965_img {
  3052. border-width:0px;
  3053. position:absolute;
  3054. left:0px;
  3055. top:0px;
  3056. width:143px;
  3057. height:40px;
  3058. }
  3059. #u50965 {
  3060. border-width:0px;
  3061. position:absolute;
  3062. left:51px;
  3063. top:240px;
  3064. width:143px;
  3065. height:40px;
  3066. display:flex;
  3067. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3068. font-weight:400;
  3069. font-style:normal;
  3070. font-size:12px;
  3071. color:#333333;
  3072. }
  3073. #u50965 .text {
  3074. position:absolute;
  3075. align-self:center;
  3076. padding:2px 2px 2px 0px;
  3077. box-sizing:border-box;
  3078. width:100%;
  3079. }
  3080. #u50965_text {
  3081. border-width:0px;
  3082. word-wrap:break-word;
  3083. text-transform:none;
  3084. visibility:hidden;
  3085. }
  3086. #u50966_img {
  3087. border-width:0px;
  3088. position:absolute;
  3089. left:0px;
  3090. top:0px;
  3091. width:129px;
  3092. height:40px;
  3093. }
  3094. #u50966 {
  3095. border-width:0px;
  3096. position:absolute;
  3097. left:194px;
  3098. top:240px;
  3099. width:129px;
  3100. height:40px;
  3101. display:flex;
  3102. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3103. font-weight:400;
  3104. font-style:normal;
  3105. font-size:12px;
  3106. color:#333333;
  3107. }
  3108. #u50966 .text {
  3109. position:absolute;
  3110. align-self:center;
  3111. padding:2px 2px 2px 0px;
  3112. box-sizing:border-box;
  3113. width:100%;
  3114. }
  3115. #u50966_text {
  3116. border-width:0px;
  3117. word-wrap:break-word;
  3118. text-transform:none;
  3119. visibility:hidden;
  3120. }
  3121. #u50967_img {
  3122. border-width:0px;
  3123. position:absolute;
  3124. left:0px;
  3125. top:0px;
  3126. width:159px;
  3127. height:40px;
  3128. }
  3129. #u50967 {
  3130. border-width:0px;
  3131. position:absolute;
  3132. left:323px;
  3133. top:240px;
  3134. width:159px;
  3135. height:40px;
  3136. display:flex;
  3137. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3138. font-weight:400;
  3139. font-style:normal;
  3140. font-size:12px;
  3141. color:#333333;
  3142. }
  3143. #u50967 .text {
  3144. position:absolute;
  3145. align-self:center;
  3146. padding:2px 2px 2px 0px;
  3147. box-sizing:border-box;
  3148. width:100%;
  3149. }
  3150. #u50967_text {
  3151. border-width:0px;
  3152. word-wrap:break-word;
  3153. text-transform:none;
  3154. visibility:hidden;
  3155. }
  3156. #u50968_img {
  3157. border-width:0px;
  3158. position:absolute;
  3159. left:0px;
  3160. top:0px;
  3161. width:159px;
  3162. height:40px;
  3163. }
  3164. #u50968 {
  3165. border-width:0px;
  3166. position:absolute;
  3167. left:482px;
  3168. top:240px;
  3169. width:159px;
  3170. height:40px;
  3171. display:flex;
  3172. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3173. font-weight:400;
  3174. font-style:normal;
  3175. font-size:12px;
  3176. color:#333333;
  3177. }
  3178. #u50968 .text {
  3179. position:absolute;
  3180. align-self:center;
  3181. padding:2px 2px 2px 0px;
  3182. box-sizing:border-box;
  3183. width:100%;
  3184. }
  3185. #u50968_text {
  3186. border-width:0px;
  3187. word-wrap:break-word;
  3188. text-transform:none;
  3189. visibility:hidden;
  3190. }
  3191. #u50969_img {
  3192. border-width:0px;
  3193. position:absolute;
  3194. left:0px;
  3195. top:0px;
  3196. width:159px;
  3197. height:40px;
  3198. }
  3199. #u50969 {
  3200. border-width:0px;
  3201. position:absolute;
  3202. left:641px;
  3203. top:240px;
  3204. width:159px;
  3205. height:40px;
  3206. display:flex;
  3207. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3208. font-weight:400;
  3209. font-style:normal;
  3210. font-size:12px;
  3211. color:#333333;
  3212. }
  3213. #u50969 .text {
  3214. position:absolute;
  3215. align-self:center;
  3216. padding:2px 2px 2px 0px;
  3217. box-sizing:border-box;
  3218. width:100%;
  3219. }
  3220. #u50969_text {
  3221. border-width:0px;
  3222. word-wrap:break-word;
  3223. text-transform:none;
  3224. visibility:hidden;
  3225. }
  3226. #u50970_img {
  3227. border-width:0px;
  3228. position:absolute;
  3229. left:0px;
  3230. top:0px;
  3231. width:143px;
  3232. height:40px;
  3233. }
  3234. #u50970 {
  3235. border-width:0px;
  3236. position:absolute;
  3237. left:800px;
  3238. top:240px;
  3239. width:143px;
  3240. height:40px;
  3241. display:flex;
  3242. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3243. font-weight:400;
  3244. font-style:normal;
  3245. font-size:12px;
  3246. color:#333333;
  3247. }
  3248. #u50970 .text {
  3249. position:absolute;
  3250. align-self:center;
  3251. padding:2px 2px 2px 0px;
  3252. box-sizing:border-box;
  3253. width:100%;
  3254. }
  3255. #u50970_text {
  3256. border-width:0px;
  3257. word-wrap:break-word;
  3258. text-transform:none;
  3259. visibility:hidden;
  3260. }
  3261. #u50971_img {
  3262. border-width:0px;
  3263. position:absolute;
  3264. left:0px;
  3265. top:0px;
  3266. width:144px;
  3267. height:40px;
  3268. }
  3269. #u50971 {
  3270. border-width:0px;
  3271. position:absolute;
  3272. left:943px;
  3273. top:240px;
  3274. width:144px;
  3275. height:40px;
  3276. display:flex;
  3277. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3278. font-weight:400;
  3279. font-style:normal;
  3280. font-size:12px;
  3281. color:#333333;
  3282. }
  3283. #u50971 .text {
  3284. position:absolute;
  3285. align-self:center;
  3286. padding:2px 2px 2px 0px;
  3287. box-sizing:border-box;
  3288. width:100%;
  3289. }
  3290. #u50971_text {
  3291. border-width:0px;
  3292. word-wrap:break-word;
  3293. text-transform:none;
  3294. visibility:hidden;
  3295. }
  3296. #u50972_img {
  3297. border-width:0px;
  3298. position:absolute;
  3299. left:0px;
  3300. top:0px;
  3301. width:51px;
  3302. height:40px;
  3303. }
  3304. #u50972 {
  3305. border-width:0px;
  3306. position:absolute;
  3307. left:0px;
  3308. top:280px;
  3309. width:51px;
  3310. height:40px;
  3311. display:flex;
  3312. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3313. font-weight:400;
  3314. font-style:normal;
  3315. font-size:12px;
  3316. color:#333333;
  3317. }
  3318. #u50972 .text {
  3319. position:absolute;
  3320. align-self:center;
  3321. padding:2px 2px 2px 0px;
  3322. box-sizing:border-box;
  3323. width:100%;
  3324. }
  3325. #u50972_text {
  3326. border-width:0px;
  3327. word-wrap:break-word;
  3328. text-transform:none;
  3329. visibility:hidden;
  3330. }
  3331. #u50973_img {
  3332. border-width:0px;
  3333. position:absolute;
  3334. left:0px;
  3335. top:0px;
  3336. width:143px;
  3337. height:40px;
  3338. }
  3339. #u50973 {
  3340. border-width:0px;
  3341. position:absolute;
  3342. left:51px;
  3343. top:280px;
  3344. width:143px;
  3345. height:40px;
  3346. display:flex;
  3347. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3348. font-weight:400;
  3349. font-style:normal;
  3350. font-size:12px;
  3351. color:#333333;
  3352. }
  3353. #u50973 .text {
  3354. position:absolute;
  3355. align-self:center;
  3356. padding:2px 2px 2px 0px;
  3357. box-sizing:border-box;
  3358. width:100%;
  3359. }
  3360. #u50973_text {
  3361. border-width:0px;
  3362. word-wrap:break-word;
  3363. text-transform:none;
  3364. visibility:hidden;
  3365. }
  3366. #u50974_img {
  3367. border-width:0px;
  3368. position:absolute;
  3369. left:0px;
  3370. top:0px;
  3371. width:129px;
  3372. height:40px;
  3373. }
  3374. #u50974 {
  3375. border-width:0px;
  3376. position:absolute;
  3377. left:194px;
  3378. top:280px;
  3379. width:129px;
  3380. height:40px;
  3381. display:flex;
  3382. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3383. font-weight:400;
  3384. font-style:normal;
  3385. font-size:12px;
  3386. color:#333333;
  3387. }
  3388. #u50974 .text {
  3389. position:absolute;
  3390. align-self:center;
  3391. padding:2px 2px 2px 0px;
  3392. box-sizing:border-box;
  3393. width:100%;
  3394. }
  3395. #u50974_text {
  3396. border-width:0px;
  3397. word-wrap:break-word;
  3398. text-transform:none;
  3399. visibility:hidden;
  3400. }
  3401. #u50975_img {
  3402. border-width:0px;
  3403. position:absolute;
  3404. left:0px;
  3405. top:0px;
  3406. width:159px;
  3407. height:40px;
  3408. }
  3409. #u50975 {
  3410. border-width:0px;
  3411. position:absolute;
  3412. left:323px;
  3413. top:280px;
  3414. width:159px;
  3415. height:40px;
  3416. display:flex;
  3417. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3418. font-weight:400;
  3419. font-style:normal;
  3420. font-size:12px;
  3421. color:#333333;
  3422. }
  3423. #u50975 .text {
  3424. position:absolute;
  3425. align-self:center;
  3426. padding:2px 2px 2px 0px;
  3427. box-sizing:border-box;
  3428. width:100%;
  3429. }
  3430. #u50975_text {
  3431. border-width:0px;
  3432. word-wrap:break-word;
  3433. text-transform:none;
  3434. visibility:hidden;
  3435. }
  3436. #u50976_img {
  3437. border-width:0px;
  3438. position:absolute;
  3439. left:0px;
  3440. top:0px;
  3441. width:159px;
  3442. height:40px;
  3443. }
  3444. #u50976 {
  3445. border-width:0px;
  3446. position:absolute;
  3447. left:482px;
  3448. top:280px;
  3449. width:159px;
  3450. height:40px;
  3451. display:flex;
  3452. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3453. font-weight:400;
  3454. font-style:normal;
  3455. font-size:12px;
  3456. color:#333333;
  3457. }
  3458. #u50976 .text {
  3459. position:absolute;
  3460. align-self:center;
  3461. padding:2px 2px 2px 0px;
  3462. box-sizing:border-box;
  3463. width:100%;
  3464. }
  3465. #u50976_text {
  3466. border-width:0px;
  3467. word-wrap:break-word;
  3468. text-transform:none;
  3469. visibility:hidden;
  3470. }
  3471. #u50977_img {
  3472. border-width:0px;
  3473. position:absolute;
  3474. left:0px;
  3475. top:0px;
  3476. width:159px;
  3477. height:40px;
  3478. }
  3479. #u50977 {
  3480. border-width:0px;
  3481. position:absolute;
  3482. left:641px;
  3483. top:280px;
  3484. width:159px;
  3485. height:40px;
  3486. display:flex;
  3487. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3488. font-weight:400;
  3489. font-style:normal;
  3490. font-size:12px;
  3491. color:#333333;
  3492. }
  3493. #u50977 .text {
  3494. position:absolute;
  3495. align-self:center;
  3496. padding:2px 2px 2px 0px;
  3497. box-sizing:border-box;
  3498. width:100%;
  3499. }
  3500. #u50977_text {
  3501. border-width:0px;
  3502. word-wrap:break-word;
  3503. text-transform:none;
  3504. visibility:hidden;
  3505. }
  3506. #u50978_img {
  3507. border-width:0px;
  3508. position:absolute;
  3509. left:0px;
  3510. top:0px;
  3511. width:143px;
  3512. height:40px;
  3513. }
  3514. #u50978 {
  3515. border-width:0px;
  3516. position:absolute;
  3517. left:800px;
  3518. top:280px;
  3519. width:143px;
  3520. height:40px;
  3521. display:flex;
  3522. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3523. font-weight:400;
  3524. font-style:normal;
  3525. font-size:12px;
  3526. color:#333333;
  3527. }
  3528. #u50978 .text {
  3529. position:absolute;
  3530. align-self:center;
  3531. padding:2px 2px 2px 0px;
  3532. box-sizing:border-box;
  3533. width:100%;
  3534. }
  3535. #u50978_text {
  3536. border-width:0px;
  3537. word-wrap:break-word;
  3538. text-transform:none;
  3539. visibility:hidden;
  3540. }
  3541. #u50979_img {
  3542. border-width:0px;
  3543. position:absolute;
  3544. left:0px;
  3545. top:0px;
  3546. width:144px;
  3547. height:40px;
  3548. }
  3549. #u50979 {
  3550. border-width:0px;
  3551. position:absolute;
  3552. left:943px;
  3553. top:280px;
  3554. width:144px;
  3555. height:40px;
  3556. display:flex;
  3557. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3558. font-weight:400;
  3559. font-style:normal;
  3560. font-size:12px;
  3561. color:#333333;
  3562. }
  3563. #u50979 .text {
  3564. position:absolute;
  3565. align-self:center;
  3566. padding:2px 2px 2px 0px;
  3567. box-sizing:border-box;
  3568. width:100%;
  3569. }
  3570. #u50979_text {
  3571. border-width:0px;
  3572. word-wrap:break-word;
  3573. text-transform:none;
  3574. visibility:hidden;
  3575. }
  3576. #u50980_img {
  3577. border-width:0px;
  3578. position:absolute;
  3579. left:0px;
  3580. top:0px;
  3581. width:51px;
  3582. height:40px;
  3583. }
  3584. #u50980 {
  3585. border-width:0px;
  3586. position:absolute;
  3587. left:0px;
  3588. top:320px;
  3589. width:51px;
  3590. height:40px;
  3591. display:flex;
  3592. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3593. font-weight:400;
  3594. font-style:normal;
  3595. font-size:12px;
  3596. color:#333333;
  3597. }
  3598. #u50980 .text {
  3599. position:absolute;
  3600. align-self:center;
  3601. padding:2px 2px 2px 0px;
  3602. box-sizing:border-box;
  3603. width:100%;
  3604. }
  3605. #u50980_text {
  3606. border-width:0px;
  3607. word-wrap:break-word;
  3608. text-transform:none;
  3609. visibility:hidden;
  3610. }
  3611. #u50981_img {
  3612. border-width:0px;
  3613. position:absolute;
  3614. left:0px;
  3615. top:0px;
  3616. width:143px;
  3617. height:40px;
  3618. }
  3619. #u50981 {
  3620. border-width:0px;
  3621. position:absolute;
  3622. left:51px;
  3623. top:320px;
  3624. width:143px;
  3625. height:40px;
  3626. display:flex;
  3627. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3628. font-weight:400;
  3629. font-style:normal;
  3630. font-size:12px;
  3631. color:#333333;
  3632. }
  3633. #u50981 .text {
  3634. position:absolute;
  3635. align-self:center;
  3636. padding:2px 2px 2px 0px;
  3637. box-sizing:border-box;
  3638. width:100%;
  3639. }
  3640. #u50981_text {
  3641. border-width:0px;
  3642. word-wrap:break-word;
  3643. text-transform:none;
  3644. visibility:hidden;
  3645. }
  3646. #u50982_img {
  3647. border-width:0px;
  3648. position:absolute;
  3649. left:0px;
  3650. top:0px;
  3651. width:129px;
  3652. height:40px;
  3653. }
  3654. #u50982 {
  3655. border-width:0px;
  3656. position:absolute;
  3657. left:194px;
  3658. top:320px;
  3659. width:129px;
  3660. height:40px;
  3661. display:flex;
  3662. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3663. font-weight:400;
  3664. font-style:normal;
  3665. font-size:12px;
  3666. color:#333333;
  3667. }
  3668. #u50982 .text {
  3669. position:absolute;
  3670. align-self:center;
  3671. padding:2px 2px 2px 0px;
  3672. box-sizing:border-box;
  3673. width:100%;
  3674. }
  3675. #u50982_text {
  3676. border-width:0px;
  3677. word-wrap:break-word;
  3678. text-transform:none;
  3679. visibility:hidden;
  3680. }
  3681. #u50983_img {
  3682. border-width:0px;
  3683. position:absolute;
  3684. left:0px;
  3685. top:0px;
  3686. width:159px;
  3687. height:40px;
  3688. }
  3689. #u50983 {
  3690. border-width:0px;
  3691. position:absolute;
  3692. left:323px;
  3693. top:320px;
  3694. width:159px;
  3695. height:40px;
  3696. display:flex;
  3697. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3698. font-weight:400;
  3699. font-style:normal;
  3700. font-size:12px;
  3701. color:#333333;
  3702. }
  3703. #u50983 .text {
  3704. position:absolute;
  3705. align-self:center;
  3706. padding:2px 2px 2px 0px;
  3707. box-sizing:border-box;
  3708. width:100%;
  3709. }
  3710. #u50983_text {
  3711. border-width:0px;
  3712. word-wrap:break-word;
  3713. text-transform:none;
  3714. visibility:hidden;
  3715. }
  3716. #u50984_img {
  3717. border-width:0px;
  3718. position:absolute;
  3719. left:0px;
  3720. top:0px;
  3721. width:159px;
  3722. height:40px;
  3723. }
  3724. #u50984 {
  3725. border-width:0px;
  3726. position:absolute;
  3727. left:482px;
  3728. top:320px;
  3729. width:159px;
  3730. height:40px;
  3731. display:flex;
  3732. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3733. font-weight:400;
  3734. font-style:normal;
  3735. font-size:12px;
  3736. color:#333333;
  3737. }
  3738. #u50984 .text {
  3739. position:absolute;
  3740. align-self:center;
  3741. padding:2px 2px 2px 0px;
  3742. box-sizing:border-box;
  3743. width:100%;
  3744. }
  3745. #u50984_text {
  3746. border-width:0px;
  3747. word-wrap:break-word;
  3748. text-transform:none;
  3749. visibility:hidden;
  3750. }
  3751. #u50985_img {
  3752. border-width:0px;
  3753. position:absolute;
  3754. left:0px;
  3755. top:0px;
  3756. width:159px;
  3757. height:40px;
  3758. }
  3759. #u50985 {
  3760. border-width:0px;
  3761. position:absolute;
  3762. left:641px;
  3763. top:320px;
  3764. width:159px;
  3765. height:40px;
  3766. display:flex;
  3767. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3768. font-weight:400;
  3769. font-style:normal;
  3770. font-size:12px;
  3771. color:#333333;
  3772. }
  3773. #u50985 .text {
  3774. position:absolute;
  3775. align-self:center;
  3776. padding:2px 2px 2px 0px;
  3777. box-sizing:border-box;
  3778. width:100%;
  3779. }
  3780. #u50985_text {
  3781. border-width:0px;
  3782. word-wrap:break-word;
  3783. text-transform:none;
  3784. visibility:hidden;
  3785. }
  3786. #u50986_img {
  3787. border-width:0px;
  3788. position:absolute;
  3789. left:0px;
  3790. top:0px;
  3791. width:143px;
  3792. height:40px;
  3793. }
  3794. #u50986 {
  3795. border-width:0px;
  3796. position:absolute;
  3797. left:800px;
  3798. top:320px;
  3799. width:143px;
  3800. height:40px;
  3801. display:flex;
  3802. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3803. font-weight:400;
  3804. font-style:normal;
  3805. font-size:12px;
  3806. color:#333333;
  3807. }
  3808. #u50986 .text {
  3809. position:absolute;
  3810. align-self:center;
  3811. padding:2px 2px 2px 0px;
  3812. box-sizing:border-box;
  3813. width:100%;
  3814. }
  3815. #u50986_text {
  3816. border-width:0px;
  3817. word-wrap:break-word;
  3818. text-transform:none;
  3819. visibility:hidden;
  3820. }
  3821. #u50987_img {
  3822. border-width:0px;
  3823. position:absolute;
  3824. left:0px;
  3825. top:0px;
  3826. width:144px;
  3827. height:40px;
  3828. }
  3829. #u50987 {
  3830. border-width:0px;
  3831. position:absolute;
  3832. left:943px;
  3833. top:320px;
  3834. width:144px;
  3835. height:40px;
  3836. display:flex;
  3837. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3838. font-weight:400;
  3839. font-style:normal;
  3840. font-size:12px;
  3841. color:#333333;
  3842. }
  3843. #u50987 .text {
  3844. position:absolute;
  3845. align-self:center;
  3846. padding:2px 2px 2px 0px;
  3847. box-sizing:border-box;
  3848. width:100%;
  3849. }
  3850. #u50987_text {
  3851. border-width:0px;
  3852. word-wrap:break-word;
  3853. text-transform:none;
  3854. visibility:hidden;
  3855. }
  3856. #u50988_img {
  3857. border-width:0px;
  3858. position:absolute;
  3859. left:0px;
  3860. top:0px;
  3861. width:51px;
  3862. height:40px;
  3863. }
  3864. #u50988 {
  3865. border-width:0px;
  3866. position:absolute;
  3867. left:0px;
  3868. top:360px;
  3869. width:51px;
  3870. height:40px;
  3871. display:flex;
  3872. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3873. font-weight:400;
  3874. font-style:normal;
  3875. font-size:12px;
  3876. color:#333333;
  3877. }
  3878. #u50988 .text {
  3879. position:absolute;
  3880. align-self:center;
  3881. padding:2px 2px 2px 0px;
  3882. box-sizing:border-box;
  3883. width:100%;
  3884. }
  3885. #u50988_text {
  3886. border-width:0px;
  3887. word-wrap:break-word;
  3888. text-transform:none;
  3889. visibility:hidden;
  3890. }
  3891. #u50989_img {
  3892. border-width:0px;
  3893. position:absolute;
  3894. left:0px;
  3895. top:0px;
  3896. width:143px;
  3897. height:40px;
  3898. }
  3899. #u50989 {
  3900. border-width:0px;
  3901. position:absolute;
  3902. left:51px;
  3903. top:360px;
  3904. width:143px;
  3905. height:40px;
  3906. display:flex;
  3907. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3908. font-weight:400;
  3909. font-style:normal;
  3910. font-size:12px;
  3911. color:#333333;
  3912. }
  3913. #u50989 .text {
  3914. position:absolute;
  3915. align-self:center;
  3916. padding:2px 2px 2px 0px;
  3917. box-sizing:border-box;
  3918. width:100%;
  3919. }
  3920. #u50989_text {
  3921. border-width:0px;
  3922. word-wrap:break-word;
  3923. text-transform:none;
  3924. visibility:hidden;
  3925. }
  3926. #u50990_img {
  3927. border-width:0px;
  3928. position:absolute;
  3929. left:0px;
  3930. top:0px;
  3931. width:129px;
  3932. height:40px;
  3933. }
  3934. #u50990 {
  3935. border-width:0px;
  3936. position:absolute;
  3937. left:194px;
  3938. top:360px;
  3939. width:129px;
  3940. height:40px;
  3941. display:flex;
  3942. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3943. font-weight:400;
  3944. font-style:normal;
  3945. font-size:12px;
  3946. color:#333333;
  3947. }
  3948. #u50990 .text {
  3949. position:absolute;
  3950. align-self:center;
  3951. padding:2px 2px 2px 0px;
  3952. box-sizing:border-box;
  3953. width:100%;
  3954. }
  3955. #u50990_text {
  3956. border-width:0px;
  3957. word-wrap:break-word;
  3958. text-transform:none;
  3959. visibility:hidden;
  3960. }
  3961. #u50991_img {
  3962. border-width:0px;
  3963. position:absolute;
  3964. left:0px;
  3965. top:0px;
  3966. width:159px;
  3967. height:40px;
  3968. }
  3969. #u50991 {
  3970. border-width:0px;
  3971. position:absolute;
  3972. left:323px;
  3973. top:360px;
  3974. width:159px;
  3975. height:40px;
  3976. display:flex;
  3977. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3978. font-weight:400;
  3979. font-style:normal;
  3980. font-size:12px;
  3981. color:#333333;
  3982. }
  3983. #u50991 .text {
  3984. position:absolute;
  3985. align-self:center;
  3986. padding:2px 2px 2px 0px;
  3987. box-sizing:border-box;
  3988. width:100%;
  3989. }
  3990. #u50991_text {
  3991. border-width:0px;
  3992. word-wrap:break-word;
  3993. text-transform:none;
  3994. visibility:hidden;
  3995. }
  3996. #u50992_img {
  3997. border-width:0px;
  3998. position:absolute;
  3999. left:0px;
  4000. top:0px;
  4001. width:159px;
  4002. height:40px;
  4003. }
  4004. #u50992 {
  4005. border-width:0px;
  4006. position:absolute;
  4007. left:482px;
  4008. top:360px;
  4009. width:159px;
  4010. height:40px;
  4011. display:flex;
  4012. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4013. font-weight:400;
  4014. font-style:normal;
  4015. font-size:12px;
  4016. color:#333333;
  4017. }
  4018. #u50992 .text {
  4019. position:absolute;
  4020. align-self:center;
  4021. padding:2px 2px 2px 0px;
  4022. box-sizing:border-box;
  4023. width:100%;
  4024. }
  4025. #u50992_text {
  4026. border-width:0px;
  4027. word-wrap:break-word;
  4028. text-transform:none;
  4029. visibility:hidden;
  4030. }
  4031. #u50993_img {
  4032. border-width:0px;
  4033. position:absolute;
  4034. left:0px;
  4035. top:0px;
  4036. width:159px;
  4037. height:40px;
  4038. }
  4039. #u50993 {
  4040. border-width:0px;
  4041. position:absolute;
  4042. left:641px;
  4043. top:360px;
  4044. width:159px;
  4045. height:40px;
  4046. display:flex;
  4047. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4048. font-weight:400;
  4049. font-style:normal;
  4050. font-size:12px;
  4051. color:#333333;
  4052. }
  4053. #u50993 .text {
  4054. position:absolute;
  4055. align-self:center;
  4056. padding:2px 2px 2px 0px;
  4057. box-sizing:border-box;
  4058. width:100%;
  4059. }
  4060. #u50993_text {
  4061. border-width:0px;
  4062. word-wrap:break-word;
  4063. text-transform:none;
  4064. visibility:hidden;
  4065. }
  4066. #u50994_img {
  4067. border-width:0px;
  4068. position:absolute;
  4069. left:0px;
  4070. top:0px;
  4071. width:143px;
  4072. height:40px;
  4073. }
  4074. #u50994 {
  4075. border-width:0px;
  4076. position:absolute;
  4077. left:800px;
  4078. top:360px;
  4079. width:143px;
  4080. height:40px;
  4081. display:flex;
  4082. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4083. font-weight:400;
  4084. font-style:normal;
  4085. font-size:12px;
  4086. color:#333333;
  4087. }
  4088. #u50994 .text {
  4089. position:absolute;
  4090. align-self:center;
  4091. padding:2px 2px 2px 0px;
  4092. box-sizing:border-box;
  4093. width:100%;
  4094. }
  4095. #u50994_text {
  4096. border-width:0px;
  4097. word-wrap:break-word;
  4098. text-transform:none;
  4099. visibility:hidden;
  4100. }
  4101. #u50995_img {
  4102. border-width:0px;
  4103. position:absolute;
  4104. left:0px;
  4105. top:0px;
  4106. width:144px;
  4107. height:40px;
  4108. }
  4109. #u50995 {
  4110. border-width:0px;
  4111. position:absolute;
  4112. left:943px;
  4113. top:360px;
  4114. width:144px;
  4115. height:40px;
  4116. display:flex;
  4117. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4118. font-weight:400;
  4119. font-style:normal;
  4120. font-size:12px;
  4121. color:#333333;
  4122. }
  4123. #u50995 .text {
  4124. position:absolute;
  4125. align-self:center;
  4126. padding:2px 2px 2px 0px;
  4127. box-sizing:border-box;
  4128. width:100%;
  4129. }
  4130. #u50995_text {
  4131. border-width:0px;
  4132. word-wrap:break-word;
  4133. text-transform:none;
  4134. visibility:hidden;
  4135. }
  4136. #u50996_img {
  4137. border-width:0px;
  4138. position:absolute;
  4139. left:0px;
  4140. top:0px;
  4141. width:51px;
  4142. height:40px;
  4143. }
  4144. #u50996 {
  4145. border-width:0px;
  4146. position:absolute;
  4147. left:0px;
  4148. top:400px;
  4149. width:51px;
  4150. height:40px;
  4151. display:flex;
  4152. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4153. font-weight:400;
  4154. font-style:normal;
  4155. font-size:12px;
  4156. color:#333333;
  4157. }
  4158. #u50996 .text {
  4159. position:absolute;
  4160. align-self:center;
  4161. padding:2px 2px 2px 0px;
  4162. box-sizing:border-box;
  4163. width:100%;
  4164. }
  4165. #u50996_text {
  4166. border-width:0px;
  4167. word-wrap:break-word;
  4168. text-transform:none;
  4169. visibility:hidden;
  4170. }
  4171. #u50997_img {
  4172. border-width:0px;
  4173. position:absolute;
  4174. left:0px;
  4175. top:0px;
  4176. width:143px;
  4177. height:40px;
  4178. }
  4179. #u50997 {
  4180. border-width:0px;
  4181. position:absolute;
  4182. left:51px;
  4183. top:400px;
  4184. width:143px;
  4185. height:40px;
  4186. display:flex;
  4187. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4188. font-weight:400;
  4189. font-style:normal;
  4190. font-size:12px;
  4191. color:#333333;
  4192. }
  4193. #u50997 .text {
  4194. position:absolute;
  4195. align-self:center;
  4196. padding:2px 2px 2px 0px;
  4197. box-sizing:border-box;
  4198. width:100%;
  4199. }
  4200. #u50997_text {
  4201. border-width:0px;
  4202. word-wrap:break-word;
  4203. text-transform:none;
  4204. visibility:hidden;
  4205. }
  4206. #u50998_img {
  4207. border-width:0px;
  4208. position:absolute;
  4209. left:0px;
  4210. top:0px;
  4211. width:129px;
  4212. height:40px;
  4213. }
  4214. #u50998 {
  4215. border-width:0px;
  4216. position:absolute;
  4217. left:194px;
  4218. top:400px;
  4219. width:129px;
  4220. height:40px;
  4221. display:flex;
  4222. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4223. font-weight:400;
  4224. font-style:normal;
  4225. font-size:12px;
  4226. color:#333333;
  4227. }
  4228. #u50998 .text {
  4229. position:absolute;
  4230. align-self:center;
  4231. padding:2px 2px 2px 0px;
  4232. box-sizing:border-box;
  4233. width:100%;
  4234. }
  4235. #u50998_text {
  4236. border-width:0px;
  4237. word-wrap:break-word;
  4238. text-transform:none;
  4239. visibility:hidden;
  4240. }
  4241. #u50999_img {
  4242. border-width:0px;
  4243. position:absolute;
  4244. left:0px;
  4245. top:0px;
  4246. width:159px;
  4247. height:40px;
  4248. }
  4249. #u50999 {
  4250. border-width:0px;
  4251. position:absolute;
  4252. left:323px;
  4253. top:400px;
  4254. width:159px;
  4255. height:40px;
  4256. display:flex;
  4257. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4258. font-weight:400;
  4259. font-style:normal;
  4260. font-size:12px;
  4261. color:#333333;
  4262. }
  4263. #u50999 .text {
  4264. position:absolute;
  4265. align-self:center;
  4266. padding:2px 2px 2px 0px;
  4267. box-sizing:border-box;
  4268. width:100%;
  4269. }
  4270. #u50999_text {
  4271. border-width:0px;
  4272. word-wrap:break-word;
  4273. text-transform:none;
  4274. visibility:hidden;
  4275. }
  4276. #u51000_img {
  4277. border-width:0px;
  4278. position:absolute;
  4279. left:0px;
  4280. top:0px;
  4281. width:159px;
  4282. height:40px;
  4283. }
  4284. #u51000 {
  4285. border-width:0px;
  4286. position:absolute;
  4287. left:482px;
  4288. top:400px;
  4289. width:159px;
  4290. height:40px;
  4291. display:flex;
  4292. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4293. font-weight:400;
  4294. font-style:normal;
  4295. font-size:12px;
  4296. color:#333333;
  4297. }
  4298. #u51000 .text {
  4299. position:absolute;
  4300. align-self:center;
  4301. padding:2px 2px 2px 0px;
  4302. box-sizing:border-box;
  4303. width:100%;
  4304. }
  4305. #u51000_text {
  4306. border-width:0px;
  4307. word-wrap:break-word;
  4308. text-transform:none;
  4309. visibility:hidden;
  4310. }
  4311. #u51001_img {
  4312. border-width:0px;
  4313. position:absolute;
  4314. left:0px;
  4315. top:0px;
  4316. width:159px;
  4317. height:40px;
  4318. }
  4319. #u51001 {
  4320. border-width:0px;
  4321. position:absolute;
  4322. left:641px;
  4323. top:400px;
  4324. width:159px;
  4325. height:40px;
  4326. display:flex;
  4327. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4328. font-weight:400;
  4329. font-style:normal;
  4330. font-size:12px;
  4331. color:#333333;
  4332. }
  4333. #u51001 .text {
  4334. position:absolute;
  4335. align-self:center;
  4336. padding:2px 2px 2px 0px;
  4337. box-sizing:border-box;
  4338. width:100%;
  4339. }
  4340. #u51001_text {
  4341. border-width:0px;
  4342. word-wrap:break-word;
  4343. text-transform:none;
  4344. visibility:hidden;
  4345. }
  4346. #u51002_img {
  4347. border-width:0px;
  4348. position:absolute;
  4349. left:0px;
  4350. top:0px;
  4351. width:143px;
  4352. height:40px;
  4353. }
  4354. #u51002 {
  4355. border-width:0px;
  4356. position:absolute;
  4357. left:800px;
  4358. top:400px;
  4359. width:143px;
  4360. height:40px;
  4361. display:flex;
  4362. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4363. font-weight:400;
  4364. font-style:normal;
  4365. font-size:12px;
  4366. color:#333333;
  4367. }
  4368. #u51002 .text {
  4369. position:absolute;
  4370. align-self:center;
  4371. padding:2px 2px 2px 0px;
  4372. box-sizing:border-box;
  4373. width:100%;
  4374. }
  4375. #u51002_text {
  4376. border-width:0px;
  4377. word-wrap:break-word;
  4378. text-transform:none;
  4379. visibility:hidden;
  4380. }
  4381. #u51003_img {
  4382. border-width:0px;
  4383. position:absolute;
  4384. left:0px;
  4385. top:0px;
  4386. width:144px;
  4387. height:40px;
  4388. }
  4389. #u51003 {
  4390. border-width:0px;
  4391. position:absolute;
  4392. left:943px;
  4393. top:400px;
  4394. width:144px;
  4395. height:40px;
  4396. display:flex;
  4397. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4398. font-weight:400;
  4399. font-style:normal;
  4400. font-size:12px;
  4401. color:#333333;
  4402. }
  4403. #u51003 .text {
  4404. position:absolute;
  4405. align-self:center;
  4406. padding:2px 2px 2px 0px;
  4407. box-sizing:border-box;
  4408. width:100%;
  4409. }
  4410. #u51003_text {
  4411. border-width:0px;
  4412. word-wrap:break-word;
  4413. text-transform:none;
  4414. visibility:hidden;
  4415. }
  4416. #u51004_img {
  4417. border-width:0px;
  4418. position:absolute;
  4419. left:0px;
  4420. top:0px;
  4421. width:51px;
  4422. height:40px;
  4423. }
  4424. #u51004 {
  4425. border-width:0px;
  4426. position:absolute;
  4427. left:0px;
  4428. top:440px;
  4429. width:51px;
  4430. height:40px;
  4431. display:flex;
  4432. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4433. font-weight:400;
  4434. font-style:normal;
  4435. font-size:12px;
  4436. color:#333333;
  4437. }
  4438. #u51004 .text {
  4439. position:absolute;
  4440. align-self:center;
  4441. padding:2px 2px 2px 0px;
  4442. box-sizing:border-box;
  4443. width:100%;
  4444. }
  4445. #u51004_text {
  4446. border-width:0px;
  4447. word-wrap:break-word;
  4448. text-transform:none;
  4449. visibility:hidden;
  4450. }
  4451. #u51005_img {
  4452. border-width:0px;
  4453. position:absolute;
  4454. left:0px;
  4455. top:0px;
  4456. width:143px;
  4457. height:40px;
  4458. }
  4459. #u51005 {
  4460. border-width:0px;
  4461. position:absolute;
  4462. left:51px;
  4463. top:440px;
  4464. width:143px;
  4465. height:40px;
  4466. display:flex;
  4467. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4468. font-weight:400;
  4469. font-style:normal;
  4470. font-size:12px;
  4471. color:#333333;
  4472. }
  4473. #u51005 .text {
  4474. position:absolute;
  4475. align-self:center;
  4476. padding:2px 2px 2px 0px;
  4477. box-sizing:border-box;
  4478. width:100%;
  4479. }
  4480. #u51005_text {
  4481. border-width:0px;
  4482. word-wrap:break-word;
  4483. text-transform:none;
  4484. visibility:hidden;
  4485. }
  4486. #u51006_img {
  4487. border-width:0px;
  4488. position:absolute;
  4489. left:0px;
  4490. top:0px;
  4491. width:129px;
  4492. height:40px;
  4493. }
  4494. #u51006 {
  4495. border-width:0px;
  4496. position:absolute;
  4497. left:194px;
  4498. top:440px;
  4499. width:129px;
  4500. height:40px;
  4501. display:flex;
  4502. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4503. font-weight:400;
  4504. font-style:normal;
  4505. font-size:12px;
  4506. color:#333333;
  4507. }
  4508. #u51006 .text {
  4509. position:absolute;
  4510. align-self:center;
  4511. padding:2px 2px 2px 0px;
  4512. box-sizing:border-box;
  4513. width:100%;
  4514. }
  4515. #u51006_text {
  4516. border-width:0px;
  4517. word-wrap:break-word;
  4518. text-transform:none;
  4519. visibility:hidden;
  4520. }
  4521. #u51007_img {
  4522. border-width:0px;
  4523. position:absolute;
  4524. left:0px;
  4525. top:0px;
  4526. width:159px;
  4527. height:40px;
  4528. }
  4529. #u51007 {
  4530. border-width:0px;
  4531. position:absolute;
  4532. left:323px;
  4533. top:440px;
  4534. width:159px;
  4535. height:40px;
  4536. display:flex;
  4537. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4538. font-weight:400;
  4539. font-style:normal;
  4540. font-size:12px;
  4541. color:#333333;
  4542. }
  4543. #u51007 .text {
  4544. position:absolute;
  4545. align-self:center;
  4546. padding:2px 2px 2px 0px;
  4547. box-sizing:border-box;
  4548. width:100%;
  4549. }
  4550. #u51007_text {
  4551. border-width:0px;
  4552. word-wrap:break-word;
  4553. text-transform:none;
  4554. visibility:hidden;
  4555. }
  4556. #u51008_img {
  4557. border-width:0px;
  4558. position:absolute;
  4559. left:0px;
  4560. top:0px;
  4561. width:159px;
  4562. height:40px;
  4563. }
  4564. #u51008 {
  4565. border-width:0px;
  4566. position:absolute;
  4567. left:482px;
  4568. top:440px;
  4569. width:159px;
  4570. height:40px;
  4571. display:flex;
  4572. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4573. font-weight:400;
  4574. font-style:normal;
  4575. font-size:12px;
  4576. color:#333333;
  4577. }
  4578. #u51008 .text {
  4579. position:absolute;
  4580. align-self:center;
  4581. padding:2px 2px 2px 0px;
  4582. box-sizing:border-box;
  4583. width:100%;
  4584. }
  4585. #u51008_text {
  4586. border-width:0px;
  4587. word-wrap:break-word;
  4588. text-transform:none;
  4589. visibility:hidden;
  4590. }
  4591. #u51009_img {
  4592. border-width:0px;
  4593. position:absolute;
  4594. left:0px;
  4595. top:0px;
  4596. width:159px;
  4597. height:40px;
  4598. }
  4599. #u51009 {
  4600. border-width:0px;
  4601. position:absolute;
  4602. left:641px;
  4603. top:440px;
  4604. width:159px;
  4605. height:40px;
  4606. display:flex;
  4607. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4608. font-weight:400;
  4609. font-style:normal;
  4610. font-size:12px;
  4611. color:#333333;
  4612. }
  4613. #u51009 .text {
  4614. position:absolute;
  4615. align-self:center;
  4616. padding:2px 2px 2px 0px;
  4617. box-sizing:border-box;
  4618. width:100%;
  4619. }
  4620. #u51009_text {
  4621. border-width:0px;
  4622. word-wrap:break-word;
  4623. text-transform:none;
  4624. visibility:hidden;
  4625. }
  4626. #u51010_img {
  4627. border-width:0px;
  4628. position:absolute;
  4629. left:0px;
  4630. top:0px;
  4631. width:143px;
  4632. height:40px;
  4633. }
  4634. #u51010 {
  4635. border-width:0px;
  4636. position:absolute;
  4637. left:800px;
  4638. top:440px;
  4639. width:143px;
  4640. height:40px;
  4641. display:flex;
  4642. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4643. font-weight:400;
  4644. font-style:normal;
  4645. font-size:12px;
  4646. color:#333333;
  4647. }
  4648. #u51010 .text {
  4649. position:absolute;
  4650. align-self:center;
  4651. padding:2px 2px 2px 0px;
  4652. box-sizing:border-box;
  4653. width:100%;
  4654. }
  4655. #u51010_text {
  4656. border-width:0px;
  4657. word-wrap:break-word;
  4658. text-transform:none;
  4659. visibility:hidden;
  4660. }
  4661. #u51011_img {
  4662. border-width:0px;
  4663. position:absolute;
  4664. left:0px;
  4665. top:0px;
  4666. width:144px;
  4667. height:40px;
  4668. }
  4669. #u51011 {
  4670. border-width:0px;
  4671. position:absolute;
  4672. left:943px;
  4673. top:440px;
  4674. width:144px;
  4675. height:40px;
  4676. display:flex;
  4677. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4678. font-weight:400;
  4679. font-style:normal;
  4680. font-size:12px;
  4681. color:#333333;
  4682. }
  4683. #u51011 .text {
  4684. position:absolute;
  4685. align-self:center;
  4686. padding:2px 2px 2px 0px;
  4687. box-sizing:border-box;
  4688. width:100%;
  4689. }
  4690. #u51011_text {
  4691. border-width:0px;
  4692. word-wrap:break-word;
  4693. text-transform:none;
  4694. visibility:hidden;
  4695. }
  4696. #u51012_img {
  4697. border-width:0px;
  4698. position:absolute;
  4699. left:0px;
  4700. top:0px;
  4701. width:51px;
  4702. height:40px;
  4703. }
  4704. #u51012 {
  4705. border-width:0px;
  4706. position:absolute;
  4707. left:0px;
  4708. top:480px;
  4709. width:51px;
  4710. height:40px;
  4711. display:flex;
  4712. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4713. font-weight:400;
  4714. font-style:normal;
  4715. font-size:12px;
  4716. color:#333333;
  4717. }
  4718. #u51012 .text {
  4719. position:absolute;
  4720. align-self:center;
  4721. padding:2px 2px 2px 0px;
  4722. box-sizing:border-box;
  4723. width:100%;
  4724. }
  4725. #u51012_text {
  4726. border-width:0px;
  4727. word-wrap:break-word;
  4728. text-transform:none;
  4729. visibility:hidden;
  4730. }
  4731. #u51013_img {
  4732. border-width:0px;
  4733. position:absolute;
  4734. left:0px;
  4735. top:0px;
  4736. width:143px;
  4737. height:40px;
  4738. }
  4739. #u51013 {
  4740. border-width:0px;
  4741. position:absolute;
  4742. left:51px;
  4743. top:480px;
  4744. width:143px;
  4745. height:40px;
  4746. display:flex;
  4747. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4748. font-weight:400;
  4749. font-style:normal;
  4750. font-size:12px;
  4751. color:#333333;
  4752. }
  4753. #u51013 .text {
  4754. position:absolute;
  4755. align-self:center;
  4756. padding:2px 2px 2px 0px;
  4757. box-sizing:border-box;
  4758. width:100%;
  4759. }
  4760. #u51013_text {
  4761. border-width:0px;
  4762. word-wrap:break-word;
  4763. text-transform:none;
  4764. visibility:hidden;
  4765. }
  4766. #u51014_img {
  4767. border-width:0px;
  4768. position:absolute;
  4769. left:0px;
  4770. top:0px;
  4771. width:129px;
  4772. height:40px;
  4773. }
  4774. #u51014 {
  4775. border-width:0px;
  4776. position:absolute;
  4777. left:194px;
  4778. top:480px;
  4779. width:129px;
  4780. height:40px;
  4781. display:flex;
  4782. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4783. font-weight:400;
  4784. font-style:normal;
  4785. font-size:12px;
  4786. color:#333333;
  4787. }
  4788. #u51014 .text {
  4789. position:absolute;
  4790. align-self:center;
  4791. padding:2px 2px 2px 0px;
  4792. box-sizing:border-box;
  4793. width:100%;
  4794. }
  4795. #u51014_text {
  4796. border-width:0px;
  4797. word-wrap:break-word;
  4798. text-transform:none;
  4799. visibility:hidden;
  4800. }
  4801. #u51015_img {
  4802. border-width:0px;
  4803. position:absolute;
  4804. left:0px;
  4805. top:0px;
  4806. width:159px;
  4807. height:40px;
  4808. }
  4809. #u51015 {
  4810. border-width:0px;
  4811. position:absolute;
  4812. left:323px;
  4813. top:480px;
  4814. width:159px;
  4815. height:40px;
  4816. display:flex;
  4817. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4818. font-weight:400;
  4819. font-style:normal;
  4820. font-size:12px;
  4821. color:#333333;
  4822. }
  4823. #u51015 .text {
  4824. position:absolute;
  4825. align-self:center;
  4826. padding:2px 2px 2px 0px;
  4827. box-sizing:border-box;
  4828. width:100%;
  4829. }
  4830. #u51015_text {
  4831. border-width:0px;
  4832. word-wrap:break-word;
  4833. text-transform:none;
  4834. visibility:hidden;
  4835. }
  4836. #u51016_img {
  4837. border-width:0px;
  4838. position:absolute;
  4839. left:0px;
  4840. top:0px;
  4841. width:159px;
  4842. height:40px;
  4843. }
  4844. #u51016 {
  4845. border-width:0px;
  4846. position:absolute;
  4847. left:482px;
  4848. top:480px;
  4849. width:159px;
  4850. height:40px;
  4851. display:flex;
  4852. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4853. font-weight:400;
  4854. font-style:normal;
  4855. font-size:12px;
  4856. color:#333333;
  4857. }
  4858. #u51016 .text {
  4859. position:absolute;
  4860. align-self:center;
  4861. padding:2px 2px 2px 0px;
  4862. box-sizing:border-box;
  4863. width:100%;
  4864. }
  4865. #u51016_text {
  4866. border-width:0px;
  4867. word-wrap:break-word;
  4868. text-transform:none;
  4869. visibility:hidden;
  4870. }
  4871. #u51017_img {
  4872. border-width:0px;
  4873. position:absolute;
  4874. left:0px;
  4875. top:0px;
  4876. width:159px;
  4877. height:40px;
  4878. }
  4879. #u51017 {
  4880. border-width:0px;
  4881. position:absolute;
  4882. left:641px;
  4883. top:480px;
  4884. width:159px;
  4885. height:40px;
  4886. display:flex;
  4887. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4888. font-weight:400;
  4889. font-style:normal;
  4890. font-size:12px;
  4891. color:#333333;
  4892. }
  4893. #u51017 .text {
  4894. position:absolute;
  4895. align-self:center;
  4896. padding:2px 2px 2px 0px;
  4897. box-sizing:border-box;
  4898. width:100%;
  4899. }
  4900. #u51017_text {
  4901. border-width:0px;
  4902. word-wrap:break-word;
  4903. text-transform:none;
  4904. visibility:hidden;
  4905. }
  4906. #u51018_img {
  4907. border-width:0px;
  4908. position:absolute;
  4909. left:0px;
  4910. top:0px;
  4911. width:143px;
  4912. height:40px;
  4913. }
  4914. #u51018 {
  4915. border-width:0px;
  4916. position:absolute;
  4917. left:800px;
  4918. top:480px;
  4919. width:143px;
  4920. height:40px;
  4921. display:flex;
  4922. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4923. font-weight:400;
  4924. font-style:normal;
  4925. font-size:12px;
  4926. color:#333333;
  4927. }
  4928. #u51018 .text {
  4929. position:absolute;
  4930. align-self:center;
  4931. padding:2px 2px 2px 0px;
  4932. box-sizing:border-box;
  4933. width:100%;
  4934. }
  4935. #u51018_text {
  4936. border-width:0px;
  4937. word-wrap:break-word;
  4938. text-transform:none;
  4939. visibility:hidden;
  4940. }
  4941. #u51019_img {
  4942. border-width:0px;
  4943. position:absolute;
  4944. left:0px;
  4945. top:0px;
  4946. width:144px;
  4947. height:40px;
  4948. }
  4949. #u51019 {
  4950. border-width:0px;
  4951. position:absolute;
  4952. left:943px;
  4953. top:480px;
  4954. width:144px;
  4955. height:40px;
  4956. display:flex;
  4957. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4958. font-weight:400;
  4959. font-style:normal;
  4960. font-size:12px;
  4961. color:#333333;
  4962. }
  4963. #u51019 .text {
  4964. position:absolute;
  4965. align-self:center;
  4966. padding:2px 2px 2px 0px;
  4967. box-sizing:border-box;
  4968. width:100%;
  4969. }
  4970. #u51019_text {
  4971. border-width:0px;
  4972. word-wrap:break-word;
  4973. text-transform:none;
  4974. visibility:hidden;
  4975. }
  4976. #u51020_div {
  4977. border-width:0px;
  4978. position:absolute;
  4979. left:0px;
  4980. top:0px;
  4981. width:43px;
  4982. height:30px;
  4983. background:inherit;
  4984. background-color:rgba(255, 255, 255, 0);
  4985. border:none;
  4986. border-top:0px;
  4987. border-right:0px;
  4988. border-bottom:0px;
  4989. border-radius:0px;
  4990. border-top-left-radius:0px;
  4991. border-bottom-left-radius:0px;
  4992. -moz-box-shadow:none;
  4993. -webkit-box-shadow:none;
  4994. box-shadow:none;
  4995. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4996. font-weight:400;
  4997. font-style:normal;
  4998. font-size:14px;
  4999. text-align:right;
  5000. }
  5001. #u51020 {
  5002. border-width:0px;
  5003. position:absolute;
  5004. left:823px;
  5005. top:168px;
  5006. width:43px;
  5007. height:30px;
  5008. display:flex;
  5009. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5010. font-weight:400;
  5011. font-style:normal;
  5012. font-size:14px;
  5013. text-align:right;
  5014. }
  5015. #u51020 .text {
  5016. position:absolute;
  5017. align-self:center;
  5018. padding:5px 0px 5px 0px;
  5019. box-sizing:border-box;
  5020. width:100%;
  5021. }
  5022. #u51020_text {
  5023. border-width:0px;
  5024. white-space:nowrap;
  5025. text-transform:none;
  5026. }
  5027. #u51021 {
  5028. border-width:0px;
  5029. position:absolute;
  5030. left:0px;
  5031. top:0px;
  5032. width:0px;
  5033. height:0px;
  5034. }
  5035. #u51022_div {
  5036. border-width:0px;
  5037. position:absolute;
  5038. left:0px;
  5039. top:0px;
  5040. width:140px;
  5041. height:30px;
  5042. background:inherit;
  5043. background-color:rgba(255, 255, 255, 1);
  5044. box-sizing:border-box;
  5045. border-width:1px;
  5046. border-style:solid;
  5047. border-color:rgba(170, 170, 170, 1);
  5048. border-radius:4px;
  5049. -moz-box-shadow:none;
  5050. -webkit-box-shadow:none;
  5051. box-shadow:none;
  5052. }
  5053. #u51022 {
  5054. border-width:0px;
  5055. position:absolute;
  5056. left:884px;
  5057. top:168px;
  5058. width:140px;
  5059. height:30px;
  5060. display:flex;
  5061. }
  5062. #u51022 .text {
  5063. position:absolute;
  5064. align-self:center;
  5065. padding:2px 2px 2px 0px;
  5066. box-sizing:border-box;
  5067. width:100%;
  5068. }
  5069. #u51022_text {
  5070. border-width:0px;
  5071. word-wrap:break-word;
  5072. text-transform:none;
  5073. visibility:hidden;
  5074. }
  5075. #u51023_input {
  5076. position:absolute;
  5077. left:0px;
  5078. top:0px;
  5079. width:133px;
  5080. height:23px;
  5081. padding:2px 2px 2px 0px;
  5082. font-family:'ArialMT', 'Arial', sans-serif;
  5083. font-weight:400;
  5084. font-style:normal;
  5085. font-size:13px;
  5086. letter-spacing:normal;
  5087. color:#AAAAAA;
  5088. vertical-align:none;
  5089. text-align:left;
  5090. text-transform:none;
  5091. background-color:transparent;
  5092. border-color:transparent;
  5093. }
  5094. #u51023_input.disabled {
  5095. position:absolute;
  5096. left:0px;
  5097. top:0px;
  5098. width:133px;
  5099. height:23px;
  5100. padding:2px 2px 2px 0px;
  5101. font-family:'ArialMT', 'Arial', sans-serif;
  5102. font-weight:400;
  5103. font-style:normal;
  5104. font-size:13px;
  5105. letter-spacing:normal;
  5106. color:#AAAAAA;
  5107. vertical-align:none;
  5108. text-align:left;
  5109. text-transform:none;
  5110. background-color:transparent;
  5111. border-color:transparent;
  5112. }
  5113. #u51023_div {
  5114. border-width:0px;
  5115. position:absolute;
  5116. left:0px;
  5117. top:0px;
  5118. width:133px;
  5119. height:23px;
  5120. background:inherit;
  5121. background-color:rgba(255, 255, 255, 1);
  5122. border:none;
  5123. border-radius:0px;
  5124. -moz-box-shadow:none;
  5125. -webkit-box-shadow:none;
  5126. box-shadow:none;
  5127. color:#AAAAAA;
  5128. }
  5129. #u51023 {
  5130. border-width:0px;
  5131. position:absolute;
  5132. left:888px;
  5133. top:173px;
  5134. width:133px;
  5135. height:23px;
  5136. display:flex;
  5137. color:#AAAAAA;
  5138. }
  5139. #u51023 .text {
  5140. position:absolute;
  5141. align-self:flex-start;
  5142. padding:2px 2px 2px 0px;
  5143. box-sizing:border-box;
  5144. width:100%;
  5145. }
  5146. #u51023_div.disabled {
  5147. border-width:0px;
  5148. position:absolute;
  5149. left:0px;
  5150. top:0px;
  5151. width:133px;
  5152. height:23px;
  5153. background:inherit;
  5154. background-color:rgba(240, 240, 240, 1);
  5155. border:none;
  5156. border-radius:0px;
  5157. -moz-box-shadow:none;
  5158. -webkit-box-shadow:none;
  5159. box-shadow:none;
  5160. color:#AAAAAA;
  5161. }
  5162. #u51023.disabled {
  5163. }
  5164. .u51023_input_option {
  5165. }
  5166. #u51024_div {
  5167. border-width:0px;
  5168. position:absolute;
  5169. left:0px;
  5170. top:0px;
  5171. width:43px;
  5172. height:30px;
  5173. background:inherit;
  5174. background-color:rgba(255, 255, 255, 0);
  5175. border:none;
  5176. border-top:0px;
  5177. border-right:0px;
  5178. border-bottom:0px;
  5179. border-radius:0px;
  5180. border-top-left-radius:0px;
  5181. border-bottom-left-radius:0px;
  5182. -moz-box-shadow:none;
  5183. -webkit-box-shadow:none;
  5184. box-shadow:none;
  5185. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5186. font-weight:400;
  5187. font-style:normal;
  5188. font-size:14px;
  5189. text-align:right;
  5190. }
  5191. #u51024 {
  5192. border-width:0px;
  5193. position:absolute;
  5194. left:1044px;
  5195. top:168px;
  5196. width:43px;
  5197. height:30px;
  5198. display:flex;
  5199. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5200. font-weight:400;
  5201. font-style:normal;
  5202. font-size:14px;
  5203. text-align:right;
  5204. }
  5205. #u51024 .text {
  5206. position:absolute;
  5207. align-self:center;
  5208. padding:5px 0px 5px 0px;
  5209. box-sizing:border-box;
  5210. width:100%;
  5211. }
  5212. #u51024_text {
  5213. border-width:0px;
  5214. white-space:nowrap;
  5215. text-transform:none;
  5216. }
  5217. #u51025 {
  5218. border-width:0px;
  5219. position:absolute;
  5220. left:0px;
  5221. top:0px;
  5222. width:0px;
  5223. height:0px;
  5224. }
  5225. #u51026_div {
  5226. border-width:0px;
  5227. position:absolute;
  5228. left:0px;
  5229. top:0px;
  5230. width:140px;
  5231. height:30px;
  5232. background:inherit;
  5233. background-color:rgba(255, 255, 255, 1);
  5234. box-sizing:border-box;
  5235. border-width:1px;
  5236. border-style:solid;
  5237. border-color:rgba(170, 170, 170, 1);
  5238. border-radius:4px;
  5239. -moz-box-shadow:none;
  5240. -webkit-box-shadow:none;
  5241. box-shadow:none;
  5242. }
  5243. #u51026 {
  5244. border-width:0px;
  5245. position:absolute;
  5246. left:1105px;
  5247. top:168px;
  5248. width:140px;
  5249. height:30px;
  5250. display:flex;
  5251. }
  5252. #u51026 .text {
  5253. position:absolute;
  5254. align-self:center;
  5255. padding:2px 2px 2px 0px;
  5256. box-sizing:border-box;
  5257. width:100%;
  5258. }
  5259. #u51026_text {
  5260. border-width:0px;
  5261. word-wrap:break-word;
  5262. text-transform:none;
  5263. visibility:hidden;
  5264. }
  5265. #u51027_input {
  5266. position:absolute;
  5267. left:0px;
  5268. top:0px;
  5269. width:133px;
  5270. height:23px;
  5271. padding:2px 2px 2px 0px;
  5272. font-family:'ArialMT', 'Arial', sans-serif;
  5273. font-weight:400;
  5274. font-style:normal;
  5275. font-size:13px;
  5276. letter-spacing:normal;
  5277. color:#AAAAAA;
  5278. vertical-align:none;
  5279. text-align:left;
  5280. text-transform:none;
  5281. background-color:transparent;
  5282. border-color:transparent;
  5283. }
  5284. #u51027_input.disabled {
  5285. position:absolute;
  5286. left:0px;
  5287. top:0px;
  5288. width:133px;
  5289. height:23px;
  5290. padding:2px 2px 2px 0px;
  5291. font-family:'ArialMT', 'Arial', sans-serif;
  5292. font-weight:400;
  5293. font-style:normal;
  5294. font-size:13px;
  5295. letter-spacing:normal;
  5296. color:#AAAAAA;
  5297. vertical-align:none;
  5298. text-align:left;
  5299. text-transform:none;
  5300. background-color:transparent;
  5301. border-color:transparent;
  5302. }
  5303. #u51027_div {
  5304. border-width:0px;
  5305. position:absolute;
  5306. left:0px;
  5307. top:0px;
  5308. width:133px;
  5309. height:23px;
  5310. background:inherit;
  5311. background-color:rgba(255, 255, 255, 1);
  5312. border:none;
  5313. border-radius:0px;
  5314. -moz-box-shadow:none;
  5315. -webkit-box-shadow:none;
  5316. box-shadow:none;
  5317. color:#AAAAAA;
  5318. }
  5319. #u51027 {
  5320. border-width:0px;
  5321. position:absolute;
  5322. left:1109px;
  5323. top:173px;
  5324. width:133px;
  5325. height:23px;
  5326. display:flex;
  5327. color:#AAAAAA;
  5328. }
  5329. #u51027 .text {
  5330. position:absolute;
  5331. align-self:flex-start;
  5332. padding:2px 2px 2px 0px;
  5333. box-sizing:border-box;
  5334. width:100%;
  5335. }
  5336. #u51027_div.disabled {
  5337. border-width:0px;
  5338. position:absolute;
  5339. left:0px;
  5340. top:0px;
  5341. width:133px;
  5342. height:23px;
  5343. background:inherit;
  5344. background-color:rgba(240, 240, 240, 1);
  5345. border:none;
  5346. border-radius:0px;
  5347. -moz-box-shadow:none;
  5348. -webkit-box-shadow:none;
  5349. box-shadow:none;
  5350. color:#AAAAAA;
  5351. }
  5352. #u51027.disabled {
  5353. }
  5354. .u51027_input_option {
  5355. }
  5356. #u51028_div {
  5357. border-width:0px;
  5358. position:absolute;
  5359. left:0px;
  5360. top:0px;
  5361. width:43px;
  5362. height:30px;
  5363. background:inherit;
  5364. background-color:rgba(255, 255, 255, 0);
  5365. border:none;
  5366. border-top:0px;
  5367. border-right:0px;
  5368. border-bottom:0px;
  5369. border-radius:0px;
  5370. border-top-left-radius:0px;
  5371. border-bottom-left-radius:0px;
  5372. -moz-box-shadow:none;
  5373. -webkit-box-shadow:none;
  5374. box-shadow:none;
  5375. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5376. font-weight:400;
  5377. font-style:normal;
  5378. font-size:14px;
  5379. text-align:right;
  5380. }
  5381. #u51028 {
  5382. border-width:0px;
  5383. position:absolute;
  5384. left:158px;
  5385. top:208px;
  5386. width:43px;
  5387. height:30px;
  5388. display:flex;
  5389. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5390. font-weight:400;
  5391. font-style:normal;
  5392. font-size:14px;
  5393. text-align:right;
  5394. }
  5395. #u51028 .text {
  5396. position:absolute;
  5397. align-self:center;
  5398. padding:5px 0px 5px 0px;
  5399. box-sizing:border-box;
  5400. width:100%;
  5401. }
  5402. #u51028_text {
  5403. border-width:0px;
  5404. white-space:nowrap;
  5405. text-transform:none;
  5406. }
  5407. #u51029 {
  5408. border-width:0px;
  5409. position:absolute;
  5410. left:0px;
  5411. top:0px;
  5412. width:0px;
  5413. height:0px;
  5414. }
  5415. #u51030_div {
  5416. border-width:0px;
  5417. position:absolute;
  5418. left:0px;
  5419. top:0px;
  5420. width:140px;
  5421. height:30px;
  5422. background:inherit;
  5423. background-color:rgba(255, 255, 255, 1);
  5424. box-sizing:border-box;
  5425. border-width:1px;
  5426. border-style:solid;
  5427. border-color:rgba(170, 170, 170, 1);
  5428. border-radius:4px;
  5429. -moz-box-shadow:none;
  5430. -webkit-box-shadow:none;
  5431. box-shadow:none;
  5432. }
  5433. #u51030 {
  5434. border-width:0px;
  5435. position:absolute;
  5436. left:201px;
  5437. top:208px;
  5438. width:140px;
  5439. height:30px;
  5440. display:flex;
  5441. }
  5442. #u51030 .text {
  5443. position:absolute;
  5444. align-self:center;
  5445. padding:2px 2px 2px 0px;
  5446. box-sizing:border-box;
  5447. width:100%;
  5448. }
  5449. #u51030_text {
  5450. border-width:0px;
  5451. word-wrap:break-word;
  5452. text-transform:none;
  5453. visibility:hidden;
  5454. }
  5455. #u51031_input {
  5456. position:absolute;
  5457. left:0px;
  5458. top:0px;
  5459. width:133px;
  5460. height:23px;
  5461. padding:2px 2px 2px 0px;
  5462. font-family:'ArialMT', 'Arial', sans-serif;
  5463. font-weight:400;
  5464. font-style:normal;
  5465. font-size:13px;
  5466. letter-spacing:normal;
  5467. color:#AAAAAA;
  5468. vertical-align:none;
  5469. text-align:left;
  5470. text-transform:none;
  5471. background-color:transparent;
  5472. border-color:transparent;
  5473. }
  5474. #u51031_input.disabled {
  5475. position:absolute;
  5476. left:0px;
  5477. top:0px;
  5478. width:133px;
  5479. height:23px;
  5480. padding:2px 2px 2px 0px;
  5481. font-family:'ArialMT', 'Arial', sans-serif;
  5482. font-weight:400;
  5483. font-style:normal;
  5484. font-size:13px;
  5485. letter-spacing:normal;
  5486. color:#AAAAAA;
  5487. vertical-align:none;
  5488. text-align:left;
  5489. text-transform:none;
  5490. background-color:transparent;
  5491. border-color:transparent;
  5492. }
  5493. #u51031_div {
  5494. border-width:0px;
  5495. position:absolute;
  5496. left:0px;
  5497. top:0px;
  5498. width:133px;
  5499. height:23px;
  5500. background:inherit;
  5501. background-color:rgba(255, 255, 255, 1);
  5502. border:none;
  5503. border-radius:0px;
  5504. -moz-box-shadow:none;
  5505. -webkit-box-shadow:none;
  5506. box-shadow:none;
  5507. color:#AAAAAA;
  5508. }
  5509. #u51031 {
  5510. border-width:0px;
  5511. position:absolute;
  5512. left:205px;
  5513. top:213px;
  5514. width:133px;
  5515. height:23px;
  5516. display:flex;
  5517. color:#AAAAAA;
  5518. }
  5519. #u51031 .text {
  5520. position:absolute;
  5521. align-self:flex-start;
  5522. padding:2px 2px 2px 0px;
  5523. box-sizing:border-box;
  5524. width:100%;
  5525. }
  5526. #u51031_div.disabled {
  5527. border-width:0px;
  5528. position:absolute;
  5529. left:0px;
  5530. top:0px;
  5531. width:133px;
  5532. height:23px;
  5533. background:inherit;
  5534. background-color:rgba(240, 240, 240, 1);
  5535. border:none;
  5536. border-radius:0px;
  5537. -moz-box-shadow:none;
  5538. -webkit-box-shadow:none;
  5539. box-shadow:none;
  5540. color:#AAAAAA;
  5541. }
  5542. #u51031.disabled {
  5543. }
  5544. .u51031_input_option {
  5545. }
  5546. #u51032 {
  5547. border-width:0px;
  5548. position:absolute;
  5549. left:0px;
  5550. top:0px;
  5551. width:0px;
  5552. height:0px;
  5553. }
  5554. #u51033_div {
  5555. border-width:0px;
  5556. position:absolute;
  5557. left:0px;
  5558. top:0px;
  5559. width:60px;
  5560. height:30px;
  5561. background:inherit;
  5562. background-color:rgba(24, 144, 255, 1);
  5563. border:none;
  5564. border-radius:4px;
  5565. -moz-box-shadow:none;
  5566. -webkit-box-shadow:none;
  5567. box-shadow:none;
  5568. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5569. font-weight:400;
  5570. font-style:normal;
  5571. font-size:14px;
  5572. color:#FFFFFF;
  5573. }
  5574. #u51033 {
  5575. border-width:0px;
  5576. position:absolute;
  5577. left:823px;
  5578. top:208px;
  5579. width:60px;
  5580. height:30px;
  5581. display:flex;
  5582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5583. font-weight:400;
  5584. font-style:normal;
  5585. font-size:14px;
  5586. color:#FFFFFF;
  5587. }
  5588. #u51033 .text {
  5589. position:absolute;
  5590. align-self:center;
  5591. padding:2px 2px 2px 2px;
  5592. box-sizing:border-box;
  5593. width:100%;
  5594. }
  5595. #u51033_text {
  5596. border-width:0px;
  5597. word-wrap:break-word;
  5598. text-transform:none;
  5599. }
  5600. #u51034_div {
  5601. border-width:0px;
  5602. position:absolute;
  5603. left:0px;
  5604. top:0px;
  5605. width:60px;
  5606. height:30px;
  5607. background:inherit;
  5608. background-color:rgba(255, 255, 255, 1);
  5609. box-sizing:border-box;
  5610. border-width:1px;
  5611. border-style:solid;
  5612. border-color:rgba(170, 170, 170, 1);
  5613. border-radius:4px;
  5614. -moz-box-shadow:none;
  5615. -webkit-box-shadow:none;
  5616. box-shadow:none;
  5617. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5618. font-weight:400;
  5619. font-style:normal;
  5620. }
  5621. #u51034 {
  5622. border-width:0px;
  5623. position:absolute;
  5624. left:893px;
  5625. top:208px;
  5626. width:60px;
  5627. height:30px;
  5628. display:flex;
  5629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5630. font-weight:400;
  5631. font-style:normal;
  5632. }
  5633. #u51034 .text {
  5634. position:absolute;
  5635. align-self:center;
  5636. padding:2px 2px 2px 2px;
  5637. box-sizing:border-box;
  5638. width:100%;
  5639. }
  5640. #u51034_text {
  5641. border-width:0px;
  5642. word-wrap:break-word;
  5643. text-transform:none;
  5644. }
  5645. #u51035 {
  5646. border-width:0px;
  5647. position:absolute;
  5648. left:0px;
  5649. top:0px;
  5650. width:0px;
  5651. height:0px;
  5652. }
  5653. #u51036 label {
  5654. left:0px;
  5655. width:100%;
  5656. }
  5657. #u51036_img {
  5658. border-width:0px;
  5659. position:absolute;
  5660. left:0px;
  5661. top:0px;
  5662. width:12px;
  5663. height:12px;
  5664. }
  5665. #u51036 {
  5666. border-width:0px;
  5667. position:absolute;
  5668. left:175px;
  5669. top:279px;
  5670. width:28px;
  5671. height:16px;
  5672. display:flex;
  5673. }
  5674. #u51036 .text {
  5675. position:absolute;
  5676. align-self:center;
  5677. padding:0px 2px 0px 2px;
  5678. box-sizing:border-box;
  5679. }
  5680. #u51036_img.selected {
  5681. }
  5682. #u51036.selected {
  5683. }
  5684. #u51036_img.disabled {
  5685. }
  5686. #u51036.disabled {
  5687. }
  5688. #u51036_img.selectedDisabled {
  5689. }
  5690. #u51036.selectedDisabled {
  5691. }
  5692. #u51036_text {
  5693. border-width:0px;
  5694. position:absolute;
  5695. left:14px;
  5696. top:0px;
  5697. width:12px;
  5698. word-wrap:break-word;
  5699. text-transform:none;
  5700. visibility:hidden;
  5701. }
  5702. #u51036_input {
  5703. border-width:0px;
  5704. position:absolute;
  5705. left:0px;
  5706. top:0px;
  5707. width:0px;
  5708. height:0px;
  5709. opacity:0;
  5710. }
  5711. #u51037 label {
  5712. left:0px;
  5713. width:100%;
  5714. }
  5715. #u51037_img {
  5716. border-width:0px;
  5717. position:absolute;
  5718. left:0px;
  5719. top:0px;
  5720. width:12px;
  5721. height:12px;
  5722. }
  5723. #u51037 {
  5724. border-width:0px;
  5725. position:absolute;
  5726. left:175px;
  5727. top:319px;
  5728. width:28px;
  5729. height:16px;
  5730. display:flex;
  5731. }
  5732. #u51037 .text {
  5733. position:absolute;
  5734. align-self:center;
  5735. padding:0px 2px 0px 2px;
  5736. box-sizing:border-box;
  5737. }
  5738. #u51037_img.selected {
  5739. }
  5740. #u51037.selected {
  5741. }
  5742. #u51037_img.disabled {
  5743. }
  5744. #u51037.disabled {
  5745. }
  5746. #u51037_img.selectedDisabled {
  5747. }
  5748. #u51037.selectedDisabled {
  5749. }
  5750. #u51037_text {
  5751. border-width:0px;
  5752. position:absolute;
  5753. left:14px;
  5754. top:0px;
  5755. width:12px;
  5756. word-wrap:break-word;
  5757. text-transform:none;
  5758. visibility:hidden;
  5759. }
  5760. #u51037_input {
  5761. border-width:0px;
  5762. position:absolute;
  5763. left:0px;
  5764. top:0px;
  5765. width:0px;
  5766. height:0px;
  5767. opacity:0;
  5768. }
  5769. #u51038 label {
  5770. left:0px;
  5771. width:100%;
  5772. }
  5773. #u51038_img {
  5774. border-width:0px;
  5775. position:absolute;
  5776. left:0px;
  5777. top:0px;
  5778. width:12px;
  5779. height:12px;
  5780. }
  5781. #u51038 {
  5782. border-width:0px;
  5783. position:absolute;
  5784. left:175px;
  5785. top:359px;
  5786. width:28px;
  5787. height:16px;
  5788. display:flex;
  5789. }
  5790. #u51038 .text {
  5791. position:absolute;
  5792. align-self:center;
  5793. padding:0px 2px 0px 2px;
  5794. box-sizing:border-box;
  5795. }
  5796. #u51038_img.selected {
  5797. }
  5798. #u51038.selected {
  5799. }
  5800. #u51038_img.disabled {
  5801. }
  5802. #u51038.disabled {
  5803. }
  5804. #u51038_img.selectedDisabled {
  5805. }
  5806. #u51038.selectedDisabled {
  5807. }
  5808. #u51038_text {
  5809. border-width:0px;
  5810. position:absolute;
  5811. left:14px;
  5812. top:0px;
  5813. width:12px;
  5814. word-wrap:break-word;
  5815. text-transform:none;
  5816. visibility:hidden;
  5817. }
  5818. #u51038_input {
  5819. border-width:0px;
  5820. position:absolute;
  5821. left:0px;
  5822. top:0px;
  5823. width:0px;
  5824. height:0px;
  5825. opacity:0;
  5826. }
  5827. #u51039 label {
  5828. left:0px;
  5829. width:100%;
  5830. }
  5831. #u51039_img {
  5832. border-width:0px;
  5833. position:absolute;
  5834. left:0px;
  5835. top:0px;
  5836. width:12px;
  5837. height:12px;
  5838. }
  5839. #u51039 {
  5840. border-width:0px;
  5841. position:absolute;
  5842. left:175px;
  5843. top:399px;
  5844. width:28px;
  5845. height:16px;
  5846. display:flex;
  5847. }
  5848. #u51039 .text {
  5849. position:absolute;
  5850. align-self:center;
  5851. padding:0px 2px 0px 2px;
  5852. box-sizing:border-box;
  5853. }
  5854. #u51039_img.selected {
  5855. }
  5856. #u51039.selected {
  5857. }
  5858. #u51039_img.disabled {
  5859. }
  5860. #u51039.disabled {
  5861. }
  5862. #u51039_img.selectedDisabled {
  5863. }
  5864. #u51039.selectedDisabled {
  5865. }
  5866. #u51039_text {
  5867. border-width:0px;
  5868. position:absolute;
  5869. left:14px;
  5870. top:0px;
  5871. width:12px;
  5872. word-wrap:break-word;
  5873. text-transform:none;
  5874. visibility:hidden;
  5875. }
  5876. #u51039_input {
  5877. border-width:0px;
  5878. position:absolute;
  5879. left:0px;
  5880. top:0px;
  5881. width:0px;
  5882. height:0px;
  5883. opacity:0;
  5884. }
  5885. #u51040 label {
  5886. left:0px;
  5887. width:100%;
  5888. }
  5889. #u51040_img {
  5890. border-width:0px;
  5891. position:absolute;
  5892. left:0px;
  5893. top:0px;
  5894. width:12px;
  5895. height:12px;
  5896. }
  5897. #u51040 {
  5898. border-width:0px;
  5899. position:absolute;
  5900. left:175px;
  5901. top:439px;
  5902. width:28px;
  5903. height:16px;
  5904. display:flex;
  5905. }
  5906. #u51040 .text {
  5907. position:absolute;
  5908. align-self:center;
  5909. padding:0px 2px 0px 2px;
  5910. box-sizing:border-box;
  5911. }
  5912. #u51040_img.selected {
  5913. }
  5914. #u51040.selected {
  5915. }
  5916. #u51040_img.disabled {
  5917. }
  5918. #u51040.disabled {
  5919. }
  5920. #u51040_img.selectedDisabled {
  5921. }
  5922. #u51040.selectedDisabled {
  5923. }
  5924. #u51040_text {
  5925. border-width:0px;
  5926. position:absolute;
  5927. left:14px;
  5928. top:0px;
  5929. width:12px;
  5930. word-wrap:break-word;
  5931. text-transform:none;
  5932. visibility:hidden;
  5933. }
  5934. #u51040_input {
  5935. border-width:0px;
  5936. position:absolute;
  5937. left:0px;
  5938. top:0px;
  5939. width:0px;
  5940. height:0px;
  5941. opacity:0;
  5942. }
  5943. #u51041 label {
  5944. left:0px;
  5945. width:100%;
  5946. }
  5947. #u51041_img {
  5948. border-width:0px;
  5949. position:absolute;
  5950. left:0px;
  5951. top:0px;
  5952. width:12px;
  5953. height:12px;
  5954. }
  5955. #u51041 {
  5956. border-width:0px;
  5957. position:absolute;
  5958. left:175px;
  5959. top:479px;
  5960. width:28px;
  5961. height:16px;
  5962. display:flex;
  5963. }
  5964. #u51041 .text {
  5965. position:absolute;
  5966. align-self:center;
  5967. padding:0px 2px 0px 2px;
  5968. box-sizing:border-box;
  5969. }
  5970. #u51041_img.selected {
  5971. }
  5972. #u51041.selected {
  5973. }
  5974. #u51041_img.disabled {
  5975. }
  5976. #u51041.disabled {
  5977. }
  5978. #u51041_img.selectedDisabled {
  5979. }
  5980. #u51041.selectedDisabled {
  5981. }
  5982. #u51041_text {
  5983. border-width:0px;
  5984. position:absolute;
  5985. left:14px;
  5986. top:0px;
  5987. width:12px;
  5988. word-wrap:break-word;
  5989. text-transform:none;
  5990. visibility:hidden;
  5991. }
  5992. #u51041_input {
  5993. border-width:0px;
  5994. position:absolute;
  5995. left:0px;
  5996. top:0px;
  5997. width:0px;
  5998. height:0px;
  5999. opacity:0;
  6000. }
  6001. #u51042 label {
  6002. left:0px;
  6003. width:100%;
  6004. }
  6005. #u51042_img {
  6006. border-width:0px;
  6007. position:absolute;
  6008. left:0px;
  6009. top:0px;
  6010. width:12px;
  6011. height:12px;
  6012. }
  6013. #u51042 {
  6014. border-width:0px;
  6015. position:absolute;
  6016. left:175px;
  6017. top:519px;
  6018. width:28px;
  6019. height:16px;
  6020. display:flex;
  6021. }
  6022. #u51042 .text {
  6023. position:absolute;
  6024. align-self:center;
  6025. padding:0px 2px 0px 2px;
  6026. box-sizing:border-box;
  6027. }
  6028. #u51042_img.selected {
  6029. }
  6030. #u51042.selected {
  6031. }
  6032. #u51042_img.disabled {
  6033. }
  6034. #u51042.disabled {
  6035. }
  6036. #u51042_img.selectedDisabled {
  6037. }
  6038. #u51042.selectedDisabled {
  6039. }
  6040. #u51042_text {
  6041. border-width:0px;
  6042. position:absolute;
  6043. left:14px;
  6044. top:0px;
  6045. width:12px;
  6046. word-wrap:break-word;
  6047. text-transform:none;
  6048. visibility:hidden;
  6049. }
  6050. #u51042_input {
  6051. border-width:0px;
  6052. position:absolute;
  6053. left:0px;
  6054. top:0px;
  6055. width:0px;
  6056. height:0px;
  6057. opacity:0;
  6058. }
  6059. #u51043 label {
  6060. left:0px;
  6061. width:100%;
  6062. }
  6063. #u51043_img {
  6064. border-width:0px;
  6065. position:absolute;
  6066. left:0px;
  6067. top:0px;
  6068. width:12px;
  6069. height:12px;
  6070. }
  6071. #u51043 {
  6072. border-width:0px;
  6073. position:absolute;
  6074. left:175px;
  6075. top:559px;
  6076. width:28px;
  6077. height:16px;
  6078. display:flex;
  6079. }
  6080. #u51043 .text {
  6081. position:absolute;
  6082. align-self:center;
  6083. padding:0px 2px 0px 2px;
  6084. box-sizing:border-box;
  6085. }
  6086. #u51043_img.selected {
  6087. }
  6088. #u51043.selected {
  6089. }
  6090. #u51043_img.disabled {
  6091. }
  6092. #u51043.disabled {
  6093. }
  6094. #u51043_img.selectedDisabled {
  6095. }
  6096. #u51043.selectedDisabled {
  6097. }
  6098. #u51043_text {
  6099. border-width:0px;
  6100. position:absolute;
  6101. left:14px;
  6102. top:0px;
  6103. width:12px;
  6104. word-wrap:break-word;
  6105. text-transform:none;
  6106. visibility:hidden;
  6107. }
  6108. #u51043_input {
  6109. border-width:0px;
  6110. position:absolute;
  6111. left:0px;
  6112. top:0px;
  6113. width:0px;
  6114. height:0px;
  6115. opacity:0;
  6116. }
  6117. #u51044 label {
  6118. left:0px;
  6119. width:100%;
  6120. }
  6121. #u51044_img {
  6122. border-width:0px;
  6123. position:absolute;
  6124. left:0px;
  6125. top:0px;
  6126. width:12px;
  6127. height:12px;
  6128. }
  6129. #u51044 {
  6130. border-width:0px;
  6131. position:absolute;
  6132. left:175px;
  6133. top:599px;
  6134. width:28px;
  6135. height:16px;
  6136. display:flex;
  6137. }
  6138. #u51044 .text {
  6139. position:absolute;
  6140. align-self:center;
  6141. padding:0px 2px 0px 2px;
  6142. box-sizing:border-box;
  6143. }
  6144. #u51044_img.selected {
  6145. }
  6146. #u51044.selected {
  6147. }
  6148. #u51044_img.disabled {
  6149. }
  6150. #u51044.disabled {
  6151. }
  6152. #u51044_img.selectedDisabled {
  6153. }
  6154. #u51044.selectedDisabled {
  6155. }
  6156. #u51044_text {
  6157. border-width:0px;
  6158. position:absolute;
  6159. left:14px;
  6160. top:0px;
  6161. width:12px;
  6162. word-wrap:break-word;
  6163. text-transform:none;
  6164. visibility:hidden;
  6165. }
  6166. #u51044_input {
  6167. border-width:0px;
  6168. position:absolute;
  6169. left:0px;
  6170. top:0px;
  6171. width:0px;
  6172. height:0px;
  6173. opacity:0;
  6174. }
  6175. #u51045 label {
  6176. left:0px;
  6177. width:100%;
  6178. }
  6179. #u51045_img {
  6180. border-width:0px;
  6181. position:absolute;
  6182. left:0px;
  6183. top:0px;
  6184. width:12px;
  6185. height:12px;
  6186. }
  6187. #u51045 {
  6188. border-width:0px;
  6189. position:absolute;
  6190. left:175px;
  6191. top:639px;
  6192. width:28px;
  6193. height:16px;
  6194. display:flex;
  6195. }
  6196. #u51045 .text {
  6197. position:absolute;
  6198. align-self:center;
  6199. padding:0px 2px 0px 2px;
  6200. box-sizing:border-box;
  6201. }
  6202. #u51045_img.selected {
  6203. }
  6204. #u51045.selected {
  6205. }
  6206. #u51045_img.disabled {
  6207. }
  6208. #u51045.disabled {
  6209. }
  6210. #u51045_img.selectedDisabled {
  6211. }
  6212. #u51045.selectedDisabled {
  6213. }
  6214. #u51045_text {
  6215. border-width:0px;
  6216. position:absolute;
  6217. left:14px;
  6218. top:0px;
  6219. width:12px;
  6220. word-wrap:break-word;
  6221. text-transform:none;
  6222. visibility:hidden;
  6223. }
  6224. #u51045_input {
  6225. border-width:0px;
  6226. position:absolute;
  6227. left:0px;
  6228. top:0px;
  6229. width:0px;
  6230. height:0px;
  6231. opacity:0;
  6232. }
  6233. #u51046 label {
  6234. left:0px;
  6235. width:100%;
  6236. }
  6237. #u51046_img {
  6238. border-width:0px;
  6239. position:absolute;
  6240. left:0px;
  6241. top:0px;
  6242. width:12px;
  6243. height:12px;
  6244. }
  6245. #u51046 {
  6246. border-width:0px;
  6247. position:absolute;
  6248. left:175px;
  6249. top:679px;
  6250. width:28px;
  6251. height:16px;
  6252. display:flex;
  6253. }
  6254. #u51046 .text {
  6255. position:absolute;
  6256. align-self:center;
  6257. padding:0px 2px 0px 2px;
  6258. box-sizing:border-box;
  6259. }
  6260. #u51046_img.selected {
  6261. }
  6262. #u51046.selected {
  6263. }
  6264. #u51046_img.disabled {
  6265. }
  6266. #u51046.disabled {
  6267. }
  6268. #u51046_img.selectedDisabled {
  6269. }
  6270. #u51046.selectedDisabled {
  6271. }
  6272. #u51046_text {
  6273. border-width:0px;
  6274. position:absolute;
  6275. left:14px;
  6276. top:0px;
  6277. width:12px;
  6278. word-wrap:break-word;
  6279. text-transform:none;
  6280. visibility:hidden;
  6281. }
  6282. #u51046_input {
  6283. border-width:0px;
  6284. position:absolute;
  6285. left:0px;
  6286. top:0px;
  6287. width:0px;
  6288. height:0px;
  6289. opacity:0;
  6290. }
  6291. #u51047 label {
  6292. left:0px;
  6293. width:100%;
  6294. }
  6295. #u51047_img {
  6296. border-width:0px;
  6297. position:absolute;
  6298. left:0px;
  6299. top:0px;
  6300. width:12px;
  6301. height:12px;
  6302. }
  6303. #u51047 {
  6304. border-width:0px;
  6305. position:absolute;
  6306. left:175px;
  6307. top:719px;
  6308. width:28px;
  6309. height:16px;
  6310. display:flex;
  6311. }
  6312. #u51047 .text {
  6313. position:absolute;
  6314. align-self:center;
  6315. padding:0px 2px 0px 2px;
  6316. box-sizing:border-box;
  6317. }
  6318. #u51047_img.selected {
  6319. }
  6320. #u51047.selected {
  6321. }
  6322. #u51047_img.disabled {
  6323. }
  6324. #u51047.disabled {
  6325. }
  6326. #u51047_img.selectedDisabled {
  6327. }
  6328. #u51047.selectedDisabled {
  6329. }
  6330. #u51047_text {
  6331. border-width:0px;
  6332. position:absolute;
  6333. left:14px;
  6334. top:0px;
  6335. width:12px;
  6336. word-wrap:break-word;
  6337. text-transform:none;
  6338. visibility:hidden;
  6339. }
  6340. #u51047_input {
  6341. border-width:0px;
  6342. position:absolute;
  6343. left:0px;
  6344. top:0px;
  6345. width:0px;
  6346. height:0px;
  6347. opacity:0;
  6348. }
  6349. #u51048 label {
  6350. left:0px;
  6351. width:100%;
  6352. }
  6353. #u51048_img {
  6354. border-width:0px;
  6355. position:absolute;
  6356. left:0px;
  6357. top:0px;
  6358. width:12px;
  6359. height:12px;
  6360. }
  6361. #u51048 {
  6362. border-width:0px;
  6363. position:absolute;
  6364. left:175px;
  6365. top:759px;
  6366. width:28px;
  6367. height:16px;
  6368. display:flex;
  6369. }
  6370. #u51048 .text {
  6371. position:absolute;
  6372. align-self:center;
  6373. padding:0px 2px 0px 2px;
  6374. box-sizing:border-box;
  6375. }
  6376. #u51048_img.selected {
  6377. }
  6378. #u51048.selected {
  6379. }
  6380. #u51048_img.disabled {
  6381. }
  6382. #u51048.disabled {
  6383. }
  6384. #u51048_img.selectedDisabled {
  6385. }
  6386. #u51048.selectedDisabled {
  6387. }
  6388. #u51048_text {
  6389. border-width:0px;
  6390. position:absolute;
  6391. left:14px;
  6392. top:0px;
  6393. width:12px;
  6394. word-wrap:break-word;
  6395. text-transform:none;
  6396. visibility:hidden;
  6397. }
  6398. #u51048_input {
  6399. border-width:0px;
  6400. position:absolute;
  6401. left:0px;
  6402. top:0px;
  6403. width:0px;
  6404. height:0px;
  6405. opacity:0;
  6406. }