styles.css 125 KB

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