styles.css 143 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1600px;
  7. margin-left:auto;
  8. margin-right:auto;
  9. text-align:left;
  10. }
  11. .form_sketch {
  12. border-color:transparent;
  13. background-color:transparent;
  14. }
  15. #base {
  16. position:absolute;
  17. z-index:0;
  18. }
  19. #u64670_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. #u64670 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u64670 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u64670_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u64671_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. #u64671 {
  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. #u64671 .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. #u64671_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u64672_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. #u64672 {
  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. #u64672 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u64672_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u64673 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u64674_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u64674 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u64674 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u64674_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u64675_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. #u64675 {
  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. #u64675 .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. #u64675_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u64676_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. #u64676 {
  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. #u64676 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u64676_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u64677 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u64678_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. #u64678_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. #u64678_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. #u64678 {
  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. #u64678 .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. #u64678_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. #u64678.disabled {
  356. }
  357. .u64678_input_option {
  358. font-size:14px;
  359. }
  360. #u64679_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u64679 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u64679 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u64679_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u64680_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. #u64680 {
  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. #u64680 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u64680_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u64681_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. #u64681 {
  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. #u64681 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u64681_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u64682 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u64683_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. #u64683 {
  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. #u64683 .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. #u64683_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u64684_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u64684 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u64684 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u64684_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u64685 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u64686_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. #u64686 {
  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. #u64686 .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. #u64686_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u64687_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u64687 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u64687 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u64687_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u64688 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u64689_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. #u64689 {
  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. #u64689 .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. #u64689_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u64690_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u64690 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:403px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u64690 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u64690_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u64691 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u64692_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. #u64692 {
  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. #u64692 .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. #u64692_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u64693_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u64693 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u64693 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u64693_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u64694 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u64695_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. #u64695 {
  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. #u64695 .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. #u64695_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u64696_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u64696 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:445px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u64696 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u64696_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u64697 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u64698_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. #u64698 {
  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. #u64698 .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. #u64698_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u64699_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u64699 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:319px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u64699 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u64699_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u64700 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u64701_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. #u64701 {
  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. #u64701 .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. #u64701_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u64702_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u64702 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u64702 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u64702_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u64703 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u64704_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. #u64704 {
  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. #u64704 .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. #u64704_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u64705_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u64705 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:361px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u64705 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u64705_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u64706 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u64707_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. #u64707 {
  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. #u64707 .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. #u64707_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u64708_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u64708 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:487px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u64708 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u64708_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u64709 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u64710_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. #u64710 {
  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. #u64710 .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. #u64710_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u64711_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u64711 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:529px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u64711 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u64711_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u64712_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. #u64712 {
  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. #u64712 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u64712_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u64713_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u64713 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u64713 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u64713_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u64714_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. #u64714 {
  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. #u64714 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u64714_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u64715_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u64715 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u64715 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u64715_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u64716 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u64717_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. #u64717 {
  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. #u64717 .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. #u64717_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u64718_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u64718 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u64718 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u64718_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u64719 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u64720_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. #u64720 {
  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. #u64720 .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. #u64720_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u64721_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u64721 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:277px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u64721 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u64721_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u64722_div {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:1258px;
  1644. height:1179px;
  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. #u64722 {
  1657. border-width:0px;
  1658. position:absolute;
  1659. left:333px;
  1660. top:51px;
  1661. width:1258px;
  1662. height:1179px;
  1663. display:flex;
  1664. }
  1665. #u64722 .text {
  1666. position:absolute;
  1667. align-self:center;
  1668. padding:2px 2px 2px 2px;
  1669. box-sizing:border-box;
  1670. width:100%;
  1671. }
  1672. #u64722_text {
  1673. border-width:0px;
  1674. word-wrap:break-word;
  1675. text-transform:none;
  1676. visibility:hidden;
  1677. }
  1678. #u64723 {
  1679. border-width:0px;
  1680. position:absolute;
  1681. left:356px;
  1682. top:373px;
  1683. width:1214px;
  1684. height:296px;
  1685. }
  1686. #u64724_img {
  1687. border-width:0px;
  1688. position:absolute;
  1689. left:0px;
  1690. top:0px;
  1691. width:81px;
  1692. height:30px;
  1693. }
  1694. #u64724 {
  1695. border-width:0px;
  1696. position:absolute;
  1697. left:0px;
  1698. top:0px;
  1699. width:81px;
  1700. height:30px;
  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. #u64724 .text {
  1709. position:absolute;
  1710. align-self:center;
  1711. padding:2px 2px 2px 2px;
  1712. box-sizing:border-box;
  1713. width:100%;
  1714. }
  1715. #u64724_text {
  1716. border-width:0px;
  1717. word-wrap:break-word;
  1718. text-transform:none;
  1719. }
  1720. #u64725_img {
  1721. border-width:0px;
  1722. position:absolute;
  1723. left:0px;
  1724. top:0px;
  1725. width:81px;
  1726. height:30px;
  1727. }
  1728. #u64725 {
  1729. border-width:0px;
  1730. position:absolute;
  1731. left:81px;
  1732. top:0px;
  1733. width:81px;
  1734. height:30px;
  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. #u64725 .text {
  1743. position:absolute;
  1744. align-self:center;
  1745. padding:2px 2px 2px 2px;
  1746. box-sizing:border-box;
  1747. width:100%;
  1748. }
  1749. #u64725_text {
  1750. border-width:0px;
  1751. word-wrap:break-word;
  1752. text-transform:none;
  1753. }
  1754. #u64726_img {
  1755. border-width:0px;
  1756. position:absolute;
  1757. left:0px;
  1758. top:0px;
  1759. width:81px;
  1760. height:30px;
  1761. }
  1762. #u64726 {
  1763. border-width:0px;
  1764. position:absolute;
  1765. left:162px;
  1766. top:0px;
  1767. width:81px;
  1768. height:30px;
  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. #u64726 .text {
  1777. position:absolute;
  1778. align-self:center;
  1779. padding:2px 2px 2px 2px;
  1780. box-sizing:border-box;
  1781. width:100%;
  1782. }
  1783. #u64726_text {
  1784. border-width:0px;
  1785. word-wrap:break-word;
  1786. text-transform:none;
  1787. }
  1788. #u64727_img {
  1789. border-width:0px;
  1790. position:absolute;
  1791. left:0px;
  1792. top:0px;
  1793. width:121px;
  1794. height:30px;
  1795. }
  1796. #u64727 {
  1797. border-width:0px;
  1798. position:absolute;
  1799. left:243px;
  1800. top:0px;
  1801. width:121px;
  1802. height:30px;
  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. #u64727 .text {
  1811. position:absolute;
  1812. align-self:center;
  1813. padding:2px 2px 2px 2px;
  1814. box-sizing:border-box;
  1815. width:100%;
  1816. }
  1817. #u64727_text {
  1818. border-width:0px;
  1819. word-wrap:break-word;
  1820. text-transform:none;
  1821. }
  1822. #u64728_img {
  1823. border-width:0px;
  1824. position:absolute;
  1825. left:0px;
  1826. top:0px;
  1827. width:81px;
  1828. height:30px;
  1829. }
  1830. #u64728 {
  1831. border-width:0px;
  1832. position:absolute;
  1833. left:364px;
  1834. top:0px;
  1835. width:81px;
  1836. height:30px;
  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. #u64728 .text {
  1845. position:absolute;
  1846. align-self:center;
  1847. padding:2px 2px 2px 2px;
  1848. box-sizing:border-box;
  1849. width:100%;
  1850. }
  1851. #u64728_text {
  1852. border-width:0px;
  1853. word-wrap:break-word;
  1854. text-transform:none;
  1855. }
  1856. #u64729_img {
  1857. border-width:0px;
  1858. position:absolute;
  1859. left:0px;
  1860. top:0px;
  1861. width:122px;
  1862. height:30px;
  1863. }
  1864. #u64729 {
  1865. border-width:0px;
  1866. position:absolute;
  1867. left:445px;
  1868. top:0px;
  1869. width:122px;
  1870. height:30px;
  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. #u64729 .text {
  1879. position:absolute;
  1880. align-self:center;
  1881. padding:2px 2px 2px 2px;
  1882. box-sizing:border-box;
  1883. width:100%;
  1884. }
  1885. #u64729_text {
  1886. border-width:0px;
  1887. word-wrap:break-word;
  1888. text-transform:none;
  1889. }
  1890. #u64730_img {
  1891. border-width:0px;
  1892. position:absolute;
  1893. left:0px;
  1894. top:0px;
  1895. width:102px;
  1896. height:30px;
  1897. }
  1898. #u64730 {
  1899. border-width:0px;
  1900. position:absolute;
  1901. left:567px;
  1902. top:0px;
  1903. width:102px;
  1904. height:30px;
  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. #u64730 .text {
  1913. position:absolute;
  1914. align-self:center;
  1915. padding:2px 2px 2px 2px;
  1916. box-sizing:border-box;
  1917. width:100%;
  1918. }
  1919. #u64730_text {
  1920. border-width:0px;
  1921. word-wrap:break-word;
  1922. text-transform:none;
  1923. }
  1924. #u64731_img {
  1925. border-width:0px;
  1926. position:absolute;
  1927. left:0px;
  1928. top:0px;
  1929. width:98px;
  1930. height:30px;
  1931. }
  1932. #u64731 {
  1933. border-width:0px;
  1934. position:absolute;
  1935. left:669px;
  1936. top:0px;
  1937. width:98px;
  1938. height:30px;
  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. #u64731 .text {
  1947. position:absolute;
  1948. align-self:center;
  1949. padding:2px 2px 2px 2px;
  1950. box-sizing:border-box;
  1951. width:100%;
  1952. }
  1953. #u64731_text {
  1954. border-width:0px;
  1955. word-wrap:break-word;
  1956. text-transform:none;
  1957. }
  1958. #u64732_img {
  1959. border-width:0px;
  1960. position:absolute;
  1961. left:0px;
  1962. top:0px;
  1963. width:102px;
  1964. height:30px;
  1965. }
  1966. #u64732 {
  1967. border-width:0px;
  1968. position:absolute;
  1969. left:767px;
  1970. top:0px;
  1971. width:102px;
  1972. height:30px;
  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. #u64732 .text {
  1981. position:absolute;
  1982. align-self:center;
  1983. padding:2px 2px 2px 2px;
  1984. box-sizing:border-box;
  1985. width:100%;
  1986. }
  1987. #u64732_text {
  1988. border-width:0px;
  1989. word-wrap:break-word;
  1990. text-transform:none;
  1991. }
  1992. #u64733_img {
  1993. border-width:0px;
  1994. position:absolute;
  1995. left:0px;
  1996. top:0px;
  1997. width:98px;
  1998. height:30px;
  1999. }
  2000. #u64733 {
  2001. border-width:0px;
  2002. position:absolute;
  2003. left:869px;
  2004. top:0px;
  2005. width:98px;
  2006. height:30px;
  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. #u64733 .text {
  2015. position:absolute;
  2016. align-self:center;
  2017. padding:2px 2px 2px 2px;
  2018. box-sizing:border-box;
  2019. width:100%;
  2020. }
  2021. #u64733_text {
  2022. border-width:0px;
  2023. word-wrap:break-word;
  2024. text-transform:none;
  2025. }
  2026. #u64734_img {
  2027. border-width:0px;
  2028. position:absolute;
  2029. left:0px;
  2030. top:0px;
  2031. width:102px;
  2032. height:30px;
  2033. }
  2034. #u64734 {
  2035. border-width:0px;
  2036. position:absolute;
  2037. left:967px;
  2038. top:0px;
  2039. width:102px;
  2040. height:30px;
  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. #u64734 .text {
  2049. position:absolute;
  2050. align-self:center;
  2051. padding:2px 2px 2px 2px;
  2052. box-sizing:border-box;
  2053. width:100%;
  2054. }
  2055. #u64734_text {
  2056. border-width:0px;
  2057. word-wrap:break-word;
  2058. text-transform:none;
  2059. }
  2060. #u64735_img {
  2061. border-width:0px;
  2062. position:absolute;
  2063. left:0px;
  2064. top:0px;
  2065. width:145px;
  2066. height:30px;
  2067. }
  2068. #u64735 {
  2069. border-width:0px;
  2070. position:absolute;
  2071. left:1069px;
  2072. top:0px;
  2073. width:145px;
  2074. height:30px;
  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. #u64735 .text {
  2083. position:absolute;
  2084. align-self:center;
  2085. padding:2px 2px 2px 2px;
  2086. box-sizing:border-box;
  2087. width:100%;
  2088. }
  2089. #u64735_text {
  2090. border-width:0px;
  2091. word-wrap:break-word;
  2092. text-transform:none;
  2093. }
  2094. #u64736_img {
  2095. border-width:0px;
  2096. position:absolute;
  2097. left:0px;
  2098. top:0px;
  2099. width:81px;
  2100. height:38px;
  2101. }
  2102. #u64736 {
  2103. border-width:0px;
  2104. position:absolute;
  2105. left:0px;
  2106. top:30px;
  2107. width:81px;
  2108. height:38px;
  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. }
  2115. #u64736 .text {
  2116. position:absolute;
  2117. align-self:center;
  2118. padding:2px 2px 2px 2px;
  2119. box-sizing:border-box;
  2120. width:100%;
  2121. }
  2122. #u64736_text {
  2123. border-width:0px;
  2124. word-wrap:break-word;
  2125. text-transform:none;
  2126. visibility:hidden;
  2127. }
  2128. #u64737_img {
  2129. border-width:0px;
  2130. position:absolute;
  2131. left:0px;
  2132. top:0px;
  2133. width:81px;
  2134. height:38px;
  2135. }
  2136. #u64737 {
  2137. border-width:0px;
  2138. position:absolute;
  2139. left:81px;
  2140. top:30px;
  2141. width:81px;
  2142. height:38px;
  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. }
  2149. #u64737 .text {
  2150. position:absolute;
  2151. align-self:center;
  2152. padding:2px 2px 2px 2px;
  2153. box-sizing:border-box;
  2154. width:100%;
  2155. }
  2156. #u64737_text {
  2157. border-width:0px;
  2158. word-wrap:break-word;
  2159. text-transform:none;
  2160. visibility:hidden;
  2161. }
  2162. #u64738_img {
  2163. border-width:0px;
  2164. position:absolute;
  2165. left:0px;
  2166. top:0px;
  2167. width:81px;
  2168. height:38px;
  2169. }
  2170. #u64738 {
  2171. border-width:0px;
  2172. position:absolute;
  2173. left:162px;
  2174. top:30px;
  2175. width:81px;
  2176. height:38px;
  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. }
  2183. #u64738 .text {
  2184. position:absolute;
  2185. align-self:center;
  2186. padding:2px 2px 2px 2px;
  2187. box-sizing:border-box;
  2188. width:100%;
  2189. }
  2190. #u64738_text {
  2191. border-width:0px;
  2192. word-wrap:break-word;
  2193. text-transform:none;
  2194. visibility:hidden;
  2195. }
  2196. #u64739_img {
  2197. border-width:0px;
  2198. position:absolute;
  2199. left:0px;
  2200. top:0px;
  2201. width:121px;
  2202. height:38px;
  2203. }
  2204. #u64739 {
  2205. border-width:0px;
  2206. position:absolute;
  2207. left:243px;
  2208. top:30px;
  2209. width:121px;
  2210. height:38px;
  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. }
  2217. #u64739 .text {
  2218. position:absolute;
  2219. align-self:center;
  2220. padding:2px 2px 2px 2px;
  2221. box-sizing:border-box;
  2222. width:100%;
  2223. }
  2224. #u64739_text {
  2225. border-width:0px;
  2226. word-wrap:break-word;
  2227. text-transform:none;
  2228. }
  2229. #u64740_img {
  2230. border-width:0px;
  2231. position:absolute;
  2232. left:0px;
  2233. top:0px;
  2234. width:81px;
  2235. height:38px;
  2236. }
  2237. #u64740 {
  2238. border-width:0px;
  2239. position:absolute;
  2240. left:364px;
  2241. top:30px;
  2242. width:81px;
  2243. height:38px;
  2244. display:flex;
  2245. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2246. font-weight:400;
  2247. font-style:normal;
  2248. font-size:14px;
  2249. }
  2250. #u64740 .text {
  2251. position:absolute;
  2252. align-self:center;
  2253. padding:2px 2px 2px 2px;
  2254. box-sizing:border-box;
  2255. width:100%;
  2256. }
  2257. #u64740_text {
  2258. border-width:0px;
  2259. word-wrap:break-word;
  2260. text-transform:none;
  2261. visibility:hidden;
  2262. }
  2263. #u64741_img {
  2264. border-width:0px;
  2265. position:absolute;
  2266. left:0px;
  2267. top:0px;
  2268. width:122px;
  2269. height:38px;
  2270. }
  2271. #u64741 {
  2272. border-width:0px;
  2273. position:absolute;
  2274. left:445px;
  2275. top:30px;
  2276. width:122px;
  2277. height:38px;
  2278. display:flex;
  2279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2280. font-weight:400;
  2281. font-style:normal;
  2282. font-size:14px;
  2283. }
  2284. #u64741 .text {
  2285. position:absolute;
  2286. align-self:center;
  2287. padding:2px 2px 2px 2px;
  2288. box-sizing:border-box;
  2289. width:100%;
  2290. }
  2291. #u64741_text {
  2292. border-width:0px;
  2293. word-wrap:break-word;
  2294. text-transform:none;
  2295. visibility:hidden;
  2296. }
  2297. #u64742_img {
  2298. border-width:0px;
  2299. position:absolute;
  2300. left:0px;
  2301. top:0px;
  2302. width:102px;
  2303. height:38px;
  2304. }
  2305. #u64742 {
  2306. border-width:0px;
  2307. position:absolute;
  2308. left:567px;
  2309. top:30px;
  2310. width:102px;
  2311. height:38px;
  2312. display:flex;
  2313. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2314. font-weight:400;
  2315. font-style:normal;
  2316. font-size:14px;
  2317. }
  2318. #u64742 .text {
  2319. position:absolute;
  2320. align-self:center;
  2321. padding:2px 2px 2px 2px;
  2322. box-sizing:border-box;
  2323. width:100%;
  2324. }
  2325. #u64742_text {
  2326. border-width:0px;
  2327. word-wrap:break-word;
  2328. text-transform:none;
  2329. visibility:hidden;
  2330. }
  2331. #u64743_img {
  2332. border-width:0px;
  2333. position:absolute;
  2334. left:0px;
  2335. top:0px;
  2336. width:98px;
  2337. height:38px;
  2338. }
  2339. #u64743 {
  2340. border-width:0px;
  2341. position:absolute;
  2342. left:669px;
  2343. top:30px;
  2344. width:98px;
  2345. height:38px;
  2346. display:flex;
  2347. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2348. font-weight:400;
  2349. font-style:normal;
  2350. font-size:14px;
  2351. }
  2352. #u64743 .text {
  2353. position:absolute;
  2354. align-self:center;
  2355. padding:2px 2px 2px 2px;
  2356. box-sizing:border-box;
  2357. width:100%;
  2358. }
  2359. #u64743_text {
  2360. border-width:0px;
  2361. word-wrap:break-word;
  2362. text-transform:none;
  2363. visibility:hidden;
  2364. }
  2365. #u64744_img {
  2366. border-width:0px;
  2367. position:absolute;
  2368. left:0px;
  2369. top:0px;
  2370. width:102px;
  2371. height:38px;
  2372. }
  2373. #u64744 {
  2374. border-width:0px;
  2375. position:absolute;
  2376. left:767px;
  2377. top:30px;
  2378. width:102px;
  2379. height:38px;
  2380. display:flex;
  2381. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2382. font-weight:400;
  2383. font-style:normal;
  2384. font-size:14px;
  2385. }
  2386. #u64744 .text {
  2387. position:absolute;
  2388. align-self:center;
  2389. padding:2px 2px 2px 2px;
  2390. box-sizing:border-box;
  2391. width:100%;
  2392. }
  2393. #u64744_text {
  2394. border-width:0px;
  2395. word-wrap:break-word;
  2396. text-transform:none;
  2397. visibility:hidden;
  2398. }
  2399. #u64745_img {
  2400. border-width:0px;
  2401. position:absolute;
  2402. left:0px;
  2403. top:0px;
  2404. width:98px;
  2405. height:38px;
  2406. }
  2407. #u64745 {
  2408. border-width:0px;
  2409. position:absolute;
  2410. left:869px;
  2411. top:30px;
  2412. width:98px;
  2413. height:38px;
  2414. display:flex;
  2415. font-size:14px;
  2416. }
  2417. #u64745 .text {
  2418. position:absolute;
  2419. align-self:center;
  2420. padding:2px 2px 2px 2px;
  2421. box-sizing:border-box;
  2422. width:100%;
  2423. }
  2424. #u64745_text {
  2425. border-width:0px;
  2426. word-wrap:break-word;
  2427. text-transform:none;
  2428. visibility:hidden;
  2429. }
  2430. #u64746_img {
  2431. border-width:0px;
  2432. position:absolute;
  2433. left:0px;
  2434. top:0px;
  2435. width:102px;
  2436. height:38px;
  2437. }
  2438. #u64746 {
  2439. border-width:0px;
  2440. position:absolute;
  2441. left:967px;
  2442. top:30px;
  2443. width:102px;
  2444. height:38px;
  2445. display:flex;
  2446. font-size:14px;
  2447. }
  2448. #u64746 .text {
  2449. position:absolute;
  2450. align-self:center;
  2451. padding:2px 2px 2px 2px;
  2452. box-sizing:border-box;
  2453. width:100%;
  2454. }
  2455. #u64746_text {
  2456. border-width:0px;
  2457. word-wrap:break-word;
  2458. text-transform:none;
  2459. visibility:hidden;
  2460. }
  2461. #u64747_img {
  2462. border-width:0px;
  2463. position:absolute;
  2464. left:0px;
  2465. top:0px;
  2466. width:145px;
  2467. height:38px;
  2468. }
  2469. #u64747 {
  2470. border-width:0px;
  2471. position:absolute;
  2472. left:1069px;
  2473. top:30px;
  2474. width:145px;
  2475. height:38px;
  2476. display:flex;
  2477. font-size:14px;
  2478. color:#1890FF;
  2479. }
  2480. #u64747 .text {
  2481. position:absolute;
  2482. align-self:center;
  2483. padding:2px 2px 2px 2px;
  2484. box-sizing:border-box;
  2485. width:100%;
  2486. }
  2487. #u64747_text {
  2488. border-width:0px;
  2489. word-wrap:break-word;
  2490. text-transform:none;
  2491. }
  2492. #u64748_img {
  2493. border-width:0px;
  2494. position:absolute;
  2495. left:0px;
  2496. top:0px;
  2497. width:81px;
  2498. height:38px;
  2499. }
  2500. #u64748 {
  2501. border-width:0px;
  2502. position:absolute;
  2503. left:0px;
  2504. top:68px;
  2505. width:81px;
  2506. height:38px;
  2507. display:flex;
  2508. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2509. font-weight:400;
  2510. font-style:normal;
  2511. font-size:14px;
  2512. }
  2513. #u64748 .text {
  2514. position:absolute;
  2515. align-self:center;
  2516. padding:2px 2px 2px 2px;
  2517. box-sizing:border-box;
  2518. width:100%;
  2519. }
  2520. #u64748_text {
  2521. border-width:0px;
  2522. word-wrap:break-word;
  2523. text-transform:none;
  2524. visibility:hidden;
  2525. }
  2526. #u64749_img {
  2527. border-width:0px;
  2528. position:absolute;
  2529. left:0px;
  2530. top:0px;
  2531. width:81px;
  2532. height:38px;
  2533. }
  2534. #u64749 {
  2535. border-width:0px;
  2536. position:absolute;
  2537. left:81px;
  2538. top:68px;
  2539. width:81px;
  2540. height:38px;
  2541. display:flex;
  2542. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2543. font-weight:400;
  2544. font-style:normal;
  2545. font-size:14px;
  2546. }
  2547. #u64749 .text {
  2548. position:absolute;
  2549. align-self:center;
  2550. padding:2px 2px 2px 2px;
  2551. box-sizing:border-box;
  2552. width:100%;
  2553. }
  2554. #u64749_text {
  2555. border-width:0px;
  2556. word-wrap:break-word;
  2557. text-transform:none;
  2558. visibility:hidden;
  2559. }
  2560. #u64750_img {
  2561. border-width:0px;
  2562. position:absolute;
  2563. left:0px;
  2564. top:0px;
  2565. width:81px;
  2566. height:38px;
  2567. }
  2568. #u64750 {
  2569. border-width:0px;
  2570. position:absolute;
  2571. left:162px;
  2572. top:68px;
  2573. width:81px;
  2574. height:38px;
  2575. display:flex;
  2576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2577. font-weight:400;
  2578. font-style:normal;
  2579. font-size:14px;
  2580. }
  2581. #u64750 .text {
  2582. position:absolute;
  2583. align-self:center;
  2584. padding:2px 2px 2px 2px;
  2585. box-sizing:border-box;
  2586. width:100%;
  2587. }
  2588. #u64750_text {
  2589. border-width:0px;
  2590. word-wrap:break-word;
  2591. text-transform:none;
  2592. visibility:hidden;
  2593. }
  2594. #u64751_img {
  2595. border-width:0px;
  2596. position:absolute;
  2597. left:0px;
  2598. top:0px;
  2599. width:121px;
  2600. height:38px;
  2601. }
  2602. #u64751 {
  2603. border-width:0px;
  2604. position:absolute;
  2605. left:243px;
  2606. top:68px;
  2607. width:121px;
  2608. height:38px;
  2609. display:flex;
  2610. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2611. font-weight:400;
  2612. font-style:normal;
  2613. font-size:14px;
  2614. }
  2615. #u64751 .text {
  2616. position:absolute;
  2617. align-self:center;
  2618. padding:2px 2px 2px 2px;
  2619. box-sizing:border-box;
  2620. width:100%;
  2621. }
  2622. #u64751_text {
  2623. border-width:0px;
  2624. word-wrap:break-word;
  2625. text-transform:none;
  2626. }
  2627. #u64752_img {
  2628. border-width:0px;
  2629. position:absolute;
  2630. left:0px;
  2631. top:0px;
  2632. width:81px;
  2633. height:38px;
  2634. }
  2635. #u64752 {
  2636. border-width:0px;
  2637. position:absolute;
  2638. left:364px;
  2639. top:68px;
  2640. width:81px;
  2641. height:38px;
  2642. display:flex;
  2643. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2644. font-weight:400;
  2645. font-style:normal;
  2646. font-size:14px;
  2647. }
  2648. #u64752 .text {
  2649. position:absolute;
  2650. align-self:center;
  2651. padding:2px 2px 2px 2px;
  2652. box-sizing:border-box;
  2653. width:100%;
  2654. }
  2655. #u64752_text {
  2656. border-width:0px;
  2657. word-wrap:break-word;
  2658. text-transform:none;
  2659. visibility:hidden;
  2660. }
  2661. #u64753_img {
  2662. border-width:0px;
  2663. position:absolute;
  2664. left:0px;
  2665. top:0px;
  2666. width:122px;
  2667. height:38px;
  2668. }
  2669. #u64753 {
  2670. border-width:0px;
  2671. position:absolute;
  2672. left:445px;
  2673. top:68px;
  2674. width:122px;
  2675. height:38px;
  2676. display:flex;
  2677. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2678. font-weight:400;
  2679. font-style:normal;
  2680. font-size:14px;
  2681. }
  2682. #u64753 .text {
  2683. position:absolute;
  2684. align-self:center;
  2685. padding:2px 2px 2px 2px;
  2686. box-sizing:border-box;
  2687. width:100%;
  2688. }
  2689. #u64753_text {
  2690. border-width:0px;
  2691. word-wrap:break-word;
  2692. text-transform:none;
  2693. visibility:hidden;
  2694. }
  2695. #u64754_img {
  2696. border-width:0px;
  2697. position:absolute;
  2698. left:0px;
  2699. top:0px;
  2700. width:102px;
  2701. height:38px;
  2702. }
  2703. #u64754 {
  2704. border-width:0px;
  2705. position:absolute;
  2706. left:567px;
  2707. top:68px;
  2708. width:102px;
  2709. height:38px;
  2710. display:flex;
  2711. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2712. font-weight:400;
  2713. font-style:normal;
  2714. font-size:14px;
  2715. }
  2716. #u64754 .text {
  2717. position:absolute;
  2718. align-self:center;
  2719. padding:2px 2px 2px 2px;
  2720. box-sizing:border-box;
  2721. width:100%;
  2722. }
  2723. #u64754_text {
  2724. border-width:0px;
  2725. word-wrap:break-word;
  2726. text-transform:none;
  2727. visibility:hidden;
  2728. }
  2729. #u64755_img {
  2730. border-width:0px;
  2731. position:absolute;
  2732. left:0px;
  2733. top:0px;
  2734. width:98px;
  2735. height:38px;
  2736. }
  2737. #u64755 {
  2738. border-width:0px;
  2739. position:absolute;
  2740. left:669px;
  2741. top:68px;
  2742. width:98px;
  2743. height:38px;
  2744. display:flex;
  2745. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2746. font-weight:400;
  2747. font-style:normal;
  2748. font-size:14px;
  2749. }
  2750. #u64755 .text {
  2751. position:absolute;
  2752. align-self:center;
  2753. padding:2px 2px 2px 2px;
  2754. box-sizing:border-box;
  2755. width:100%;
  2756. }
  2757. #u64755_text {
  2758. border-width:0px;
  2759. word-wrap:break-word;
  2760. text-transform:none;
  2761. visibility:hidden;
  2762. }
  2763. #u64756_img {
  2764. border-width:0px;
  2765. position:absolute;
  2766. left:0px;
  2767. top:0px;
  2768. width:102px;
  2769. height:38px;
  2770. }
  2771. #u64756 {
  2772. border-width:0px;
  2773. position:absolute;
  2774. left:767px;
  2775. top:68px;
  2776. width:102px;
  2777. height:38px;
  2778. display:flex;
  2779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2780. font-weight:400;
  2781. font-style:normal;
  2782. font-size:14px;
  2783. }
  2784. #u64756 .text {
  2785. position:absolute;
  2786. align-self:center;
  2787. padding:2px 2px 2px 2px;
  2788. box-sizing:border-box;
  2789. width:100%;
  2790. }
  2791. #u64756_text {
  2792. border-width:0px;
  2793. word-wrap:break-word;
  2794. text-transform:none;
  2795. visibility:hidden;
  2796. }
  2797. #u64757_img {
  2798. border-width:0px;
  2799. position:absolute;
  2800. left:0px;
  2801. top:0px;
  2802. width:98px;
  2803. height:38px;
  2804. }
  2805. #u64757 {
  2806. border-width:0px;
  2807. position:absolute;
  2808. left:869px;
  2809. top:68px;
  2810. width:98px;
  2811. height:38px;
  2812. display:flex;
  2813. font-size:14px;
  2814. }
  2815. #u64757 .text {
  2816. position:absolute;
  2817. align-self:center;
  2818. padding:2px 2px 2px 2px;
  2819. box-sizing:border-box;
  2820. width:100%;
  2821. }
  2822. #u64757_text {
  2823. border-width:0px;
  2824. word-wrap:break-word;
  2825. text-transform:none;
  2826. visibility:hidden;
  2827. }
  2828. #u64758_img {
  2829. border-width:0px;
  2830. position:absolute;
  2831. left:0px;
  2832. top:0px;
  2833. width:102px;
  2834. height:38px;
  2835. }
  2836. #u64758 {
  2837. border-width:0px;
  2838. position:absolute;
  2839. left:967px;
  2840. top:68px;
  2841. width:102px;
  2842. height:38px;
  2843. display:flex;
  2844. font-size:14px;
  2845. }
  2846. #u64758 .text {
  2847. position:absolute;
  2848. align-self:center;
  2849. padding:2px 2px 2px 2px;
  2850. box-sizing:border-box;
  2851. width:100%;
  2852. }
  2853. #u64758_text {
  2854. border-width:0px;
  2855. word-wrap:break-word;
  2856. text-transform:none;
  2857. visibility:hidden;
  2858. }
  2859. #u64759_img {
  2860. border-width:0px;
  2861. position:absolute;
  2862. left:0px;
  2863. top:0px;
  2864. width:145px;
  2865. height:38px;
  2866. }
  2867. #u64759 {
  2868. border-width:0px;
  2869. position:absolute;
  2870. left:1069px;
  2871. top:68px;
  2872. width:145px;
  2873. height:38px;
  2874. display:flex;
  2875. font-size:14px;
  2876. }
  2877. #u64759 .text {
  2878. position:absolute;
  2879. align-self:center;
  2880. padding:2px 2px 2px 2px;
  2881. box-sizing:border-box;
  2882. width:100%;
  2883. }
  2884. #u64759_text {
  2885. border-width:0px;
  2886. word-wrap:break-word;
  2887. text-transform:none;
  2888. }
  2889. #u64760_img {
  2890. border-width:0px;
  2891. position:absolute;
  2892. left:0px;
  2893. top:0px;
  2894. width:81px;
  2895. height:38px;
  2896. }
  2897. #u64760 {
  2898. border-width:0px;
  2899. position:absolute;
  2900. left:0px;
  2901. top:106px;
  2902. width:81px;
  2903. height:38px;
  2904. display:flex;
  2905. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2906. font-weight:400;
  2907. font-style:normal;
  2908. font-size:14px;
  2909. }
  2910. #u64760 .text {
  2911. position:absolute;
  2912. align-self:center;
  2913. padding:2px 2px 2px 2px;
  2914. box-sizing:border-box;
  2915. width:100%;
  2916. }
  2917. #u64760_text {
  2918. border-width:0px;
  2919. word-wrap:break-word;
  2920. text-transform:none;
  2921. visibility:hidden;
  2922. }
  2923. #u64761_img {
  2924. border-width:0px;
  2925. position:absolute;
  2926. left:0px;
  2927. top:0px;
  2928. width:81px;
  2929. height:38px;
  2930. }
  2931. #u64761 {
  2932. border-width:0px;
  2933. position:absolute;
  2934. left:81px;
  2935. top:106px;
  2936. width:81px;
  2937. height:38px;
  2938. display:flex;
  2939. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2940. font-weight:400;
  2941. font-style:normal;
  2942. font-size:14px;
  2943. }
  2944. #u64761 .text {
  2945. position:absolute;
  2946. align-self:center;
  2947. padding:2px 2px 2px 2px;
  2948. box-sizing:border-box;
  2949. width:100%;
  2950. }
  2951. #u64761_text {
  2952. border-width:0px;
  2953. word-wrap:break-word;
  2954. text-transform:none;
  2955. visibility:hidden;
  2956. }
  2957. #u64762_img {
  2958. border-width:0px;
  2959. position:absolute;
  2960. left:0px;
  2961. top:0px;
  2962. width:81px;
  2963. height:38px;
  2964. }
  2965. #u64762 {
  2966. border-width:0px;
  2967. position:absolute;
  2968. left:162px;
  2969. top:106px;
  2970. width:81px;
  2971. height:38px;
  2972. display:flex;
  2973. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2974. font-weight:400;
  2975. font-style:normal;
  2976. font-size:14px;
  2977. }
  2978. #u64762 .text {
  2979. position:absolute;
  2980. align-self:center;
  2981. padding:2px 2px 2px 2px;
  2982. box-sizing:border-box;
  2983. width:100%;
  2984. }
  2985. #u64762_text {
  2986. border-width:0px;
  2987. word-wrap:break-word;
  2988. text-transform:none;
  2989. visibility:hidden;
  2990. }
  2991. #u64763_img {
  2992. border-width:0px;
  2993. position:absolute;
  2994. left:0px;
  2995. top:0px;
  2996. width:121px;
  2997. height:38px;
  2998. }
  2999. #u64763 {
  3000. border-width:0px;
  3001. position:absolute;
  3002. left:243px;
  3003. top:106px;
  3004. width:121px;
  3005. height:38px;
  3006. display:flex;
  3007. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3008. font-weight:400;
  3009. font-style:normal;
  3010. font-size:14px;
  3011. }
  3012. #u64763 .text {
  3013. position:absolute;
  3014. align-self:center;
  3015. padding:2px 2px 2px 2px;
  3016. box-sizing:border-box;
  3017. width:100%;
  3018. }
  3019. #u64763_text {
  3020. border-width:0px;
  3021. word-wrap:break-word;
  3022. text-transform:none;
  3023. }
  3024. #u64764_img {
  3025. border-width:0px;
  3026. position:absolute;
  3027. left:0px;
  3028. top:0px;
  3029. width:81px;
  3030. height:38px;
  3031. }
  3032. #u64764 {
  3033. border-width:0px;
  3034. position:absolute;
  3035. left:364px;
  3036. top:106px;
  3037. width:81px;
  3038. height:38px;
  3039. display:flex;
  3040. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3041. font-weight:400;
  3042. font-style:normal;
  3043. font-size:14px;
  3044. }
  3045. #u64764 .text {
  3046. position:absolute;
  3047. align-self:center;
  3048. padding:2px 2px 2px 2px;
  3049. box-sizing:border-box;
  3050. width:100%;
  3051. }
  3052. #u64764_text {
  3053. border-width:0px;
  3054. word-wrap:break-word;
  3055. text-transform:none;
  3056. visibility:hidden;
  3057. }
  3058. #u64765_img {
  3059. border-width:0px;
  3060. position:absolute;
  3061. left:0px;
  3062. top:0px;
  3063. width:122px;
  3064. height:38px;
  3065. }
  3066. #u64765 {
  3067. border-width:0px;
  3068. position:absolute;
  3069. left:445px;
  3070. top:106px;
  3071. width:122px;
  3072. height:38px;
  3073. display:flex;
  3074. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3075. font-weight:400;
  3076. font-style:normal;
  3077. font-size:14px;
  3078. }
  3079. #u64765 .text {
  3080. position:absolute;
  3081. align-self:center;
  3082. padding:2px 2px 2px 2px;
  3083. box-sizing:border-box;
  3084. width:100%;
  3085. }
  3086. #u64765_text {
  3087. border-width:0px;
  3088. word-wrap:break-word;
  3089. text-transform:none;
  3090. visibility:hidden;
  3091. }
  3092. #u64766_img {
  3093. border-width:0px;
  3094. position:absolute;
  3095. left:0px;
  3096. top:0px;
  3097. width:102px;
  3098. height:38px;
  3099. }
  3100. #u64766 {
  3101. border-width:0px;
  3102. position:absolute;
  3103. left:567px;
  3104. top:106px;
  3105. width:102px;
  3106. height:38px;
  3107. display:flex;
  3108. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3109. font-weight:400;
  3110. font-style:normal;
  3111. font-size:14px;
  3112. }
  3113. #u64766 .text {
  3114. position:absolute;
  3115. align-self:center;
  3116. padding:2px 2px 2px 2px;
  3117. box-sizing:border-box;
  3118. width:100%;
  3119. }
  3120. #u64766_text {
  3121. border-width:0px;
  3122. word-wrap:break-word;
  3123. text-transform:none;
  3124. visibility:hidden;
  3125. }
  3126. #u64767_img {
  3127. border-width:0px;
  3128. position:absolute;
  3129. left:0px;
  3130. top:0px;
  3131. width:98px;
  3132. height:38px;
  3133. }
  3134. #u64767 {
  3135. border-width:0px;
  3136. position:absolute;
  3137. left:669px;
  3138. top:106px;
  3139. width:98px;
  3140. height:38px;
  3141. display:flex;
  3142. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3143. font-weight:400;
  3144. font-style:normal;
  3145. font-size:14px;
  3146. }
  3147. #u64767 .text {
  3148. position:absolute;
  3149. align-self:center;
  3150. padding:2px 2px 2px 2px;
  3151. box-sizing:border-box;
  3152. width:100%;
  3153. }
  3154. #u64767_text {
  3155. border-width:0px;
  3156. word-wrap:break-word;
  3157. text-transform:none;
  3158. visibility:hidden;
  3159. }
  3160. #u64768_img {
  3161. border-width:0px;
  3162. position:absolute;
  3163. left:0px;
  3164. top:0px;
  3165. width:102px;
  3166. height:38px;
  3167. }
  3168. #u64768 {
  3169. border-width:0px;
  3170. position:absolute;
  3171. left:767px;
  3172. top:106px;
  3173. width:102px;
  3174. height:38px;
  3175. display:flex;
  3176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3177. font-weight:400;
  3178. font-style:normal;
  3179. font-size:14px;
  3180. }
  3181. #u64768 .text {
  3182. position:absolute;
  3183. align-self:center;
  3184. padding:2px 2px 2px 2px;
  3185. box-sizing:border-box;
  3186. width:100%;
  3187. }
  3188. #u64768_text {
  3189. border-width:0px;
  3190. word-wrap:break-word;
  3191. text-transform:none;
  3192. visibility:hidden;
  3193. }
  3194. #u64769_img {
  3195. border-width:0px;
  3196. position:absolute;
  3197. left:0px;
  3198. top:0px;
  3199. width:98px;
  3200. height:38px;
  3201. }
  3202. #u64769 {
  3203. border-width:0px;
  3204. position:absolute;
  3205. left:869px;
  3206. top:106px;
  3207. width:98px;
  3208. height:38px;
  3209. display:flex;
  3210. font-size:14px;
  3211. }
  3212. #u64769 .text {
  3213. position:absolute;
  3214. align-self:center;
  3215. padding:2px 2px 2px 2px;
  3216. box-sizing:border-box;
  3217. width:100%;
  3218. }
  3219. #u64769_text {
  3220. border-width:0px;
  3221. word-wrap:break-word;
  3222. text-transform:none;
  3223. visibility:hidden;
  3224. }
  3225. #u64770_img {
  3226. border-width:0px;
  3227. position:absolute;
  3228. left:0px;
  3229. top:0px;
  3230. width:102px;
  3231. height:38px;
  3232. }
  3233. #u64770 {
  3234. border-width:0px;
  3235. position:absolute;
  3236. left:967px;
  3237. top:106px;
  3238. width:102px;
  3239. height:38px;
  3240. display:flex;
  3241. font-size:14px;
  3242. }
  3243. #u64770 .text {
  3244. position:absolute;
  3245. align-self:center;
  3246. padding:2px 2px 2px 2px;
  3247. box-sizing:border-box;
  3248. width:100%;
  3249. }
  3250. #u64770_text {
  3251. border-width:0px;
  3252. word-wrap:break-word;
  3253. text-transform:none;
  3254. visibility:hidden;
  3255. }
  3256. #u64771_img {
  3257. border-width:0px;
  3258. position:absolute;
  3259. left:0px;
  3260. top:0px;
  3261. width:145px;
  3262. height:38px;
  3263. }
  3264. #u64771 {
  3265. border-width:0px;
  3266. position:absolute;
  3267. left:1069px;
  3268. top:106px;
  3269. width:145px;
  3270. height:38px;
  3271. display:flex;
  3272. font-size:14px;
  3273. }
  3274. #u64771 .text {
  3275. position:absolute;
  3276. align-self:center;
  3277. padding:2px 2px 2px 2px;
  3278. box-sizing:border-box;
  3279. width:100%;
  3280. }
  3281. #u64771_text {
  3282. border-width:0px;
  3283. word-wrap:break-word;
  3284. text-transform:none;
  3285. visibility:hidden;
  3286. }
  3287. #u64772_img {
  3288. border-width:0px;
  3289. position:absolute;
  3290. left:0px;
  3291. top:0px;
  3292. width:81px;
  3293. height:38px;
  3294. }
  3295. #u64772 {
  3296. border-width:0px;
  3297. position:absolute;
  3298. left:0px;
  3299. top:144px;
  3300. width:81px;
  3301. height:38px;
  3302. display:flex;
  3303. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3304. font-weight:400;
  3305. font-style:normal;
  3306. font-size:14px;
  3307. }
  3308. #u64772 .text {
  3309. position:absolute;
  3310. align-self:center;
  3311. padding:2px 2px 2px 2px;
  3312. box-sizing:border-box;
  3313. width:100%;
  3314. }
  3315. #u64772_text {
  3316. border-width:0px;
  3317. word-wrap:break-word;
  3318. text-transform:none;
  3319. visibility:hidden;
  3320. }
  3321. #u64773_img {
  3322. border-width:0px;
  3323. position:absolute;
  3324. left:0px;
  3325. top:0px;
  3326. width:81px;
  3327. height:38px;
  3328. }
  3329. #u64773 {
  3330. border-width:0px;
  3331. position:absolute;
  3332. left:81px;
  3333. top:144px;
  3334. width:81px;
  3335. height:38px;
  3336. display:flex;
  3337. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3338. font-weight:400;
  3339. font-style:normal;
  3340. font-size:14px;
  3341. }
  3342. #u64773 .text {
  3343. position:absolute;
  3344. align-self:center;
  3345. padding:2px 2px 2px 2px;
  3346. box-sizing:border-box;
  3347. width:100%;
  3348. }
  3349. #u64773_text {
  3350. border-width:0px;
  3351. word-wrap:break-word;
  3352. text-transform:none;
  3353. visibility:hidden;
  3354. }
  3355. #u64774_img {
  3356. border-width:0px;
  3357. position:absolute;
  3358. left:0px;
  3359. top:0px;
  3360. width:81px;
  3361. height:38px;
  3362. }
  3363. #u64774 {
  3364. border-width:0px;
  3365. position:absolute;
  3366. left:162px;
  3367. top:144px;
  3368. width:81px;
  3369. height:38px;
  3370. display:flex;
  3371. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3372. font-weight:400;
  3373. font-style:normal;
  3374. font-size:14px;
  3375. }
  3376. #u64774 .text {
  3377. position:absolute;
  3378. align-self:center;
  3379. padding:2px 2px 2px 2px;
  3380. box-sizing:border-box;
  3381. width:100%;
  3382. }
  3383. #u64774_text {
  3384. border-width:0px;
  3385. word-wrap:break-word;
  3386. text-transform:none;
  3387. visibility:hidden;
  3388. }
  3389. #u64775_img {
  3390. border-width:0px;
  3391. position:absolute;
  3392. left:0px;
  3393. top:0px;
  3394. width:121px;
  3395. height:38px;
  3396. }
  3397. #u64775 {
  3398. border-width:0px;
  3399. position:absolute;
  3400. left:243px;
  3401. top:144px;
  3402. width:121px;
  3403. height:38px;
  3404. display:flex;
  3405. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3406. font-weight:400;
  3407. font-style:normal;
  3408. font-size:14px;
  3409. }
  3410. #u64775 .text {
  3411. position:absolute;
  3412. align-self:center;
  3413. padding:2px 2px 2px 2px;
  3414. box-sizing:border-box;
  3415. width:100%;
  3416. }
  3417. #u64775_text {
  3418. border-width:0px;
  3419. word-wrap:break-word;
  3420. text-transform:none;
  3421. visibility:hidden;
  3422. }
  3423. #u64776_img {
  3424. border-width:0px;
  3425. position:absolute;
  3426. left:0px;
  3427. top:0px;
  3428. width:81px;
  3429. height:38px;
  3430. }
  3431. #u64776 {
  3432. border-width:0px;
  3433. position:absolute;
  3434. left:364px;
  3435. top:144px;
  3436. width:81px;
  3437. height:38px;
  3438. display:flex;
  3439. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3440. font-weight:400;
  3441. font-style:normal;
  3442. font-size:14px;
  3443. }
  3444. #u64776 .text {
  3445. position:absolute;
  3446. align-self:center;
  3447. padding:2px 2px 2px 2px;
  3448. box-sizing:border-box;
  3449. width:100%;
  3450. }
  3451. #u64776_text {
  3452. border-width:0px;
  3453. word-wrap:break-word;
  3454. text-transform:none;
  3455. visibility:hidden;
  3456. }
  3457. #u64777_img {
  3458. border-width:0px;
  3459. position:absolute;
  3460. left:0px;
  3461. top:0px;
  3462. width:122px;
  3463. height:38px;
  3464. }
  3465. #u64777 {
  3466. border-width:0px;
  3467. position:absolute;
  3468. left:445px;
  3469. top:144px;
  3470. width:122px;
  3471. height:38px;
  3472. display:flex;
  3473. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3474. font-weight:400;
  3475. font-style:normal;
  3476. font-size:14px;
  3477. }
  3478. #u64777 .text {
  3479. position:absolute;
  3480. align-self:center;
  3481. padding:2px 2px 2px 2px;
  3482. box-sizing:border-box;
  3483. width:100%;
  3484. }
  3485. #u64777_text {
  3486. border-width:0px;
  3487. word-wrap:break-word;
  3488. text-transform:none;
  3489. visibility:hidden;
  3490. }
  3491. #u64778_img {
  3492. border-width:0px;
  3493. position:absolute;
  3494. left:0px;
  3495. top:0px;
  3496. width:102px;
  3497. height:38px;
  3498. }
  3499. #u64778 {
  3500. border-width:0px;
  3501. position:absolute;
  3502. left:567px;
  3503. top:144px;
  3504. width:102px;
  3505. height:38px;
  3506. display:flex;
  3507. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3508. font-weight:400;
  3509. font-style:normal;
  3510. font-size:14px;
  3511. }
  3512. #u64778 .text {
  3513. position:absolute;
  3514. align-self:center;
  3515. padding:2px 2px 2px 2px;
  3516. box-sizing:border-box;
  3517. width:100%;
  3518. }
  3519. #u64778_text {
  3520. border-width:0px;
  3521. word-wrap:break-word;
  3522. text-transform:none;
  3523. visibility:hidden;
  3524. }
  3525. #u64779_img {
  3526. border-width:0px;
  3527. position:absolute;
  3528. left:0px;
  3529. top:0px;
  3530. width:98px;
  3531. height:38px;
  3532. }
  3533. #u64779 {
  3534. border-width:0px;
  3535. position:absolute;
  3536. left:669px;
  3537. top:144px;
  3538. width:98px;
  3539. height:38px;
  3540. display:flex;
  3541. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3542. font-weight:400;
  3543. font-style:normal;
  3544. font-size:14px;
  3545. }
  3546. #u64779 .text {
  3547. position:absolute;
  3548. align-self:center;
  3549. padding:2px 2px 2px 2px;
  3550. box-sizing:border-box;
  3551. width:100%;
  3552. }
  3553. #u64779_text {
  3554. border-width:0px;
  3555. word-wrap:break-word;
  3556. text-transform:none;
  3557. visibility:hidden;
  3558. }
  3559. #u64780_img {
  3560. border-width:0px;
  3561. position:absolute;
  3562. left:0px;
  3563. top:0px;
  3564. width:102px;
  3565. height:38px;
  3566. }
  3567. #u64780 {
  3568. border-width:0px;
  3569. position:absolute;
  3570. left:767px;
  3571. top:144px;
  3572. width:102px;
  3573. height:38px;
  3574. display:flex;
  3575. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3576. font-weight:400;
  3577. font-style:normal;
  3578. font-size:14px;
  3579. }
  3580. #u64780 .text {
  3581. position:absolute;
  3582. align-self:center;
  3583. padding:2px 2px 2px 2px;
  3584. box-sizing:border-box;
  3585. width:100%;
  3586. }
  3587. #u64780_text {
  3588. border-width:0px;
  3589. word-wrap:break-word;
  3590. text-transform:none;
  3591. visibility:hidden;
  3592. }
  3593. #u64781_img {
  3594. border-width:0px;
  3595. position:absolute;
  3596. left:0px;
  3597. top:0px;
  3598. width:98px;
  3599. height:38px;
  3600. }
  3601. #u64781 {
  3602. border-width:0px;
  3603. position:absolute;
  3604. left:869px;
  3605. top:144px;
  3606. width:98px;
  3607. height:38px;
  3608. display:flex;
  3609. font-size:14px;
  3610. }
  3611. #u64781 .text {
  3612. position:absolute;
  3613. align-self:center;
  3614. padding:2px 2px 2px 2px;
  3615. box-sizing:border-box;
  3616. width:100%;
  3617. }
  3618. #u64781_text {
  3619. border-width:0px;
  3620. word-wrap:break-word;
  3621. text-transform:none;
  3622. visibility:hidden;
  3623. }
  3624. #u64782_img {
  3625. border-width:0px;
  3626. position:absolute;
  3627. left:0px;
  3628. top:0px;
  3629. width:102px;
  3630. height:38px;
  3631. }
  3632. #u64782 {
  3633. border-width:0px;
  3634. position:absolute;
  3635. left:967px;
  3636. top:144px;
  3637. width:102px;
  3638. height:38px;
  3639. display:flex;
  3640. font-size:14px;
  3641. }
  3642. #u64782 .text {
  3643. position:absolute;
  3644. align-self:center;
  3645. padding:2px 2px 2px 2px;
  3646. box-sizing:border-box;
  3647. width:100%;
  3648. }
  3649. #u64782_text {
  3650. border-width:0px;
  3651. word-wrap:break-word;
  3652. text-transform:none;
  3653. visibility:hidden;
  3654. }
  3655. #u64783_img {
  3656. border-width:0px;
  3657. position:absolute;
  3658. left:0px;
  3659. top:0px;
  3660. width:145px;
  3661. height:38px;
  3662. }
  3663. #u64783 {
  3664. border-width:0px;
  3665. position:absolute;
  3666. left:1069px;
  3667. top:144px;
  3668. width:145px;
  3669. height:38px;
  3670. display:flex;
  3671. font-size:14px;
  3672. }
  3673. #u64783 .text {
  3674. position:absolute;
  3675. align-self:center;
  3676. padding:2px 2px 2px 2px;
  3677. box-sizing:border-box;
  3678. width:100%;
  3679. }
  3680. #u64783_text {
  3681. border-width:0px;
  3682. word-wrap:break-word;
  3683. text-transform:none;
  3684. visibility:hidden;
  3685. }
  3686. #u64784_img {
  3687. border-width:0px;
  3688. position:absolute;
  3689. left:0px;
  3690. top:0px;
  3691. width:81px;
  3692. height:38px;
  3693. }
  3694. #u64784 {
  3695. border-width:0px;
  3696. position:absolute;
  3697. left:0px;
  3698. top:182px;
  3699. width:81px;
  3700. height:38px;
  3701. display:flex;
  3702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3703. font-weight:400;
  3704. font-style:normal;
  3705. font-size:14px;
  3706. }
  3707. #u64784 .text {
  3708. position:absolute;
  3709. align-self:center;
  3710. padding:2px 2px 2px 2px;
  3711. box-sizing:border-box;
  3712. width:100%;
  3713. }
  3714. #u64784_text {
  3715. border-width:0px;
  3716. word-wrap:break-word;
  3717. text-transform:none;
  3718. visibility:hidden;
  3719. }
  3720. #u64785_img {
  3721. border-width:0px;
  3722. position:absolute;
  3723. left:0px;
  3724. top:0px;
  3725. width:81px;
  3726. height:38px;
  3727. }
  3728. #u64785 {
  3729. border-width:0px;
  3730. position:absolute;
  3731. left:81px;
  3732. top:182px;
  3733. width:81px;
  3734. height:38px;
  3735. display:flex;
  3736. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3737. font-weight:400;
  3738. font-style:normal;
  3739. font-size:14px;
  3740. }
  3741. #u64785 .text {
  3742. position:absolute;
  3743. align-self:center;
  3744. padding:2px 2px 2px 2px;
  3745. box-sizing:border-box;
  3746. width:100%;
  3747. }
  3748. #u64785_text {
  3749. border-width:0px;
  3750. word-wrap:break-word;
  3751. text-transform:none;
  3752. visibility:hidden;
  3753. }
  3754. #u64786_img {
  3755. border-width:0px;
  3756. position:absolute;
  3757. left:0px;
  3758. top:0px;
  3759. width:81px;
  3760. height:38px;
  3761. }
  3762. #u64786 {
  3763. border-width:0px;
  3764. position:absolute;
  3765. left:162px;
  3766. top:182px;
  3767. width:81px;
  3768. height:38px;
  3769. display:flex;
  3770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3771. font-weight:400;
  3772. font-style:normal;
  3773. font-size:14px;
  3774. }
  3775. #u64786 .text {
  3776. position:absolute;
  3777. align-self:center;
  3778. padding:2px 2px 2px 2px;
  3779. box-sizing:border-box;
  3780. width:100%;
  3781. }
  3782. #u64786_text {
  3783. border-width:0px;
  3784. word-wrap:break-word;
  3785. text-transform:none;
  3786. visibility:hidden;
  3787. }
  3788. #u64787_img {
  3789. border-width:0px;
  3790. position:absolute;
  3791. left:0px;
  3792. top:0px;
  3793. width:121px;
  3794. height:38px;
  3795. }
  3796. #u64787 {
  3797. border-width:0px;
  3798. position:absolute;
  3799. left:243px;
  3800. top:182px;
  3801. width:121px;
  3802. height:38px;
  3803. display:flex;
  3804. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3805. font-weight:400;
  3806. font-style:normal;
  3807. font-size:14px;
  3808. }
  3809. #u64787 .text {
  3810. position:absolute;
  3811. align-self:center;
  3812. padding:2px 2px 2px 2px;
  3813. box-sizing:border-box;
  3814. width:100%;
  3815. }
  3816. #u64787_text {
  3817. border-width:0px;
  3818. word-wrap:break-word;
  3819. text-transform:none;
  3820. visibility:hidden;
  3821. }
  3822. #u64788_img {
  3823. border-width:0px;
  3824. position:absolute;
  3825. left:0px;
  3826. top:0px;
  3827. width:81px;
  3828. height:38px;
  3829. }
  3830. #u64788 {
  3831. border-width:0px;
  3832. position:absolute;
  3833. left:364px;
  3834. top:182px;
  3835. width:81px;
  3836. height:38px;
  3837. display:flex;
  3838. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3839. font-weight:400;
  3840. font-style:normal;
  3841. font-size:14px;
  3842. }
  3843. #u64788 .text {
  3844. position:absolute;
  3845. align-self:center;
  3846. padding:2px 2px 2px 2px;
  3847. box-sizing:border-box;
  3848. width:100%;
  3849. }
  3850. #u64788_text {
  3851. border-width:0px;
  3852. word-wrap:break-word;
  3853. text-transform:none;
  3854. visibility:hidden;
  3855. }
  3856. #u64789_img {
  3857. border-width:0px;
  3858. position:absolute;
  3859. left:0px;
  3860. top:0px;
  3861. width:122px;
  3862. height:38px;
  3863. }
  3864. #u64789 {
  3865. border-width:0px;
  3866. position:absolute;
  3867. left:445px;
  3868. top:182px;
  3869. width:122px;
  3870. height:38px;
  3871. display:flex;
  3872. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3873. font-weight:400;
  3874. font-style:normal;
  3875. font-size:14px;
  3876. }
  3877. #u64789 .text {
  3878. position:absolute;
  3879. align-self:center;
  3880. padding:2px 2px 2px 2px;
  3881. box-sizing:border-box;
  3882. width:100%;
  3883. }
  3884. #u64789_text {
  3885. border-width:0px;
  3886. word-wrap:break-word;
  3887. text-transform:none;
  3888. visibility:hidden;
  3889. }
  3890. #u64790_img {
  3891. border-width:0px;
  3892. position:absolute;
  3893. left:0px;
  3894. top:0px;
  3895. width:102px;
  3896. height:38px;
  3897. }
  3898. #u64790 {
  3899. border-width:0px;
  3900. position:absolute;
  3901. left:567px;
  3902. top:182px;
  3903. width:102px;
  3904. height:38px;
  3905. display:flex;
  3906. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3907. font-weight:400;
  3908. font-style:normal;
  3909. font-size:14px;
  3910. }
  3911. #u64790 .text {
  3912. position:absolute;
  3913. align-self:center;
  3914. padding:2px 2px 2px 2px;
  3915. box-sizing:border-box;
  3916. width:100%;
  3917. }
  3918. #u64790_text {
  3919. border-width:0px;
  3920. word-wrap:break-word;
  3921. text-transform:none;
  3922. visibility:hidden;
  3923. }
  3924. #u64791_img {
  3925. border-width:0px;
  3926. position:absolute;
  3927. left:0px;
  3928. top:0px;
  3929. width:98px;
  3930. height:38px;
  3931. }
  3932. #u64791 {
  3933. border-width:0px;
  3934. position:absolute;
  3935. left:669px;
  3936. top:182px;
  3937. width:98px;
  3938. height:38px;
  3939. display:flex;
  3940. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3941. font-weight:400;
  3942. font-style:normal;
  3943. font-size:14px;
  3944. }
  3945. #u64791 .text {
  3946. position:absolute;
  3947. align-self:center;
  3948. padding:2px 2px 2px 2px;
  3949. box-sizing:border-box;
  3950. width:100%;
  3951. }
  3952. #u64791_text {
  3953. border-width:0px;
  3954. word-wrap:break-word;
  3955. text-transform:none;
  3956. visibility:hidden;
  3957. }
  3958. #u64792_img {
  3959. border-width:0px;
  3960. position:absolute;
  3961. left:0px;
  3962. top:0px;
  3963. width:102px;
  3964. height:38px;
  3965. }
  3966. #u64792 {
  3967. border-width:0px;
  3968. position:absolute;
  3969. left:767px;
  3970. top:182px;
  3971. width:102px;
  3972. height:38px;
  3973. display:flex;
  3974. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3975. font-weight:400;
  3976. font-style:normal;
  3977. font-size:14px;
  3978. }
  3979. #u64792 .text {
  3980. position:absolute;
  3981. align-self:center;
  3982. padding:2px 2px 2px 2px;
  3983. box-sizing:border-box;
  3984. width:100%;
  3985. }
  3986. #u64792_text {
  3987. border-width:0px;
  3988. word-wrap:break-word;
  3989. text-transform:none;
  3990. visibility:hidden;
  3991. }
  3992. #u64793_img {
  3993. border-width:0px;
  3994. position:absolute;
  3995. left:0px;
  3996. top:0px;
  3997. width:98px;
  3998. height:38px;
  3999. }
  4000. #u64793 {
  4001. border-width:0px;
  4002. position:absolute;
  4003. left:869px;
  4004. top:182px;
  4005. width:98px;
  4006. height:38px;
  4007. display:flex;
  4008. font-size:14px;
  4009. }
  4010. #u64793 .text {
  4011. position:absolute;
  4012. align-self:center;
  4013. padding:2px 2px 2px 2px;
  4014. box-sizing:border-box;
  4015. width:100%;
  4016. }
  4017. #u64793_text {
  4018. border-width:0px;
  4019. word-wrap:break-word;
  4020. text-transform:none;
  4021. visibility:hidden;
  4022. }
  4023. #u64794_img {
  4024. border-width:0px;
  4025. position:absolute;
  4026. left:0px;
  4027. top:0px;
  4028. width:102px;
  4029. height:38px;
  4030. }
  4031. #u64794 {
  4032. border-width:0px;
  4033. position:absolute;
  4034. left:967px;
  4035. top:182px;
  4036. width:102px;
  4037. height:38px;
  4038. display:flex;
  4039. font-size:14px;
  4040. }
  4041. #u64794 .text {
  4042. position:absolute;
  4043. align-self:center;
  4044. padding:2px 2px 2px 2px;
  4045. box-sizing:border-box;
  4046. width:100%;
  4047. }
  4048. #u64794_text {
  4049. border-width:0px;
  4050. word-wrap:break-word;
  4051. text-transform:none;
  4052. visibility:hidden;
  4053. }
  4054. #u64795_img {
  4055. border-width:0px;
  4056. position:absolute;
  4057. left:0px;
  4058. top:0px;
  4059. width:145px;
  4060. height:38px;
  4061. }
  4062. #u64795 {
  4063. border-width:0px;
  4064. position:absolute;
  4065. left:1069px;
  4066. top:182px;
  4067. width:145px;
  4068. height:38px;
  4069. display:flex;
  4070. font-size:14px;
  4071. }
  4072. #u64795 .text {
  4073. position:absolute;
  4074. align-self:center;
  4075. padding:2px 2px 2px 2px;
  4076. box-sizing:border-box;
  4077. width:100%;
  4078. }
  4079. #u64795_text {
  4080. border-width:0px;
  4081. word-wrap:break-word;
  4082. text-transform:none;
  4083. visibility:hidden;
  4084. }
  4085. #u64796_img {
  4086. border-width:0px;
  4087. position:absolute;
  4088. left:0px;
  4089. top:0px;
  4090. width:81px;
  4091. height:38px;
  4092. }
  4093. #u64796 {
  4094. border-width:0px;
  4095. position:absolute;
  4096. left:0px;
  4097. top:220px;
  4098. width:81px;
  4099. height:38px;
  4100. display:flex;
  4101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4102. font-weight:400;
  4103. font-style:normal;
  4104. font-size:14px;
  4105. }
  4106. #u64796 .text {
  4107. position:absolute;
  4108. align-self:center;
  4109. padding:2px 2px 2px 2px;
  4110. box-sizing:border-box;
  4111. width:100%;
  4112. }
  4113. #u64796_text {
  4114. border-width:0px;
  4115. word-wrap:break-word;
  4116. text-transform:none;
  4117. visibility:hidden;
  4118. }
  4119. #u64797_img {
  4120. border-width:0px;
  4121. position:absolute;
  4122. left:0px;
  4123. top:0px;
  4124. width:81px;
  4125. height:38px;
  4126. }
  4127. #u64797 {
  4128. border-width:0px;
  4129. position:absolute;
  4130. left:81px;
  4131. top:220px;
  4132. width:81px;
  4133. height:38px;
  4134. display:flex;
  4135. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4136. font-weight:400;
  4137. font-style:normal;
  4138. font-size:14px;
  4139. }
  4140. #u64797 .text {
  4141. position:absolute;
  4142. align-self:center;
  4143. padding:2px 2px 2px 2px;
  4144. box-sizing:border-box;
  4145. width:100%;
  4146. }
  4147. #u64797_text {
  4148. border-width:0px;
  4149. word-wrap:break-word;
  4150. text-transform:none;
  4151. visibility:hidden;
  4152. }
  4153. #u64798_img {
  4154. border-width:0px;
  4155. position:absolute;
  4156. left:0px;
  4157. top:0px;
  4158. width:81px;
  4159. height:38px;
  4160. }
  4161. #u64798 {
  4162. border-width:0px;
  4163. position:absolute;
  4164. left:162px;
  4165. top:220px;
  4166. width:81px;
  4167. height:38px;
  4168. display:flex;
  4169. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4170. font-weight:400;
  4171. font-style:normal;
  4172. font-size:14px;
  4173. }
  4174. #u64798 .text {
  4175. position:absolute;
  4176. align-self:center;
  4177. padding:2px 2px 2px 2px;
  4178. box-sizing:border-box;
  4179. width:100%;
  4180. }
  4181. #u64798_text {
  4182. border-width:0px;
  4183. word-wrap:break-word;
  4184. text-transform:none;
  4185. visibility:hidden;
  4186. }
  4187. #u64799_img {
  4188. border-width:0px;
  4189. position:absolute;
  4190. left:0px;
  4191. top:0px;
  4192. width:121px;
  4193. height:38px;
  4194. }
  4195. #u64799 {
  4196. border-width:0px;
  4197. position:absolute;
  4198. left:243px;
  4199. top:220px;
  4200. width:121px;
  4201. height:38px;
  4202. display:flex;
  4203. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4204. font-weight:400;
  4205. font-style:normal;
  4206. font-size:14px;
  4207. }
  4208. #u64799 .text {
  4209. position:absolute;
  4210. align-self:center;
  4211. padding:2px 2px 2px 2px;
  4212. box-sizing:border-box;
  4213. width:100%;
  4214. }
  4215. #u64799_text {
  4216. border-width:0px;
  4217. word-wrap:break-word;
  4218. text-transform:none;
  4219. visibility:hidden;
  4220. }
  4221. #u64800_img {
  4222. border-width:0px;
  4223. position:absolute;
  4224. left:0px;
  4225. top:0px;
  4226. width:81px;
  4227. height:38px;
  4228. }
  4229. #u64800 {
  4230. border-width:0px;
  4231. position:absolute;
  4232. left:364px;
  4233. top:220px;
  4234. width:81px;
  4235. height:38px;
  4236. display:flex;
  4237. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4238. font-weight:400;
  4239. font-style:normal;
  4240. font-size:14px;
  4241. }
  4242. #u64800 .text {
  4243. position:absolute;
  4244. align-self:center;
  4245. padding:2px 2px 2px 2px;
  4246. box-sizing:border-box;
  4247. width:100%;
  4248. }
  4249. #u64800_text {
  4250. border-width:0px;
  4251. word-wrap:break-word;
  4252. text-transform:none;
  4253. visibility:hidden;
  4254. }
  4255. #u64801_img {
  4256. border-width:0px;
  4257. position:absolute;
  4258. left:0px;
  4259. top:0px;
  4260. width:122px;
  4261. height:38px;
  4262. }
  4263. #u64801 {
  4264. border-width:0px;
  4265. position:absolute;
  4266. left:445px;
  4267. top:220px;
  4268. width:122px;
  4269. height:38px;
  4270. display:flex;
  4271. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4272. font-weight:400;
  4273. font-style:normal;
  4274. font-size:14px;
  4275. }
  4276. #u64801 .text {
  4277. position:absolute;
  4278. align-self:center;
  4279. padding:2px 2px 2px 2px;
  4280. box-sizing:border-box;
  4281. width:100%;
  4282. }
  4283. #u64801_text {
  4284. border-width:0px;
  4285. word-wrap:break-word;
  4286. text-transform:none;
  4287. visibility:hidden;
  4288. }
  4289. #u64802_img {
  4290. border-width:0px;
  4291. position:absolute;
  4292. left:0px;
  4293. top:0px;
  4294. width:102px;
  4295. height:38px;
  4296. }
  4297. #u64802 {
  4298. border-width:0px;
  4299. position:absolute;
  4300. left:567px;
  4301. top:220px;
  4302. width:102px;
  4303. height:38px;
  4304. display:flex;
  4305. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4306. font-weight:400;
  4307. font-style:normal;
  4308. font-size:14px;
  4309. }
  4310. #u64802 .text {
  4311. position:absolute;
  4312. align-self:center;
  4313. padding:2px 2px 2px 2px;
  4314. box-sizing:border-box;
  4315. width:100%;
  4316. }
  4317. #u64802_text {
  4318. border-width:0px;
  4319. word-wrap:break-word;
  4320. text-transform:none;
  4321. visibility:hidden;
  4322. }
  4323. #u64803_img {
  4324. border-width:0px;
  4325. position:absolute;
  4326. left:0px;
  4327. top:0px;
  4328. width:98px;
  4329. height:38px;
  4330. }
  4331. #u64803 {
  4332. border-width:0px;
  4333. position:absolute;
  4334. left:669px;
  4335. top:220px;
  4336. width:98px;
  4337. height:38px;
  4338. display:flex;
  4339. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4340. font-weight:400;
  4341. font-style:normal;
  4342. font-size:14px;
  4343. }
  4344. #u64803 .text {
  4345. position:absolute;
  4346. align-self:center;
  4347. padding:2px 2px 2px 2px;
  4348. box-sizing:border-box;
  4349. width:100%;
  4350. }
  4351. #u64803_text {
  4352. border-width:0px;
  4353. word-wrap:break-word;
  4354. text-transform:none;
  4355. visibility:hidden;
  4356. }
  4357. #u64804_img {
  4358. border-width:0px;
  4359. position:absolute;
  4360. left:0px;
  4361. top:0px;
  4362. width:102px;
  4363. height:38px;
  4364. }
  4365. #u64804 {
  4366. border-width:0px;
  4367. position:absolute;
  4368. left:767px;
  4369. top:220px;
  4370. width:102px;
  4371. height:38px;
  4372. display:flex;
  4373. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4374. font-weight:400;
  4375. font-style:normal;
  4376. font-size:14px;
  4377. }
  4378. #u64804 .text {
  4379. position:absolute;
  4380. align-self:center;
  4381. padding:2px 2px 2px 2px;
  4382. box-sizing:border-box;
  4383. width:100%;
  4384. }
  4385. #u64804_text {
  4386. border-width:0px;
  4387. word-wrap:break-word;
  4388. text-transform:none;
  4389. visibility:hidden;
  4390. }
  4391. #u64805_img {
  4392. border-width:0px;
  4393. position:absolute;
  4394. left:0px;
  4395. top:0px;
  4396. width:98px;
  4397. height:38px;
  4398. }
  4399. #u64805 {
  4400. border-width:0px;
  4401. position:absolute;
  4402. left:869px;
  4403. top:220px;
  4404. width:98px;
  4405. height:38px;
  4406. display:flex;
  4407. font-size:14px;
  4408. }
  4409. #u64805 .text {
  4410. position:absolute;
  4411. align-self:center;
  4412. padding:2px 2px 2px 2px;
  4413. box-sizing:border-box;
  4414. width:100%;
  4415. }
  4416. #u64805_text {
  4417. border-width:0px;
  4418. word-wrap:break-word;
  4419. text-transform:none;
  4420. visibility:hidden;
  4421. }
  4422. #u64806_img {
  4423. border-width:0px;
  4424. position:absolute;
  4425. left:0px;
  4426. top:0px;
  4427. width:102px;
  4428. height:38px;
  4429. }
  4430. #u64806 {
  4431. border-width:0px;
  4432. position:absolute;
  4433. left:967px;
  4434. top:220px;
  4435. width:102px;
  4436. height:38px;
  4437. display:flex;
  4438. font-size:14px;
  4439. }
  4440. #u64806 .text {
  4441. position:absolute;
  4442. align-self:center;
  4443. padding:2px 2px 2px 2px;
  4444. box-sizing:border-box;
  4445. width:100%;
  4446. }
  4447. #u64806_text {
  4448. border-width:0px;
  4449. word-wrap:break-word;
  4450. text-transform:none;
  4451. visibility:hidden;
  4452. }
  4453. #u64807_img {
  4454. border-width:0px;
  4455. position:absolute;
  4456. left:0px;
  4457. top:0px;
  4458. width:145px;
  4459. height:38px;
  4460. }
  4461. #u64807 {
  4462. border-width:0px;
  4463. position:absolute;
  4464. left:1069px;
  4465. top:220px;
  4466. width:145px;
  4467. height:38px;
  4468. display:flex;
  4469. font-size:14px;
  4470. }
  4471. #u64807 .text {
  4472. position:absolute;
  4473. align-self:center;
  4474. padding:2px 2px 2px 2px;
  4475. box-sizing:border-box;
  4476. width:100%;
  4477. }
  4478. #u64807_text {
  4479. border-width:0px;
  4480. word-wrap:break-word;
  4481. text-transform:none;
  4482. visibility:hidden;
  4483. }
  4484. #u64808_img {
  4485. border-width:0px;
  4486. position:absolute;
  4487. left:0px;
  4488. top:0px;
  4489. width:81px;
  4490. height:38px;
  4491. }
  4492. #u64808 {
  4493. border-width:0px;
  4494. position:absolute;
  4495. left:0px;
  4496. top:258px;
  4497. width:81px;
  4498. height:38px;
  4499. display:flex;
  4500. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4501. font-weight:400;
  4502. font-style:normal;
  4503. font-size:14px;
  4504. }
  4505. #u64808 .text {
  4506. position:absolute;
  4507. align-self:center;
  4508. padding:2px 2px 2px 2px;
  4509. box-sizing:border-box;
  4510. width:100%;
  4511. }
  4512. #u64808_text {
  4513. border-width:0px;
  4514. word-wrap:break-word;
  4515. text-transform:none;
  4516. visibility:hidden;
  4517. }
  4518. #u64809_img {
  4519. border-width:0px;
  4520. position:absolute;
  4521. left:0px;
  4522. top:0px;
  4523. width:81px;
  4524. height:38px;
  4525. }
  4526. #u64809 {
  4527. border-width:0px;
  4528. position:absolute;
  4529. left:81px;
  4530. top:258px;
  4531. width:81px;
  4532. height:38px;
  4533. display:flex;
  4534. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4535. font-weight:400;
  4536. font-style:normal;
  4537. font-size:14px;
  4538. }
  4539. #u64809 .text {
  4540. position:absolute;
  4541. align-self:center;
  4542. padding:2px 2px 2px 2px;
  4543. box-sizing:border-box;
  4544. width:100%;
  4545. }
  4546. #u64809_text {
  4547. border-width:0px;
  4548. word-wrap:break-word;
  4549. text-transform:none;
  4550. visibility:hidden;
  4551. }
  4552. #u64810_img {
  4553. border-width:0px;
  4554. position:absolute;
  4555. left:0px;
  4556. top:0px;
  4557. width:81px;
  4558. height:38px;
  4559. }
  4560. #u64810 {
  4561. border-width:0px;
  4562. position:absolute;
  4563. left:162px;
  4564. top:258px;
  4565. width:81px;
  4566. height:38px;
  4567. display:flex;
  4568. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4569. font-weight:400;
  4570. font-style:normal;
  4571. font-size:14px;
  4572. }
  4573. #u64810 .text {
  4574. position:absolute;
  4575. align-self:center;
  4576. padding:2px 2px 2px 2px;
  4577. box-sizing:border-box;
  4578. width:100%;
  4579. }
  4580. #u64810_text {
  4581. border-width:0px;
  4582. word-wrap:break-word;
  4583. text-transform:none;
  4584. visibility:hidden;
  4585. }
  4586. #u64811_img {
  4587. border-width:0px;
  4588. position:absolute;
  4589. left:0px;
  4590. top:0px;
  4591. width:121px;
  4592. height:38px;
  4593. }
  4594. #u64811 {
  4595. border-width:0px;
  4596. position:absolute;
  4597. left:243px;
  4598. top:258px;
  4599. width:121px;
  4600. height:38px;
  4601. display:flex;
  4602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4603. font-weight:400;
  4604. font-style:normal;
  4605. font-size:14px;
  4606. }
  4607. #u64811 .text {
  4608. position:absolute;
  4609. align-self:center;
  4610. padding:2px 2px 2px 2px;
  4611. box-sizing:border-box;
  4612. width:100%;
  4613. }
  4614. #u64811_text {
  4615. border-width:0px;
  4616. word-wrap:break-word;
  4617. text-transform:none;
  4618. visibility:hidden;
  4619. }
  4620. #u64812_img {
  4621. border-width:0px;
  4622. position:absolute;
  4623. left:0px;
  4624. top:0px;
  4625. width:81px;
  4626. height:38px;
  4627. }
  4628. #u64812 {
  4629. border-width:0px;
  4630. position:absolute;
  4631. left:364px;
  4632. top:258px;
  4633. width:81px;
  4634. height:38px;
  4635. display:flex;
  4636. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4637. font-weight:400;
  4638. font-style:normal;
  4639. font-size:14px;
  4640. }
  4641. #u64812 .text {
  4642. position:absolute;
  4643. align-self:center;
  4644. padding:2px 2px 2px 2px;
  4645. box-sizing:border-box;
  4646. width:100%;
  4647. }
  4648. #u64812_text {
  4649. border-width:0px;
  4650. word-wrap:break-word;
  4651. text-transform:none;
  4652. visibility:hidden;
  4653. }
  4654. #u64813_img {
  4655. border-width:0px;
  4656. position:absolute;
  4657. left:0px;
  4658. top:0px;
  4659. width:122px;
  4660. height:38px;
  4661. }
  4662. #u64813 {
  4663. border-width:0px;
  4664. position:absolute;
  4665. left:445px;
  4666. top:258px;
  4667. width:122px;
  4668. height:38px;
  4669. display:flex;
  4670. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4671. font-weight:400;
  4672. font-style:normal;
  4673. font-size:14px;
  4674. }
  4675. #u64813 .text {
  4676. position:absolute;
  4677. align-self:center;
  4678. padding:2px 2px 2px 2px;
  4679. box-sizing:border-box;
  4680. width:100%;
  4681. }
  4682. #u64813_text {
  4683. border-width:0px;
  4684. word-wrap:break-word;
  4685. text-transform:none;
  4686. visibility:hidden;
  4687. }
  4688. #u64814_img {
  4689. border-width:0px;
  4690. position:absolute;
  4691. left:0px;
  4692. top:0px;
  4693. width:102px;
  4694. height:38px;
  4695. }
  4696. #u64814 {
  4697. border-width:0px;
  4698. position:absolute;
  4699. left:567px;
  4700. top:258px;
  4701. width:102px;
  4702. height:38px;
  4703. display:flex;
  4704. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4705. font-weight:400;
  4706. font-style:normal;
  4707. font-size:14px;
  4708. }
  4709. #u64814 .text {
  4710. position:absolute;
  4711. align-self:center;
  4712. padding:2px 2px 2px 2px;
  4713. box-sizing:border-box;
  4714. width:100%;
  4715. }
  4716. #u64814_text {
  4717. border-width:0px;
  4718. word-wrap:break-word;
  4719. text-transform:none;
  4720. visibility:hidden;
  4721. }
  4722. #u64815_img {
  4723. border-width:0px;
  4724. position:absolute;
  4725. left:0px;
  4726. top:0px;
  4727. width:98px;
  4728. height:38px;
  4729. }
  4730. #u64815 {
  4731. border-width:0px;
  4732. position:absolute;
  4733. left:669px;
  4734. top:258px;
  4735. width:98px;
  4736. height:38px;
  4737. display:flex;
  4738. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4739. font-weight:400;
  4740. font-style:normal;
  4741. font-size:14px;
  4742. }
  4743. #u64815 .text {
  4744. position:absolute;
  4745. align-self:center;
  4746. padding:2px 2px 2px 2px;
  4747. box-sizing:border-box;
  4748. width:100%;
  4749. }
  4750. #u64815_text {
  4751. border-width:0px;
  4752. word-wrap:break-word;
  4753. text-transform:none;
  4754. visibility:hidden;
  4755. }
  4756. #u64816_img {
  4757. border-width:0px;
  4758. position:absolute;
  4759. left:0px;
  4760. top:0px;
  4761. width:102px;
  4762. height:38px;
  4763. }
  4764. #u64816 {
  4765. border-width:0px;
  4766. position:absolute;
  4767. left:767px;
  4768. top:258px;
  4769. width:102px;
  4770. height:38px;
  4771. display:flex;
  4772. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4773. font-weight:400;
  4774. font-style:normal;
  4775. font-size:14px;
  4776. }
  4777. #u64816 .text {
  4778. position:absolute;
  4779. align-self:center;
  4780. padding:2px 2px 2px 2px;
  4781. box-sizing:border-box;
  4782. width:100%;
  4783. }
  4784. #u64816_text {
  4785. border-width:0px;
  4786. word-wrap:break-word;
  4787. text-transform:none;
  4788. visibility:hidden;
  4789. }
  4790. #u64817_img {
  4791. border-width:0px;
  4792. position:absolute;
  4793. left:0px;
  4794. top:0px;
  4795. width:98px;
  4796. height:38px;
  4797. }
  4798. #u64817 {
  4799. border-width:0px;
  4800. position:absolute;
  4801. left:869px;
  4802. top:258px;
  4803. width:98px;
  4804. height:38px;
  4805. display:flex;
  4806. font-size:14px;
  4807. }
  4808. #u64817 .text {
  4809. position:absolute;
  4810. align-self:center;
  4811. padding:2px 2px 2px 2px;
  4812. box-sizing:border-box;
  4813. width:100%;
  4814. }
  4815. #u64817_text {
  4816. border-width:0px;
  4817. word-wrap:break-word;
  4818. text-transform:none;
  4819. visibility:hidden;
  4820. }
  4821. #u64818_img {
  4822. border-width:0px;
  4823. position:absolute;
  4824. left:0px;
  4825. top:0px;
  4826. width:102px;
  4827. height:38px;
  4828. }
  4829. #u64818 {
  4830. border-width:0px;
  4831. position:absolute;
  4832. left:967px;
  4833. top:258px;
  4834. width:102px;
  4835. height:38px;
  4836. display:flex;
  4837. font-size:14px;
  4838. }
  4839. #u64818 .text {
  4840. position:absolute;
  4841. align-self:center;
  4842. padding:2px 2px 2px 2px;
  4843. box-sizing:border-box;
  4844. width:100%;
  4845. }
  4846. #u64818_text {
  4847. border-width:0px;
  4848. word-wrap:break-word;
  4849. text-transform:none;
  4850. visibility:hidden;
  4851. }
  4852. #u64819_img {
  4853. border-width:0px;
  4854. position:absolute;
  4855. left:0px;
  4856. top:0px;
  4857. width:145px;
  4858. height:38px;
  4859. }
  4860. #u64819 {
  4861. border-width:0px;
  4862. position:absolute;
  4863. left:1069px;
  4864. top:258px;
  4865. width:145px;
  4866. height:38px;
  4867. display:flex;
  4868. font-size:14px;
  4869. }
  4870. #u64819 .text {
  4871. position:absolute;
  4872. align-self:center;
  4873. padding:2px 2px 2px 2px;
  4874. box-sizing:border-box;
  4875. width:100%;
  4876. }
  4877. #u64819_text {
  4878. border-width:0px;
  4879. word-wrap:break-word;
  4880. text-transform:none;
  4881. visibility:hidden;
  4882. }
  4883. #u64820_div {
  4884. border-width:0px;
  4885. position:absolute;
  4886. left:0px;
  4887. top:0px;
  4888. width:80px;
  4889. height:40px;
  4890. background:inherit;
  4891. background-color:rgba(24, 144, 255, 1);
  4892. border:none;
  4893. border-radius:0px;
  4894. -moz-box-shadow:none;
  4895. -webkit-box-shadow:none;
  4896. box-shadow:none;
  4897. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4898. font-weight:400;
  4899. font-style:normal;
  4900. font-size:14px;
  4901. color:#FFFFFF;
  4902. }
  4903. #u64820 {
  4904. border-width:0px;
  4905. position:absolute;
  4906. left:356px;
  4907. top:333px;
  4908. width:80px;
  4909. height:40px;
  4910. display:flex;
  4911. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4912. font-weight:400;
  4913. font-style:normal;
  4914. font-size:14px;
  4915. color:#FFFFFF;
  4916. }
  4917. #u64820 .text {
  4918. position:absolute;
  4919. align-self:center;
  4920. padding:2px 2px 2px 2px;
  4921. box-sizing:border-box;
  4922. width:100%;
  4923. }
  4924. #u64820_text {
  4925. border-width:0px;
  4926. word-wrap:break-word;
  4927. text-transform:none;
  4928. }
  4929. #u64821_div {
  4930. border-width:0px;
  4931. position:absolute;
  4932. left:0px;
  4933. top:0px;
  4934. width:80px;
  4935. height:40px;
  4936. background:inherit;
  4937. background-color:rgba(255, 255, 255, 1);
  4938. box-sizing:border-box;
  4939. border-width:1px;
  4940. border-style:solid;
  4941. border-color:rgba(170, 170, 170, 1);
  4942. border-radius:0px;
  4943. -moz-box-shadow:none;
  4944. -webkit-box-shadow:none;
  4945. box-shadow:none;
  4946. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4947. font-weight:400;
  4948. font-style:normal;
  4949. font-size:14px;
  4950. }
  4951. #u64821 {
  4952. border-width:0px;
  4953. position:absolute;
  4954. left:436px;
  4955. top:333px;
  4956. width:80px;
  4957. height:40px;
  4958. display:flex;
  4959. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4960. font-weight:400;
  4961. font-style:normal;
  4962. font-size:14px;
  4963. }
  4964. #u64821 .text {
  4965. position:absolute;
  4966. align-self:center;
  4967. padding:2px 2px 2px 2px;
  4968. box-sizing:border-box;
  4969. width:100%;
  4970. }
  4971. #u64821_text {
  4972. border-width:0px;
  4973. word-wrap:break-word;
  4974. text-transform:none;
  4975. }
  4976. #u64822 {
  4977. border-width:0px;
  4978. position:absolute;
  4979. left:0px;
  4980. top:0px;
  4981. width:0px;
  4982. height:0px;
  4983. }
  4984. #u64823_div {
  4985. border-width:0px;
  4986. position:absolute;
  4987. left:0px;
  4988. top:0px;
  4989. width:160px;
  4990. height:30px;
  4991. background:inherit;
  4992. background-color:rgba(255, 255, 255, 1);
  4993. box-sizing:border-box;
  4994. border-width:1px;
  4995. border-style:solid;
  4996. border-color:rgba(201, 201, 201, 1);
  4997. border-radius:4px;
  4998. -moz-box-shadow:none;
  4999. -webkit-box-shadow:none;
  5000. box-shadow:none;
  5001. font-family:'Microsoft YaHei', sans-serif;
  5002. font-weight:400;
  5003. font-style:normal;
  5004. font-size:14px;
  5005. color:#CCCCCC;
  5006. text-align:left;
  5007. }
  5008. #u64823 {
  5009. border-width:0px;
  5010. position:absolute;
  5011. left:868px;
  5012. top:101px;
  5013. width:160px;
  5014. height:30px;
  5015. display:flex;
  5016. font-family:'Microsoft YaHei', sans-serif;
  5017. font-weight:400;
  5018. font-style:normal;
  5019. font-size:14px;
  5020. color:#CCCCCC;
  5021. text-align:left;
  5022. }
  5023. #u64823 .text {
  5024. position:absolute;
  5025. align-self:center;
  5026. padding:2px 8px 2px 8px;
  5027. box-sizing:border-box;
  5028. width:100%;
  5029. }
  5030. #u64823_text {
  5031. border-width:0px;
  5032. word-wrap:break-word;
  5033. text-transform:none;
  5034. visibility:hidden;
  5035. }
  5036. #u64824_input {
  5037. position:absolute;
  5038. left:0px;
  5039. top:0px;
  5040. width:150px;
  5041. height:28px;
  5042. padding:2px 2px 2px 2px;
  5043. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5044. font-weight:400;
  5045. font-style:normal;
  5046. font-size:14px;
  5047. letter-spacing:normal;
  5048. color:#000000;
  5049. vertical-align:none;
  5050. text-align:left;
  5051. text-transform:none;
  5052. background-color:transparent;
  5053. border-color:transparent;
  5054. }
  5055. #u64824_input.disabled {
  5056. position:absolute;
  5057. left:0px;
  5058. top:0px;
  5059. width:150px;
  5060. height:28px;
  5061. padding:2px 2px 2px 2px;
  5062. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5063. font-weight:400;
  5064. font-style:normal;
  5065. font-size:14px;
  5066. letter-spacing:normal;
  5067. color:#000000;
  5068. vertical-align:none;
  5069. text-align:left;
  5070. text-transform:none;
  5071. background-color:transparent;
  5072. border-color:transparent;
  5073. }
  5074. #u64824_div {
  5075. border-width:0px;
  5076. position:absolute;
  5077. left:0px;
  5078. top:0px;
  5079. width:150px;
  5080. height:28px;
  5081. background:inherit;
  5082. background-color:rgba(255, 255, 255, 1);
  5083. border:none;
  5084. border-radius:0px;
  5085. -moz-box-shadow:none;
  5086. -webkit-box-shadow:none;
  5087. box-shadow:none;
  5088. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5089. font-weight:400;
  5090. font-style:normal;
  5091. font-size:14px;
  5092. }
  5093. #u64824 {
  5094. border-width:0px;
  5095. position:absolute;
  5096. left:874px;
  5097. top:102px;
  5098. width:150px;
  5099. height:28px;
  5100. display:flex;
  5101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5102. font-weight:400;
  5103. font-style:normal;
  5104. font-size:14px;
  5105. }
  5106. #u64824 .text {
  5107. position:absolute;
  5108. align-self:center;
  5109. padding:2px 2px 2px 2px;
  5110. box-sizing:border-box;
  5111. width:100%;
  5112. }
  5113. #u64824_div.disabled {
  5114. border-width:0px;
  5115. position:absolute;
  5116. left:0px;
  5117. top:0px;
  5118. width:150px;
  5119. height:28px;
  5120. background:inherit;
  5121. background-color:rgba(240, 240, 240, 1);
  5122. border:none;
  5123. border-radius:0px;
  5124. -moz-box-shadow:none;
  5125. -webkit-box-shadow:none;
  5126. box-shadow:none;
  5127. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5128. font-weight:400;
  5129. font-style:normal;
  5130. font-size:14px;
  5131. }
  5132. #u64824.disabled {
  5133. }
  5134. #u64825 {
  5135. border-width:0px;
  5136. position:absolute;
  5137. left:0px;
  5138. top:0px;
  5139. width:0px;
  5140. height:0px;
  5141. }
  5142. #u64826_div {
  5143. border-width:0px;
  5144. position:absolute;
  5145. left:0px;
  5146. top:0px;
  5147. width:60px;
  5148. height:30px;
  5149. background:inherit;
  5150. background-color:rgba(24, 144, 255, 1);
  5151. border:none;
  5152. border-radius:4px;
  5153. -moz-box-shadow:none;
  5154. -webkit-box-shadow:none;
  5155. box-shadow:none;
  5156. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5157. font-weight:400;
  5158. font-style:normal;
  5159. font-size:14px;
  5160. color:#FFFFFF;
  5161. }
  5162. #u64826 {
  5163. border-width:0px;
  5164. position:absolute;
  5165. left:527px;
  5166. top:141px;
  5167. width:60px;
  5168. height:30px;
  5169. display:flex;
  5170. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5171. font-weight:400;
  5172. font-style:normal;
  5173. font-size:14px;
  5174. color:#FFFFFF;
  5175. }
  5176. #u64826 .text {
  5177. position:absolute;
  5178. align-self:center;
  5179. padding:2px 2px 2px 2px;
  5180. box-sizing:border-box;
  5181. width:100%;
  5182. }
  5183. #u64826_text {
  5184. border-width:0px;
  5185. word-wrap:break-word;
  5186. text-transform:none;
  5187. }
  5188. #u64827_div {
  5189. border-width:0px;
  5190. position:absolute;
  5191. left:0px;
  5192. top:0px;
  5193. width:60px;
  5194. height:30px;
  5195. background:inherit;
  5196. background-color:rgba(255, 255, 255, 1);
  5197. box-sizing:border-box;
  5198. border-width:1px;
  5199. border-style:solid;
  5200. border-color:rgba(170, 170, 170, 1);
  5201. border-radius:4px;
  5202. -moz-box-shadow:none;
  5203. -webkit-box-shadow:none;
  5204. box-shadow:none;
  5205. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5206. font-weight:400;
  5207. font-style:normal;
  5208. font-size:14px;
  5209. }
  5210. #u64827 {
  5211. border-width:0px;
  5212. position:absolute;
  5213. left:597px;
  5214. top:141px;
  5215. width:60px;
  5216. height:30px;
  5217. display:flex;
  5218. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5219. font-weight:400;
  5220. font-style:normal;
  5221. font-size:14px;
  5222. }
  5223. #u64827 .text {
  5224. position:absolute;
  5225. align-self:center;
  5226. padding:2px 2px 2px 2px;
  5227. box-sizing:border-box;
  5228. width:100%;
  5229. }
  5230. #u64827_text {
  5231. border-width:0px;
  5232. word-wrap:break-word;
  5233. text-transform:none;
  5234. }
  5235. #u64828 {
  5236. border-width:0px;
  5237. position:absolute;
  5238. left:0px;
  5239. top:0px;
  5240. width:0px;
  5241. height:0px;
  5242. }
  5243. #u64829_div {
  5244. border-width:0px;
  5245. position:absolute;
  5246. left:0px;
  5247. top:0px;
  5248. width:160px;
  5249. height:30px;
  5250. background:inherit;
  5251. background-color:rgba(255, 255, 255, 1);
  5252. box-sizing:border-box;
  5253. border-width:1px;
  5254. border-style:solid;
  5255. border-color:rgba(215, 215, 215, 1);
  5256. border-radius:4px;
  5257. -moz-box-shadow:none;
  5258. -webkit-box-shadow:none;
  5259. box-shadow:none;
  5260. font-size:14px;
  5261. }
  5262. #u64829 {
  5263. border-width:0px;
  5264. position:absolute;
  5265. left:1038px;
  5266. top:101px;
  5267. width:160px;
  5268. height:30px;
  5269. display:flex;
  5270. font-size:14px;
  5271. }
  5272. #u64829 .text {
  5273. position:absolute;
  5274. align-self:center;
  5275. padding:2px 2px 2px 2px;
  5276. box-sizing:border-box;
  5277. width:100%;
  5278. }
  5279. #u64829_text {
  5280. border-width:0px;
  5281. word-wrap:break-word;
  5282. text-transform:none;
  5283. visibility:hidden;
  5284. }
  5285. #u64830_input {
  5286. position:absolute;
  5287. left:0px;
  5288. top:0px;
  5289. width:153px;
  5290. height:23px;
  5291. padding:2px 2px 2px 2px;
  5292. font-family:'ArialMT', 'Arial', sans-serif;
  5293. font-weight:400;
  5294. font-style:normal;
  5295. font-size:14px;
  5296. letter-spacing:normal;
  5297. color:#AAAAAA;
  5298. vertical-align:none;
  5299. text-align:left;
  5300. text-transform:none;
  5301. background-color:transparent;
  5302. border-color:transparent;
  5303. }
  5304. #u64830_input.disabled {
  5305. position:absolute;
  5306. left:0px;
  5307. top:0px;
  5308. width:153px;
  5309. height:23px;
  5310. padding:2px 2px 2px 2px;
  5311. font-family:'ArialMT', 'Arial', sans-serif;
  5312. font-weight:400;
  5313. font-style:normal;
  5314. font-size:14px;
  5315. letter-spacing:normal;
  5316. color:#AAAAAA;
  5317. vertical-align:none;
  5318. text-align:left;
  5319. text-transform:none;
  5320. background-color:transparent;
  5321. border-color:transparent;
  5322. }
  5323. #u64830_div {
  5324. border-width:0px;
  5325. position:absolute;
  5326. left:0px;
  5327. top:0px;
  5328. width:153px;
  5329. height:23px;
  5330. background:inherit;
  5331. background-color:rgba(255, 255, 255, 1);
  5332. border:none;
  5333. border-radius:0px;
  5334. -moz-box-shadow:none;
  5335. -webkit-box-shadow:none;
  5336. box-shadow:none;
  5337. font-size:14px;
  5338. color:#AAAAAA;
  5339. }
  5340. #u64830 {
  5341. border-width:0px;
  5342. position:absolute;
  5343. left:1043px;
  5344. top:103px;
  5345. width:153px;
  5346. height:23px;
  5347. display:flex;
  5348. font-size:14px;
  5349. color:#AAAAAA;
  5350. }
  5351. #u64830 .text {
  5352. position:absolute;
  5353. align-self:flex-start;
  5354. padding:2px 2px 2px 2px;
  5355. box-sizing:border-box;
  5356. width:100%;
  5357. }
  5358. #u64830_div.disabled {
  5359. border-width:0px;
  5360. position:absolute;
  5361. left:0px;
  5362. top:0px;
  5363. width:153px;
  5364. height:23px;
  5365. background:inherit;
  5366. background-color:rgba(240, 240, 240, 1);
  5367. border:none;
  5368. border-radius:0px;
  5369. -moz-box-shadow:none;
  5370. -webkit-box-shadow:none;
  5371. box-shadow:none;
  5372. font-size:14px;
  5373. color:#AAAAAA;
  5374. }
  5375. #u64830.disabled {
  5376. }
  5377. .u64830_input_option {
  5378. font-size:14px;
  5379. }
  5380. #u64831_div {
  5381. border-width:0px;
  5382. position:absolute;
  5383. left:0px;
  5384. top:0px;
  5385. width:73px;
  5386. height:50px;
  5387. background:inherit;
  5388. background-color:rgba(255, 255, 255, 0);
  5389. border:none;
  5390. border-left:0px;
  5391. border-top:0px;
  5392. border-right:0px;
  5393. border-radius:0px;
  5394. border-bottom-right-radius:0px;
  5395. border-bottom-left-radius:0px;
  5396. -moz-box-shadow:none;
  5397. -webkit-box-shadow:none;
  5398. box-shadow:none;
  5399. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5400. font-weight:400;
  5401. font-style:normal;
  5402. font-size:18px;
  5403. line-height:40px;
  5404. }
  5405. #u64831 {
  5406. border-width:0px;
  5407. position:absolute;
  5408. left:355px;
  5409. top:50px;
  5410. width:73px;
  5411. height:50px;
  5412. display:flex;
  5413. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5414. font-weight:400;
  5415. font-style:normal;
  5416. font-size:18px;
  5417. line-height:40px;
  5418. }
  5419. #u64831 .text {
  5420. position:absolute;
  5421. align-self:center;
  5422. padding:0px 0px 0px 0px;
  5423. box-sizing:border-box;
  5424. width:100%;
  5425. }
  5426. #u64831_text {
  5427. border-width:0px;
  5428. white-space:nowrap;
  5429. text-transform:none;
  5430. }
  5431. #u64832 {
  5432. border-width:0px;
  5433. position:absolute;
  5434. left:0px;
  5435. top:0px;
  5436. width:0px;
  5437. height:0px;
  5438. }
  5439. #u64833_div {
  5440. border-width:0px;
  5441. position:absolute;
  5442. left:0px;
  5443. top:0px;
  5444. width:160px;
  5445. height:30px;
  5446. background:inherit;
  5447. background-color:rgba(255, 255, 255, 1);
  5448. box-sizing:border-box;
  5449. border-width:1px;
  5450. border-style:solid;
  5451. border-color:rgba(215, 215, 215, 1);
  5452. border-radius:4px;
  5453. -moz-box-shadow:none;
  5454. -webkit-box-shadow:none;
  5455. box-shadow:none;
  5456. font-size:14px;
  5457. }
  5458. #u64833 {
  5459. border-width:0px;
  5460. position:absolute;
  5461. left:698px;
  5462. top:101px;
  5463. width:160px;
  5464. height:30px;
  5465. display:flex;
  5466. font-size:14px;
  5467. }
  5468. #u64833 .text {
  5469. position:absolute;
  5470. align-self:center;
  5471. padding:2px 2px 2px 2px;
  5472. box-sizing:border-box;
  5473. width:100%;
  5474. }
  5475. #u64833_text {
  5476. border-width:0px;
  5477. word-wrap:break-word;
  5478. text-transform:none;
  5479. visibility:hidden;
  5480. }
  5481. #u64834_input {
  5482. position:absolute;
  5483. left:0px;
  5484. top:0px;
  5485. width:153px;
  5486. height:23px;
  5487. padding:2px 2px 2px 2px;
  5488. font-family:'ArialMT', 'Arial', sans-serif;
  5489. font-weight:400;
  5490. font-style:normal;
  5491. font-size:14px;
  5492. letter-spacing:normal;
  5493. color:#AAAAAA;
  5494. vertical-align:none;
  5495. text-align:left;
  5496. text-transform:none;
  5497. background-color:transparent;
  5498. border-color:transparent;
  5499. }
  5500. #u64834_input.disabled {
  5501. position:absolute;
  5502. left:0px;
  5503. top:0px;
  5504. width:153px;
  5505. height:23px;
  5506. padding:2px 2px 2px 2px;
  5507. font-family:'ArialMT', 'Arial', sans-serif;
  5508. font-weight:400;
  5509. font-style:normal;
  5510. font-size:14px;
  5511. letter-spacing:normal;
  5512. color:#AAAAAA;
  5513. vertical-align:none;
  5514. text-align:left;
  5515. text-transform:none;
  5516. background-color:transparent;
  5517. border-color:transparent;
  5518. }
  5519. #u64834_div {
  5520. border-width:0px;
  5521. position:absolute;
  5522. left:0px;
  5523. top:0px;
  5524. width:153px;
  5525. height:23px;
  5526. background:inherit;
  5527. background-color:rgba(255, 255, 255, 1);
  5528. border:none;
  5529. border-radius:0px;
  5530. -moz-box-shadow:none;
  5531. -webkit-box-shadow:none;
  5532. box-shadow:none;
  5533. font-size:14px;
  5534. color:#AAAAAA;
  5535. }
  5536. #u64834 {
  5537. border-width:0px;
  5538. position:absolute;
  5539. left:703px;
  5540. top:103px;
  5541. width:153px;
  5542. height:23px;
  5543. display:flex;
  5544. font-size:14px;
  5545. color:#AAAAAA;
  5546. }
  5547. #u64834 .text {
  5548. position:absolute;
  5549. align-self:flex-start;
  5550. padding:2px 2px 2px 2px;
  5551. box-sizing:border-box;
  5552. width:100%;
  5553. }
  5554. #u64834_div.disabled {
  5555. border-width:0px;
  5556. position:absolute;
  5557. left:0px;
  5558. top:0px;
  5559. width:153px;
  5560. height:23px;
  5561. background:inherit;
  5562. background-color:rgba(240, 240, 240, 1);
  5563. border:none;
  5564. border-radius:0px;
  5565. -moz-box-shadow:none;
  5566. -webkit-box-shadow:none;
  5567. box-shadow:none;
  5568. font-size:14px;
  5569. color:#AAAAAA;
  5570. }
  5571. #u64834.disabled {
  5572. }
  5573. .u64834_input_option {
  5574. font-size:14px;
  5575. }
  5576. #u64835 {
  5577. border-width:0px;
  5578. position:absolute;
  5579. left:0px;
  5580. top:0px;
  5581. width:0px;
  5582. height:0px;
  5583. }
  5584. #u64836_div {
  5585. border-width:0px;
  5586. position:absolute;
  5587. left:0px;
  5588. top:0px;
  5589. width:160px;
  5590. height:30px;
  5591. background:inherit;
  5592. background-color:rgba(255, 255, 255, 1);
  5593. box-sizing:border-box;
  5594. border-width:1px;
  5595. border-style:solid;
  5596. border-color:rgba(215, 215, 215, 1);
  5597. border-radius:4px;
  5598. -moz-box-shadow:none;
  5599. -webkit-box-shadow:none;
  5600. box-shadow:none;
  5601. font-size:14px;
  5602. }
  5603. #u64836 {
  5604. border-width:0px;
  5605. position:absolute;
  5606. left:1378px;
  5607. top:101px;
  5608. width:160px;
  5609. height:30px;
  5610. display:flex;
  5611. font-size:14px;
  5612. }
  5613. #u64836 .text {
  5614. position:absolute;
  5615. align-self:center;
  5616. padding:2px 2px 2px 2px;
  5617. box-sizing:border-box;
  5618. width:100%;
  5619. }
  5620. #u64836_text {
  5621. border-width:0px;
  5622. word-wrap:break-word;
  5623. text-transform:none;
  5624. visibility:hidden;
  5625. }
  5626. #u64837_input {
  5627. position:absolute;
  5628. left:0px;
  5629. top:0px;
  5630. width:153px;
  5631. height:23px;
  5632. padding:2px 2px 2px 2px;
  5633. font-family:'ArialMT', 'Arial', sans-serif;
  5634. font-weight:400;
  5635. font-style:normal;
  5636. font-size:14px;
  5637. letter-spacing:normal;
  5638. color:#AAAAAA;
  5639. vertical-align:none;
  5640. text-align:left;
  5641. text-transform:none;
  5642. background-color:transparent;
  5643. border-color:transparent;
  5644. }
  5645. #u64837_input.disabled {
  5646. position:absolute;
  5647. left:0px;
  5648. top:0px;
  5649. width:153px;
  5650. height:23px;
  5651. padding:2px 2px 2px 2px;
  5652. font-family:'ArialMT', 'Arial', sans-serif;
  5653. font-weight:400;
  5654. font-style:normal;
  5655. font-size:14px;
  5656. letter-spacing:normal;
  5657. color:#AAAAAA;
  5658. vertical-align:none;
  5659. text-align:left;
  5660. text-transform:none;
  5661. background-color:transparent;
  5662. border-color:transparent;
  5663. }
  5664. #u64837_div {
  5665. border-width:0px;
  5666. position:absolute;
  5667. left:0px;
  5668. top:0px;
  5669. width:153px;
  5670. height:23px;
  5671. background:inherit;
  5672. background-color:rgba(255, 255, 255, 1);
  5673. border:none;
  5674. border-radius:0px;
  5675. -moz-box-shadow:none;
  5676. -webkit-box-shadow:none;
  5677. box-shadow:none;
  5678. font-size:14px;
  5679. color:#AAAAAA;
  5680. }
  5681. #u64837 {
  5682. border-width:0px;
  5683. position:absolute;
  5684. left:1383px;
  5685. top:103px;
  5686. width:153px;
  5687. height:23px;
  5688. display:flex;
  5689. font-size:14px;
  5690. color:#AAAAAA;
  5691. }
  5692. #u64837 .text {
  5693. position:absolute;
  5694. align-self:flex-start;
  5695. padding:2px 2px 2px 2px;
  5696. box-sizing:border-box;
  5697. width:100%;
  5698. }
  5699. #u64837_div.disabled {
  5700. border-width:0px;
  5701. position:absolute;
  5702. left:0px;
  5703. top:0px;
  5704. width:153px;
  5705. height:23px;
  5706. background:inherit;
  5707. background-color:rgba(240, 240, 240, 1);
  5708. border:none;
  5709. border-radius:0px;
  5710. -moz-box-shadow:none;
  5711. -webkit-box-shadow:none;
  5712. box-shadow:none;
  5713. font-size:14px;
  5714. color:#AAAAAA;
  5715. }
  5716. #u64837.disabled {
  5717. }
  5718. .u64837_input_option {
  5719. font-size:14px;
  5720. }
  5721. #u64838_div {
  5722. border-width:0px;
  5723. position:absolute;
  5724. left:0px;
  5725. top:0px;
  5726. width:1220px;
  5727. height:120px;
  5728. background:inherit;
  5729. background-color:rgba(255, 255, 255, 1);
  5730. box-sizing:border-box;
  5731. border-width:1px;
  5732. border-style:solid;
  5733. border-color:rgba(201, 201, 201, 1);
  5734. border-radius:4px;
  5735. -moz-box-shadow:none;
  5736. -webkit-box-shadow:none;
  5737. box-shadow:none;
  5738. font-family:'Microsoft YaHei', sans-serif;
  5739. font-weight:400;
  5740. font-style:normal;
  5741. font-size:14px;
  5742. color:#CCCCCC;
  5743. text-align:left;
  5744. }
  5745. #u64838 {
  5746. border-width:0px;
  5747. position:absolute;
  5748. left:356px;
  5749. top:191px;
  5750. width:1220px;
  5751. height:120px;
  5752. display:flex;
  5753. font-family:'Microsoft YaHei', sans-serif;
  5754. font-weight:400;
  5755. font-style:normal;
  5756. font-size:14px;
  5757. color:#CCCCCC;
  5758. text-align:left;
  5759. }
  5760. #u64838 .text {
  5761. position:absolute;
  5762. align-self:center;
  5763. padding:2px 8px 2px 8px;
  5764. box-sizing:border-box;
  5765. width:100%;
  5766. }
  5767. #u64838_text {
  5768. border-width:0px;
  5769. word-wrap:break-word;
  5770. text-transform:none;
  5771. visibility:hidden;
  5772. }
  5773. #u64839_div {
  5774. border-width:0px;
  5775. position:absolute;
  5776. left:0px;
  5777. top:0px;
  5778. width:190px;
  5779. height:60px;
  5780. background:inherit;
  5781. background-color:rgba(255, 255, 255, 0);
  5782. border:none;
  5783. border-left:0px;
  5784. border-top:0px;
  5785. border-right:0px;
  5786. border-radius:0px;
  5787. border-bottom-right-radius:0px;
  5788. border-bottom-left-radius:0px;
  5789. -moz-box-shadow:none;
  5790. -webkit-box-shadow:none;
  5791. box-shadow:none;
  5792. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5793. font-weight:400;
  5794. font-style:normal;
  5795. font-size:14px;
  5796. line-height:30px;
  5797. }
  5798. #u64839 {
  5799. border-width:0px;
  5800. position:absolute;
  5801. left:481px;
  5802. top:221px;
  5803. width:190px;
  5804. height:60px;
  5805. display:flex;
  5806. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5807. font-weight:400;
  5808. font-style:normal;
  5809. font-size:14px;
  5810. line-height:30px;
  5811. }
  5812. #u64839 .text {
  5813. position:absolute;
  5814. align-self:center;
  5815. padding:0px 0px 0px 0px;
  5816. box-sizing:border-box;
  5817. width:100%;
  5818. }
  5819. #u64839_text {
  5820. border-width:0px;
  5821. white-space:nowrap;
  5822. text-transform:none;
  5823. }
  5824. #u64840_img {
  5825. border-width:0px;
  5826. position:absolute;
  5827. left:0px;
  5828. top:0px;
  5829. width:75px;
  5830. height:75px;
  5831. }
  5832. #u64840 {
  5833. border-width:0px;
  5834. position:absolute;
  5835. left:385px;
  5836. top:211px;
  5837. width:75px;
  5838. height:75px;
  5839. display:flex;
  5840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5841. font-weight:400;
  5842. font-style:normal;
  5843. }
  5844. #u64840 .text {
  5845. position:absolute;
  5846. align-self:center;
  5847. padding:2px 2px 2px 2px;
  5848. box-sizing:border-box;
  5849. width:100%;
  5850. }
  5851. #u64840_text {
  5852. border-width:0px;
  5853. word-wrap:break-word;
  5854. text-transform:none;
  5855. }
  5856. #u64841_div {
  5857. border-width:0px;
  5858. position:absolute;
  5859. left:0px;
  5860. top:0px;
  5861. width:173px;
  5862. height:90px;
  5863. background:inherit;
  5864. background-color:rgba(255, 255, 255, 0);
  5865. border:none;
  5866. border-left:0px;
  5867. border-top:0px;
  5868. border-right:0px;
  5869. border-radius:0px;
  5870. border-bottom-right-radius:0px;
  5871. border-bottom-left-radius:0px;
  5872. -moz-box-shadow:none;
  5873. -webkit-box-shadow:none;
  5874. box-shadow:none;
  5875. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5876. font-weight:400;
  5877. font-style:normal;
  5878. font-size:14px;
  5879. line-height:30px;
  5880. }
  5881. #u64841 {
  5882. border-width:0px;
  5883. position:absolute;
  5884. left:946px;
  5885. top:206px;
  5886. width:173px;
  5887. height:90px;
  5888. display:flex;
  5889. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5890. font-weight:400;
  5891. font-style:normal;
  5892. font-size:14px;
  5893. line-height:30px;
  5894. }
  5895. #u64841 .text {
  5896. position:absolute;
  5897. align-self:center;
  5898. padding:0px 0px 0px 0px;
  5899. box-sizing:border-box;
  5900. width:100%;
  5901. }
  5902. #u64841_text {
  5903. border-width:0px;
  5904. white-space:nowrap;
  5905. text-transform:none;
  5906. }
  5907. #u64842_img {
  5908. border-width:0px;
  5909. position:absolute;
  5910. left:0px;
  5911. top:0px;
  5912. width:75px;
  5913. height:75px;
  5914. }
  5915. #u64842 {
  5916. border-width:0px;
  5917. position:absolute;
  5918. left:850px;
  5919. top:211px;
  5920. width:75px;
  5921. height:75px;
  5922. display:flex;
  5923. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5924. font-weight:400;
  5925. font-style:normal;
  5926. }
  5927. #u64842 .text {
  5928. position:absolute;
  5929. align-self:center;
  5930. padding:2px 2px 2px 2px;
  5931. box-sizing:border-box;
  5932. width:100%;
  5933. }
  5934. #u64842_text {
  5935. border-width:0px;
  5936. word-wrap:break-word;
  5937. text-transform:none;
  5938. }
  5939. #u64843_div {
  5940. border-width:0px;
  5941. position:absolute;
  5942. left:0px;
  5943. top:0px;
  5944. width:127px;
  5945. height:90px;
  5946. background:inherit;
  5947. background-color:rgba(255, 255, 255, 0);
  5948. border:none;
  5949. border-left:0px;
  5950. border-top:0px;
  5951. border-right:0px;
  5952. border-radius:0px;
  5953. border-bottom-right-radius:0px;
  5954. border-bottom-left-radius:0px;
  5955. -moz-box-shadow:none;
  5956. -webkit-box-shadow:none;
  5957. box-shadow:none;
  5958. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5959. font-weight:400;
  5960. font-style:normal;
  5961. font-size:14px;
  5962. line-height:30px;
  5963. }
  5964. #u64843 {
  5965. border-width:0px;
  5966. position:absolute;
  5967. left:1372px;
  5968. top:206px;
  5969. width:127px;
  5970. height:90px;
  5971. display:flex;
  5972. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5973. font-weight:400;
  5974. font-style:normal;
  5975. font-size:14px;
  5976. line-height:30px;
  5977. }
  5978. #u64843 .text {
  5979. position:absolute;
  5980. align-self:center;
  5981. padding:0px 0px 0px 0px;
  5982. box-sizing:border-box;
  5983. width:100%;
  5984. }
  5985. #u64843_text {
  5986. border-width:0px;
  5987. white-space:nowrap;
  5988. text-transform:none;
  5989. }
  5990. #u64844_img {
  5991. border-width:0px;
  5992. position:absolute;
  5993. left:0px;
  5994. top:0px;
  5995. width:75px;
  5996. height:75px;
  5997. }
  5998. #u64844 {
  5999. border-width:0px;
  6000. position:absolute;
  6001. left:1276px;
  6002. top:211px;
  6003. width:75px;
  6004. height:75px;
  6005. display:flex;
  6006. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6007. font-weight:400;
  6008. font-style:normal;
  6009. }
  6010. #u64844 .text {
  6011. position:absolute;
  6012. align-self:center;
  6013. padding:2px 2px 2px 2px;
  6014. box-sizing:border-box;
  6015. width:100%;
  6016. }
  6017. #u64844_text {
  6018. border-width:0px;
  6019. word-wrap:break-word;
  6020. text-transform:none;
  6021. }
  6022. #u64845 {
  6023. border-width:0px;
  6024. position:absolute;
  6025. left:0px;
  6026. top:0px;
  6027. width:0px;
  6028. height:0px;
  6029. }
  6030. #u64846_div {
  6031. border-width:0px;
  6032. position:absolute;
  6033. left:0px;
  6034. top:0px;
  6035. width:160px;
  6036. height:30px;
  6037. background:inherit;
  6038. background-color:rgba(255, 255, 255, 1);
  6039. box-sizing:border-box;
  6040. border-width:1px;
  6041. border-style:solid;
  6042. border-color:rgba(215, 215, 215, 1);
  6043. border-radius:4px;
  6044. -moz-box-shadow:none;
  6045. -webkit-box-shadow:none;
  6046. box-shadow:none;
  6047. font-size:14px;
  6048. }
  6049. #u64846 {
  6050. border-width:0px;
  6051. position:absolute;
  6052. left:357px;
  6053. top:141px;
  6054. width:160px;
  6055. height:30px;
  6056. display:flex;
  6057. font-size:14px;
  6058. }
  6059. #u64846 .text {
  6060. position:absolute;
  6061. align-self:center;
  6062. padding:2px 2px 2px 2px;
  6063. box-sizing:border-box;
  6064. width:100%;
  6065. }
  6066. #u64846_text {
  6067. border-width:0px;
  6068. word-wrap:break-word;
  6069. text-transform:none;
  6070. visibility:hidden;
  6071. }
  6072. #u64847_input {
  6073. position:absolute;
  6074. left:0px;
  6075. top:0px;
  6076. width:153px;
  6077. height:23px;
  6078. padding:2px 2px 2px 2px;
  6079. font-family:'ArialMT', 'Arial', sans-serif;
  6080. font-weight:400;
  6081. font-style:normal;
  6082. font-size:14px;
  6083. letter-spacing:normal;
  6084. color:#AAAAAA;
  6085. vertical-align:none;
  6086. text-align:left;
  6087. text-transform:none;
  6088. background-color:transparent;
  6089. border-color:transparent;
  6090. }
  6091. #u64847_input.disabled {
  6092. position:absolute;
  6093. left:0px;
  6094. top:0px;
  6095. width:153px;
  6096. height:23px;
  6097. padding:2px 2px 2px 2px;
  6098. font-family:'ArialMT', 'Arial', sans-serif;
  6099. font-weight:400;
  6100. font-style:normal;
  6101. font-size:14px;
  6102. letter-spacing:normal;
  6103. color:#AAAAAA;
  6104. vertical-align:none;
  6105. text-align:left;
  6106. text-transform:none;
  6107. background-color:transparent;
  6108. border-color:transparent;
  6109. }
  6110. #u64847_div {
  6111. border-width:0px;
  6112. position:absolute;
  6113. left:0px;
  6114. top:0px;
  6115. width:153px;
  6116. height:23px;
  6117. background:inherit;
  6118. background-color:rgba(255, 255, 255, 1);
  6119. border:none;
  6120. border-radius:0px;
  6121. -moz-box-shadow:none;
  6122. -webkit-box-shadow:none;
  6123. box-shadow:none;
  6124. font-size:14px;
  6125. color:#AAAAAA;
  6126. }
  6127. #u64847 {
  6128. border-width:0px;
  6129. position:absolute;
  6130. left:362px;
  6131. top:143px;
  6132. width:153px;
  6133. height:23px;
  6134. display:flex;
  6135. font-size:14px;
  6136. color:#AAAAAA;
  6137. }
  6138. #u64847 .text {
  6139. position:absolute;
  6140. align-self:flex-start;
  6141. padding:2px 2px 2px 2px;
  6142. box-sizing:border-box;
  6143. width:100%;
  6144. }
  6145. #u64847_div.disabled {
  6146. border-width:0px;
  6147. position:absolute;
  6148. left:0px;
  6149. top:0px;
  6150. width:153px;
  6151. height:23px;
  6152. background:inherit;
  6153. background-color:rgba(240, 240, 240, 1);
  6154. border:none;
  6155. border-radius:0px;
  6156. -moz-box-shadow:none;
  6157. -webkit-box-shadow:none;
  6158. box-shadow:none;
  6159. font-size:14px;
  6160. color:#AAAAAA;
  6161. }
  6162. #u64847.disabled {
  6163. }
  6164. .u64847_input_option {
  6165. font-size:14px;
  6166. }
  6167. #u64848_div {
  6168. border-width:0px;
  6169. position:absolute;
  6170. left:0px;
  6171. top:0px;
  6172. width:100px;
  6173. height:30px;
  6174. background:inherit;
  6175. background-color:rgba(24, 144, 255, 1);
  6176. border:none;
  6177. border-radius:4px;
  6178. -moz-box-shadow:none;
  6179. -webkit-box-shadow:none;
  6180. box-shadow:none;
  6181. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6182. font-weight:400;
  6183. font-style:normal;
  6184. font-size:14px;
  6185. color:#FFFFFF;
  6186. }
  6187. #u64848 {
  6188. border-width:0px;
  6189. position:absolute;
  6190. left:1470px;
  6191. top:333px;
  6192. width:100px;
  6193. height:30px;
  6194. display:flex;
  6195. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6196. font-weight:400;
  6197. font-style:normal;
  6198. font-size:14px;
  6199. color:#FFFFFF;
  6200. }
  6201. #u64848 .text {
  6202. position:absolute;
  6203. align-self:center;
  6204. padding:2px 2px 2px 2px;
  6205. box-sizing:border-box;
  6206. width:100%;
  6207. }
  6208. #u64848_text {
  6209. border-width:0px;
  6210. word-wrap:break-word;
  6211. text-transform:none;
  6212. }
  6213. #u64849_div {
  6214. border-width:0px;
  6215. position:absolute;
  6216. left:0px;
  6217. top:0px;
  6218. width:60px;
  6219. height:30px;
  6220. background:inherit;
  6221. background-color:rgba(255, 255, 255, 1);
  6222. box-sizing:border-box;
  6223. border-width:1px;
  6224. border-style:solid;
  6225. border-color:rgba(170, 170, 170, 1);
  6226. border-radius:4px;
  6227. -moz-box-shadow:none;
  6228. -webkit-box-shadow:none;
  6229. box-shadow:none;
  6230. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6231. font-weight:400;
  6232. font-style:normal;
  6233. font-size:14px;
  6234. }
  6235. #u64849 {
  6236. border-width:0px;
  6237. position:absolute;
  6238. left:1400px;
  6239. top:333px;
  6240. width:60px;
  6241. height:30px;
  6242. display:flex;
  6243. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6244. font-weight:400;
  6245. font-style:normal;
  6246. font-size:14px;
  6247. }
  6248. #u64849 .text {
  6249. position:absolute;
  6250. align-self:center;
  6251. padding:2px 2px 2px 2px;
  6252. box-sizing:border-box;
  6253. width:100%;
  6254. }
  6255. #u64849_text {
  6256. border-width:0px;
  6257. word-wrap:break-word;
  6258. text-transform:none;
  6259. }
  6260. #u64850 {
  6261. border-width:0px;
  6262. position:absolute;
  6263. left:0px;
  6264. top:0px;
  6265. width:0px;
  6266. height:0px;
  6267. }
  6268. #u64851 {
  6269. border-width:0px;
  6270. position:absolute;
  6271. left:0px;
  6272. top:0px;
  6273. width:0px;
  6274. height:0px;
  6275. }
  6276. #u64852_div {
  6277. border-width:0px;
  6278. position:absolute;
  6279. left:0px;
  6280. top:0px;
  6281. width:480px;
  6282. height:350px;
  6283. background:inherit;
  6284. background-color:rgba(255, 255, 255, 1);
  6285. border:none;
  6286. border-radius:4px;
  6287. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  6288. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  6289. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  6290. font-family:'Microsoft YaHei', sans-serif;
  6291. font-weight:400;
  6292. font-style:normal;
  6293. }
  6294. #u64852 {
  6295. border-width:0px;
  6296. position:absolute;
  6297. left:436px;
  6298. top:738px;
  6299. width:480px;
  6300. height:350px;
  6301. display:flex;
  6302. font-family:'Microsoft YaHei', sans-serif;
  6303. font-weight:400;
  6304. font-style:normal;
  6305. }
  6306. #u64852 .text {
  6307. position:absolute;
  6308. align-self:center;
  6309. padding:2px 2px 2px 2px;
  6310. box-sizing:border-box;
  6311. width:100%;
  6312. }
  6313. #u64852_text {
  6314. border-width:0px;
  6315. word-wrap:break-word;
  6316. text-transform:none;
  6317. visibility:hidden;
  6318. }
  6319. #u64853_div {
  6320. border-width:0px;
  6321. position:absolute;
  6322. left:0px;
  6323. top:0px;
  6324. width:299px;
  6325. height:22px;
  6326. background:inherit;
  6327. background-color:rgba(255, 255, 255, 0);
  6328. border:none;
  6329. border-radius:0px;
  6330. -moz-box-shadow:none;
  6331. -webkit-box-shadow:none;
  6332. box-shadow:none;
  6333. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6334. font-weight:400;
  6335. font-style:normal;
  6336. font-size:14px;
  6337. color:#666666;
  6338. line-height:22px;
  6339. }
  6340. #u64853 {
  6341. border-width:0px;
  6342. position:absolute;
  6343. left:463px;
  6344. top:801px;
  6345. width:299px;
  6346. height:22px;
  6347. display:flex;
  6348. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6349. font-weight:400;
  6350. font-style:normal;
  6351. font-size:14px;
  6352. color:#666666;
  6353. line-height:22px;
  6354. }
  6355. #u64853 .text {
  6356. position:absolute;
  6357. align-self:flex-start;
  6358. padding:0px 0px 0px 0px;
  6359. box-sizing:border-box;
  6360. width:100%;
  6361. }
  6362. #u64853_text {
  6363. border-width:0px;
  6364. word-wrap:break-word;
  6365. text-transform:none;
  6366. }
  6367. #u64854_div {
  6368. border-width:0px;
  6369. position:absolute;
  6370. left:0px;
  6371. top:0px;
  6372. width:109px;
  6373. height:21px;
  6374. background:inherit;
  6375. background-color:rgba(255, 255, 255, 0);
  6376. border:none;
  6377. border-radius:0px;
  6378. -moz-box-shadow:none;
  6379. -webkit-box-shadow:none;
  6380. box-shadow:none;
  6381. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6382. font-weight:650;
  6383. font-style:normal;
  6384. font-size:18px;
  6385. color:#000000;
  6386. line-height:22px;
  6387. }
  6388. #u64854 {
  6389. border-width:0px;
  6390. position:absolute;
  6391. left:463px;
  6392. top:759px;
  6393. width:109px;
  6394. height:21px;
  6395. display:flex;
  6396. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6397. font-weight:650;
  6398. font-style:normal;
  6399. font-size:18px;
  6400. color:#000000;
  6401. line-height:22px;
  6402. }
  6403. #u64854 .text {
  6404. position:absolute;
  6405. align-self:flex-start;
  6406. padding:0px 0px 0px 0px;
  6407. box-sizing:border-box;
  6408. width:100%;
  6409. }
  6410. #u64854_text {
  6411. border-width:0px;
  6412. white-space:nowrap;
  6413. text-transform:none;
  6414. }
  6415. #u64855 label {
  6416. left:0px;
  6417. width:100%;
  6418. }
  6419. #u64855_img {
  6420. border-width:0px;
  6421. position:absolute;
  6422. left:0px;
  6423. top:3px;
  6424. width:12px;
  6425. height:12px;
  6426. }
  6427. #u64855 {
  6428. border-width:0px;
  6429. position:absolute;
  6430. left:540px;
  6431. top:804px;
  6432. width:100px;
  6433. height:18px;
  6434. display:flex;
  6435. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6436. font-weight:400;
  6437. font-style:normal;
  6438. }
  6439. #u64855 .text {
  6440. position:absolute;
  6441. align-self:center;
  6442. padding:0px 2px 0px 2px;
  6443. box-sizing:border-box;
  6444. }
  6445. #u64855_img.selected {
  6446. }
  6447. #u64855.selected {
  6448. }
  6449. #u64855_img.disabled {
  6450. }
  6451. #u64855.disabled {
  6452. }
  6453. #u64855_img.selectedDisabled {
  6454. }
  6455. #u64855.selectedDisabled {
  6456. }
  6457. #u64855_text {
  6458. border-width:0px;
  6459. position:absolute;
  6460. left:14px;
  6461. top:0px;
  6462. width:84px;
  6463. word-wrap:break-word;
  6464. text-transform:none;
  6465. }
  6466. #u64855_input {
  6467. border-width:0px;
  6468. position:absolute;
  6469. left:0px;
  6470. top:0px;
  6471. width:0px;
  6472. height:0px;
  6473. opacity:0;
  6474. }
  6475. #u64856 label {
  6476. left:0px;
  6477. width:100%;
  6478. }
  6479. #u64856_img {
  6480. border-width:0px;
  6481. position:absolute;
  6482. left:0px;
  6483. top:3px;
  6484. width:12px;
  6485. height:12px;
  6486. }
  6487. #u64856 {
  6488. border-width:0px;
  6489. position:absolute;
  6490. left:540px;
  6491. top:837px;
  6492. width:100px;
  6493. height:18px;
  6494. display:flex;
  6495. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6496. font-weight:400;
  6497. font-style:normal;
  6498. }
  6499. #u64856 .text {
  6500. position:absolute;
  6501. align-self:center;
  6502. padding:0px 2px 0px 2px;
  6503. box-sizing:border-box;
  6504. }
  6505. #u64856_img.selected {
  6506. }
  6507. #u64856.selected {
  6508. }
  6509. #u64856_img.disabled {
  6510. }
  6511. #u64856.disabled {
  6512. }
  6513. #u64856_img.selectedDisabled {
  6514. }
  6515. #u64856.selectedDisabled {
  6516. }
  6517. #u64856_text {
  6518. border-width:0px;
  6519. position:absolute;
  6520. left:14px;
  6521. top:0px;
  6522. width:84px;
  6523. word-wrap:break-word;
  6524. text-transform:none;
  6525. }
  6526. #u64856_input {
  6527. border-width:0px;
  6528. position:absolute;
  6529. left:0px;
  6530. top:0px;
  6531. width:0px;
  6532. height:0px;
  6533. opacity:0;
  6534. }
  6535. #u64857 label {
  6536. left:0px;
  6537. width:100%;
  6538. }
  6539. #u64857_img {
  6540. border-width:0px;
  6541. position:absolute;
  6542. left:0px;
  6543. top:3px;
  6544. width:12px;
  6545. height:12px;
  6546. }
  6547. #u64857 {
  6548. border-width:0px;
  6549. position:absolute;
  6550. left:540px;
  6551. top:870px;
  6552. width:100px;
  6553. height:18px;
  6554. display:flex;
  6555. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6556. font-weight:400;
  6557. font-style:normal;
  6558. }
  6559. #u64857 .text {
  6560. position:absolute;
  6561. align-self:center;
  6562. padding:0px 2px 0px 2px;
  6563. box-sizing:border-box;
  6564. }
  6565. #u64857_img.selected {
  6566. }
  6567. #u64857.selected {
  6568. }
  6569. #u64857_img.disabled {
  6570. }
  6571. #u64857.disabled {
  6572. }
  6573. #u64857_img.selectedDisabled {
  6574. }
  6575. #u64857.selectedDisabled {
  6576. }
  6577. #u64857_text {
  6578. border-width:0px;
  6579. position:absolute;
  6580. left:14px;
  6581. top:0px;
  6582. width:84px;
  6583. word-wrap:break-word;
  6584. text-transform:none;
  6585. }
  6586. #u64857_input {
  6587. border-width:0px;
  6588. position:absolute;
  6589. left:0px;
  6590. top:0px;
  6591. width:0px;
  6592. height:0px;
  6593. opacity:0;
  6594. }
  6595. #u64858 label {
  6596. left:0px;
  6597. width:100%;
  6598. }
  6599. #u64858_img {
  6600. border-width:0px;
  6601. position:absolute;
  6602. left:0px;
  6603. top:3px;
  6604. width:12px;
  6605. height:12px;
  6606. }
  6607. #u64858 {
  6608. border-width:0px;
  6609. position:absolute;
  6610. left:540px;
  6611. top:903px;
  6612. width:100px;
  6613. height:18px;
  6614. display:flex;
  6615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6616. font-weight:400;
  6617. font-style:normal;
  6618. }
  6619. #u64858 .text {
  6620. position:absolute;
  6621. align-self:center;
  6622. padding:0px 2px 0px 2px;
  6623. box-sizing:border-box;
  6624. }
  6625. #u64858_img.selected {
  6626. }
  6627. #u64858.selected {
  6628. }
  6629. #u64858_img.disabled {
  6630. }
  6631. #u64858.disabled {
  6632. }
  6633. #u64858_img.selectedDisabled {
  6634. }
  6635. #u64858.selectedDisabled {
  6636. }
  6637. #u64858_text {
  6638. border-width:0px;
  6639. position:absolute;
  6640. left:14px;
  6641. top:0px;
  6642. width:84px;
  6643. word-wrap:break-word;
  6644. text-transform:none;
  6645. }
  6646. #u64858_input {
  6647. border-width:0px;
  6648. position:absolute;
  6649. left:0px;
  6650. top:0px;
  6651. width:0px;
  6652. height:0px;
  6653. opacity:0;
  6654. }
  6655. #u64859 label {
  6656. left:0px;
  6657. width:100%;
  6658. }
  6659. #u64859_img {
  6660. border-width:0px;
  6661. position:absolute;
  6662. left:0px;
  6663. top:3px;
  6664. width:12px;
  6665. height:12px;
  6666. }
  6667. #u64859 {
  6668. border-width:0px;
  6669. position:absolute;
  6670. left:540px;
  6671. top:936px;
  6672. width:100px;
  6673. height:18px;
  6674. display:flex;
  6675. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6676. font-weight:400;
  6677. font-style:normal;
  6678. }
  6679. #u64859 .text {
  6680. position:absolute;
  6681. align-self:center;
  6682. padding:0px 2px 0px 2px;
  6683. box-sizing:border-box;
  6684. }
  6685. #u64859_img.selected {
  6686. }
  6687. #u64859.selected {
  6688. }
  6689. #u64859_img.disabled {
  6690. }
  6691. #u64859.disabled {
  6692. }
  6693. #u64859_img.selectedDisabled {
  6694. }
  6695. #u64859.selectedDisabled {
  6696. }
  6697. #u64859_text {
  6698. border-width:0px;
  6699. position:absolute;
  6700. left:14px;
  6701. top:0px;
  6702. width:84px;
  6703. word-wrap:break-word;
  6704. text-transform:none;
  6705. }
  6706. #u64859_input {
  6707. border-width:0px;
  6708. position:absolute;
  6709. left:0px;
  6710. top:0px;
  6711. width:0px;
  6712. height:0px;
  6713. opacity:0;
  6714. }
  6715. #u64860 {
  6716. border-width:0px;
  6717. position:absolute;
  6718. left:0px;
  6719. top:0px;
  6720. width:0px;
  6721. height:0px;
  6722. }
  6723. #u64861_div {
  6724. border-width:0px;
  6725. position:absolute;
  6726. left:0px;
  6727. top:0px;
  6728. width:347px;
  6729. height:60px;
  6730. background:inherit;
  6731. background-color:rgba(255, 255, 255, 1);
  6732. box-sizing:border-box;
  6733. border-width:1px;
  6734. border-style:solid;
  6735. border-color:rgba(41, 143, 255, 1);
  6736. border-radius:4px;
  6737. -moz-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  6738. -webkit-box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  6739. box-shadow:0px 0px 3px rgba(0, 0, 0, 0.349019607843137);
  6740. font-family:'Microsoft YaHei', sans-serif;
  6741. font-weight:400;
  6742. font-style:normal;
  6743. font-size:14px;
  6744. color:#CCCCCC;
  6745. text-align:left;
  6746. }
  6747. #u64861 {
  6748. border-width:0px;
  6749. position:absolute;
  6750. left:540px;
  6751. top:964px;
  6752. width:347px;
  6753. height:60px;
  6754. display:flex;
  6755. font-family:'Microsoft YaHei', sans-serif;
  6756. font-weight:400;
  6757. font-style:normal;
  6758. font-size:14px;
  6759. color:#CCCCCC;
  6760. text-align:left;
  6761. }
  6762. #u64861 .text {
  6763. position:absolute;
  6764. align-self:center;
  6765. padding:2px 8px 2px 8px;
  6766. box-sizing:border-box;
  6767. width:100%;
  6768. }
  6769. #u64861_text {
  6770. border-width:0px;
  6771. word-wrap:break-word;
  6772. text-transform:none;
  6773. visibility:hidden;
  6774. }
  6775. #u64862_input {
  6776. position:absolute;
  6777. left:0px;
  6778. top:0px;
  6779. width:330px;
  6780. height:38px;
  6781. padding:2px 2px 2px 2px;
  6782. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6783. font-weight:400;
  6784. font-style:normal;
  6785. font-size:14px;
  6786. letter-spacing:normal;
  6787. color:#000000;
  6788. vertical-align:none;
  6789. text-align:left;
  6790. text-transform:none;
  6791. background-color:transparent;
  6792. border-color:transparent;
  6793. }
  6794. #u64862_input.disabled {
  6795. position:absolute;
  6796. left:0px;
  6797. top:0px;
  6798. width:330px;
  6799. height:38px;
  6800. padding:2px 2px 2px 2px;
  6801. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6802. font-weight:400;
  6803. font-style:normal;
  6804. font-size:14px;
  6805. letter-spacing:normal;
  6806. color:#000000;
  6807. vertical-align:none;
  6808. text-align:left;
  6809. text-transform:none;
  6810. background-color:transparent;
  6811. border-color:transparent;
  6812. }
  6813. #u64862_div {
  6814. border-width:0px;
  6815. position:absolute;
  6816. left:0px;
  6817. top:0px;
  6818. width:330px;
  6819. height:38px;
  6820. background:inherit;
  6821. background-color:rgba(255, 255, 255, 1);
  6822. border:none;
  6823. border-radius:0px;
  6824. -moz-box-shadow:none;
  6825. -webkit-box-shadow:none;
  6826. box-shadow:none;
  6827. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6828. font-weight:400;
  6829. font-style:normal;
  6830. font-size:14px;
  6831. }
  6832. #u64862 {
  6833. border-width:0px;
  6834. position:absolute;
  6835. left:549px;
  6836. top:965px;
  6837. width:330px;
  6838. height:38px;
  6839. display:flex;
  6840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6841. font-weight:400;
  6842. font-style:normal;
  6843. font-size:14px;
  6844. }
  6845. #u64862 .text {
  6846. position:absolute;
  6847. align-self:center;
  6848. padding:2px 2px 2px 2px;
  6849. box-sizing:border-box;
  6850. width:100%;
  6851. }
  6852. #u64862_div.disabled {
  6853. border-width:0px;
  6854. position:absolute;
  6855. left:0px;
  6856. top:0px;
  6857. width:330px;
  6858. height:38px;
  6859. background:inherit;
  6860. background-color:rgba(240, 240, 240, 1);
  6861. border:none;
  6862. border-radius:0px;
  6863. -moz-box-shadow:none;
  6864. -webkit-box-shadow:none;
  6865. box-shadow:none;
  6866. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6867. font-weight:400;
  6868. font-style:normal;
  6869. font-size:14px;
  6870. }
  6871. #u64862.disabled {
  6872. }
  6873. #u64863 {
  6874. border-width:0px;
  6875. position:absolute;
  6876. left:0px;
  6877. top:0px;
  6878. width:0px;
  6879. height:0px;
  6880. }
  6881. #u64864_div {
  6882. border-width:0px;
  6883. position:absolute;
  6884. left:0px;
  6885. top:0px;
  6886. width:80px;
  6887. height:30px;
  6888. background:inherit;
  6889. background-color:rgba(24, 144, 255, 1);
  6890. border:none;
  6891. border-radius:4px;
  6892. -moz-box-shadow:none;
  6893. -webkit-box-shadow:none;
  6894. box-shadow:none;
  6895. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6896. font-weight:400;
  6897. font-style:normal;
  6898. font-size:14px;
  6899. color:#FFFFFF;
  6900. }
  6901. #u64864 {
  6902. border-width:0px;
  6903. position:absolute;
  6904. left:807px;
  6905. top:1044px;
  6906. width:80px;
  6907. height:30px;
  6908. display:flex;
  6909. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6910. font-weight:400;
  6911. font-style:normal;
  6912. font-size:14px;
  6913. color:#FFFFFF;
  6914. }
  6915. #u64864 .text {
  6916. position:absolute;
  6917. align-self:center;
  6918. padding:2px 2px 2px 2px;
  6919. box-sizing:border-box;
  6920. width:100%;
  6921. }
  6922. #u64864_text {
  6923. border-width:0px;
  6924. word-wrap:break-word;
  6925. text-transform:none;
  6926. }
  6927. #u64865_div {
  6928. border-width:0px;
  6929. position:absolute;
  6930. left:0px;
  6931. top:0px;
  6932. width:80px;
  6933. height:30px;
  6934. background:inherit;
  6935. background-color:rgba(255, 255, 255, 1);
  6936. box-sizing:border-box;
  6937. border-width:1px;
  6938. border-style:solid;
  6939. border-color:rgba(170, 170, 170, 1);
  6940. border-radius:4px;
  6941. -moz-box-shadow:none;
  6942. -webkit-box-shadow:none;
  6943. box-shadow:none;
  6944. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6945. font-weight:400;
  6946. font-style:normal;
  6947. font-size:14px;
  6948. }
  6949. #u64865 {
  6950. border-width:0px;
  6951. position:absolute;
  6952. left:708px;
  6953. top:1044px;
  6954. width:80px;
  6955. height:30px;
  6956. display:flex;
  6957. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6958. font-weight:400;
  6959. font-style:normal;
  6960. font-size:14px;
  6961. }
  6962. #u64865 .text {
  6963. position:absolute;
  6964. align-self:center;
  6965. padding:2px 2px 2px 2px;
  6966. box-sizing:border-box;
  6967. width:100%;
  6968. }
  6969. #u64865_text {
  6970. border-width:0px;
  6971. word-wrap:break-word;
  6972. text-transform:none;
  6973. }
  6974. #u64866 {
  6975. border-width:0px;
  6976. position:absolute;
  6977. left:0px;
  6978. top:0px;
  6979. width:0px;
  6980. height:0px;
  6981. }
  6982. #u64867_div {
  6983. border-width:0px;
  6984. position:absolute;
  6985. left:0px;
  6986. top:0px;
  6987. width:160px;
  6988. height:30px;
  6989. background:inherit;
  6990. background-color:rgba(255, 255, 255, 1);
  6991. box-sizing:border-box;
  6992. border-width:1px;
  6993. border-style:solid;
  6994. border-color:rgba(215, 215, 215, 1);
  6995. border-radius:4px;
  6996. -moz-box-shadow:none;
  6997. -webkit-box-shadow:none;
  6998. box-shadow:none;
  6999. font-size:14px;
  7000. }
  7001. #u64867 {
  7002. border-width:0px;
  7003. position:absolute;
  7004. left:1208px;
  7005. top:101px;
  7006. width:160px;
  7007. height:30px;
  7008. display:flex;
  7009. font-size:14px;
  7010. }
  7011. #u64867 .text {
  7012. position:absolute;
  7013. align-self:center;
  7014. padding:2px 2px 2px 2px;
  7015. box-sizing:border-box;
  7016. width:100%;
  7017. }
  7018. #u64867_text {
  7019. border-width:0px;
  7020. word-wrap:break-word;
  7021. text-transform:none;
  7022. visibility:hidden;
  7023. }
  7024. #u64868_input {
  7025. position:absolute;
  7026. left:0px;
  7027. top:0px;
  7028. width:153px;
  7029. height:23px;
  7030. padding:2px 2px 2px 2px;
  7031. font-family:'ArialMT', 'Arial', sans-serif;
  7032. font-weight:400;
  7033. font-style:normal;
  7034. font-size:14px;
  7035. letter-spacing:normal;
  7036. color:#AAAAAA;
  7037. vertical-align:none;
  7038. text-align:left;
  7039. text-transform:none;
  7040. background-color:transparent;
  7041. border-color:transparent;
  7042. }
  7043. #u64868_input.disabled {
  7044. position:absolute;
  7045. left:0px;
  7046. top:0px;
  7047. width:153px;
  7048. height:23px;
  7049. padding:2px 2px 2px 2px;
  7050. font-family:'ArialMT', 'Arial', sans-serif;
  7051. font-weight:400;
  7052. font-style:normal;
  7053. font-size:14px;
  7054. letter-spacing:normal;
  7055. color:#AAAAAA;
  7056. vertical-align:none;
  7057. text-align:left;
  7058. text-transform:none;
  7059. background-color:transparent;
  7060. border-color:transparent;
  7061. }
  7062. #u64868_div {
  7063. border-width:0px;
  7064. position:absolute;
  7065. left:0px;
  7066. top:0px;
  7067. width:153px;
  7068. height:23px;
  7069. background:inherit;
  7070. background-color:rgba(255, 255, 255, 1);
  7071. border:none;
  7072. border-radius:0px;
  7073. -moz-box-shadow:none;
  7074. -webkit-box-shadow:none;
  7075. box-shadow:none;
  7076. font-size:14px;
  7077. color:#AAAAAA;
  7078. }
  7079. #u64868 {
  7080. border-width:0px;
  7081. position:absolute;
  7082. left:1213px;
  7083. top:103px;
  7084. width:153px;
  7085. height:23px;
  7086. display:flex;
  7087. font-size:14px;
  7088. color:#AAAAAA;
  7089. }
  7090. #u64868 .text {
  7091. position:absolute;
  7092. align-self:flex-start;
  7093. padding:2px 2px 2px 2px;
  7094. box-sizing:border-box;
  7095. width:100%;
  7096. }
  7097. #u64868_div.disabled {
  7098. border-width:0px;
  7099. position:absolute;
  7100. left:0px;
  7101. top:0px;
  7102. width:153px;
  7103. height:23px;
  7104. background:inherit;
  7105. background-color:rgba(240, 240, 240, 1);
  7106. border:none;
  7107. border-radius:0px;
  7108. -moz-box-shadow:none;
  7109. -webkit-box-shadow:none;
  7110. box-shadow:none;
  7111. font-size:14px;
  7112. color:#AAAAAA;
  7113. }
  7114. #u64868.disabled {
  7115. }
  7116. .u64868_input_option {
  7117. font-size:14px;
  7118. }
  7119. #u64869_div {
  7120. border-width:0px;
  7121. position:absolute;
  7122. left:0px;
  7123. top:0px;
  7124. width:443px;
  7125. height:60px;
  7126. background:inherit;
  7127. background-color:rgba(255, 255, 255, 0);
  7128. border:none;
  7129. border-radius:0px;
  7130. -moz-box-shadow:none;
  7131. -webkit-box-shadow:none;
  7132. box-shadow:none;
  7133. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7134. font-weight:400;
  7135. font-style:normal;
  7136. font-size:14px;
  7137. color:#000000;
  7138. }
  7139. #u64869 {
  7140. border-width:0px;
  7141. position:absolute;
  7142. left:1066px;
  7143. top:696px;
  7144. width:443px;
  7145. height:60px;
  7146. display:flex;
  7147. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7148. font-weight:400;
  7149. font-style:normal;
  7150. font-size:14px;
  7151. color:#000000;
  7152. }
  7153. #u64869 .text {
  7154. position:absolute;
  7155. align-self:flex-start;
  7156. padding:0px 0px 0px 0px;
  7157. box-sizing:border-box;
  7158. width:100%;
  7159. }
  7160. #u64869_text {
  7161. border-width:0px;
  7162. white-space:nowrap;
  7163. text-transform:none;
  7164. }
  7165. #u64870_div {
  7166. border-width:0px;
  7167. position:absolute;
  7168. left:0px;
  7169. top:0px;
  7170. width:275px;
  7171. height:60px;
  7172. background:inherit;
  7173. background-color:rgba(255, 255, 255, 0);
  7174. border:none;
  7175. border-radius:0px;
  7176. -moz-box-shadow:none;
  7177. -webkit-box-shadow:none;
  7178. box-shadow:none;
  7179. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7180. font-weight:400;
  7181. font-style:normal;
  7182. font-size:14px;
  7183. color:#000000;
  7184. }
  7185. #u64870 {
  7186. border-width:0px;
  7187. position:absolute;
  7188. left:1066px;
  7189. top:792px;
  7190. width:275px;
  7191. height:60px;
  7192. display:flex;
  7193. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7194. font-weight:400;
  7195. font-style:normal;
  7196. font-size:14px;
  7197. color:#000000;
  7198. }
  7199. #u64870 .text {
  7200. position:absolute;
  7201. align-self:flex-start;
  7202. padding:0px 0px 0px 0px;
  7203. box-sizing:border-box;
  7204. width:100%;
  7205. }
  7206. #u64870_text {
  7207. border-width:0px;
  7208. white-space:nowrap;
  7209. text-transform:none;
  7210. }
  7211. #u64871 {
  7212. border-width:0px;
  7213. position:absolute;
  7214. left:0px;
  7215. top:0px;
  7216. width:0px;
  7217. height:0px;
  7218. }
  7219. #u64872_div {
  7220. border-width:0px;
  7221. position:absolute;
  7222. left:0px;
  7223. top:0px;
  7224. width:160px;
  7225. height:30px;
  7226. background:inherit;
  7227. background-color:rgba(255, 255, 255, 1);
  7228. box-sizing:border-box;
  7229. border-width:1px;
  7230. border-style:solid;
  7231. border-color:rgba(215, 215, 215, 1);
  7232. border-radius:4px;
  7233. -moz-box-shadow:none;
  7234. -webkit-box-shadow:none;
  7235. box-shadow:none;
  7236. font-size:14px;
  7237. }
  7238. #u64872 {
  7239. border-width:0px;
  7240. position:absolute;
  7241. left:357px;
  7242. top:101px;
  7243. width:160px;
  7244. height:30px;
  7245. display:flex;
  7246. font-size:14px;
  7247. }
  7248. #u64872 .text {
  7249. position:absolute;
  7250. align-self:center;
  7251. padding:2px 2px 2px 2px;
  7252. box-sizing:border-box;
  7253. width:100%;
  7254. }
  7255. #u64872_text {
  7256. border-width:0px;
  7257. word-wrap:break-word;
  7258. text-transform:none;
  7259. visibility:hidden;
  7260. }
  7261. #u64873_input {
  7262. position:absolute;
  7263. left:0px;
  7264. top:0px;
  7265. width:153px;
  7266. height:23px;
  7267. padding:2px 2px 2px 2px;
  7268. font-family:'ArialMT', 'Arial', sans-serif;
  7269. font-weight:400;
  7270. font-style:normal;
  7271. font-size:14px;
  7272. letter-spacing:normal;
  7273. color:#AAAAAA;
  7274. vertical-align:none;
  7275. text-align:left;
  7276. text-transform:none;
  7277. background-color:transparent;
  7278. border-color:transparent;
  7279. }
  7280. #u64873_input.disabled {
  7281. position:absolute;
  7282. left:0px;
  7283. top:0px;
  7284. width:153px;
  7285. height:23px;
  7286. padding:2px 2px 2px 2px;
  7287. font-family:'ArialMT', 'Arial', sans-serif;
  7288. font-weight:400;
  7289. font-style:normal;
  7290. font-size:14px;
  7291. letter-spacing:normal;
  7292. color:#AAAAAA;
  7293. vertical-align:none;
  7294. text-align:left;
  7295. text-transform:none;
  7296. background-color:transparent;
  7297. border-color:transparent;
  7298. }
  7299. #u64873_div {
  7300. border-width:0px;
  7301. position:absolute;
  7302. left:0px;
  7303. top:0px;
  7304. width:153px;
  7305. height:23px;
  7306. background:inherit;
  7307. background-color:rgba(255, 255, 255, 1);
  7308. border:none;
  7309. border-radius:0px;
  7310. -moz-box-shadow:none;
  7311. -webkit-box-shadow:none;
  7312. box-shadow:none;
  7313. font-size:14px;
  7314. color:#AAAAAA;
  7315. }
  7316. #u64873 {
  7317. border-width:0px;
  7318. position:absolute;
  7319. left:362px;
  7320. top:103px;
  7321. width:153px;
  7322. height:23px;
  7323. display:flex;
  7324. font-size:14px;
  7325. color:#AAAAAA;
  7326. }
  7327. #u64873 .text {
  7328. position:absolute;
  7329. align-self:flex-start;
  7330. padding:2px 2px 2px 2px;
  7331. box-sizing:border-box;
  7332. width:100%;
  7333. }
  7334. #u64873_div.disabled {
  7335. border-width:0px;
  7336. position:absolute;
  7337. left:0px;
  7338. top:0px;
  7339. width:153px;
  7340. height:23px;
  7341. background:inherit;
  7342. background-color:rgba(240, 240, 240, 1);
  7343. border:none;
  7344. border-radius:0px;
  7345. -moz-box-shadow:none;
  7346. -webkit-box-shadow:none;
  7347. box-shadow:none;
  7348. font-size:14px;
  7349. color:#AAAAAA;
  7350. }
  7351. #u64873.disabled {
  7352. }
  7353. .u64873_input_option {
  7354. font-size:14px;
  7355. }
  7356. #u64874_div {
  7357. border-width:0px;
  7358. position:absolute;
  7359. left:0px;
  7360. top:0px;
  7361. width:561px;
  7362. height:30px;
  7363. background:inherit;
  7364. background-color:rgba(255, 255, 255, 0);
  7365. border:none;
  7366. border-left:0px;
  7367. border-top:0px;
  7368. border-right:0px;
  7369. border-radius:0px;
  7370. border-bottom-right-radius:0px;
  7371. border-bottom-left-radius:0px;
  7372. -moz-box-shadow:none;
  7373. -webkit-box-shadow:none;
  7374. box-shadow:none;
  7375. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7376. font-weight:400;
  7377. font-style:normal;
  7378. font-size:14px;
  7379. color:#D9001B;
  7380. line-height:30px;
  7381. }
  7382. #u64874 {
  7383. border-width:0px;
  7384. position:absolute;
  7385. left:919px;
  7386. top:146px;
  7387. width:561px;
  7388. height:30px;
  7389. display:flex;
  7390. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7391. font-weight:400;
  7392. font-style:normal;
  7393. font-size:14px;
  7394. color:#D9001B;
  7395. line-height:30px;
  7396. }
  7397. #u64874 .text {
  7398. position:absolute;
  7399. align-self:center;
  7400. padding:0px 0px 0px 0px;
  7401. box-sizing:border-box;
  7402. width:100%;
  7403. }
  7404. #u64874_text {
  7405. border-width:0px;
  7406. white-space:nowrap;
  7407. text-transform:none;
  7408. }
  7409. #u64875 {
  7410. border-width:0px;
  7411. position:absolute;
  7412. left:0px;
  7413. top:0px;
  7414. width:0px;
  7415. height:0px;
  7416. }
  7417. #u64876_div {
  7418. border-width:0px;
  7419. position:absolute;
  7420. left:0px;
  7421. top:0px;
  7422. width:160px;
  7423. height:30px;
  7424. background:inherit;
  7425. background-color:rgba(255, 255, 255, 1);
  7426. box-sizing:border-box;
  7427. border-width:1px;
  7428. border-style:solid;
  7429. border-color:rgba(215, 215, 215, 1);
  7430. border-radius:4px;
  7431. -moz-box-shadow:none;
  7432. -webkit-box-shadow:none;
  7433. box-shadow:none;
  7434. font-size:14px;
  7435. }
  7436. #u64876 {
  7437. border-width:0px;
  7438. position:absolute;
  7439. left:527px;
  7440. top:101px;
  7441. width:160px;
  7442. height:30px;
  7443. display:flex;
  7444. font-size:14px;
  7445. }
  7446. #u64876 .text {
  7447. position:absolute;
  7448. align-self:center;
  7449. padding:2px 2px 2px 2px;
  7450. box-sizing:border-box;
  7451. width:100%;
  7452. }
  7453. #u64876_text {
  7454. border-width:0px;
  7455. word-wrap:break-word;
  7456. text-transform:none;
  7457. visibility:hidden;
  7458. }
  7459. #u64877_input {
  7460. position:absolute;
  7461. left:0px;
  7462. top:0px;
  7463. width:153px;
  7464. height:23px;
  7465. padding:2px 2px 2px 2px;
  7466. font-family:'ArialMT', 'Arial', sans-serif;
  7467. font-weight:400;
  7468. font-style:normal;
  7469. font-size:14px;
  7470. letter-spacing:normal;
  7471. color:#AAAAAA;
  7472. vertical-align:none;
  7473. text-align:left;
  7474. text-transform:none;
  7475. background-color:transparent;
  7476. border-color:transparent;
  7477. }
  7478. #u64877_input.disabled {
  7479. position:absolute;
  7480. left:0px;
  7481. top:0px;
  7482. width:153px;
  7483. height:23px;
  7484. padding:2px 2px 2px 2px;
  7485. font-family:'ArialMT', 'Arial', sans-serif;
  7486. font-weight:400;
  7487. font-style:normal;
  7488. font-size:14px;
  7489. letter-spacing:normal;
  7490. color:#AAAAAA;
  7491. vertical-align:none;
  7492. text-align:left;
  7493. text-transform:none;
  7494. background-color:transparent;
  7495. border-color:transparent;
  7496. }
  7497. #u64877_div {
  7498. border-width:0px;
  7499. position:absolute;
  7500. left:0px;
  7501. top:0px;
  7502. width:153px;
  7503. height:23px;
  7504. background:inherit;
  7505. background-color:rgba(255, 255, 255, 1);
  7506. border:none;
  7507. border-radius:0px;
  7508. -moz-box-shadow:none;
  7509. -webkit-box-shadow:none;
  7510. box-shadow:none;
  7511. font-size:14px;
  7512. color:#AAAAAA;
  7513. }
  7514. #u64877 {
  7515. border-width:0px;
  7516. position:absolute;
  7517. left:532px;
  7518. top:103px;
  7519. width:153px;
  7520. height:23px;
  7521. display:flex;
  7522. font-size:14px;
  7523. color:#AAAAAA;
  7524. }
  7525. #u64877 .text {
  7526. position:absolute;
  7527. align-self:flex-start;
  7528. padding:2px 2px 2px 2px;
  7529. box-sizing:border-box;
  7530. width:100%;
  7531. }
  7532. #u64877_div.disabled {
  7533. border-width:0px;
  7534. position:absolute;
  7535. left:0px;
  7536. top:0px;
  7537. width:153px;
  7538. height:23px;
  7539. background:inherit;
  7540. background-color:rgba(240, 240, 240, 1);
  7541. border:none;
  7542. border-radius:0px;
  7543. -moz-box-shadow:none;
  7544. -webkit-box-shadow:none;
  7545. box-shadow:none;
  7546. font-size:14px;
  7547. color:#AAAAAA;
  7548. }
  7549. #u64877.disabled {
  7550. }
  7551. .u64877_input_option {
  7552. font-size:14px;
  7553. }
  7554. #u64878 {
  7555. border-width:0px;
  7556. position:absolute;
  7557. left:0px;
  7558. top:0px;
  7559. width:0px;
  7560. height:0px;
  7561. }
  7562. #u64879_div {
  7563. border-width:0px;
  7564. position:absolute;
  7565. left:0px;
  7566. top:0px;
  7567. width:200px;
  7568. height:1188px;
  7569. background:inherit;
  7570. background-color:rgba(255, 255, 255, 1);
  7571. border:none;
  7572. border-radius:0px;
  7573. -moz-box-shadow:none;
  7574. -webkit-box-shadow:none;
  7575. box-shadow:none;
  7576. }
  7577. #u64879 {
  7578. border-width:0px;
  7579. position:absolute;
  7580. left:120px;
  7581. top:51px;
  7582. width:200px;
  7583. height:1188px;
  7584. display:flex;
  7585. }
  7586. #u64879 .text {
  7587. position:absolute;
  7588. align-self:center;
  7589. padding:2px 2px 2px 2px;
  7590. box-sizing:border-box;
  7591. width:100%;
  7592. }
  7593. #u64879_text {
  7594. border-width:0px;
  7595. word-wrap:break-word;
  7596. text-transform:none;
  7597. visibility:hidden;
  7598. }
  7599. #u64880_div {
  7600. border-width:0px;
  7601. position:absolute;
  7602. left:0px;
  7603. top:0px;
  7604. width:200px;
  7605. height:60px;
  7606. background:inherit;
  7607. background-color:rgba(224, 231, 247, 1);
  7608. border:none;
  7609. border-radius:0px;
  7610. -moz-box-shadow:none;
  7611. -webkit-box-shadow:none;
  7612. box-shadow:none;
  7613. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7614. font-weight:500;
  7615. font-style:normal;
  7616. font-size:18px;
  7617. }
  7618. #u64880 {
  7619. border-width:0px;
  7620. position:absolute;
  7621. left:120px;
  7622. top:51px;
  7623. width:200px;
  7624. height:60px;
  7625. display:flex;
  7626. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7627. font-weight:500;
  7628. font-style:normal;
  7629. font-size:18px;
  7630. }
  7631. #u64880 .text {
  7632. position:absolute;
  7633. align-self:center;
  7634. padding:0px 0px 0px 20px;
  7635. box-sizing:border-box;
  7636. width:100%;
  7637. }
  7638. #u64880_text {
  7639. border-width:0px;
  7640. word-wrap:break-word;
  7641. text-transform:none;
  7642. }
  7643. #u64881_div {
  7644. border-width:0px;
  7645. position:absolute;
  7646. left:0px;
  7647. top:0px;
  7648. width:65px;
  7649. height:22px;
  7650. background:inherit;
  7651. background-color:rgba(255, 255, 255, 0);
  7652. border:none;
  7653. border-radius:0px;
  7654. -moz-box-shadow:none;
  7655. -webkit-box-shadow:none;
  7656. box-shadow:none;
  7657. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7658. font-weight:400;
  7659. font-style:normal;
  7660. font-size:16px;
  7661. }
  7662. #u64881 {
  7663. border-width:0px;
  7664. position:absolute;
  7665. left:147px;
  7666. top:307px;
  7667. width:65px;
  7668. height:22px;
  7669. display:flex;
  7670. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7671. font-weight:400;
  7672. font-style:normal;
  7673. font-size:16px;
  7674. }
  7675. #u64881 .text {
  7676. position:absolute;
  7677. align-self:flex-start;
  7678. padding:0px 0px 0px 0px;
  7679. box-sizing:border-box;
  7680. width:100%;
  7681. }
  7682. #u64881_text {
  7683. border-width:0px;
  7684. white-space:nowrap;
  7685. text-transform:none;
  7686. }
  7687. #u64882_div {
  7688. border-width:0px;
  7689. position:absolute;
  7690. left:0px;
  7691. top:0px;
  7692. width:65px;
  7693. height:22px;
  7694. background:inherit;
  7695. background-color:rgba(255, 255, 255, 0);
  7696. border:none;
  7697. border-radius:0px;
  7698. -moz-box-shadow:none;
  7699. -webkit-box-shadow:none;
  7700. box-shadow:none;
  7701. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7702. font-weight:400;
  7703. font-style:normal;
  7704. font-size:16px;
  7705. }
  7706. #u64882 {
  7707. border-width:0px;
  7708. position:absolute;
  7709. left:147px;
  7710. top:349px;
  7711. width:65px;
  7712. height:22px;
  7713. display:flex;
  7714. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7715. font-weight:400;
  7716. font-style:normal;
  7717. font-size:16px;
  7718. }
  7719. #u64882 .text {
  7720. position:absolute;
  7721. align-self:flex-start;
  7722. padding:0px 0px 0px 0px;
  7723. box-sizing:border-box;
  7724. width:100%;
  7725. }
  7726. #u64882_text {
  7727. border-width:0px;
  7728. white-space:nowrap;
  7729. text-transform:none;
  7730. }
  7731. #u64883_div {
  7732. border-width:0px;
  7733. position:absolute;
  7734. left:0px;
  7735. top:0px;
  7736. width:81px;
  7737. height:22px;
  7738. background:inherit;
  7739. background-color:rgba(255, 255, 255, 0);
  7740. border:none;
  7741. border-radius:0px;
  7742. -moz-box-shadow:none;
  7743. -webkit-box-shadow:none;
  7744. box-shadow:none;
  7745. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7746. font-weight:400;
  7747. font-style:normal;
  7748. font-size:16px;
  7749. }
  7750. #u64883 {
  7751. border-width:0px;
  7752. position:absolute;
  7753. left:147px;
  7754. top:391px;
  7755. width:81px;
  7756. height:22px;
  7757. display:flex;
  7758. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7759. font-weight:400;
  7760. font-style:normal;
  7761. font-size:16px;
  7762. }
  7763. #u64883 .text {
  7764. position:absolute;
  7765. align-self:flex-start;
  7766. padding:0px 0px 0px 0px;
  7767. box-sizing:border-box;
  7768. width:100%;
  7769. }
  7770. #u64883_text {
  7771. border-width:0px;
  7772. white-space:nowrap;
  7773. text-transform:none;
  7774. }
  7775. #u64884_div {
  7776. border-width:0px;
  7777. position:absolute;
  7778. left:0px;
  7779. top:0px;
  7780. width:81px;
  7781. height:22px;
  7782. background:inherit;
  7783. background-color:rgba(255, 255, 255, 0);
  7784. border:none;
  7785. border-radius:0px;
  7786. -moz-box-shadow:none;
  7787. -webkit-box-shadow:none;
  7788. box-shadow:none;
  7789. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7790. font-weight:400;
  7791. font-style:normal;
  7792. font-size:16px;
  7793. }
  7794. #u64884 {
  7795. border-width:0px;
  7796. position:absolute;
  7797. left:147px;
  7798. top:433px;
  7799. width:81px;
  7800. height:22px;
  7801. display:flex;
  7802. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7803. font-weight:400;
  7804. font-style:normal;
  7805. font-size:16px;
  7806. }
  7807. #u64884 .text {
  7808. position:absolute;
  7809. align-self:flex-start;
  7810. padding:0px 0px 0px 0px;
  7811. box-sizing:border-box;
  7812. width:100%;
  7813. }
  7814. #u64884_text {
  7815. border-width:0px;
  7816. white-space:nowrap;
  7817. text-transform:none;
  7818. }
  7819. #u64885_div {
  7820. border-width:0px;
  7821. position:absolute;
  7822. left:0px;
  7823. top:0px;
  7824. width:49px;
  7825. height:17px;
  7826. background:inherit;
  7827. background-color:rgba(255, 255, 255, 0);
  7828. border:none;
  7829. border-radius:0px;
  7830. -moz-box-shadow:none;
  7831. -webkit-box-shadow:none;
  7832. box-shadow:none;
  7833. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7834. font-weight:400;
  7835. font-style:normal;
  7836. font-size:12px;
  7837. color:#AAAAAA;
  7838. }
  7839. #u64885 {
  7840. border-width:0px;
  7841. position:absolute;
  7842. left:147px;
  7843. top:271px;
  7844. width:49px;
  7845. height:17px;
  7846. display:flex;
  7847. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7848. font-weight:400;
  7849. font-style:normal;
  7850. font-size:12px;
  7851. color:#AAAAAA;
  7852. }
  7853. #u64885 .text {
  7854. position:absolute;
  7855. align-self:flex-start;
  7856. padding:0px 0px 0px 0px;
  7857. box-sizing:border-box;
  7858. width:100%;
  7859. }
  7860. #u64885_text {
  7861. border-width:0px;
  7862. white-space:nowrap;
  7863. text-transform:none;
  7864. }
  7865. #u64886_img {
  7866. border-width:0px;
  7867. position:absolute;
  7868. left:0px;
  7869. top:0px;
  7870. width:201px;
  7871. height:2px;
  7872. }
  7873. #u64886 {
  7874. border-width:0px;
  7875. position:absolute;
  7876. left:120px;
  7877. top:559px;
  7878. width:200px;
  7879. height:1px;
  7880. display:flex;
  7881. }
  7882. #u64886 .text {
  7883. position:absolute;
  7884. align-self:center;
  7885. padding:2px 2px 2px 2px;
  7886. box-sizing:border-box;
  7887. width:100%;
  7888. }
  7889. #u64886_text {
  7890. border-width:0px;
  7891. word-wrap:break-word;
  7892. text-transform:none;
  7893. visibility:hidden;
  7894. }
  7895. #u64887_div {
  7896. border-width:0px;
  7897. position:absolute;
  7898. left:0px;
  7899. top:0px;
  7900. width:65px;
  7901. height:22px;
  7902. background:inherit;
  7903. background-color:rgba(255, 255, 255, 0);
  7904. border:none;
  7905. border-radius:0px;
  7906. -moz-box-shadow:none;
  7907. -webkit-box-shadow:none;
  7908. box-shadow:none;
  7909. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7910. font-weight:400;
  7911. font-style:normal;
  7912. font-size:16px;
  7913. }
  7914. #u64887 {
  7915. border-width:0px;
  7916. position:absolute;
  7917. left:147px;
  7918. top:475px;
  7919. width:65px;
  7920. height:22px;
  7921. display:flex;
  7922. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7923. font-weight:400;
  7924. font-style:normal;
  7925. font-size:16px;
  7926. }
  7927. #u64887 .text {
  7928. position:absolute;
  7929. align-self:flex-start;
  7930. padding:0px 0px 0px 0px;
  7931. box-sizing:border-box;
  7932. width:100%;
  7933. }
  7934. #u64887_text {
  7935. border-width:0px;
  7936. white-space:nowrap;
  7937. text-transform:none;
  7938. }
  7939. #u64888_div {
  7940. border-width:0px;
  7941. position:absolute;
  7942. left:0px;
  7943. top:0px;
  7944. width:65px;
  7945. height:22px;
  7946. background:inherit;
  7947. background-color:rgba(255, 255, 255, 0);
  7948. border:none;
  7949. border-radius:0px;
  7950. -moz-box-shadow:none;
  7951. -webkit-box-shadow:none;
  7952. box-shadow:none;
  7953. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7954. font-weight:400;
  7955. font-style:normal;
  7956. font-size:16px;
  7957. }
  7958. #u64888 {
  7959. border-width:0px;
  7960. position:absolute;
  7961. left:147px;
  7962. top:517px;
  7963. width:65px;
  7964. height:22px;
  7965. display:flex;
  7966. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7967. font-weight:400;
  7968. font-style:normal;
  7969. font-size:16px;
  7970. }
  7971. #u64888 .text {
  7972. position:absolute;
  7973. align-self:flex-start;
  7974. padding:0px 0px 0px 0px;
  7975. box-sizing:border-box;
  7976. width:100%;
  7977. }
  7978. #u64888_text {
  7979. border-width:0px;
  7980. white-space:nowrap;
  7981. text-transform:none;
  7982. }
  7983. #u64889_div {
  7984. border-width:0px;
  7985. position:absolute;
  7986. left:0px;
  7987. top:0px;
  7988. width:65px;
  7989. height:22px;
  7990. background:inherit;
  7991. background-color:rgba(255, 255, 255, 0);
  7992. border:none;
  7993. border-radius:0px;
  7994. -moz-box-shadow:none;
  7995. -webkit-box-shadow:none;
  7996. box-shadow:none;
  7997. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7998. font-weight:400;
  7999. font-style:normal;
  8000. font-size:16px;
  8001. }
  8002. #u64889 {
  8003. border-width:0px;
  8004. position:absolute;
  8005. left:147px;
  8006. top:617px;
  8007. width:65px;
  8008. height:22px;
  8009. display:flex;
  8010. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8011. font-weight:400;
  8012. font-style:normal;
  8013. font-size:16px;
  8014. }
  8015. #u64889 .text {
  8016. position:absolute;
  8017. align-self:flex-start;
  8018. padding:0px 0px 0px 0px;
  8019. box-sizing:border-box;
  8020. width:100%;
  8021. }
  8022. #u64889_text {
  8023. border-width:0px;
  8024. white-space:nowrap;
  8025. text-transform:none;
  8026. }
  8027. #u64890_div {
  8028. border-width:0px;
  8029. position:absolute;
  8030. left:0px;
  8031. top:0px;
  8032. width:49px;
  8033. height:17px;
  8034. background:inherit;
  8035. background-color:rgba(255, 255, 255, 0);
  8036. border:none;
  8037. border-radius:0px;
  8038. -moz-box-shadow:none;
  8039. -webkit-box-shadow:none;
  8040. box-shadow:none;
  8041. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8042. font-weight:400;
  8043. font-style:normal;
  8044. font-size:12px;
  8045. color:#AAAAAA;
  8046. }
  8047. #u64890 {
  8048. border-width:0px;
  8049. position:absolute;
  8050. left:147px;
  8051. top:581px;
  8052. width:49px;
  8053. height:17px;
  8054. display:flex;
  8055. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8056. font-weight:400;
  8057. font-style:normal;
  8058. font-size:12px;
  8059. color:#AAAAAA;
  8060. }
  8061. #u64890 .text {
  8062. position:absolute;
  8063. align-self:flex-start;
  8064. padding:0px 0px 0px 0px;
  8065. box-sizing:border-box;
  8066. width:100%;
  8067. }
  8068. #u64890_text {
  8069. border-width:0px;
  8070. white-space:nowrap;
  8071. text-transform:none;
  8072. }
  8073. #u64891_div {
  8074. border-width:0px;
  8075. position:absolute;
  8076. left:0px;
  8077. top:0px;
  8078. width:65px;
  8079. height:22px;
  8080. background:inherit;
  8081. background-color:rgba(255, 255, 255, 0);
  8082. border:none;
  8083. border-radius:0px;
  8084. -moz-box-shadow:none;
  8085. -webkit-box-shadow:none;
  8086. box-shadow:none;
  8087. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8088. font-weight:400;
  8089. font-style:normal;
  8090. font-size:16px;
  8091. }
  8092. #u64891 {
  8093. border-width:0px;
  8094. position:absolute;
  8095. left:147px;
  8096. top:167px;
  8097. width:65px;
  8098. height:22px;
  8099. display:flex;
  8100. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8101. font-weight:400;
  8102. font-style:normal;
  8103. font-size:16px;
  8104. }
  8105. #u64891 .text {
  8106. position:absolute;
  8107. align-self:flex-start;
  8108. padding:0px 0px 0px 0px;
  8109. box-sizing:border-box;
  8110. width:100%;
  8111. }
  8112. #u64891_text {
  8113. border-width:0px;
  8114. white-space:nowrap;
  8115. text-transform:none;
  8116. }
  8117. #u64892_div {
  8118. border-width:0px;
  8119. position:absolute;
  8120. left:0px;
  8121. top:0px;
  8122. width:65px;
  8123. height:22px;
  8124. background:inherit;
  8125. background-color:rgba(255, 255, 255, 0);
  8126. border:none;
  8127. border-radius:0px;
  8128. -moz-box-shadow:none;
  8129. -webkit-box-shadow:none;
  8130. box-shadow:none;
  8131. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8132. font-weight:400;
  8133. font-style:normal;
  8134. font-size:16px;
  8135. }
  8136. #u64892 {
  8137. border-width:0px;
  8138. position:absolute;
  8139. left:147px;
  8140. top:209px;
  8141. width:65px;
  8142. height:22px;
  8143. display:flex;
  8144. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8145. font-weight:400;
  8146. font-style:normal;
  8147. font-size:16px;
  8148. }
  8149. #u64892 .text {
  8150. position:absolute;
  8151. align-self:flex-start;
  8152. padding:0px 0px 0px 0px;
  8153. box-sizing:border-box;
  8154. width:100%;
  8155. }
  8156. #u64892_text {
  8157. border-width:0px;
  8158. white-space:nowrap;
  8159. text-transform:none;
  8160. }
  8161. #u64893_div {
  8162. border-width:0px;
  8163. position:absolute;
  8164. left:0px;
  8165. top:0px;
  8166. width:49px;
  8167. height:17px;
  8168. background:inherit;
  8169. background-color:rgba(255, 255, 255, 0);
  8170. border:none;
  8171. border-radius:0px;
  8172. -moz-box-shadow:none;
  8173. -webkit-box-shadow:none;
  8174. box-shadow:none;
  8175. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8176. font-weight:400;
  8177. font-style:normal;
  8178. font-size:12px;
  8179. color:#AAAAAA;
  8180. }
  8181. #u64893 {
  8182. border-width:0px;
  8183. position:absolute;
  8184. left:147px;
  8185. top:131px;
  8186. width:49px;
  8187. height:17px;
  8188. display:flex;
  8189. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8190. font-weight:400;
  8191. font-style:normal;
  8192. font-size:12px;
  8193. color:#AAAAAA;
  8194. }
  8195. #u64893 .text {
  8196. position:absolute;
  8197. align-self:flex-start;
  8198. padding:0px 0px 0px 0px;
  8199. box-sizing:border-box;
  8200. width:100%;
  8201. }
  8202. #u64893_text {
  8203. border-width:0px;
  8204. white-space:nowrap;
  8205. text-transform:none;
  8206. }
  8207. #u64894_img {
  8208. border-width:0px;
  8209. position:absolute;
  8210. left:0px;
  8211. top:0px;
  8212. width:201px;
  8213. height:2px;
  8214. }
  8215. #u64894 {
  8216. border-width:0px;
  8217. position:absolute;
  8218. left:120px;
  8219. top:250px;
  8220. width:200px;
  8221. height:1px;
  8222. display:flex;
  8223. }
  8224. #u64894 .text {
  8225. position:absolute;
  8226. align-self:center;
  8227. padding:2px 2px 2px 2px;
  8228. box-sizing:border-box;
  8229. width:100%;
  8230. }
  8231. #u64894_text {
  8232. border-width:0px;
  8233. word-wrap:break-word;
  8234. text-transform:none;
  8235. visibility:hidden;
  8236. }