styles.css 166 KB

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