styles.css 132 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1889px;
  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. #u85868_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. #u85868 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u85868 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u85868_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u85869_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. #u85869 {
  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. #u85869 .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. #u85869_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u85870_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. #u85870 {
  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. #u85870 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u85870_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u85871 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u85872_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u85872 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u85872 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u85872_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u85873_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. #u85873 {
  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. #u85873 .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. #u85873_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u85874_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. #u85874 {
  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. #u85874 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u85874_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u85875 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u85876_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. #u85876 {
  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. #u85876 .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. #u85876_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u85877_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u85877 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:75px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u85877 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u85877_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u85878 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u85879_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. #u85879 {
  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. #u85879 .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. #u85879_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u85880_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u85880 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:151px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u85880 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u85880_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u85881 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u85882_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. #u85882 {
  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. #u85882 .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. #u85882_text {
  475. border-width:0px;
  476. white-space:nowrap;
  477. text-transform:none;
  478. }
  479. #u85883_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:14px;
  485. height:14px;
  486. }
  487. #u85883 {
  488. border-width:0px;
  489. position:absolute;
  490. left:20px;
  491. top:403px;
  492. width:14px;
  493. height:14px;
  494. display:flex;
  495. }
  496. #u85883 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u85883_text {
  504. border-width:0px;
  505. word-wrap:break-word;
  506. text-transform:none;
  507. visibility:hidden;
  508. }
  509. #u85884 {
  510. border-width:0px;
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:0px;
  515. height:0px;
  516. }
  517. #u85885_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. #u85885 {
  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. #u85885 .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. #u85885_text {
  559. border-width:0px;
  560. white-space:nowrap;
  561. text-transform:none;
  562. }
  563. #u85886_img {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:14px;
  569. height:14px;
  570. }
  571. #u85886 {
  572. border-width:0px;
  573. position:absolute;
  574. left:20px;
  575. top:113px;
  576. width:14px;
  577. height:14px;
  578. display:flex;
  579. }
  580. #u85886 .text {
  581. position:absolute;
  582. align-self:center;
  583. padding:2px 2px 2px 2px;
  584. box-sizing:border-box;
  585. width:100%;
  586. }
  587. #u85886_text {
  588. border-width:0px;
  589. word-wrap:break-word;
  590. text-transform:none;
  591. visibility:hidden;
  592. }
  593. #u85887 {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:0px;
  599. height:0px;
  600. }
  601. #u85888_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. #u85888 {
  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. #u85888 .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. #u85888_text {
  643. border-width:0px;
  644. white-space:nowrap;
  645. text-transform:none;
  646. }
  647. #u85889_img {
  648. border-width:0px;
  649. position:absolute;
  650. left:0px;
  651. top:0px;
  652. width:14px;
  653. height:14px;
  654. }
  655. #u85889 {
  656. border-width:0px;
  657. position:absolute;
  658. left:20px;
  659. top:445px;
  660. width:14px;
  661. height:14px;
  662. display:flex;
  663. }
  664. #u85889 .text {
  665. position:absolute;
  666. align-self:center;
  667. padding:2px 2px 2px 2px;
  668. box-sizing:border-box;
  669. width:100%;
  670. }
  671. #u85889_text {
  672. border-width:0px;
  673. word-wrap:break-word;
  674. text-transform:none;
  675. visibility:hidden;
  676. }
  677. #u85890 {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:0px;
  683. height:0px;
  684. }
  685. #u85891_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. #u85891 {
  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. #u85891 .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. #u85891_text {
  727. border-width:0px;
  728. white-space:nowrap;
  729. text-transform:none;
  730. }
  731. #u85892_img {
  732. border-width:0px;
  733. position:absolute;
  734. left:0px;
  735. top:0px;
  736. width:14px;
  737. height:14px;
  738. }
  739. #u85892 {
  740. border-width:0px;
  741. position:absolute;
  742. left:20px;
  743. top:319px;
  744. width:14px;
  745. height:14px;
  746. display:flex;
  747. }
  748. #u85892 .text {
  749. position:absolute;
  750. align-self:center;
  751. padding:2px 2px 2px 2px;
  752. box-sizing:border-box;
  753. width:100%;
  754. }
  755. #u85892_text {
  756. border-width:0px;
  757. word-wrap:break-word;
  758. text-transform:none;
  759. visibility:hidden;
  760. }
  761. #u85893 {
  762. border-width:0px;
  763. position:absolute;
  764. left:0px;
  765. top:0px;
  766. width:0px;
  767. height:0px;
  768. }
  769. #u85894_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. #u85894 {
  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. #u85894 .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. #u85894_text {
  811. border-width:0px;
  812. white-space:nowrap;
  813. text-transform:none;
  814. }
  815. #u85895_img {
  816. border-width:0px;
  817. position:absolute;
  818. left:0px;
  819. top:0px;
  820. width:14px;
  821. height:14px;
  822. }
  823. #u85895 {
  824. border-width:0px;
  825. position:absolute;
  826. left:20px;
  827. top:193px;
  828. width:14px;
  829. height:14px;
  830. display:flex;
  831. }
  832. #u85895 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 2px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u85895_text {
  840. border-width:0px;
  841. word-wrap:break-word;
  842. text-transform:none;
  843. visibility:hidden;
  844. }
  845. #u85896 {
  846. border-width:0px;
  847. position:absolute;
  848. left:0px;
  849. top:0px;
  850. width:0px;
  851. height:0px;
  852. }
  853. #u85897_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. #u85897 {
  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. #u85897 .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. #u85897_text {
  895. border-width:0px;
  896. white-space:nowrap;
  897. text-transform:none;
  898. }
  899. #u85898_img {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:14px;
  905. height:14px;
  906. }
  907. #u85898 {
  908. border-width:0px;
  909. position:absolute;
  910. left:20px;
  911. top:361px;
  912. width:14px;
  913. height:14px;
  914. display:flex;
  915. }
  916. #u85898 .text {
  917. position:absolute;
  918. align-self:center;
  919. padding:2px 2px 2px 2px;
  920. box-sizing:border-box;
  921. width:100%;
  922. }
  923. #u85898_text {
  924. border-width:0px;
  925. word-wrap:break-word;
  926. text-transform:none;
  927. visibility:hidden;
  928. }
  929. #u85899 {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:0px;
  935. height:0px;
  936. }
  937. #u85900_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. #u85900 {
  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. #u85900 .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. #u85900_text {
  979. border-width:0px;
  980. white-space:nowrap;
  981. text-transform:none;
  982. }
  983. #u85901_img {
  984. border-width:0px;
  985. position:absolute;
  986. left:0px;
  987. top:0px;
  988. width:14px;
  989. height:14px;
  990. }
  991. #u85901 {
  992. border-width:0px;
  993. position:absolute;
  994. left:20px;
  995. top:487px;
  996. width:14px;
  997. height:14px;
  998. display:flex;
  999. }
  1000. #u85901 .text {
  1001. position:absolute;
  1002. align-self:center;
  1003. padding:2px 2px 2px 2px;
  1004. box-sizing:border-box;
  1005. width:100%;
  1006. }
  1007. #u85901_text {
  1008. border-width:0px;
  1009. word-wrap:break-word;
  1010. text-transform:none;
  1011. visibility:hidden;
  1012. }
  1013. #u85902_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. #u85902 {
  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. #u85902 .text {
  1046. position:absolute;
  1047. align-self:center;
  1048. padding:0px 0px 0px 0px;
  1049. box-sizing:border-box;
  1050. width:100%;
  1051. }
  1052. #u85902_text {
  1053. border-width:0px;
  1054. white-space:nowrap;
  1055. text-transform:none;
  1056. }
  1057. #u85903_img {
  1058. border-width:0px;
  1059. position:absolute;
  1060. left:0px;
  1061. top:0px;
  1062. width:22px;
  1063. height:22px;
  1064. }
  1065. #u85903 {
  1066. border-width:0px;
  1067. position:absolute;
  1068. left:20px;
  1069. top:1144px;
  1070. width:22px;
  1071. height:22px;
  1072. display:flex;
  1073. }
  1074. #u85903 .text {
  1075. position:absolute;
  1076. align-self:center;
  1077. padding:2px 2px 2px 2px;
  1078. box-sizing:border-box;
  1079. width:100%;
  1080. }
  1081. #u85903_text {
  1082. border-width:0px;
  1083. word-wrap:break-word;
  1084. text-transform:none;
  1085. visibility:hidden;
  1086. }
  1087. #u85904_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. #u85904 {
  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. #u85904 .text {
  1120. position:absolute;
  1121. align-self:center;
  1122. padding:0px 0px 0px 0px;
  1123. box-sizing:border-box;
  1124. width:100%;
  1125. }
  1126. #u85904_text {
  1127. border-width:0px;
  1128. white-space:nowrap;
  1129. text-transform:none;
  1130. }
  1131. #u85905_img {
  1132. border-width:0px;
  1133. position:absolute;
  1134. left:0px;
  1135. top:0px;
  1136. width:22px;
  1137. height:22px;
  1138. }
  1139. #u85905 {
  1140. border-width:0px;
  1141. position:absolute;
  1142. left:20px;
  1143. top:1186px;
  1144. width:22px;
  1145. height:22px;
  1146. display:flex;
  1147. }
  1148. #u85905 .text {
  1149. position:absolute;
  1150. align-self:center;
  1151. padding:2px 2px 2px 2px;
  1152. box-sizing:border-box;
  1153. width:100%;
  1154. }
  1155. #u85905_text {
  1156. border-width:0px;
  1157. word-wrap:break-word;
  1158. text-transform:none;
  1159. visibility:hidden;
  1160. }
  1161. #u85906 {
  1162. border-width:0px;
  1163. position:absolute;
  1164. left:0px;
  1165. top:0px;
  1166. width:0px;
  1167. height:0px;
  1168. }
  1169. #u85907_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. #u85907 {
  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. #u85907 .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. #u85907_text {
  1211. border-width:0px;
  1212. white-space:nowrap;
  1213. text-transform:none;
  1214. }
  1215. #u85908_img {
  1216. border-width:0px;
  1217. position:absolute;
  1218. left:0px;
  1219. top:0px;
  1220. width:14px;
  1221. height:14px;
  1222. }
  1223. #u85908 {
  1224. border-width:0px;
  1225. position:absolute;
  1226. left:20px;
  1227. top:235px;
  1228. width:14px;
  1229. height:14px;
  1230. display:flex;
  1231. }
  1232. #u85908 .text {
  1233. position:absolute;
  1234. align-self:center;
  1235. padding:2px 2px 2px 2px;
  1236. box-sizing:border-box;
  1237. width:100%;
  1238. }
  1239. #u85908_text {
  1240. border-width:0px;
  1241. word-wrap:break-word;
  1242. text-transform:none;
  1243. visibility:hidden;
  1244. }
  1245. #u85909 {
  1246. border-width:0px;
  1247. position:absolute;
  1248. left:0px;
  1249. top:0px;
  1250. width:0px;
  1251. height:0px;
  1252. }
  1253. #u85910_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. #u85910 {
  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. #u85910 .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. #u85910_text {
  1295. border-width:0px;
  1296. white-space:nowrap;
  1297. text-transform:none;
  1298. }
  1299. #u85911_img {
  1300. border-width:0px;
  1301. position:absolute;
  1302. left:0px;
  1303. top:0px;
  1304. width:14px;
  1305. height:14px;
  1306. }
  1307. #u85911 {
  1308. border-width:0px;
  1309. position:absolute;
  1310. left:20px;
  1311. top:277px;
  1312. width:14px;
  1313. height:14px;
  1314. display:flex;
  1315. }
  1316. #u85911 .text {
  1317. position:absolute;
  1318. align-self:center;
  1319. padding:2px 2px 2px 2px;
  1320. box-sizing:border-box;
  1321. width:100%;
  1322. }
  1323. #u85911_text {
  1324. border-width:0px;
  1325. word-wrap:break-word;
  1326. text-transform:none;
  1327. visibility:hidden;
  1328. }
  1329. #u85912 {
  1330. border-width:0px;
  1331. position:absolute;
  1332. left:0px;
  1333. top:0px;
  1334. width:0px;
  1335. height:0px;
  1336. }
  1337. #u85913_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. #u85913_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. #u85913_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. #u85913 {
  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. #u85913 .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. #u85913_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. #u85913.disabled {
  1428. }
  1429. .u85913_input_option {
  1430. font-size:14px;
  1431. }
  1432. #u85914_img {
  1433. border-width:0px;
  1434. position:absolute;
  1435. left:0px;
  1436. top:0px;
  1437. width:22px;
  1438. height:22px;
  1439. }
  1440. #u85914 {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:1194px;
  1444. top:14px;
  1445. width:22px;
  1446. height:22px;
  1447. display:flex;
  1448. }
  1449. #u85914 .text {
  1450. position:absolute;
  1451. align-self:center;
  1452. padding:2px 2px 2px 2px;
  1453. box-sizing:border-box;
  1454. width:100%;
  1455. }
  1456. #u85914_text {
  1457. border-width:0px;
  1458. word-wrap:break-word;
  1459. text-transform:none;
  1460. visibility:hidden;
  1461. }
  1462. #u85915_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. #u85915 {
  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. #u85915 .text {
  1497. position:absolute;
  1498. align-self:center;
  1499. padding:0px 0px 0px 0px;
  1500. box-sizing:border-box;
  1501. width:100%;
  1502. }
  1503. #u85915_text {
  1504. border-width:0px;
  1505. word-wrap:break-word;
  1506. text-transform:none;
  1507. }
  1508. #u85916_img {
  1509. border-width:0px;
  1510. position:absolute;
  1511. left:0px;
  1512. top:0px;
  1513. width:2px;
  1514. height:12px;
  1515. }
  1516. #u85916 {
  1517. border-width:0px;
  1518. position:absolute;
  1519. left:1452px;
  1520. top:19px;
  1521. width:1px;
  1522. height:11px;
  1523. display:flex;
  1524. }
  1525. #u85916 .text {
  1526. position:absolute;
  1527. align-self:center;
  1528. padding:2px 2px 2px 2px;
  1529. box-sizing:border-box;
  1530. width:100%;
  1531. }
  1532. #u85916_text {
  1533. border-width:0px;
  1534. word-wrap:break-word;
  1535. text-transform:none;
  1536. visibility:hidden;
  1537. }
  1538. #u85917_div {
  1539. border-width:0px;
  1540. position:absolute;
  1541. left:0px;
  1542. top:0px;
  1543. width:1258px;
  1544. height:1191px;
  1545. background:inherit;
  1546. background-color:rgba(255, 255, 255, 1);
  1547. border:none;
  1548. border-radius:0px;
  1549. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1550. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1551. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1552. color:#1890FF;
  1553. }
  1554. #u85917 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:330px;
  1558. top:50px;
  1559. width:1258px;
  1560. height:1191px;
  1561. display:flex;
  1562. color:#1890FF;
  1563. }
  1564. #u85917 .text {
  1565. position:absolute;
  1566. align-self:center;
  1567. padding:2px 2px 2px 2px;
  1568. box-sizing:border-box;
  1569. width:100%;
  1570. }
  1571. #u85917_text {
  1572. border-width:0px;
  1573. word-wrap:break-word;
  1574. text-transform:none;
  1575. visibility:hidden;
  1576. }
  1577. #u85919 {
  1578. border-width:0px;
  1579. position:absolute;
  1580. left:0px;
  1581. top:0px;
  1582. width:0px;
  1583. height:0px;
  1584. }
  1585. #u85920_img {
  1586. border-width:0px;
  1587. position:absolute;
  1588. left:0px;
  1589. top:0px;
  1590. width:200px;
  1591. height:1191px;
  1592. }
  1593. #u85920 {
  1594. border-width:0px;
  1595. position:absolute;
  1596. left:120px;
  1597. top:50px;
  1598. width:200px;
  1599. height:1191px;
  1600. display:flex;
  1601. }
  1602. #u85920 .text {
  1603. position:absolute;
  1604. align-self:center;
  1605. padding:2px 2px 2px 2px;
  1606. box-sizing:border-box;
  1607. width:100%;
  1608. }
  1609. #u85920_text {
  1610. border-width:0px;
  1611. word-wrap:break-word;
  1612. text-transform:none;
  1613. visibility:hidden;
  1614. }
  1615. #u85921_div {
  1616. border-width:0px;
  1617. position:absolute;
  1618. left:0px;
  1619. top:0px;
  1620. width:200px;
  1621. height:60px;
  1622. background:inherit;
  1623. background-color:rgba(224, 231, 247, 1);
  1624. border:none;
  1625. border-radius:0px;
  1626. -moz-box-shadow:none;
  1627. -webkit-box-shadow:none;
  1628. box-shadow:none;
  1629. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1630. font-weight:500;
  1631. font-style:normal;
  1632. font-size:18px;
  1633. }
  1634. #u85921 {
  1635. border-width:0px;
  1636. position:absolute;
  1637. left:120px;
  1638. top:50px;
  1639. width:200px;
  1640. height:60px;
  1641. display:flex;
  1642. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1643. font-weight:500;
  1644. font-style:normal;
  1645. font-size:18px;
  1646. }
  1647. #u85921 .text {
  1648. position:absolute;
  1649. align-self:center;
  1650. padding:0px 0px 0px 20px;
  1651. box-sizing:border-box;
  1652. width:100%;
  1653. }
  1654. #u85921_text {
  1655. border-width:0px;
  1656. word-wrap:break-word;
  1657. text-transform:none;
  1658. }
  1659. #u85922 {
  1660. border-width:0px;
  1661. position:absolute;
  1662. left:120px;
  1663. top:130px;
  1664. width:200px;
  1665. height:1078px;
  1666. }
  1667. #u85922_state0 {
  1668. border-width:0px;
  1669. position:absolute;
  1670. left:0px;
  1671. top:0px;
  1672. width:200px;
  1673. height:1078px;
  1674. overflow:auto;
  1675. -webkit-overflow-scrolling:touch;
  1676. -ms-overflow-x:hidden;
  1677. overflow-x:hidden;
  1678. background-image:none;
  1679. border:none;
  1680. border-radius:0px;
  1681. -moz-box-shadow:none;
  1682. -webkit-box-shadow:none;
  1683. box-shadow:none;
  1684. }
  1685. #u85922_state0_content {
  1686. border-width:0px;
  1687. position:absolute;
  1688. left:0px;
  1689. top:0px;
  1690. width:1px;
  1691. height:1px;
  1692. }
  1693. #u85923_div {
  1694. border-width:0px;
  1695. position:absolute;
  1696. left:0px;
  1697. top:0px;
  1698. width:97px;
  1699. height:22px;
  1700. background:inherit;
  1701. background-color:rgba(255, 255, 255, 0);
  1702. border:none;
  1703. border-radius:0px;
  1704. -moz-box-shadow:none;
  1705. -webkit-box-shadow:none;
  1706. box-shadow:none;
  1707. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1708. font-weight:400;
  1709. font-style:normal;
  1710. font-size:16px;
  1711. }
  1712. #u85923 {
  1713. border-width:0px;
  1714. position:absolute;
  1715. left:30px;
  1716. top:0px;
  1717. width:97px;
  1718. height:22px;
  1719. display:flex;
  1720. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1721. font-weight:400;
  1722. font-style:normal;
  1723. font-size:16px;
  1724. }
  1725. #u85923 .text {
  1726. position:absolute;
  1727. align-self:flex-start;
  1728. padding:0px 0px 0px 0px;
  1729. box-sizing:border-box;
  1730. width:100%;
  1731. }
  1732. #u85923_text {
  1733. border-width:0px;
  1734. word-wrap:break-word;
  1735. text-transform:none;
  1736. }
  1737. #u85924_div {
  1738. border-width:0px;
  1739. position:absolute;
  1740. left:0px;
  1741. top:0px;
  1742. width:65px;
  1743. height:22px;
  1744. background:inherit;
  1745. background-color:rgba(255, 255, 255, 0);
  1746. border:none;
  1747. border-radius:0px;
  1748. -moz-box-shadow:none;
  1749. -webkit-box-shadow:none;
  1750. box-shadow:none;
  1751. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1752. font-weight:400;
  1753. font-style:normal;
  1754. font-size:16px;
  1755. }
  1756. #u85924 {
  1757. border-width:0px;
  1758. position:absolute;
  1759. left:30px;
  1760. top:42px;
  1761. width:65px;
  1762. height:22px;
  1763. display:flex;
  1764. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1765. font-weight:400;
  1766. font-style:normal;
  1767. font-size:16px;
  1768. }
  1769. #u85924 .text {
  1770. position:absolute;
  1771. align-self:flex-start;
  1772. padding:0px 0px 0px 0px;
  1773. box-sizing:border-box;
  1774. width:100%;
  1775. }
  1776. #u85924_text {
  1777. border-width:0px;
  1778. white-space:nowrap;
  1779. text-transform:none;
  1780. }
  1781. #u85925_div {
  1782. border-width:0px;
  1783. position:absolute;
  1784. left:0px;
  1785. top:0px;
  1786. width:49px;
  1787. height:22px;
  1788. background:inherit;
  1789. background-color:rgba(255, 255, 255, 0);
  1790. border:none;
  1791. border-radius:0px;
  1792. -moz-box-shadow:none;
  1793. -webkit-box-shadow:none;
  1794. box-shadow:none;
  1795. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1796. font-weight:400;
  1797. font-style:normal;
  1798. font-size:16px;
  1799. }
  1800. #u85925 {
  1801. border-width:0px;
  1802. position:absolute;
  1803. left:30px;
  1804. top:145px;
  1805. width:49px;
  1806. height:22px;
  1807. display:flex;
  1808. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1809. font-weight:400;
  1810. font-style:normal;
  1811. font-size:16px;
  1812. }
  1813. #u85925 .text {
  1814. position:absolute;
  1815. align-self:flex-start;
  1816. padding:0px 0px 0px 0px;
  1817. box-sizing:border-box;
  1818. width:100%;
  1819. }
  1820. #u85925_text {
  1821. border-width:0px;
  1822. white-space:nowrap;
  1823. text-transform:none;
  1824. }
  1825. #u85926_div {
  1826. border-width:0px;
  1827. position:absolute;
  1828. left:0px;
  1829. top:0px;
  1830. width:97px;
  1831. height:22px;
  1832. background:inherit;
  1833. background-color:rgba(255, 255, 255, 0);
  1834. border:none;
  1835. border-radius:0px;
  1836. -moz-box-shadow:none;
  1837. -webkit-box-shadow:none;
  1838. box-shadow:none;
  1839. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1840. font-weight:400;
  1841. font-style:normal;
  1842. font-size:16px;
  1843. }
  1844. #u85926 {
  1845. border-width:0px;
  1846. position:absolute;
  1847. left:30px;
  1848. top:187px;
  1849. width:97px;
  1850. height:22px;
  1851. display:flex;
  1852. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1853. font-weight:400;
  1854. font-style:normal;
  1855. font-size:16px;
  1856. }
  1857. #u85926 .text {
  1858. position:absolute;
  1859. align-self:flex-start;
  1860. padding:0px 0px 0px 0px;
  1861. box-sizing:border-box;
  1862. width:100%;
  1863. }
  1864. #u85926_text {
  1865. border-width:0px;
  1866. word-wrap:break-word;
  1867. text-transform:none;
  1868. }
  1869. #u85927_img {
  1870. border-width:0px;
  1871. position:absolute;
  1872. left:0px;
  1873. top:0px;
  1874. width:201px;
  1875. height:2px;
  1876. }
  1877. #u85927 {
  1878. border-width:0px;
  1879. position:absolute;
  1880. left:0px;
  1881. top:84px;
  1882. width:200px;
  1883. height:1px;
  1884. display:flex;
  1885. }
  1886. #u85927 .text {
  1887. position:absolute;
  1888. align-self:center;
  1889. padding:2px 2px 2px 2px;
  1890. box-sizing:border-box;
  1891. width:100%;
  1892. }
  1893. #u85927_text {
  1894. border-width:0px;
  1895. word-wrap:break-word;
  1896. text-transform:none;
  1897. visibility:hidden;
  1898. }
  1899. #u85928_div {
  1900. border-width:0px;
  1901. position:absolute;
  1902. left:0px;
  1903. top:0px;
  1904. width:49px;
  1905. height:17px;
  1906. background:inherit;
  1907. background-color:rgba(255, 255, 255, 0);
  1908. border:none;
  1909. border-radius:0px;
  1910. -moz-box-shadow:none;
  1911. -webkit-box-shadow:none;
  1912. box-shadow:none;
  1913. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1914. font-weight:400;
  1915. font-style:normal;
  1916. font-size:12px;
  1917. color:#AAAAAA;
  1918. }
  1919. #u85928 {
  1920. border-width:0px;
  1921. position:absolute;
  1922. left:30px;
  1923. top:105px;
  1924. width:49px;
  1925. height:17px;
  1926. display:flex;
  1927. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1928. font-weight:400;
  1929. font-style:normal;
  1930. font-size:12px;
  1931. color:#AAAAAA;
  1932. }
  1933. #u85928 .text {
  1934. position:absolute;
  1935. align-self:flex-start;
  1936. padding:0px 0px 0px 0px;
  1937. box-sizing:border-box;
  1938. width:100%;
  1939. }
  1940. #u85928_text {
  1941. border-width:0px;
  1942. white-space:nowrap;
  1943. text-transform:none;
  1944. }
  1945. #u85929_div {
  1946. border-width:0px;
  1947. position:absolute;
  1948. left:0px;
  1949. top:0px;
  1950. width:97px;
  1951. height:22px;
  1952. background:inherit;
  1953. background-color:rgba(255, 255, 255, 0);
  1954. border:none;
  1955. border-radius:0px;
  1956. -moz-box-shadow:none;
  1957. -webkit-box-shadow:none;
  1958. box-shadow:none;
  1959. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1960. font-weight:400;
  1961. font-style:normal;
  1962. font-size:16px;
  1963. }
  1964. #u85929 {
  1965. border-width:0px;
  1966. position:absolute;
  1967. left:30px;
  1968. top:229px;
  1969. width:97px;
  1970. height:22px;
  1971. display:flex;
  1972. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1973. font-weight:400;
  1974. font-style:normal;
  1975. font-size:16px;
  1976. }
  1977. #u85929 .text {
  1978. position:absolute;
  1979. align-self:flex-start;
  1980. padding:0px 0px 0px 0px;
  1981. box-sizing:border-box;
  1982. width:100%;
  1983. }
  1984. #u85929_text {
  1985. border-width:0px;
  1986. word-wrap:break-word;
  1987. text-transform:none;
  1988. }
  1989. #u85930_div {
  1990. border-width:0px;
  1991. position:absolute;
  1992. left:0px;
  1993. top:0px;
  1994. width:65px;
  1995. height:22px;
  1996. background:inherit;
  1997. background-color:rgba(255, 255, 255, 0);
  1998. border:none;
  1999. border-radius:0px;
  2000. -moz-box-shadow:none;
  2001. -webkit-box-shadow:none;
  2002. box-shadow:none;
  2003. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2004. font-weight:400;
  2005. font-style:normal;
  2006. font-size:16px;
  2007. }
  2008. #u85930 {
  2009. border-width:0px;
  2010. position:absolute;
  2011. left:30px;
  2012. top:271px;
  2013. width:65px;
  2014. height:22px;
  2015. display:flex;
  2016. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2017. font-weight:400;
  2018. font-style:normal;
  2019. font-size:16px;
  2020. }
  2021. #u85930 .text {
  2022. position:absolute;
  2023. align-self:flex-start;
  2024. padding:0px 0px 0px 0px;
  2025. box-sizing:border-box;
  2026. width:100%;
  2027. }
  2028. #u85930_text {
  2029. border-width:0px;
  2030. white-space:nowrap;
  2031. text-transform:none;
  2032. }
  2033. #u85931_img {
  2034. border-width:0px;
  2035. position:absolute;
  2036. left:0px;
  2037. top:0px;
  2038. width:201px;
  2039. height:2px;
  2040. }
  2041. #u85931 {
  2042. border-width:0px;
  2043. position:absolute;
  2044. left:0px;
  2045. top:313px;
  2046. width:200px;
  2047. height:1px;
  2048. display:flex;
  2049. }
  2050. #u85931 .text {
  2051. position:absolute;
  2052. align-self:center;
  2053. padding:2px 2px 2px 2px;
  2054. box-sizing:border-box;
  2055. width:100%;
  2056. }
  2057. #u85931_text {
  2058. border-width:0px;
  2059. word-wrap:break-word;
  2060. text-transform:none;
  2061. visibility:hidden;
  2062. }
  2063. #u85932_div {
  2064. border-width:0px;
  2065. position:absolute;
  2066. left:0px;
  2067. top:0px;
  2068. width:65px;
  2069. height:22px;
  2070. background:inherit;
  2071. background-color:rgba(255, 255, 255, 0);
  2072. border:none;
  2073. border-radius:0px;
  2074. -moz-box-shadow:none;
  2075. -webkit-box-shadow:none;
  2076. box-shadow:none;
  2077. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2078. font-weight:400;
  2079. font-style:normal;
  2080. font-size:16px;
  2081. }
  2082. #u85932 {
  2083. border-width:0px;
  2084. position:absolute;
  2085. left:30px;
  2086. top:370px;
  2087. width:65px;
  2088. height:22px;
  2089. display:flex;
  2090. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2091. font-weight:400;
  2092. font-style:normal;
  2093. font-size:16px;
  2094. }
  2095. #u85932 .text {
  2096. position:absolute;
  2097. align-self:flex-start;
  2098. padding:0px 0px 0px 0px;
  2099. box-sizing:border-box;
  2100. width:100%;
  2101. }
  2102. #u85932_text {
  2103. border-width:0px;
  2104. white-space:nowrap;
  2105. text-transform:none;
  2106. }
  2107. #u85933_div {
  2108. border-width:0px;
  2109. position:absolute;
  2110. left:0px;
  2111. top:0px;
  2112. width:49px;
  2113. height:17px;
  2114. background:inherit;
  2115. background-color:rgba(255, 255, 255, 0);
  2116. border:none;
  2117. border-radius:0px;
  2118. -moz-box-shadow:none;
  2119. -webkit-box-shadow:none;
  2120. box-shadow:none;
  2121. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2122. font-weight:400;
  2123. font-style:normal;
  2124. font-size:12px;
  2125. color:#AAAAAA;
  2126. }
  2127. #u85933 {
  2128. border-width:0px;
  2129. position:absolute;
  2130. left:30px;
  2131. top:334px;
  2132. width:49px;
  2133. height:17px;
  2134. display:flex;
  2135. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2136. font-weight:400;
  2137. font-style:normal;
  2138. font-size:12px;
  2139. color:#AAAAAA;
  2140. }
  2141. #u85933 .text {
  2142. position:absolute;
  2143. align-self:flex-start;
  2144. padding:0px 0px 0px 0px;
  2145. box-sizing:border-box;
  2146. width:100%;
  2147. }
  2148. #u85933_text {
  2149. border-width:0px;
  2150. white-space:nowrap;
  2151. text-transform:none;
  2152. }
  2153. #u85934_div {
  2154. border-width:0px;
  2155. position:absolute;
  2156. left:0px;
  2157. top:0px;
  2158. width:65px;
  2159. height:22px;
  2160. background:inherit;
  2161. background-color:rgba(255, 255, 255, 0);
  2162. border:none;
  2163. border-radius:0px;
  2164. -moz-box-shadow:none;
  2165. -webkit-box-shadow:none;
  2166. box-shadow:none;
  2167. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2168. font-weight:400;
  2169. font-style:normal;
  2170. font-size:16px;
  2171. }
  2172. #u85934 {
  2173. border-width:0px;
  2174. position:absolute;
  2175. left:30px;
  2176. top:412px;
  2177. width:65px;
  2178. height:22px;
  2179. display:flex;
  2180. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2181. font-weight:400;
  2182. font-style:normal;
  2183. font-size:16px;
  2184. }
  2185. #u85934 .text {
  2186. position:absolute;
  2187. align-self:flex-start;
  2188. padding:0px 0px 0px 0px;
  2189. box-sizing:border-box;
  2190. width:100%;
  2191. }
  2192. #u85934_text {
  2193. border-width:0px;
  2194. white-space:nowrap;
  2195. text-transform:none;
  2196. }
  2197. #u85935_div {
  2198. border-width:0px;
  2199. position:absolute;
  2200. left:0px;
  2201. top:0px;
  2202. width:65px;
  2203. height:22px;
  2204. background:inherit;
  2205. background-color:rgba(255, 255, 255, 0);
  2206. border:none;
  2207. border-radius:0px;
  2208. -moz-box-shadow:none;
  2209. -webkit-box-shadow:none;
  2210. box-shadow:none;
  2211. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2212. font-weight:400;
  2213. font-style:normal;
  2214. font-size:16px;
  2215. }
  2216. #u85935 {
  2217. border-width:0px;
  2218. position:absolute;
  2219. left:30px;
  2220. top:454px;
  2221. width:65px;
  2222. height:22px;
  2223. display:flex;
  2224. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2225. font-weight:400;
  2226. font-style:normal;
  2227. font-size:16px;
  2228. }
  2229. #u85935 .text {
  2230. position:absolute;
  2231. align-self:flex-start;
  2232. padding:0px 0px 0px 0px;
  2233. box-sizing:border-box;
  2234. width:100%;
  2235. }
  2236. #u85935_text {
  2237. border-width:0px;
  2238. white-space:nowrap;
  2239. text-transform:none;
  2240. }
  2241. #u85936_div {
  2242. border-width:0px;
  2243. position:absolute;
  2244. left:0px;
  2245. top:0px;
  2246. width:65px;
  2247. height:22px;
  2248. background:inherit;
  2249. background-color:rgba(255, 255, 255, 0);
  2250. border:none;
  2251. border-radius:0px;
  2252. -moz-box-shadow:none;
  2253. -webkit-box-shadow:none;
  2254. box-shadow:none;
  2255. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2256. font-weight:400;
  2257. font-style:normal;
  2258. font-size:16px;
  2259. }
  2260. #u85936 {
  2261. border-width:0px;
  2262. position:absolute;
  2263. left:30px;
  2264. top:496px;
  2265. width:65px;
  2266. height:22px;
  2267. display:flex;
  2268. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2269. font-weight:400;
  2270. font-style:normal;
  2271. font-size:16px;
  2272. }
  2273. #u85936 .text {
  2274. position:absolute;
  2275. align-self:flex-start;
  2276. padding:0px 0px 0px 0px;
  2277. box-sizing:border-box;
  2278. width:100%;
  2279. }
  2280. #u85936_text {
  2281. border-width:0px;
  2282. white-space:nowrap;
  2283. text-transform:none;
  2284. }
  2285. #u85937_div {
  2286. border-width:0px;
  2287. position:absolute;
  2288. left:0px;
  2289. top:0px;
  2290. width:65px;
  2291. height:22px;
  2292. background:inherit;
  2293. background-color:rgba(255, 255, 255, 0);
  2294. border:none;
  2295. border-radius:0px;
  2296. -moz-box-shadow:none;
  2297. -webkit-box-shadow:none;
  2298. box-shadow:none;
  2299. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2300. font-weight:400;
  2301. font-style:normal;
  2302. font-size:16px;
  2303. }
  2304. #u85937 {
  2305. border-width:0px;
  2306. position:absolute;
  2307. left:30px;
  2308. top:538px;
  2309. width:65px;
  2310. height:22px;
  2311. display:flex;
  2312. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2313. font-weight:400;
  2314. font-style:normal;
  2315. font-size:16px;
  2316. }
  2317. #u85937 .text {
  2318. position:absolute;
  2319. align-self:flex-start;
  2320. padding:0px 0px 0px 0px;
  2321. box-sizing:border-box;
  2322. width:100%;
  2323. }
  2324. #u85937_text {
  2325. border-width:0px;
  2326. white-space:nowrap;
  2327. text-transform:none;
  2328. }
  2329. #u85938_div {
  2330. border-width:0px;
  2331. position:absolute;
  2332. left:0px;
  2333. top:0px;
  2334. width:65px;
  2335. height:22px;
  2336. background:inherit;
  2337. background-color:rgba(255, 255, 255, 0);
  2338. border:none;
  2339. border-radius:0px;
  2340. -moz-box-shadow:none;
  2341. -webkit-box-shadow:none;
  2342. box-shadow:none;
  2343. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2344. font-weight:400;
  2345. font-style:normal;
  2346. font-size:16px;
  2347. }
  2348. #u85938 {
  2349. border-width:0px;
  2350. position:absolute;
  2351. left:30px;
  2352. top:580px;
  2353. width:65px;
  2354. height:22px;
  2355. display:flex;
  2356. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2357. font-weight:400;
  2358. font-style:normal;
  2359. font-size:16px;
  2360. }
  2361. #u85938 .text {
  2362. position:absolute;
  2363. align-self:flex-start;
  2364. padding:0px 0px 0px 0px;
  2365. box-sizing:border-box;
  2366. width:100%;
  2367. }
  2368. #u85938_text {
  2369. border-width:0px;
  2370. white-space:nowrap;
  2371. text-transform:none;
  2372. }
  2373. #u85939_img {
  2374. border-width:0px;
  2375. position:absolute;
  2376. left:0px;
  2377. top:0px;
  2378. width:201px;
  2379. height:2px;
  2380. }
  2381. #u85939 {
  2382. border-width:0px;
  2383. position:absolute;
  2384. left:0px;
  2385. top:1289px;
  2386. width:200px;
  2387. height:1px;
  2388. display:flex;
  2389. }
  2390. #u85939 .text {
  2391. position:absolute;
  2392. align-self:center;
  2393. padding:2px 2px 2px 2px;
  2394. box-sizing:border-box;
  2395. width:100%;
  2396. }
  2397. #u85939_text {
  2398. border-width:0px;
  2399. word-wrap:break-word;
  2400. text-transform:none;
  2401. visibility:hidden;
  2402. }
  2403. #u85940_div {
  2404. border-width:0px;
  2405. position:absolute;
  2406. left:0px;
  2407. top:0px;
  2408. width:65px;
  2409. height:22px;
  2410. background:inherit;
  2411. background-color:rgba(255, 255, 255, 0);
  2412. border:none;
  2413. border-radius:0px;
  2414. -moz-box-shadow:none;
  2415. -webkit-box-shadow:none;
  2416. box-shadow:none;
  2417. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2418. font-weight:400;
  2419. font-style:normal;
  2420. font-size:16px;
  2421. }
  2422. #u85940 {
  2423. border-width:0px;
  2424. position:absolute;
  2425. left:30px;
  2426. top:1346px;
  2427. width:65px;
  2428. height:22px;
  2429. display:flex;
  2430. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2431. font-weight:400;
  2432. font-style:normal;
  2433. font-size:16px;
  2434. }
  2435. #u85940 .text {
  2436. position:absolute;
  2437. align-self:flex-start;
  2438. padding:0px 0px 0px 0px;
  2439. box-sizing:border-box;
  2440. width:100%;
  2441. }
  2442. #u85940_text {
  2443. border-width:0px;
  2444. white-space:nowrap;
  2445. text-transform:none;
  2446. }
  2447. #u85941_div {
  2448. border-width:0px;
  2449. position:absolute;
  2450. left:0px;
  2451. top:0px;
  2452. width:49px;
  2453. height:17px;
  2454. background:inherit;
  2455. background-color:rgba(255, 255, 255, 0);
  2456. border:none;
  2457. border-radius:0px;
  2458. -moz-box-shadow:none;
  2459. -webkit-box-shadow:none;
  2460. box-shadow:none;
  2461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2462. font-weight:400;
  2463. font-style:normal;
  2464. font-size:12px;
  2465. color:#AAAAAA;
  2466. }
  2467. #u85941 {
  2468. border-width:0px;
  2469. position:absolute;
  2470. left:30px;
  2471. top:1310px;
  2472. width:49px;
  2473. height:17px;
  2474. display:flex;
  2475. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2476. font-weight:400;
  2477. font-style:normal;
  2478. font-size:12px;
  2479. color:#AAAAAA;
  2480. }
  2481. #u85941 .text {
  2482. position:absolute;
  2483. align-self:flex-start;
  2484. padding:0px 0px 0px 0px;
  2485. box-sizing:border-box;
  2486. width:100%;
  2487. }
  2488. #u85941_text {
  2489. border-width:0px;
  2490. white-space:nowrap;
  2491. text-transform:none;
  2492. }
  2493. #u85942_div {
  2494. border-width:0px;
  2495. position:absolute;
  2496. left:0px;
  2497. top:0px;
  2498. width:65px;
  2499. height:22px;
  2500. background:inherit;
  2501. background-color:rgba(255, 255, 255, 0);
  2502. border:none;
  2503. border-radius:0px;
  2504. -moz-box-shadow:none;
  2505. -webkit-box-shadow:none;
  2506. box-shadow:none;
  2507. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2508. font-weight:400;
  2509. font-style:normal;
  2510. font-size:16px;
  2511. }
  2512. #u85942 {
  2513. border-width:0px;
  2514. position:absolute;
  2515. left:30px;
  2516. top:1388px;
  2517. width:65px;
  2518. height:22px;
  2519. display:flex;
  2520. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2521. font-weight:400;
  2522. font-style:normal;
  2523. font-size:16px;
  2524. }
  2525. #u85942 .text {
  2526. position:absolute;
  2527. align-self:flex-start;
  2528. padding:0px 0px 0px 0px;
  2529. box-sizing:border-box;
  2530. width:100%;
  2531. }
  2532. #u85942_text {
  2533. border-width:0px;
  2534. white-space:nowrap;
  2535. text-transform:none;
  2536. }
  2537. #u85943_div {
  2538. border-width:0px;
  2539. position:absolute;
  2540. left:0px;
  2541. top:0px;
  2542. width:65px;
  2543. height:22px;
  2544. background:inherit;
  2545. background-color:rgba(255, 255, 255, 0);
  2546. border:none;
  2547. border-radius:0px;
  2548. -moz-box-shadow:none;
  2549. -webkit-box-shadow:none;
  2550. box-shadow:none;
  2551. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2552. font-weight:400;
  2553. font-style:normal;
  2554. font-size:16px;
  2555. }
  2556. #u85943 {
  2557. border-width:0px;
  2558. position:absolute;
  2559. left:30px;
  2560. top:1472px;
  2561. width:65px;
  2562. height:22px;
  2563. display:flex;
  2564. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2565. font-weight:400;
  2566. font-style:normal;
  2567. font-size:16px;
  2568. }
  2569. #u85943 .text {
  2570. position:absolute;
  2571. align-self:flex-start;
  2572. padding:0px 0px 0px 0px;
  2573. box-sizing:border-box;
  2574. width:100%;
  2575. }
  2576. #u85943_text {
  2577. border-width:0px;
  2578. white-space:nowrap;
  2579. text-transform:none;
  2580. }
  2581. #u85944_img {
  2582. border-width:0px;
  2583. position:absolute;
  2584. left:0px;
  2585. top:0px;
  2586. width:201px;
  2587. height:2px;
  2588. }
  2589. #u85944 {
  2590. border-width:0px;
  2591. position:absolute;
  2592. left:0px;
  2593. top:1514px;
  2594. width:200px;
  2595. height:1px;
  2596. display:flex;
  2597. }
  2598. #u85944 .text {
  2599. position:absolute;
  2600. align-self:center;
  2601. padding:2px 2px 2px 2px;
  2602. box-sizing:border-box;
  2603. width:100%;
  2604. }
  2605. #u85944_text {
  2606. border-width:0px;
  2607. word-wrap:break-word;
  2608. text-transform:none;
  2609. visibility:hidden;
  2610. }
  2611. #u85945_div {
  2612. border-width:0px;
  2613. position:absolute;
  2614. left:0px;
  2615. top:0px;
  2616. width:49px;
  2617. height:22px;
  2618. background:inherit;
  2619. background-color:rgba(255, 255, 255, 0);
  2620. border:none;
  2621. border-radius:0px;
  2622. -moz-box-shadow:none;
  2623. -webkit-box-shadow:none;
  2624. box-shadow:none;
  2625. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2626. font-weight:400;
  2627. font-style:normal;
  2628. font-size:16px;
  2629. }
  2630. #u85945 {
  2631. border-width:0px;
  2632. position:absolute;
  2633. left:30px;
  2634. top:1571px;
  2635. width:49px;
  2636. height:22px;
  2637. display:flex;
  2638. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2639. font-weight:400;
  2640. font-style:normal;
  2641. font-size:16px;
  2642. }
  2643. #u85945 .text {
  2644. position:absolute;
  2645. align-self:flex-start;
  2646. padding:0px 0px 0px 0px;
  2647. box-sizing:border-box;
  2648. width:100%;
  2649. }
  2650. #u85945_text {
  2651. border-width:0px;
  2652. white-space:nowrap;
  2653. text-transform:none;
  2654. }
  2655. #u85946_div {
  2656. border-width:0px;
  2657. position:absolute;
  2658. left:0px;
  2659. top:0px;
  2660. width:49px;
  2661. height:17px;
  2662. background:inherit;
  2663. background-color:rgba(255, 255, 255, 0);
  2664. border:none;
  2665. border-radius:0px;
  2666. -moz-box-shadow:none;
  2667. -webkit-box-shadow:none;
  2668. box-shadow:none;
  2669. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2670. font-weight:400;
  2671. font-style:normal;
  2672. font-size:12px;
  2673. color:#AAAAAA;
  2674. }
  2675. #u85946 {
  2676. border-width:0px;
  2677. position:absolute;
  2678. left:30px;
  2679. top:1535px;
  2680. width:49px;
  2681. height:17px;
  2682. display:flex;
  2683. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2684. font-weight:400;
  2685. font-style:normal;
  2686. font-size:12px;
  2687. color:#AAAAAA;
  2688. }
  2689. #u85946 .text {
  2690. position:absolute;
  2691. align-self:flex-start;
  2692. padding:0px 0px 0px 0px;
  2693. box-sizing:border-box;
  2694. width:100%;
  2695. }
  2696. #u85946_text {
  2697. border-width:0px;
  2698. white-space:nowrap;
  2699. text-transform:none;
  2700. }
  2701. #u85947_div {
  2702. border-width:0px;
  2703. position:absolute;
  2704. left:0px;
  2705. top:0px;
  2706. width:49px;
  2707. height:22px;
  2708. background:inherit;
  2709. background-color:rgba(255, 255, 255, 0);
  2710. border:none;
  2711. border-radius:0px;
  2712. -moz-box-shadow:none;
  2713. -webkit-box-shadow:none;
  2714. box-shadow:none;
  2715. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2716. font-weight:400;
  2717. font-style:normal;
  2718. font-size:16px;
  2719. }
  2720. #u85947 {
  2721. border-width:0px;
  2722. position:absolute;
  2723. left:30px;
  2724. top:1613px;
  2725. width:49px;
  2726. height:22px;
  2727. display:flex;
  2728. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2729. font-weight:400;
  2730. font-style:normal;
  2731. font-size:16px;
  2732. }
  2733. #u85947 .text {
  2734. position:absolute;
  2735. align-self:flex-start;
  2736. padding:0px 0px 0px 0px;
  2737. box-sizing:border-box;
  2738. width:100%;
  2739. }
  2740. #u85947_text {
  2741. border-width:0px;
  2742. white-space:nowrap;
  2743. text-transform:none;
  2744. }
  2745. #u85948_div {
  2746. border-width:0px;
  2747. position:absolute;
  2748. left:0px;
  2749. top:0px;
  2750. width:65px;
  2751. height:22px;
  2752. background:inherit;
  2753. background-color:rgba(255, 255, 255, 0);
  2754. border:none;
  2755. border-radius:0px;
  2756. -moz-box-shadow:none;
  2757. -webkit-box-shadow:none;
  2758. box-shadow:none;
  2759. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2760. font-weight:400;
  2761. font-style:normal;
  2762. font-size:16px;
  2763. }
  2764. #u85948 {
  2765. border-width:0px;
  2766. position:absolute;
  2767. left:30px;
  2768. top:1655px;
  2769. width:65px;
  2770. height:22px;
  2771. display:flex;
  2772. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2773. font-weight:400;
  2774. font-style:normal;
  2775. font-size:16px;
  2776. }
  2777. #u85948 .text {
  2778. position:absolute;
  2779. align-self:flex-start;
  2780. padding:0px 0px 0px 0px;
  2781. box-sizing:border-box;
  2782. width:100%;
  2783. }
  2784. #u85948_text {
  2785. border-width:0px;
  2786. white-space:nowrap;
  2787. text-transform:none;
  2788. }
  2789. #u85949_img {
  2790. border-width:0px;
  2791. position:absolute;
  2792. left:0px;
  2793. top:0px;
  2794. width:201px;
  2795. height:2px;
  2796. }
  2797. #u85949 {
  2798. border-width:0px;
  2799. position:absolute;
  2800. left:0px;
  2801. top:1697px;
  2802. width:200px;
  2803. height:1px;
  2804. display:flex;
  2805. }
  2806. #u85949 .text {
  2807. position:absolute;
  2808. align-self:center;
  2809. padding:2px 2px 2px 2px;
  2810. box-sizing:border-box;
  2811. width:100%;
  2812. }
  2813. #u85949_text {
  2814. border-width:0px;
  2815. word-wrap:break-word;
  2816. text-transform:none;
  2817. visibility:hidden;
  2818. }
  2819. #u85950_div {
  2820. border-width:0px;
  2821. position:absolute;
  2822. left:0px;
  2823. top:0px;
  2824. width:81px;
  2825. height:22px;
  2826. background:inherit;
  2827. background-color:rgba(255, 255, 255, 0);
  2828. border:none;
  2829. border-radius:0px;
  2830. -moz-box-shadow:none;
  2831. -webkit-box-shadow:none;
  2832. box-shadow:none;
  2833. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2834. font-weight:400;
  2835. font-style:normal;
  2836. font-size:16px;
  2837. }
  2838. #u85950 {
  2839. border-width:0px;
  2840. position:absolute;
  2841. left:30px;
  2842. top:1754px;
  2843. width:81px;
  2844. height:22px;
  2845. display:flex;
  2846. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2847. font-weight:400;
  2848. font-style:normal;
  2849. font-size:16px;
  2850. }
  2851. #u85950 .text {
  2852. position:absolute;
  2853. align-self:flex-start;
  2854. padding:0px 0px 0px 0px;
  2855. box-sizing:border-box;
  2856. width:100%;
  2857. }
  2858. #u85950_text {
  2859. border-width:0px;
  2860. white-space:nowrap;
  2861. text-transform:none;
  2862. }
  2863. #u85951_div {
  2864. border-width:0px;
  2865. position:absolute;
  2866. left:0px;
  2867. top:0px;
  2868. width:49px;
  2869. height:17px;
  2870. background:inherit;
  2871. background-color:rgba(255, 255, 255, 0);
  2872. border:none;
  2873. border-radius:0px;
  2874. -moz-box-shadow:none;
  2875. -webkit-box-shadow:none;
  2876. box-shadow:none;
  2877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2878. font-weight:400;
  2879. font-style:normal;
  2880. font-size:12px;
  2881. color:#AAAAAA;
  2882. }
  2883. #u85951 {
  2884. border-width:0px;
  2885. position:absolute;
  2886. left:30px;
  2887. top:1718px;
  2888. width:49px;
  2889. height:17px;
  2890. display:flex;
  2891. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2892. font-weight:400;
  2893. font-style:normal;
  2894. font-size:12px;
  2895. color:#AAAAAA;
  2896. }
  2897. #u85951 .text {
  2898. position:absolute;
  2899. align-self:flex-start;
  2900. padding:0px 0px 0px 0px;
  2901. box-sizing:border-box;
  2902. width:100%;
  2903. }
  2904. #u85951_text {
  2905. border-width:0px;
  2906. white-space:nowrap;
  2907. text-transform:none;
  2908. }
  2909. #u85952_div {
  2910. border-width:0px;
  2911. position:absolute;
  2912. left:0px;
  2913. top:0px;
  2914. width:81px;
  2915. height:22px;
  2916. background:inherit;
  2917. background-color:rgba(255, 255, 255, 0);
  2918. border:none;
  2919. border-radius:0px;
  2920. -moz-box-shadow:none;
  2921. -webkit-box-shadow:none;
  2922. box-shadow:none;
  2923. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2924. font-weight:400;
  2925. font-style:normal;
  2926. font-size:16px;
  2927. }
  2928. #u85952 {
  2929. border-width:0px;
  2930. position:absolute;
  2931. left:30px;
  2932. top:1796px;
  2933. width:81px;
  2934. height:22px;
  2935. display:flex;
  2936. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2937. font-weight:400;
  2938. font-style:normal;
  2939. font-size:16px;
  2940. }
  2941. #u85952 .text {
  2942. position:absolute;
  2943. align-self:flex-start;
  2944. padding:0px 0px 0px 0px;
  2945. box-sizing:border-box;
  2946. width:100%;
  2947. }
  2948. #u85952_text {
  2949. border-width:0px;
  2950. white-space:nowrap;
  2951. text-transform:none;
  2952. }
  2953. #u85953_div {
  2954. border-width:0px;
  2955. position:absolute;
  2956. left:0px;
  2957. top:0px;
  2958. width:81px;
  2959. height:22px;
  2960. background:inherit;
  2961. background-color:rgba(255, 255, 255, 0);
  2962. border:none;
  2963. border-radius:0px;
  2964. -moz-box-shadow:none;
  2965. -webkit-box-shadow:none;
  2966. box-shadow:none;
  2967. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2968. font-weight:400;
  2969. font-style:normal;
  2970. font-size:16px;
  2971. }
  2972. #u85953 {
  2973. border-width:0px;
  2974. position:absolute;
  2975. left:30px;
  2976. top:1838px;
  2977. width:81px;
  2978. height:22px;
  2979. display:flex;
  2980. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2981. font-weight:400;
  2982. font-style:normal;
  2983. font-size:16px;
  2984. }
  2985. #u85953 .text {
  2986. position:absolute;
  2987. align-self:flex-start;
  2988. padding:0px 0px 0px 0px;
  2989. box-sizing:border-box;
  2990. width:100%;
  2991. }
  2992. #u85953_text {
  2993. border-width:0px;
  2994. white-space:nowrap;
  2995. text-transform:none;
  2996. }
  2997. #u85954_div {
  2998. border-width:0px;
  2999. position:absolute;
  3000. left:0px;
  3001. top:0px;
  3002. width:65px;
  3003. height:22px;
  3004. background:inherit;
  3005. background-color:rgba(255, 255, 255, 0);
  3006. border:none;
  3007. border-radius:0px;
  3008. -moz-box-shadow:none;
  3009. -webkit-box-shadow:none;
  3010. box-shadow:none;
  3011. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3012. font-weight:400;
  3013. font-style:normal;
  3014. font-size:16px;
  3015. }
  3016. #u85954 {
  3017. border-width:0px;
  3018. position:absolute;
  3019. left:30px;
  3020. top:1430px;
  3021. width:65px;
  3022. height:22px;
  3023. display:flex;
  3024. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3025. font-weight:400;
  3026. font-style:normal;
  3027. font-size:16px;
  3028. }
  3029. #u85954 .text {
  3030. position:absolute;
  3031. align-self:flex-start;
  3032. padding:0px 0px 0px 0px;
  3033. box-sizing:border-box;
  3034. width:100%;
  3035. }
  3036. #u85954_text {
  3037. border-width:0px;
  3038. white-space:nowrap;
  3039. text-transform:none;
  3040. }
  3041. #u85955_img {
  3042. border-width:0px;
  3043. position:absolute;
  3044. left:0px;
  3045. top:0px;
  3046. width:201px;
  3047. height:2px;
  3048. }
  3049. #u85955 {
  3050. border-width:0px;
  3051. position:absolute;
  3052. left:0px;
  3053. top:669px;
  3054. width:200px;
  3055. height:1px;
  3056. display:flex;
  3057. }
  3058. #u85955 .text {
  3059. position:absolute;
  3060. align-self:center;
  3061. padding:2px 2px 2px 2px;
  3062. box-sizing:border-box;
  3063. width:100%;
  3064. }
  3065. #u85955_text {
  3066. border-width:0px;
  3067. word-wrap:break-word;
  3068. text-transform:none;
  3069. visibility:hidden;
  3070. }
  3071. #u85956_div {
  3072. border-width:0px;
  3073. position:absolute;
  3074. left:0px;
  3075. top:0px;
  3076. width:65px;
  3077. height:22px;
  3078. background:inherit;
  3079. background-color:rgba(255, 255, 255, 0);
  3080. border:none;
  3081. border-radius:0px;
  3082. -moz-box-shadow:none;
  3083. -webkit-box-shadow:none;
  3084. box-shadow:none;
  3085. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3086. font-weight:400;
  3087. font-style:normal;
  3088. font-size:16px;
  3089. }
  3090. #u85956 {
  3091. border-width:0px;
  3092. position:absolute;
  3093. left:30px;
  3094. top:726px;
  3095. width:65px;
  3096. height:22px;
  3097. display:flex;
  3098. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3099. font-weight:400;
  3100. font-style:normal;
  3101. font-size:16px;
  3102. }
  3103. #u85956 .text {
  3104. position:absolute;
  3105. align-self:flex-start;
  3106. padding:0px 0px 0px 0px;
  3107. box-sizing:border-box;
  3108. width:100%;
  3109. }
  3110. #u85956_text {
  3111. border-width:0px;
  3112. white-space:nowrap;
  3113. text-transform:none;
  3114. }
  3115. #u85957_div {
  3116. border-width:0px;
  3117. position:absolute;
  3118. left:0px;
  3119. top:0px;
  3120. width:49px;
  3121. height:17px;
  3122. background:inherit;
  3123. background-color:rgba(255, 255, 255, 0);
  3124. border:none;
  3125. border-radius:0px;
  3126. -moz-box-shadow:none;
  3127. -webkit-box-shadow:none;
  3128. box-shadow:none;
  3129. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3130. font-weight:400;
  3131. font-style:normal;
  3132. font-size:12px;
  3133. color:#AAAAAA;
  3134. }
  3135. #u85957 {
  3136. border-width:0px;
  3137. position:absolute;
  3138. left:30px;
  3139. top:690px;
  3140. width:49px;
  3141. height:17px;
  3142. display:flex;
  3143. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3144. font-weight:400;
  3145. font-style:normal;
  3146. font-size:12px;
  3147. color:#AAAAAA;
  3148. }
  3149. #u85957 .text {
  3150. position:absolute;
  3151. align-self:flex-start;
  3152. padding:0px 0px 0px 0px;
  3153. box-sizing:border-box;
  3154. width:100%;
  3155. }
  3156. #u85957_text {
  3157. border-width:0px;
  3158. white-space:nowrap;
  3159. text-transform:none;
  3160. }
  3161. #u85958_div {
  3162. border-width:0px;
  3163. position:absolute;
  3164. left:0px;
  3165. top:0px;
  3166. width:65px;
  3167. height:22px;
  3168. background:inherit;
  3169. background-color:rgba(255, 255, 255, 0);
  3170. border:none;
  3171. border-radius:0px;
  3172. -moz-box-shadow:none;
  3173. -webkit-box-shadow:none;
  3174. box-shadow:none;
  3175. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3176. font-weight:400;
  3177. font-style:normal;
  3178. font-size:16px;
  3179. }
  3180. #u85958 {
  3181. border-width:0px;
  3182. position:absolute;
  3183. left:30px;
  3184. top:768px;
  3185. width:65px;
  3186. height:22px;
  3187. display:flex;
  3188. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3189. font-weight:400;
  3190. font-style:normal;
  3191. font-size:16px;
  3192. }
  3193. #u85958 .text {
  3194. position:absolute;
  3195. align-self:flex-start;
  3196. padding:0px 0px 0px 0px;
  3197. box-sizing:border-box;
  3198. width:100%;
  3199. }
  3200. #u85958_text {
  3201. border-width:0px;
  3202. white-space:nowrap;
  3203. text-transform:none;
  3204. }
  3205. #u85959_div {
  3206. border-width:0px;
  3207. position:absolute;
  3208. left:0px;
  3209. top:0px;
  3210. width:65px;
  3211. height:22px;
  3212. background:inherit;
  3213. background-color:rgba(255, 255, 255, 0);
  3214. border:none;
  3215. border-radius:0px;
  3216. -moz-box-shadow:none;
  3217. -webkit-box-shadow:none;
  3218. box-shadow:none;
  3219. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3220. font-weight:400;
  3221. font-style:normal;
  3222. font-size:16px;
  3223. }
  3224. #u85959 {
  3225. border-width:0px;
  3226. position:absolute;
  3227. left:30px;
  3228. top:852px;
  3229. width:65px;
  3230. height:22px;
  3231. display:flex;
  3232. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3233. font-weight:400;
  3234. font-style:normal;
  3235. font-size:16px;
  3236. }
  3237. #u85959 .text {
  3238. position:absolute;
  3239. align-self:flex-start;
  3240. padding:0px 0px 0px 0px;
  3241. box-sizing:border-box;
  3242. width:100%;
  3243. }
  3244. #u85959_text {
  3245. border-width:0px;
  3246. white-space:nowrap;
  3247. text-transform:none;
  3248. }
  3249. #u85960_div {
  3250. border-width:0px;
  3251. position:absolute;
  3252. left:0px;
  3253. top:0px;
  3254. width:65px;
  3255. height:22px;
  3256. background:inherit;
  3257. background-color:rgba(255, 255, 255, 0);
  3258. border:none;
  3259. border-radius:0px;
  3260. -moz-box-shadow:none;
  3261. -webkit-box-shadow:none;
  3262. box-shadow:none;
  3263. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3264. font-weight:400;
  3265. font-style:normal;
  3266. font-size:16px;
  3267. }
  3268. #u85960 {
  3269. border-width:0px;
  3270. position:absolute;
  3271. left:30px;
  3272. top:810px;
  3273. width:65px;
  3274. height:22px;
  3275. display:flex;
  3276. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3277. font-weight:400;
  3278. font-style:normal;
  3279. font-size:16px;
  3280. }
  3281. #u85960 .text {
  3282. position:absolute;
  3283. align-self:flex-start;
  3284. padding:0px 0px 0px 0px;
  3285. box-sizing:border-box;
  3286. width:100%;
  3287. }
  3288. #u85960_text {
  3289. border-width:0px;
  3290. white-space:nowrap;
  3291. text-transform:none;
  3292. }
  3293. #u85961_div {
  3294. border-width:0px;
  3295. position:absolute;
  3296. left:0px;
  3297. top:0px;
  3298. width:65px;
  3299. height:22px;
  3300. background:inherit;
  3301. background-color:rgba(255, 255, 255, 0);
  3302. border:none;
  3303. border-radius:0px;
  3304. -moz-box-shadow:none;
  3305. -webkit-box-shadow:none;
  3306. box-shadow:none;
  3307. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3308. font-weight:400;
  3309. font-style:normal;
  3310. font-size:16px;
  3311. }
  3312. #u85961 {
  3313. border-width:0px;
  3314. position:absolute;
  3315. left:30px;
  3316. top:894px;
  3317. width:65px;
  3318. height:22px;
  3319. display:flex;
  3320. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3321. font-weight:400;
  3322. font-style:normal;
  3323. font-size:16px;
  3324. }
  3325. #u85961 .text {
  3326. position:absolute;
  3327. align-self:flex-start;
  3328. padding:0px 0px 0px 0px;
  3329. box-sizing:border-box;
  3330. width:100%;
  3331. }
  3332. #u85961_text {
  3333. border-width:0px;
  3334. white-space:nowrap;
  3335. text-transform:none;
  3336. }
  3337. #u85962_div {
  3338. border-width:0px;
  3339. position:absolute;
  3340. left:0px;
  3341. top:0px;
  3342. width:65px;
  3343. height:22px;
  3344. background:inherit;
  3345. background-color:rgba(255, 255, 255, 0);
  3346. border:none;
  3347. border-radius:0px;
  3348. -moz-box-shadow:none;
  3349. -webkit-box-shadow:none;
  3350. box-shadow:none;
  3351. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3352. font-weight:400;
  3353. font-style:normal;
  3354. font-size:16px;
  3355. }
  3356. #u85962 {
  3357. border-width:0px;
  3358. position:absolute;
  3359. left:30px;
  3360. top:936px;
  3361. width:65px;
  3362. height:22px;
  3363. display:flex;
  3364. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3365. font-weight:400;
  3366. font-style:normal;
  3367. font-size:16px;
  3368. }
  3369. #u85962 .text {
  3370. position:absolute;
  3371. align-self:flex-start;
  3372. padding:0px 0px 0px 0px;
  3373. box-sizing:border-box;
  3374. width:100%;
  3375. }
  3376. #u85962_text {
  3377. border-width:0px;
  3378. white-space:nowrap;
  3379. text-transform:none;
  3380. }
  3381. #u85963_img {
  3382. border-width:0px;
  3383. position:absolute;
  3384. left:0px;
  3385. top:0px;
  3386. width:201px;
  3387. height:2px;
  3388. }
  3389. #u85963 {
  3390. border-width:0px;
  3391. position:absolute;
  3392. left:0px;
  3393. top:1018px;
  3394. width:200px;
  3395. height:1px;
  3396. display:flex;
  3397. }
  3398. #u85963 .text {
  3399. position:absolute;
  3400. align-self:center;
  3401. padding:2px 2px 2px 2px;
  3402. box-sizing:border-box;
  3403. width:100%;
  3404. }
  3405. #u85963_text {
  3406. border-width:0px;
  3407. word-wrap:break-word;
  3408. text-transform:none;
  3409. visibility:hidden;
  3410. }
  3411. #u85964_div {
  3412. border-width:0px;
  3413. position:absolute;
  3414. left:0px;
  3415. top:0px;
  3416. width:65px;
  3417. height:22px;
  3418. background:inherit;
  3419. background-color:rgba(255, 255, 255, 0);
  3420. border:none;
  3421. border-radius:0px;
  3422. -moz-box-shadow:none;
  3423. -webkit-box-shadow:none;
  3424. box-shadow:none;
  3425. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3426. font-weight:400;
  3427. font-style:normal;
  3428. font-size:16px;
  3429. }
  3430. #u85964 {
  3431. border-width:0px;
  3432. position:absolute;
  3433. left:30px;
  3434. top:1075px;
  3435. width:65px;
  3436. height:22px;
  3437. display:flex;
  3438. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3439. font-weight:400;
  3440. font-style:normal;
  3441. font-size:16px;
  3442. }
  3443. #u85964 .text {
  3444. position:absolute;
  3445. align-self:flex-start;
  3446. padding:0px 0px 0px 0px;
  3447. box-sizing:border-box;
  3448. width:100%;
  3449. }
  3450. #u85964_text {
  3451. border-width:0px;
  3452. white-space:nowrap;
  3453. text-transform:none;
  3454. }
  3455. #u85965_div {
  3456. border-width:0px;
  3457. position:absolute;
  3458. left:0px;
  3459. top:0px;
  3460. width:49px;
  3461. height:17px;
  3462. background:inherit;
  3463. background-color:rgba(255, 255, 255, 0);
  3464. border:none;
  3465. border-radius:0px;
  3466. -moz-box-shadow:none;
  3467. -webkit-box-shadow:none;
  3468. box-shadow:none;
  3469. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3470. font-weight:400;
  3471. font-style:normal;
  3472. font-size:12px;
  3473. color:#AAAAAA;
  3474. }
  3475. #u85965 {
  3476. border-width:0px;
  3477. position:absolute;
  3478. left:30px;
  3479. top:1039px;
  3480. width:49px;
  3481. height:17px;
  3482. display:flex;
  3483. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3484. font-weight:400;
  3485. font-style:normal;
  3486. font-size:12px;
  3487. color:#AAAAAA;
  3488. }
  3489. #u85965 .text {
  3490. position:absolute;
  3491. align-self:flex-start;
  3492. padding:0px 0px 0px 0px;
  3493. box-sizing:border-box;
  3494. width:100%;
  3495. }
  3496. #u85965_text {
  3497. border-width:0px;
  3498. white-space:nowrap;
  3499. text-transform:none;
  3500. }
  3501. #u85966_div {
  3502. border-width:0px;
  3503. position:absolute;
  3504. left:0px;
  3505. top:0px;
  3506. width:65px;
  3507. height:22px;
  3508. background:inherit;
  3509. background-color:rgba(255, 255, 255, 0);
  3510. border:none;
  3511. border-radius:0px;
  3512. -moz-box-shadow:none;
  3513. -webkit-box-shadow:none;
  3514. box-shadow:none;
  3515. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3516. font-weight:400;
  3517. font-style:normal;
  3518. font-size:16px;
  3519. }
  3520. #u85966 {
  3521. border-width:0px;
  3522. position:absolute;
  3523. left:30px;
  3524. top:1117px;
  3525. width:65px;
  3526. height:22px;
  3527. display:flex;
  3528. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3529. font-weight:400;
  3530. font-style:normal;
  3531. font-size:16px;
  3532. }
  3533. #u85966 .text {
  3534. position:absolute;
  3535. align-self:flex-start;
  3536. padding:0px 0px 0px 0px;
  3537. box-sizing:border-box;
  3538. width:100%;
  3539. }
  3540. #u85966_text {
  3541. border-width:0px;
  3542. white-space:nowrap;
  3543. text-transform:none;
  3544. }
  3545. #u85967_div {
  3546. border-width:0px;
  3547. position:absolute;
  3548. left:0px;
  3549. top:0px;
  3550. width:65px;
  3551. height:22px;
  3552. background:inherit;
  3553. background-color:rgba(255, 255, 255, 0);
  3554. border:none;
  3555. border-radius:0px;
  3556. -moz-box-shadow:none;
  3557. -webkit-box-shadow:none;
  3558. box-shadow:none;
  3559. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3560. font-weight:400;
  3561. font-style:normal;
  3562. font-size:16px;
  3563. }
  3564. #u85967 {
  3565. border-width:0px;
  3566. position:absolute;
  3567. left:30px;
  3568. top:1201px;
  3569. width:65px;
  3570. height:22px;
  3571. display:flex;
  3572. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3573. font-weight:400;
  3574. font-style:normal;
  3575. font-size:16px;
  3576. }
  3577. #u85967 .text {
  3578. position:absolute;
  3579. align-self:flex-start;
  3580. padding:0px 0px 0px 0px;
  3581. box-sizing:border-box;
  3582. width:100%;
  3583. }
  3584. #u85967_text {
  3585. border-width:0px;
  3586. white-space:nowrap;
  3587. text-transform:none;
  3588. }
  3589. #u85968_div {
  3590. border-width:0px;
  3591. position:absolute;
  3592. left:0px;
  3593. top:0px;
  3594. width:65px;
  3595. height:22px;
  3596. background:inherit;
  3597. background-color:rgba(255, 255, 255, 0);
  3598. border:none;
  3599. border-radius:0px;
  3600. -moz-box-shadow:none;
  3601. -webkit-box-shadow:none;
  3602. box-shadow:none;
  3603. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3604. font-weight:400;
  3605. font-style:normal;
  3606. font-size:16px;
  3607. }
  3608. #u85968 {
  3609. border-width:0px;
  3610. position:absolute;
  3611. left:30px;
  3612. top:1159px;
  3613. width:65px;
  3614. height:22px;
  3615. display:flex;
  3616. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3617. font-weight:400;
  3618. font-style:normal;
  3619. font-size:16px;
  3620. }
  3621. #u85968 .text {
  3622. position:absolute;
  3623. align-self:flex-start;
  3624. padding:0px 0px 0px 0px;
  3625. box-sizing:border-box;
  3626. width:100%;
  3627. }
  3628. #u85968_text {
  3629. border-width:0px;
  3630. white-space:nowrap;
  3631. text-transform:none;
  3632. }
  3633. #u85969_div {
  3634. border-width:0px;
  3635. position:absolute;
  3636. left:0px;
  3637. top:0px;
  3638. width:65px;
  3639. height:22px;
  3640. background:inherit;
  3641. background-color:rgba(255, 255, 255, 0);
  3642. border:none;
  3643. border-radius:0px;
  3644. -moz-box-shadow:none;
  3645. -webkit-box-shadow:none;
  3646. box-shadow:none;
  3647. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3648. font-weight:400;
  3649. font-style:normal;
  3650. font-size:16px;
  3651. }
  3652. #u85969 {
  3653. border-width:0px;
  3654. position:absolute;
  3655. left:30px;
  3656. top:1243px;
  3657. width:65px;
  3658. height:22px;
  3659. display:flex;
  3660. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3661. font-weight:400;
  3662. font-style:normal;
  3663. font-size:16px;
  3664. }
  3665. #u85969 .text {
  3666. position:absolute;
  3667. align-self:flex-start;
  3668. padding:0px 0px 0px 0px;
  3669. box-sizing:border-box;
  3670. width:100%;
  3671. }
  3672. #u85969_text {
  3673. border-width:0px;
  3674. white-space:nowrap;
  3675. text-transform:none;
  3676. }
  3677. #u85970_div {
  3678. border-width:0px;
  3679. position:absolute;
  3680. left:0px;
  3681. top:0px;
  3682. width:65px;
  3683. height:22px;
  3684. background:inherit;
  3685. background-color:rgba(255, 255, 255, 0);
  3686. border:none;
  3687. border-radius:0px;
  3688. -moz-box-shadow:none;
  3689. -webkit-box-shadow:none;
  3690. box-shadow:none;
  3691. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3692. font-weight:400;
  3693. font-style:normal;
  3694. font-size:16px;
  3695. }
  3696. #u85970 {
  3697. border-width:0px;
  3698. position:absolute;
  3699. left:30px;
  3700. top:978px;
  3701. width:65px;
  3702. height:22px;
  3703. display:flex;
  3704. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3705. font-weight:400;
  3706. font-style:normal;
  3707. font-size:16px;
  3708. }
  3709. #u85970 .text {
  3710. position:absolute;
  3711. align-self:flex-start;
  3712. padding:0px 0px 0px 0px;
  3713. box-sizing:border-box;
  3714. width:100%;
  3715. }
  3716. #u85970_text {
  3717. border-width:0px;
  3718. white-space:nowrap;
  3719. text-transform:none;
  3720. }
  3721. #u85971_div {
  3722. border-width:0px;
  3723. position:absolute;
  3724. left:0px;
  3725. top:0px;
  3726. width:65px;
  3727. height:22px;
  3728. background:inherit;
  3729. background-color:rgba(255, 255, 255, 0);
  3730. border:none;
  3731. border-radius:0px;
  3732. -moz-box-shadow:none;
  3733. -webkit-box-shadow:none;
  3734. box-shadow:none;
  3735. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3736. font-weight:400;
  3737. font-style:normal;
  3738. font-size:16px;
  3739. }
  3740. #u85971 {
  3741. border-width:0px;
  3742. position:absolute;
  3743. left:30px;
  3744. top:622px;
  3745. width:65px;
  3746. height:22px;
  3747. display:flex;
  3748. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3749. font-weight:400;
  3750. font-style:normal;
  3751. font-size:16px;
  3752. }
  3753. #u85971 .text {
  3754. position:absolute;
  3755. align-self:flex-start;
  3756. padding:0px 0px 0px 0px;
  3757. box-sizing:border-box;
  3758. width:100%;
  3759. }
  3760. #u85971_text {
  3761. border-width:0px;
  3762. white-space:nowrap;
  3763. text-transform:none;
  3764. }
  3765. #u85972_div {
  3766. border-width:0px;
  3767. position:absolute;
  3768. left:0px;
  3769. top:0px;
  3770. width:60px;
  3771. height:30px;
  3772. background:inherit;
  3773. background-color:rgba(255, 255, 255, 1);
  3774. box-sizing:border-box;
  3775. border-width:1px;
  3776. border-style:solid;
  3777. border-color:rgba(170, 170, 170, 1);
  3778. border-radius:4px;
  3779. -moz-box-shadow:none;
  3780. -webkit-box-shadow:none;
  3781. box-shadow:none;
  3782. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3783. font-weight:400;
  3784. font-style:normal;
  3785. font-size:12px;
  3786. }
  3787. #u85972 {
  3788. border-width:0px;
  3789. position:absolute;
  3790. left:1505px;
  3791. top:110px;
  3792. width:60px;
  3793. height:30px;
  3794. display:flex;
  3795. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3796. font-weight:400;
  3797. font-style:normal;
  3798. font-size:12px;
  3799. }
  3800. #u85972 .text {
  3801. position:absolute;
  3802. align-self:center;
  3803. padding:2px 2px 2px 2px;
  3804. box-sizing:border-box;
  3805. width:100%;
  3806. }
  3807. #u85972_text {
  3808. border-width:0px;
  3809. word-wrap:break-word;
  3810. text-transform:none;
  3811. }
  3812. #u85973_div {
  3813. border-width:0px;
  3814. position:absolute;
  3815. left:0px;
  3816. top:0px;
  3817. width:271px;
  3818. height:50px;
  3819. background:inherit;
  3820. background-color:rgba(255, 255, 255, 0);
  3821. border:none;
  3822. border-left:0px;
  3823. border-top:0px;
  3824. border-right:0px;
  3825. border-radius:0px;
  3826. border-bottom-right-radius:0px;
  3827. border-bottom-left-radius:0px;
  3828. -moz-box-shadow:none;
  3829. -webkit-box-shadow:none;
  3830. box-shadow:none;
  3831. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3832. font-weight:400;
  3833. font-style:normal;
  3834. }
  3835. #u85973 {
  3836. border-width:0px;
  3837. position:absolute;
  3838. left:350px;
  3839. top:50px;
  3840. width:271px;
  3841. height:50px;
  3842. display:flex;
  3843. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3844. font-weight:400;
  3845. font-style:normal;
  3846. }
  3847. #u85973 .text {
  3848. position:absolute;
  3849. align-self:center;
  3850. padding:5px 0px 5px 0px;
  3851. box-sizing:border-box;
  3852. width:100%;
  3853. }
  3854. #u85973_text {
  3855. border-width:0px;
  3856. white-space:nowrap;
  3857. text-transform:none;
  3858. }
  3859. #u85974_div {
  3860. border-width:0px;
  3861. position:absolute;
  3862. left:0px;
  3863. top:0px;
  3864. width:60px;
  3865. height:30px;
  3866. background:inherit;
  3867. background-color:rgba(255, 255, 255, 1);
  3868. box-sizing:border-box;
  3869. border-width:1px;
  3870. border-style:solid;
  3871. border-color:rgba(170, 170, 170, 1);
  3872. border-radius:4px;
  3873. -moz-box-shadow:none;
  3874. -webkit-box-shadow:none;
  3875. box-shadow:none;
  3876. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3877. font-weight:400;
  3878. font-style:normal;
  3879. font-size:12px;
  3880. }
  3881. #u85974 {
  3882. border-width:0px;
  3883. position:absolute;
  3884. left:716px;
  3885. top:110px;
  3886. width:60px;
  3887. height:30px;
  3888. display:flex;
  3889. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3890. font-weight:400;
  3891. font-style:normal;
  3892. font-size:12px;
  3893. }
  3894. #u85974 .text {
  3895. position:absolute;
  3896. align-self:center;
  3897. padding:2px 2px 2px 2px;
  3898. box-sizing:border-box;
  3899. width:100%;
  3900. }
  3901. #u85974_text {
  3902. border-width:0px;
  3903. word-wrap:break-word;
  3904. text-transform:none;
  3905. }
  3906. #u85975_div {
  3907. border-width:0px;
  3908. position:absolute;
  3909. left:0px;
  3910. top:0px;
  3911. width:55px;
  3912. height:30px;
  3913. background:inherit;
  3914. background-color:rgba(41, 143, 255, 1);
  3915. box-sizing:border-box;
  3916. border-width:1px;
  3917. border-style:solid;
  3918. border-color:rgba(0, 153, 255, 1);
  3919. border-radius:4px;
  3920. -moz-box-shadow:none;
  3921. -webkit-box-shadow:none;
  3922. box-shadow:none;
  3923. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3924. font-weight:400;
  3925. font-style:normal;
  3926. font-size:12px;
  3927. color:#FFFFFF;
  3928. }
  3929. #u85975 {
  3930. border-width:0px;
  3931. position:absolute;
  3932. left:650px;
  3933. top:110px;
  3934. width:55px;
  3935. height:30px;
  3936. display:flex;
  3937. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3938. font-weight:400;
  3939. font-style:normal;
  3940. font-size:12px;
  3941. color:#FFFFFF;
  3942. }
  3943. #u85975 .text {
  3944. position:absolute;
  3945. align-self:center;
  3946. padding:5px 15px 5px 15px;
  3947. box-sizing:border-box;
  3948. width:100%;
  3949. }
  3950. #u85975_text {
  3951. border-width:0px;
  3952. white-space:nowrap;
  3953. text-transform:none;
  3954. }
  3955. #u85976 {
  3956. border-width:0px;
  3957. position:absolute;
  3958. left:0px;
  3959. top:0px;
  3960. width:0px;
  3961. height:0px;
  3962. }
  3963. #u85977_div {
  3964. border-width:0px;
  3965. position:absolute;
  3966. left:0px;
  3967. top:0px;
  3968. width:140px;
  3969. height:30px;
  3970. background:inherit;
  3971. background-color:rgba(255, 255, 255, 1);
  3972. box-sizing:border-box;
  3973. border-width:1px;
  3974. border-style:solid;
  3975. border-color:rgba(215, 215, 215, 1);
  3976. border-radius:4px;
  3977. -moz-box-shadow:none;
  3978. -webkit-box-shadow:none;
  3979. box-shadow:none;
  3980. font-size:11px;
  3981. }
  3982. #u85977 {
  3983. border-width:0px;
  3984. position:absolute;
  3985. left:350px;
  3986. top:110px;
  3987. width:140px;
  3988. height:30px;
  3989. display:flex;
  3990. font-size:11px;
  3991. }
  3992. #u85977 .text {
  3993. position:absolute;
  3994. align-self:center;
  3995. padding:2px 2px 2px 2px;
  3996. box-sizing:border-box;
  3997. width:100%;
  3998. }
  3999. #u85977_text {
  4000. border-width:0px;
  4001. word-wrap:break-word;
  4002. text-transform:none;
  4003. visibility:hidden;
  4004. }
  4005. #u85978_input {
  4006. position:absolute;
  4007. left:0px;
  4008. top:0px;
  4009. width:120px;
  4010. height:23px;
  4011. padding:2px 2px 2px 2px;
  4012. font-family:'ArialMT', 'Arial', sans-serif;
  4013. font-weight:400;
  4014. font-style:normal;
  4015. font-size:11px;
  4016. letter-spacing:normal;
  4017. color:#AAAAAA;
  4018. vertical-align:none;
  4019. text-align:left;
  4020. text-transform:none;
  4021. background-color:transparent;
  4022. border-color:transparent;
  4023. }
  4024. #u85978_input.disabled {
  4025. position:absolute;
  4026. left:0px;
  4027. top:0px;
  4028. width:120px;
  4029. height:23px;
  4030. padding:2px 2px 2px 2px;
  4031. font-family:'ArialMT', 'Arial', sans-serif;
  4032. font-weight:400;
  4033. font-style:normal;
  4034. font-size:11px;
  4035. letter-spacing:normal;
  4036. color:#AAAAAA;
  4037. vertical-align:none;
  4038. text-align:left;
  4039. text-transform:none;
  4040. background-color:transparent;
  4041. border-color:transparent;
  4042. }
  4043. #u85978_div {
  4044. border-width:0px;
  4045. position:absolute;
  4046. left:0px;
  4047. top:0px;
  4048. width:120px;
  4049. height:23px;
  4050. background:inherit;
  4051. background-color:rgba(255, 255, 255, 1);
  4052. border:none;
  4053. border-radius:0px;
  4054. -moz-box-shadow:none;
  4055. -webkit-box-shadow:none;
  4056. box-shadow:none;
  4057. font-size:11px;
  4058. color:#AAAAAA;
  4059. }
  4060. #u85978 {
  4061. border-width:0px;
  4062. position:absolute;
  4063. left:357px;
  4064. top:112px;
  4065. width:120px;
  4066. height:23px;
  4067. display:flex;
  4068. font-size:11px;
  4069. color:#AAAAAA;
  4070. }
  4071. #u85978 .text {
  4072. position:absolute;
  4073. align-self:flex-start;
  4074. padding:2px 2px 2px 2px;
  4075. box-sizing:border-box;
  4076. width:100%;
  4077. }
  4078. #u85978_div.disabled {
  4079. border-width:0px;
  4080. position:absolute;
  4081. left:0px;
  4082. top:0px;
  4083. width:120px;
  4084. height:23px;
  4085. background:inherit;
  4086. background-color:rgba(240, 240, 240, 1);
  4087. border:none;
  4088. border-radius:0px;
  4089. -moz-box-shadow:none;
  4090. -webkit-box-shadow:none;
  4091. box-shadow:none;
  4092. font-size:11px;
  4093. color:#AAAAAA;
  4094. }
  4095. #u85978.disabled {
  4096. }
  4097. .u85978_input_option {
  4098. font-size:11px;
  4099. }
  4100. #u85979 {
  4101. border-width:0px;
  4102. position:absolute;
  4103. left:0px;
  4104. top:0px;
  4105. width:0px;
  4106. height:0px;
  4107. }
  4108. #u85980_div {
  4109. border-width:0px;
  4110. position:absolute;
  4111. left:0px;
  4112. top:0px;
  4113. width:140px;
  4114. height:30px;
  4115. background:inherit;
  4116. background-color:rgba(255, 255, 255, 1);
  4117. box-sizing:border-box;
  4118. border-width:1px;
  4119. border-style:solid;
  4120. border-color:rgba(215, 215, 215, 1);
  4121. border-radius:4px;
  4122. -moz-box-shadow:none;
  4123. -webkit-box-shadow:none;
  4124. box-shadow:none;
  4125. font-size:11px;
  4126. }
  4127. #u85980 {
  4128. border-width:0px;
  4129. position:absolute;
  4130. left:500px;
  4131. top:110px;
  4132. width:140px;
  4133. height:30px;
  4134. display:flex;
  4135. font-size:11px;
  4136. }
  4137. #u85980 .text {
  4138. position:absolute;
  4139. align-self:center;
  4140. padding:2px 2px 2px 2px;
  4141. box-sizing:border-box;
  4142. width:100%;
  4143. }
  4144. #u85980_text {
  4145. border-width:0px;
  4146. word-wrap:break-word;
  4147. text-transform:none;
  4148. visibility:hidden;
  4149. }
  4150. #u85981_input {
  4151. position:absolute;
  4152. left:0px;
  4153. top:0px;
  4154. width:126px;
  4155. height:23px;
  4156. padding:2px 2px 2px 2px;
  4157. font-family:'ArialMT', 'Arial', sans-serif;
  4158. font-weight:400;
  4159. font-style:normal;
  4160. font-size:11px;
  4161. letter-spacing:normal;
  4162. color:#AAAAAA;
  4163. vertical-align:none;
  4164. text-align:left;
  4165. text-transform:none;
  4166. background-color:transparent;
  4167. border-color:transparent;
  4168. }
  4169. #u85981_input.disabled {
  4170. position:absolute;
  4171. left:0px;
  4172. top:0px;
  4173. width:126px;
  4174. height:23px;
  4175. padding:2px 2px 2px 2px;
  4176. font-family:'ArialMT', 'Arial', sans-serif;
  4177. font-weight:400;
  4178. font-style:normal;
  4179. font-size:11px;
  4180. letter-spacing:normal;
  4181. color:#AAAAAA;
  4182. vertical-align:none;
  4183. text-align:left;
  4184. text-transform:none;
  4185. background-color:transparent;
  4186. border-color:transparent;
  4187. }
  4188. #u85981_div {
  4189. border-width:0px;
  4190. position:absolute;
  4191. left:0px;
  4192. top:0px;
  4193. width:126px;
  4194. height:23px;
  4195. background:inherit;
  4196. background-color:rgba(255, 255, 255, 1);
  4197. border:none;
  4198. border-radius:0px;
  4199. -moz-box-shadow:none;
  4200. -webkit-box-shadow:none;
  4201. box-shadow:none;
  4202. font-size:11px;
  4203. color:#AAAAAA;
  4204. }
  4205. #u85981 {
  4206. border-width:0px;
  4207. position:absolute;
  4208. left:507px;
  4209. top:112px;
  4210. width:126px;
  4211. height:23px;
  4212. display:flex;
  4213. font-size:11px;
  4214. color:#AAAAAA;
  4215. }
  4216. #u85981 .text {
  4217. position:absolute;
  4218. align-self:flex-start;
  4219. padding:2px 2px 2px 2px;
  4220. box-sizing:border-box;
  4221. width:100%;
  4222. }
  4223. #u85981_div.disabled {
  4224. border-width:0px;
  4225. position:absolute;
  4226. left:0px;
  4227. top:0px;
  4228. width:126px;
  4229. height:23px;
  4230. background:inherit;
  4231. background-color:rgba(240, 240, 240, 1);
  4232. border:none;
  4233. border-radius:0px;
  4234. -moz-box-shadow:none;
  4235. -webkit-box-shadow:none;
  4236. box-shadow:none;
  4237. font-size:11px;
  4238. color:#AAAAAA;
  4239. }
  4240. #u85981.disabled {
  4241. }
  4242. .u85981_input_option {
  4243. font-size:11px;
  4244. }
  4245. #u85982 {
  4246. border-width:0px;
  4247. position:absolute;
  4248. left:350px;
  4249. top:160px;
  4250. width:1539px;
  4251. height:194px;
  4252. }
  4253. #u85983_img {
  4254. border-width:0px;
  4255. position:absolute;
  4256. left:0px;
  4257. top:0px;
  4258. width:81px;
  4259. height:80px;
  4260. }
  4261. #u85983 {
  4262. border-width:0px;
  4263. position:absolute;
  4264. left:0px;
  4265. top:0px;
  4266. width:81px;
  4267. height:80px;
  4268. display:flex;
  4269. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4270. font-weight:400;
  4271. font-style:normal;
  4272. font-size:12px;
  4273. color:#FFFFFF;
  4274. }
  4275. #u85983 .text {
  4276. position:absolute;
  4277. align-self:center;
  4278. padding:2px 2px 2px 0px;
  4279. box-sizing:border-box;
  4280. width:100%;
  4281. }
  4282. #u85983_text {
  4283. border-width:0px;
  4284. word-wrap:break-word;
  4285. text-transform:none;
  4286. }
  4287. #u85984_img {
  4288. border-width:0px;
  4289. position:absolute;
  4290. left:0px;
  4291. top:0px;
  4292. width:81px;
  4293. height:80px;
  4294. }
  4295. #u85984 {
  4296. border-width:0px;
  4297. position:absolute;
  4298. left:81px;
  4299. top:0px;
  4300. width:81px;
  4301. height:80px;
  4302. display:flex;
  4303. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4304. font-weight:400;
  4305. font-style:normal;
  4306. font-size:12px;
  4307. color:#FFFFFF;
  4308. }
  4309. #u85984 .text {
  4310. position:absolute;
  4311. align-self:center;
  4312. padding:2px 2px 2px 0px;
  4313. box-sizing:border-box;
  4314. width:100%;
  4315. }
  4316. #u85984_text {
  4317. border-width:0px;
  4318. word-wrap:break-word;
  4319. text-transform:none;
  4320. }
  4321. #u85985_img {
  4322. border-width:0px;
  4323. position:absolute;
  4324. left:0px;
  4325. top:0px;
  4326. width:81px;
  4327. height:80px;
  4328. }
  4329. #u85985 {
  4330. border-width:0px;
  4331. position:absolute;
  4332. left:162px;
  4333. top:0px;
  4334. width:81px;
  4335. height:80px;
  4336. display:flex;
  4337. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4338. font-weight:400;
  4339. font-style:normal;
  4340. font-size:12px;
  4341. color:#FFFFFF;
  4342. }
  4343. #u85985 .text {
  4344. position:absolute;
  4345. align-self:center;
  4346. padding:2px 2px 2px 0px;
  4347. box-sizing:border-box;
  4348. width:100%;
  4349. }
  4350. #u85985_text {
  4351. border-width:0px;
  4352. word-wrap:break-word;
  4353. text-transform:none;
  4354. visibility:hidden;
  4355. }
  4356. #u85986_img {
  4357. border-width:0px;
  4358. position:absolute;
  4359. left:0px;
  4360. top:0px;
  4361. width:81px;
  4362. height:80px;
  4363. }
  4364. #u85986 {
  4365. border-width:0px;
  4366. position:absolute;
  4367. left:243px;
  4368. top:0px;
  4369. width:81px;
  4370. height:80px;
  4371. display:flex;
  4372. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4373. font-weight:400;
  4374. font-style:normal;
  4375. font-size:12px;
  4376. color:#FFFFFF;
  4377. }
  4378. #u85986 .text {
  4379. position:absolute;
  4380. align-self:center;
  4381. padding:2px 2px 2px 0px;
  4382. box-sizing:border-box;
  4383. width:100%;
  4384. }
  4385. #u85986_text {
  4386. border-width:0px;
  4387. word-wrap:break-word;
  4388. text-transform:none;
  4389. visibility:hidden;
  4390. }
  4391. #u85987_img {
  4392. border-width:0px;
  4393. position:absolute;
  4394. left:0px;
  4395. top:0px;
  4396. width:81px;
  4397. height:80px;
  4398. }
  4399. #u85987 {
  4400. border-width:0px;
  4401. position:absolute;
  4402. left:324px;
  4403. top:0px;
  4404. width:81px;
  4405. height:80px;
  4406. display:flex;
  4407. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4408. font-weight:400;
  4409. font-style:normal;
  4410. font-size:12px;
  4411. color:#FFFFFF;
  4412. }
  4413. #u85987 .text {
  4414. position:absolute;
  4415. align-self:center;
  4416. padding:2px 2px 2px 0px;
  4417. box-sizing:border-box;
  4418. width:100%;
  4419. }
  4420. #u85987_text {
  4421. border-width:0px;
  4422. word-wrap:break-word;
  4423. text-transform:none;
  4424. visibility:hidden;
  4425. }
  4426. #u85988_img {
  4427. border-width:0px;
  4428. position:absolute;
  4429. left:0px;
  4430. top:0px;
  4431. width:81px;
  4432. height:80px;
  4433. }
  4434. #u85988 {
  4435. border-width:0px;
  4436. position:absolute;
  4437. left:405px;
  4438. top:0px;
  4439. width:81px;
  4440. height:80px;
  4441. display:flex;
  4442. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4443. font-weight:400;
  4444. font-style:normal;
  4445. font-size:12px;
  4446. color:#FFFFFF;
  4447. }
  4448. #u85988 .text {
  4449. position:absolute;
  4450. align-self:center;
  4451. padding:2px 2px 2px 0px;
  4452. box-sizing:border-box;
  4453. width:100%;
  4454. }
  4455. #u85988_text {
  4456. border-width:0px;
  4457. word-wrap:break-word;
  4458. text-transform:none;
  4459. visibility:hidden;
  4460. }
  4461. #u85989_img {
  4462. border-width:0px;
  4463. position:absolute;
  4464. left:0px;
  4465. top:0px;
  4466. width:81px;
  4467. height:80px;
  4468. }
  4469. #u85989 {
  4470. border-width:0px;
  4471. position:absolute;
  4472. left:486px;
  4473. top:0px;
  4474. width:81px;
  4475. height:80px;
  4476. display:flex;
  4477. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4478. font-weight:400;
  4479. font-style:normal;
  4480. font-size:12px;
  4481. color:#FFFFFF;
  4482. }
  4483. #u85989 .text {
  4484. position:absolute;
  4485. align-self:center;
  4486. padding:2px 2px 2px 0px;
  4487. box-sizing:border-box;
  4488. width:100%;
  4489. }
  4490. #u85989_text {
  4491. border-width:0px;
  4492. word-wrap:break-word;
  4493. text-transform:none;
  4494. visibility:hidden;
  4495. }
  4496. #u85990_img {
  4497. border-width:0px;
  4498. position:absolute;
  4499. left:0px;
  4500. top:0px;
  4501. width:81px;
  4502. height:80px;
  4503. }
  4504. #u85990 {
  4505. border-width:0px;
  4506. position:absolute;
  4507. left:567px;
  4508. top:0px;
  4509. width:81px;
  4510. height:80px;
  4511. display:flex;
  4512. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4513. font-weight:400;
  4514. font-style:normal;
  4515. font-size:12px;
  4516. color:#FFFFFF;
  4517. }
  4518. #u85990 .text {
  4519. position:absolute;
  4520. align-self:center;
  4521. padding:2px 2px 2px 0px;
  4522. box-sizing:border-box;
  4523. width:100%;
  4524. }
  4525. #u85990_text {
  4526. border-width:0px;
  4527. word-wrap:break-word;
  4528. text-transform:none;
  4529. visibility:hidden;
  4530. }
  4531. #u85991_img {
  4532. border-width:0px;
  4533. position:absolute;
  4534. left:0px;
  4535. top:0px;
  4536. width:81px;
  4537. height:80px;
  4538. }
  4539. #u85991 {
  4540. border-width:0px;
  4541. position:absolute;
  4542. left:648px;
  4543. top:0px;
  4544. width:81px;
  4545. height:80px;
  4546. display:flex;
  4547. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4548. font-weight:400;
  4549. font-style:normal;
  4550. font-size:12px;
  4551. color:#FFFFFF;
  4552. }
  4553. #u85991 .text {
  4554. position:absolute;
  4555. align-self:center;
  4556. padding:2px 2px 2px 0px;
  4557. box-sizing:border-box;
  4558. width:100%;
  4559. }
  4560. #u85991_text {
  4561. border-width:0px;
  4562. word-wrap:break-word;
  4563. text-transform:none;
  4564. visibility:hidden;
  4565. }
  4566. #u85992_img {
  4567. border-width:0px;
  4568. position:absolute;
  4569. left:0px;
  4570. top:0px;
  4571. width:81px;
  4572. height:80px;
  4573. }
  4574. #u85992 {
  4575. border-width:0px;
  4576. position:absolute;
  4577. left:729px;
  4578. top:0px;
  4579. width:81px;
  4580. height:80px;
  4581. display:flex;
  4582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4583. font-weight:400;
  4584. font-style:normal;
  4585. font-size:12px;
  4586. color:#FFFFFF;
  4587. }
  4588. #u85992 .text {
  4589. position:absolute;
  4590. align-self:center;
  4591. padding:2px 2px 2px 0px;
  4592. box-sizing:border-box;
  4593. width:100%;
  4594. }
  4595. #u85992_text {
  4596. border-width:0px;
  4597. word-wrap:break-word;
  4598. text-transform:none;
  4599. visibility:hidden;
  4600. }
  4601. #u85993_img {
  4602. border-width:0px;
  4603. position:absolute;
  4604. left:0px;
  4605. top:0px;
  4606. width:81px;
  4607. height:80px;
  4608. }
  4609. #u85993 {
  4610. border-width:0px;
  4611. position:absolute;
  4612. left:810px;
  4613. top:0px;
  4614. width:81px;
  4615. height:80px;
  4616. display:flex;
  4617. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4618. font-weight:400;
  4619. font-style:normal;
  4620. font-size:12px;
  4621. color:#FFFFFF;
  4622. }
  4623. #u85993 .text {
  4624. position:absolute;
  4625. align-self:center;
  4626. padding:2px 2px 2px 0px;
  4627. box-sizing:border-box;
  4628. width:100%;
  4629. }
  4630. #u85993_text {
  4631. border-width:0px;
  4632. word-wrap:break-word;
  4633. text-transform:none;
  4634. visibility:hidden;
  4635. }
  4636. #u85994_img {
  4637. border-width:0px;
  4638. position:absolute;
  4639. left:0px;
  4640. top:0px;
  4641. width:81px;
  4642. height:80px;
  4643. }
  4644. #u85994 {
  4645. border-width:0px;
  4646. position:absolute;
  4647. left:891px;
  4648. top:0px;
  4649. width:81px;
  4650. height:80px;
  4651. display:flex;
  4652. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4653. font-weight:400;
  4654. font-style:normal;
  4655. font-size:12px;
  4656. color:#FFFFFF;
  4657. }
  4658. #u85994 .text {
  4659. position:absolute;
  4660. align-self:center;
  4661. padding:2px 2px 2px 0px;
  4662. box-sizing:border-box;
  4663. width:100%;
  4664. }
  4665. #u85994_text {
  4666. border-width:0px;
  4667. word-wrap:break-word;
  4668. text-transform:none;
  4669. visibility:hidden;
  4670. }
  4671. #u85995_img {
  4672. border-width:0px;
  4673. position:absolute;
  4674. left:0px;
  4675. top:0px;
  4676. width:81px;
  4677. height:80px;
  4678. }
  4679. #u85995 {
  4680. border-width:0px;
  4681. position:absolute;
  4682. left:972px;
  4683. top:0px;
  4684. width:81px;
  4685. height:80px;
  4686. display:flex;
  4687. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4688. font-weight:400;
  4689. font-style:normal;
  4690. font-size:12px;
  4691. color:#FFFFFF;
  4692. }
  4693. #u85995 .text {
  4694. position:absolute;
  4695. align-self:center;
  4696. padding:2px 2px 2px 0px;
  4697. box-sizing:border-box;
  4698. width:100%;
  4699. }
  4700. #u85995_text {
  4701. border-width:0px;
  4702. word-wrap:break-word;
  4703. text-transform:none;
  4704. visibility:hidden;
  4705. }
  4706. #u85996_img {
  4707. border-width:0px;
  4708. position:absolute;
  4709. left:0px;
  4710. top:0px;
  4711. width:81px;
  4712. height:80px;
  4713. }
  4714. #u85996 {
  4715. border-width:0px;
  4716. position:absolute;
  4717. left:1053px;
  4718. top:0px;
  4719. width:81px;
  4720. height:80px;
  4721. display:flex;
  4722. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4723. font-weight:400;
  4724. font-style:normal;
  4725. font-size:12px;
  4726. color:#FFFFFF;
  4727. }
  4728. #u85996 .text {
  4729. position:absolute;
  4730. align-self:center;
  4731. padding:2px 2px 2px 0px;
  4732. box-sizing:border-box;
  4733. width:100%;
  4734. }
  4735. #u85996_text {
  4736. border-width:0px;
  4737. word-wrap:break-word;
  4738. text-transform:none;
  4739. visibility:hidden;
  4740. }
  4741. #u85997_img {
  4742. border-width:0px;
  4743. position:absolute;
  4744. left:0px;
  4745. top:0px;
  4746. width:81px;
  4747. height:80px;
  4748. }
  4749. #u85997 {
  4750. border-width:0px;
  4751. position:absolute;
  4752. left:1134px;
  4753. top:0px;
  4754. width:81px;
  4755. height:80px;
  4756. display:flex;
  4757. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4758. font-weight:400;
  4759. font-style:normal;
  4760. font-size:12px;
  4761. color:#FFFFFF;
  4762. }
  4763. #u85997 .text {
  4764. position:absolute;
  4765. align-self:center;
  4766. padding:2px 2px 2px 0px;
  4767. box-sizing:border-box;
  4768. width:100%;
  4769. }
  4770. #u85997_text {
  4771. border-width:0px;
  4772. word-wrap:break-word;
  4773. text-transform:none;
  4774. visibility:hidden;
  4775. }
  4776. #u85998_img {
  4777. border-width:0px;
  4778. position:absolute;
  4779. left:0px;
  4780. top:0px;
  4781. width:81px;
  4782. height:80px;
  4783. }
  4784. #u85998 {
  4785. border-width:0px;
  4786. position:absolute;
  4787. left:1215px;
  4788. top:0px;
  4789. width:81px;
  4790. height:80px;
  4791. display:flex;
  4792. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4793. font-weight:400;
  4794. font-style:normal;
  4795. font-size:12px;
  4796. color:#FFFFFF;
  4797. }
  4798. #u85998 .text {
  4799. position:absolute;
  4800. align-self:center;
  4801. padding:2px 2px 2px 0px;
  4802. box-sizing:border-box;
  4803. width:100%;
  4804. }
  4805. #u85998_text {
  4806. border-width:0px;
  4807. word-wrap:break-word;
  4808. text-transform:none;
  4809. }
  4810. #u85999_img {
  4811. border-width:0px;
  4812. position:absolute;
  4813. left:0px;
  4814. top:0px;
  4815. width:81px;
  4816. height:80px;
  4817. }
  4818. #u85999 {
  4819. border-width:0px;
  4820. position:absolute;
  4821. left:1296px;
  4822. top:0px;
  4823. width:81px;
  4824. height:80px;
  4825. display:flex;
  4826. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4827. font-weight:400;
  4828. font-style:normal;
  4829. font-size:12px;
  4830. color:#FFFFFF;
  4831. }
  4832. #u85999 .text {
  4833. position:absolute;
  4834. align-self:center;
  4835. padding:2px 2px 2px 0px;
  4836. box-sizing:border-box;
  4837. width:100%;
  4838. }
  4839. #u85999_text {
  4840. border-width:0px;
  4841. word-wrap:break-word;
  4842. text-transform:none;
  4843. }
  4844. #u86000_img {
  4845. border-width:0px;
  4846. position:absolute;
  4847. left:0px;
  4848. top:0px;
  4849. width:81px;
  4850. height:80px;
  4851. }
  4852. #u86000 {
  4853. border-width:0px;
  4854. position:absolute;
  4855. left:1377px;
  4856. top:0px;
  4857. width:81px;
  4858. height:80px;
  4859. display:flex;
  4860. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4861. font-weight:400;
  4862. font-style:normal;
  4863. font-size:12px;
  4864. color:#FFFFFF;
  4865. }
  4866. #u86000 .text {
  4867. position:absolute;
  4868. align-self:center;
  4869. padding:2px 2px 2px 0px;
  4870. box-sizing:border-box;
  4871. width:100%;
  4872. }
  4873. #u86000_text {
  4874. border-width:0px;
  4875. word-wrap:break-word;
  4876. text-transform:none;
  4877. }
  4878. #u86001_img {
  4879. border-width:0px;
  4880. position:absolute;
  4881. left:0px;
  4882. top:0px;
  4883. width:81px;
  4884. height:80px;
  4885. }
  4886. #u86001 {
  4887. border-width:0px;
  4888. position:absolute;
  4889. left:1458px;
  4890. top:0px;
  4891. width:81px;
  4892. height:80px;
  4893. display:flex;
  4894. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4895. font-weight:400;
  4896. font-style:normal;
  4897. font-size:12px;
  4898. color:#FFFFFF;
  4899. }
  4900. #u86001 .text {
  4901. position:absolute;
  4902. align-self:center;
  4903. padding:2px 2px 2px 0px;
  4904. box-sizing:border-box;
  4905. width:100%;
  4906. }
  4907. #u86001_text {
  4908. border-width:0px;
  4909. word-wrap:break-word;
  4910. text-transform:none;
  4911. }
  4912. #u86002_img {
  4913. border-width:0px;
  4914. position:absolute;
  4915. left:0px;
  4916. top:0px;
  4917. width:81px;
  4918. height:38px;
  4919. }
  4920. #u86002 {
  4921. border-width:0px;
  4922. position:absolute;
  4923. left:0px;
  4924. top:80px;
  4925. width:81px;
  4926. height:38px;
  4927. display:flex;
  4928. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4929. font-weight:400;
  4930. font-style:normal;
  4931. font-size:12px;
  4932. }
  4933. #u86002 .text {
  4934. position:absolute;
  4935. align-self:center;
  4936. padding:2px 2px 2px 0px;
  4937. box-sizing:border-box;
  4938. width:100%;
  4939. }
  4940. #u86002_text {
  4941. border-width:0px;
  4942. word-wrap:break-word;
  4943. text-transform:none;
  4944. visibility:hidden;
  4945. }
  4946. #u86003_img {
  4947. border-width:0px;
  4948. position:absolute;
  4949. left:0px;
  4950. top:0px;
  4951. width:81px;
  4952. height:38px;
  4953. }
  4954. #u86003 {
  4955. border-width:0px;
  4956. position:absolute;
  4957. left:81px;
  4958. top:80px;
  4959. width:81px;
  4960. height:38px;
  4961. display:flex;
  4962. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4963. font-weight:400;
  4964. font-style:normal;
  4965. font-size:12px;
  4966. color:#333333;
  4967. }
  4968. #u86003 .text {
  4969. position:absolute;
  4970. align-self:center;
  4971. padding:2px 2px 2px 0px;
  4972. box-sizing:border-box;
  4973. width:100%;
  4974. }
  4975. #u86003_text {
  4976. border-width:0px;
  4977. word-wrap:break-word;
  4978. text-transform:none;
  4979. }
  4980. #u86004_img {
  4981. border-width:0px;
  4982. position:absolute;
  4983. left:0px;
  4984. top:0px;
  4985. width:81px;
  4986. height:38px;
  4987. }
  4988. #u86004 {
  4989. border-width:0px;
  4990. position:absolute;
  4991. left:162px;
  4992. top:80px;
  4993. width:81px;
  4994. height:38px;
  4995. display:flex;
  4996. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4997. font-weight:400;
  4998. font-style:normal;
  4999. font-size:12px;
  5000. color:#333333;
  5001. }
  5002. #u86004 .text {
  5003. position:absolute;
  5004. align-self:center;
  5005. padding:2px 2px 2px 0px;
  5006. box-sizing:border-box;
  5007. width:100%;
  5008. }
  5009. #u86004_text {
  5010. border-width:0px;
  5011. word-wrap:break-word;
  5012. text-transform:none;
  5013. visibility:hidden;
  5014. }
  5015. #u86005_img {
  5016. border-width:0px;
  5017. position:absolute;
  5018. left:0px;
  5019. top:0px;
  5020. width:81px;
  5021. height:38px;
  5022. }
  5023. #u86005 {
  5024. border-width:0px;
  5025. position:absolute;
  5026. left:243px;
  5027. top:80px;
  5028. width:81px;
  5029. height:38px;
  5030. display:flex;
  5031. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5032. font-weight:400;
  5033. font-style:normal;
  5034. font-size:12px;
  5035. color:#333333;
  5036. }
  5037. #u86005 .text {
  5038. position:absolute;
  5039. align-self:center;
  5040. padding:2px 2px 2px 0px;
  5041. box-sizing:border-box;
  5042. width:100%;
  5043. }
  5044. #u86005_text {
  5045. border-width:0px;
  5046. word-wrap:break-word;
  5047. text-transform:none;
  5048. visibility:hidden;
  5049. }
  5050. #u86006_img {
  5051. border-width:0px;
  5052. position:absolute;
  5053. left:0px;
  5054. top:0px;
  5055. width:81px;
  5056. height:38px;
  5057. }
  5058. #u86006 {
  5059. border-width:0px;
  5060. position:absolute;
  5061. left:324px;
  5062. top:80px;
  5063. width:81px;
  5064. height:38px;
  5065. display:flex;
  5066. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5067. font-weight:400;
  5068. font-style:normal;
  5069. font-size:12px;
  5070. color:#333333;
  5071. }
  5072. #u86006 .text {
  5073. position:absolute;
  5074. align-self:center;
  5075. padding:2px 2px 2px 0px;
  5076. box-sizing:border-box;
  5077. width:100%;
  5078. }
  5079. #u86006_text {
  5080. border-width:0px;
  5081. word-wrap:break-word;
  5082. text-transform:none;
  5083. visibility:hidden;
  5084. }
  5085. #u86007_img {
  5086. border-width:0px;
  5087. position:absolute;
  5088. left:0px;
  5089. top:0px;
  5090. width:81px;
  5091. height:38px;
  5092. }
  5093. #u86007 {
  5094. border-width:0px;
  5095. position:absolute;
  5096. left:405px;
  5097. top:80px;
  5098. width:81px;
  5099. height:38px;
  5100. display:flex;
  5101. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5102. font-weight:400;
  5103. font-style:normal;
  5104. font-size:12px;
  5105. color:#333333;
  5106. }
  5107. #u86007 .text {
  5108. position:absolute;
  5109. align-self:center;
  5110. padding:2px 2px 2px 0px;
  5111. box-sizing:border-box;
  5112. width:100%;
  5113. }
  5114. #u86007_text {
  5115. border-width:0px;
  5116. word-wrap:break-word;
  5117. text-transform:none;
  5118. visibility:hidden;
  5119. }
  5120. #u86008_img {
  5121. border-width:0px;
  5122. position:absolute;
  5123. left:0px;
  5124. top:0px;
  5125. width:81px;
  5126. height:38px;
  5127. }
  5128. #u86008 {
  5129. border-width:0px;
  5130. position:absolute;
  5131. left:486px;
  5132. top:80px;
  5133. width:81px;
  5134. height:38px;
  5135. display:flex;
  5136. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5137. font-weight:400;
  5138. font-style:normal;
  5139. font-size:12px;
  5140. color:#333333;
  5141. }
  5142. #u86008 .text {
  5143. position:absolute;
  5144. align-self:center;
  5145. padding:2px 2px 2px 0px;
  5146. box-sizing:border-box;
  5147. width:100%;
  5148. }
  5149. #u86008_text {
  5150. border-width:0px;
  5151. word-wrap:break-word;
  5152. text-transform:none;
  5153. visibility:hidden;
  5154. }
  5155. #u86009_img {
  5156. border-width:0px;
  5157. position:absolute;
  5158. left:0px;
  5159. top:0px;
  5160. width:81px;
  5161. height:38px;
  5162. }
  5163. #u86009 {
  5164. border-width:0px;
  5165. position:absolute;
  5166. left:567px;
  5167. top:80px;
  5168. width:81px;
  5169. height:38px;
  5170. display:flex;
  5171. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5172. font-weight:400;
  5173. font-style:normal;
  5174. font-size:12px;
  5175. color:#333333;
  5176. }
  5177. #u86009 .text {
  5178. position:absolute;
  5179. align-self:center;
  5180. padding:2px 2px 2px 0px;
  5181. box-sizing:border-box;
  5182. width:100%;
  5183. }
  5184. #u86009_text {
  5185. border-width:0px;
  5186. word-wrap:break-word;
  5187. text-transform:none;
  5188. visibility:hidden;
  5189. }
  5190. #u86010_img {
  5191. border-width:0px;
  5192. position:absolute;
  5193. left:0px;
  5194. top:0px;
  5195. width:81px;
  5196. height:38px;
  5197. }
  5198. #u86010 {
  5199. border-width:0px;
  5200. position:absolute;
  5201. left:648px;
  5202. top:80px;
  5203. width:81px;
  5204. height:38px;
  5205. display:flex;
  5206. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5207. font-weight:400;
  5208. font-style:normal;
  5209. font-size:12px;
  5210. color:#333333;
  5211. }
  5212. #u86010 .text {
  5213. position:absolute;
  5214. align-self:center;
  5215. padding:2px 2px 2px 0px;
  5216. box-sizing:border-box;
  5217. width:100%;
  5218. }
  5219. #u86010_text {
  5220. border-width:0px;
  5221. word-wrap:break-word;
  5222. text-transform:none;
  5223. visibility:hidden;
  5224. }
  5225. #u86011_img {
  5226. border-width:0px;
  5227. position:absolute;
  5228. left:0px;
  5229. top:0px;
  5230. width:81px;
  5231. height:38px;
  5232. }
  5233. #u86011 {
  5234. border-width:0px;
  5235. position:absolute;
  5236. left:729px;
  5237. top:80px;
  5238. width:81px;
  5239. height:38px;
  5240. display:flex;
  5241. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5242. font-weight:400;
  5243. font-style:normal;
  5244. font-size:12px;
  5245. color:#333333;
  5246. }
  5247. #u86011 .text {
  5248. position:absolute;
  5249. align-self:center;
  5250. padding:2px 2px 2px 0px;
  5251. box-sizing:border-box;
  5252. width:100%;
  5253. }
  5254. #u86011_text {
  5255. border-width:0px;
  5256. word-wrap:break-word;
  5257. text-transform:none;
  5258. visibility:hidden;
  5259. }
  5260. #u86012_img {
  5261. border-width:0px;
  5262. position:absolute;
  5263. left:0px;
  5264. top:0px;
  5265. width:81px;
  5266. height:38px;
  5267. }
  5268. #u86012 {
  5269. border-width:0px;
  5270. position:absolute;
  5271. left:810px;
  5272. top:80px;
  5273. width:81px;
  5274. height:38px;
  5275. display:flex;
  5276. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5277. font-weight:400;
  5278. font-style:normal;
  5279. font-size:12px;
  5280. color:#333333;
  5281. }
  5282. #u86012 .text {
  5283. position:absolute;
  5284. align-self:center;
  5285. padding:2px 2px 2px 0px;
  5286. box-sizing:border-box;
  5287. width:100%;
  5288. }
  5289. #u86012_text {
  5290. border-width:0px;
  5291. word-wrap:break-word;
  5292. text-transform:none;
  5293. visibility:hidden;
  5294. }
  5295. #u86013_img {
  5296. border-width:0px;
  5297. position:absolute;
  5298. left:0px;
  5299. top:0px;
  5300. width:81px;
  5301. height:38px;
  5302. }
  5303. #u86013 {
  5304. border-width:0px;
  5305. position:absolute;
  5306. left:891px;
  5307. top:80px;
  5308. width:81px;
  5309. height:38px;
  5310. display:flex;
  5311. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5312. font-weight:400;
  5313. font-style:normal;
  5314. font-size:12px;
  5315. color:#333333;
  5316. }
  5317. #u86013 .text {
  5318. position:absolute;
  5319. align-self:center;
  5320. padding:2px 2px 2px 0px;
  5321. box-sizing:border-box;
  5322. width:100%;
  5323. }
  5324. #u86013_text {
  5325. border-width:0px;
  5326. word-wrap:break-word;
  5327. text-transform:none;
  5328. visibility:hidden;
  5329. }
  5330. #u86014_img {
  5331. border-width:0px;
  5332. position:absolute;
  5333. left:0px;
  5334. top:0px;
  5335. width:81px;
  5336. height:38px;
  5337. }
  5338. #u86014 {
  5339. border-width:0px;
  5340. position:absolute;
  5341. left:972px;
  5342. top:80px;
  5343. width:81px;
  5344. height:38px;
  5345. display:flex;
  5346. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5347. font-weight:400;
  5348. font-style:normal;
  5349. font-size:12px;
  5350. color:#333333;
  5351. }
  5352. #u86014 .text {
  5353. position:absolute;
  5354. align-self:center;
  5355. padding:2px 2px 2px 0px;
  5356. box-sizing:border-box;
  5357. width:100%;
  5358. }
  5359. #u86014_text {
  5360. border-width:0px;
  5361. word-wrap:break-word;
  5362. text-transform:none;
  5363. visibility:hidden;
  5364. }
  5365. #u86015_img {
  5366. border-width:0px;
  5367. position:absolute;
  5368. left:0px;
  5369. top:0px;
  5370. width:81px;
  5371. height:38px;
  5372. }
  5373. #u86015 {
  5374. border-width:0px;
  5375. position:absolute;
  5376. left:1053px;
  5377. top:80px;
  5378. width:81px;
  5379. height:38px;
  5380. display:flex;
  5381. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5382. font-weight:400;
  5383. font-style:normal;
  5384. font-size:12px;
  5385. color:#333333;
  5386. }
  5387. #u86015 .text {
  5388. position:absolute;
  5389. align-self:center;
  5390. padding:2px 2px 2px 0px;
  5391. box-sizing:border-box;
  5392. width:100%;
  5393. }
  5394. #u86015_text {
  5395. border-width:0px;
  5396. word-wrap:break-word;
  5397. text-transform:none;
  5398. visibility:hidden;
  5399. }
  5400. #u86016_img {
  5401. border-width:0px;
  5402. position:absolute;
  5403. left:0px;
  5404. top:0px;
  5405. width:81px;
  5406. height:38px;
  5407. }
  5408. #u86016 {
  5409. border-width:0px;
  5410. position:absolute;
  5411. left:1134px;
  5412. top:80px;
  5413. width:81px;
  5414. height:38px;
  5415. display:flex;
  5416. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5417. font-weight:400;
  5418. font-style:normal;
  5419. font-size:12px;
  5420. color:#333333;
  5421. }
  5422. #u86016 .text {
  5423. position:absolute;
  5424. align-self:center;
  5425. padding:2px 2px 2px 0px;
  5426. box-sizing:border-box;
  5427. width:100%;
  5428. }
  5429. #u86016_text {
  5430. border-width:0px;
  5431. word-wrap:break-word;
  5432. text-transform:none;
  5433. visibility:hidden;
  5434. }
  5435. #u86017_img {
  5436. border-width:0px;
  5437. position:absolute;
  5438. left:0px;
  5439. top:0px;
  5440. width:81px;
  5441. height:38px;
  5442. }
  5443. #u86017 {
  5444. border-width:0px;
  5445. position:absolute;
  5446. left:1215px;
  5447. top:80px;
  5448. width:81px;
  5449. height:38px;
  5450. display:flex;
  5451. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5452. font-weight:400;
  5453. font-style:normal;
  5454. font-size:12px;
  5455. color:#333333;
  5456. }
  5457. #u86017 .text {
  5458. position:absolute;
  5459. align-self:center;
  5460. padding:2px 2px 2px 0px;
  5461. box-sizing:border-box;
  5462. width:100%;
  5463. }
  5464. #u86017_text {
  5465. border-width:0px;
  5466. word-wrap:break-word;
  5467. text-transform:none;
  5468. visibility:hidden;
  5469. }
  5470. #u86018_img {
  5471. border-width:0px;
  5472. position:absolute;
  5473. left:0px;
  5474. top:0px;
  5475. width:81px;
  5476. height:38px;
  5477. }
  5478. #u86018 {
  5479. border-width:0px;
  5480. position:absolute;
  5481. left:1296px;
  5482. top:80px;
  5483. width:81px;
  5484. height:38px;
  5485. display:flex;
  5486. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5487. font-weight:400;
  5488. font-style:normal;
  5489. font-size:12px;
  5490. color:#333333;
  5491. }
  5492. #u86018 .text {
  5493. position:absolute;
  5494. align-self:center;
  5495. padding:2px 2px 2px 0px;
  5496. box-sizing:border-box;
  5497. width:100%;
  5498. }
  5499. #u86018_text {
  5500. border-width:0px;
  5501. word-wrap:break-word;
  5502. text-transform:none;
  5503. visibility:hidden;
  5504. }
  5505. #u86019_img {
  5506. border-width:0px;
  5507. position:absolute;
  5508. left:0px;
  5509. top:0px;
  5510. width:81px;
  5511. height:38px;
  5512. }
  5513. #u86019 {
  5514. border-width:0px;
  5515. position:absolute;
  5516. left:1377px;
  5517. top:80px;
  5518. width:81px;
  5519. height:38px;
  5520. display:flex;
  5521. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5522. font-weight:400;
  5523. font-style:normal;
  5524. font-size:12px;
  5525. color:#333333;
  5526. }
  5527. #u86019 .text {
  5528. position:absolute;
  5529. align-self:center;
  5530. padding:2px 2px 2px 0px;
  5531. box-sizing:border-box;
  5532. width:100%;
  5533. }
  5534. #u86019_text {
  5535. border-width:0px;
  5536. word-wrap:break-word;
  5537. text-transform:none;
  5538. visibility:hidden;
  5539. }
  5540. #u86020_img {
  5541. border-width:0px;
  5542. position:absolute;
  5543. left:0px;
  5544. top:0px;
  5545. width:81px;
  5546. height:38px;
  5547. }
  5548. #u86020 {
  5549. border-width:0px;
  5550. position:absolute;
  5551. left:1458px;
  5552. top:80px;
  5553. width:81px;
  5554. height:38px;
  5555. display:flex;
  5556. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5557. font-weight:400;
  5558. font-style:normal;
  5559. font-size:12px;
  5560. color:#333333;
  5561. }
  5562. #u86020 .text {
  5563. position:absolute;
  5564. align-self:center;
  5565. padding:2px 2px 2px 0px;
  5566. box-sizing:border-box;
  5567. width:100%;
  5568. }
  5569. #u86020_text {
  5570. border-width:0px;
  5571. word-wrap:break-word;
  5572. text-transform:none;
  5573. visibility:hidden;
  5574. }
  5575. #u86021_img {
  5576. border-width:0px;
  5577. position:absolute;
  5578. left:0px;
  5579. top:0px;
  5580. width:81px;
  5581. height:38px;
  5582. }
  5583. #u86021 {
  5584. border-width:0px;
  5585. position:absolute;
  5586. left:0px;
  5587. top:118px;
  5588. width:81px;
  5589. height:38px;
  5590. display:flex;
  5591. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5592. font-weight:400;
  5593. font-style:normal;
  5594. font-size:12px;
  5595. }
  5596. #u86021 .text {
  5597. position:absolute;
  5598. align-self:center;
  5599. padding:2px 2px 2px 0px;
  5600. box-sizing:border-box;
  5601. width:100%;
  5602. }
  5603. #u86021_text {
  5604. border-width:0px;
  5605. word-wrap:break-word;
  5606. text-transform:none;
  5607. visibility:hidden;
  5608. }
  5609. #u86022_img {
  5610. border-width:0px;
  5611. position:absolute;
  5612. left:0px;
  5613. top:0px;
  5614. width:81px;
  5615. height:38px;
  5616. }
  5617. #u86022 {
  5618. border-width:0px;
  5619. position:absolute;
  5620. left:81px;
  5621. top:118px;
  5622. width:81px;
  5623. height:38px;
  5624. display:flex;
  5625. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5626. font-weight:400;
  5627. font-style:normal;
  5628. font-size:12px;
  5629. color:#333333;
  5630. }
  5631. #u86022 .text {
  5632. position:absolute;
  5633. align-self:center;
  5634. padding:2px 2px 2px 0px;
  5635. box-sizing:border-box;
  5636. width:100%;
  5637. }
  5638. #u86022_text {
  5639. border-width:0px;
  5640. word-wrap:break-word;
  5641. text-transform:none;
  5642. }
  5643. #u86023_img {
  5644. border-width:0px;
  5645. position:absolute;
  5646. left:0px;
  5647. top:0px;
  5648. width:81px;
  5649. height:38px;
  5650. }
  5651. #u86023 {
  5652. border-width:0px;
  5653. position:absolute;
  5654. left:162px;
  5655. top:118px;
  5656. width:81px;
  5657. height:38px;
  5658. display:flex;
  5659. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5660. font-weight:400;
  5661. font-style:normal;
  5662. font-size:12px;
  5663. color:#333333;
  5664. }
  5665. #u86023 .text {
  5666. position:absolute;
  5667. align-self:center;
  5668. padding:2px 2px 2px 0px;
  5669. box-sizing:border-box;
  5670. width:100%;
  5671. }
  5672. #u86023_text {
  5673. border-width:0px;
  5674. word-wrap:break-word;
  5675. text-transform:none;
  5676. visibility:hidden;
  5677. }
  5678. #u86024_img {
  5679. border-width:0px;
  5680. position:absolute;
  5681. left:0px;
  5682. top:0px;
  5683. width:81px;
  5684. height:38px;
  5685. }
  5686. #u86024 {
  5687. border-width:0px;
  5688. position:absolute;
  5689. left:243px;
  5690. top:118px;
  5691. width:81px;
  5692. height:38px;
  5693. display:flex;
  5694. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5695. font-weight:400;
  5696. font-style:normal;
  5697. font-size:12px;
  5698. color:#333333;
  5699. }
  5700. #u86024 .text {
  5701. position:absolute;
  5702. align-self:center;
  5703. padding:2px 2px 2px 0px;
  5704. box-sizing:border-box;
  5705. width:100%;
  5706. }
  5707. #u86024_text {
  5708. border-width:0px;
  5709. word-wrap:break-word;
  5710. text-transform:none;
  5711. visibility:hidden;
  5712. }
  5713. #u86025_img {
  5714. border-width:0px;
  5715. position:absolute;
  5716. left:0px;
  5717. top:0px;
  5718. width:81px;
  5719. height:38px;
  5720. }
  5721. #u86025 {
  5722. border-width:0px;
  5723. position:absolute;
  5724. left:324px;
  5725. top:118px;
  5726. width:81px;
  5727. height:38px;
  5728. display:flex;
  5729. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5730. font-weight:400;
  5731. font-style:normal;
  5732. font-size:12px;
  5733. color:#333333;
  5734. }
  5735. #u86025 .text {
  5736. position:absolute;
  5737. align-self:center;
  5738. padding:2px 2px 2px 0px;
  5739. box-sizing:border-box;
  5740. width:100%;
  5741. }
  5742. #u86025_text {
  5743. border-width:0px;
  5744. word-wrap:break-word;
  5745. text-transform:none;
  5746. visibility:hidden;
  5747. }
  5748. #u86026_img {
  5749. border-width:0px;
  5750. position:absolute;
  5751. left:0px;
  5752. top:0px;
  5753. width:81px;
  5754. height:38px;
  5755. }
  5756. #u86026 {
  5757. border-width:0px;
  5758. position:absolute;
  5759. left:405px;
  5760. top:118px;
  5761. width:81px;
  5762. height:38px;
  5763. display:flex;
  5764. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5765. font-weight:400;
  5766. font-style:normal;
  5767. font-size:12px;
  5768. color:#333333;
  5769. }
  5770. #u86026 .text {
  5771. position:absolute;
  5772. align-self:center;
  5773. padding:2px 2px 2px 0px;
  5774. box-sizing:border-box;
  5775. width:100%;
  5776. }
  5777. #u86026_text {
  5778. border-width:0px;
  5779. word-wrap:break-word;
  5780. text-transform:none;
  5781. visibility:hidden;
  5782. }
  5783. #u86027_img {
  5784. border-width:0px;
  5785. position:absolute;
  5786. left:0px;
  5787. top:0px;
  5788. width:81px;
  5789. height:38px;
  5790. }
  5791. #u86027 {
  5792. border-width:0px;
  5793. position:absolute;
  5794. left:486px;
  5795. top:118px;
  5796. width:81px;
  5797. height:38px;
  5798. display:flex;
  5799. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5800. font-weight:400;
  5801. font-style:normal;
  5802. font-size:12px;
  5803. color:#333333;
  5804. }
  5805. #u86027 .text {
  5806. position:absolute;
  5807. align-self:center;
  5808. padding:2px 2px 2px 0px;
  5809. box-sizing:border-box;
  5810. width:100%;
  5811. }
  5812. #u86027_text {
  5813. border-width:0px;
  5814. word-wrap:break-word;
  5815. text-transform:none;
  5816. visibility:hidden;
  5817. }
  5818. #u86028_img {
  5819. border-width:0px;
  5820. position:absolute;
  5821. left:0px;
  5822. top:0px;
  5823. width:81px;
  5824. height:38px;
  5825. }
  5826. #u86028 {
  5827. border-width:0px;
  5828. position:absolute;
  5829. left:567px;
  5830. top:118px;
  5831. width:81px;
  5832. height:38px;
  5833. display:flex;
  5834. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5835. font-weight:400;
  5836. font-style:normal;
  5837. font-size:12px;
  5838. color:#333333;
  5839. }
  5840. #u86028 .text {
  5841. position:absolute;
  5842. align-self:center;
  5843. padding:2px 2px 2px 0px;
  5844. box-sizing:border-box;
  5845. width:100%;
  5846. }
  5847. #u86028_text {
  5848. border-width:0px;
  5849. word-wrap:break-word;
  5850. text-transform:none;
  5851. visibility:hidden;
  5852. }
  5853. #u86029_img {
  5854. border-width:0px;
  5855. position:absolute;
  5856. left:0px;
  5857. top:0px;
  5858. width:81px;
  5859. height:38px;
  5860. }
  5861. #u86029 {
  5862. border-width:0px;
  5863. position:absolute;
  5864. left:648px;
  5865. top:118px;
  5866. width:81px;
  5867. height:38px;
  5868. display:flex;
  5869. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5870. font-weight:400;
  5871. font-style:normal;
  5872. font-size:12px;
  5873. color:#333333;
  5874. }
  5875. #u86029 .text {
  5876. position:absolute;
  5877. align-self:center;
  5878. padding:2px 2px 2px 0px;
  5879. box-sizing:border-box;
  5880. width:100%;
  5881. }
  5882. #u86029_text {
  5883. border-width:0px;
  5884. word-wrap:break-word;
  5885. text-transform:none;
  5886. visibility:hidden;
  5887. }
  5888. #u86030_img {
  5889. border-width:0px;
  5890. position:absolute;
  5891. left:0px;
  5892. top:0px;
  5893. width:81px;
  5894. height:38px;
  5895. }
  5896. #u86030 {
  5897. border-width:0px;
  5898. position:absolute;
  5899. left:729px;
  5900. top:118px;
  5901. width:81px;
  5902. height:38px;
  5903. display:flex;
  5904. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5905. font-weight:400;
  5906. font-style:normal;
  5907. font-size:12px;
  5908. color:#333333;
  5909. }
  5910. #u86030 .text {
  5911. position:absolute;
  5912. align-self:center;
  5913. padding:2px 2px 2px 0px;
  5914. box-sizing:border-box;
  5915. width:100%;
  5916. }
  5917. #u86030_text {
  5918. border-width:0px;
  5919. word-wrap:break-word;
  5920. text-transform:none;
  5921. visibility:hidden;
  5922. }
  5923. #u86031_img {
  5924. border-width:0px;
  5925. position:absolute;
  5926. left:0px;
  5927. top:0px;
  5928. width:81px;
  5929. height:38px;
  5930. }
  5931. #u86031 {
  5932. border-width:0px;
  5933. position:absolute;
  5934. left:810px;
  5935. top:118px;
  5936. width:81px;
  5937. height:38px;
  5938. display:flex;
  5939. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5940. font-weight:400;
  5941. font-style:normal;
  5942. font-size:12px;
  5943. color:#333333;
  5944. }
  5945. #u86031 .text {
  5946. position:absolute;
  5947. align-self:center;
  5948. padding:2px 2px 2px 0px;
  5949. box-sizing:border-box;
  5950. width:100%;
  5951. }
  5952. #u86031_text {
  5953. border-width:0px;
  5954. word-wrap:break-word;
  5955. text-transform:none;
  5956. visibility:hidden;
  5957. }
  5958. #u86032_img {
  5959. border-width:0px;
  5960. position:absolute;
  5961. left:0px;
  5962. top:0px;
  5963. width:81px;
  5964. height:38px;
  5965. }
  5966. #u86032 {
  5967. border-width:0px;
  5968. position:absolute;
  5969. left:891px;
  5970. top:118px;
  5971. width:81px;
  5972. height:38px;
  5973. display:flex;
  5974. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5975. font-weight:400;
  5976. font-style:normal;
  5977. font-size:12px;
  5978. color:#333333;
  5979. }
  5980. #u86032 .text {
  5981. position:absolute;
  5982. align-self:center;
  5983. padding:2px 2px 2px 0px;
  5984. box-sizing:border-box;
  5985. width:100%;
  5986. }
  5987. #u86032_text {
  5988. border-width:0px;
  5989. word-wrap:break-word;
  5990. text-transform:none;
  5991. visibility:hidden;
  5992. }
  5993. #u86033_img {
  5994. border-width:0px;
  5995. position:absolute;
  5996. left:0px;
  5997. top:0px;
  5998. width:81px;
  5999. height:38px;
  6000. }
  6001. #u86033 {
  6002. border-width:0px;
  6003. position:absolute;
  6004. left:972px;
  6005. top:118px;
  6006. width:81px;
  6007. height:38px;
  6008. display:flex;
  6009. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6010. font-weight:400;
  6011. font-style:normal;
  6012. font-size:12px;
  6013. color:#333333;
  6014. }
  6015. #u86033 .text {
  6016. position:absolute;
  6017. align-self:center;
  6018. padding:2px 2px 2px 0px;
  6019. box-sizing:border-box;
  6020. width:100%;
  6021. }
  6022. #u86033_text {
  6023. border-width:0px;
  6024. word-wrap:break-word;
  6025. text-transform:none;
  6026. visibility:hidden;
  6027. }
  6028. #u86034_img {
  6029. border-width:0px;
  6030. position:absolute;
  6031. left:0px;
  6032. top:0px;
  6033. width:81px;
  6034. height:38px;
  6035. }
  6036. #u86034 {
  6037. border-width:0px;
  6038. position:absolute;
  6039. left:1053px;
  6040. top:118px;
  6041. width:81px;
  6042. height:38px;
  6043. display:flex;
  6044. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6045. font-weight:400;
  6046. font-style:normal;
  6047. font-size:12px;
  6048. color:#333333;
  6049. }
  6050. #u86034 .text {
  6051. position:absolute;
  6052. align-self:center;
  6053. padding:2px 2px 2px 0px;
  6054. box-sizing:border-box;
  6055. width:100%;
  6056. }
  6057. #u86034_text {
  6058. border-width:0px;
  6059. word-wrap:break-word;
  6060. text-transform:none;
  6061. visibility:hidden;
  6062. }
  6063. #u86035_img {
  6064. border-width:0px;
  6065. position:absolute;
  6066. left:0px;
  6067. top:0px;
  6068. width:81px;
  6069. height:38px;
  6070. }
  6071. #u86035 {
  6072. border-width:0px;
  6073. position:absolute;
  6074. left:1134px;
  6075. top:118px;
  6076. width:81px;
  6077. height:38px;
  6078. display:flex;
  6079. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6080. font-weight:400;
  6081. font-style:normal;
  6082. font-size:12px;
  6083. color:#333333;
  6084. }
  6085. #u86035 .text {
  6086. position:absolute;
  6087. align-self:center;
  6088. padding:2px 2px 2px 0px;
  6089. box-sizing:border-box;
  6090. width:100%;
  6091. }
  6092. #u86035_text {
  6093. border-width:0px;
  6094. word-wrap:break-word;
  6095. text-transform:none;
  6096. visibility:hidden;
  6097. }
  6098. #u86036_img {
  6099. border-width:0px;
  6100. position:absolute;
  6101. left:0px;
  6102. top:0px;
  6103. width:81px;
  6104. height:38px;
  6105. }
  6106. #u86036 {
  6107. border-width:0px;
  6108. position:absolute;
  6109. left:1215px;
  6110. top:118px;
  6111. width:81px;
  6112. height:38px;
  6113. display:flex;
  6114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6115. font-weight:400;
  6116. font-style:normal;
  6117. font-size:12px;
  6118. color:#333333;
  6119. }
  6120. #u86036 .text {
  6121. position:absolute;
  6122. align-self:center;
  6123. padding:2px 2px 2px 0px;
  6124. box-sizing:border-box;
  6125. width:100%;
  6126. }
  6127. #u86036_text {
  6128. border-width:0px;
  6129. word-wrap:break-word;
  6130. text-transform:none;
  6131. visibility:hidden;
  6132. }
  6133. #u86037_img {
  6134. border-width:0px;
  6135. position:absolute;
  6136. left:0px;
  6137. top:0px;
  6138. width:81px;
  6139. height:38px;
  6140. }
  6141. #u86037 {
  6142. border-width:0px;
  6143. position:absolute;
  6144. left:1296px;
  6145. top:118px;
  6146. width:81px;
  6147. height:38px;
  6148. display:flex;
  6149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6150. font-weight:400;
  6151. font-style:normal;
  6152. font-size:12px;
  6153. color:#333333;
  6154. }
  6155. #u86037 .text {
  6156. position:absolute;
  6157. align-self:center;
  6158. padding:2px 2px 2px 0px;
  6159. box-sizing:border-box;
  6160. width:100%;
  6161. }
  6162. #u86037_text {
  6163. border-width:0px;
  6164. word-wrap:break-word;
  6165. text-transform:none;
  6166. visibility:hidden;
  6167. }
  6168. #u86038_img {
  6169. border-width:0px;
  6170. position:absolute;
  6171. left:0px;
  6172. top:0px;
  6173. width:81px;
  6174. height:38px;
  6175. }
  6176. #u86038 {
  6177. border-width:0px;
  6178. position:absolute;
  6179. left:1377px;
  6180. top:118px;
  6181. width:81px;
  6182. height:38px;
  6183. display:flex;
  6184. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6185. font-weight:400;
  6186. font-style:normal;
  6187. font-size:12px;
  6188. color:#333333;
  6189. }
  6190. #u86038 .text {
  6191. position:absolute;
  6192. align-self:center;
  6193. padding:2px 2px 2px 0px;
  6194. box-sizing:border-box;
  6195. width:100%;
  6196. }
  6197. #u86038_text {
  6198. border-width:0px;
  6199. word-wrap:break-word;
  6200. text-transform:none;
  6201. visibility:hidden;
  6202. }
  6203. #u86039_img {
  6204. border-width:0px;
  6205. position:absolute;
  6206. left:0px;
  6207. top:0px;
  6208. width:81px;
  6209. height:38px;
  6210. }
  6211. #u86039 {
  6212. border-width:0px;
  6213. position:absolute;
  6214. left:1458px;
  6215. top:118px;
  6216. width:81px;
  6217. height:38px;
  6218. display:flex;
  6219. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6220. font-weight:400;
  6221. font-style:normal;
  6222. font-size:12px;
  6223. color:#333333;
  6224. }
  6225. #u86039 .text {
  6226. position:absolute;
  6227. align-self:center;
  6228. padding:2px 2px 2px 0px;
  6229. box-sizing:border-box;
  6230. width:100%;
  6231. }
  6232. #u86039_text {
  6233. border-width:0px;
  6234. word-wrap:break-word;
  6235. text-transform:none;
  6236. visibility:hidden;
  6237. }
  6238. #u86040_img {
  6239. border-width:0px;
  6240. position:absolute;
  6241. left:0px;
  6242. top:0px;
  6243. width:81px;
  6244. height:38px;
  6245. }
  6246. #u86040 {
  6247. border-width:0px;
  6248. position:absolute;
  6249. left:0px;
  6250. top:156px;
  6251. width:81px;
  6252. height:38px;
  6253. display:flex;
  6254. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6255. font-weight:400;
  6256. font-style:normal;
  6257. font-size:12px;
  6258. }
  6259. #u86040 .text {
  6260. position:absolute;
  6261. align-self:center;
  6262. padding:2px 2px 2px 0px;
  6263. box-sizing:border-box;
  6264. width:100%;
  6265. }
  6266. #u86040_text {
  6267. border-width:0px;
  6268. word-wrap:break-word;
  6269. text-transform:none;
  6270. visibility:hidden;
  6271. }
  6272. #u86041_img {
  6273. border-width:0px;
  6274. position:absolute;
  6275. left:0px;
  6276. top:0px;
  6277. width:81px;
  6278. height:38px;
  6279. }
  6280. #u86041 {
  6281. border-width:0px;
  6282. position:absolute;
  6283. left:81px;
  6284. top:156px;
  6285. width:81px;
  6286. height:38px;
  6287. display:flex;
  6288. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6289. font-weight:400;
  6290. font-style:normal;
  6291. font-size:12px;
  6292. color:#333333;
  6293. }
  6294. #u86041 .text {
  6295. position:absolute;
  6296. align-self:center;
  6297. padding:2px 2px 2px 0px;
  6298. box-sizing:border-box;
  6299. width:100%;
  6300. }
  6301. #u86041_text {
  6302. border-width:0px;
  6303. word-wrap:break-word;
  6304. text-transform:none;
  6305. }
  6306. #u86042_img {
  6307. border-width:0px;
  6308. position:absolute;
  6309. left:0px;
  6310. top:0px;
  6311. width:81px;
  6312. height:38px;
  6313. }
  6314. #u86042 {
  6315. border-width:0px;
  6316. position:absolute;
  6317. left:162px;
  6318. top:156px;
  6319. width:81px;
  6320. height:38px;
  6321. display:flex;
  6322. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6323. font-weight:400;
  6324. font-style:normal;
  6325. font-size:12px;
  6326. color:#333333;
  6327. }
  6328. #u86042 .text {
  6329. position:absolute;
  6330. align-self:center;
  6331. padding:2px 2px 2px 0px;
  6332. box-sizing:border-box;
  6333. width:100%;
  6334. }
  6335. #u86042_text {
  6336. border-width:0px;
  6337. word-wrap:break-word;
  6338. text-transform:none;
  6339. visibility:hidden;
  6340. }
  6341. #u86043_img {
  6342. border-width:0px;
  6343. position:absolute;
  6344. left:0px;
  6345. top:0px;
  6346. width:81px;
  6347. height:38px;
  6348. }
  6349. #u86043 {
  6350. border-width:0px;
  6351. position:absolute;
  6352. left:243px;
  6353. top:156px;
  6354. width:81px;
  6355. height:38px;
  6356. display:flex;
  6357. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6358. font-weight:400;
  6359. font-style:normal;
  6360. font-size:12px;
  6361. color:#333333;
  6362. }
  6363. #u86043 .text {
  6364. position:absolute;
  6365. align-self:center;
  6366. padding:2px 2px 2px 0px;
  6367. box-sizing:border-box;
  6368. width:100%;
  6369. }
  6370. #u86043_text {
  6371. border-width:0px;
  6372. word-wrap:break-word;
  6373. text-transform:none;
  6374. visibility:hidden;
  6375. }
  6376. #u86044_img {
  6377. border-width:0px;
  6378. position:absolute;
  6379. left:0px;
  6380. top:0px;
  6381. width:81px;
  6382. height:38px;
  6383. }
  6384. #u86044 {
  6385. border-width:0px;
  6386. position:absolute;
  6387. left:324px;
  6388. top:156px;
  6389. width:81px;
  6390. height:38px;
  6391. display:flex;
  6392. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6393. font-weight:400;
  6394. font-style:normal;
  6395. font-size:12px;
  6396. color:#333333;
  6397. }
  6398. #u86044 .text {
  6399. position:absolute;
  6400. align-self:center;
  6401. padding:2px 2px 2px 0px;
  6402. box-sizing:border-box;
  6403. width:100%;
  6404. }
  6405. #u86044_text {
  6406. border-width:0px;
  6407. word-wrap:break-word;
  6408. text-transform:none;
  6409. visibility:hidden;
  6410. }
  6411. #u86045_img {
  6412. border-width:0px;
  6413. position:absolute;
  6414. left:0px;
  6415. top:0px;
  6416. width:81px;
  6417. height:38px;
  6418. }
  6419. #u86045 {
  6420. border-width:0px;
  6421. position:absolute;
  6422. left:405px;
  6423. top:156px;
  6424. width:81px;
  6425. height:38px;
  6426. display:flex;
  6427. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6428. font-weight:400;
  6429. font-style:normal;
  6430. font-size:12px;
  6431. color:#333333;
  6432. }
  6433. #u86045 .text {
  6434. position:absolute;
  6435. align-self:center;
  6436. padding:2px 2px 2px 0px;
  6437. box-sizing:border-box;
  6438. width:100%;
  6439. }
  6440. #u86045_text {
  6441. border-width:0px;
  6442. word-wrap:break-word;
  6443. text-transform:none;
  6444. visibility:hidden;
  6445. }
  6446. #u86046_img {
  6447. border-width:0px;
  6448. position:absolute;
  6449. left:0px;
  6450. top:0px;
  6451. width:81px;
  6452. height:38px;
  6453. }
  6454. #u86046 {
  6455. border-width:0px;
  6456. position:absolute;
  6457. left:486px;
  6458. top:156px;
  6459. width:81px;
  6460. height:38px;
  6461. display:flex;
  6462. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6463. font-weight:400;
  6464. font-style:normal;
  6465. font-size:12px;
  6466. color:#333333;
  6467. }
  6468. #u86046 .text {
  6469. position:absolute;
  6470. align-self:center;
  6471. padding:2px 2px 2px 0px;
  6472. box-sizing:border-box;
  6473. width:100%;
  6474. }
  6475. #u86046_text {
  6476. border-width:0px;
  6477. word-wrap:break-word;
  6478. text-transform:none;
  6479. visibility:hidden;
  6480. }
  6481. #u86047_img {
  6482. border-width:0px;
  6483. position:absolute;
  6484. left:0px;
  6485. top:0px;
  6486. width:81px;
  6487. height:38px;
  6488. }
  6489. #u86047 {
  6490. border-width:0px;
  6491. position:absolute;
  6492. left:567px;
  6493. top:156px;
  6494. width:81px;
  6495. height:38px;
  6496. display:flex;
  6497. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6498. font-weight:400;
  6499. font-style:normal;
  6500. font-size:12px;
  6501. color:#333333;
  6502. }
  6503. #u86047 .text {
  6504. position:absolute;
  6505. align-self:center;
  6506. padding:2px 2px 2px 0px;
  6507. box-sizing:border-box;
  6508. width:100%;
  6509. }
  6510. #u86047_text {
  6511. border-width:0px;
  6512. word-wrap:break-word;
  6513. text-transform:none;
  6514. visibility:hidden;
  6515. }
  6516. #u86048_img {
  6517. border-width:0px;
  6518. position:absolute;
  6519. left:0px;
  6520. top:0px;
  6521. width:81px;
  6522. height:38px;
  6523. }
  6524. #u86048 {
  6525. border-width:0px;
  6526. position:absolute;
  6527. left:648px;
  6528. top:156px;
  6529. width:81px;
  6530. height:38px;
  6531. display:flex;
  6532. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6533. font-weight:400;
  6534. font-style:normal;
  6535. font-size:12px;
  6536. color:#333333;
  6537. }
  6538. #u86048 .text {
  6539. position:absolute;
  6540. align-self:center;
  6541. padding:2px 2px 2px 0px;
  6542. box-sizing:border-box;
  6543. width:100%;
  6544. }
  6545. #u86048_text {
  6546. border-width:0px;
  6547. word-wrap:break-word;
  6548. text-transform:none;
  6549. visibility:hidden;
  6550. }
  6551. #u86049_img {
  6552. border-width:0px;
  6553. position:absolute;
  6554. left:0px;
  6555. top:0px;
  6556. width:81px;
  6557. height:38px;
  6558. }
  6559. #u86049 {
  6560. border-width:0px;
  6561. position:absolute;
  6562. left:729px;
  6563. top:156px;
  6564. width:81px;
  6565. height:38px;
  6566. display:flex;
  6567. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6568. font-weight:400;
  6569. font-style:normal;
  6570. font-size:12px;
  6571. color:#333333;
  6572. }
  6573. #u86049 .text {
  6574. position:absolute;
  6575. align-self:center;
  6576. padding:2px 2px 2px 0px;
  6577. box-sizing:border-box;
  6578. width:100%;
  6579. }
  6580. #u86049_text {
  6581. border-width:0px;
  6582. word-wrap:break-word;
  6583. text-transform:none;
  6584. visibility:hidden;
  6585. }
  6586. #u86050_img {
  6587. border-width:0px;
  6588. position:absolute;
  6589. left:0px;
  6590. top:0px;
  6591. width:81px;
  6592. height:38px;
  6593. }
  6594. #u86050 {
  6595. border-width:0px;
  6596. position:absolute;
  6597. left:810px;
  6598. top:156px;
  6599. width:81px;
  6600. height:38px;
  6601. display:flex;
  6602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6603. font-weight:400;
  6604. font-style:normal;
  6605. font-size:12px;
  6606. color:#333333;
  6607. }
  6608. #u86050 .text {
  6609. position:absolute;
  6610. align-self:center;
  6611. padding:2px 2px 2px 0px;
  6612. box-sizing:border-box;
  6613. width:100%;
  6614. }
  6615. #u86050_text {
  6616. border-width:0px;
  6617. word-wrap:break-word;
  6618. text-transform:none;
  6619. visibility:hidden;
  6620. }
  6621. #u86051_img {
  6622. border-width:0px;
  6623. position:absolute;
  6624. left:0px;
  6625. top:0px;
  6626. width:81px;
  6627. height:38px;
  6628. }
  6629. #u86051 {
  6630. border-width:0px;
  6631. position:absolute;
  6632. left:891px;
  6633. top:156px;
  6634. width:81px;
  6635. height:38px;
  6636. display:flex;
  6637. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6638. font-weight:400;
  6639. font-style:normal;
  6640. font-size:12px;
  6641. color:#333333;
  6642. }
  6643. #u86051 .text {
  6644. position:absolute;
  6645. align-self:center;
  6646. padding:2px 2px 2px 0px;
  6647. box-sizing:border-box;
  6648. width:100%;
  6649. }
  6650. #u86051_text {
  6651. border-width:0px;
  6652. word-wrap:break-word;
  6653. text-transform:none;
  6654. visibility:hidden;
  6655. }
  6656. #u86052_img {
  6657. border-width:0px;
  6658. position:absolute;
  6659. left:0px;
  6660. top:0px;
  6661. width:81px;
  6662. height:38px;
  6663. }
  6664. #u86052 {
  6665. border-width:0px;
  6666. position:absolute;
  6667. left:972px;
  6668. top:156px;
  6669. width:81px;
  6670. height:38px;
  6671. display:flex;
  6672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6673. font-weight:400;
  6674. font-style:normal;
  6675. font-size:12px;
  6676. color:#333333;
  6677. }
  6678. #u86052 .text {
  6679. position:absolute;
  6680. align-self:center;
  6681. padding:2px 2px 2px 0px;
  6682. box-sizing:border-box;
  6683. width:100%;
  6684. }
  6685. #u86052_text {
  6686. border-width:0px;
  6687. word-wrap:break-word;
  6688. text-transform:none;
  6689. visibility:hidden;
  6690. }
  6691. #u86053_img {
  6692. border-width:0px;
  6693. position:absolute;
  6694. left:0px;
  6695. top:0px;
  6696. width:81px;
  6697. height:38px;
  6698. }
  6699. #u86053 {
  6700. border-width:0px;
  6701. position:absolute;
  6702. left:1053px;
  6703. top:156px;
  6704. width:81px;
  6705. height:38px;
  6706. display:flex;
  6707. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6708. font-weight:400;
  6709. font-style:normal;
  6710. font-size:12px;
  6711. color:#333333;
  6712. }
  6713. #u86053 .text {
  6714. position:absolute;
  6715. align-self:center;
  6716. padding:2px 2px 2px 0px;
  6717. box-sizing:border-box;
  6718. width:100%;
  6719. }
  6720. #u86053_text {
  6721. border-width:0px;
  6722. word-wrap:break-word;
  6723. text-transform:none;
  6724. visibility:hidden;
  6725. }
  6726. #u86054_img {
  6727. border-width:0px;
  6728. position:absolute;
  6729. left:0px;
  6730. top:0px;
  6731. width:81px;
  6732. height:38px;
  6733. }
  6734. #u86054 {
  6735. border-width:0px;
  6736. position:absolute;
  6737. left:1134px;
  6738. top:156px;
  6739. width:81px;
  6740. height:38px;
  6741. display:flex;
  6742. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6743. font-weight:400;
  6744. font-style:normal;
  6745. font-size:12px;
  6746. color:#333333;
  6747. }
  6748. #u86054 .text {
  6749. position:absolute;
  6750. align-self:center;
  6751. padding:2px 2px 2px 0px;
  6752. box-sizing:border-box;
  6753. width:100%;
  6754. }
  6755. #u86054_text {
  6756. border-width:0px;
  6757. word-wrap:break-word;
  6758. text-transform:none;
  6759. visibility:hidden;
  6760. }
  6761. #u86055_img {
  6762. border-width:0px;
  6763. position:absolute;
  6764. left:0px;
  6765. top:0px;
  6766. width:81px;
  6767. height:38px;
  6768. }
  6769. #u86055 {
  6770. border-width:0px;
  6771. position:absolute;
  6772. left:1215px;
  6773. top:156px;
  6774. width:81px;
  6775. height:38px;
  6776. display:flex;
  6777. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6778. font-weight:400;
  6779. font-style:normal;
  6780. font-size:12px;
  6781. color:#333333;
  6782. }
  6783. #u86055 .text {
  6784. position:absolute;
  6785. align-self:center;
  6786. padding:2px 2px 2px 0px;
  6787. box-sizing:border-box;
  6788. width:100%;
  6789. }
  6790. #u86055_text {
  6791. border-width:0px;
  6792. word-wrap:break-word;
  6793. text-transform:none;
  6794. visibility:hidden;
  6795. }
  6796. #u86056_img {
  6797. border-width:0px;
  6798. position:absolute;
  6799. left:0px;
  6800. top:0px;
  6801. width:81px;
  6802. height:38px;
  6803. }
  6804. #u86056 {
  6805. border-width:0px;
  6806. position:absolute;
  6807. left:1296px;
  6808. top:156px;
  6809. width:81px;
  6810. height:38px;
  6811. display:flex;
  6812. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6813. font-weight:400;
  6814. font-style:normal;
  6815. font-size:12px;
  6816. color:#333333;
  6817. }
  6818. #u86056 .text {
  6819. position:absolute;
  6820. align-self:center;
  6821. padding:2px 2px 2px 0px;
  6822. box-sizing:border-box;
  6823. width:100%;
  6824. }
  6825. #u86056_text {
  6826. border-width:0px;
  6827. word-wrap:break-word;
  6828. text-transform:none;
  6829. visibility:hidden;
  6830. }
  6831. #u86057_img {
  6832. border-width:0px;
  6833. position:absolute;
  6834. left:0px;
  6835. top:0px;
  6836. width:81px;
  6837. height:38px;
  6838. }
  6839. #u86057 {
  6840. border-width:0px;
  6841. position:absolute;
  6842. left:1377px;
  6843. top:156px;
  6844. width:81px;
  6845. height:38px;
  6846. display:flex;
  6847. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6848. font-weight:400;
  6849. font-style:normal;
  6850. font-size:12px;
  6851. color:#333333;
  6852. }
  6853. #u86057 .text {
  6854. position:absolute;
  6855. align-self:center;
  6856. padding:2px 2px 2px 0px;
  6857. box-sizing:border-box;
  6858. width:100%;
  6859. }
  6860. #u86057_text {
  6861. border-width:0px;
  6862. word-wrap:break-word;
  6863. text-transform:none;
  6864. visibility:hidden;
  6865. }
  6866. #u86058_img {
  6867. border-width:0px;
  6868. position:absolute;
  6869. left:0px;
  6870. top:0px;
  6871. width:81px;
  6872. height:38px;
  6873. }
  6874. #u86058 {
  6875. border-width:0px;
  6876. position:absolute;
  6877. left:1458px;
  6878. top:156px;
  6879. width:81px;
  6880. height:38px;
  6881. display:flex;
  6882. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6883. font-weight:400;
  6884. font-style:normal;
  6885. font-size:12px;
  6886. color:#333333;
  6887. }
  6888. #u86058 .text {
  6889. position:absolute;
  6890. align-self:center;
  6891. padding:2px 2px 2px 0px;
  6892. box-sizing:border-box;
  6893. width:100%;
  6894. }
  6895. #u86058_text {
  6896. border-width:0px;
  6897. word-wrap:break-word;
  6898. text-transform:none;
  6899. visibility:hidden;
  6900. }
  6901. #u86059 {
  6902. border-width:0px;
  6903. position:absolute;
  6904. left:0px;
  6905. top:0px;
  6906. width:0px;
  6907. height:0px;
  6908. }
  6909. #u86060 {
  6910. border-width:0px;
  6911. position:absolute;
  6912. left:512px;
  6913. top:200px;
  6914. width:405px;
  6915. height:40px;
  6916. }
  6917. #u86061_img {
  6918. border-width:0px;
  6919. position:absolute;
  6920. left:0px;
  6921. top:0px;
  6922. width:81px;
  6923. height:40px;
  6924. }
  6925. #u86061 {
  6926. border-width:0px;
  6927. position:absolute;
  6928. left:0px;
  6929. top:0px;
  6930. width:81px;
  6931. height:40px;
  6932. display:flex;
  6933. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6934. font-weight:400;
  6935. font-style:normal;
  6936. font-size:12px;
  6937. color:#FFFFFF;
  6938. }
  6939. #u86061 .text {
  6940. position:absolute;
  6941. align-self:center;
  6942. padding:2px 2px 2px 0px;
  6943. box-sizing:border-box;
  6944. width:100%;
  6945. }
  6946. #u86061_text {
  6947. border-width:0px;
  6948. word-wrap:break-word;
  6949. text-transform:none;
  6950. }
  6951. #u86062_img {
  6952. border-width:0px;
  6953. position:absolute;
  6954. left:0px;
  6955. top:0px;
  6956. width:81px;
  6957. height:40px;
  6958. }
  6959. #u86062 {
  6960. border-width:0px;
  6961. position:absolute;
  6962. left:81px;
  6963. top:0px;
  6964. width:81px;
  6965. height:40px;
  6966. display:flex;
  6967. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6968. font-weight:400;
  6969. font-style:normal;
  6970. font-size:12px;
  6971. color:#FFFFFF;
  6972. }
  6973. #u86062 .text {
  6974. position:absolute;
  6975. align-self:center;
  6976. padding:2px 2px 2px 0px;
  6977. box-sizing:border-box;
  6978. width:100%;
  6979. }
  6980. #u86062_text {
  6981. border-width:0px;
  6982. word-wrap:break-word;
  6983. text-transform:none;
  6984. }
  6985. #u86063_img {
  6986. border-width:0px;
  6987. position:absolute;
  6988. left:0px;
  6989. top:0px;
  6990. width:81px;
  6991. height:40px;
  6992. }
  6993. #u86063 {
  6994. border-width:0px;
  6995. position:absolute;
  6996. left:162px;
  6997. top:0px;
  6998. width:81px;
  6999. height:40px;
  7000. display:flex;
  7001. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7002. font-weight:400;
  7003. font-style:normal;
  7004. font-size:12px;
  7005. color:#FFFFFF;
  7006. }
  7007. #u86063 .text {
  7008. position:absolute;
  7009. align-self:center;
  7010. padding:2px 2px 2px 0px;
  7011. box-sizing:border-box;
  7012. width:100%;
  7013. }
  7014. #u86063_text {
  7015. border-width:0px;
  7016. word-wrap:break-word;
  7017. text-transform:none;
  7018. }
  7019. #u86064_img {
  7020. border-width:0px;
  7021. position:absolute;
  7022. left:0px;
  7023. top:0px;
  7024. width:81px;
  7025. height:40px;
  7026. }
  7027. #u86064 {
  7028. border-width:0px;
  7029. position:absolute;
  7030. left:243px;
  7031. top:0px;
  7032. width:81px;
  7033. height:40px;
  7034. display:flex;
  7035. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7036. font-weight:400;
  7037. font-style:normal;
  7038. font-size:12px;
  7039. color:#FFFFFF;
  7040. }
  7041. #u86064 .text {
  7042. position:absolute;
  7043. align-self:center;
  7044. padding:2px 2px 2px 0px;
  7045. box-sizing:border-box;
  7046. width:100%;
  7047. }
  7048. #u86064_text {
  7049. border-width:0px;
  7050. word-wrap:break-word;
  7051. text-transform:none;
  7052. }
  7053. #u86065_img {
  7054. border-width:0px;
  7055. position:absolute;
  7056. left:0px;
  7057. top:0px;
  7058. width:81px;
  7059. height:40px;
  7060. }
  7061. #u86065 {
  7062. border-width:0px;
  7063. position:absolute;
  7064. left:324px;
  7065. top:0px;
  7066. width:81px;
  7067. height:40px;
  7068. display:flex;
  7069. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7070. font-weight:400;
  7071. font-style:normal;
  7072. font-size:12px;
  7073. color:#FFFFFF;
  7074. }
  7075. #u86065 .text {
  7076. position:absolute;
  7077. align-self:center;
  7078. padding:2px 2px 2px 0px;
  7079. box-sizing:border-box;
  7080. width:100%;
  7081. }
  7082. #u86065_text {
  7083. border-width:0px;
  7084. word-wrap:break-word;
  7085. text-transform:none;
  7086. }
  7087. #u86066_div {
  7088. border-width:0px;
  7089. position:absolute;
  7090. left:0px;
  7091. top:0px;
  7092. width:405px;
  7093. height:40px;
  7094. background:inherit;
  7095. background-color:rgba(51, 51, 51, 1);
  7096. box-sizing:border-box;
  7097. border-width:1px;
  7098. border-style:solid;
  7099. border-color:rgba(170, 170, 170, 1);
  7100. border-radius:0px;
  7101. -moz-box-shadow:none;
  7102. -webkit-box-shadow:none;
  7103. box-shadow:none;
  7104. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7105. font-weight:400;
  7106. font-style:normal;
  7107. font-size:12px;
  7108. color:#FFFFFF;
  7109. }
  7110. #u86066 {
  7111. border-width:0px;
  7112. position:absolute;
  7113. left:512px;
  7114. top:160px;
  7115. width:405px;
  7116. height:40px;
  7117. display:flex;
  7118. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7119. font-weight:400;
  7120. font-style:normal;
  7121. font-size:12px;
  7122. color:#FFFFFF;
  7123. }
  7124. #u86066 .text {
  7125. position:absolute;
  7126. align-self:center;
  7127. padding:2px 2px 2px 2px;
  7128. box-sizing:border-box;
  7129. width:100%;
  7130. }
  7131. #u86066_text {
  7132. border-width:0px;
  7133. word-wrap:break-word;
  7134. text-transform:none;
  7135. }
  7136. #u86067 {
  7137. border-width:0px;
  7138. position:absolute;
  7139. left:0px;
  7140. top:0px;
  7141. width:0px;
  7142. height:0px;
  7143. }
  7144. #u86068 {
  7145. border-width:0px;
  7146. position:absolute;
  7147. left:917px;
  7148. top:200px;
  7149. width:405px;
  7150. height:40px;
  7151. }
  7152. #u86069_img {
  7153. border-width:0px;
  7154. position:absolute;
  7155. left:0px;
  7156. top:0px;
  7157. width:81px;
  7158. height:40px;
  7159. }
  7160. #u86069 {
  7161. border-width:0px;
  7162. position:absolute;
  7163. left:0px;
  7164. top:0px;
  7165. width:81px;
  7166. height:40px;
  7167. display:flex;
  7168. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7169. font-weight:400;
  7170. font-style:normal;
  7171. font-size:12px;
  7172. color:#FFFFFF;
  7173. }
  7174. #u86069 .text {
  7175. position:absolute;
  7176. align-self:center;
  7177. padding:2px 2px 2px 0px;
  7178. box-sizing:border-box;
  7179. width:100%;
  7180. }
  7181. #u86069_text {
  7182. border-width:0px;
  7183. word-wrap:break-word;
  7184. text-transform:none;
  7185. }
  7186. #u86070_img {
  7187. border-width:0px;
  7188. position:absolute;
  7189. left:0px;
  7190. top:0px;
  7191. width:81px;
  7192. height:40px;
  7193. }
  7194. #u86070 {
  7195. border-width:0px;
  7196. position:absolute;
  7197. left:81px;
  7198. top:0px;
  7199. width:81px;
  7200. height:40px;
  7201. display:flex;
  7202. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7203. font-weight:400;
  7204. font-style:normal;
  7205. font-size:12px;
  7206. color:#FFFFFF;
  7207. }
  7208. #u86070 .text {
  7209. position:absolute;
  7210. align-self:center;
  7211. padding:2px 2px 2px 0px;
  7212. box-sizing:border-box;
  7213. width:100%;
  7214. }
  7215. #u86070_text {
  7216. border-width:0px;
  7217. word-wrap:break-word;
  7218. text-transform:none;
  7219. }
  7220. #u86071_img {
  7221. border-width:0px;
  7222. position:absolute;
  7223. left:0px;
  7224. top:0px;
  7225. width:81px;
  7226. height:40px;
  7227. }
  7228. #u86071 {
  7229. border-width:0px;
  7230. position:absolute;
  7231. left:162px;
  7232. top:0px;
  7233. width:81px;
  7234. height:40px;
  7235. display:flex;
  7236. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7237. font-weight:400;
  7238. font-style:normal;
  7239. font-size:12px;
  7240. color:#FFFFFF;
  7241. }
  7242. #u86071 .text {
  7243. position:absolute;
  7244. align-self:center;
  7245. padding:2px 2px 2px 0px;
  7246. box-sizing:border-box;
  7247. width:100%;
  7248. }
  7249. #u86071_text {
  7250. border-width:0px;
  7251. word-wrap:break-word;
  7252. text-transform:none;
  7253. }
  7254. #u86072_img {
  7255. border-width:0px;
  7256. position:absolute;
  7257. left:0px;
  7258. top:0px;
  7259. width:81px;
  7260. height:40px;
  7261. }
  7262. #u86072 {
  7263. border-width:0px;
  7264. position:absolute;
  7265. left:243px;
  7266. top:0px;
  7267. width:81px;
  7268. height:40px;
  7269. display:flex;
  7270. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7271. font-weight:400;
  7272. font-style:normal;
  7273. font-size:12px;
  7274. color:#FFFFFF;
  7275. }
  7276. #u86072 .text {
  7277. position:absolute;
  7278. align-self:center;
  7279. padding:2px 2px 2px 0px;
  7280. box-sizing:border-box;
  7281. width:100%;
  7282. }
  7283. #u86072_text {
  7284. border-width:0px;
  7285. word-wrap:break-word;
  7286. text-transform:none;
  7287. }
  7288. #u86073_img {
  7289. border-width:0px;
  7290. position:absolute;
  7291. left:0px;
  7292. top:0px;
  7293. width:81px;
  7294. height:40px;
  7295. }
  7296. #u86073 {
  7297. border-width:0px;
  7298. position:absolute;
  7299. left:324px;
  7300. top:0px;
  7301. width:81px;
  7302. height:40px;
  7303. display:flex;
  7304. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7305. font-weight:400;
  7306. font-style:normal;
  7307. font-size:12px;
  7308. color:#FFFFFF;
  7309. }
  7310. #u86073 .text {
  7311. position:absolute;
  7312. align-self:center;
  7313. padding:2px 2px 2px 0px;
  7314. box-sizing:border-box;
  7315. width:100%;
  7316. }
  7317. #u86073_text {
  7318. border-width:0px;
  7319. word-wrap:break-word;
  7320. text-transform:none;
  7321. }
  7322. #u86074_div {
  7323. border-width:0px;
  7324. position:absolute;
  7325. left:0px;
  7326. top:0px;
  7327. width:405px;
  7328. height:40px;
  7329. background:inherit;
  7330. background-color:rgba(51, 51, 51, 1);
  7331. box-sizing:border-box;
  7332. border-width:1px;
  7333. border-style:solid;
  7334. border-color:rgba(170, 170, 170, 1);
  7335. border-radius:0px;
  7336. -moz-box-shadow:none;
  7337. -webkit-box-shadow:none;
  7338. box-shadow:none;
  7339. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7340. font-weight:400;
  7341. font-style:normal;
  7342. font-size:12px;
  7343. color:#FFFFFF;
  7344. }
  7345. #u86074 {
  7346. border-width:0px;
  7347. position:absolute;
  7348. left:917px;
  7349. top:160px;
  7350. width:405px;
  7351. height:40px;
  7352. display:flex;
  7353. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7354. font-weight:400;
  7355. font-style:normal;
  7356. font-size:12px;
  7357. color:#FFFFFF;
  7358. }
  7359. #u86074 .text {
  7360. position:absolute;
  7361. align-self:center;
  7362. padding:2px 2px 2px 2px;
  7363. box-sizing:border-box;
  7364. width:100%;
  7365. }
  7366. #u86074_text {
  7367. border-width:0px;
  7368. word-wrap:break-word;
  7369. text-transform:none;
  7370. }
  7371. #u86075 {
  7372. border-width:0px;
  7373. position:absolute;
  7374. left:0px;
  7375. top:0px;
  7376. width:0px;
  7377. height:0px;
  7378. }
  7379. #u86076 {
  7380. border-width:0px;
  7381. position:absolute;
  7382. left:1322px;
  7383. top:200px;
  7384. width:243px;
  7385. height:40px;
  7386. }
  7387. #u86077_img {
  7388. border-width:0px;
  7389. position:absolute;
  7390. left:0px;
  7391. top:0px;
  7392. width:81px;
  7393. height:40px;
  7394. }
  7395. #u86077 {
  7396. border-width:0px;
  7397. position:absolute;
  7398. left:0px;
  7399. top:0px;
  7400. width:81px;
  7401. height:40px;
  7402. display:flex;
  7403. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7404. font-weight:400;
  7405. font-style:normal;
  7406. font-size:12px;
  7407. color:#FFFFFF;
  7408. }
  7409. #u86077 .text {
  7410. position:absolute;
  7411. align-self:center;
  7412. padding:2px 2px 2px 0px;
  7413. box-sizing:border-box;
  7414. width:100%;
  7415. }
  7416. #u86077_text {
  7417. border-width:0px;
  7418. word-wrap:break-word;
  7419. text-transform:none;
  7420. }
  7421. #u86078_img {
  7422. border-width:0px;
  7423. position:absolute;
  7424. left:0px;
  7425. top:0px;
  7426. width:81px;
  7427. height:40px;
  7428. }
  7429. #u86078 {
  7430. border-width:0px;
  7431. position:absolute;
  7432. left:81px;
  7433. top:0px;
  7434. width:81px;
  7435. height:40px;
  7436. display:flex;
  7437. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7438. font-weight:400;
  7439. font-style:normal;
  7440. font-size:12px;
  7441. color:#FFFFFF;
  7442. }
  7443. #u86078 .text {
  7444. position:absolute;
  7445. align-self:center;
  7446. padding:2px 2px 2px 0px;
  7447. box-sizing:border-box;
  7448. width:100%;
  7449. }
  7450. #u86078_text {
  7451. border-width:0px;
  7452. word-wrap:break-word;
  7453. text-transform:none;
  7454. }
  7455. #u86079_img {
  7456. border-width:0px;
  7457. position:absolute;
  7458. left:0px;
  7459. top:0px;
  7460. width:81px;
  7461. height:40px;
  7462. }
  7463. #u86079 {
  7464. border-width:0px;
  7465. position:absolute;
  7466. left:162px;
  7467. top:0px;
  7468. width:81px;
  7469. height:40px;
  7470. display:flex;
  7471. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7472. font-weight:400;
  7473. font-style:normal;
  7474. font-size:12px;
  7475. color:#FFFFFF;
  7476. }
  7477. #u86079 .text {
  7478. position:absolute;
  7479. align-self:center;
  7480. padding:2px 2px 2px 0px;
  7481. box-sizing:border-box;
  7482. width:100%;
  7483. }
  7484. #u86079_text {
  7485. border-width:0px;
  7486. word-wrap:break-word;
  7487. text-transform:none;
  7488. }
  7489. #u86080_div {
  7490. border-width:0px;
  7491. position:absolute;
  7492. left:0px;
  7493. top:0px;
  7494. width:243px;
  7495. height:40px;
  7496. background:inherit;
  7497. background-color:rgba(51, 51, 51, 1);
  7498. box-sizing:border-box;
  7499. border-width:1px;
  7500. border-style:solid;
  7501. border-color:rgba(170, 170, 170, 1);
  7502. border-radius:0px;
  7503. -moz-box-shadow:none;
  7504. -webkit-box-shadow:none;
  7505. box-shadow:none;
  7506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7507. font-weight:400;
  7508. font-style:normal;
  7509. font-size:12px;
  7510. color:#FFFFFF;
  7511. }
  7512. #u86080 {
  7513. border-width:0px;
  7514. position:absolute;
  7515. left:1322px;
  7516. top:160px;
  7517. width:243px;
  7518. height:40px;
  7519. display:flex;
  7520. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7521. font-weight:400;
  7522. font-style:normal;
  7523. font-size:12px;
  7524. color:#FFFFFF;
  7525. }
  7526. #u86080 .text {
  7527. position:absolute;
  7528. align-self:center;
  7529. padding:2px 2px 2px 2px;
  7530. box-sizing:border-box;
  7531. width:100%;
  7532. }
  7533. #u86080_text {
  7534. border-width:0px;
  7535. word-wrap:break-word;
  7536. text-transform:none;
  7537. }