styles.css 119 KB

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