styles.css 130 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1600px;
  7. margin-left:auto;
  8. margin-right:auto;
  9. text-align:left;
  10. }
  11. .form_sketch {
  12. border-color:transparent;
  13. background-color:transparent;
  14. }
  15. #base {
  16. position:absolute;
  17. z-index:0;
  18. }
  19. #u52081_div {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1480px;
  25. height:1200px;
  26. background:inherit;
  27. background-color:rgba(242, 242, 242, 1);
  28. border:none;
  29. border-radius:0px;
  30. -moz-box-shadow:none;
  31. -webkit-box-shadow:none;
  32. box-shadow:none;
  33. }
  34. #u52081 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u52081 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u52081_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u52082_div {
  57. border-width:0px;
  58. position:absolute;
  59. left:0px;
  60. top:0px;
  61. width:129px;
  62. height:22px;
  63. background:inherit;
  64. background-color:rgba(255, 255, 255, 0);
  65. border:none;
  66. border-radius:0px;
  67. -moz-box-shadow:none;
  68. -webkit-box-shadow:none;
  69. box-shadow:none;
  70. font-size:16px;
  71. color:#FFFFFF;
  72. }
  73. #u52082 {
  74. border-width:0px;
  75. position:absolute;
  76. left:49px;
  77. top:14px;
  78. width:129px;
  79. height:22px;
  80. display:flex;
  81. font-size:16px;
  82. color:#FFFFFF;
  83. }
  84. #u52082 .text {
  85. position:absolute;
  86. align-self:flex-start;
  87. padding:0px 0px 0px 0px;
  88. box-sizing:border-box;
  89. width:100%;
  90. }
  91. #u52082_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u52083_div {
  97. border-width:0px;
  98. position:absolute;
  99. left:0px;
  100. top:0px;
  101. width:1600px;
  102. height:50px;
  103. background:inherit;
  104. background-color:rgba(30, 42, 68, 1);
  105. border:none;
  106. border-radius:0px;
  107. -moz-box-shadow:none;
  108. -webkit-box-shadow:none;
  109. box-shadow:none;
  110. color:#AFB3B6;
  111. }
  112. #u52083 {
  113. border-width:0px;
  114. position:absolute;
  115. left:0px;
  116. top:0px;
  117. width:1600px;
  118. height:50px;
  119. display:flex;
  120. color:#AFB3B6;
  121. }
  122. #u52083 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u52083_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u52084 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u52085_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u52085 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u52085 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u52085_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u52086_div {
  173. border-width:0px;
  174. position:absolute;
  175. left:0px;
  176. top:0px;
  177. width:161px;
  178. height:22px;
  179. background:inherit;
  180. background-color:rgba(255, 255, 255, 0);
  181. border:none;
  182. border-radius:0px;
  183. -moz-box-shadow:none;
  184. -webkit-box-shadow:none;
  185. box-shadow:none;
  186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  187. font-weight:400;
  188. font-style:normal;
  189. font-size:16px;
  190. color:#FFFFFF;
  191. }
  192. #u52086 {
  193. border-width:0px;
  194. position:absolute;
  195. left:62px;
  196. top:14px;
  197. width:161px;
  198. height:22px;
  199. display:flex;
  200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  201. font-weight:400;
  202. font-style:normal;
  203. font-size:16px;
  204. color:#FFFFFF;
  205. }
  206. #u52086 .text {
  207. position:absolute;
  208. align-self:flex-start;
  209. padding:0px 0px 0px 0px;
  210. box-sizing:border-box;
  211. width:100%;
  212. }
  213. #u52086_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u52087_div {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:120px;
  224. height:1200px;
  225. background:inherit;
  226. background-color:rgba(30, 42, 68, 1);
  227. border:none;
  228. border-radius:0px;
  229. -moz-box-shadow:none;
  230. -webkit-box-shadow:none;
  231. box-shadow:none;
  232. color:#AFB3B6;
  233. }
  234. #u52087 {
  235. border-width:0px;
  236. position:absolute;
  237. left:0px;
  238. top:47px;
  239. width:120px;
  240. height:1200px;
  241. display:flex;
  242. color:#AFB3B6;
  243. }
  244. #u52087 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u52087_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u52088 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u52089_input {
  266. position:absolute;
  267. left:0px;
  268. top:0px;
  269. width:214px;
  270. height:27px;
  271. padding:2px 2px 2px 2px;
  272. font-family:'ArialMT', 'Arial', sans-serif;
  273. font-weight:400;
  274. font-style:normal;
  275. font-size:14px;
  276. letter-spacing:normal;
  277. color:#FFFFFF;
  278. vertical-align:none;
  279. text-align:left;
  280. text-transform:none;
  281. background-color:transparent;
  282. border-color:transparent;
  283. }
  284. #u52089_input.disabled {
  285. position:absolute;
  286. left:0px;
  287. top:0px;
  288. width:214px;
  289. height:27px;
  290. padding:2px 2px 2px 2px;
  291. font-family:'ArialMT', 'Arial', sans-serif;
  292. font-weight:400;
  293. font-style:normal;
  294. font-size:14px;
  295. letter-spacing:normal;
  296. color:#FFFFFF;
  297. vertical-align:none;
  298. text-align:left;
  299. text-transform:none;
  300. background-color:transparent;
  301. border-color:transparent;
  302. }
  303. #u52089_div {
  304. border-width:0px;
  305. position:absolute;
  306. left:0px;
  307. top:0px;
  308. width:214px;
  309. height:27px;
  310. background:inherit;
  311. background-color:rgba(255, 255, 255, 0);
  312. border:none;
  313. border-radius:0px;
  314. -moz-box-shadow:none;
  315. -webkit-box-shadow:none;
  316. box-shadow:none;
  317. font-size:14px;
  318. color:#FFFFFF;
  319. }
  320. #u52089 {
  321. border-width:0px;
  322. position:absolute;
  323. left:1089px;
  324. top:10px;
  325. width:214px;
  326. height:27px;
  327. display:flex;
  328. font-size:14px;
  329. color:#FFFFFF;
  330. }
  331. #u52089 .text {
  332. position:absolute;
  333. align-self:flex-start;
  334. padding:2px 2px 2px 2px;
  335. box-sizing:border-box;
  336. width:100%;
  337. }
  338. #u52089_div.disabled {
  339. border-width:0px;
  340. position:absolute;
  341. left:0px;
  342. top:0px;
  343. width:214px;
  344. height:27px;
  345. background:inherit;
  346. background-color:rgba(240, 240, 240, 1);
  347. border:none;
  348. border-radius:0px;
  349. -moz-box-shadow:none;
  350. -webkit-box-shadow:none;
  351. box-shadow:none;
  352. font-size:14px;
  353. color:#FFFFFF;
  354. }
  355. #u52089.disabled {
  356. }
  357. .u52089_input_option {
  358. font-size:14px;
  359. }
  360. #u52090_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u52090 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u52090 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u52090_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u52091_div {
  391. border-width:0px;
  392. position:absolute;
  393. left:0px;
  394. top:0px;
  395. width:100px;
  396. height:24px;
  397. background:inherit;
  398. background-color:rgba(242, 242, 242, 0.2);
  399. border:none;
  400. border-radius:25px;
  401. -moz-box-shadow:none;
  402. -webkit-box-shadow:none;
  403. box-shadow:none;
  404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  405. font-weight:400;
  406. font-style:normal;
  407. color:#FFFFFF;
  408. text-align:center;
  409. }
  410. #u52091 {
  411. border-width:0px;
  412. position:absolute;
  413. left:1350px;
  414. top:12px;
  415. width:100px;
  416. height:24px;
  417. display:flex;
  418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  419. font-weight:400;
  420. font-style:normal;
  421. color:#FFFFFF;
  422. text-align:center;
  423. }
  424. #u52091 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u52091_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u52092_div {
  437. border-width:0px;
  438. position:absolute;
  439. left:0px;
  440. top:0px;
  441. width:120px;
  442. height:24px;
  443. background:inherit;
  444. background-color:rgba(242, 242, 242, 0.2);
  445. border:none;
  446. border-radius:25px;
  447. -moz-box-shadow:none;
  448. -webkit-box-shadow:none;
  449. box-shadow:none;
  450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  451. font-weight:400;
  452. font-style:normal;
  453. color:#FFFFFF;
  454. text-align:center;
  455. }
  456. #u52092 {
  457. border-width:0px;
  458. position:absolute;
  459. left:1460px;
  460. top:12px;
  461. width:120px;
  462. height:24px;
  463. display:flex;
  464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  465. font-weight:400;
  466. font-style:normal;
  467. color:#FFFFFF;
  468. text-align:center;
  469. }
  470. #u52092 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u52092_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u52093 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u52094_div {
  491. border-width:0px;
  492. position:absolute;
  493. left:0px;
  494. top:0px;
  495. width:33px;
  496. height:22px;
  497. background:inherit;
  498. background-color:rgba(255, 255, 255, 0);
  499. border:none;
  500. border-radius:0px;
  501. -moz-box-shadow:none;
  502. -webkit-box-shadow:none;
  503. box-shadow:none;
  504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  505. font-weight:400;
  506. font-style:normal;
  507. font-size:16px;
  508. color:#FFFFFF;
  509. }
  510. #u52094 {
  511. border-width:0px;
  512. position:absolute;
  513. left:39px;
  514. top:71px;
  515. width:33px;
  516. height:22px;
  517. display:flex;
  518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  519. font-weight:400;
  520. font-style:normal;
  521. font-size:16px;
  522. color:#FFFFFF;
  523. }
  524. #u52094 .text {
  525. position:absolute;
  526. align-self:flex-start;
  527. padding:0px 0px 0px 0px;
  528. box-sizing:border-box;
  529. width:100%;
  530. }
  531. #u52094_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u52095_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u52095 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u52095 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u52095_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u52096 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u52097_div {
  575. border-width:0px;
  576. position:absolute;
  577. left:0px;
  578. top:0px;
  579. width:33px;
  580. height:22px;
  581. background:inherit;
  582. background-color:rgba(255, 255, 255, 0);
  583. border:none;
  584. border-radius:0px;
  585. -moz-box-shadow:none;
  586. -webkit-box-shadow:none;
  587. box-shadow:none;
  588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  589. font-weight:400;
  590. font-style:normal;
  591. font-size:16px;
  592. color:#FFFFFF;
  593. }
  594. #u52097 {
  595. border-width:0px;
  596. position:absolute;
  597. left:39px;
  598. top:147px;
  599. width:33px;
  600. height:22px;
  601. display:flex;
  602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  603. font-weight:400;
  604. font-style:normal;
  605. font-size:16px;
  606. color:#FFFFFF;
  607. }
  608. #u52097 .text {
  609. position:absolute;
  610. align-self:flex-start;
  611. padding:0px 0px 0px 0px;
  612. box-sizing:border-box;
  613. width:100%;
  614. }
  615. #u52097_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u52098_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u52098 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u52098 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u52098_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u52099 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u52100_div {
  659. border-width:0px;
  660. position:absolute;
  661. left:0px;
  662. top:0px;
  663. width:33px;
  664. height:22px;
  665. background:inherit;
  666. background-color:rgba(255, 255, 255, 0);
  667. border:none;
  668. border-radius:0px;
  669. -moz-box-shadow:none;
  670. -webkit-box-shadow:none;
  671. box-shadow:none;
  672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  673. font-weight:400;
  674. font-style:normal;
  675. font-size:16px;
  676. color:#FFFFFF;
  677. }
  678. #u52100 {
  679. border-width:0px;
  680. position:absolute;
  681. left:39px;
  682. top:399px;
  683. width:33px;
  684. height:22px;
  685. display:flex;
  686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  687. font-weight:400;
  688. font-style:normal;
  689. font-size:16px;
  690. color:#FFFFFF;
  691. }
  692. #u52100 .text {
  693. position:absolute;
  694. align-self:flex-start;
  695. padding:0px 0px 0px 0px;
  696. box-sizing:border-box;
  697. width:100%;
  698. }
  699. #u52100_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u52101_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u52101 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:403px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u52101 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u52101_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u52102 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u52103_div {
  743. border-width:0px;
  744. position:absolute;
  745. left:0px;
  746. top:0px;
  747. width:49px;
  748. height:22px;
  749. background:inherit;
  750. background-color:rgba(255, 255, 255, 0);
  751. border:none;
  752. border-radius:0px;
  753. -moz-box-shadow:none;
  754. -webkit-box-shadow:none;
  755. box-shadow:none;
  756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  757. font-weight:400;
  758. font-style:normal;
  759. font-size:16px;
  760. color:#FFFFFF;
  761. }
  762. #u52103 {
  763. border-width:0px;
  764. position:absolute;
  765. left:39px;
  766. top:109px;
  767. width:49px;
  768. height:22px;
  769. display:flex;
  770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  771. font-weight:400;
  772. font-style:normal;
  773. font-size:16px;
  774. color:#FFFFFF;
  775. }
  776. #u52103 .text {
  777. position:absolute;
  778. align-self:flex-start;
  779. padding:0px 0px 0px 0px;
  780. box-sizing:border-box;
  781. width:100%;
  782. }
  783. #u52103_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u52104_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u52104 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u52104 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u52104_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u52105 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u52106_div {
  827. border-width:0px;
  828. position:absolute;
  829. left:0px;
  830. top:0px;
  831. width:33px;
  832. height:22px;
  833. background:inherit;
  834. background-color:rgba(255, 255, 255, 0);
  835. border:none;
  836. border-radius:0px;
  837. -moz-box-shadow:none;
  838. -webkit-box-shadow:none;
  839. box-shadow:none;
  840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  841. font-weight:400;
  842. font-style:normal;
  843. font-size:16px;
  844. color:#FFFFFF;
  845. }
  846. #u52106 {
  847. border-width:0px;
  848. position:absolute;
  849. left:39px;
  850. top:441px;
  851. width:33px;
  852. height:22px;
  853. display:flex;
  854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  855. font-weight:400;
  856. font-style:normal;
  857. font-size:16px;
  858. color:#FFFFFF;
  859. }
  860. #u52106 .text {
  861. position:absolute;
  862. align-self:flex-start;
  863. padding:0px 0px 0px 0px;
  864. box-sizing:border-box;
  865. width:100%;
  866. }
  867. #u52106_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u52107_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u52107 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:445px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u52107 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u52107_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u52108 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u52109_div {
  911. border-width:0px;
  912. position:absolute;
  913. left:0px;
  914. top:0px;
  915. width:33px;
  916. height:22px;
  917. background:inherit;
  918. background-color:rgba(255, 255, 255, 0);
  919. border:none;
  920. border-radius:0px;
  921. -moz-box-shadow:none;
  922. -webkit-box-shadow:none;
  923. box-shadow:none;
  924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  925. font-weight:400;
  926. font-style:normal;
  927. font-size:16px;
  928. color:#FFFFFF;
  929. }
  930. #u52109 {
  931. border-width:0px;
  932. position:absolute;
  933. left:39px;
  934. top:315px;
  935. width:33px;
  936. height:22px;
  937. display:flex;
  938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  939. font-weight:400;
  940. font-style:normal;
  941. font-size:16px;
  942. color:#FFFFFF;
  943. }
  944. #u52109 .text {
  945. position:absolute;
  946. align-self:flex-start;
  947. padding:0px 0px 0px 0px;
  948. box-sizing:border-box;
  949. width:100%;
  950. }
  951. #u52109_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u52110_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u52110 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:319px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u52110 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u52110_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u52111 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u52112_div {
  995. border-width:0px;
  996. position:absolute;
  997. left:0px;
  998. top:0px;
  999. width:33px;
  1000. height:22px;
  1001. background:inherit;
  1002. background-color:rgba(255, 255, 255, 0);
  1003. border:none;
  1004. border-radius:0px;
  1005. -moz-box-shadow:none;
  1006. -webkit-box-shadow:none;
  1007. box-shadow:none;
  1008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1009. font-weight:400;
  1010. font-style:normal;
  1011. font-size:16px;
  1012. color:#FFFFFF;
  1013. }
  1014. #u52112 {
  1015. border-width:0px;
  1016. position:absolute;
  1017. left:39px;
  1018. top:189px;
  1019. width:33px;
  1020. height:22px;
  1021. display:flex;
  1022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1023. font-weight:400;
  1024. font-style:normal;
  1025. font-size:16px;
  1026. color:#FFFFFF;
  1027. }
  1028. #u52112 .text {
  1029. position:absolute;
  1030. align-self:flex-start;
  1031. padding:0px 0px 0px 0px;
  1032. box-sizing:border-box;
  1033. width:100%;
  1034. }
  1035. #u52112_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u52113_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u52113 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u52113 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u52113_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u52114 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u52115_div {
  1079. border-width:0px;
  1080. position:absolute;
  1081. left:0px;
  1082. top:0px;
  1083. width:33px;
  1084. height:22px;
  1085. background:inherit;
  1086. background-color:rgba(255, 255, 255, 0);
  1087. border:none;
  1088. border-radius:0px;
  1089. -moz-box-shadow:none;
  1090. -webkit-box-shadow:none;
  1091. box-shadow:none;
  1092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1093. font-weight:400;
  1094. font-style:normal;
  1095. font-size:16px;
  1096. color:#FFFFFF;
  1097. }
  1098. #u52115 {
  1099. border-width:0px;
  1100. position:absolute;
  1101. left:39px;
  1102. top:357px;
  1103. width:33px;
  1104. height:22px;
  1105. display:flex;
  1106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1107. font-weight:400;
  1108. font-style:normal;
  1109. font-size:16px;
  1110. color:#FFFFFF;
  1111. }
  1112. #u52115 .text {
  1113. position:absolute;
  1114. align-self:flex-start;
  1115. padding:0px 0px 0px 0px;
  1116. box-sizing:border-box;
  1117. width:100%;
  1118. }
  1119. #u52115_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u52116_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u52116 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:361px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u52116 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u52116_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u52117 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u52118_div {
  1163. border-width:0px;
  1164. position:absolute;
  1165. left:0px;
  1166. top:0px;
  1167. width:33px;
  1168. height:22px;
  1169. background:inherit;
  1170. background-color:rgba(255, 255, 255, 0);
  1171. border:none;
  1172. border-radius:0px;
  1173. -moz-box-shadow:none;
  1174. -webkit-box-shadow:none;
  1175. box-shadow:none;
  1176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1177. font-weight:400;
  1178. font-style:normal;
  1179. font-size:16px;
  1180. color:#FFFFFF;
  1181. }
  1182. #u52118 {
  1183. border-width:0px;
  1184. position:absolute;
  1185. left:39px;
  1186. top:483px;
  1187. width:33px;
  1188. height:22px;
  1189. display:flex;
  1190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1191. font-weight:400;
  1192. font-style:normal;
  1193. font-size:16px;
  1194. color:#FFFFFF;
  1195. }
  1196. #u52118 .text {
  1197. position:absolute;
  1198. align-self:flex-start;
  1199. padding:0px 0px 0px 0px;
  1200. box-sizing:border-box;
  1201. width:100%;
  1202. }
  1203. #u52118_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u52119_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u52119 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:487px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u52119 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u52119_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u52120 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u52121_div {
  1247. border-width:0px;
  1248. position:absolute;
  1249. left:0px;
  1250. top:0px;
  1251. width:33px;
  1252. height:22px;
  1253. background:inherit;
  1254. background-color:rgba(255, 255, 255, 0);
  1255. border:none;
  1256. border-radius:0px;
  1257. -moz-box-shadow:none;
  1258. -webkit-box-shadow:none;
  1259. box-shadow:none;
  1260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1261. font-weight:400;
  1262. font-style:normal;
  1263. font-size:16px;
  1264. color:#FFFFFF;
  1265. }
  1266. #u52121 {
  1267. border-width:0px;
  1268. position:absolute;
  1269. left:39px;
  1270. top:525px;
  1271. width:33px;
  1272. height:22px;
  1273. display:flex;
  1274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1275. font-weight:400;
  1276. font-style:normal;
  1277. font-size:16px;
  1278. color:#FFFFFF;
  1279. }
  1280. #u52121 .text {
  1281. position:absolute;
  1282. align-self:flex-start;
  1283. padding:0px 0px 0px 0px;
  1284. box-sizing:border-box;
  1285. width:100%;
  1286. }
  1287. #u52121_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u52122_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u52122 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:529px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u52122 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u52122_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u52123_div {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:0px;
  1326. top:0px;
  1327. width:29px;
  1328. height:20px;
  1329. background:inherit;
  1330. background-color:rgba(255, 255, 255, 0);
  1331. border:none;
  1332. border-radius:25px;
  1333. -moz-box-shadow:none;
  1334. -webkit-box-shadow:none;
  1335. box-shadow:none;
  1336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1337. font-weight:400;
  1338. font-style:normal;
  1339. color:#FFFFFF;
  1340. }
  1341. #u52123 {
  1342. border-width:0px;
  1343. position:absolute;
  1344. left:52px;
  1345. top:1145px;
  1346. width:29px;
  1347. height:20px;
  1348. display:flex;
  1349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1350. font-weight:400;
  1351. font-style:normal;
  1352. color:#FFFFFF;
  1353. }
  1354. #u52123 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u52123_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u52124_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u52124 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u52124 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u52124_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u52125_div {
  1397. border-width:0px;
  1398. position:absolute;
  1399. left:0px;
  1400. top:0px;
  1401. width:29px;
  1402. height:20px;
  1403. background:inherit;
  1404. background-color:rgba(255, 255, 255, 0);
  1405. border:none;
  1406. border-radius:25px;
  1407. -moz-box-shadow:none;
  1408. -webkit-box-shadow:none;
  1409. box-shadow:none;
  1410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1411. font-weight:400;
  1412. font-style:normal;
  1413. color:#FFFFFF;
  1414. }
  1415. #u52125 {
  1416. border-width:0px;
  1417. position:absolute;
  1418. left:52px;
  1419. top:1187px;
  1420. width:29px;
  1421. height:20px;
  1422. display:flex;
  1423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1424. font-weight:400;
  1425. font-style:normal;
  1426. color:#FFFFFF;
  1427. }
  1428. #u52125 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u52125_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u52126_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u52126 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u52126 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u52126_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u52127 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u52128_div {
  1479. border-width:0px;
  1480. position:absolute;
  1481. left:0px;
  1482. top:0px;
  1483. width:33px;
  1484. height:22px;
  1485. background:inherit;
  1486. background-color:rgba(255, 255, 255, 0);
  1487. border:none;
  1488. border-radius:0px;
  1489. -moz-box-shadow:none;
  1490. -webkit-box-shadow:none;
  1491. box-shadow:none;
  1492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1493. font-weight:400;
  1494. font-style:normal;
  1495. font-size:16px;
  1496. color:#FFFFFF;
  1497. }
  1498. #u52128 {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:39px;
  1502. top:231px;
  1503. width:33px;
  1504. height:22px;
  1505. display:flex;
  1506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1507. font-weight:400;
  1508. font-style:normal;
  1509. font-size:16px;
  1510. color:#FFFFFF;
  1511. }
  1512. #u52128 .text {
  1513. position:absolute;
  1514. align-self:flex-start;
  1515. padding:0px 0px 0px 0px;
  1516. box-sizing:border-box;
  1517. width:100%;
  1518. }
  1519. #u52128_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u52129_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u52129 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u52129 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u52129_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u52130 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u52131_div {
  1563. border-width:0px;
  1564. position:absolute;
  1565. left:0px;
  1566. top:0px;
  1567. width:33px;
  1568. height:22px;
  1569. background:inherit;
  1570. background-color:rgba(255, 255, 255, 0);
  1571. border:none;
  1572. border-radius:0px;
  1573. -moz-box-shadow:none;
  1574. -webkit-box-shadow:none;
  1575. box-shadow:none;
  1576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1577. font-weight:400;
  1578. font-style:normal;
  1579. font-size:16px;
  1580. color:#FFFFFF;
  1581. }
  1582. #u52131 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:39px;
  1586. top:273px;
  1587. width:33px;
  1588. height:22px;
  1589. display:flex;
  1590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1591. font-weight:400;
  1592. font-style:normal;
  1593. font-size:16px;
  1594. color:#FFFFFF;
  1595. }
  1596. #u52131 .text {
  1597. position:absolute;
  1598. align-self:flex-start;
  1599. padding:0px 0px 0px 0px;
  1600. box-sizing:border-box;
  1601. width:100%;
  1602. }
  1603. #u52131_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u52132_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u52132 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:277px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u52132 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u52132_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u52133_div {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:1265px;
  1644. height:1193px;
  1645. background:inherit;
  1646. background-color:rgba(255, 255, 255, 1);
  1647. border:none;
  1648. border-radius:0px;
  1649. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1650. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1651. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1652. color:#1890FF;
  1653. }
  1654. #u52133 {
  1655. border-width:0px;
  1656. position:absolute;
  1657. left:329px;
  1658. top:50px;
  1659. width:1265px;
  1660. height:1193px;
  1661. display:flex;
  1662. color:#1890FF;
  1663. }
  1664. #u52133 .text {
  1665. position:absolute;
  1666. align-self:center;
  1667. padding:2px 2px 2px 2px;
  1668. box-sizing:border-box;
  1669. width:100%;
  1670. }
  1671. #u52133_text {
  1672. border-width:0px;
  1673. word-wrap:break-word;
  1674. text-transform:none;
  1675. visibility:hidden;
  1676. }
  1677. #u52134_div {
  1678. border-width:0px;
  1679. position:absolute;
  1680. left:0px;
  1681. top:0px;
  1682. width:109px;
  1683. height:50px;
  1684. background:inherit;
  1685. background-color:rgba(255, 255, 255, 0);
  1686. border:none;
  1687. border-left:0px;
  1688. border-top:0px;
  1689. border-right:0px;
  1690. border-radius:0px;
  1691. border-bottom-right-radius:0px;
  1692. border-bottom-left-radius:0px;
  1693. -moz-box-shadow:none;
  1694. -webkit-box-shadow:none;
  1695. box-shadow:none;
  1696. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1697. font-weight:500;
  1698. font-style:normal;
  1699. font-size:18px;
  1700. }
  1701. #u52134 {
  1702. border-width:0px;
  1703. position:absolute;
  1704. left:348px;
  1705. top:50px;
  1706. width:109px;
  1707. height:50px;
  1708. display:flex;
  1709. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1710. font-weight:500;
  1711. font-style:normal;
  1712. font-size:18px;
  1713. }
  1714. #u52134 .text {
  1715. position:absolute;
  1716. align-self:center;
  1717. padding:0px 0px 0px 0px;
  1718. box-sizing:border-box;
  1719. width:100%;
  1720. }
  1721. #u52134_text {
  1722. border-width:0px;
  1723. white-space:nowrap;
  1724. text-transform:none;
  1725. }
  1726. #u52135 {
  1727. border-width:0px;
  1728. position:absolute;
  1729. left:348px;
  1730. top:201px;
  1731. width:1227px;
  1732. height:364px;
  1733. }
  1734. #u52136_img {
  1735. border-width:0px;
  1736. position:absolute;
  1737. left:0px;
  1738. top:0px;
  1739. width:129px;
  1740. height:39px;
  1741. }
  1742. #u52136 {
  1743. border-width:0px;
  1744. position:absolute;
  1745. left:0px;
  1746. top:0px;
  1747. width:129px;
  1748. height:39px;
  1749. display:flex;
  1750. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1751. font-weight:400;
  1752. font-style:normal;
  1753. font-size:12px;
  1754. color:#FFFFFF;
  1755. }
  1756. #u52136 .text {
  1757. position:absolute;
  1758. align-self:center;
  1759. padding:2px 2px 2px 0px;
  1760. box-sizing:border-box;
  1761. width:100%;
  1762. }
  1763. #u52136_text {
  1764. border-width:0px;
  1765. word-wrap:break-word;
  1766. text-transform:none;
  1767. }
  1768. #u52137_img {
  1769. border-width:0px;
  1770. position:absolute;
  1771. left:0px;
  1772. top:0px;
  1773. width:129px;
  1774. height:39px;
  1775. }
  1776. #u52137 {
  1777. border-width:0px;
  1778. position:absolute;
  1779. left:129px;
  1780. top:0px;
  1781. width:129px;
  1782. height:39px;
  1783. display:flex;
  1784. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1785. font-weight:400;
  1786. font-style:normal;
  1787. font-size:12px;
  1788. color:#FFFFFF;
  1789. }
  1790. #u52137 .text {
  1791. position:absolute;
  1792. align-self:center;
  1793. padding:2px 2px 2px 0px;
  1794. box-sizing:border-box;
  1795. width:100%;
  1796. }
  1797. #u52137_text {
  1798. border-width:0px;
  1799. word-wrap:break-word;
  1800. text-transform:none;
  1801. }
  1802. #u52138_img {
  1803. border-width:0px;
  1804. position:absolute;
  1805. left:0px;
  1806. top:0px;
  1807. width:129px;
  1808. height:39px;
  1809. }
  1810. #u52138 {
  1811. border-width:0px;
  1812. position:absolute;
  1813. left:258px;
  1814. top:0px;
  1815. width:129px;
  1816. height:39px;
  1817. display:flex;
  1818. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1819. font-weight:400;
  1820. font-style:normal;
  1821. font-size:12px;
  1822. color:#FFFFFF;
  1823. }
  1824. #u52138 .text {
  1825. position:absolute;
  1826. align-self:center;
  1827. padding:2px 2px 2px 0px;
  1828. box-sizing:border-box;
  1829. width:100%;
  1830. }
  1831. #u52138_text {
  1832. border-width:0px;
  1833. word-wrap:break-word;
  1834. text-transform:none;
  1835. }
  1836. #u52139_img {
  1837. border-width:0px;
  1838. position:absolute;
  1839. left:0px;
  1840. top:0px;
  1841. width:106px;
  1842. height:39px;
  1843. }
  1844. #u52139 {
  1845. border-width:0px;
  1846. position:absolute;
  1847. left:387px;
  1848. top:0px;
  1849. width:106px;
  1850. height:39px;
  1851. display:flex;
  1852. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1853. font-weight:400;
  1854. font-style:normal;
  1855. font-size:12px;
  1856. color:#FFFFFF;
  1857. }
  1858. #u52139 .text {
  1859. position:absolute;
  1860. align-self:center;
  1861. padding:2px 2px 2px 0px;
  1862. box-sizing:border-box;
  1863. width:100%;
  1864. }
  1865. #u52139_text {
  1866. border-width:0px;
  1867. word-wrap:break-word;
  1868. text-transform:none;
  1869. }
  1870. #u52140_img {
  1871. border-width:0px;
  1872. position:absolute;
  1873. left:0px;
  1874. top:0px;
  1875. width:123px;
  1876. height:39px;
  1877. }
  1878. #u52140 {
  1879. border-width:0px;
  1880. position:absolute;
  1881. left:493px;
  1882. top:0px;
  1883. width:123px;
  1884. height:39px;
  1885. display:flex;
  1886. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1887. font-weight:400;
  1888. font-style:normal;
  1889. font-size:12px;
  1890. color:#FFFFFF;
  1891. }
  1892. #u52140 .text {
  1893. position:absolute;
  1894. align-self:center;
  1895. padding:2px 2px 2px 0px;
  1896. box-sizing:border-box;
  1897. width:100%;
  1898. }
  1899. #u52140_text {
  1900. border-width:0px;
  1901. word-wrap:break-word;
  1902. text-transform:none;
  1903. }
  1904. #u52141_img {
  1905. border-width:0px;
  1906. position:absolute;
  1907. left:0px;
  1908. top:0px;
  1909. width:123px;
  1910. height:39px;
  1911. }
  1912. #u52141 {
  1913. border-width:0px;
  1914. position:absolute;
  1915. left:616px;
  1916. top:0px;
  1917. width:123px;
  1918. height:39px;
  1919. display:flex;
  1920. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1921. font-weight:400;
  1922. font-style:normal;
  1923. font-size:12px;
  1924. color:#FFFFFF;
  1925. }
  1926. #u52141 .text {
  1927. position:absolute;
  1928. align-self:center;
  1929. padding:2px 2px 2px 0px;
  1930. box-sizing:border-box;
  1931. width:100%;
  1932. }
  1933. #u52141_text {
  1934. border-width:0px;
  1935. word-wrap:break-word;
  1936. text-transform:none;
  1937. }
  1938. #u52142_img {
  1939. border-width:0px;
  1940. position:absolute;
  1941. left:0px;
  1942. top:0px;
  1943. width:123px;
  1944. height:39px;
  1945. }
  1946. #u52142 {
  1947. border-width:0px;
  1948. position:absolute;
  1949. left:739px;
  1950. top:0px;
  1951. width:123px;
  1952. height:39px;
  1953. display:flex;
  1954. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1955. font-weight:400;
  1956. font-style:normal;
  1957. font-size:12px;
  1958. color:#FFFFFF;
  1959. }
  1960. #u52142 .text {
  1961. position:absolute;
  1962. align-self:center;
  1963. padding:2px 2px 2px 0px;
  1964. box-sizing:border-box;
  1965. width:100%;
  1966. }
  1967. #u52142_text {
  1968. border-width:0px;
  1969. word-wrap:break-word;
  1970. text-transform:none;
  1971. }
  1972. #u52143_img {
  1973. border-width:0px;
  1974. position:absolute;
  1975. left:0px;
  1976. top:0px;
  1977. width:122px;
  1978. height:39px;
  1979. }
  1980. #u52143 {
  1981. border-width:0px;
  1982. position:absolute;
  1983. left:862px;
  1984. top:0px;
  1985. width:122px;
  1986. height:39px;
  1987. display:flex;
  1988. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1989. font-weight:400;
  1990. font-style:normal;
  1991. font-size:12px;
  1992. color:#FFFFFF;
  1993. }
  1994. #u52143 .text {
  1995. position:absolute;
  1996. align-self:center;
  1997. padding:2px 2px 2px 0px;
  1998. box-sizing:border-box;
  1999. width:100%;
  2000. }
  2001. #u52143_text {
  2002. border-width:0px;
  2003. word-wrap:break-word;
  2004. text-transform:none;
  2005. }
  2006. #u52144_img {
  2007. border-width:0px;
  2008. position:absolute;
  2009. left:0px;
  2010. top:0px;
  2011. width:123px;
  2012. height:39px;
  2013. }
  2014. #u52144 {
  2015. border-width:0px;
  2016. position:absolute;
  2017. left:984px;
  2018. top:0px;
  2019. width:123px;
  2020. height:39px;
  2021. display:flex;
  2022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2023. font-weight:400;
  2024. font-style:normal;
  2025. font-size:12px;
  2026. color:#FFFFFF;
  2027. }
  2028. #u52144 .text {
  2029. position:absolute;
  2030. align-self:center;
  2031. padding:2px 2px 2px 0px;
  2032. box-sizing:border-box;
  2033. width:100%;
  2034. }
  2035. #u52144_text {
  2036. border-width:0px;
  2037. word-wrap:break-word;
  2038. text-transform:none;
  2039. }
  2040. #u52145_img {
  2041. border-width:0px;
  2042. position:absolute;
  2043. left:0px;
  2044. top:0px;
  2045. width:120px;
  2046. height:39px;
  2047. }
  2048. #u52145 {
  2049. border-width:0px;
  2050. position:absolute;
  2051. left:1107px;
  2052. top:0px;
  2053. width:120px;
  2054. height:39px;
  2055. display:flex;
  2056. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2057. font-weight:400;
  2058. font-style:normal;
  2059. font-size:12px;
  2060. color:#FFFFFF;
  2061. }
  2062. #u52145 .text {
  2063. position:absolute;
  2064. align-self:center;
  2065. padding:2px 2px 2px 0px;
  2066. box-sizing:border-box;
  2067. width:100%;
  2068. }
  2069. #u52145_text {
  2070. border-width:0px;
  2071. word-wrap:break-word;
  2072. text-transform:none;
  2073. }
  2074. #u52146_img {
  2075. border-width:0px;
  2076. position:absolute;
  2077. left:0px;
  2078. top:0px;
  2079. width:129px;
  2080. height:36px;
  2081. }
  2082. #u52146 {
  2083. border-width:0px;
  2084. position:absolute;
  2085. left:0px;
  2086. top:39px;
  2087. width:129px;
  2088. height:36px;
  2089. display:flex;
  2090. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2091. font-weight:400;
  2092. font-style:normal;
  2093. font-size:12px;
  2094. }
  2095. #u52146 .text {
  2096. position:absolute;
  2097. align-self:center;
  2098. padding:2px 2px 2px 0px;
  2099. box-sizing:border-box;
  2100. width:100%;
  2101. }
  2102. #u52146_text {
  2103. border-width:0px;
  2104. word-wrap:break-word;
  2105. text-transform:none;
  2106. visibility:hidden;
  2107. }
  2108. #u52147_img {
  2109. border-width:0px;
  2110. position:absolute;
  2111. left:0px;
  2112. top:0px;
  2113. width:129px;
  2114. height:36px;
  2115. }
  2116. #u52147 {
  2117. border-width:0px;
  2118. position:absolute;
  2119. left:129px;
  2120. top:39px;
  2121. width:129px;
  2122. height:36px;
  2123. display:flex;
  2124. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2125. font-weight:400;
  2126. font-style:normal;
  2127. font-size:12px;
  2128. }
  2129. #u52147 .text {
  2130. position:absolute;
  2131. align-self:center;
  2132. padding:2px 2px 2px 0px;
  2133. box-sizing:border-box;
  2134. width:100%;
  2135. }
  2136. #u52147_text {
  2137. border-width:0px;
  2138. word-wrap:break-word;
  2139. text-transform:none;
  2140. visibility:hidden;
  2141. }
  2142. #u52148_img {
  2143. border-width:0px;
  2144. position:absolute;
  2145. left:0px;
  2146. top:0px;
  2147. width:129px;
  2148. height:36px;
  2149. }
  2150. #u52148 {
  2151. border-width:0px;
  2152. position:absolute;
  2153. left:258px;
  2154. top:39px;
  2155. width:129px;
  2156. height:36px;
  2157. display:flex;
  2158. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2159. font-weight:400;
  2160. font-style:normal;
  2161. font-size:12px;
  2162. }
  2163. #u52148 .text {
  2164. position:absolute;
  2165. align-self:center;
  2166. padding:2px 2px 2px 0px;
  2167. box-sizing:border-box;
  2168. width:100%;
  2169. }
  2170. #u52148_text {
  2171. border-width:0px;
  2172. word-wrap:break-word;
  2173. text-transform:none;
  2174. visibility:hidden;
  2175. }
  2176. #u52149_img {
  2177. border-width:0px;
  2178. position:absolute;
  2179. left:0px;
  2180. top:0px;
  2181. width:106px;
  2182. height:36px;
  2183. }
  2184. #u52149 {
  2185. border-width:0px;
  2186. position:absolute;
  2187. left:387px;
  2188. top:39px;
  2189. width:106px;
  2190. height:36px;
  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. }
  2197. #u52149 .text {
  2198. position:absolute;
  2199. align-self:center;
  2200. padding:2px 2px 2px 0px;
  2201. box-sizing:border-box;
  2202. width:100%;
  2203. }
  2204. #u52149_text {
  2205. border-width:0px;
  2206. word-wrap:break-word;
  2207. text-transform:none;
  2208. }
  2209. #u52150_img {
  2210. border-width:0px;
  2211. position:absolute;
  2212. left:0px;
  2213. top:0px;
  2214. width:123px;
  2215. height:36px;
  2216. }
  2217. #u52150 {
  2218. border-width:0px;
  2219. position:absolute;
  2220. left:493px;
  2221. top:39px;
  2222. width:123px;
  2223. height:36px;
  2224. display:flex;
  2225. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2226. font-weight:400;
  2227. font-style:normal;
  2228. font-size:12px;
  2229. }
  2230. #u52150 .text {
  2231. position:absolute;
  2232. align-self:center;
  2233. padding:2px 2px 2px 0px;
  2234. box-sizing:border-box;
  2235. width:100%;
  2236. }
  2237. #u52150_text {
  2238. border-width:0px;
  2239. word-wrap:break-word;
  2240. text-transform:none;
  2241. visibility:hidden;
  2242. }
  2243. #u52151_img {
  2244. border-width:0px;
  2245. position:absolute;
  2246. left:0px;
  2247. top:0px;
  2248. width:123px;
  2249. height:36px;
  2250. }
  2251. #u52151 {
  2252. border-width:0px;
  2253. position:absolute;
  2254. left:616px;
  2255. top:39px;
  2256. width:123px;
  2257. height:36px;
  2258. display:flex;
  2259. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2260. font-weight:400;
  2261. font-style:normal;
  2262. font-size:12px;
  2263. }
  2264. #u52151 .text {
  2265. position:absolute;
  2266. align-self:center;
  2267. padding:2px 2px 2px 0px;
  2268. box-sizing:border-box;
  2269. width:100%;
  2270. }
  2271. #u52151_text {
  2272. border-width:0px;
  2273. word-wrap:break-word;
  2274. text-transform:none;
  2275. visibility:hidden;
  2276. }
  2277. #u52152_img {
  2278. border-width:0px;
  2279. position:absolute;
  2280. left:0px;
  2281. top:0px;
  2282. width:123px;
  2283. height:36px;
  2284. }
  2285. #u52152 {
  2286. border-width:0px;
  2287. position:absolute;
  2288. left:739px;
  2289. top:39px;
  2290. width:123px;
  2291. height:36px;
  2292. display:flex;
  2293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2294. font-weight:400;
  2295. font-style:normal;
  2296. font-size:12px;
  2297. }
  2298. #u52152 .text {
  2299. position:absolute;
  2300. align-self:center;
  2301. padding:2px 2px 2px 0px;
  2302. box-sizing:border-box;
  2303. width:100%;
  2304. }
  2305. #u52152_text {
  2306. border-width:0px;
  2307. word-wrap:break-word;
  2308. text-transform:none;
  2309. visibility:hidden;
  2310. }
  2311. #u52153_img {
  2312. border-width:0px;
  2313. position:absolute;
  2314. left:0px;
  2315. top:0px;
  2316. width:122px;
  2317. height:36px;
  2318. }
  2319. #u52153 {
  2320. border-width:0px;
  2321. position:absolute;
  2322. left:862px;
  2323. top:39px;
  2324. width:122px;
  2325. height:36px;
  2326. display:flex;
  2327. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2328. font-weight:400;
  2329. font-style:normal;
  2330. font-size:12px;
  2331. }
  2332. #u52153 .text {
  2333. position:absolute;
  2334. align-self:center;
  2335. padding:2px 2px 2px 0px;
  2336. box-sizing:border-box;
  2337. width:100%;
  2338. }
  2339. #u52153_text {
  2340. border-width:0px;
  2341. word-wrap:break-word;
  2342. text-transform:none;
  2343. visibility:hidden;
  2344. }
  2345. #u52154_img {
  2346. border-width:0px;
  2347. position:absolute;
  2348. left:0px;
  2349. top:0px;
  2350. width:123px;
  2351. height:36px;
  2352. }
  2353. #u52154 {
  2354. border-width:0px;
  2355. position:absolute;
  2356. left:984px;
  2357. top:39px;
  2358. width:123px;
  2359. height:36px;
  2360. display:flex;
  2361. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2362. font-weight:400;
  2363. font-style:normal;
  2364. font-size:12px;
  2365. }
  2366. #u52154 .text {
  2367. position:absolute;
  2368. align-self:center;
  2369. padding:2px 2px 2px 0px;
  2370. box-sizing:border-box;
  2371. width:100%;
  2372. }
  2373. #u52154_text {
  2374. border-width:0px;
  2375. word-wrap:break-word;
  2376. text-transform:none;
  2377. visibility:hidden;
  2378. }
  2379. #u52155_img {
  2380. border-width:0px;
  2381. position:absolute;
  2382. left:0px;
  2383. top:0px;
  2384. width:120px;
  2385. height:36px;
  2386. }
  2387. #u52155 {
  2388. border-width:0px;
  2389. position:absolute;
  2390. left:1107px;
  2391. top:39px;
  2392. width:120px;
  2393. height:36px;
  2394. display:flex;
  2395. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2396. font-weight:400;
  2397. font-style:normal;
  2398. font-size:12px;
  2399. }
  2400. #u52155 .text {
  2401. position:absolute;
  2402. align-self:center;
  2403. padding:2px 2px 2px 0px;
  2404. box-sizing:border-box;
  2405. width:100%;
  2406. }
  2407. #u52155_text {
  2408. border-width:0px;
  2409. word-wrap:break-word;
  2410. text-transform:none;
  2411. visibility:hidden;
  2412. }
  2413. #u52156_img {
  2414. border-width:0px;
  2415. position:absolute;
  2416. left:0px;
  2417. top:0px;
  2418. width:129px;
  2419. height:38px;
  2420. }
  2421. #u52156 {
  2422. border-width:0px;
  2423. position:absolute;
  2424. left:0px;
  2425. top:75px;
  2426. width:129px;
  2427. height:38px;
  2428. display:flex;
  2429. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2430. font-weight:400;
  2431. font-style:normal;
  2432. font-size:12px;
  2433. }
  2434. #u52156 .text {
  2435. position:absolute;
  2436. align-self:center;
  2437. padding:2px 2px 2px 0px;
  2438. box-sizing:border-box;
  2439. width:100%;
  2440. }
  2441. #u52156_text {
  2442. border-width:0px;
  2443. word-wrap:break-word;
  2444. text-transform:none;
  2445. visibility:hidden;
  2446. }
  2447. #u52157_img {
  2448. border-width:0px;
  2449. position:absolute;
  2450. left:0px;
  2451. top:0px;
  2452. width:129px;
  2453. height:38px;
  2454. }
  2455. #u52157 {
  2456. border-width:0px;
  2457. position:absolute;
  2458. left:129px;
  2459. top:75px;
  2460. width:129px;
  2461. height:38px;
  2462. display:flex;
  2463. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2464. font-weight:400;
  2465. font-style:normal;
  2466. font-size:12px;
  2467. }
  2468. #u52157 .text {
  2469. position:absolute;
  2470. align-self:center;
  2471. padding:2px 2px 2px 0px;
  2472. box-sizing:border-box;
  2473. width:100%;
  2474. }
  2475. #u52157_text {
  2476. border-width:0px;
  2477. word-wrap:break-word;
  2478. text-transform:none;
  2479. visibility:hidden;
  2480. }
  2481. #u52158_img {
  2482. border-width:0px;
  2483. position:absolute;
  2484. left:0px;
  2485. top:0px;
  2486. width:129px;
  2487. height:38px;
  2488. }
  2489. #u52158 {
  2490. border-width:0px;
  2491. position:absolute;
  2492. left:258px;
  2493. top:75px;
  2494. width:129px;
  2495. height:38px;
  2496. display:flex;
  2497. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2498. font-weight:400;
  2499. font-style:normal;
  2500. font-size:12px;
  2501. }
  2502. #u52158 .text {
  2503. position:absolute;
  2504. align-self:center;
  2505. padding:2px 2px 2px 0px;
  2506. box-sizing:border-box;
  2507. width:100%;
  2508. }
  2509. #u52158_text {
  2510. border-width:0px;
  2511. word-wrap:break-word;
  2512. text-transform:none;
  2513. visibility:hidden;
  2514. }
  2515. #u52159_img {
  2516. border-width:0px;
  2517. position:absolute;
  2518. left:0px;
  2519. top:0px;
  2520. width:106px;
  2521. height:38px;
  2522. }
  2523. #u52159 {
  2524. border-width:0px;
  2525. position:absolute;
  2526. left:387px;
  2527. top:75px;
  2528. width:106px;
  2529. height:38px;
  2530. display:flex;
  2531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2532. font-weight:400;
  2533. font-style:normal;
  2534. font-size:12px;
  2535. }
  2536. #u52159 .text {
  2537. position:absolute;
  2538. align-self:center;
  2539. padding:2px 2px 2px 0px;
  2540. box-sizing:border-box;
  2541. width:100%;
  2542. }
  2543. #u52159_text {
  2544. border-width:0px;
  2545. word-wrap:break-word;
  2546. text-transform:none;
  2547. }
  2548. #u52160_img {
  2549. border-width:0px;
  2550. position:absolute;
  2551. left:0px;
  2552. top:0px;
  2553. width:123px;
  2554. height:38px;
  2555. }
  2556. #u52160 {
  2557. border-width:0px;
  2558. position:absolute;
  2559. left:493px;
  2560. top:75px;
  2561. width:123px;
  2562. height:38px;
  2563. display:flex;
  2564. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2565. font-weight:400;
  2566. font-style:normal;
  2567. font-size:12px;
  2568. }
  2569. #u52160 .text {
  2570. position:absolute;
  2571. align-self:center;
  2572. padding:2px 2px 2px 0px;
  2573. box-sizing:border-box;
  2574. width:100%;
  2575. }
  2576. #u52160_text {
  2577. border-width:0px;
  2578. word-wrap:break-word;
  2579. text-transform:none;
  2580. visibility:hidden;
  2581. }
  2582. #u52161_img {
  2583. border-width:0px;
  2584. position:absolute;
  2585. left:0px;
  2586. top:0px;
  2587. width:123px;
  2588. height:38px;
  2589. }
  2590. #u52161 {
  2591. border-width:0px;
  2592. position:absolute;
  2593. left:616px;
  2594. top:75px;
  2595. width:123px;
  2596. height:38px;
  2597. display:flex;
  2598. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2599. font-weight:400;
  2600. font-style:normal;
  2601. font-size:12px;
  2602. }
  2603. #u52161 .text {
  2604. position:absolute;
  2605. align-self:center;
  2606. padding:2px 2px 2px 0px;
  2607. box-sizing:border-box;
  2608. width:100%;
  2609. }
  2610. #u52161_text {
  2611. border-width:0px;
  2612. word-wrap:break-word;
  2613. text-transform:none;
  2614. visibility:hidden;
  2615. }
  2616. #u52162_img {
  2617. border-width:0px;
  2618. position:absolute;
  2619. left:0px;
  2620. top:0px;
  2621. width:123px;
  2622. height:38px;
  2623. }
  2624. #u52162 {
  2625. border-width:0px;
  2626. position:absolute;
  2627. left:739px;
  2628. top:75px;
  2629. width:123px;
  2630. height:38px;
  2631. display:flex;
  2632. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2633. font-weight:400;
  2634. font-style:normal;
  2635. font-size:12px;
  2636. }
  2637. #u52162 .text {
  2638. position:absolute;
  2639. align-self:center;
  2640. padding:2px 2px 2px 0px;
  2641. box-sizing:border-box;
  2642. width:100%;
  2643. }
  2644. #u52162_text {
  2645. border-width:0px;
  2646. word-wrap:break-word;
  2647. text-transform:none;
  2648. visibility:hidden;
  2649. }
  2650. #u52163_img {
  2651. border-width:0px;
  2652. position:absolute;
  2653. left:0px;
  2654. top:0px;
  2655. width:122px;
  2656. height:38px;
  2657. }
  2658. #u52163 {
  2659. border-width:0px;
  2660. position:absolute;
  2661. left:862px;
  2662. top:75px;
  2663. width:122px;
  2664. height:38px;
  2665. display:flex;
  2666. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2667. font-weight:400;
  2668. font-style:normal;
  2669. font-size:12px;
  2670. }
  2671. #u52163 .text {
  2672. position:absolute;
  2673. align-self:center;
  2674. padding:2px 2px 2px 0px;
  2675. box-sizing:border-box;
  2676. width:100%;
  2677. }
  2678. #u52163_text {
  2679. border-width:0px;
  2680. word-wrap:break-word;
  2681. text-transform:none;
  2682. visibility:hidden;
  2683. }
  2684. #u52164_img {
  2685. border-width:0px;
  2686. position:absolute;
  2687. left:0px;
  2688. top:0px;
  2689. width:123px;
  2690. height:38px;
  2691. }
  2692. #u52164 {
  2693. border-width:0px;
  2694. position:absolute;
  2695. left:984px;
  2696. top:75px;
  2697. width:123px;
  2698. height:38px;
  2699. display:flex;
  2700. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2701. font-weight:400;
  2702. font-style:normal;
  2703. font-size:12px;
  2704. }
  2705. #u52164 .text {
  2706. position:absolute;
  2707. align-self:center;
  2708. padding:2px 2px 2px 0px;
  2709. box-sizing:border-box;
  2710. width:100%;
  2711. }
  2712. #u52164_text {
  2713. border-width:0px;
  2714. word-wrap:break-word;
  2715. text-transform:none;
  2716. visibility:hidden;
  2717. }
  2718. #u52165_img {
  2719. border-width:0px;
  2720. position:absolute;
  2721. left:0px;
  2722. top:0px;
  2723. width:120px;
  2724. height:38px;
  2725. }
  2726. #u52165 {
  2727. border-width:0px;
  2728. position:absolute;
  2729. left:1107px;
  2730. top:75px;
  2731. width:120px;
  2732. height:38px;
  2733. display:flex;
  2734. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2735. font-weight:400;
  2736. font-style:normal;
  2737. font-size:12px;
  2738. }
  2739. #u52165 .text {
  2740. position:absolute;
  2741. align-self:center;
  2742. padding:2px 2px 2px 0px;
  2743. box-sizing:border-box;
  2744. width:100%;
  2745. }
  2746. #u52165_text {
  2747. border-width:0px;
  2748. word-wrap:break-word;
  2749. text-transform:none;
  2750. visibility:hidden;
  2751. }
  2752. #u52166_img {
  2753. border-width:0px;
  2754. position:absolute;
  2755. left:0px;
  2756. top:0px;
  2757. width:129px;
  2758. height:38px;
  2759. }
  2760. #u52166 {
  2761. border-width:0px;
  2762. position:absolute;
  2763. left:0px;
  2764. top:113px;
  2765. width:129px;
  2766. height:38px;
  2767. display:flex;
  2768. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2769. font-weight:400;
  2770. font-style:normal;
  2771. font-size:12px;
  2772. }
  2773. #u52166 .text {
  2774. position:absolute;
  2775. align-self:center;
  2776. padding:2px 2px 2px 0px;
  2777. box-sizing:border-box;
  2778. width:100%;
  2779. }
  2780. #u52166_text {
  2781. border-width:0px;
  2782. word-wrap:break-word;
  2783. text-transform:none;
  2784. visibility:hidden;
  2785. }
  2786. #u52167_img {
  2787. border-width:0px;
  2788. position:absolute;
  2789. left:0px;
  2790. top:0px;
  2791. width:129px;
  2792. height:38px;
  2793. }
  2794. #u52167 {
  2795. border-width:0px;
  2796. position:absolute;
  2797. left:129px;
  2798. top:113px;
  2799. width:129px;
  2800. height:38px;
  2801. display:flex;
  2802. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2803. font-weight:400;
  2804. font-style:normal;
  2805. font-size:12px;
  2806. }
  2807. #u52167 .text {
  2808. position:absolute;
  2809. align-self:center;
  2810. padding:2px 2px 2px 0px;
  2811. box-sizing:border-box;
  2812. width:100%;
  2813. }
  2814. #u52167_text {
  2815. border-width:0px;
  2816. word-wrap:break-word;
  2817. text-transform:none;
  2818. visibility:hidden;
  2819. }
  2820. #u52168_img {
  2821. border-width:0px;
  2822. position:absolute;
  2823. left:0px;
  2824. top:0px;
  2825. width:129px;
  2826. height:38px;
  2827. }
  2828. #u52168 {
  2829. border-width:0px;
  2830. position:absolute;
  2831. left:258px;
  2832. top:113px;
  2833. width:129px;
  2834. height:38px;
  2835. display:flex;
  2836. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2837. font-weight:400;
  2838. font-style:normal;
  2839. font-size:12px;
  2840. }
  2841. #u52168 .text {
  2842. position:absolute;
  2843. align-self:center;
  2844. padding:2px 2px 2px 0px;
  2845. box-sizing:border-box;
  2846. width:100%;
  2847. }
  2848. #u52168_text {
  2849. border-width:0px;
  2850. word-wrap:break-word;
  2851. text-transform:none;
  2852. visibility:hidden;
  2853. }
  2854. #u52169_img {
  2855. border-width:0px;
  2856. position:absolute;
  2857. left:0px;
  2858. top:0px;
  2859. width:106px;
  2860. height:38px;
  2861. }
  2862. #u52169 {
  2863. border-width:0px;
  2864. position:absolute;
  2865. left:387px;
  2866. top:113px;
  2867. width:106px;
  2868. height:38px;
  2869. display:flex;
  2870. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2871. font-weight:400;
  2872. font-style:normal;
  2873. font-size:12px;
  2874. }
  2875. #u52169 .text {
  2876. position:absolute;
  2877. align-self:center;
  2878. padding:2px 2px 2px 0px;
  2879. box-sizing:border-box;
  2880. width:100%;
  2881. }
  2882. #u52169_text {
  2883. border-width:0px;
  2884. word-wrap:break-word;
  2885. text-transform:none;
  2886. visibility:hidden;
  2887. }
  2888. #u52170_img {
  2889. border-width:0px;
  2890. position:absolute;
  2891. left:0px;
  2892. top:0px;
  2893. width:123px;
  2894. height:38px;
  2895. }
  2896. #u52170 {
  2897. border-width:0px;
  2898. position:absolute;
  2899. left:493px;
  2900. top:113px;
  2901. width:123px;
  2902. height:38px;
  2903. display:flex;
  2904. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2905. font-weight:400;
  2906. font-style:normal;
  2907. font-size:12px;
  2908. }
  2909. #u52170 .text {
  2910. position:absolute;
  2911. align-self:center;
  2912. padding:2px 2px 2px 0px;
  2913. box-sizing:border-box;
  2914. width:100%;
  2915. }
  2916. #u52170_text {
  2917. border-width:0px;
  2918. word-wrap:break-word;
  2919. text-transform:none;
  2920. visibility:hidden;
  2921. }
  2922. #u52171_img {
  2923. border-width:0px;
  2924. position:absolute;
  2925. left:0px;
  2926. top:0px;
  2927. width:123px;
  2928. height:38px;
  2929. }
  2930. #u52171 {
  2931. border-width:0px;
  2932. position:absolute;
  2933. left:616px;
  2934. top:113px;
  2935. width:123px;
  2936. height:38px;
  2937. display:flex;
  2938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2939. font-weight:400;
  2940. font-style:normal;
  2941. font-size:12px;
  2942. }
  2943. #u52171 .text {
  2944. position:absolute;
  2945. align-self:center;
  2946. padding:2px 2px 2px 0px;
  2947. box-sizing:border-box;
  2948. width:100%;
  2949. }
  2950. #u52171_text {
  2951. border-width:0px;
  2952. word-wrap:break-word;
  2953. text-transform:none;
  2954. visibility:hidden;
  2955. }
  2956. #u52172_img {
  2957. border-width:0px;
  2958. position:absolute;
  2959. left:0px;
  2960. top:0px;
  2961. width:123px;
  2962. height:38px;
  2963. }
  2964. #u52172 {
  2965. border-width:0px;
  2966. position:absolute;
  2967. left:739px;
  2968. top:113px;
  2969. width:123px;
  2970. height:38px;
  2971. display:flex;
  2972. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2973. font-weight:400;
  2974. font-style:normal;
  2975. font-size:12px;
  2976. }
  2977. #u52172 .text {
  2978. position:absolute;
  2979. align-self:center;
  2980. padding:2px 2px 2px 0px;
  2981. box-sizing:border-box;
  2982. width:100%;
  2983. }
  2984. #u52172_text {
  2985. border-width:0px;
  2986. word-wrap:break-word;
  2987. text-transform:none;
  2988. visibility:hidden;
  2989. }
  2990. #u52173_img {
  2991. border-width:0px;
  2992. position:absolute;
  2993. left:0px;
  2994. top:0px;
  2995. width:122px;
  2996. height:38px;
  2997. }
  2998. #u52173 {
  2999. border-width:0px;
  3000. position:absolute;
  3001. left:862px;
  3002. top:113px;
  3003. width:122px;
  3004. height:38px;
  3005. display:flex;
  3006. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3007. font-weight:400;
  3008. font-style:normal;
  3009. font-size:12px;
  3010. }
  3011. #u52173 .text {
  3012. position:absolute;
  3013. align-self:center;
  3014. padding:2px 2px 2px 0px;
  3015. box-sizing:border-box;
  3016. width:100%;
  3017. }
  3018. #u52173_text {
  3019. border-width:0px;
  3020. word-wrap:break-word;
  3021. text-transform:none;
  3022. visibility:hidden;
  3023. }
  3024. #u52174_img {
  3025. border-width:0px;
  3026. position:absolute;
  3027. left:0px;
  3028. top:0px;
  3029. width:123px;
  3030. height:38px;
  3031. }
  3032. #u52174 {
  3033. border-width:0px;
  3034. position:absolute;
  3035. left:984px;
  3036. top:113px;
  3037. width:123px;
  3038. height:38px;
  3039. display:flex;
  3040. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3041. font-weight:400;
  3042. font-style:normal;
  3043. font-size:12px;
  3044. }
  3045. #u52174 .text {
  3046. position:absolute;
  3047. align-self:center;
  3048. padding:2px 2px 2px 0px;
  3049. box-sizing:border-box;
  3050. width:100%;
  3051. }
  3052. #u52174_text {
  3053. border-width:0px;
  3054. word-wrap:break-word;
  3055. text-transform:none;
  3056. visibility:hidden;
  3057. }
  3058. #u52175_img {
  3059. border-width:0px;
  3060. position:absolute;
  3061. left:0px;
  3062. top:0px;
  3063. width:120px;
  3064. height:38px;
  3065. }
  3066. #u52175 {
  3067. border-width:0px;
  3068. position:absolute;
  3069. left:1107px;
  3070. top:113px;
  3071. width:120px;
  3072. height:38px;
  3073. display:flex;
  3074. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3075. font-weight:400;
  3076. font-style:normal;
  3077. font-size:12px;
  3078. }
  3079. #u52175 .text {
  3080. position:absolute;
  3081. align-self:center;
  3082. padding:2px 2px 2px 0px;
  3083. box-sizing:border-box;
  3084. width:100%;
  3085. }
  3086. #u52175_text {
  3087. border-width:0px;
  3088. word-wrap:break-word;
  3089. text-transform:none;
  3090. visibility:hidden;
  3091. }
  3092. #u52176_img {
  3093. border-width:0px;
  3094. position:absolute;
  3095. left:0px;
  3096. top:0px;
  3097. width:129px;
  3098. height:38px;
  3099. }
  3100. #u52176 {
  3101. border-width:0px;
  3102. position:absolute;
  3103. left:0px;
  3104. top:151px;
  3105. width:129px;
  3106. height:38px;
  3107. display:flex;
  3108. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3109. font-weight:400;
  3110. font-style:normal;
  3111. font-size:12px;
  3112. }
  3113. #u52176 .text {
  3114. position:absolute;
  3115. align-self:center;
  3116. padding:2px 2px 2px 0px;
  3117. box-sizing:border-box;
  3118. width:100%;
  3119. }
  3120. #u52176_text {
  3121. border-width:0px;
  3122. word-wrap:break-word;
  3123. text-transform:none;
  3124. visibility:hidden;
  3125. }
  3126. #u52177_img {
  3127. border-width:0px;
  3128. position:absolute;
  3129. left:0px;
  3130. top:0px;
  3131. width:129px;
  3132. height:38px;
  3133. }
  3134. #u52177 {
  3135. border-width:0px;
  3136. position:absolute;
  3137. left:129px;
  3138. top:151px;
  3139. width:129px;
  3140. height:38px;
  3141. display:flex;
  3142. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3143. font-weight:400;
  3144. font-style:normal;
  3145. font-size:12px;
  3146. }
  3147. #u52177 .text {
  3148. position:absolute;
  3149. align-self:center;
  3150. padding:2px 2px 2px 0px;
  3151. box-sizing:border-box;
  3152. width:100%;
  3153. }
  3154. #u52177_text {
  3155. border-width:0px;
  3156. word-wrap:break-word;
  3157. text-transform:none;
  3158. visibility:hidden;
  3159. }
  3160. #u52178_img {
  3161. border-width:0px;
  3162. position:absolute;
  3163. left:0px;
  3164. top:0px;
  3165. width:129px;
  3166. height:38px;
  3167. }
  3168. #u52178 {
  3169. border-width:0px;
  3170. position:absolute;
  3171. left:258px;
  3172. top:151px;
  3173. width:129px;
  3174. height:38px;
  3175. display:flex;
  3176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3177. font-weight:400;
  3178. font-style:normal;
  3179. font-size:12px;
  3180. }
  3181. #u52178 .text {
  3182. position:absolute;
  3183. align-self:center;
  3184. padding:2px 2px 2px 0px;
  3185. box-sizing:border-box;
  3186. width:100%;
  3187. }
  3188. #u52178_text {
  3189. border-width:0px;
  3190. word-wrap:break-word;
  3191. text-transform:none;
  3192. visibility:hidden;
  3193. }
  3194. #u52179_img {
  3195. border-width:0px;
  3196. position:absolute;
  3197. left:0px;
  3198. top:0px;
  3199. width:106px;
  3200. height:38px;
  3201. }
  3202. #u52179 {
  3203. border-width:0px;
  3204. position:absolute;
  3205. left:387px;
  3206. top:151px;
  3207. width:106px;
  3208. height:38px;
  3209. display:flex;
  3210. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3211. font-weight:400;
  3212. font-style:normal;
  3213. font-size:12px;
  3214. }
  3215. #u52179 .text {
  3216. position:absolute;
  3217. align-self:center;
  3218. padding:2px 2px 2px 0px;
  3219. box-sizing:border-box;
  3220. width:100%;
  3221. }
  3222. #u52179_text {
  3223. border-width:0px;
  3224. word-wrap:break-word;
  3225. text-transform:none;
  3226. visibility:hidden;
  3227. }
  3228. #u52180_img {
  3229. border-width:0px;
  3230. position:absolute;
  3231. left:0px;
  3232. top:0px;
  3233. width:123px;
  3234. height:38px;
  3235. }
  3236. #u52180 {
  3237. border-width:0px;
  3238. position:absolute;
  3239. left:493px;
  3240. top:151px;
  3241. width:123px;
  3242. height:38px;
  3243. display:flex;
  3244. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3245. font-weight:400;
  3246. font-style:normal;
  3247. font-size:12px;
  3248. }
  3249. #u52180 .text {
  3250. position:absolute;
  3251. align-self:center;
  3252. padding:2px 2px 2px 0px;
  3253. box-sizing:border-box;
  3254. width:100%;
  3255. }
  3256. #u52180_text {
  3257. border-width:0px;
  3258. word-wrap:break-word;
  3259. text-transform:none;
  3260. visibility:hidden;
  3261. }
  3262. #u52181_img {
  3263. border-width:0px;
  3264. position:absolute;
  3265. left:0px;
  3266. top:0px;
  3267. width:123px;
  3268. height:38px;
  3269. }
  3270. #u52181 {
  3271. border-width:0px;
  3272. position:absolute;
  3273. left:616px;
  3274. top:151px;
  3275. width:123px;
  3276. height:38px;
  3277. display:flex;
  3278. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3279. font-weight:400;
  3280. font-style:normal;
  3281. font-size:12px;
  3282. }
  3283. #u52181 .text {
  3284. position:absolute;
  3285. align-self:center;
  3286. padding:2px 2px 2px 0px;
  3287. box-sizing:border-box;
  3288. width:100%;
  3289. }
  3290. #u52181_text {
  3291. border-width:0px;
  3292. word-wrap:break-word;
  3293. text-transform:none;
  3294. visibility:hidden;
  3295. }
  3296. #u52182_img {
  3297. border-width:0px;
  3298. position:absolute;
  3299. left:0px;
  3300. top:0px;
  3301. width:123px;
  3302. height:38px;
  3303. }
  3304. #u52182 {
  3305. border-width:0px;
  3306. position:absolute;
  3307. left:739px;
  3308. top:151px;
  3309. width:123px;
  3310. height:38px;
  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. }
  3317. #u52182 .text {
  3318. position:absolute;
  3319. align-self:center;
  3320. padding:2px 2px 2px 0px;
  3321. box-sizing:border-box;
  3322. width:100%;
  3323. }
  3324. #u52182_text {
  3325. border-width:0px;
  3326. word-wrap:break-word;
  3327. text-transform:none;
  3328. visibility:hidden;
  3329. }
  3330. #u52183_img {
  3331. border-width:0px;
  3332. position:absolute;
  3333. left:0px;
  3334. top:0px;
  3335. width:122px;
  3336. height:38px;
  3337. }
  3338. #u52183 {
  3339. border-width:0px;
  3340. position:absolute;
  3341. left:862px;
  3342. top:151px;
  3343. width:122px;
  3344. height:38px;
  3345. display:flex;
  3346. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3347. font-weight:400;
  3348. font-style:normal;
  3349. font-size:12px;
  3350. }
  3351. #u52183 .text {
  3352. position:absolute;
  3353. align-self:center;
  3354. padding:2px 2px 2px 0px;
  3355. box-sizing:border-box;
  3356. width:100%;
  3357. }
  3358. #u52183_text {
  3359. border-width:0px;
  3360. word-wrap:break-word;
  3361. text-transform:none;
  3362. visibility:hidden;
  3363. }
  3364. #u52184_img {
  3365. border-width:0px;
  3366. position:absolute;
  3367. left:0px;
  3368. top:0px;
  3369. width:123px;
  3370. height:38px;
  3371. }
  3372. #u52184 {
  3373. border-width:0px;
  3374. position:absolute;
  3375. left:984px;
  3376. top:151px;
  3377. width:123px;
  3378. height:38px;
  3379. display:flex;
  3380. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3381. font-weight:400;
  3382. font-style:normal;
  3383. font-size:12px;
  3384. }
  3385. #u52184 .text {
  3386. position:absolute;
  3387. align-self:center;
  3388. padding:2px 2px 2px 0px;
  3389. box-sizing:border-box;
  3390. width:100%;
  3391. }
  3392. #u52184_text {
  3393. border-width:0px;
  3394. word-wrap:break-word;
  3395. text-transform:none;
  3396. visibility:hidden;
  3397. }
  3398. #u52185_img {
  3399. border-width:0px;
  3400. position:absolute;
  3401. left:0px;
  3402. top:0px;
  3403. width:120px;
  3404. height:38px;
  3405. }
  3406. #u52185 {
  3407. border-width:0px;
  3408. position:absolute;
  3409. left:1107px;
  3410. top:151px;
  3411. width:120px;
  3412. height:38px;
  3413. display:flex;
  3414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3415. font-weight:400;
  3416. font-style:normal;
  3417. font-size:12px;
  3418. }
  3419. #u52185 .text {
  3420. position:absolute;
  3421. align-self:center;
  3422. padding:2px 2px 2px 0px;
  3423. box-sizing:border-box;
  3424. width:100%;
  3425. }
  3426. #u52185_text {
  3427. border-width:0px;
  3428. word-wrap:break-word;
  3429. text-transform:none;
  3430. visibility:hidden;
  3431. }
  3432. #u52186_img {
  3433. border-width:0px;
  3434. position:absolute;
  3435. left:0px;
  3436. top:0px;
  3437. width:129px;
  3438. height:35px;
  3439. }
  3440. #u52186 {
  3441. border-width:0px;
  3442. position:absolute;
  3443. left:0px;
  3444. top:189px;
  3445. width:129px;
  3446. height:35px;
  3447. display:flex;
  3448. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3449. font-weight:400;
  3450. font-style:normal;
  3451. font-size:12px;
  3452. color:#606266;
  3453. }
  3454. #u52186 .text {
  3455. position:absolute;
  3456. align-self:center;
  3457. padding:2px 2px 2px 0px;
  3458. box-sizing:border-box;
  3459. width:100%;
  3460. }
  3461. #u52186_text {
  3462. border-width:0px;
  3463. word-wrap:break-word;
  3464. text-transform:none;
  3465. visibility:hidden;
  3466. }
  3467. #u52187_img {
  3468. border-width:0px;
  3469. position:absolute;
  3470. left:0px;
  3471. top:0px;
  3472. width:129px;
  3473. height:35px;
  3474. }
  3475. #u52187 {
  3476. border-width:0px;
  3477. position:absolute;
  3478. left:129px;
  3479. top:189px;
  3480. width:129px;
  3481. height:35px;
  3482. display:flex;
  3483. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3484. font-weight:400;
  3485. font-style:normal;
  3486. font-size:12px;
  3487. color:#606266;
  3488. }
  3489. #u52187 .text {
  3490. position:absolute;
  3491. align-self:center;
  3492. padding:2px 2px 2px 0px;
  3493. box-sizing:border-box;
  3494. width:100%;
  3495. }
  3496. #u52187_text {
  3497. border-width:0px;
  3498. word-wrap:break-word;
  3499. text-transform:none;
  3500. visibility:hidden;
  3501. }
  3502. #u52188_img {
  3503. border-width:0px;
  3504. position:absolute;
  3505. left:0px;
  3506. top:0px;
  3507. width:129px;
  3508. height:35px;
  3509. }
  3510. #u52188 {
  3511. border-width:0px;
  3512. position:absolute;
  3513. left:258px;
  3514. top:189px;
  3515. width:129px;
  3516. height:35px;
  3517. display:flex;
  3518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3519. font-weight:400;
  3520. font-style:normal;
  3521. font-size:12px;
  3522. color:#606266;
  3523. }
  3524. #u52188 .text {
  3525. position:absolute;
  3526. align-self:center;
  3527. padding:2px 2px 2px 0px;
  3528. box-sizing:border-box;
  3529. width:100%;
  3530. }
  3531. #u52188_text {
  3532. border-width:0px;
  3533. word-wrap:break-word;
  3534. text-transform:none;
  3535. visibility:hidden;
  3536. }
  3537. #u52189_img {
  3538. border-width:0px;
  3539. position:absolute;
  3540. left:0px;
  3541. top:0px;
  3542. width:106px;
  3543. height:35px;
  3544. }
  3545. #u52189 {
  3546. border-width:0px;
  3547. position:absolute;
  3548. left:387px;
  3549. top:189px;
  3550. width:106px;
  3551. height:35px;
  3552. display:flex;
  3553. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3554. font-weight:400;
  3555. font-style:normal;
  3556. font-size:12px;
  3557. color:#606266;
  3558. }
  3559. #u52189 .text {
  3560. position:absolute;
  3561. align-self:center;
  3562. padding:2px 2px 2px 0px;
  3563. box-sizing:border-box;
  3564. width:100%;
  3565. }
  3566. #u52189_text {
  3567. border-width:0px;
  3568. word-wrap:break-word;
  3569. text-transform:none;
  3570. visibility:hidden;
  3571. }
  3572. #u52190_img {
  3573. border-width:0px;
  3574. position:absolute;
  3575. left:0px;
  3576. top:0px;
  3577. width:123px;
  3578. height:35px;
  3579. }
  3580. #u52190 {
  3581. border-width:0px;
  3582. position:absolute;
  3583. left:493px;
  3584. top:189px;
  3585. width:123px;
  3586. height:35px;
  3587. display:flex;
  3588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3589. font-weight:400;
  3590. font-style:normal;
  3591. font-size:12px;
  3592. color:#606266;
  3593. }
  3594. #u52190 .text {
  3595. position:absolute;
  3596. align-self:center;
  3597. padding:2px 2px 2px 0px;
  3598. box-sizing:border-box;
  3599. width:100%;
  3600. }
  3601. #u52190_text {
  3602. border-width:0px;
  3603. word-wrap:break-word;
  3604. text-transform:none;
  3605. visibility:hidden;
  3606. }
  3607. #u52191_img {
  3608. border-width:0px;
  3609. position:absolute;
  3610. left:0px;
  3611. top:0px;
  3612. width:123px;
  3613. height:35px;
  3614. }
  3615. #u52191 {
  3616. border-width:0px;
  3617. position:absolute;
  3618. left:616px;
  3619. top:189px;
  3620. width:123px;
  3621. height:35px;
  3622. display:flex;
  3623. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3624. font-weight:400;
  3625. font-style:normal;
  3626. font-size:12px;
  3627. color:#606266;
  3628. }
  3629. #u52191 .text {
  3630. position:absolute;
  3631. align-self:center;
  3632. padding:2px 2px 2px 0px;
  3633. box-sizing:border-box;
  3634. width:100%;
  3635. }
  3636. #u52191_text {
  3637. border-width:0px;
  3638. word-wrap:break-word;
  3639. text-transform:none;
  3640. visibility:hidden;
  3641. }
  3642. #u52192_img {
  3643. border-width:0px;
  3644. position:absolute;
  3645. left:0px;
  3646. top:0px;
  3647. width:123px;
  3648. height:35px;
  3649. }
  3650. #u52192 {
  3651. border-width:0px;
  3652. position:absolute;
  3653. left:739px;
  3654. top:189px;
  3655. width:123px;
  3656. height:35px;
  3657. display:flex;
  3658. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3659. font-weight:400;
  3660. font-style:normal;
  3661. font-size:12px;
  3662. color:#606266;
  3663. }
  3664. #u52192 .text {
  3665. position:absolute;
  3666. align-self:center;
  3667. padding:2px 2px 2px 0px;
  3668. box-sizing:border-box;
  3669. width:100%;
  3670. }
  3671. #u52192_text {
  3672. border-width:0px;
  3673. word-wrap:break-word;
  3674. text-transform:none;
  3675. visibility:hidden;
  3676. }
  3677. #u52193_img {
  3678. border-width:0px;
  3679. position:absolute;
  3680. left:0px;
  3681. top:0px;
  3682. width:122px;
  3683. height:35px;
  3684. }
  3685. #u52193 {
  3686. border-width:0px;
  3687. position:absolute;
  3688. left:862px;
  3689. top:189px;
  3690. width:122px;
  3691. height:35px;
  3692. display:flex;
  3693. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3694. font-weight:400;
  3695. font-style:normal;
  3696. font-size:12px;
  3697. color:#606266;
  3698. }
  3699. #u52193 .text {
  3700. position:absolute;
  3701. align-self:center;
  3702. padding:2px 2px 2px 0px;
  3703. box-sizing:border-box;
  3704. width:100%;
  3705. }
  3706. #u52193_text {
  3707. border-width:0px;
  3708. word-wrap:break-word;
  3709. text-transform:none;
  3710. visibility:hidden;
  3711. }
  3712. #u52194_img {
  3713. border-width:0px;
  3714. position:absolute;
  3715. left:0px;
  3716. top:0px;
  3717. width:123px;
  3718. height:35px;
  3719. }
  3720. #u52194 {
  3721. border-width:0px;
  3722. position:absolute;
  3723. left:984px;
  3724. top:189px;
  3725. width:123px;
  3726. height:35px;
  3727. display:flex;
  3728. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3729. font-weight:400;
  3730. font-style:normal;
  3731. font-size:12px;
  3732. color:#606266;
  3733. }
  3734. #u52194 .text {
  3735. position:absolute;
  3736. align-self:center;
  3737. padding:2px 2px 2px 0px;
  3738. box-sizing:border-box;
  3739. width:100%;
  3740. }
  3741. #u52194_text {
  3742. border-width:0px;
  3743. word-wrap:break-word;
  3744. text-transform:none;
  3745. visibility:hidden;
  3746. }
  3747. #u52195_img {
  3748. border-width:0px;
  3749. position:absolute;
  3750. left:0px;
  3751. top:0px;
  3752. width:120px;
  3753. height:35px;
  3754. }
  3755. #u52195 {
  3756. border-width:0px;
  3757. position:absolute;
  3758. left:1107px;
  3759. top:189px;
  3760. width:120px;
  3761. height:35px;
  3762. display:flex;
  3763. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3764. font-weight:400;
  3765. font-style:normal;
  3766. font-size:12px;
  3767. color:#606266;
  3768. }
  3769. #u52195 .text {
  3770. position:absolute;
  3771. align-self:center;
  3772. padding:2px 2px 2px 0px;
  3773. box-sizing:border-box;
  3774. width:100%;
  3775. }
  3776. #u52195_text {
  3777. border-width:0px;
  3778. word-wrap:break-word;
  3779. text-transform:none;
  3780. visibility:hidden;
  3781. }
  3782. #u52196_img {
  3783. border-width:0px;
  3784. position:absolute;
  3785. left:0px;
  3786. top:0px;
  3787. width:129px;
  3788. height:35px;
  3789. }
  3790. #u52196 {
  3791. border-width:0px;
  3792. position:absolute;
  3793. left:0px;
  3794. top:224px;
  3795. width:129px;
  3796. height:35px;
  3797. display:flex;
  3798. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3799. font-weight:400;
  3800. font-style:normal;
  3801. font-size:12px;
  3802. color:#606266;
  3803. }
  3804. #u52196 .text {
  3805. position:absolute;
  3806. align-self:center;
  3807. padding:2px 2px 2px 0px;
  3808. box-sizing:border-box;
  3809. width:100%;
  3810. }
  3811. #u52196_text {
  3812. border-width:0px;
  3813. word-wrap:break-word;
  3814. text-transform:none;
  3815. visibility:hidden;
  3816. }
  3817. #u52197_img {
  3818. border-width:0px;
  3819. position:absolute;
  3820. left:0px;
  3821. top:0px;
  3822. width:129px;
  3823. height:35px;
  3824. }
  3825. #u52197 {
  3826. border-width:0px;
  3827. position:absolute;
  3828. left:129px;
  3829. top:224px;
  3830. width:129px;
  3831. height:35px;
  3832. display:flex;
  3833. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3834. font-weight:400;
  3835. font-style:normal;
  3836. font-size:12px;
  3837. color:#606266;
  3838. }
  3839. #u52197 .text {
  3840. position:absolute;
  3841. align-self:center;
  3842. padding:2px 2px 2px 0px;
  3843. box-sizing:border-box;
  3844. width:100%;
  3845. }
  3846. #u52197_text {
  3847. border-width:0px;
  3848. word-wrap:break-word;
  3849. text-transform:none;
  3850. visibility:hidden;
  3851. }
  3852. #u52198_img {
  3853. border-width:0px;
  3854. position:absolute;
  3855. left:0px;
  3856. top:0px;
  3857. width:129px;
  3858. height:35px;
  3859. }
  3860. #u52198 {
  3861. border-width:0px;
  3862. position:absolute;
  3863. left:258px;
  3864. top:224px;
  3865. width:129px;
  3866. height:35px;
  3867. display:flex;
  3868. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3869. font-weight:400;
  3870. font-style:normal;
  3871. font-size:12px;
  3872. color:#606266;
  3873. }
  3874. #u52198 .text {
  3875. position:absolute;
  3876. align-self:center;
  3877. padding:2px 2px 2px 0px;
  3878. box-sizing:border-box;
  3879. width:100%;
  3880. }
  3881. #u52198_text {
  3882. border-width:0px;
  3883. word-wrap:break-word;
  3884. text-transform:none;
  3885. visibility:hidden;
  3886. }
  3887. #u52199_img {
  3888. border-width:0px;
  3889. position:absolute;
  3890. left:0px;
  3891. top:0px;
  3892. width:106px;
  3893. height:35px;
  3894. }
  3895. #u52199 {
  3896. border-width:0px;
  3897. position:absolute;
  3898. left:387px;
  3899. top:224px;
  3900. width:106px;
  3901. height:35px;
  3902. display:flex;
  3903. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3904. font-weight:400;
  3905. font-style:normal;
  3906. font-size:12px;
  3907. color:#606266;
  3908. }
  3909. #u52199 .text {
  3910. position:absolute;
  3911. align-self:center;
  3912. padding:2px 2px 2px 0px;
  3913. box-sizing:border-box;
  3914. width:100%;
  3915. }
  3916. #u52199_text {
  3917. border-width:0px;
  3918. word-wrap:break-word;
  3919. text-transform:none;
  3920. visibility:hidden;
  3921. }
  3922. #u52200_img {
  3923. border-width:0px;
  3924. position:absolute;
  3925. left:0px;
  3926. top:0px;
  3927. width:123px;
  3928. height:35px;
  3929. }
  3930. #u52200 {
  3931. border-width:0px;
  3932. position:absolute;
  3933. left:493px;
  3934. top:224px;
  3935. width:123px;
  3936. height:35px;
  3937. display:flex;
  3938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3939. font-weight:400;
  3940. font-style:normal;
  3941. font-size:12px;
  3942. color:#606266;
  3943. }
  3944. #u52200 .text {
  3945. position:absolute;
  3946. align-self:center;
  3947. padding:2px 2px 2px 0px;
  3948. box-sizing:border-box;
  3949. width:100%;
  3950. }
  3951. #u52200_text {
  3952. border-width:0px;
  3953. word-wrap:break-word;
  3954. text-transform:none;
  3955. visibility:hidden;
  3956. }
  3957. #u52201_img {
  3958. border-width:0px;
  3959. position:absolute;
  3960. left:0px;
  3961. top:0px;
  3962. width:123px;
  3963. height:35px;
  3964. }
  3965. #u52201 {
  3966. border-width:0px;
  3967. position:absolute;
  3968. left:616px;
  3969. top:224px;
  3970. width:123px;
  3971. height:35px;
  3972. display:flex;
  3973. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3974. font-weight:400;
  3975. font-style:normal;
  3976. font-size:12px;
  3977. color:#606266;
  3978. }
  3979. #u52201 .text {
  3980. position:absolute;
  3981. align-self:center;
  3982. padding:2px 2px 2px 0px;
  3983. box-sizing:border-box;
  3984. width:100%;
  3985. }
  3986. #u52201_text {
  3987. border-width:0px;
  3988. word-wrap:break-word;
  3989. text-transform:none;
  3990. visibility:hidden;
  3991. }
  3992. #u52202_img {
  3993. border-width:0px;
  3994. position:absolute;
  3995. left:0px;
  3996. top:0px;
  3997. width:123px;
  3998. height:35px;
  3999. }
  4000. #u52202 {
  4001. border-width:0px;
  4002. position:absolute;
  4003. left:739px;
  4004. top:224px;
  4005. width:123px;
  4006. height:35px;
  4007. display:flex;
  4008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4009. font-weight:400;
  4010. font-style:normal;
  4011. font-size:12px;
  4012. color:#606266;
  4013. }
  4014. #u52202 .text {
  4015. position:absolute;
  4016. align-self:center;
  4017. padding:2px 2px 2px 0px;
  4018. box-sizing:border-box;
  4019. width:100%;
  4020. }
  4021. #u52202_text {
  4022. border-width:0px;
  4023. word-wrap:break-word;
  4024. text-transform:none;
  4025. visibility:hidden;
  4026. }
  4027. #u52203_img {
  4028. border-width:0px;
  4029. position:absolute;
  4030. left:0px;
  4031. top:0px;
  4032. width:122px;
  4033. height:35px;
  4034. }
  4035. #u52203 {
  4036. border-width:0px;
  4037. position:absolute;
  4038. left:862px;
  4039. top:224px;
  4040. width:122px;
  4041. height:35px;
  4042. display:flex;
  4043. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4044. font-weight:400;
  4045. font-style:normal;
  4046. font-size:12px;
  4047. color:#606266;
  4048. }
  4049. #u52203 .text {
  4050. position:absolute;
  4051. align-self:center;
  4052. padding:2px 2px 2px 0px;
  4053. box-sizing:border-box;
  4054. width:100%;
  4055. }
  4056. #u52203_text {
  4057. border-width:0px;
  4058. word-wrap:break-word;
  4059. text-transform:none;
  4060. visibility:hidden;
  4061. }
  4062. #u52204_img {
  4063. border-width:0px;
  4064. position:absolute;
  4065. left:0px;
  4066. top:0px;
  4067. width:123px;
  4068. height:35px;
  4069. }
  4070. #u52204 {
  4071. border-width:0px;
  4072. position:absolute;
  4073. left:984px;
  4074. top:224px;
  4075. width:123px;
  4076. height:35px;
  4077. display:flex;
  4078. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4079. font-weight:400;
  4080. font-style:normal;
  4081. font-size:12px;
  4082. color:#606266;
  4083. }
  4084. #u52204 .text {
  4085. position:absolute;
  4086. align-self:center;
  4087. padding:2px 2px 2px 0px;
  4088. box-sizing:border-box;
  4089. width:100%;
  4090. }
  4091. #u52204_text {
  4092. border-width:0px;
  4093. word-wrap:break-word;
  4094. text-transform:none;
  4095. visibility:hidden;
  4096. }
  4097. #u52205_img {
  4098. border-width:0px;
  4099. position:absolute;
  4100. left:0px;
  4101. top:0px;
  4102. width:120px;
  4103. height:35px;
  4104. }
  4105. #u52205 {
  4106. border-width:0px;
  4107. position:absolute;
  4108. left:1107px;
  4109. top:224px;
  4110. width:120px;
  4111. height:35px;
  4112. display:flex;
  4113. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4114. font-weight:400;
  4115. font-style:normal;
  4116. font-size:12px;
  4117. color:#606266;
  4118. }
  4119. #u52205 .text {
  4120. position:absolute;
  4121. align-self:center;
  4122. padding:2px 2px 2px 0px;
  4123. box-sizing:border-box;
  4124. width:100%;
  4125. }
  4126. #u52205_text {
  4127. border-width:0px;
  4128. word-wrap:break-word;
  4129. text-transform:none;
  4130. visibility:hidden;
  4131. }
  4132. #u52206_img {
  4133. border-width:0px;
  4134. position:absolute;
  4135. left:0px;
  4136. top:0px;
  4137. width:129px;
  4138. height:35px;
  4139. }
  4140. #u52206 {
  4141. border-width:0px;
  4142. position:absolute;
  4143. left:0px;
  4144. top:259px;
  4145. width:129px;
  4146. height:35px;
  4147. display:flex;
  4148. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4149. font-weight:400;
  4150. font-style:normal;
  4151. font-size:12px;
  4152. color:#606266;
  4153. }
  4154. #u52206 .text {
  4155. position:absolute;
  4156. align-self:center;
  4157. padding:2px 2px 2px 0px;
  4158. box-sizing:border-box;
  4159. width:100%;
  4160. }
  4161. #u52206_text {
  4162. border-width:0px;
  4163. word-wrap:break-word;
  4164. text-transform:none;
  4165. visibility:hidden;
  4166. }
  4167. #u52207_img {
  4168. border-width:0px;
  4169. position:absolute;
  4170. left:0px;
  4171. top:0px;
  4172. width:129px;
  4173. height:35px;
  4174. }
  4175. #u52207 {
  4176. border-width:0px;
  4177. position:absolute;
  4178. left:129px;
  4179. top:259px;
  4180. width:129px;
  4181. height:35px;
  4182. display:flex;
  4183. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4184. font-weight:400;
  4185. font-style:normal;
  4186. font-size:12px;
  4187. color:#606266;
  4188. }
  4189. #u52207 .text {
  4190. position:absolute;
  4191. align-self:center;
  4192. padding:2px 2px 2px 0px;
  4193. box-sizing:border-box;
  4194. width:100%;
  4195. }
  4196. #u52207_text {
  4197. border-width:0px;
  4198. word-wrap:break-word;
  4199. text-transform:none;
  4200. visibility:hidden;
  4201. }
  4202. #u52208_img {
  4203. border-width:0px;
  4204. position:absolute;
  4205. left:0px;
  4206. top:0px;
  4207. width:129px;
  4208. height:35px;
  4209. }
  4210. #u52208 {
  4211. border-width:0px;
  4212. position:absolute;
  4213. left:258px;
  4214. top:259px;
  4215. width:129px;
  4216. height:35px;
  4217. display:flex;
  4218. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4219. font-weight:400;
  4220. font-style:normal;
  4221. font-size:12px;
  4222. color:#606266;
  4223. }
  4224. #u52208 .text {
  4225. position:absolute;
  4226. align-self:center;
  4227. padding:2px 2px 2px 0px;
  4228. box-sizing:border-box;
  4229. width:100%;
  4230. }
  4231. #u52208_text {
  4232. border-width:0px;
  4233. word-wrap:break-word;
  4234. text-transform:none;
  4235. visibility:hidden;
  4236. }
  4237. #u52209_img {
  4238. border-width:0px;
  4239. position:absolute;
  4240. left:0px;
  4241. top:0px;
  4242. width:106px;
  4243. height:35px;
  4244. }
  4245. #u52209 {
  4246. border-width:0px;
  4247. position:absolute;
  4248. left:387px;
  4249. top:259px;
  4250. width:106px;
  4251. height:35px;
  4252. display:flex;
  4253. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4254. font-weight:400;
  4255. font-style:normal;
  4256. font-size:12px;
  4257. color:#606266;
  4258. }
  4259. #u52209 .text {
  4260. position:absolute;
  4261. align-self:center;
  4262. padding:2px 2px 2px 0px;
  4263. box-sizing:border-box;
  4264. width:100%;
  4265. }
  4266. #u52209_text {
  4267. border-width:0px;
  4268. word-wrap:break-word;
  4269. text-transform:none;
  4270. visibility:hidden;
  4271. }
  4272. #u52210_img {
  4273. border-width:0px;
  4274. position:absolute;
  4275. left:0px;
  4276. top:0px;
  4277. width:123px;
  4278. height:35px;
  4279. }
  4280. #u52210 {
  4281. border-width:0px;
  4282. position:absolute;
  4283. left:493px;
  4284. top:259px;
  4285. width:123px;
  4286. height:35px;
  4287. display:flex;
  4288. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4289. font-weight:400;
  4290. font-style:normal;
  4291. font-size:12px;
  4292. color:#606266;
  4293. }
  4294. #u52210 .text {
  4295. position:absolute;
  4296. align-self:center;
  4297. padding:2px 2px 2px 0px;
  4298. box-sizing:border-box;
  4299. width:100%;
  4300. }
  4301. #u52210_text {
  4302. border-width:0px;
  4303. word-wrap:break-word;
  4304. text-transform:none;
  4305. visibility:hidden;
  4306. }
  4307. #u52211_img {
  4308. border-width:0px;
  4309. position:absolute;
  4310. left:0px;
  4311. top:0px;
  4312. width:123px;
  4313. height:35px;
  4314. }
  4315. #u52211 {
  4316. border-width:0px;
  4317. position:absolute;
  4318. left:616px;
  4319. top:259px;
  4320. width:123px;
  4321. height:35px;
  4322. display:flex;
  4323. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4324. font-weight:400;
  4325. font-style:normal;
  4326. font-size:12px;
  4327. color:#606266;
  4328. }
  4329. #u52211 .text {
  4330. position:absolute;
  4331. align-self:center;
  4332. padding:2px 2px 2px 0px;
  4333. box-sizing:border-box;
  4334. width:100%;
  4335. }
  4336. #u52211_text {
  4337. border-width:0px;
  4338. word-wrap:break-word;
  4339. text-transform:none;
  4340. visibility:hidden;
  4341. }
  4342. #u52212_img {
  4343. border-width:0px;
  4344. position:absolute;
  4345. left:0px;
  4346. top:0px;
  4347. width:123px;
  4348. height:35px;
  4349. }
  4350. #u52212 {
  4351. border-width:0px;
  4352. position:absolute;
  4353. left:739px;
  4354. top:259px;
  4355. width:123px;
  4356. height:35px;
  4357. display:flex;
  4358. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4359. font-weight:400;
  4360. font-style:normal;
  4361. font-size:12px;
  4362. color:#606266;
  4363. }
  4364. #u52212 .text {
  4365. position:absolute;
  4366. align-self:center;
  4367. padding:2px 2px 2px 0px;
  4368. box-sizing:border-box;
  4369. width:100%;
  4370. }
  4371. #u52212_text {
  4372. border-width:0px;
  4373. word-wrap:break-word;
  4374. text-transform:none;
  4375. visibility:hidden;
  4376. }
  4377. #u52213_img {
  4378. border-width:0px;
  4379. position:absolute;
  4380. left:0px;
  4381. top:0px;
  4382. width:122px;
  4383. height:35px;
  4384. }
  4385. #u52213 {
  4386. border-width:0px;
  4387. position:absolute;
  4388. left:862px;
  4389. top:259px;
  4390. width:122px;
  4391. height:35px;
  4392. display:flex;
  4393. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4394. font-weight:400;
  4395. font-style:normal;
  4396. font-size:12px;
  4397. color:#606266;
  4398. }
  4399. #u52213 .text {
  4400. position:absolute;
  4401. align-self:center;
  4402. padding:2px 2px 2px 0px;
  4403. box-sizing:border-box;
  4404. width:100%;
  4405. }
  4406. #u52213_text {
  4407. border-width:0px;
  4408. word-wrap:break-word;
  4409. text-transform:none;
  4410. visibility:hidden;
  4411. }
  4412. #u52214_img {
  4413. border-width:0px;
  4414. position:absolute;
  4415. left:0px;
  4416. top:0px;
  4417. width:123px;
  4418. height:35px;
  4419. }
  4420. #u52214 {
  4421. border-width:0px;
  4422. position:absolute;
  4423. left:984px;
  4424. top:259px;
  4425. width:123px;
  4426. height:35px;
  4427. display:flex;
  4428. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4429. font-weight:400;
  4430. font-style:normal;
  4431. font-size:12px;
  4432. color:#606266;
  4433. }
  4434. #u52214 .text {
  4435. position:absolute;
  4436. align-self:center;
  4437. padding:2px 2px 2px 0px;
  4438. box-sizing:border-box;
  4439. width:100%;
  4440. }
  4441. #u52214_text {
  4442. border-width:0px;
  4443. word-wrap:break-word;
  4444. text-transform:none;
  4445. visibility:hidden;
  4446. }
  4447. #u52215_img {
  4448. border-width:0px;
  4449. position:absolute;
  4450. left:0px;
  4451. top:0px;
  4452. width:120px;
  4453. height:35px;
  4454. }
  4455. #u52215 {
  4456. border-width:0px;
  4457. position:absolute;
  4458. left:1107px;
  4459. top:259px;
  4460. width:120px;
  4461. height:35px;
  4462. display:flex;
  4463. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4464. font-weight:400;
  4465. font-style:normal;
  4466. font-size:12px;
  4467. color:#606266;
  4468. }
  4469. #u52215 .text {
  4470. position:absolute;
  4471. align-self:center;
  4472. padding:2px 2px 2px 0px;
  4473. box-sizing:border-box;
  4474. width:100%;
  4475. }
  4476. #u52215_text {
  4477. border-width:0px;
  4478. word-wrap:break-word;
  4479. text-transform:none;
  4480. visibility:hidden;
  4481. }
  4482. #u52216_img {
  4483. border-width:0px;
  4484. position:absolute;
  4485. left:0px;
  4486. top:0px;
  4487. width:129px;
  4488. height:35px;
  4489. }
  4490. #u52216 {
  4491. border-width:0px;
  4492. position:absolute;
  4493. left:0px;
  4494. top:294px;
  4495. width:129px;
  4496. height:35px;
  4497. display:flex;
  4498. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4499. font-weight:400;
  4500. font-style:normal;
  4501. font-size:12px;
  4502. color:#606266;
  4503. }
  4504. #u52216 .text {
  4505. position:absolute;
  4506. align-self:center;
  4507. padding:2px 2px 2px 0px;
  4508. box-sizing:border-box;
  4509. width:100%;
  4510. }
  4511. #u52216_text {
  4512. border-width:0px;
  4513. word-wrap:break-word;
  4514. text-transform:none;
  4515. visibility:hidden;
  4516. }
  4517. #u52217_img {
  4518. border-width:0px;
  4519. position:absolute;
  4520. left:0px;
  4521. top:0px;
  4522. width:129px;
  4523. height:35px;
  4524. }
  4525. #u52217 {
  4526. border-width:0px;
  4527. position:absolute;
  4528. left:129px;
  4529. top:294px;
  4530. width:129px;
  4531. height:35px;
  4532. display:flex;
  4533. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4534. font-weight:400;
  4535. font-style:normal;
  4536. font-size:12px;
  4537. color:#606266;
  4538. }
  4539. #u52217 .text {
  4540. position:absolute;
  4541. align-self:center;
  4542. padding:2px 2px 2px 0px;
  4543. box-sizing:border-box;
  4544. width:100%;
  4545. }
  4546. #u52217_text {
  4547. border-width:0px;
  4548. word-wrap:break-word;
  4549. text-transform:none;
  4550. visibility:hidden;
  4551. }
  4552. #u52218_img {
  4553. border-width:0px;
  4554. position:absolute;
  4555. left:0px;
  4556. top:0px;
  4557. width:129px;
  4558. height:35px;
  4559. }
  4560. #u52218 {
  4561. border-width:0px;
  4562. position:absolute;
  4563. left:258px;
  4564. top:294px;
  4565. width:129px;
  4566. height:35px;
  4567. display:flex;
  4568. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4569. font-weight:400;
  4570. font-style:normal;
  4571. font-size:12px;
  4572. color:#606266;
  4573. }
  4574. #u52218 .text {
  4575. position:absolute;
  4576. align-self:center;
  4577. padding:2px 2px 2px 0px;
  4578. box-sizing:border-box;
  4579. width:100%;
  4580. }
  4581. #u52218_text {
  4582. border-width:0px;
  4583. word-wrap:break-word;
  4584. text-transform:none;
  4585. visibility:hidden;
  4586. }
  4587. #u52219_img {
  4588. border-width:0px;
  4589. position:absolute;
  4590. left:0px;
  4591. top:0px;
  4592. width:106px;
  4593. height:35px;
  4594. }
  4595. #u52219 {
  4596. border-width:0px;
  4597. position:absolute;
  4598. left:387px;
  4599. top:294px;
  4600. width:106px;
  4601. height:35px;
  4602. display:flex;
  4603. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4604. font-weight:400;
  4605. font-style:normal;
  4606. font-size:12px;
  4607. color:#606266;
  4608. }
  4609. #u52219 .text {
  4610. position:absolute;
  4611. align-self:center;
  4612. padding:2px 2px 2px 0px;
  4613. box-sizing:border-box;
  4614. width:100%;
  4615. }
  4616. #u52219_text {
  4617. border-width:0px;
  4618. word-wrap:break-word;
  4619. text-transform:none;
  4620. visibility:hidden;
  4621. }
  4622. #u52220_img {
  4623. border-width:0px;
  4624. position:absolute;
  4625. left:0px;
  4626. top:0px;
  4627. width:123px;
  4628. height:35px;
  4629. }
  4630. #u52220 {
  4631. border-width:0px;
  4632. position:absolute;
  4633. left:493px;
  4634. top:294px;
  4635. width:123px;
  4636. height:35px;
  4637. display:flex;
  4638. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4639. font-weight:400;
  4640. font-style:normal;
  4641. font-size:12px;
  4642. color:#606266;
  4643. }
  4644. #u52220 .text {
  4645. position:absolute;
  4646. align-self:center;
  4647. padding:2px 2px 2px 0px;
  4648. box-sizing:border-box;
  4649. width:100%;
  4650. }
  4651. #u52220_text {
  4652. border-width:0px;
  4653. word-wrap:break-word;
  4654. text-transform:none;
  4655. visibility:hidden;
  4656. }
  4657. #u52221_img {
  4658. border-width:0px;
  4659. position:absolute;
  4660. left:0px;
  4661. top:0px;
  4662. width:123px;
  4663. height:35px;
  4664. }
  4665. #u52221 {
  4666. border-width:0px;
  4667. position:absolute;
  4668. left:616px;
  4669. top:294px;
  4670. width:123px;
  4671. height:35px;
  4672. display:flex;
  4673. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4674. font-weight:400;
  4675. font-style:normal;
  4676. font-size:12px;
  4677. color:#606266;
  4678. }
  4679. #u52221 .text {
  4680. position:absolute;
  4681. align-self:center;
  4682. padding:2px 2px 2px 0px;
  4683. box-sizing:border-box;
  4684. width:100%;
  4685. }
  4686. #u52221_text {
  4687. border-width:0px;
  4688. word-wrap:break-word;
  4689. text-transform:none;
  4690. visibility:hidden;
  4691. }
  4692. #u52222_img {
  4693. border-width:0px;
  4694. position:absolute;
  4695. left:0px;
  4696. top:0px;
  4697. width:123px;
  4698. height:35px;
  4699. }
  4700. #u52222 {
  4701. border-width:0px;
  4702. position:absolute;
  4703. left:739px;
  4704. top:294px;
  4705. width:123px;
  4706. height:35px;
  4707. display:flex;
  4708. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4709. font-weight:400;
  4710. font-style:normal;
  4711. font-size:12px;
  4712. color:#606266;
  4713. }
  4714. #u52222 .text {
  4715. position:absolute;
  4716. align-self:center;
  4717. padding:2px 2px 2px 0px;
  4718. box-sizing:border-box;
  4719. width:100%;
  4720. }
  4721. #u52222_text {
  4722. border-width:0px;
  4723. word-wrap:break-word;
  4724. text-transform:none;
  4725. visibility:hidden;
  4726. }
  4727. #u52223_img {
  4728. border-width:0px;
  4729. position:absolute;
  4730. left:0px;
  4731. top:0px;
  4732. width:122px;
  4733. height:35px;
  4734. }
  4735. #u52223 {
  4736. border-width:0px;
  4737. position:absolute;
  4738. left:862px;
  4739. top:294px;
  4740. width:122px;
  4741. height:35px;
  4742. display:flex;
  4743. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4744. font-weight:400;
  4745. font-style:normal;
  4746. font-size:12px;
  4747. color:#606266;
  4748. }
  4749. #u52223 .text {
  4750. position:absolute;
  4751. align-self:center;
  4752. padding:2px 2px 2px 0px;
  4753. box-sizing:border-box;
  4754. width:100%;
  4755. }
  4756. #u52223_text {
  4757. border-width:0px;
  4758. word-wrap:break-word;
  4759. text-transform:none;
  4760. visibility:hidden;
  4761. }
  4762. #u52224_img {
  4763. border-width:0px;
  4764. position:absolute;
  4765. left:0px;
  4766. top:0px;
  4767. width:123px;
  4768. height:35px;
  4769. }
  4770. #u52224 {
  4771. border-width:0px;
  4772. position:absolute;
  4773. left:984px;
  4774. top:294px;
  4775. width:123px;
  4776. height:35px;
  4777. display:flex;
  4778. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4779. font-weight:400;
  4780. font-style:normal;
  4781. font-size:12px;
  4782. color:#606266;
  4783. }
  4784. #u52224 .text {
  4785. position:absolute;
  4786. align-self:center;
  4787. padding:2px 2px 2px 0px;
  4788. box-sizing:border-box;
  4789. width:100%;
  4790. }
  4791. #u52224_text {
  4792. border-width:0px;
  4793. word-wrap:break-word;
  4794. text-transform:none;
  4795. visibility:hidden;
  4796. }
  4797. #u52225_img {
  4798. border-width:0px;
  4799. position:absolute;
  4800. left:0px;
  4801. top:0px;
  4802. width:120px;
  4803. height:35px;
  4804. }
  4805. #u52225 {
  4806. border-width:0px;
  4807. position:absolute;
  4808. left:1107px;
  4809. top:294px;
  4810. width:120px;
  4811. height:35px;
  4812. display:flex;
  4813. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4814. font-weight:400;
  4815. font-style:normal;
  4816. font-size:12px;
  4817. color:#606266;
  4818. }
  4819. #u52225 .text {
  4820. position:absolute;
  4821. align-self:center;
  4822. padding:2px 2px 2px 0px;
  4823. box-sizing:border-box;
  4824. width:100%;
  4825. }
  4826. #u52225_text {
  4827. border-width:0px;
  4828. word-wrap:break-word;
  4829. text-transform:none;
  4830. visibility:hidden;
  4831. }
  4832. #u52226_img {
  4833. border-width:0px;
  4834. position:absolute;
  4835. left:0px;
  4836. top:0px;
  4837. width:129px;
  4838. height:35px;
  4839. }
  4840. #u52226 {
  4841. border-width:0px;
  4842. position:absolute;
  4843. left:0px;
  4844. top:329px;
  4845. width:129px;
  4846. height:35px;
  4847. display:flex;
  4848. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4849. font-weight:400;
  4850. font-style:normal;
  4851. font-size:12px;
  4852. color:#606266;
  4853. }
  4854. #u52226 .text {
  4855. position:absolute;
  4856. align-self:center;
  4857. padding:2px 2px 2px 0px;
  4858. box-sizing:border-box;
  4859. width:100%;
  4860. }
  4861. #u52226_text {
  4862. border-width:0px;
  4863. word-wrap:break-word;
  4864. text-transform:none;
  4865. visibility:hidden;
  4866. }
  4867. #u52227_img {
  4868. border-width:0px;
  4869. position:absolute;
  4870. left:0px;
  4871. top:0px;
  4872. width:129px;
  4873. height:35px;
  4874. }
  4875. #u52227 {
  4876. border-width:0px;
  4877. position:absolute;
  4878. left:129px;
  4879. top:329px;
  4880. width:129px;
  4881. height:35px;
  4882. display:flex;
  4883. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4884. font-weight:400;
  4885. font-style:normal;
  4886. font-size:12px;
  4887. color:#606266;
  4888. }
  4889. #u52227 .text {
  4890. position:absolute;
  4891. align-self:center;
  4892. padding:2px 2px 2px 0px;
  4893. box-sizing:border-box;
  4894. width:100%;
  4895. }
  4896. #u52227_text {
  4897. border-width:0px;
  4898. word-wrap:break-word;
  4899. text-transform:none;
  4900. visibility:hidden;
  4901. }
  4902. #u52228_img {
  4903. border-width:0px;
  4904. position:absolute;
  4905. left:0px;
  4906. top:0px;
  4907. width:129px;
  4908. height:35px;
  4909. }
  4910. #u52228 {
  4911. border-width:0px;
  4912. position:absolute;
  4913. left:258px;
  4914. top:329px;
  4915. width:129px;
  4916. height:35px;
  4917. display:flex;
  4918. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4919. font-weight:400;
  4920. font-style:normal;
  4921. font-size:12px;
  4922. color:#606266;
  4923. }
  4924. #u52228 .text {
  4925. position:absolute;
  4926. align-self:center;
  4927. padding:2px 2px 2px 0px;
  4928. box-sizing:border-box;
  4929. width:100%;
  4930. }
  4931. #u52228_text {
  4932. border-width:0px;
  4933. word-wrap:break-word;
  4934. text-transform:none;
  4935. visibility:hidden;
  4936. }
  4937. #u52229_img {
  4938. border-width:0px;
  4939. position:absolute;
  4940. left:0px;
  4941. top:0px;
  4942. width:106px;
  4943. height:35px;
  4944. }
  4945. #u52229 {
  4946. border-width:0px;
  4947. position:absolute;
  4948. left:387px;
  4949. top:329px;
  4950. width:106px;
  4951. height:35px;
  4952. display:flex;
  4953. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4954. font-weight:400;
  4955. font-style:normal;
  4956. font-size:12px;
  4957. color:#606266;
  4958. }
  4959. #u52229 .text {
  4960. position:absolute;
  4961. align-self:center;
  4962. padding:2px 2px 2px 0px;
  4963. box-sizing:border-box;
  4964. width:100%;
  4965. }
  4966. #u52229_text {
  4967. border-width:0px;
  4968. word-wrap:break-word;
  4969. text-transform:none;
  4970. visibility:hidden;
  4971. }
  4972. #u52230_img {
  4973. border-width:0px;
  4974. position:absolute;
  4975. left:0px;
  4976. top:0px;
  4977. width:123px;
  4978. height:35px;
  4979. }
  4980. #u52230 {
  4981. border-width:0px;
  4982. position:absolute;
  4983. left:493px;
  4984. top:329px;
  4985. width:123px;
  4986. height:35px;
  4987. display:flex;
  4988. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4989. font-weight:400;
  4990. font-style:normal;
  4991. font-size:12px;
  4992. color:#606266;
  4993. }
  4994. #u52230 .text {
  4995. position:absolute;
  4996. align-self:center;
  4997. padding:2px 2px 2px 0px;
  4998. box-sizing:border-box;
  4999. width:100%;
  5000. }
  5001. #u52230_text {
  5002. border-width:0px;
  5003. word-wrap:break-word;
  5004. text-transform:none;
  5005. visibility:hidden;
  5006. }
  5007. #u52231_img {
  5008. border-width:0px;
  5009. position:absolute;
  5010. left:0px;
  5011. top:0px;
  5012. width:123px;
  5013. height:35px;
  5014. }
  5015. #u52231 {
  5016. border-width:0px;
  5017. position:absolute;
  5018. left:616px;
  5019. top:329px;
  5020. width:123px;
  5021. height:35px;
  5022. display:flex;
  5023. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5024. font-weight:400;
  5025. font-style:normal;
  5026. font-size:12px;
  5027. color:#606266;
  5028. }
  5029. #u52231 .text {
  5030. position:absolute;
  5031. align-self:center;
  5032. padding:2px 2px 2px 0px;
  5033. box-sizing:border-box;
  5034. width:100%;
  5035. }
  5036. #u52231_text {
  5037. border-width:0px;
  5038. word-wrap:break-word;
  5039. text-transform:none;
  5040. visibility:hidden;
  5041. }
  5042. #u52232_img {
  5043. border-width:0px;
  5044. position:absolute;
  5045. left:0px;
  5046. top:0px;
  5047. width:123px;
  5048. height:35px;
  5049. }
  5050. #u52232 {
  5051. border-width:0px;
  5052. position:absolute;
  5053. left:739px;
  5054. top:329px;
  5055. width:123px;
  5056. height:35px;
  5057. display:flex;
  5058. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5059. font-weight:400;
  5060. font-style:normal;
  5061. font-size:12px;
  5062. color:#606266;
  5063. }
  5064. #u52232 .text {
  5065. position:absolute;
  5066. align-self:center;
  5067. padding:2px 2px 2px 0px;
  5068. box-sizing:border-box;
  5069. width:100%;
  5070. }
  5071. #u52232_text {
  5072. border-width:0px;
  5073. word-wrap:break-word;
  5074. text-transform:none;
  5075. visibility:hidden;
  5076. }
  5077. #u52233_img {
  5078. border-width:0px;
  5079. position:absolute;
  5080. left:0px;
  5081. top:0px;
  5082. width:122px;
  5083. height:35px;
  5084. }
  5085. #u52233 {
  5086. border-width:0px;
  5087. position:absolute;
  5088. left:862px;
  5089. top:329px;
  5090. width:122px;
  5091. height:35px;
  5092. display:flex;
  5093. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5094. font-weight:400;
  5095. font-style:normal;
  5096. font-size:12px;
  5097. color:#606266;
  5098. }
  5099. #u52233 .text {
  5100. position:absolute;
  5101. align-self:center;
  5102. padding:2px 2px 2px 0px;
  5103. box-sizing:border-box;
  5104. width:100%;
  5105. }
  5106. #u52233_text {
  5107. border-width:0px;
  5108. word-wrap:break-word;
  5109. text-transform:none;
  5110. visibility:hidden;
  5111. }
  5112. #u52234_img {
  5113. border-width:0px;
  5114. position:absolute;
  5115. left:0px;
  5116. top:0px;
  5117. width:123px;
  5118. height:35px;
  5119. }
  5120. #u52234 {
  5121. border-width:0px;
  5122. position:absolute;
  5123. left:984px;
  5124. top:329px;
  5125. width:123px;
  5126. height:35px;
  5127. display:flex;
  5128. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5129. font-weight:400;
  5130. font-style:normal;
  5131. font-size:12px;
  5132. color:#606266;
  5133. }
  5134. #u52234 .text {
  5135. position:absolute;
  5136. align-self:center;
  5137. padding:2px 2px 2px 0px;
  5138. box-sizing:border-box;
  5139. width:100%;
  5140. }
  5141. #u52234_text {
  5142. border-width:0px;
  5143. word-wrap:break-word;
  5144. text-transform:none;
  5145. visibility:hidden;
  5146. }
  5147. #u52235_img {
  5148. border-width:0px;
  5149. position:absolute;
  5150. left:0px;
  5151. top:0px;
  5152. width:120px;
  5153. height:35px;
  5154. }
  5155. #u52235 {
  5156. border-width:0px;
  5157. position:absolute;
  5158. left:1107px;
  5159. top:329px;
  5160. width:120px;
  5161. height:35px;
  5162. display:flex;
  5163. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5164. font-weight:400;
  5165. font-style:normal;
  5166. font-size:12px;
  5167. color:#606266;
  5168. }
  5169. #u52235 .text {
  5170. position:absolute;
  5171. align-self:center;
  5172. padding:2px 2px 2px 0px;
  5173. box-sizing:border-box;
  5174. width:100%;
  5175. }
  5176. #u52235_text {
  5177. border-width:0px;
  5178. word-wrap:break-word;
  5179. text-transform:none;
  5180. visibility:hidden;
  5181. }
  5182. #u52236 {
  5183. border-width:0px;
  5184. position:absolute;
  5185. left:0px;
  5186. top:0px;
  5187. width:0px;
  5188. height:0px;
  5189. }
  5190. #u52237_div {
  5191. border-width:0px;
  5192. position:absolute;
  5193. left:0px;
  5194. top:0px;
  5195. width:59px;
  5196. height:30px;
  5197. background:inherit;
  5198. background-color:rgba(24, 144, 255, 1);
  5199. box-sizing:border-box;
  5200. border-width:1px;
  5201. border-style:solid;
  5202. border-color:rgba(0, 153, 255, 1);
  5203. border-radius:4px;
  5204. -moz-box-shadow:none;
  5205. -webkit-box-shadow:none;
  5206. box-shadow:none;
  5207. font-family:'Microsoft YaHei', sans-serif;
  5208. font-weight:400;
  5209. font-style:normal;
  5210. font-size:14px;
  5211. color:#FFFFFF;
  5212. }
  5213. #u52237 {
  5214. border-width:0px;
  5215. position:absolute;
  5216. left:650px;
  5217. top:145px;
  5218. width:59px;
  5219. height:30px;
  5220. display:flex;
  5221. font-family:'Microsoft YaHei', sans-serif;
  5222. font-weight:400;
  5223. font-style:normal;
  5224. font-size:14px;
  5225. color:#FFFFFF;
  5226. }
  5227. #u52237 .text {
  5228. position:absolute;
  5229. align-self:center;
  5230. padding:5px 15px 5px 15px;
  5231. box-sizing:border-box;
  5232. width:100%;
  5233. }
  5234. #u52237_text {
  5235. border-width:0px;
  5236. white-space:nowrap;
  5237. text-transform:none;
  5238. }
  5239. #u52238_div {
  5240. border-width:0px;
  5241. position:absolute;
  5242. left:0px;
  5243. top:0px;
  5244. width:55px;
  5245. height:30px;
  5246. background:inherit;
  5247. background-color:rgba(255, 255, 255, 1);
  5248. box-sizing:border-box;
  5249. border-width:1px;
  5250. border-style:solid;
  5251. border-color:rgba(170, 170, 170, 1);
  5252. border-radius:4px;
  5253. -moz-box-shadow:none;
  5254. -webkit-box-shadow:none;
  5255. box-shadow:none;
  5256. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5257. font-weight:400;
  5258. font-style:normal;
  5259. font-size:12px;
  5260. color:#555555;
  5261. }
  5262. #u52238 {
  5263. border-width:0px;
  5264. position:absolute;
  5265. left:719px;
  5266. top:145px;
  5267. width:55px;
  5268. height:30px;
  5269. display:flex;
  5270. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5271. font-weight:400;
  5272. font-style:normal;
  5273. font-size:12px;
  5274. color:#555555;
  5275. }
  5276. #u52238 .text {
  5277. position:absolute;
  5278. align-self:center;
  5279. padding:5px 15px 5px 15px;
  5280. box-sizing:border-box;
  5281. width:100%;
  5282. }
  5283. #u52238_text {
  5284. border-width:0px;
  5285. white-space:nowrap;
  5286. text-transform:none;
  5287. }
  5288. #u52239 {
  5289. border-width:0px;
  5290. position:absolute;
  5291. left:0px;
  5292. top:0px;
  5293. width:0px;
  5294. height:0px;
  5295. }
  5296. #u52240_div {
  5297. border-width:0px;
  5298. position:absolute;
  5299. left:0px;
  5300. top:0px;
  5301. width:140px;
  5302. height:30px;
  5303. background:inherit;
  5304. background-color:rgba(255, 255, 255, 1);
  5305. box-sizing:border-box;
  5306. border-width:1px;
  5307. border-style:solid;
  5308. border-color:rgba(215, 215, 215, 1);
  5309. border-radius:4px;
  5310. -moz-box-shadow:none;
  5311. -webkit-box-shadow:none;
  5312. box-shadow:none;
  5313. font-size:14px;
  5314. }
  5315. #u52240 {
  5316. border-width:0px;
  5317. position:absolute;
  5318. left:350px;
  5319. top:105px;
  5320. width:140px;
  5321. height:30px;
  5322. display:flex;
  5323. font-size:14px;
  5324. }
  5325. #u52240 .text {
  5326. position:absolute;
  5327. align-self:center;
  5328. padding:2px 2px 2px 2px;
  5329. box-sizing:border-box;
  5330. width:100%;
  5331. }
  5332. #u52240_text {
  5333. border-width:0px;
  5334. word-wrap:break-word;
  5335. text-transform:none;
  5336. visibility:hidden;
  5337. }
  5338. #u52241_input {
  5339. position:absolute;
  5340. left:0px;
  5341. top:0px;
  5342. width:134px;
  5343. height:23px;
  5344. padding:2px 2px 2px 2px;
  5345. font-family:'ArialMT', 'Arial', sans-serif;
  5346. font-weight:400;
  5347. font-style:normal;
  5348. font-size:14px;
  5349. letter-spacing:normal;
  5350. color:#AAAAAA;
  5351. vertical-align:none;
  5352. text-align:left;
  5353. text-transform:none;
  5354. background-color:transparent;
  5355. border-color:transparent;
  5356. }
  5357. #u52241_input.disabled {
  5358. position:absolute;
  5359. left:0px;
  5360. top:0px;
  5361. width:134px;
  5362. height:23px;
  5363. padding:2px 2px 2px 2px;
  5364. font-family:'ArialMT', 'Arial', sans-serif;
  5365. font-weight:400;
  5366. font-style:normal;
  5367. font-size:14px;
  5368. letter-spacing:normal;
  5369. color:#AAAAAA;
  5370. vertical-align:none;
  5371. text-align:left;
  5372. text-transform:none;
  5373. background-color:transparent;
  5374. border-color:transparent;
  5375. }
  5376. #u52241_div {
  5377. border-width:0px;
  5378. position:absolute;
  5379. left:0px;
  5380. top:0px;
  5381. width:134px;
  5382. height:23px;
  5383. background:inherit;
  5384. background-color:rgba(255, 255, 255, 1);
  5385. border:none;
  5386. border-radius:0px;
  5387. -moz-box-shadow:none;
  5388. -webkit-box-shadow:none;
  5389. box-shadow:none;
  5390. font-size:14px;
  5391. color:#AAAAAA;
  5392. }
  5393. #u52241 {
  5394. border-width:0px;
  5395. position:absolute;
  5396. left:354px;
  5397. top:107px;
  5398. width:134px;
  5399. height:23px;
  5400. display:flex;
  5401. font-size:14px;
  5402. color:#AAAAAA;
  5403. }
  5404. #u52241 .text {
  5405. position:absolute;
  5406. align-self:flex-start;
  5407. padding:2px 2px 2px 2px;
  5408. box-sizing:border-box;
  5409. width:100%;
  5410. }
  5411. #u52241_div.disabled {
  5412. border-width:0px;
  5413. position:absolute;
  5414. left:0px;
  5415. top:0px;
  5416. width:134px;
  5417. height:23px;
  5418. background:inherit;
  5419. background-color:rgba(240, 240, 240, 1);
  5420. border:none;
  5421. border-radius:0px;
  5422. -moz-box-shadow:none;
  5423. -webkit-box-shadow:none;
  5424. box-shadow:none;
  5425. font-size:14px;
  5426. color:#AAAAAA;
  5427. }
  5428. #u52241.disabled {
  5429. }
  5430. .u52241_input_option {
  5431. font-size:14px;
  5432. }
  5433. #u52242 {
  5434. border-width:0px;
  5435. position:absolute;
  5436. left:0px;
  5437. top:0px;
  5438. width:0px;
  5439. height:0px;
  5440. }
  5441. #u52243_div {
  5442. border-width:0px;
  5443. position:absolute;
  5444. left:0px;
  5445. top:0px;
  5446. width:140px;
  5447. height:30px;
  5448. background:inherit;
  5449. background-color:rgba(255, 255, 255, 1);
  5450. box-sizing:border-box;
  5451. border-width:1px;
  5452. border-style:solid;
  5453. border-color:rgba(215, 215, 215, 1);
  5454. border-radius:4px;
  5455. -moz-box-shadow:none;
  5456. -webkit-box-shadow:none;
  5457. box-shadow:none;
  5458. font-size:14px;
  5459. }
  5460. #u52243 {
  5461. border-width:0px;
  5462. position:absolute;
  5463. left:500px;
  5464. top:105px;
  5465. width:140px;
  5466. height:30px;
  5467. display:flex;
  5468. font-size:14px;
  5469. }
  5470. #u52243 .text {
  5471. position:absolute;
  5472. align-self:center;
  5473. padding:2px 2px 2px 2px;
  5474. box-sizing:border-box;
  5475. width:100%;
  5476. }
  5477. #u52243_text {
  5478. border-width:0px;
  5479. word-wrap:break-word;
  5480. text-transform:none;
  5481. visibility:hidden;
  5482. }
  5483. #u52244_input {
  5484. position:absolute;
  5485. left:0px;
  5486. top:0px;
  5487. width:134px;
  5488. height:23px;
  5489. padding:2px 2px 2px 2px;
  5490. font-family:'ArialMT', 'Arial', sans-serif;
  5491. font-weight:400;
  5492. font-style:normal;
  5493. font-size:14px;
  5494. letter-spacing:normal;
  5495. color:#AAAAAA;
  5496. vertical-align:none;
  5497. text-align:left;
  5498. text-transform:none;
  5499. background-color:transparent;
  5500. border-color:transparent;
  5501. }
  5502. #u52244_input.disabled {
  5503. position:absolute;
  5504. left:0px;
  5505. top:0px;
  5506. width:134px;
  5507. height:23px;
  5508. padding:2px 2px 2px 2px;
  5509. font-family:'ArialMT', 'Arial', sans-serif;
  5510. font-weight:400;
  5511. font-style:normal;
  5512. font-size:14px;
  5513. letter-spacing:normal;
  5514. color:#AAAAAA;
  5515. vertical-align:none;
  5516. text-align:left;
  5517. text-transform:none;
  5518. background-color:transparent;
  5519. border-color:transparent;
  5520. }
  5521. #u52244_div {
  5522. border-width:0px;
  5523. position:absolute;
  5524. left:0px;
  5525. top:0px;
  5526. width:134px;
  5527. height:23px;
  5528. background:inherit;
  5529. background-color:rgba(255, 255, 255, 1);
  5530. border:none;
  5531. border-radius:0px;
  5532. -moz-box-shadow:none;
  5533. -webkit-box-shadow:none;
  5534. box-shadow:none;
  5535. font-size:14px;
  5536. color:#AAAAAA;
  5537. }
  5538. #u52244 {
  5539. border-width:0px;
  5540. position:absolute;
  5541. left:504px;
  5542. top:107px;
  5543. width:134px;
  5544. height:23px;
  5545. display:flex;
  5546. font-size:14px;
  5547. color:#AAAAAA;
  5548. }
  5549. #u52244 .text {
  5550. position:absolute;
  5551. align-self:flex-start;
  5552. padding:2px 2px 2px 2px;
  5553. box-sizing:border-box;
  5554. width:100%;
  5555. }
  5556. #u52244_div.disabled {
  5557. border-width:0px;
  5558. position:absolute;
  5559. left:0px;
  5560. top:0px;
  5561. width:134px;
  5562. height:23px;
  5563. background:inherit;
  5564. background-color:rgba(240, 240, 240, 1);
  5565. border:none;
  5566. border-radius:0px;
  5567. -moz-box-shadow:none;
  5568. -webkit-box-shadow:none;
  5569. box-shadow:none;
  5570. font-size:14px;
  5571. color:#AAAAAA;
  5572. }
  5573. #u52244.disabled {
  5574. }
  5575. .u52244_input_option {
  5576. font-size:14px;
  5577. }
  5578. #u52245 {
  5579. border-width:0px;
  5580. position:absolute;
  5581. left:0px;
  5582. top:0px;
  5583. width:0px;
  5584. height:0px;
  5585. }
  5586. #u52246_div {
  5587. border-width:0px;
  5588. position:absolute;
  5589. left:0px;
  5590. top:0px;
  5591. width:140px;
  5592. height:30px;
  5593. background:inherit;
  5594. background-color:rgba(255, 255, 255, 1);
  5595. box-sizing:border-box;
  5596. border-width:1px;
  5597. border-style:solid;
  5598. border-color:rgba(215, 215, 215, 1);
  5599. border-radius:4px;
  5600. -moz-box-shadow:none;
  5601. -webkit-box-shadow:none;
  5602. box-shadow:none;
  5603. font-size:14px;
  5604. }
  5605. #u52246 {
  5606. border-width:0px;
  5607. position:absolute;
  5608. left:650px;
  5609. top:105px;
  5610. width:140px;
  5611. height:30px;
  5612. display:flex;
  5613. font-size:14px;
  5614. }
  5615. #u52246 .text {
  5616. position:absolute;
  5617. align-self:center;
  5618. padding:2px 2px 2px 2px;
  5619. box-sizing:border-box;
  5620. width:100%;
  5621. }
  5622. #u52246_text {
  5623. border-width:0px;
  5624. word-wrap:break-word;
  5625. text-transform:none;
  5626. visibility:hidden;
  5627. }
  5628. #u52247_input {
  5629. position:absolute;
  5630. left:0px;
  5631. top:0px;
  5632. width:134px;
  5633. height:23px;
  5634. padding:2px 2px 2px 2px;
  5635. font-family:'ArialMT', 'Arial', sans-serif;
  5636. font-weight:400;
  5637. font-style:normal;
  5638. font-size:14px;
  5639. letter-spacing:normal;
  5640. color:#AAAAAA;
  5641. vertical-align:none;
  5642. text-align:left;
  5643. text-transform:none;
  5644. background-color:transparent;
  5645. border-color:transparent;
  5646. }
  5647. #u52247_input.disabled {
  5648. position:absolute;
  5649. left:0px;
  5650. top:0px;
  5651. width:134px;
  5652. height:23px;
  5653. padding:2px 2px 2px 2px;
  5654. font-family:'ArialMT', 'Arial', sans-serif;
  5655. font-weight:400;
  5656. font-style:normal;
  5657. font-size:14px;
  5658. letter-spacing:normal;
  5659. color:#AAAAAA;
  5660. vertical-align:none;
  5661. text-align:left;
  5662. text-transform:none;
  5663. background-color:transparent;
  5664. border-color:transparent;
  5665. }
  5666. #u52247_div {
  5667. border-width:0px;
  5668. position:absolute;
  5669. left:0px;
  5670. top:0px;
  5671. width:134px;
  5672. height:23px;
  5673. background:inherit;
  5674. background-color:rgba(255, 255, 255, 1);
  5675. border:none;
  5676. border-radius:0px;
  5677. -moz-box-shadow:none;
  5678. -webkit-box-shadow:none;
  5679. box-shadow:none;
  5680. font-size:14px;
  5681. color:#AAAAAA;
  5682. }
  5683. #u52247 {
  5684. border-width:0px;
  5685. position:absolute;
  5686. left:654px;
  5687. top:107px;
  5688. width:134px;
  5689. height:23px;
  5690. display:flex;
  5691. font-size:14px;
  5692. color:#AAAAAA;
  5693. }
  5694. #u52247 .text {
  5695. position:absolute;
  5696. align-self:flex-start;
  5697. padding:2px 2px 2px 2px;
  5698. box-sizing:border-box;
  5699. width:100%;
  5700. }
  5701. #u52247_div.disabled {
  5702. border-width:0px;
  5703. position:absolute;
  5704. left:0px;
  5705. top:0px;
  5706. width:134px;
  5707. height:23px;
  5708. background:inherit;
  5709. background-color:rgba(240, 240, 240, 1);
  5710. border:none;
  5711. border-radius:0px;
  5712. -moz-box-shadow:none;
  5713. -webkit-box-shadow:none;
  5714. box-shadow:none;
  5715. font-size:14px;
  5716. color:#AAAAAA;
  5717. }
  5718. #u52247.disabled {
  5719. }
  5720. .u52247_input_option {
  5721. font-size:14px;
  5722. }
  5723. #u52248 {
  5724. border-width:0px;
  5725. position:absolute;
  5726. left:0px;
  5727. top:0px;
  5728. width:0px;
  5729. height:0px;
  5730. }
  5731. #u52249_div {
  5732. border-width:0px;
  5733. position:absolute;
  5734. left:0px;
  5735. top:0px;
  5736. width:140px;
  5737. height:30px;
  5738. background:inherit;
  5739. background-color:rgba(255, 255, 255, 1);
  5740. box-sizing:border-box;
  5741. border-width:1px;
  5742. border-style:solid;
  5743. border-color:rgba(215, 215, 215, 1);
  5744. border-radius:4px;
  5745. -moz-box-shadow:none;
  5746. -webkit-box-shadow:none;
  5747. box-shadow:none;
  5748. font-size:14px;
  5749. }
  5750. #u52249 {
  5751. border-width:0px;
  5752. position:absolute;
  5753. left:800px;
  5754. top:105px;
  5755. width:140px;
  5756. height:30px;
  5757. display:flex;
  5758. font-size:14px;
  5759. }
  5760. #u52249 .text {
  5761. position:absolute;
  5762. align-self:center;
  5763. padding:2px 2px 2px 2px;
  5764. box-sizing:border-box;
  5765. width:100%;
  5766. }
  5767. #u52249_text {
  5768. border-width:0px;
  5769. word-wrap:break-word;
  5770. text-transform:none;
  5771. visibility:hidden;
  5772. }
  5773. #u52250_input {
  5774. position:absolute;
  5775. left:0px;
  5776. top:0px;
  5777. width:134px;
  5778. height:23px;
  5779. padding:2px 2px 2px 2px;
  5780. font-family:'ArialMT', 'Arial', sans-serif;
  5781. font-weight:400;
  5782. font-style:normal;
  5783. font-size:14px;
  5784. letter-spacing:normal;
  5785. color:#AAAAAA;
  5786. vertical-align:none;
  5787. text-align:left;
  5788. text-transform:none;
  5789. background-color:transparent;
  5790. border-color:transparent;
  5791. }
  5792. #u52250_input.disabled {
  5793. position:absolute;
  5794. left:0px;
  5795. top:0px;
  5796. width:134px;
  5797. height:23px;
  5798. padding:2px 2px 2px 2px;
  5799. font-family:'ArialMT', 'Arial', sans-serif;
  5800. font-weight:400;
  5801. font-style:normal;
  5802. font-size:14px;
  5803. letter-spacing:normal;
  5804. color:#AAAAAA;
  5805. vertical-align:none;
  5806. text-align:left;
  5807. text-transform:none;
  5808. background-color:transparent;
  5809. border-color:transparent;
  5810. }
  5811. #u52250_div {
  5812. border-width:0px;
  5813. position:absolute;
  5814. left:0px;
  5815. top:0px;
  5816. width:134px;
  5817. height:23px;
  5818. background:inherit;
  5819. background-color:rgba(255, 255, 255, 1);
  5820. border:none;
  5821. border-radius:0px;
  5822. -moz-box-shadow:none;
  5823. -webkit-box-shadow:none;
  5824. box-shadow:none;
  5825. font-size:14px;
  5826. color:#AAAAAA;
  5827. }
  5828. #u52250 {
  5829. border-width:0px;
  5830. position:absolute;
  5831. left:804px;
  5832. top:107px;
  5833. width:134px;
  5834. height:23px;
  5835. display:flex;
  5836. font-size:14px;
  5837. color:#AAAAAA;
  5838. }
  5839. #u52250 .text {
  5840. position:absolute;
  5841. align-self:flex-start;
  5842. padding:2px 2px 2px 2px;
  5843. box-sizing:border-box;
  5844. width:100%;
  5845. }
  5846. #u52250_div.disabled {
  5847. border-width:0px;
  5848. position:absolute;
  5849. left:0px;
  5850. top:0px;
  5851. width:134px;
  5852. height:23px;
  5853. background:inherit;
  5854. background-color:rgba(240, 240, 240, 1);
  5855. border:none;
  5856. border-radius:0px;
  5857. -moz-box-shadow:none;
  5858. -webkit-box-shadow:none;
  5859. box-shadow:none;
  5860. font-size:14px;
  5861. color:#AAAAAA;
  5862. }
  5863. #u52250.disabled {
  5864. }
  5865. .u52250_input_option {
  5866. font-size:14px;
  5867. }
  5868. #u52251 {
  5869. border-width:0px;
  5870. position:absolute;
  5871. left:0px;
  5872. top:0px;
  5873. width:0px;
  5874. height:0px;
  5875. }
  5876. #u52252_div {
  5877. border-width:0px;
  5878. position:absolute;
  5879. left:0px;
  5880. top:0px;
  5881. width:140px;
  5882. height:30px;
  5883. background:inherit;
  5884. background-color:rgba(255, 255, 255, 1);
  5885. box-sizing:border-box;
  5886. border-width:1px;
  5887. border-style:solid;
  5888. border-color:rgba(215, 215, 215, 1);
  5889. border-radius:4px;
  5890. -moz-box-shadow:none;
  5891. -webkit-box-shadow:none;
  5892. box-shadow:none;
  5893. font-size:14px;
  5894. }
  5895. #u52252 {
  5896. border-width:0px;
  5897. position:absolute;
  5898. left:950px;
  5899. top:105px;
  5900. width:140px;
  5901. height:30px;
  5902. display:flex;
  5903. font-size:14px;
  5904. }
  5905. #u52252 .text {
  5906. position:absolute;
  5907. align-self:center;
  5908. padding:2px 2px 2px 2px;
  5909. box-sizing:border-box;
  5910. width:100%;
  5911. }
  5912. #u52252_text {
  5913. border-width:0px;
  5914. word-wrap:break-word;
  5915. text-transform:none;
  5916. visibility:hidden;
  5917. }
  5918. #u52253_input {
  5919. position:absolute;
  5920. left:0px;
  5921. top:0px;
  5922. width:134px;
  5923. height:23px;
  5924. padding:2px 2px 2px 2px;
  5925. font-family:'ArialMT', 'Arial', sans-serif;
  5926. font-weight:400;
  5927. font-style:normal;
  5928. font-size:14px;
  5929. letter-spacing:normal;
  5930. color:#AAAAAA;
  5931. vertical-align:none;
  5932. text-align:left;
  5933. text-transform:none;
  5934. background-color:transparent;
  5935. border-color:transparent;
  5936. }
  5937. #u52253_input.disabled {
  5938. position:absolute;
  5939. left:0px;
  5940. top:0px;
  5941. width:134px;
  5942. height:23px;
  5943. padding:2px 2px 2px 2px;
  5944. font-family:'ArialMT', 'Arial', sans-serif;
  5945. font-weight:400;
  5946. font-style:normal;
  5947. font-size:14px;
  5948. letter-spacing:normal;
  5949. color:#AAAAAA;
  5950. vertical-align:none;
  5951. text-align:left;
  5952. text-transform:none;
  5953. background-color:transparent;
  5954. border-color:transparent;
  5955. }
  5956. #u52253_div {
  5957. border-width:0px;
  5958. position:absolute;
  5959. left:0px;
  5960. top:0px;
  5961. width:134px;
  5962. height:23px;
  5963. background:inherit;
  5964. background-color:rgba(255, 255, 255, 1);
  5965. border:none;
  5966. border-radius:0px;
  5967. -moz-box-shadow:none;
  5968. -webkit-box-shadow:none;
  5969. box-shadow:none;
  5970. font-size:14px;
  5971. color:#AAAAAA;
  5972. }
  5973. #u52253 {
  5974. border-width:0px;
  5975. position:absolute;
  5976. left:954px;
  5977. top:107px;
  5978. width:134px;
  5979. height:23px;
  5980. display:flex;
  5981. font-size:14px;
  5982. color:#AAAAAA;
  5983. }
  5984. #u52253 .text {
  5985. position:absolute;
  5986. align-self:flex-start;
  5987. padding:2px 2px 2px 2px;
  5988. box-sizing:border-box;
  5989. width:100%;
  5990. }
  5991. #u52253_div.disabled {
  5992. border-width:0px;
  5993. position:absolute;
  5994. left:0px;
  5995. top:0px;
  5996. width:134px;
  5997. height:23px;
  5998. background:inherit;
  5999. background-color:rgba(240, 240, 240, 1);
  6000. border:none;
  6001. border-radius:0px;
  6002. -moz-box-shadow:none;
  6003. -webkit-box-shadow:none;
  6004. box-shadow:none;
  6005. font-size:14px;
  6006. color:#AAAAAA;
  6007. }
  6008. #u52253.disabled {
  6009. }
  6010. .u52253_input_option {
  6011. font-size:14px;
  6012. }
  6013. #u52254 {
  6014. border-width:0px;
  6015. position:absolute;
  6016. left:0px;
  6017. top:0px;
  6018. width:0px;
  6019. height:0px;
  6020. }
  6021. #u52255_div {
  6022. border-width:0px;
  6023. position:absolute;
  6024. left:0px;
  6025. top:0px;
  6026. width:140px;
  6027. height:30px;
  6028. background:inherit;
  6029. background-color:rgba(255, 255, 255, 1);
  6030. box-sizing:border-box;
  6031. border-width:1px;
  6032. border-style:solid;
  6033. border-color:rgba(201, 201, 201, 1);
  6034. border-radius:4px;
  6035. -moz-box-shadow:none;
  6036. -webkit-box-shadow:none;
  6037. box-shadow:none;
  6038. font-family:'Microsoft YaHei', sans-serif;
  6039. font-weight:400;
  6040. font-style:normal;
  6041. font-size:14px;
  6042. color:#CCCCCC;
  6043. text-align:left;
  6044. }
  6045. #u52255 {
  6046. border-width:0px;
  6047. position:absolute;
  6048. left:1100px;
  6049. top:105px;
  6050. width:140px;
  6051. height:30px;
  6052. display:flex;
  6053. font-family:'Microsoft YaHei', sans-serif;
  6054. font-weight:400;
  6055. font-style:normal;
  6056. font-size:14px;
  6057. color:#CCCCCC;
  6058. text-align:left;
  6059. }
  6060. #u52255 .text {
  6061. position:absolute;
  6062. align-self:center;
  6063. padding:2px 8px 2px 8px;
  6064. box-sizing:border-box;
  6065. width:100%;
  6066. }
  6067. #u52255_text {
  6068. border-width:0px;
  6069. word-wrap:break-word;
  6070. text-transform:none;
  6071. visibility:hidden;
  6072. }
  6073. #u52256_input {
  6074. position:absolute;
  6075. left:0px;
  6076. top:0px;
  6077. width:127px;
  6078. height:25px;
  6079. padding:2px 2px 2px 2px;
  6080. font-family:'Microsoft YaHei', sans-serif;
  6081. font-weight:400;
  6082. font-style:normal;
  6083. font-size:10px;
  6084. letter-spacing:normal;
  6085. color:#000000;
  6086. vertical-align:none;
  6087. text-align:left;
  6088. text-transform:none;
  6089. background-color:transparent;
  6090. border-color:transparent;
  6091. }
  6092. #u52256_input.disabled {
  6093. position:absolute;
  6094. left:0px;
  6095. top:0px;
  6096. width:127px;
  6097. height:25px;
  6098. padding:2px 2px 2px 2px;
  6099. font-family:'Microsoft YaHei', sans-serif;
  6100. font-weight:400;
  6101. font-style:normal;
  6102. font-size:10px;
  6103. letter-spacing:normal;
  6104. color:#000000;
  6105. vertical-align:none;
  6106. text-align:left;
  6107. text-transform:none;
  6108. background-color:transparent;
  6109. border-color:transparent;
  6110. }
  6111. #u52256_div {
  6112. border-width:0px;
  6113. position:absolute;
  6114. left:0px;
  6115. top:0px;
  6116. width:127px;
  6117. height:25px;
  6118. background:inherit;
  6119. background-color:rgba(255, 255, 255, 1);
  6120. border:none;
  6121. border-radius:0px;
  6122. -moz-box-shadow:none;
  6123. -webkit-box-shadow:none;
  6124. box-shadow:none;
  6125. font-family:'Microsoft YaHei', sans-serif;
  6126. font-weight:400;
  6127. font-style:normal;
  6128. font-size:10px;
  6129. }
  6130. #u52256 {
  6131. border-width:0px;
  6132. position:absolute;
  6133. left:1108px;
  6134. top:106px;
  6135. width:127px;
  6136. height:25px;
  6137. display:flex;
  6138. font-family:'Microsoft YaHei', sans-serif;
  6139. font-weight:400;
  6140. font-style:normal;
  6141. font-size:10px;
  6142. }
  6143. #u52256 .text {
  6144. position:absolute;
  6145. align-self:center;
  6146. padding:2px 2px 2px 2px;
  6147. box-sizing:border-box;
  6148. width:100%;
  6149. }
  6150. #u52256_div.disabled {
  6151. border-width:0px;
  6152. position:absolute;
  6153. left:0px;
  6154. top:0px;
  6155. width:127px;
  6156. height:25px;
  6157. background:inherit;
  6158. background-color:rgba(240, 240, 240, 1);
  6159. border:none;
  6160. border-radius:0px;
  6161. -moz-box-shadow:none;
  6162. -webkit-box-shadow:none;
  6163. box-shadow:none;
  6164. font-family:'Microsoft YaHei', sans-serif;
  6165. font-weight:400;
  6166. font-style:normal;
  6167. font-size:10px;
  6168. }
  6169. #u52256.disabled {
  6170. }
  6171. #u52257 {
  6172. border-width:0px;
  6173. position:absolute;
  6174. left:0px;
  6175. top:0px;
  6176. width:0px;
  6177. height:0px;
  6178. }
  6179. #u52258_div {
  6180. border-width:0px;
  6181. position:absolute;
  6182. left:0px;
  6183. top:0px;
  6184. width:140px;
  6185. height:30px;
  6186. background:inherit;
  6187. background-color:rgba(255, 255, 255, 1);
  6188. box-sizing:border-box;
  6189. border-width:1px;
  6190. border-style:solid;
  6191. border-color:rgba(215, 215, 215, 1);
  6192. border-radius:4px;
  6193. -moz-box-shadow:none;
  6194. -webkit-box-shadow:none;
  6195. box-shadow:none;
  6196. font-size:14px;
  6197. }
  6198. #u52258 {
  6199. border-width:0px;
  6200. position:absolute;
  6201. left:350px;
  6202. top:145px;
  6203. width:140px;
  6204. height:30px;
  6205. display:flex;
  6206. font-size:14px;
  6207. }
  6208. #u52258 .text {
  6209. position:absolute;
  6210. align-self:center;
  6211. padding:2px 2px 2px 2px;
  6212. box-sizing:border-box;
  6213. width:100%;
  6214. }
  6215. #u52258_text {
  6216. border-width:0px;
  6217. word-wrap:break-word;
  6218. text-transform:none;
  6219. visibility:hidden;
  6220. }
  6221. #u52259_input {
  6222. position:absolute;
  6223. left:0px;
  6224. top:0px;
  6225. width:134px;
  6226. height:23px;
  6227. padding:2px 2px 2px 2px;
  6228. font-family:'ArialMT', 'Arial', sans-serif;
  6229. font-weight:400;
  6230. font-style:normal;
  6231. font-size:14px;
  6232. letter-spacing:normal;
  6233. color:#AAAAAA;
  6234. vertical-align:none;
  6235. text-align:left;
  6236. text-transform:none;
  6237. background-color:transparent;
  6238. border-color:transparent;
  6239. }
  6240. #u52259_input.disabled {
  6241. position:absolute;
  6242. left:0px;
  6243. top:0px;
  6244. width:134px;
  6245. height:23px;
  6246. padding:2px 2px 2px 2px;
  6247. font-family:'ArialMT', 'Arial', sans-serif;
  6248. font-weight:400;
  6249. font-style:normal;
  6250. font-size:14px;
  6251. letter-spacing:normal;
  6252. color:#AAAAAA;
  6253. vertical-align:none;
  6254. text-align:left;
  6255. text-transform:none;
  6256. background-color:transparent;
  6257. border-color:transparent;
  6258. }
  6259. #u52259_div {
  6260. border-width:0px;
  6261. position:absolute;
  6262. left:0px;
  6263. top:0px;
  6264. width:134px;
  6265. height:23px;
  6266. background:inherit;
  6267. background-color:rgba(255, 255, 255, 1);
  6268. border:none;
  6269. border-radius:0px;
  6270. -moz-box-shadow:none;
  6271. -webkit-box-shadow:none;
  6272. box-shadow:none;
  6273. font-size:14px;
  6274. color:#AAAAAA;
  6275. }
  6276. #u52259 {
  6277. border-width:0px;
  6278. position:absolute;
  6279. left:354px;
  6280. top:147px;
  6281. width:134px;
  6282. height:23px;
  6283. display:flex;
  6284. font-size:14px;
  6285. color:#AAAAAA;
  6286. }
  6287. #u52259 .text {
  6288. position:absolute;
  6289. align-self:flex-start;
  6290. padding:2px 2px 2px 2px;
  6291. box-sizing:border-box;
  6292. width:100%;
  6293. }
  6294. #u52259_div.disabled {
  6295. border-width:0px;
  6296. position:absolute;
  6297. left:0px;
  6298. top:0px;
  6299. width:134px;
  6300. height:23px;
  6301. background:inherit;
  6302. background-color:rgba(240, 240, 240, 1);
  6303. border:none;
  6304. border-radius:0px;
  6305. -moz-box-shadow:none;
  6306. -webkit-box-shadow:none;
  6307. box-shadow:none;
  6308. font-size:14px;
  6309. color:#AAAAAA;
  6310. }
  6311. #u52259.disabled {
  6312. }
  6313. .u52259_input_option {
  6314. font-size:14px;
  6315. }
  6316. #u52260 {
  6317. border-width:0px;
  6318. position:absolute;
  6319. left:0px;
  6320. top:0px;
  6321. width:0px;
  6322. height:0px;
  6323. }
  6324. #u52261_div {
  6325. border-width:0px;
  6326. position:absolute;
  6327. left:0px;
  6328. top:0px;
  6329. width:140px;
  6330. height:30px;
  6331. background:inherit;
  6332. background-color:rgba(255, 255, 255, 1);
  6333. box-sizing:border-box;
  6334. border-width:1px;
  6335. border-style:solid;
  6336. border-color:rgba(215, 215, 215, 1);
  6337. border-radius:4px;
  6338. -moz-box-shadow:none;
  6339. -webkit-box-shadow:none;
  6340. box-shadow:none;
  6341. font-size:14px;
  6342. }
  6343. #u52261 {
  6344. border-width:0px;
  6345. position:absolute;
  6346. left:500px;
  6347. top:145px;
  6348. width:140px;
  6349. height:30px;
  6350. display:flex;
  6351. font-size:14px;
  6352. }
  6353. #u52261 .text {
  6354. position:absolute;
  6355. align-self:center;
  6356. padding:2px 2px 2px 2px;
  6357. box-sizing:border-box;
  6358. width:100%;
  6359. }
  6360. #u52261_text {
  6361. border-width:0px;
  6362. word-wrap:break-word;
  6363. text-transform:none;
  6364. visibility:hidden;
  6365. }
  6366. #u52262_input {
  6367. position:absolute;
  6368. left:0px;
  6369. top:0px;
  6370. width:134px;
  6371. height:23px;
  6372. padding:2px 2px 2px 2px;
  6373. font-family:'ArialMT', 'Arial', sans-serif;
  6374. font-weight:400;
  6375. font-style:normal;
  6376. font-size:14px;
  6377. letter-spacing:normal;
  6378. color:#AAAAAA;
  6379. vertical-align:none;
  6380. text-align:left;
  6381. text-transform:none;
  6382. background-color:transparent;
  6383. border-color:transparent;
  6384. }
  6385. #u52262_input.disabled {
  6386. position:absolute;
  6387. left:0px;
  6388. top:0px;
  6389. width:134px;
  6390. height:23px;
  6391. padding:2px 2px 2px 2px;
  6392. font-family:'ArialMT', 'Arial', sans-serif;
  6393. font-weight:400;
  6394. font-style:normal;
  6395. font-size:14px;
  6396. letter-spacing:normal;
  6397. color:#AAAAAA;
  6398. vertical-align:none;
  6399. text-align:left;
  6400. text-transform:none;
  6401. background-color:transparent;
  6402. border-color:transparent;
  6403. }
  6404. #u52262_div {
  6405. border-width:0px;
  6406. position:absolute;
  6407. left:0px;
  6408. top:0px;
  6409. width:134px;
  6410. height:23px;
  6411. background:inherit;
  6412. background-color:rgba(255, 255, 255, 1);
  6413. border:none;
  6414. border-radius:0px;
  6415. -moz-box-shadow:none;
  6416. -webkit-box-shadow:none;
  6417. box-shadow:none;
  6418. font-size:14px;
  6419. color:#AAAAAA;
  6420. }
  6421. #u52262 {
  6422. border-width:0px;
  6423. position:absolute;
  6424. left:504px;
  6425. top:147px;
  6426. width:134px;
  6427. height:23px;
  6428. display:flex;
  6429. font-size:14px;
  6430. color:#AAAAAA;
  6431. }
  6432. #u52262 .text {
  6433. position:absolute;
  6434. align-self:flex-start;
  6435. padding:2px 2px 2px 2px;
  6436. box-sizing:border-box;
  6437. width:100%;
  6438. }
  6439. #u52262_div.disabled {
  6440. border-width:0px;
  6441. position:absolute;
  6442. left:0px;
  6443. top:0px;
  6444. width:134px;
  6445. height:23px;
  6446. background:inherit;
  6447. background-color:rgba(240, 240, 240, 1);
  6448. border:none;
  6449. border-radius:0px;
  6450. -moz-box-shadow:none;
  6451. -webkit-box-shadow:none;
  6452. box-shadow:none;
  6453. font-size:14px;
  6454. color:#AAAAAA;
  6455. }
  6456. #u52262.disabled {
  6457. }
  6458. .u52262_input_option {
  6459. font-size:14px;
  6460. }
  6461. #u52263 {
  6462. border-width:0px;
  6463. position:absolute;
  6464. left:0px;
  6465. top:0px;
  6466. width:0px;
  6467. height:0px;
  6468. }
  6469. #u52264_div {
  6470. border-width:0px;
  6471. position:absolute;
  6472. left:0px;
  6473. top:0px;
  6474. width:140px;
  6475. height:30px;
  6476. background:inherit;
  6477. background-color:rgba(255, 255, 255, 1);
  6478. box-sizing:border-box;
  6479. border-width:1px;
  6480. border-style:solid;
  6481. border-color:rgba(215, 215, 215, 1);
  6482. border-radius:4px;
  6483. -moz-box-shadow:none;
  6484. -webkit-box-shadow:none;
  6485. box-shadow:none;
  6486. font-size:14px;
  6487. }
  6488. #u52264 {
  6489. border-width:0px;
  6490. position:absolute;
  6491. left:1250px;
  6492. top:105px;
  6493. width:140px;
  6494. height:30px;
  6495. display:flex;
  6496. font-size:14px;
  6497. }
  6498. #u52264 .text {
  6499. position:absolute;
  6500. align-self:center;
  6501. padding:2px 2px 2px 2px;
  6502. box-sizing:border-box;
  6503. width:100%;
  6504. }
  6505. #u52264_text {
  6506. border-width:0px;
  6507. word-wrap:break-word;
  6508. text-transform:none;
  6509. visibility:hidden;
  6510. }
  6511. #u52265_input {
  6512. position:absolute;
  6513. left:0px;
  6514. top:0px;
  6515. width:134px;
  6516. height:23px;
  6517. padding:2px 2px 2px 2px;
  6518. font-family:'ArialMT', 'Arial', sans-serif;
  6519. font-weight:400;
  6520. font-style:normal;
  6521. font-size:14px;
  6522. letter-spacing:normal;
  6523. color:#AAAAAA;
  6524. vertical-align:none;
  6525. text-align:left;
  6526. text-transform:none;
  6527. background-color:transparent;
  6528. border-color:transparent;
  6529. }
  6530. #u52265_input.disabled {
  6531. position:absolute;
  6532. left:0px;
  6533. top:0px;
  6534. width:134px;
  6535. height:23px;
  6536. padding:2px 2px 2px 2px;
  6537. font-family:'ArialMT', 'Arial', sans-serif;
  6538. font-weight:400;
  6539. font-style:normal;
  6540. font-size:14px;
  6541. letter-spacing:normal;
  6542. color:#AAAAAA;
  6543. vertical-align:none;
  6544. text-align:left;
  6545. text-transform:none;
  6546. background-color:transparent;
  6547. border-color:transparent;
  6548. }
  6549. #u52265_div {
  6550. border-width:0px;
  6551. position:absolute;
  6552. left:0px;
  6553. top:0px;
  6554. width:134px;
  6555. height:23px;
  6556. background:inherit;
  6557. background-color:rgba(255, 255, 255, 1);
  6558. border:none;
  6559. border-radius:0px;
  6560. -moz-box-shadow:none;
  6561. -webkit-box-shadow:none;
  6562. box-shadow:none;
  6563. font-size:14px;
  6564. color:#AAAAAA;
  6565. }
  6566. #u52265 {
  6567. border-width:0px;
  6568. position:absolute;
  6569. left:1254px;
  6570. top:107px;
  6571. width:134px;
  6572. height:23px;
  6573. display:flex;
  6574. font-size:14px;
  6575. color:#AAAAAA;
  6576. }
  6577. #u52265 .text {
  6578. position:absolute;
  6579. align-self:flex-start;
  6580. padding:2px 2px 2px 2px;
  6581. box-sizing:border-box;
  6582. width:100%;
  6583. }
  6584. #u52265_div.disabled {
  6585. border-width:0px;
  6586. position:absolute;
  6587. left:0px;
  6588. top:0px;
  6589. width:134px;
  6590. height:23px;
  6591. background:inherit;
  6592. background-color:rgba(240, 240, 240, 1);
  6593. border:none;
  6594. border-radius:0px;
  6595. -moz-box-shadow:none;
  6596. -webkit-box-shadow:none;
  6597. box-shadow:none;
  6598. font-size:14px;
  6599. color:#AAAAAA;
  6600. }
  6601. #u52265.disabled {
  6602. }
  6603. .u52265_input_option {
  6604. font-size:14px;
  6605. }
  6606. #u52266 {
  6607. border-width:0px;
  6608. position:absolute;
  6609. left:0px;
  6610. top:0px;
  6611. width:0px;
  6612. height:0px;
  6613. }
  6614. #u52267_div {
  6615. border-width:0px;
  6616. position:absolute;
  6617. left:0px;
  6618. top:0px;
  6619. width:140px;
  6620. height:30px;
  6621. background:inherit;
  6622. background-color:rgba(255, 255, 255, 1);
  6623. box-sizing:border-box;
  6624. border-width:1px;
  6625. border-style:solid;
  6626. border-color:rgba(215, 215, 215, 1);
  6627. border-radius:4px;
  6628. -moz-box-shadow:none;
  6629. -webkit-box-shadow:none;
  6630. box-shadow:none;
  6631. font-size:14px;
  6632. }
  6633. #u52267 {
  6634. border-width:0px;
  6635. position:absolute;
  6636. left:1400px;
  6637. top:105px;
  6638. width:140px;
  6639. height:30px;
  6640. display:flex;
  6641. font-size:14px;
  6642. }
  6643. #u52267 .text {
  6644. position:absolute;
  6645. align-self:center;
  6646. padding:2px 2px 2px 2px;
  6647. box-sizing:border-box;
  6648. width:100%;
  6649. }
  6650. #u52267_text {
  6651. border-width:0px;
  6652. word-wrap:break-word;
  6653. text-transform:none;
  6654. visibility:hidden;
  6655. }
  6656. #u52268_input {
  6657. position:absolute;
  6658. left:0px;
  6659. top:0px;
  6660. width:134px;
  6661. height:23px;
  6662. padding:2px 2px 2px 2px;
  6663. font-family:'ArialMT', 'Arial', sans-serif;
  6664. font-weight:400;
  6665. font-style:normal;
  6666. font-size:14px;
  6667. letter-spacing:normal;
  6668. color:#AAAAAA;
  6669. vertical-align:none;
  6670. text-align:left;
  6671. text-transform:none;
  6672. background-color:transparent;
  6673. border-color:transparent;
  6674. }
  6675. #u52268_input.disabled {
  6676. position:absolute;
  6677. left:0px;
  6678. top:0px;
  6679. width:134px;
  6680. height:23px;
  6681. padding:2px 2px 2px 2px;
  6682. font-family:'ArialMT', 'Arial', sans-serif;
  6683. font-weight:400;
  6684. font-style:normal;
  6685. font-size:14px;
  6686. letter-spacing:normal;
  6687. color:#AAAAAA;
  6688. vertical-align:none;
  6689. text-align:left;
  6690. text-transform:none;
  6691. background-color:transparent;
  6692. border-color:transparent;
  6693. }
  6694. #u52268_div {
  6695. border-width:0px;
  6696. position:absolute;
  6697. left:0px;
  6698. top:0px;
  6699. width:134px;
  6700. height:23px;
  6701. background:inherit;
  6702. background-color:rgba(255, 255, 255, 1);
  6703. border:none;
  6704. border-radius:0px;
  6705. -moz-box-shadow:none;
  6706. -webkit-box-shadow:none;
  6707. box-shadow:none;
  6708. font-size:14px;
  6709. color:#AAAAAA;
  6710. }
  6711. #u52268 {
  6712. border-width:0px;
  6713. position:absolute;
  6714. left:1404px;
  6715. top:107px;
  6716. width:134px;
  6717. height:23px;
  6718. display:flex;
  6719. font-size:14px;
  6720. color:#AAAAAA;
  6721. }
  6722. #u52268 .text {
  6723. position:absolute;
  6724. align-self:flex-start;
  6725. padding:2px 2px 2px 2px;
  6726. box-sizing:border-box;
  6727. width:100%;
  6728. }
  6729. #u52268_div.disabled {
  6730. border-width:0px;
  6731. position:absolute;
  6732. left:0px;
  6733. top:0px;
  6734. width:134px;
  6735. height:23px;
  6736. background:inherit;
  6737. background-color:rgba(240, 240, 240, 1);
  6738. border:none;
  6739. border-radius:0px;
  6740. -moz-box-shadow:none;
  6741. -webkit-box-shadow:none;
  6742. box-shadow:none;
  6743. font-size:14px;
  6744. color:#AAAAAA;
  6745. }
  6746. #u52268.disabled {
  6747. }
  6748. .u52268_input_option {
  6749. font-size:14px;
  6750. }
  6751. #u52269 {
  6752. border-width:0px;
  6753. position:absolute;
  6754. left:0px;
  6755. top:0px;
  6756. width:0px;
  6757. height:0px;
  6758. }
  6759. #u52270_div {
  6760. border-width:0px;
  6761. position:absolute;
  6762. left:0px;
  6763. top:0px;
  6764. width:200px;
  6765. height:1193px;
  6766. background:inherit;
  6767. background-color:rgba(255, 255, 255, 1);
  6768. border:none;
  6769. border-radius:0px;
  6770. -moz-box-shadow:none;
  6771. -webkit-box-shadow:none;
  6772. box-shadow:none;
  6773. }
  6774. #u52270 {
  6775. border-width:0px;
  6776. position:absolute;
  6777. left:121px;
  6778. top:50px;
  6779. width:200px;
  6780. height:1193px;
  6781. display:flex;
  6782. }
  6783. #u52270 .text {
  6784. position:absolute;
  6785. align-self:center;
  6786. padding:2px 2px 2px 2px;
  6787. box-sizing:border-box;
  6788. width:100%;
  6789. }
  6790. #u52270_text {
  6791. border-width:0px;
  6792. word-wrap:break-word;
  6793. text-transform:none;
  6794. visibility:hidden;
  6795. }
  6796. #u52271_div {
  6797. border-width:0px;
  6798. position:absolute;
  6799. left:0px;
  6800. top:0px;
  6801. width:200px;
  6802. height:60px;
  6803. background:inherit;
  6804. background-color:rgba(224, 231, 247, 1);
  6805. border:none;
  6806. border-radius:0px;
  6807. -moz-box-shadow:none;
  6808. -webkit-box-shadow:none;
  6809. box-shadow:none;
  6810. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6811. font-weight:500;
  6812. font-style:normal;
  6813. font-size:18px;
  6814. }
  6815. #u52271 {
  6816. border-width:0px;
  6817. position:absolute;
  6818. left:121px;
  6819. top:50px;
  6820. width:200px;
  6821. height:60px;
  6822. display:flex;
  6823. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6824. font-weight:500;
  6825. font-style:normal;
  6826. font-size:18px;
  6827. }
  6828. #u52271 .text {
  6829. position:absolute;
  6830. align-self:center;
  6831. padding:0px 0px 0px 20px;
  6832. box-sizing:border-box;
  6833. width:100%;
  6834. }
  6835. #u52271_text {
  6836. border-width:0px;
  6837. word-wrap:break-word;
  6838. text-transform:none;
  6839. }
  6840. #u52272_div {
  6841. border-width:0px;
  6842. position:absolute;
  6843. left:0px;
  6844. top:0px;
  6845. width:65px;
  6846. height:22px;
  6847. background:inherit;
  6848. background-color:rgba(255, 255, 255, 0);
  6849. border:none;
  6850. border-radius:0px;
  6851. -moz-box-shadow:none;
  6852. -webkit-box-shadow:none;
  6853. box-shadow:none;
  6854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6855. font-weight:400;
  6856. font-style:normal;
  6857. font-size:16px;
  6858. }
  6859. #u52272 {
  6860. border-width:0px;
  6861. position:absolute;
  6862. left:151px;
  6863. top:164px;
  6864. width:65px;
  6865. height:22px;
  6866. display:flex;
  6867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6868. font-weight:400;
  6869. font-style:normal;
  6870. font-size:16px;
  6871. }
  6872. #u52272 .text {
  6873. position:absolute;
  6874. align-self:flex-start;
  6875. padding:0px 0px 0px 0px;
  6876. box-sizing:border-box;
  6877. width:100%;
  6878. }
  6879. #u52272_text {
  6880. border-width:0px;
  6881. white-space:nowrap;
  6882. text-transform:none;
  6883. }
  6884. #u52273_div {
  6885. border-width:0px;
  6886. position:absolute;
  6887. left:0px;
  6888. top:0px;
  6889. width:49px;
  6890. height:17px;
  6891. background:inherit;
  6892. background-color:rgba(255, 255, 255, 0);
  6893. border:none;
  6894. border-radius:0px;
  6895. -moz-box-shadow:none;
  6896. -webkit-box-shadow:none;
  6897. box-shadow:none;
  6898. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6899. font-weight:400;
  6900. font-style:normal;
  6901. font-size:12px;
  6902. color:#AAAAAA;
  6903. }
  6904. #u52273 {
  6905. border-width:0px;
  6906. position:absolute;
  6907. left:151px;
  6908. top:128px;
  6909. width:49px;
  6910. height:17px;
  6911. display:flex;
  6912. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6913. font-weight:400;
  6914. font-style:normal;
  6915. font-size:12px;
  6916. color:#AAAAAA;
  6917. }
  6918. #u52273 .text {
  6919. position:absolute;
  6920. align-self:flex-start;
  6921. padding:0px 0px 0px 0px;
  6922. box-sizing:border-box;
  6923. width:100%;
  6924. }
  6925. #u52273_text {
  6926. border-width:0px;
  6927. white-space:nowrap;
  6928. text-transform:none;
  6929. }
  6930. #u52274_img {
  6931. border-width:0px;
  6932. position:absolute;
  6933. left:0px;
  6934. top:0px;
  6935. width:201px;
  6936. height:2px;
  6937. }
  6938. #u52274 {
  6939. border-width:0px;
  6940. position:absolute;
  6941. left:121px;
  6942. top:336px;
  6943. width:200px;
  6944. height:1px;
  6945. display:flex;
  6946. }
  6947. #u52274 .text {
  6948. position:absolute;
  6949. align-self:center;
  6950. padding:2px 2px 2px 2px;
  6951. box-sizing:border-box;
  6952. width:100%;
  6953. }
  6954. #u52274_text {
  6955. border-width:0px;
  6956. word-wrap:break-word;
  6957. text-transform:none;
  6958. visibility:hidden;
  6959. }
  6960. #u52275_img {
  6961. border-width:0px;
  6962. position:absolute;
  6963. left:0px;
  6964. top:0px;
  6965. width:201px;
  6966. height:2px;
  6967. }
  6968. #u52275 {
  6969. border-width:0px;
  6970. position:absolute;
  6971. left:120px;
  6972. top:484px;
  6973. width:200px;
  6974. height:1px;
  6975. display:flex;
  6976. }
  6977. #u52275 .text {
  6978. position:absolute;
  6979. align-self:center;
  6980. padding:2px 2px 2px 2px;
  6981. box-sizing:border-box;
  6982. width:100%;
  6983. }
  6984. #u52275_text {
  6985. border-width:0px;
  6986. word-wrap:break-word;
  6987. text-transform:none;
  6988. visibility:hidden;
  6989. }
  6990. #u52276_div {
  6991. border-width:0px;
  6992. position:absolute;
  6993. left:0px;
  6994. top:0px;
  6995. width:65px;
  6996. height:22px;
  6997. background:inherit;
  6998. background-color:rgba(255, 255, 255, 0);
  6999. border:none;
  7000. border-radius:0px;
  7001. -moz-box-shadow:none;
  7002. -webkit-box-shadow:none;
  7003. box-shadow:none;
  7004. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7005. font-weight:400;
  7006. font-style:normal;
  7007. font-size:16px;
  7008. }
  7009. #u52276 {
  7010. border-width:0px;
  7011. position:absolute;
  7012. left:150px;
  7013. top:580px;
  7014. width:65px;
  7015. height:22px;
  7016. display:flex;
  7017. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7018. font-weight:400;
  7019. font-style:normal;
  7020. font-size:16px;
  7021. }
  7022. #u52276 .text {
  7023. position:absolute;
  7024. align-self:flex-start;
  7025. padding:0px 0px 0px 0px;
  7026. box-sizing:border-box;
  7027. width:100%;
  7028. }
  7029. #u52276_text {
  7030. border-width:0px;
  7031. white-space:nowrap;
  7032. text-transform:none;
  7033. }
  7034. #u52277_div {
  7035. border-width:0px;
  7036. position:absolute;
  7037. left:0px;
  7038. top:0px;
  7039. width:49px;
  7040. height:17px;
  7041. background:inherit;
  7042. background-color:rgba(255, 255, 255, 0);
  7043. border:none;
  7044. border-radius:0px;
  7045. -moz-box-shadow:none;
  7046. -webkit-box-shadow:none;
  7047. box-shadow:none;
  7048. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7049. font-weight:400;
  7050. font-style:normal;
  7051. font-size:12px;
  7052. color:#AAAAAA;
  7053. }
  7054. #u52277 {
  7055. border-width:0px;
  7056. position:absolute;
  7057. left:150px;
  7058. top:504px;
  7059. width:49px;
  7060. height:17px;
  7061. display:flex;
  7062. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7063. font-weight:400;
  7064. font-style:normal;
  7065. font-size:12px;
  7066. color:#AAAAAA;
  7067. }
  7068. #u52277 .text {
  7069. position:absolute;
  7070. align-self:flex-start;
  7071. padding:0px 0px 0px 0px;
  7072. box-sizing:border-box;
  7073. width:100%;
  7074. }
  7075. #u52277_text {
  7076. border-width:0px;
  7077. white-space:nowrap;
  7078. text-transform:none;
  7079. }
  7080. #u52278_div {
  7081. border-width:0px;
  7082. position:absolute;
  7083. left:0px;
  7084. top:0px;
  7085. width:49px;
  7086. height:22px;
  7087. background:inherit;
  7088. background-color:rgba(255, 255, 255, 0);
  7089. border:none;
  7090. border-radius:0px;
  7091. -moz-box-shadow:none;
  7092. -webkit-box-shadow:none;
  7093. box-shadow:none;
  7094. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7095. font-weight:400;
  7096. font-style:normal;
  7097. font-size:16px;
  7098. }
  7099. #u52278 {
  7100. border-width:0px;
  7101. position:absolute;
  7102. left:151px;
  7103. top:393px;
  7104. width:49px;
  7105. height:22px;
  7106. display:flex;
  7107. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7108. font-weight:400;
  7109. font-style:normal;
  7110. font-size:16px;
  7111. }
  7112. #u52278 .text {
  7113. position:absolute;
  7114. align-self:flex-start;
  7115. padding:0px 0px 0px 0px;
  7116. box-sizing:border-box;
  7117. width:100%;
  7118. }
  7119. #u52278_text {
  7120. border-width:0px;
  7121. white-space:nowrap;
  7122. text-transform:none;
  7123. }
  7124. #u52279_div {
  7125. border-width:0px;
  7126. position:absolute;
  7127. left:0px;
  7128. top:0px;
  7129. width:49px;
  7130. height:17px;
  7131. background:inherit;
  7132. background-color:rgba(255, 255, 255, 0);
  7133. border:none;
  7134. border-radius:0px;
  7135. -moz-box-shadow:none;
  7136. -webkit-box-shadow:none;
  7137. box-shadow:none;
  7138. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7139. font-weight:400;
  7140. font-style:normal;
  7141. font-size:12px;
  7142. color:#AAAAAA;
  7143. }
  7144. #u52279 {
  7145. border-width:0px;
  7146. position:absolute;
  7147. left:151px;
  7148. top:357px;
  7149. width:49px;
  7150. height:17px;
  7151. display:flex;
  7152. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7153. font-weight:400;
  7154. font-style:normal;
  7155. font-size:12px;
  7156. color:#AAAAAA;
  7157. }
  7158. #u52279 .text {
  7159. position:absolute;
  7160. align-self:flex-start;
  7161. padding:0px 0px 0px 0px;
  7162. box-sizing:border-box;
  7163. width:100%;
  7164. }
  7165. #u52279_text {
  7166. border-width:0px;
  7167. white-space:nowrap;
  7168. text-transform:none;
  7169. }
  7170. #u52280_div {
  7171. border-width:0px;
  7172. position:absolute;
  7173. left:0px;
  7174. top:0px;
  7175. width:49px;
  7176. height:22px;
  7177. background:inherit;
  7178. background-color:rgba(255, 255, 255, 0);
  7179. border:none;
  7180. border-radius:0px;
  7181. -moz-box-shadow:none;
  7182. -webkit-box-shadow:none;
  7183. box-shadow:none;
  7184. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7185. font-weight:400;
  7186. font-style:normal;
  7187. font-size:16px;
  7188. }
  7189. #u52280 {
  7190. border-width:0px;
  7191. position:absolute;
  7192. left:151px;
  7193. top:435px;
  7194. width:49px;
  7195. height:22px;
  7196. display:flex;
  7197. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7198. font-weight:400;
  7199. font-style:normal;
  7200. font-size:16px;
  7201. }
  7202. #u52280 .text {
  7203. position:absolute;
  7204. align-self:flex-start;
  7205. padding:0px 0px 0px 0px;
  7206. box-sizing:border-box;
  7207. width:100%;
  7208. }
  7209. #u52280_text {
  7210. border-width:0px;
  7211. white-space:nowrap;
  7212. text-transform:none;
  7213. }
  7214. #u52281_div {
  7215. border-width:0px;
  7216. position:absolute;
  7217. left:0px;
  7218. top:0px;
  7219. width:97px;
  7220. height:22px;
  7221. background:inherit;
  7222. background-color:rgba(255, 255, 255, 0);
  7223. border:none;
  7224. border-radius:0px;
  7225. -moz-box-shadow:none;
  7226. -webkit-box-shadow:none;
  7227. box-shadow:none;
  7228. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7229. font-weight:400;
  7230. font-style:normal;
  7231. font-size:16px;
  7232. }
  7233. #u52281 {
  7234. border-width:0px;
  7235. position:absolute;
  7236. left:151px;
  7237. top:206px;
  7238. width:97px;
  7239. height:22px;
  7240. display:flex;
  7241. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7242. font-weight:400;
  7243. font-style:normal;
  7244. font-size:16px;
  7245. }
  7246. #u52281 .text {
  7247. position:absolute;
  7248. align-self:flex-start;
  7249. padding:0px 0px 0px 0px;
  7250. box-sizing:border-box;
  7251. width:100%;
  7252. }
  7253. #u52281_text {
  7254. border-width:0px;
  7255. white-space:nowrap;
  7256. text-transform:none;
  7257. }
  7258. #u52282_div {
  7259. border-width:0px;
  7260. position:absolute;
  7261. left:0px;
  7262. top:0px;
  7263. width:97px;
  7264. height:22px;
  7265. background:inherit;
  7266. background-color:rgba(255, 255, 255, 0);
  7267. border:none;
  7268. border-radius:0px;
  7269. -moz-box-shadow:none;
  7270. -webkit-box-shadow:none;
  7271. box-shadow:none;
  7272. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7273. font-weight:400;
  7274. font-style:normal;
  7275. font-size:16px;
  7276. }
  7277. #u52282 {
  7278. border-width:0px;
  7279. position:absolute;
  7280. left:150px;
  7281. top:622px;
  7282. width:97px;
  7283. height:22px;
  7284. display:flex;
  7285. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7286. font-weight:400;
  7287. font-style:normal;
  7288. font-size:16px;
  7289. }
  7290. #u52282 .text {
  7291. position:absolute;
  7292. align-self:flex-start;
  7293. padding:0px 0px 0px 0px;
  7294. box-sizing:border-box;
  7295. width:100%;
  7296. }
  7297. #u52282_text {
  7298. border-width:0px;
  7299. word-wrap:break-word;
  7300. text-transform:none;
  7301. }
  7302. #u52283_div {
  7303. border-width:0px;
  7304. position:absolute;
  7305. left:0px;
  7306. top:0px;
  7307. width:97px;
  7308. height:22px;
  7309. background:inherit;
  7310. background-color:rgba(255, 255, 255, 0);
  7311. border:none;
  7312. border-radius:0px;
  7313. -moz-box-shadow:none;
  7314. -webkit-box-shadow:none;
  7315. box-shadow:none;
  7316. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7317. font-weight:400;
  7318. font-style:normal;
  7319. font-size:16px;
  7320. }
  7321. #u52283 {
  7322. border-width:0px;
  7323. position:absolute;
  7324. left:150px;
  7325. top:664px;
  7326. width:97px;
  7327. height:22px;
  7328. display:flex;
  7329. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7330. font-weight:400;
  7331. font-style:normal;
  7332. font-size:16px;
  7333. }
  7334. #u52283 .text {
  7335. position:absolute;
  7336. align-self:flex-start;
  7337. padding:0px 0px 0px 0px;
  7338. box-sizing:border-box;
  7339. width:100%;
  7340. }
  7341. #u52283_text {
  7342. border-width:0px;
  7343. word-wrap:break-word;
  7344. text-transform:none;
  7345. }
  7346. #u52284_div {
  7347. border-width:0px;
  7348. position:absolute;
  7349. left:0px;
  7350. top:0px;
  7351. width:81px;
  7352. height:22px;
  7353. background:inherit;
  7354. background-color:rgba(255, 255, 255, 0);
  7355. border:none;
  7356. border-radius:0px;
  7357. -moz-box-shadow:none;
  7358. -webkit-box-shadow:none;
  7359. box-shadow:none;
  7360. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7361. font-weight:400;
  7362. font-style:normal;
  7363. font-size:16px;
  7364. }
  7365. #u52284 {
  7366. border-width:0px;
  7367. position:absolute;
  7368. left:151px;
  7369. top:248px;
  7370. width:81px;
  7371. height:22px;
  7372. display:flex;
  7373. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7374. font-weight:400;
  7375. font-style:normal;
  7376. font-size:16px;
  7377. }
  7378. #u52284 .text {
  7379. position:absolute;
  7380. align-self:flex-start;
  7381. padding:0px 0px 0px 0px;
  7382. box-sizing:border-box;
  7383. width:100%;
  7384. }
  7385. #u52284_text {
  7386. border-width:0px;
  7387. white-space:nowrap;
  7388. text-transform:none;
  7389. }
  7390. #u52285_div {
  7391. border-width:0px;
  7392. position:absolute;
  7393. left:0px;
  7394. top:0px;
  7395. width:81px;
  7396. height:22px;
  7397. background:inherit;
  7398. background-color:rgba(255, 255, 255, 0);
  7399. border:none;
  7400. border-radius:0px;
  7401. -moz-box-shadow:none;
  7402. -webkit-box-shadow:none;
  7403. box-shadow:none;
  7404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7405. font-weight:400;
  7406. font-style:normal;
  7407. font-size:16px;
  7408. }
  7409. #u52285 {
  7410. border-width:0px;
  7411. position:absolute;
  7412. left:151px;
  7413. top:290px;
  7414. width:81px;
  7415. height:22px;
  7416. display:flex;
  7417. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7418. font-weight:400;
  7419. font-style:normal;
  7420. font-size:16px;
  7421. }
  7422. #u52285 .text {
  7423. position:absolute;
  7424. align-self:flex-start;
  7425. padding:0px 0px 0px 0px;
  7426. box-sizing:border-box;
  7427. width:100%;
  7428. }
  7429. #u52285_text {
  7430. border-width:0px;
  7431. white-space:nowrap;
  7432. text-transform:none;
  7433. }
  7434. #u52286_div {
  7435. border-width:0px;
  7436. position:absolute;
  7437. left:0px;
  7438. top:0px;
  7439. width:65px;
  7440. height:22px;
  7441. background:inherit;
  7442. background-color:rgba(255, 255, 255, 0);
  7443. border:none;
  7444. border-radius:0px;
  7445. -moz-box-shadow:none;
  7446. -webkit-box-shadow:none;
  7447. box-shadow:none;
  7448. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7449. font-weight:400;
  7450. font-style:normal;
  7451. font-size:16px;
  7452. }
  7453. #u52286 {
  7454. border-width:0px;
  7455. position:absolute;
  7456. left:150px;
  7457. top:539px;
  7458. width:65px;
  7459. height:22px;
  7460. display:flex;
  7461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7462. font-weight:400;
  7463. font-style:normal;
  7464. font-size:16px;
  7465. }
  7466. #u52286 .text {
  7467. position:absolute;
  7468. align-self:flex-start;
  7469. padding:0px 0px 0px 0px;
  7470. box-sizing:border-box;
  7471. width:100%;
  7472. }
  7473. #u52286_text {
  7474. border-width:0px;
  7475. white-space:nowrap;
  7476. text-transform:none;
  7477. }