styles.css 135 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696
  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. #u59749_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. #u59749 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u59749 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u59749_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u59750_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. #u59750 {
  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. #u59750 .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. #u59750_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u59751_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. #u59751 {
  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. #u59751 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u59751_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u59752 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u59753_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u59753 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u59753 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u59753_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u59754_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. #u59754 {
  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. #u59754 .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. #u59754_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u59755_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. #u59755 {
  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. #u59755 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u59755_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u59756 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u59757_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. #u59757_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. #u59757_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. #u59757 {
  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. #u59757 .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. #u59757_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. #u59757.disabled {
  356. }
  357. .u59757_input_option {
  358. font-size:14px;
  359. }
  360. #u59758_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u59758 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u59758 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u59758_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u59759_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. #u59759 {
  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. #u59759 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u59759_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u59760_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. #u59760 {
  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. #u59760 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u59760_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u59761 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u59762_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. #u59762 {
  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. #u59762 .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. #u59762_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u59763_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u59763 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u59763 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u59763_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u59764 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u59765_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. #u59765 {
  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. #u59765 .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. #u59765_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u59766_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u59766 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u59766 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u59766_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u59767 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u59768_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. #u59768 {
  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. #u59768 .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. #u59768_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u59769_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u59769 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:403px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u59769 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u59769_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u59770 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u59771_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. #u59771 {
  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. #u59771 .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. #u59771_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u59772_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u59772 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u59772 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u59772_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u59773 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u59774_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. #u59774 {
  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. #u59774 .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. #u59774_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u59775_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u59775 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:445px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u59775 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u59775_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u59776 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u59777_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. #u59777 {
  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. #u59777 .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. #u59777_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u59778_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u59778 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:319px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u59778 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u59778_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u59779 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u59780_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. #u59780 {
  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. #u59780 .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. #u59780_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u59781_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u59781 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u59781 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u59781_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u59782 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u59783_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. #u59783 {
  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. #u59783 .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. #u59783_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u59784_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u59784 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:361px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u59784 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u59784_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u59785 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u59786_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. #u59786 {
  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. #u59786 .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. #u59786_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u59787_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u59787 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:487px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u59787 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u59787_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u59788 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u59789_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. #u59789 {
  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. #u59789 .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. #u59789_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u59790_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u59790 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:529px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u59790 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u59790_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u59791_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. #u59791 {
  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. #u59791 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u59791_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u59792_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u59792 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u59792 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u59792_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u59793_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. #u59793 {
  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. #u59793 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u59793_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u59794_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u59794 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u59794 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u59794_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u59795 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u59796_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. #u59796 {
  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. #u59796 .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. #u59796_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u59797_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u59797 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u59797 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u59797_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u59798 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u59799_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. #u59799 {
  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. #u59799 .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. #u59799_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u59800_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u59800 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:277px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u59800 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u59800_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u59801_div {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:1259px;
  1644. height:1180px;
  1645. background:inherit;
  1646. background-color:rgba(255, 255, 255, 1);
  1647. border:none;
  1648. border-radius:0px;
  1649. -moz-box-shadow:none;
  1650. -webkit-box-shadow:none;
  1651. box-shadow:none;
  1652. }
  1653. #u59801 {
  1654. border-width:0px;
  1655. position:absolute;
  1656. left:330px;
  1657. top:50px;
  1658. width:1259px;
  1659. height:1180px;
  1660. display:flex;
  1661. }
  1662. #u59801 .text {
  1663. position:absolute;
  1664. align-self:center;
  1665. padding:2px 2px 2px 2px;
  1666. box-sizing:border-box;
  1667. width:100%;
  1668. }
  1669. #u59801_text {
  1670. border-width:0px;
  1671. word-wrap:break-word;
  1672. text-transform:none;
  1673. visibility:hidden;
  1674. }
  1675. #u59802_div {
  1676. border-width:0px;
  1677. position:absolute;
  1678. left:0px;
  1679. top:0px;
  1680. width:73px;
  1681. height:50px;
  1682. background:inherit;
  1683. background-color:rgba(255, 255, 255, 0);
  1684. border:none;
  1685. border-left:0px;
  1686. border-top:0px;
  1687. border-right:0px;
  1688. border-radius:0px;
  1689. border-bottom-right-radius:0px;
  1690. border-bottom-left-radius:0px;
  1691. -moz-box-shadow:none;
  1692. -webkit-box-shadow:none;
  1693. box-shadow:none;
  1694. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1695. font-weight:400;
  1696. font-style:normal;
  1697. font-size:18px;
  1698. }
  1699. #u59802 {
  1700. border-width:0px;
  1701. position:absolute;
  1702. left:349px;
  1703. top:52px;
  1704. width:73px;
  1705. height:50px;
  1706. display:flex;
  1707. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1708. font-weight:400;
  1709. font-style:normal;
  1710. font-size:18px;
  1711. }
  1712. #u59802 .text {
  1713. position:absolute;
  1714. align-self:center;
  1715. padding:0px 0px 0px 0px;
  1716. box-sizing:border-box;
  1717. width:100%;
  1718. }
  1719. #u59802_text {
  1720. border-width:0px;
  1721. white-space:nowrap;
  1722. text-transform:none;
  1723. }
  1724. #u59803 {
  1725. border-width:0px;
  1726. position:absolute;
  1727. left:352px;
  1728. top:312px;
  1729. width:1215px;
  1730. height:366px;
  1731. }
  1732. #u59804_img {
  1733. border-width:0px;
  1734. position:absolute;
  1735. left:0px;
  1736. top:0px;
  1737. width:121px;
  1738. height:39px;
  1739. }
  1740. #u59804 {
  1741. border-width:0px;
  1742. position:absolute;
  1743. left:0px;
  1744. top:0px;
  1745. width:121px;
  1746. height:39px;
  1747. display:flex;
  1748. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  1749. font-weight:400;
  1750. font-style:normal;
  1751. font-size:12px;
  1752. color:#FFFFFF;
  1753. }
  1754. #u59804 .text {
  1755. position:absolute;
  1756. align-self:center;
  1757. padding:2px 2px 2px 0px;
  1758. box-sizing:border-box;
  1759. width:100%;
  1760. }
  1761. #u59804_text {
  1762. border-width:0px;
  1763. word-wrap:break-word;
  1764. text-transform:none;
  1765. }
  1766. #u59805_img {
  1767. border-width:0px;
  1768. position:absolute;
  1769. left:0px;
  1770. top:0px;
  1771. width:121px;
  1772. height:39px;
  1773. }
  1774. #u59805 {
  1775. border-width:0px;
  1776. position:absolute;
  1777. left:121px;
  1778. top:0px;
  1779. width:121px;
  1780. height:39px;
  1781. display:flex;
  1782. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1783. font-weight:400;
  1784. font-style:normal;
  1785. font-size:12px;
  1786. color:#FFFFFF;
  1787. }
  1788. #u59805 .text {
  1789. position:absolute;
  1790. align-self:center;
  1791. padding:2px 2px 2px 0px;
  1792. box-sizing:border-box;
  1793. width:100%;
  1794. }
  1795. #u59805_text {
  1796. border-width:0px;
  1797. word-wrap:break-word;
  1798. text-transform:none;
  1799. }
  1800. #u59806_img {
  1801. border-width:0px;
  1802. position:absolute;
  1803. left:0px;
  1804. top:0px;
  1805. width:121px;
  1806. height:39px;
  1807. }
  1808. #u59806 {
  1809. border-width:0px;
  1810. position:absolute;
  1811. left:242px;
  1812. top:0px;
  1813. width:121px;
  1814. height:39px;
  1815. display:flex;
  1816. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1817. font-weight:400;
  1818. font-style:normal;
  1819. font-size:12px;
  1820. color:#FFFFFF;
  1821. }
  1822. #u59806 .text {
  1823. position:absolute;
  1824. align-self:center;
  1825. padding:2px 2px 2px 0px;
  1826. box-sizing:border-box;
  1827. width:100%;
  1828. }
  1829. #u59806_text {
  1830. border-width:0px;
  1831. word-wrap:break-word;
  1832. text-transform:none;
  1833. }
  1834. #u59807_img {
  1835. border-width:0px;
  1836. position:absolute;
  1837. left:0px;
  1838. top:0px;
  1839. width:121px;
  1840. height:39px;
  1841. }
  1842. #u59807 {
  1843. border-width:0px;
  1844. position:absolute;
  1845. left:363px;
  1846. top:0px;
  1847. width:121px;
  1848. height:39px;
  1849. display:flex;
  1850. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1851. font-weight:400;
  1852. font-style:normal;
  1853. font-size:12px;
  1854. color:#FFFFFF;
  1855. }
  1856. #u59807 .text {
  1857. position:absolute;
  1858. align-self:center;
  1859. padding:2px 2px 2px 0px;
  1860. box-sizing:border-box;
  1861. width:100%;
  1862. }
  1863. #u59807_text {
  1864. border-width:0px;
  1865. word-wrap:break-word;
  1866. text-transform:none;
  1867. }
  1868. #u59808_img {
  1869. border-width:0px;
  1870. position:absolute;
  1871. left:0px;
  1872. top:0px;
  1873. width:121px;
  1874. height:39px;
  1875. }
  1876. #u59808 {
  1877. border-width:0px;
  1878. position:absolute;
  1879. left:484px;
  1880. top:0px;
  1881. width:121px;
  1882. height:39px;
  1883. display:flex;
  1884. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1885. font-weight:400;
  1886. font-style:normal;
  1887. font-size:12px;
  1888. color:#FFFFFF;
  1889. }
  1890. #u59808 .text {
  1891. position:absolute;
  1892. align-self:center;
  1893. padding:2px 2px 2px 0px;
  1894. box-sizing:border-box;
  1895. width:100%;
  1896. }
  1897. #u59808_text {
  1898. border-width:0px;
  1899. word-wrap:break-word;
  1900. text-transform:none;
  1901. }
  1902. #u59809_img {
  1903. border-width:0px;
  1904. position:absolute;
  1905. left:0px;
  1906. top:0px;
  1907. width:121px;
  1908. height:39px;
  1909. }
  1910. #u59809 {
  1911. border-width:0px;
  1912. position:absolute;
  1913. left:605px;
  1914. top:0px;
  1915. width:121px;
  1916. height:39px;
  1917. display:flex;
  1918. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1919. font-weight:400;
  1920. font-style:normal;
  1921. font-size:12px;
  1922. color:#FFFFFF;
  1923. }
  1924. #u59809 .text {
  1925. position:absolute;
  1926. align-self:center;
  1927. padding:2px 2px 2px 0px;
  1928. box-sizing:border-box;
  1929. width:100%;
  1930. }
  1931. #u59809_text {
  1932. border-width:0px;
  1933. word-wrap:break-word;
  1934. text-transform:none;
  1935. }
  1936. #u59810_img {
  1937. border-width:0px;
  1938. position:absolute;
  1939. left:0px;
  1940. top:0px;
  1941. width:121px;
  1942. height:39px;
  1943. }
  1944. #u59810 {
  1945. border-width:0px;
  1946. position:absolute;
  1947. left:726px;
  1948. top:0px;
  1949. width:121px;
  1950. height:39px;
  1951. display:flex;
  1952. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1953. font-weight:400;
  1954. font-style:normal;
  1955. font-size:12px;
  1956. color:#FFFFFF;
  1957. }
  1958. #u59810 .text {
  1959. position:absolute;
  1960. align-self:center;
  1961. padding:2px 2px 2px 0px;
  1962. box-sizing:border-box;
  1963. width:100%;
  1964. }
  1965. #u59810_text {
  1966. border-width:0px;
  1967. word-wrap:break-word;
  1968. text-transform:none;
  1969. }
  1970. #u59811_img {
  1971. border-width:0px;
  1972. position:absolute;
  1973. left:0px;
  1974. top:0px;
  1975. width:121px;
  1976. height:39px;
  1977. }
  1978. #u59811 {
  1979. border-width:0px;
  1980. position:absolute;
  1981. left:847px;
  1982. top:0px;
  1983. width:121px;
  1984. height:39px;
  1985. display:flex;
  1986. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1987. font-weight:400;
  1988. font-style:normal;
  1989. font-size:12px;
  1990. color:#FFFFFF;
  1991. }
  1992. #u59811 .text {
  1993. position:absolute;
  1994. align-self:center;
  1995. padding:2px 2px 2px 0px;
  1996. box-sizing:border-box;
  1997. width:100%;
  1998. }
  1999. #u59811_text {
  2000. border-width:0px;
  2001. word-wrap:break-word;
  2002. text-transform:none;
  2003. }
  2004. #u59812_img {
  2005. border-width:0px;
  2006. position:absolute;
  2007. left:0px;
  2008. top:0px;
  2009. width:121px;
  2010. height:39px;
  2011. }
  2012. #u59812 {
  2013. border-width:0px;
  2014. position:absolute;
  2015. left:968px;
  2016. top:0px;
  2017. width:121px;
  2018. height:39px;
  2019. display:flex;
  2020. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2021. font-weight:400;
  2022. font-style:normal;
  2023. font-size:12px;
  2024. color:#FFFFFF;
  2025. }
  2026. #u59812 .text {
  2027. position:absolute;
  2028. align-self:center;
  2029. padding:2px 2px 2px 0px;
  2030. box-sizing:border-box;
  2031. width:100%;
  2032. }
  2033. #u59812_text {
  2034. border-width:0px;
  2035. word-wrap:break-word;
  2036. text-transform:none;
  2037. }
  2038. #u59813_img {
  2039. border-width:0px;
  2040. position:absolute;
  2041. left:0px;
  2042. top:0px;
  2043. width:126px;
  2044. height:39px;
  2045. }
  2046. #u59813 {
  2047. border-width:0px;
  2048. position:absolute;
  2049. left:1089px;
  2050. top:0px;
  2051. width:126px;
  2052. height:39px;
  2053. display:flex;
  2054. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2055. font-weight:400;
  2056. font-style:normal;
  2057. font-size:12px;
  2058. color:#FFFFFF;
  2059. }
  2060. #u59813 .text {
  2061. position:absolute;
  2062. align-self:center;
  2063. padding:2px 2px 2px 0px;
  2064. box-sizing:border-box;
  2065. width:100%;
  2066. }
  2067. #u59813_text {
  2068. border-width:0px;
  2069. word-wrap:break-word;
  2070. text-transform:none;
  2071. }
  2072. #u59814_img {
  2073. border-width:0px;
  2074. position:absolute;
  2075. left:0px;
  2076. top:0px;
  2077. width:121px;
  2078. height:38px;
  2079. }
  2080. #u59814 {
  2081. border-width:0px;
  2082. position:absolute;
  2083. left:0px;
  2084. top:39px;
  2085. width:121px;
  2086. height:38px;
  2087. display:flex;
  2088. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2089. font-weight:400;
  2090. font-style:normal;
  2091. font-size:12px;
  2092. }
  2093. #u59814 .text {
  2094. position:absolute;
  2095. align-self:center;
  2096. padding:2px 2px 2px 0px;
  2097. box-sizing:border-box;
  2098. width:100%;
  2099. }
  2100. #u59814_text {
  2101. border-width:0px;
  2102. word-wrap:break-word;
  2103. text-transform:none;
  2104. visibility:hidden;
  2105. }
  2106. #u59815_img {
  2107. border-width:0px;
  2108. position:absolute;
  2109. left:0px;
  2110. top:0px;
  2111. width:121px;
  2112. height:38px;
  2113. }
  2114. #u59815 {
  2115. border-width:0px;
  2116. position:absolute;
  2117. left:121px;
  2118. top:39px;
  2119. width:121px;
  2120. height:38px;
  2121. display:flex;
  2122. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2123. font-weight:400;
  2124. font-style:normal;
  2125. font-size:12px;
  2126. }
  2127. #u59815 .text {
  2128. position:absolute;
  2129. align-self:center;
  2130. padding:2px 2px 2px 0px;
  2131. box-sizing:border-box;
  2132. width:100%;
  2133. }
  2134. #u59815_text {
  2135. border-width:0px;
  2136. word-wrap:break-word;
  2137. text-transform:none;
  2138. }
  2139. #u59816_img {
  2140. border-width:0px;
  2141. position:absolute;
  2142. left:0px;
  2143. top:0px;
  2144. width:121px;
  2145. height:38px;
  2146. }
  2147. #u59816 {
  2148. border-width:0px;
  2149. position:absolute;
  2150. left:242px;
  2151. top:39px;
  2152. width:121px;
  2153. height:38px;
  2154. display:flex;
  2155. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2156. font-weight:400;
  2157. font-style:normal;
  2158. font-size:12px;
  2159. }
  2160. #u59816 .text {
  2161. position:absolute;
  2162. align-self:center;
  2163. padding:2px 2px 2px 0px;
  2164. box-sizing:border-box;
  2165. width:100%;
  2166. }
  2167. #u59816_text {
  2168. border-width:0px;
  2169. word-wrap:break-word;
  2170. text-transform:none;
  2171. visibility:hidden;
  2172. }
  2173. #u59817_img {
  2174. border-width:0px;
  2175. position:absolute;
  2176. left:0px;
  2177. top:0px;
  2178. width:121px;
  2179. height:38px;
  2180. }
  2181. #u59817 {
  2182. border-width:0px;
  2183. position:absolute;
  2184. left:363px;
  2185. top:39px;
  2186. width:121px;
  2187. height:38px;
  2188. display:flex;
  2189. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2190. font-weight:400;
  2191. font-style:normal;
  2192. font-size:12px;
  2193. }
  2194. #u59817 .text {
  2195. position:absolute;
  2196. align-self:center;
  2197. padding:2px 2px 2px 0px;
  2198. box-sizing:border-box;
  2199. width:100%;
  2200. }
  2201. #u59817_text {
  2202. border-width:0px;
  2203. word-wrap:break-word;
  2204. text-transform:none;
  2205. }
  2206. #u59818_img {
  2207. border-width:0px;
  2208. position:absolute;
  2209. left:0px;
  2210. top:0px;
  2211. width:121px;
  2212. height:38px;
  2213. }
  2214. #u59818 {
  2215. border-width:0px;
  2216. position:absolute;
  2217. left:484px;
  2218. top:39px;
  2219. width:121px;
  2220. height:38px;
  2221. display:flex;
  2222. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2223. font-weight:400;
  2224. font-style:normal;
  2225. font-size:12px;
  2226. }
  2227. #u59818 .text {
  2228. position:absolute;
  2229. align-self:center;
  2230. padding:2px 2px 2px 0px;
  2231. box-sizing:border-box;
  2232. width:100%;
  2233. }
  2234. #u59818_text {
  2235. border-width:0px;
  2236. word-wrap:break-word;
  2237. text-transform:none;
  2238. }
  2239. #u59819_img {
  2240. border-width:0px;
  2241. position:absolute;
  2242. left:0px;
  2243. top:0px;
  2244. width:121px;
  2245. height:38px;
  2246. }
  2247. #u59819 {
  2248. border-width:0px;
  2249. position:absolute;
  2250. left:605px;
  2251. top:39px;
  2252. width:121px;
  2253. height:38px;
  2254. display:flex;
  2255. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2256. font-weight:400;
  2257. font-style:normal;
  2258. font-size:12px;
  2259. }
  2260. #u59819 .text {
  2261. position:absolute;
  2262. align-self:center;
  2263. padding:2px 2px 2px 0px;
  2264. box-sizing:border-box;
  2265. width:100%;
  2266. }
  2267. #u59819_text {
  2268. border-width:0px;
  2269. word-wrap:break-word;
  2270. text-transform:none;
  2271. visibility:hidden;
  2272. }
  2273. #u59820_img {
  2274. border-width:0px;
  2275. position:absolute;
  2276. left:0px;
  2277. top:0px;
  2278. width:121px;
  2279. height:38px;
  2280. }
  2281. #u59820 {
  2282. border-width:0px;
  2283. position:absolute;
  2284. left:726px;
  2285. top:39px;
  2286. width:121px;
  2287. height:38px;
  2288. display:flex;
  2289. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2290. font-weight:400;
  2291. font-style:normal;
  2292. font-size:12px;
  2293. }
  2294. #u59820 .text {
  2295. position:absolute;
  2296. align-self:center;
  2297. padding:2px 2px 2px 0px;
  2298. box-sizing:border-box;
  2299. width:100%;
  2300. }
  2301. #u59820_text {
  2302. border-width:0px;
  2303. word-wrap:break-word;
  2304. text-transform:none;
  2305. visibility:hidden;
  2306. }
  2307. #u59821_img {
  2308. border-width:0px;
  2309. position:absolute;
  2310. left:0px;
  2311. top:0px;
  2312. width:121px;
  2313. height:38px;
  2314. }
  2315. #u59821 {
  2316. border-width:0px;
  2317. position:absolute;
  2318. left:847px;
  2319. top:39px;
  2320. width:121px;
  2321. height:38px;
  2322. display:flex;
  2323. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2324. font-weight:400;
  2325. font-style:normal;
  2326. font-size:12px;
  2327. }
  2328. #u59821 .text {
  2329. position:absolute;
  2330. align-self:center;
  2331. padding:2px 2px 2px 0px;
  2332. box-sizing:border-box;
  2333. width:100%;
  2334. }
  2335. #u59821_text {
  2336. border-width:0px;
  2337. word-wrap:break-word;
  2338. text-transform:none;
  2339. visibility:hidden;
  2340. }
  2341. #u59822_img {
  2342. border-width:0px;
  2343. position:absolute;
  2344. left:0px;
  2345. top:0px;
  2346. width:121px;
  2347. height:38px;
  2348. }
  2349. #u59822 {
  2350. border-width:0px;
  2351. position:absolute;
  2352. left:968px;
  2353. top:39px;
  2354. width:121px;
  2355. height:38px;
  2356. display:flex;
  2357. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2358. font-weight:400;
  2359. font-style:normal;
  2360. font-size:12px;
  2361. }
  2362. #u59822 .text {
  2363. position:absolute;
  2364. align-self:center;
  2365. padding:2px 2px 2px 0px;
  2366. box-sizing:border-box;
  2367. width:100%;
  2368. }
  2369. #u59822_text {
  2370. border-width:0px;
  2371. word-wrap:break-word;
  2372. text-transform:none;
  2373. visibility:hidden;
  2374. }
  2375. #u59823_img {
  2376. border-width:0px;
  2377. position:absolute;
  2378. left:0px;
  2379. top:0px;
  2380. width:126px;
  2381. height:38px;
  2382. }
  2383. #u59823 {
  2384. border-width:0px;
  2385. position:absolute;
  2386. left:1089px;
  2387. top:39px;
  2388. width:126px;
  2389. height:38px;
  2390. display:flex;
  2391. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2392. font-weight:400;
  2393. font-style:normal;
  2394. font-size:12px;
  2395. color:#1890FF;
  2396. }
  2397. #u59823 .text {
  2398. position:absolute;
  2399. align-self:center;
  2400. padding:2px 2px 2px 0px;
  2401. box-sizing:border-box;
  2402. width:100%;
  2403. }
  2404. #u59823_text {
  2405. border-width:0px;
  2406. word-wrap:break-word;
  2407. text-transform:none;
  2408. }
  2409. #u59824_img {
  2410. border-width:0px;
  2411. position:absolute;
  2412. left:0px;
  2413. top:0px;
  2414. width:121px;
  2415. height:38px;
  2416. }
  2417. #u59824 {
  2418. border-width:0px;
  2419. position:absolute;
  2420. left:0px;
  2421. top:77px;
  2422. width:121px;
  2423. height:38px;
  2424. display:flex;
  2425. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2426. font-weight:400;
  2427. font-style:normal;
  2428. font-size:12px;
  2429. }
  2430. #u59824 .text {
  2431. position:absolute;
  2432. align-self:center;
  2433. padding:2px 2px 2px 0px;
  2434. box-sizing:border-box;
  2435. width:100%;
  2436. }
  2437. #u59824_text {
  2438. border-width:0px;
  2439. word-wrap:break-word;
  2440. text-transform:none;
  2441. visibility:hidden;
  2442. }
  2443. #u59825_img {
  2444. border-width:0px;
  2445. position:absolute;
  2446. left:0px;
  2447. top:0px;
  2448. width:121px;
  2449. height:38px;
  2450. }
  2451. #u59825 {
  2452. border-width:0px;
  2453. position:absolute;
  2454. left:121px;
  2455. top:77px;
  2456. width:121px;
  2457. height:38px;
  2458. display:flex;
  2459. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2460. font-weight:400;
  2461. font-style:normal;
  2462. font-size:12px;
  2463. }
  2464. #u59825 .text {
  2465. position:absolute;
  2466. align-self:center;
  2467. padding:2px 2px 2px 0px;
  2468. box-sizing:border-box;
  2469. width:100%;
  2470. }
  2471. #u59825_text {
  2472. border-width:0px;
  2473. word-wrap:break-word;
  2474. text-transform:none;
  2475. visibility:hidden;
  2476. }
  2477. #u59826_img {
  2478. border-width:0px;
  2479. position:absolute;
  2480. left:0px;
  2481. top:0px;
  2482. width:121px;
  2483. height:38px;
  2484. }
  2485. #u59826 {
  2486. border-width:0px;
  2487. position:absolute;
  2488. left:242px;
  2489. top:77px;
  2490. width:121px;
  2491. height:38px;
  2492. display:flex;
  2493. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2494. font-weight:400;
  2495. font-style:normal;
  2496. font-size:12px;
  2497. }
  2498. #u59826 .text {
  2499. position:absolute;
  2500. align-self:center;
  2501. padding:2px 2px 2px 0px;
  2502. box-sizing:border-box;
  2503. width:100%;
  2504. }
  2505. #u59826_text {
  2506. border-width:0px;
  2507. word-wrap:break-word;
  2508. text-transform:none;
  2509. visibility:hidden;
  2510. }
  2511. #u59827_img {
  2512. border-width:0px;
  2513. position:absolute;
  2514. left:0px;
  2515. top:0px;
  2516. width:121px;
  2517. height:38px;
  2518. }
  2519. #u59827 {
  2520. border-width:0px;
  2521. position:absolute;
  2522. left:363px;
  2523. top:77px;
  2524. width:121px;
  2525. height:38px;
  2526. display:flex;
  2527. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2528. font-weight:400;
  2529. font-style:normal;
  2530. font-size:12px;
  2531. }
  2532. #u59827 .text {
  2533. position:absolute;
  2534. align-self:center;
  2535. padding:2px 2px 2px 0px;
  2536. box-sizing:border-box;
  2537. width:100%;
  2538. }
  2539. #u59827_text {
  2540. border-width:0px;
  2541. word-wrap:break-word;
  2542. text-transform:none;
  2543. }
  2544. #u59828_img {
  2545. border-width:0px;
  2546. position:absolute;
  2547. left:0px;
  2548. top:0px;
  2549. width:121px;
  2550. height:38px;
  2551. }
  2552. #u59828 {
  2553. border-width:0px;
  2554. position:absolute;
  2555. left:484px;
  2556. top:77px;
  2557. width:121px;
  2558. height:38px;
  2559. display:flex;
  2560. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2561. font-weight:400;
  2562. font-style:normal;
  2563. font-size:12px;
  2564. }
  2565. #u59828 .text {
  2566. position:absolute;
  2567. align-self:center;
  2568. padding:2px 2px 2px 0px;
  2569. box-sizing:border-box;
  2570. width:100%;
  2571. }
  2572. #u59828_text {
  2573. border-width:0px;
  2574. word-wrap:break-word;
  2575. text-transform:none;
  2576. }
  2577. #u59829_img {
  2578. border-width:0px;
  2579. position:absolute;
  2580. left:0px;
  2581. top:0px;
  2582. width:121px;
  2583. height:38px;
  2584. }
  2585. #u59829 {
  2586. border-width:0px;
  2587. position:absolute;
  2588. left:605px;
  2589. top:77px;
  2590. width:121px;
  2591. height:38px;
  2592. display:flex;
  2593. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2594. font-weight:400;
  2595. font-style:normal;
  2596. font-size:12px;
  2597. }
  2598. #u59829 .text {
  2599. position:absolute;
  2600. align-self:center;
  2601. padding:2px 2px 2px 0px;
  2602. box-sizing:border-box;
  2603. width:100%;
  2604. }
  2605. #u59829_text {
  2606. border-width:0px;
  2607. word-wrap:break-word;
  2608. text-transform:none;
  2609. visibility:hidden;
  2610. }
  2611. #u59830_img {
  2612. border-width:0px;
  2613. position:absolute;
  2614. left:0px;
  2615. top:0px;
  2616. width:121px;
  2617. height:38px;
  2618. }
  2619. #u59830 {
  2620. border-width:0px;
  2621. position:absolute;
  2622. left:726px;
  2623. top:77px;
  2624. width:121px;
  2625. height:38px;
  2626. display:flex;
  2627. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2628. font-weight:400;
  2629. font-style:normal;
  2630. font-size:12px;
  2631. }
  2632. #u59830 .text {
  2633. position:absolute;
  2634. align-self:center;
  2635. padding:2px 2px 2px 0px;
  2636. box-sizing:border-box;
  2637. width:100%;
  2638. }
  2639. #u59830_text {
  2640. border-width:0px;
  2641. word-wrap:break-word;
  2642. text-transform:none;
  2643. visibility:hidden;
  2644. }
  2645. #u59831_img {
  2646. border-width:0px;
  2647. position:absolute;
  2648. left:0px;
  2649. top:0px;
  2650. width:121px;
  2651. height:38px;
  2652. }
  2653. #u59831 {
  2654. border-width:0px;
  2655. position:absolute;
  2656. left:847px;
  2657. top:77px;
  2658. width:121px;
  2659. height:38px;
  2660. display:flex;
  2661. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2662. font-weight:400;
  2663. font-style:normal;
  2664. font-size:12px;
  2665. }
  2666. #u59831 .text {
  2667. position:absolute;
  2668. align-self:center;
  2669. padding:2px 2px 2px 0px;
  2670. box-sizing:border-box;
  2671. width:100%;
  2672. }
  2673. #u59831_text {
  2674. border-width:0px;
  2675. word-wrap:break-word;
  2676. text-transform:none;
  2677. visibility:hidden;
  2678. }
  2679. #u59832_img {
  2680. border-width:0px;
  2681. position:absolute;
  2682. left:0px;
  2683. top:0px;
  2684. width:121px;
  2685. height:38px;
  2686. }
  2687. #u59832 {
  2688. border-width:0px;
  2689. position:absolute;
  2690. left:968px;
  2691. top:77px;
  2692. width:121px;
  2693. height:38px;
  2694. display:flex;
  2695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2696. font-weight:400;
  2697. font-style:normal;
  2698. font-size:12px;
  2699. }
  2700. #u59832 .text {
  2701. position:absolute;
  2702. align-self:center;
  2703. padding:2px 2px 2px 0px;
  2704. box-sizing:border-box;
  2705. width:100%;
  2706. }
  2707. #u59832_text {
  2708. border-width:0px;
  2709. word-wrap:break-word;
  2710. text-transform:none;
  2711. visibility:hidden;
  2712. }
  2713. #u59833_img {
  2714. border-width:0px;
  2715. position:absolute;
  2716. left:0px;
  2717. top:0px;
  2718. width:126px;
  2719. height:38px;
  2720. }
  2721. #u59833 {
  2722. border-width:0px;
  2723. position:absolute;
  2724. left:1089px;
  2725. top:77px;
  2726. width:126px;
  2727. height:38px;
  2728. display:flex;
  2729. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2730. font-weight:400;
  2731. font-style:normal;
  2732. font-size:12px;
  2733. color:#333333;
  2734. }
  2735. #u59833 .text {
  2736. position:absolute;
  2737. align-self:center;
  2738. padding:2px 2px 2px 0px;
  2739. box-sizing:border-box;
  2740. width:100%;
  2741. }
  2742. #u59833_text {
  2743. border-width:0px;
  2744. word-wrap:break-word;
  2745. text-transform:none;
  2746. }
  2747. #u59834_img {
  2748. border-width:0px;
  2749. position:absolute;
  2750. left:0px;
  2751. top:0px;
  2752. width:121px;
  2753. height:38px;
  2754. }
  2755. #u59834 {
  2756. border-width:0px;
  2757. position:absolute;
  2758. left:0px;
  2759. top:115px;
  2760. width:121px;
  2761. height:38px;
  2762. display:flex;
  2763. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2764. font-weight:400;
  2765. font-style:normal;
  2766. font-size:12px;
  2767. }
  2768. #u59834 .text {
  2769. position:absolute;
  2770. align-self:center;
  2771. padding:2px 2px 2px 0px;
  2772. box-sizing:border-box;
  2773. width:100%;
  2774. }
  2775. #u59834_text {
  2776. border-width:0px;
  2777. word-wrap:break-word;
  2778. text-transform:none;
  2779. visibility:hidden;
  2780. }
  2781. #u59835_img {
  2782. border-width:0px;
  2783. position:absolute;
  2784. left:0px;
  2785. top:0px;
  2786. width:121px;
  2787. height:38px;
  2788. }
  2789. #u59835 {
  2790. border-width:0px;
  2791. position:absolute;
  2792. left:121px;
  2793. top:115px;
  2794. width:121px;
  2795. height:38px;
  2796. display:flex;
  2797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2798. font-weight:400;
  2799. font-style:normal;
  2800. font-size:12px;
  2801. }
  2802. #u59835 .text {
  2803. position:absolute;
  2804. align-self:center;
  2805. padding:2px 2px 2px 0px;
  2806. box-sizing:border-box;
  2807. width:100%;
  2808. }
  2809. #u59835_text {
  2810. border-width:0px;
  2811. word-wrap:break-word;
  2812. text-transform:none;
  2813. visibility:hidden;
  2814. }
  2815. #u59836_img {
  2816. border-width:0px;
  2817. position:absolute;
  2818. left:0px;
  2819. top:0px;
  2820. width:121px;
  2821. height:38px;
  2822. }
  2823. #u59836 {
  2824. border-width:0px;
  2825. position:absolute;
  2826. left:242px;
  2827. top:115px;
  2828. width:121px;
  2829. height:38px;
  2830. display:flex;
  2831. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2832. font-weight:400;
  2833. font-style:normal;
  2834. font-size:12px;
  2835. }
  2836. #u59836 .text {
  2837. position:absolute;
  2838. align-self:center;
  2839. padding:2px 2px 2px 0px;
  2840. box-sizing:border-box;
  2841. width:100%;
  2842. }
  2843. #u59836_text {
  2844. border-width:0px;
  2845. word-wrap:break-word;
  2846. text-transform:none;
  2847. visibility:hidden;
  2848. }
  2849. #u59837_img {
  2850. border-width:0px;
  2851. position:absolute;
  2852. left:0px;
  2853. top:0px;
  2854. width:121px;
  2855. height:38px;
  2856. }
  2857. #u59837 {
  2858. border-width:0px;
  2859. position:absolute;
  2860. left:363px;
  2861. top:115px;
  2862. width:121px;
  2863. height:38px;
  2864. display:flex;
  2865. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2866. font-weight:400;
  2867. font-style:normal;
  2868. font-size:12px;
  2869. }
  2870. #u59837 .text {
  2871. position:absolute;
  2872. align-self:center;
  2873. padding:2px 2px 2px 0px;
  2874. box-sizing:border-box;
  2875. width:100%;
  2876. }
  2877. #u59837_text {
  2878. border-width:0px;
  2879. word-wrap:break-word;
  2880. text-transform:none;
  2881. visibility:hidden;
  2882. }
  2883. #u59838_img {
  2884. border-width:0px;
  2885. position:absolute;
  2886. left:0px;
  2887. top:0px;
  2888. width:121px;
  2889. height:38px;
  2890. }
  2891. #u59838 {
  2892. border-width:0px;
  2893. position:absolute;
  2894. left:484px;
  2895. top:115px;
  2896. width:121px;
  2897. height:38px;
  2898. display:flex;
  2899. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2900. font-weight:400;
  2901. font-style:normal;
  2902. font-size:12px;
  2903. }
  2904. #u59838 .text {
  2905. position:absolute;
  2906. align-self:center;
  2907. padding:2px 2px 2px 0px;
  2908. box-sizing:border-box;
  2909. width:100%;
  2910. }
  2911. #u59838_text {
  2912. border-width:0px;
  2913. word-wrap:break-word;
  2914. text-transform:none;
  2915. }
  2916. #u59839_img {
  2917. border-width:0px;
  2918. position:absolute;
  2919. left:0px;
  2920. top:0px;
  2921. width:121px;
  2922. height:38px;
  2923. }
  2924. #u59839 {
  2925. border-width:0px;
  2926. position:absolute;
  2927. left:605px;
  2928. top:115px;
  2929. width:121px;
  2930. height:38px;
  2931. display:flex;
  2932. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2933. font-weight:400;
  2934. font-style:normal;
  2935. font-size:12px;
  2936. }
  2937. #u59839 .text {
  2938. position:absolute;
  2939. align-self:center;
  2940. padding:2px 2px 2px 0px;
  2941. box-sizing:border-box;
  2942. width:100%;
  2943. }
  2944. #u59839_text {
  2945. border-width:0px;
  2946. word-wrap:break-word;
  2947. text-transform:none;
  2948. visibility:hidden;
  2949. }
  2950. #u59840_img {
  2951. border-width:0px;
  2952. position:absolute;
  2953. left:0px;
  2954. top:0px;
  2955. width:121px;
  2956. height:38px;
  2957. }
  2958. #u59840 {
  2959. border-width:0px;
  2960. position:absolute;
  2961. left:726px;
  2962. top:115px;
  2963. width:121px;
  2964. height:38px;
  2965. display:flex;
  2966. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2967. font-weight:400;
  2968. font-style:normal;
  2969. font-size:12px;
  2970. }
  2971. #u59840 .text {
  2972. position:absolute;
  2973. align-self:center;
  2974. padding:2px 2px 2px 0px;
  2975. box-sizing:border-box;
  2976. width:100%;
  2977. }
  2978. #u59840_text {
  2979. border-width:0px;
  2980. word-wrap:break-word;
  2981. text-transform:none;
  2982. visibility:hidden;
  2983. }
  2984. #u59841_img {
  2985. border-width:0px;
  2986. position:absolute;
  2987. left:0px;
  2988. top:0px;
  2989. width:121px;
  2990. height:38px;
  2991. }
  2992. #u59841 {
  2993. border-width:0px;
  2994. position:absolute;
  2995. left:847px;
  2996. top:115px;
  2997. width:121px;
  2998. height:38px;
  2999. display:flex;
  3000. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3001. font-weight:400;
  3002. font-style:normal;
  3003. font-size:12px;
  3004. }
  3005. #u59841 .text {
  3006. position:absolute;
  3007. align-self:center;
  3008. padding:2px 2px 2px 0px;
  3009. box-sizing:border-box;
  3010. width:100%;
  3011. }
  3012. #u59841_text {
  3013. border-width:0px;
  3014. word-wrap:break-word;
  3015. text-transform:none;
  3016. visibility:hidden;
  3017. }
  3018. #u59842_img {
  3019. border-width:0px;
  3020. position:absolute;
  3021. left:0px;
  3022. top:0px;
  3023. width:121px;
  3024. height:38px;
  3025. }
  3026. #u59842 {
  3027. border-width:0px;
  3028. position:absolute;
  3029. left:968px;
  3030. top:115px;
  3031. width:121px;
  3032. height:38px;
  3033. display:flex;
  3034. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3035. font-weight:400;
  3036. font-style:normal;
  3037. font-size:12px;
  3038. }
  3039. #u59842 .text {
  3040. position:absolute;
  3041. align-self:center;
  3042. padding:2px 2px 2px 0px;
  3043. box-sizing:border-box;
  3044. width:100%;
  3045. }
  3046. #u59842_text {
  3047. border-width:0px;
  3048. word-wrap:break-word;
  3049. text-transform:none;
  3050. visibility:hidden;
  3051. }
  3052. #u59843_img {
  3053. border-width:0px;
  3054. position:absolute;
  3055. left:0px;
  3056. top:0px;
  3057. width:126px;
  3058. height:38px;
  3059. }
  3060. #u59843 {
  3061. border-width:0px;
  3062. position:absolute;
  3063. left:1089px;
  3064. top:115px;
  3065. width:126px;
  3066. height:38px;
  3067. display:flex;
  3068. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3069. font-weight:400;
  3070. font-style:normal;
  3071. font-size:12px;
  3072. }
  3073. #u59843 .text {
  3074. position:absolute;
  3075. align-self:center;
  3076. padding:2px 2px 2px 0px;
  3077. box-sizing:border-box;
  3078. width:100%;
  3079. }
  3080. #u59843_text {
  3081. border-width:0px;
  3082. word-wrap:break-word;
  3083. text-transform:none;
  3084. }
  3085. #u59844_img {
  3086. border-width:0px;
  3087. position:absolute;
  3088. left:0px;
  3089. top:0px;
  3090. width:121px;
  3091. height:38px;
  3092. }
  3093. #u59844 {
  3094. border-width:0px;
  3095. position:absolute;
  3096. left:0px;
  3097. top:153px;
  3098. width:121px;
  3099. height:38px;
  3100. display:flex;
  3101. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3102. font-weight:400;
  3103. font-style:normal;
  3104. font-size:12px;
  3105. }
  3106. #u59844 .text {
  3107. position:absolute;
  3108. align-self:center;
  3109. padding:2px 2px 2px 0px;
  3110. box-sizing:border-box;
  3111. width:100%;
  3112. }
  3113. #u59844_text {
  3114. border-width:0px;
  3115. word-wrap:break-word;
  3116. text-transform:none;
  3117. visibility:hidden;
  3118. }
  3119. #u59845_img {
  3120. border-width:0px;
  3121. position:absolute;
  3122. left:0px;
  3123. top:0px;
  3124. width:121px;
  3125. height:38px;
  3126. }
  3127. #u59845 {
  3128. border-width:0px;
  3129. position:absolute;
  3130. left:121px;
  3131. top:153px;
  3132. width:121px;
  3133. height:38px;
  3134. display:flex;
  3135. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3136. font-weight:400;
  3137. font-style:normal;
  3138. font-size:12px;
  3139. }
  3140. #u59845 .text {
  3141. position:absolute;
  3142. align-self:center;
  3143. padding:2px 2px 2px 0px;
  3144. box-sizing:border-box;
  3145. width:100%;
  3146. }
  3147. #u59845_text {
  3148. border-width:0px;
  3149. word-wrap:break-word;
  3150. text-transform:none;
  3151. visibility:hidden;
  3152. }
  3153. #u59846_img {
  3154. border-width:0px;
  3155. position:absolute;
  3156. left:0px;
  3157. top:0px;
  3158. width:121px;
  3159. height:38px;
  3160. }
  3161. #u59846 {
  3162. border-width:0px;
  3163. position:absolute;
  3164. left:242px;
  3165. top:153px;
  3166. width:121px;
  3167. height:38px;
  3168. display:flex;
  3169. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3170. font-weight:400;
  3171. font-style:normal;
  3172. font-size:12px;
  3173. }
  3174. #u59846 .text {
  3175. position:absolute;
  3176. align-self:center;
  3177. padding:2px 2px 2px 0px;
  3178. box-sizing:border-box;
  3179. width:100%;
  3180. }
  3181. #u59846_text {
  3182. border-width:0px;
  3183. word-wrap:break-word;
  3184. text-transform:none;
  3185. visibility:hidden;
  3186. }
  3187. #u59847_img {
  3188. border-width:0px;
  3189. position:absolute;
  3190. left:0px;
  3191. top:0px;
  3192. width:121px;
  3193. height:38px;
  3194. }
  3195. #u59847 {
  3196. border-width:0px;
  3197. position:absolute;
  3198. left:363px;
  3199. top:153px;
  3200. width:121px;
  3201. height:38px;
  3202. display:flex;
  3203. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3204. font-weight:400;
  3205. font-style:normal;
  3206. font-size:12px;
  3207. }
  3208. #u59847 .text {
  3209. position:absolute;
  3210. align-self:center;
  3211. padding:2px 2px 2px 0px;
  3212. box-sizing:border-box;
  3213. width:100%;
  3214. }
  3215. #u59847_text {
  3216. border-width:0px;
  3217. word-wrap:break-word;
  3218. text-transform:none;
  3219. visibility:hidden;
  3220. }
  3221. #u59848_img {
  3222. border-width:0px;
  3223. position:absolute;
  3224. left:0px;
  3225. top:0px;
  3226. width:121px;
  3227. height:38px;
  3228. }
  3229. #u59848 {
  3230. border-width:0px;
  3231. position:absolute;
  3232. left:484px;
  3233. top:153px;
  3234. width:121px;
  3235. height:38px;
  3236. display:flex;
  3237. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3238. font-weight:400;
  3239. font-style:normal;
  3240. font-size:12px;
  3241. }
  3242. #u59848 .text {
  3243. position:absolute;
  3244. align-self:center;
  3245. padding:2px 2px 2px 0px;
  3246. box-sizing:border-box;
  3247. width:100%;
  3248. }
  3249. #u59848_text {
  3250. border-width:0px;
  3251. word-wrap:break-word;
  3252. text-transform:none;
  3253. visibility:hidden;
  3254. }
  3255. #u59849_img {
  3256. border-width:0px;
  3257. position:absolute;
  3258. left:0px;
  3259. top:0px;
  3260. width:121px;
  3261. height:38px;
  3262. }
  3263. #u59849 {
  3264. border-width:0px;
  3265. position:absolute;
  3266. left:605px;
  3267. top:153px;
  3268. width:121px;
  3269. height:38px;
  3270. display:flex;
  3271. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3272. font-weight:400;
  3273. font-style:normal;
  3274. font-size:12px;
  3275. }
  3276. #u59849 .text {
  3277. position:absolute;
  3278. align-self:center;
  3279. padding:2px 2px 2px 0px;
  3280. box-sizing:border-box;
  3281. width:100%;
  3282. }
  3283. #u59849_text {
  3284. border-width:0px;
  3285. word-wrap:break-word;
  3286. text-transform:none;
  3287. visibility:hidden;
  3288. }
  3289. #u59850_img {
  3290. border-width:0px;
  3291. position:absolute;
  3292. left:0px;
  3293. top:0px;
  3294. width:121px;
  3295. height:38px;
  3296. }
  3297. #u59850 {
  3298. border-width:0px;
  3299. position:absolute;
  3300. left:726px;
  3301. top:153px;
  3302. width:121px;
  3303. height:38px;
  3304. display:flex;
  3305. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3306. font-weight:400;
  3307. font-style:normal;
  3308. font-size:12px;
  3309. }
  3310. #u59850 .text {
  3311. position:absolute;
  3312. align-self:center;
  3313. padding:2px 2px 2px 0px;
  3314. box-sizing:border-box;
  3315. width:100%;
  3316. }
  3317. #u59850_text {
  3318. border-width:0px;
  3319. word-wrap:break-word;
  3320. text-transform:none;
  3321. visibility:hidden;
  3322. }
  3323. #u59851_img {
  3324. border-width:0px;
  3325. position:absolute;
  3326. left:0px;
  3327. top:0px;
  3328. width:121px;
  3329. height:38px;
  3330. }
  3331. #u59851 {
  3332. border-width:0px;
  3333. position:absolute;
  3334. left:847px;
  3335. top:153px;
  3336. width:121px;
  3337. height:38px;
  3338. display:flex;
  3339. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3340. font-weight:400;
  3341. font-style:normal;
  3342. font-size:12px;
  3343. }
  3344. #u59851 .text {
  3345. position:absolute;
  3346. align-self:center;
  3347. padding:2px 2px 2px 0px;
  3348. box-sizing:border-box;
  3349. width:100%;
  3350. }
  3351. #u59851_text {
  3352. border-width:0px;
  3353. word-wrap:break-word;
  3354. text-transform:none;
  3355. visibility:hidden;
  3356. }
  3357. #u59852_img {
  3358. border-width:0px;
  3359. position:absolute;
  3360. left:0px;
  3361. top:0px;
  3362. width:121px;
  3363. height:38px;
  3364. }
  3365. #u59852 {
  3366. border-width:0px;
  3367. position:absolute;
  3368. left:968px;
  3369. top:153px;
  3370. width:121px;
  3371. height:38px;
  3372. display:flex;
  3373. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3374. font-weight:400;
  3375. font-style:normal;
  3376. font-size:12px;
  3377. }
  3378. #u59852 .text {
  3379. position:absolute;
  3380. align-self:center;
  3381. padding:2px 2px 2px 0px;
  3382. box-sizing:border-box;
  3383. width:100%;
  3384. }
  3385. #u59852_text {
  3386. border-width:0px;
  3387. word-wrap:break-word;
  3388. text-transform:none;
  3389. visibility:hidden;
  3390. }
  3391. #u59853_img {
  3392. border-width:0px;
  3393. position:absolute;
  3394. left:0px;
  3395. top:0px;
  3396. width:126px;
  3397. height:38px;
  3398. }
  3399. #u59853 {
  3400. border-width:0px;
  3401. position:absolute;
  3402. left:1089px;
  3403. top:153px;
  3404. width:126px;
  3405. height:38px;
  3406. display:flex;
  3407. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3408. font-weight:400;
  3409. font-style:normal;
  3410. font-size:12px;
  3411. color:#1890FF;
  3412. }
  3413. #u59853 .text {
  3414. position:absolute;
  3415. align-self:center;
  3416. padding:2px 2px 2px 0px;
  3417. box-sizing:border-box;
  3418. width:100%;
  3419. }
  3420. #u59853_text {
  3421. border-width:0px;
  3422. word-wrap:break-word;
  3423. text-transform:none;
  3424. visibility:hidden;
  3425. }
  3426. #u59854_img {
  3427. border-width:0px;
  3428. position:absolute;
  3429. left:0px;
  3430. top:0px;
  3431. width:121px;
  3432. height:35px;
  3433. }
  3434. #u59854 {
  3435. border-width:0px;
  3436. position:absolute;
  3437. left:0px;
  3438. top:191px;
  3439. width:121px;
  3440. height:35px;
  3441. display:flex;
  3442. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3443. font-weight:400;
  3444. font-style:normal;
  3445. font-size:12px;
  3446. color:#606266;
  3447. }
  3448. #u59854 .text {
  3449. position:absolute;
  3450. align-self:center;
  3451. padding:2px 2px 2px 0px;
  3452. box-sizing:border-box;
  3453. width:100%;
  3454. }
  3455. #u59854_text {
  3456. border-width:0px;
  3457. word-wrap:break-word;
  3458. text-transform:none;
  3459. visibility:hidden;
  3460. }
  3461. #u59855_img {
  3462. border-width:0px;
  3463. position:absolute;
  3464. left:0px;
  3465. top:0px;
  3466. width:121px;
  3467. height:35px;
  3468. }
  3469. #u59855 {
  3470. border-width:0px;
  3471. position:absolute;
  3472. left:121px;
  3473. top:191px;
  3474. width:121px;
  3475. height:35px;
  3476. display:flex;
  3477. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3478. font-weight:400;
  3479. font-style:normal;
  3480. font-size:12px;
  3481. color:#606266;
  3482. }
  3483. #u59855 .text {
  3484. position:absolute;
  3485. align-self:center;
  3486. padding:2px 2px 2px 0px;
  3487. box-sizing:border-box;
  3488. width:100%;
  3489. }
  3490. #u59855_text {
  3491. border-width:0px;
  3492. word-wrap:break-word;
  3493. text-transform:none;
  3494. visibility:hidden;
  3495. }
  3496. #u59856_img {
  3497. border-width:0px;
  3498. position:absolute;
  3499. left:0px;
  3500. top:0px;
  3501. width:121px;
  3502. height:35px;
  3503. }
  3504. #u59856 {
  3505. border-width:0px;
  3506. position:absolute;
  3507. left:242px;
  3508. top:191px;
  3509. width:121px;
  3510. height:35px;
  3511. display:flex;
  3512. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3513. font-weight:400;
  3514. font-style:normal;
  3515. font-size:12px;
  3516. color:#606266;
  3517. }
  3518. #u59856 .text {
  3519. position:absolute;
  3520. align-self:center;
  3521. padding:2px 2px 2px 0px;
  3522. box-sizing:border-box;
  3523. width:100%;
  3524. }
  3525. #u59856_text {
  3526. border-width:0px;
  3527. word-wrap:break-word;
  3528. text-transform:none;
  3529. visibility:hidden;
  3530. }
  3531. #u59857_img {
  3532. border-width:0px;
  3533. position:absolute;
  3534. left:0px;
  3535. top:0px;
  3536. width:121px;
  3537. height:35px;
  3538. }
  3539. #u59857 {
  3540. border-width:0px;
  3541. position:absolute;
  3542. left:363px;
  3543. top:191px;
  3544. width:121px;
  3545. height:35px;
  3546. display:flex;
  3547. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3548. font-weight:400;
  3549. font-style:normal;
  3550. font-size:12px;
  3551. color:#606266;
  3552. }
  3553. #u59857 .text {
  3554. position:absolute;
  3555. align-self:center;
  3556. padding:2px 2px 2px 0px;
  3557. box-sizing:border-box;
  3558. width:100%;
  3559. }
  3560. #u59857_text {
  3561. border-width:0px;
  3562. word-wrap:break-word;
  3563. text-transform:none;
  3564. visibility:hidden;
  3565. }
  3566. #u59858_img {
  3567. border-width:0px;
  3568. position:absolute;
  3569. left:0px;
  3570. top:0px;
  3571. width:121px;
  3572. height:35px;
  3573. }
  3574. #u59858 {
  3575. border-width:0px;
  3576. position:absolute;
  3577. left:484px;
  3578. top:191px;
  3579. width:121px;
  3580. height:35px;
  3581. display:flex;
  3582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3583. font-weight:400;
  3584. font-style:normal;
  3585. font-size:12px;
  3586. color:#606266;
  3587. }
  3588. #u59858 .text {
  3589. position:absolute;
  3590. align-self:center;
  3591. padding:2px 2px 2px 0px;
  3592. box-sizing:border-box;
  3593. width:100%;
  3594. }
  3595. #u59858_text {
  3596. border-width:0px;
  3597. word-wrap:break-word;
  3598. text-transform:none;
  3599. visibility:hidden;
  3600. }
  3601. #u59859_img {
  3602. border-width:0px;
  3603. position:absolute;
  3604. left:0px;
  3605. top:0px;
  3606. width:121px;
  3607. height:35px;
  3608. }
  3609. #u59859 {
  3610. border-width:0px;
  3611. position:absolute;
  3612. left:605px;
  3613. top:191px;
  3614. width:121px;
  3615. height:35px;
  3616. display:flex;
  3617. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3618. font-weight:400;
  3619. font-style:normal;
  3620. font-size:12px;
  3621. color:#606266;
  3622. }
  3623. #u59859 .text {
  3624. position:absolute;
  3625. align-self:center;
  3626. padding:2px 2px 2px 0px;
  3627. box-sizing:border-box;
  3628. width:100%;
  3629. }
  3630. #u59859_text {
  3631. border-width:0px;
  3632. word-wrap:break-word;
  3633. text-transform:none;
  3634. visibility:hidden;
  3635. }
  3636. #u59860_img {
  3637. border-width:0px;
  3638. position:absolute;
  3639. left:0px;
  3640. top:0px;
  3641. width:121px;
  3642. height:35px;
  3643. }
  3644. #u59860 {
  3645. border-width:0px;
  3646. position:absolute;
  3647. left:726px;
  3648. top:191px;
  3649. width:121px;
  3650. height:35px;
  3651. display:flex;
  3652. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3653. font-weight:400;
  3654. font-style:normal;
  3655. font-size:12px;
  3656. color:#606266;
  3657. }
  3658. #u59860 .text {
  3659. position:absolute;
  3660. align-self:center;
  3661. padding:2px 2px 2px 0px;
  3662. box-sizing:border-box;
  3663. width:100%;
  3664. }
  3665. #u59860_text {
  3666. border-width:0px;
  3667. word-wrap:break-word;
  3668. text-transform:none;
  3669. visibility:hidden;
  3670. }
  3671. #u59861_img {
  3672. border-width:0px;
  3673. position:absolute;
  3674. left:0px;
  3675. top:0px;
  3676. width:121px;
  3677. height:35px;
  3678. }
  3679. #u59861 {
  3680. border-width:0px;
  3681. position:absolute;
  3682. left:847px;
  3683. top:191px;
  3684. width:121px;
  3685. height:35px;
  3686. display:flex;
  3687. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3688. font-weight:400;
  3689. font-style:normal;
  3690. font-size:12px;
  3691. color:#606266;
  3692. }
  3693. #u59861 .text {
  3694. position:absolute;
  3695. align-self:center;
  3696. padding:2px 2px 2px 0px;
  3697. box-sizing:border-box;
  3698. width:100%;
  3699. }
  3700. #u59861_text {
  3701. border-width:0px;
  3702. word-wrap:break-word;
  3703. text-transform:none;
  3704. visibility:hidden;
  3705. }
  3706. #u59862_img {
  3707. border-width:0px;
  3708. position:absolute;
  3709. left:0px;
  3710. top:0px;
  3711. width:121px;
  3712. height:35px;
  3713. }
  3714. #u59862 {
  3715. border-width:0px;
  3716. position:absolute;
  3717. left:968px;
  3718. top:191px;
  3719. width:121px;
  3720. height:35px;
  3721. display:flex;
  3722. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3723. font-weight:400;
  3724. font-style:normal;
  3725. font-size:12px;
  3726. color:#606266;
  3727. }
  3728. #u59862 .text {
  3729. position:absolute;
  3730. align-self:center;
  3731. padding:2px 2px 2px 0px;
  3732. box-sizing:border-box;
  3733. width:100%;
  3734. }
  3735. #u59862_text {
  3736. border-width:0px;
  3737. word-wrap:break-word;
  3738. text-transform:none;
  3739. visibility:hidden;
  3740. }
  3741. #u59863_img {
  3742. border-width:0px;
  3743. position:absolute;
  3744. left:0px;
  3745. top:0px;
  3746. width:126px;
  3747. height:35px;
  3748. }
  3749. #u59863 {
  3750. border-width:0px;
  3751. position:absolute;
  3752. left:1089px;
  3753. top:191px;
  3754. width:126px;
  3755. height:35px;
  3756. display:flex;
  3757. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3758. font-weight:400;
  3759. font-style:normal;
  3760. font-size:12px;
  3761. color:#02A7F0;
  3762. }
  3763. #u59863 .text {
  3764. position:absolute;
  3765. align-self:center;
  3766. padding:2px 2px 2px 0px;
  3767. box-sizing:border-box;
  3768. width:100%;
  3769. }
  3770. #u59863_text {
  3771. border-width:0px;
  3772. word-wrap:break-word;
  3773. text-transform:none;
  3774. visibility:hidden;
  3775. }
  3776. #u59864_img {
  3777. border-width:0px;
  3778. position:absolute;
  3779. left:0px;
  3780. top:0px;
  3781. width:121px;
  3782. height:35px;
  3783. }
  3784. #u59864 {
  3785. border-width:0px;
  3786. position:absolute;
  3787. left:0px;
  3788. top:226px;
  3789. width:121px;
  3790. height:35px;
  3791. display:flex;
  3792. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3793. font-weight:400;
  3794. font-style:normal;
  3795. font-size:12px;
  3796. color:#606266;
  3797. }
  3798. #u59864 .text {
  3799. position:absolute;
  3800. align-self:center;
  3801. padding:2px 2px 2px 0px;
  3802. box-sizing:border-box;
  3803. width:100%;
  3804. }
  3805. #u59864_text {
  3806. border-width:0px;
  3807. word-wrap:break-word;
  3808. text-transform:none;
  3809. visibility:hidden;
  3810. }
  3811. #u59865_img {
  3812. border-width:0px;
  3813. position:absolute;
  3814. left:0px;
  3815. top:0px;
  3816. width:121px;
  3817. height:35px;
  3818. }
  3819. #u59865 {
  3820. border-width:0px;
  3821. position:absolute;
  3822. left:121px;
  3823. top:226px;
  3824. width:121px;
  3825. height:35px;
  3826. display:flex;
  3827. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3828. font-weight:400;
  3829. font-style:normal;
  3830. font-size:12px;
  3831. color:#606266;
  3832. }
  3833. #u59865 .text {
  3834. position:absolute;
  3835. align-self:center;
  3836. padding:2px 2px 2px 0px;
  3837. box-sizing:border-box;
  3838. width:100%;
  3839. }
  3840. #u59865_text {
  3841. border-width:0px;
  3842. word-wrap:break-word;
  3843. text-transform:none;
  3844. visibility:hidden;
  3845. }
  3846. #u59866_img {
  3847. border-width:0px;
  3848. position:absolute;
  3849. left:0px;
  3850. top:0px;
  3851. width:121px;
  3852. height:35px;
  3853. }
  3854. #u59866 {
  3855. border-width:0px;
  3856. position:absolute;
  3857. left:242px;
  3858. top:226px;
  3859. width:121px;
  3860. height:35px;
  3861. display:flex;
  3862. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3863. font-weight:400;
  3864. font-style:normal;
  3865. font-size:12px;
  3866. color:#606266;
  3867. }
  3868. #u59866 .text {
  3869. position:absolute;
  3870. align-self:center;
  3871. padding:2px 2px 2px 0px;
  3872. box-sizing:border-box;
  3873. width:100%;
  3874. }
  3875. #u59866_text {
  3876. border-width:0px;
  3877. word-wrap:break-word;
  3878. text-transform:none;
  3879. visibility:hidden;
  3880. }
  3881. #u59867_img {
  3882. border-width:0px;
  3883. position:absolute;
  3884. left:0px;
  3885. top:0px;
  3886. width:121px;
  3887. height:35px;
  3888. }
  3889. #u59867 {
  3890. border-width:0px;
  3891. position:absolute;
  3892. left:363px;
  3893. top:226px;
  3894. width:121px;
  3895. height:35px;
  3896. display:flex;
  3897. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3898. font-weight:400;
  3899. font-style:normal;
  3900. font-size:12px;
  3901. color:#606266;
  3902. }
  3903. #u59867 .text {
  3904. position:absolute;
  3905. align-self:center;
  3906. padding:2px 2px 2px 0px;
  3907. box-sizing:border-box;
  3908. width:100%;
  3909. }
  3910. #u59867_text {
  3911. border-width:0px;
  3912. word-wrap:break-word;
  3913. text-transform:none;
  3914. visibility:hidden;
  3915. }
  3916. #u59868_img {
  3917. border-width:0px;
  3918. position:absolute;
  3919. left:0px;
  3920. top:0px;
  3921. width:121px;
  3922. height:35px;
  3923. }
  3924. #u59868 {
  3925. border-width:0px;
  3926. position:absolute;
  3927. left:484px;
  3928. top:226px;
  3929. width:121px;
  3930. height:35px;
  3931. display:flex;
  3932. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3933. font-weight:400;
  3934. font-style:normal;
  3935. font-size:12px;
  3936. color:#606266;
  3937. }
  3938. #u59868 .text {
  3939. position:absolute;
  3940. align-self:center;
  3941. padding:2px 2px 2px 0px;
  3942. box-sizing:border-box;
  3943. width:100%;
  3944. }
  3945. #u59868_text {
  3946. border-width:0px;
  3947. word-wrap:break-word;
  3948. text-transform:none;
  3949. visibility:hidden;
  3950. }
  3951. #u59869_img {
  3952. border-width:0px;
  3953. position:absolute;
  3954. left:0px;
  3955. top:0px;
  3956. width:121px;
  3957. height:35px;
  3958. }
  3959. #u59869 {
  3960. border-width:0px;
  3961. position:absolute;
  3962. left:605px;
  3963. top:226px;
  3964. width:121px;
  3965. height:35px;
  3966. display:flex;
  3967. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3968. font-weight:400;
  3969. font-style:normal;
  3970. font-size:12px;
  3971. color:#606266;
  3972. }
  3973. #u59869 .text {
  3974. position:absolute;
  3975. align-self:center;
  3976. padding:2px 2px 2px 0px;
  3977. box-sizing:border-box;
  3978. width:100%;
  3979. }
  3980. #u59869_text {
  3981. border-width:0px;
  3982. word-wrap:break-word;
  3983. text-transform:none;
  3984. visibility:hidden;
  3985. }
  3986. #u59870_img {
  3987. border-width:0px;
  3988. position:absolute;
  3989. left:0px;
  3990. top:0px;
  3991. width:121px;
  3992. height:35px;
  3993. }
  3994. #u59870 {
  3995. border-width:0px;
  3996. position:absolute;
  3997. left:726px;
  3998. top:226px;
  3999. width:121px;
  4000. height:35px;
  4001. display:flex;
  4002. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4003. font-weight:400;
  4004. font-style:normal;
  4005. font-size:12px;
  4006. color:#606266;
  4007. }
  4008. #u59870 .text {
  4009. position:absolute;
  4010. align-self:center;
  4011. padding:2px 2px 2px 0px;
  4012. box-sizing:border-box;
  4013. width:100%;
  4014. }
  4015. #u59870_text {
  4016. border-width:0px;
  4017. word-wrap:break-word;
  4018. text-transform:none;
  4019. visibility:hidden;
  4020. }
  4021. #u59871_img {
  4022. border-width:0px;
  4023. position:absolute;
  4024. left:0px;
  4025. top:0px;
  4026. width:121px;
  4027. height:35px;
  4028. }
  4029. #u59871 {
  4030. border-width:0px;
  4031. position:absolute;
  4032. left:847px;
  4033. top:226px;
  4034. width:121px;
  4035. height:35px;
  4036. display:flex;
  4037. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4038. font-weight:400;
  4039. font-style:normal;
  4040. font-size:12px;
  4041. color:#606266;
  4042. }
  4043. #u59871 .text {
  4044. position:absolute;
  4045. align-self:center;
  4046. padding:2px 2px 2px 0px;
  4047. box-sizing:border-box;
  4048. width:100%;
  4049. }
  4050. #u59871_text {
  4051. border-width:0px;
  4052. word-wrap:break-word;
  4053. text-transform:none;
  4054. visibility:hidden;
  4055. }
  4056. #u59872_img {
  4057. border-width:0px;
  4058. position:absolute;
  4059. left:0px;
  4060. top:0px;
  4061. width:121px;
  4062. height:35px;
  4063. }
  4064. #u59872 {
  4065. border-width:0px;
  4066. position:absolute;
  4067. left:968px;
  4068. top:226px;
  4069. width:121px;
  4070. height:35px;
  4071. display:flex;
  4072. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4073. font-weight:400;
  4074. font-style:normal;
  4075. font-size:12px;
  4076. color:#606266;
  4077. }
  4078. #u59872 .text {
  4079. position:absolute;
  4080. align-self:center;
  4081. padding:2px 2px 2px 0px;
  4082. box-sizing:border-box;
  4083. width:100%;
  4084. }
  4085. #u59872_text {
  4086. border-width:0px;
  4087. word-wrap:break-word;
  4088. text-transform:none;
  4089. visibility:hidden;
  4090. }
  4091. #u59873_img {
  4092. border-width:0px;
  4093. position:absolute;
  4094. left:0px;
  4095. top:0px;
  4096. width:126px;
  4097. height:35px;
  4098. }
  4099. #u59873 {
  4100. border-width:0px;
  4101. position:absolute;
  4102. left:1089px;
  4103. top:226px;
  4104. width:126px;
  4105. height:35px;
  4106. display:flex;
  4107. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4108. font-weight:400;
  4109. font-style:normal;
  4110. font-size:12px;
  4111. color:#02A7F0;
  4112. }
  4113. #u59873 .text {
  4114. position:absolute;
  4115. align-self:center;
  4116. padding:2px 2px 2px 0px;
  4117. box-sizing:border-box;
  4118. width:100%;
  4119. }
  4120. #u59873_text {
  4121. border-width:0px;
  4122. word-wrap:break-word;
  4123. text-transform:none;
  4124. visibility:hidden;
  4125. }
  4126. #u59874_img {
  4127. border-width:0px;
  4128. position:absolute;
  4129. left:0px;
  4130. top:0px;
  4131. width:121px;
  4132. height:35px;
  4133. }
  4134. #u59874 {
  4135. border-width:0px;
  4136. position:absolute;
  4137. left:0px;
  4138. top:261px;
  4139. width:121px;
  4140. height:35px;
  4141. display:flex;
  4142. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4143. font-weight:400;
  4144. font-style:normal;
  4145. font-size:12px;
  4146. color:#606266;
  4147. }
  4148. #u59874 .text {
  4149. position:absolute;
  4150. align-self:center;
  4151. padding:2px 2px 2px 0px;
  4152. box-sizing:border-box;
  4153. width:100%;
  4154. }
  4155. #u59874_text {
  4156. border-width:0px;
  4157. word-wrap:break-word;
  4158. text-transform:none;
  4159. visibility:hidden;
  4160. }
  4161. #u59875_img {
  4162. border-width:0px;
  4163. position:absolute;
  4164. left:0px;
  4165. top:0px;
  4166. width:121px;
  4167. height:35px;
  4168. }
  4169. #u59875 {
  4170. border-width:0px;
  4171. position:absolute;
  4172. left:121px;
  4173. top:261px;
  4174. width:121px;
  4175. height:35px;
  4176. display:flex;
  4177. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4178. font-weight:400;
  4179. font-style:normal;
  4180. font-size:12px;
  4181. color:#606266;
  4182. }
  4183. #u59875 .text {
  4184. position:absolute;
  4185. align-self:center;
  4186. padding:2px 2px 2px 0px;
  4187. box-sizing:border-box;
  4188. width:100%;
  4189. }
  4190. #u59875_text {
  4191. border-width:0px;
  4192. word-wrap:break-word;
  4193. text-transform:none;
  4194. visibility:hidden;
  4195. }
  4196. #u59876_img {
  4197. border-width:0px;
  4198. position:absolute;
  4199. left:0px;
  4200. top:0px;
  4201. width:121px;
  4202. height:35px;
  4203. }
  4204. #u59876 {
  4205. border-width:0px;
  4206. position:absolute;
  4207. left:242px;
  4208. top:261px;
  4209. width:121px;
  4210. height:35px;
  4211. display:flex;
  4212. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4213. font-weight:400;
  4214. font-style:normal;
  4215. font-size:12px;
  4216. color:#606266;
  4217. }
  4218. #u59876 .text {
  4219. position:absolute;
  4220. align-self:center;
  4221. padding:2px 2px 2px 0px;
  4222. box-sizing:border-box;
  4223. width:100%;
  4224. }
  4225. #u59876_text {
  4226. border-width:0px;
  4227. word-wrap:break-word;
  4228. text-transform:none;
  4229. visibility:hidden;
  4230. }
  4231. #u59877_img {
  4232. border-width:0px;
  4233. position:absolute;
  4234. left:0px;
  4235. top:0px;
  4236. width:121px;
  4237. height:35px;
  4238. }
  4239. #u59877 {
  4240. border-width:0px;
  4241. position:absolute;
  4242. left:363px;
  4243. top:261px;
  4244. width:121px;
  4245. height:35px;
  4246. display:flex;
  4247. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4248. font-weight:400;
  4249. font-style:normal;
  4250. font-size:12px;
  4251. color:#606266;
  4252. }
  4253. #u59877 .text {
  4254. position:absolute;
  4255. align-self:center;
  4256. padding:2px 2px 2px 0px;
  4257. box-sizing:border-box;
  4258. width:100%;
  4259. }
  4260. #u59877_text {
  4261. border-width:0px;
  4262. word-wrap:break-word;
  4263. text-transform:none;
  4264. visibility:hidden;
  4265. }
  4266. #u59878_img {
  4267. border-width:0px;
  4268. position:absolute;
  4269. left:0px;
  4270. top:0px;
  4271. width:121px;
  4272. height:35px;
  4273. }
  4274. #u59878 {
  4275. border-width:0px;
  4276. position:absolute;
  4277. left:484px;
  4278. top:261px;
  4279. width:121px;
  4280. height:35px;
  4281. display:flex;
  4282. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4283. font-weight:400;
  4284. font-style:normal;
  4285. font-size:12px;
  4286. color:#606266;
  4287. }
  4288. #u59878 .text {
  4289. position:absolute;
  4290. align-self:center;
  4291. padding:2px 2px 2px 0px;
  4292. box-sizing:border-box;
  4293. width:100%;
  4294. }
  4295. #u59878_text {
  4296. border-width:0px;
  4297. word-wrap:break-word;
  4298. text-transform:none;
  4299. visibility:hidden;
  4300. }
  4301. #u59879_img {
  4302. border-width:0px;
  4303. position:absolute;
  4304. left:0px;
  4305. top:0px;
  4306. width:121px;
  4307. height:35px;
  4308. }
  4309. #u59879 {
  4310. border-width:0px;
  4311. position:absolute;
  4312. left:605px;
  4313. top:261px;
  4314. width:121px;
  4315. height:35px;
  4316. display:flex;
  4317. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4318. font-weight:400;
  4319. font-style:normal;
  4320. font-size:12px;
  4321. color:#606266;
  4322. }
  4323. #u59879 .text {
  4324. position:absolute;
  4325. align-self:center;
  4326. padding:2px 2px 2px 0px;
  4327. box-sizing:border-box;
  4328. width:100%;
  4329. }
  4330. #u59879_text {
  4331. border-width:0px;
  4332. word-wrap:break-word;
  4333. text-transform:none;
  4334. visibility:hidden;
  4335. }
  4336. #u59880_img {
  4337. border-width:0px;
  4338. position:absolute;
  4339. left:0px;
  4340. top:0px;
  4341. width:121px;
  4342. height:35px;
  4343. }
  4344. #u59880 {
  4345. border-width:0px;
  4346. position:absolute;
  4347. left:726px;
  4348. top:261px;
  4349. width:121px;
  4350. height:35px;
  4351. display:flex;
  4352. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4353. font-weight:400;
  4354. font-style:normal;
  4355. font-size:12px;
  4356. color:#606266;
  4357. }
  4358. #u59880 .text {
  4359. position:absolute;
  4360. align-self:center;
  4361. padding:2px 2px 2px 0px;
  4362. box-sizing:border-box;
  4363. width:100%;
  4364. }
  4365. #u59880_text {
  4366. border-width:0px;
  4367. word-wrap:break-word;
  4368. text-transform:none;
  4369. visibility:hidden;
  4370. }
  4371. #u59881_img {
  4372. border-width:0px;
  4373. position:absolute;
  4374. left:0px;
  4375. top:0px;
  4376. width:121px;
  4377. height:35px;
  4378. }
  4379. #u59881 {
  4380. border-width:0px;
  4381. position:absolute;
  4382. left:847px;
  4383. top:261px;
  4384. width:121px;
  4385. height:35px;
  4386. display:flex;
  4387. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4388. font-weight:400;
  4389. font-style:normal;
  4390. font-size:12px;
  4391. color:#606266;
  4392. }
  4393. #u59881 .text {
  4394. position:absolute;
  4395. align-self:center;
  4396. padding:2px 2px 2px 0px;
  4397. box-sizing:border-box;
  4398. width:100%;
  4399. }
  4400. #u59881_text {
  4401. border-width:0px;
  4402. word-wrap:break-word;
  4403. text-transform:none;
  4404. visibility:hidden;
  4405. }
  4406. #u59882_img {
  4407. border-width:0px;
  4408. position:absolute;
  4409. left:0px;
  4410. top:0px;
  4411. width:121px;
  4412. height:35px;
  4413. }
  4414. #u59882 {
  4415. border-width:0px;
  4416. position:absolute;
  4417. left:968px;
  4418. top:261px;
  4419. width:121px;
  4420. height:35px;
  4421. display:flex;
  4422. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4423. font-weight:400;
  4424. font-style:normal;
  4425. font-size:12px;
  4426. color:#606266;
  4427. }
  4428. #u59882 .text {
  4429. position:absolute;
  4430. align-self:center;
  4431. padding:2px 2px 2px 0px;
  4432. box-sizing:border-box;
  4433. width:100%;
  4434. }
  4435. #u59882_text {
  4436. border-width:0px;
  4437. word-wrap:break-word;
  4438. text-transform:none;
  4439. visibility:hidden;
  4440. }
  4441. #u59883_img {
  4442. border-width:0px;
  4443. position:absolute;
  4444. left:0px;
  4445. top:0px;
  4446. width:126px;
  4447. height:35px;
  4448. }
  4449. #u59883 {
  4450. border-width:0px;
  4451. position:absolute;
  4452. left:1089px;
  4453. top:261px;
  4454. width:126px;
  4455. height:35px;
  4456. display:flex;
  4457. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4458. font-weight:400;
  4459. font-style:normal;
  4460. font-size:12px;
  4461. color:#02A7F0;
  4462. }
  4463. #u59883 .text {
  4464. position:absolute;
  4465. align-self:center;
  4466. padding:2px 2px 2px 0px;
  4467. box-sizing:border-box;
  4468. width:100%;
  4469. }
  4470. #u59883_text {
  4471. border-width:0px;
  4472. word-wrap:break-word;
  4473. text-transform:none;
  4474. visibility:hidden;
  4475. }
  4476. #u59884_img {
  4477. border-width:0px;
  4478. position:absolute;
  4479. left:0px;
  4480. top:0px;
  4481. width:121px;
  4482. height:35px;
  4483. }
  4484. #u59884 {
  4485. border-width:0px;
  4486. position:absolute;
  4487. left:0px;
  4488. top:296px;
  4489. width:121px;
  4490. height:35px;
  4491. display:flex;
  4492. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4493. font-weight:400;
  4494. font-style:normal;
  4495. font-size:12px;
  4496. color:#606266;
  4497. }
  4498. #u59884 .text {
  4499. position:absolute;
  4500. align-self:center;
  4501. padding:2px 2px 2px 0px;
  4502. box-sizing:border-box;
  4503. width:100%;
  4504. }
  4505. #u59884_text {
  4506. border-width:0px;
  4507. word-wrap:break-word;
  4508. text-transform:none;
  4509. visibility:hidden;
  4510. }
  4511. #u59885_img {
  4512. border-width:0px;
  4513. position:absolute;
  4514. left:0px;
  4515. top:0px;
  4516. width:121px;
  4517. height:35px;
  4518. }
  4519. #u59885 {
  4520. border-width:0px;
  4521. position:absolute;
  4522. left:121px;
  4523. top:296px;
  4524. width:121px;
  4525. height:35px;
  4526. display:flex;
  4527. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4528. font-weight:400;
  4529. font-style:normal;
  4530. font-size:12px;
  4531. color:#606266;
  4532. }
  4533. #u59885 .text {
  4534. position:absolute;
  4535. align-self:center;
  4536. padding:2px 2px 2px 0px;
  4537. box-sizing:border-box;
  4538. width:100%;
  4539. }
  4540. #u59885_text {
  4541. border-width:0px;
  4542. word-wrap:break-word;
  4543. text-transform:none;
  4544. visibility:hidden;
  4545. }
  4546. #u59886_img {
  4547. border-width:0px;
  4548. position:absolute;
  4549. left:0px;
  4550. top:0px;
  4551. width:121px;
  4552. height:35px;
  4553. }
  4554. #u59886 {
  4555. border-width:0px;
  4556. position:absolute;
  4557. left:242px;
  4558. top:296px;
  4559. width:121px;
  4560. height:35px;
  4561. display:flex;
  4562. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4563. font-weight:400;
  4564. font-style:normal;
  4565. font-size:12px;
  4566. color:#606266;
  4567. }
  4568. #u59886 .text {
  4569. position:absolute;
  4570. align-self:center;
  4571. padding:2px 2px 2px 0px;
  4572. box-sizing:border-box;
  4573. width:100%;
  4574. }
  4575. #u59886_text {
  4576. border-width:0px;
  4577. word-wrap:break-word;
  4578. text-transform:none;
  4579. visibility:hidden;
  4580. }
  4581. #u59887_img {
  4582. border-width:0px;
  4583. position:absolute;
  4584. left:0px;
  4585. top:0px;
  4586. width:121px;
  4587. height:35px;
  4588. }
  4589. #u59887 {
  4590. border-width:0px;
  4591. position:absolute;
  4592. left:363px;
  4593. top:296px;
  4594. width:121px;
  4595. height:35px;
  4596. display:flex;
  4597. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4598. font-weight:400;
  4599. font-style:normal;
  4600. font-size:12px;
  4601. color:#606266;
  4602. }
  4603. #u59887 .text {
  4604. position:absolute;
  4605. align-self:center;
  4606. padding:2px 2px 2px 0px;
  4607. box-sizing:border-box;
  4608. width:100%;
  4609. }
  4610. #u59887_text {
  4611. border-width:0px;
  4612. word-wrap:break-word;
  4613. text-transform:none;
  4614. visibility:hidden;
  4615. }
  4616. #u59888_img {
  4617. border-width:0px;
  4618. position:absolute;
  4619. left:0px;
  4620. top:0px;
  4621. width:121px;
  4622. height:35px;
  4623. }
  4624. #u59888 {
  4625. border-width:0px;
  4626. position:absolute;
  4627. left:484px;
  4628. top:296px;
  4629. width:121px;
  4630. height:35px;
  4631. display:flex;
  4632. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4633. font-weight:400;
  4634. font-style:normal;
  4635. font-size:12px;
  4636. color:#606266;
  4637. }
  4638. #u59888 .text {
  4639. position:absolute;
  4640. align-self:center;
  4641. padding:2px 2px 2px 0px;
  4642. box-sizing:border-box;
  4643. width:100%;
  4644. }
  4645. #u59888_text {
  4646. border-width:0px;
  4647. word-wrap:break-word;
  4648. text-transform:none;
  4649. visibility:hidden;
  4650. }
  4651. #u59889_img {
  4652. border-width:0px;
  4653. position:absolute;
  4654. left:0px;
  4655. top:0px;
  4656. width:121px;
  4657. height:35px;
  4658. }
  4659. #u59889 {
  4660. border-width:0px;
  4661. position:absolute;
  4662. left:605px;
  4663. top:296px;
  4664. width:121px;
  4665. height:35px;
  4666. display:flex;
  4667. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4668. font-weight:400;
  4669. font-style:normal;
  4670. font-size:12px;
  4671. color:#606266;
  4672. }
  4673. #u59889 .text {
  4674. position:absolute;
  4675. align-self:center;
  4676. padding:2px 2px 2px 0px;
  4677. box-sizing:border-box;
  4678. width:100%;
  4679. }
  4680. #u59889_text {
  4681. border-width:0px;
  4682. word-wrap:break-word;
  4683. text-transform:none;
  4684. visibility:hidden;
  4685. }
  4686. #u59890_img {
  4687. border-width:0px;
  4688. position:absolute;
  4689. left:0px;
  4690. top:0px;
  4691. width:121px;
  4692. height:35px;
  4693. }
  4694. #u59890 {
  4695. border-width:0px;
  4696. position:absolute;
  4697. left:726px;
  4698. top:296px;
  4699. width:121px;
  4700. height:35px;
  4701. display:flex;
  4702. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4703. font-weight:400;
  4704. font-style:normal;
  4705. font-size:12px;
  4706. color:#606266;
  4707. }
  4708. #u59890 .text {
  4709. position:absolute;
  4710. align-self:center;
  4711. padding:2px 2px 2px 0px;
  4712. box-sizing:border-box;
  4713. width:100%;
  4714. }
  4715. #u59890_text {
  4716. border-width:0px;
  4717. word-wrap:break-word;
  4718. text-transform:none;
  4719. visibility:hidden;
  4720. }
  4721. #u59891_img {
  4722. border-width:0px;
  4723. position:absolute;
  4724. left:0px;
  4725. top:0px;
  4726. width:121px;
  4727. height:35px;
  4728. }
  4729. #u59891 {
  4730. border-width:0px;
  4731. position:absolute;
  4732. left:847px;
  4733. top:296px;
  4734. width:121px;
  4735. height:35px;
  4736. display:flex;
  4737. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4738. font-weight:400;
  4739. font-style:normal;
  4740. font-size:12px;
  4741. color:#606266;
  4742. }
  4743. #u59891 .text {
  4744. position:absolute;
  4745. align-self:center;
  4746. padding:2px 2px 2px 0px;
  4747. box-sizing:border-box;
  4748. width:100%;
  4749. }
  4750. #u59891_text {
  4751. border-width:0px;
  4752. word-wrap:break-word;
  4753. text-transform:none;
  4754. visibility:hidden;
  4755. }
  4756. #u59892_img {
  4757. border-width:0px;
  4758. position:absolute;
  4759. left:0px;
  4760. top:0px;
  4761. width:121px;
  4762. height:35px;
  4763. }
  4764. #u59892 {
  4765. border-width:0px;
  4766. position:absolute;
  4767. left:968px;
  4768. top:296px;
  4769. width:121px;
  4770. height:35px;
  4771. display:flex;
  4772. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4773. font-weight:400;
  4774. font-style:normal;
  4775. font-size:12px;
  4776. color:#606266;
  4777. }
  4778. #u59892 .text {
  4779. position:absolute;
  4780. align-self:center;
  4781. padding:2px 2px 2px 0px;
  4782. box-sizing:border-box;
  4783. width:100%;
  4784. }
  4785. #u59892_text {
  4786. border-width:0px;
  4787. word-wrap:break-word;
  4788. text-transform:none;
  4789. visibility:hidden;
  4790. }
  4791. #u59893_img {
  4792. border-width:0px;
  4793. position:absolute;
  4794. left:0px;
  4795. top:0px;
  4796. width:126px;
  4797. height:35px;
  4798. }
  4799. #u59893 {
  4800. border-width:0px;
  4801. position:absolute;
  4802. left:1089px;
  4803. top:296px;
  4804. width:126px;
  4805. height:35px;
  4806. display:flex;
  4807. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4808. font-weight:400;
  4809. font-style:normal;
  4810. font-size:12px;
  4811. color:#02A7F0;
  4812. }
  4813. #u59893 .text {
  4814. position:absolute;
  4815. align-self:center;
  4816. padding:2px 2px 2px 0px;
  4817. box-sizing:border-box;
  4818. width:100%;
  4819. }
  4820. #u59893_text {
  4821. border-width:0px;
  4822. word-wrap:break-word;
  4823. text-transform:none;
  4824. visibility:hidden;
  4825. }
  4826. #u59894_img {
  4827. border-width:0px;
  4828. position:absolute;
  4829. left:0px;
  4830. top:0px;
  4831. width:121px;
  4832. height:35px;
  4833. }
  4834. #u59894 {
  4835. border-width:0px;
  4836. position:absolute;
  4837. left:0px;
  4838. top:331px;
  4839. width:121px;
  4840. height:35px;
  4841. display:flex;
  4842. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4843. font-weight:400;
  4844. font-style:normal;
  4845. font-size:12px;
  4846. color:#606266;
  4847. }
  4848. #u59894 .text {
  4849. position:absolute;
  4850. align-self:center;
  4851. padding:2px 2px 2px 0px;
  4852. box-sizing:border-box;
  4853. width:100%;
  4854. }
  4855. #u59894_text {
  4856. border-width:0px;
  4857. word-wrap:break-word;
  4858. text-transform:none;
  4859. visibility:hidden;
  4860. }
  4861. #u59895_img {
  4862. border-width:0px;
  4863. position:absolute;
  4864. left:0px;
  4865. top:0px;
  4866. width:121px;
  4867. height:35px;
  4868. }
  4869. #u59895 {
  4870. border-width:0px;
  4871. position:absolute;
  4872. left:121px;
  4873. top:331px;
  4874. width:121px;
  4875. height:35px;
  4876. display:flex;
  4877. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4878. font-weight:400;
  4879. font-style:normal;
  4880. font-size:12px;
  4881. color:#606266;
  4882. }
  4883. #u59895 .text {
  4884. position:absolute;
  4885. align-self:center;
  4886. padding:2px 2px 2px 0px;
  4887. box-sizing:border-box;
  4888. width:100%;
  4889. }
  4890. #u59895_text {
  4891. border-width:0px;
  4892. word-wrap:break-word;
  4893. text-transform:none;
  4894. visibility:hidden;
  4895. }
  4896. #u59896_img {
  4897. border-width:0px;
  4898. position:absolute;
  4899. left:0px;
  4900. top:0px;
  4901. width:121px;
  4902. height:35px;
  4903. }
  4904. #u59896 {
  4905. border-width:0px;
  4906. position:absolute;
  4907. left:242px;
  4908. top:331px;
  4909. width:121px;
  4910. height:35px;
  4911. display:flex;
  4912. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4913. font-weight:400;
  4914. font-style:normal;
  4915. font-size:12px;
  4916. color:#606266;
  4917. }
  4918. #u59896 .text {
  4919. position:absolute;
  4920. align-self:center;
  4921. padding:2px 2px 2px 0px;
  4922. box-sizing:border-box;
  4923. width:100%;
  4924. }
  4925. #u59896_text {
  4926. border-width:0px;
  4927. word-wrap:break-word;
  4928. text-transform:none;
  4929. visibility:hidden;
  4930. }
  4931. #u59897_img {
  4932. border-width:0px;
  4933. position:absolute;
  4934. left:0px;
  4935. top:0px;
  4936. width:121px;
  4937. height:35px;
  4938. }
  4939. #u59897 {
  4940. border-width:0px;
  4941. position:absolute;
  4942. left:363px;
  4943. top:331px;
  4944. width:121px;
  4945. height:35px;
  4946. display:flex;
  4947. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4948. font-weight:400;
  4949. font-style:normal;
  4950. font-size:12px;
  4951. color:#606266;
  4952. }
  4953. #u59897 .text {
  4954. position:absolute;
  4955. align-self:center;
  4956. padding:2px 2px 2px 0px;
  4957. box-sizing:border-box;
  4958. width:100%;
  4959. }
  4960. #u59897_text {
  4961. border-width:0px;
  4962. word-wrap:break-word;
  4963. text-transform:none;
  4964. visibility:hidden;
  4965. }
  4966. #u59898_img {
  4967. border-width:0px;
  4968. position:absolute;
  4969. left:0px;
  4970. top:0px;
  4971. width:121px;
  4972. height:35px;
  4973. }
  4974. #u59898 {
  4975. border-width:0px;
  4976. position:absolute;
  4977. left:484px;
  4978. top:331px;
  4979. width:121px;
  4980. height:35px;
  4981. display:flex;
  4982. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4983. font-weight:400;
  4984. font-style:normal;
  4985. font-size:12px;
  4986. color:#606266;
  4987. }
  4988. #u59898 .text {
  4989. position:absolute;
  4990. align-self:center;
  4991. padding:2px 2px 2px 0px;
  4992. box-sizing:border-box;
  4993. width:100%;
  4994. }
  4995. #u59898_text {
  4996. border-width:0px;
  4997. word-wrap:break-word;
  4998. text-transform:none;
  4999. visibility:hidden;
  5000. }
  5001. #u59899_img {
  5002. border-width:0px;
  5003. position:absolute;
  5004. left:0px;
  5005. top:0px;
  5006. width:121px;
  5007. height:35px;
  5008. }
  5009. #u59899 {
  5010. border-width:0px;
  5011. position:absolute;
  5012. left:605px;
  5013. top:331px;
  5014. width:121px;
  5015. height:35px;
  5016. display:flex;
  5017. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5018. font-weight:400;
  5019. font-style:normal;
  5020. font-size:12px;
  5021. color:#606266;
  5022. }
  5023. #u59899 .text {
  5024. position:absolute;
  5025. align-self:center;
  5026. padding:2px 2px 2px 0px;
  5027. box-sizing:border-box;
  5028. width:100%;
  5029. }
  5030. #u59899_text {
  5031. border-width:0px;
  5032. word-wrap:break-word;
  5033. text-transform:none;
  5034. visibility:hidden;
  5035. }
  5036. #u59900_img {
  5037. border-width:0px;
  5038. position:absolute;
  5039. left:0px;
  5040. top:0px;
  5041. width:121px;
  5042. height:35px;
  5043. }
  5044. #u59900 {
  5045. border-width:0px;
  5046. position:absolute;
  5047. left:726px;
  5048. top:331px;
  5049. width:121px;
  5050. height:35px;
  5051. display:flex;
  5052. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5053. font-weight:400;
  5054. font-style:normal;
  5055. font-size:12px;
  5056. color:#606266;
  5057. }
  5058. #u59900 .text {
  5059. position:absolute;
  5060. align-self:center;
  5061. padding:2px 2px 2px 0px;
  5062. box-sizing:border-box;
  5063. width:100%;
  5064. }
  5065. #u59900_text {
  5066. border-width:0px;
  5067. word-wrap:break-word;
  5068. text-transform:none;
  5069. visibility:hidden;
  5070. }
  5071. #u59901_img {
  5072. border-width:0px;
  5073. position:absolute;
  5074. left:0px;
  5075. top:0px;
  5076. width:121px;
  5077. height:35px;
  5078. }
  5079. #u59901 {
  5080. border-width:0px;
  5081. position:absolute;
  5082. left:847px;
  5083. top:331px;
  5084. width:121px;
  5085. height:35px;
  5086. display:flex;
  5087. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5088. font-weight:400;
  5089. font-style:normal;
  5090. font-size:12px;
  5091. color:#606266;
  5092. }
  5093. #u59901 .text {
  5094. position:absolute;
  5095. align-self:center;
  5096. padding:2px 2px 2px 0px;
  5097. box-sizing:border-box;
  5098. width:100%;
  5099. }
  5100. #u59901_text {
  5101. border-width:0px;
  5102. word-wrap:break-word;
  5103. text-transform:none;
  5104. visibility:hidden;
  5105. }
  5106. #u59902_img {
  5107. border-width:0px;
  5108. position:absolute;
  5109. left:0px;
  5110. top:0px;
  5111. width:121px;
  5112. height:35px;
  5113. }
  5114. #u59902 {
  5115. border-width:0px;
  5116. position:absolute;
  5117. left:968px;
  5118. top:331px;
  5119. width:121px;
  5120. height:35px;
  5121. display:flex;
  5122. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5123. font-weight:400;
  5124. font-style:normal;
  5125. font-size:12px;
  5126. color:#606266;
  5127. }
  5128. #u59902 .text {
  5129. position:absolute;
  5130. align-self:center;
  5131. padding:2px 2px 2px 0px;
  5132. box-sizing:border-box;
  5133. width:100%;
  5134. }
  5135. #u59902_text {
  5136. border-width:0px;
  5137. word-wrap:break-word;
  5138. text-transform:none;
  5139. visibility:hidden;
  5140. }
  5141. #u59903_img {
  5142. border-width:0px;
  5143. position:absolute;
  5144. left:0px;
  5145. top:0px;
  5146. width:126px;
  5147. height:35px;
  5148. }
  5149. #u59903 {
  5150. border-width:0px;
  5151. position:absolute;
  5152. left:1089px;
  5153. top:331px;
  5154. width:126px;
  5155. height:35px;
  5156. display:flex;
  5157. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5158. font-weight:400;
  5159. font-style:normal;
  5160. font-size:12px;
  5161. color:#02A7F0;
  5162. }
  5163. #u59903 .text {
  5164. position:absolute;
  5165. align-self:center;
  5166. padding:2px 2px 2px 0px;
  5167. box-sizing:border-box;
  5168. width:100%;
  5169. }
  5170. #u59903_text {
  5171. border-width:0px;
  5172. word-wrap:break-word;
  5173. text-transform:none;
  5174. visibility:hidden;
  5175. }
  5176. #u59904 {
  5177. border-width:0px;
  5178. position:absolute;
  5179. left:0px;
  5180. top:0px;
  5181. width:0px;
  5182. height:0px;
  5183. }
  5184. #u59905_div {
  5185. border-width:0px;
  5186. position:absolute;
  5187. left:0px;
  5188. top:0px;
  5189. width:59px;
  5190. height:30px;
  5191. background:inherit;
  5192. background-color:rgba(24, 144, 255, 1);
  5193. box-sizing:border-box;
  5194. border-width:1px;
  5195. border-style:solid;
  5196. border-color:rgba(0, 153, 255, 1);
  5197. border-radius:4px;
  5198. -moz-box-shadow:none;
  5199. -webkit-box-shadow:none;
  5200. box-shadow:none;
  5201. font-family:'Microsoft YaHei', sans-serif;
  5202. font-weight:400;
  5203. font-style:normal;
  5204. font-size:14px;
  5205. color:#FFFFFF;
  5206. }
  5207. #u59905 {
  5208. border-width:0px;
  5209. position:absolute;
  5210. left:652px;
  5211. top:215px;
  5212. width:59px;
  5213. height:30px;
  5214. display:flex;
  5215. font-family:'Microsoft YaHei', sans-serif;
  5216. font-weight:400;
  5217. font-style:normal;
  5218. font-size:14px;
  5219. color:#FFFFFF;
  5220. }
  5221. #u59905 .text {
  5222. position:absolute;
  5223. align-self:center;
  5224. padding:5px 15px 5px 15px;
  5225. box-sizing:border-box;
  5226. width:100%;
  5227. }
  5228. #u59905_text {
  5229. border-width:0px;
  5230. white-space:nowrap;
  5231. text-transform:none;
  5232. }
  5233. #u59906_div {
  5234. border-width:0px;
  5235. position:absolute;
  5236. left:0px;
  5237. top:0px;
  5238. width:55px;
  5239. height:30px;
  5240. background:inherit;
  5241. background-color:rgba(255, 255, 255, 1);
  5242. box-sizing:border-box;
  5243. border-width:1px;
  5244. border-style:solid;
  5245. border-color:rgba(170, 170, 170, 1);
  5246. border-radius:4px;
  5247. -moz-box-shadow:none;
  5248. -webkit-box-shadow:none;
  5249. box-shadow:none;
  5250. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5251. font-weight:400;
  5252. font-style:normal;
  5253. font-size:12px;
  5254. color:#555555;
  5255. }
  5256. #u59906 {
  5257. border-width:0px;
  5258. position:absolute;
  5259. left:721px;
  5260. top:215px;
  5261. width:55px;
  5262. height:30px;
  5263. display:flex;
  5264. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5265. font-weight:400;
  5266. font-style:normal;
  5267. font-size:12px;
  5268. color:#555555;
  5269. }
  5270. #u59906 .text {
  5271. position:absolute;
  5272. align-self:center;
  5273. padding:5px 15px 5px 15px;
  5274. box-sizing:border-box;
  5275. width:100%;
  5276. }
  5277. #u59906_text {
  5278. border-width:0px;
  5279. white-space:nowrap;
  5280. text-transform:none;
  5281. }
  5282. #u59907 {
  5283. border-width:0px;
  5284. position:absolute;
  5285. left:0px;
  5286. top:0px;
  5287. width:0px;
  5288. height:0px;
  5289. }
  5290. #u59908_div {
  5291. border-width:0px;
  5292. position:absolute;
  5293. left:0px;
  5294. top:0px;
  5295. width:140px;
  5296. height:30px;
  5297. background:inherit;
  5298. background-color:rgba(255, 255, 255, 1);
  5299. box-sizing:border-box;
  5300. border-width:1px;
  5301. border-style:solid;
  5302. border-color:rgba(201, 201, 201, 1);
  5303. border-radius:4px;
  5304. -moz-box-shadow:none;
  5305. -webkit-box-shadow:none;
  5306. box-shadow:none;
  5307. font-family:'Microsoft YaHei', sans-serif;
  5308. font-weight:400;
  5309. font-style:normal;
  5310. font-size:14px;
  5311. color:#CCCCCC;
  5312. text-align:left;
  5313. }
  5314. #u59908 {
  5315. border-width:0px;
  5316. position:absolute;
  5317. left:802px;
  5318. top:174px;
  5319. width:140px;
  5320. height:30px;
  5321. display:flex;
  5322. font-family:'Microsoft YaHei', sans-serif;
  5323. font-weight:400;
  5324. font-style:normal;
  5325. font-size:14px;
  5326. color:#CCCCCC;
  5327. text-align:left;
  5328. }
  5329. #u59908 .text {
  5330. position:absolute;
  5331. align-self:center;
  5332. padding:2px 8px 2px 8px;
  5333. box-sizing:border-box;
  5334. width:100%;
  5335. }
  5336. #u59908_text {
  5337. border-width:0px;
  5338. word-wrap:break-word;
  5339. text-transform:none;
  5340. visibility:hidden;
  5341. }
  5342. #u59909_input {
  5343. position:absolute;
  5344. left:0px;
  5345. top:0px;
  5346. width:127px;
  5347. height:25px;
  5348. padding:2px 2px 2px 2px;
  5349. font-family:'Microsoft YaHei', sans-serif;
  5350. font-weight:400;
  5351. font-style:normal;
  5352. font-size:10px;
  5353. letter-spacing:normal;
  5354. color:#000000;
  5355. vertical-align:none;
  5356. text-align:left;
  5357. text-transform:none;
  5358. background-color:transparent;
  5359. border-color:transparent;
  5360. }
  5361. #u59909_input.disabled {
  5362. position:absolute;
  5363. left:0px;
  5364. top:0px;
  5365. width:127px;
  5366. height:25px;
  5367. padding:2px 2px 2px 2px;
  5368. font-family:'Microsoft YaHei', sans-serif;
  5369. font-weight:400;
  5370. font-style:normal;
  5371. font-size:10px;
  5372. letter-spacing:normal;
  5373. color:#000000;
  5374. vertical-align:none;
  5375. text-align:left;
  5376. text-transform:none;
  5377. background-color:transparent;
  5378. border-color:transparent;
  5379. }
  5380. #u59909_div {
  5381. border-width:0px;
  5382. position:absolute;
  5383. left:0px;
  5384. top:0px;
  5385. width:127px;
  5386. height:25px;
  5387. background:inherit;
  5388. background-color:rgba(255, 255, 255, 1);
  5389. border:none;
  5390. border-radius:0px;
  5391. -moz-box-shadow:none;
  5392. -webkit-box-shadow:none;
  5393. box-shadow:none;
  5394. font-family:'Microsoft YaHei', sans-serif;
  5395. font-weight:400;
  5396. font-style:normal;
  5397. font-size:10px;
  5398. }
  5399. #u59909 {
  5400. border-width:0px;
  5401. position:absolute;
  5402. left:810px;
  5403. top:175px;
  5404. width:127px;
  5405. height:25px;
  5406. display:flex;
  5407. font-family:'Microsoft YaHei', sans-serif;
  5408. font-weight:400;
  5409. font-style:normal;
  5410. font-size:10px;
  5411. }
  5412. #u59909 .text {
  5413. position:absolute;
  5414. align-self:center;
  5415. padding:2px 2px 2px 2px;
  5416. box-sizing:border-box;
  5417. width:100%;
  5418. }
  5419. #u59909_div.disabled {
  5420. border-width:0px;
  5421. position:absolute;
  5422. left:0px;
  5423. top:0px;
  5424. width:127px;
  5425. height:25px;
  5426. background:inherit;
  5427. background-color:rgba(240, 240, 240, 1);
  5428. border:none;
  5429. border-radius:0px;
  5430. -moz-box-shadow:none;
  5431. -webkit-box-shadow:none;
  5432. box-shadow:none;
  5433. font-family:'Microsoft YaHei', sans-serif;
  5434. font-weight:400;
  5435. font-style:normal;
  5436. font-size:10px;
  5437. }
  5438. #u59909.disabled {
  5439. }
  5440. #u59910 {
  5441. border-width:0px;
  5442. position:absolute;
  5443. left:0px;
  5444. top:0px;
  5445. width:0px;
  5446. height:0px;
  5447. }
  5448. #u59911_div {
  5449. border-width:0px;
  5450. position:absolute;
  5451. left:0px;
  5452. top:0px;
  5453. width:140px;
  5454. height:30px;
  5455. background:inherit;
  5456. background-color:rgba(255, 255, 255, 1);
  5457. box-sizing:border-box;
  5458. border-width:1px;
  5459. border-style:solid;
  5460. border-color:rgba(215, 215, 215, 1);
  5461. border-radius:4px;
  5462. -moz-box-shadow:none;
  5463. -webkit-box-shadow:none;
  5464. box-shadow:none;
  5465. font-size:11px;
  5466. }
  5467. #u59911 {
  5468. border-width:0px;
  5469. position:absolute;
  5470. left:502px;
  5471. top:174px;
  5472. width:140px;
  5473. height:30px;
  5474. display:flex;
  5475. font-size:11px;
  5476. }
  5477. #u59911 .text {
  5478. position:absolute;
  5479. align-self:center;
  5480. padding:2px 2px 2px 2px;
  5481. box-sizing:border-box;
  5482. width:100%;
  5483. }
  5484. #u59911_text {
  5485. border-width:0px;
  5486. word-wrap:break-word;
  5487. text-transform:none;
  5488. visibility:hidden;
  5489. }
  5490. #u59912_input {
  5491. position:absolute;
  5492. left:0px;
  5493. top:0px;
  5494. width:126px;
  5495. height:23px;
  5496. padding:2px 2px 2px 2px;
  5497. font-family:'ArialMT', 'Arial', sans-serif;
  5498. font-weight:400;
  5499. font-style:normal;
  5500. font-size:11px;
  5501. letter-spacing:normal;
  5502. color:#AAAAAA;
  5503. vertical-align:none;
  5504. text-align:left;
  5505. text-transform:none;
  5506. background-color:transparent;
  5507. border-color:transparent;
  5508. }
  5509. #u59912_input.disabled {
  5510. position:absolute;
  5511. left:0px;
  5512. top:0px;
  5513. width:126px;
  5514. height:23px;
  5515. padding:2px 2px 2px 2px;
  5516. font-family:'ArialMT', 'Arial', sans-serif;
  5517. font-weight:400;
  5518. font-style:normal;
  5519. font-size:11px;
  5520. letter-spacing:normal;
  5521. color:#AAAAAA;
  5522. vertical-align:none;
  5523. text-align:left;
  5524. text-transform:none;
  5525. background-color:transparent;
  5526. border-color:transparent;
  5527. }
  5528. #u59912_div {
  5529. border-width:0px;
  5530. position:absolute;
  5531. left:0px;
  5532. top:0px;
  5533. width:126px;
  5534. height:23px;
  5535. background:inherit;
  5536. background-color:rgba(255, 255, 255, 1);
  5537. border:none;
  5538. border-radius:0px;
  5539. -moz-box-shadow:none;
  5540. -webkit-box-shadow:none;
  5541. box-shadow:none;
  5542. font-size:11px;
  5543. color:#AAAAAA;
  5544. }
  5545. #u59912 {
  5546. border-width:0px;
  5547. position:absolute;
  5548. left:509px;
  5549. top:176px;
  5550. width:126px;
  5551. height:23px;
  5552. display:flex;
  5553. font-size:11px;
  5554. color:#AAAAAA;
  5555. }
  5556. #u59912 .text {
  5557. position:absolute;
  5558. align-self:flex-start;
  5559. padding:2px 2px 2px 2px;
  5560. box-sizing:border-box;
  5561. width:100%;
  5562. }
  5563. #u59912_div.disabled {
  5564. border-width:0px;
  5565. position:absolute;
  5566. left:0px;
  5567. top:0px;
  5568. width:126px;
  5569. height:23px;
  5570. background:inherit;
  5571. background-color:rgba(240, 240, 240, 1);
  5572. border:none;
  5573. border-radius:0px;
  5574. -moz-box-shadow:none;
  5575. -webkit-box-shadow:none;
  5576. box-shadow:none;
  5577. font-size:11px;
  5578. color:#AAAAAA;
  5579. }
  5580. #u59912.disabled {
  5581. }
  5582. .u59912_input_option {
  5583. font-size:11px;
  5584. }
  5585. #u59913 {
  5586. border-width:0px;
  5587. position:absolute;
  5588. left:0px;
  5589. top:0px;
  5590. width:0px;
  5591. height:0px;
  5592. }
  5593. #u59914_div {
  5594. border-width:0px;
  5595. position:absolute;
  5596. left:0px;
  5597. top:0px;
  5598. width:140px;
  5599. height:30px;
  5600. background:inherit;
  5601. background-color:rgba(255, 255, 255, 1);
  5602. box-sizing:border-box;
  5603. border-width:1px;
  5604. border-style:solid;
  5605. border-color:rgba(215, 215, 215, 1);
  5606. border-radius:4px;
  5607. -moz-box-shadow:none;
  5608. -webkit-box-shadow:none;
  5609. box-shadow:none;
  5610. font-size:11px;
  5611. }
  5612. #u59914 {
  5613. border-width:0px;
  5614. position:absolute;
  5615. left:502px;
  5616. top:216px;
  5617. width:140px;
  5618. height:30px;
  5619. display:flex;
  5620. font-size:11px;
  5621. }
  5622. #u59914 .text {
  5623. position:absolute;
  5624. align-self:center;
  5625. padding:2px 2px 2px 2px;
  5626. box-sizing:border-box;
  5627. width:100%;
  5628. }
  5629. #u59914_text {
  5630. border-width:0px;
  5631. word-wrap:break-word;
  5632. text-transform:none;
  5633. visibility:hidden;
  5634. }
  5635. #u59915_input {
  5636. position:absolute;
  5637. left:0px;
  5638. top:0px;
  5639. width:126px;
  5640. height:23px;
  5641. padding:2px 2px 2px 2px;
  5642. font-family:'ArialMT', 'Arial', sans-serif;
  5643. font-weight:400;
  5644. font-style:normal;
  5645. font-size:11px;
  5646. letter-spacing:normal;
  5647. color:#AAAAAA;
  5648. vertical-align:none;
  5649. text-align:left;
  5650. text-transform:none;
  5651. background-color:transparent;
  5652. border-color:transparent;
  5653. }
  5654. #u59915_input.disabled {
  5655. position:absolute;
  5656. left:0px;
  5657. top:0px;
  5658. width:126px;
  5659. height:23px;
  5660. padding:2px 2px 2px 2px;
  5661. font-family:'ArialMT', 'Arial', sans-serif;
  5662. font-weight:400;
  5663. font-style:normal;
  5664. font-size:11px;
  5665. letter-spacing:normal;
  5666. color:#AAAAAA;
  5667. vertical-align:none;
  5668. text-align:left;
  5669. text-transform:none;
  5670. background-color:transparent;
  5671. border-color:transparent;
  5672. }
  5673. #u59915_div {
  5674. border-width:0px;
  5675. position:absolute;
  5676. left:0px;
  5677. top:0px;
  5678. width:126px;
  5679. height:23px;
  5680. background:inherit;
  5681. background-color:rgba(255, 255, 255, 1);
  5682. border:none;
  5683. border-radius:0px;
  5684. -moz-box-shadow:none;
  5685. -webkit-box-shadow:none;
  5686. box-shadow:none;
  5687. font-size:11px;
  5688. color:#AAAAAA;
  5689. }
  5690. #u59915 {
  5691. border-width:0px;
  5692. position:absolute;
  5693. left:509px;
  5694. top:218px;
  5695. width:126px;
  5696. height:23px;
  5697. display:flex;
  5698. font-size:11px;
  5699. color:#AAAAAA;
  5700. }
  5701. #u59915 .text {
  5702. position:absolute;
  5703. align-self:flex-start;
  5704. padding:2px 2px 2px 2px;
  5705. box-sizing:border-box;
  5706. width:100%;
  5707. }
  5708. #u59915_div.disabled {
  5709. border-width:0px;
  5710. position:absolute;
  5711. left:0px;
  5712. top:0px;
  5713. width:126px;
  5714. height:23px;
  5715. background:inherit;
  5716. background-color:rgba(240, 240, 240, 1);
  5717. border:none;
  5718. border-radius:0px;
  5719. -moz-box-shadow:none;
  5720. -webkit-box-shadow:none;
  5721. box-shadow:none;
  5722. font-size:11px;
  5723. color:#AAAAAA;
  5724. }
  5725. #u59915.disabled {
  5726. }
  5727. .u59915_input_option {
  5728. font-size:11px;
  5729. }
  5730. #u59916_div {
  5731. border-width:0px;
  5732. position:absolute;
  5733. left:0px;
  5734. top:0px;
  5735. width:43px;
  5736. height:50px;
  5737. background:inherit;
  5738. background-color:rgba(255, 255, 255, 0);
  5739. box-sizing:border-box;
  5740. border-width:2px;
  5741. border-style:solid;
  5742. border-color:rgba(24, 144, 255, 1);
  5743. border-left:0px;
  5744. border-top:0px;
  5745. border-right:0px;
  5746. border-radius:0px;
  5747. border-bottom-right-radius:0px;
  5748. border-bottom-left-radius:0px;
  5749. -moz-box-shadow:none;
  5750. -webkit-box-shadow:none;
  5751. box-shadow:none;
  5752. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5753. font-weight:400;
  5754. font-style:normal;
  5755. font-size:14px;
  5756. color:#1890FF;
  5757. }
  5758. #u59916 {
  5759. border-width:0px;
  5760. position:absolute;
  5761. left:352px;
  5762. top:102px;
  5763. width:43px;
  5764. height:50px;
  5765. display:flex;
  5766. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5767. font-weight:400;
  5768. font-style:normal;
  5769. font-size:14px;
  5770. color:#1890FF;
  5771. }
  5772. #u59916 .text {
  5773. position:absolute;
  5774. align-self:center;
  5775. padding:0px 0px 0px 0px;
  5776. box-sizing:border-box;
  5777. width:100%;
  5778. }
  5779. #u59916_text {
  5780. border-width:0px;
  5781. white-space:nowrap;
  5782. text-transform:none;
  5783. }
  5784. #u59917_div {
  5785. border-width:0px;
  5786. position:absolute;
  5787. left:0px;
  5788. top:0px;
  5789. width:43px;
  5790. height:50px;
  5791. background:inherit;
  5792. background-color:rgba(255, 255, 255, 0);
  5793. border:none;
  5794. border-left:0px;
  5795. border-top:0px;
  5796. border-right:0px;
  5797. border-radius:0px;
  5798. border-bottom-right-radius:0px;
  5799. border-bottom-left-radius:0px;
  5800. -moz-box-shadow:none;
  5801. -webkit-box-shadow:none;
  5802. box-shadow:none;
  5803. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5804. font-weight:400;
  5805. font-style:normal;
  5806. font-size:14px;
  5807. }
  5808. #u59917 {
  5809. border-width:0px;
  5810. position:absolute;
  5811. left:425px;
  5812. top:102px;
  5813. width:43px;
  5814. height:50px;
  5815. display:flex;
  5816. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5817. font-weight:400;
  5818. font-style:normal;
  5819. font-size:14px;
  5820. }
  5821. #u59917 .text {
  5822. position:absolute;
  5823. align-self:center;
  5824. padding:0px 0px 0px 0px;
  5825. box-sizing:border-box;
  5826. width:100%;
  5827. }
  5828. #u59917_text {
  5829. border-width:0px;
  5830. white-space:nowrap;
  5831. text-transform:none;
  5832. }
  5833. #u59918_div {
  5834. border-width:0px;
  5835. position:absolute;
  5836. left:0px;
  5837. top:0px;
  5838. width:43px;
  5839. height:50px;
  5840. background:inherit;
  5841. background-color:rgba(255, 255, 255, 0);
  5842. border:none;
  5843. border-left:0px;
  5844. border-top:0px;
  5845. border-right:0px;
  5846. border-radius:0px;
  5847. border-bottom-right-radius:0px;
  5848. border-bottom-left-radius:0px;
  5849. -moz-box-shadow:none;
  5850. -webkit-box-shadow:none;
  5851. box-shadow:none;
  5852. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5853. font-weight:400;
  5854. font-style:normal;
  5855. font-size:14px;
  5856. }
  5857. #u59918 {
  5858. border-width:0px;
  5859. position:absolute;
  5860. left:498px;
  5861. top:102px;
  5862. width:43px;
  5863. height:50px;
  5864. display:flex;
  5865. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5866. font-weight:400;
  5867. font-style:normal;
  5868. font-size:14px;
  5869. }
  5870. #u59918 .text {
  5871. position:absolute;
  5872. align-self:center;
  5873. padding:0px 0px 0px 0px;
  5874. box-sizing:border-box;
  5875. width:100%;
  5876. }
  5877. #u59918_text {
  5878. border-width:0px;
  5879. white-space:nowrap;
  5880. text-transform:none;
  5881. }
  5882. #u59919_div {
  5883. border-width:0px;
  5884. position:absolute;
  5885. left:0px;
  5886. top:0px;
  5887. width:73px;
  5888. height:30px;
  5889. background:inherit;
  5890. background-color:rgba(24, 144, 255, 1);
  5891. border:none;
  5892. border-radius:4px;
  5893. -moz-box-shadow:none;
  5894. -webkit-box-shadow:none;
  5895. box-shadow:none;
  5896. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5897. font-weight:400;
  5898. font-style:normal;
  5899. font-size:14px;
  5900. color:#FFFFFF;
  5901. }
  5902. #u59919 {
  5903. border-width:0px;
  5904. position:absolute;
  5905. left:352px;
  5906. top:262px;
  5907. width:73px;
  5908. height:30px;
  5909. display:flex;
  5910. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5911. font-weight:400;
  5912. font-style:normal;
  5913. font-size:14px;
  5914. color:#FFFFFF;
  5915. }
  5916. #u59919 .text {
  5917. position:absolute;
  5918. align-self:center;
  5919. padding:5px 15px 5px 15px;
  5920. box-sizing:border-box;
  5921. width:100%;
  5922. }
  5923. #u59919_text {
  5924. border-width:0px;
  5925. white-space:nowrap;
  5926. text-transform:none;
  5927. }
  5928. #u59920_div {
  5929. border-width:0px;
  5930. position:absolute;
  5931. left:0px;
  5932. top:0px;
  5933. width:59px;
  5934. height:30px;
  5935. background:inherit;
  5936. background-color:rgba(255, 255, 255, 1);
  5937. box-sizing:border-box;
  5938. border-width:1px;
  5939. border-style:solid;
  5940. border-color:rgba(170, 170, 170, 1);
  5941. border-radius:4px;
  5942. -moz-box-shadow:none;
  5943. -webkit-box-shadow:none;
  5944. box-shadow:none;
  5945. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5946. font-weight:400;
  5947. font-style:normal;
  5948. font-size:14px;
  5949. color:#555555;
  5950. }
  5951. #u59920 {
  5952. border-width:0px;
  5953. position:absolute;
  5954. left:532px;
  5955. top:262px;
  5956. width:59px;
  5957. height:30px;
  5958. display:flex;
  5959. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5960. font-weight:400;
  5961. font-style:normal;
  5962. font-size:14px;
  5963. color:#555555;
  5964. }
  5965. #u59920 .text {
  5966. position:absolute;
  5967. align-self:center;
  5968. padding:5px 15px 5px 15px;
  5969. box-sizing:border-box;
  5970. width:100%;
  5971. }
  5972. #u59920_text {
  5973. border-width:0px;
  5974. white-space:nowrap;
  5975. text-transform:none;
  5976. }
  5977. #u59921_div {
  5978. border-width:0px;
  5979. position:absolute;
  5980. left:0px;
  5981. top:0px;
  5982. width:87px;
  5983. height:30px;
  5984. background:inherit;
  5985. background-color:rgba(255, 255, 255, 1);
  5986. box-sizing:border-box;
  5987. border-width:1px;
  5988. border-style:solid;
  5989. border-color:rgba(170, 170, 170, 1);
  5990. border-radius:4px;
  5991. -moz-box-shadow:none;
  5992. -webkit-box-shadow:none;
  5993. box-shadow:none;
  5994. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5995. font-weight:400;
  5996. font-style:normal;
  5997. font-size:14px;
  5998. color:#555555;
  5999. }
  6000. #u59921 {
  6001. border-width:0px;
  6002. position:absolute;
  6003. left:435px;
  6004. top:262px;
  6005. width:87px;
  6006. height:30px;
  6007. display:flex;
  6008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6009. font-weight:400;
  6010. font-style:normal;
  6011. font-size:14px;
  6012. color:#555555;
  6013. }
  6014. #u59921 .text {
  6015. position:absolute;
  6016. align-self:center;
  6017. padding:5px 15px 5px 15px;
  6018. box-sizing:border-box;
  6019. width:100%;
  6020. }
  6021. #u59921_text {
  6022. border-width:0px;
  6023. white-space:nowrap;
  6024. text-transform:none;
  6025. }
  6026. #u59922 {
  6027. border-width:0px;
  6028. position:absolute;
  6029. left:0px;
  6030. top:0px;
  6031. width:0px;
  6032. height:0px;
  6033. }
  6034. #u59923_div {
  6035. border-width:0px;
  6036. position:absolute;
  6037. left:0px;
  6038. top:0px;
  6039. width:140px;
  6040. height:30px;
  6041. background:inherit;
  6042. background-color:rgba(255, 255, 255, 1);
  6043. box-sizing:border-box;
  6044. border-width:1px;
  6045. border-style:solid;
  6046. border-color:rgba(201, 201, 201, 1);
  6047. border-radius:4px;
  6048. -moz-box-shadow:none;
  6049. -webkit-box-shadow:none;
  6050. box-shadow:none;
  6051. font-family:'Microsoft YaHei', sans-serif;
  6052. font-weight:400;
  6053. font-style:normal;
  6054. font-size:14px;
  6055. color:#CCCCCC;
  6056. text-align:left;
  6057. }
  6058. #u59923 {
  6059. border-width:0px;
  6060. position:absolute;
  6061. left:952px;
  6062. top:174px;
  6063. width:140px;
  6064. height:30px;
  6065. display:flex;
  6066. font-family:'Microsoft YaHei', sans-serif;
  6067. font-weight:400;
  6068. font-style:normal;
  6069. font-size:14px;
  6070. color:#CCCCCC;
  6071. text-align:left;
  6072. }
  6073. #u59923 .text {
  6074. position:absolute;
  6075. align-self:center;
  6076. padding:2px 8px 2px 8px;
  6077. box-sizing:border-box;
  6078. width:100%;
  6079. }
  6080. #u59923_text {
  6081. border-width:0px;
  6082. word-wrap:break-word;
  6083. text-transform:none;
  6084. visibility:hidden;
  6085. }
  6086. #u59924_input {
  6087. position:absolute;
  6088. left:0px;
  6089. top:0px;
  6090. width:127px;
  6091. height:25px;
  6092. padding:2px 2px 2px 2px;
  6093. font-family:'Microsoft YaHei', sans-serif;
  6094. font-weight:400;
  6095. font-style:normal;
  6096. font-size:10px;
  6097. letter-spacing:normal;
  6098. color:#000000;
  6099. vertical-align:none;
  6100. text-align:left;
  6101. text-transform:none;
  6102. background-color:transparent;
  6103. border-color:transparent;
  6104. }
  6105. #u59924_input.disabled {
  6106. position:absolute;
  6107. left:0px;
  6108. top:0px;
  6109. width:127px;
  6110. height:25px;
  6111. padding:2px 2px 2px 2px;
  6112. font-family:'Microsoft YaHei', sans-serif;
  6113. font-weight:400;
  6114. font-style:normal;
  6115. font-size:10px;
  6116. letter-spacing:normal;
  6117. color:#000000;
  6118. vertical-align:none;
  6119. text-align:left;
  6120. text-transform:none;
  6121. background-color:transparent;
  6122. border-color:transparent;
  6123. }
  6124. #u59924_div {
  6125. border-width:0px;
  6126. position:absolute;
  6127. left:0px;
  6128. top:0px;
  6129. width:127px;
  6130. height:25px;
  6131. background:inherit;
  6132. background-color:rgba(255, 255, 255, 1);
  6133. border:none;
  6134. border-radius:0px;
  6135. -moz-box-shadow:none;
  6136. -webkit-box-shadow:none;
  6137. box-shadow:none;
  6138. font-family:'Microsoft YaHei', sans-serif;
  6139. font-weight:400;
  6140. font-style:normal;
  6141. font-size:10px;
  6142. }
  6143. #u59924 {
  6144. border-width:0px;
  6145. position:absolute;
  6146. left:960px;
  6147. top:175px;
  6148. width:127px;
  6149. height:25px;
  6150. display:flex;
  6151. font-family:'Microsoft YaHei', sans-serif;
  6152. font-weight:400;
  6153. font-style:normal;
  6154. font-size:10px;
  6155. }
  6156. #u59924 .text {
  6157. position:absolute;
  6158. align-self:center;
  6159. padding:2px 2px 2px 2px;
  6160. box-sizing:border-box;
  6161. width:100%;
  6162. }
  6163. #u59924_div.disabled {
  6164. border-width:0px;
  6165. position:absolute;
  6166. left:0px;
  6167. top:0px;
  6168. width:127px;
  6169. height:25px;
  6170. background:inherit;
  6171. background-color:rgba(240, 240, 240, 1);
  6172. border:none;
  6173. border-radius:0px;
  6174. -moz-box-shadow:none;
  6175. -webkit-box-shadow:none;
  6176. box-shadow:none;
  6177. font-family:'Microsoft YaHei', sans-serif;
  6178. font-weight:400;
  6179. font-style:normal;
  6180. font-size:10px;
  6181. }
  6182. #u59924.disabled {
  6183. }
  6184. #u59925 {
  6185. border-width:0px;
  6186. position:absolute;
  6187. left:0px;
  6188. top:0px;
  6189. width:0px;
  6190. height:0px;
  6191. }
  6192. #u59926_div {
  6193. border-width:0px;
  6194. position:absolute;
  6195. left:0px;
  6196. top:0px;
  6197. width:140px;
  6198. height:30px;
  6199. background:inherit;
  6200. background-color:rgba(255, 255, 255, 1);
  6201. box-sizing:border-box;
  6202. border-width:1px;
  6203. border-style:solid;
  6204. border-color:rgba(201, 201, 201, 1);
  6205. border-radius:4px;
  6206. -moz-box-shadow:none;
  6207. -webkit-box-shadow:none;
  6208. box-shadow:none;
  6209. font-family:'Microsoft YaHei', sans-serif;
  6210. font-weight:400;
  6211. font-style:normal;
  6212. font-size:14px;
  6213. color:#CCCCCC;
  6214. text-align:left;
  6215. }
  6216. #u59926 {
  6217. border-width:0px;
  6218. position:absolute;
  6219. left:1102px;
  6220. top:174px;
  6221. width:140px;
  6222. height:30px;
  6223. display:flex;
  6224. font-family:'Microsoft YaHei', sans-serif;
  6225. font-weight:400;
  6226. font-style:normal;
  6227. font-size:14px;
  6228. color:#CCCCCC;
  6229. text-align:left;
  6230. }
  6231. #u59926 .text {
  6232. position:absolute;
  6233. align-self:center;
  6234. padding:2px 8px 2px 8px;
  6235. box-sizing:border-box;
  6236. width:100%;
  6237. }
  6238. #u59926_text {
  6239. border-width:0px;
  6240. word-wrap:break-word;
  6241. text-transform:none;
  6242. visibility:hidden;
  6243. }
  6244. #u59927_input {
  6245. position:absolute;
  6246. left:0px;
  6247. top:0px;
  6248. width:127px;
  6249. height:25px;
  6250. padding:2px 2px 2px 2px;
  6251. font-family:'Microsoft YaHei', sans-serif;
  6252. font-weight:400;
  6253. font-style:normal;
  6254. font-size:10px;
  6255. letter-spacing:normal;
  6256. color:#000000;
  6257. vertical-align:none;
  6258. text-align:left;
  6259. text-transform:none;
  6260. background-color:transparent;
  6261. border-color:transparent;
  6262. }
  6263. #u59927_input.disabled {
  6264. position:absolute;
  6265. left:0px;
  6266. top:0px;
  6267. width:127px;
  6268. height:25px;
  6269. padding:2px 2px 2px 2px;
  6270. font-family:'Microsoft YaHei', sans-serif;
  6271. font-weight:400;
  6272. font-style:normal;
  6273. font-size:10px;
  6274. letter-spacing:normal;
  6275. color:#000000;
  6276. vertical-align:none;
  6277. text-align:left;
  6278. text-transform:none;
  6279. background-color:transparent;
  6280. border-color:transparent;
  6281. }
  6282. #u59927_div {
  6283. border-width:0px;
  6284. position:absolute;
  6285. left:0px;
  6286. top:0px;
  6287. width:127px;
  6288. height:25px;
  6289. background:inherit;
  6290. background-color:rgba(255, 255, 255, 1);
  6291. border:none;
  6292. border-radius:0px;
  6293. -moz-box-shadow:none;
  6294. -webkit-box-shadow:none;
  6295. box-shadow:none;
  6296. font-family:'Microsoft YaHei', sans-serif;
  6297. font-weight:400;
  6298. font-style:normal;
  6299. font-size:10px;
  6300. }
  6301. #u59927 {
  6302. border-width:0px;
  6303. position:absolute;
  6304. left:1110px;
  6305. top:175px;
  6306. width:127px;
  6307. height:25px;
  6308. display:flex;
  6309. font-family:'Microsoft YaHei', sans-serif;
  6310. font-weight:400;
  6311. font-style:normal;
  6312. font-size:10px;
  6313. }
  6314. #u59927 .text {
  6315. position:absolute;
  6316. align-self:center;
  6317. padding:2px 2px 2px 2px;
  6318. box-sizing:border-box;
  6319. width:100%;
  6320. }
  6321. #u59927_div.disabled {
  6322. border-width:0px;
  6323. position:absolute;
  6324. left:0px;
  6325. top:0px;
  6326. width:127px;
  6327. height:25px;
  6328. background:inherit;
  6329. background-color:rgba(240, 240, 240, 1);
  6330. border:none;
  6331. border-radius:0px;
  6332. -moz-box-shadow:none;
  6333. -webkit-box-shadow:none;
  6334. box-shadow:none;
  6335. font-family:'Microsoft YaHei', sans-serif;
  6336. font-weight:400;
  6337. font-style:normal;
  6338. font-size:10px;
  6339. }
  6340. #u59927.disabled {
  6341. }
  6342. #u59928 {
  6343. border-width:0px;
  6344. position:absolute;
  6345. left:0px;
  6346. top:0px;
  6347. width:0px;
  6348. height:0px;
  6349. }
  6350. #u59929_div {
  6351. border-width:0px;
  6352. position:absolute;
  6353. left:0px;
  6354. top:0px;
  6355. width:140px;
  6356. height:30px;
  6357. background:inherit;
  6358. background-color:rgba(255, 255, 255, 1);
  6359. box-sizing:border-box;
  6360. border-width:1px;
  6361. border-style:solid;
  6362. border-color:rgba(215, 215, 215, 1);
  6363. border-radius:4px;
  6364. -moz-box-shadow:none;
  6365. -webkit-box-shadow:none;
  6366. box-shadow:none;
  6367. font-size:11px;
  6368. }
  6369. #u59929 {
  6370. border-width:0px;
  6371. position:absolute;
  6372. left:1252px;
  6373. top:174px;
  6374. width:140px;
  6375. height:30px;
  6376. display:flex;
  6377. font-size:11px;
  6378. }
  6379. #u59929 .text {
  6380. position:absolute;
  6381. align-self:center;
  6382. padding:2px 2px 2px 2px;
  6383. box-sizing:border-box;
  6384. width:100%;
  6385. }
  6386. #u59929_text {
  6387. border-width:0px;
  6388. word-wrap:break-word;
  6389. text-transform:none;
  6390. visibility:hidden;
  6391. }
  6392. #u59930_input {
  6393. position:absolute;
  6394. left:0px;
  6395. top:0px;
  6396. width:126px;
  6397. height:23px;
  6398. padding:2px 2px 2px 2px;
  6399. font-family:'ArialMT', 'Arial', sans-serif;
  6400. font-weight:400;
  6401. font-style:normal;
  6402. font-size:11px;
  6403. letter-spacing:normal;
  6404. color:#AAAAAA;
  6405. vertical-align:none;
  6406. text-align:left;
  6407. text-transform:none;
  6408. background-color:transparent;
  6409. border-color:transparent;
  6410. }
  6411. #u59930_input.disabled {
  6412. position:absolute;
  6413. left:0px;
  6414. top:0px;
  6415. width:126px;
  6416. height:23px;
  6417. padding:2px 2px 2px 2px;
  6418. font-family:'ArialMT', 'Arial', sans-serif;
  6419. font-weight:400;
  6420. font-style:normal;
  6421. font-size:11px;
  6422. letter-spacing:normal;
  6423. color:#AAAAAA;
  6424. vertical-align:none;
  6425. text-align:left;
  6426. text-transform:none;
  6427. background-color:transparent;
  6428. border-color:transparent;
  6429. }
  6430. #u59930_div {
  6431. border-width:0px;
  6432. position:absolute;
  6433. left:0px;
  6434. top:0px;
  6435. width:126px;
  6436. height:23px;
  6437. background:inherit;
  6438. background-color:rgba(255, 255, 255, 1);
  6439. border:none;
  6440. border-radius:0px;
  6441. -moz-box-shadow:none;
  6442. -webkit-box-shadow:none;
  6443. box-shadow:none;
  6444. font-size:11px;
  6445. color:#AAAAAA;
  6446. }
  6447. #u59930 {
  6448. border-width:0px;
  6449. position:absolute;
  6450. left:1259px;
  6451. top:176px;
  6452. width:126px;
  6453. height:23px;
  6454. display:flex;
  6455. font-size:11px;
  6456. color:#AAAAAA;
  6457. }
  6458. #u59930 .text {
  6459. position:absolute;
  6460. align-self:flex-start;
  6461. padding:2px 2px 2px 2px;
  6462. box-sizing:border-box;
  6463. width:100%;
  6464. }
  6465. #u59930_div.disabled {
  6466. border-width:0px;
  6467. position:absolute;
  6468. left:0px;
  6469. top:0px;
  6470. width:126px;
  6471. height:23px;
  6472. background:inherit;
  6473. background-color:rgba(240, 240, 240, 1);
  6474. border:none;
  6475. border-radius:0px;
  6476. -moz-box-shadow:none;
  6477. -webkit-box-shadow:none;
  6478. box-shadow:none;
  6479. font-size:11px;
  6480. color:#AAAAAA;
  6481. }
  6482. #u59930.disabled {
  6483. }
  6484. .u59930_input_option {
  6485. font-size:11px;
  6486. }
  6487. #u59931 {
  6488. border-width:0px;
  6489. position:absolute;
  6490. left:0px;
  6491. top:0px;
  6492. width:0px;
  6493. height:0px;
  6494. }
  6495. #u59932_div {
  6496. border-width:0px;
  6497. position:absolute;
  6498. left:0px;
  6499. top:0px;
  6500. width:140px;
  6501. height:30px;
  6502. background:inherit;
  6503. background-color:rgba(255, 255, 255, 1);
  6504. box-sizing:border-box;
  6505. border-width:1px;
  6506. border-style:solid;
  6507. border-color:rgba(215, 215, 215, 1);
  6508. border-radius:4px;
  6509. -moz-box-shadow:none;
  6510. -webkit-box-shadow:none;
  6511. box-shadow:none;
  6512. font-size:11px;
  6513. }
  6514. #u59932 {
  6515. border-width:0px;
  6516. position:absolute;
  6517. left:352px;
  6518. top:215px;
  6519. width:140px;
  6520. height:30px;
  6521. display:flex;
  6522. font-size:11px;
  6523. }
  6524. #u59932 .text {
  6525. position:absolute;
  6526. align-self:center;
  6527. padding:2px 2px 2px 2px;
  6528. box-sizing:border-box;
  6529. width:100%;
  6530. }
  6531. #u59932_text {
  6532. border-width:0px;
  6533. word-wrap:break-word;
  6534. text-transform:none;
  6535. visibility:hidden;
  6536. }
  6537. #u59933_input {
  6538. position:absolute;
  6539. left:0px;
  6540. top:0px;
  6541. width:126px;
  6542. height:23px;
  6543. padding:2px 2px 2px 2px;
  6544. font-family:'ArialMT', 'Arial', sans-serif;
  6545. font-weight:400;
  6546. font-style:normal;
  6547. font-size:11px;
  6548. letter-spacing:normal;
  6549. color:#AAAAAA;
  6550. vertical-align:none;
  6551. text-align:left;
  6552. text-transform:none;
  6553. background-color:transparent;
  6554. border-color:transparent;
  6555. }
  6556. #u59933_input.disabled {
  6557. position:absolute;
  6558. left:0px;
  6559. top:0px;
  6560. width:126px;
  6561. height:23px;
  6562. padding:2px 2px 2px 2px;
  6563. font-family:'ArialMT', 'Arial', sans-serif;
  6564. font-weight:400;
  6565. font-style:normal;
  6566. font-size:11px;
  6567. letter-spacing:normal;
  6568. color:#AAAAAA;
  6569. vertical-align:none;
  6570. text-align:left;
  6571. text-transform:none;
  6572. background-color:transparent;
  6573. border-color:transparent;
  6574. }
  6575. #u59933_div {
  6576. border-width:0px;
  6577. position:absolute;
  6578. left:0px;
  6579. top:0px;
  6580. width:126px;
  6581. height:23px;
  6582. background:inherit;
  6583. background-color:rgba(255, 255, 255, 1);
  6584. border:none;
  6585. border-radius:0px;
  6586. -moz-box-shadow:none;
  6587. -webkit-box-shadow:none;
  6588. box-shadow:none;
  6589. font-size:11px;
  6590. color:#AAAAAA;
  6591. }
  6592. #u59933 {
  6593. border-width:0px;
  6594. position:absolute;
  6595. left:359px;
  6596. top:217px;
  6597. width:126px;
  6598. height:23px;
  6599. display:flex;
  6600. font-size:11px;
  6601. color:#AAAAAA;
  6602. }
  6603. #u59933 .text {
  6604. position:absolute;
  6605. align-self:flex-start;
  6606. padding:2px 2px 2px 2px;
  6607. box-sizing:border-box;
  6608. width:100%;
  6609. }
  6610. #u59933_div.disabled {
  6611. border-width:0px;
  6612. position:absolute;
  6613. left:0px;
  6614. top:0px;
  6615. width:126px;
  6616. height:23px;
  6617. background:inherit;
  6618. background-color:rgba(240, 240, 240, 1);
  6619. border:none;
  6620. border-radius:0px;
  6621. -moz-box-shadow:none;
  6622. -webkit-box-shadow:none;
  6623. box-shadow:none;
  6624. font-size:11px;
  6625. color:#AAAAAA;
  6626. }
  6627. #u59933.disabled {
  6628. }
  6629. .u59933_input_option {
  6630. font-size:11px;
  6631. }
  6632. #u59934 {
  6633. border-width:0px;
  6634. position:absolute;
  6635. left:0px;
  6636. top:0px;
  6637. width:0px;
  6638. height:0px;
  6639. }
  6640. #u59935_div {
  6641. border-width:0px;
  6642. position:absolute;
  6643. left:0px;
  6644. top:0px;
  6645. width:140px;
  6646. height:30px;
  6647. background:inherit;
  6648. background-color:rgba(255, 255, 255, 1);
  6649. box-sizing:border-box;
  6650. border-width:1px;
  6651. border-style:solid;
  6652. border-color:rgba(215, 215, 215, 1);
  6653. border-radius:4px;
  6654. -moz-box-shadow:none;
  6655. -webkit-box-shadow:none;
  6656. box-shadow:none;
  6657. font-size:11px;
  6658. }
  6659. #u59935 {
  6660. border-width:0px;
  6661. position:absolute;
  6662. left:352px;
  6663. top:174px;
  6664. width:140px;
  6665. height:30px;
  6666. display:flex;
  6667. font-size:11px;
  6668. }
  6669. #u59935 .text {
  6670. position:absolute;
  6671. align-self:center;
  6672. padding:2px 2px 2px 2px;
  6673. box-sizing:border-box;
  6674. width:100%;
  6675. }
  6676. #u59935_text {
  6677. border-width:0px;
  6678. word-wrap:break-word;
  6679. text-transform:none;
  6680. visibility:hidden;
  6681. }
  6682. #u59936_input {
  6683. position:absolute;
  6684. left:0px;
  6685. top:0px;
  6686. width:126px;
  6687. height:23px;
  6688. padding:2px 2px 2px 2px;
  6689. font-family:'ArialMT', 'Arial', sans-serif;
  6690. font-weight:400;
  6691. font-style:normal;
  6692. font-size:11px;
  6693. letter-spacing:normal;
  6694. color:#AAAAAA;
  6695. vertical-align:none;
  6696. text-align:left;
  6697. text-transform:none;
  6698. background-color:transparent;
  6699. border-color:transparent;
  6700. }
  6701. #u59936_input.disabled {
  6702. position:absolute;
  6703. left:0px;
  6704. top:0px;
  6705. width:126px;
  6706. height:23px;
  6707. padding:2px 2px 2px 2px;
  6708. font-family:'ArialMT', 'Arial', sans-serif;
  6709. font-weight:400;
  6710. font-style:normal;
  6711. font-size:11px;
  6712. letter-spacing:normal;
  6713. color:#AAAAAA;
  6714. vertical-align:none;
  6715. text-align:left;
  6716. text-transform:none;
  6717. background-color:transparent;
  6718. border-color:transparent;
  6719. }
  6720. #u59936_div {
  6721. border-width:0px;
  6722. position:absolute;
  6723. left:0px;
  6724. top:0px;
  6725. width:126px;
  6726. height:23px;
  6727. background:inherit;
  6728. background-color:rgba(255, 255, 255, 1);
  6729. border:none;
  6730. border-radius:0px;
  6731. -moz-box-shadow:none;
  6732. -webkit-box-shadow:none;
  6733. box-shadow:none;
  6734. font-size:11px;
  6735. color:#AAAAAA;
  6736. }
  6737. #u59936 {
  6738. border-width:0px;
  6739. position:absolute;
  6740. left:359px;
  6741. top:176px;
  6742. width:126px;
  6743. height:23px;
  6744. display:flex;
  6745. font-size:11px;
  6746. color:#AAAAAA;
  6747. }
  6748. #u59936 .text {
  6749. position:absolute;
  6750. align-self:flex-start;
  6751. padding:2px 2px 2px 2px;
  6752. box-sizing:border-box;
  6753. width:100%;
  6754. }
  6755. #u59936_div.disabled {
  6756. border-width:0px;
  6757. position:absolute;
  6758. left:0px;
  6759. top:0px;
  6760. width:126px;
  6761. height:23px;
  6762. background:inherit;
  6763. background-color:rgba(240, 240, 240, 1);
  6764. border:none;
  6765. border-radius:0px;
  6766. -moz-box-shadow:none;
  6767. -webkit-box-shadow:none;
  6768. box-shadow:none;
  6769. font-size:11px;
  6770. color:#AAAAAA;
  6771. }
  6772. #u59936.disabled {
  6773. }
  6774. .u59936_input_option {
  6775. font-size:11px;
  6776. }
  6777. #u59937 {
  6778. border-width:0px;
  6779. position:absolute;
  6780. left:0px;
  6781. top:0px;
  6782. width:0px;
  6783. height:0px;
  6784. }
  6785. #u59938_div {
  6786. border-width:0px;
  6787. position:absolute;
  6788. left:0px;
  6789. top:0px;
  6790. width:140px;
  6791. height:30px;
  6792. background:inherit;
  6793. background-color:rgba(255, 255, 255, 1);
  6794. box-sizing:border-box;
  6795. border-width:1px;
  6796. border-style:solid;
  6797. border-color:rgba(215, 215, 215, 1);
  6798. border-radius:4px;
  6799. -moz-box-shadow:none;
  6800. -webkit-box-shadow:none;
  6801. box-shadow:none;
  6802. font-size:11px;
  6803. }
  6804. #u59938 {
  6805. border-width:0px;
  6806. position:absolute;
  6807. left:650px;
  6808. top:174px;
  6809. width:140px;
  6810. height:30px;
  6811. display:flex;
  6812. font-size:11px;
  6813. }
  6814. #u59938 .text {
  6815. position:absolute;
  6816. align-self:center;
  6817. padding:2px 2px 2px 2px;
  6818. box-sizing:border-box;
  6819. width:100%;
  6820. }
  6821. #u59938_text {
  6822. border-width:0px;
  6823. word-wrap:break-word;
  6824. text-transform:none;
  6825. visibility:hidden;
  6826. }
  6827. #u59939_input {
  6828. position:absolute;
  6829. left:0px;
  6830. top:0px;
  6831. width:126px;
  6832. height:23px;
  6833. padding:2px 2px 2px 2px;
  6834. font-family:'ArialMT', 'Arial', sans-serif;
  6835. font-weight:400;
  6836. font-style:normal;
  6837. font-size:11px;
  6838. letter-spacing:normal;
  6839. color:#AAAAAA;
  6840. vertical-align:none;
  6841. text-align:left;
  6842. text-transform:none;
  6843. background-color:transparent;
  6844. border-color:transparent;
  6845. }
  6846. #u59939_input.disabled {
  6847. position:absolute;
  6848. left:0px;
  6849. top:0px;
  6850. width:126px;
  6851. height:23px;
  6852. padding:2px 2px 2px 2px;
  6853. font-family:'ArialMT', 'Arial', sans-serif;
  6854. font-weight:400;
  6855. font-style:normal;
  6856. font-size:11px;
  6857. letter-spacing:normal;
  6858. color:#AAAAAA;
  6859. vertical-align:none;
  6860. text-align:left;
  6861. text-transform:none;
  6862. background-color:transparent;
  6863. border-color:transparent;
  6864. }
  6865. #u59939_div {
  6866. border-width:0px;
  6867. position:absolute;
  6868. left:0px;
  6869. top:0px;
  6870. width:126px;
  6871. height:23px;
  6872. background:inherit;
  6873. background-color:rgba(255, 255, 255, 1);
  6874. border:none;
  6875. border-radius:0px;
  6876. -moz-box-shadow:none;
  6877. -webkit-box-shadow:none;
  6878. box-shadow:none;
  6879. font-size:11px;
  6880. color:#AAAAAA;
  6881. }
  6882. #u59939 {
  6883. border-width:0px;
  6884. position:absolute;
  6885. left:657px;
  6886. top:176px;
  6887. width:126px;
  6888. height:23px;
  6889. display:flex;
  6890. font-size:11px;
  6891. color:#AAAAAA;
  6892. }
  6893. #u59939 .text {
  6894. position:absolute;
  6895. align-self:flex-start;
  6896. padding:2px 2px 2px 2px;
  6897. box-sizing:border-box;
  6898. width:100%;
  6899. }
  6900. #u59939_div.disabled {
  6901. border-width:0px;
  6902. position:absolute;
  6903. left:0px;
  6904. top:0px;
  6905. width:126px;
  6906. height:23px;
  6907. background:inherit;
  6908. background-color:rgba(240, 240, 240, 1);
  6909. border:none;
  6910. border-radius:0px;
  6911. -moz-box-shadow:none;
  6912. -webkit-box-shadow:none;
  6913. box-shadow:none;
  6914. font-size:11px;
  6915. color:#AAAAAA;
  6916. }
  6917. #u59939.disabled {
  6918. }
  6919. .u59939_input_option {
  6920. font-size:11px;
  6921. }
  6922. #u59940 {
  6923. border-width:0px;
  6924. position:absolute;
  6925. left:0px;
  6926. top:0px;
  6927. width:0px;
  6928. height:0px;
  6929. }
  6930. #u59941_div {
  6931. border-width:0px;
  6932. position:absolute;
  6933. left:0px;
  6934. top:0px;
  6935. width:464px;
  6936. height:34px;
  6937. background:inherit;
  6938. background-color:rgba(255, 242, 241, 1);
  6939. box-sizing:border-box;
  6940. border-width:1px;
  6941. border-style:solid;
  6942. border-color:rgba(255, 102, 0, 1);
  6943. border-radius:6px;
  6944. -moz-box-shadow:none;
  6945. -webkit-box-shadow:none;
  6946. box-shadow:none;
  6947. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6948. font-weight:400;
  6949. font-style:normal;
  6950. font-size:12px;
  6951. color:#666666;
  6952. text-align:left;
  6953. line-height:18px;
  6954. }
  6955. #u59941 {
  6956. border-width:0px;
  6957. position:absolute;
  6958. left:874px;
  6959. top:720px;
  6960. width:464px;
  6961. height:34px;
  6962. display:flex;
  6963. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6964. font-weight:400;
  6965. font-style:normal;
  6966. font-size:12px;
  6967. color:#666666;
  6968. text-align:left;
  6969. line-height:18px;
  6970. }
  6971. #u59941 .text {
  6972. position:absolute;
  6973. align-self:center;
  6974. padding:8px 16px 8px 40px;
  6975. box-sizing:border-box;
  6976. width:100%;
  6977. }
  6978. #u59941_text {
  6979. border-width:0px;
  6980. word-wrap:break-word;
  6981. text-transform:none;
  6982. }
  6983. #u59942_img {
  6984. border-width:0px;
  6985. position:absolute;
  6986. left:0px;
  6987. top:0px;
  6988. width:9px;
  6989. height:9px;
  6990. }
  6991. #u59942 {
  6992. border-width:0px;
  6993. position:absolute;
  6994. left:1315px;
  6995. top:733px;
  6996. width:9px;
  6997. height:9px;
  6998. display:flex;
  6999. font-family:'Microsoft YaHei', sans-serif;
  7000. font-weight:400;
  7001. font-style:normal;
  7002. }
  7003. #u59942 .text {
  7004. position:absolute;
  7005. align-self:center;
  7006. padding:2px 2px 2px 2px;
  7007. box-sizing:border-box;
  7008. width:100%;
  7009. }
  7010. #u59942_text {
  7011. border-width:0px;
  7012. word-wrap:break-word;
  7013. text-transform:none;
  7014. visibility:hidden;
  7015. }
  7016. #u59943_img {
  7017. border-width:0px;
  7018. position:absolute;
  7019. left:0px;
  7020. top:0px;
  7021. width:14px;
  7022. height:14px;
  7023. }
  7024. #u59943 {
  7025. border-width:0px;
  7026. position:absolute;
  7027. left:889px;
  7028. top:730px;
  7029. width:14px;
  7030. height:14px;
  7031. display:flex;
  7032. }
  7033. #u59943 .text {
  7034. position:absolute;
  7035. align-self:center;
  7036. padding:2px 2px 2px 2px;
  7037. box-sizing:border-box;
  7038. width:100%;
  7039. }
  7040. #u59943_text {
  7041. border-width:0px;
  7042. word-wrap:break-word;
  7043. text-transform:none;
  7044. visibility:hidden;
  7045. }
  7046. #u59944 {
  7047. border-width:0px;
  7048. position:absolute;
  7049. left:1504px;
  7050. top:380px;
  7051. width:0px;
  7052. height:0px;
  7053. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7054. font-weight:400;
  7055. font-style:normal;
  7056. color:#0089FE;
  7057. }
  7058. #u59944_seg0 {
  7059. border-width:0px;
  7060. position:absolute;
  7061. left:-5px;
  7062. top:0px;
  7063. width:10px;
  7064. height:362px;
  7065. }
  7066. #u59944_seg1 {
  7067. border-width:0px;
  7068. position:absolute;
  7069. left:-166px;
  7070. top:352px;
  7071. width:171px;
  7072. height:10px;
  7073. }
  7074. #u59944_seg2 {
  7075. border-width:0px;
  7076. position:absolute;
  7077. left:-9px;
  7078. top:-6px;
  7079. width:18px;
  7080. height:18px;
  7081. }
  7082. #u59944_seg3 {
  7083. border-width:0px;
  7084. position:absolute;
  7085. left:-181px;
  7086. top:341px;
  7087. width:32px;
  7088. height:32px;
  7089. }
  7090. #u59944_text {
  7091. border-width:0px;
  7092. position:absolute;
  7093. left:-50px;
  7094. top:254px;
  7095. width:100px;
  7096. word-wrap:break-word;
  7097. text-transform:none;
  7098. visibility:hidden;
  7099. }
  7100. #u59945_div {
  7101. border-width:0px;
  7102. position:absolute;
  7103. left:0px;
  7104. top:0px;
  7105. width:661px;
  7106. height:60px;
  7107. background:inherit;
  7108. background-color:rgba(255, 255, 255, 0);
  7109. border:none;
  7110. border-left:0px;
  7111. border-top:0px;
  7112. border-right:0px;
  7113. border-radius:0px;
  7114. border-bottom-right-radius:0px;
  7115. border-bottom-left-radius:0px;
  7116. -moz-box-shadow:none;
  7117. -webkit-box-shadow:none;
  7118. box-shadow:none;
  7119. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7120. font-weight:400;
  7121. font-style:normal;
  7122. font-size:14px;
  7123. color:#D9001B;
  7124. }
  7125. #u59945 {
  7126. border-width:0px;
  7127. position:absolute;
  7128. left:874px;
  7129. top:780px;
  7130. width:661px;
  7131. height:60px;
  7132. display:flex;
  7133. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7134. font-weight:400;
  7135. font-style:normal;
  7136. font-size:14px;
  7137. color:#D9001B;
  7138. }
  7139. #u59945 .text {
  7140. position:absolute;
  7141. align-self:center;
  7142. padding:0px 0px 0px 0px;
  7143. box-sizing:border-box;
  7144. width:100%;
  7145. }
  7146. #u59945_text {
  7147. border-width:0px;
  7148. white-space:nowrap;
  7149. text-transform:none;
  7150. }
  7151. #u59946 {
  7152. border-width:0px;
  7153. position:absolute;
  7154. left:0px;
  7155. top:0px;
  7156. width:0px;
  7157. height:0px;
  7158. }
  7159. #u59947_div {
  7160. border-width:0px;
  7161. position:absolute;
  7162. left:0px;
  7163. top:0px;
  7164. width:200px;
  7165. height:1180px;
  7166. background:inherit;
  7167. background-color:rgba(255, 255, 255, 1);
  7168. border:none;
  7169. border-radius:0px;
  7170. -moz-box-shadow:none;
  7171. -webkit-box-shadow:none;
  7172. box-shadow:none;
  7173. }
  7174. #u59947 {
  7175. border-width:0px;
  7176. position:absolute;
  7177. left:120px;
  7178. top:51px;
  7179. width:200px;
  7180. height:1180px;
  7181. display:flex;
  7182. }
  7183. #u59947 .text {
  7184. position:absolute;
  7185. align-self:center;
  7186. padding:2px 2px 2px 2px;
  7187. box-sizing:border-box;
  7188. width:100%;
  7189. }
  7190. #u59947_text {
  7191. border-width:0px;
  7192. word-wrap:break-word;
  7193. text-transform:none;
  7194. visibility:hidden;
  7195. }
  7196. #u59948_div {
  7197. border-width:0px;
  7198. position:absolute;
  7199. left:0px;
  7200. top:0px;
  7201. width:200px;
  7202. height:60px;
  7203. background:inherit;
  7204. background-color:rgba(224, 231, 247, 1);
  7205. border:none;
  7206. border-radius:0px;
  7207. -moz-box-shadow:none;
  7208. -webkit-box-shadow:none;
  7209. box-shadow:none;
  7210. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7211. font-weight:500;
  7212. font-style:normal;
  7213. font-size:18px;
  7214. }
  7215. #u59948 {
  7216. border-width:0px;
  7217. position:absolute;
  7218. left:120px;
  7219. top:51px;
  7220. width:200px;
  7221. height:60px;
  7222. display:flex;
  7223. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7224. font-weight:500;
  7225. font-style:normal;
  7226. font-size:18px;
  7227. }
  7228. #u59948 .text {
  7229. position:absolute;
  7230. align-self:center;
  7231. padding:0px 0px 0px 20px;
  7232. box-sizing:border-box;
  7233. width:100%;
  7234. }
  7235. #u59948_text {
  7236. border-width:0px;
  7237. word-wrap:break-word;
  7238. text-transform:none;
  7239. }
  7240. #u59949_div {
  7241. border-width:0px;
  7242. position:absolute;
  7243. left:0px;
  7244. top:0px;
  7245. width:65px;
  7246. height:22px;
  7247. background:inherit;
  7248. background-color:rgba(255, 255, 255, 0);
  7249. border:none;
  7250. border-radius:0px;
  7251. -moz-box-shadow:none;
  7252. -webkit-box-shadow:none;
  7253. box-shadow:none;
  7254. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7255. font-weight:400;
  7256. font-style:normal;
  7257. font-size:16px;
  7258. }
  7259. #u59949 {
  7260. border-width:0px;
  7261. position:absolute;
  7262. left:142px;
  7263. top:162px;
  7264. width:65px;
  7265. height:22px;
  7266. display:flex;
  7267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7268. font-weight:400;
  7269. font-style:normal;
  7270. font-size:16px;
  7271. }
  7272. #u59949 .text {
  7273. position:absolute;
  7274. align-self:flex-start;
  7275. padding:0px 0px 0px 0px;
  7276. box-sizing:border-box;
  7277. width:100%;
  7278. }
  7279. #u59949_text {
  7280. border-width:0px;
  7281. white-space:nowrap;
  7282. text-transform:none;
  7283. }
  7284. #u59950_div {
  7285. border-width:0px;
  7286. position:absolute;
  7287. left:0px;
  7288. top:0px;
  7289. width:49px;
  7290. height:17px;
  7291. background:inherit;
  7292. background-color:rgba(255, 255, 255, 0);
  7293. border:none;
  7294. border-radius:0px;
  7295. -moz-box-shadow:none;
  7296. -webkit-box-shadow:none;
  7297. box-shadow:none;
  7298. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7299. font-weight:400;
  7300. font-style:normal;
  7301. font-size:12px;
  7302. color:#AAAAAA;
  7303. }
  7304. #u59950 {
  7305. border-width:0px;
  7306. position:absolute;
  7307. left:142px;
  7308. top:126px;
  7309. width:49px;
  7310. height:17px;
  7311. display:flex;
  7312. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7313. font-weight:400;
  7314. font-style:normal;
  7315. font-size:12px;
  7316. color:#AAAAAA;
  7317. }
  7318. #u59950 .text {
  7319. position:absolute;
  7320. align-self:flex-start;
  7321. padding:0px 0px 0px 0px;
  7322. box-sizing:border-box;
  7323. width:100%;
  7324. }
  7325. #u59950_text {
  7326. border-width:0px;
  7327. white-space:nowrap;
  7328. text-transform:none;
  7329. }
  7330. #u59951_img {
  7331. border-width:0px;
  7332. position:absolute;
  7333. left:0px;
  7334. top:0px;
  7335. width:201px;
  7336. height:2px;
  7337. }
  7338. #u59951 {
  7339. border-width:0px;
  7340. position:absolute;
  7341. left:120px;
  7342. top:246px;
  7343. width:200px;
  7344. height:1px;
  7345. display:flex;
  7346. }
  7347. #u59951 .text {
  7348. position:absolute;
  7349. align-self:center;
  7350. padding:2px 2px 2px 2px;
  7351. box-sizing:border-box;
  7352. width:100%;
  7353. }
  7354. #u59951_text {
  7355. border-width:0px;
  7356. word-wrap:break-word;
  7357. text-transform:none;
  7358. visibility:hidden;
  7359. }
  7360. #u59952_div {
  7361. border-width:0px;
  7362. position:absolute;
  7363. left:0px;
  7364. top:0px;
  7365. width:65px;
  7366. height:22px;
  7367. background:inherit;
  7368. background-color:rgba(255, 255, 255, 0);
  7369. border:none;
  7370. border-radius:0px;
  7371. -moz-box-shadow:none;
  7372. -webkit-box-shadow:none;
  7373. box-shadow:none;
  7374. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7375. font-weight:400;
  7376. font-style:normal;
  7377. font-size:16px;
  7378. }
  7379. #u59952 {
  7380. border-width:0px;
  7381. position:absolute;
  7382. left:142px;
  7383. top:302px;
  7384. width:65px;
  7385. height:22px;
  7386. display:flex;
  7387. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7388. font-weight:400;
  7389. font-style:normal;
  7390. font-size:16px;
  7391. }
  7392. #u59952 .text {
  7393. position:absolute;
  7394. align-self:flex-start;
  7395. padding:0px 0px 0px 0px;
  7396. box-sizing:border-box;
  7397. width:100%;
  7398. }
  7399. #u59952_text {
  7400. border-width:0px;
  7401. white-space:nowrap;
  7402. text-transform:none;
  7403. }
  7404. #u59953_div {
  7405. border-width:0px;
  7406. position:absolute;
  7407. left:0px;
  7408. top:0px;
  7409. width:49px;
  7410. height:17px;
  7411. background:inherit;
  7412. background-color:rgba(255, 255, 255, 0);
  7413. border:none;
  7414. border-radius:0px;
  7415. -moz-box-shadow:none;
  7416. -webkit-box-shadow:none;
  7417. box-shadow:none;
  7418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7419. font-weight:400;
  7420. font-style:normal;
  7421. font-size:12px;
  7422. color:#AAAAAA;
  7423. }
  7424. #u59953 {
  7425. border-width:0px;
  7426. position:absolute;
  7427. left:142px;
  7428. top:266px;
  7429. width:49px;
  7430. height:17px;
  7431. display:flex;
  7432. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7433. font-weight:400;
  7434. font-style:normal;
  7435. font-size:12px;
  7436. color:#AAAAAA;
  7437. }
  7438. #u59953 .text {
  7439. position:absolute;
  7440. align-self:flex-start;
  7441. padding:0px 0px 0px 0px;
  7442. box-sizing:border-box;
  7443. width:100%;
  7444. }
  7445. #u59953_text {
  7446. border-width:0px;
  7447. white-space:nowrap;
  7448. text-transform:none;
  7449. }
  7450. #u59954_div {
  7451. border-width:0px;
  7452. position:absolute;
  7453. left:0px;
  7454. top:0px;
  7455. width:65px;
  7456. height:22px;
  7457. background:inherit;
  7458. background-color:rgba(255, 255, 255, 0);
  7459. border:none;
  7460. border-radius:0px;
  7461. -moz-box-shadow:none;
  7462. -webkit-box-shadow:none;
  7463. box-shadow:none;
  7464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7465. font-weight:400;
  7466. font-style:normal;
  7467. font-size:16px;
  7468. }
  7469. #u59954 {
  7470. border-width:0px;
  7471. position:absolute;
  7472. left:142px;
  7473. top:344px;
  7474. width:65px;
  7475. height:22px;
  7476. display:flex;
  7477. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7478. font-weight:400;
  7479. font-style:normal;
  7480. font-size:16px;
  7481. }
  7482. #u59954 .text {
  7483. position:absolute;
  7484. align-self:flex-start;
  7485. padding:0px 0px 0px 0px;
  7486. box-sizing:border-box;
  7487. width:100%;
  7488. }
  7489. #u59954_text {
  7490. border-width:0px;
  7491. white-space:nowrap;
  7492. text-transform:none;
  7493. }
  7494. #u59955_div {
  7495. border-width:0px;
  7496. position:absolute;
  7497. left:0px;
  7498. top:0px;
  7499. width:65px;
  7500. height:22px;
  7501. background:inherit;
  7502. background-color:rgba(255, 255, 255, 0);
  7503. border:none;
  7504. border-radius:0px;
  7505. -moz-box-shadow:none;
  7506. -webkit-box-shadow:none;
  7507. box-shadow:none;
  7508. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7509. font-weight:400;
  7510. font-style:normal;
  7511. font-size:16px;
  7512. }
  7513. #u59955 {
  7514. border-width:0px;
  7515. position:absolute;
  7516. left:142px;
  7517. top:204px;
  7518. width:65px;
  7519. height:22px;
  7520. display:flex;
  7521. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7522. font-weight:400;
  7523. font-style:normal;
  7524. font-size:16px;
  7525. }
  7526. #u59955 .text {
  7527. position:absolute;
  7528. align-self:flex-start;
  7529. padding:0px 0px 0px 0px;
  7530. box-sizing:border-box;
  7531. width:100%;
  7532. }
  7533. #u59955_text {
  7534. border-width:0px;
  7535. white-space:nowrap;
  7536. text-transform:none;
  7537. }
  7538. #u59956_div {
  7539. border-width:0px;
  7540. position:absolute;
  7541. left:0px;
  7542. top:0px;
  7543. width:548px;
  7544. height:20px;
  7545. background:inherit;
  7546. background-color:rgba(255, 255, 255, 0);
  7547. border:none;
  7548. border-left:0px;
  7549. border-top:0px;
  7550. border-right:0px;
  7551. border-radius:0px;
  7552. border-bottom-right-radius:0px;
  7553. border-bottom-left-radius:0px;
  7554. -moz-box-shadow:none;
  7555. -webkit-box-shadow:none;
  7556. box-shadow:none;
  7557. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7558. font-weight:400;
  7559. font-style:normal;
  7560. font-size:14px;
  7561. color:#D9001B;
  7562. }
  7563. #u59956 {
  7564. border-width:0px;
  7565. position:absolute;
  7566. left:447px;
  7567. top:70px;
  7568. width:548px;
  7569. height:20px;
  7570. display:flex;
  7571. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7572. font-weight:400;
  7573. font-style:normal;
  7574. font-size:14px;
  7575. color:#D9001B;
  7576. }
  7577. #u59956 .text {
  7578. position:absolute;
  7579. align-self:center;
  7580. padding:0px 0px 0px 0px;
  7581. box-sizing:border-box;
  7582. width:100%;
  7583. }
  7584. #u59956_text {
  7585. border-width:0px;
  7586. white-space:nowrap;
  7587. text-transform:none;
  7588. }
  7589. #u59957 {
  7590. border-width:0px;
  7591. position:absolute;
  7592. left:0px;
  7593. top:0px;
  7594. width:0px;
  7595. height:0px;
  7596. }
  7597. #u59958_div {
  7598. border-width:0px;
  7599. position:absolute;
  7600. left:0px;
  7601. top:0px;
  7602. width:237px;
  7603. height:50px;
  7604. background:inherit;
  7605. background-color:rgba(255, 255, 255, 0);
  7606. border:none;
  7607. border-left:0px;
  7608. border-top:0px;
  7609. border-right:0px;
  7610. border-radius:0px;
  7611. border-bottom-right-radius:0px;
  7612. border-bottom-left-radius:0px;
  7613. -moz-box-shadow:none;
  7614. -webkit-box-shadow:none;
  7615. box-shadow:none;
  7616. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7617. font-weight:400;
  7618. font-style:normal;
  7619. font-size:14px;
  7620. color:#0089FE;
  7621. }
  7622. #u59958 {
  7623. border-width:0px;
  7624. position:absolute;
  7625. left:1321px;
  7626. top:60px;
  7627. width:237px;
  7628. height:50px;
  7629. display:flex;
  7630. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7631. font-weight:400;
  7632. font-style:normal;
  7633. font-size:14px;
  7634. color:#0089FE;
  7635. }
  7636. #u59958 .text {
  7637. position:absolute;
  7638. align-self:center;
  7639. padding:0px 0px 0px 0px;
  7640. box-sizing:border-box;
  7641. width:100%;
  7642. }
  7643. #u59958_text {
  7644. border-width:0px;
  7645. word-wrap:break-word;
  7646. text-transform:none;
  7647. }
  7648. #u59959_div {
  7649. border-width:0px;
  7650. position:absolute;
  7651. left:0px;
  7652. top:0px;
  7653. width:133px;
  7654. height:30px;
  7655. background:inherit;
  7656. background-color:rgba(255, 255, 255, 1);
  7657. box-sizing:border-box;
  7658. border-width:1px;
  7659. border-style:solid;
  7660. border-color:rgba(0, 137, 254, 1);
  7661. border-radius:4px;
  7662. -moz-box-shadow:none;
  7663. -webkit-box-shadow:none;
  7664. box-shadow:none;
  7665. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7666. font-weight:400;
  7667. font-style:normal;
  7668. font-size:14px;
  7669. color:#0089FE;
  7670. }
  7671. #u59959 {
  7672. border-width:0px;
  7673. position:absolute;
  7674. left:1425px;
  7675. top:70px;
  7676. width:133px;
  7677. height:30px;
  7678. display:flex;
  7679. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7680. font-weight:400;
  7681. font-style:normal;
  7682. font-size:14px;
  7683. color:#0089FE;
  7684. }
  7685. #u59959 .text {
  7686. position:absolute;
  7687. align-self:center;
  7688. padding:5px 10px 5px 10px;
  7689. box-sizing:border-box;
  7690. width:100%;
  7691. }
  7692. #u59959_text {
  7693. border-width:0px;
  7694. white-space:nowrap;
  7695. text-transform:none;
  7696. }