styles.css 177 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:2191px;
  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. #u64835_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. #u64835 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u64835 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u64835_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u64836_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. #u64836 {
  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. #u64836 .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. #u64836_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u64837_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. #u64837 {
  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. #u64837 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u64837_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u64838 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u64839_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u64839 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u64839 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u64839_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u64840_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. #u64840 {
  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. #u64840 .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. #u64840_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u64841_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. #u64841 {
  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. #u64841 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u64841_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u64842 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u64843_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. #u64843_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. #u64843_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. #u64843 {
  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. #u64843 .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. #u64843_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. #u64843.disabled {
  356. }
  357. .u64843_input_option {
  358. font-size:14px;
  359. }
  360. #u64844_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u64844 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u64844 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u64844_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u64845_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. #u64845 {
  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. #u64845 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u64845_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u64846_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. #u64846 {
  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. #u64846 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u64846_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u64847 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u64848_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. #u64848 {
  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. #u64848 .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. #u64848_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u64849_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u64849 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u64849 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u64849_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u64850 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u64851_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. #u64851 {
  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. #u64851 .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. #u64851_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u64852_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u64852 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u64852 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u64852_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u64853 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u64854_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. #u64854 {
  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. #u64854 .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. #u64854_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u64855_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u64855 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:403px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u64855 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u64855_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u64856 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u64857_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. #u64857 {
  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. #u64857 .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. #u64857_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u64858_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u64858 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u64858 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u64858_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u64859 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u64860_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. #u64860 {
  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. #u64860 .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. #u64860_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u64861_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u64861 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:445px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u64861 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u64861_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u64862 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u64863_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. #u64863 {
  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. #u64863 .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. #u64863_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u64864_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u64864 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:319px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u64864 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u64864_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u64865 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u64866_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. #u64866 {
  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. #u64866 .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. #u64866_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u64867_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u64867 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u64867 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u64867_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u64868 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u64869_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. #u64869 {
  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. #u64869 .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. #u64869_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u64870_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u64870 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:361px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u64870 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u64870_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u64871 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u64872_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. #u64872 {
  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. #u64872 .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. #u64872_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u64873_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u64873 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:487px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u64873 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u64873_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u64874 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u64875_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. #u64875 {
  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. #u64875 .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. #u64875_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u64876_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u64876 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:529px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u64876 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u64876_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u64877_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. #u64877 {
  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. #u64877 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u64877_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u64878_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u64878 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u64878 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u64878_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u64879_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. #u64879 {
  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. #u64879 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u64879_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u64880_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u64880 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u64880 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u64880_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u64881 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u64882_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. #u64882 {
  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. #u64882 .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. #u64882_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u64883_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u64883 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u64883 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u64883_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u64884 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u64885_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. #u64885 {
  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. #u64885 .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. #u64885_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u64886_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u64886 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:277px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u64886 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u64886_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u64887_div {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:1259px;
  1644. height:1060px;
  1645. background:inherit;
  1646. background-color:rgba(255, 255, 255, 1);
  1647. box-sizing:border-box;
  1648. border-width:1px;
  1649. border-style:solid;
  1650. border-color:rgba(242, 242, 242, 1);
  1651. border-radius:0px;
  1652. -moz-box-shadow:none;
  1653. -webkit-box-shadow:none;
  1654. box-shadow:none;
  1655. }
  1656. #u64887 {
  1657. border-width:0px;
  1658. position:absolute;
  1659. left:332px;
  1660. top:150px;
  1661. width:1259px;
  1662. height:1060px;
  1663. display:flex;
  1664. }
  1665. #u64887 .text {
  1666. position:absolute;
  1667. align-self:center;
  1668. padding:2px 2px 2px 2px;
  1669. box-sizing:border-box;
  1670. width:100%;
  1671. }
  1672. #u64887_text {
  1673. border-width:0px;
  1674. word-wrap:break-word;
  1675. text-transform:none;
  1676. visibility:hidden;
  1677. }
  1678. #u64888 {
  1679. border-width:0px;
  1680. position:absolute;
  1681. left:356px;
  1682. top:299px;
  1683. width:1835px;
  1684. height:208px;
  1685. }
  1686. #u64889_img {
  1687. border-width:0px;
  1688. position:absolute;
  1689. left:0px;
  1690. top:0px;
  1691. width:44px;
  1692. height:44px;
  1693. }
  1694. #u64889 {
  1695. border-width:0px;
  1696. position:absolute;
  1697. left:0px;
  1698. top:0px;
  1699. width:44px;
  1700. height:44px;
  1701. display:flex;
  1702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1703. font-weight:400;
  1704. font-style:normal;
  1705. font-size:14px;
  1706. color:#FFFFFF;
  1707. }
  1708. #u64889 .text {
  1709. position:absolute;
  1710. align-self:center;
  1711. padding:2px 2px 2px 2px;
  1712. box-sizing:border-box;
  1713. width:100%;
  1714. }
  1715. #u64889_text {
  1716. border-width:0px;
  1717. word-wrap:break-word;
  1718. text-transform:none;
  1719. }
  1720. #u64890_img {
  1721. border-width:0px;
  1722. position:absolute;
  1723. left:0px;
  1724. top:0px;
  1725. width:77px;
  1726. height:44px;
  1727. }
  1728. #u64890 {
  1729. border-width:0px;
  1730. position:absolute;
  1731. left:44px;
  1732. top:0px;
  1733. width:77px;
  1734. height:44px;
  1735. display:flex;
  1736. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1737. font-weight:400;
  1738. font-style:normal;
  1739. font-size:14px;
  1740. color:#FFFFFF;
  1741. }
  1742. #u64890 .text {
  1743. position:absolute;
  1744. align-self:center;
  1745. padding:2px 2px 2px 2px;
  1746. box-sizing:border-box;
  1747. width:100%;
  1748. }
  1749. #u64890_text {
  1750. border-width:0px;
  1751. word-wrap:break-word;
  1752. text-transform:none;
  1753. }
  1754. #u64891_img {
  1755. border-width:0px;
  1756. position:absolute;
  1757. left:0px;
  1758. top:0px;
  1759. width:77px;
  1760. height:44px;
  1761. }
  1762. #u64891 {
  1763. border-width:0px;
  1764. position:absolute;
  1765. left:121px;
  1766. top:0px;
  1767. width:77px;
  1768. height:44px;
  1769. display:flex;
  1770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1771. font-weight:400;
  1772. font-style:normal;
  1773. font-size:14px;
  1774. color:#FFFFFF;
  1775. }
  1776. #u64891 .text {
  1777. position:absolute;
  1778. align-self:center;
  1779. padding:2px 2px 2px 2px;
  1780. box-sizing:border-box;
  1781. width:100%;
  1782. }
  1783. #u64891_text {
  1784. border-width:0px;
  1785. word-wrap:break-word;
  1786. text-transform:none;
  1787. }
  1788. #u64892_img {
  1789. border-width:0px;
  1790. position:absolute;
  1791. left:0px;
  1792. top:0px;
  1793. width:77px;
  1794. height:44px;
  1795. }
  1796. #u64892 {
  1797. border-width:0px;
  1798. position:absolute;
  1799. left:198px;
  1800. top:0px;
  1801. width:77px;
  1802. height:44px;
  1803. display:flex;
  1804. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1805. font-weight:400;
  1806. font-style:normal;
  1807. font-size:14px;
  1808. color:#FFFFFF;
  1809. }
  1810. #u64892 .text {
  1811. position:absolute;
  1812. align-self:center;
  1813. padding:2px 2px 2px 2px;
  1814. box-sizing:border-box;
  1815. width:100%;
  1816. }
  1817. #u64892_text {
  1818. border-width:0px;
  1819. word-wrap:break-word;
  1820. text-transform:none;
  1821. }
  1822. #u64893_img {
  1823. border-width:0px;
  1824. position:absolute;
  1825. left:0px;
  1826. top:0px;
  1827. width:78px;
  1828. height:44px;
  1829. }
  1830. #u64893 {
  1831. border-width:0px;
  1832. position:absolute;
  1833. left:275px;
  1834. top:0px;
  1835. width:78px;
  1836. height:44px;
  1837. display:flex;
  1838. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1839. font-weight:400;
  1840. font-style:normal;
  1841. font-size:14px;
  1842. color:#FFFFFF;
  1843. }
  1844. #u64893 .text {
  1845. position:absolute;
  1846. align-self:center;
  1847. padding:2px 2px 2px 2px;
  1848. box-sizing:border-box;
  1849. width:100%;
  1850. }
  1851. #u64893_text {
  1852. border-width:0px;
  1853. word-wrap:break-word;
  1854. text-transform:none;
  1855. }
  1856. #u64894_img {
  1857. border-width:0px;
  1858. position:absolute;
  1859. left:0px;
  1860. top:0px;
  1861. width:77px;
  1862. height:44px;
  1863. }
  1864. #u64894 {
  1865. border-width:0px;
  1866. position:absolute;
  1867. left:353px;
  1868. top:0px;
  1869. width:77px;
  1870. height:44px;
  1871. display:flex;
  1872. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1873. font-weight:400;
  1874. font-style:normal;
  1875. font-size:14px;
  1876. color:#FFFFFF;
  1877. }
  1878. #u64894 .text {
  1879. position:absolute;
  1880. align-self:center;
  1881. padding:2px 2px 2px 2px;
  1882. box-sizing:border-box;
  1883. width:100%;
  1884. }
  1885. #u64894_text {
  1886. border-width:0px;
  1887. word-wrap:break-word;
  1888. text-transform:none;
  1889. }
  1890. #u64895_img {
  1891. border-width:0px;
  1892. position:absolute;
  1893. left:0px;
  1894. top:0px;
  1895. width:76px;
  1896. height:44px;
  1897. }
  1898. #u64895 {
  1899. border-width:0px;
  1900. position:absolute;
  1901. left:430px;
  1902. top:0px;
  1903. width:76px;
  1904. height:44px;
  1905. display:flex;
  1906. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1907. font-weight:400;
  1908. font-style:normal;
  1909. font-size:14px;
  1910. color:#FFFFFF;
  1911. }
  1912. #u64895 .text {
  1913. position:absolute;
  1914. align-self:center;
  1915. padding:2px 2px 2px 2px;
  1916. box-sizing:border-box;
  1917. width:100%;
  1918. }
  1919. #u64895_text {
  1920. border-width:0px;
  1921. word-wrap:break-word;
  1922. text-transform:none;
  1923. }
  1924. #u64896_img {
  1925. border-width:0px;
  1926. position:absolute;
  1927. left:0px;
  1928. top:0px;
  1929. width:76px;
  1930. height:44px;
  1931. }
  1932. #u64896 {
  1933. border-width:0px;
  1934. position:absolute;
  1935. left:506px;
  1936. top:0px;
  1937. width:76px;
  1938. height:44px;
  1939. display:flex;
  1940. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1941. font-weight:400;
  1942. font-style:normal;
  1943. font-size:14px;
  1944. color:#FFFFFF;
  1945. }
  1946. #u64896 .text {
  1947. position:absolute;
  1948. align-self:center;
  1949. padding:2px 2px 2px 2px;
  1950. box-sizing:border-box;
  1951. width:100%;
  1952. }
  1953. #u64896_text {
  1954. border-width:0px;
  1955. word-wrap:break-word;
  1956. text-transform:none;
  1957. }
  1958. #u64897_img {
  1959. border-width:0px;
  1960. position:absolute;
  1961. left:0px;
  1962. top:0px;
  1963. width:76px;
  1964. height:44px;
  1965. }
  1966. #u64897 {
  1967. border-width:0px;
  1968. position:absolute;
  1969. left:582px;
  1970. top:0px;
  1971. width:76px;
  1972. height:44px;
  1973. display:flex;
  1974. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1975. font-weight:400;
  1976. font-style:normal;
  1977. font-size:14px;
  1978. color:#FFFFFF;
  1979. }
  1980. #u64897 .text {
  1981. position:absolute;
  1982. align-self:center;
  1983. padding:2px 2px 2px 2px;
  1984. box-sizing:border-box;
  1985. width:100%;
  1986. }
  1987. #u64897_text {
  1988. border-width:0px;
  1989. word-wrap:break-word;
  1990. text-transform:none;
  1991. }
  1992. #u64898_img {
  1993. border-width:0px;
  1994. position:absolute;
  1995. left:0px;
  1996. top:0px;
  1997. width:76px;
  1998. height:44px;
  1999. }
  2000. #u64898 {
  2001. border-width:0px;
  2002. position:absolute;
  2003. left:658px;
  2004. top:0px;
  2005. width:76px;
  2006. height:44px;
  2007. display:flex;
  2008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2009. font-weight:400;
  2010. font-style:normal;
  2011. font-size:14px;
  2012. color:#FFFFFF;
  2013. }
  2014. #u64898 .text {
  2015. position:absolute;
  2016. align-self:center;
  2017. padding:2px 2px 2px 2px;
  2018. box-sizing:border-box;
  2019. width:100%;
  2020. }
  2021. #u64898_text {
  2022. border-width:0px;
  2023. word-wrap:break-word;
  2024. text-transform:none;
  2025. }
  2026. #u64899_img {
  2027. border-width:0px;
  2028. position:absolute;
  2029. left:0px;
  2030. top:0px;
  2031. width:78px;
  2032. height:44px;
  2033. }
  2034. #u64899 {
  2035. border-width:0px;
  2036. position:absolute;
  2037. left:734px;
  2038. top:0px;
  2039. width:78px;
  2040. height:44px;
  2041. display:flex;
  2042. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2043. font-weight:400;
  2044. font-style:normal;
  2045. font-size:14px;
  2046. color:#FFFFFF;
  2047. }
  2048. #u64899 .text {
  2049. position:absolute;
  2050. align-self:center;
  2051. padding:2px 2px 2px 2px;
  2052. box-sizing:border-box;
  2053. width:100%;
  2054. }
  2055. #u64899_text {
  2056. border-width:0px;
  2057. word-wrap:break-word;
  2058. text-transform:none;
  2059. }
  2060. #u64900_img {
  2061. border-width:0px;
  2062. position:absolute;
  2063. left:0px;
  2064. top:0px;
  2065. width:77px;
  2066. height:44px;
  2067. }
  2068. #u64900 {
  2069. border-width:0px;
  2070. position:absolute;
  2071. left:812px;
  2072. top:0px;
  2073. width:77px;
  2074. height:44px;
  2075. display:flex;
  2076. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2077. font-weight:400;
  2078. font-style:normal;
  2079. font-size:14px;
  2080. color:#FFFFFF;
  2081. }
  2082. #u64900 .text {
  2083. position:absolute;
  2084. align-self:center;
  2085. padding:2px 2px 2px 2px;
  2086. box-sizing:border-box;
  2087. width:100%;
  2088. }
  2089. #u64900_text {
  2090. border-width:0px;
  2091. word-wrap:break-word;
  2092. text-transform:none;
  2093. }
  2094. #u64901_img {
  2095. border-width:0px;
  2096. position:absolute;
  2097. left:0px;
  2098. top:0px;
  2099. width:77px;
  2100. height:44px;
  2101. }
  2102. #u64901 {
  2103. border-width:0px;
  2104. position:absolute;
  2105. left:889px;
  2106. top:0px;
  2107. width:77px;
  2108. height:44px;
  2109. display:flex;
  2110. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2111. font-weight:400;
  2112. font-style:normal;
  2113. font-size:14px;
  2114. color:#FFFFFF;
  2115. }
  2116. #u64901 .text {
  2117. position:absolute;
  2118. align-self:center;
  2119. padding:2px 2px 2px 2px;
  2120. box-sizing:border-box;
  2121. width:100%;
  2122. }
  2123. #u64901_text {
  2124. border-width:0px;
  2125. word-wrap:break-word;
  2126. text-transform:none;
  2127. }
  2128. #u64902_img {
  2129. border-width:0px;
  2130. position:absolute;
  2131. left:0px;
  2132. top:0px;
  2133. width:77px;
  2134. height:44px;
  2135. }
  2136. #u64902 {
  2137. border-width:0px;
  2138. position:absolute;
  2139. left:966px;
  2140. top:0px;
  2141. width:77px;
  2142. height:44px;
  2143. display:flex;
  2144. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2145. font-weight:400;
  2146. font-style:normal;
  2147. font-size:14px;
  2148. color:#FFFFFF;
  2149. }
  2150. #u64902 .text {
  2151. position:absolute;
  2152. align-self:center;
  2153. padding:2px 2px 2px 2px;
  2154. box-sizing:border-box;
  2155. width:100%;
  2156. }
  2157. #u64902_text {
  2158. border-width:0px;
  2159. word-wrap:break-word;
  2160. text-transform:none;
  2161. }
  2162. #u64903_img {
  2163. border-width:0px;
  2164. position:absolute;
  2165. left:0px;
  2166. top:0px;
  2167. width:77px;
  2168. height:44px;
  2169. }
  2170. #u64903 {
  2171. border-width:0px;
  2172. position:absolute;
  2173. left:1043px;
  2174. top:0px;
  2175. width:77px;
  2176. height:44px;
  2177. display:flex;
  2178. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2179. font-weight:400;
  2180. font-style:normal;
  2181. font-size:14px;
  2182. color:#FFFFFF;
  2183. }
  2184. #u64903 .text {
  2185. position:absolute;
  2186. align-self:center;
  2187. padding:2px 2px 2px 2px;
  2188. box-sizing:border-box;
  2189. width:100%;
  2190. }
  2191. #u64903_text {
  2192. border-width:0px;
  2193. word-wrap:break-word;
  2194. text-transform:none;
  2195. }
  2196. #u64904_img {
  2197. border-width:0px;
  2198. position:absolute;
  2199. left:0px;
  2200. top:0px;
  2201. width:77px;
  2202. height:44px;
  2203. }
  2204. #u64904 {
  2205. border-width:0px;
  2206. position:absolute;
  2207. left:1120px;
  2208. top:0px;
  2209. width:77px;
  2210. height:44px;
  2211. display:flex;
  2212. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2213. font-weight:400;
  2214. font-style:normal;
  2215. font-size:14px;
  2216. color:#FFFFFF;
  2217. }
  2218. #u64904 .text {
  2219. position:absolute;
  2220. align-self:center;
  2221. padding:2px 2px 2px 2px;
  2222. box-sizing:border-box;
  2223. width:100%;
  2224. }
  2225. #u64904_text {
  2226. border-width:0px;
  2227. word-wrap:break-word;
  2228. text-transform:none;
  2229. }
  2230. #u64905_img {
  2231. border-width:0px;
  2232. position:absolute;
  2233. left:0px;
  2234. top:0px;
  2235. width:80px;
  2236. height:44px;
  2237. }
  2238. #u64905 {
  2239. border-width:0px;
  2240. position:absolute;
  2241. left:1197px;
  2242. top:0px;
  2243. width:80px;
  2244. height:44px;
  2245. display:flex;
  2246. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2247. font-weight:400;
  2248. font-style:normal;
  2249. font-size:14px;
  2250. color:#FFFFFF;
  2251. }
  2252. #u64905 .text {
  2253. position:absolute;
  2254. align-self:center;
  2255. padding:2px 2px 2px 2px;
  2256. box-sizing:border-box;
  2257. width:100%;
  2258. }
  2259. #u64905_text {
  2260. border-width:0px;
  2261. word-wrap:break-word;
  2262. text-transform:none;
  2263. }
  2264. #u64906_img {
  2265. border-width:0px;
  2266. position:absolute;
  2267. left:0px;
  2268. top:0px;
  2269. width:77px;
  2270. height:44px;
  2271. }
  2272. #u64906 {
  2273. border-width:0px;
  2274. position:absolute;
  2275. left:1277px;
  2276. top:0px;
  2277. width:77px;
  2278. height:44px;
  2279. display:flex;
  2280. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2281. font-weight:400;
  2282. font-style:normal;
  2283. font-size:14px;
  2284. color:#FFFFFF;
  2285. }
  2286. #u64906 .text {
  2287. position:absolute;
  2288. align-self:center;
  2289. padding:2px 2px 2px 2px;
  2290. box-sizing:border-box;
  2291. width:100%;
  2292. }
  2293. #u64906_text {
  2294. border-width:0px;
  2295. word-wrap:break-word;
  2296. text-transform:none;
  2297. }
  2298. #u64907_img {
  2299. border-width:0px;
  2300. position:absolute;
  2301. left:0px;
  2302. top:0px;
  2303. width:80px;
  2304. height:44px;
  2305. }
  2306. #u64907 {
  2307. border-width:0px;
  2308. position:absolute;
  2309. left:1354px;
  2310. top:0px;
  2311. width:80px;
  2312. height:44px;
  2313. display:flex;
  2314. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2315. font-weight:400;
  2316. font-style:normal;
  2317. font-size:14px;
  2318. color:#FFFFFF;
  2319. }
  2320. #u64907 .text {
  2321. position:absolute;
  2322. align-self:center;
  2323. padding:2px 2px 2px 2px;
  2324. box-sizing:border-box;
  2325. width:100%;
  2326. }
  2327. #u64907_text {
  2328. border-width:0px;
  2329. word-wrap:break-word;
  2330. text-transform:none;
  2331. }
  2332. #u64908_img {
  2333. border-width:0px;
  2334. position:absolute;
  2335. left:0px;
  2336. top:0px;
  2337. width:77px;
  2338. height:44px;
  2339. }
  2340. #u64908 {
  2341. border-width:0px;
  2342. position:absolute;
  2343. left:1434px;
  2344. top:0px;
  2345. width:77px;
  2346. height:44px;
  2347. display:flex;
  2348. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2349. font-weight:400;
  2350. font-style:normal;
  2351. font-size:14px;
  2352. color:#FFFFFF;
  2353. }
  2354. #u64908 .text {
  2355. position:absolute;
  2356. align-self:center;
  2357. padding:2px 2px 2px 2px;
  2358. box-sizing:border-box;
  2359. width:100%;
  2360. }
  2361. #u64908_text {
  2362. border-width:0px;
  2363. word-wrap:break-word;
  2364. text-transform:none;
  2365. }
  2366. #u64909_img {
  2367. border-width:0px;
  2368. position:absolute;
  2369. left:0px;
  2370. top:0px;
  2371. width:80px;
  2372. height:44px;
  2373. }
  2374. #u64909 {
  2375. border-width:0px;
  2376. position:absolute;
  2377. left:1511px;
  2378. top:0px;
  2379. width:80px;
  2380. height:44px;
  2381. display:flex;
  2382. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2383. font-weight:400;
  2384. font-style:normal;
  2385. font-size:14px;
  2386. color:#FFFFFF;
  2387. }
  2388. #u64909 .text {
  2389. position:absolute;
  2390. align-self:center;
  2391. padding:2px 2px 2px 2px;
  2392. box-sizing:border-box;
  2393. width:100%;
  2394. }
  2395. #u64909_text {
  2396. border-width:0px;
  2397. word-wrap:break-word;
  2398. text-transform:none;
  2399. }
  2400. #u64910_img {
  2401. border-width:0px;
  2402. position:absolute;
  2403. left:0px;
  2404. top:0px;
  2405. width:77px;
  2406. height:44px;
  2407. }
  2408. #u64910 {
  2409. border-width:0px;
  2410. position:absolute;
  2411. left:1591px;
  2412. top:0px;
  2413. width:77px;
  2414. height:44px;
  2415. display:flex;
  2416. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2417. font-weight:400;
  2418. font-style:normal;
  2419. font-size:14px;
  2420. color:#FFFFFF;
  2421. }
  2422. #u64910 .text {
  2423. position:absolute;
  2424. align-self:center;
  2425. padding:2px 2px 2px 2px;
  2426. box-sizing:border-box;
  2427. width:100%;
  2428. }
  2429. #u64910_text {
  2430. border-width:0px;
  2431. word-wrap:break-word;
  2432. text-transform:none;
  2433. }
  2434. #u64911_img {
  2435. border-width:0px;
  2436. position:absolute;
  2437. left:0px;
  2438. top:0px;
  2439. width:80px;
  2440. height:44px;
  2441. }
  2442. #u64911 {
  2443. border-width:0px;
  2444. position:absolute;
  2445. left:1668px;
  2446. top:0px;
  2447. width:80px;
  2448. height:44px;
  2449. display:flex;
  2450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2451. font-weight:400;
  2452. font-style:normal;
  2453. font-size:14px;
  2454. color:#FFFFFF;
  2455. }
  2456. #u64911 .text {
  2457. position:absolute;
  2458. align-self:center;
  2459. padding:2px 2px 2px 2px;
  2460. box-sizing:border-box;
  2461. width:100%;
  2462. }
  2463. #u64911_text {
  2464. border-width:0px;
  2465. word-wrap:break-word;
  2466. text-transform:none;
  2467. }
  2468. #u64912_img {
  2469. border-width:0px;
  2470. position:absolute;
  2471. left:0px;
  2472. top:0px;
  2473. width:87px;
  2474. height:44px;
  2475. }
  2476. #u64912 {
  2477. border-width:0px;
  2478. position:absolute;
  2479. left:1748px;
  2480. top:0px;
  2481. width:87px;
  2482. height:44px;
  2483. display:flex;
  2484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2485. font-weight:400;
  2486. font-style:normal;
  2487. font-size:14px;
  2488. color:#FFFFFF;
  2489. }
  2490. #u64912 .text {
  2491. position:absolute;
  2492. align-self:center;
  2493. padding:2px 2px 2px 2px;
  2494. box-sizing:border-box;
  2495. width:100%;
  2496. }
  2497. #u64912_text {
  2498. border-width:0px;
  2499. word-wrap:break-word;
  2500. text-transform:none;
  2501. }
  2502. #u64913_img {
  2503. border-width:0px;
  2504. position:absolute;
  2505. left:0px;
  2506. top:0px;
  2507. width:44px;
  2508. height:44px;
  2509. }
  2510. #u64913 {
  2511. border-width:0px;
  2512. position:absolute;
  2513. left:0px;
  2514. top:44px;
  2515. width:44px;
  2516. height:44px;
  2517. display:flex;
  2518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2519. font-weight:400;
  2520. font-style:normal;
  2521. font-size:14px;
  2522. }
  2523. #u64913 .text {
  2524. position:absolute;
  2525. align-self:center;
  2526. padding:2px 2px 2px 2px;
  2527. box-sizing:border-box;
  2528. width:100%;
  2529. }
  2530. #u64913_text {
  2531. border-width:0px;
  2532. word-wrap:break-word;
  2533. text-transform:none;
  2534. }
  2535. #u64914_img {
  2536. border-width:0px;
  2537. position:absolute;
  2538. left:0px;
  2539. top:0px;
  2540. width:77px;
  2541. height:44px;
  2542. }
  2543. #u64914 {
  2544. border-width:0px;
  2545. position:absolute;
  2546. left:44px;
  2547. top:44px;
  2548. width:77px;
  2549. height:44px;
  2550. display:flex;
  2551. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2552. font-weight:400;
  2553. font-style:normal;
  2554. font-size:14px;
  2555. }
  2556. #u64914 .text {
  2557. position:absolute;
  2558. align-self:center;
  2559. padding:2px 2px 2px 2px;
  2560. box-sizing:border-box;
  2561. width:100%;
  2562. }
  2563. #u64914_text {
  2564. border-width:0px;
  2565. word-wrap:break-word;
  2566. text-transform:none;
  2567. }
  2568. #u64915_img {
  2569. border-width:0px;
  2570. position:absolute;
  2571. left:0px;
  2572. top:0px;
  2573. width:77px;
  2574. height:44px;
  2575. }
  2576. #u64915 {
  2577. border-width:0px;
  2578. position:absolute;
  2579. left:121px;
  2580. top:44px;
  2581. width:77px;
  2582. height:44px;
  2583. display:flex;
  2584. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2585. font-weight:400;
  2586. font-style:normal;
  2587. font-size:14px;
  2588. }
  2589. #u64915 .text {
  2590. position:absolute;
  2591. align-self:center;
  2592. padding:2px 2px 2px 2px;
  2593. box-sizing:border-box;
  2594. width:100%;
  2595. }
  2596. #u64915_text {
  2597. border-width:0px;
  2598. word-wrap:break-word;
  2599. text-transform:none;
  2600. }
  2601. #u64916_img {
  2602. border-width:0px;
  2603. position:absolute;
  2604. left:0px;
  2605. top:0px;
  2606. width:77px;
  2607. height:44px;
  2608. }
  2609. #u64916 {
  2610. border-width:0px;
  2611. position:absolute;
  2612. left:198px;
  2613. top:44px;
  2614. width:77px;
  2615. height:44px;
  2616. display:flex;
  2617. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2618. font-weight:400;
  2619. font-style:normal;
  2620. font-size:14px;
  2621. }
  2622. #u64916 .text {
  2623. position:absolute;
  2624. align-self:center;
  2625. padding:2px 2px 2px 2px;
  2626. box-sizing:border-box;
  2627. width:100%;
  2628. }
  2629. #u64916_text {
  2630. border-width:0px;
  2631. word-wrap:break-word;
  2632. text-transform:none;
  2633. }
  2634. #u64917_img {
  2635. border-width:0px;
  2636. position:absolute;
  2637. left:0px;
  2638. top:0px;
  2639. width:78px;
  2640. height:44px;
  2641. }
  2642. #u64917 {
  2643. border-width:0px;
  2644. position:absolute;
  2645. left:275px;
  2646. top:44px;
  2647. width:78px;
  2648. height:44px;
  2649. display:flex;
  2650. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2651. font-weight:400;
  2652. font-style:normal;
  2653. font-size:14px;
  2654. }
  2655. #u64917 .text {
  2656. position:absolute;
  2657. align-self:center;
  2658. padding:2px 2px 2px 2px;
  2659. box-sizing:border-box;
  2660. width:100%;
  2661. }
  2662. #u64917_text {
  2663. border-width:0px;
  2664. word-wrap:break-word;
  2665. text-transform:none;
  2666. visibility:hidden;
  2667. }
  2668. #u64918_img {
  2669. border-width:0px;
  2670. position:absolute;
  2671. left:0px;
  2672. top:0px;
  2673. width:77px;
  2674. height:44px;
  2675. }
  2676. #u64918 {
  2677. border-width:0px;
  2678. position:absolute;
  2679. left:353px;
  2680. top:44px;
  2681. width:77px;
  2682. height:44px;
  2683. display:flex;
  2684. font-size:14px;
  2685. }
  2686. #u64918 .text {
  2687. position:absolute;
  2688. align-self:center;
  2689. padding:2px 2px 2px 2px;
  2690. box-sizing:border-box;
  2691. width:100%;
  2692. }
  2693. #u64918_text {
  2694. border-width:0px;
  2695. word-wrap:break-word;
  2696. text-transform:none;
  2697. visibility:hidden;
  2698. }
  2699. #u64919_img {
  2700. border-width:0px;
  2701. position:absolute;
  2702. left:0px;
  2703. top:0px;
  2704. width:76px;
  2705. height:44px;
  2706. }
  2707. #u64919 {
  2708. border-width:0px;
  2709. position:absolute;
  2710. left:430px;
  2711. top:44px;
  2712. width:76px;
  2713. height:44px;
  2714. display:flex;
  2715. font-size:14px;
  2716. }
  2717. #u64919 .text {
  2718. position:absolute;
  2719. align-self:center;
  2720. padding:2px 2px 2px 2px;
  2721. box-sizing:border-box;
  2722. width:100%;
  2723. }
  2724. #u64919_text {
  2725. border-width:0px;
  2726. word-wrap:break-word;
  2727. text-transform:none;
  2728. visibility:hidden;
  2729. }
  2730. #u64920_img {
  2731. border-width:0px;
  2732. position:absolute;
  2733. left:0px;
  2734. top:0px;
  2735. width:76px;
  2736. height:44px;
  2737. }
  2738. #u64920 {
  2739. border-width:0px;
  2740. position:absolute;
  2741. left:506px;
  2742. top:44px;
  2743. width:76px;
  2744. height:44px;
  2745. display:flex;
  2746. font-size:14px;
  2747. }
  2748. #u64920 .text {
  2749. position:absolute;
  2750. align-self:center;
  2751. padding:2px 2px 2px 2px;
  2752. box-sizing:border-box;
  2753. width:100%;
  2754. }
  2755. #u64920_text {
  2756. border-width:0px;
  2757. word-wrap:break-word;
  2758. text-transform:none;
  2759. visibility:hidden;
  2760. }
  2761. #u64921_img {
  2762. border-width:0px;
  2763. position:absolute;
  2764. left:0px;
  2765. top:0px;
  2766. width:76px;
  2767. height:44px;
  2768. }
  2769. #u64921 {
  2770. border-width:0px;
  2771. position:absolute;
  2772. left:582px;
  2773. top:44px;
  2774. width:76px;
  2775. height:44px;
  2776. display:flex;
  2777. font-size:14px;
  2778. }
  2779. #u64921 .text {
  2780. position:absolute;
  2781. align-self:center;
  2782. padding:2px 2px 2px 2px;
  2783. box-sizing:border-box;
  2784. width:100%;
  2785. }
  2786. #u64921_text {
  2787. border-width:0px;
  2788. word-wrap:break-word;
  2789. text-transform:none;
  2790. visibility:hidden;
  2791. }
  2792. #u64922_img {
  2793. border-width:0px;
  2794. position:absolute;
  2795. left:0px;
  2796. top:0px;
  2797. width:76px;
  2798. height:44px;
  2799. }
  2800. #u64922 {
  2801. border-width:0px;
  2802. position:absolute;
  2803. left:658px;
  2804. top:44px;
  2805. width:76px;
  2806. height:44px;
  2807. display:flex;
  2808. font-size:14px;
  2809. }
  2810. #u64922 .text {
  2811. position:absolute;
  2812. align-self:center;
  2813. padding:2px 2px 2px 2px;
  2814. box-sizing:border-box;
  2815. width:100%;
  2816. }
  2817. #u64922_text {
  2818. border-width:0px;
  2819. word-wrap:break-word;
  2820. text-transform:none;
  2821. visibility:hidden;
  2822. }
  2823. #u64923_img {
  2824. border-width:0px;
  2825. position:absolute;
  2826. left:0px;
  2827. top:0px;
  2828. width:78px;
  2829. height:44px;
  2830. }
  2831. #u64923 {
  2832. border-width:0px;
  2833. position:absolute;
  2834. left:734px;
  2835. top:44px;
  2836. width:78px;
  2837. height:44px;
  2838. display:flex;
  2839. font-size:14px;
  2840. }
  2841. #u64923 .text {
  2842. position:absolute;
  2843. align-self:center;
  2844. padding:2px 2px 2px 2px;
  2845. box-sizing:border-box;
  2846. width:100%;
  2847. }
  2848. #u64923_text {
  2849. border-width:0px;
  2850. word-wrap:break-word;
  2851. text-transform:none;
  2852. visibility:hidden;
  2853. }
  2854. #u64924_img {
  2855. border-width:0px;
  2856. position:absolute;
  2857. left:0px;
  2858. top:0px;
  2859. width:77px;
  2860. height:44px;
  2861. }
  2862. #u64924 {
  2863. border-width:0px;
  2864. position:absolute;
  2865. left:812px;
  2866. top:44px;
  2867. width:77px;
  2868. height:44px;
  2869. display:flex;
  2870. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2871. font-weight:400;
  2872. font-style:normal;
  2873. font-size:14px;
  2874. }
  2875. #u64924 .text {
  2876. position:absolute;
  2877. align-self:center;
  2878. padding:2px 2px 2px 2px;
  2879. box-sizing:border-box;
  2880. width:100%;
  2881. }
  2882. #u64924_text {
  2883. border-width:0px;
  2884. word-wrap:break-word;
  2885. text-transform:none;
  2886. }
  2887. #u64925_img {
  2888. border-width:0px;
  2889. position:absolute;
  2890. left:0px;
  2891. top:0px;
  2892. width:77px;
  2893. height:44px;
  2894. }
  2895. #u64925 {
  2896. border-width:0px;
  2897. position:absolute;
  2898. left:889px;
  2899. top:44px;
  2900. width:77px;
  2901. height:44px;
  2902. display:flex;
  2903. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2904. font-weight:400;
  2905. font-style:normal;
  2906. font-size:14px;
  2907. }
  2908. #u64925 .text {
  2909. position:absolute;
  2910. align-self:center;
  2911. padding:2px 2px 2px 2px;
  2912. box-sizing:border-box;
  2913. width:100%;
  2914. }
  2915. #u64925_text {
  2916. border-width:0px;
  2917. word-wrap:break-word;
  2918. text-transform:none;
  2919. visibility:hidden;
  2920. }
  2921. #u64926_img {
  2922. border-width:0px;
  2923. position:absolute;
  2924. left:0px;
  2925. top:0px;
  2926. width:77px;
  2927. height:44px;
  2928. }
  2929. #u64926 {
  2930. border-width:0px;
  2931. position:absolute;
  2932. left:966px;
  2933. top:44px;
  2934. width:77px;
  2935. height:44px;
  2936. display:flex;
  2937. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2938. font-weight:400;
  2939. font-style:normal;
  2940. font-size:14px;
  2941. }
  2942. #u64926 .text {
  2943. position:absolute;
  2944. align-self:center;
  2945. padding:2px 2px 2px 2px;
  2946. box-sizing:border-box;
  2947. width:100%;
  2948. }
  2949. #u64926_text {
  2950. border-width:0px;
  2951. word-wrap:break-word;
  2952. text-transform:none;
  2953. }
  2954. #u64927_img {
  2955. border-width:0px;
  2956. position:absolute;
  2957. left:0px;
  2958. top:0px;
  2959. width:77px;
  2960. height:44px;
  2961. }
  2962. #u64927 {
  2963. border-width:0px;
  2964. position:absolute;
  2965. left:1043px;
  2966. top:44px;
  2967. width:77px;
  2968. height:44px;
  2969. display:flex;
  2970. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2971. font-weight:400;
  2972. font-style:normal;
  2973. font-size:14px;
  2974. }
  2975. #u64927 .text {
  2976. position:absolute;
  2977. align-self:center;
  2978. padding:2px 2px 2px 2px;
  2979. box-sizing:border-box;
  2980. width:100%;
  2981. }
  2982. #u64927_text {
  2983. border-width:0px;
  2984. word-wrap:break-word;
  2985. text-transform:none;
  2986. }
  2987. #u64928_img {
  2988. border-width:0px;
  2989. position:absolute;
  2990. left:0px;
  2991. top:0px;
  2992. width:77px;
  2993. height:44px;
  2994. }
  2995. #u64928 {
  2996. border-width:0px;
  2997. position:absolute;
  2998. left:1120px;
  2999. top:44px;
  3000. width:77px;
  3001. height:44px;
  3002. display:flex;
  3003. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3004. font-weight:400;
  3005. font-style:normal;
  3006. font-size:14px;
  3007. }
  3008. #u64928 .text {
  3009. position:absolute;
  3010. align-self:center;
  3011. padding:2px 2px 2px 2px;
  3012. box-sizing:border-box;
  3013. width:100%;
  3014. }
  3015. #u64928_text {
  3016. border-width:0px;
  3017. word-wrap:break-word;
  3018. text-transform:none;
  3019. }
  3020. #u64929_img {
  3021. border-width:0px;
  3022. position:absolute;
  3023. left:0px;
  3024. top:0px;
  3025. width:80px;
  3026. height:44px;
  3027. }
  3028. #u64929 {
  3029. border-width:0px;
  3030. position:absolute;
  3031. left:1197px;
  3032. top:44px;
  3033. width:80px;
  3034. height:44px;
  3035. display:flex;
  3036. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3037. font-weight:400;
  3038. font-style:normal;
  3039. font-size:14px;
  3040. }
  3041. #u64929 .text {
  3042. position:absolute;
  3043. align-self:center;
  3044. padding:2px 2px 2px 2px;
  3045. box-sizing:border-box;
  3046. width:100%;
  3047. }
  3048. #u64929_text {
  3049. border-width:0px;
  3050. word-wrap:break-word;
  3051. text-transform:none;
  3052. visibility:hidden;
  3053. }
  3054. #u64930_img {
  3055. border-width:0px;
  3056. position:absolute;
  3057. left:0px;
  3058. top:0px;
  3059. width:77px;
  3060. height:44px;
  3061. }
  3062. #u64930 {
  3063. border-width:0px;
  3064. position:absolute;
  3065. left:1277px;
  3066. top:44px;
  3067. width:77px;
  3068. height:44px;
  3069. display:flex;
  3070. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3071. font-weight:400;
  3072. font-style:normal;
  3073. font-size:14px;
  3074. }
  3075. #u64930 .text {
  3076. position:absolute;
  3077. align-self:center;
  3078. padding:2px 2px 2px 2px;
  3079. box-sizing:border-box;
  3080. width:100%;
  3081. }
  3082. #u64930_text {
  3083. border-width:0px;
  3084. word-wrap:break-word;
  3085. text-transform:none;
  3086. visibility:hidden;
  3087. }
  3088. #u64931_img {
  3089. border-width:0px;
  3090. position:absolute;
  3091. left:0px;
  3092. top:0px;
  3093. width:80px;
  3094. height:44px;
  3095. }
  3096. #u64931 {
  3097. border-width:0px;
  3098. position:absolute;
  3099. left:1354px;
  3100. top:44px;
  3101. width:80px;
  3102. height:44px;
  3103. display:flex;
  3104. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3105. font-weight:400;
  3106. font-style:normal;
  3107. font-size:14px;
  3108. }
  3109. #u64931 .text {
  3110. position:absolute;
  3111. align-self:center;
  3112. padding:2px 2px 2px 2px;
  3113. box-sizing:border-box;
  3114. width:100%;
  3115. }
  3116. #u64931_text {
  3117. border-width:0px;
  3118. word-wrap:break-word;
  3119. text-transform:none;
  3120. visibility:hidden;
  3121. }
  3122. #u64932_img {
  3123. border-width:0px;
  3124. position:absolute;
  3125. left:0px;
  3126. top:0px;
  3127. width:77px;
  3128. height:44px;
  3129. }
  3130. #u64932 {
  3131. border-width:0px;
  3132. position:absolute;
  3133. left:1434px;
  3134. top:44px;
  3135. width:77px;
  3136. height:44px;
  3137. display:flex;
  3138. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3139. font-weight:400;
  3140. font-style:normal;
  3141. font-size:14px;
  3142. }
  3143. #u64932 .text {
  3144. position:absolute;
  3145. align-self:center;
  3146. padding:2px 2px 2px 2px;
  3147. box-sizing:border-box;
  3148. width:100%;
  3149. }
  3150. #u64932_text {
  3151. border-width:0px;
  3152. word-wrap:break-word;
  3153. text-transform:none;
  3154. visibility:hidden;
  3155. }
  3156. #u64933_img {
  3157. border-width:0px;
  3158. position:absolute;
  3159. left:0px;
  3160. top:0px;
  3161. width:80px;
  3162. height:44px;
  3163. }
  3164. #u64933 {
  3165. border-width:0px;
  3166. position:absolute;
  3167. left:1511px;
  3168. top:44px;
  3169. width:80px;
  3170. height:44px;
  3171. display:flex;
  3172. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3173. font-weight:400;
  3174. font-style:normal;
  3175. font-size:14px;
  3176. }
  3177. #u64933 .text {
  3178. position:absolute;
  3179. align-self:center;
  3180. padding:2px 2px 2px 2px;
  3181. box-sizing:border-box;
  3182. width:100%;
  3183. }
  3184. #u64933_text {
  3185. border-width:0px;
  3186. word-wrap:break-word;
  3187. text-transform:none;
  3188. visibility:hidden;
  3189. }
  3190. #u64934_img {
  3191. border-width:0px;
  3192. position:absolute;
  3193. left:0px;
  3194. top:0px;
  3195. width:77px;
  3196. height:44px;
  3197. }
  3198. #u64934 {
  3199. border-width:0px;
  3200. position:absolute;
  3201. left:1591px;
  3202. top:44px;
  3203. width:77px;
  3204. height:44px;
  3205. display:flex;
  3206. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3207. font-weight:400;
  3208. font-style:normal;
  3209. font-size:14px;
  3210. }
  3211. #u64934 .text {
  3212. position:absolute;
  3213. align-self:center;
  3214. padding:2px 2px 2px 2px;
  3215. box-sizing:border-box;
  3216. width:100%;
  3217. }
  3218. #u64934_text {
  3219. border-width:0px;
  3220. word-wrap:break-word;
  3221. text-transform:none;
  3222. }
  3223. #u64935_img {
  3224. border-width:0px;
  3225. position:absolute;
  3226. left:0px;
  3227. top:0px;
  3228. width:80px;
  3229. height:44px;
  3230. }
  3231. #u64935 {
  3232. border-width:0px;
  3233. position:absolute;
  3234. left:1668px;
  3235. top:44px;
  3236. width:80px;
  3237. height:44px;
  3238. display:flex;
  3239. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3240. font-weight:400;
  3241. font-style:normal;
  3242. font-size:14px;
  3243. }
  3244. #u64935 .text {
  3245. position:absolute;
  3246. align-self:center;
  3247. padding:2px 2px 2px 2px;
  3248. box-sizing:border-box;
  3249. width:100%;
  3250. }
  3251. #u64935_text {
  3252. border-width:0px;
  3253. word-wrap:break-word;
  3254. text-transform:none;
  3255. visibility:hidden;
  3256. }
  3257. #u64936_img {
  3258. border-width:0px;
  3259. position:absolute;
  3260. left:0px;
  3261. top:0px;
  3262. width:87px;
  3263. height:44px;
  3264. }
  3265. #u64936 {
  3266. border-width:0px;
  3267. position:absolute;
  3268. left:1748px;
  3269. top:44px;
  3270. width:87px;
  3271. height:44px;
  3272. display:flex;
  3273. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3274. font-weight:400;
  3275. font-style:normal;
  3276. font-size:14px;
  3277. color:#1890FF;
  3278. }
  3279. #u64936 .text {
  3280. position:absolute;
  3281. align-self:center;
  3282. padding:2px 2px 2px 2px;
  3283. box-sizing:border-box;
  3284. width:100%;
  3285. }
  3286. #u64936_text {
  3287. border-width:0px;
  3288. word-wrap:break-word;
  3289. text-transform:none;
  3290. }
  3291. #u64937_img {
  3292. border-width:0px;
  3293. position:absolute;
  3294. left:0px;
  3295. top:0px;
  3296. width:44px;
  3297. height:30px;
  3298. }
  3299. #u64937 {
  3300. border-width:0px;
  3301. position:absolute;
  3302. left:0px;
  3303. top:88px;
  3304. width:44px;
  3305. height:30px;
  3306. display:flex;
  3307. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3308. font-weight:400;
  3309. font-style:normal;
  3310. font-size:14px;
  3311. }
  3312. #u64937 .text {
  3313. position:absolute;
  3314. align-self:center;
  3315. padding:2px 2px 2px 2px;
  3316. box-sizing:border-box;
  3317. width:100%;
  3318. }
  3319. #u64937_text {
  3320. border-width:0px;
  3321. word-wrap:break-word;
  3322. text-transform:none;
  3323. visibility:hidden;
  3324. }
  3325. #u64938_img {
  3326. border-width:0px;
  3327. position:absolute;
  3328. left:0px;
  3329. top:0px;
  3330. width:77px;
  3331. height:30px;
  3332. }
  3333. #u64938 {
  3334. border-width:0px;
  3335. position:absolute;
  3336. left:44px;
  3337. top:88px;
  3338. width:77px;
  3339. height:30px;
  3340. display:flex;
  3341. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3342. font-weight:400;
  3343. font-style:normal;
  3344. font-size:14px;
  3345. }
  3346. #u64938 .text {
  3347. position:absolute;
  3348. align-self:center;
  3349. padding:2px 2px 2px 2px;
  3350. box-sizing:border-box;
  3351. width:100%;
  3352. }
  3353. #u64938_text {
  3354. border-width:0px;
  3355. word-wrap:break-word;
  3356. text-transform:none;
  3357. visibility:hidden;
  3358. }
  3359. #u64939_img {
  3360. border-width:0px;
  3361. position:absolute;
  3362. left:0px;
  3363. top:0px;
  3364. width:77px;
  3365. height:30px;
  3366. }
  3367. #u64939 {
  3368. border-width:0px;
  3369. position:absolute;
  3370. left:121px;
  3371. top:88px;
  3372. width:77px;
  3373. height:30px;
  3374. display:flex;
  3375. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3376. font-weight:400;
  3377. font-style:normal;
  3378. font-size:14px;
  3379. }
  3380. #u64939 .text {
  3381. position:absolute;
  3382. align-self:center;
  3383. padding:2px 2px 2px 2px;
  3384. box-sizing:border-box;
  3385. width:100%;
  3386. }
  3387. #u64939_text {
  3388. border-width:0px;
  3389. word-wrap:break-word;
  3390. text-transform:none;
  3391. visibility:hidden;
  3392. }
  3393. #u64940_img {
  3394. border-width:0px;
  3395. position:absolute;
  3396. left:0px;
  3397. top:0px;
  3398. width:77px;
  3399. height:30px;
  3400. }
  3401. #u64940 {
  3402. border-width:0px;
  3403. position:absolute;
  3404. left:198px;
  3405. top:88px;
  3406. width:77px;
  3407. height:30px;
  3408. display:flex;
  3409. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3410. font-weight:400;
  3411. font-style:normal;
  3412. font-size:14px;
  3413. }
  3414. #u64940 .text {
  3415. position:absolute;
  3416. align-self:center;
  3417. padding:2px 2px 2px 2px;
  3418. box-sizing:border-box;
  3419. width:100%;
  3420. }
  3421. #u64940_text {
  3422. border-width:0px;
  3423. word-wrap:break-word;
  3424. text-transform:none;
  3425. visibility:hidden;
  3426. }
  3427. #u64941_img {
  3428. border-width:0px;
  3429. position:absolute;
  3430. left:0px;
  3431. top:0px;
  3432. width:78px;
  3433. height:30px;
  3434. }
  3435. #u64941 {
  3436. border-width:0px;
  3437. position:absolute;
  3438. left:275px;
  3439. top:88px;
  3440. width:78px;
  3441. height:30px;
  3442. display:flex;
  3443. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3444. font-weight:400;
  3445. font-style:normal;
  3446. font-size:14px;
  3447. }
  3448. #u64941 .text {
  3449. position:absolute;
  3450. align-self:center;
  3451. padding:2px 2px 2px 2px;
  3452. box-sizing:border-box;
  3453. width:100%;
  3454. }
  3455. #u64941_text {
  3456. border-width:0px;
  3457. word-wrap:break-word;
  3458. text-transform:none;
  3459. visibility:hidden;
  3460. }
  3461. #u64942_img {
  3462. border-width:0px;
  3463. position:absolute;
  3464. left:0px;
  3465. top:0px;
  3466. width:77px;
  3467. height:30px;
  3468. }
  3469. #u64942 {
  3470. border-width:0px;
  3471. position:absolute;
  3472. left:353px;
  3473. top:88px;
  3474. width:77px;
  3475. height:30px;
  3476. display:flex;
  3477. font-size:14px;
  3478. }
  3479. #u64942 .text {
  3480. position:absolute;
  3481. align-self:center;
  3482. padding:2px 2px 2px 2px;
  3483. box-sizing:border-box;
  3484. width:100%;
  3485. }
  3486. #u64942_text {
  3487. border-width:0px;
  3488. word-wrap:break-word;
  3489. text-transform:none;
  3490. visibility:hidden;
  3491. }
  3492. #u64943_img {
  3493. border-width:0px;
  3494. position:absolute;
  3495. left:0px;
  3496. top:0px;
  3497. width:76px;
  3498. height:30px;
  3499. }
  3500. #u64943 {
  3501. border-width:0px;
  3502. position:absolute;
  3503. left:430px;
  3504. top:88px;
  3505. width:76px;
  3506. height:30px;
  3507. display:flex;
  3508. font-size:14px;
  3509. }
  3510. #u64943 .text {
  3511. position:absolute;
  3512. align-self:center;
  3513. padding:2px 2px 2px 2px;
  3514. box-sizing:border-box;
  3515. width:100%;
  3516. }
  3517. #u64943_text {
  3518. border-width:0px;
  3519. word-wrap:break-word;
  3520. text-transform:none;
  3521. visibility:hidden;
  3522. }
  3523. #u64944_img {
  3524. border-width:0px;
  3525. position:absolute;
  3526. left:0px;
  3527. top:0px;
  3528. width:76px;
  3529. height:30px;
  3530. }
  3531. #u64944 {
  3532. border-width:0px;
  3533. position:absolute;
  3534. left:506px;
  3535. top:88px;
  3536. width:76px;
  3537. height:30px;
  3538. display:flex;
  3539. font-size:14px;
  3540. }
  3541. #u64944 .text {
  3542. position:absolute;
  3543. align-self:center;
  3544. padding:2px 2px 2px 2px;
  3545. box-sizing:border-box;
  3546. width:100%;
  3547. }
  3548. #u64944_text {
  3549. border-width:0px;
  3550. word-wrap:break-word;
  3551. text-transform:none;
  3552. visibility:hidden;
  3553. }
  3554. #u64945_img {
  3555. border-width:0px;
  3556. position:absolute;
  3557. left:0px;
  3558. top:0px;
  3559. width:76px;
  3560. height:30px;
  3561. }
  3562. #u64945 {
  3563. border-width:0px;
  3564. position:absolute;
  3565. left:582px;
  3566. top:88px;
  3567. width:76px;
  3568. height:30px;
  3569. display:flex;
  3570. font-size:14px;
  3571. }
  3572. #u64945 .text {
  3573. position:absolute;
  3574. align-self:center;
  3575. padding:2px 2px 2px 2px;
  3576. box-sizing:border-box;
  3577. width:100%;
  3578. }
  3579. #u64945_text {
  3580. border-width:0px;
  3581. word-wrap:break-word;
  3582. text-transform:none;
  3583. visibility:hidden;
  3584. }
  3585. #u64946_img {
  3586. border-width:0px;
  3587. position:absolute;
  3588. left:0px;
  3589. top:0px;
  3590. width:76px;
  3591. height:30px;
  3592. }
  3593. #u64946 {
  3594. border-width:0px;
  3595. position:absolute;
  3596. left:658px;
  3597. top:88px;
  3598. width:76px;
  3599. height:30px;
  3600. display:flex;
  3601. font-size:14px;
  3602. }
  3603. #u64946 .text {
  3604. position:absolute;
  3605. align-self:center;
  3606. padding:2px 2px 2px 2px;
  3607. box-sizing:border-box;
  3608. width:100%;
  3609. }
  3610. #u64946_text {
  3611. border-width:0px;
  3612. word-wrap:break-word;
  3613. text-transform:none;
  3614. visibility:hidden;
  3615. }
  3616. #u64947_img {
  3617. border-width:0px;
  3618. position:absolute;
  3619. left:0px;
  3620. top:0px;
  3621. width:78px;
  3622. height:30px;
  3623. }
  3624. #u64947 {
  3625. border-width:0px;
  3626. position:absolute;
  3627. left:734px;
  3628. top:88px;
  3629. width:78px;
  3630. height:30px;
  3631. display:flex;
  3632. font-size:14px;
  3633. }
  3634. #u64947 .text {
  3635. position:absolute;
  3636. align-self:center;
  3637. padding:2px 2px 2px 2px;
  3638. box-sizing:border-box;
  3639. width:100%;
  3640. }
  3641. #u64947_text {
  3642. border-width:0px;
  3643. word-wrap:break-word;
  3644. text-transform:none;
  3645. visibility:hidden;
  3646. }
  3647. #u64948_img {
  3648. border-width:0px;
  3649. position:absolute;
  3650. left:0px;
  3651. top:0px;
  3652. width:77px;
  3653. height:30px;
  3654. }
  3655. #u64948 {
  3656. border-width:0px;
  3657. position:absolute;
  3658. left:812px;
  3659. top:88px;
  3660. width:77px;
  3661. height:30px;
  3662. display:flex;
  3663. font-size:14px;
  3664. }
  3665. #u64948 .text {
  3666. position:absolute;
  3667. align-self:center;
  3668. padding:2px 2px 2px 2px;
  3669. box-sizing:border-box;
  3670. width:100%;
  3671. }
  3672. #u64948_text {
  3673. border-width:0px;
  3674. word-wrap:break-word;
  3675. text-transform:none;
  3676. visibility:hidden;
  3677. }
  3678. #u64949_img {
  3679. border-width:0px;
  3680. position:absolute;
  3681. left:0px;
  3682. top:0px;
  3683. width:77px;
  3684. height:30px;
  3685. }
  3686. #u64949 {
  3687. border-width:0px;
  3688. position:absolute;
  3689. left:889px;
  3690. top:88px;
  3691. width:77px;
  3692. height:30px;
  3693. display:flex;
  3694. font-size:14px;
  3695. }
  3696. #u64949 .text {
  3697. position:absolute;
  3698. align-self:center;
  3699. padding:2px 2px 2px 2px;
  3700. box-sizing:border-box;
  3701. width:100%;
  3702. }
  3703. #u64949_text {
  3704. border-width:0px;
  3705. word-wrap:break-word;
  3706. text-transform:none;
  3707. visibility:hidden;
  3708. }
  3709. #u64950_img {
  3710. border-width:0px;
  3711. position:absolute;
  3712. left:0px;
  3713. top:0px;
  3714. width:77px;
  3715. height:30px;
  3716. }
  3717. #u64950 {
  3718. border-width:0px;
  3719. position:absolute;
  3720. left:966px;
  3721. top:88px;
  3722. width:77px;
  3723. height:30px;
  3724. display:flex;
  3725. font-size:14px;
  3726. }
  3727. #u64950 .text {
  3728. position:absolute;
  3729. align-self:center;
  3730. padding:2px 2px 2px 2px;
  3731. box-sizing:border-box;
  3732. width:100%;
  3733. }
  3734. #u64950_text {
  3735. border-width:0px;
  3736. word-wrap:break-word;
  3737. text-transform:none;
  3738. visibility:hidden;
  3739. }
  3740. #u64951_img {
  3741. border-width:0px;
  3742. position:absolute;
  3743. left:0px;
  3744. top:0px;
  3745. width:77px;
  3746. height:30px;
  3747. }
  3748. #u64951 {
  3749. border-width:0px;
  3750. position:absolute;
  3751. left:1043px;
  3752. top:88px;
  3753. width:77px;
  3754. height:30px;
  3755. display:flex;
  3756. font-size:14px;
  3757. }
  3758. #u64951 .text {
  3759. position:absolute;
  3760. align-self:center;
  3761. padding:2px 2px 2px 2px;
  3762. box-sizing:border-box;
  3763. width:100%;
  3764. }
  3765. #u64951_text {
  3766. border-width:0px;
  3767. word-wrap:break-word;
  3768. text-transform:none;
  3769. visibility:hidden;
  3770. }
  3771. #u64952_img {
  3772. border-width:0px;
  3773. position:absolute;
  3774. left:0px;
  3775. top:0px;
  3776. width:77px;
  3777. height:30px;
  3778. }
  3779. #u64952 {
  3780. border-width:0px;
  3781. position:absolute;
  3782. left:1120px;
  3783. top:88px;
  3784. width:77px;
  3785. height:30px;
  3786. display:flex;
  3787. font-size:14px;
  3788. }
  3789. #u64952 .text {
  3790. position:absolute;
  3791. align-self:center;
  3792. padding:2px 2px 2px 2px;
  3793. box-sizing:border-box;
  3794. width:100%;
  3795. }
  3796. #u64952_text {
  3797. border-width:0px;
  3798. word-wrap:break-word;
  3799. text-transform:none;
  3800. visibility:hidden;
  3801. }
  3802. #u64953_img {
  3803. border-width:0px;
  3804. position:absolute;
  3805. left:0px;
  3806. top:0px;
  3807. width:80px;
  3808. height:30px;
  3809. }
  3810. #u64953 {
  3811. border-width:0px;
  3812. position:absolute;
  3813. left:1197px;
  3814. top:88px;
  3815. width:80px;
  3816. height:30px;
  3817. display:flex;
  3818. font-size:14px;
  3819. }
  3820. #u64953 .text {
  3821. position:absolute;
  3822. align-self:center;
  3823. padding:2px 2px 2px 2px;
  3824. box-sizing:border-box;
  3825. width:100%;
  3826. }
  3827. #u64953_text {
  3828. border-width:0px;
  3829. word-wrap:break-word;
  3830. text-transform:none;
  3831. visibility:hidden;
  3832. }
  3833. #u64954_img {
  3834. border-width:0px;
  3835. position:absolute;
  3836. left:0px;
  3837. top:0px;
  3838. width:77px;
  3839. height:30px;
  3840. }
  3841. #u64954 {
  3842. border-width:0px;
  3843. position:absolute;
  3844. left:1277px;
  3845. top:88px;
  3846. width:77px;
  3847. height:30px;
  3848. display:flex;
  3849. font-size:14px;
  3850. }
  3851. #u64954 .text {
  3852. position:absolute;
  3853. align-self:center;
  3854. padding:2px 2px 2px 2px;
  3855. box-sizing:border-box;
  3856. width:100%;
  3857. }
  3858. #u64954_text {
  3859. border-width:0px;
  3860. word-wrap:break-word;
  3861. text-transform:none;
  3862. visibility:hidden;
  3863. }
  3864. #u64955_img {
  3865. border-width:0px;
  3866. position:absolute;
  3867. left:0px;
  3868. top:0px;
  3869. width:80px;
  3870. height:30px;
  3871. }
  3872. #u64955 {
  3873. border-width:0px;
  3874. position:absolute;
  3875. left:1354px;
  3876. top:88px;
  3877. width:80px;
  3878. height:30px;
  3879. display:flex;
  3880. font-size:14px;
  3881. }
  3882. #u64955 .text {
  3883. position:absolute;
  3884. align-self:center;
  3885. padding:2px 2px 2px 2px;
  3886. box-sizing:border-box;
  3887. width:100%;
  3888. }
  3889. #u64955_text {
  3890. border-width:0px;
  3891. word-wrap:break-word;
  3892. text-transform:none;
  3893. visibility:hidden;
  3894. }
  3895. #u64956_img {
  3896. border-width:0px;
  3897. position:absolute;
  3898. left:0px;
  3899. top:0px;
  3900. width:77px;
  3901. height:30px;
  3902. }
  3903. #u64956 {
  3904. border-width:0px;
  3905. position:absolute;
  3906. left:1434px;
  3907. top:88px;
  3908. width:77px;
  3909. height:30px;
  3910. display:flex;
  3911. font-size:14px;
  3912. }
  3913. #u64956 .text {
  3914. position:absolute;
  3915. align-self:center;
  3916. padding:2px 2px 2px 2px;
  3917. box-sizing:border-box;
  3918. width:100%;
  3919. }
  3920. #u64956_text {
  3921. border-width:0px;
  3922. word-wrap:break-word;
  3923. text-transform:none;
  3924. visibility:hidden;
  3925. }
  3926. #u64957_img {
  3927. border-width:0px;
  3928. position:absolute;
  3929. left:0px;
  3930. top:0px;
  3931. width:80px;
  3932. height:30px;
  3933. }
  3934. #u64957 {
  3935. border-width:0px;
  3936. position:absolute;
  3937. left:1511px;
  3938. top:88px;
  3939. width:80px;
  3940. height:30px;
  3941. display:flex;
  3942. font-size:14px;
  3943. }
  3944. #u64957 .text {
  3945. position:absolute;
  3946. align-self:center;
  3947. padding:2px 2px 2px 2px;
  3948. box-sizing:border-box;
  3949. width:100%;
  3950. }
  3951. #u64957_text {
  3952. border-width:0px;
  3953. word-wrap:break-word;
  3954. text-transform:none;
  3955. visibility:hidden;
  3956. }
  3957. #u64958_img {
  3958. border-width:0px;
  3959. position:absolute;
  3960. left:0px;
  3961. top:0px;
  3962. width:77px;
  3963. height:30px;
  3964. }
  3965. #u64958 {
  3966. border-width:0px;
  3967. position:absolute;
  3968. left:1591px;
  3969. top:88px;
  3970. width:77px;
  3971. height:30px;
  3972. display:flex;
  3973. font-size:14px;
  3974. }
  3975. #u64958 .text {
  3976. position:absolute;
  3977. align-self:center;
  3978. padding:2px 2px 2px 2px;
  3979. box-sizing:border-box;
  3980. width:100%;
  3981. }
  3982. #u64958_text {
  3983. border-width:0px;
  3984. word-wrap:break-word;
  3985. text-transform:none;
  3986. visibility:hidden;
  3987. }
  3988. #u64959_img {
  3989. border-width:0px;
  3990. position:absolute;
  3991. left:0px;
  3992. top:0px;
  3993. width:80px;
  3994. height:30px;
  3995. }
  3996. #u64959 {
  3997. border-width:0px;
  3998. position:absolute;
  3999. left:1668px;
  4000. top:88px;
  4001. width:80px;
  4002. height:30px;
  4003. display:flex;
  4004. font-size:14px;
  4005. }
  4006. #u64959 .text {
  4007. position:absolute;
  4008. align-self:center;
  4009. padding:2px 2px 2px 2px;
  4010. box-sizing:border-box;
  4011. width:100%;
  4012. }
  4013. #u64959_text {
  4014. border-width:0px;
  4015. word-wrap:break-word;
  4016. text-transform:none;
  4017. visibility:hidden;
  4018. }
  4019. #u64960_img {
  4020. border-width:0px;
  4021. position:absolute;
  4022. left:0px;
  4023. top:0px;
  4024. width:87px;
  4025. height:30px;
  4026. }
  4027. #u64960 {
  4028. border-width:0px;
  4029. position:absolute;
  4030. left:1748px;
  4031. top:88px;
  4032. width:87px;
  4033. height:30px;
  4034. display:flex;
  4035. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4036. font-weight:400;
  4037. font-style:normal;
  4038. font-size:14px;
  4039. color:#1890FF;
  4040. }
  4041. #u64960 .text {
  4042. position:absolute;
  4043. align-self:center;
  4044. padding:2px 2px 2px 2px;
  4045. box-sizing:border-box;
  4046. width:100%;
  4047. }
  4048. #u64960_text {
  4049. border-width:0px;
  4050. word-wrap:break-word;
  4051. text-transform:none;
  4052. }
  4053. #u64961_img {
  4054. border-width:0px;
  4055. position:absolute;
  4056. left:0px;
  4057. top:0px;
  4058. width:44px;
  4059. height:30px;
  4060. }
  4061. #u64961 {
  4062. border-width:0px;
  4063. position:absolute;
  4064. left:0px;
  4065. top:118px;
  4066. width:44px;
  4067. height:30px;
  4068. display:flex;
  4069. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4070. font-weight:400;
  4071. font-style:normal;
  4072. font-size:14px;
  4073. }
  4074. #u64961 .text {
  4075. position:absolute;
  4076. align-self:center;
  4077. padding:2px 2px 2px 2px;
  4078. box-sizing:border-box;
  4079. width:100%;
  4080. }
  4081. #u64961_text {
  4082. border-width:0px;
  4083. word-wrap:break-word;
  4084. text-transform:none;
  4085. visibility:hidden;
  4086. }
  4087. #u64962_img {
  4088. border-width:0px;
  4089. position:absolute;
  4090. left:0px;
  4091. top:0px;
  4092. width:77px;
  4093. height:30px;
  4094. }
  4095. #u64962 {
  4096. border-width:0px;
  4097. position:absolute;
  4098. left:44px;
  4099. top:118px;
  4100. width:77px;
  4101. height:30px;
  4102. display:flex;
  4103. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4104. font-weight:400;
  4105. font-style:normal;
  4106. font-size:14px;
  4107. }
  4108. #u64962 .text {
  4109. position:absolute;
  4110. align-self:center;
  4111. padding:2px 2px 2px 2px;
  4112. box-sizing:border-box;
  4113. width:100%;
  4114. }
  4115. #u64962_text {
  4116. border-width:0px;
  4117. word-wrap:break-word;
  4118. text-transform:none;
  4119. visibility:hidden;
  4120. }
  4121. #u64963_img {
  4122. border-width:0px;
  4123. position:absolute;
  4124. left:0px;
  4125. top:0px;
  4126. width:77px;
  4127. height:30px;
  4128. }
  4129. #u64963 {
  4130. border-width:0px;
  4131. position:absolute;
  4132. left:121px;
  4133. top:118px;
  4134. width:77px;
  4135. height:30px;
  4136. display:flex;
  4137. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4138. font-weight:400;
  4139. font-style:normal;
  4140. font-size:14px;
  4141. }
  4142. #u64963 .text {
  4143. position:absolute;
  4144. align-self:center;
  4145. padding:2px 2px 2px 2px;
  4146. box-sizing:border-box;
  4147. width:100%;
  4148. }
  4149. #u64963_text {
  4150. border-width:0px;
  4151. word-wrap:break-word;
  4152. text-transform:none;
  4153. visibility:hidden;
  4154. }
  4155. #u64964_img {
  4156. border-width:0px;
  4157. position:absolute;
  4158. left:0px;
  4159. top:0px;
  4160. width:77px;
  4161. height:30px;
  4162. }
  4163. #u64964 {
  4164. border-width:0px;
  4165. position:absolute;
  4166. left:198px;
  4167. top:118px;
  4168. width:77px;
  4169. height:30px;
  4170. display:flex;
  4171. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4172. font-weight:400;
  4173. font-style:normal;
  4174. font-size:14px;
  4175. }
  4176. #u64964 .text {
  4177. position:absolute;
  4178. align-self:center;
  4179. padding:2px 2px 2px 2px;
  4180. box-sizing:border-box;
  4181. width:100%;
  4182. }
  4183. #u64964_text {
  4184. border-width:0px;
  4185. word-wrap:break-word;
  4186. text-transform:none;
  4187. visibility:hidden;
  4188. }
  4189. #u64965_img {
  4190. border-width:0px;
  4191. position:absolute;
  4192. left:0px;
  4193. top:0px;
  4194. width:78px;
  4195. height:30px;
  4196. }
  4197. #u64965 {
  4198. border-width:0px;
  4199. position:absolute;
  4200. left:275px;
  4201. top:118px;
  4202. width:78px;
  4203. height:30px;
  4204. display:flex;
  4205. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4206. font-weight:400;
  4207. font-style:normal;
  4208. font-size:14px;
  4209. }
  4210. #u64965 .text {
  4211. position:absolute;
  4212. align-self:center;
  4213. padding:2px 2px 2px 2px;
  4214. box-sizing:border-box;
  4215. width:100%;
  4216. }
  4217. #u64965_text {
  4218. border-width:0px;
  4219. word-wrap:break-word;
  4220. text-transform:none;
  4221. visibility:hidden;
  4222. }
  4223. #u64966_img {
  4224. border-width:0px;
  4225. position:absolute;
  4226. left:0px;
  4227. top:0px;
  4228. width:77px;
  4229. height:30px;
  4230. }
  4231. #u64966 {
  4232. border-width:0px;
  4233. position:absolute;
  4234. left:353px;
  4235. top:118px;
  4236. width:77px;
  4237. height:30px;
  4238. display:flex;
  4239. font-size:14px;
  4240. }
  4241. #u64966 .text {
  4242. position:absolute;
  4243. align-self:center;
  4244. padding:2px 2px 2px 2px;
  4245. box-sizing:border-box;
  4246. width:100%;
  4247. }
  4248. #u64966_text {
  4249. border-width:0px;
  4250. word-wrap:break-word;
  4251. text-transform:none;
  4252. visibility:hidden;
  4253. }
  4254. #u64967_img {
  4255. border-width:0px;
  4256. position:absolute;
  4257. left:0px;
  4258. top:0px;
  4259. width:76px;
  4260. height:30px;
  4261. }
  4262. #u64967 {
  4263. border-width:0px;
  4264. position:absolute;
  4265. left:430px;
  4266. top:118px;
  4267. width:76px;
  4268. height:30px;
  4269. display:flex;
  4270. font-size:14px;
  4271. }
  4272. #u64967 .text {
  4273. position:absolute;
  4274. align-self:center;
  4275. padding:2px 2px 2px 2px;
  4276. box-sizing:border-box;
  4277. width:100%;
  4278. }
  4279. #u64967_text {
  4280. border-width:0px;
  4281. word-wrap:break-word;
  4282. text-transform:none;
  4283. visibility:hidden;
  4284. }
  4285. #u64968_img {
  4286. border-width:0px;
  4287. position:absolute;
  4288. left:0px;
  4289. top:0px;
  4290. width:76px;
  4291. height:30px;
  4292. }
  4293. #u64968 {
  4294. border-width:0px;
  4295. position:absolute;
  4296. left:506px;
  4297. top:118px;
  4298. width:76px;
  4299. height:30px;
  4300. display:flex;
  4301. font-size:14px;
  4302. }
  4303. #u64968 .text {
  4304. position:absolute;
  4305. align-self:center;
  4306. padding:2px 2px 2px 2px;
  4307. box-sizing:border-box;
  4308. width:100%;
  4309. }
  4310. #u64968_text {
  4311. border-width:0px;
  4312. word-wrap:break-word;
  4313. text-transform:none;
  4314. visibility:hidden;
  4315. }
  4316. #u64969_img {
  4317. border-width:0px;
  4318. position:absolute;
  4319. left:0px;
  4320. top:0px;
  4321. width:76px;
  4322. height:30px;
  4323. }
  4324. #u64969 {
  4325. border-width:0px;
  4326. position:absolute;
  4327. left:582px;
  4328. top:118px;
  4329. width:76px;
  4330. height:30px;
  4331. display:flex;
  4332. font-size:14px;
  4333. }
  4334. #u64969 .text {
  4335. position:absolute;
  4336. align-self:center;
  4337. padding:2px 2px 2px 2px;
  4338. box-sizing:border-box;
  4339. width:100%;
  4340. }
  4341. #u64969_text {
  4342. border-width:0px;
  4343. word-wrap:break-word;
  4344. text-transform:none;
  4345. visibility:hidden;
  4346. }
  4347. #u64970_img {
  4348. border-width:0px;
  4349. position:absolute;
  4350. left:0px;
  4351. top:0px;
  4352. width:76px;
  4353. height:30px;
  4354. }
  4355. #u64970 {
  4356. border-width:0px;
  4357. position:absolute;
  4358. left:658px;
  4359. top:118px;
  4360. width:76px;
  4361. height:30px;
  4362. display:flex;
  4363. font-size:14px;
  4364. }
  4365. #u64970 .text {
  4366. position:absolute;
  4367. align-self:center;
  4368. padding:2px 2px 2px 2px;
  4369. box-sizing:border-box;
  4370. width:100%;
  4371. }
  4372. #u64970_text {
  4373. border-width:0px;
  4374. word-wrap:break-word;
  4375. text-transform:none;
  4376. visibility:hidden;
  4377. }
  4378. #u64971_img {
  4379. border-width:0px;
  4380. position:absolute;
  4381. left:0px;
  4382. top:0px;
  4383. width:78px;
  4384. height:30px;
  4385. }
  4386. #u64971 {
  4387. border-width:0px;
  4388. position:absolute;
  4389. left:734px;
  4390. top:118px;
  4391. width:78px;
  4392. height:30px;
  4393. display:flex;
  4394. font-size:14px;
  4395. }
  4396. #u64971 .text {
  4397. position:absolute;
  4398. align-self:center;
  4399. padding:2px 2px 2px 2px;
  4400. box-sizing:border-box;
  4401. width:100%;
  4402. }
  4403. #u64971_text {
  4404. border-width:0px;
  4405. word-wrap:break-word;
  4406. text-transform:none;
  4407. visibility:hidden;
  4408. }
  4409. #u64972_img {
  4410. border-width:0px;
  4411. position:absolute;
  4412. left:0px;
  4413. top:0px;
  4414. width:77px;
  4415. height:30px;
  4416. }
  4417. #u64972 {
  4418. border-width:0px;
  4419. position:absolute;
  4420. left:812px;
  4421. top:118px;
  4422. width:77px;
  4423. height:30px;
  4424. display:flex;
  4425. font-size:14px;
  4426. }
  4427. #u64972 .text {
  4428. position:absolute;
  4429. align-self:center;
  4430. padding:2px 2px 2px 2px;
  4431. box-sizing:border-box;
  4432. width:100%;
  4433. }
  4434. #u64972_text {
  4435. border-width:0px;
  4436. word-wrap:break-word;
  4437. text-transform:none;
  4438. visibility:hidden;
  4439. }
  4440. #u64973_img {
  4441. border-width:0px;
  4442. position:absolute;
  4443. left:0px;
  4444. top:0px;
  4445. width:77px;
  4446. height:30px;
  4447. }
  4448. #u64973 {
  4449. border-width:0px;
  4450. position:absolute;
  4451. left:889px;
  4452. top:118px;
  4453. width:77px;
  4454. height:30px;
  4455. display:flex;
  4456. font-size:14px;
  4457. }
  4458. #u64973 .text {
  4459. position:absolute;
  4460. align-self:center;
  4461. padding:2px 2px 2px 2px;
  4462. box-sizing:border-box;
  4463. width:100%;
  4464. }
  4465. #u64973_text {
  4466. border-width:0px;
  4467. word-wrap:break-word;
  4468. text-transform:none;
  4469. visibility:hidden;
  4470. }
  4471. #u64974_img {
  4472. border-width:0px;
  4473. position:absolute;
  4474. left:0px;
  4475. top:0px;
  4476. width:77px;
  4477. height:30px;
  4478. }
  4479. #u64974 {
  4480. border-width:0px;
  4481. position:absolute;
  4482. left:966px;
  4483. top:118px;
  4484. width:77px;
  4485. height:30px;
  4486. display:flex;
  4487. font-size:14px;
  4488. }
  4489. #u64974 .text {
  4490. position:absolute;
  4491. align-self:center;
  4492. padding:2px 2px 2px 2px;
  4493. box-sizing:border-box;
  4494. width:100%;
  4495. }
  4496. #u64974_text {
  4497. border-width:0px;
  4498. word-wrap:break-word;
  4499. text-transform:none;
  4500. visibility:hidden;
  4501. }
  4502. #u64975_img {
  4503. border-width:0px;
  4504. position:absolute;
  4505. left:0px;
  4506. top:0px;
  4507. width:77px;
  4508. height:30px;
  4509. }
  4510. #u64975 {
  4511. border-width:0px;
  4512. position:absolute;
  4513. left:1043px;
  4514. top:118px;
  4515. width:77px;
  4516. height:30px;
  4517. display:flex;
  4518. font-size:14px;
  4519. }
  4520. #u64975 .text {
  4521. position:absolute;
  4522. align-self:center;
  4523. padding:2px 2px 2px 2px;
  4524. box-sizing:border-box;
  4525. width:100%;
  4526. }
  4527. #u64975_text {
  4528. border-width:0px;
  4529. word-wrap:break-word;
  4530. text-transform:none;
  4531. visibility:hidden;
  4532. }
  4533. #u64976_img {
  4534. border-width:0px;
  4535. position:absolute;
  4536. left:0px;
  4537. top:0px;
  4538. width:77px;
  4539. height:30px;
  4540. }
  4541. #u64976 {
  4542. border-width:0px;
  4543. position:absolute;
  4544. left:1120px;
  4545. top:118px;
  4546. width:77px;
  4547. height:30px;
  4548. display:flex;
  4549. font-size:14px;
  4550. }
  4551. #u64976 .text {
  4552. position:absolute;
  4553. align-self:center;
  4554. padding:2px 2px 2px 2px;
  4555. box-sizing:border-box;
  4556. width:100%;
  4557. }
  4558. #u64976_text {
  4559. border-width:0px;
  4560. word-wrap:break-word;
  4561. text-transform:none;
  4562. visibility:hidden;
  4563. }
  4564. #u64977_img {
  4565. border-width:0px;
  4566. position:absolute;
  4567. left:0px;
  4568. top:0px;
  4569. width:80px;
  4570. height:30px;
  4571. }
  4572. #u64977 {
  4573. border-width:0px;
  4574. position:absolute;
  4575. left:1197px;
  4576. top:118px;
  4577. width:80px;
  4578. height:30px;
  4579. display:flex;
  4580. font-size:14px;
  4581. }
  4582. #u64977 .text {
  4583. position:absolute;
  4584. align-self:center;
  4585. padding:2px 2px 2px 2px;
  4586. box-sizing:border-box;
  4587. width:100%;
  4588. }
  4589. #u64977_text {
  4590. border-width:0px;
  4591. word-wrap:break-word;
  4592. text-transform:none;
  4593. visibility:hidden;
  4594. }
  4595. #u64978_img {
  4596. border-width:0px;
  4597. position:absolute;
  4598. left:0px;
  4599. top:0px;
  4600. width:77px;
  4601. height:30px;
  4602. }
  4603. #u64978 {
  4604. border-width:0px;
  4605. position:absolute;
  4606. left:1277px;
  4607. top:118px;
  4608. width:77px;
  4609. height:30px;
  4610. display:flex;
  4611. font-size:14px;
  4612. }
  4613. #u64978 .text {
  4614. position:absolute;
  4615. align-self:center;
  4616. padding:2px 2px 2px 2px;
  4617. box-sizing:border-box;
  4618. width:100%;
  4619. }
  4620. #u64978_text {
  4621. border-width:0px;
  4622. word-wrap:break-word;
  4623. text-transform:none;
  4624. visibility:hidden;
  4625. }
  4626. #u64979_img {
  4627. border-width:0px;
  4628. position:absolute;
  4629. left:0px;
  4630. top:0px;
  4631. width:80px;
  4632. height:30px;
  4633. }
  4634. #u64979 {
  4635. border-width:0px;
  4636. position:absolute;
  4637. left:1354px;
  4638. top:118px;
  4639. width:80px;
  4640. height:30px;
  4641. display:flex;
  4642. font-size:14px;
  4643. }
  4644. #u64979 .text {
  4645. position:absolute;
  4646. align-self:center;
  4647. padding:2px 2px 2px 2px;
  4648. box-sizing:border-box;
  4649. width:100%;
  4650. }
  4651. #u64979_text {
  4652. border-width:0px;
  4653. word-wrap:break-word;
  4654. text-transform:none;
  4655. visibility:hidden;
  4656. }
  4657. #u64980_img {
  4658. border-width:0px;
  4659. position:absolute;
  4660. left:0px;
  4661. top:0px;
  4662. width:77px;
  4663. height:30px;
  4664. }
  4665. #u64980 {
  4666. border-width:0px;
  4667. position:absolute;
  4668. left:1434px;
  4669. top:118px;
  4670. width:77px;
  4671. height:30px;
  4672. display:flex;
  4673. font-size:14px;
  4674. }
  4675. #u64980 .text {
  4676. position:absolute;
  4677. align-self:center;
  4678. padding:2px 2px 2px 2px;
  4679. box-sizing:border-box;
  4680. width:100%;
  4681. }
  4682. #u64980_text {
  4683. border-width:0px;
  4684. word-wrap:break-word;
  4685. text-transform:none;
  4686. visibility:hidden;
  4687. }
  4688. #u64981_img {
  4689. border-width:0px;
  4690. position:absolute;
  4691. left:0px;
  4692. top:0px;
  4693. width:80px;
  4694. height:30px;
  4695. }
  4696. #u64981 {
  4697. border-width:0px;
  4698. position:absolute;
  4699. left:1511px;
  4700. top:118px;
  4701. width:80px;
  4702. height:30px;
  4703. display:flex;
  4704. font-size:14px;
  4705. }
  4706. #u64981 .text {
  4707. position:absolute;
  4708. align-self:center;
  4709. padding:2px 2px 2px 2px;
  4710. box-sizing:border-box;
  4711. width:100%;
  4712. }
  4713. #u64981_text {
  4714. border-width:0px;
  4715. word-wrap:break-word;
  4716. text-transform:none;
  4717. visibility:hidden;
  4718. }
  4719. #u64982_img {
  4720. border-width:0px;
  4721. position:absolute;
  4722. left:0px;
  4723. top:0px;
  4724. width:77px;
  4725. height:30px;
  4726. }
  4727. #u64982 {
  4728. border-width:0px;
  4729. position:absolute;
  4730. left:1591px;
  4731. top:118px;
  4732. width:77px;
  4733. height:30px;
  4734. display:flex;
  4735. font-size:14px;
  4736. }
  4737. #u64982 .text {
  4738. position:absolute;
  4739. align-self:center;
  4740. padding:2px 2px 2px 2px;
  4741. box-sizing:border-box;
  4742. width:100%;
  4743. }
  4744. #u64982_text {
  4745. border-width:0px;
  4746. word-wrap:break-word;
  4747. text-transform:none;
  4748. visibility:hidden;
  4749. }
  4750. #u64983_img {
  4751. border-width:0px;
  4752. position:absolute;
  4753. left:0px;
  4754. top:0px;
  4755. width:80px;
  4756. height:30px;
  4757. }
  4758. #u64983 {
  4759. border-width:0px;
  4760. position:absolute;
  4761. left:1668px;
  4762. top:118px;
  4763. width:80px;
  4764. height:30px;
  4765. display:flex;
  4766. font-size:14px;
  4767. }
  4768. #u64983 .text {
  4769. position:absolute;
  4770. align-self:center;
  4771. padding:2px 2px 2px 2px;
  4772. box-sizing:border-box;
  4773. width:100%;
  4774. }
  4775. #u64983_text {
  4776. border-width:0px;
  4777. word-wrap:break-word;
  4778. text-transform:none;
  4779. visibility:hidden;
  4780. }
  4781. #u64984_img {
  4782. border-width:0px;
  4783. position:absolute;
  4784. left:0px;
  4785. top:0px;
  4786. width:87px;
  4787. height:30px;
  4788. }
  4789. #u64984 {
  4790. border-width:0px;
  4791. position:absolute;
  4792. left:1748px;
  4793. top:118px;
  4794. width:87px;
  4795. height:30px;
  4796. display:flex;
  4797. font-size:14px;
  4798. }
  4799. #u64984 .text {
  4800. position:absolute;
  4801. align-self:center;
  4802. padding:2px 2px 2px 2px;
  4803. box-sizing:border-box;
  4804. width:100%;
  4805. }
  4806. #u64984_text {
  4807. border-width:0px;
  4808. word-wrap:break-word;
  4809. text-transform:none;
  4810. visibility:hidden;
  4811. }
  4812. #u64985_img {
  4813. border-width:0px;
  4814. position:absolute;
  4815. left:0px;
  4816. top:0px;
  4817. width:44px;
  4818. height:30px;
  4819. }
  4820. #u64985 {
  4821. border-width:0px;
  4822. position:absolute;
  4823. left:0px;
  4824. top:148px;
  4825. width:44px;
  4826. height:30px;
  4827. display:flex;
  4828. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4829. font-weight:400;
  4830. font-style:normal;
  4831. font-size:14px;
  4832. }
  4833. #u64985 .text {
  4834. position:absolute;
  4835. align-self:center;
  4836. padding:2px 2px 2px 2px;
  4837. box-sizing:border-box;
  4838. width:100%;
  4839. }
  4840. #u64985_text {
  4841. border-width:0px;
  4842. word-wrap:break-word;
  4843. text-transform:none;
  4844. visibility:hidden;
  4845. }
  4846. #u64986_img {
  4847. border-width:0px;
  4848. position:absolute;
  4849. left:0px;
  4850. top:0px;
  4851. width:77px;
  4852. height:30px;
  4853. }
  4854. #u64986 {
  4855. border-width:0px;
  4856. position:absolute;
  4857. left:44px;
  4858. top:148px;
  4859. width:77px;
  4860. height:30px;
  4861. display:flex;
  4862. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4863. font-weight:400;
  4864. font-style:normal;
  4865. font-size:14px;
  4866. }
  4867. #u64986 .text {
  4868. position:absolute;
  4869. align-self:center;
  4870. padding:2px 2px 2px 2px;
  4871. box-sizing:border-box;
  4872. width:100%;
  4873. }
  4874. #u64986_text {
  4875. border-width:0px;
  4876. word-wrap:break-word;
  4877. text-transform:none;
  4878. visibility:hidden;
  4879. }
  4880. #u64987_img {
  4881. border-width:0px;
  4882. position:absolute;
  4883. left:0px;
  4884. top:0px;
  4885. width:77px;
  4886. height:30px;
  4887. }
  4888. #u64987 {
  4889. border-width:0px;
  4890. position:absolute;
  4891. left:121px;
  4892. top:148px;
  4893. width:77px;
  4894. height:30px;
  4895. display:flex;
  4896. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4897. font-weight:400;
  4898. font-style:normal;
  4899. font-size:14px;
  4900. }
  4901. #u64987 .text {
  4902. position:absolute;
  4903. align-self:center;
  4904. padding:2px 2px 2px 2px;
  4905. box-sizing:border-box;
  4906. width:100%;
  4907. }
  4908. #u64987_text {
  4909. border-width:0px;
  4910. word-wrap:break-word;
  4911. text-transform:none;
  4912. visibility:hidden;
  4913. }
  4914. #u64988_img {
  4915. border-width:0px;
  4916. position:absolute;
  4917. left:0px;
  4918. top:0px;
  4919. width:77px;
  4920. height:30px;
  4921. }
  4922. #u64988 {
  4923. border-width:0px;
  4924. position:absolute;
  4925. left:198px;
  4926. top:148px;
  4927. width:77px;
  4928. height:30px;
  4929. display:flex;
  4930. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4931. font-weight:400;
  4932. font-style:normal;
  4933. font-size:14px;
  4934. }
  4935. #u64988 .text {
  4936. position:absolute;
  4937. align-self:center;
  4938. padding:2px 2px 2px 2px;
  4939. box-sizing:border-box;
  4940. width:100%;
  4941. }
  4942. #u64988_text {
  4943. border-width:0px;
  4944. word-wrap:break-word;
  4945. text-transform:none;
  4946. visibility:hidden;
  4947. }
  4948. #u64989_img {
  4949. border-width:0px;
  4950. position:absolute;
  4951. left:0px;
  4952. top:0px;
  4953. width:78px;
  4954. height:30px;
  4955. }
  4956. #u64989 {
  4957. border-width:0px;
  4958. position:absolute;
  4959. left:275px;
  4960. top:148px;
  4961. width:78px;
  4962. height:30px;
  4963. display:flex;
  4964. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4965. font-weight:400;
  4966. font-style:normal;
  4967. font-size:14px;
  4968. }
  4969. #u64989 .text {
  4970. position:absolute;
  4971. align-self:center;
  4972. padding:2px 2px 2px 2px;
  4973. box-sizing:border-box;
  4974. width:100%;
  4975. }
  4976. #u64989_text {
  4977. border-width:0px;
  4978. word-wrap:break-word;
  4979. text-transform:none;
  4980. visibility:hidden;
  4981. }
  4982. #u64990_img {
  4983. border-width:0px;
  4984. position:absolute;
  4985. left:0px;
  4986. top:0px;
  4987. width:77px;
  4988. height:30px;
  4989. }
  4990. #u64990 {
  4991. border-width:0px;
  4992. position:absolute;
  4993. left:353px;
  4994. top:148px;
  4995. width:77px;
  4996. height:30px;
  4997. display:flex;
  4998. font-size:14px;
  4999. }
  5000. #u64990 .text {
  5001. position:absolute;
  5002. align-self:center;
  5003. padding:2px 2px 2px 2px;
  5004. box-sizing:border-box;
  5005. width:100%;
  5006. }
  5007. #u64990_text {
  5008. border-width:0px;
  5009. word-wrap:break-word;
  5010. text-transform:none;
  5011. visibility:hidden;
  5012. }
  5013. #u64991_img {
  5014. border-width:0px;
  5015. position:absolute;
  5016. left:0px;
  5017. top:0px;
  5018. width:76px;
  5019. height:30px;
  5020. }
  5021. #u64991 {
  5022. border-width:0px;
  5023. position:absolute;
  5024. left:430px;
  5025. top:148px;
  5026. width:76px;
  5027. height:30px;
  5028. display:flex;
  5029. font-size:14px;
  5030. }
  5031. #u64991 .text {
  5032. position:absolute;
  5033. align-self:center;
  5034. padding:2px 2px 2px 2px;
  5035. box-sizing:border-box;
  5036. width:100%;
  5037. }
  5038. #u64991_text {
  5039. border-width:0px;
  5040. word-wrap:break-word;
  5041. text-transform:none;
  5042. visibility:hidden;
  5043. }
  5044. #u64992_img {
  5045. border-width:0px;
  5046. position:absolute;
  5047. left:0px;
  5048. top:0px;
  5049. width:76px;
  5050. height:30px;
  5051. }
  5052. #u64992 {
  5053. border-width:0px;
  5054. position:absolute;
  5055. left:506px;
  5056. top:148px;
  5057. width:76px;
  5058. height:30px;
  5059. display:flex;
  5060. font-size:14px;
  5061. }
  5062. #u64992 .text {
  5063. position:absolute;
  5064. align-self:center;
  5065. padding:2px 2px 2px 2px;
  5066. box-sizing:border-box;
  5067. width:100%;
  5068. }
  5069. #u64992_text {
  5070. border-width:0px;
  5071. word-wrap:break-word;
  5072. text-transform:none;
  5073. visibility:hidden;
  5074. }
  5075. #u64993_img {
  5076. border-width:0px;
  5077. position:absolute;
  5078. left:0px;
  5079. top:0px;
  5080. width:76px;
  5081. height:30px;
  5082. }
  5083. #u64993 {
  5084. border-width:0px;
  5085. position:absolute;
  5086. left:582px;
  5087. top:148px;
  5088. width:76px;
  5089. height:30px;
  5090. display:flex;
  5091. font-size:14px;
  5092. }
  5093. #u64993 .text {
  5094. position:absolute;
  5095. align-self:center;
  5096. padding:2px 2px 2px 2px;
  5097. box-sizing:border-box;
  5098. width:100%;
  5099. }
  5100. #u64993_text {
  5101. border-width:0px;
  5102. word-wrap:break-word;
  5103. text-transform:none;
  5104. visibility:hidden;
  5105. }
  5106. #u64994_img {
  5107. border-width:0px;
  5108. position:absolute;
  5109. left:0px;
  5110. top:0px;
  5111. width:76px;
  5112. height:30px;
  5113. }
  5114. #u64994 {
  5115. border-width:0px;
  5116. position:absolute;
  5117. left:658px;
  5118. top:148px;
  5119. width:76px;
  5120. height:30px;
  5121. display:flex;
  5122. font-size:14px;
  5123. }
  5124. #u64994 .text {
  5125. position:absolute;
  5126. align-self:center;
  5127. padding:2px 2px 2px 2px;
  5128. box-sizing:border-box;
  5129. width:100%;
  5130. }
  5131. #u64994_text {
  5132. border-width:0px;
  5133. word-wrap:break-word;
  5134. text-transform:none;
  5135. visibility:hidden;
  5136. }
  5137. #u64995_img {
  5138. border-width:0px;
  5139. position:absolute;
  5140. left:0px;
  5141. top:0px;
  5142. width:78px;
  5143. height:30px;
  5144. }
  5145. #u64995 {
  5146. border-width:0px;
  5147. position:absolute;
  5148. left:734px;
  5149. top:148px;
  5150. width:78px;
  5151. height:30px;
  5152. display:flex;
  5153. font-size:14px;
  5154. }
  5155. #u64995 .text {
  5156. position:absolute;
  5157. align-self:center;
  5158. padding:2px 2px 2px 2px;
  5159. box-sizing:border-box;
  5160. width:100%;
  5161. }
  5162. #u64995_text {
  5163. border-width:0px;
  5164. word-wrap:break-word;
  5165. text-transform:none;
  5166. visibility:hidden;
  5167. }
  5168. #u64996_img {
  5169. border-width:0px;
  5170. position:absolute;
  5171. left:0px;
  5172. top:0px;
  5173. width:77px;
  5174. height:30px;
  5175. }
  5176. #u64996 {
  5177. border-width:0px;
  5178. position:absolute;
  5179. left:812px;
  5180. top:148px;
  5181. width:77px;
  5182. height:30px;
  5183. display:flex;
  5184. font-size:14px;
  5185. }
  5186. #u64996 .text {
  5187. position:absolute;
  5188. align-self:center;
  5189. padding:2px 2px 2px 2px;
  5190. box-sizing:border-box;
  5191. width:100%;
  5192. }
  5193. #u64996_text {
  5194. border-width:0px;
  5195. word-wrap:break-word;
  5196. text-transform:none;
  5197. visibility:hidden;
  5198. }
  5199. #u64997_img {
  5200. border-width:0px;
  5201. position:absolute;
  5202. left:0px;
  5203. top:0px;
  5204. width:77px;
  5205. height:30px;
  5206. }
  5207. #u64997 {
  5208. border-width:0px;
  5209. position:absolute;
  5210. left:889px;
  5211. top:148px;
  5212. width:77px;
  5213. height:30px;
  5214. display:flex;
  5215. font-size:14px;
  5216. }
  5217. #u64997 .text {
  5218. position:absolute;
  5219. align-self:center;
  5220. padding:2px 2px 2px 2px;
  5221. box-sizing:border-box;
  5222. width:100%;
  5223. }
  5224. #u64997_text {
  5225. border-width:0px;
  5226. word-wrap:break-word;
  5227. text-transform:none;
  5228. visibility:hidden;
  5229. }
  5230. #u64998_img {
  5231. border-width:0px;
  5232. position:absolute;
  5233. left:0px;
  5234. top:0px;
  5235. width:77px;
  5236. height:30px;
  5237. }
  5238. #u64998 {
  5239. border-width:0px;
  5240. position:absolute;
  5241. left:966px;
  5242. top:148px;
  5243. width:77px;
  5244. height:30px;
  5245. display:flex;
  5246. font-size:14px;
  5247. }
  5248. #u64998 .text {
  5249. position:absolute;
  5250. align-self:center;
  5251. padding:2px 2px 2px 2px;
  5252. box-sizing:border-box;
  5253. width:100%;
  5254. }
  5255. #u64998_text {
  5256. border-width:0px;
  5257. word-wrap:break-word;
  5258. text-transform:none;
  5259. visibility:hidden;
  5260. }
  5261. #u64999_img {
  5262. border-width:0px;
  5263. position:absolute;
  5264. left:0px;
  5265. top:0px;
  5266. width:77px;
  5267. height:30px;
  5268. }
  5269. #u64999 {
  5270. border-width:0px;
  5271. position:absolute;
  5272. left:1043px;
  5273. top:148px;
  5274. width:77px;
  5275. height:30px;
  5276. display:flex;
  5277. font-size:14px;
  5278. }
  5279. #u64999 .text {
  5280. position:absolute;
  5281. align-self:center;
  5282. padding:2px 2px 2px 2px;
  5283. box-sizing:border-box;
  5284. width:100%;
  5285. }
  5286. #u64999_text {
  5287. border-width:0px;
  5288. word-wrap:break-word;
  5289. text-transform:none;
  5290. visibility:hidden;
  5291. }
  5292. #u65000_img {
  5293. border-width:0px;
  5294. position:absolute;
  5295. left:0px;
  5296. top:0px;
  5297. width:77px;
  5298. height:30px;
  5299. }
  5300. #u65000 {
  5301. border-width:0px;
  5302. position:absolute;
  5303. left:1120px;
  5304. top:148px;
  5305. width:77px;
  5306. height:30px;
  5307. display:flex;
  5308. font-size:14px;
  5309. }
  5310. #u65000 .text {
  5311. position:absolute;
  5312. align-self:center;
  5313. padding:2px 2px 2px 2px;
  5314. box-sizing:border-box;
  5315. width:100%;
  5316. }
  5317. #u65000_text {
  5318. border-width:0px;
  5319. word-wrap:break-word;
  5320. text-transform:none;
  5321. visibility:hidden;
  5322. }
  5323. #u65001_img {
  5324. border-width:0px;
  5325. position:absolute;
  5326. left:0px;
  5327. top:0px;
  5328. width:80px;
  5329. height:30px;
  5330. }
  5331. #u65001 {
  5332. border-width:0px;
  5333. position:absolute;
  5334. left:1197px;
  5335. top:148px;
  5336. width:80px;
  5337. height:30px;
  5338. display:flex;
  5339. font-size:14px;
  5340. }
  5341. #u65001 .text {
  5342. position:absolute;
  5343. align-self:center;
  5344. padding:2px 2px 2px 2px;
  5345. box-sizing:border-box;
  5346. width:100%;
  5347. }
  5348. #u65001_text {
  5349. border-width:0px;
  5350. word-wrap:break-word;
  5351. text-transform:none;
  5352. visibility:hidden;
  5353. }
  5354. #u65002_img {
  5355. border-width:0px;
  5356. position:absolute;
  5357. left:0px;
  5358. top:0px;
  5359. width:77px;
  5360. height:30px;
  5361. }
  5362. #u65002 {
  5363. border-width:0px;
  5364. position:absolute;
  5365. left:1277px;
  5366. top:148px;
  5367. width:77px;
  5368. height:30px;
  5369. display:flex;
  5370. font-size:14px;
  5371. }
  5372. #u65002 .text {
  5373. position:absolute;
  5374. align-self:center;
  5375. padding:2px 2px 2px 2px;
  5376. box-sizing:border-box;
  5377. width:100%;
  5378. }
  5379. #u65002_text {
  5380. border-width:0px;
  5381. word-wrap:break-word;
  5382. text-transform:none;
  5383. visibility:hidden;
  5384. }
  5385. #u65003_img {
  5386. border-width:0px;
  5387. position:absolute;
  5388. left:0px;
  5389. top:0px;
  5390. width:80px;
  5391. height:30px;
  5392. }
  5393. #u65003 {
  5394. border-width:0px;
  5395. position:absolute;
  5396. left:1354px;
  5397. top:148px;
  5398. width:80px;
  5399. height:30px;
  5400. display:flex;
  5401. font-size:14px;
  5402. }
  5403. #u65003 .text {
  5404. position:absolute;
  5405. align-self:center;
  5406. padding:2px 2px 2px 2px;
  5407. box-sizing:border-box;
  5408. width:100%;
  5409. }
  5410. #u65003_text {
  5411. border-width:0px;
  5412. word-wrap:break-word;
  5413. text-transform:none;
  5414. visibility:hidden;
  5415. }
  5416. #u65004_img {
  5417. border-width:0px;
  5418. position:absolute;
  5419. left:0px;
  5420. top:0px;
  5421. width:77px;
  5422. height:30px;
  5423. }
  5424. #u65004 {
  5425. border-width:0px;
  5426. position:absolute;
  5427. left:1434px;
  5428. top:148px;
  5429. width:77px;
  5430. height:30px;
  5431. display:flex;
  5432. font-size:14px;
  5433. }
  5434. #u65004 .text {
  5435. position:absolute;
  5436. align-self:center;
  5437. padding:2px 2px 2px 2px;
  5438. box-sizing:border-box;
  5439. width:100%;
  5440. }
  5441. #u65004_text {
  5442. border-width:0px;
  5443. word-wrap:break-word;
  5444. text-transform:none;
  5445. visibility:hidden;
  5446. }
  5447. #u65005_img {
  5448. border-width:0px;
  5449. position:absolute;
  5450. left:0px;
  5451. top:0px;
  5452. width:80px;
  5453. height:30px;
  5454. }
  5455. #u65005 {
  5456. border-width:0px;
  5457. position:absolute;
  5458. left:1511px;
  5459. top:148px;
  5460. width:80px;
  5461. height:30px;
  5462. display:flex;
  5463. font-size:14px;
  5464. }
  5465. #u65005 .text {
  5466. position:absolute;
  5467. align-self:center;
  5468. padding:2px 2px 2px 2px;
  5469. box-sizing:border-box;
  5470. width:100%;
  5471. }
  5472. #u65005_text {
  5473. border-width:0px;
  5474. word-wrap:break-word;
  5475. text-transform:none;
  5476. visibility:hidden;
  5477. }
  5478. #u65006_img {
  5479. border-width:0px;
  5480. position:absolute;
  5481. left:0px;
  5482. top:0px;
  5483. width:77px;
  5484. height:30px;
  5485. }
  5486. #u65006 {
  5487. border-width:0px;
  5488. position:absolute;
  5489. left:1591px;
  5490. top:148px;
  5491. width:77px;
  5492. height:30px;
  5493. display:flex;
  5494. font-size:14px;
  5495. }
  5496. #u65006 .text {
  5497. position:absolute;
  5498. align-self:center;
  5499. padding:2px 2px 2px 2px;
  5500. box-sizing:border-box;
  5501. width:100%;
  5502. }
  5503. #u65006_text {
  5504. border-width:0px;
  5505. word-wrap:break-word;
  5506. text-transform:none;
  5507. visibility:hidden;
  5508. }
  5509. #u65007_img {
  5510. border-width:0px;
  5511. position:absolute;
  5512. left:0px;
  5513. top:0px;
  5514. width:80px;
  5515. height:30px;
  5516. }
  5517. #u65007 {
  5518. border-width:0px;
  5519. position:absolute;
  5520. left:1668px;
  5521. top:148px;
  5522. width:80px;
  5523. height:30px;
  5524. display:flex;
  5525. font-size:14px;
  5526. }
  5527. #u65007 .text {
  5528. position:absolute;
  5529. align-self:center;
  5530. padding:2px 2px 2px 2px;
  5531. box-sizing:border-box;
  5532. width:100%;
  5533. }
  5534. #u65007_text {
  5535. border-width:0px;
  5536. word-wrap:break-word;
  5537. text-transform:none;
  5538. visibility:hidden;
  5539. }
  5540. #u65008_img {
  5541. border-width:0px;
  5542. position:absolute;
  5543. left:0px;
  5544. top:0px;
  5545. width:87px;
  5546. height:30px;
  5547. }
  5548. #u65008 {
  5549. border-width:0px;
  5550. position:absolute;
  5551. left:1748px;
  5552. top:148px;
  5553. width:87px;
  5554. height:30px;
  5555. display:flex;
  5556. font-size:14px;
  5557. }
  5558. #u65008 .text {
  5559. position:absolute;
  5560. align-self:center;
  5561. padding:2px 2px 2px 2px;
  5562. box-sizing:border-box;
  5563. width:100%;
  5564. }
  5565. #u65008_text {
  5566. border-width:0px;
  5567. word-wrap:break-word;
  5568. text-transform:none;
  5569. visibility:hidden;
  5570. }
  5571. #u65009_img {
  5572. border-width:0px;
  5573. position:absolute;
  5574. left:0px;
  5575. top:0px;
  5576. width:44px;
  5577. height:30px;
  5578. }
  5579. #u65009 {
  5580. border-width:0px;
  5581. position:absolute;
  5582. left:0px;
  5583. top:178px;
  5584. width:44px;
  5585. height:30px;
  5586. display:flex;
  5587. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5588. font-weight:400;
  5589. font-style:normal;
  5590. font-size:14px;
  5591. }
  5592. #u65009 .text {
  5593. position:absolute;
  5594. align-self:center;
  5595. padding:2px 2px 2px 2px;
  5596. box-sizing:border-box;
  5597. width:100%;
  5598. }
  5599. #u65009_text {
  5600. border-width:0px;
  5601. word-wrap:break-word;
  5602. text-transform:none;
  5603. visibility:hidden;
  5604. }
  5605. #u65010_img {
  5606. border-width:0px;
  5607. position:absolute;
  5608. left:0px;
  5609. top:0px;
  5610. width:77px;
  5611. height:30px;
  5612. }
  5613. #u65010 {
  5614. border-width:0px;
  5615. position:absolute;
  5616. left:44px;
  5617. top:178px;
  5618. width:77px;
  5619. height:30px;
  5620. display:flex;
  5621. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5622. font-weight:400;
  5623. font-style:normal;
  5624. font-size:14px;
  5625. }
  5626. #u65010 .text {
  5627. position:absolute;
  5628. align-self:center;
  5629. padding:2px 2px 2px 2px;
  5630. box-sizing:border-box;
  5631. width:100%;
  5632. }
  5633. #u65010_text {
  5634. border-width:0px;
  5635. word-wrap:break-word;
  5636. text-transform:none;
  5637. visibility:hidden;
  5638. }
  5639. #u65011_img {
  5640. border-width:0px;
  5641. position:absolute;
  5642. left:0px;
  5643. top:0px;
  5644. width:77px;
  5645. height:30px;
  5646. }
  5647. #u65011 {
  5648. border-width:0px;
  5649. position:absolute;
  5650. left:121px;
  5651. top:178px;
  5652. width:77px;
  5653. height:30px;
  5654. display:flex;
  5655. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5656. font-weight:400;
  5657. font-style:normal;
  5658. font-size:14px;
  5659. }
  5660. #u65011 .text {
  5661. position:absolute;
  5662. align-self:center;
  5663. padding:2px 2px 2px 2px;
  5664. box-sizing:border-box;
  5665. width:100%;
  5666. }
  5667. #u65011_text {
  5668. border-width:0px;
  5669. word-wrap:break-word;
  5670. text-transform:none;
  5671. visibility:hidden;
  5672. }
  5673. #u65012_img {
  5674. border-width:0px;
  5675. position:absolute;
  5676. left:0px;
  5677. top:0px;
  5678. width:77px;
  5679. height:30px;
  5680. }
  5681. #u65012 {
  5682. border-width:0px;
  5683. position:absolute;
  5684. left:198px;
  5685. top:178px;
  5686. width:77px;
  5687. height:30px;
  5688. display:flex;
  5689. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5690. font-weight:400;
  5691. font-style:normal;
  5692. font-size:14px;
  5693. }
  5694. #u65012 .text {
  5695. position:absolute;
  5696. align-self:center;
  5697. padding:2px 2px 2px 2px;
  5698. box-sizing:border-box;
  5699. width:100%;
  5700. }
  5701. #u65012_text {
  5702. border-width:0px;
  5703. word-wrap:break-word;
  5704. text-transform:none;
  5705. visibility:hidden;
  5706. }
  5707. #u65013_img {
  5708. border-width:0px;
  5709. position:absolute;
  5710. left:0px;
  5711. top:0px;
  5712. width:78px;
  5713. height:30px;
  5714. }
  5715. #u65013 {
  5716. border-width:0px;
  5717. position:absolute;
  5718. left:275px;
  5719. top:178px;
  5720. width:78px;
  5721. height:30px;
  5722. display:flex;
  5723. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5724. font-weight:400;
  5725. font-style:normal;
  5726. font-size:14px;
  5727. }
  5728. #u65013 .text {
  5729. position:absolute;
  5730. align-self:center;
  5731. padding:2px 2px 2px 2px;
  5732. box-sizing:border-box;
  5733. width:100%;
  5734. }
  5735. #u65013_text {
  5736. border-width:0px;
  5737. word-wrap:break-word;
  5738. text-transform:none;
  5739. visibility:hidden;
  5740. }
  5741. #u65014_img {
  5742. border-width:0px;
  5743. position:absolute;
  5744. left:0px;
  5745. top:0px;
  5746. width:77px;
  5747. height:30px;
  5748. }
  5749. #u65014 {
  5750. border-width:0px;
  5751. position:absolute;
  5752. left:353px;
  5753. top:178px;
  5754. width:77px;
  5755. height:30px;
  5756. display:flex;
  5757. font-size:14px;
  5758. }
  5759. #u65014 .text {
  5760. position:absolute;
  5761. align-self:center;
  5762. padding:2px 2px 2px 2px;
  5763. box-sizing:border-box;
  5764. width:100%;
  5765. }
  5766. #u65014_text {
  5767. border-width:0px;
  5768. word-wrap:break-word;
  5769. text-transform:none;
  5770. visibility:hidden;
  5771. }
  5772. #u65015_img {
  5773. border-width:0px;
  5774. position:absolute;
  5775. left:0px;
  5776. top:0px;
  5777. width:76px;
  5778. height:30px;
  5779. }
  5780. #u65015 {
  5781. border-width:0px;
  5782. position:absolute;
  5783. left:430px;
  5784. top:178px;
  5785. width:76px;
  5786. height:30px;
  5787. display:flex;
  5788. font-size:14px;
  5789. }
  5790. #u65015 .text {
  5791. position:absolute;
  5792. align-self:center;
  5793. padding:2px 2px 2px 2px;
  5794. box-sizing:border-box;
  5795. width:100%;
  5796. }
  5797. #u65015_text {
  5798. border-width:0px;
  5799. word-wrap:break-word;
  5800. text-transform:none;
  5801. visibility:hidden;
  5802. }
  5803. #u65016_img {
  5804. border-width:0px;
  5805. position:absolute;
  5806. left:0px;
  5807. top:0px;
  5808. width:76px;
  5809. height:30px;
  5810. }
  5811. #u65016 {
  5812. border-width:0px;
  5813. position:absolute;
  5814. left:506px;
  5815. top:178px;
  5816. width:76px;
  5817. height:30px;
  5818. display:flex;
  5819. font-size:14px;
  5820. }
  5821. #u65016 .text {
  5822. position:absolute;
  5823. align-self:center;
  5824. padding:2px 2px 2px 2px;
  5825. box-sizing:border-box;
  5826. width:100%;
  5827. }
  5828. #u65016_text {
  5829. border-width:0px;
  5830. word-wrap:break-word;
  5831. text-transform:none;
  5832. visibility:hidden;
  5833. }
  5834. #u65017_img {
  5835. border-width:0px;
  5836. position:absolute;
  5837. left:0px;
  5838. top:0px;
  5839. width:76px;
  5840. height:30px;
  5841. }
  5842. #u65017 {
  5843. border-width:0px;
  5844. position:absolute;
  5845. left:582px;
  5846. top:178px;
  5847. width:76px;
  5848. height:30px;
  5849. display:flex;
  5850. font-size:14px;
  5851. }
  5852. #u65017 .text {
  5853. position:absolute;
  5854. align-self:center;
  5855. padding:2px 2px 2px 2px;
  5856. box-sizing:border-box;
  5857. width:100%;
  5858. }
  5859. #u65017_text {
  5860. border-width:0px;
  5861. word-wrap:break-word;
  5862. text-transform:none;
  5863. visibility:hidden;
  5864. }
  5865. #u65018_img {
  5866. border-width:0px;
  5867. position:absolute;
  5868. left:0px;
  5869. top:0px;
  5870. width:76px;
  5871. height:30px;
  5872. }
  5873. #u65018 {
  5874. border-width:0px;
  5875. position:absolute;
  5876. left:658px;
  5877. top:178px;
  5878. width:76px;
  5879. height:30px;
  5880. display:flex;
  5881. font-size:14px;
  5882. }
  5883. #u65018 .text {
  5884. position:absolute;
  5885. align-self:center;
  5886. padding:2px 2px 2px 2px;
  5887. box-sizing:border-box;
  5888. width:100%;
  5889. }
  5890. #u65018_text {
  5891. border-width:0px;
  5892. word-wrap:break-word;
  5893. text-transform:none;
  5894. visibility:hidden;
  5895. }
  5896. #u65019_img {
  5897. border-width:0px;
  5898. position:absolute;
  5899. left:0px;
  5900. top:0px;
  5901. width:78px;
  5902. height:30px;
  5903. }
  5904. #u65019 {
  5905. border-width:0px;
  5906. position:absolute;
  5907. left:734px;
  5908. top:178px;
  5909. width:78px;
  5910. height:30px;
  5911. display:flex;
  5912. font-size:14px;
  5913. }
  5914. #u65019 .text {
  5915. position:absolute;
  5916. align-self:center;
  5917. padding:2px 2px 2px 2px;
  5918. box-sizing:border-box;
  5919. width:100%;
  5920. }
  5921. #u65019_text {
  5922. border-width:0px;
  5923. word-wrap:break-word;
  5924. text-transform:none;
  5925. visibility:hidden;
  5926. }
  5927. #u65020_img {
  5928. border-width:0px;
  5929. position:absolute;
  5930. left:0px;
  5931. top:0px;
  5932. width:77px;
  5933. height:30px;
  5934. }
  5935. #u65020 {
  5936. border-width:0px;
  5937. position:absolute;
  5938. left:812px;
  5939. top:178px;
  5940. width:77px;
  5941. height:30px;
  5942. display:flex;
  5943. font-size:14px;
  5944. }
  5945. #u65020 .text {
  5946. position:absolute;
  5947. align-self:center;
  5948. padding:2px 2px 2px 2px;
  5949. box-sizing:border-box;
  5950. width:100%;
  5951. }
  5952. #u65020_text {
  5953. border-width:0px;
  5954. word-wrap:break-word;
  5955. text-transform:none;
  5956. visibility:hidden;
  5957. }
  5958. #u65021_img {
  5959. border-width:0px;
  5960. position:absolute;
  5961. left:0px;
  5962. top:0px;
  5963. width:77px;
  5964. height:30px;
  5965. }
  5966. #u65021 {
  5967. border-width:0px;
  5968. position:absolute;
  5969. left:889px;
  5970. top:178px;
  5971. width:77px;
  5972. height:30px;
  5973. display:flex;
  5974. font-size:14px;
  5975. }
  5976. #u65021 .text {
  5977. position:absolute;
  5978. align-self:center;
  5979. padding:2px 2px 2px 2px;
  5980. box-sizing:border-box;
  5981. width:100%;
  5982. }
  5983. #u65021_text {
  5984. border-width:0px;
  5985. word-wrap:break-word;
  5986. text-transform:none;
  5987. visibility:hidden;
  5988. }
  5989. #u65022_img {
  5990. border-width:0px;
  5991. position:absolute;
  5992. left:0px;
  5993. top:0px;
  5994. width:77px;
  5995. height:30px;
  5996. }
  5997. #u65022 {
  5998. border-width:0px;
  5999. position:absolute;
  6000. left:966px;
  6001. top:178px;
  6002. width:77px;
  6003. height:30px;
  6004. display:flex;
  6005. font-size:14px;
  6006. }
  6007. #u65022 .text {
  6008. position:absolute;
  6009. align-self:center;
  6010. padding:2px 2px 2px 2px;
  6011. box-sizing:border-box;
  6012. width:100%;
  6013. }
  6014. #u65022_text {
  6015. border-width:0px;
  6016. word-wrap:break-word;
  6017. text-transform:none;
  6018. visibility:hidden;
  6019. }
  6020. #u65023_img {
  6021. border-width:0px;
  6022. position:absolute;
  6023. left:0px;
  6024. top:0px;
  6025. width:77px;
  6026. height:30px;
  6027. }
  6028. #u65023 {
  6029. border-width:0px;
  6030. position:absolute;
  6031. left:1043px;
  6032. top:178px;
  6033. width:77px;
  6034. height:30px;
  6035. display:flex;
  6036. font-size:14px;
  6037. }
  6038. #u65023 .text {
  6039. position:absolute;
  6040. align-self:center;
  6041. padding:2px 2px 2px 2px;
  6042. box-sizing:border-box;
  6043. width:100%;
  6044. }
  6045. #u65023_text {
  6046. border-width:0px;
  6047. word-wrap:break-word;
  6048. text-transform:none;
  6049. visibility:hidden;
  6050. }
  6051. #u65024_img {
  6052. border-width:0px;
  6053. position:absolute;
  6054. left:0px;
  6055. top:0px;
  6056. width:77px;
  6057. height:30px;
  6058. }
  6059. #u65024 {
  6060. border-width:0px;
  6061. position:absolute;
  6062. left:1120px;
  6063. top:178px;
  6064. width:77px;
  6065. height:30px;
  6066. display:flex;
  6067. font-size:14px;
  6068. }
  6069. #u65024 .text {
  6070. position:absolute;
  6071. align-self:center;
  6072. padding:2px 2px 2px 2px;
  6073. box-sizing:border-box;
  6074. width:100%;
  6075. }
  6076. #u65024_text {
  6077. border-width:0px;
  6078. word-wrap:break-word;
  6079. text-transform:none;
  6080. visibility:hidden;
  6081. }
  6082. #u65025_img {
  6083. border-width:0px;
  6084. position:absolute;
  6085. left:0px;
  6086. top:0px;
  6087. width:80px;
  6088. height:30px;
  6089. }
  6090. #u65025 {
  6091. border-width:0px;
  6092. position:absolute;
  6093. left:1197px;
  6094. top:178px;
  6095. width:80px;
  6096. height:30px;
  6097. display:flex;
  6098. font-size:14px;
  6099. }
  6100. #u65025 .text {
  6101. position:absolute;
  6102. align-self:center;
  6103. padding:2px 2px 2px 2px;
  6104. box-sizing:border-box;
  6105. width:100%;
  6106. }
  6107. #u65025_text {
  6108. border-width:0px;
  6109. word-wrap:break-word;
  6110. text-transform:none;
  6111. visibility:hidden;
  6112. }
  6113. #u65026_img {
  6114. border-width:0px;
  6115. position:absolute;
  6116. left:0px;
  6117. top:0px;
  6118. width:77px;
  6119. height:30px;
  6120. }
  6121. #u65026 {
  6122. border-width:0px;
  6123. position:absolute;
  6124. left:1277px;
  6125. top:178px;
  6126. width:77px;
  6127. height:30px;
  6128. display:flex;
  6129. font-size:14px;
  6130. }
  6131. #u65026 .text {
  6132. position:absolute;
  6133. align-self:center;
  6134. padding:2px 2px 2px 2px;
  6135. box-sizing:border-box;
  6136. width:100%;
  6137. }
  6138. #u65026_text {
  6139. border-width:0px;
  6140. word-wrap:break-word;
  6141. text-transform:none;
  6142. visibility:hidden;
  6143. }
  6144. #u65027_img {
  6145. border-width:0px;
  6146. position:absolute;
  6147. left:0px;
  6148. top:0px;
  6149. width:80px;
  6150. height:30px;
  6151. }
  6152. #u65027 {
  6153. border-width:0px;
  6154. position:absolute;
  6155. left:1354px;
  6156. top:178px;
  6157. width:80px;
  6158. height:30px;
  6159. display:flex;
  6160. font-size:14px;
  6161. }
  6162. #u65027 .text {
  6163. position:absolute;
  6164. align-self:center;
  6165. padding:2px 2px 2px 2px;
  6166. box-sizing:border-box;
  6167. width:100%;
  6168. }
  6169. #u65027_text {
  6170. border-width:0px;
  6171. word-wrap:break-word;
  6172. text-transform:none;
  6173. visibility:hidden;
  6174. }
  6175. #u65028_img {
  6176. border-width:0px;
  6177. position:absolute;
  6178. left:0px;
  6179. top:0px;
  6180. width:77px;
  6181. height:30px;
  6182. }
  6183. #u65028 {
  6184. border-width:0px;
  6185. position:absolute;
  6186. left:1434px;
  6187. top:178px;
  6188. width:77px;
  6189. height:30px;
  6190. display:flex;
  6191. font-size:14px;
  6192. }
  6193. #u65028 .text {
  6194. position:absolute;
  6195. align-self:center;
  6196. padding:2px 2px 2px 2px;
  6197. box-sizing:border-box;
  6198. width:100%;
  6199. }
  6200. #u65028_text {
  6201. border-width:0px;
  6202. word-wrap:break-word;
  6203. text-transform:none;
  6204. visibility:hidden;
  6205. }
  6206. #u65029_img {
  6207. border-width:0px;
  6208. position:absolute;
  6209. left:0px;
  6210. top:0px;
  6211. width:80px;
  6212. height:30px;
  6213. }
  6214. #u65029 {
  6215. border-width:0px;
  6216. position:absolute;
  6217. left:1511px;
  6218. top:178px;
  6219. width:80px;
  6220. height:30px;
  6221. display:flex;
  6222. font-size:14px;
  6223. }
  6224. #u65029 .text {
  6225. position:absolute;
  6226. align-self:center;
  6227. padding:2px 2px 2px 2px;
  6228. box-sizing:border-box;
  6229. width:100%;
  6230. }
  6231. #u65029_text {
  6232. border-width:0px;
  6233. word-wrap:break-word;
  6234. text-transform:none;
  6235. visibility:hidden;
  6236. }
  6237. #u65030_img {
  6238. border-width:0px;
  6239. position:absolute;
  6240. left:0px;
  6241. top:0px;
  6242. width:77px;
  6243. height:30px;
  6244. }
  6245. #u65030 {
  6246. border-width:0px;
  6247. position:absolute;
  6248. left:1591px;
  6249. top:178px;
  6250. width:77px;
  6251. height:30px;
  6252. display:flex;
  6253. font-size:14px;
  6254. }
  6255. #u65030 .text {
  6256. position:absolute;
  6257. align-self:center;
  6258. padding:2px 2px 2px 2px;
  6259. box-sizing:border-box;
  6260. width:100%;
  6261. }
  6262. #u65030_text {
  6263. border-width:0px;
  6264. word-wrap:break-word;
  6265. text-transform:none;
  6266. visibility:hidden;
  6267. }
  6268. #u65031_img {
  6269. border-width:0px;
  6270. position:absolute;
  6271. left:0px;
  6272. top:0px;
  6273. width:80px;
  6274. height:30px;
  6275. }
  6276. #u65031 {
  6277. border-width:0px;
  6278. position:absolute;
  6279. left:1668px;
  6280. top:178px;
  6281. width:80px;
  6282. height:30px;
  6283. display:flex;
  6284. font-size:14px;
  6285. }
  6286. #u65031 .text {
  6287. position:absolute;
  6288. align-self:center;
  6289. padding:2px 2px 2px 2px;
  6290. box-sizing:border-box;
  6291. width:100%;
  6292. }
  6293. #u65031_text {
  6294. border-width:0px;
  6295. word-wrap:break-word;
  6296. text-transform:none;
  6297. visibility:hidden;
  6298. }
  6299. #u65032_img {
  6300. border-width:0px;
  6301. position:absolute;
  6302. left:0px;
  6303. top:0px;
  6304. width:87px;
  6305. height:30px;
  6306. }
  6307. #u65032 {
  6308. border-width:0px;
  6309. position:absolute;
  6310. left:1748px;
  6311. top:178px;
  6312. width:87px;
  6313. height:30px;
  6314. display:flex;
  6315. font-size:14px;
  6316. }
  6317. #u65032 .text {
  6318. position:absolute;
  6319. align-self:center;
  6320. padding:2px 2px 2px 2px;
  6321. box-sizing:border-box;
  6322. width:100%;
  6323. }
  6324. #u65032_text {
  6325. border-width:0px;
  6326. word-wrap:break-word;
  6327. text-transform:none;
  6328. visibility:hidden;
  6329. }
  6330. #u65033 {
  6331. border-width:0px;
  6332. position:absolute;
  6333. left:0px;
  6334. top:0px;
  6335. width:0px;
  6336. height:0px;
  6337. }
  6338. #u65034_div {
  6339. border-width:0px;
  6340. position:absolute;
  6341. left:0px;
  6342. top:0px;
  6343. width:160px;
  6344. height:30px;
  6345. background:inherit;
  6346. background-color:rgba(255, 255, 255, 1);
  6347. box-sizing:border-box;
  6348. border-width:1px;
  6349. border-style:solid;
  6350. border-color:rgba(201, 201, 201, 1);
  6351. border-radius:4px;
  6352. -moz-box-shadow:none;
  6353. -webkit-box-shadow:none;
  6354. box-shadow:none;
  6355. font-family:'Microsoft YaHei', sans-serif;
  6356. font-weight:400;
  6357. font-style:normal;
  6358. font-size:14px;
  6359. color:#CCCCCC;
  6360. text-align:left;
  6361. }
  6362. #u65034 {
  6363. border-width:0px;
  6364. position:absolute;
  6365. left:356px;
  6366. top:169px;
  6367. width:160px;
  6368. height:30px;
  6369. display:flex;
  6370. font-family:'Microsoft YaHei', sans-serif;
  6371. font-weight:400;
  6372. font-style:normal;
  6373. font-size:14px;
  6374. color:#CCCCCC;
  6375. text-align:left;
  6376. }
  6377. #u65034 .text {
  6378. position:absolute;
  6379. align-self:center;
  6380. padding:2px 8px 2px 8px;
  6381. box-sizing:border-box;
  6382. width:100%;
  6383. }
  6384. #u65034_text {
  6385. border-width:0px;
  6386. word-wrap:break-word;
  6387. text-transform:none;
  6388. visibility:hidden;
  6389. }
  6390. #u65035_input {
  6391. position:absolute;
  6392. left:0px;
  6393. top:0px;
  6394. width:150px;
  6395. height:28px;
  6396. padding:2px 2px 2px 2px;
  6397. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6398. font-weight:400;
  6399. font-style:normal;
  6400. font-size:14px;
  6401. letter-spacing:normal;
  6402. color:#000000;
  6403. vertical-align:none;
  6404. text-align:left;
  6405. text-transform:none;
  6406. background-color:transparent;
  6407. border-color:transparent;
  6408. }
  6409. #u65035_input.disabled {
  6410. position:absolute;
  6411. left:0px;
  6412. top:0px;
  6413. width:150px;
  6414. height:28px;
  6415. padding:2px 2px 2px 2px;
  6416. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6417. font-weight:400;
  6418. font-style:normal;
  6419. font-size:14px;
  6420. letter-spacing:normal;
  6421. color:#000000;
  6422. vertical-align:none;
  6423. text-align:left;
  6424. text-transform:none;
  6425. background-color:transparent;
  6426. border-color:transparent;
  6427. }
  6428. #u65035_div {
  6429. border-width:0px;
  6430. position:absolute;
  6431. left:0px;
  6432. top:0px;
  6433. width:150px;
  6434. height:28px;
  6435. background:inherit;
  6436. background-color:rgba(255, 255, 255, 1);
  6437. border:none;
  6438. border-radius:0px;
  6439. -moz-box-shadow:none;
  6440. -webkit-box-shadow:none;
  6441. box-shadow:none;
  6442. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6443. font-weight:400;
  6444. font-style:normal;
  6445. font-size:14px;
  6446. }
  6447. #u65035 {
  6448. border-width:0px;
  6449. position:absolute;
  6450. left:362px;
  6451. top:170px;
  6452. width:150px;
  6453. height:28px;
  6454. display:flex;
  6455. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6456. font-weight:400;
  6457. font-style:normal;
  6458. font-size:14px;
  6459. }
  6460. #u65035 .text {
  6461. position:absolute;
  6462. align-self:center;
  6463. padding:2px 2px 2px 2px;
  6464. box-sizing:border-box;
  6465. width:100%;
  6466. }
  6467. #u65035_div.disabled {
  6468. border-width:0px;
  6469. position:absolute;
  6470. left:0px;
  6471. top:0px;
  6472. width:150px;
  6473. height:28px;
  6474. background:inherit;
  6475. background-color:rgba(240, 240, 240, 1);
  6476. border:none;
  6477. border-radius:0px;
  6478. -moz-box-shadow:none;
  6479. -webkit-box-shadow:none;
  6480. box-shadow:none;
  6481. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6482. font-weight:400;
  6483. font-style:normal;
  6484. font-size:14px;
  6485. }
  6486. #u65035.disabled {
  6487. }
  6488. #u65036 {
  6489. border-width:0px;
  6490. position:absolute;
  6491. left:0px;
  6492. top:0px;
  6493. width:0px;
  6494. height:0px;
  6495. }
  6496. #u65037_div {
  6497. border-width:0px;
  6498. position:absolute;
  6499. left:0px;
  6500. top:0px;
  6501. width:160px;
  6502. height:30px;
  6503. background:inherit;
  6504. background-color:rgba(255, 255, 255, 1);
  6505. box-sizing:border-box;
  6506. border-width:1px;
  6507. border-style:solid;
  6508. border-color:rgba(201, 201, 201, 1);
  6509. border-radius:4px;
  6510. -moz-box-shadow:none;
  6511. -webkit-box-shadow:none;
  6512. box-shadow:none;
  6513. font-family:'Microsoft YaHei', sans-serif;
  6514. font-weight:400;
  6515. font-style:normal;
  6516. font-size:14px;
  6517. color:#CCCCCC;
  6518. text-align:left;
  6519. }
  6520. #u65037 {
  6521. border-width:0px;
  6522. position:absolute;
  6523. left:526px;
  6524. top:169px;
  6525. width:160px;
  6526. height:30px;
  6527. display:flex;
  6528. font-family:'Microsoft YaHei', sans-serif;
  6529. font-weight:400;
  6530. font-style:normal;
  6531. font-size:14px;
  6532. color:#CCCCCC;
  6533. text-align:left;
  6534. }
  6535. #u65037 .text {
  6536. position:absolute;
  6537. align-self:center;
  6538. padding:2px 8px 2px 8px;
  6539. box-sizing:border-box;
  6540. width:100%;
  6541. }
  6542. #u65037_text {
  6543. border-width:0px;
  6544. word-wrap:break-word;
  6545. text-transform:none;
  6546. visibility:hidden;
  6547. }
  6548. #u65038_input {
  6549. position:absolute;
  6550. left:0px;
  6551. top:0px;
  6552. width:150px;
  6553. height:28px;
  6554. padding:2px 2px 2px 2px;
  6555. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6556. font-weight:400;
  6557. font-style:normal;
  6558. font-size:14px;
  6559. letter-spacing:normal;
  6560. color:#000000;
  6561. vertical-align:none;
  6562. text-align:left;
  6563. text-transform:none;
  6564. background-color:transparent;
  6565. border-color:transparent;
  6566. }
  6567. #u65038_input.disabled {
  6568. position:absolute;
  6569. left:0px;
  6570. top:0px;
  6571. width:150px;
  6572. height:28px;
  6573. padding:2px 2px 2px 2px;
  6574. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6575. font-weight:400;
  6576. font-style:normal;
  6577. font-size:14px;
  6578. letter-spacing:normal;
  6579. color:#000000;
  6580. vertical-align:none;
  6581. text-align:left;
  6582. text-transform:none;
  6583. background-color:transparent;
  6584. border-color:transparent;
  6585. }
  6586. #u65038_div {
  6587. border-width:0px;
  6588. position:absolute;
  6589. left:0px;
  6590. top:0px;
  6591. width:150px;
  6592. height:28px;
  6593. background:inherit;
  6594. background-color:rgba(255, 255, 255, 1);
  6595. border:none;
  6596. border-radius:0px;
  6597. -moz-box-shadow:none;
  6598. -webkit-box-shadow:none;
  6599. box-shadow:none;
  6600. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6601. font-weight:400;
  6602. font-style:normal;
  6603. font-size:14px;
  6604. }
  6605. #u65038 {
  6606. border-width:0px;
  6607. position:absolute;
  6608. left:532px;
  6609. top:170px;
  6610. width:150px;
  6611. height:28px;
  6612. display:flex;
  6613. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6614. font-weight:400;
  6615. font-style:normal;
  6616. font-size:14px;
  6617. }
  6618. #u65038 .text {
  6619. position:absolute;
  6620. align-self:center;
  6621. padding:2px 2px 2px 2px;
  6622. box-sizing:border-box;
  6623. width:100%;
  6624. }
  6625. #u65038_div.disabled {
  6626. border-width:0px;
  6627. position:absolute;
  6628. left:0px;
  6629. top:0px;
  6630. width:150px;
  6631. height:28px;
  6632. background:inherit;
  6633. background-color:rgba(240, 240, 240, 1);
  6634. border:none;
  6635. border-radius:0px;
  6636. -moz-box-shadow:none;
  6637. -webkit-box-shadow:none;
  6638. box-shadow:none;
  6639. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6640. font-weight:400;
  6641. font-style:normal;
  6642. font-size:14px;
  6643. }
  6644. #u65038.disabled {
  6645. }
  6646. #u65039 {
  6647. border-width:0px;
  6648. position:absolute;
  6649. left:0px;
  6650. top:0px;
  6651. width:0px;
  6652. height:0px;
  6653. }
  6654. #u65040_div {
  6655. border-width:0px;
  6656. position:absolute;
  6657. left:0px;
  6658. top:0px;
  6659. width:60px;
  6660. height:30px;
  6661. background:inherit;
  6662. background-color:rgba(24, 144, 255, 1);
  6663. border:none;
  6664. border-radius:4px;
  6665. -moz-box-shadow:none;
  6666. -webkit-box-shadow:none;
  6667. box-shadow:none;
  6668. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6669. font-weight:400;
  6670. font-style:normal;
  6671. font-size:14px;
  6672. color:#FFFFFF;
  6673. }
  6674. #u65040 {
  6675. border-width:0px;
  6676. position:absolute;
  6677. left:1031px;
  6678. top:208px;
  6679. width:60px;
  6680. height:30px;
  6681. display:flex;
  6682. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6683. font-weight:400;
  6684. font-style:normal;
  6685. font-size:14px;
  6686. color:#FFFFFF;
  6687. }
  6688. #u65040 .text {
  6689. position:absolute;
  6690. align-self:center;
  6691. padding:2px 2px 2px 2px;
  6692. box-sizing:border-box;
  6693. width:100%;
  6694. }
  6695. #u65040_text {
  6696. border-width:0px;
  6697. word-wrap:break-word;
  6698. text-transform:none;
  6699. }
  6700. #u65041_div {
  6701. border-width:0px;
  6702. position:absolute;
  6703. left:0px;
  6704. top:0px;
  6705. width:60px;
  6706. height:30px;
  6707. background:inherit;
  6708. background-color:rgba(255, 255, 255, 1);
  6709. box-sizing:border-box;
  6710. border-width:1px;
  6711. border-style:solid;
  6712. border-color:rgba(170, 170, 170, 1);
  6713. border-radius:4px;
  6714. -moz-box-shadow:none;
  6715. -webkit-box-shadow:none;
  6716. box-shadow:none;
  6717. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6718. font-weight:400;
  6719. font-style:normal;
  6720. font-size:14px;
  6721. }
  6722. #u65041 {
  6723. border-width:0px;
  6724. position:absolute;
  6725. left:1101px;
  6726. top:208px;
  6727. width:60px;
  6728. height:30px;
  6729. display:flex;
  6730. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6731. font-weight:400;
  6732. font-style:normal;
  6733. font-size:14px;
  6734. }
  6735. #u65041 .text {
  6736. position:absolute;
  6737. align-self:center;
  6738. padding:2px 2px 2px 2px;
  6739. box-sizing:border-box;
  6740. width:100%;
  6741. }
  6742. #u65041_text {
  6743. border-width:0px;
  6744. word-wrap:break-word;
  6745. text-transform:none;
  6746. }
  6747. #u65042 {
  6748. border-width:0px;
  6749. position:absolute;
  6750. left:0px;
  6751. top:0px;
  6752. width:0px;
  6753. height:0px;
  6754. }
  6755. #u65043_div {
  6756. border-width:0px;
  6757. position:absolute;
  6758. left:0px;
  6759. top:0px;
  6760. width:160px;
  6761. height:30px;
  6762. background:inherit;
  6763. background-color:rgba(255, 255, 255, 1);
  6764. box-sizing:border-box;
  6765. border-width:1px;
  6766. border-style:solid;
  6767. border-color:rgba(215, 215, 215, 1);
  6768. border-radius:4px;
  6769. -moz-box-shadow:none;
  6770. -webkit-box-shadow:none;
  6771. box-shadow:none;
  6772. font-size:14px;
  6773. }
  6774. #u65043 {
  6775. border-width:0px;
  6776. position:absolute;
  6777. left:526px;
  6778. top:208px;
  6779. width:160px;
  6780. height:30px;
  6781. display:flex;
  6782. font-size:14px;
  6783. }
  6784. #u65043 .text {
  6785. position:absolute;
  6786. align-self:center;
  6787. padding:2px 2px 2px 2px;
  6788. box-sizing:border-box;
  6789. width:100%;
  6790. }
  6791. #u65043_text {
  6792. border-width:0px;
  6793. word-wrap:break-word;
  6794. text-transform:none;
  6795. visibility:hidden;
  6796. }
  6797. #u65044_input {
  6798. position:absolute;
  6799. left:0px;
  6800. top:0px;
  6801. width:153px;
  6802. height:23px;
  6803. padding:2px 2px 2px 2px;
  6804. font-family:'ArialMT', 'Arial', sans-serif;
  6805. font-weight:400;
  6806. font-style:normal;
  6807. font-size:14px;
  6808. letter-spacing:normal;
  6809. color:#AAAAAA;
  6810. vertical-align:none;
  6811. text-align:left;
  6812. text-transform:none;
  6813. background-color:transparent;
  6814. border-color:transparent;
  6815. }
  6816. #u65044_input.disabled {
  6817. position:absolute;
  6818. left:0px;
  6819. top:0px;
  6820. width:153px;
  6821. height:23px;
  6822. padding:2px 2px 2px 2px;
  6823. font-family:'ArialMT', 'Arial', sans-serif;
  6824. font-weight:400;
  6825. font-style:normal;
  6826. font-size:14px;
  6827. letter-spacing:normal;
  6828. color:#AAAAAA;
  6829. vertical-align:none;
  6830. text-align:left;
  6831. text-transform:none;
  6832. background-color:transparent;
  6833. border-color:transparent;
  6834. }
  6835. #u65044_div {
  6836. border-width:0px;
  6837. position:absolute;
  6838. left:0px;
  6839. top:0px;
  6840. width:153px;
  6841. height:23px;
  6842. background:inherit;
  6843. background-color:rgba(255, 255, 255, 1);
  6844. border:none;
  6845. border-radius:0px;
  6846. -moz-box-shadow:none;
  6847. -webkit-box-shadow:none;
  6848. box-shadow:none;
  6849. font-size:14px;
  6850. color:#AAAAAA;
  6851. }
  6852. #u65044 {
  6853. border-width:0px;
  6854. position:absolute;
  6855. left:531px;
  6856. top:210px;
  6857. width:153px;
  6858. height:23px;
  6859. display:flex;
  6860. font-size:14px;
  6861. color:#AAAAAA;
  6862. }
  6863. #u65044 .text {
  6864. position:absolute;
  6865. align-self:flex-start;
  6866. padding:2px 2px 2px 2px;
  6867. box-sizing:border-box;
  6868. width:100%;
  6869. }
  6870. #u65044_div.disabled {
  6871. border-width:0px;
  6872. position:absolute;
  6873. left:0px;
  6874. top:0px;
  6875. width:153px;
  6876. height:23px;
  6877. background:inherit;
  6878. background-color:rgba(240, 240, 240, 1);
  6879. border:none;
  6880. border-radius:0px;
  6881. -moz-box-shadow:none;
  6882. -webkit-box-shadow:none;
  6883. box-shadow:none;
  6884. font-size:14px;
  6885. color:#AAAAAA;
  6886. }
  6887. #u65044.disabled {
  6888. }
  6889. .u65044_input_option {
  6890. font-size:14px;
  6891. }
  6892. #u65045 {
  6893. border-width:0px;
  6894. position:absolute;
  6895. left:0px;
  6896. top:0px;
  6897. width:0px;
  6898. height:0px;
  6899. }
  6900. #u65046_div {
  6901. border-width:0px;
  6902. position:absolute;
  6903. left:0px;
  6904. top:0px;
  6905. width:160px;
  6906. height:30px;
  6907. background:inherit;
  6908. background-color:rgba(255, 255, 255, 1);
  6909. box-sizing:border-box;
  6910. border-width:1px;
  6911. border-style:solid;
  6912. border-color:rgba(215, 215, 215, 1);
  6913. border-radius:4px;
  6914. -moz-box-shadow:none;
  6915. -webkit-box-shadow:none;
  6916. box-shadow:none;
  6917. font-size:14px;
  6918. }
  6919. #u65046 {
  6920. border-width:0px;
  6921. position:absolute;
  6922. left:696px;
  6923. top:209px;
  6924. width:160px;
  6925. height:30px;
  6926. display:flex;
  6927. font-size:14px;
  6928. }
  6929. #u65046 .text {
  6930. position:absolute;
  6931. align-self:center;
  6932. padding:2px 2px 2px 2px;
  6933. box-sizing:border-box;
  6934. width:100%;
  6935. }
  6936. #u65046_text {
  6937. border-width:0px;
  6938. word-wrap:break-word;
  6939. text-transform:none;
  6940. visibility:hidden;
  6941. }
  6942. #u65047_input {
  6943. position:absolute;
  6944. left:0px;
  6945. top:0px;
  6946. width:153px;
  6947. height:23px;
  6948. padding:2px 2px 2px 2px;
  6949. font-family:'ArialMT', 'Arial', sans-serif;
  6950. font-weight:400;
  6951. font-style:normal;
  6952. font-size:14px;
  6953. letter-spacing:normal;
  6954. color:#AAAAAA;
  6955. vertical-align:none;
  6956. text-align:left;
  6957. text-transform:none;
  6958. background-color:transparent;
  6959. border-color:transparent;
  6960. }
  6961. #u65047_input.disabled {
  6962. position:absolute;
  6963. left:0px;
  6964. top:0px;
  6965. width:153px;
  6966. height:23px;
  6967. padding:2px 2px 2px 2px;
  6968. font-family:'ArialMT', 'Arial', sans-serif;
  6969. font-weight:400;
  6970. font-style:normal;
  6971. font-size:14px;
  6972. letter-spacing:normal;
  6973. color:#AAAAAA;
  6974. vertical-align:none;
  6975. text-align:left;
  6976. text-transform:none;
  6977. background-color:transparent;
  6978. border-color:transparent;
  6979. }
  6980. #u65047_div {
  6981. border-width:0px;
  6982. position:absolute;
  6983. left:0px;
  6984. top:0px;
  6985. width:153px;
  6986. height:23px;
  6987. background:inherit;
  6988. background-color:rgba(255, 255, 255, 1);
  6989. border:none;
  6990. border-radius:0px;
  6991. -moz-box-shadow:none;
  6992. -webkit-box-shadow:none;
  6993. box-shadow:none;
  6994. font-size:14px;
  6995. color:#AAAAAA;
  6996. }
  6997. #u65047 {
  6998. border-width:0px;
  6999. position:absolute;
  7000. left:701px;
  7001. top:211px;
  7002. width:153px;
  7003. height:23px;
  7004. display:flex;
  7005. font-size:14px;
  7006. color:#AAAAAA;
  7007. }
  7008. #u65047 .text {
  7009. position:absolute;
  7010. align-self:flex-start;
  7011. padding:2px 2px 2px 2px;
  7012. box-sizing:border-box;
  7013. width:100%;
  7014. }
  7015. #u65047_div.disabled {
  7016. border-width:0px;
  7017. position:absolute;
  7018. left:0px;
  7019. top:0px;
  7020. width:153px;
  7021. height:23px;
  7022. background:inherit;
  7023. background-color:rgba(240, 240, 240, 1);
  7024. border:none;
  7025. border-radius:0px;
  7026. -moz-box-shadow:none;
  7027. -webkit-box-shadow:none;
  7028. box-shadow:none;
  7029. font-size:14px;
  7030. color:#AAAAAA;
  7031. }
  7032. #u65047.disabled {
  7033. }
  7034. .u65047_input_option {
  7035. font-size:14px;
  7036. }
  7037. #u65048 {
  7038. border-width:0px;
  7039. position:absolute;
  7040. left:0px;
  7041. top:0px;
  7042. width:0px;
  7043. height:0px;
  7044. }
  7045. #u65049_div {
  7046. border-width:0px;
  7047. position:absolute;
  7048. left:0px;
  7049. top:0px;
  7050. width:160px;
  7051. height:30px;
  7052. background:inherit;
  7053. background-color:rgba(255, 255, 255, 1);
  7054. box-sizing:border-box;
  7055. border-width:1px;
  7056. border-style:solid;
  7057. border-color:rgba(201, 201, 201, 1);
  7058. border-radius:4px;
  7059. -moz-box-shadow:none;
  7060. -webkit-box-shadow:none;
  7061. box-shadow:none;
  7062. font-family:'Microsoft YaHei', sans-serif;
  7063. font-weight:400;
  7064. font-style:normal;
  7065. font-size:14px;
  7066. color:#CCCCCC;
  7067. text-align:left;
  7068. }
  7069. #u65049 {
  7070. border-width:0px;
  7071. position:absolute;
  7072. left:1201px;
  7073. top:169px;
  7074. width:160px;
  7075. height:30px;
  7076. display:flex;
  7077. font-family:'Microsoft YaHei', sans-serif;
  7078. font-weight:400;
  7079. font-style:normal;
  7080. font-size:14px;
  7081. color:#CCCCCC;
  7082. text-align:left;
  7083. }
  7084. #u65049 .text {
  7085. position:absolute;
  7086. align-self:center;
  7087. padding:2px 8px 2px 8px;
  7088. box-sizing:border-box;
  7089. width:100%;
  7090. }
  7091. #u65049_text {
  7092. border-width:0px;
  7093. word-wrap:break-word;
  7094. text-transform:none;
  7095. visibility:hidden;
  7096. }
  7097. #u65050_input {
  7098. position:absolute;
  7099. left:0px;
  7100. top:0px;
  7101. width:150px;
  7102. height:28px;
  7103. padding:2px 2px 2px 2px;
  7104. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7105. font-weight:400;
  7106. font-style:normal;
  7107. font-size:14px;
  7108. letter-spacing:normal;
  7109. color:#000000;
  7110. vertical-align:none;
  7111. text-align:left;
  7112. text-transform:none;
  7113. background-color:transparent;
  7114. border-color:transparent;
  7115. }
  7116. #u65050_input.disabled {
  7117. position:absolute;
  7118. left:0px;
  7119. top:0px;
  7120. width:150px;
  7121. height:28px;
  7122. padding:2px 2px 2px 2px;
  7123. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7124. font-weight:400;
  7125. font-style:normal;
  7126. font-size:14px;
  7127. letter-spacing:normal;
  7128. color:#000000;
  7129. vertical-align:none;
  7130. text-align:left;
  7131. text-transform:none;
  7132. background-color:transparent;
  7133. border-color:transparent;
  7134. }
  7135. #u65050_div {
  7136. border-width:0px;
  7137. position:absolute;
  7138. left:0px;
  7139. top:0px;
  7140. width:150px;
  7141. height:28px;
  7142. background:inherit;
  7143. background-color:rgba(255, 255, 255, 1);
  7144. border:none;
  7145. border-radius:0px;
  7146. -moz-box-shadow:none;
  7147. -webkit-box-shadow:none;
  7148. box-shadow:none;
  7149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7150. font-weight:400;
  7151. font-style:normal;
  7152. font-size:14px;
  7153. }
  7154. #u65050 {
  7155. border-width:0px;
  7156. position:absolute;
  7157. left:1207px;
  7158. top:170px;
  7159. width:150px;
  7160. height:28px;
  7161. display:flex;
  7162. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7163. font-weight:400;
  7164. font-style:normal;
  7165. font-size:14px;
  7166. }
  7167. #u65050 .text {
  7168. position:absolute;
  7169. align-self:center;
  7170. padding:2px 2px 2px 2px;
  7171. box-sizing:border-box;
  7172. width:100%;
  7173. }
  7174. #u65050_div.disabled {
  7175. border-width:0px;
  7176. position:absolute;
  7177. left:0px;
  7178. top:0px;
  7179. width:150px;
  7180. height:28px;
  7181. background:inherit;
  7182. background-color:rgba(240, 240, 240, 1);
  7183. border:none;
  7184. border-radius:0px;
  7185. -moz-box-shadow:none;
  7186. -webkit-box-shadow:none;
  7187. box-shadow:none;
  7188. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7189. font-weight:400;
  7190. font-style:normal;
  7191. font-size:14px;
  7192. }
  7193. #u65050.disabled {
  7194. }
  7195. #u65051_div {
  7196. border-width:0px;
  7197. position:absolute;
  7198. left:0px;
  7199. top:0px;
  7200. width:1259px;
  7201. height:90px;
  7202. background:inherit;
  7203. background-color:rgba(255, 255, 255, 1);
  7204. box-sizing:border-box;
  7205. border-width:1px;
  7206. border-style:solid;
  7207. border-color:rgba(242, 242, 242, 1);
  7208. border-radius:0px;
  7209. -moz-box-shadow:none;
  7210. -webkit-box-shadow:none;
  7211. box-shadow:none;
  7212. }
  7213. #u65051 {
  7214. border-width:0px;
  7215. position:absolute;
  7216. left:332px;
  7217. top:50px;
  7218. width:1259px;
  7219. height:90px;
  7220. display:flex;
  7221. }
  7222. #u65051 .text {
  7223. position:absolute;
  7224. align-self:center;
  7225. padding:2px 2px 2px 2px;
  7226. box-sizing:border-box;
  7227. width:100%;
  7228. }
  7229. #u65051_text {
  7230. border-width:0px;
  7231. word-wrap:break-word;
  7232. text-transform:none;
  7233. visibility:hidden;
  7234. }
  7235. #u65052_div {
  7236. border-width:0px;
  7237. position:absolute;
  7238. left:0px;
  7239. top:0px;
  7240. width:109px;
  7241. height:50px;
  7242. background:inherit;
  7243. background-color:rgba(255, 255, 255, 0);
  7244. border:none;
  7245. border-left:0px;
  7246. border-top:0px;
  7247. border-right:0px;
  7248. border-radius:0px;
  7249. border-bottom-right-radius:0px;
  7250. border-bottom-left-radius:0px;
  7251. -moz-box-shadow:none;
  7252. -webkit-box-shadow:none;
  7253. box-shadow:none;
  7254. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7255. font-weight:500;
  7256. font-style:normal;
  7257. font-size:18px;
  7258. line-height:40px;
  7259. }
  7260. #u65052 {
  7261. border-width:0px;
  7262. position:absolute;
  7263. left:352px;
  7264. top:50px;
  7265. width:109px;
  7266. height:50px;
  7267. display:flex;
  7268. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7269. font-weight:500;
  7270. font-style:normal;
  7271. font-size:18px;
  7272. line-height:40px;
  7273. }
  7274. #u65052 .text {
  7275. position:absolute;
  7276. align-self:center;
  7277. padding:0px 0px 0px 0px;
  7278. box-sizing:border-box;
  7279. width:100%;
  7280. }
  7281. #u65052_text {
  7282. border-width:0px;
  7283. white-space:nowrap;
  7284. text-transform:none;
  7285. }
  7286. #u65053_img {
  7287. border-width:0px;
  7288. position:absolute;
  7289. left:0px;
  7290. top:0px;
  7291. width:13px;
  7292. height:13px;
  7293. }
  7294. #u65053 {
  7295. border-width:0px;
  7296. position:absolute;
  7297. left:466px;
  7298. top:69px;
  7299. width:13px;
  7300. height:13px;
  7301. display:flex;
  7302. }
  7303. #u65053 .text {
  7304. position:absolute;
  7305. align-self:center;
  7306. padding:2px 2px 2px 2px;
  7307. box-sizing:border-box;
  7308. width:100%;
  7309. }
  7310. #u65053_text {
  7311. border-width:0px;
  7312. word-wrap:break-word;
  7313. text-transform:none;
  7314. visibility:hidden;
  7315. }
  7316. #u65054_div {
  7317. border-width:0px;
  7318. position:absolute;
  7319. left:0px;
  7320. top:0px;
  7321. width:61px;
  7322. height:50px;
  7323. background:inherit;
  7324. background-color:rgba(0, 191, 191, 0);
  7325. box-sizing:border-box;
  7326. border-width:2px;
  7327. border-style:solid;
  7328. border-color:rgba(41, 143, 255, 1);
  7329. border-left:0px;
  7330. border-top:0px;
  7331. border-right:0px;
  7332. border-radius:0px;
  7333. border-bottom-right-radius:0px;
  7334. border-bottom-left-radius:0px;
  7335. -moz-box-shadow:none;
  7336. -webkit-box-shadow:none;
  7337. box-shadow:none;
  7338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7339. font-weight:400;
  7340. font-style:normal;
  7341. font-size:14px;
  7342. color:#1890FF;
  7343. line-height:40px;
  7344. }
  7345. #u65054 {
  7346. border-width:0px;
  7347. position:absolute;
  7348. left:352px;
  7349. top:90px;
  7350. width:61px;
  7351. height:50px;
  7352. display:flex;
  7353. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7354. font-weight:400;
  7355. font-style:normal;
  7356. font-size:14px;
  7357. color:#1890FF;
  7358. line-height:40px;
  7359. }
  7360. #u65054 .text {
  7361. position:absolute;
  7362. align-self:center;
  7363. padding:0px 0px 0px 0px;
  7364. box-sizing:border-box;
  7365. width:100%;
  7366. }
  7367. #u65054_text {
  7368. border-width:0px;
  7369. white-space:nowrap;
  7370. text-transform:none;
  7371. }
  7372. #u65055_div {
  7373. border-width:0px;
  7374. position:absolute;
  7375. left:0px;
  7376. top:0px;
  7377. width:69px;
  7378. height:50px;
  7379. background:inherit;
  7380. background-color:rgba(0, 191, 191, 0);
  7381. border:none;
  7382. border-left:0px;
  7383. border-top:0px;
  7384. border-right:0px;
  7385. border-radius:0px;
  7386. border-bottom-right-radius:0px;
  7387. border-bottom-left-radius:0px;
  7388. -moz-box-shadow:none;
  7389. -webkit-box-shadow:none;
  7390. box-shadow:none;
  7391. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7392. font-weight:400;
  7393. font-style:normal;
  7394. font-size:14px;
  7395. line-height:40px;
  7396. }
  7397. #u65055 {
  7398. border-width:0px;
  7399. position:absolute;
  7400. left:444px;
  7401. top:90px;
  7402. width:69px;
  7403. height:50px;
  7404. display:flex;
  7405. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7406. font-weight:400;
  7407. font-style:normal;
  7408. font-size:14px;
  7409. line-height:40px;
  7410. }
  7411. #u65055 .text {
  7412. position:absolute;
  7413. align-self:center;
  7414. padding:0px 0px 0px 0px;
  7415. box-sizing:border-box;
  7416. width:100%;
  7417. }
  7418. #u65055_text {
  7419. border-width:0px;
  7420. white-space:nowrap;
  7421. text-transform:none;
  7422. }
  7423. #u65056_div {
  7424. border-width:0px;
  7425. position:absolute;
  7426. left:0px;
  7427. top:0px;
  7428. width:69px;
  7429. height:50px;
  7430. background:inherit;
  7431. background-color:rgba(255, 255, 255, 0);
  7432. border:none;
  7433. border-left:0px;
  7434. border-top:0px;
  7435. border-right:0px;
  7436. border-radius:0px;
  7437. border-bottom-right-radius:0px;
  7438. border-bottom-left-radius:0px;
  7439. -moz-box-shadow:none;
  7440. -webkit-box-shadow:none;
  7441. box-shadow:none;
  7442. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7443. font-weight:400;
  7444. font-style:normal;
  7445. font-size:14px;
  7446. line-height:40px;
  7447. }
  7448. #u65056 {
  7449. border-width:0px;
  7450. position:absolute;
  7451. left:545px;
  7452. top:90px;
  7453. width:69px;
  7454. height:50px;
  7455. display:flex;
  7456. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7457. font-weight:400;
  7458. font-style:normal;
  7459. font-size:14px;
  7460. line-height:40px;
  7461. }
  7462. #u65056 .text {
  7463. position:absolute;
  7464. align-self:center;
  7465. padding:0px 0px 0px 0px;
  7466. box-sizing:border-box;
  7467. width:100%;
  7468. }
  7469. #u65056_text {
  7470. border-width:0px;
  7471. white-space:nowrap;
  7472. text-transform:none;
  7473. }
  7474. #u65057_div {
  7475. border-width:0px;
  7476. position:absolute;
  7477. left:0px;
  7478. top:0px;
  7479. width:69px;
  7480. height:50px;
  7481. background:inherit;
  7482. background-color:rgba(255, 255, 255, 0);
  7483. border:none;
  7484. border-left:0px;
  7485. border-top:0px;
  7486. border-right:0px;
  7487. border-radius:0px;
  7488. border-bottom-right-radius:0px;
  7489. border-bottom-left-radius:0px;
  7490. -moz-box-shadow:none;
  7491. -webkit-box-shadow:none;
  7492. box-shadow:none;
  7493. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7494. font-weight:400;
  7495. font-style:normal;
  7496. font-size:14px;
  7497. line-height:40px;
  7498. }
  7499. #u65057 {
  7500. border-width:0px;
  7501. position:absolute;
  7502. left:645px;
  7503. top:90px;
  7504. width:69px;
  7505. height:50px;
  7506. display:flex;
  7507. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7508. font-weight:400;
  7509. font-style:normal;
  7510. font-size:14px;
  7511. line-height:40px;
  7512. }
  7513. #u65057 .text {
  7514. position:absolute;
  7515. align-self:center;
  7516. padding:0px 0px 0px 0px;
  7517. box-sizing:border-box;
  7518. width:100%;
  7519. }
  7520. #u65057_text {
  7521. border-width:0px;
  7522. white-space:nowrap;
  7523. text-transform:none;
  7524. }
  7525. #u65058_div {
  7526. border-width:0px;
  7527. position:absolute;
  7528. left:0px;
  7529. top:0px;
  7530. width:60px;
  7531. height:30px;
  7532. background:inherit;
  7533. background-color:rgba(255, 255, 255, 1);
  7534. box-sizing:border-box;
  7535. border-width:1px;
  7536. border-style:solid;
  7537. border-color:rgba(170, 170, 170, 1);
  7538. border-radius:4px;
  7539. -moz-box-shadow:none;
  7540. -webkit-box-shadow:none;
  7541. box-shadow:none;
  7542. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7543. font-weight:400;
  7544. font-style:normal;
  7545. font-size:14px;
  7546. }
  7547. #u65058 {
  7548. border-width:0px;
  7549. position:absolute;
  7550. left:356px;
  7551. top:259px;
  7552. width:60px;
  7553. height:30px;
  7554. display:flex;
  7555. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7556. font-weight:400;
  7557. font-style:normal;
  7558. font-size:14px;
  7559. }
  7560. #u65058 .text {
  7561. position:absolute;
  7562. align-self:center;
  7563. padding:2px 2px 2px 2px;
  7564. box-sizing:border-box;
  7565. width:100%;
  7566. }
  7567. #u65058_text {
  7568. border-width:0px;
  7569. word-wrap:break-word;
  7570. text-transform:none;
  7571. }
  7572. #u65059_div {
  7573. border-width:0px;
  7574. position:absolute;
  7575. left:0px;
  7576. top:0px;
  7577. width:61px;
  7578. height:80px;
  7579. background:inherit;
  7580. background-color:rgba(255, 255, 255, 0);
  7581. border:none;
  7582. border-left:0px;
  7583. border-right:0px;
  7584. border-radius:0px;
  7585. border-top-left-radius:0px;
  7586. border-top-right-radius:0px;
  7587. border-bottom-right-radius:0px;
  7588. border-bottom-left-radius:0px;
  7589. -moz-box-shadow:none;
  7590. -webkit-box-shadow:none;
  7591. box-shadow:none;
  7592. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7593. font-weight:400;
  7594. font-style:normal;
  7595. font-size:12px;
  7596. line-height:40px;
  7597. }
  7598. #u65059 {
  7599. border-width:0px;
  7600. position:absolute;
  7601. left:377px;
  7602. top:549px;
  7603. width:61px;
  7604. height:80px;
  7605. display:flex;
  7606. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7607. font-weight:400;
  7608. font-style:normal;
  7609. font-size:12px;
  7610. line-height:40px;
  7611. }
  7612. #u65059 .text {
  7613. position:absolute;
  7614. align-self:flex-start;
  7615. padding:0px 0px 0px 0px;
  7616. box-sizing:border-box;
  7617. width:100%;
  7618. }
  7619. #u65059_text {
  7620. border-width:0px;
  7621. white-space:nowrap;
  7622. text-transform:none;
  7623. }
  7624. #u65060_div {
  7625. border-width:0px;
  7626. position:absolute;
  7627. left:0px;
  7628. top:0px;
  7629. width:61px;
  7630. height:80px;
  7631. background:inherit;
  7632. background-color:rgba(255, 255, 255, 0);
  7633. border:none;
  7634. border-left:0px;
  7635. border-right:0px;
  7636. border-radius:0px;
  7637. border-top-left-radius:0px;
  7638. border-top-right-radius:0px;
  7639. border-bottom-right-radius:0px;
  7640. border-bottom-left-radius:0px;
  7641. -moz-box-shadow:none;
  7642. -webkit-box-shadow:none;
  7643. box-shadow:none;
  7644. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7645. font-weight:400;
  7646. font-style:normal;
  7647. font-size:12px;
  7648. line-height:40px;
  7649. }
  7650. #u65060 {
  7651. border-width:0px;
  7652. position:absolute;
  7653. left:512px;
  7654. top:549px;
  7655. width:61px;
  7656. height:80px;
  7657. display:flex;
  7658. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7659. font-weight:400;
  7660. font-style:normal;
  7661. font-size:12px;
  7662. line-height:40px;
  7663. }
  7664. #u65060 .text {
  7665. position:absolute;
  7666. align-self:flex-start;
  7667. padding:0px 0px 0px 0px;
  7668. box-sizing:border-box;
  7669. width:100%;
  7670. }
  7671. #u65060_text {
  7672. border-width:0px;
  7673. white-space:nowrap;
  7674. text-transform:none;
  7675. }
  7676. #u65061 {
  7677. border-width:0px;
  7678. position:absolute;
  7679. left:0px;
  7680. top:0px;
  7681. width:0px;
  7682. height:0px;
  7683. }
  7684. #u65062_div {
  7685. border-width:0px;
  7686. position:absolute;
  7687. left:0px;
  7688. top:0px;
  7689. width:100px;
  7690. height:100px;
  7691. background:inherit;
  7692. background-color:rgba(255, 255, 255, 1);
  7693. box-sizing:border-box;
  7694. border-width:1px;
  7695. border-style:solid;
  7696. border-color:rgba(242, 242, 242, 1);
  7697. border-radius:4px;
  7698. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  7699. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  7700. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  7701. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7702. font-weight:400;
  7703. font-style:normal;
  7704. font-size:14px;
  7705. text-align:left;
  7706. }
  7707. #u65062 {
  7708. border-width:0px;
  7709. position:absolute;
  7710. left:377px;
  7711. top:629px;
  7712. width:100px;
  7713. height:100px;
  7714. display:flex;
  7715. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7716. font-weight:400;
  7717. font-style:normal;
  7718. font-size:14px;
  7719. text-align:left;
  7720. }
  7721. #u65062 .text {
  7722. position:absolute;
  7723. align-self:center;
  7724. padding:2px 2px 2px 2px;
  7725. box-sizing:border-box;
  7726. width:100%;
  7727. }
  7728. #u65062_text {
  7729. border-width:0px;
  7730. word-wrap:break-word;
  7731. text-transform:none;
  7732. visibility:hidden;
  7733. }
  7734. #u65063_div {
  7735. border-width:0px;
  7736. position:absolute;
  7737. left:0px;
  7738. top:0px;
  7739. width:85px;
  7740. height:40px;
  7741. background:inherit;
  7742. background-color:rgba(255, 255, 255, 1);
  7743. box-sizing:border-box;
  7744. border-width:1px;
  7745. border-style:solid;
  7746. border-color:rgba(215, 215, 215, 1);
  7747. border-left:0px;
  7748. border-top:0px;
  7749. border-right:0px;
  7750. border-radius:0px;
  7751. border-bottom-right-radius:0px;
  7752. border-bottom-left-radius:0px;
  7753. -moz-box-shadow:none;
  7754. -webkit-box-shadow:none;
  7755. box-shadow:none;
  7756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7757. font-weight:400;
  7758. font-style:normal;
  7759. font-size:14px;
  7760. }
  7761. #u65063 {
  7762. border-width:0px;
  7763. position:absolute;
  7764. left:385px;
  7765. top:639px;
  7766. width:85px;
  7767. height:40px;
  7768. display:flex;
  7769. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7770. font-weight:400;
  7771. font-style:normal;
  7772. font-size:14px;
  7773. }
  7774. #u65063 .text {
  7775. position:absolute;
  7776. align-self:center;
  7777. padding:2px 2px 2px 2px;
  7778. box-sizing:border-box;
  7779. width:100%;
  7780. }
  7781. #u65063_text {
  7782. border-width:0px;
  7783. word-wrap:break-word;
  7784. text-transform:none;
  7785. }
  7786. #u65064_div {
  7787. border-width:0px;
  7788. position:absolute;
  7789. left:0px;
  7790. top:0px;
  7791. width:85px;
  7792. height:40px;
  7793. background:inherit;
  7794. background-color:rgba(255, 255, 255, 1);
  7795. border:none;
  7796. border-left:0px;
  7797. border-top:0px;
  7798. border-right:0px;
  7799. border-radius:0px;
  7800. border-bottom-right-radius:0px;
  7801. border-bottom-left-radius:0px;
  7802. -moz-box-shadow:none;
  7803. -webkit-box-shadow:none;
  7804. box-shadow:none;
  7805. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7806. font-weight:400;
  7807. font-style:normal;
  7808. font-size:14px;
  7809. }
  7810. #u65064 {
  7811. border-width:0px;
  7812. position:absolute;
  7813. left:385px;
  7814. top:679px;
  7815. width:85px;
  7816. height:40px;
  7817. display:flex;
  7818. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7819. font-weight:400;
  7820. font-style:normal;
  7821. font-size:14px;
  7822. }
  7823. #u65064 .text {
  7824. position:absolute;
  7825. align-self:center;
  7826. padding:2px 2px 2px 2px;
  7827. box-sizing:border-box;
  7828. width:100%;
  7829. }
  7830. #u65064_text {
  7831. border-width:0px;
  7832. word-wrap:break-word;
  7833. text-transform:none;
  7834. }
  7835. #u65065_div {
  7836. border-width:0px;
  7837. position:absolute;
  7838. left:0px;
  7839. top:0px;
  7840. width:61px;
  7841. height:80px;
  7842. background:inherit;
  7843. background-color:rgba(255, 255, 255, 0);
  7844. border:none;
  7845. border-left:0px;
  7846. border-right:0px;
  7847. border-radius:0px;
  7848. border-top-left-radius:0px;
  7849. border-top-right-radius:0px;
  7850. border-bottom-right-radius:0px;
  7851. border-bottom-left-radius:0px;
  7852. -moz-box-shadow:none;
  7853. -webkit-box-shadow:none;
  7854. box-shadow:none;
  7855. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7856. font-weight:400;
  7857. font-style:normal;
  7858. font-size:12px;
  7859. line-height:40px;
  7860. }
  7861. #u65065 {
  7862. border-width:0px;
  7863. position:absolute;
  7864. left:643px;
  7865. top:549px;
  7866. width:61px;
  7867. height:80px;
  7868. display:flex;
  7869. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7870. font-weight:400;
  7871. font-style:normal;
  7872. font-size:12px;
  7873. line-height:40px;
  7874. }
  7875. #u65065 .text {
  7876. position:absolute;
  7877. align-self:flex-start;
  7878. padding:0px 0px 0px 0px;
  7879. box-sizing:border-box;
  7880. width:100%;
  7881. }
  7882. #u65065_text {
  7883. border-width:0px;
  7884. white-space:nowrap;
  7885. text-transform:none;
  7886. }
  7887. #u65066 {
  7888. border-width:0px;
  7889. position:absolute;
  7890. left:0px;
  7891. top:0px;
  7892. width:0px;
  7893. height:0px;
  7894. }
  7895. #u65067_div {
  7896. border-width:0px;
  7897. position:absolute;
  7898. left:0px;
  7899. top:0px;
  7900. width:160px;
  7901. height:30px;
  7902. background:inherit;
  7903. background-color:rgba(255, 255, 255, 1);
  7904. box-sizing:border-box;
  7905. border-width:1px;
  7906. border-style:solid;
  7907. border-color:rgba(215, 215, 215, 1);
  7908. border-radius:4px;
  7909. -moz-box-shadow:none;
  7910. -webkit-box-shadow:none;
  7911. box-shadow:none;
  7912. font-size:14px;
  7913. }
  7914. #u65067 {
  7915. border-width:0px;
  7916. position:absolute;
  7917. left:1031px;
  7918. top:169px;
  7919. width:160px;
  7920. height:30px;
  7921. display:flex;
  7922. font-size:14px;
  7923. }
  7924. #u65067 .text {
  7925. position:absolute;
  7926. align-self:center;
  7927. padding:2px 2px 2px 2px;
  7928. box-sizing:border-box;
  7929. width:100%;
  7930. }
  7931. #u65067_text {
  7932. border-width:0px;
  7933. word-wrap:break-word;
  7934. text-transform:none;
  7935. visibility:hidden;
  7936. }
  7937. #u65068_input {
  7938. position:absolute;
  7939. left:0px;
  7940. top:0px;
  7941. width:153px;
  7942. height:23px;
  7943. padding:2px 2px 2px 2px;
  7944. font-family:'ArialMT', 'Arial', sans-serif;
  7945. font-weight:400;
  7946. font-style:normal;
  7947. font-size:14px;
  7948. letter-spacing:normal;
  7949. color:#AAAAAA;
  7950. vertical-align:none;
  7951. text-align:left;
  7952. text-transform:none;
  7953. background-color:transparent;
  7954. border-color:transparent;
  7955. }
  7956. #u65068_input.disabled {
  7957. position:absolute;
  7958. left:0px;
  7959. top:0px;
  7960. width:153px;
  7961. height:23px;
  7962. padding:2px 2px 2px 2px;
  7963. font-family:'ArialMT', 'Arial', sans-serif;
  7964. font-weight:400;
  7965. font-style:normal;
  7966. font-size:14px;
  7967. letter-spacing:normal;
  7968. color:#AAAAAA;
  7969. vertical-align:none;
  7970. text-align:left;
  7971. text-transform:none;
  7972. background-color:transparent;
  7973. border-color:transparent;
  7974. }
  7975. #u65068_div {
  7976. border-width:0px;
  7977. position:absolute;
  7978. left:0px;
  7979. top:0px;
  7980. width:153px;
  7981. height:23px;
  7982. background:inherit;
  7983. background-color:rgba(255, 255, 255, 1);
  7984. border:none;
  7985. border-radius:0px;
  7986. -moz-box-shadow:none;
  7987. -webkit-box-shadow:none;
  7988. box-shadow:none;
  7989. font-size:14px;
  7990. color:#AAAAAA;
  7991. }
  7992. #u65068 {
  7993. border-width:0px;
  7994. position:absolute;
  7995. left:1036px;
  7996. top:171px;
  7997. width:153px;
  7998. height:23px;
  7999. display:flex;
  8000. font-size:14px;
  8001. color:#AAAAAA;
  8002. }
  8003. #u65068 .text {
  8004. position:absolute;
  8005. align-self:flex-start;
  8006. padding:2px 2px 2px 2px;
  8007. box-sizing:border-box;
  8008. width:100%;
  8009. }
  8010. #u65068_div.disabled {
  8011. border-width:0px;
  8012. position:absolute;
  8013. left:0px;
  8014. top:0px;
  8015. width:153px;
  8016. height:23px;
  8017. background:inherit;
  8018. background-color:rgba(240, 240, 240, 1);
  8019. border:none;
  8020. border-radius:0px;
  8021. -moz-box-shadow:none;
  8022. -webkit-box-shadow:none;
  8023. box-shadow:none;
  8024. font-size:14px;
  8025. color:#AAAAAA;
  8026. }
  8027. #u65068.disabled {
  8028. }
  8029. .u65068_input_option {
  8030. font-size:14px;
  8031. }
  8032. #u65069 {
  8033. border-width:0px;
  8034. position:absolute;
  8035. left:0px;
  8036. top:0px;
  8037. width:0px;
  8038. height:0px;
  8039. }
  8040. #u65070_div {
  8041. border-width:0px;
  8042. position:absolute;
  8043. left:0px;
  8044. top:0px;
  8045. width:160px;
  8046. height:30px;
  8047. background:inherit;
  8048. background-color:rgba(255, 255, 255, 1);
  8049. box-sizing:border-box;
  8050. border-width:1px;
  8051. border-style:solid;
  8052. border-color:rgba(201, 201, 201, 1);
  8053. border-radius:4px;
  8054. -moz-box-shadow:none;
  8055. -webkit-box-shadow:none;
  8056. box-shadow:none;
  8057. font-family:'Microsoft YaHei', sans-serif;
  8058. font-weight:400;
  8059. font-style:normal;
  8060. font-size:14px;
  8061. color:#CCCCCC;
  8062. text-align:left;
  8063. }
  8064. #u65070 {
  8065. border-width:0px;
  8066. position:absolute;
  8067. left:1371px;
  8068. top:170px;
  8069. width:160px;
  8070. height:30px;
  8071. display:flex;
  8072. font-family:'Microsoft YaHei', sans-serif;
  8073. font-weight:400;
  8074. font-style:normal;
  8075. font-size:14px;
  8076. color:#CCCCCC;
  8077. text-align:left;
  8078. }
  8079. #u65070 .text {
  8080. position:absolute;
  8081. align-self:center;
  8082. padding:2px 8px 2px 8px;
  8083. box-sizing:border-box;
  8084. width:100%;
  8085. }
  8086. #u65070_text {
  8087. border-width:0px;
  8088. word-wrap:break-word;
  8089. text-transform:none;
  8090. visibility:hidden;
  8091. }
  8092. #u65071_input {
  8093. position:absolute;
  8094. left:0px;
  8095. top:0px;
  8096. width:150px;
  8097. height:28px;
  8098. padding:2px 2px 2px 2px;
  8099. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8100. font-weight:400;
  8101. font-style:normal;
  8102. font-size:14px;
  8103. letter-spacing:normal;
  8104. color:#000000;
  8105. vertical-align:none;
  8106. text-align:left;
  8107. text-transform:none;
  8108. background-color:transparent;
  8109. border-color:transparent;
  8110. }
  8111. #u65071_input.disabled {
  8112. position:absolute;
  8113. left:0px;
  8114. top:0px;
  8115. width:150px;
  8116. height:28px;
  8117. padding:2px 2px 2px 2px;
  8118. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8119. font-weight:400;
  8120. font-style:normal;
  8121. font-size:14px;
  8122. letter-spacing:normal;
  8123. color:#000000;
  8124. vertical-align:none;
  8125. text-align:left;
  8126. text-transform:none;
  8127. background-color:transparent;
  8128. border-color:transparent;
  8129. }
  8130. #u65071_div {
  8131. border-width:0px;
  8132. position:absolute;
  8133. left:0px;
  8134. top:0px;
  8135. width:150px;
  8136. height:28px;
  8137. background:inherit;
  8138. background-color:rgba(255, 255, 255, 1);
  8139. border:none;
  8140. border-radius:0px;
  8141. -moz-box-shadow:none;
  8142. -webkit-box-shadow:none;
  8143. box-shadow:none;
  8144. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8145. font-weight:400;
  8146. font-style:normal;
  8147. font-size:14px;
  8148. }
  8149. #u65071 {
  8150. border-width:0px;
  8151. position:absolute;
  8152. left:1377px;
  8153. top:171px;
  8154. width:150px;
  8155. height:28px;
  8156. display:flex;
  8157. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8158. font-weight:400;
  8159. font-style:normal;
  8160. font-size:14px;
  8161. }
  8162. #u65071 .text {
  8163. position:absolute;
  8164. align-self:center;
  8165. padding:2px 2px 2px 2px;
  8166. box-sizing:border-box;
  8167. width:100%;
  8168. }
  8169. #u65071_div.disabled {
  8170. border-width:0px;
  8171. position:absolute;
  8172. left:0px;
  8173. top:0px;
  8174. width:150px;
  8175. height:28px;
  8176. background:inherit;
  8177. background-color:rgba(240, 240, 240, 1);
  8178. border:none;
  8179. border-radius:0px;
  8180. -moz-box-shadow:none;
  8181. -webkit-box-shadow:none;
  8182. box-shadow:none;
  8183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8184. font-weight:400;
  8185. font-style:normal;
  8186. font-size:14px;
  8187. }
  8188. #u65071.disabled {
  8189. }
  8190. #u65072 {
  8191. border-width:0px;
  8192. position:absolute;
  8193. left:0px;
  8194. top:0px;
  8195. width:0px;
  8196. height:0px;
  8197. }
  8198. #u65073_div {
  8199. border-width:0px;
  8200. position:absolute;
  8201. left:0px;
  8202. top:0px;
  8203. width:100px;
  8204. height:60px;
  8205. background:inherit;
  8206. background-color:rgba(255, 255, 255, 1);
  8207. box-sizing:border-box;
  8208. border-width:1px;
  8209. border-style:solid;
  8210. border-color:rgba(242, 242, 242, 1);
  8211. border-radius:4px;
  8212. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  8213. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  8214. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  8215. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8216. font-weight:400;
  8217. font-style:normal;
  8218. font-size:14px;
  8219. text-align:left;
  8220. }
  8221. #u65073 {
  8222. border-width:0px;
  8223. position:absolute;
  8224. left:512px;
  8225. top:629px;
  8226. width:100px;
  8227. height:60px;
  8228. display:flex;
  8229. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8230. font-weight:400;
  8231. font-style:normal;
  8232. font-size:14px;
  8233. text-align:left;
  8234. }
  8235. #u65073 .text {
  8236. position:absolute;
  8237. align-self:center;
  8238. padding:2px 2px 2px 2px;
  8239. box-sizing:border-box;
  8240. width:100%;
  8241. }
  8242. #u65073_text {
  8243. border-width:0px;
  8244. word-wrap:break-word;
  8245. text-transform:none;
  8246. visibility:hidden;
  8247. }
  8248. #u65074_div {
  8249. border-width:0px;
  8250. position:absolute;
  8251. left:0px;
  8252. top:0px;
  8253. width:85px;
  8254. height:40px;
  8255. background:inherit;
  8256. background-color:rgba(255, 255, 255, 1);
  8257. border:none;
  8258. border-left:0px;
  8259. border-top:0px;
  8260. border-right:0px;
  8261. border-radius:0px;
  8262. border-bottom-right-radius:0px;
  8263. border-bottom-left-radius:0px;
  8264. -moz-box-shadow:none;
  8265. -webkit-box-shadow:none;
  8266. box-shadow:none;
  8267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8268. font-weight:400;
  8269. font-style:normal;
  8270. font-size:14px;
  8271. }
  8272. #u65074 {
  8273. border-width:0px;
  8274. position:absolute;
  8275. left:520px;
  8276. top:639px;
  8277. width:85px;
  8278. height:40px;
  8279. display:flex;
  8280. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8281. font-weight:400;
  8282. font-style:normal;
  8283. font-size:14px;
  8284. }
  8285. #u65074 .text {
  8286. position:absolute;
  8287. align-self:center;
  8288. padding:2px 2px 2px 2px;
  8289. box-sizing:border-box;
  8290. width:100%;
  8291. }
  8292. #u65074_text {
  8293. border-width:0px;
  8294. word-wrap:break-word;
  8295. text-transform:none;
  8296. }
  8297. #u65075 {
  8298. border-width:0px;
  8299. position:absolute;
  8300. left:0px;
  8301. top:0px;
  8302. width:0px;
  8303. height:0px;
  8304. }
  8305. #u65076 {
  8306. border-width:0px;
  8307. position:absolute;
  8308. left:0px;
  8309. top:0px;
  8310. width:0px;
  8311. height:0px;
  8312. }
  8313. #u65077_div {
  8314. border-width:0px;
  8315. position:absolute;
  8316. left:0px;
  8317. top:0px;
  8318. width:480px;
  8319. height:280px;
  8320. background:inherit;
  8321. background-color:rgba(255, 255, 255, 1);
  8322. border:none;
  8323. border-radius:4px;
  8324. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  8325. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  8326. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  8327. font-family:'Microsoft YaHei', sans-serif;
  8328. font-weight:400;
  8329. font-style:normal;
  8330. }
  8331. #u65077 {
  8332. border-width:0px;
  8333. position:absolute;
  8334. left:427px;
  8335. top:753px;
  8336. width:480px;
  8337. height:280px;
  8338. display:flex;
  8339. font-family:'Microsoft YaHei', sans-serif;
  8340. font-weight:400;
  8341. font-style:normal;
  8342. }
  8343. #u65077 .text {
  8344. position:absolute;
  8345. align-self:center;
  8346. padding:2px 2px 2px 2px;
  8347. box-sizing:border-box;
  8348. width:100%;
  8349. }
  8350. #u65077_text {
  8351. border-width:0px;
  8352. word-wrap:break-word;
  8353. text-transform:none;
  8354. visibility:hidden;
  8355. }
  8356. #u65078_div {
  8357. border-width:0px;
  8358. position:absolute;
  8359. left:0px;
  8360. top:0px;
  8361. width:64px;
  8362. height:22px;
  8363. background:inherit;
  8364. background-color:rgba(255, 255, 255, 0);
  8365. border:none;
  8366. border-radius:0px;
  8367. -moz-box-shadow:none;
  8368. -webkit-box-shadow:none;
  8369. box-shadow:none;
  8370. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8371. font-weight:400;
  8372. font-style:normal;
  8373. font-size:14px;
  8374. color:#666666;
  8375. line-height:22px;
  8376. }
  8377. #u65078 {
  8378. border-width:0px;
  8379. position:absolute;
  8380. left:454px;
  8381. top:816px;
  8382. width:64px;
  8383. height:22px;
  8384. display:flex;
  8385. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8386. font-weight:400;
  8387. font-style:normal;
  8388. font-size:14px;
  8389. color:#666666;
  8390. line-height:22px;
  8391. }
  8392. #u65078 .text {
  8393. position:absolute;
  8394. align-self:flex-start;
  8395. padding:0px 0px 0px 0px;
  8396. box-sizing:border-box;
  8397. width:100%;
  8398. }
  8399. #u65078_text {
  8400. border-width:0px;
  8401. white-space:nowrap;
  8402. text-transform:none;
  8403. }
  8404. #u65079_div {
  8405. border-width:0px;
  8406. position:absolute;
  8407. left:0px;
  8408. top:0px;
  8409. width:109px;
  8410. height:21px;
  8411. background:inherit;
  8412. background-color:rgba(255, 255, 255, 0);
  8413. border:none;
  8414. border-radius:0px;
  8415. -moz-box-shadow:none;
  8416. -webkit-box-shadow:none;
  8417. box-shadow:none;
  8418. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  8419. font-weight:650;
  8420. font-style:normal;
  8421. font-size:18px;
  8422. color:#000000;
  8423. line-height:22px;
  8424. }
  8425. #u65079 {
  8426. border-width:0px;
  8427. position:absolute;
  8428. left:454px;
  8429. top:774px;
  8430. width:109px;
  8431. height:21px;
  8432. display:flex;
  8433. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  8434. font-weight:650;
  8435. font-style:normal;
  8436. font-size:18px;
  8437. color:#000000;
  8438. line-height:22px;
  8439. }
  8440. #u65079 .text {
  8441. position:absolute;
  8442. align-self:flex-start;
  8443. padding:0px 0px 0px 0px;
  8444. box-sizing:border-box;
  8445. width:100%;
  8446. }
  8447. #u65079_text {
  8448. border-width:0px;
  8449. white-space:nowrap;
  8450. text-transform:none;
  8451. }
  8452. #u65080 label {
  8453. left:0px;
  8454. width:100%;
  8455. }
  8456. #u65080_img {
  8457. border-width:0px;
  8458. position:absolute;
  8459. left:0px;
  8460. top:3px;
  8461. width:12px;
  8462. height:12px;
  8463. }
  8464. #u65080 {
  8465. border-width:0px;
  8466. position:absolute;
  8467. left:531px;
  8468. top:819px;
  8469. width:100px;
  8470. height:18px;
  8471. display:flex;
  8472. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8473. font-weight:400;
  8474. font-style:normal;
  8475. }
  8476. #u65080 .text {
  8477. position:absolute;
  8478. align-self:center;
  8479. padding:0px 2px 0px 2px;
  8480. box-sizing:border-box;
  8481. }
  8482. #u65080_img.selected {
  8483. }
  8484. #u65080.selected {
  8485. }
  8486. #u65080_img.disabled {
  8487. }
  8488. #u65080.disabled {
  8489. }
  8490. #u65080_img.selectedDisabled {
  8491. }
  8492. #u65080.selectedDisabled {
  8493. }
  8494. #u65080_text {
  8495. border-width:0px;
  8496. position:absolute;
  8497. left:14px;
  8498. top:0px;
  8499. width:84px;
  8500. word-wrap:break-word;
  8501. text-transform:none;
  8502. }
  8503. #u65080_input {
  8504. border-width:0px;
  8505. position:absolute;
  8506. left:0px;
  8507. top:0px;
  8508. width:0px;
  8509. height:0px;
  8510. opacity:0;
  8511. }
  8512. #u65081 label {
  8513. left:0px;
  8514. width:100%;
  8515. }
  8516. #u65081_img {
  8517. border-width:0px;
  8518. position:absolute;
  8519. left:0px;
  8520. top:3px;
  8521. width:12px;
  8522. height:12px;
  8523. }
  8524. #u65081 {
  8525. border-width:0px;
  8526. position:absolute;
  8527. left:531px;
  8528. top:852px;
  8529. width:100px;
  8530. height:18px;
  8531. display:flex;
  8532. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8533. font-weight:400;
  8534. font-style:normal;
  8535. }
  8536. #u65081 .text {
  8537. position:absolute;
  8538. align-self:center;
  8539. padding:0px 2px 0px 2px;
  8540. box-sizing:border-box;
  8541. }
  8542. #u65081_img.selected {
  8543. }
  8544. #u65081.selected {
  8545. }
  8546. #u65081_img.disabled {
  8547. }
  8548. #u65081.disabled {
  8549. }
  8550. #u65081_img.selectedDisabled {
  8551. }
  8552. #u65081.selectedDisabled {
  8553. }
  8554. #u65081_text {
  8555. border-width:0px;
  8556. position:absolute;
  8557. left:14px;
  8558. top:0px;
  8559. width:84px;
  8560. word-wrap:break-word;
  8561. text-transform:none;
  8562. }
  8563. #u65081_input {
  8564. border-width:0px;
  8565. position:absolute;
  8566. left:0px;
  8567. top:0px;
  8568. width:0px;
  8569. height:0px;
  8570. opacity:0;
  8571. }
  8572. #u65082 label {
  8573. left:0px;
  8574. width:100%;
  8575. }
  8576. #u65082_img {
  8577. border-width:0px;
  8578. position:absolute;
  8579. left:0px;
  8580. top:3px;
  8581. width:12px;
  8582. height:12px;
  8583. }
  8584. #u65082 {
  8585. border-width:0px;
  8586. position:absolute;
  8587. left:531px;
  8588. top:884px;
  8589. width:100px;
  8590. height:18px;
  8591. display:flex;
  8592. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8593. font-weight:400;
  8594. font-style:normal;
  8595. }
  8596. #u65082 .text {
  8597. position:absolute;
  8598. align-self:center;
  8599. padding:0px 2px 0px 2px;
  8600. box-sizing:border-box;
  8601. }
  8602. #u65082_img.selected {
  8603. }
  8604. #u65082.selected {
  8605. }
  8606. #u65082_img.disabled {
  8607. }
  8608. #u65082.disabled {
  8609. }
  8610. #u65082_img.selectedDisabled {
  8611. }
  8612. #u65082.selectedDisabled {
  8613. }
  8614. #u65082_text {
  8615. border-width:0px;
  8616. position:absolute;
  8617. left:14px;
  8618. top:0px;
  8619. width:84px;
  8620. word-wrap:break-word;
  8621. text-transform:none;
  8622. }
  8623. #u65082_input {
  8624. border-width:0px;
  8625. position:absolute;
  8626. left:0px;
  8627. top:0px;
  8628. width:0px;
  8629. height:0px;
  8630. opacity:0;
  8631. }
  8632. #u65083 {
  8633. border-width:0px;
  8634. position:absolute;
  8635. left:0px;
  8636. top:0px;
  8637. width:0px;
  8638. height:0px;
  8639. }
  8640. #u65084_div {
  8641. border-width:0px;
  8642. position:absolute;
  8643. left:0px;
  8644. top:0px;
  8645. width:347px;
  8646. height:60px;
  8647. background:inherit;
  8648. background-color:rgba(255, 255, 255, 1);
  8649. box-sizing:border-box;
  8650. border-width:1px;
  8651. border-style:solid;
  8652. border-color:rgba(41, 143, 255, 1);
  8653. border-radius:4px;
  8654. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  8655. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  8656. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  8657. font-family:'Microsoft YaHei', sans-serif;
  8658. font-weight:400;
  8659. font-style:normal;
  8660. font-size:14px;
  8661. color:#CCCCCC;
  8662. text-align:left;
  8663. }
  8664. #u65084 {
  8665. border-width:0px;
  8666. position:absolute;
  8667. left:531px;
  8668. top:912px;
  8669. width:347px;
  8670. height:60px;
  8671. display:flex;
  8672. font-family:'Microsoft YaHei', sans-serif;
  8673. font-weight:400;
  8674. font-style:normal;
  8675. font-size:14px;
  8676. color:#CCCCCC;
  8677. text-align:left;
  8678. }
  8679. #u65084 .text {
  8680. position:absolute;
  8681. align-self:center;
  8682. padding:2px 8px 2px 8px;
  8683. box-sizing:border-box;
  8684. width:100%;
  8685. }
  8686. #u65084_text {
  8687. border-width:0px;
  8688. word-wrap:break-word;
  8689. text-transform:none;
  8690. visibility:hidden;
  8691. }
  8692. #u65085_input {
  8693. position:absolute;
  8694. left:0px;
  8695. top:0px;
  8696. width:330px;
  8697. height:38px;
  8698. padding:2px 2px 2px 2px;
  8699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8700. font-weight:400;
  8701. font-style:normal;
  8702. font-size:14px;
  8703. letter-spacing:normal;
  8704. color:#000000;
  8705. vertical-align:none;
  8706. text-align:left;
  8707. text-transform:none;
  8708. background-color:transparent;
  8709. border-color:transparent;
  8710. }
  8711. #u65085_input.disabled {
  8712. position:absolute;
  8713. left:0px;
  8714. top:0px;
  8715. width:330px;
  8716. height:38px;
  8717. padding:2px 2px 2px 2px;
  8718. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8719. font-weight:400;
  8720. font-style:normal;
  8721. font-size:14px;
  8722. letter-spacing:normal;
  8723. color:#000000;
  8724. vertical-align:none;
  8725. text-align:left;
  8726. text-transform:none;
  8727. background-color:transparent;
  8728. border-color:transparent;
  8729. }
  8730. #u65085_div {
  8731. border-width:0px;
  8732. position:absolute;
  8733. left:0px;
  8734. top:0px;
  8735. width:330px;
  8736. height:38px;
  8737. background:inherit;
  8738. background-color:rgba(255, 255, 255, 1);
  8739. border:none;
  8740. border-radius:0px;
  8741. -moz-box-shadow:none;
  8742. -webkit-box-shadow:none;
  8743. box-shadow:none;
  8744. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8745. font-weight:400;
  8746. font-style:normal;
  8747. font-size:14px;
  8748. }
  8749. #u65085 {
  8750. border-width:0px;
  8751. position:absolute;
  8752. left:540px;
  8753. top:913px;
  8754. width:330px;
  8755. height:38px;
  8756. display:flex;
  8757. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8758. font-weight:400;
  8759. font-style:normal;
  8760. font-size:14px;
  8761. }
  8762. #u65085 .text {
  8763. position:absolute;
  8764. align-self:center;
  8765. padding:2px 2px 2px 2px;
  8766. box-sizing:border-box;
  8767. width:100%;
  8768. }
  8769. #u65085_div.disabled {
  8770. border-width:0px;
  8771. position:absolute;
  8772. left:0px;
  8773. top:0px;
  8774. width:330px;
  8775. height:38px;
  8776. background:inherit;
  8777. background-color:rgba(240, 240, 240, 1);
  8778. border:none;
  8779. border-radius:0px;
  8780. -moz-box-shadow:none;
  8781. -webkit-box-shadow:none;
  8782. box-shadow:none;
  8783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8784. font-weight:400;
  8785. font-style:normal;
  8786. font-size:14px;
  8787. }
  8788. #u65085.disabled {
  8789. }
  8790. #u65086 {
  8791. border-width:0px;
  8792. position:absolute;
  8793. left:0px;
  8794. top:0px;
  8795. width:0px;
  8796. height:0px;
  8797. }
  8798. #u65087_div {
  8799. border-width:0px;
  8800. position:absolute;
  8801. left:0px;
  8802. top:0px;
  8803. width:80px;
  8804. height:30px;
  8805. background:inherit;
  8806. background-color:rgba(24, 144, 255, 1);
  8807. border:none;
  8808. border-radius:4px;
  8809. -moz-box-shadow:none;
  8810. -webkit-box-shadow:none;
  8811. box-shadow:none;
  8812. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8813. font-weight:400;
  8814. font-style:normal;
  8815. font-size:14px;
  8816. color:#FFFFFF;
  8817. }
  8818. #u65087 {
  8819. border-width:0px;
  8820. position:absolute;
  8821. left:798px;
  8822. top:991px;
  8823. width:80px;
  8824. height:30px;
  8825. display:flex;
  8826. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8827. font-weight:400;
  8828. font-style:normal;
  8829. font-size:14px;
  8830. color:#FFFFFF;
  8831. }
  8832. #u65087 .text {
  8833. position:absolute;
  8834. align-self:center;
  8835. padding:2px 2px 2px 2px;
  8836. box-sizing:border-box;
  8837. width:100%;
  8838. }
  8839. #u65087_text {
  8840. border-width:0px;
  8841. word-wrap:break-word;
  8842. text-transform:none;
  8843. }
  8844. #u65088_div {
  8845. border-width:0px;
  8846. position:absolute;
  8847. left:0px;
  8848. top:0px;
  8849. width:80px;
  8850. height:30px;
  8851. background:inherit;
  8852. background-color:rgba(255, 255, 255, 1);
  8853. box-sizing:border-box;
  8854. border-width:1px;
  8855. border-style:solid;
  8856. border-color:rgba(170, 170, 170, 1);
  8857. border-radius:4px;
  8858. -moz-box-shadow:none;
  8859. -webkit-box-shadow:none;
  8860. box-shadow:none;
  8861. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8862. font-weight:400;
  8863. font-style:normal;
  8864. font-size:14px;
  8865. }
  8866. #u65088 {
  8867. border-width:0px;
  8868. position:absolute;
  8869. left:699px;
  8870. top:991px;
  8871. width:80px;
  8872. height:30px;
  8873. display:flex;
  8874. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8875. font-weight:400;
  8876. font-style:normal;
  8877. font-size:14px;
  8878. }
  8879. #u65088 .text {
  8880. position:absolute;
  8881. align-self:center;
  8882. padding:2px 2px 2px 2px;
  8883. box-sizing:border-box;
  8884. width:100%;
  8885. }
  8886. #u65088_text {
  8887. border-width:0px;
  8888. word-wrap:break-word;
  8889. text-transform:none;
  8890. }
  8891. #u65089_div {
  8892. border-width:0px;
  8893. position:absolute;
  8894. left:0px;
  8895. top:0px;
  8896. width:61px;
  8897. height:80px;
  8898. background:inherit;
  8899. background-color:rgba(255, 255, 255, 0);
  8900. border:none;
  8901. border-left:0px;
  8902. border-right:0px;
  8903. border-radius:0px;
  8904. border-top-left-radius:0px;
  8905. border-top-right-radius:0px;
  8906. border-bottom-right-radius:0px;
  8907. border-bottom-left-radius:0px;
  8908. -moz-box-shadow:none;
  8909. -webkit-box-shadow:none;
  8910. box-shadow:none;
  8911. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8912. font-weight:400;
  8913. font-style:normal;
  8914. font-size:12px;
  8915. line-height:40px;
  8916. }
  8917. #u65089 {
  8918. border-width:0px;
  8919. position:absolute;
  8920. left:776px;
  8921. top:549px;
  8922. width:61px;
  8923. height:80px;
  8924. display:flex;
  8925. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8926. font-weight:400;
  8927. font-style:normal;
  8928. font-size:12px;
  8929. line-height:40px;
  8930. }
  8931. #u65089 .text {
  8932. position:absolute;
  8933. align-self:flex-start;
  8934. padding:0px 0px 0px 0px;
  8935. box-sizing:border-box;
  8936. width:100%;
  8937. }
  8938. #u65089_text {
  8939. border-width:0px;
  8940. white-space:nowrap;
  8941. text-transform:none;
  8942. }
  8943. #u65090 {
  8944. border-width:0px;
  8945. position:absolute;
  8946. left:0px;
  8947. top:0px;
  8948. width:0px;
  8949. height:0px;
  8950. }
  8951. #u65091_div {
  8952. border-width:0px;
  8953. position:absolute;
  8954. left:0px;
  8955. top:0px;
  8956. width:100px;
  8957. height:60px;
  8958. background:inherit;
  8959. background-color:rgba(255, 255, 255, 1);
  8960. box-sizing:border-box;
  8961. border-width:1px;
  8962. border-style:solid;
  8963. border-color:rgba(242, 242, 242, 1);
  8964. border-radius:4px;
  8965. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  8966. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  8967. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  8968. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8969. font-weight:400;
  8970. font-style:normal;
  8971. font-size:14px;
  8972. text-align:left;
  8973. }
  8974. #u65091 {
  8975. border-width:0px;
  8976. position:absolute;
  8977. left:643px;
  8978. top:629px;
  8979. width:100px;
  8980. height:60px;
  8981. display:flex;
  8982. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8983. font-weight:400;
  8984. font-style:normal;
  8985. font-size:14px;
  8986. text-align:left;
  8987. }
  8988. #u65091 .text {
  8989. position:absolute;
  8990. align-self:center;
  8991. padding:2px 2px 2px 2px;
  8992. box-sizing:border-box;
  8993. width:100%;
  8994. }
  8995. #u65091_text {
  8996. border-width:0px;
  8997. word-wrap:break-word;
  8998. text-transform:none;
  8999. visibility:hidden;
  9000. }
  9001. #u65092_div {
  9002. border-width:0px;
  9003. position:absolute;
  9004. left:0px;
  9005. top:0px;
  9006. width:85px;
  9007. height:40px;
  9008. background:inherit;
  9009. background-color:rgba(255, 255, 255, 1);
  9010. border:none;
  9011. border-left:0px;
  9012. border-top:0px;
  9013. border-right:0px;
  9014. border-radius:0px;
  9015. border-bottom-right-radius:0px;
  9016. border-bottom-left-radius:0px;
  9017. -moz-box-shadow:none;
  9018. -webkit-box-shadow:none;
  9019. box-shadow:none;
  9020. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9021. font-weight:400;
  9022. font-style:normal;
  9023. font-size:14px;
  9024. }
  9025. #u65092 {
  9026. border-width:0px;
  9027. position:absolute;
  9028. left:651px;
  9029. top:639px;
  9030. width:85px;
  9031. height:40px;
  9032. display:flex;
  9033. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9034. font-weight:400;
  9035. font-style:normal;
  9036. font-size:14px;
  9037. }
  9038. #u65092 .text {
  9039. position:absolute;
  9040. align-self:center;
  9041. padding:2px 2px 2px 2px;
  9042. box-sizing:border-box;
  9043. width:100%;
  9044. }
  9045. #u65092_text {
  9046. border-width:0px;
  9047. word-wrap:break-word;
  9048. text-transform:none;
  9049. }
  9050. #u65093 {
  9051. border-width:0px;
  9052. position:absolute;
  9053. left:0px;
  9054. top:0px;
  9055. width:0px;
  9056. height:0px;
  9057. }
  9058. #u65094_div {
  9059. border-width:0px;
  9060. position:absolute;
  9061. left:0px;
  9062. top:0px;
  9063. width:200px;
  9064. height:1180px;
  9065. background:inherit;
  9066. background-color:rgba(255, 255, 255, 1);
  9067. border:none;
  9068. border-radius:0px;
  9069. -moz-box-shadow:none;
  9070. -webkit-box-shadow:none;
  9071. box-shadow:none;
  9072. }
  9073. #u65094 {
  9074. border-width:0px;
  9075. position:absolute;
  9076. left:122px;
  9077. top:50px;
  9078. width:200px;
  9079. height:1180px;
  9080. display:flex;
  9081. }
  9082. #u65094 .text {
  9083. position:absolute;
  9084. align-self:center;
  9085. padding:2px 2px 2px 2px;
  9086. box-sizing:border-box;
  9087. width:100%;
  9088. }
  9089. #u65094_text {
  9090. border-width:0px;
  9091. word-wrap:break-word;
  9092. text-transform:none;
  9093. visibility:hidden;
  9094. }
  9095. #u65095_div {
  9096. border-width:0px;
  9097. position:absolute;
  9098. left:0px;
  9099. top:0px;
  9100. width:200px;
  9101. height:60px;
  9102. background:inherit;
  9103. background-color:rgba(224, 231, 247, 1);
  9104. border:none;
  9105. border-radius:0px;
  9106. -moz-box-shadow:none;
  9107. -webkit-box-shadow:none;
  9108. box-shadow:none;
  9109. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9110. font-weight:500;
  9111. font-style:normal;
  9112. font-size:18px;
  9113. }
  9114. #u65095 {
  9115. border-width:0px;
  9116. position:absolute;
  9117. left:122px;
  9118. top:50px;
  9119. width:200px;
  9120. height:60px;
  9121. display:flex;
  9122. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9123. font-weight:500;
  9124. font-style:normal;
  9125. font-size:18px;
  9126. }
  9127. #u65095 .text {
  9128. position:absolute;
  9129. align-self:center;
  9130. padding:0px 0px 0px 20px;
  9131. box-sizing:border-box;
  9132. width:100%;
  9133. }
  9134. #u65095_text {
  9135. border-width:0px;
  9136. word-wrap:break-word;
  9137. text-transform:none;
  9138. }
  9139. #u65096_div {
  9140. border-width:0px;
  9141. position:absolute;
  9142. left:0px;
  9143. top:0px;
  9144. width:65px;
  9145. height:22px;
  9146. background:inherit;
  9147. background-color:rgba(255, 255, 255, 0);
  9148. border:none;
  9149. border-radius:0px;
  9150. -moz-box-shadow:none;
  9151. -webkit-box-shadow:none;
  9152. box-shadow:none;
  9153. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9154. font-weight:400;
  9155. font-style:normal;
  9156. font-size:16px;
  9157. color:#1890FF;
  9158. }
  9159. #u65096 {
  9160. border-width:0px;
  9161. position:absolute;
  9162. left:149px;
  9163. top:161px;
  9164. width:65px;
  9165. height:22px;
  9166. display:flex;
  9167. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9168. font-weight:400;
  9169. font-style:normal;
  9170. font-size:16px;
  9171. color:#1890FF;
  9172. }
  9173. #u65096 .text {
  9174. position:absolute;
  9175. align-self:flex-start;
  9176. padding:0px 0px 0px 0px;
  9177. box-sizing:border-box;
  9178. width:100%;
  9179. }
  9180. #u65096_text {
  9181. border-width:0px;
  9182. white-space:nowrap;
  9183. text-transform:none;
  9184. }
  9185. #u65097_div {
  9186. border-width:0px;
  9187. position:absolute;
  9188. left:0px;
  9189. top:0px;
  9190. width:65px;
  9191. height:22px;
  9192. background:inherit;
  9193. background-color:rgba(255, 255, 255, 0);
  9194. border:none;
  9195. border-radius:0px;
  9196. -moz-box-shadow:none;
  9197. -webkit-box-shadow:none;
  9198. box-shadow:none;
  9199. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9200. font-weight:400;
  9201. font-style:normal;
  9202. font-size:16px;
  9203. }
  9204. #u65097 {
  9205. border-width:0px;
  9206. position:absolute;
  9207. left:149px;
  9208. top:203px;
  9209. width:65px;
  9210. height:22px;
  9211. display:flex;
  9212. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9213. font-weight:400;
  9214. font-style:normal;
  9215. font-size:16px;
  9216. }
  9217. #u65097 .text {
  9218. position:absolute;
  9219. align-self:flex-start;
  9220. padding:0px 0px 0px 0px;
  9221. box-sizing:border-box;
  9222. width:100%;
  9223. }
  9224. #u65097_text {
  9225. border-width:0px;
  9226. white-space:nowrap;
  9227. text-transform:none;
  9228. }
  9229. #u65098_div {
  9230. border-width:0px;
  9231. position:absolute;
  9232. left:0px;
  9233. top:0px;
  9234. width:65px;
  9235. height:22px;
  9236. background:inherit;
  9237. background-color:rgba(255, 255, 255, 0);
  9238. border:none;
  9239. border-radius:0px;
  9240. -moz-box-shadow:none;
  9241. -webkit-box-shadow:none;
  9242. box-shadow:none;
  9243. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9244. font-weight:400;
  9245. font-style:normal;
  9246. font-size:16px;
  9247. }
  9248. #u65098 {
  9249. border-width:0px;
  9250. position:absolute;
  9251. left:149px;
  9252. top:245px;
  9253. width:65px;
  9254. height:22px;
  9255. display:flex;
  9256. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9257. font-weight:400;
  9258. font-style:normal;
  9259. font-size:16px;
  9260. }
  9261. #u65098 .text {
  9262. position:absolute;
  9263. align-self:flex-start;
  9264. padding:0px 0px 0px 0px;
  9265. box-sizing:border-box;
  9266. width:100%;
  9267. }
  9268. #u65098_text {
  9269. border-width:0px;
  9270. white-space:nowrap;
  9271. text-transform:none;
  9272. }
  9273. #u65099_div {
  9274. border-width:0px;
  9275. position:absolute;
  9276. left:0px;
  9277. top:0px;
  9278. width:65px;
  9279. height:22px;
  9280. background:inherit;
  9281. background-color:rgba(255, 255, 255, 0);
  9282. border:none;
  9283. border-radius:0px;
  9284. -moz-box-shadow:none;
  9285. -webkit-box-shadow:none;
  9286. box-shadow:none;
  9287. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9288. font-weight:400;
  9289. font-style:normal;
  9290. font-size:16px;
  9291. }
  9292. #u65099 {
  9293. border-width:0px;
  9294. position:absolute;
  9295. left:149px;
  9296. top:287px;
  9297. width:65px;
  9298. height:22px;
  9299. display:flex;
  9300. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9301. font-weight:400;
  9302. font-style:normal;
  9303. font-size:16px;
  9304. }
  9305. #u65099 .text {
  9306. position:absolute;
  9307. align-self:flex-start;
  9308. padding:0px 0px 0px 0px;
  9309. box-sizing:border-box;
  9310. width:100%;
  9311. }
  9312. #u65099_text {
  9313. border-width:0px;
  9314. white-space:nowrap;
  9315. text-transform:none;
  9316. }
  9317. #u65100_div {
  9318. border-width:0px;
  9319. position:absolute;
  9320. left:0px;
  9321. top:0px;
  9322. width:49px;
  9323. height:17px;
  9324. background:inherit;
  9325. background-color:rgba(255, 255, 255, 0);
  9326. border:none;
  9327. border-radius:0px;
  9328. -moz-box-shadow:none;
  9329. -webkit-box-shadow:none;
  9330. box-shadow:none;
  9331. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9332. font-weight:400;
  9333. font-style:normal;
  9334. font-size:12px;
  9335. color:#AAAAAA;
  9336. }
  9337. #u65100 {
  9338. border-width:0px;
  9339. position:absolute;
  9340. left:149px;
  9341. top:125px;
  9342. width:49px;
  9343. height:17px;
  9344. display:flex;
  9345. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9346. font-weight:400;
  9347. font-style:normal;
  9348. font-size:12px;
  9349. color:#AAAAAA;
  9350. }
  9351. #u65100 .text {
  9352. position:absolute;
  9353. align-self:flex-start;
  9354. padding:0px 0px 0px 0px;
  9355. box-sizing:border-box;
  9356. width:100%;
  9357. }
  9358. #u65100_text {
  9359. border-width:0px;
  9360. white-space:nowrap;
  9361. text-transform:none;
  9362. }
  9363. #u65101_div {
  9364. border-width:0px;
  9365. position:absolute;
  9366. left:0px;
  9367. top:0px;
  9368. width:65px;
  9369. height:22px;
  9370. background:inherit;
  9371. background-color:rgba(255, 255, 255, 0);
  9372. border:none;
  9373. border-radius:0px;
  9374. -moz-box-shadow:none;
  9375. -webkit-box-shadow:none;
  9376. box-shadow:none;
  9377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9378. font-weight:400;
  9379. font-style:normal;
  9380. font-size:16px;
  9381. }
  9382. #u65101 {
  9383. border-width:0px;
  9384. position:absolute;
  9385. left:149px;
  9386. top:387px;
  9387. width:65px;
  9388. height:22px;
  9389. display:flex;
  9390. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9391. font-weight:400;
  9392. font-style:normal;
  9393. font-size:16px;
  9394. }
  9395. #u65101 .text {
  9396. position:absolute;
  9397. align-self:flex-start;
  9398. padding:0px 0px 0px 0px;
  9399. box-sizing:border-box;
  9400. width:100%;
  9401. }
  9402. #u65101_text {
  9403. border-width:0px;
  9404. white-space:nowrap;
  9405. text-transform:none;
  9406. }
  9407. #u65102_div {
  9408. border-width:0px;
  9409. position:absolute;
  9410. left:0px;
  9411. top:0px;
  9412. width:49px;
  9413. height:17px;
  9414. background:inherit;
  9415. background-color:rgba(255, 255, 255, 0);
  9416. border:none;
  9417. border-radius:0px;
  9418. -moz-box-shadow:none;
  9419. -webkit-box-shadow:none;
  9420. box-shadow:none;
  9421. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9422. font-weight:400;
  9423. font-style:normal;
  9424. font-size:12px;
  9425. color:#AAAAAA;
  9426. }
  9427. #u65102 {
  9428. border-width:0px;
  9429. position:absolute;
  9430. left:149px;
  9431. top:351px;
  9432. width:49px;
  9433. height:17px;
  9434. display:flex;
  9435. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9436. font-weight:400;
  9437. font-style:normal;
  9438. font-size:12px;
  9439. color:#AAAAAA;
  9440. }
  9441. #u65102 .text {
  9442. position:absolute;
  9443. align-self:flex-start;
  9444. padding:0px 0px 0px 0px;
  9445. box-sizing:border-box;
  9446. width:100%;
  9447. }
  9448. #u65102_text {
  9449. border-width:0px;
  9450. white-space:nowrap;
  9451. text-transform:none;
  9452. }
  9453. #u65103_img {
  9454. border-width:0px;
  9455. position:absolute;
  9456. left:0px;
  9457. top:0px;
  9458. width:201px;
  9459. height:2px;
  9460. }
  9461. #u65103 {
  9462. border-width:0px;
  9463. position:absolute;
  9464. left:122px;
  9465. top:329px;
  9466. width:200px;
  9467. height:1px;
  9468. display:flex;
  9469. }
  9470. #u65103 .text {
  9471. position:absolute;
  9472. align-self:center;
  9473. padding:2px 2px 2px 2px;
  9474. box-sizing:border-box;
  9475. width:100%;
  9476. }
  9477. #u65103_text {
  9478. border-width:0px;
  9479. word-wrap:break-word;
  9480. text-transform:none;
  9481. visibility:hidden;
  9482. }
  9483. #u65104_div {
  9484. border-width:0px;
  9485. position:absolute;
  9486. left:0px;
  9487. top:0px;
  9488. width:65px;
  9489. height:22px;
  9490. background:inherit;
  9491. background-color:rgba(255, 255, 255, 0);
  9492. border:none;
  9493. border-radius:0px;
  9494. -moz-box-shadow:none;
  9495. -webkit-box-shadow:none;
  9496. box-shadow:none;
  9497. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9498. font-weight:400;
  9499. font-style:normal;
  9500. font-size:16px;
  9501. }
  9502. #u65104 {
  9503. border-width:0px;
  9504. position:absolute;
  9505. left:149px;
  9506. top:484px;
  9507. width:65px;
  9508. height:22px;
  9509. display:flex;
  9510. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9511. font-weight:400;
  9512. font-style:normal;
  9513. font-size:16px;
  9514. }
  9515. #u65104 .text {
  9516. position:absolute;
  9517. align-self:flex-start;
  9518. padding:0px 0px 0px 0px;
  9519. box-sizing:border-box;
  9520. width:100%;
  9521. }
  9522. #u65104_text {
  9523. border-width:0px;
  9524. white-space:nowrap;
  9525. text-transform:none;
  9526. }
  9527. #u65105_div {
  9528. border-width:0px;
  9529. position:absolute;
  9530. left:0px;
  9531. top:0px;
  9532. width:49px;
  9533. height:17px;
  9534. background:inherit;
  9535. background-color:rgba(255, 255, 255, 0);
  9536. border:none;
  9537. border-radius:0px;
  9538. -moz-box-shadow:none;
  9539. -webkit-box-shadow:none;
  9540. box-shadow:none;
  9541. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9542. font-weight:400;
  9543. font-style:normal;
  9544. font-size:12px;
  9545. color:#AAAAAA;
  9546. }
  9547. #u65105 {
  9548. border-width:0px;
  9549. position:absolute;
  9550. left:149px;
  9551. top:448px;
  9552. width:49px;
  9553. height:17px;
  9554. display:flex;
  9555. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9556. font-weight:400;
  9557. font-style:normal;
  9558. font-size:12px;
  9559. color:#AAAAAA;
  9560. }
  9561. #u65105 .text {
  9562. position:absolute;
  9563. align-self:flex-start;
  9564. padding:0px 0px 0px 0px;
  9565. box-sizing:border-box;
  9566. width:100%;
  9567. }
  9568. #u65105_text {
  9569. border-width:0px;
  9570. white-space:nowrap;
  9571. text-transform:none;
  9572. }
  9573. #u65106_img {
  9574. border-width:0px;
  9575. position:absolute;
  9576. left:0px;
  9577. top:0px;
  9578. width:201px;
  9579. height:2px;
  9580. }
  9581. #u65106 {
  9582. border-width:0px;
  9583. position:absolute;
  9584. left:122px;
  9585. top:426px;
  9586. width:200px;
  9587. height:1px;
  9588. display:flex;
  9589. }
  9590. #u65106 .text {
  9591. position:absolute;
  9592. align-self:center;
  9593. padding:2px 2px 2px 2px;
  9594. box-sizing:border-box;
  9595. width:100%;
  9596. }
  9597. #u65106_text {
  9598. border-width:0px;
  9599. word-wrap:break-word;
  9600. text-transform:none;
  9601. visibility:hidden;
  9602. }
  9603. #u65107_div {
  9604. border-width:0px;
  9605. position:absolute;
  9606. left:0px;
  9607. top:0px;
  9608. width:65px;
  9609. height:22px;
  9610. background:inherit;
  9611. background-color:rgba(255, 255, 255, 0);
  9612. border:none;
  9613. border-radius:0px;
  9614. -moz-box-shadow:none;
  9615. -webkit-box-shadow:none;
  9616. box-shadow:none;
  9617. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9618. font-weight:400;
  9619. font-style:normal;
  9620. font-size:16px;
  9621. }
  9622. #u65107 {
  9623. border-width:0px;
  9624. position:absolute;
  9625. left:149px;
  9626. top:526px;
  9627. width:65px;
  9628. height:22px;
  9629. display:flex;
  9630. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9631. font-weight:400;
  9632. font-style:normal;
  9633. font-size:16px;
  9634. }
  9635. #u65107 .text {
  9636. position:absolute;
  9637. align-self:flex-start;
  9638. padding:0px 0px 0px 0px;
  9639. box-sizing:border-box;
  9640. width:100%;
  9641. }
  9642. #u65107_text {
  9643. border-width:0px;
  9644. white-space:nowrap;
  9645. text-transform:none;
  9646. }
  9647. #u65108 {
  9648. border-width:0px;
  9649. position:absolute;
  9650. left:0px;
  9651. top:0px;
  9652. width:0px;
  9653. height:0px;
  9654. }
  9655. #u65109_div {
  9656. border-width:0px;
  9657. position:absolute;
  9658. left:0px;
  9659. top:0px;
  9660. width:160px;
  9661. height:30px;
  9662. background:inherit;
  9663. background-color:rgba(255, 255, 255, 1);
  9664. box-sizing:border-box;
  9665. border-width:1px;
  9666. border-style:solid;
  9667. border-color:rgba(215, 215, 215, 1);
  9668. border-radius:4px;
  9669. -moz-box-shadow:none;
  9670. -webkit-box-shadow:none;
  9671. box-shadow:none;
  9672. font-size:14px;
  9673. }
  9674. #u65109 {
  9675. border-width:0px;
  9676. position:absolute;
  9677. left:696px;
  9678. top:169px;
  9679. width:160px;
  9680. height:30px;
  9681. display:flex;
  9682. font-size:14px;
  9683. }
  9684. #u65109 .text {
  9685. position:absolute;
  9686. align-self:center;
  9687. padding:2px 2px 2px 2px;
  9688. box-sizing:border-box;
  9689. width:100%;
  9690. }
  9691. #u65109_text {
  9692. border-width:0px;
  9693. word-wrap:break-word;
  9694. text-transform:none;
  9695. visibility:hidden;
  9696. }
  9697. #u65110_input {
  9698. position:absolute;
  9699. left:0px;
  9700. top:0px;
  9701. width:153px;
  9702. height:23px;
  9703. padding:2px 2px 2px 2px;
  9704. font-family:'ArialMT', 'Arial', sans-serif;
  9705. font-weight:400;
  9706. font-style:normal;
  9707. font-size:14px;
  9708. letter-spacing:normal;
  9709. color:#AAAAAA;
  9710. vertical-align:none;
  9711. text-align:left;
  9712. text-transform:none;
  9713. background-color:transparent;
  9714. border-color:transparent;
  9715. }
  9716. #u65110_input.disabled {
  9717. position:absolute;
  9718. left:0px;
  9719. top:0px;
  9720. width:153px;
  9721. height:23px;
  9722. padding:2px 2px 2px 2px;
  9723. font-family:'ArialMT', 'Arial', sans-serif;
  9724. font-weight:400;
  9725. font-style:normal;
  9726. font-size:14px;
  9727. letter-spacing:normal;
  9728. color:#AAAAAA;
  9729. vertical-align:none;
  9730. text-align:left;
  9731. text-transform:none;
  9732. background-color:transparent;
  9733. border-color:transparent;
  9734. }
  9735. #u65110_div {
  9736. border-width:0px;
  9737. position:absolute;
  9738. left:0px;
  9739. top:0px;
  9740. width:153px;
  9741. height:23px;
  9742. background:inherit;
  9743. background-color:rgba(255, 255, 255, 1);
  9744. border:none;
  9745. border-radius:0px;
  9746. -moz-box-shadow:none;
  9747. -webkit-box-shadow:none;
  9748. box-shadow:none;
  9749. font-size:14px;
  9750. color:#AAAAAA;
  9751. }
  9752. #u65110 {
  9753. border-width:0px;
  9754. position:absolute;
  9755. left:701px;
  9756. top:171px;
  9757. width:153px;
  9758. height:23px;
  9759. display:flex;
  9760. font-size:14px;
  9761. color:#AAAAAA;
  9762. }
  9763. #u65110 .text {
  9764. position:absolute;
  9765. align-self:flex-start;
  9766. padding:2px 2px 2px 2px;
  9767. box-sizing:border-box;
  9768. width:100%;
  9769. }
  9770. #u65110_div.disabled {
  9771. border-width:0px;
  9772. position:absolute;
  9773. left:0px;
  9774. top:0px;
  9775. width:153px;
  9776. height:23px;
  9777. background:inherit;
  9778. background-color:rgba(240, 240, 240, 1);
  9779. border:none;
  9780. border-radius:0px;
  9781. -moz-box-shadow:none;
  9782. -webkit-box-shadow:none;
  9783. box-shadow:none;
  9784. font-size:14px;
  9785. color:#AAAAAA;
  9786. }
  9787. #u65110.disabled {
  9788. }
  9789. .u65110_input_option {
  9790. font-size:14px;
  9791. }
  9792. #u65111 {
  9793. border-width:0px;
  9794. position:absolute;
  9795. left:0px;
  9796. top:0px;
  9797. width:0px;
  9798. height:0px;
  9799. }
  9800. #u65112_div {
  9801. border-width:0px;
  9802. position:absolute;
  9803. left:0px;
  9804. top:0px;
  9805. width:160px;
  9806. height:30px;
  9807. background:inherit;
  9808. background-color:rgba(255, 255, 255, 1);
  9809. box-sizing:border-box;
  9810. border-width:1px;
  9811. border-style:solid;
  9812. border-color:rgba(215, 215, 215, 1);
  9813. border-radius:4px;
  9814. -moz-box-shadow:none;
  9815. -webkit-box-shadow:none;
  9816. box-shadow:none;
  9817. font-size:14px;
  9818. }
  9819. #u65112 {
  9820. border-width:0px;
  9821. position:absolute;
  9822. left:866px;
  9823. top:169px;
  9824. width:160px;
  9825. height:30px;
  9826. display:flex;
  9827. font-size:14px;
  9828. }
  9829. #u65112 .text {
  9830. position:absolute;
  9831. align-self:center;
  9832. padding:2px 2px 2px 2px;
  9833. box-sizing:border-box;
  9834. width:100%;
  9835. }
  9836. #u65112_text {
  9837. border-width:0px;
  9838. word-wrap:break-word;
  9839. text-transform:none;
  9840. visibility:hidden;
  9841. }
  9842. #u65113_input {
  9843. position:absolute;
  9844. left:0px;
  9845. top:0px;
  9846. width:153px;
  9847. height:23px;
  9848. padding:2px 2px 2px 2px;
  9849. font-family:'ArialMT', 'Arial', sans-serif;
  9850. font-weight:400;
  9851. font-style:normal;
  9852. font-size:14px;
  9853. letter-spacing:normal;
  9854. color:#AAAAAA;
  9855. vertical-align:none;
  9856. text-align:left;
  9857. text-transform:none;
  9858. background-color:transparent;
  9859. border-color:transparent;
  9860. }
  9861. #u65113_input.disabled {
  9862. position:absolute;
  9863. left:0px;
  9864. top:0px;
  9865. width:153px;
  9866. height:23px;
  9867. padding:2px 2px 2px 2px;
  9868. font-family:'ArialMT', 'Arial', sans-serif;
  9869. font-weight:400;
  9870. font-style:normal;
  9871. font-size:14px;
  9872. letter-spacing:normal;
  9873. color:#AAAAAA;
  9874. vertical-align:none;
  9875. text-align:left;
  9876. text-transform:none;
  9877. background-color:transparent;
  9878. border-color:transparent;
  9879. }
  9880. #u65113_div {
  9881. border-width:0px;
  9882. position:absolute;
  9883. left:0px;
  9884. top:0px;
  9885. width:153px;
  9886. height:23px;
  9887. background:inherit;
  9888. background-color:rgba(255, 255, 255, 1);
  9889. border:none;
  9890. border-radius:0px;
  9891. -moz-box-shadow:none;
  9892. -webkit-box-shadow:none;
  9893. box-shadow:none;
  9894. font-size:14px;
  9895. color:#AAAAAA;
  9896. }
  9897. #u65113 {
  9898. border-width:0px;
  9899. position:absolute;
  9900. left:871px;
  9901. top:171px;
  9902. width:153px;
  9903. height:23px;
  9904. display:flex;
  9905. font-size:14px;
  9906. color:#AAAAAA;
  9907. }
  9908. #u65113 .text {
  9909. position:absolute;
  9910. align-self:flex-start;
  9911. padding:2px 2px 2px 2px;
  9912. box-sizing:border-box;
  9913. width:100%;
  9914. }
  9915. #u65113_div.disabled {
  9916. border-width:0px;
  9917. position:absolute;
  9918. left:0px;
  9919. top:0px;
  9920. width:153px;
  9921. height:23px;
  9922. background:inherit;
  9923. background-color:rgba(240, 240, 240, 1);
  9924. border:none;
  9925. border-radius:0px;
  9926. -moz-box-shadow:none;
  9927. -webkit-box-shadow:none;
  9928. box-shadow:none;
  9929. font-size:14px;
  9930. color:#AAAAAA;
  9931. }
  9932. #u65113.disabled {
  9933. }
  9934. .u65113_input_option {
  9935. font-size:14px;
  9936. }
  9937. #u65114 {
  9938. border-width:0px;
  9939. position:absolute;
  9940. left:0px;
  9941. top:0px;
  9942. width:0px;
  9943. height:0px;
  9944. }
  9945. #u65115_div {
  9946. border-width:0px;
  9947. position:absolute;
  9948. left:0px;
  9949. top:0px;
  9950. width:160px;
  9951. height:30px;
  9952. background:inherit;
  9953. background-color:rgba(255, 255, 255, 1);
  9954. box-sizing:border-box;
  9955. border-width:1px;
  9956. border-style:solid;
  9957. border-color:rgba(215, 215, 215, 1);
  9958. border-radius:4px;
  9959. -moz-box-shadow:none;
  9960. -webkit-box-shadow:none;
  9961. box-shadow:none;
  9962. font-size:14px;
  9963. }
  9964. #u65115 {
  9965. border-width:0px;
  9966. position:absolute;
  9967. left:866px;
  9968. top:209px;
  9969. width:160px;
  9970. height:30px;
  9971. display:flex;
  9972. font-size:14px;
  9973. }
  9974. #u65115 .text {
  9975. position:absolute;
  9976. align-self:center;
  9977. padding:2px 2px 2px 2px;
  9978. box-sizing:border-box;
  9979. width:100%;
  9980. }
  9981. #u65115_text {
  9982. border-width:0px;
  9983. word-wrap:break-word;
  9984. text-transform:none;
  9985. visibility:hidden;
  9986. }
  9987. #u65116_input {
  9988. position:absolute;
  9989. left:0px;
  9990. top:0px;
  9991. width:153px;
  9992. height:23px;
  9993. padding:2px 2px 2px 2px;
  9994. font-family:'ArialMT', 'Arial', sans-serif;
  9995. font-weight:400;
  9996. font-style:normal;
  9997. font-size:14px;
  9998. letter-spacing:normal;
  9999. color:#AAAAAA;
  10000. vertical-align:none;
  10001. text-align:left;
  10002. text-transform:none;
  10003. background-color:transparent;
  10004. border-color:transparent;
  10005. }
  10006. #u65116_input.disabled {
  10007. position:absolute;
  10008. left:0px;
  10009. top:0px;
  10010. width:153px;
  10011. height:23px;
  10012. padding:2px 2px 2px 2px;
  10013. font-family:'ArialMT', 'Arial', sans-serif;
  10014. font-weight:400;
  10015. font-style:normal;
  10016. font-size:14px;
  10017. letter-spacing:normal;
  10018. color:#AAAAAA;
  10019. vertical-align:none;
  10020. text-align:left;
  10021. text-transform:none;
  10022. background-color:transparent;
  10023. border-color:transparent;
  10024. }
  10025. #u65116_div {
  10026. border-width:0px;
  10027. position:absolute;
  10028. left:0px;
  10029. top:0px;
  10030. width:153px;
  10031. height:23px;
  10032. background:inherit;
  10033. background-color:rgba(255, 255, 255, 1);
  10034. border:none;
  10035. border-radius:0px;
  10036. -moz-box-shadow:none;
  10037. -webkit-box-shadow:none;
  10038. box-shadow:none;
  10039. font-size:14px;
  10040. color:#AAAAAA;
  10041. }
  10042. #u65116 {
  10043. border-width:0px;
  10044. position:absolute;
  10045. left:871px;
  10046. top:211px;
  10047. width:153px;
  10048. height:23px;
  10049. display:flex;
  10050. font-size:14px;
  10051. color:#AAAAAA;
  10052. }
  10053. #u65116 .text {
  10054. position:absolute;
  10055. align-self:flex-start;
  10056. padding:2px 2px 2px 2px;
  10057. box-sizing:border-box;
  10058. width:100%;
  10059. }
  10060. #u65116_div.disabled {
  10061. border-width:0px;
  10062. position:absolute;
  10063. left:0px;
  10064. top:0px;
  10065. width:153px;
  10066. height:23px;
  10067. background:inherit;
  10068. background-color:rgba(240, 240, 240, 1);
  10069. border:none;
  10070. border-radius:0px;
  10071. -moz-box-shadow:none;
  10072. -webkit-box-shadow:none;
  10073. box-shadow:none;
  10074. font-size:14px;
  10075. color:#AAAAAA;
  10076. }
  10077. #u65116.disabled {
  10078. }
  10079. .u65116_input_option {
  10080. font-size:14px;
  10081. }
  10082. #u65117_div {
  10083. border-width:0px;
  10084. position:absolute;
  10085. left:0px;
  10086. top:0px;
  10087. width:69px;
  10088. height:50px;
  10089. background:inherit;
  10090. background-color:rgba(255, 255, 255, 0);
  10091. border:none;
  10092. border-left:0px;
  10093. border-top:0px;
  10094. border-right:0px;
  10095. border-radius:0px;
  10096. border-bottom-right-radius:0px;
  10097. border-bottom-left-radius:0px;
  10098. -moz-box-shadow:none;
  10099. -webkit-box-shadow:none;
  10100. box-shadow:none;
  10101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10102. font-weight:400;
  10103. font-style:normal;
  10104. font-size:14px;
  10105. line-height:40px;
  10106. }
  10107. #u65117 {
  10108. border-width:0px;
  10109. position:absolute;
  10110. left:734px;
  10111. top:90px;
  10112. width:69px;
  10113. height:50px;
  10114. display:flex;
  10115. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10116. font-weight:400;
  10117. font-style:normal;
  10118. font-size:14px;
  10119. line-height:40px;
  10120. }
  10121. #u65117 .text {
  10122. position:absolute;
  10123. align-self:center;
  10124. padding:0px 0px 0px 0px;
  10125. box-sizing:border-box;
  10126. width:100%;
  10127. }
  10128. #u65117_text {
  10129. border-width:0px;
  10130. white-space:nowrap;
  10131. text-transform:none;
  10132. }
  10133. #u65118 {
  10134. border-width:0px;
  10135. position:absolute;
  10136. left:0px;
  10137. top:0px;
  10138. width:0px;
  10139. height:0px;
  10140. }
  10141. #u65119_div {
  10142. border-width:0px;
  10143. position:absolute;
  10144. left:0px;
  10145. top:0px;
  10146. width:160px;
  10147. height:30px;
  10148. background:inherit;
  10149. background-color:rgba(255, 255, 255, 1);
  10150. box-sizing:border-box;
  10151. border-width:1px;
  10152. border-style:solid;
  10153. border-color:rgba(215, 215, 215, 1);
  10154. border-radius:4px;
  10155. -moz-box-shadow:none;
  10156. -webkit-box-shadow:none;
  10157. box-shadow:none;
  10158. font-size:14px;
  10159. }
  10160. #u65119 {
  10161. border-width:0px;
  10162. position:absolute;
  10163. left:356px;
  10164. top:208px;
  10165. width:160px;
  10166. height:30px;
  10167. display:flex;
  10168. font-size:14px;
  10169. }
  10170. #u65119 .text {
  10171. position:absolute;
  10172. align-self:center;
  10173. padding:2px 2px 2px 2px;
  10174. box-sizing:border-box;
  10175. width:100%;
  10176. }
  10177. #u65119_text {
  10178. border-width:0px;
  10179. word-wrap:break-word;
  10180. text-transform:none;
  10181. visibility:hidden;
  10182. }
  10183. #u65120_input {
  10184. position:absolute;
  10185. left:0px;
  10186. top:0px;
  10187. width:153px;
  10188. height:23px;
  10189. padding:2px 2px 2px 2px;
  10190. font-family:'ArialMT', 'Arial', sans-serif;
  10191. font-weight:400;
  10192. font-style:normal;
  10193. font-size:14px;
  10194. letter-spacing:normal;
  10195. color:#AAAAAA;
  10196. vertical-align:none;
  10197. text-align:left;
  10198. text-transform:none;
  10199. background-color:transparent;
  10200. border-color:transparent;
  10201. }
  10202. #u65120_input.disabled {
  10203. position:absolute;
  10204. left:0px;
  10205. top:0px;
  10206. width:153px;
  10207. height:23px;
  10208. padding:2px 2px 2px 2px;
  10209. font-family:'ArialMT', 'Arial', sans-serif;
  10210. font-weight:400;
  10211. font-style:normal;
  10212. font-size:14px;
  10213. letter-spacing:normal;
  10214. color:#AAAAAA;
  10215. vertical-align:none;
  10216. text-align:left;
  10217. text-transform:none;
  10218. background-color:transparent;
  10219. border-color:transparent;
  10220. }
  10221. #u65120_div {
  10222. border-width:0px;
  10223. position:absolute;
  10224. left:0px;
  10225. top:0px;
  10226. width:153px;
  10227. height:23px;
  10228. background:inherit;
  10229. background-color:rgba(255, 255, 255, 1);
  10230. border:none;
  10231. border-radius:0px;
  10232. -moz-box-shadow:none;
  10233. -webkit-box-shadow:none;
  10234. box-shadow:none;
  10235. font-size:14px;
  10236. color:#AAAAAA;
  10237. }
  10238. #u65120 {
  10239. border-width:0px;
  10240. position:absolute;
  10241. left:361px;
  10242. top:210px;
  10243. width:153px;
  10244. height:23px;
  10245. display:flex;
  10246. font-size:14px;
  10247. color:#AAAAAA;
  10248. }
  10249. #u65120 .text {
  10250. position:absolute;
  10251. align-self:flex-start;
  10252. padding:2px 2px 2px 2px;
  10253. box-sizing:border-box;
  10254. width:100%;
  10255. }
  10256. #u65120_div.disabled {
  10257. border-width:0px;
  10258. position:absolute;
  10259. left:0px;
  10260. top:0px;
  10261. width:153px;
  10262. height:23px;
  10263. background:inherit;
  10264. background-color:rgba(240, 240, 240, 1);
  10265. border:none;
  10266. border-radius:0px;
  10267. -moz-box-shadow:none;
  10268. -webkit-box-shadow:none;
  10269. box-shadow:none;
  10270. font-size:14px;
  10271. color:#AAAAAA;
  10272. }
  10273. #u65120.disabled {
  10274. }
  10275. .u65120_input_option {
  10276. font-size:14px;
  10277. }