styles.css 149 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-94px;
  6. width:2048px;
  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. #u86363 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u86364_div {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:455px;
  33. height:160px;
  34. background:inherit;
  35. background-color:rgba(255, 255, 255, 1);
  36. box-sizing:border-box;
  37. border-width:1px;
  38. border-style:solid;
  39. border-color:rgba(204, 204, 204, 1);
  40. border-radius:0px;
  41. -moz-box-shadow:none;
  42. -webkit-box-shadow:none;
  43. box-shadow:none;
  44. font-family:'Microsoft YaHei', sans-serif;
  45. font-weight:400;
  46. font-style:normal;
  47. }
  48. #u86364 {
  49. border-width:0px;
  50. position:absolute;
  51. left:897px;
  52. top:1496px;
  53. width:455px;
  54. height:160px;
  55. display:flex;
  56. font-family:'Microsoft YaHei', sans-serif;
  57. font-weight:400;
  58. font-style:normal;
  59. }
  60. #u86364 .text {
  61. position:absolute;
  62. align-self:center;
  63. padding:2px 2px 2px 2px;
  64. box-sizing:border-box;
  65. width:100%;
  66. }
  67. #u86364_text {
  68. border-width:0px;
  69. word-wrap:break-word;
  70. text-transform:none;
  71. visibility:hidden;
  72. }
  73. #u86365_div {
  74. border-width:0px;
  75. position:absolute;
  76. left:0px;
  77. top:0px;
  78. width:163px;
  79. height:21px;
  80. background:inherit;
  81. background-color:rgba(255, 255, 255, 0);
  82. border:none;
  83. border-radius:0px;
  84. -moz-box-shadow:none;
  85. -webkit-box-shadow:none;
  86. box-shadow:none;
  87. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  88. font-weight:650;
  89. font-style:normal;
  90. font-size:18px;
  91. color:#000000;
  92. line-height:22px;
  93. }
  94. #u86365 {
  95. border-width:0px;
  96. position:absolute;
  97. left:957px;
  98. top:1531px;
  99. width:163px;
  100. height:21px;
  101. display:flex;
  102. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  103. font-weight:650;
  104. font-style:normal;
  105. font-size:18px;
  106. color:#000000;
  107. line-height:22px;
  108. }
  109. #u86365 .text {
  110. position:absolute;
  111. align-self:flex-start;
  112. padding:0px 0px 0px 0px;
  113. box-sizing:border-box;
  114. width:100%;
  115. }
  116. #u86365_text {
  117. border-width:0px;
  118. white-space:nowrap;
  119. text-transform:none;
  120. }
  121. #u86366_div {
  122. border-width:0px;
  123. position:absolute;
  124. left:0px;
  125. top:0px;
  126. width:61px;
  127. height:32px;
  128. background:inherit;
  129. background-color:rgba(24, 144, 255, 1);
  130. border:none;
  131. border-radius:4px;
  132. -moz-box-shadow:none;
  133. -webkit-box-shadow:none;
  134. box-shadow:none;
  135. font-family:'Microsoft YaHei', sans-serif;
  136. font-weight:400;
  137. font-style:normal;
  138. font-size:14px;
  139. color:#FFFFFF;
  140. }
  141. #u86366 {
  142. border-width:0px;
  143. position:absolute;
  144. left:1268px;
  145. top:1607px;
  146. width:61px;
  147. height:32px;
  148. display:flex;
  149. font-family:'Microsoft YaHei', sans-serif;
  150. font-weight:400;
  151. font-style:normal;
  152. font-size:14px;
  153. color:#FFFFFF;
  154. }
  155. #u86366 .text {
  156. position:absolute;
  157. align-self:center;
  158. padding:2px 16px 2px 16px;
  159. box-sizing:border-box;
  160. width:100%;
  161. }
  162. #u86366_text {
  163. border-width:0px;
  164. white-space:nowrap;
  165. text-transform:none;
  166. }
  167. #u86367_div {
  168. border-width:0px;
  169. position:absolute;
  170. left:0px;
  171. top:0px;
  172. width:66px;
  173. height:32px;
  174. background:inherit;
  175. background-color:rgba(255, 255, 255, 1);
  176. box-sizing:border-box;
  177. border-width:1px;
  178. border-style:solid;
  179. border-color:rgba(217, 217, 217, 1);
  180. border-radius:4px;
  181. -moz-box-shadow:none;
  182. -webkit-box-shadow:none;
  183. box-shadow:none;
  184. font-family:'Microsoft YaHei', sans-serif;
  185. font-weight:400;
  186. font-style:normal;
  187. font-size:14px;
  188. color:rgba(0, 0, 0, 0.647058823529412);
  189. line-height:21px;
  190. }
  191. #u86367 {
  192. border-width:0px;
  193. position:absolute;
  194. left:1186px;
  195. top:1607px;
  196. width:66px;
  197. height:32px;
  198. display:flex;
  199. font-family:'Microsoft YaHei', sans-serif;
  200. font-weight:400;
  201. font-style:normal;
  202. font-size:14px;
  203. color:rgba(0, 0, 0, 0.647058823529412);
  204. line-height:21px;
  205. }
  206. #u86367 .text {
  207. position:absolute;
  208. align-self:center;
  209. padding:2px 16px 2px 16px;
  210. box-sizing:border-box;
  211. width:100%;
  212. }
  213. #u86367_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u86368_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:24px;
  224. height:24px;
  225. }
  226. #u86368 {
  227. border-width:0px;
  228. position:absolute;
  229. left:921px;
  230. top:1529px;
  231. width:24px;
  232. height:24px;
  233. display:flex;
  234. font-family:'Microsoft YaHei', sans-serif;
  235. font-weight:400;
  236. font-style:normal;
  237. font-size:52px;
  238. color:#FAAD14;
  239. }
  240. #u86368 .text {
  241. position:absolute;
  242. align-self:center;
  243. padding:2px 2px 2px 2px;
  244. box-sizing:border-box;
  245. width:100%;
  246. }
  247. #u86368_text {
  248. border-width:0px;
  249. word-wrap:break-word;
  250. text-transform:none;
  251. visibility:hidden;
  252. }
  253. #u86369_div {
  254. border-width:0px;
  255. position:absolute;
  256. left:0px;
  257. top:0px;
  258. width:372px;
  259. height:44px;
  260. background:inherit;
  261. background-color:rgba(255, 255, 255, 0);
  262. border:none;
  263. border-radius:0px;
  264. -moz-box-shadow:none;
  265. -webkit-box-shadow:none;
  266. box-shadow:none;
  267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  268. font-weight:400;
  269. font-style:normal;
  270. font-size:12px;
  271. color:#7F7F7F;
  272. line-height:22px;
  273. }
  274. #u86369 {
  275. border-width:0px;
  276. position:absolute;
  277. left:957px;
  278. top:1563px;
  279. width:372px;
  280. height:44px;
  281. display:flex;
  282. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  283. font-weight:400;
  284. font-style:normal;
  285. font-size:12px;
  286. color:#7F7F7F;
  287. line-height:22px;
  288. }
  289. #u86369 .text {
  290. position:absolute;
  291. align-self:flex-start;
  292. padding:0px 0px 0px 0px;
  293. box-sizing:border-box;
  294. width:100%;
  295. }
  296. #u86369_text {
  297. border-width:0px;
  298. word-wrap:break-word;
  299. text-transform:none;
  300. }
  301. #u86370 {
  302. border-width:0px;
  303. position:absolute;
  304. left:0px;
  305. top:0px;
  306. width:0px;
  307. height:0px;
  308. }
  309. #u86371_div {
  310. border-width:0px;
  311. position:absolute;
  312. left:0px;
  313. top:0px;
  314. width:455px;
  315. height:160px;
  316. background:inherit;
  317. background-color:rgba(255, 255, 255, 1);
  318. box-sizing:border-box;
  319. border-width:1px;
  320. border-style:solid;
  321. border-color:rgba(204, 204, 204, 1);
  322. border-radius:0px;
  323. -moz-box-shadow:none;
  324. -webkit-box-shadow:none;
  325. box-shadow:none;
  326. font-family:'Microsoft YaHei', sans-serif;
  327. font-weight:400;
  328. font-style:normal;
  329. }
  330. #u86371 {
  331. border-width:0px;
  332. position:absolute;
  333. left:899px;
  334. top:1808px;
  335. width:455px;
  336. height:160px;
  337. display:flex;
  338. font-family:'Microsoft YaHei', sans-serif;
  339. font-weight:400;
  340. font-style:normal;
  341. }
  342. #u86371 .text {
  343. position:absolute;
  344. align-self:center;
  345. padding:2px 2px 2px 2px;
  346. box-sizing:border-box;
  347. width:100%;
  348. }
  349. #u86371_text {
  350. border-width:0px;
  351. word-wrap:break-word;
  352. text-transform:none;
  353. visibility:hidden;
  354. }
  355. #u86372_div {
  356. border-width:0px;
  357. position:absolute;
  358. left:0px;
  359. top:0px;
  360. width:163px;
  361. height:21px;
  362. background:inherit;
  363. background-color:rgba(255, 255, 255, 0);
  364. border:none;
  365. border-radius:0px;
  366. -moz-box-shadow:none;
  367. -webkit-box-shadow:none;
  368. box-shadow:none;
  369. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  370. font-weight:650;
  371. font-style:normal;
  372. font-size:18px;
  373. color:#000000;
  374. line-height:22px;
  375. }
  376. #u86372 {
  377. border-width:0px;
  378. position:absolute;
  379. left:959px;
  380. top:1843px;
  381. width:163px;
  382. height:21px;
  383. display:flex;
  384. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  385. font-weight:650;
  386. font-style:normal;
  387. font-size:18px;
  388. color:#000000;
  389. line-height:22px;
  390. }
  391. #u86372 .text {
  392. position:absolute;
  393. align-self:flex-start;
  394. padding:0px 0px 0px 0px;
  395. box-sizing:border-box;
  396. width:100%;
  397. }
  398. #u86372_text {
  399. border-width:0px;
  400. white-space:nowrap;
  401. text-transform:none;
  402. }
  403. #u86373_div {
  404. border-width:0px;
  405. position:absolute;
  406. left:0px;
  407. top:0px;
  408. width:61px;
  409. height:32px;
  410. background:inherit;
  411. background-color:rgba(24, 144, 255, 1);
  412. border:none;
  413. border-radius:4px;
  414. -moz-box-shadow:none;
  415. -webkit-box-shadow:none;
  416. box-shadow:none;
  417. font-family:'Microsoft YaHei', sans-serif;
  418. font-weight:400;
  419. font-style:normal;
  420. font-size:14px;
  421. color:#FFFFFF;
  422. }
  423. #u86373 {
  424. border-width:0px;
  425. position:absolute;
  426. left:1270px;
  427. top:1917px;
  428. width:61px;
  429. height:32px;
  430. display:flex;
  431. font-family:'Microsoft YaHei', sans-serif;
  432. font-weight:400;
  433. font-style:normal;
  434. font-size:14px;
  435. color:#FFFFFF;
  436. }
  437. #u86373 .text {
  438. position:absolute;
  439. align-self:center;
  440. padding:2px 16px 2px 16px;
  441. box-sizing:border-box;
  442. width:100%;
  443. }
  444. #u86373_text {
  445. border-width:0px;
  446. white-space:nowrap;
  447. text-transform:none;
  448. }
  449. #u86374_div {
  450. border-width:0px;
  451. position:absolute;
  452. left:0px;
  453. top:0px;
  454. width:66px;
  455. height:32px;
  456. background:inherit;
  457. background-color:rgba(255, 255, 255, 1);
  458. box-sizing:border-box;
  459. border-width:1px;
  460. border-style:solid;
  461. border-color:rgba(217, 217, 217, 1);
  462. border-radius:4px;
  463. -moz-box-shadow:none;
  464. -webkit-box-shadow:none;
  465. box-shadow:none;
  466. font-family:'Microsoft YaHei', sans-serif;
  467. font-weight:400;
  468. font-style:normal;
  469. font-size:14px;
  470. color:rgba(0, 0, 0, 0.647058823529412);
  471. line-height:21px;
  472. }
  473. #u86374 {
  474. border-width:0px;
  475. position:absolute;
  476. left:1188px;
  477. top:1917px;
  478. width:66px;
  479. height:32px;
  480. display:flex;
  481. font-family:'Microsoft YaHei', sans-serif;
  482. font-weight:400;
  483. font-style:normal;
  484. font-size:14px;
  485. color:rgba(0, 0, 0, 0.647058823529412);
  486. line-height:21px;
  487. }
  488. #u86374 .text {
  489. position:absolute;
  490. align-self:center;
  491. padding:2px 16px 2px 16px;
  492. box-sizing:border-box;
  493. width:100%;
  494. }
  495. #u86374_text {
  496. border-width:0px;
  497. white-space:nowrap;
  498. text-transform:none;
  499. }
  500. #u86375_img {
  501. border-width:0px;
  502. position:absolute;
  503. left:0px;
  504. top:0px;
  505. width:24px;
  506. height:24px;
  507. }
  508. #u86375 {
  509. border-width:0px;
  510. position:absolute;
  511. left:923px;
  512. top:1841px;
  513. width:24px;
  514. height:24px;
  515. display:flex;
  516. font-family:'Microsoft YaHei', sans-serif;
  517. font-weight:400;
  518. font-style:normal;
  519. font-size:52px;
  520. color:#FAAD14;
  521. }
  522. #u86375 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u86375_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. visibility:hidden;
  534. }
  535. #u86376_div {
  536. border-width:0px;
  537. position:absolute;
  538. left:0px;
  539. top:0px;
  540. width:372px;
  541. height:22px;
  542. background:inherit;
  543. background-color:rgba(255, 255, 255, 0);
  544. border:none;
  545. border-radius:0px;
  546. -moz-box-shadow:none;
  547. -webkit-box-shadow:none;
  548. box-shadow:none;
  549. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  550. font-weight:400;
  551. font-style:normal;
  552. font-size:12px;
  553. color:#7F7F7F;
  554. line-height:22px;
  555. }
  556. #u86376 {
  557. border-width:0px;
  558. position:absolute;
  559. left:959px;
  560. top:1875px;
  561. width:372px;
  562. height:22px;
  563. display:flex;
  564. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  565. font-weight:400;
  566. font-style:normal;
  567. font-size:12px;
  568. color:#7F7F7F;
  569. line-height:22px;
  570. }
  571. #u86376 .text {
  572. position:absolute;
  573. align-self:flex-start;
  574. padding:0px 0px 0px 0px;
  575. box-sizing:border-box;
  576. width:100%;
  577. }
  578. #u86376_text {
  579. border-width:0px;
  580. word-wrap:break-word;
  581. text-transform:none;
  582. }
  583. #u86377 {
  584. border-width:0px;
  585. position:absolute;
  586. left:0px;
  587. top:0px;
  588. width:0px;
  589. height:0px;
  590. }
  591. #u86378_img {
  592. border-width:0px;
  593. position:absolute;
  594. left:-5px;
  595. top:-5px;
  596. width:410px;
  597. height:350px;
  598. }
  599. #u86378 {
  600. border-width:0px;
  601. position:absolute;
  602. left:467px;
  603. top:1383px;
  604. width:400px;
  605. height:340px;
  606. display:flex;
  607. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  608. font-weight:400;
  609. font-style:normal;
  610. font-size:12px;
  611. color:#FFFFFF;
  612. }
  613. #u86378 .text {
  614. position:absolute;
  615. align-self:center;
  616. padding:2px 2px 2px 2px;
  617. box-sizing:border-box;
  618. width:100%;
  619. }
  620. #u86378_text {
  621. border-width:0px;
  622. word-wrap:break-word;
  623. text-transform:none;
  624. visibility:hidden;
  625. }
  626. #u86379_div {
  627. border-width:0px;
  628. position:absolute;
  629. left:0px;
  630. top:0px;
  631. width:37px;
  632. height:25px;
  633. background:inherit;
  634. background-color:rgba(255, 255, 255, 0);
  635. border:none;
  636. border-radius:0px;
  637. -moz-box-shadow:none;
  638. -webkit-box-shadow:none;
  639. box-shadow:none;
  640. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  641. font-weight:500;
  642. font-style:normal;
  643. font-size:18px;
  644. }
  645. #u86379 {
  646. border-width:0px;
  647. position:absolute;
  648. left:490px;
  649. top:1399px;
  650. width:37px;
  651. height:25px;
  652. display:flex;
  653. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  654. font-weight:500;
  655. font-style:normal;
  656. font-size:18px;
  657. }
  658. #u86379 .text {
  659. position:absolute;
  660. align-self:flex-start;
  661. padding:0px 0px 0px 0px;
  662. box-sizing:border-box;
  663. width:100%;
  664. }
  665. #u86379_text {
  666. border-width:0px;
  667. white-space:nowrap;
  668. text-transform:none;
  669. }
  670. #u86380_img {
  671. border-width:0px;
  672. position:absolute;
  673. left:0px;
  674. top:0px;
  675. width:8px;
  676. height:8px;
  677. }
  678. #u86380 {
  679. border-width:0px;
  680. position:absolute;
  681. left:846px;
  682. top:1395px;
  683. width:8px;
  684. height:8px;
  685. display:flex;
  686. opacity:0.5;
  687. }
  688. #u86380 .text {
  689. position:absolute;
  690. align-self:center;
  691. padding:2px 2px 2px 2px;
  692. box-sizing:border-box;
  693. width:100%;
  694. }
  695. #u86380_text {
  696. border-width:0px;
  697. word-wrap:break-word;
  698. text-transform:none;
  699. visibility:hidden;
  700. }
  701. #u86381_div {
  702. border-width:0px;
  703. position:absolute;
  704. left:0px;
  705. top:0px;
  706. width:80px;
  707. height:30px;
  708. background:inherit;
  709. background-color:rgba(51, 153, 255, 1);
  710. border:none;
  711. border-radius:4px;
  712. -moz-box-shadow:none;
  713. -webkit-box-shadow:none;
  714. box-shadow:none;
  715. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  716. font-weight:400;
  717. font-style:normal;
  718. font-size:14px;
  719. color:#FFFFFF;
  720. }
  721. #u86381 {
  722. border-width:0px;
  723. position:absolute;
  724. left:767px;
  725. top:1673px;
  726. width:80px;
  727. height:30px;
  728. display:flex;
  729. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  730. font-weight:400;
  731. font-style:normal;
  732. font-size:14px;
  733. color:#FFFFFF;
  734. }
  735. #u86381 .text {
  736. position:absolute;
  737. align-self:center;
  738. padding:8px 0px 8px 0px;
  739. box-sizing:border-box;
  740. width:100%;
  741. }
  742. #u86381_text {
  743. border-width:0px;
  744. word-wrap:break-word;
  745. text-transform:none;
  746. }
  747. #u86382_div {
  748. border-width:0px;
  749. position:absolute;
  750. left:0px;
  751. top:0px;
  752. width:322px;
  753. height:80px;
  754. background:inherit;
  755. background-color:rgba(255, 255, 255, 1);
  756. box-sizing:border-box;
  757. border-width:1px;
  758. border-style:solid;
  759. border-color:rgba(51, 153, 255, 1);
  760. border-radius:2px;
  761. -moz-box-shadow:none;
  762. -webkit-box-shadow:none;
  763. box-shadow:none;
  764. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  765. font-weight:400;
  766. font-style:normal;
  767. font-size:12px;
  768. color:#FFFFFF;
  769. text-align:left;
  770. }
  771. #u86382 {
  772. border-width:0px;
  773. position:absolute;
  774. left:504px;
  775. top:1566px;
  776. width:322px;
  777. height:80px;
  778. display:flex;
  779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  780. font-weight:400;
  781. font-style:normal;
  782. font-size:12px;
  783. color:#FFFFFF;
  784. text-align:left;
  785. }
  786. #u86382 .text {
  787. position:absolute;
  788. align-self:center;
  789. padding:8px 15px 8px 15px;
  790. box-sizing:border-box;
  791. width:100%;
  792. }
  793. #u86382_text {
  794. border-width:0px;
  795. word-wrap:break-word;
  796. text-transform:none;
  797. }
  798. #u86383_div {
  799. border-width:0px;
  800. position:absolute;
  801. left:0px;
  802. top:0px;
  803. width:99px;
  804. height:20px;
  805. background:inherit;
  806. background-color:rgba(255, 255, 255, 0);
  807. border:none;
  808. border-radius:0px;
  809. -moz-box-shadow:none;
  810. -webkit-box-shadow:none;
  811. box-shadow:none;
  812. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  813. font-weight:400;
  814. font-style:normal;
  815. color:#D7D7D7;
  816. }
  817. #u86383 {
  818. border-width:0px;
  819. position:absolute;
  820. left:516px;
  821. top:1577px;
  822. width:99px;
  823. height:20px;
  824. display:flex;
  825. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  826. font-weight:400;
  827. font-style:normal;
  828. color:#D7D7D7;
  829. }
  830. #u86383 .text {
  831. position:absolute;
  832. align-self:flex-start;
  833. padding:0px 0px 0px 0px;
  834. box-sizing:border-box;
  835. width:100%;
  836. }
  837. #u86383_text {
  838. border-width:0px;
  839. white-space:nowrap;
  840. text-transform:none;
  841. }
  842. #u86384_div {
  843. border-width:0px;
  844. position:absolute;
  845. left:0px;
  846. top:0px;
  847. width:60px;
  848. height:30px;
  849. background:inherit;
  850. background-color:rgba(255, 255, 255, 1);
  851. box-sizing:border-box;
  852. border-width:1px;
  853. border-style:solid;
  854. border-color:rgba(170, 170, 170, 1);
  855. border-radius:4px;
  856. -moz-box-shadow:none;
  857. -webkit-box-shadow:none;
  858. box-shadow:none;
  859. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  860. font-weight:400;
  861. font-style:normal;
  862. font-size:14px;
  863. }
  864. #u86384 {
  865. border-width:0px;
  866. position:absolute;
  867. left:697px;
  868. top:1673px;
  869. width:60px;
  870. height:30px;
  871. display:flex;
  872. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  873. font-weight:400;
  874. font-style:normal;
  875. font-size:14px;
  876. }
  877. #u86384 .text {
  878. position:absolute;
  879. align-self:center;
  880. padding:2px 2px 2px 2px;
  881. box-sizing:border-box;
  882. width:100%;
  883. }
  884. #u86384_text {
  885. border-width:0px;
  886. word-wrap:break-word;
  887. text-transform:none;
  888. }
  889. #u86385_div {
  890. border-width:0px;
  891. position:absolute;
  892. left:0px;
  893. top:0px;
  894. width:102px;
  895. height:30px;
  896. background:inherit;
  897. background-color:rgba(255, 255, 255, 0);
  898. border:none;
  899. border-top:0px;
  900. border-right:0px;
  901. border-bottom:0px;
  902. border-radius:0px;
  903. border-top-left-radius:0px;
  904. border-bottom-left-radius:0px;
  905. -moz-box-shadow:none;
  906. -webkit-box-shadow:none;
  907. box-shadow:none;
  908. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  909. font-weight:400;
  910. font-style:normal;
  911. font-size:14px;
  912. color:#555555;
  913. }
  914. #u86385 {
  915. border-width:0px;
  916. position:absolute;
  917. left:504px;
  918. top:1446px;
  919. width:102px;
  920. height:30px;
  921. display:flex;
  922. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  923. font-weight:400;
  924. font-style:normal;
  925. font-size:14px;
  926. color:#555555;
  927. }
  928. #u86385 .text {
  929. position:absolute;
  930. align-self:center;
  931. padding:5px 10px 5px 0px;
  932. box-sizing:border-box;
  933. width:100%;
  934. }
  935. #u86385_text {
  936. border-width:0px;
  937. white-space:nowrap;
  938. text-transform:none;
  939. }
  940. #u86386_div {
  941. border-width:0px;
  942. position:absolute;
  943. left:0px;
  944. top:0px;
  945. width:322px;
  946. height:40px;
  947. background:inherit;
  948. background-color:rgba(242, 242, 242, 1);
  949. box-sizing:border-box;
  950. border-width:1px;
  951. border-style:solid;
  952. border-color:rgba(215, 215, 215, 1);
  953. border-radius:4px;
  954. -moz-box-shadow:none;
  955. -webkit-box-shadow:none;
  956. box-shadow:none;
  957. font-size:18px;
  958. text-align:left;
  959. }
  960. #u86386 {
  961. border-width:0px;
  962. position:absolute;
  963. left:504px;
  964. top:1476px;
  965. width:322px;
  966. height:40px;
  967. display:flex;
  968. font-size:18px;
  969. text-align:left;
  970. }
  971. #u86386 .text {
  972. position:absolute;
  973. align-self:center;
  974. padding:2px 2px 2px 10px;
  975. box-sizing:border-box;
  976. width:100%;
  977. }
  978. #u86386_text {
  979. border-width:0px;
  980. word-wrap:break-word;
  981. text-transform:none;
  982. }
  983. #u86387_div {
  984. border-width:0px;
  985. position:absolute;
  986. left:0px;
  987. top:0px;
  988. width:171px;
  989. height:24px;
  990. background:inherit;
  991. background-color:rgba(255, 255, 255, 0);
  992. border:none;
  993. border-top:0px;
  994. border-right:0px;
  995. border-bottom:0px;
  996. border-radius:0px;
  997. border-top-left-radius:0px;
  998. border-bottom-left-radius:0px;
  999. -moz-box-shadow:none;
  1000. -webkit-box-shadow:none;
  1001. box-shadow:none;
  1002. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1003. font-weight:400;
  1004. font-style:normal;
  1005. font-size:10px;
  1006. color:#1890FF;
  1007. }
  1008. #u86387 {
  1009. border-width:0px;
  1010. position:absolute;
  1011. left:606px;
  1012. top:1449px;
  1013. width:171px;
  1014. height:24px;
  1015. display:flex;
  1016. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1017. font-weight:400;
  1018. font-style:normal;
  1019. font-size:10px;
  1020. color:#1890FF;
  1021. }
  1022. #u86387 .text {
  1023. position:absolute;
  1024. align-self:center;
  1025. padding:5px 10px 5px 0px;
  1026. box-sizing:border-box;
  1027. width:100%;
  1028. }
  1029. #u86387_text {
  1030. border-width:0px;
  1031. white-space:nowrap;
  1032. text-transform:none;
  1033. }
  1034. #u86388_div {
  1035. border-width:0px;
  1036. position:absolute;
  1037. left:0px;
  1038. top:0px;
  1039. width:67px;
  1040. height:30px;
  1041. background:inherit;
  1042. background-color:rgba(255, 255, 255, 0);
  1043. border:none;
  1044. border-top:0px;
  1045. border-right:0px;
  1046. border-bottom:0px;
  1047. border-radius:0px;
  1048. border-top-left-radius:0px;
  1049. border-bottom-left-radius:0px;
  1050. -moz-box-shadow:none;
  1051. -webkit-box-shadow:none;
  1052. box-shadow:none;
  1053. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1054. font-weight:400;
  1055. font-style:normal;
  1056. font-size:14px;
  1057. color:#555555;
  1058. }
  1059. #u86388 {
  1060. border-width:0px;
  1061. position:absolute;
  1062. left:504px;
  1063. top:1536px;
  1064. width:67px;
  1065. height:30px;
  1066. display:flex;
  1067. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1068. font-weight:400;
  1069. font-style:normal;
  1070. font-size:14px;
  1071. color:#555555;
  1072. }
  1073. #u86388 .text {
  1074. position:absolute;
  1075. align-self:center;
  1076. padding:5px 10px 5px 0px;
  1077. box-sizing:border-box;
  1078. width:100%;
  1079. }
  1080. #u86388_text {
  1081. border-width:0px;
  1082. white-space:nowrap;
  1083. text-transform:none;
  1084. }
  1085. #u86389 {
  1086. border-width:0px;
  1087. position:absolute;
  1088. left:0px;
  1089. top:0px;
  1090. width:0px;
  1091. height:0px;
  1092. }
  1093. #u86390_div {
  1094. border-width:0px;
  1095. position:absolute;
  1096. left:0px;
  1097. top:0px;
  1098. width:1000px;
  1099. height:1257px;
  1100. background:inherit;
  1101. background-color:rgba(242, 242, 242, 1);
  1102. box-sizing:border-box;
  1103. border-width:1px;
  1104. border-style:solid;
  1105. border-color:rgba(215, 215, 215, 1);
  1106. border-radius:0px;
  1107. -moz-box-shadow:none;
  1108. -webkit-box-shadow:none;
  1109. box-shadow:none;
  1110. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1111. font-weight:400;
  1112. font-style:normal;
  1113. font-size:14px;
  1114. color:#AAAAAA;
  1115. text-align:center;
  1116. line-height:30px;
  1117. }
  1118. #u86390 {
  1119. border-width:0px;
  1120. position:absolute;
  1121. left:94px;
  1122. top:49px;
  1123. width:1000px;
  1124. height:1257px;
  1125. display:flex;
  1126. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1127. font-weight:400;
  1128. font-style:normal;
  1129. font-size:14px;
  1130. color:#AAAAAA;
  1131. text-align:center;
  1132. line-height:30px;
  1133. }
  1134. #u86390 .text {
  1135. position:absolute;
  1136. align-self:center;
  1137. padding:5px 10px 5px 10px;
  1138. box-sizing:border-box;
  1139. width:100%;
  1140. }
  1141. #u86390_text {
  1142. border-width:0px;
  1143. word-wrap:break-word;
  1144. text-transform:none;
  1145. visibility:hidden;
  1146. }
  1147. #u86391_div {
  1148. border-width:0px;
  1149. position:absolute;
  1150. left:0px;
  1151. top:0px;
  1152. width:1000px;
  1153. height:200px;
  1154. background:inherit;
  1155. background-color:rgba(255, 255, 255, 1);
  1156. box-sizing:border-box;
  1157. border-width:1px;
  1158. border-style:solid;
  1159. border-color:rgba(215, 215, 215, 1);
  1160. border-radius:0px;
  1161. -moz-box-shadow:none;
  1162. -webkit-box-shadow:none;
  1163. box-shadow:none;
  1164. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1165. font-weight:400;
  1166. font-style:normal;
  1167. font-size:14px;
  1168. color:#AAAAAA;
  1169. text-align:center;
  1170. line-height:30px;
  1171. }
  1172. #u86391 {
  1173. border-width:0px;
  1174. position:absolute;
  1175. left:94px;
  1176. top:49px;
  1177. width:1000px;
  1178. height:200px;
  1179. display:flex;
  1180. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1181. font-weight:400;
  1182. font-style:normal;
  1183. font-size:14px;
  1184. color:#AAAAAA;
  1185. text-align:center;
  1186. line-height:30px;
  1187. }
  1188. #u86391 .text {
  1189. position:absolute;
  1190. align-self:center;
  1191. padding:5px 10px 5px 10px;
  1192. box-sizing:border-box;
  1193. width:100%;
  1194. }
  1195. #u86391_text {
  1196. border-width:0px;
  1197. word-wrap:break-word;
  1198. text-transform:none;
  1199. visibility:hidden;
  1200. }
  1201. #u86392_div {
  1202. border-width:0px;
  1203. position:absolute;
  1204. left:0px;
  1205. top:0px;
  1206. width:83px;
  1207. height:35px;
  1208. background:inherit;
  1209. background-color:rgba(255, 255, 255, 0);
  1210. border:none;
  1211. border-top:0px;
  1212. border-right:0px;
  1213. border-bottom:0px;
  1214. border-radius:0px;
  1215. border-top-left-radius:0px;
  1216. border-bottom-left-radius:0px;
  1217. -moz-box-shadow:none;
  1218. -webkit-box-shadow:none;
  1219. box-shadow:none;
  1220. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1221. font-weight:500;
  1222. font-style:normal;
  1223. font-size:18px;
  1224. }
  1225. #u86392 {
  1226. border-width:0px;
  1227. position:absolute;
  1228. left:114px;
  1229. top:67px;
  1230. width:83px;
  1231. height:35px;
  1232. display:flex;
  1233. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1234. font-weight:500;
  1235. font-style:normal;
  1236. font-size:18px;
  1237. }
  1238. #u86392 .text {
  1239. position:absolute;
  1240. align-self:center;
  1241. padding:5px 10px 5px 0px;
  1242. box-sizing:border-box;
  1243. width:100%;
  1244. }
  1245. #u86392_text {
  1246. border-width:0px;
  1247. white-space:nowrap;
  1248. text-transform:none;
  1249. }
  1250. #u86393 {
  1251. border-width:0px;
  1252. position:absolute;
  1253. left:0px;
  1254. top:0px;
  1255. width:0px;
  1256. height:0px;
  1257. }
  1258. #u86394_div {
  1259. border-width:0px;
  1260. position:absolute;
  1261. left:0px;
  1262. top:0px;
  1263. width:40px;
  1264. height:40px;
  1265. background:inherit;
  1266. background-color:rgba(255, 255, 255, 0);
  1267. border:none;
  1268. border-top:0px;
  1269. border-right:0px;
  1270. border-bottom:0px;
  1271. border-radius:0px;
  1272. border-top-left-radius:0px;
  1273. border-bottom-left-radius:0px;
  1274. -moz-box-shadow:none;
  1275. -webkit-box-shadow:none;
  1276. box-shadow:none;
  1277. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1278. font-weight:500;
  1279. font-style:normal;
  1280. font-size:14px;
  1281. text-align:center;
  1282. }
  1283. #u86394 {
  1284. border-width:0px;
  1285. position:absolute;
  1286. left:1054px;
  1287. top:49px;
  1288. width:40px;
  1289. height:40px;
  1290. display:flex;
  1291. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1292. font-weight:500;
  1293. font-style:normal;
  1294. font-size:14px;
  1295. text-align:center;
  1296. }
  1297. #u86394 .text {
  1298. position:absolute;
  1299. align-self:center;
  1300. padding:5px 10px 5px 0px;
  1301. box-sizing:border-box;
  1302. width:100%;
  1303. }
  1304. #u86394_text {
  1305. border-width:0px;
  1306. word-wrap:break-word;
  1307. text-transform:none;
  1308. }
  1309. #u86395_img {
  1310. border-width:0px;
  1311. position:absolute;
  1312. left:0px;
  1313. top:0px;
  1314. width:13px;
  1315. height:13px;
  1316. }
  1317. #u86395 {
  1318. border-width:0px;
  1319. position:absolute;
  1320. left:1042px;
  1321. top:65px;
  1322. width:13px;
  1323. height:13px;
  1324. display:flex;
  1325. font-size:14px;
  1326. }
  1327. #u86395 .text {
  1328. position:absolute;
  1329. align-self:center;
  1330. padding:2px 2px 2px 2px;
  1331. box-sizing:border-box;
  1332. width:100%;
  1333. }
  1334. #u86395_text {
  1335. border-width:0px;
  1336. word-wrap:break-word;
  1337. text-transform:none;
  1338. visibility:hidden;
  1339. }
  1340. #u86396_div {
  1341. border-width:0px;
  1342. position:absolute;
  1343. left:0px;
  1344. top:0px;
  1345. width:333px;
  1346. height:43px;
  1347. background:inherit;
  1348. background-color:rgba(255, 255, 255, 0);
  1349. border:none;
  1350. border-top:0px;
  1351. border-right:0px;
  1352. border-bottom:0px;
  1353. border-radius:0px;
  1354. border-top-left-radius:0px;
  1355. border-bottom-left-radius:0px;
  1356. -moz-box-shadow:none;
  1357. -webkit-box-shadow:none;
  1358. box-shadow:none;
  1359. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1360. font-weight:500;
  1361. font-style:normal;
  1362. font-size:24px;
  1363. }
  1364. #u86396 {
  1365. border-width:0px;
  1366. position:absolute;
  1367. left:124px;
  1368. top:118px;
  1369. width:333px;
  1370. height:43px;
  1371. display:flex;
  1372. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1373. font-weight:500;
  1374. font-style:normal;
  1375. font-size:24px;
  1376. }
  1377. #u86396 .text {
  1378. position:absolute;
  1379. align-self:center;
  1380. padding:5px 10px 5px 0px;
  1381. box-sizing:border-box;
  1382. width:100%;
  1383. }
  1384. #u86396_text {
  1385. border-width:0px;
  1386. white-space:nowrap;
  1387. text-transform:none;
  1388. }
  1389. #u86397_img {
  1390. border-width:0px;
  1391. position:absolute;
  1392. left:0px;
  1393. top:0px;
  1394. width:108px;
  1395. height:108px;
  1396. }
  1397. #u86397 {
  1398. border-width:0px;
  1399. position:absolute;
  1400. left:944px;
  1401. top:119px;
  1402. width:108px;
  1403. height:108px;
  1404. display:flex;
  1405. -webkit-transform:rotate(315deg);
  1406. -moz-transform:rotate(315deg);
  1407. -ms-transform:rotate(315deg);
  1408. transform:rotate(315deg);
  1409. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1410. font-weight:400;
  1411. font-style:normal;
  1412. font-size:28px;
  1413. color:#F59A23;
  1414. }
  1415. #u86397 .text {
  1416. position:absolute;
  1417. align-self:center;
  1418. padding:2px 2px 2px 2px;
  1419. box-sizing:border-box;
  1420. width:100%;
  1421. }
  1422. #u86397_text {
  1423. border-width:0px;
  1424. word-wrap:break-word;
  1425. text-transform:none;
  1426. }
  1427. #u86398 {
  1428. border-width:0px;
  1429. position:absolute;
  1430. left:0px;
  1431. top:0px;
  1432. width:0px;
  1433. height:0px;
  1434. }
  1435. #u86399 {
  1436. border-width:0px;
  1437. position:absolute;
  1438. left:0px;
  1439. top:0px;
  1440. width:0px;
  1441. height:0px;
  1442. }
  1443. #u86400_div {
  1444. border-width:0px;
  1445. position:absolute;
  1446. left:0px;
  1447. top:0px;
  1448. width:1000px;
  1449. height:60px;
  1450. background:inherit;
  1451. background-color:rgba(255, 255, 255, 1);
  1452. box-sizing:border-box;
  1453. border-width:1px;
  1454. border-style:solid;
  1455. border-color:rgba(215, 215, 215, 1);
  1456. border-radius:0px;
  1457. -moz-box-shadow:none;
  1458. -webkit-box-shadow:none;
  1459. box-shadow:none;
  1460. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1461. font-weight:400;
  1462. font-style:normal;
  1463. font-size:14px;
  1464. color:#AAAAAA;
  1465. text-align:center;
  1466. line-height:30px;
  1467. }
  1468. #u86400 {
  1469. border-width:0px;
  1470. position:absolute;
  1471. left:94px;
  1472. top:1246px;
  1473. width:1000px;
  1474. height:60px;
  1475. display:flex;
  1476. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1477. font-weight:400;
  1478. font-style:normal;
  1479. font-size:14px;
  1480. color:#AAAAAA;
  1481. text-align:center;
  1482. line-height:30px;
  1483. }
  1484. #u86400 .text {
  1485. position:absolute;
  1486. align-self:center;
  1487. padding:5px 10px 5px 10px;
  1488. box-sizing:border-box;
  1489. width:100%;
  1490. }
  1491. #u86400_text {
  1492. border-width:0px;
  1493. word-wrap:break-word;
  1494. text-transform:none;
  1495. visibility:hidden;
  1496. }
  1497. #u86401_div {
  1498. border-width:0px;
  1499. position:absolute;
  1500. left:0px;
  1501. top:0px;
  1502. width:80px;
  1503. height:30px;
  1504. background:inherit;
  1505. background-color:rgba(24, 144, 255, 1);
  1506. border:none;
  1507. border-radius:4px;
  1508. -moz-box-shadow:none;
  1509. -webkit-box-shadow:none;
  1510. box-shadow:none;
  1511. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1512. font-weight:400;
  1513. font-style:normal;
  1514. font-size:14px;
  1515. color:#FFFFFF;
  1516. }
  1517. #u86401 {
  1518. border-width:0px;
  1519. position:absolute;
  1520. left:988px;
  1521. top:1261px;
  1522. width:80px;
  1523. height:30px;
  1524. display:flex;
  1525. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1526. font-weight:400;
  1527. font-style:normal;
  1528. font-size:14px;
  1529. color:#FFFFFF;
  1530. }
  1531. #u86401 .text {
  1532. position:absolute;
  1533. align-self:center;
  1534. padding:2px 2px 2px 2px;
  1535. box-sizing:border-box;
  1536. width:100%;
  1537. }
  1538. #u86401_text {
  1539. border-width:0px;
  1540. word-wrap:break-word;
  1541. text-transform:none;
  1542. }
  1543. #u86402_div {
  1544. border-width:0px;
  1545. position:absolute;
  1546. left:0px;
  1547. top:0px;
  1548. width:80px;
  1549. height:30px;
  1550. background:inherit;
  1551. background-color:rgba(217, 0, 27, 1);
  1552. border:none;
  1553. border-radius:4px;
  1554. -moz-box-shadow:none;
  1555. -webkit-box-shadow:none;
  1556. box-shadow:none;
  1557. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1558. font-weight:400;
  1559. font-style:normal;
  1560. font-size:14px;
  1561. color:#FFFFFF;
  1562. }
  1563. #u86402 {
  1564. border-width:0px;
  1565. position:absolute;
  1566. left:898px;
  1567. top:1261px;
  1568. width:80px;
  1569. height:30px;
  1570. display:flex;
  1571. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1572. font-weight:400;
  1573. font-style:normal;
  1574. font-size:14px;
  1575. color:#FFFFFF;
  1576. }
  1577. #u86402 .text {
  1578. position:absolute;
  1579. align-self:center;
  1580. padding:2px 2px 2px 2px;
  1581. box-sizing:border-box;
  1582. width:100%;
  1583. }
  1584. #u86402_text {
  1585. border-width:0px;
  1586. word-wrap:break-word;
  1587. text-transform:none;
  1588. }
  1589. #u86403_div {
  1590. border-width:0px;
  1591. position:absolute;
  1592. left:0px;
  1593. top:0px;
  1594. width:80px;
  1595. height:30px;
  1596. background:inherit;
  1597. background-color:rgba(255, 255, 255, 1);
  1598. box-sizing:border-box;
  1599. border-width:1px;
  1600. border-style:solid;
  1601. border-color:rgba(170, 170, 170, 1);
  1602. border-radius:4px;
  1603. -moz-box-shadow:none;
  1604. -webkit-box-shadow:none;
  1605. box-shadow:none;
  1606. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1607. font-weight:400;
  1608. font-style:normal;
  1609. font-size:14px;
  1610. }
  1611. #u86403 {
  1612. border-width:0px;
  1613. position:absolute;
  1614. left:808px;
  1615. top:1261px;
  1616. width:80px;
  1617. height:30px;
  1618. display:flex;
  1619. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1620. font-weight:400;
  1621. font-style:normal;
  1622. font-size:14px;
  1623. }
  1624. #u86403 .text {
  1625. position:absolute;
  1626. align-self:center;
  1627. padding:2px 2px 2px 2px;
  1628. box-sizing:border-box;
  1629. width:100%;
  1630. }
  1631. #u86403_text {
  1632. border-width:0px;
  1633. word-wrap:break-word;
  1634. text-transform:none;
  1635. }
  1636. #u86404_div {
  1637. border-width:0px;
  1638. position:absolute;
  1639. left:0px;
  1640. top:0px;
  1641. width:325px;
  1642. height:60px;
  1643. background:inherit;
  1644. background-color:rgba(255, 255, 255, 0);
  1645. border:none;
  1646. border-left:0px;
  1647. border-top:0px;
  1648. border-right:0px;
  1649. border-radius:0px;
  1650. border-bottom-right-radius:0px;
  1651. border-bottom-left-radius:0px;
  1652. -moz-box-shadow:none;
  1653. -webkit-box-shadow:none;
  1654. box-shadow:none;
  1655. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1656. font-weight:400;
  1657. font-style:normal;
  1658. font-size:14px;
  1659. line-height:30px;
  1660. }
  1661. #u86404 {
  1662. border-width:0px;
  1663. position:absolute;
  1664. left:124px;
  1665. top:173px;
  1666. width:325px;
  1667. height:60px;
  1668. display:flex;
  1669. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1670. font-weight:400;
  1671. font-style:normal;
  1672. font-size:14px;
  1673. line-height:30px;
  1674. }
  1675. #u86404 .text {
  1676. position:absolute;
  1677. align-self:flex-start;
  1678. padding:0px 0px 0px 0px;
  1679. box-sizing:border-box;
  1680. width:100%;
  1681. }
  1682. #u86404_text {
  1683. border-width:0px;
  1684. word-wrap:break-word;
  1685. text-transform:none;
  1686. }
  1687. #u86405_div {
  1688. border-width:0px;
  1689. position:absolute;
  1690. left:0px;
  1691. top:0px;
  1692. width:1000px;
  1693. height:680px;
  1694. background:inherit;
  1695. background-color:rgba(255, 255, 255, 1);
  1696. box-sizing:border-box;
  1697. border-width:1px;
  1698. border-style:solid;
  1699. border-color:rgba(242, 242, 242, 1);
  1700. border-radius:0px;
  1701. -moz-box-shadow:none;
  1702. -webkit-box-shadow:none;
  1703. box-shadow:none;
  1704. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1705. font-weight:400;
  1706. font-style:normal;
  1707. font-size:14px;
  1708. color:#AAAAAA;
  1709. text-align:center;
  1710. line-height:30px;
  1711. }
  1712. #u86405 {
  1713. border-width:0px;
  1714. position:absolute;
  1715. left:94px;
  1716. top:259px;
  1717. width:1000px;
  1718. height:680px;
  1719. display:flex;
  1720. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1721. font-weight:400;
  1722. font-style:normal;
  1723. font-size:14px;
  1724. color:#AAAAAA;
  1725. text-align:center;
  1726. line-height:30px;
  1727. }
  1728. #u86405 .text {
  1729. position:absolute;
  1730. align-self:center;
  1731. padding:5px 10px 5px 10px;
  1732. box-sizing:border-box;
  1733. width:100%;
  1734. }
  1735. #u86405_text {
  1736. border-width:0px;
  1737. word-wrap:break-word;
  1738. text-transform:none;
  1739. visibility:hidden;
  1740. }
  1741. #u86406_div {
  1742. border-width:0px;
  1743. position:absolute;
  1744. left:0px;
  1745. top:0px;
  1746. width:73px;
  1747. height:40px;
  1748. background:inherit;
  1749. background-color:rgba(255, 255, 255, 0);
  1750. border:none;
  1751. border-left:0px;
  1752. border-top:0px;
  1753. border-right:0px;
  1754. border-radius:0px;
  1755. border-bottom-right-radius:0px;
  1756. border-bottom-left-radius:0px;
  1757. -moz-box-shadow:none;
  1758. -webkit-box-shadow:none;
  1759. box-shadow:none;
  1760. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1761. font-weight:400;
  1762. font-style:normal;
  1763. font-size:18px;
  1764. }
  1765. #u86406 {
  1766. border-width:0px;
  1767. position:absolute;
  1768. left:134px;
  1769. top:275px;
  1770. width:73px;
  1771. height:40px;
  1772. display:flex;
  1773. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1774. font-weight:400;
  1775. font-style:normal;
  1776. font-size:18px;
  1777. }
  1778. #u86406 .text {
  1779. position:absolute;
  1780. align-self:center;
  1781. padding:0px 0px 0px 0px;
  1782. box-sizing:border-box;
  1783. width:100%;
  1784. }
  1785. #u86406_text {
  1786. border-width:0px;
  1787. white-space:nowrap;
  1788. text-transform:none;
  1789. }
  1790. #u86407_div {
  1791. border-width:0px;
  1792. position:absolute;
  1793. left:0px;
  1794. top:0px;
  1795. width:81px;
  1796. height:30px;
  1797. background:inherit;
  1798. background-color:rgba(255, 255, 255, 0);
  1799. border:none;
  1800. border-top:0px;
  1801. border-right:0px;
  1802. border-bottom:0px;
  1803. border-radius:0px;
  1804. border-top-left-radius:0px;
  1805. border-bottom-left-radius:0px;
  1806. -moz-box-shadow:none;
  1807. -webkit-box-shadow:none;
  1808. box-shadow:none;
  1809. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1810. font-weight:400;
  1811. font-style:normal;
  1812. font-size:14px;
  1813. color:#7F7F7F;
  1814. }
  1815. #u86407 {
  1816. border-width:0px;
  1817. position:absolute;
  1818. left:134px;
  1819. top:325px;
  1820. width:81px;
  1821. height:30px;
  1822. display:flex;
  1823. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1824. font-weight:400;
  1825. font-style:normal;
  1826. font-size:14px;
  1827. color:#7F7F7F;
  1828. }
  1829. #u86407 .text {
  1830. position:absolute;
  1831. align-self:center;
  1832. padding:5px 10px 5px 0px;
  1833. box-sizing:border-box;
  1834. width:100%;
  1835. }
  1836. #u86407_text {
  1837. border-width:0px;
  1838. white-space:nowrap;
  1839. text-transform:none;
  1840. }
  1841. #u86408_div {
  1842. border-width:0px;
  1843. position:absolute;
  1844. left:0px;
  1845. top:0px;
  1846. width:101px;
  1847. height:30px;
  1848. background:inherit;
  1849. background-color:rgba(255, 255, 255, 0);
  1850. border:none;
  1851. border-top:0px;
  1852. border-right:0px;
  1853. border-bottom:0px;
  1854. border-radius:0px;
  1855. border-top-left-radius:0px;
  1856. border-bottom-left-radius:0px;
  1857. -moz-box-shadow:none;
  1858. -webkit-box-shadow:none;
  1859. box-shadow:none;
  1860. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1861. font-weight:400;
  1862. font-style:normal;
  1863. font-size:14px;
  1864. }
  1865. #u86408 {
  1866. border-width:0px;
  1867. position:absolute;
  1868. left:215px;
  1869. top:325px;
  1870. width:101px;
  1871. height:30px;
  1872. display:flex;
  1873. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1874. font-weight:400;
  1875. font-style:normal;
  1876. font-size:14px;
  1877. }
  1878. #u86408 .text {
  1879. position:absolute;
  1880. align-self:center;
  1881. padding:5px 10px 5px 0px;
  1882. box-sizing:border-box;
  1883. width:100%;
  1884. }
  1885. #u86408_text {
  1886. border-width:0px;
  1887. white-space:nowrap;
  1888. text-transform:none;
  1889. }
  1890. #u86409_div {
  1891. border-width:0px;
  1892. position:absolute;
  1893. left:0px;
  1894. top:0px;
  1895. width:81px;
  1896. height:30px;
  1897. background:inherit;
  1898. background-color:rgba(255, 255, 255, 0);
  1899. border:none;
  1900. border-top:0px;
  1901. border-right:0px;
  1902. border-bottom:0px;
  1903. border-radius:0px;
  1904. border-top-left-radius:0px;
  1905. border-bottom-left-radius:0px;
  1906. -moz-box-shadow:none;
  1907. -webkit-box-shadow:none;
  1908. box-shadow:none;
  1909. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1910. font-weight:400;
  1911. font-style:normal;
  1912. font-size:14px;
  1913. color:#7F7F7F;
  1914. }
  1915. #u86409 {
  1916. border-width:0px;
  1917. position:absolute;
  1918. left:454px;
  1919. top:325px;
  1920. width:81px;
  1921. height:30px;
  1922. display:flex;
  1923. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1924. font-weight:400;
  1925. font-style:normal;
  1926. font-size:14px;
  1927. color:#7F7F7F;
  1928. }
  1929. #u86409 .text {
  1930. position:absolute;
  1931. align-self:center;
  1932. padding:5px 10px 5px 0px;
  1933. box-sizing:border-box;
  1934. width:100%;
  1935. }
  1936. #u86409_text {
  1937. border-width:0px;
  1938. white-space:nowrap;
  1939. text-transform:none;
  1940. }
  1941. #u86410_div {
  1942. border-width:0px;
  1943. position:absolute;
  1944. left:0px;
  1945. top:0px;
  1946. width:67px;
  1947. height:30px;
  1948. background:inherit;
  1949. background-color:rgba(255, 255, 255, 0);
  1950. border:none;
  1951. border-top:0px;
  1952. border-right:0px;
  1953. border-bottom:0px;
  1954. border-radius:0px;
  1955. border-top-left-radius:0px;
  1956. border-bottom-left-radius:0px;
  1957. -moz-box-shadow:none;
  1958. -webkit-box-shadow:none;
  1959. box-shadow:none;
  1960. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1961. font-weight:400;
  1962. font-style:normal;
  1963. font-size:14px;
  1964. }
  1965. #u86410 {
  1966. border-width:0px;
  1967. position:absolute;
  1968. left:535px;
  1969. top:325px;
  1970. width:67px;
  1971. height:30px;
  1972. display:flex;
  1973. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1974. font-weight:400;
  1975. font-style:normal;
  1976. font-size:14px;
  1977. }
  1978. #u86410 .text {
  1979. position:absolute;
  1980. align-self:center;
  1981. padding:5px 10px 5px 0px;
  1982. box-sizing:border-box;
  1983. width:100%;
  1984. }
  1985. #u86410_text {
  1986. border-width:0px;
  1987. white-space:nowrap;
  1988. text-transform:none;
  1989. }
  1990. #u86411_div {
  1991. border-width:0px;
  1992. position:absolute;
  1993. left:0px;
  1994. top:0px;
  1995. width:81px;
  1996. height:30px;
  1997. background:inherit;
  1998. background-color:rgba(255, 255, 255, 0);
  1999. border:none;
  2000. border-top:0px;
  2001. border-right:0px;
  2002. border-bottom:0px;
  2003. border-radius:0px;
  2004. border-top-left-radius:0px;
  2005. border-bottom-left-radius:0px;
  2006. -moz-box-shadow:none;
  2007. -webkit-box-shadow:none;
  2008. box-shadow:none;
  2009. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2010. font-weight:400;
  2011. font-style:normal;
  2012. font-size:14px;
  2013. color:#7F7F7F;
  2014. }
  2015. #u86411 {
  2016. border-width:0px;
  2017. position:absolute;
  2018. left:751px;
  2019. top:325px;
  2020. width:81px;
  2021. height:30px;
  2022. display:flex;
  2023. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2024. font-weight:400;
  2025. font-style:normal;
  2026. font-size:14px;
  2027. color:#7F7F7F;
  2028. }
  2029. #u86411 .text {
  2030. position:absolute;
  2031. align-self:center;
  2032. padding:5px 10px 5px 0px;
  2033. box-sizing:border-box;
  2034. width:100%;
  2035. }
  2036. #u86411_text {
  2037. border-width:0px;
  2038. white-space:nowrap;
  2039. text-transform:none;
  2040. }
  2041. #u86412_div {
  2042. border-width:0px;
  2043. position:absolute;
  2044. left:0px;
  2045. top:0px;
  2046. width:67px;
  2047. height:30px;
  2048. background:inherit;
  2049. background-color:rgba(255, 255, 255, 0);
  2050. border:none;
  2051. border-top:0px;
  2052. border-right:0px;
  2053. border-bottom:0px;
  2054. border-radius:0px;
  2055. border-top-left-radius:0px;
  2056. border-bottom-left-radius:0px;
  2057. -moz-box-shadow:none;
  2058. -webkit-box-shadow:none;
  2059. box-shadow:none;
  2060. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2061. font-weight:400;
  2062. font-style:normal;
  2063. font-size:14px;
  2064. }
  2065. #u86412 {
  2066. border-width:0px;
  2067. position:absolute;
  2068. left:832px;
  2069. top:325px;
  2070. width:67px;
  2071. height:30px;
  2072. display:flex;
  2073. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2074. font-weight:400;
  2075. font-style:normal;
  2076. font-size:14px;
  2077. }
  2078. #u86412 .text {
  2079. position:absolute;
  2080. align-self:center;
  2081. padding:5px 10px 5px 0px;
  2082. box-sizing:border-box;
  2083. width:100%;
  2084. }
  2085. #u86412_text {
  2086. border-width:0px;
  2087. white-space:nowrap;
  2088. text-transform:none;
  2089. }
  2090. #u86413_div {
  2091. border-width:0px;
  2092. position:absolute;
  2093. left:0px;
  2094. top:0px;
  2095. width:81px;
  2096. height:30px;
  2097. background:inherit;
  2098. background-color:rgba(255, 255, 255, 0);
  2099. border:none;
  2100. border-top:0px;
  2101. border-right:0px;
  2102. border-bottom:0px;
  2103. border-radius:0px;
  2104. border-top-left-radius:0px;
  2105. border-bottom-left-radius:0px;
  2106. -moz-box-shadow:none;
  2107. -webkit-box-shadow:none;
  2108. box-shadow:none;
  2109. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2110. font-weight:400;
  2111. font-style:normal;
  2112. font-size:14px;
  2113. color:#7F7F7F;
  2114. }
  2115. #u86413 {
  2116. border-width:0px;
  2117. position:absolute;
  2118. left:134px;
  2119. top:365px;
  2120. width:81px;
  2121. height:30px;
  2122. display:flex;
  2123. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2124. font-weight:400;
  2125. font-style:normal;
  2126. font-size:14px;
  2127. color:#7F7F7F;
  2128. }
  2129. #u86413 .text {
  2130. position:absolute;
  2131. align-self:center;
  2132. padding:5px 10px 5px 0px;
  2133. box-sizing:border-box;
  2134. width:100%;
  2135. }
  2136. #u86413_text {
  2137. border-width:0px;
  2138. white-space:nowrap;
  2139. text-transform:none;
  2140. }
  2141. #u86414_div {
  2142. border-width:0px;
  2143. position:absolute;
  2144. left:0px;
  2145. top:0px;
  2146. width:81px;
  2147. height:30px;
  2148. background:inherit;
  2149. background-color:rgba(255, 255, 255, 0);
  2150. border:none;
  2151. border-top:0px;
  2152. border-right:0px;
  2153. border-bottom:0px;
  2154. border-radius:0px;
  2155. border-top-left-radius:0px;
  2156. border-bottom-left-radius:0px;
  2157. -moz-box-shadow:none;
  2158. -webkit-box-shadow:none;
  2159. box-shadow:none;
  2160. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2161. font-weight:400;
  2162. font-style:normal;
  2163. font-size:14px;
  2164. color:#7F7F7F;
  2165. }
  2166. #u86414 {
  2167. border-width:0px;
  2168. position:absolute;
  2169. left:454px;
  2170. top:365px;
  2171. width:81px;
  2172. height:30px;
  2173. display:flex;
  2174. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2175. font-weight:400;
  2176. font-style:normal;
  2177. font-size:14px;
  2178. color:#7F7F7F;
  2179. }
  2180. #u86414 .text {
  2181. position:absolute;
  2182. align-self:center;
  2183. padding:5px 10px 5px 0px;
  2184. box-sizing:border-box;
  2185. width:100%;
  2186. }
  2187. #u86414_text {
  2188. border-width:0px;
  2189. white-space:nowrap;
  2190. text-transform:none;
  2191. }
  2192. #u86415_div {
  2193. border-width:0px;
  2194. position:absolute;
  2195. left:0px;
  2196. top:0px;
  2197. width:51px;
  2198. height:30px;
  2199. background:inherit;
  2200. background-color:rgba(255, 255, 255, 0);
  2201. border:none;
  2202. border-top:0px;
  2203. border-right:0px;
  2204. border-bottom:0px;
  2205. border-radius:0px;
  2206. border-top-left-radius:0px;
  2207. border-bottom-left-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:14px;
  2215. }
  2216. #u86415 {
  2217. border-width:0px;
  2218. position:absolute;
  2219. left:535px;
  2220. top:365px;
  2221. width:51px;
  2222. height:30px;
  2223. display:flex;
  2224. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2225. font-weight:400;
  2226. font-style:normal;
  2227. font-size:14px;
  2228. }
  2229. #u86415 .text {
  2230. position:absolute;
  2231. align-self:center;
  2232. padding:5px 10px 5px 0px;
  2233. box-sizing:border-box;
  2234. width:100%;
  2235. }
  2236. #u86415_text {
  2237. border-width:0px;
  2238. white-space:nowrap;
  2239. text-transform:none;
  2240. }
  2241. #u86416_div {
  2242. border-width:0px;
  2243. position:absolute;
  2244. left:0px;
  2245. top:0px;
  2246. width:81px;
  2247. height:30px;
  2248. background:inherit;
  2249. background-color:rgba(255, 255, 255, 0);
  2250. border:none;
  2251. border-top:0px;
  2252. border-right:0px;
  2253. border-bottom:0px;
  2254. border-radius:0px;
  2255. border-top-left-radius:0px;
  2256. border-bottom-left-radius:0px;
  2257. -moz-box-shadow:none;
  2258. -webkit-box-shadow:none;
  2259. box-shadow:none;
  2260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2261. font-weight:400;
  2262. font-style:normal;
  2263. font-size:14px;
  2264. color:#7F7F7F;
  2265. }
  2266. #u86416 {
  2267. border-width:0px;
  2268. position:absolute;
  2269. left:751px;
  2270. top:365px;
  2271. width:81px;
  2272. height:30px;
  2273. display:flex;
  2274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2275. font-weight:400;
  2276. font-style:normal;
  2277. font-size:14px;
  2278. color:#7F7F7F;
  2279. }
  2280. #u86416 .text {
  2281. position:absolute;
  2282. align-self:center;
  2283. padding:5px 10px 5px 0px;
  2284. box-sizing:border-box;
  2285. width:100%;
  2286. }
  2287. #u86416_text {
  2288. border-width:0px;
  2289. white-space:nowrap;
  2290. text-transform:none;
  2291. }
  2292. #u86417_div {
  2293. border-width:0px;
  2294. position:absolute;
  2295. left:0px;
  2296. top:0px;
  2297. width:157px;
  2298. height:30px;
  2299. background:inherit;
  2300. background-color:rgba(255, 255, 255, 0);
  2301. border:none;
  2302. border-top:0px;
  2303. border-right:0px;
  2304. border-bottom:0px;
  2305. border-radius:0px;
  2306. border-top-left-radius:0px;
  2307. border-bottom-left-radius:0px;
  2308. -moz-box-shadow:none;
  2309. -webkit-box-shadow:none;
  2310. box-shadow:none;
  2311. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2312. font-weight:400;
  2313. font-style:normal;
  2314. font-size:14px;
  2315. }
  2316. #u86417 {
  2317. border-width:0px;
  2318. position:absolute;
  2319. left:832px;
  2320. top:365px;
  2321. width:157px;
  2322. height:30px;
  2323. display:flex;
  2324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2325. font-weight:400;
  2326. font-style:normal;
  2327. font-size:14px;
  2328. }
  2329. #u86417 .text {
  2330. position:absolute;
  2331. align-self:center;
  2332. padding:5px 10px 5px 0px;
  2333. box-sizing:border-box;
  2334. width:100%;
  2335. }
  2336. #u86417_text {
  2337. border-width:0px;
  2338. white-space:nowrap;
  2339. text-transform:none;
  2340. }
  2341. #u86418_div {
  2342. border-width:0px;
  2343. position:absolute;
  2344. left:0px;
  2345. top:0px;
  2346. width:53px;
  2347. height:30px;
  2348. background:inherit;
  2349. background-color:rgba(255, 255, 255, 0);
  2350. border:none;
  2351. border-top:0px;
  2352. border-right:0px;
  2353. border-bottom:0px;
  2354. border-radius:0px;
  2355. border-top-left-radius:0px;
  2356. border-bottom-left-radius:0px;
  2357. -moz-box-shadow:none;
  2358. -webkit-box-shadow:none;
  2359. box-shadow:none;
  2360. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2361. font-weight:400;
  2362. font-style:normal;
  2363. font-size:14px;
  2364. }
  2365. #u86418 {
  2366. border-width:0px;
  2367. position:absolute;
  2368. left:215px;
  2369. top:365px;
  2370. width:53px;
  2371. height:30px;
  2372. display:flex;
  2373. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2374. font-weight:400;
  2375. font-style:normal;
  2376. font-size:14px;
  2377. }
  2378. #u86418 .text {
  2379. position:absolute;
  2380. align-self:center;
  2381. padding:5px 10px 5px 0px;
  2382. box-sizing:border-box;
  2383. width:100%;
  2384. }
  2385. #u86418_text {
  2386. border-width:0px;
  2387. white-space:nowrap;
  2388. text-transform:none;
  2389. }
  2390. #u86419_div {
  2391. border-width:0px;
  2392. position:absolute;
  2393. left:0px;
  2394. top:0px;
  2395. width:81px;
  2396. height:30px;
  2397. background:inherit;
  2398. background-color:rgba(255, 255, 255, 0);
  2399. border:none;
  2400. border-top:0px;
  2401. border-right:0px;
  2402. border-bottom:0px;
  2403. border-radius:0px;
  2404. border-top-left-radius:0px;
  2405. border-bottom-left-radius:0px;
  2406. -moz-box-shadow:none;
  2407. -webkit-box-shadow:none;
  2408. box-shadow:none;
  2409. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2410. font-weight:400;
  2411. font-style:normal;
  2412. font-size:14px;
  2413. color:#7F7F7F;
  2414. }
  2415. #u86419 {
  2416. border-width:0px;
  2417. position:absolute;
  2418. left:134px;
  2419. top:405px;
  2420. width:81px;
  2421. height:30px;
  2422. display:flex;
  2423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2424. font-weight:400;
  2425. font-style:normal;
  2426. font-size:14px;
  2427. color:#7F7F7F;
  2428. }
  2429. #u86419 .text {
  2430. position:absolute;
  2431. align-self:center;
  2432. padding:5px 10px 5px 0px;
  2433. box-sizing:border-box;
  2434. width:100%;
  2435. }
  2436. #u86419_text {
  2437. border-width:0px;
  2438. white-space:nowrap;
  2439. text-transform:none;
  2440. }
  2441. #u86420_div {
  2442. border-width:0px;
  2443. position:absolute;
  2444. left:0px;
  2445. top:0px;
  2446. width:95px;
  2447. height:30px;
  2448. background:inherit;
  2449. background-color:rgba(255, 255, 255, 0);
  2450. border:none;
  2451. border-top:0px;
  2452. border-right:0px;
  2453. border-bottom:0px;
  2454. border-radius:0px;
  2455. border-top-left-radius:0px;
  2456. border-bottom-left-radius:0px;
  2457. -moz-box-shadow:none;
  2458. -webkit-box-shadow:none;
  2459. box-shadow:none;
  2460. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2461. font-weight:400;
  2462. font-style:normal;
  2463. font-size:14px;
  2464. }
  2465. #u86420 {
  2466. border-width:0px;
  2467. position:absolute;
  2468. left:215px;
  2469. top:405px;
  2470. width:95px;
  2471. height:30px;
  2472. display:flex;
  2473. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2474. font-weight:400;
  2475. font-style:normal;
  2476. font-size:14px;
  2477. }
  2478. #u86420 .text {
  2479. position:absolute;
  2480. align-self:center;
  2481. padding:5px 10px 5px 0px;
  2482. box-sizing:border-box;
  2483. width:100%;
  2484. }
  2485. #u86420_text {
  2486. border-width:0px;
  2487. white-space:nowrap;
  2488. text-transform:none;
  2489. }
  2490. #u86421_div {
  2491. border-width:0px;
  2492. position:absolute;
  2493. left:0px;
  2494. top:0px;
  2495. width:53px;
  2496. height:30px;
  2497. background:inherit;
  2498. background-color:rgba(255, 255, 255, 0);
  2499. border:none;
  2500. border-top:0px;
  2501. border-right:0px;
  2502. border-bottom:0px;
  2503. border-radius:0px;
  2504. border-top-left-radius:0px;
  2505. border-bottom-left-radius:0px;
  2506. -moz-box-shadow:none;
  2507. -webkit-box-shadow:none;
  2508. box-shadow:none;
  2509. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2510. font-weight:400;
  2511. font-style:normal;
  2512. font-size:14px;
  2513. color:#7F7F7F;
  2514. }
  2515. #u86421 {
  2516. border-width:0px;
  2517. position:absolute;
  2518. left:134px;
  2519. top:445px;
  2520. width:53px;
  2521. height:30px;
  2522. display:flex;
  2523. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2524. font-weight:400;
  2525. font-style:normal;
  2526. font-size:14px;
  2527. color:#7F7F7F;
  2528. }
  2529. #u86421 .text {
  2530. position:absolute;
  2531. align-self:center;
  2532. padding:5px 10px 5px 0px;
  2533. box-sizing:border-box;
  2534. width:100%;
  2535. }
  2536. #u86421_text {
  2537. border-width:0px;
  2538. white-space:nowrap;
  2539. text-transform:none;
  2540. }
  2541. #u86422_img {
  2542. border-width:0px;
  2543. position:absolute;
  2544. left:0px;
  2545. top:0px;
  2546. width:79px;
  2547. height:53px;
  2548. }
  2549. #u86422 {
  2550. border-width:0px;
  2551. position:absolute;
  2552. left:215px;
  2553. top:445px;
  2554. width:79px;
  2555. height:53px;
  2556. display:flex;
  2557. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2558. font-weight:400;
  2559. font-style:normal;
  2560. }
  2561. #u86422 .text {
  2562. position:absolute;
  2563. align-self:center;
  2564. padding:2px 2px 2px 2px;
  2565. box-sizing:border-box;
  2566. width:100%;
  2567. }
  2568. #u86422_text {
  2569. border-width:0px;
  2570. word-wrap:break-word;
  2571. text-transform:none;
  2572. visibility:hidden;
  2573. }
  2574. #u86423 {
  2575. border-width:0px;
  2576. position:absolute;
  2577. left:0px;
  2578. top:0px;
  2579. width:0px;
  2580. height:0px;
  2581. }
  2582. #u86424_div {
  2583. border-width:0px;
  2584. position:absolute;
  2585. left:0px;
  2586. top:0px;
  2587. width:918px;
  2588. height:398px;
  2589. background:inherit;
  2590. background-color:rgba(255, 255, 255, 1);
  2591. box-sizing:border-box;
  2592. border-width:1px;
  2593. border-style:solid;
  2594. border-color:rgba(215, 215, 215, 1);
  2595. border-radius:4px;
  2596. -moz-box-shadow:none;
  2597. -webkit-box-shadow:none;
  2598. box-shadow:none;
  2599. font-size:11px;
  2600. text-align:left;
  2601. }
  2602. #u86424 {
  2603. border-width:0px;
  2604. position:absolute;
  2605. left:134px;
  2606. top:515px;
  2607. width:918px;
  2608. height:398px;
  2609. display:flex;
  2610. font-size:11px;
  2611. text-align:left;
  2612. }
  2613. #u86424 .text {
  2614. position:absolute;
  2615. align-self:center;
  2616. padding:2px 2px 2px 20px;
  2617. box-sizing:border-box;
  2618. width:100%;
  2619. }
  2620. #u86424_text {
  2621. border-width:0px;
  2622. word-wrap:break-word;
  2623. text-transform:none;
  2624. visibility:hidden;
  2625. }
  2626. #u86425_div {
  2627. border-width:0px;
  2628. position:absolute;
  2629. left:0px;
  2630. top:0px;
  2631. width:67px;
  2632. height:30px;
  2633. background:inherit;
  2634. background-color:rgba(255, 255, 255, 0);
  2635. border:none;
  2636. border-top:0px;
  2637. border-right:0px;
  2638. border-bottom:0px;
  2639. border-radius:0px;
  2640. border-top-left-radius:0px;
  2641. border-bottom-left-radius:0px;
  2642. -moz-box-shadow:none;
  2643. -webkit-box-shadow:none;
  2644. box-shadow:none;
  2645. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2646. font-weight:500;
  2647. font-style:normal;
  2648. font-size:14px;
  2649. }
  2650. #u86425 {
  2651. border-width:0px;
  2652. position:absolute;
  2653. left:154px;
  2654. top:525px;
  2655. width:67px;
  2656. height:30px;
  2657. display:flex;
  2658. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2659. font-weight:500;
  2660. font-style:normal;
  2661. font-size:14px;
  2662. }
  2663. #u86425 .text {
  2664. position:absolute;
  2665. align-self:center;
  2666. padding:5px 10px 5px 0px;
  2667. box-sizing:border-box;
  2668. width:100%;
  2669. }
  2670. #u86425_text {
  2671. border-width:0px;
  2672. white-space:nowrap;
  2673. text-transform:none;
  2674. }
  2675. #u86426_div {
  2676. border-width:0px;
  2677. position:absolute;
  2678. left:0px;
  2679. top:0px;
  2680. width:71px;
  2681. height:130px;
  2682. background:inherit;
  2683. background-color:rgba(255, 255, 255, 0);
  2684. border:none;
  2685. border-top:0px;
  2686. border-right:0px;
  2687. border-bottom:0px;
  2688. border-radius:0px;
  2689. border-top-left-radius:0px;
  2690. border-bottom-left-radius:0px;
  2691. -moz-box-shadow:none;
  2692. -webkit-box-shadow:none;
  2693. box-shadow:none;
  2694. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2695. font-weight:400;
  2696. font-style:normal;
  2697. font-size:14px;
  2698. color:#7F7F7F;
  2699. line-height:30px;
  2700. }
  2701. #u86426 {
  2702. border-width:0px;
  2703. position:absolute;
  2704. left:156px;
  2705. top:561px;
  2706. width:71px;
  2707. height:130px;
  2708. display:flex;
  2709. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2710. font-weight:400;
  2711. font-style:normal;
  2712. font-size:14px;
  2713. color:#7F7F7F;
  2714. line-height:30px;
  2715. }
  2716. #u86426 .text {
  2717. position:absolute;
  2718. align-self:flex-start;
  2719. padding:5px 0px 5px 0px;
  2720. box-sizing:border-box;
  2721. width:100%;
  2722. }
  2723. #u86426_text {
  2724. border-width:0px;
  2725. white-space:nowrap;
  2726. text-transform:none;
  2727. }
  2728. #u86427_div {
  2729. border-width:0px;
  2730. position:absolute;
  2731. left:0px;
  2732. top:0px;
  2733. width:173px;
  2734. height:130px;
  2735. background:inherit;
  2736. background-color:rgba(255, 255, 255, 0);
  2737. border:none;
  2738. border-top:0px;
  2739. border-right:0px;
  2740. border-bottom:0px;
  2741. border-radius:0px;
  2742. border-top-left-radius:0px;
  2743. border-bottom-left-radius:0px;
  2744. -moz-box-shadow:none;
  2745. -webkit-box-shadow:none;
  2746. box-shadow:none;
  2747. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2748. font-weight:400;
  2749. font-style:normal;
  2750. font-size:14px;
  2751. line-height:30px;
  2752. }
  2753. #u86427 {
  2754. border-width:0px;
  2755. position:absolute;
  2756. left:243px;
  2757. top:561px;
  2758. width:173px;
  2759. height:130px;
  2760. display:flex;
  2761. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2762. font-weight:400;
  2763. font-style:normal;
  2764. font-size:14px;
  2765. line-height:30px;
  2766. }
  2767. #u86427 .text {
  2768. position:absolute;
  2769. align-self:flex-start;
  2770. padding:5px 10px 5px 0px;
  2771. box-sizing:border-box;
  2772. width:100%;
  2773. }
  2774. #u86427_text {
  2775. border-width:0px;
  2776. white-space:nowrap;
  2777. text-transform:none;
  2778. }
  2779. #u86428_div {
  2780. border-width:0px;
  2781. position:absolute;
  2782. left:0px;
  2783. top:0px;
  2784. width:71px;
  2785. height:90px;
  2786. background:inherit;
  2787. background-color:rgba(255, 255, 255, 0);
  2788. border:none;
  2789. border-top:0px;
  2790. border-right:0px;
  2791. border-bottom:0px;
  2792. border-radius:0px;
  2793. border-top-left-radius:0px;
  2794. border-bottom-left-radius:0px;
  2795. -moz-box-shadow:none;
  2796. -webkit-box-shadow:none;
  2797. box-shadow:none;
  2798. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2799. font-weight:400;
  2800. font-style:normal;
  2801. font-size:14px;
  2802. color:#7F7F7F;
  2803. }
  2804. #u86428 {
  2805. border-width:0px;
  2806. position:absolute;
  2807. left:497px;
  2808. top:561px;
  2809. width:71px;
  2810. height:90px;
  2811. display:flex;
  2812. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2813. font-weight:400;
  2814. font-style:normal;
  2815. font-size:14px;
  2816. color:#7F7F7F;
  2817. }
  2818. #u86428 .text {
  2819. position:absolute;
  2820. align-self:flex-start;
  2821. padding:5px 0px 5px 0px;
  2822. box-sizing:border-box;
  2823. width:100%;
  2824. }
  2825. #u86428_text {
  2826. border-width:0px;
  2827. white-space:nowrap;
  2828. text-transform:none;
  2829. }
  2830. #u86429_div {
  2831. border-width:0px;
  2832. position:absolute;
  2833. left:0px;
  2834. top:0px;
  2835. width:165px;
  2836. height:90px;
  2837. background:inherit;
  2838. background-color:rgba(255, 255, 255, 0);
  2839. border:none;
  2840. border-top:0px;
  2841. border-right:0px;
  2842. border-bottom:0px;
  2843. border-radius:0px;
  2844. border-top-left-radius:0px;
  2845. border-bottom-left-radius:0px;
  2846. -moz-box-shadow:none;
  2847. -webkit-box-shadow:none;
  2848. box-shadow:none;
  2849. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2850. font-weight:400;
  2851. font-style:normal;
  2852. font-size:14px;
  2853. }
  2854. #u86429 {
  2855. border-width:0px;
  2856. position:absolute;
  2857. left:568px;
  2858. top:561px;
  2859. width:165px;
  2860. height:90px;
  2861. display:flex;
  2862. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2863. font-weight:400;
  2864. font-style:normal;
  2865. font-size:14px;
  2866. }
  2867. #u86429 .text {
  2868. position:absolute;
  2869. align-self:flex-start;
  2870. padding:5px 10px 5px 0px;
  2871. box-sizing:border-box;
  2872. width:100%;
  2873. }
  2874. #u86429_text {
  2875. border-width:0px;
  2876. white-space:nowrap;
  2877. text-transform:none;
  2878. }
  2879. #u86430_div {
  2880. border-width:0px;
  2881. position:absolute;
  2882. left:0px;
  2883. top:0px;
  2884. width:81px;
  2885. height:90px;
  2886. background:inherit;
  2887. background-color:rgba(255, 255, 255, 0);
  2888. border:none;
  2889. border-top:0px;
  2890. border-right:0px;
  2891. border-bottom:0px;
  2892. border-radius:0px;
  2893. border-top-left-radius:0px;
  2894. border-bottom-left-radius:0px;
  2895. -moz-box-shadow:none;
  2896. -webkit-box-shadow:none;
  2897. box-shadow:none;
  2898. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2899. font-weight:400;
  2900. font-style:normal;
  2901. font-size:14px;
  2902. color:#7F7F7F;
  2903. }
  2904. #u86430 {
  2905. border-width:0px;
  2906. position:absolute;
  2907. left:794px;
  2908. top:561px;
  2909. width:81px;
  2910. height:90px;
  2911. display:flex;
  2912. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2913. font-weight:400;
  2914. font-style:normal;
  2915. font-size:14px;
  2916. color:#7F7F7F;
  2917. }
  2918. #u86430 .text {
  2919. position:absolute;
  2920. align-self:flex-start;
  2921. padding:5px 10px 5px 0px;
  2922. box-sizing:border-box;
  2923. width:100%;
  2924. }
  2925. #u86430_text {
  2926. border-width:0px;
  2927. white-space:nowrap;
  2928. text-transform:none;
  2929. }
  2930. #u86431_div {
  2931. border-width:0px;
  2932. position:absolute;
  2933. left:0px;
  2934. top:0px;
  2935. width:104px;
  2936. height:90px;
  2937. background:inherit;
  2938. background-color:rgba(255, 255, 255, 0);
  2939. border:none;
  2940. border-top:0px;
  2941. border-right:0px;
  2942. border-bottom:0px;
  2943. border-radius:0px;
  2944. border-top-left-radius:0px;
  2945. border-bottom-left-radius:0px;
  2946. -moz-box-shadow:none;
  2947. -webkit-box-shadow:none;
  2948. box-shadow:none;
  2949. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2950. font-weight:400;
  2951. font-style:normal;
  2952. font-size:14px;
  2953. }
  2954. #u86431 {
  2955. border-width:0px;
  2956. position:absolute;
  2957. left:881px;
  2958. top:561px;
  2959. width:104px;
  2960. height:90px;
  2961. display:flex;
  2962. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2963. font-weight:400;
  2964. font-style:normal;
  2965. font-size:14px;
  2966. }
  2967. #u86431 .text {
  2968. position:absolute;
  2969. align-self:flex-start;
  2970. padding:5px 10px 5px 0px;
  2971. box-sizing:border-box;
  2972. width:100%;
  2973. }
  2974. #u86431_text {
  2975. border-width:0px;
  2976. white-space:nowrap;
  2977. text-transform:none;
  2978. }
  2979. #u86432 {
  2980. border-width:0px;
  2981. position:absolute;
  2982. left:156px;
  2983. top:741px;
  2984. width:876px;
  2985. height:65px;
  2986. }
  2987. #u86433_img {
  2988. border-width:0px;
  2989. position:absolute;
  2990. left:0px;
  2991. top:0px;
  2992. width:219px;
  2993. height:30px;
  2994. }
  2995. #u86433 {
  2996. border-width:0px;
  2997. position:absolute;
  2998. left:0px;
  2999. top:0px;
  3000. width:219px;
  3001. height:30px;
  3002. display:flex;
  3003. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3004. font-weight:400;
  3005. font-style:normal;
  3006. font-size:12px;
  3007. color:#FFFFFF;
  3008. }
  3009. #u86433 .text {
  3010. position:absolute;
  3011. align-self:center;
  3012. padding:2px 2px 2px 2px;
  3013. box-sizing:border-box;
  3014. width:100%;
  3015. }
  3016. #u86433_text {
  3017. border-width:0px;
  3018. word-wrap:break-word;
  3019. text-transform:none;
  3020. }
  3021. #u86434_img {
  3022. border-width:0px;
  3023. position:absolute;
  3024. left:0px;
  3025. top:0px;
  3026. width:219px;
  3027. height:30px;
  3028. }
  3029. #u86434 {
  3030. border-width:0px;
  3031. position:absolute;
  3032. left:219px;
  3033. top:0px;
  3034. width:219px;
  3035. height:30px;
  3036. display:flex;
  3037. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3038. font-weight:400;
  3039. font-style:normal;
  3040. font-size:12px;
  3041. color:#FFFFFF;
  3042. }
  3043. #u86434 .text {
  3044. position:absolute;
  3045. align-self:center;
  3046. padding:2px 2px 2px 2px;
  3047. box-sizing:border-box;
  3048. width:100%;
  3049. }
  3050. #u86434_text {
  3051. border-width:0px;
  3052. word-wrap:break-word;
  3053. text-transform:none;
  3054. }
  3055. #u86435_img {
  3056. border-width:0px;
  3057. position:absolute;
  3058. left:0px;
  3059. top:0px;
  3060. width:219px;
  3061. height:30px;
  3062. }
  3063. #u86435 {
  3064. border-width:0px;
  3065. position:absolute;
  3066. left:438px;
  3067. top:0px;
  3068. width:219px;
  3069. height:30px;
  3070. display:flex;
  3071. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3072. font-weight:400;
  3073. font-style:normal;
  3074. font-size:12px;
  3075. color:#FFFFFF;
  3076. }
  3077. #u86435 .text {
  3078. position:absolute;
  3079. align-self:center;
  3080. padding:2px 2px 2px 2px;
  3081. box-sizing:border-box;
  3082. width:100%;
  3083. }
  3084. #u86435_text {
  3085. border-width:0px;
  3086. word-wrap:break-word;
  3087. text-transform:none;
  3088. }
  3089. #u86436_img {
  3090. border-width:0px;
  3091. position:absolute;
  3092. left:0px;
  3093. top:0px;
  3094. width:219px;
  3095. height:30px;
  3096. }
  3097. #u86436 {
  3098. border-width:0px;
  3099. position:absolute;
  3100. left:657px;
  3101. top:0px;
  3102. width:219px;
  3103. height:30px;
  3104. display:flex;
  3105. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3106. font-weight:400;
  3107. font-style:normal;
  3108. font-size:12px;
  3109. color:#FFFFFF;
  3110. }
  3111. #u86436 .text {
  3112. position:absolute;
  3113. align-self:center;
  3114. padding:2px 2px 2px 2px;
  3115. box-sizing:border-box;
  3116. width:100%;
  3117. }
  3118. #u86436_text {
  3119. border-width:0px;
  3120. word-wrap:break-word;
  3121. text-transform:none;
  3122. }
  3123. #u86437_img {
  3124. border-width:0px;
  3125. position:absolute;
  3126. left:0px;
  3127. top:0px;
  3128. width:219px;
  3129. height:35px;
  3130. }
  3131. #u86437 {
  3132. border-width:0px;
  3133. position:absolute;
  3134. left:0px;
  3135. top:30px;
  3136. width:219px;
  3137. height:35px;
  3138. display:flex;
  3139. font-size:12px;
  3140. }
  3141. #u86437 .text {
  3142. position:absolute;
  3143. align-self:center;
  3144. padding:2px 2px 2px 2px;
  3145. box-sizing:border-box;
  3146. width:100%;
  3147. }
  3148. #u86437_text {
  3149. border-width:0px;
  3150. word-wrap:break-word;
  3151. text-transform:none;
  3152. visibility:hidden;
  3153. }
  3154. #u86438_img {
  3155. border-width:0px;
  3156. position:absolute;
  3157. left:0px;
  3158. top:0px;
  3159. width:219px;
  3160. height:35px;
  3161. }
  3162. #u86438 {
  3163. border-width:0px;
  3164. position:absolute;
  3165. left:219px;
  3166. top:30px;
  3167. width:219px;
  3168. height:35px;
  3169. display:flex;
  3170. font-size:12px;
  3171. }
  3172. #u86438 .text {
  3173. position:absolute;
  3174. align-self:center;
  3175. padding:2px 2px 2px 2px;
  3176. box-sizing:border-box;
  3177. width:100%;
  3178. }
  3179. #u86438_text {
  3180. border-width:0px;
  3181. word-wrap:break-word;
  3182. text-transform:none;
  3183. visibility:hidden;
  3184. }
  3185. #u86439_img {
  3186. border-width:0px;
  3187. position:absolute;
  3188. left:0px;
  3189. top:0px;
  3190. width:219px;
  3191. height:35px;
  3192. }
  3193. #u86439 {
  3194. border-width:0px;
  3195. position:absolute;
  3196. left:438px;
  3197. top:30px;
  3198. width:219px;
  3199. height:35px;
  3200. display:flex;
  3201. font-size:12px;
  3202. }
  3203. #u86439 .text {
  3204. position:absolute;
  3205. align-self:center;
  3206. padding:2px 2px 2px 2px;
  3207. box-sizing:border-box;
  3208. width:100%;
  3209. }
  3210. #u86439_text {
  3211. border-width:0px;
  3212. word-wrap:break-word;
  3213. text-transform:none;
  3214. visibility:hidden;
  3215. }
  3216. #u86440_img {
  3217. border-width:0px;
  3218. position:absolute;
  3219. left:0px;
  3220. top:0px;
  3221. width:219px;
  3222. height:35px;
  3223. }
  3224. #u86440 {
  3225. border-width:0px;
  3226. position:absolute;
  3227. left:657px;
  3228. top:30px;
  3229. width:219px;
  3230. height:35px;
  3231. display:flex;
  3232. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3233. font-weight:400;
  3234. font-style:normal;
  3235. font-size:12px;
  3236. }
  3237. #u86440 .text {
  3238. position:absolute;
  3239. align-self:center;
  3240. padding:2px 2px 2px 2px;
  3241. box-sizing:border-box;
  3242. width:100%;
  3243. }
  3244. #u86440_text {
  3245. border-width:0px;
  3246. word-wrap:break-word;
  3247. text-transform:none;
  3248. visibility:hidden;
  3249. }
  3250. #u86441 {
  3251. border-width:0px;
  3252. position:absolute;
  3253. left:156px;
  3254. top:816px;
  3255. width:876px;
  3256. height:65px;
  3257. }
  3258. #u86442_img {
  3259. border-width:0px;
  3260. position:absolute;
  3261. left:0px;
  3262. top:0px;
  3263. width:146px;
  3264. height:30px;
  3265. }
  3266. #u86442 {
  3267. border-width:0px;
  3268. position:absolute;
  3269. left:0px;
  3270. top:0px;
  3271. width:146px;
  3272. height:30px;
  3273. display:flex;
  3274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3275. font-weight:400;
  3276. font-style:normal;
  3277. font-size:12px;
  3278. color:#FFFFFF;
  3279. }
  3280. #u86442 .text {
  3281. position:absolute;
  3282. align-self:center;
  3283. padding:2px 2px 2px 2px;
  3284. box-sizing:border-box;
  3285. width:100%;
  3286. }
  3287. #u86442_text {
  3288. border-width:0px;
  3289. word-wrap:break-word;
  3290. text-transform:none;
  3291. }
  3292. #u86443_img {
  3293. border-width:0px;
  3294. position:absolute;
  3295. left:0px;
  3296. top:0px;
  3297. width:146px;
  3298. height:30px;
  3299. }
  3300. #u86443 {
  3301. border-width:0px;
  3302. position:absolute;
  3303. left:146px;
  3304. top:0px;
  3305. width:146px;
  3306. height:30px;
  3307. display:flex;
  3308. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3309. font-weight:400;
  3310. font-style:normal;
  3311. font-size:12px;
  3312. color:#FFFFFF;
  3313. }
  3314. #u86443 .text {
  3315. position:absolute;
  3316. align-self:center;
  3317. padding:2px 2px 2px 2px;
  3318. box-sizing:border-box;
  3319. width:100%;
  3320. }
  3321. #u86443_text {
  3322. border-width:0px;
  3323. word-wrap:break-word;
  3324. text-transform:none;
  3325. }
  3326. #u86444_img {
  3327. border-width:0px;
  3328. position:absolute;
  3329. left:0px;
  3330. top:0px;
  3331. width:146px;
  3332. height:30px;
  3333. }
  3334. #u86444 {
  3335. border-width:0px;
  3336. position:absolute;
  3337. left:292px;
  3338. top:0px;
  3339. width:146px;
  3340. height:30px;
  3341. display:flex;
  3342. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3343. font-weight:400;
  3344. font-style:normal;
  3345. font-size:12px;
  3346. color:#FFFFFF;
  3347. }
  3348. #u86444 .text {
  3349. position:absolute;
  3350. align-self:center;
  3351. padding:2px 2px 2px 2px;
  3352. box-sizing:border-box;
  3353. width:100%;
  3354. }
  3355. #u86444_text {
  3356. border-width:0px;
  3357. word-wrap:break-word;
  3358. text-transform:none;
  3359. }
  3360. #u86445_img {
  3361. border-width:0px;
  3362. position:absolute;
  3363. left:0px;
  3364. top:0px;
  3365. width:146px;
  3366. height:30px;
  3367. }
  3368. #u86445 {
  3369. border-width:0px;
  3370. position:absolute;
  3371. left:438px;
  3372. top:0px;
  3373. width:146px;
  3374. height:30px;
  3375. display:flex;
  3376. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3377. font-weight:400;
  3378. font-style:normal;
  3379. font-size:12px;
  3380. color:#FFFFFF;
  3381. }
  3382. #u86445 .text {
  3383. position:absolute;
  3384. align-self:center;
  3385. padding:2px 2px 2px 2px;
  3386. box-sizing:border-box;
  3387. width:100%;
  3388. }
  3389. #u86445_text {
  3390. border-width:0px;
  3391. word-wrap:break-word;
  3392. text-transform:none;
  3393. }
  3394. #u86446_img {
  3395. border-width:0px;
  3396. position:absolute;
  3397. left:0px;
  3398. top:0px;
  3399. width:146px;
  3400. height:30px;
  3401. }
  3402. #u86446 {
  3403. border-width:0px;
  3404. position:absolute;
  3405. left:584px;
  3406. top:0px;
  3407. width:146px;
  3408. height:30px;
  3409. display:flex;
  3410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3411. font-weight:400;
  3412. font-style:normal;
  3413. font-size:12px;
  3414. color:#FFFFFF;
  3415. }
  3416. #u86446 .text {
  3417. position:absolute;
  3418. align-self:center;
  3419. padding:2px 2px 2px 2px;
  3420. box-sizing:border-box;
  3421. width:100%;
  3422. }
  3423. #u86446_text {
  3424. border-width:0px;
  3425. word-wrap:break-word;
  3426. text-transform:none;
  3427. }
  3428. #u86447_img {
  3429. border-width:0px;
  3430. position:absolute;
  3431. left:0px;
  3432. top:0px;
  3433. width:146px;
  3434. height:30px;
  3435. }
  3436. #u86447 {
  3437. border-width:0px;
  3438. position:absolute;
  3439. left:730px;
  3440. top:0px;
  3441. width:146px;
  3442. height:30px;
  3443. display:flex;
  3444. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3445. font-weight:400;
  3446. font-style:normal;
  3447. font-size:12px;
  3448. color:#FFFFFF;
  3449. }
  3450. #u86447 .text {
  3451. position:absolute;
  3452. align-self:center;
  3453. padding:2px 2px 2px 2px;
  3454. box-sizing:border-box;
  3455. width:100%;
  3456. }
  3457. #u86447_text {
  3458. border-width:0px;
  3459. word-wrap:break-word;
  3460. text-transform:none;
  3461. }
  3462. #u86448_img {
  3463. border-width:0px;
  3464. position:absolute;
  3465. left:0px;
  3466. top:0px;
  3467. width:146px;
  3468. height:35px;
  3469. }
  3470. #u86448 {
  3471. border-width:0px;
  3472. position:absolute;
  3473. left:0px;
  3474. top:30px;
  3475. width:146px;
  3476. height:35px;
  3477. display:flex;
  3478. font-size:12px;
  3479. }
  3480. #u86448 .text {
  3481. position:absolute;
  3482. align-self:center;
  3483. padding:2px 2px 2px 2px;
  3484. box-sizing:border-box;
  3485. width:100%;
  3486. }
  3487. #u86448_text {
  3488. border-width:0px;
  3489. word-wrap:break-word;
  3490. text-transform:none;
  3491. }
  3492. #u86449_img {
  3493. border-width:0px;
  3494. position:absolute;
  3495. left:0px;
  3496. top:0px;
  3497. width:146px;
  3498. height:35px;
  3499. }
  3500. #u86449 {
  3501. border-width:0px;
  3502. position:absolute;
  3503. left:146px;
  3504. top:30px;
  3505. width:146px;
  3506. height:35px;
  3507. display:flex;
  3508. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3509. font-weight:400;
  3510. font-style:normal;
  3511. font-size:12px;
  3512. }
  3513. #u86449 .text {
  3514. position:absolute;
  3515. align-self:center;
  3516. padding:2px 2px 2px 2px;
  3517. box-sizing:border-box;
  3518. width:100%;
  3519. }
  3520. #u86449_text {
  3521. border-width:0px;
  3522. word-wrap:break-word;
  3523. text-transform:none;
  3524. }
  3525. #u86450_img {
  3526. border-width:0px;
  3527. position:absolute;
  3528. left:0px;
  3529. top:0px;
  3530. width:146px;
  3531. height:35px;
  3532. }
  3533. #u86450 {
  3534. border-width:0px;
  3535. position:absolute;
  3536. left:292px;
  3537. top:30px;
  3538. width:146px;
  3539. height:35px;
  3540. display:flex;
  3541. font-size:12px;
  3542. }
  3543. #u86450 .text {
  3544. position:absolute;
  3545. align-self:center;
  3546. padding:2px 2px 2px 2px;
  3547. box-sizing:border-box;
  3548. width:100%;
  3549. }
  3550. #u86450_text {
  3551. border-width:0px;
  3552. word-wrap:break-word;
  3553. text-transform:none;
  3554. }
  3555. #u86451_img {
  3556. border-width:0px;
  3557. position:absolute;
  3558. left:0px;
  3559. top:0px;
  3560. width:146px;
  3561. height:35px;
  3562. }
  3563. #u86451 {
  3564. border-width:0px;
  3565. position:absolute;
  3566. left:438px;
  3567. top:30px;
  3568. width:146px;
  3569. height:35px;
  3570. display:flex;
  3571. font-size:12px;
  3572. }
  3573. #u86451 .text {
  3574. position:absolute;
  3575. align-self:center;
  3576. padding:2px 2px 2px 2px;
  3577. box-sizing:border-box;
  3578. width:100%;
  3579. }
  3580. #u86451_text {
  3581. border-width:0px;
  3582. word-wrap:break-word;
  3583. text-transform:none;
  3584. }
  3585. #u86452_img {
  3586. border-width:0px;
  3587. position:absolute;
  3588. left:0px;
  3589. top:0px;
  3590. width:146px;
  3591. height:35px;
  3592. }
  3593. #u86452 {
  3594. border-width:0px;
  3595. position:absolute;
  3596. left:584px;
  3597. top:30px;
  3598. width:146px;
  3599. height:35px;
  3600. display:flex;
  3601. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3602. font-weight:400;
  3603. font-style:normal;
  3604. font-size:12px;
  3605. }
  3606. #u86452 .text {
  3607. position:absolute;
  3608. align-self:center;
  3609. padding:2px 2px 2px 2px;
  3610. box-sizing:border-box;
  3611. width:100%;
  3612. }
  3613. #u86452_text {
  3614. border-width:0px;
  3615. word-wrap:break-word;
  3616. text-transform:none;
  3617. }
  3618. #u86453_img {
  3619. border-width:0px;
  3620. position:absolute;
  3621. left:0px;
  3622. top:0px;
  3623. width:146px;
  3624. height:35px;
  3625. }
  3626. #u86453 {
  3627. border-width:0px;
  3628. position:absolute;
  3629. left:730px;
  3630. top:30px;
  3631. width:146px;
  3632. height:35px;
  3633. display:flex;
  3634. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3635. font-weight:400;
  3636. font-style:normal;
  3637. font-size:12px;
  3638. color:#D9001B;
  3639. }
  3640. #u86453 .text {
  3641. position:absolute;
  3642. align-self:center;
  3643. padding:2px 2px 2px 2px;
  3644. box-sizing:border-box;
  3645. width:100%;
  3646. }
  3647. #u86453_text {
  3648. border-width:0px;
  3649. word-wrap:break-word;
  3650. text-transform:none;
  3651. }
  3652. #u86454 {
  3653. border-width:0px;
  3654. position:absolute;
  3655. left:0px;
  3656. top:0px;
  3657. width:0px;
  3658. height:0px;
  3659. }
  3660. #u86455_div {
  3661. border-width:0px;
  3662. position:absolute;
  3663. left:0px;
  3664. top:0px;
  3665. width:67px;
  3666. height:30px;
  3667. background:inherit;
  3668. background-color:rgba(255, 255, 255, 0);
  3669. border:none;
  3670. border-top:0px;
  3671. border-right:0px;
  3672. border-bottom:0px;
  3673. border-radius:0px;
  3674. border-top-left-radius:0px;
  3675. border-bottom-left-radius:0px;
  3676. -moz-box-shadow:none;
  3677. -webkit-box-shadow:none;
  3678. box-shadow:none;
  3679. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3680. font-weight:400;
  3681. font-style:normal;
  3682. font-size:14px;
  3683. }
  3684. #u86455 {
  3685. border-width:0px;
  3686. position:absolute;
  3687. left:156px;
  3688. top:700px;
  3689. width:67px;
  3690. height:30px;
  3691. display:flex;
  3692. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3693. font-weight:400;
  3694. font-style:normal;
  3695. font-size:14px;
  3696. }
  3697. #u86455 .text {
  3698. position:absolute;
  3699. align-self:center;
  3700. padding:5px 10px 5px 0px;
  3701. box-sizing:border-box;
  3702. width:100%;
  3703. }
  3704. #u86455_text {
  3705. border-width:0px;
  3706. white-space:nowrap;
  3707. text-transform:none;
  3708. }
  3709. #u86456 {
  3710. border-width:0px;
  3711. position:absolute;
  3712. left:0px;
  3713. top:0px;
  3714. width:0px;
  3715. height:0px;
  3716. }
  3717. #u86457_img {
  3718. border-width:0px;
  3719. position:absolute;
  3720. left:0px;
  3721. top:0px;
  3722. width:12px;
  3723. height:11px;
  3724. }
  3725. #u86457 {
  3726. border-width:0px;
  3727. position:absolute;
  3728. left:277px;
  3729. top:710px;
  3730. width:12px;
  3731. height:11px;
  3732. display:flex;
  3733. -webkit-transform:rotate(180deg);
  3734. -moz-transform:rotate(180deg);
  3735. -ms-transform:rotate(180deg);
  3736. transform:rotate(180deg);
  3737. }
  3738. #u86457 .text {
  3739. position:absolute;
  3740. align-self:center;
  3741. padding:2px 2px 2px 2px;
  3742. box-sizing:border-box;
  3743. width:100%;
  3744. }
  3745. #u86457_text {
  3746. border-width:0px;
  3747. word-wrap:break-word;
  3748. text-transform:none;
  3749. visibility:hidden;
  3750. }
  3751. #u86458_div {
  3752. border-width:0px;
  3753. position:absolute;
  3754. left:0px;
  3755. top:0px;
  3756. width:39px;
  3757. height:30px;
  3758. background:inherit;
  3759. background-color:rgba(255, 255, 255, 0);
  3760. border:none;
  3761. border-top:0px;
  3762. border-right:0px;
  3763. border-bottom:0px;
  3764. border-radius:0px;
  3765. border-top-left-radius:0px;
  3766. border-bottom-left-radius:0px;
  3767. -moz-box-shadow:none;
  3768. -webkit-box-shadow:none;
  3769. box-shadow:none;
  3770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3771. font-weight:400;
  3772. font-style:normal;
  3773. font-size:14px;
  3774. color:#1890FF;
  3775. }
  3776. #u86458 {
  3777. border-width:0px;
  3778. position:absolute;
  3779. left:243px;
  3780. top:700px;
  3781. width:39px;
  3782. height:30px;
  3783. display:flex;
  3784. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3785. font-weight:400;
  3786. font-style:normal;
  3787. font-size:14px;
  3788. color:#1890FF;
  3789. }
  3790. #u86458 .text {
  3791. position:absolute;
  3792. align-self:center;
  3793. padding:5px 10px 5px 0px;
  3794. box-sizing:border-box;
  3795. width:100%;
  3796. }
  3797. #u86458_text {
  3798. border-width:0px;
  3799. white-space:nowrap;
  3800. text-transform:none;
  3801. }
  3802. #u86459 {
  3803. border-width:0px;
  3804. position:absolute;
  3805. left:0px;
  3806. top:0px;
  3807. width:0px;
  3808. height:0px;
  3809. }
  3810. #u86460_div {
  3811. border-width:0px;
  3812. position:absolute;
  3813. left:0px;
  3814. top:0px;
  3815. width:1000px;
  3816. height:297px;
  3817. background:inherit;
  3818. background-color:rgba(255, 255, 255, 1);
  3819. box-sizing:border-box;
  3820. border-width:1px;
  3821. border-style:solid;
  3822. border-color:rgba(215, 215, 215, 1);
  3823. border-radius:0px;
  3824. -moz-box-shadow:none;
  3825. -webkit-box-shadow:none;
  3826. box-shadow:none;
  3827. }
  3828. #u86460 {
  3829. border-width:0px;
  3830. position:absolute;
  3831. left:94px;
  3832. top:949px;
  3833. width:1000px;
  3834. height:297px;
  3835. display:flex;
  3836. }
  3837. #u86460 .text {
  3838. position:absolute;
  3839. align-self:center;
  3840. padding:2px 2px 2px 2px;
  3841. box-sizing:border-box;
  3842. width:100%;
  3843. }
  3844. #u86460_text {
  3845. border-width:0px;
  3846. word-wrap:break-word;
  3847. text-transform:none;
  3848. visibility:hidden;
  3849. }
  3850. #u86461_div {
  3851. border-width:0px;
  3852. position:absolute;
  3853. left:0px;
  3854. top:0px;
  3855. width:103px;
  3856. height:24px;
  3857. background:inherit;
  3858. background-color:rgba(255, 255, 255, 0);
  3859. border:none;
  3860. border-top:0px;
  3861. border-right:0px;
  3862. border-bottom:0px;
  3863. border-radius:0px;
  3864. border-top-left-radius:0px;
  3865. border-bottom-left-radius:0px;
  3866. -moz-box-shadow:none;
  3867. -webkit-box-shadow:none;
  3868. box-shadow:none;
  3869. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3870. font-weight:400;
  3871. font-style:normal;
  3872. font-size:10px;
  3873. color:#AAAAAA;
  3874. }
  3875. #u86461 {
  3876. border-width:0px;
  3877. position:absolute;
  3878. left:349px;
  3879. top:1022px;
  3880. width:103px;
  3881. height:24px;
  3882. display:flex;
  3883. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3884. font-weight:400;
  3885. font-style:normal;
  3886. font-size:10px;
  3887. color:#AAAAAA;
  3888. }
  3889. #u86461 .text {
  3890. position:absolute;
  3891. align-self:flex-start;
  3892. padding:5px 0px 5px 0px;
  3893. box-sizing:border-box;
  3894. width:100%;
  3895. }
  3896. #u86461_text {
  3897. border-width:0px;
  3898. white-space:nowrap;
  3899. text-transform:none;
  3900. }
  3901. #u86462 {
  3902. border-width:0px;
  3903. position:absolute;
  3904. left:0px;
  3905. top:0px;
  3906. width:0px;
  3907. height:0px;
  3908. }
  3909. #u86463_div {
  3910. border-width:0px;
  3911. position:absolute;
  3912. left:0px;
  3913. top:0px;
  3914. width:43px;
  3915. height:30px;
  3916. background:inherit;
  3917. background-color:rgba(255, 255, 255, 0);
  3918. border:none;
  3919. border-top:0px;
  3920. border-right:0px;
  3921. border-bottom:0px;
  3922. border-radius:0px;
  3923. border-top-left-radius:0px;
  3924. border-bottom-left-radius:0px;
  3925. -moz-box-shadow:none;
  3926. -webkit-box-shadow:none;
  3927. box-shadow:none;
  3928. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3929. font-weight:400;
  3930. font-style:normal;
  3931. font-size:14px;
  3932. }
  3933. #u86463 {
  3934. border-width:0px;
  3935. position:absolute;
  3936. left:182px;
  3937. top:1024px;
  3938. width:43px;
  3939. height:30px;
  3940. display:flex;
  3941. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3942. font-weight:400;
  3943. font-style:normal;
  3944. font-size:14px;
  3945. }
  3946. #u86463 .text {
  3947. position:absolute;
  3948. align-self:flex-start;
  3949. padding:0px 0px 0px 0px;
  3950. box-sizing:border-box;
  3951. width:100%;
  3952. }
  3953. #u86463_text {
  3954. border-width:0px;
  3955. white-space:nowrap;
  3956. text-transform:none;
  3957. }
  3958. #u86464_div {
  3959. border-width:0px;
  3960. position:absolute;
  3961. left:0px;
  3962. top:0px;
  3963. width:71px;
  3964. height:16px;
  3965. background:inherit;
  3966. background-color:rgba(255, 255, 255, 0);
  3967. border:none;
  3968. border-top:0px;
  3969. border-right:0px;
  3970. border-bottom:0px;
  3971. border-radius:0px;
  3972. border-top-left-radius:0px;
  3973. border-bottom-left-radius:0px;
  3974. -moz-box-shadow:none;
  3975. -webkit-box-shadow:none;
  3976. box-shadow:none;
  3977. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3978. font-weight:400;
  3979. font-style:normal;
  3980. font-size:11px;
  3981. color:#AAAAAA;
  3982. }
  3983. #u86464 {
  3984. border-width:0px;
  3985. position:absolute;
  3986. left:182px;
  3987. top:1052px;
  3988. width:71px;
  3989. height:16px;
  3990. display:flex;
  3991. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3992. font-weight:400;
  3993. font-style:normal;
  3994. font-size:11px;
  3995. color:#AAAAAA;
  3996. }
  3997. #u86464 .text {
  3998. position:absolute;
  3999. align-self:flex-start;
  4000. padding:0px 0px 0px 0px;
  4001. box-sizing:border-box;
  4002. width:100%;
  4003. }
  4004. #u86464_text {
  4005. border-width:0px;
  4006. white-space:nowrap;
  4007. text-transform:none;
  4008. }
  4009. #u86465_div {
  4010. border-width:0px;
  4011. position:absolute;
  4012. left:0px;
  4013. top:0px;
  4014. width:43px;
  4015. height:20px;
  4016. background:inherit;
  4017. background-color:rgba(255, 255, 255, 0);
  4018. border:none;
  4019. border-top:0px;
  4020. border-right:0px;
  4021. border-bottom:0px;
  4022. border-radius:0px;
  4023. border-top-left-radius:0px;
  4024. border-bottom-left-radius:0px;
  4025. -moz-box-shadow:none;
  4026. -webkit-box-shadow:none;
  4027. box-shadow:none;
  4028. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4029. font-weight:400;
  4030. font-style:normal;
  4031. font-size:14px;
  4032. }
  4033. #u86465 {
  4034. border-width:0px;
  4035. position:absolute;
  4036. left:182px;
  4037. top:1094px;
  4038. width:43px;
  4039. height:20px;
  4040. display:flex;
  4041. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4042. font-weight:400;
  4043. font-style:normal;
  4044. font-size:14px;
  4045. }
  4046. #u86465 .text {
  4047. position:absolute;
  4048. align-self:flex-start;
  4049. padding:0px 0px 0px 0px;
  4050. box-sizing:border-box;
  4051. width:100%;
  4052. }
  4053. #u86465_text {
  4054. border-width:0px;
  4055. white-space:nowrap;
  4056. text-transform:none;
  4057. }
  4058. #u86466_div {
  4059. border-width:0px;
  4060. position:absolute;
  4061. left:0px;
  4062. top:0px;
  4063. width:91px;
  4064. height:16px;
  4065. background:inherit;
  4066. background-color:rgba(255, 255, 255, 0);
  4067. border:none;
  4068. border-top:0px;
  4069. border-right:0px;
  4070. border-bottom:0px;
  4071. border-radius:0px;
  4072. border-top-left-radius:0px;
  4073. border-bottom-left-radius:0px;
  4074. -moz-box-shadow:none;
  4075. -webkit-box-shadow:none;
  4076. box-shadow:none;
  4077. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4078. font-weight:400;
  4079. font-style:normal;
  4080. font-size:11px;
  4081. color:#AAAAAA;
  4082. }
  4083. #u86466 {
  4084. border-width:0px;
  4085. position:absolute;
  4086. left:182px;
  4087. top:1122px;
  4088. width:91px;
  4089. height:16px;
  4090. display:flex;
  4091. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4092. font-weight:400;
  4093. font-style:normal;
  4094. font-size:11px;
  4095. color:#AAAAAA;
  4096. }
  4097. #u86466 .text {
  4098. position:absolute;
  4099. align-self:flex-start;
  4100. padding:0px 0px 0px 0px;
  4101. box-sizing:border-box;
  4102. width:100%;
  4103. }
  4104. #u86466_text {
  4105. border-width:0px;
  4106. white-space:nowrap;
  4107. text-transform:none;
  4108. }
  4109. #u86467_div {
  4110. border-width:0px;
  4111. position:absolute;
  4112. left:0px;
  4113. top:0px;
  4114. width:37px;
  4115. height:35px;
  4116. background:inherit;
  4117. background-color:rgba(255, 255, 255, 0);
  4118. border:none;
  4119. border-top:0px;
  4120. border-right:0px;
  4121. border-bottom:0px;
  4122. border-radius:0px;
  4123. border-top-left-radius:0px;
  4124. border-bottom-left-radius:0px;
  4125. -moz-box-shadow:none;
  4126. -webkit-box-shadow:none;
  4127. box-shadow:none;
  4128. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4129. font-weight:500;
  4130. font-style:normal;
  4131. font-size:18px;
  4132. }
  4133. #u86467 {
  4134. border-width:0px;
  4135. position:absolute;
  4136. left:120px;
  4137. top:967px;
  4138. width:37px;
  4139. height:35px;
  4140. display:flex;
  4141. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4142. font-weight:500;
  4143. font-style:normal;
  4144. font-size:18px;
  4145. }
  4146. #u86467 .text {
  4147. position:absolute;
  4148. align-self:flex-start;
  4149. padding:5px 0px 5px 0px;
  4150. box-sizing:border-box;
  4151. width:100%;
  4152. }
  4153. #u86467_text {
  4154. border-width:0px;
  4155. white-space:nowrap;
  4156. text-transform:none;
  4157. }
  4158. #u86468 {
  4159. border-width:0px;
  4160. position:absolute;
  4161. left:0px;
  4162. top:0px;
  4163. width:0px;
  4164. height:0px;
  4165. }
  4166. #u86469_img {
  4167. border-width:0px;
  4168. position:absolute;
  4169. left:0px;
  4170. top:0px;
  4171. width:2px;
  4172. height:32px;
  4173. }
  4174. #u86469 {
  4175. border-width:0px;
  4176. position:absolute;
  4177. left:159px;
  4178. top:1058px;
  4179. width:1px;
  4180. height:31px;
  4181. display:flex;
  4182. }
  4183. #u86469 .text {
  4184. position:absolute;
  4185. align-self:center;
  4186. padding:2px 2px 2px 2px;
  4187. box-sizing:border-box;
  4188. width:100%;
  4189. }
  4190. #u86469_text {
  4191. border-width:0px;
  4192. word-wrap:break-word;
  4193. text-transform:none;
  4194. visibility:hidden;
  4195. }
  4196. #u86470 {
  4197. border-width:0px;
  4198. position:absolute;
  4199. left:0px;
  4200. top:0px;
  4201. width:0px;
  4202. height:0px;
  4203. }
  4204. #u86471_div {
  4205. border-width:0px;
  4206. position:absolute;
  4207. left:0px;
  4208. top:0px;
  4209. width:30px;
  4210. height:30px;
  4211. background:inherit;
  4212. background-color:rgba(24, 144, 255, 1);
  4213. border:none;
  4214. border-radius:4px;
  4215. -moz-box-shadow:none;
  4216. -webkit-box-shadow:none;
  4217. box-shadow:none;
  4218. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4219. font-weight:400;
  4220. font-style:normal;
  4221. font-size:10px;
  4222. color:#FFFFFF;
  4223. }
  4224. #u86471 {
  4225. border-width:0px;
  4226. position:absolute;
  4227. left:144px;
  4228. top:1094px;
  4229. width:30px;
  4230. height:30px;
  4231. display:flex;
  4232. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4233. font-weight:400;
  4234. font-style:normal;
  4235. font-size:10px;
  4236. color:#FFFFFF;
  4237. }
  4238. #u86471 .text {
  4239. position:absolute;
  4240. align-self:center;
  4241. padding:2px 2px 2px 2px;
  4242. box-sizing:border-box;
  4243. width:100%;
  4244. }
  4245. #u86471_text {
  4246. border-width:0px;
  4247. word-wrap:break-word;
  4248. text-transform:none;
  4249. }
  4250. #u86472 {
  4251. border-width:0px;
  4252. position:absolute;
  4253. left:0px;
  4254. top:0px;
  4255. width:0px;
  4256. height:0px;
  4257. }
  4258. #u86473_img {
  4259. border-width:0px;
  4260. position:absolute;
  4261. left:0px;
  4262. top:0px;
  4263. width:9px;
  4264. height:9px;
  4265. }
  4266. #u86473 {
  4267. border-width:0px;
  4268. position:absolute;
  4269. left:166px;
  4270. top:1116px;
  4271. width:9px;
  4272. height:9px;
  4273. display:flex;
  4274. }
  4275. #u86473 .text {
  4276. position:absolute;
  4277. align-self:center;
  4278. padding:2px 2px 2px 2px;
  4279. box-sizing:border-box;
  4280. width:100%;
  4281. }
  4282. #u86473_text {
  4283. border-width:0px;
  4284. word-wrap:break-word;
  4285. text-transform:none;
  4286. visibility:hidden;
  4287. }
  4288. #u86474_img {
  4289. border-width:0px;
  4290. position:absolute;
  4291. left:0px;
  4292. top:0px;
  4293. width:5px;
  4294. height:1px;
  4295. }
  4296. #u86474 {
  4297. border-width:0px;
  4298. position:absolute;
  4299. left:168px;
  4300. top:1120px;
  4301. width:5px;
  4302. height:1px;
  4303. display:flex;
  4304. }
  4305. #u86474 .text {
  4306. position:absolute;
  4307. align-self:center;
  4308. padding:2px 2px 2px 2px;
  4309. box-sizing:border-box;
  4310. width:100%;
  4311. }
  4312. #u86474_text {
  4313. border-width:0px;
  4314. word-wrap:break-word;
  4315. text-transform:none;
  4316. visibility:hidden;
  4317. }
  4318. #u86475 {
  4319. border-width:0px;
  4320. position:absolute;
  4321. left:0px;
  4322. top:0px;
  4323. width:0px;
  4324. height:0px;
  4325. }
  4326. #u86476_div {
  4327. border-width:0px;
  4328. position:absolute;
  4329. left:0px;
  4330. top:0px;
  4331. width:30px;
  4332. height:30px;
  4333. background:inherit;
  4334. background-color:rgba(24, 144, 255, 1);
  4335. border:none;
  4336. border-radius:4px;
  4337. -moz-box-shadow:none;
  4338. -webkit-box-shadow:none;
  4339. box-shadow:none;
  4340. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4341. font-weight:400;
  4342. font-style:normal;
  4343. font-size:12px;
  4344. color:#FFFFFF;
  4345. }
  4346. #u86476 {
  4347. border-width:0px;
  4348. position:absolute;
  4349. left:144px;
  4350. top:1024px;
  4351. width:30px;
  4352. height:30px;
  4353. display:flex;
  4354. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4355. font-weight:400;
  4356. font-style:normal;
  4357. font-size:12px;
  4358. color:#FFFFFF;
  4359. }
  4360. #u86476 .text {
  4361. position:absolute;
  4362. align-self:center;
  4363. padding:2px 2px 2px 2px;
  4364. box-sizing:border-box;
  4365. width:100%;
  4366. }
  4367. #u86476_text {
  4368. border-width:0px;
  4369. word-wrap:break-word;
  4370. text-transform:none;
  4371. }
  4372. #u86477 {
  4373. border-width:0px;
  4374. position:absolute;
  4375. left:0px;
  4376. top:0px;
  4377. width:0px;
  4378. height:0px;
  4379. }
  4380. #u86478_img {
  4381. border-width:0px;
  4382. position:absolute;
  4383. left:0px;
  4384. top:0px;
  4385. width:9px;
  4386. height:9px;
  4387. }
  4388. #u86478 {
  4389. border-width:0px;
  4390. position:absolute;
  4391. left:166px;
  4392. top:1046px;
  4393. width:9px;
  4394. height:9px;
  4395. display:flex;
  4396. }
  4397. #u86478 .text {
  4398. position:absolute;
  4399. align-self:center;
  4400. padding:2px 2px 2px 2px;
  4401. box-sizing:border-box;
  4402. width:100%;
  4403. }
  4404. #u86478_text {
  4405. border-width:0px;
  4406. word-wrap:break-word;
  4407. text-transform:none;
  4408. visibility:hidden;
  4409. }
  4410. #u86479_img {
  4411. border-width:0px;
  4412. position:absolute;
  4413. left:0px;
  4414. top:0px;
  4415. width:5px;
  4416. height:4px;
  4417. }
  4418. #u86479 {
  4419. border-width:0px;
  4420. position:absolute;
  4421. left:168px;
  4422. top:1049px;
  4423. width:5px;
  4424. height:4px;
  4425. display:flex;
  4426. }
  4427. #u86479 .text {
  4428. position:absolute;
  4429. align-self:center;
  4430. padding:2px 2px 2px 2px;
  4431. box-sizing:border-box;
  4432. width:100%;
  4433. }
  4434. #u86479_text {
  4435. border-width:0px;
  4436. word-wrap:break-word;
  4437. text-transform:none;
  4438. visibility:hidden;
  4439. }
  4440. #u86480 {
  4441. border-width:0px;
  4442. position:absolute;
  4443. left:0px;
  4444. top:0px;
  4445. width:0px;
  4446. height:0px;
  4447. }
  4448. #u86481_img {
  4449. border-width:0px;
  4450. position:absolute;
  4451. left:-5px;
  4452. top:-5px;
  4453. width:410px;
  4454. height:250px;
  4455. }
  4456. #u86481 {
  4457. border-width:0px;
  4458. position:absolute;
  4459. left:467px;
  4460. top:1765px;
  4461. width:400px;
  4462. height:240px;
  4463. display:flex;
  4464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4465. font-weight:400;
  4466. font-style:normal;
  4467. font-size:12px;
  4468. color:#FFFFFF;
  4469. }
  4470. #u86481 .text {
  4471. position:absolute;
  4472. align-self:center;
  4473. padding:2px 2px 2px 2px;
  4474. box-sizing:border-box;
  4475. width:100%;
  4476. }
  4477. #u86481_text {
  4478. border-width:0px;
  4479. word-wrap:break-word;
  4480. text-transform:none;
  4481. visibility:hidden;
  4482. }
  4483. #u86482_div {
  4484. border-width:0px;
  4485. position:absolute;
  4486. left:0px;
  4487. top:0px;
  4488. width:37px;
  4489. height:25px;
  4490. background:inherit;
  4491. background-color:rgba(255, 255, 255, 0);
  4492. border:none;
  4493. border-radius:0px;
  4494. -moz-box-shadow:none;
  4495. -webkit-box-shadow:none;
  4496. box-shadow:none;
  4497. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4498. font-weight:500;
  4499. font-style:normal;
  4500. font-size:18px;
  4501. }
  4502. #u86482 {
  4503. border-width:0px;
  4504. position:absolute;
  4505. left:490px;
  4506. top:1781px;
  4507. width:37px;
  4508. height:25px;
  4509. display:flex;
  4510. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4511. font-weight:500;
  4512. font-style:normal;
  4513. font-size:18px;
  4514. }
  4515. #u86482 .text {
  4516. position:absolute;
  4517. align-self:flex-start;
  4518. padding:0px 0px 0px 0px;
  4519. box-sizing:border-box;
  4520. width:100%;
  4521. }
  4522. #u86482_text {
  4523. border-width:0px;
  4524. white-space:nowrap;
  4525. text-transform:none;
  4526. }
  4527. #u86483_img {
  4528. border-width:0px;
  4529. position:absolute;
  4530. left:0px;
  4531. top:0px;
  4532. width:8px;
  4533. height:8px;
  4534. }
  4535. #u86483 {
  4536. border-width:0px;
  4537. position:absolute;
  4538. left:846px;
  4539. top:1777px;
  4540. width:8px;
  4541. height:8px;
  4542. display:flex;
  4543. opacity:0.5;
  4544. }
  4545. #u86483 .text {
  4546. position:absolute;
  4547. align-self:center;
  4548. padding:2px 2px 2px 2px;
  4549. box-sizing:border-box;
  4550. width:100%;
  4551. }
  4552. #u86483_text {
  4553. border-width:0px;
  4554. word-wrap:break-word;
  4555. text-transform:none;
  4556. visibility:hidden;
  4557. }
  4558. #u86484_div {
  4559. border-width:0px;
  4560. position:absolute;
  4561. left:0px;
  4562. top:0px;
  4563. width:80px;
  4564. height:30px;
  4565. background:inherit;
  4566. background-color:rgba(51, 153, 255, 1);
  4567. border:none;
  4568. border-radius:4px;
  4569. -moz-box-shadow:none;
  4570. -webkit-box-shadow:none;
  4571. box-shadow:none;
  4572. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4573. font-weight:400;
  4574. font-style:normal;
  4575. font-size:14px;
  4576. color:#FFFFFF;
  4577. }
  4578. #u86484 {
  4579. border-width:0px;
  4580. position:absolute;
  4581. left:767px;
  4582. top:1957px;
  4583. width:80px;
  4584. height:30px;
  4585. display:flex;
  4586. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4587. font-weight:400;
  4588. font-style:normal;
  4589. font-size:14px;
  4590. color:#FFFFFF;
  4591. }
  4592. #u86484 .text {
  4593. position:absolute;
  4594. align-self:center;
  4595. padding:8px 0px 8px 0px;
  4596. box-sizing:border-box;
  4597. width:100%;
  4598. }
  4599. #u86484_text {
  4600. border-width:0px;
  4601. word-wrap:break-word;
  4602. text-transform:none;
  4603. }
  4604. #u86485_div {
  4605. border-width:0px;
  4606. position:absolute;
  4607. left:0px;
  4608. top:0px;
  4609. width:322px;
  4610. height:80px;
  4611. background:inherit;
  4612. background-color:rgba(255, 255, 255, 1);
  4613. box-sizing:border-box;
  4614. border-width:1px;
  4615. border-style:solid;
  4616. border-color:rgba(51, 153, 255, 1);
  4617. border-radius:2px;
  4618. -moz-box-shadow:none;
  4619. -webkit-box-shadow:none;
  4620. box-shadow:none;
  4621. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4622. font-weight:400;
  4623. font-style:normal;
  4624. font-size:12px;
  4625. color:#FFFFFF;
  4626. text-align:left;
  4627. }
  4628. #u86485 {
  4629. border-width:0px;
  4630. position:absolute;
  4631. left:504px;
  4632. top:1850px;
  4633. width:322px;
  4634. height:80px;
  4635. display:flex;
  4636. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4637. font-weight:400;
  4638. font-style:normal;
  4639. font-size:12px;
  4640. color:#FFFFFF;
  4641. text-align:left;
  4642. }
  4643. #u86485 .text {
  4644. position:absolute;
  4645. align-self:center;
  4646. padding:8px 15px 8px 15px;
  4647. box-sizing:border-box;
  4648. width:100%;
  4649. }
  4650. #u86485_text {
  4651. border-width:0px;
  4652. word-wrap:break-word;
  4653. text-transform:none;
  4654. }
  4655. #u86486_div {
  4656. border-width:0px;
  4657. position:absolute;
  4658. left:0px;
  4659. top:0px;
  4660. width:99px;
  4661. height:20px;
  4662. background:inherit;
  4663. background-color:rgba(255, 255, 255, 0);
  4664. border:none;
  4665. border-radius:0px;
  4666. -moz-box-shadow:none;
  4667. -webkit-box-shadow:none;
  4668. box-shadow:none;
  4669. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4670. font-weight:400;
  4671. font-style:normal;
  4672. color:#D7D7D7;
  4673. }
  4674. #u86486 {
  4675. border-width:0px;
  4676. position:absolute;
  4677. left:516px;
  4678. top:1861px;
  4679. width:99px;
  4680. height:20px;
  4681. display:flex;
  4682. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4683. font-weight:400;
  4684. font-style:normal;
  4685. color:#D7D7D7;
  4686. }
  4687. #u86486 .text {
  4688. position:absolute;
  4689. align-self:flex-start;
  4690. padding:0px 0px 0px 0px;
  4691. box-sizing:border-box;
  4692. width:100%;
  4693. }
  4694. #u86486_text {
  4695. border-width:0px;
  4696. white-space:nowrap;
  4697. text-transform:none;
  4698. }
  4699. #u86487_div {
  4700. border-width:0px;
  4701. position:absolute;
  4702. left:0px;
  4703. top:0px;
  4704. width:60px;
  4705. height:30px;
  4706. background:inherit;
  4707. background-color:rgba(255, 255, 255, 1);
  4708. box-sizing:border-box;
  4709. border-width:1px;
  4710. border-style:solid;
  4711. border-color:rgba(170, 170, 170, 1);
  4712. border-radius:4px;
  4713. -moz-box-shadow:none;
  4714. -webkit-box-shadow:none;
  4715. box-shadow:none;
  4716. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4717. font-weight:400;
  4718. font-style:normal;
  4719. font-size:14px;
  4720. }
  4721. #u86487 {
  4722. border-width:0px;
  4723. position:absolute;
  4724. left:697px;
  4725. top:1957px;
  4726. width:60px;
  4727. height:30px;
  4728. display:flex;
  4729. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4730. font-weight:400;
  4731. font-style:normal;
  4732. font-size:14px;
  4733. }
  4734. #u86487 .text {
  4735. position:absolute;
  4736. align-self:center;
  4737. padding:2px 2px 2px 2px;
  4738. box-sizing:border-box;
  4739. width:100%;
  4740. }
  4741. #u86487_text {
  4742. border-width:0px;
  4743. word-wrap:break-word;
  4744. text-transform:none;
  4745. }
  4746. #u86488_div {
  4747. border-width:0px;
  4748. position:absolute;
  4749. left:0px;
  4750. top:0px;
  4751. width:67px;
  4752. height:30px;
  4753. background:inherit;
  4754. background-color:rgba(255, 255, 255, 0);
  4755. border:none;
  4756. border-top:0px;
  4757. border-right:0px;
  4758. border-bottom:0px;
  4759. border-radius:0px;
  4760. border-top-left-radius:0px;
  4761. border-bottom-left-radius:0px;
  4762. -moz-box-shadow:none;
  4763. -webkit-box-shadow:none;
  4764. box-shadow:none;
  4765. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4766. font-weight:400;
  4767. font-style:normal;
  4768. font-size:14px;
  4769. color:#555555;
  4770. }
  4771. #u86488 {
  4772. border-width:0px;
  4773. position:absolute;
  4774. left:504px;
  4775. top:1820px;
  4776. width:67px;
  4777. height:30px;
  4778. display:flex;
  4779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4780. font-weight:400;
  4781. font-style:normal;
  4782. font-size:14px;
  4783. color:#555555;
  4784. }
  4785. #u86488 .text {
  4786. position:absolute;
  4787. align-self:center;
  4788. padding:5px 10px 5px 0px;
  4789. box-sizing:border-box;
  4790. width:100%;
  4791. }
  4792. #u86488_text {
  4793. border-width:0px;
  4794. white-space:nowrap;
  4795. text-transform:none;
  4796. }
  4797. #u86489_div {
  4798. border-width:0px;
  4799. position:absolute;
  4800. left:0px;
  4801. top:0px;
  4802. width:1000px;
  4803. height:1334px;
  4804. background:inherit;
  4805. background-color:rgba(242, 242, 242, 1);
  4806. box-sizing:border-box;
  4807. border-width:1px;
  4808. border-style:solid;
  4809. border-color:rgba(215, 215, 215, 1);
  4810. border-radius:0px;
  4811. -moz-box-shadow:none;
  4812. -webkit-box-shadow:none;
  4813. box-shadow:none;
  4814. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4815. font-weight:400;
  4816. font-style:normal;
  4817. font-size:14px;
  4818. color:#AAAAAA;
  4819. text-align:center;
  4820. line-height:30px;
  4821. }
  4822. #u86489 {
  4823. border-width:0px;
  4824. position:absolute;
  4825. left:1142px;
  4826. top:49px;
  4827. width:1000px;
  4828. height:1334px;
  4829. display:flex;
  4830. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4831. font-weight:400;
  4832. font-style:normal;
  4833. font-size:14px;
  4834. color:#AAAAAA;
  4835. text-align:center;
  4836. line-height:30px;
  4837. }
  4838. #u86489 .text {
  4839. position:absolute;
  4840. align-self:center;
  4841. padding:5px 10px 5px 10px;
  4842. box-sizing:border-box;
  4843. width:100%;
  4844. }
  4845. #u86489_text {
  4846. border-width:0px;
  4847. word-wrap:break-word;
  4848. text-transform:none;
  4849. visibility:hidden;
  4850. }
  4851. #u86490_div {
  4852. border-width:0px;
  4853. position:absolute;
  4854. left:0px;
  4855. top:0px;
  4856. width:1000px;
  4857. height:200px;
  4858. background:inherit;
  4859. background-color:rgba(255, 255, 255, 1);
  4860. box-sizing:border-box;
  4861. border-width:1px;
  4862. border-style:solid;
  4863. border-color:rgba(215, 215, 215, 1);
  4864. border-radius:0px;
  4865. -moz-box-shadow:none;
  4866. -webkit-box-shadow:none;
  4867. box-shadow:none;
  4868. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4869. font-weight:400;
  4870. font-style:normal;
  4871. font-size:14px;
  4872. color:#AAAAAA;
  4873. text-align:center;
  4874. line-height:30px;
  4875. }
  4876. #u86490 {
  4877. border-width:0px;
  4878. position:absolute;
  4879. left:1142px;
  4880. top:49px;
  4881. width:1000px;
  4882. height:200px;
  4883. display:flex;
  4884. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4885. font-weight:400;
  4886. font-style:normal;
  4887. font-size:14px;
  4888. color:#AAAAAA;
  4889. text-align:center;
  4890. line-height:30px;
  4891. }
  4892. #u86490 .text {
  4893. position:absolute;
  4894. align-self:center;
  4895. padding:5px 10px 5px 10px;
  4896. box-sizing:border-box;
  4897. width:100%;
  4898. }
  4899. #u86490_text {
  4900. border-width:0px;
  4901. word-wrap:break-word;
  4902. text-transform:none;
  4903. visibility:hidden;
  4904. }
  4905. #u86491_div {
  4906. border-width:0px;
  4907. position:absolute;
  4908. left:0px;
  4909. top:0px;
  4910. width:83px;
  4911. height:35px;
  4912. background:inherit;
  4913. background-color:rgba(255, 255, 255, 0);
  4914. border:none;
  4915. border-top:0px;
  4916. border-right:0px;
  4917. border-bottom:0px;
  4918. border-radius:0px;
  4919. border-top-left-radius:0px;
  4920. border-bottom-left-radius:0px;
  4921. -moz-box-shadow:none;
  4922. -webkit-box-shadow:none;
  4923. box-shadow:none;
  4924. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4925. font-weight:500;
  4926. font-style:normal;
  4927. font-size:18px;
  4928. }
  4929. #u86491 {
  4930. border-width:0px;
  4931. position:absolute;
  4932. left:1162px;
  4933. top:67px;
  4934. width:83px;
  4935. height:35px;
  4936. display:flex;
  4937. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4938. font-weight:500;
  4939. font-style:normal;
  4940. font-size:18px;
  4941. }
  4942. #u86491 .text {
  4943. position:absolute;
  4944. align-self:center;
  4945. padding:5px 10px 5px 0px;
  4946. box-sizing:border-box;
  4947. width:100%;
  4948. }
  4949. #u86491_text {
  4950. border-width:0px;
  4951. white-space:nowrap;
  4952. text-transform:none;
  4953. }
  4954. #u86492 {
  4955. border-width:0px;
  4956. position:absolute;
  4957. left:0px;
  4958. top:0px;
  4959. width:0px;
  4960. height:0px;
  4961. }
  4962. #u86493_div {
  4963. border-width:0px;
  4964. position:absolute;
  4965. left:0px;
  4966. top:0px;
  4967. width:40px;
  4968. height:40px;
  4969. background:inherit;
  4970. background-color:rgba(255, 255, 255, 0);
  4971. border:none;
  4972. border-top:0px;
  4973. border-right:0px;
  4974. border-bottom:0px;
  4975. border-radius:0px;
  4976. border-top-left-radius:0px;
  4977. border-bottom-left-radius:0px;
  4978. -moz-box-shadow:none;
  4979. -webkit-box-shadow:none;
  4980. box-shadow:none;
  4981. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4982. font-weight:500;
  4983. font-style:normal;
  4984. font-size:14px;
  4985. text-align:center;
  4986. }
  4987. #u86493 {
  4988. border-width:0px;
  4989. position:absolute;
  4990. left:2102px;
  4991. top:49px;
  4992. width:40px;
  4993. height:40px;
  4994. display:flex;
  4995. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4996. font-weight:500;
  4997. font-style:normal;
  4998. font-size:14px;
  4999. text-align:center;
  5000. }
  5001. #u86493 .text {
  5002. position:absolute;
  5003. align-self:center;
  5004. padding:5px 10px 5px 0px;
  5005. box-sizing:border-box;
  5006. width:100%;
  5007. }
  5008. #u86493_text {
  5009. border-width:0px;
  5010. word-wrap:break-word;
  5011. text-transform:none;
  5012. }
  5013. #u86494_img {
  5014. border-width:0px;
  5015. position:absolute;
  5016. left:0px;
  5017. top:0px;
  5018. width:13px;
  5019. height:13px;
  5020. }
  5021. #u86494 {
  5022. border-width:0px;
  5023. position:absolute;
  5024. left:2090px;
  5025. top:65px;
  5026. width:13px;
  5027. height:13px;
  5028. display:flex;
  5029. font-size:14px;
  5030. }
  5031. #u86494 .text {
  5032. position:absolute;
  5033. align-self:center;
  5034. padding:2px 2px 2px 2px;
  5035. box-sizing:border-box;
  5036. width:100%;
  5037. }
  5038. #u86494_text {
  5039. border-width:0px;
  5040. word-wrap:break-word;
  5041. text-transform:none;
  5042. visibility:hidden;
  5043. }
  5044. #u86495_div {
  5045. border-width:0px;
  5046. position:absolute;
  5047. left:0px;
  5048. top:0px;
  5049. width:333px;
  5050. height:43px;
  5051. background:inherit;
  5052. background-color:rgba(255, 255, 255, 0);
  5053. border:none;
  5054. border-top:0px;
  5055. border-right:0px;
  5056. border-bottom:0px;
  5057. border-radius:0px;
  5058. border-top-left-radius:0px;
  5059. border-bottom-left-radius:0px;
  5060. -moz-box-shadow:none;
  5061. -webkit-box-shadow:none;
  5062. box-shadow:none;
  5063. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5064. font-weight:500;
  5065. font-style:normal;
  5066. font-size:24px;
  5067. }
  5068. #u86495 {
  5069. border-width:0px;
  5070. position:absolute;
  5071. left:1172px;
  5072. top:118px;
  5073. width:333px;
  5074. height:43px;
  5075. display:flex;
  5076. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5077. font-weight:500;
  5078. font-style:normal;
  5079. font-size:24px;
  5080. }
  5081. #u86495 .text {
  5082. position:absolute;
  5083. align-self:center;
  5084. padding:5px 10px 5px 0px;
  5085. box-sizing:border-box;
  5086. width:100%;
  5087. }
  5088. #u86495_text {
  5089. border-width:0px;
  5090. white-space:nowrap;
  5091. text-transform:none;
  5092. }
  5093. #u86496_img {
  5094. border-width:0px;
  5095. position:absolute;
  5096. left:0px;
  5097. top:0px;
  5098. width:108px;
  5099. height:108px;
  5100. }
  5101. #u86496 {
  5102. border-width:0px;
  5103. position:absolute;
  5104. left:1992px;
  5105. top:119px;
  5106. width:108px;
  5107. height:108px;
  5108. display:flex;
  5109. -webkit-transform:rotate(315deg);
  5110. -moz-transform:rotate(315deg);
  5111. -ms-transform:rotate(315deg);
  5112. transform:rotate(315deg);
  5113. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5114. font-weight:400;
  5115. font-style:normal;
  5116. font-size:28px;
  5117. color:#F59A23;
  5118. }
  5119. #u86496 .text {
  5120. position:absolute;
  5121. align-self:center;
  5122. padding:2px 2px 2px 2px;
  5123. box-sizing:border-box;
  5124. width:100%;
  5125. }
  5126. #u86496_text {
  5127. border-width:0px;
  5128. word-wrap:break-word;
  5129. text-transform:none;
  5130. }
  5131. #u86497 {
  5132. border-width:0px;
  5133. position:absolute;
  5134. left:0px;
  5135. top:0px;
  5136. width:0px;
  5137. height:0px;
  5138. }
  5139. #u86498 {
  5140. border-width:0px;
  5141. position:absolute;
  5142. left:0px;
  5143. top:0px;
  5144. width:0px;
  5145. height:0px;
  5146. }
  5147. #u86499_div {
  5148. border-width:0px;
  5149. position:absolute;
  5150. left:0px;
  5151. top:0px;
  5152. width:1000px;
  5153. height:60px;
  5154. background:inherit;
  5155. background-color:rgba(255, 255, 255, 1);
  5156. box-sizing:border-box;
  5157. border-width:1px;
  5158. border-style:solid;
  5159. border-color:rgba(215, 215, 215, 1);
  5160. border-radius:0px;
  5161. -moz-box-shadow:none;
  5162. -webkit-box-shadow:none;
  5163. box-shadow:none;
  5164. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5165. font-weight:400;
  5166. font-style:normal;
  5167. font-size:14px;
  5168. color:#AAAAAA;
  5169. text-align:center;
  5170. line-height:30px;
  5171. }
  5172. #u86499 {
  5173. border-width:0px;
  5174. position:absolute;
  5175. left:1142px;
  5176. top:1323px;
  5177. width:1000px;
  5178. height:60px;
  5179. display:flex;
  5180. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5181. font-weight:400;
  5182. font-style:normal;
  5183. font-size:14px;
  5184. color:#AAAAAA;
  5185. text-align:center;
  5186. line-height:30px;
  5187. }
  5188. #u86499 .text {
  5189. position:absolute;
  5190. align-self:center;
  5191. padding:5px 10px 5px 10px;
  5192. box-sizing:border-box;
  5193. width:100%;
  5194. }
  5195. #u86499_text {
  5196. border-width:0px;
  5197. word-wrap:break-word;
  5198. text-transform:none;
  5199. visibility:hidden;
  5200. }
  5201. #u86500_div {
  5202. border-width:0px;
  5203. position:absolute;
  5204. left:0px;
  5205. top:0px;
  5206. width:80px;
  5207. height:30px;
  5208. background:inherit;
  5209. background-color:rgba(24, 144, 255, 1);
  5210. border:none;
  5211. border-radius:4px;
  5212. -moz-box-shadow:none;
  5213. -webkit-box-shadow:none;
  5214. box-shadow:none;
  5215. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5216. font-weight:400;
  5217. font-style:normal;
  5218. font-size:14px;
  5219. color:#FFFFFF;
  5220. }
  5221. #u86500 {
  5222. border-width:0px;
  5223. position:absolute;
  5224. left:2036px;
  5225. top:1338px;
  5226. width:80px;
  5227. height:30px;
  5228. display:flex;
  5229. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5230. font-weight:400;
  5231. font-style:normal;
  5232. font-size:14px;
  5233. color:#FFFFFF;
  5234. }
  5235. #u86500 .text {
  5236. position:absolute;
  5237. align-self:center;
  5238. padding:2px 2px 2px 2px;
  5239. box-sizing:border-box;
  5240. width:100%;
  5241. }
  5242. #u86500_text {
  5243. border-width:0px;
  5244. word-wrap:break-word;
  5245. text-transform:none;
  5246. }
  5247. #u86501_div {
  5248. border-width:0px;
  5249. position:absolute;
  5250. left:0px;
  5251. top:0px;
  5252. width:80px;
  5253. height:30px;
  5254. background:inherit;
  5255. background-color:rgba(217, 0, 27, 1);
  5256. border:none;
  5257. border-radius:4px;
  5258. -moz-box-shadow:none;
  5259. -webkit-box-shadow:none;
  5260. box-shadow:none;
  5261. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5262. font-weight:400;
  5263. font-style:normal;
  5264. font-size:14px;
  5265. color:#FFFFFF;
  5266. }
  5267. #u86501 {
  5268. border-width:0px;
  5269. position:absolute;
  5270. left:1946px;
  5271. top:1338px;
  5272. width:80px;
  5273. height:30px;
  5274. display:flex;
  5275. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5276. font-weight:400;
  5277. font-style:normal;
  5278. font-size:14px;
  5279. color:#FFFFFF;
  5280. }
  5281. #u86501 .text {
  5282. position:absolute;
  5283. align-self:center;
  5284. padding:2px 2px 2px 2px;
  5285. box-sizing:border-box;
  5286. width:100%;
  5287. }
  5288. #u86501_text {
  5289. border-width:0px;
  5290. word-wrap:break-word;
  5291. text-transform:none;
  5292. }
  5293. #u86502_div {
  5294. border-width:0px;
  5295. position:absolute;
  5296. left:0px;
  5297. top:0px;
  5298. width:80px;
  5299. height:30px;
  5300. background:inherit;
  5301. background-color:rgba(255, 255, 255, 1);
  5302. box-sizing:border-box;
  5303. border-width:1px;
  5304. border-style:solid;
  5305. border-color:rgba(170, 170, 170, 1);
  5306. border-radius:4px;
  5307. -moz-box-shadow:none;
  5308. -webkit-box-shadow:none;
  5309. box-shadow:none;
  5310. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5311. font-weight:400;
  5312. font-style:normal;
  5313. font-size:14px;
  5314. }
  5315. #u86502 {
  5316. border-width:0px;
  5317. position:absolute;
  5318. left:1856px;
  5319. top:1338px;
  5320. width:80px;
  5321. height:30px;
  5322. display:flex;
  5323. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5324. font-weight:400;
  5325. font-style:normal;
  5326. font-size:14px;
  5327. }
  5328. #u86502 .text {
  5329. position:absolute;
  5330. align-self:center;
  5331. padding:2px 2px 2px 2px;
  5332. box-sizing:border-box;
  5333. width:100%;
  5334. }
  5335. #u86502_text {
  5336. border-width:0px;
  5337. word-wrap:break-word;
  5338. text-transform:none;
  5339. }
  5340. #u86503_div {
  5341. border-width:0px;
  5342. position:absolute;
  5343. left:0px;
  5344. top:0px;
  5345. width:325px;
  5346. height:60px;
  5347. background:inherit;
  5348. background-color:rgba(255, 255, 255, 0);
  5349. border:none;
  5350. border-left:0px;
  5351. border-top:0px;
  5352. border-right:0px;
  5353. border-radius:0px;
  5354. border-bottom-right-radius:0px;
  5355. border-bottom-left-radius:0px;
  5356. -moz-box-shadow:none;
  5357. -webkit-box-shadow:none;
  5358. box-shadow:none;
  5359. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5360. font-weight:400;
  5361. font-style:normal;
  5362. font-size:14px;
  5363. line-height:30px;
  5364. }
  5365. #u86503 {
  5366. border-width:0px;
  5367. position:absolute;
  5368. left:1172px;
  5369. top:173px;
  5370. width:325px;
  5371. height:60px;
  5372. display:flex;
  5373. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5374. font-weight:400;
  5375. font-style:normal;
  5376. font-size:14px;
  5377. line-height:30px;
  5378. }
  5379. #u86503 .text {
  5380. position:absolute;
  5381. align-self:flex-start;
  5382. padding:0px 0px 0px 0px;
  5383. box-sizing:border-box;
  5384. width:100%;
  5385. }
  5386. #u86503_text {
  5387. border-width:0px;
  5388. word-wrap:break-word;
  5389. text-transform:none;
  5390. }
  5391. #u86504_div {
  5392. border-width:0px;
  5393. position:absolute;
  5394. left:0px;
  5395. top:0px;
  5396. width:1000px;
  5397. height:757px;
  5398. background:inherit;
  5399. background-color:rgba(255, 255, 255, 1);
  5400. box-sizing:border-box;
  5401. border-width:1px;
  5402. border-style:solid;
  5403. border-color:rgba(242, 242, 242, 1);
  5404. border-radius:0px;
  5405. -moz-box-shadow:none;
  5406. -webkit-box-shadow:none;
  5407. box-shadow:none;
  5408. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5409. font-weight:400;
  5410. font-style:normal;
  5411. font-size:14px;
  5412. color:#AAAAAA;
  5413. text-align:center;
  5414. line-height:30px;
  5415. }
  5416. #u86504 {
  5417. border-width:0px;
  5418. position:absolute;
  5419. left:1142px;
  5420. top:259px;
  5421. width:1000px;
  5422. height:757px;
  5423. display:flex;
  5424. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5425. font-weight:400;
  5426. font-style:normal;
  5427. font-size:14px;
  5428. color:#AAAAAA;
  5429. text-align:center;
  5430. line-height:30px;
  5431. }
  5432. #u86504 .text {
  5433. position:absolute;
  5434. align-self:center;
  5435. padding:5px 10px 5px 10px;
  5436. box-sizing:border-box;
  5437. width:100%;
  5438. }
  5439. #u86504_text {
  5440. border-width:0px;
  5441. word-wrap:break-word;
  5442. text-transform:none;
  5443. visibility:hidden;
  5444. }
  5445. #u86505_div {
  5446. border-width:0px;
  5447. position:absolute;
  5448. left:0px;
  5449. top:0px;
  5450. width:73px;
  5451. height:40px;
  5452. background:inherit;
  5453. background-color:rgba(255, 255, 255, 0);
  5454. border:none;
  5455. border-left:0px;
  5456. border-top:0px;
  5457. border-right:0px;
  5458. border-radius:0px;
  5459. border-bottom-right-radius:0px;
  5460. border-bottom-left-radius:0px;
  5461. -moz-box-shadow:none;
  5462. -webkit-box-shadow:none;
  5463. box-shadow:none;
  5464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5465. font-weight:400;
  5466. font-style:normal;
  5467. font-size:18px;
  5468. }
  5469. #u86505 {
  5470. border-width:0px;
  5471. position:absolute;
  5472. left:1182px;
  5473. top:275px;
  5474. width:73px;
  5475. height:40px;
  5476. display:flex;
  5477. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5478. font-weight:400;
  5479. font-style:normal;
  5480. font-size:18px;
  5481. }
  5482. #u86505 .text {
  5483. position:absolute;
  5484. align-self:center;
  5485. padding:0px 0px 0px 0px;
  5486. box-sizing:border-box;
  5487. width:100%;
  5488. }
  5489. #u86505_text {
  5490. border-width:0px;
  5491. white-space:nowrap;
  5492. text-transform:none;
  5493. }
  5494. #u86506_div {
  5495. border-width:0px;
  5496. position:absolute;
  5497. left:0px;
  5498. top:0px;
  5499. width:81px;
  5500. height:30px;
  5501. background:inherit;
  5502. background-color:rgba(255, 255, 255, 0);
  5503. border:none;
  5504. border-top:0px;
  5505. border-right:0px;
  5506. border-bottom:0px;
  5507. border-radius:0px;
  5508. border-top-left-radius:0px;
  5509. border-bottom-left-radius:0px;
  5510. -moz-box-shadow:none;
  5511. -webkit-box-shadow:none;
  5512. box-shadow:none;
  5513. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5514. font-weight:400;
  5515. font-style:normal;
  5516. font-size:14px;
  5517. color:#7F7F7F;
  5518. }
  5519. #u86506 {
  5520. border-width:0px;
  5521. position:absolute;
  5522. left:1182px;
  5523. top:325px;
  5524. width:81px;
  5525. height:30px;
  5526. display:flex;
  5527. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5528. font-weight:400;
  5529. font-style:normal;
  5530. font-size:14px;
  5531. color:#7F7F7F;
  5532. }
  5533. #u86506 .text {
  5534. position:absolute;
  5535. align-self:center;
  5536. padding:5px 10px 5px 0px;
  5537. box-sizing:border-box;
  5538. width:100%;
  5539. }
  5540. #u86506_text {
  5541. border-width:0px;
  5542. white-space:nowrap;
  5543. text-transform:none;
  5544. }
  5545. #u86507_div {
  5546. border-width:0px;
  5547. position:absolute;
  5548. left:0px;
  5549. top:0px;
  5550. width:101px;
  5551. height:30px;
  5552. background:inherit;
  5553. background-color:rgba(255, 255, 255, 0);
  5554. border:none;
  5555. border-top:0px;
  5556. border-right:0px;
  5557. border-bottom:0px;
  5558. border-radius:0px;
  5559. border-top-left-radius:0px;
  5560. border-bottom-left-radius:0px;
  5561. -moz-box-shadow:none;
  5562. -webkit-box-shadow:none;
  5563. box-shadow:none;
  5564. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5565. font-weight:400;
  5566. font-style:normal;
  5567. font-size:14px;
  5568. }
  5569. #u86507 {
  5570. border-width:0px;
  5571. position:absolute;
  5572. left:1263px;
  5573. top:325px;
  5574. width:101px;
  5575. height:30px;
  5576. display:flex;
  5577. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5578. font-weight:400;
  5579. font-style:normal;
  5580. font-size:14px;
  5581. }
  5582. #u86507 .text {
  5583. position:absolute;
  5584. align-self:center;
  5585. padding:5px 10px 5px 0px;
  5586. box-sizing:border-box;
  5587. width:100%;
  5588. }
  5589. #u86507_text {
  5590. border-width:0px;
  5591. white-space:nowrap;
  5592. text-transform:none;
  5593. }
  5594. #u86508_div {
  5595. border-width:0px;
  5596. position:absolute;
  5597. left:0px;
  5598. top:0px;
  5599. width:81px;
  5600. height:30px;
  5601. background:inherit;
  5602. background-color:rgba(255, 255, 255, 0);
  5603. border:none;
  5604. border-top:0px;
  5605. border-right:0px;
  5606. border-bottom:0px;
  5607. border-radius:0px;
  5608. border-top-left-radius:0px;
  5609. border-bottom-left-radius:0px;
  5610. -moz-box-shadow:none;
  5611. -webkit-box-shadow:none;
  5612. box-shadow:none;
  5613. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5614. font-weight:400;
  5615. font-style:normal;
  5616. font-size:14px;
  5617. color:#7F7F7F;
  5618. }
  5619. #u86508 {
  5620. border-width:0px;
  5621. position:absolute;
  5622. left:1502px;
  5623. top:325px;
  5624. width:81px;
  5625. height:30px;
  5626. display:flex;
  5627. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5628. font-weight:400;
  5629. font-style:normal;
  5630. font-size:14px;
  5631. color:#7F7F7F;
  5632. }
  5633. #u86508 .text {
  5634. position:absolute;
  5635. align-self:center;
  5636. padding:5px 10px 5px 0px;
  5637. box-sizing:border-box;
  5638. width:100%;
  5639. }
  5640. #u86508_text {
  5641. border-width:0px;
  5642. white-space:nowrap;
  5643. text-transform:none;
  5644. }
  5645. #u86509_div {
  5646. border-width:0px;
  5647. position:absolute;
  5648. left:0px;
  5649. top:0px;
  5650. width:67px;
  5651. height:30px;
  5652. background:inherit;
  5653. background-color:rgba(255, 255, 255, 0);
  5654. border:none;
  5655. border-top:0px;
  5656. border-right:0px;
  5657. border-bottom:0px;
  5658. border-radius:0px;
  5659. border-top-left-radius:0px;
  5660. border-bottom-left-radius:0px;
  5661. -moz-box-shadow:none;
  5662. -webkit-box-shadow:none;
  5663. box-shadow:none;
  5664. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5665. font-weight:400;
  5666. font-style:normal;
  5667. font-size:14px;
  5668. }
  5669. #u86509 {
  5670. border-width:0px;
  5671. position:absolute;
  5672. left:1583px;
  5673. top:325px;
  5674. width:67px;
  5675. height:30px;
  5676. display:flex;
  5677. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5678. font-weight:400;
  5679. font-style:normal;
  5680. font-size:14px;
  5681. }
  5682. #u86509 .text {
  5683. position:absolute;
  5684. align-self:center;
  5685. padding:5px 10px 5px 0px;
  5686. box-sizing:border-box;
  5687. width:100%;
  5688. }
  5689. #u86509_text {
  5690. border-width:0px;
  5691. white-space:nowrap;
  5692. text-transform:none;
  5693. }
  5694. #u86510_div {
  5695. border-width:0px;
  5696. position:absolute;
  5697. left:0px;
  5698. top:0px;
  5699. width:81px;
  5700. height:30px;
  5701. background:inherit;
  5702. background-color:rgba(255, 255, 255, 0);
  5703. border:none;
  5704. border-top:0px;
  5705. border-right:0px;
  5706. border-bottom:0px;
  5707. border-radius:0px;
  5708. border-top-left-radius:0px;
  5709. border-bottom-left-radius:0px;
  5710. -moz-box-shadow:none;
  5711. -webkit-box-shadow:none;
  5712. box-shadow:none;
  5713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5714. font-weight:400;
  5715. font-style:normal;
  5716. font-size:14px;
  5717. color:#7F7F7F;
  5718. }
  5719. #u86510 {
  5720. border-width:0px;
  5721. position:absolute;
  5722. left:1799px;
  5723. top:325px;
  5724. width:81px;
  5725. height:30px;
  5726. display:flex;
  5727. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5728. font-weight:400;
  5729. font-style:normal;
  5730. font-size:14px;
  5731. color:#7F7F7F;
  5732. }
  5733. #u86510 .text {
  5734. position:absolute;
  5735. align-self:center;
  5736. padding:5px 10px 5px 0px;
  5737. box-sizing:border-box;
  5738. width:100%;
  5739. }
  5740. #u86510_text {
  5741. border-width:0px;
  5742. white-space:nowrap;
  5743. text-transform:none;
  5744. }
  5745. #u86511_div {
  5746. border-width:0px;
  5747. position:absolute;
  5748. left:0px;
  5749. top:0px;
  5750. width:67px;
  5751. height:30px;
  5752. background:inherit;
  5753. background-color:rgba(255, 255, 255, 0);
  5754. border:none;
  5755. border-top:0px;
  5756. border-right:0px;
  5757. border-bottom:0px;
  5758. border-radius:0px;
  5759. border-top-left-radius:0px;
  5760. border-bottom-left-radius:0px;
  5761. -moz-box-shadow:none;
  5762. -webkit-box-shadow:none;
  5763. box-shadow:none;
  5764. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5765. font-weight:400;
  5766. font-style:normal;
  5767. font-size:14px;
  5768. }
  5769. #u86511 {
  5770. border-width:0px;
  5771. position:absolute;
  5772. left:1880px;
  5773. top:325px;
  5774. width:67px;
  5775. height:30px;
  5776. display:flex;
  5777. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5778. font-weight:400;
  5779. font-style:normal;
  5780. font-size:14px;
  5781. }
  5782. #u86511 .text {
  5783. position:absolute;
  5784. align-self:center;
  5785. padding:5px 10px 5px 0px;
  5786. box-sizing:border-box;
  5787. width:100%;
  5788. }
  5789. #u86511_text {
  5790. border-width:0px;
  5791. white-space:nowrap;
  5792. text-transform:none;
  5793. }
  5794. #u86512_div {
  5795. border-width:0px;
  5796. position:absolute;
  5797. left:0px;
  5798. top:0px;
  5799. width:81px;
  5800. height:30px;
  5801. background:inherit;
  5802. background-color:rgba(255, 255, 255, 0);
  5803. border:none;
  5804. border-top:0px;
  5805. border-right:0px;
  5806. border-bottom:0px;
  5807. border-radius:0px;
  5808. border-top-left-radius:0px;
  5809. border-bottom-left-radius:0px;
  5810. -moz-box-shadow:none;
  5811. -webkit-box-shadow:none;
  5812. box-shadow:none;
  5813. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5814. font-weight:400;
  5815. font-style:normal;
  5816. font-size:14px;
  5817. color:#7F7F7F;
  5818. }
  5819. #u86512 {
  5820. border-width:0px;
  5821. position:absolute;
  5822. left:1182px;
  5823. top:365px;
  5824. width:81px;
  5825. height:30px;
  5826. display:flex;
  5827. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5828. font-weight:400;
  5829. font-style:normal;
  5830. font-size:14px;
  5831. color:#7F7F7F;
  5832. }
  5833. #u86512 .text {
  5834. position:absolute;
  5835. align-self:center;
  5836. padding:5px 10px 5px 0px;
  5837. box-sizing:border-box;
  5838. width:100%;
  5839. }
  5840. #u86512_text {
  5841. border-width:0px;
  5842. white-space:nowrap;
  5843. text-transform:none;
  5844. }
  5845. #u86513_div {
  5846. border-width:0px;
  5847. position:absolute;
  5848. left:0px;
  5849. top:0px;
  5850. width:81px;
  5851. height:30px;
  5852. background:inherit;
  5853. background-color:rgba(255, 255, 255, 0);
  5854. border:none;
  5855. border-top:0px;
  5856. border-right:0px;
  5857. border-bottom:0px;
  5858. border-radius:0px;
  5859. border-top-left-radius:0px;
  5860. border-bottom-left-radius:0px;
  5861. -moz-box-shadow:none;
  5862. -webkit-box-shadow:none;
  5863. box-shadow:none;
  5864. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5865. font-weight:400;
  5866. font-style:normal;
  5867. font-size:14px;
  5868. color:#7F7F7F;
  5869. }
  5870. #u86513 {
  5871. border-width:0px;
  5872. position:absolute;
  5873. left:1502px;
  5874. top:365px;
  5875. width:81px;
  5876. height:30px;
  5877. display:flex;
  5878. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5879. font-weight:400;
  5880. font-style:normal;
  5881. font-size:14px;
  5882. color:#7F7F7F;
  5883. }
  5884. #u86513 .text {
  5885. position:absolute;
  5886. align-self:center;
  5887. padding:5px 10px 5px 0px;
  5888. box-sizing:border-box;
  5889. width:100%;
  5890. }
  5891. #u86513_text {
  5892. border-width:0px;
  5893. white-space:nowrap;
  5894. text-transform:none;
  5895. }
  5896. #u86514_div {
  5897. border-width:0px;
  5898. position:absolute;
  5899. left:0px;
  5900. top:0px;
  5901. width:51px;
  5902. height:30px;
  5903. background:inherit;
  5904. background-color:rgba(255, 255, 255, 0);
  5905. border:none;
  5906. border-top:0px;
  5907. border-right:0px;
  5908. border-bottom:0px;
  5909. border-radius:0px;
  5910. border-top-left-radius:0px;
  5911. border-bottom-left-radius:0px;
  5912. -moz-box-shadow:none;
  5913. -webkit-box-shadow:none;
  5914. box-shadow:none;
  5915. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5916. font-weight:400;
  5917. font-style:normal;
  5918. font-size:14px;
  5919. }
  5920. #u86514 {
  5921. border-width:0px;
  5922. position:absolute;
  5923. left:1583px;
  5924. top:365px;
  5925. width:51px;
  5926. height:30px;
  5927. display:flex;
  5928. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5929. font-weight:400;
  5930. font-style:normal;
  5931. font-size:14px;
  5932. }
  5933. #u86514 .text {
  5934. position:absolute;
  5935. align-self:center;
  5936. padding:5px 10px 5px 0px;
  5937. box-sizing:border-box;
  5938. width:100%;
  5939. }
  5940. #u86514_text {
  5941. border-width:0px;
  5942. white-space:nowrap;
  5943. text-transform:none;
  5944. }
  5945. #u86515_div {
  5946. border-width:0px;
  5947. position:absolute;
  5948. left:0px;
  5949. top:0px;
  5950. width:81px;
  5951. height:30px;
  5952. background:inherit;
  5953. background-color:rgba(255, 255, 255, 0);
  5954. border:none;
  5955. border-top:0px;
  5956. border-right:0px;
  5957. border-bottom:0px;
  5958. border-radius:0px;
  5959. border-top-left-radius:0px;
  5960. border-bottom-left-radius:0px;
  5961. -moz-box-shadow:none;
  5962. -webkit-box-shadow:none;
  5963. box-shadow:none;
  5964. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5965. font-weight:400;
  5966. font-style:normal;
  5967. font-size:14px;
  5968. color:#7F7F7F;
  5969. }
  5970. #u86515 {
  5971. border-width:0px;
  5972. position:absolute;
  5973. left:1799px;
  5974. top:365px;
  5975. width:81px;
  5976. height:30px;
  5977. display:flex;
  5978. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5979. font-weight:400;
  5980. font-style:normal;
  5981. font-size:14px;
  5982. color:#7F7F7F;
  5983. }
  5984. #u86515 .text {
  5985. position:absolute;
  5986. align-self:center;
  5987. padding:5px 10px 5px 0px;
  5988. box-sizing:border-box;
  5989. width:100%;
  5990. }
  5991. #u86515_text {
  5992. border-width:0px;
  5993. white-space:nowrap;
  5994. text-transform:none;
  5995. }
  5996. #u86516_div {
  5997. border-width:0px;
  5998. position:absolute;
  5999. left:0px;
  6000. top:0px;
  6001. width:157px;
  6002. height:30px;
  6003. background:inherit;
  6004. background-color:rgba(255, 255, 255, 0);
  6005. border:none;
  6006. border-top:0px;
  6007. border-right:0px;
  6008. border-bottom:0px;
  6009. border-radius:0px;
  6010. border-top-left-radius:0px;
  6011. border-bottom-left-radius:0px;
  6012. -moz-box-shadow:none;
  6013. -webkit-box-shadow:none;
  6014. box-shadow:none;
  6015. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6016. font-weight:400;
  6017. font-style:normal;
  6018. font-size:14px;
  6019. }
  6020. #u86516 {
  6021. border-width:0px;
  6022. position:absolute;
  6023. left:1880px;
  6024. top:365px;
  6025. width:157px;
  6026. height:30px;
  6027. display:flex;
  6028. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6029. font-weight:400;
  6030. font-style:normal;
  6031. font-size:14px;
  6032. }
  6033. #u86516 .text {
  6034. position:absolute;
  6035. align-self:center;
  6036. padding:5px 10px 5px 0px;
  6037. box-sizing:border-box;
  6038. width:100%;
  6039. }
  6040. #u86516_text {
  6041. border-width:0px;
  6042. white-space:nowrap;
  6043. text-transform:none;
  6044. }
  6045. #u86517_div {
  6046. border-width:0px;
  6047. position:absolute;
  6048. left:0px;
  6049. top:0px;
  6050. width:53px;
  6051. height:30px;
  6052. background:inherit;
  6053. background-color:rgba(255, 255, 255, 0);
  6054. border:none;
  6055. border-top:0px;
  6056. border-right:0px;
  6057. border-bottom:0px;
  6058. border-radius:0px;
  6059. border-top-left-radius:0px;
  6060. border-bottom-left-radius:0px;
  6061. -moz-box-shadow:none;
  6062. -webkit-box-shadow:none;
  6063. box-shadow:none;
  6064. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6065. font-weight:400;
  6066. font-style:normal;
  6067. font-size:14px;
  6068. }
  6069. #u86517 {
  6070. border-width:0px;
  6071. position:absolute;
  6072. left:1263px;
  6073. top:365px;
  6074. width:53px;
  6075. height:30px;
  6076. display:flex;
  6077. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6078. font-weight:400;
  6079. font-style:normal;
  6080. font-size:14px;
  6081. }
  6082. #u86517 .text {
  6083. position:absolute;
  6084. align-self:center;
  6085. padding:5px 10px 5px 0px;
  6086. box-sizing:border-box;
  6087. width:100%;
  6088. }
  6089. #u86517_text {
  6090. border-width:0px;
  6091. white-space:nowrap;
  6092. text-transform:none;
  6093. }
  6094. #u86518_div {
  6095. border-width:0px;
  6096. position:absolute;
  6097. left:0px;
  6098. top:0px;
  6099. width:81px;
  6100. height:30px;
  6101. background:inherit;
  6102. background-color:rgba(255, 255, 255, 0);
  6103. border:none;
  6104. border-top:0px;
  6105. border-right:0px;
  6106. border-bottom:0px;
  6107. border-radius:0px;
  6108. border-top-left-radius:0px;
  6109. border-bottom-left-radius:0px;
  6110. -moz-box-shadow:none;
  6111. -webkit-box-shadow:none;
  6112. box-shadow:none;
  6113. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6114. font-weight:400;
  6115. font-style:normal;
  6116. font-size:14px;
  6117. color:#7F7F7F;
  6118. }
  6119. #u86518 {
  6120. border-width:0px;
  6121. position:absolute;
  6122. left:1182px;
  6123. top:405px;
  6124. width:81px;
  6125. height:30px;
  6126. display:flex;
  6127. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6128. font-weight:400;
  6129. font-style:normal;
  6130. font-size:14px;
  6131. color:#7F7F7F;
  6132. }
  6133. #u86518 .text {
  6134. position:absolute;
  6135. align-self:center;
  6136. padding:5px 10px 5px 0px;
  6137. box-sizing:border-box;
  6138. width:100%;
  6139. }
  6140. #u86518_text {
  6141. border-width:0px;
  6142. white-space:nowrap;
  6143. text-transform:none;
  6144. }
  6145. #u86519_div {
  6146. border-width:0px;
  6147. position:absolute;
  6148. left:0px;
  6149. top:0px;
  6150. width:95px;
  6151. height:30px;
  6152. background:inherit;
  6153. background-color:rgba(255, 255, 255, 0);
  6154. border:none;
  6155. border-top:0px;
  6156. border-right:0px;
  6157. border-bottom:0px;
  6158. border-radius:0px;
  6159. border-top-left-radius:0px;
  6160. border-bottom-left-radius:0px;
  6161. -moz-box-shadow:none;
  6162. -webkit-box-shadow:none;
  6163. box-shadow:none;
  6164. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6165. font-weight:400;
  6166. font-style:normal;
  6167. font-size:14px;
  6168. }
  6169. #u86519 {
  6170. border-width:0px;
  6171. position:absolute;
  6172. left:1263px;
  6173. top:405px;
  6174. width:95px;
  6175. height:30px;
  6176. display:flex;
  6177. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6178. font-weight:400;
  6179. font-style:normal;
  6180. font-size:14px;
  6181. }
  6182. #u86519 .text {
  6183. position:absolute;
  6184. align-self:center;
  6185. padding:5px 10px 5px 0px;
  6186. box-sizing:border-box;
  6187. width:100%;
  6188. }
  6189. #u86519_text {
  6190. border-width:0px;
  6191. white-space:nowrap;
  6192. text-transform:none;
  6193. }
  6194. #u86520_div {
  6195. border-width:0px;
  6196. position:absolute;
  6197. left:0px;
  6198. top:0px;
  6199. width:53px;
  6200. height:30px;
  6201. background:inherit;
  6202. background-color:rgba(255, 255, 255, 0);
  6203. border:none;
  6204. border-top:0px;
  6205. border-right:0px;
  6206. border-bottom:0px;
  6207. border-radius:0px;
  6208. border-top-left-radius:0px;
  6209. border-bottom-left-radius:0px;
  6210. -moz-box-shadow:none;
  6211. -webkit-box-shadow:none;
  6212. box-shadow:none;
  6213. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6214. font-weight:400;
  6215. font-style:normal;
  6216. font-size:14px;
  6217. color:#7F7F7F;
  6218. }
  6219. #u86520 {
  6220. border-width:0px;
  6221. position:absolute;
  6222. left:1182px;
  6223. top:445px;
  6224. width:53px;
  6225. height:30px;
  6226. display:flex;
  6227. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6228. font-weight:400;
  6229. font-style:normal;
  6230. font-size:14px;
  6231. color:#7F7F7F;
  6232. }
  6233. #u86520 .text {
  6234. position:absolute;
  6235. align-self:center;
  6236. padding:5px 10px 5px 0px;
  6237. box-sizing:border-box;
  6238. width:100%;
  6239. }
  6240. #u86520_text {
  6241. border-width:0px;
  6242. white-space:nowrap;
  6243. text-transform:none;
  6244. }
  6245. #u86521_img {
  6246. border-width:0px;
  6247. position:absolute;
  6248. left:0px;
  6249. top:0px;
  6250. width:79px;
  6251. height:53px;
  6252. }
  6253. #u86521 {
  6254. border-width:0px;
  6255. position:absolute;
  6256. left:1263px;
  6257. top:445px;
  6258. width:79px;
  6259. height:53px;
  6260. display:flex;
  6261. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6262. font-weight:400;
  6263. font-style:normal;
  6264. }
  6265. #u86521 .text {
  6266. position:absolute;
  6267. align-self:center;
  6268. padding:2px 2px 2px 2px;
  6269. box-sizing:border-box;
  6270. width:100%;
  6271. }
  6272. #u86521_text {
  6273. border-width:0px;
  6274. word-wrap:break-word;
  6275. text-transform:none;
  6276. visibility:hidden;
  6277. }
  6278. #u86522 {
  6279. border-width:0px;
  6280. position:absolute;
  6281. left:0px;
  6282. top:0px;
  6283. width:0px;
  6284. height:0px;
  6285. }
  6286. #u86523_div {
  6287. border-width:0px;
  6288. position:absolute;
  6289. left:0px;
  6290. top:0px;
  6291. width:918px;
  6292. height:229px;
  6293. background:inherit;
  6294. background-color:rgba(255, 255, 255, 1);
  6295. box-sizing:border-box;
  6296. border-width:1px;
  6297. border-style:solid;
  6298. border-color:rgba(215, 215, 215, 1);
  6299. border-radius:4px;
  6300. -moz-box-shadow:none;
  6301. -webkit-box-shadow:none;
  6302. box-shadow:none;
  6303. font-size:11px;
  6304. text-align:left;
  6305. }
  6306. #u86523 {
  6307. border-width:0px;
  6308. position:absolute;
  6309. left:1182px;
  6310. top:515px;
  6311. width:918px;
  6312. height:229px;
  6313. display:flex;
  6314. font-size:11px;
  6315. text-align:left;
  6316. }
  6317. #u86523 .text {
  6318. position:absolute;
  6319. align-self:center;
  6320. padding:2px 2px 2px 20px;
  6321. box-sizing:border-box;
  6322. width:100%;
  6323. }
  6324. #u86523_text {
  6325. border-width:0px;
  6326. word-wrap:break-word;
  6327. text-transform:none;
  6328. visibility:hidden;
  6329. }
  6330. #u86524_div {
  6331. border-width:0px;
  6332. position:absolute;
  6333. left:0px;
  6334. top:0px;
  6335. width:67px;
  6336. height:30px;
  6337. background:inherit;
  6338. background-color:rgba(255, 255, 255, 0);
  6339. border:none;
  6340. border-top:0px;
  6341. border-right:0px;
  6342. border-bottom:0px;
  6343. border-radius:0px;
  6344. border-top-left-radius:0px;
  6345. border-bottom-left-radius:0px;
  6346. -moz-box-shadow:none;
  6347. -webkit-box-shadow:none;
  6348. box-shadow:none;
  6349. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6350. font-weight:500;
  6351. font-style:normal;
  6352. font-size:14px;
  6353. }
  6354. #u86524 {
  6355. border-width:0px;
  6356. position:absolute;
  6357. left:1202px;
  6358. top:525px;
  6359. width:67px;
  6360. height:30px;
  6361. display:flex;
  6362. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6363. font-weight:500;
  6364. font-style:normal;
  6365. font-size:14px;
  6366. }
  6367. #u86524 .text {
  6368. position:absolute;
  6369. align-self:center;
  6370. padding:5px 10px 5px 0px;
  6371. box-sizing:border-box;
  6372. width:100%;
  6373. }
  6374. #u86524_text {
  6375. border-width:0px;
  6376. white-space:nowrap;
  6377. text-transform:none;
  6378. }
  6379. #u86525_div {
  6380. border-width:0px;
  6381. position:absolute;
  6382. left:0px;
  6383. top:0px;
  6384. width:71px;
  6385. height:130px;
  6386. background:inherit;
  6387. background-color:rgba(255, 255, 255, 0);
  6388. border:none;
  6389. border-top:0px;
  6390. border-right:0px;
  6391. border-bottom:0px;
  6392. border-radius:0px;
  6393. border-top-left-radius:0px;
  6394. border-bottom-left-radius:0px;
  6395. -moz-box-shadow:none;
  6396. -webkit-box-shadow:none;
  6397. box-shadow:none;
  6398. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6399. font-weight:400;
  6400. font-style:normal;
  6401. font-size:14px;
  6402. color:#7F7F7F;
  6403. line-height:30px;
  6404. }
  6405. #u86525 {
  6406. border-width:0px;
  6407. position:absolute;
  6408. left:1204px;
  6409. top:561px;
  6410. width:71px;
  6411. height:130px;
  6412. display:flex;
  6413. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6414. font-weight:400;
  6415. font-style:normal;
  6416. font-size:14px;
  6417. color:#7F7F7F;
  6418. line-height:30px;
  6419. }
  6420. #u86525 .text {
  6421. position:absolute;
  6422. align-self:flex-start;
  6423. padding:5px 0px 5px 0px;
  6424. box-sizing:border-box;
  6425. width:100%;
  6426. }
  6427. #u86525_text {
  6428. border-width:0px;
  6429. white-space:nowrap;
  6430. text-transform:none;
  6431. }
  6432. #u86526_div {
  6433. border-width:0px;
  6434. position:absolute;
  6435. left:0px;
  6436. top:0px;
  6437. width:173px;
  6438. height:130px;
  6439. background:inherit;
  6440. background-color:rgba(255, 255, 255, 0);
  6441. border:none;
  6442. border-top:0px;
  6443. border-right:0px;
  6444. border-bottom:0px;
  6445. border-radius:0px;
  6446. border-top-left-radius:0px;
  6447. border-bottom-left-radius:0px;
  6448. -moz-box-shadow:none;
  6449. -webkit-box-shadow:none;
  6450. box-shadow:none;
  6451. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6452. font-weight:400;
  6453. font-style:normal;
  6454. font-size:14px;
  6455. line-height:30px;
  6456. }
  6457. #u86526 {
  6458. border-width:0px;
  6459. position:absolute;
  6460. left:1291px;
  6461. top:561px;
  6462. width:173px;
  6463. height:130px;
  6464. display:flex;
  6465. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6466. font-weight:400;
  6467. font-style:normal;
  6468. font-size:14px;
  6469. line-height:30px;
  6470. }
  6471. #u86526 .text {
  6472. position:absolute;
  6473. align-self:flex-start;
  6474. padding:5px 10px 5px 0px;
  6475. box-sizing:border-box;
  6476. width:100%;
  6477. }
  6478. #u86526_text {
  6479. border-width:0px;
  6480. white-space:nowrap;
  6481. text-transform:none;
  6482. }
  6483. #u86527_div {
  6484. border-width:0px;
  6485. position:absolute;
  6486. left:0px;
  6487. top:0px;
  6488. width:71px;
  6489. height:90px;
  6490. background:inherit;
  6491. background-color:rgba(255, 255, 255, 0);
  6492. border:none;
  6493. border-top:0px;
  6494. border-right:0px;
  6495. border-bottom:0px;
  6496. border-radius:0px;
  6497. border-top-left-radius:0px;
  6498. border-bottom-left-radius:0px;
  6499. -moz-box-shadow:none;
  6500. -webkit-box-shadow:none;
  6501. box-shadow:none;
  6502. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6503. font-weight:400;
  6504. font-style:normal;
  6505. font-size:14px;
  6506. color:#7F7F7F;
  6507. }
  6508. #u86527 {
  6509. border-width:0px;
  6510. position:absolute;
  6511. left:1545px;
  6512. top:561px;
  6513. width:71px;
  6514. height:90px;
  6515. display:flex;
  6516. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6517. font-weight:400;
  6518. font-style:normal;
  6519. font-size:14px;
  6520. color:#7F7F7F;
  6521. }
  6522. #u86527 .text {
  6523. position:absolute;
  6524. align-self:flex-start;
  6525. padding:5px 0px 5px 0px;
  6526. box-sizing:border-box;
  6527. width:100%;
  6528. }
  6529. #u86527_text {
  6530. border-width:0px;
  6531. white-space:nowrap;
  6532. text-transform:none;
  6533. }
  6534. #u86528_div {
  6535. border-width:0px;
  6536. position:absolute;
  6537. left:0px;
  6538. top:0px;
  6539. width:165px;
  6540. height:90px;
  6541. background:inherit;
  6542. background-color:rgba(255, 255, 255, 0);
  6543. border:none;
  6544. border-top:0px;
  6545. border-right:0px;
  6546. border-bottom:0px;
  6547. border-radius:0px;
  6548. border-top-left-radius:0px;
  6549. border-bottom-left-radius:0px;
  6550. -moz-box-shadow:none;
  6551. -webkit-box-shadow:none;
  6552. box-shadow:none;
  6553. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6554. font-weight:400;
  6555. font-style:normal;
  6556. font-size:14px;
  6557. }
  6558. #u86528 {
  6559. border-width:0px;
  6560. position:absolute;
  6561. left:1616px;
  6562. top:561px;
  6563. width:165px;
  6564. height:90px;
  6565. display:flex;
  6566. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6567. font-weight:400;
  6568. font-style:normal;
  6569. font-size:14px;
  6570. }
  6571. #u86528 .text {
  6572. position:absolute;
  6573. align-self:flex-start;
  6574. padding:5px 10px 5px 0px;
  6575. box-sizing:border-box;
  6576. width:100%;
  6577. }
  6578. #u86528_text {
  6579. border-width:0px;
  6580. white-space:nowrap;
  6581. text-transform:none;
  6582. }
  6583. #u86529_div {
  6584. border-width:0px;
  6585. position:absolute;
  6586. left:0px;
  6587. top:0px;
  6588. width:81px;
  6589. height:90px;
  6590. background:inherit;
  6591. background-color:rgba(255, 255, 255, 0);
  6592. border:none;
  6593. border-top:0px;
  6594. border-right:0px;
  6595. border-bottom:0px;
  6596. border-radius:0px;
  6597. border-top-left-radius:0px;
  6598. border-bottom-left-radius:0px;
  6599. -moz-box-shadow:none;
  6600. -webkit-box-shadow:none;
  6601. box-shadow:none;
  6602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6603. font-weight:400;
  6604. font-style:normal;
  6605. font-size:14px;
  6606. color:#7F7F7F;
  6607. }
  6608. #u86529 {
  6609. border-width:0px;
  6610. position:absolute;
  6611. left:1842px;
  6612. top:561px;
  6613. width:81px;
  6614. height:90px;
  6615. display:flex;
  6616. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6617. font-weight:400;
  6618. font-style:normal;
  6619. font-size:14px;
  6620. color:#7F7F7F;
  6621. }
  6622. #u86529 .text {
  6623. position:absolute;
  6624. align-self:flex-start;
  6625. padding:5px 10px 5px 0px;
  6626. box-sizing:border-box;
  6627. width:100%;
  6628. }
  6629. #u86529_text {
  6630. border-width:0px;
  6631. white-space:nowrap;
  6632. text-transform:none;
  6633. }
  6634. #u86530_div {
  6635. border-width:0px;
  6636. position:absolute;
  6637. left:0px;
  6638. top:0px;
  6639. width:104px;
  6640. height:90px;
  6641. background:inherit;
  6642. background-color:rgba(255, 255, 255, 0);
  6643. border:none;
  6644. border-top:0px;
  6645. border-right:0px;
  6646. border-bottom:0px;
  6647. border-radius:0px;
  6648. border-top-left-radius:0px;
  6649. border-bottom-left-radius:0px;
  6650. -moz-box-shadow:none;
  6651. -webkit-box-shadow:none;
  6652. box-shadow:none;
  6653. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6654. font-weight:400;
  6655. font-style:normal;
  6656. font-size:14px;
  6657. }
  6658. #u86530 {
  6659. border-width:0px;
  6660. position:absolute;
  6661. left:1929px;
  6662. top:561px;
  6663. width:104px;
  6664. height:90px;
  6665. display:flex;
  6666. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6667. font-weight:400;
  6668. font-style:normal;
  6669. font-size:14px;
  6670. }
  6671. #u86530 .text {
  6672. position:absolute;
  6673. align-self:flex-start;
  6674. padding:5px 10px 5px 0px;
  6675. box-sizing:border-box;
  6676. width:100%;
  6677. }
  6678. #u86530_text {
  6679. border-width:0px;
  6680. white-space:nowrap;
  6681. text-transform:none;
  6682. }
  6683. #u86531 {
  6684. border-width:0px;
  6685. position:absolute;
  6686. left:0px;
  6687. top:0px;
  6688. width:0px;
  6689. height:0px;
  6690. }
  6691. #u86532_div {
  6692. border-width:0px;
  6693. position:absolute;
  6694. left:0px;
  6695. top:0px;
  6696. width:67px;
  6697. height:30px;
  6698. background:inherit;
  6699. background-color:rgba(255, 255, 255, 0);
  6700. border:none;
  6701. border-top:0px;
  6702. border-right:0px;
  6703. border-bottom:0px;
  6704. border-radius:0px;
  6705. border-top-left-radius:0px;
  6706. border-bottom-left-radius:0px;
  6707. -moz-box-shadow:none;
  6708. -webkit-box-shadow:none;
  6709. box-shadow:none;
  6710. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6711. font-weight:400;
  6712. font-style:normal;
  6713. font-size:14px;
  6714. }
  6715. #u86532 {
  6716. border-width:0px;
  6717. position:absolute;
  6718. left:1204px;
  6719. top:700px;
  6720. width:67px;
  6721. height:30px;
  6722. display:flex;
  6723. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6724. font-weight:400;
  6725. font-style:normal;
  6726. font-size:14px;
  6727. }
  6728. #u86532 .text {
  6729. position:absolute;
  6730. align-self:center;
  6731. padding:5px 10px 5px 0px;
  6732. box-sizing:border-box;
  6733. width:100%;
  6734. }
  6735. #u86532_text {
  6736. border-width:0px;
  6737. white-space:nowrap;
  6738. text-transform:none;
  6739. }
  6740. #u86533 {
  6741. border-width:0px;
  6742. position:absolute;
  6743. left:0px;
  6744. top:0px;
  6745. width:0px;
  6746. height:0px;
  6747. }
  6748. #u86534_img {
  6749. border-width:0px;
  6750. position:absolute;
  6751. left:0px;
  6752. top:0px;
  6753. width:12px;
  6754. height:11px;
  6755. }
  6756. #u86534 {
  6757. border-width:0px;
  6758. position:absolute;
  6759. left:1323px;
  6760. top:710px;
  6761. width:12px;
  6762. height:11px;
  6763. display:flex;
  6764. }
  6765. #u86534 .text {
  6766. position:absolute;
  6767. align-self:center;
  6768. padding:2px 2px 2px 2px;
  6769. box-sizing:border-box;
  6770. width:100%;
  6771. }
  6772. #u86534_text {
  6773. border-width:0px;
  6774. word-wrap:break-word;
  6775. text-transform:none;
  6776. visibility:hidden;
  6777. }
  6778. #u86535_div {
  6779. border-width:0px;
  6780. position:absolute;
  6781. left:0px;
  6782. top:0px;
  6783. width:39px;
  6784. height:30px;
  6785. background:inherit;
  6786. background-color:rgba(255, 255, 255, 0);
  6787. border:none;
  6788. border-top:0px;
  6789. border-right:0px;
  6790. border-bottom:0px;
  6791. border-radius:0px;
  6792. border-top-left-radius:0px;
  6793. border-bottom-left-radius:0px;
  6794. -moz-box-shadow:none;
  6795. -webkit-box-shadow:none;
  6796. box-shadow:none;
  6797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6798. font-weight:400;
  6799. font-style:normal;
  6800. font-size:14px;
  6801. color:#1890FF;
  6802. }
  6803. #u86535 {
  6804. border-width:0px;
  6805. position:absolute;
  6806. left:1291px;
  6807. top:700px;
  6808. width:39px;
  6809. height:30px;
  6810. display:flex;
  6811. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6812. font-weight:400;
  6813. font-style:normal;
  6814. font-size:14px;
  6815. color:#1890FF;
  6816. }
  6817. #u86535 .text {
  6818. position:absolute;
  6819. align-self:center;
  6820. padding:5px 10px 5px 0px;
  6821. box-sizing:border-box;
  6822. width:100%;
  6823. }
  6824. #u86535_text {
  6825. border-width:0px;
  6826. white-space:nowrap;
  6827. text-transform:none;
  6828. }
  6829. #u86536 {
  6830. border-width:0px;
  6831. position:absolute;
  6832. left:0px;
  6833. top:0px;
  6834. width:0px;
  6835. height:0px;
  6836. }
  6837. #u86537_div {
  6838. border-width:0px;
  6839. position:absolute;
  6840. left:0px;
  6841. top:0px;
  6842. width:1000px;
  6843. height:297px;
  6844. background:inherit;
  6845. background-color:rgba(255, 255, 255, 1);
  6846. box-sizing:border-box;
  6847. border-width:1px;
  6848. border-style:solid;
  6849. border-color:rgba(215, 215, 215, 1);
  6850. border-radius:0px;
  6851. -moz-box-shadow:none;
  6852. -webkit-box-shadow:none;
  6853. box-shadow:none;
  6854. }
  6855. #u86537 {
  6856. border-width:0px;
  6857. position:absolute;
  6858. left:1142px;
  6859. top:1026px;
  6860. width:1000px;
  6861. height:297px;
  6862. display:flex;
  6863. }
  6864. #u86537 .text {
  6865. position:absolute;
  6866. align-self:center;
  6867. padding:2px 2px 2px 2px;
  6868. box-sizing:border-box;
  6869. width:100%;
  6870. }
  6871. #u86537_text {
  6872. border-width:0px;
  6873. word-wrap:break-word;
  6874. text-transform:none;
  6875. visibility:hidden;
  6876. }
  6877. #u86538_div {
  6878. border-width:0px;
  6879. position:absolute;
  6880. left:0px;
  6881. top:0px;
  6882. width:103px;
  6883. height:24px;
  6884. background:inherit;
  6885. background-color:rgba(255, 255, 255, 0);
  6886. border:none;
  6887. border-top:0px;
  6888. border-right:0px;
  6889. border-bottom:0px;
  6890. border-radius:0px;
  6891. border-top-left-radius:0px;
  6892. border-bottom-left-radius:0px;
  6893. -moz-box-shadow:none;
  6894. -webkit-box-shadow:none;
  6895. box-shadow:none;
  6896. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6897. font-weight:400;
  6898. font-style:normal;
  6899. font-size:10px;
  6900. color:#AAAAAA;
  6901. }
  6902. #u86538 {
  6903. border-width:0px;
  6904. position:absolute;
  6905. left:1397px;
  6906. top:1099px;
  6907. width:103px;
  6908. height:24px;
  6909. display:flex;
  6910. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6911. font-weight:400;
  6912. font-style:normal;
  6913. font-size:10px;
  6914. color:#AAAAAA;
  6915. }
  6916. #u86538 .text {
  6917. position:absolute;
  6918. align-self:flex-start;
  6919. padding:5px 0px 5px 0px;
  6920. box-sizing:border-box;
  6921. width:100%;
  6922. }
  6923. #u86538_text {
  6924. border-width:0px;
  6925. white-space:nowrap;
  6926. text-transform:none;
  6927. }
  6928. #u86539 {
  6929. border-width:0px;
  6930. position:absolute;
  6931. left:0px;
  6932. top:0px;
  6933. width:0px;
  6934. height:0px;
  6935. }
  6936. #u86540_div {
  6937. border-width:0px;
  6938. position:absolute;
  6939. left:0px;
  6940. top:0px;
  6941. width:43px;
  6942. height:30px;
  6943. background:inherit;
  6944. background-color:rgba(255, 255, 255, 0);
  6945. border:none;
  6946. border-top:0px;
  6947. border-right:0px;
  6948. border-bottom:0px;
  6949. border-radius:0px;
  6950. border-top-left-radius:0px;
  6951. border-bottom-left-radius:0px;
  6952. -moz-box-shadow:none;
  6953. -webkit-box-shadow:none;
  6954. box-shadow:none;
  6955. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6956. font-weight:400;
  6957. font-style:normal;
  6958. font-size:14px;
  6959. }
  6960. #u86540 {
  6961. border-width:0px;
  6962. position:absolute;
  6963. left:1230px;
  6964. top:1101px;
  6965. width:43px;
  6966. height:30px;
  6967. display:flex;
  6968. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6969. font-weight:400;
  6970. font-style:normal;
  6971. font-size:14px;
  6972. }
  6973. #u86540 .text {
  6974. position:absolute;
  6975. align-self:flex-start;
  6976. padding:0px 0px 0px 0px;
  6977. box-sizing:border-box;
  6978. width:100%;
  6979. }
  6980. #u86540_text {
  6981. border-width:0px;
  6982. white-space:nowrap;
  6983. text-transform:none;
  6984. }
  6985. #u86541_div {
  6986. border-width:0px;
  6987. position:absolute;
  6988. left:0px;
  6989. top:0px;
  6990. width:71px;
  6991. height:16px;
  6992. background:inherit;
  6993. background-color:rgba(255, 255, 255, 0);
  6994. border:none;
  6995. border-top:0px;
  6996. border-right:0px;
  6997. border-bottom:0px;
  6998. border-radius:0px;
  6999. border-top-left-radius:0px;
  7000. border-bottom-left-radius:0px;
  7001. -moz-box-shadow:none;
  7002. -webkit-box-shadow:none;
  7003. box-shadow:none;
  7004. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7005. font-weight:400;
  7006. font-style:normal;
  7007. font-size:11px;
  7008. color:#AAAAAA;
  7009. }
  7010. #u86541 {
  7011. border-width:0px;
  7012. position:absolute;
  7013. left:1230px;
  7014. top:1129px;
  7015. width:71px;
  7016. height:16px;
  7017. display:flex;
  7018. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7019. font-weight:400;
  7020. font-style:normal;
  7021. font-size:11px;
  7022. color:#AAAAAA;
  7023. }
  7024. #u86541 .text {
  7025. position:absolute;
  7026. align-self:flex-start;
  7027. padding:0px 0px 0px 0px;
  7028. box-sizing:border-box;
  7029. width:100%;
  7030. }
  7031. #u86541_text {
  7032. border-width:0px;
  7033. white-space:nowrap;
  7034. text-transform:none;
  7035. }
  7036. #u86542_div {
  7037. border-width:0px;
  7038. position:absolute;
  7039. left:0px;
  7040. top:0px;
  7041. width:43px;
  7042. height:20px;
  7043. background:inherit;
  7044. background-color:rgba(255, 255, 255, 0);
  7045. border:none;
  7046. border-top:0px;
  7047. border-right:0px;
  7048. border-bottom:0px;
  7049. border-radius:0px;
  7050. border-top-left-radius:0px;
  7051. border-bottom-left-radius:0px;
  7052. -moz-box-shadow:none;
  7053. -webkit-box-shadow:none;
  7054. box-shadow:none;
  7055. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7056. font-weight:400;
  7057. font-style:normal;
  7058. font-size:14px;
  7059. }
  7060. #u86542 {
  7061. border-width:0px;
  7062. position:absolute;
  7063. left:1230px;
  7064. top:1171px;
  7065. width:43px;
  7066. height:20px;
  7067. display:flex;
  7068. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7069. font-weight:400;
  7070. font-style:normal;
  7071. font-size:14px;
  7072. }
  7073. #u86542 .text {
  7074. position:absolute;
  7075. align-self:flex-start;
  7076. padding:0px 0px 0px 0px;
  7077. box-sizing:border-box;
  7078. width:100%;
  7079. }
  7080. #u86542_text {
  7081. border-width:0px;
  7082. white-space:nowrap;
  7083. text-transform:none;
  7084. }
  7085. #u86543_div {
  7086. border-width:0px;
  7087. position:absolute;
  7088. left:0px;
  7089. top:0px;
  7090. width:91px;
  7091. height:16px;
  7092. background:inherit;
  7093. background-color:rgba(255, 255, 255, 0);
  7094. border:none;
  7095. border-top:0px;
  7096. border-right:0px;
  7097. border-bottom:0px;
  7098. border-radius:0px;
  7099. border-top-left-radius:0px;
  7100. border-bottom-left-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:11px;
  7108. color:#AAAAAA;
  7109. }
  7110. #u86543 {
  7111. border-width:0px;
  7112. position:absolute;
  7113. left:1230px;
  7114. top:1199px;
  7115. width:91px;
  7116. height:16px;
  7117. display:flex;
  7118. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7119. font-weight:400;
  7120. font-style:normal;
  7121. font-size:11px;
  7122. color:#AAAAAA;
  7123. }
  7124. #u86543 .text {
  7125. position:absolute;
  7126. align-self:flex-start;
  7127. padding:0px 0px 0px 0px;
  7128. box-sizing:border-box;
  7129. width:100%;
  7130. }
  7131. #u86543_text {
  7132. border-width:0px;
  7133. white-space:nowrap;
  7134. text-transform:none;
  7135. }
  7136. #u86544_div {
  7137. border-width:0px;
  7138. position:absolute;
  7139. left:0px;
  7140. top:0px;
  7141. width:37px;
  7142. height:35px;
  7143. background:inherit;
  7144. background-color:rgba(255, 255, 255, 0);
  7145. border:none;
  7146. border-top:0px;
  7147. border-right:0px;
  7148. border-bottom:0px;
  7149. border-radius:0px;
  7150. border-top-left-radius:0px;
  7151. border-bottom-left-radius:0px;
  7152. -moz-box-shadow:none;
  7153. -webkit-box-shadow:none;
  7154. box-shadow:none;
  7155. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7156. font-weight:500;
  7157. font-style:normal;
  7158. font-size:18px;
  7159. }
  7160. #u86544 {
  7161. border-width:0px;
  7162. position:absolute;
  7163. left:1168px;
  7164. top:1044px;
  7165. width:37px;
  7166. height:35px;
  7167. display:flex;
  7168. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7169. font-weight:500;
  7170. font-style:normal;
  7171. font-size:18px;
  7172. }
  7173. #u86544 .text {
  7174. position:absolute;
  7175. align-self:flex-start;
  7176. padding:5px 0px 5px 0px;
  7177. box-sizing:border-box;
  7178. width:100%;
  7179. }
  7180. #u86544_text {
  7181. border-width:0px;
  7182. white-space:nowrap;
  7183. text-transform:none;
  7184. }
  7185. #u86545 {
  7186. border-width:0px;
  7187. position:absolute;
  7188. left:0px;
  7189. top:0px;
  7190. width:0px;
  7191. height:0px;
  7192. }
  7193. #u86546_img {
  7194. border-width:0px;
  7195. position:absolute;
  7196. left:0px;
  7197. top:0px;
  7198. width:2px;
  7199. height:32px;
  7200. }
  7201. #u86546 {
  7202. border-width:0px;
  7203. position:absolute;
  7204. left:1207px;
  7205. top:1135px;
  7206. width:1px;
  7207. height:31px;
  7208. display:flex;
  7209. }
  7210. #u86546 .text {
  7211. position:absolute;
  7212. align-self:center;
  7213. padding:2px 2px 2px 2px;
  7214. box-sizing:border-box;
  7215. width:100%;
  7216. }
  7217. #u86546_text {
  7218. border-width:0px;
  7219. word-wrap:break-word;
  7220. text-transform:none;
  7221. visibility:hidden;
  7222. }
  7223. #u86547 {
  7224. border-width:0px;
  7225. position:absolute;
  7226. left:0px;
  7227. top:0px;
  7228. width:0px;
  7229. height:0px;
  7230. }
  7231. #u86548_div {
  7232. border-width:0px;
  7233. position:absolute;
  7234. left:0px;
  7235. top:0px;
  7236. width:30px;
  7237. height:30px;
  7238. background:inherit;
  7239. background-color:rgba(24, 144, 255, 1);
  7240. border:none;
  7241. border-radius:4px;
  7242. -moz-box-shadow:none;
  7243. -webkit-box-shadow:none;
  7244. box-shadow:none;
  7245. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7246. font-weight:400;
  7247. font-style:normal;
  7248. font-size:10px;
  7249. color:#FFFFFF;
  7250. }
  7251. #u86548 {
  7252. border-width:0px;
  7253. position:absolute;
  7254. left:1192px;
  7255. top:1171px;
  7256. width:30px;
  7257. height:30px;
  7258. display:flex;
  7259. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7260. font-weight:400;
  7261. font-style:normal;
  7262. font-size:10px;
  7263. color:#FFFFFF;
  7264. }
  7265. #u86548 .text {
  7266. position:absolute;
  7267. align-self:center;
  7268. padding:2px 2px 2px 2px;
  7269. box-sizing:border-box;
  7270. width:100%;
  7271. }
  7272. #u86548_text {
  7273. border-width:0px;
  7274. word-wrap:break-word;
  7275. text-transform:none;
  7276. }
  7277. #u86549 {
  7278. border-width:0px;
  7279. position:absolute;
  7280. left:0px;
  7281. top:0px;
  7282. width:0px;
  7283. height:0px;
  7284. }
  7285. #u86550_img {
  7286. border-width:0px;
  7287. position:absolute;
  7288. left:0px;
  7289. top:0px;
  7290. width:9px;
  7291. height:9px;
  7292. }
  7293. #u86550 {
  7294. border-width:0px;
  7295. position:absolute;
  7296. left:1214px;
  7297. top:1193px;
  7298. width:9px;
  7299. height:9px;
  7300. display:flex;
  7301. }
  7302. #u86550 .text {
  7303. position:absolute;
  7304. align-self:center;
  7305. padding:2px 2px 2px 2px;
  7306. box-sizing:border-box;
  7307. width:100%;
  7308. }
  7309. #u86550_text {
  7310. border-width:0px;
  7311. word-wrap:break-word;
  7312. text-transform:none;
  7313. visibility:hidden;
  7314. }
  7315. #u86551_img {
  7316. border-width:0px;
  7317. position:absolute;
  7318. left:0px;
  7319. top:0px;
  7320. width:5px;
  7321. height:1px;
  7322. }
  7323. #u86551 {
  7324. border-width:0px;
  7325. position:absolute;
  7326. left:1216px;
  7327. top:1197px;
  7328. width:5px;
  7329. height:1px;
  7330. display:flex;
  7331. }
  7332. #u86551 .text {
  7333. position:absolute;
  7334. align-self:center;
  7335. padding:2px 2px 2px 2px;
  7336. box-sizing:border-box;
  7337. width:100%;
  7338. }
  7339. #u86551_text {
  7340. border-width:0px;
  7341. word-wrap:break-word;
  7342. text-transform:none;
  7343. visibility:hidden;
  7344. }
  7345. #u86552 {
  7346. border-width:0px;
  7347. position:absolute;
  7348. left:0px;
  7349. top:0px;
  7350. width:0px;
  7351. height:0px;
  7352. }
  7353. #u86553_div {
  7354. border-width:0px;
  7355. position:absolute;
  7356. left:0px;
  7357. top:0px;
  7358. width:30px;
  7359. height:30px;
  7360. background:inherit;
  7361. background-color:rgba(24, 144, 255, 1);
  7362. border:none;
  7363. border-radius:4px;
  7364. -moz-box-shadow:none;
  7365. -webkit-box-shadow:none;
  7366. box-shadow:none;
  7367. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7368. font-weight:400;
  7369. font-style:normal;
  7370. font-size:12px;
  7371. color:#FFFFFF;
  7372. }
  7373. #u86553 {
  7374. border-width:0px;
  7375. position:absolute;
  7376. left:1192px;
  7377. top:1101px;
  7378. width:30px;
  7379. height:30px;
  7380. display:flex;
  7381. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7382. font-weight:400;
  7383. font-style:normal;
  7384. font-size:12px;
  7385. color:#FFFFFF;
  7386. }
  7387. #u86553 .text {
  7388. position:absolute;
  7389. align-self:center;
  7390. padding:2px 2px 2px 2px;
  7391. box-sizing:border-box;
  7392. width:100%;
  7393. }
  7394. #u86553_text {
  7395. border-width:0px;
  7396. word-wrap:break-word;
  7397. text-transform:none;
  7398. }
  7399. #u86554 {
  7400. border-width:0px;
  7401. position:absolute;
  7402. left:0px;
  7403. top:0px;
  7404. width:0px;
  7405. height:0px;
  7406. }
  7407. #u86555_img {
  7408. border-width:0px;
  7409. position:absolute;
  7410. left:0px;
  7411. top:0px;
  7412. width:9px;
  7413. height:9px;
  7414. }
  7415. #u86555 {
  7416. border-width:0px;
  7417. position:absolute;
  7418. left:1214px;
  7419. top:1123px;
  7420. width:9px;
  7421. height:9px;
  7422. display:flex;
  7423. }
  7424. #u86555 .text {
  7425. position:absolute;
  7426. align-self:center;
  7427. padding:2px 2px 2px 2px;
  7428. box-sizing:border-box;
  7429. width:100%;
  7430. }
  7431. #u86555_text {
  7432. border-width:0px;
  7433. word-wrap:break-word;
  7434. text-transform:none;
  7435. visibility:hidden;
  7436. }
  7437. #u86556_img {
  7438. border-width:0px;
  7439. position:absolute;
  7440. left:0px;
  7441. top:0px;
  7442. width:5px;
  7443. height:4px;
  7444. }
  7445. #u86556 {
  7446. border-width:0px;
  7447. position:absolute;
  7448. left:1216px;
  7449. top:1126px;
  7450. width:5px;
  7451. height:4px;
  7452. display:flex;
  7453. }
  7454. #u86556 .text {
  7455. position:absolute;
  7456. align-self:center;
  7457. padding:2px 2px 2px 2px;
  7458. box-sizing:border-box;
  7459. width:100%;
  7460. }
  7461. #u86556_text {
  7462. border-width:0px;
  7463. word-wrap:break-word;
  7464. text-transform:none;
  7465. visibility:hidden;
  7466. }
  7467. #u86557 {
  7468. border-width:0px;
  7469. position:absolute;
  7470. left:0px;
  7471. top:0px;
  7472. width:0px;
  7473. height:0px;
  7474. }
  7475. #u86558_div {
  7476. border-width:0px;
  7477. position:absolute;
  7478. left:0px;
  7479. top:0px;
  7480. width:918px;
  7481. height:229px;
  7482. background:inherit;
  7483. background-color:rgba(255, 255, 255, 1);
  7484. box-sizing:border-box;
  7485. border-width:1px;
  7486. border-style:solid;
  7487. border-color:rgba(215, 215, 215, 1);
  7488. border-radius:4px;
  7489. -moz-box-shadow:none;
  7490. -webkit-box-shadow:none;
  7491. box-shadow:none;
  7492. font-size:11px;
  7493. text-align:left;
  7494. }
  7495. #u86558 {
  7496. border-width:0px;
  7497. position:absolute;
  7498. left:1182px;
  7499. top:754px;
  7500. width:918px;
  7501. height:229px;
  7502. display:flex;
  7503. font-size:11px;
  7504. text-align:left;
  7505. }
  7506. #u86558 .text {
  7507. position:absolute;
  7508. align-self:center;
  7509. padding:2px 2px 2px 20px;
  7510. box-sizing:border-box;
  7511. width:100%;
  7512. }
  7513. #u86558_text {
  7514. border-width:0px;
  7515. word-wrap:break-word;
  7516. text-transform:none;
  7517. visibility:hidden;
  7518. }
  7519. #u86559_div {
  7520. border-width:0px;
  7521. position:absolute;
  7522. left:0px;
  7523. top:0px;
  7524. width:67px;
  7525. height:30px;
  7526. background:inherit;
  7527. background-color:rgba(255, 255, 255, 0);
  7528. border:none;
  7529. border-top:0px;
  7530. border-right:0px;
  7531. border-bottom:0px;
  7532. border-radius:0px;
  7533. border-top-left-radius:0px;
  7534. border-bottom-left-radius:0px;
  7535. -moz-box-shadow:none;
  7536. -webkit-box-shadow:none;
  7537. box-shadow:none;
  7538. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7539. font-weight:500;
  7540. font-style:normal;
  7541. font-size:14px;
  7542. }
  7543. #u86559 {
  7544. border-width:0px;
  7545. position:absolute;
  7546. left:1202px;
  7547. top:764px;
  7548. width:67px;
  7549. height:30px;
  7550. display:flex;
  7551. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7552. font-weight:500;
  7553. font-style:normal;
  7554. font-size:14px;
  7555. }
  7556. #u86559 .text {
  7557. position:absolute;
  7558. align-self:center;
  7559. padding:5px 10px 5px 0px;
  7560. box-sizing:border-box;
  7561. width:100%;
  7562. }
  7563. #u86559_text {
  7564. border-width:0px;
  7565. white-space:nowrap;
  7566. text-transform:none;
  7567. }
  7568. #u86560_div {
  7569. border-width:0px;
  7570. position:absolute;
  7571. left:0px;
  7572. top:0px;
  7573. width:71px;
  7574. height:130px;
  7575. background:inherit;
  7576. background-color:rgba(255, 255, 255, 0);
  7577. border:none;
  7578. border-top:0px;
  7579. border-right:0px;
  7580. border-bottom:0px;
  7581. border-radius:0px;
  7582. border-top-left-radius:0px;
  7583. border-bottom-left-radius:0px;
  7584. -moz-box-shadow:none;
  7585. -webkit-box-shadow:none;
  7586. box-shadow:none;
  7587. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7588. font-weight:400;
  7589. font-style:normal;
  7590. font-size:14px;
  7591. color:#7F7F7F;
  7592. line-height:30px;
  7593. }
  7594. #u86560 {
  7595. border-width:0px;
  7596. position:absolute;
  7597. left:1204px;
  7598. top:800px;
  7599. width:71px;
  7600. height:130px;
  7601. display:flex;
  7602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7603. font-weight:400;
  7604. font-style:normal;
  7605. font-size:14px;
  7606. color:#7F7F7F;
  7607. line-height:30px;
  7608. }
  7609. #u86560 .text {
  7610. position:absolute;
  7611. align-self:flex-start;
  7612. padding:5px 0px 5px 0px;
  7613. box-sizing:border-box;
  7614. width:100%;
  7615. }
  7616. #u86560_text {
  7617. border-width:0px;
  7618. white-space:nowrap;
  7619. text-transform:none;
  7620. }
  7621. #u86561_div {
  7622. border-width:0px;
  7623. position:absolute;
  7624. left:0px;
  7625. top:0px;
  7626. width:173px;
  7627. height:130px;
  7628. background:inherit;
  7629. background-color:rgba(255, 255, 255, 0);
  7630. border:none;
  7631. border-top:0px;
  7632. border-right:0px;
  7633. border-bottom:0px;
  7634. border-radius:0px;
  7635. border-top-left-radius:0px;
  7636. border-bottom-left-radius:0px;
  7637. -moz-box-shadow:none;
  7638. -webkit-box-shadow:none;
  7639. box-shadow:none;
  7640. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7641. font-weight:400;
  7642. font-style:normal;
  7643. font-size:14px;
  7644. line-height:30px;
  7645. }
  7646. #u86561 {
  7647. border-width:0px;
  7648. position:absolute;
  7649. left:1291px;
  7650. top:800px;
  7651. width:173px;
  7652. height:130px;
  7653. display:flex;
  7654. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7655. font-weight:400;
  7656. font-style:normal;
  7657. font-size:14px;
  7658. line-height:30px;
  7659. }
  7660. #u86561 .text {
  7661. position:absolute;
  7662. align-self:flex-start;
  7663. padding:5px 10px 5px 0px;
  7664. box-sizing:border-box;
  7665. width:100%;
  7666. }
  7667. #u86561_text {
  7668. border-width:0px;
  7669. white-space:nowrap;
  7670. text-transform:none;
  7671. }
  7672. #u86562_div {
  7673. border-width:0px;
  7674. position:absolute;
  7675. left:0px;
  7676. top:0px;
  7677. width:71px;
  7678. height:90px;
  7679. background:inherit;
  7680. background-color:rgba(255, 255, 255, 0);
  7681. border:none;
  7682. border-top:0px;
  7683. border-right:0px;
  7684. border-bottom:0px;
  7685. border-radius:0px;
  7686. border-top-left-radius:0px;
  7687. border-bottom-left-radius:0px;
  7688. -moz-box-shadow:none;
  7689. -webkit-box-shadow:none;
  7690. box-shadow:none;
  7691. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7692. font-weight:400;
  7693. font-style:normal;
  7694. font-size:14px;
  7695. color:#7F7F7F;
  7696. }
  7697. #u86562 {
  7698. border-width:0px;
  7699. position:absolute;
  7700. left:1545px;
  7701. top:800px;
  7702. width:71px;
  7703. height:90px;
  7704. display:flex;
  7705. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7706. font-weight:400;
  7707. font-style:normal;
  7708. font-size:14px;
  7709. color:#7F7F7F;
  7710. }
  7711. #u86562 .text {
  7712. position:absolute;
  7713. align-self:flex-start;
  7714. padding:5px 0px 5px 0px;
  7715. box-sizing:border-box;
  7716. width:100%;
  7717. }
  7718. #u86562_text {
  7719. border-width:0px;
  7720. white-space:nowrap;
  7721. text-transform:none;
  7722. }
  7723. #u86563_div {
  7724. border-width:0px;
  7725. position:absolute;
  7726. left:0px;
  7727. top:0px;
  7728. width:165px;
  7729. height:90px;
  7730. background:inherit;
  7731. background-color:rgba(255, 255, 255, 0);
  7732. border:none;
  7733. border-top:0px;
  7734. border-right:0px;
  7735. border-bottom:0px;
  7736. border-radius:0px;
  7737. border-top-left-radius:0px;
  7738. border-bottom-left-radius:0px;
  7739. -moz-box-shadow:none;
  7740. -webkit-box-shadow:none;
  7741. box-shadow:none;
  7742. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7743. font-weight:400;
  7744. font-style:normal;
  7745. font-size:14px;
  7746. }
  7747. #u86563 {
  7748. border-width:0px;
  7749. position:absolute;
  7750. left:1616px;
  7751. top:800px;
  7752. width:165px;
  7753. height:90px;
  7754. display:flex;
  7755. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7756. font-weight:400;
  7757. font-style:normal;
  7758. font-size:14px;
  7759. }
  7760. #u86563 .text {
  7761. position:absolute;
  7762. align-self:flex-start;
  7763. padding:5px 10px 5px 0px;
  7764. box-sizing:border-box;
  7765. width:100%;
  7766. }
  7767. #u86563_text {
  7768. border-width:0px;
  7769. white-space:nowrap;
  7770. text-transform:none;
  7771. }
  7772. #u86564_div {
  7773. border-width:0px;
  7774. position:absolute;
  7775. left:0px;
  7776. top:0px;
  7777. width:81px;
  7778. height:90px;
  7779. background:inherit;
  7780. background-color:rgba(255, 255, 255, 0);
  7781. border:none;
  7782. border-top:0px;
  7783. border-right:0px;
  7784. border-bottom:0px;
  7785. border-radius:0px;
  7786. border-top-left-radius:0px;
  7787. border-bottom-left-radius:0px;
  7788. -moz-box-shadow:none;
  7789. -webkit-box-shadow:none;
  7790. box-shadow:none;
  7791. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7792. font-weight:400;
  7793. font-style:normal;
  7794. font-size:14px;
  7795. color:#7F7F7F;
  7796. }
  7797. #u86564 {
  7798. border-width:0px;
  7799. position:absolute;
  7800. left:1842px;
  7801. top:800px;
  7802. width:81px;
  7803. height:90px;
  7804. display:flex;
  7805. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7806. font-weight:400;
  7807. font-style:normal;
  7808. font-size:14px;
  7809. color:#7F7F7F;
  7810. }
  7811. #u86564 .text {
  7812. position:absolute;
  7813. align-self:flex-start;
  7814. padding:5px 10px 5px 0px;
  7815. box-sizing:border-box;
  7816. width:100%;
  7817. }
  7818. #u86564_text {
  7819. border-width:0px;
  7820. white-space:nowrap;
  7821. text-transform:none;
  7822. }
  7823. #u86565_div {
  7824. border-width:0px;
  7825. position:absolute;
  7826. left:0px;
  7827. top:0px;
  7828. width:104px;
  7829. height:90px;
  7830. background:inherit;
  7831. background-color:rgba(255, 255, 255, 0);
  7832. border:none;
  7833. border-top:0px;
  7834. border-right:0px;
  7835. border-bottom:0px;
  7836. border-radius:0px;
  7837. border-top-left-radius:0px;
  7838. border-bottom-left-radius:0px;
  7839. -moz-box-shadow:none;
  7840. -webkit-box-shadow:none;
  7841. box-shadow:none;
  7842. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7843. font-weight:400;
  7844. font-style:normal;
  7845. font-size:14px;
  7846. }
  7847. #u86565 {
  7848. border-width:0px;
  7849. position:absolute;
  7850. left:1929px;
  7851. top:800px;
  7852. width:104px;
  7853. height:90px;
  7854. display:flex;
  7855. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7856. font-weight:400;
  7857. font-style:normal;
  7858. font-size:14px;
  7859. }
  7860. #u86565 .text {
  7861. position:absolute;
  7862. align-self:flex-start;
  7863. padding:5px 10px 5px 0px;
  7864. box-sizing:border-box;
  7865. width:100%;
  7866. }
  7867. #u86565_text {
  7868. border-width:0px;
  7869. white-space:nowrap;
  7870. text-transform:none;
  7871. }
  7872. #u86566 {
  7873. border-width:0px;
  7874. position:absolute;
  7875. left:0px;
  7876. top:0px;
  7877. width:0px;
  7878. height:0px;
  7879. }
  7880. #u86567_div {
  7881. border-width:0px;
  7882. position:absolute;
  7883. left:0px;
  7884. top:0px;
  7885. width:67px;
  7886. height:30px;
  7887. background:inherit;
  7888. background-color:rgba(255, 255, 255, 0);
  7889. border:none;
  7890. border-top:0px;
  7891. border-right:0px;
  7892. border-bottom:0px;
  7893. border-radius:0px;
  7894. border-top-left-radius:0px;
  7895. border-bottom-left-radius:0px;
  7896. -moz-box-shadow:none;
  7897. -webkit-box-shadow:none;
  7898. box-shadow:none;
  7899. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7900. font-weight:400;
  7901. font-style:normal;
  7902. font-size:14px;
  7903. }
  7904. #u86567 {
  7905. border-width:0px;
  7906. position:absolute;
  7907. left:1204px;
  7908. top:939px;
  7909. width:67px;
  7910. height:30px;
  7911. display:flex;
  7912. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7913. font-weight:400;
  7914. font-style:normal;
  7915. font-size:14px;
  7916. }
  7917. #u86567 .text {
  7918. position:absolute;
  7919. align-self:center;
  7920. padding:5px 10px 5px 0px;
  7921. box-sizing:border-box;
  7922. width:100%;
  7923. }
  7924. #u86567_text {
  7925. border-width:0px;
  7926. white-space:nowrap;
  7927. text-transform:none;
  7928. }
  7929. #u86568 {
  7930. border-width:0px;
  7931. position:absolute;
  7932. left:0px;
  7933. top:0px;
  7934. width:0px;
  7935. height:0px;
  7936. }
  7937. #u86569_img {
  7938. border-width:0px;
  7939. position:absolute;
  7940. left:0px;
  7941. top:0px;
  7942. width:12px;
  7943. height:11px;
  7944. }
  7945. #u86569 {
  7946. border-width:0px;
  7947. position:absolute;
  7948. left:1323px;
  7949. top:949px;
  7950. width:12px;
  7951. height:11px;
  7952. display:flex;
  7953. }
  7954. #u86569 .text {
  7955. position:absolute;
  7956. align-self:center;
  7957. padding:2px 2px 2px 2px;
  7958. box-sizing:border-box;
  7959. width:100%;
  7960. }
  7961. #u86569_text {
  7962. border-width:0px;
  7963. word-wrap:break-word;
  7964. text-transform:none;
  7965. visibility:hidden;
  7966. }
  7967. #u86570_div {
  7968. border-width:0px;
  7969. position:absolute;
  7970. left:0px;
  7971. top:0px;
  7972. width:39px;
  7973. height:30px;
  7974. background:inherit;
  7975. background-color:rgba(255, 255, 255, 0);
  7976. border:none;
  7977. border-top:0px;
  7978. border-right:0px;
  7979. border-bottom:0px;
  7980. border-radius:0px;
  7981. border-top-left-radius:0px;
  7982. border-bottom-left-radius:0px;
  7983. -moz-box-shadow:none;
  7984. -webkit-box-shadow:none;
  7985. box-shadow:none;
  7986. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7987. font-weight:400;
  7988. font-style:normal;
  7989. font-size:14px;
  7990. color:#1890FF;
  7991. }
  7992. #u86570 {
  7993. border-width:0px;
  7994. position:absolute;
  7995. left:1291px;
  7996. top:939px;
  7997. width:39px;
  7998. height:30px;
  7999. display:flex;
  8000. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8001. font-weight:400;
  8002. font-style:normal;
  8003. font-size:14px;
  8004. color:#1890FF;
  8005. }
  8006. #u86570 .text {
  8007. position:absolute;
  8008. align-self:center;
  8009. padding:5px 10px 5px 0px;
  8010. box-sizing:border-box;
  8011. width:100%;
  8012. }
  8013. #u86570_text {
  8014. border-width:0px;
  8015. white-space:nowrap;
  8016. text-transform:none;
  8017. }