styles.css 212 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-100px;
  6. width:4153px;
  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. #u65324 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u65325_div {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:1000px;
  33. height:988px;
  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(242, 242, 242, 1);
  40. border-radius:0px;
  41. -moz-box-shadow:none;
  42. -webkit-box-shadow:none;
  43. box-shadow:none;
  44. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  45. font-weight:400;
  46. font-style:normal;
  47. font-size:14px;
  48. color:#AAAAAA;
  49. text-align:center;
  50. line-height:30px;
  51. }
  52. #u65325 {
  53. border-width:0px;
  54. position:absolute;
  55. left:100px;
  56. top:266px;
  57. width:1000px;
  58. height:988px;
  59. display:flex;
  60. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  61. font-weight:400;
  62. font-style:normal;
  63. font-size:14px;
  64. color:#AAAAAA;
  65. text-align:center;
  66. line-height:30px;
  67. }
  68. #u65325 .text {
  69. position:absolute;
  70. align-self:center;
  71. padding:5px 10px 5px 10px;
  72. box-sizing:border-box;
  73. width:100%;
  74. }
  75. #u65325_text {
  76. border-width:0px;
  77. word-wrap:break-word;
  78. text-transform:none;
  79. visibility:hidden;
  80. }
  81. #u65326_div {
  82. border-width:0px;
  83. position:absolute;
  84. left:0px;
  85. top:0px;
  86. width:73px;
  87. height:40px;
  88. background:inherit;
  89. background-color:rgba(255, 255, 255, 0);
  90. border:none;
  91. border-left:0px;
  92. border-top:0px;
  93. border-right:0px;
  94. border-radius:0px;
  95. border-bottom-right-radius:0px;
  96. border-bottom-left-radius:0px;
  97. -moz-box-shadow:none;
  98. -webkit-box-shadow:none;
  99. box-shadow:none;
  100. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  101. font-weight:400;
  102. font-style:normal;
  103. font-size:18px;
  104. }
  105. #u65326 {
  106. border-width:0px;
  107. position:absolute;
  108. left:140px;
  109. top:282px;
  110. width:73px;
  111. height:40px;
  112. display:flex;
  113. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  114. font-weight:400;
  115. font-style:normal;
  116. font-size:18px;
  117. }
  118. #u65326 .text {
  119. position:absolute;
  120. align-self:center;
  121. padding:0px 0px 0px 0px;
  122. box-sizing:border-box;
  123. width:100%;
  124. }
  125. #u65326_text {
  126. border-width:0px;
  127. white-space:nowrap;
  128. text-transform:none;
  129. }
  130. #u65327_div {
  131. border-width:0px;
  132. position:absolute;
  133. left:0px;
  134. top:0px;
  135. width:81px;
  136. height:30px;
  137. background:inherit;
  138. background-color:rgba(255, 255, 255, 0);
  139. border:none;
  140. border-top:0px;
  141. border-right:0px;
  142. border-bottom:0px;
  143. border-radius:0px;
  144. border-top-left-radius:0px;
  145. border-bottom-left-radius:0px;
  146. -moz-box-shadow:none;
  147. -webkit-box-shadow:none;
  148. box-shadow:none;
  149. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  150. font-weight:400;
  151. font-style:normal;
  152. font-size:14px;
  153. color:#7F7F7F;
  154. }
  155. #u65327 {
  156. border-width:0px;
  157. position:absolute;
  158. left:140px;
  159. top:332px;
  160. width:81px;
  161. height:30px;
  162. display:flex;
  163. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  164. font-weight:400;
  165. font-style:normal;
  166. font-size:14px;
  167. color:#7F7F7F;
  168. }
  169. #u65327 .text {
  170. position:absolute;
  171. align-self:center;
  172. padding:5px 10px 5px 0px;
  173. box-sizing:border-box;
  174. width:100%;
  175. }
  176. #u65327_text {
  177. border-width:0px;
  178. white-space:nowrap;
  179. text-transform:none;
  180. }
  181. #u65328_div {
  182. border-width:0px;
  183. position:absolute;
  184. left:0px;
  185. top:0px;
  186. width:142px;
  187. height:30px;
  188. background:inherit;
  189. background-color:rgba(255, 255, 255, 0);
  190. border:none;
  191. border-top:0px;
  192. border-right:0px;
  193. border-bottom:0px;
  194. border-radius:0px;
  195. border-top-left-radius:0px;
  196. border-bottom-left-radius:0px;
  197. -moz-box-shadow:none;
  198. -webkit-box-shadow:none;
  199. box-shadow:none;
  200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  201. font-weight:400;
  202. font-style:normal;
  203. font-size:14px;
  204. color:#1890FF;
  205. }
  206. #u65328 {
  207. border-width:0px;
  208. position:absolute;
  209. left:221px;
  210. top:332px;
  211. width:142px;
  212. height:30px;
  213. display:flex;
  214. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  215. font-weight:400;
  216. font-style:normal;
  217. font-size:14px;
  218. color:#1890FF;
  219. }
  220. #u65328 .text {
  221. position:absolute;
  222. align-self:center;
  223. padding:5px 10px 5px 0px;
  224. box-sizing:border-box;
  225. width:100%;
  226. }
  227. #u65328_text {
  228. border-width:0px;
  229. white-space:nowrap;
  230. text-transform:none;
  231. }
  232. #u65329_div {
  233. border-width:0px;
  234. position:absolute;
  235. left:0px;
  236. top:0px;
  237. width:81px;
  238. height:30px;
  239. background:inherit;
  240. background-color:rgba(255, 255, 255, 0);
  241. border:none;
  242. border-top:0px;
  243. border-right:0px;
  244. border-bottom:0px;
  245. border-radius:0px;
  246. border-top-left-radius:0px;
  247. border-bottom-left-radius:0px;
  248. -moz-box-shadow:none;
  249. -webkit-box-shadow:none;
  250. box-shadow:none;
  251. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  252. font-weight:400;
  253. font-style:normal;
  254. font-size:14px;
  255. color:#7F7F7F;
  256. }
  257. #u65329 {
  258. border-width:0px;
  259. position:absolute;
  260. left:460px;
  261. top:332px;
  262. width:81px;
  263. height:30px;
  264. display:flex;
  265. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  266. font-weight:400;
  267. font-style:normal;
  268. font-size:14px;
  269. color:#7F7F7F;
  270. }
  271. #u65329 .text {
  272. position:absolute;
  273. align-self:center;
  274. padding:5px 10px 5px 0px;
  275. box-sizing:border-box;
  276. width:100%;
  277. }
  278. #u65329_text {
  279. border-width:0px;
  280. white-space:nowrap;
  281. text-transform:none;
  282. }
  283. #u65330_div {
  284. border-width:0px;
  285. position:absolute;
  286. left:0px;
  287. top:0px;
  288. width:67px;
  289. height:30px;
  290. background:inherit;
  291. background-color:rgba(255, 255, 255, 0);
  292. border:none;
  293. border-top:0px;
  294. border-right:0px;
  295. border-bottom:0px;
  296. border-radius:0px;
  297. border-top-left-radius:0px;
  298. border-bottom-left-radius:0px;
  299. -moz-box-shadow:none;
  300. -webkit-box-shadow:none;
  301. box-shadow:none;
  302. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  303. font-weight:400;
  304. font-style:normal;
  305. font-size:14px;
  306. }
  307. #u65330 {
  308. border-width:0px;
  309. position:absolute;
  310. left:541px;
  311. top:332px;
  312. width:67px;
  313. height:30px;
  314. display:flex;
  315. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  316. font-weight:400;
  317. font-style:normal;
  318. font-size:14px;
  319. }
  320. #u65330 .text {
  321. position:absolute;
  322. align-self:center;
  323. padding:5px 10px 5px 0px;
  324. box-sizing:border-box;
  325. width:100%;
  326. }
  327. #u65330_text {
  328. border-width:0px;
  329. white-space:nowrap;
  330. text-transform:none;
  331. }
  332. #u65331_div {
  333. border-width:0px;
  334. position:absolute;
  335. left:0px;
  336. top:0px;
  337. width:81px;
  338. height:30px;
  339. background:inherit;
  340. background-color:rgba(255, 255, 255, 0);
  341. border:none;
  342. border-top:0px;
  343. border-right:0px;
  344. border-bottom:0px;
  345. border-radius:0px;
  346. border-top-left-radius:0px;
  347. border-bottom-left-radius:0px;
  348. -moz-box-shadow:none;
  349. -webkit-box-shadow:none;
  350. box-shadow:none;
  351. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  352. font-weight:400;
  353. font-style:normal;
  354. font-size:14px;
  355. color:#7F7F7F;
  356. }
  357. #u65331 {
  358. border-width:0px;
  359. position:absolute;
  360. left:757px;
  361. top:332px;
  362. width:81px;
  363. height:30px;
  364. display:flex;
  365. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  366. font-weight:400;
  367. font-style:normal;
  368. font-size:14px;
  369. color:#7F7F7F;
  370. }
  371. #u65331 .text {
  372. position:absolute;
  373. align-self:center;
  374. padding:5px 10px 5px 0px;
  375. box-sizing:border-box;
  376. width:100%;
  377. }
  378. #u65331_text {
  379. border-width:0px;
  380. white-space:nowrap;
  381. text-transform:none;
  382. }
  383. #u65332_div {
  384. border-width:0px;
  385. position:absolute;
  386. left:0px;
  387. top:0px;
  388. width:53px;
  389. height:30px;
  390. background:inherit;
  391. background-color:rgba(255, 255, 255, 0);
  392. border:none;
  393. border-top:0px;
  394. border-right:0px;
  395. border-bottom:0px;
  396. border-radius:0px;
  397. border-top-left-radius:0px;
  398. border-bottom-left-radius:0px;
  399. -moz-box-shadow:none;
  400. -webkit-box-shadow:none;
  401. box-shadow:none;
  402. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  403. font-weight:400;
  404. font-style:normal;
  405. font-size:14px;
  406. }
  407. #u65332 {
  408. border-width:0px;
  409. position:absolute;
  410. left:838px;
  411. top:332px;
  412. width:53px;
  413. height:30px;
  414. display:flex;
  415. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  416. font-weight:400;
  417. font-style:normal;
  418. font-size:14px;
  419. }
  420. #u65332 .text {
  421. position:absolute;
  422. align-self:center;
  423. padding:5px 10px 5px 0px;
  424. box-sizing:border-box;
  425. width:100%;
  426. }
  427. #u65332_text {
  428. border-width:0px;
  429. white-space:nowrap;
  430. text-transform:none;
  431. }
  432. #u65333_div {
  433. border-width:0px;
  434. position:absolute;
  435. left:0px;
  436. top:0px;
  437. width:81px;
  438. height:30px;
  439. background:inherit;
  440. background-color:rgba(255, 255, 255, 0);
  441. border:none;
  442. border-top:0px;
  443. border-right:0px;
  444. border-bottom:0px;
  445. border-radius:0px;
  446. border-top-left-radius:0px;
  447. border-bottom-left-radius:0px;
  448. -moz-box-shadow:none;
  449. -webkit-box-shadow:none;
  450. box-shadow:none;
  451. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  452. font-weight:400;
  453. font-style:normal;
  454. font-size:14px;
  455. color:#7F7F7F;
  456. }
  457. #u65333 {
  458. border-width:0px;
  459. position:absolute;
  460. left:140px;
  461. top:372px;
  462. width:81px;
  463. height:30px;
  464. display:flex;
  465. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  466. font-weight:400;
  467. font-style:normal;
  468. font-size:14px;
  469. color:#7F7F7F;
  470. }
  471. #u65333 .text {
  472. position:absolute;
  473. align-self:center;
  474. padding:5px 10px 5px 0px;
  475. box-sizing:border-box;
  476. width:100%;
  477. }
  478. #u65333_text {
  479. border-width:0px;
  480. white-space:nowrap;
  481. text-transform:none;
  482. }
  483. #u65334_div {
  484. border-width:0px;
  485. position:absolute;
  486. left:0px;
  487. top:0px;
  488. width:81px;
  489. height:30px;
  490. background:inherit;
  491. background-color:rgba(255, 255, 255, 0);
  492. border:none;
  493. border-top:0px;
  494. border-right:0px;
  495. border-bottom:0px;
  496. border-radius:0px;
  497. border-top-left-radius:0px;
  498. border-bottom-left-radius:0px;
  499. -moz-box-shadow:none;
  500. -webkit-box-shadow:none;
  501. box-shadow:none;
  502. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  503. font-weight:400;
  504. font-style:normal;
  505. font-size:14px;
  506. color:#7F7F7F;
  507. }
  508. #u65334 {
  509. border-width:0px;
  510. position:absolute;
  511. left:460px;
  512. top:372px;
  513. width:81px;
  514. height:30px;
  515. display:flex;
  516. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  517. font-weight:400;
  518. font-style:normal;
  519. font-size:14px;
  520. color:#7F7F7F;
  521. }
  522. #u65334 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:5px 10px 5px 0px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u65334_text {
  530. border-width:0px;
  531. white-space:nowrap;
  532. text-transform:none;
  533. }
  534. #u65335_div {
  535. border-width:0px;
  536. position:absolute;
  537. left:0px;
  538. top:0px;
  539. width:67px;
  540. height:30px;
  541. background:inherit;
  542. background-color:rgba(255, 255, 255, 0);
  543. border:none;
  544. border-top:0px;
  545. border-right:0px;
  546. border-bottom:0px;
  547. border-radius:0px;
  548. border-top-left-radius:0px;
  549. border-bottom-left-radius:0px;
  550. -moz-box-shadow:none;
  551. -webkit-box-shadow:none;
  552. box-shadow:none;
  553. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  554. font-weight:400;
  555. font-style:normal;
  556. font-size:14px;
  557. }
  558. #u65335 {
  559. border-width:0px;
  560. position:absolute;
  561. left:541px;
  562. top:372px;
  563. width:67px;
  564. height:30px;
  565. display:flex;
  566. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  567. font-weight:400;
  568. font-style:normal;
  569. font-size:14px;
  570. }
  571. #u65335 .text {
  572. position:absolute;
  573. align-self:center;
  574. padding:5px 10px 5px 0px;
  575. box-sizing:border-box;
  576. width:100%;
  577. }
  578. #u65335_text {
  579. border-width:0px;
  580. white-space:nowrap;
  581. text-transform:none;
  582. }
  583. #u65336_div {
  584. border-width:0px;
  585. position:absolute;
  586. left:0px;
  587. top:0px;
  588. width:67px;
  589. height:30px;
  590. background:inherit;
  591. background-color:rgba(255, 255, 255, 0);
  592. border:none;
  593. border-top:0px;
  594. border-right:0px;
  595. border-bottom:0px;
  596. border-radius:0px;
  597. border-top-left-radius:0px;
  598. border-bottom-left-radius:0px;
  599. -moz-box-shadow:none;
  600. -webkit-box-shadow:none;
  601. box-shadow:none;
  602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  603. font-weight:400;
  604. font-style:normal;
  605. font-size:14px;
  606. color:#7F7F7F;
  607. }
  608. #u65336 {
  609. border-width:0px;
  610. position:absolute;
  611. left:757px;
  612. top:372px;
  613. width:67px;
  614. height:30px;
  615. display:flex;
  616. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  617. font-weight:400;
  618. font-style:normal;
  619. font-size:14px;
  620. color:#7F7F7F;
  621. }
  622. #u65336 .text {
  623. position:absolute;
  624. align-self:center;
  625. padding:5px 10px 5px 0px;
  626. box-sizing:border-box;
  627. width:100%;
  628. }
  629. #u65336_text {
  630. border-width:0px;
  631. white-space:nowrap;
  632. text-transform:none;
  633. }
  634. #u65337_div {
  635. border-width:0px;
  636. position:absolute;
  637. left:0px;
  638. top:0px;
  639. width:85px;
  640. height:30px;
  641. background:inherit;
  642. background-color:rgba(255, 255, 255, 0);
  643. border:none;
  644. border-top:0px;
  645. border-right:0px;
  646. border-bottom:0px;
  647. border-radius:0px;
  648. border-top-left-radius:0px;
  649. border-bottom-left-radius:0px;
  650. -moz-box-shadow:none;
  651. -webkit-box-shadow:none;
  652. box-shadow:none;
  653. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  654. font-weight:400;
  655. font-style:normal;
  656. font-size:14px;
  657. }
  658. #u65337 {
  659. border-width:0px;
  660. position:absolute;
  661. left:838px;
  662. top:372px;
  663. width:85px;
  664. height:30px;
  665. display:flex;
  666. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  667. font-weight:400;
  668. font-style:normal;
  669. font-size:14px;
  670. }
  671. #u65337 .text {
  672. position:absolute;
  673. align-self:center;
  674. padding:5px 10px 5px 0px;
  675. box-sizing:border-box;
  676. width:100%;
  677. }
  678. #u65337_text {
  679. border-width:0px;
  680. white-space:nowrap;
  681. text-transform:none;
  682. }
  683. #u65338_div {
  684. border-width:0px;
  685. position:absolute;
  686. left:0px;
  687. top:0px;
  688. width:183px;
  689. height:30px;
  690. background:inherit;
  691. background-color:rgba(255, 255, 255, 0);
  692. border:none;
  693. border-top:0px;
  694. border-right:0px;
  695. border-bottom:0px;
  696. border-radius:0px;
  697. border-top-left-radius:0px;
  698. border-bottom-left-radius:0px;
  699. -moz-box-shadow:none;
  700. -webkit-box-shadow:none;
  701. box-shadow:none;
  702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  703. font-weight:400;
  704. font-style:normal;
  705. font-size:14px;
  706. }
  707. #u65338 {
  708. border-width:0px;
  709. position:absolute;
  710. left:221px;
  711. top:372px;
  712. width:183px;
  713. height:30px;
  714. display:flex;
  715. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  716. font-weight:400;
  717. font-style:normal;
  718. font-size:14px;
  719. }
  720. #u65338 .text {
  721. position:absolute;
  722. align-self:center;
  723. padding:5px 10px 5px 0px;
  724. box-sizing:border-box;
  725. width:100%;
  726. }
  727. #u65338_text {
  728. border-width:0px;
  729. white-space:nowrap;
  730. text-transform:none;
  731. }
  732. #u65339_div {
  733. border-width:0px;
  734. position:absolute;
  735. left:0px;
  736. top:0px;
  737. width:81px;
  738. height:30px;
  739. background:inherit;
  740. background-color:rgba(255, 255, 255, 0);
  741. border:none;
  742. border-top:0px;
  743. border-right:0px;
  744. border-bottom:0px;
  745. border-radius:0px;
  746. border-top-left-radius:0px;
  747. border-bottom-left-radius:0px;
  748. -moz-box-shadow:none;
  749. -webkit-box-shadow:none;
  750. box-shadow:none;
  751. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  752. font-weight:400;
  753. font-style:normal;
  754. font-size:14px;
  755. color:#7F7F7F;
  756. }
  757. #u65339 {
  758. border-width:0px;
  759. position:absolute;
  760. left:140px;
  761. top:412px;
  762. width:81px;
  763. height:30px;
  764. display:flex;
  765. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  766. font-weight:400;
  767. font-style:normal;
  768. font-size:14px;
  769. color:#7F7F7F;
  770. }
  771. #u65339 .text {
  772. position:absolute;
  773. align-self:center;
  774. padding:5px 10px 5px 0px;
  775. box-sizing:border-box;
  776. width:100%;
  777. }
  778. #u65339_text {
  779. border-width:0px;
  780. white-space:nowrap;
  781. text-transform:none;
  782. }
  783. #u65340_div {
  784. border-width:0px;
  785. position:absolute;
  786. left:0px;
  787. top:0px;
  788. width:126px;
  789. height:30px;
  790. background:inherit;
  791. background-color:rgba(255, 255, 255, 0);
  792. border:none;
  793. border-top:0px;
  794. border-right:0px;
  795. border-bottom:0px;
  796. border-radius:0px;
  797. border-top-left-radius:0px;
  798. border-bottom-left-radius:0px;
  799. -moz-box-shadow:none;
  800. -webkit-box-shadow:none;
  801. box-shadow:none;
  802. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  803. font-weight:400;
  804. font-style:normal;
  805. font-size:14px;
  806. }
  807. #u65340 {
  808. border-width:0px;
  809. position:absolute;
  810. left:221px;
  811. top:412px;
  812. width:126px;
  813. height:30px;
  814. display:flex;
  815. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  816. font-weight:400;
  817. font-style:normal;
  818. font-size:14px;
  819. }
  820. #u65340 .text {
  821. position:absolute;
  822. align-self:center;
  823. padding:5px 10px 5px 0px;
  824. box-sizing:border-box;
  825. width:100%;
  826. }
  827. #u65340_text {
  828. border-width:0px;
  829. white-space:nowrap;
  830. text-transform:none;
  831. }
  832. #u65341_div {
  833. border-width:0px;
  834. position:absolute;
  835. left:0px;
  836. top:0px;
  837. width:81px;
  838. height:30px;
  839. background:inherit;
  840. background-color:rgba(255, 255, 255, 0);
  841. border:none;
  842. border-top:0px;
  843. border-right:0px;
  844. border-bottom:0px;
  845. border-radius:0px;
  846. border-top-left-radius:0px;
  847. border-bottom-left-radius:0px;
  848. -moz-box-shadow:none;
  849. -webkit-box-shadow:none;
  850. box-shadow:none;
  851. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  852. font-weight:400;
  853. font-style:normal;
  854. font-size:14px;
  855. color:#7F7F7F;
  856. }
  857. #u65341 {
  858. border-width:0px;
  859. position:absolute;
  860. left:140px;
  861. top:452px;
  862. width:81px;
  863. height:30px;
  864. display:flex;
  865. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  866. font-weight:400;
  867. font-style:normal;
  868. font-size:14px;
  869. color:#7F7F7F;
  870. }
  871. #u65341 .text {
  872. position:absolute;
  873. align-self:center;
  874. padding:5px 10px 5px 0px;
  875. box-sizing:border-box;
  876. width:100%;
  877. }
  878. #u65341_text {
  879. border-width:0px;
  880. white-space:nowrap;
  881. text-transform:none;
  882. }
  883. #u65342_div {
  884. border-width:0px;
  885. position:absolute;
  886. left:0px;
  887. top:0px;
  888. width:263px;
  889. height:30px;
  890. background:inherit;
  891. background-color:rgba(255, 255, 255, 0);
  892. border:none;
  893. border-top:0px;
  894. border-right:0px;
  895. border-bottom:0px;
  896. border-radius:0px;
  897. border-top-left-radius:0px;
  898. border-bottom-left-radius:0px;
  899. -moz-box-shadow:none;
  900. -webkit-box-shadow:none;
  901. box-shadow:none;
  902. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  903. font-weight:400;
  904. font-style:normal;
  905. font-size:14px;
  906. }
  907. #u65342 {
  908. border-width:0px;
  909. position:absolute;
  910. left:221px;
  911. top:452px;
  912. width:263px;
  913. height:30px;
  914. display:flex;
  915. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  916. font-weight:400;
  917. font-style:normal;
  918. font-size:14px;
  919. }
  920. #u65342 .text {
  921. position:absolute;
  922. align-self:center;
  923. padding:5px 10px 5px 0px;
  924. box-sizing:border-box;
  925. width:100%;
  926. }
  927. #u65342_text {
  928. border-width:0px;
  929. white-space:nowrap;
  930. text-transform:none;
  931. }
  932. #u65343 {
  933. border-width:0px;
  934. position:absolute;
  935. left:0px;
  936. top:0px;
  937. width:0px;
  938. height:0px;
  939. }
  940. #u65344_div {
  941. border-width:0px;
  942. position:absolute;
  943. left:0px;
  944. top:0px;
  945. width:1000px;
  946. height:60px;
  947. background:inherit;
  948. background-color:rgba(255, 255, 255, 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:0px;
  954. -moz-box-shadow:none;
  955. -webkit-box-shadow:none;
  956. box-shadow:none;
  957. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  958. font-weight:400;
  959. font-style:normal;
  960. font-size:14px;
  961. color:#AAAAAA;
  962. text-align:center;
  963. line-height:30px;
  964. }
  965. #u65344 {
  966. border-width:0px;
  967. position:absolute;
  968. left:100px;
  969. top:1194px;
  970. width:1000px;
  971. height:60px;
  972. display:flex;
  973. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  974. font-weight:400;
  975. font-style:normal;
  976. font-size:14px;
  977. color:#AAAAAA;
  978. text-align:center;
  979. line-height:30px;
  980. }
  981. #u65344 .text {
  982. position:absolute;
  983. align-self:center;
  984. padding:5px 10px 5px 10px;
  985. box-sizing:border-box;
  986. width:100%;
  987. }
  988. #u65344_text {
  989. border-width:0px;
  990. word-wrap:break-word;
  991. text-transform:none;
  992. visibility:hidden;
  993. }
  994. #u65345_div {
  995. border-width:0px;
  996. position:absolute;
  997. left:0px;
  998. top:0px;
  999. width:80px;
  1000. height:30px;
  1001. background:inherit;
  1002. background-color:rgba(24, 144, 255, 1);
  1003. border:none;
  1004. border-radius:4px;
  1005. -moz-box-shadow:none;
  1006. -webkit-box-shadow:none;
  1007. box-shadow:none;
  1008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1009. font-weight:400;
  1010. font-style:normal;
  1011. font-size:14px;
  1012. color:#FFFFFF;
  1013. }
  1014. #u65345 {
  1015. border-width:0px;
  1016. position:absolute;
  1017. left:994px;
  1018. top:1209px;
  1019. width:80px;
  1020. height:30px;
  1021. display:flex;
  1022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1023. font-weight:400;
  1024. font-style:normal;
  1025. font-size:14px;
  1026. color:#FFFFFF;
  1027. }
  1028. #u65345 .text {
  1029. position:absolute;
  1030. align-self:center;
  1031. padding:2px 2px 2px 2px;
  1032. box-sizing:border-box;
  1033. width:100%;
  1034. }
  1035. #u65345_text {
  1036. border-width:0px;
  1037. word-wrap:break-word;
  1038. text-transform:none;
  1039. }
  1040. #u65346_div {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:80px;
  1046. height:30px;
  1047. background:inherit;
  1048. background-color:rgba(255, 255, 255, 1);
  1049. box-sizing:border-box;
  1050. border-width:1px;
  1051. border-style:solid;
  1052. border-color:rgba(170, 170, 170, 1);
  1053. border-radius:4px;
  1054. -moz-box-shadow:none;
  1055. -webkit-box-shadow:none;
  1056. box-shadow:none;
  1057. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1058. font-weight:400;
  1059. font-style:normal;
  1060. font-size:14px;
  1061. }
  1062. #u65346 {
  1063. border-width:0px;
  1064. position:absolute;
  1065. left:904px;
  1066. top:1209px;
  1067. width:80px;
  1068. height:30px;
  1069. display:flex;
  1070. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1071. font-weight:400;
  1072. font-style:normal;
  1073. font-size:14px;
  1074. }
  1075. #u65346 .text {
  1076. position:absolute;
  1077. align-self:center;
  1078. padding:2px 2px 2px 2px;
  1079. box-sizing:border-box;
  1080. width:100%;
  1081. }
  1082. #u65346_text {
  1083. border-width:0px;
  1084. word-wrap:break-word;
  1085. text-transform:none;
  1086. }
  1087. #u65347_div {
  1088. border-width:0px;
  1089. position:absolute;
  1090. left:0px;
  1091. top:0px;
  1092. width:80px;
  1093. height:30px;
  1094. background:inherit;
  1095. background-color:rgba(255, 255, 255, 1);
  1096. box-sizing:border-box;
  1097. border-width:1px;
  1098. border-style:solid;
  1099. border-color:rgba(170, 170, 170, 1);
  1100. border-radius:4px;
  1101. -moz-box-shadow:none;
  1102. -webkit-box-shadow:none;
  1103. box-shadow:none;
  1104. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1105. font-weight:400;
  1106. font-style:normal;
  1107. font-size:14px;
  1108. }
  1109. #u65347 {
  1110. border-width:0px;
  1111. position:absolute;
  1112. left:814px;
  1113. top:1209px;
  1114. width:80px;
  1115. height:30px;
  1116. display:flex;
  1117. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1118. font-weight:400;
  1119. font-style:normal;
  1120. font-size:14px;
  1121. }
  1122. #u65347 .text {
  1123. position:absolute;
  1124. align-self:center;
  1125. padding:2px 2px 2px 2px;
  1126. box-sizing:border-box;
  1127. width:100%;
  1128. }
  1129. #u65347_text {
  1130. border-width:0px;
  1131. word-wrap:break-word;
  1132. text-transform:none;
  1133. }
  1134. #u65348_img {
  1135. border-width:0px;
  1136. position:absolute;
  1137. left:0px;
  1138. top:0px;
  1139. width:942px;
  1140. height:2px;
  1141. }
  1142. #u65348 {
  1143. border-width:0px;
  1144. position:absolute;
  1145. left:140px;
  1146. top:500px;
  1147. width:941px;
  1148. height:1px;
  1149. display:flex;
  1150. }
  1151. #u65348 .text {
  1152. position:absolute;
  1153. align-self:center;
  1154. padding:2px 2px 2px 2px;
  1155. box-sizing:border-box;
  1156. width:100%;
  1157. }
  1158. #u65348_text {
  1159. border-width:0px;
  1160. word-wrap:break-word;
  1161. text-transform:none;
  1162. visibility:hidden;
  1163. }
  1164. #u65349_div {
  1165. border-width:0px;
  1166. position:absolute;
  1167. left:0px;
  1168. top:0px;
  1169. width:1000px;
  1170. height:200px;
  1171. background:inherit;
  1172. background-color:rgba(255, 255, 255, 1);
  1173. box-sizing:border-box;
  1174. border-width:1px;
  1175. border-style:solid;
  1176. border-color:rgba(215, 215, 215, 1);
  1177. border-radius:0px;
  1178. -moz-box-shadow:none;
  1179. -webkit-box-shadow:none;
  1180. box-shadow:none;
  1181. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1182. font-weight:400;
  1183. font-style:normal;
  1184. font-size:14px;
  1185. color:#AAAAAA;
  1186. text-align:center;
  1187. line-height:30px;
  1188. }
  1189. #u65349 {
  1190. border-width:0px;
  1191. position:absolute;
  1192. left:101px;
  1193. top:55px;
  1194. width:1000px;
  1195. height:200px;
  1196. display:flex;
  1197. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1198. font-weight:400;
  1199. font-style:normal;
  1200. font-size:14px;
  1201. color:#AAAAAA;
  1202. text-align:center;
  1203. line-height:30px;
  1204. }
  1205. #u65349 .text {
  1206. position:absolute;
  1207. align-self:center;
  1208. padding:5px 10px 5px 10px;
  1209. box-sizing:border-box;
  1210. width:100%;
  1211. }
  1212. #u65349_text {
  1213. border-width:0px;
  1214. word-wrap:break-word;
  1215. text-transform:none;
  1216. visibility:hidden;
  1217. }
  1218. #u65350_div {
  1219. border-width:0px;
  1220. position:absolute;
  1221. left:0px;
  1222. top:0px;
  1223. width:83px;
  1224. height:35px;
  1225. background:inherit;
  1226. background-color:rgba(255, 255, 255, 0);
  1227. border:none;
  1228. border-top:0px;
  1229. border-right:0px;
  1230. border-bottom:0px;
  1231. border-radius:0px;
  1232. border-top-left-radius:0px;
  1233. border-bottom-left-radius:0px;
  1234. -moz-box-shadow:none;
  1235. -webkit-box-shadow:none;
  1236. box-shadow:none;
  1237. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1238. font-weight:500;
  1239. font-style:normal;
  1240. font-size:18px;
  1241. }
  1242. #u65350 {
  1243. border-width:0px;
  1244. position:absolute;
  1245. left:121px;
  1246. top:73px;
  1247. width:83px;
  1248. height:35px;
  1249. display:flex;
  1250. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1251. font-weight:500;
  1252. font-style:normal;
  1253. font-size:18px;
  1254. }
  1255. #u65350 .text {
  1256. position:absolute;
  1257. align-self:center;
  1258. padding:5px 10px 5px 0px;
  1259. box-sizing:border-box;
  1260. width:100%;
  1261. }
  1262. #u65350_text {
  1263. border-width:0px;
  1264. white-space:nowrap;
  1265. text-transform:none;
  1266. }
  1267. #u65351_div {
  1268. border-width:0px;
  1269. position:absolute;
  1270. left:0px;
  1271. top:0px;
  1272. width:107px;
  1273. height:43px;
  1274. background:inherit;
  1275. background-color:rgba(255, 255, 255, 0);
  1276. border:none;
  1277. border-top:0px;
  1278. border-right:0px;
  1279. border-bottom:0px;
  1280. border-radius:0px;
  1281. border-top-left-radius:0px;
  1282. border-bottom-left-radius:0px;
  1283. -moz-box-shadow:none;
  1284. -webkit-box-shadow:none;
  1285. box-shadow:none;
  1286. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1287. font-weight:500;
  1288. font-style:normal;
  1289. font-size:24px;
  1290. }
  1291. #u65351 {
  1292. border-width:0px;
  1293. position:absolute;
  1294. left:131px;
  1295. top:124px;
  1296. width:107px;
  1297. height:43px;
  1298. display:flex;
  1299. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1300. font-weight:500;
  1301. font-style:normal;
  1302. font-size:24px;
  1303. }
  1304. #u65351 .text {
  1305. position:absolute;
  1306. align-self:center;
  1307. padding:5px 10px 5px 0px;
  1308. box-sizing:border-box;
  1309. width:100%;
  1310. }
  1311. #u65351_text {
  1312. border-width:0px;
  1313. white-space:nowrap;
  1314. text-transform:none;
  1315. }
  1316. #u65352_img {
  1317. border-width:0px;
  1318. position:absolute;
  1319. left:0px;
  1320. top:0px;
  1321. width:108px;
  1322. height:108px;
  1323. }
  1324. #u65352 {
  1325. border-width:0px;
  1326. position:absolute;
  1327. left:951px;
  1328. top:125px;
  1329. width:108px;
  1330. height:108px;
  1331. display:flex;
  1332. -webkit-transform:rotate(315deg);
  1333. -moz-transform:rotate(315deg);
  1334. -ms-transform:rotate(315deg);
  1335. transform:rotate(315deg);
  1336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1337. font-weight:400;
  1338. font-style:normal;
  1339. font-size:28px;
  1340. color:#F59A23;
  1341. }
  1342. #u65352 .text {
  1343. position:absolute;
  1344. align-self:center;
  1345. padding:2px 2px 2px 2px;
  1346. box-sizing:border-box;
  1347. width:100%;
  1348. }
  1349. #u65352_text {
  1350. border-width:0px;
  1351. word-wrap:break-word;
  1352. text-transform:none;
  1353. }
  1354. #u65353_div {
  1355. border-width:0px;
  1356. position:absolute;
  1357. left:0px;
  1358. top:0px;
  1359. width:325px;
  1360. height:60px;
  1361. background:inherit;
  1362. background-color:rgba(255, 255, 255, 0);
  1363. border:none;
  1364. border-left:0px;
  1365. border-top:0px;
  1366. border-right:0px;
  1367. border-radius:0px;
  1368. border-bottom-right-radius:0px;
  1369. border-bottom-left-radius:0px;
  1370. -moz-box-shadow:none;
  1371. -webkit-box-shadow:none;
  1372. box-shadow:none;
  1373. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1374. font-weight:400;
  1375. font-style:normal;
  1376. font-size:14px;
  1377. line-height:30px;
  1378. }
  1379. #u65353 {
  1380. border-width:0px;
  1381. position:absolute;
  1382. left:131px;
  1383. top:179px;
  1384. width:325px;
  1385. height:60px;
  1386. display:flex;
  1387. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1388. font-weight:400;
  1389. font-style:normal;
  1390. font-size:14px;
  1391. line-height:30px;
  1392. }
  1393. #u65353 .text {
  1394. position:absolute;
  1395. align-self:flex-start;
  1396. padding:0px 0px 0px 0px;
  1397. box-sizing:border-box;
  1398. width:100%;
  1399. }
  1400. #u65353_text {
  1401. border-width:0px;
  1402. word-wrap:break-word;
  1403. text-transform:none;
  1404. }
  1405. #u65354_img {
  1406. border-width:0px;
  1407. position:absolute;
  1408. left:0px;
  1409. top:0px;
  1410. width:17px;
  1411. height:17px;
  1412. }
  1413. #u65354 {
  1414. border-width:0px;
  1415. position:absolute;
  1416. left:1073px;
  1417. top:77px;
  1418. width:17px;
  1419. height:17px;
  1420. display:flex;
  1421. }
  1422. #u65354 .text {
  1423. position:absolute;
  1424. align-self:center;
  1425. padding:2px 2px 2px 2px;
  1426. box-sizing:border-box;
  1427. width:100%;
  1428. }
  1429. #u65354_text {
  1430. border-width:0px;
  1431. word-wrap:break-word;
  1432. text-transform:none;
  1433. visibility:hidden;
  1434. }
  1435. #u65355_div {
  1436. border-width:0px;
  1437. position:absolute;
  1438. left:0px;
  1439. top:0px;
  1440. width:78px;
  1441. height:40px;
  1442. background:inherit;
  1443. background-color:rgba(255, 255, 255, 0);
  1444. border:none;
  1445. border-top:0px;
  1446. border-right:0px;
  1447. border-bottom:0px;
  1448. border-radius:0px;
  1449. border-top-left-radius:0px;
  1450. border-bottom-left-radius:0px;
  1451. -moz-box-shadow:none;
  1452. -webkit-box-shadow:none;
  1453. box-shadow:none;
  1454. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1455. font-weight:400;
  1456. font-style:normal;
  1457. font-size:14px;
  1458. color:#7F7F7F;
  1459. line-height:40px;
  1460. }
  1461. #u65355 {
  1462. border-width:0px;
  1463. position:absolute;
  1464. left:140px;
  1465. top:693px;
  1466. width:78px;
  1467. height:40px;
  1468. display:flex;
  1469. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1470. font-weight:400;
  1471. font-style:normal;
  1472. font-size:14px;
  1473. color:#7F7F7F;
  1474. line-height:40px;
  1475. }
  1476. #u65355 .text {
  1477. position:absolute;
  1478. align-self:center;
  1479. padding:0px 0px 0px 0px;
  1480. box-sizing:border-box;
  1481. width:100%;
  1482. }
  1483. #u65355_text {
  1484. border-width:0px;
  1485. white-space:nowrap;
  1486. text-transform:none;
  1487. }
  1488. #u65356_img {
  1489. border-width:0px;
  1490. position:absolute;
  1491. left:0px;
  1492. top:0px;
  1493. width:161px;
  1494. height:107px;
  1495. }
  1496. #u65356 {
  1497. border-width:0px;
  1498. position:absolute;
  1499. left:219px;
  1500. top:693px;
  1501. width:161px;
  1502. height:107px;
  1503. display:flex;
  1504. }
  1505. #u65356 .text {
  1506. position:absolute;
  1507. align-self:center;
  1508. padding:0px 0px 0px 0px;
  1509. box-sizing:border-box;
  1510. width:100%;
  1511. }
  1512. #u65356_text {
  1513. border-width:0px;
  1514. word-wrap:break-word;
  1515. text-transform:none;
  1516. }
  1517. #u65357_div {
  1518. border-width:0px;
  1519. position:absolute;
  1520. left:0px;
  1521. top:0px;
  1522. width:57px;
  1523. height:40px;
  1524. background:inherit;
  1525. background-color:rgba(255, 255, 255, 0);
  1526. border:none;
  1527. border-top:0px;
  1528. border-right:0px;
  1529. border-bottom:0px;
  1530. border-radius:0px;
  1531. border-top-left-radius:0px;
  1532. border-bottom-left-radius:0px;
  1533. -moz-box-shadow:none;
  1534. -webkit-box-shadow:none;
  1535. box-shadow:none;
  1536. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1537. font-weight:400;
  1538. font-style:normal;
  1539. font-size:14px;
  1540. color:#1890FF;
  1541. line-height:40px;
  1542. }
  1543. #u65357 {
  1544. border-width:0px;
  1545. position:absolute;
  1546. left:646px;
  1547. top:603px;
  1548. width:57px;
  1549. height:40px;
  1550. display:flex;
  1551. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1552. font-weight:400;
  1553. font-style:normal;
  1554. font-size:14px;
  1555. color:#1890FF;
  1556. line-height:40px;
  1557. }
  1558. #u65357 .text {
  1559. position:absolute;
  1560. align-self:center;
  1561. padding:0px 0px 0px 0px;
  1562. box-sizing:border-box;
  1563. width:100%;
  1564. }
  1565. #u65357_text {
  1566. border-width:0px;
  1567. white-space:nowrap;
  1568. text-transform:none;
  1569. }
  1570. #u65358_div {
  1571. border-width:0px;
  1572. position:absolute;
  1573. left:0px;
  1574. top:0px;
  1575. width:80px;
  1576. height:40px;
  1577. background:inherit;
  1578. background-color:rgba(255, 255, 255, 0);
  1579. border:none;
  1580. border-top:0px;
  1581. border-right:0px;
  1582. border-bottom:0px;
  1583. border-radius:0px;
  1584. border-top-left-radius:0px;
  1585. border-bottom-left-radius:0px;
  1586. -moz-box-shadow:none;
  1587. -webkit-box-shadow:none;
  1588. box-shadow:none;
  1589. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1590. font-weight:400;
  1591. font-style:normal;
  1592. font-size:14px;
  1593. color:#7F7F7F;
  1594. line-height:40px;
  1595. }
  1596. #u65358 {
  1597. border-width:0px;
  1598. position:absolute;
  1599. left:460px;
  1600. top:643px;
  1601. width:80px;
  1602. height:40px;
  1603. display:flex;
  1604. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1605. font-weight:400;
  1606. font-style:normal;
  1607. font-size:14px;
  1608. color:#7F7F7F;
  1609. line-height:40px;
  1610. }
  1611. #u65358 .text {
  1612. position:absolute;
  1613. align-self:center;
  1614. padding:0px 0px 0px 0px;
  1615. box-sizing:border-box;
  1616. width:100%;
  1617. }
  1618. #u65358_text {
  1619. border-width:0px;
  1620. word-wrap:break-word;
  1621. text-transform:none;
  1622. }
  1623. #u65359_div {
  1624. border-width:0px;
  1625. position:absolute;
  1626. left:0px;
  1627. top:0px;
  1628. width:113px;
  1629. height:40px;
  1630. background:inherit;
  1631. background-color:rgba(255, 255, 255, 0);
  1632. border:none;
  1633. border-top:0px;
  1634. border-right:0px;
  1635. border-bottom:0px;
  1636. border-radius:0px;
  1637. border-top-left-radius:0px;
  1638. border-bottom-left-radius:0px;
  1639. -moz-box-shadow:none;
  1640. -webkit-box-shadow:none;
  1641. box-shadow:none;
  1642. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1643. font-weight:400;
  1644. font-style:normal;
  1645. font-size:14px;
  1646. line-height:40px;
  1647. }
  1648. #u65359 {
  1649. border-width:0px;
  1650. position:absolute;
  1651. left:540px;
  1652. top:643px;
  1653. width:113px;
  1654. height:40px;
  1655. display:flex;
  1656. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1657. font-weight:400;
  1658. font-style:normal;
  1659. font-size:14px;
  1660. line-height:40px;
  1661. }
  1662. #u65359 .text {
  1663. position:absolute;
  1664. align-self:center;
  1665. padding:0px 0px 0px 0px;
  1666. box-sizing:border-box;
  1667. width:100%;
  1668. }
  1669. #u65359_text {
  1670. border-width:0px;
  1671. white-space:nowrap;
  1672. text-transform:none;
  1673. }
  1674. #u65360_div {
  1675. border-width:0px;
  1676. position:absolute;
  1677. left:0px;
  1678. top:0px;
  1679. width:73px;
  1680. height:40px;
  1681. background:inherit;
  1682. background-color:rgba(255, 255, 255, 0);
  1683. border:none;
  1684. border-left:0px;
  1685. border-top:0px;
  1686. border-right:0px;
  1687. border-radius:0px;
  1688. border-bottom-right-radius:0px;
  1689. border-bottom-left-radius:0px;
  1690. -moz-box-shadow:none;
  1691. -webkit-box-shadow:none;
  1692. box-shadow:none;
  1693. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1694. font-weight:400;
  1695. font-style:normal;
  1696. font-size:18px;
  1697. }
  1698. #u65360 {
  1699. border-width:0px;
  1700. position:absolute;
  1701. left:140px;
  1702. top:523px;
  1703. width:73px;
  1704. height:40px;
  1705. display:flex;
  1706. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1707. font-weight:400;
  1708. font-style:normal;
  1709. font-size:18px;
  1710. }
  1711. #u65360 .text {
  1712. position:absolute;
  1713. align-self:center;
  1714. padding:0px 0px 0px 0px;
  1715. box-sizing:border-box;
  1716. width:100%;
  1717. }
  1718. #u65360_text {
  1719. border-width:0px;
  1720. white-space:nowrap;
  1721. text-transform:none;
  1722. }
  1723. #u65361_div {
  1724. border-width:0px;
  1725. position:absolute;
  1726. left:0px;
  1727. top:0px;
  1728. width:80px;
  1729. height:40px;
  1730. background:inherit;
  1731. background-color:rgba(255, 255, 255, 0);
  1732. border:none;
  1733. border-top:0px;
  1734. border-right:0px;
  1735. border-bottom:0px;
  1736. border-radius:0px;
  1737. border-top-left-radius:0px;
  1738. border-bottom-left-radius:0px;
  1739. -moz-box-shadow:none;
  1740. -webkit-box-shadow:none;
  1741. box-shadow:none;
  1742. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1743. font-weight:400;
  1744. font-style:normal;
  1745. font-size:14px;
  1746. color:#7F7F7F;
  1747. line-height:40px;
  1748. }
  1749. #u65361 {
  1750. border-width:0px;
  1751. position:absolute;
  1752. left:140px;
  1753. top:563px;
  1754. width:80px;
  1755. height:40px;
  1756. display:flex;
  1757. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1758. font-weight:400;
  1759. font-style:normal;
  1760. font-size:14px;
  1761. color:#7F7F7F;
  1762. line-height:40px;
  1763. }
  1764. #u65361 .text {
  1765. position:absolute;
  1766. align-self:center;
  1767. padding:0px 0px 0px 0px;
  1768. box-sizing:border-box;
  1769. width:100%;
  1770. }
  1771. #u65361_text {
  1772. border-width:0px;
  1773. word-wrap:break-word;
  1774. text-transform:none;
  1775. }
  1776. #u65362_div {
  1777. border-width:0px;
  1778. position:absolute;
  1779. left:0px;
  1780. top:0px;
  1781. width:160px;
  1782. height:40px;
  1783. background:inherit;
  1784. background-color:rgba(255, 255, 255, 0);
  1785. border:none;
  1786. border-top:0px;
  1787. border-right:0px;
  1788. border-bottom:0px;
  1789. border-radius:0px;
  1790. border-top-left-radius:0px;
  1791. border-bottom-left-radius:0px;
  1792. -moz-box-shadow:none;
  1793. -webkit-box-shadow:none;
  1794. box-shadow:none;
  1795. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1796. font-weight:400;
  1797. font-style:normal;
  1798. font-size:14px;
  1799. line-height:40px;
  1800. }
  1801. #u65362 {
  1802. border-width:0px;
  1803. position:absolute;
  1804. left:220px;
  1805. top:563px;
  1806. width:160px;
  1807. height:40px;
  1808. display:flex;
  1809. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1810. font-weight:400;
  1811. font-style:normal;
  1812. font-size:14px;
  1813. line-height:40px;
  1814. }
  1815. #u65362 .text {
  1816. position:absolute;
  1817. align-self:center;
  1818. padding:0px 0px 0px 0px;
  1819. box-sizing:border-box;
  1820. width:100%;
  1821. }
  1822. #u65362_text {
  1823. border-width:0px;
  1824. word-wrap:break-word;
  1825. text-transform:none;
  1826. }
  1827. #u65363_div {
  1828. border-width:0px;
  1829. position:absolute;
  1830. left:0px;
  1831. top:0px;
  1832. width:80px;
  1833. height:40px;
  1834. background:inherit;
  1835. background-color:rgba(255, 255, 255, 0);
  1836. border:none;
  1837. border-top:0px;
  1838. border-right:0px;
  1839. border-bottom:0px;
  1840. border-radius:0px;
  1841. border-top-left-radius:0px;
  1842. border-bottom-left-radius:0px;
  1843. -moz-box-shadow:none;
  1844. -webkit-box-shadow:none;
  1845. box-shadow:none;
  1846. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1847. font-weight:400;
  1848. font-style:normal;
  1849. font-size:14px;
  1850. color:#7F7F7F;
  1851. line-height:40px;
  1852. }
  1853. #u65363 {
  1854. border-width:0px;
  1855. position:absolute;
  1856. left:460px;
  1857. top:563px;
  1858. width:80px;
  1859. height:40px;
  1860. display:flex;
  1861. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1862. font-weight:400;
  1863. font-style:normal;
  1864. font-size:14px;
  1865. color:#7F7F7F;
  1866. line-height:40px;
  1867. }
  1868. #u65363 .text {
  1869. position:absolute;
  1870. align-self:center;
  1871. padding:0px 0px 0px 0px;
  1872. box-sizing:border-box;
  1873. width:100%;
  1874. }
  1875. #u65363_text {
  1876. border-width:0px;
  1877. word-wrap:break-word;
  1878. text-transform:none;
  1879. }
  1880. #u65364_div {
  1881. border-width:0px;
  1882. position:absolute;
  1883. left:0px;
  1884. top:0px;
  1885. width:160px;
  1886. height:40px;
  1887. background:inherit;
  1888. background-color:rgba(255, 255, 255, 0);
  1889. border:none;
  1890. border-top:0px;
  1891. border-right:0px;
  1892. border-bottom:0px;
  1893. border-radius:0px;
  1894. border-top-left-radius:0px;
  1895. border-bottom-left-radius:0px;
  1896. -moz-box-shadow:none;
  1897. -webkit-box-shadow:none;
  1898. box-shadow:none;
  1899. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1900. font-weight:400;
  1901. font-style:normal;
  1902. font-size:14px;
  1903. line-height:40px;
  1904. }
  1905. #u65364 {
  1906. border-width:0px;
  1907. position:absolute;
  1908. left:540px;
  1909. top:563px;
  1910. width:160px;
  1911. height:40px;
  1912. display:flex;
  1913. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1914. font-weight:400;
  1915. font-style:normal;
  1916. font-size:14px;
  1917. line-height:40px;
  1918. }
  1919. #u65364 .text {
  1920. position:absolute;
  1921. align-self:center;
  1922. padding:0px 0px 0px 0px;
  1923. box-sizing:border-box;
  1924. width:100%;
  1925. }
  1926. #u65364_text {
  1927. border-width:0px;
  1928. word-wrap:break-word;
  1929. text-transform:none;
  1930. }
  1931. #u65365_div {
  1932. border-width:0px;
  1933. position:absolute;
  1934. left:0px;
  1935. top:0px;
  1936. width:80px;
  1937. height:40px;
  1938. background:inherit;
  1939. background-color:rgba(255, 255, 255, 0);
  1940. border:none;
  1941. border-top:0px;
  1942. border-right:0px;
  1943. border-bottom:0px;
  1944. border-radius:0px;
  1945. border-top-left-radius:0px;
  1946. border-bottom-left-radius:0px;
  1947. -moz-box-shadow:none;
  1948. -webkit-box-shadow:none;
  1949. box-shadow:none;
  1950. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1951. font-weight:400;
  1952. font-style:normal;
  1953. font-size:14px;
  1954. color:#7F7F7F;
  1955. line-height:40px;
  1956. }
  1957. #u65365 {
  1958. border-width:0px;
  1959. position:absolute;
  1960. left:780px;
  1961. top:563px;
  1962. width:80px;
  1963. height:40px;
  1964. display:flex;
  1965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1966. font-weight:400;
  1967. font-style:normal;
  1968. font-size:14px;
  1969. color:#7F7F7F;
  1970. line-height:40px;
  1971. }
  1972. #u65365 .text {
  1973. position:absolute;
  1974. align-self:center;
  1975. padding:0px 0px 0px 0px;
  1976. box-sizing:border-box;
  1977. width:100%;
  1978. }
  1979. #u65365_text {
  1980. border-width:0px;
  1981. word-wrap:break-word;
  1982. text-transform:none;
  1983. }
  1984. #u65366_div {
  1985. border-width:0px;
  1986. position:absolute;
  1987. left:0px;
  1988. top:0px;
  1989. width:160px;
  1990. height:40px;
  1991. background:inherit;
  1992. background-color:rgba(255, 255, 255, 0);
  1993. border:none;
  1994. border-top:0px;
  1995. border-right:0px;
  1996. border-bottom:0px;
  1997. border-radius:0px;
  1998. border-top-left-radius:0px;
  1999. border-bottom-left-radius:0px;
  2000. -moz-box-shadow:none;
  2001. -webkit-box-shadow:none;
  2002. box-shadow:none;
  2003. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2004. font-weight:400;
  2005. font-style:normal;
  2006. font-size:14px;
  2007. line-height:40px;
  2008. }
  2009. #u65366 {
  2010. border-width:0px;
  2011. position:absolute;
  2012. left:860px;
  2013. top:563px;
  2014. width:160px;
  2015. height:40px;
  2016. display:flex;
  2017. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2018. font-weight:400;
  2019. font-style:normal;
  2020. font-size:14px;
  2021. line-height:40px;
  2022. }
  2023. #u65366 .text {
  2024. position:absolute;
  2025. align-self:center;
  2026. padding:0px 0px 0px 0px;
  2027. box-sizing:border-box;
  2028. width:100%;
  2029. }
  2030. #u65366_text {
  2031. border-width:0px;
  2032. word-wrap:break-word;
  2033. text-transform:none;
  2034. }
  2035. #u65367_div {
  2036. border-width:0px;
  2037. position:absolute;
  2038. left:0px;
  2039. top:0px;
  2040. width:80px;
  2041. height:40px;
  2042. background:inherit;
  2043. background-color:rgba(255, 255, 255, 0);
  2044. border:none;
  2045. border-top:0px;
  2046. border-right:0px;
  2047. border-bottom:0px;
  2048. border-radius:0px;
  2049. border-top-left-radius:0px;
  2050. border-bottom-left-radius:0px;
  2051. -moz-box-shadow:none;
  2052. -webkit-box-shadow:none;
  2053. box-shadow:none;
  2054. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2055. font-weight:400;
  2056. font-style:normal;
  2057. font-size:14px;
  2058. color:#7F7F7F;
  2059. line-height:40px;
  2060. }
  2061. #u65367 {
  2062. border-width:0px;
  2063. position:absolute;
  2064. left:460px;
  2065. top:603px;
  2066. width:80px;
  2067. height:40px;
  2068. display:flex;
  2069. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2070. font-weight:400;
  2071. font-style:normal;
  2072. font-size:14px;
  2073. color:#7F7F7F;
  2074. line-height:40px;
  2075. }
  2076. #u65367 .text {
  2077. position:absolute;
  2078. align-self:center;
  2079. padding:0px 0px 0px 0px;
  2080. box-sizing:border-box;
  2081. width:100%;
  2082. }
  2083. #u65367_text {
  2084. border-width:0px;
  2085. word-wrap:break-word;
  2086. text-transform:none;
  2087. }
  2088. #u65368_div {
  2089. border-width:0px;
  2090. position:absolute;
  2091. left:0px;
  2092. top:0px;
  2093. width:160px;
  2094. height:40px;
  2095. background:inherit;
  2096. background-color:rgba(255, 255, 255, 0);
  2097. border:none;
  2098. border-top:0px;
  2099. border-right:0px;
  2100. border-bottom:0px;
  2101. border-radius:0px;
  2102. border-top-left-radius:0px;
  2103. border-bottom-left-radius:0px;
  2104. -moz-box-shadow:none;
  2105. -webkit-box-shadow:none;
  2106. box-shadow:none;
  2107. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2108. font-weight:400;
  2109. font-style:normal;
  2110. font-size:14px;
  2111. line-height:40px;
  2112. }
  2113. #u65368 {
  2114. border-width:0px;
  2115. position:absolute;
  2116. left:540px;
  2117. top:603px;
  2118. width:160px;
  2119. height:40px;
  2120. display:flex;
  2121. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2122. font-weight:400;
  2123. font-style:normal;
  2124. font-size:14px;
  2125. line-height:40px;
  2126. }
  2127. #u65368 .text {
  2128. position:absolute;
  2129. align-self:center;
  2130. padding:0px 0px 0px 0px;
  2131. box-sizing:border-box;
  2132. width:100%;
  2133. }
  2134. #u65368_text {
  2135. border-width:0px;
  2136. word-wrap:break-word;
  2137. text-transform:none;
  2138. }
  2139. #u65369_div {
  2140. border-width:0px;
  2141. position:absolute;
  2142. left:0px;
  2143. top:0px;
  2144. width:80px;
  2145. height:40px;
  2146. background:inherit;
  2147. background-color:rgba(255, 255, 255, 0);
  2148. border:none;
  2149. border-top:0px;
  2150. border-right:0px;
  2151. border-bottom:0px;
  2152. border-radius:0px;
  2153. border-top-left-radius:0px;
  2154. border-bottom-left-radius:0px;
  2155. -moz-box-shadow:none;
  2156. -webkit-box-shadow:none;
  2157. box-shadow:none;
  2158. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2159. font-weight:400;
  2160. font-style:normal;
  2161. font-size:14px;
  2162. color:#7F7F7F;
  2163. line-height:40px;
  2164. }
  2165. #u65369 {
  2166. border-width:0px;
  2167. position:absolute;
  2168. left:780px;
  2169. top:603px;
  2170. width:80px;
  2171. height:40px;
  2172. display:flex;
  2173. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2174. font-weight:400;
  2175. font-style:normal;
  2176. font-size:14px;
  2177. color:#7F7F7F;
  2178. line-height:40px;
  2179. }
  2180. #u65369 .text {
  2181. position:absolute;
  2182. align-self:center;
  2183. padding:0px 0px 0px 0px;
  2184. box-sizing:border-box;
  2185. width:100%;
  2186. }
  2187. #u65369_text {
  2188. border-width:0px;
  2189. word-wrap:break-word;
  2190. text-transform:none;
  2191. }
  2192. #u65370_div {
  2193. border-width:0px;
  2194. position:absolute;
  2195. left:0px;
  2196. top:0px;
  2197. width:160px;
  2198. height:40px;
  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. line-height:40px;
  2216. }
  2217. #u65370 {
  2218. border-width:0px;
  2219. position:absolute;
  2220. left:860px;
  2221. top:603px;
  2222. width:160px;
  2223. height:40px;
  2224. display:flex;
  2225. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2226. font-weight:400;
  2227. font-style:normal;
  2228. font-size:14px;
  2229. line-height:40px;
  2230. }
  2231. #u65370 .text {
  2232. position:absolute;
  2233. align-self:center;
  2234. padding:0px 0px 0px 0px;
  2235. box-sizing:border-box;
  2236. width:100%;
  2237. }
  2238. #u65370_text {
  2239. border-width:0px;
  2240. word-wrap:break-word;
  2241. text-transform:none;
  2242. }
  2243. #u65371_div {
  2244. border-width:0px;
  2245. position:absolute;
  2246. left:0px;
  2247. top:0px;
  2248. width:71px;
  2249. height:40px;
  2250. background:inherit;
  2251. background-color:rgba(255, 255, 255, 0);
  2252. border:none;
  2253. border-top:0px;
  2254. border-right:0px;
  2255. border-bottom:0px;
  2256. border-radius:0px;
  2257. border-top-left-radius:0px;
  2258. border-bottom-left-radius:0px;
  2259. -moz-box-shadow:none;
  2260. -webkit-box-shadow:none;
  2261. box-shadow:none;
  2262. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2263. font-weight:400;
  2264. font-style:normal;
  2265. font-size:14px;
  2266. color:#7F7F7F;
  2267. line-height:40px;
  2268. }
  2269. #u65371 {
  2270. border-width:0px;
  2271. position:absolute;
  2272. left:140px;
  2273. top:643px;
  2274. width:71px;
  2275. height:40px;
  2276. display:flex;
  2277. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2278. font-weight:400;
  2279. font-style:normal;
  2280. font-size:14px;
  2281. color:#7F7F7F;
  2282. line-height:40px;
  2283. }
  2284. #u65371 .text {
  2285. position:absolute;
  2286. align-self:center;
  2287. padding:0px 0px 0px 0px;
  2288. box-sizing:border-box;
  2289. width:100%;
  2290. }
  2291. #u65371_text {
  2292. border-width:0px;
  2293. white-space:nowrap;
  2294. text-transform:none;
  2295. }
  2296. #u65372_div {
  2297. border-width:0px;
  2298. position:absolute;
  2299. left:0px;
  2300. top:0px;
  2301. width:160px;
  2302. height:40px;
  2303. background:inherit;
  2304. background-color:rgba(255, 255, 255, 0);
  2305. border:none;
  2306. border-top:0px;
  2307. border-right:0px;
  2308. border-bottom:0px;
  2309. border-radius:0px;
  2310. border-top-left-radius:0px;
  2311. border-bottom-left-radius:0px;
  2312. -moz-box-shadow:none;
  2313. -webkit-box-shadow:none;
  2314. box-shadow:none;
  2315. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2316. font-weight:400;
  2317. font-style:normal;
  2318. font-size:14px;
  2319. line-height:40px;
  2320. }
  2321. #u65372 {
  2322. border-width:0px;
  2323. position:absolute;
  2324. left:220px;
  2325. top:643px;
  2326. width:160px;
  2327. height:40px;
  2328. display:flex;
  2329. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2330. font-weight:400;
  2331. font-style:normal;
  2332. font-size:14px;
  2333. line-height:40px;
  2334. }
  2335. #u65372 .text {
  2336. position:absolute;
  2337. align-self:center;
  2338. padding:0px 0px 0px 0px;
  2339. box-sizing:border-box;
  2340. width:100%;
  2341. }
  2342. #u65372_text {
  2343. border-width:0px;
  2344. word-wrap:break-word;
  2345. text-transform:none;
  2346. }
  2347. #u65373_div {
  2348. border-width:0px;
  2349. position:absolute;
  2350. left:0px;
  2351. top:0px;
  2352. width:80px;
  2353. height:40px;
  2354. background:inherit;
  2355. background-color:rgba(255, 255, 255, 0);
  2356. border:none;
  2357. border-top:0px;
  2358. border-right:0px;
  2359. border-bottom:0px;
  2360. border-radius:0px;
  2361. border-top-left-radius:0px;
  2362. border-bottom-left-radius:0px;
  2363. -moz-box-shadow:none;
  2364. -webkit-box-shadow:none;
  2365. box-shadow:none;
  2366. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2367. font-weight:400;
  2368. font-style:normal;
  2369. font-size:14px;
  2370. color:#7F7F7F;
  2371. line-height:40px;
  2372. }
  2373. #u65373 {
  2374. border-width:0px;
  2375. position:absolute;
  2376. left:140px;
  2377. top:603px;
  2378. width:80px;
  2379. height:40px;
  2380. display:flex;
  2381. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2382. font-weight:400;
  2383. font-style:normal;
  2384. font-size:14px;
  2385. color:#7F7F7F;
  2386. line-height:40px;
  2387. }
  2388. #u65373 .text {
  2389. position:absolute;
  2390. align-self:center;
  2391. padding:0px 0px 0px 0px;
  2392. box-sizing:border-box;
  2393. width:100%;
  2394. }
  2395. #u65373_text {
  2396. border-width:0px;
  2397. word-wrap:break-word;
  2398. text-transform:none;
  2399. }
  2400. #u65374_div {
  2401. border-width:0px;
  2402. position:absolute;
  2403. left:0px;
  2404. top:0px;
  2405. width:192px;
  2406. height:40px;
  2407. background:inherit;
  2408. background-color:rgba(255, 255, 255, 0);
  2409. border:none;
  2410. border-top:0px;
  2411. border-right:0px;
  2412. border-bottom:0px;
  2413. border-radius:0px;
  2414. border-top-left-radius:0px;
  2415. border-bottom-left-radius:0px;
  2416. -moz-box-shadow:none;
  2417. -webkit-box-shadow:none;
  2418. box-shadow:none;
  2419. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2420. font-weight:400;
  2421. font-style:normal;
  2422. font-size:14px;
  2423. line-height:40px;
  2424. }
  2425. #u65374 {
  2426. border-width:0px;
  2427. position:absolute;
  2428. left:220px;
  2429. top:603px;
  2430. width:192px;
  2431. height:40px;
  2432. display:flex;
  2433. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2434. font-weight:400;
  2435. font-style:normal;
  2436. font-size:14px;
  2437. line-height:40px;
  2438. }
  2439. #u65374 .text {
  2440. position:absolute;
  2441. align-self:center;
  2442. padding:0px 0px 0px 0px;
  2443. box-sizing:border-box;
  2444. width:100%;
  2445. }
  2446. #u65374_text {
  2447. border-width:0px;
  2448. white-space:nowrap;
  2449. text-transform:none;
  2450. }
  2451. #u65375_div {
  2452. border-width:0px;
  2453. position:absolute;
  2454. left:0px;
  2455. top:0px;
  2456. width:414px;
  2457. height:40px;
  2458. background:inherit;
  2459. background-color:rgba(255, 255, 255, 0);
  2460. border:none;
  2461. border-top:0px;
  2462. border-right:0px;
  2463. border-bottom:0px;
  2464. border-radius:0px;
  2465. border-top-left-radius:0px;
  2466. border-bottom-left-radius:0px;
  2467. -moz-box-shadow:none;
  2468. -webkit-box-shadow:none;
  2469. box-shadow:none;
  2470. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2471. font-weight:400;
  2472. font-style:normal;
  2473. font-size:14px;
  2474. color:#D9001B;
  2475. line-height:40px;
  2476. }
  2477. #u65375 {
  2478. border-width:0px;
  2479. position:absolute;
  2480. left:600px;
  2481. top:700px;
  2482. width:414px;
  2483. height:40px;
  2484. display:flex;
  2485. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2486. font-weight:400;
  2487. font-style:normal;
  2488. font-size:14px;
  2489. color:#D9001B;
  2490. line-height:40px;
  2491. }
  2492. #u65375 .text {
  2493. position:absolute;
  2494. align-self:center;
  2495. padding:0px 0px 0px 0px;
  2496. box-sizing:border-box;
  2497. width:100%;
  2498. }
  2499. #u65375_text {
  2500. border-width:0px;
  2501. white-space:nowrap;
  2502. text-transform:none;
  2503. }
  2504. #u65376 {
  2505. border-width:0px;
  2506. position:absolute;
  2507. left:500px;
  2508. top:643px;
  2509. width:0px;
  2510. height:0px;
  2511. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2512. font-weight:400;
  2513. font-style:normal;
  2514. font-size:28px;
  2515. color:#333333;
  2516. }
  2517. #u65376_seg0 {
  2518. border-width:0px;
  2519. position:absolute;
  2520. left:-5px;
  2521. top:0px;
  2522. width:10px;
  2523. height:82px;
  2524. }
  2525. #u65376_seg1 {
  2526. border-width:0px;
  2527. position:absolute;
  2528. left:-5px;
  2529. top:72px;
  2530. width:105px;
  2531. height:10px;
  2532. }
  2533. #u65376_seg2 {
  2534. border-width:0px;
  2535. position:absolute;
  2536. left:90px;
  2537. top:68px;
  2538. width:18px;
  2539. height:18px;
  2540. }
  2541. #u65376_text {
  2542. border-width:0px;
  2543. position:absolute;
  2544. left:-38px;
  2545. top:69px;
  2546. width:100px;
  2547. word-wrap:break-word;
  2548. text-transform:none;
  2549. visibility:hidden;
  2550. }
  2551. #u65377 {
  2552. border-width:0px;
  2553. position:absolute;
  2554. left:0px;
  2555. top:0px;
  2556. width:0px;
  2557. height:0px;
  2558. }
  2559. #u65378_div {
  2560. border-width:0px;
  2561. position:absolute;
  2562. left:0px;
  2563. top:0px;
  2564. width:1000px;
  2565. height:1139px;
  2566. background:inherit;
  2567. background-color:rgba(242, 242, 242, 1);
  2568. box-sizing:border-box;
  2569. border-width:1px;
  2570. border-style:solid;
  2571. border-color:rgba(242, 242, 242, 1);
  2572. border-radius:0px;
  2573. -moz-box-shadow:none;
  2574. -webkit-box-shadow:none;
  2575. box-shadow:none;
  2576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2577. font-weight:400;
  2578. font-style:normal;
  2579. font-size:14px;
  2580. color:#AAAAAA;
  2581. text-align:center;
  2582. line-height:30px;
  2583. }
  2584. #u65378 {
  2585. border-width:0px;
  2586. position:absolute;
  2587. left:2211px;
  2588. top:122px;
  2589. width:1000px;
  2590. height:1139px;
  2591. display:flex;
  2592. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2593. font-weight:400;
  2594. font-style:normal;
  2595. font-size:14px;
  2596. color:#AAAAAA;
  2597. text-align:center;
  2598. line-height:30px;
  2599. }
  2600. #u65378 .text {
  2601. position:absolute;
  2602. align-self:center;
  2603. padding:5px 10px 5px 10px;
  2604. box-sizing:border-box;
  2605. width:100%;
  2606. }
  2607. #u65378_text {
  2608. border-width:0px;
  2609. word-wrap:break-word;
  2610. text-transform:none;
  2611. visibility:hidden;
  2612. }
  2613. #u65379_div {
  2614. border-width:0px;
  2615. position:absolute;
  2616. left:0px;
  2617. top:0px;
  2618. width:1000px;
  2619. height:600px;
  2620. background:inherit;
  2621. background-color:rgba(255, 255, 255, 1);
  2622. box-sizing:border-box;
  2623. border-width:1px;
  2624. border-style:solid;
  2625. border-color:rgba(242, 242, 242, 1);
  2626. border-radius:0px;
  2627. -moz-box-shadow:none;
  2628. -webkit-box-shadow:none;
  2629. box-shadow:none;
  2630. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2631. font-weight:400;
  2632. font-style:normal;
  2633. font-size:14px;
  2634. color:#AAAAAA;
  2635. text-align:center;
  2636. line-height:30px;
  2637. }
  2638. #u65379 {
  2639. border-width:0px;
  2640. position:absolute;
  2641. left:2211px;
  2642. top:273px;
  2643. width:1000px;
  2644. height:600px;
  2645. display:flex;
  2646. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2647. font-weight:400;
  2648. font-style:normal;
  2649. font-size:14px;
  2650. color:#AAAAAA;
  2651. text-align:center;
  2652. line-height:30px;
  2653. }
  2654. #u65379 .text {
  2655. position:absolute;
  2656. align-self:center;
  2657. padding:5px 10px 5px 10px;
  2658. box-sizing:border-box;
  2659. width:100%;
  2660. }
  2661. #u65379_text {
  2662. border-width:0px;
  2663. word-wrap:break-word;
  2664. text-transform:none;
  2665. visibility:hidden;
  2666. }
  2667. #u65380_div {
  2668. border-width:0px;
  2669. position:absolute;
  2670. left:0px;
  2671. top:0px;
  2672. width:73px;
  2673. height:40px;
  2674. background:inherit;
  2675. background-color:rgba(255, 255, 255, 0);
  2676. border:none;
  2677. border-left:0px;
  2678. border-top:0px;
  2679. border-right:0px;
  2680. border-radius:0px;
  2681. border-bottom-right-radius:0px;
  2682. border-bottom-left-radius:0px;
  2683. -moz-box-shadow:none;
  2684. -webkit-box-shadow:none;
  2685. box-shadow:none;
  2686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2687. font-weight:400;
  2688. font-style:normal;
  2689. font-size:18px;
  2690. }
  2691. #u65380 {
  2692. border-width:0px;
  2693. position:absolute;
  2694. left:2251px;
  2695. top:289px;
  2696. width:73px;
  2697. height:40px;
  2698. display:flex;
  2699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2700. font-weight:400;
  2701. font-style:normal;
  2702. font-size:18px;
  2703. }
  2704. #u65380 .text {
  2705. position:absolute;
  2706. align-self:center;
  2707. padding:0px 0px 0px 0px;
  2708. box-sizing:border-box;
  2709. width:100%;
  2710. }
  2711. #u65380_text {
  2712. border-width:0px;
  2713. white-space:nowrap;
  2714. text-transform:none;
  2715. }
  2716. #u65381_div {
  2717. border-width:0px;
  2718. position:absolute;
  2719. left:0px;
  2720. top:0px;
  2721. width:81px;
  2722. height:30px;
  2723. background:inherit;
  2724. background-color:rgba(255, 255, 255, 0);
  2725. border:none;
  2726. border-top:0px;
  2727. border-right:0px;
  2728. border-bottom:0px;
  2729. border-radius:0px;
  2730. border-top-left-radius:0px;
  2731. border-bottom-left-radius:0px;
  2732. -moz-box-shadow:none;
  2733. -webkit-box-shadow:none;
  2734. box-shadow:none;
  2735. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2736. font-weight:400;
  2737. font-style:normal;
  2738. font-size:14px;
  2739. color:#7F7F7F;
  2740. }
  2741. #u65381 {
  2742. border-width:0px;
  2743. position:absolute;
  2744. left:2251px;
  2745. top:339px;
  2746. width:81px;
  2747. height:30px;
  2748. display:flex;
  2749. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2750. font-weight:400;
  2751. font-style:normal;
  2752. font-size:14px;
  2753. color:#7F7F7F;
  2754. }
  2755. #u65381 .text {
  2756. position:absolute;
  2757. align-self:center;
  2758. padding:5px 10px 5px 0px;
  2759. box-sizing:border-box;
  2760. width:100%;
  2761. }
  2762. #u65381_text {
  2763. border-width:0px;
  2764. white-space:nowrap;
  2765. text-transform:none;
  2766. }
  2767. #u65382_div {
  2768. border-width:0px;
  2769. position:absolute;
  2770. left:0px;
  2771. top:0px;
  2772. width:142px;
  2773. height:30px;
  2774. background:inherit;
  2775. background-color:rgba(255, 255, 255, 0);
  2776. border:none;
  2777. border-top:0px;
  2778. border-right:0px;
  2779. border-bottom:0px;
  2780. border-radius:0px;
  2781. border-top-left-radius:0px;
  2782. border-bottom-left-radius:0px;
  2783. -moz-box-shadow:none;
  2784. -webkit-box-shadow:none;
  2785. box-shadow:none;
  2786. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2787. font-weight:400;
  2788. font-style:normal;
  2789. font-size:14px;
  2790. color:#1890FF;
  2791. }
  2792. #u65382 {
  2793. border-width:0px;
  2794. position:absolute;
  2795. left:2332px;
  2796. top:339px;
  2797. width:142px;
  2798. height:30px;
  2799. display:flex;
  2800. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2801. font-weight:400;
  2802. font-style:normal;
  2803. font-size:14px;
  2804. color:#1890FF;
  2805. }
  2806. #u65382 .text {
  2807. position:absolute;
  2808. align-self:center;
  2809. padding:5px 10px 5px 0px;
  2810. box-sizing:border-box;
  2811. width:100%;
  2812. }
  2813. #u65382_text {
  2814. border-width:0px;
  2815. white-space:nowrap;
  2816. text-transform:none;
  2817. }
  2818. #u65383_div {
  2819. border-width:0px;
  2820. position:absolute;
  2821. left:0px;
  2822. top:0px;
  2823. width:81px;
  2824. height:30px;
  2825. background:inherit;
  2826. background-color:rgba(255, 255, 255, 0);
  2827. border:none;
  2828. border-top:0px;
  2829. border-right:0px;
  2830. border-bottom:0px;
  2831. border-radius:0px;
  2832. border-top-left-radius:0px;
  2833. border-bottom-left-radius:0px;
  2834. -moz-box-shadow:none;
  2835. -webkit-box-shadow:none;
  2836. box-shadow:none;
  2837. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2838. font-weight:400;
  2839. font-style:normal;
  2840. font-size:14px;
  2841. color:#7F7F7F;
  2842. }
  2843. #u65383 {
  2844. border-width:0px;
  2845. position:absolute;
  2846. left:2571px;
  2847. top:339px;
  2848. width:81px;
  2849. height:30px;
  2850. display:flex;
  2851. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2852. font-weight:400;
  2853. font-style:normal;
  2854. font-size:14px;
  2855. color:#7F7F7F;
  2856. }
  2857. #u65383 .text {
  2858. position:absolute;
  2859. align-self:center;
  2860. padding:5px 10px 5px 0px;
  2861. box-sizing:border-box;
  2862. width:100%;
  2863. }
  2864. #u65383_text {
  2865. border-width:0px;
  2866. white-space:nowrap;
  2867. text-transform:none;
  2868. }
  2869. #u65384_div {
  2870. border-width:0px;
  2871. position:absolute;
  2872. left:0px;
  2873. top:0px;
  2874. width:67px;
  2875. height:30px;
  2876. background:inherit;
  2877. background-color:rgba(255, 255, 255, 0);
  2878. border:none;
  2879. border-top:0px;
  2880. border-right:0px;
  2881. border-bottom:0px;
  2882. border-radius:0px;
  2883. border-top-left-radius:0px;
  2884. border-bottom-left-radius:0px;
  2885. -moz-box-shadow:none;
  2886. -webkit-box-shadow:none;
  2887. box-shadow:none;
  2888. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2889. font-weight:400;
  2890. font-style:normal;
  2891. font-size:14px;
  2892. }
  2893. #u65384 {
  2894. border-width:0px;
  2895. position:absolute;
  2896. left:2652px;
  2897. top:339px;
  2898. width:67px;
  2899. height:30px;
  2900. display:flex;
  2901. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2902. font-weight:400;
  2903. font-style:normal;
  2904. font-size:14px;
  2905. }
  2906. #u65384 .text {
  2907. position:absolute;
  2908. align-self:center;
  2909. padding:5px 10px 5px 0px;
  2910. box-sizing:border-box;
  2911. width:100%;
  2912. }
  2913. #u65384_text {
  2914. border-width:0px;
  2915. white-space:nowrap;
  2916. text-transform:none;
  2917. }
  2918. #u65385_div {
  2919. border-width:0px;
  2920. position:absolute;
  2921. left:0px;
  2922. top:0px;
  2923. width:81px;
  2924. height:30px;
  2925. background:inherit;
  2926. background-color:rgba(255, 255, 255, 0);
  2927. border:none;
  2928. border-top:0px;
  2929. border-right:0px;
  2930. border-bottom:0px;
  2931. border-radius:0px;
  2932. border-top-left-radius:0px;
  2933. border-bottom-left-radius:0px;
  2934. -moz-box-shadow:none;
  2935. -webkit-box-shadow:none;
  2936. box-shadow:none;
  2937. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2938. font-weight:400;
  2939. font-style:normal;
  2940. font-size:14px;
  2941. color:#7F7F7F;
  2942. }
  2943. #u65385 {
  2944. border-width:0px;
  2945. position:absolute;
  2946. left:2868px;
  2947. top:339px;
  2948. width:81px;
  2949. height:30px;
  2950. display:flex;
  2951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2952. font-weight:400;
  2953. font-style:normal;
  2954. font-size:14px;
  2955. color:#7F7F7F;
  2956. }
  2957. #u65385 .text {
  2958. position:absolute;
  2959. align-self:center;
  2960. padding:5px 10px 5px 0px;
  2961. box-sizing:border-box;
  2962. width:100%;
  2963. }
  2964. #u65385_text {
  2965. border-width:0px;
  2966. white-space:nowrap;
  2967. text-transform:none;
  2968. }
  2969. #u65386_div {
  2970. border-width:0px;
  2971. position:absolute;
  2972. left:0px;
  2973. top:0px;
  2974. width:53px;
  2975. height:30px;
  2976. background:inherit;
  2977. background-color:rgba(255, 255, 255, 0);
  2978. border:none;
  2979. border-top:0px;
  2980. border-right:0px;
  2981. border-bottom:0px;
  2982. border-radius:0px;
  2983. border-top-left-radius:0px;
  2984. border-bottom-left-radius:0px;
  2985. -moz-box-shadow:none;
  2986. -webkit-box-shadow:none;
  2987. box-shadow:none;
  2988. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2989. font-weight:400;
  2990. font-style:normal;
  2991. font-size:14px;
  2992. }
  2993. #u65386 {
  2994. border-width:0px;
  2995. position:absolute;
  2996. left:2949px;
  2997. top:339px;
  2998. width:53px;
  2999. height:30px;
  3000. display:flex;
  3001. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3002. font-weight:400;
  3003. font-style:normal;
  3004. font-size:14px;
  3005. }
  3006. #u65386 .text {
  3007. position:absolute;
  3008. align-self:center;
  3009. padding:5px 10px 5px 0px;
  3010. box-sizing:border-box;
  3011. width:100%;
  3012. }
  3013. #u65386_text {
  3014. border-width:0px;
  3015. white-space:nowrap;
  3016. text-transform:none;
  3017. }
  3018. #u65387_div {
  3019. border-width:0px;
  3020. position:absolute;
  3021. left:0px;
  3022. top:0px;
  3023. width:81px;
  3024. height:30px;
  3025. background:inherit;
  3026. background-color:rgba(255, 255, 255, 0);
  3027. border:none;
  3028. border-top:0px;
  3029. border-right:0px;
  3030. border-bottom:0px;
  3031. border-radius:0px;
  3032. border-top-left-radius:0px;
  3033. border-bottom-left-radius:0px;
  3034. -moz-box-shadow:none;
  3035. -webkit-box-shadow:none;
  3036. box-shadow:none;
  3037. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3038. font-weight:400;
  3039. font-style:normal;
  3040. font-size:14px;
  3041. color:#7F7F7F;
  3042. }
  3043. #u65387 {
  3044. border-width:0px;
  3045. position:absolute;
  3046. left:2251px;
  3047. top:379px;
  3048. width:81px;
  3049. height:30px;
  3050. display:flex;
  3051. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3052. font-weight:400;
  3053. font-style:normal;
  3054. font-size:14px;
  3055. color:#7F7F7F;
  3056. }
  3057. #u65387 .text {
  3058. position:absolute;
  3059. align-self:center;
  3060. padding:5px 10px 5px 0px;
  3061. box-sizing:border-box;
  3062. width:100%;
  3063. }
  3064. #u65387_text {
  3065. border-width:0px;
  3066. white-space:nowrap;
  3067. text-transform:none;
  3068. }
  3069. #u65388_div {
  3070. border-width:0px;
  3071. position:absolute;
  3072. left:0px;
  3073. top:0px;
  3074. width:81px;
  3075. height:30px;
  3076. background:inherit;
  3077. background-color:rgba(255, 255, 255, 0);
  3078. border:none;
  3079. border-top:0px;
  3080. border-right:0px;
  3081. border-bottom:0px;
  3082. border-radius:0px;
  3083. border-top-left-radius:0px;
  3084. border-bottom-left-radius:0px;
  3085. -moz-box-shadow:none;
  3086. -webkit-box-shadow:none;
  3087. box-shadow:none;
  3088. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3089. font-weight:400;
  3090. font-style:normal;
  3091. font-size:14px;
  3092. color:#7F7F7F;
  3093. }
  3094. #u65388 {
  3095. border-width:0px;
  3096. position:absolute;
  3097. left:2571px;
  3098. top:379px;
  3099. width:81px;
  3100. height:30px;
  3101. display:flex;
  3102. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3103. font-weight:400;
  3104. font-style:normal;
  3105. font-size:14px;
  3106. color:#7F7F7F;
  3107. }
  3108. #u65388 .text {
  3109. position:absolute;
  3110. align-self:center;
  3111. padding:5px 10px 5px 0px;
  3112. box-sizing:border-box;
  3113. width:100%;
  3114. }
  3115. #u65388_text {
  3116. border-width:0px;
  3117. white-space:nowrap;
  3118. text-transform:none;
  3119. }
  3120. #u65389_div {
  3121. border-width:0px;
  3122. position:absolute;
  3123. left:0px;
  3124. top:0px;
  3125. width:67px;
  3126. height:30px;
  3127. background:inherit;
  3128. background-color:rgba(255, 255, 255, 0);
  3129. border:none;
  3130. border-top:0px;
  3131. border-right:0px;
  3132. border-bottom:0px;
  3133. border-radius:0px;
  3134. border-top-left-radius:0px;
  3135. border-bottom-left-radius:0px;
  3136. -moz-box-shadow:none;
  3137. -webkit-box-shadow:none;
  3138. box-shadow:none;
  3139. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3140. font-weight:400;
  3141. font-style:normal;
  3142. font-size:14px;
  3143. }
  3144. #u65389 {
  3145. border-width:0px;
  3146. position:absolute;
  3147. left:2652px;
  3148. top:379px;
  3149. width:67px;
  3150. height:30px;
  3151. display:flex;
  3152. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3153. font-weight:400;
  3154. font-style:normal;
  3155. font-size:14px;
  3156. }
  3157. #u65389 .text {
  3158. position:absolute;
  3159. align-self:center;
  3160. padding:5px 10px 5px 0px;
  3161. box-sizing:border-box;
  3162. width:100%;
  3163. }
  3164. #u65389_text {
  3165. border-width:0px;
  3166. white-space:nowrap;
  3167. text-transform:none;
  3168. }
  3169. #u65390_div {
  3170. border-width:0px;
  3171. position:absolute;
  3172. left:0px;
  3173. top:0px;
  3174. width:67px;
  3175. height:30px;
  3176. background:inherit;
  3177. background-color:rgba(255, 255, 255, 0);
  3178. border:none;
  3179. border-top:0px;
  3180. border-right:0px;
  3181. border-bottom:0px;
  3182. border-radius:0px;
  3183. border-top-left-radius:0px;
  3184. border-bottom-left-radius:0px;
  3185. -moz-box-shadow:none;
  3186. -webkit-box-shadow:none;
  3187. box-shadow:none;
  3188. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3189. font-weight:400;
  3190. font-style:normal;
  3191. font-size:14px;
  3192. color:#7F7F7F;
  3193. }
  3194. #u65390 {
  3195. border-width:0px;
  3196. position:absolute;
  3197. left:2868px;
  3198. top:379px;
  3199. width:67px;
  3200. height:30px;
  3201. display:flex;
  3202. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3203. font-weight:400;
  3204. font-style:normal;
  3205. font-size:14px;
  3206. color:#7F7F7F;
  3207. }
  3208. #u65390 .text {
  3209. position:absolute;
  3210. align-self:center;
  3211. padding:5px 10px 5px 0px;
  3212. box-sizing:border-box;
  3213. width:100%;
  3214. }
  3215. #u65390_text {
  3216. border-width:0px;
  3217. white-space:nowrap;
  3218. text-transform:none;
  3219. }
  3220. #u65391_div {
  3221. border-width:0px;
  3222. position:absolute;
  3223. left:0px;
  3224. top:0px;
  3225. width:85px;
  3226. height:30px;
  3227. background:inherit;
  3228. background-color:rgba(255, 255, 255, 0);
  3229. border:none;
  3230. border-top:0px;
  3231. border-right:0px;
  3232. border-bottom:0px;
  3233. border-radius:0px;
  3234. border-top-left-radius:0px;
  3235. border-bottom-left-radius:0px;
  3236. -moz-box-shadow:none;
  3237. -webkit-box-shadow:none;
  3238. box-shadow:none;
  3239. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3240. font-weight:400;
  3241. font-style:normal;
  3242. font-size:14px;
  3243. }
  3244. #u65391 {
  3245. border-width:0px;
  3246. position:absolute;
  3247. left:2949px;
  3248. top:379px;
  3249. width:85px;
  3250. height:30px;
  3251. display:flex;
  3252. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3253. font-weight:400;
  3254. font-style:normal;
  3255. font-size:14px;
  3256. }
  3257. #u65391 .text {
  3258. position:absolute;
  3259. align-self:center;
  3260. padding:5px 10px 5px 0px;
  3261. box-sizing:border-box;
  3262. width:100%;
  3263. }
  3264. #u65391_text {
  3265. border-width:0px;
  3266. white-space:nowrap;
  3267. text-transform:none;
  3268. }
  3269. #u65392_div {
  3270. border-width:0px;
  3271. position:absolute;
  3272. left:0px;
  3273. top:0px;
  3274. width:183px;
  3275. height:30px;
  3276. background:inherit;
  3277. background-color:rgba(255, 255, 255, 0);
  3278. border:none;
  3279. border-top:0px;
  3280. border-right:0px;
  3281. border-bottom:0px;
  3282. border-radius:0px;
  3283. border-top-left-radius:0px;
  3284. border-bottom-left-radius:0px;
  3285. -moz-box-shadow:none;
  3286. -webkit-box-shadow:none;
  3287. box-shadow:none;
  3288. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3289. font-weight:400;
  3290. font-style:normal;
  3291. font-size:14px;
  3292. }
  3293. #u65392 {
  3294. border-width:0px;
  3295. position:absolute;
  3296. left:2332px;
  3297. top:379px;
  3298. width:183px;
  3299. height:30px;
  3300. display:flex;
  3301. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3302. font-weight:400;
  3303. font-style:normal;
  3304. font-size:14px;
  3305. }
  3306. #u65392 .text {
  3307. position:absolute;
  3308. align-self:center;
  3309. padding:5px 10px 5px 0px;
  3310. box-sizing:border-box;
  3311. width:100%;
  3312. }
  3313. #u65392_text {
  3314. border-width:0px;
  3315. white-space:nowrap;
  3316. text-transform:none;
  3317. }
  3318. #u65393_div {
  3319. border-width:0px;
  3320. position:absolute;
  3321. left:0px;
  3322. top:0px;
  3323. width:81px;
  3324. height:30px;
  3325. background:inherit;
  3326. background-color:rgba(255, 255, 255, 0);
  3327. border:none;
  3328. border-top:0px;
  3329. border-right:0px;
  3330. border-bottom:0px;
  3331. border-radius:0px;
  3332. border-top-left-radius:0px;
  3333. border-bottom-left-radius:0px;
  3334. -moz-box-shadow:none;
  3335. -webkit-box-shadow:none;
  3336. box-shadow:none;
  3337. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3338. font-weight:400;
  3339. font-style:normal;
  3340. font-size:14px;
  3341. color:#7F7F7F;
  3342. }
  3343. #u65393 {
  3344. border-width:0px;
  3345. position:absolute;
  3346. left:2251px;
  3347. top:419px;
  3348. width:81px;
  3349. height:30px;
  3350. display:flex;
  3351. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3352. font-weight:400;
  3353. font-style:normal;
  3354. font-size:14px;
  3355. color:#7F7F7F;
  3356. }
  3357. #u65393 .text {
  3358. position:absolute;
  3359. align-self:center;
  3360. padding:5px 10px 5px 0px;
  3361. box-sizing:border-box;
  3362. width:100%;
  3363. }
  3364. #u65393_text {
  3365. border-width:0px;
  3366. white-space:nowrap;
  3367. text-transform:none;
  3368. }
  3369. #u65394_div {
  3370. border-width:0px;
  3371. position:absolute;
  3372. left:0px;
  3373. top:0px;
  3374. width:126px;
  3375. height:30px;
  3376. background:inherit;
  3377. background-color:rgba(255, 255, 255, 0);
  3378. border:none;
  3379. border-top:0px;
  3380. border-right:0px;
  3381. border-bottom:0px;
  3382. border-radius:0px;
  3383. border-top-left-radius:0px;
  3384. border-bottom-left-radius:0px;
  3385. -moz-box-shadow:none;
  3386. -webkit-box-shadow:none;
  3387. box-shadow:none;
  3388. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3389. font-weight:400;
  3390. font-style:normal;
  3391. font-size:14px;
  3392. }
  3393. #u65394 {
  3394. border-width:0px;
  3395. position:absolute;
  3396. left:2332px;
  3397. top:419px;
  3398. width:126px;
  3399. height:30px;
  3400. display:flex;
  3401. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3402. font-weight:400;
  3403. font-style:normal;
  3404. font-size:14px;
  3405. }
  3406. #u65394 .text {
  3407. position:absolute;
  3408. align-self:center;
  3409. padding:5px 10px 5px 0px;
  3410. box-sizing:border-box;
  3411. width:100%;
  3412. }
  3413. #u65394_text {
  3414. border-width:0px;
  3415. white-space:nowrap;
  3416. text-transform:none;
  3417. }
  3418. #u65395_div {
  3419. border-width:0px;
  3420. position:absolute;
  3421. left:0px;
  3422. top:0px;
  3423. width:81px;
  3424. height:30px;
  3425. background:inherit;
  3426. background-color:rgba(255, 255, 255, 0);
  3427. border:none;
  3428. border-top:0px;
  3429. border-right:0px;
  3430. border-bottom:0px;
  3431. border-radius:0px;
  3432. border-top-left-radius:0px;
  3433. border-bottom-left-radius:0px;
  3434. -moz-box-shadow:none;
  3435. -webkit-box-shadow:none;
  3436. box-shadow:none;
  3437. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3438. font-weight:400;
  3439. font-style:normal;
  3440. font-size:14px;
  3441. color:#7F7F7F;
  3442. }
  3443. #u65395 {
  3444. border-width:0px;
  3445. position:absolute;
  3446. left:2251px;
  3447. top:459px;
  3448. width:81px;
  3449. height:30px;
  3450. display:flex;
  3451. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3452. font-weight:400;
  3453. font-style:normal;
  3454. font-size:14px;
  3455. color:#7F7F7F;
  3456. }
  3457. #u65395 .text {
  3458. position:absolute;
  3459. align-self:center;
  3460. padding:5px 10px 5px 0px;
  3461. box-sizing:border-box;
  3462. width:100%;
  3463. }
  3464. #u65395_text {
  3465. border-width:0px;
  3466. white-space:nowrap;
  3467. text-transform:none;
  3468. }
  3469. #u65396_div {
  3470. border-width:0px;
  3471. position:absolute;
  3472. left:0px;
  3473. top:0px;
  3474. width:263px;
  3475. height:30px;
  3476. background:inherit;
  3477. background-color:rgba(255, 255, 255, 0);
  3478. border:none;
  3479. border-top:0px;
  3480. border-right:0px;
  3481. border-bottom:0px;
  3482. border-radius:0px;
  3483. border-top-left-radius:0px;
  3484. border-bottom-left-radius:0px;
  3485. -moz-box-shadow:none;
  3486. -webkit-box-shadow:none;
  3487. box-shadow:none;
  3488. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3489. font-weight:400;
  3490. font-style:normal;
  3491. font-size:14px;
  3492. }
  3493. #u65396 {
  3494. border-width:0px;
  3495. position:absolute;
  3496. left:2332px;
  3497. top:459px;
  3498. width:263px;
  3499. height:30px;
  3500. display:flex;
  3501. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3502. font-weight:400;
  3503. font-style:normal;
  3504. font-size:14px;
  3505. }
  3506. #u65396 .text {
  3507. position:absolute;
  3508. align-self:center;
  3509. padding:5px 10px 5px 0px;
  3510. box-sizing:border-box;
  3511. width:100%;
  3512. }
  3513. #u65396_text {
  3514. border-width:0px;
  3515. white-space:nowrap;
  3516. text-transform:none;
  3517. }
  3518. #u65397_div {
  3519. border-width:0px;
  3520. position:absolute;
  3521. left:0px;
  3522. top:0px;
  3523. width:81px;
  3524. height:30px;
  3525. background:inherit;
  3526. background-color:rgba(255, 255, 255, 0);
  3527. border:none;
  3528. border-top:0px;
  3529. border-right:0px;
  3530. border-bottom:0px;
  3531. border-radius:0px;
  3532. border-top-left-radius:0px;
  3533. border-bottom-left-radius:0px;
  3534. -moz-box-shadow:none;
  3535. -webkit-box-shadow:none;
  3536. box-shadow:none;
  3537. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3538. font-weight:400;
  3539. font-style:normal;
  3540. font-size:14px;
  3541. color:#7F7F7F;
  3542. }
  3543. #u65397 {
  3544. border-width:0px;
  3545. position:absolute;
  3546. left:2571px;
  3547. top:419px;
  3548. width:81px;
  3549. height:30px;
  3550. display:flex;
  3551. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3552. font-weight:400;
  3553. font-style:normal;
  3554. font-size:14px;
  3555. color:#7F7F7F;
  3556. }
  3557. #u65397 .text {
  3558. position:absolute;
  3559. align-self:center;
  3560. padding:5px 10px 5px 0px;
  3561. box-sizing:border-box;
  3562. width:100%;
  3563. }
  3564. #u65397_text {
  3565. border-width:0px;
  3566. white-space:nowrap;
  3567. text-transform:none;
  3568. }
  3569. #u65398_div {
  3570. border-width:0px;
  3571. position:absolute;
  3572. left:0px;
  3573. top:0px;
  3574. width:53px;
  3575. height:30px;
  3576. background:inherit;
  3577. background-color:rgba(255, 255, 255, 0);
  3578. border:none;
  3579. border-top:0px;
  3580. border-right:0px;
  3581. border-bottom:0px;
  3582. border-radius:0px;
  3583. border-top-left-radius:0px;
  3584. border-bottom-left-radius:0px;
  3585. -moz-box-shadow:none;
  3586. -webkit-box-shadow:none;
  3587. box-shadow:none;
  3588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3589. font-weight:400;
  3590. font-style:normal;
  3591. font-size:14px;
  3592. color:#1890FF;
  3593. }
  3594. #u65398 {
  3595. border-width:0px;
  3596. position:absolute;
  3597. left:2652px;
  3598. top:419px;
  3599. width:53px;
  3600. height:30px;
  3601. display:flex;
  3602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3603. font-weight:400;
  3604. font-style:normal;
  3605. font-size:14px;
  3606. color:#1890FF;
  3607. }
  3608. #u65398 .text {
  3609. position:absolute;
  3610. align-self:center;
  3611. padding:5px 10px 5px 0px;
  3612. box-sizing:border-box;
  3613. width:100%;
  3614. }
  3615. #u65398_text {
  3616. border-width:0px;
  3617. white-space:nowrap;
  3618. text-transform:none;
  3619. }
  3620. #u65399_img {
  3621. border-width:0px;
  3622. position:absolute;
  3623. left:0px;
  3624. top:0px;
  3625. width:942px;
  3626. height:2px;
  3627. }
  3628. #u65399 {
  3629. border-width:0px;
  3630. position:absolute;
  3631. left:2251px;
  3632. top:507px;
  3633. width:941px;
  3634. height:1px;
  3635. display:flex;
  3636. }
  3637. #u65399 .text {
  3638. position:absolute;
  3639. align-self:center;
  3640. padding:2px 2px 2px 2px;
  3641. box-sizing:border-box;
  3642. width:100%;
  3643. }
  3644. #u65399_text {
  3645. border-width:0px;
  3646. word-wrap:break-word;
  3647. text-transform:none;
  3648. visibility:hidden;
  3649. }
  3650. #u65400_div {
  3651. border-width:0px;
  3652. position:absolute;
  3653. left:0px;
  3654. top:0px;
  3655. width:1000px;
  3656. height:200px;
  3657. background:inherit;
  3658. background-color:rgba(255, 255, 255, 1);
  3659. box-sizing:border-box;
  3660. border-width:1px;
  3661. border-style:solid;
  3662. border-color:rgba(215, 215, 215, 1);
  3663. border-radius:0px;
  3664. -moz-box-shadow:none;
  3665. -webkit-box-shadow:none;
  3666. box-shadow:none;
  3667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3668. font-weight:400;
  3669. font-style:normal;
  3670. font-size:14px;
  3671. color:#AAAAAA;
  3672. text-align:center;
  3673. line-height:30px;
  3674. }
  3675. #u65400 {
  3676. border-width:0px;
  3677. position:absolute;
  3678. left:2212px;
  3679. top:62px;
  3680. width:1000px;
  3681. height:200px;
  3682. display:flex;
  3683. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3684. font-weight:400;
  3685. font-style:normal;
  3686. font-size:14px;
  3687. color:#AAAAAA;
  3688. text-align:center;
  3689. line-height:30px;
  3690. }
  3691. #u65400 .text {
  3692. position:absolute;
  3693. align-self:center;
  3694. padding:5px 10px 5px 10px;
  3695. box-sizing:border-box;
  3696. width:100%;
  3697. }
  3698. #u65400_text {
  3699. border-width:0px;
  3700. word-wrap:break-word;
  3701. text-transform:none;
  3702. visibility:hidden;
  3703. }
  3704. #u65401_div {
  3705. border-width:0px;
  3706. position:absolute;
  3707. left:0px;
  3708. top:0px;
  3709. width:83px;
  3710. height:35px;
  3711. background:inherit;
  3712. background-color:rgba(255, 255, 255, 0);
  3713. border:none;
  3714. border-top:0px;
  3715. border-right:0px;
  3716. border-bottom:0px;
  3717. border-radius:0px;
  3718. border-top-left-radius:0px;
  3719. border-bottom-left-radius:0px;
  3720. -moz-box-shadow:none;
  3721. -webkit-box-shadow:none;
  3722. box-shadow:none;
  3723. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3724. font-weight:500;
  3725. font-style:normal;
  3726. font-size:18px;
  3727. }
  3728. #u65401 {
  3729. border-width:0px;
  3730. position:absolute;
  3731. left:2232px;
  3732. top:80px;
  3733. width:83px;
  3734. height:35px;
  3735. display:flex;
  3736. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3737. font-weight:500;
  3738. font-style:normal;
  3739. font-size:18px;
  3740. }
  3741. #u65401 .text {
  3742. position:absolute;
  3743. align-self:center;
  3744. padding:5px 10px 5px 0px;
  3745. box-sizing:border-box;
  3746. width:100%;
  3747. }
  3748. #u65401_text {
  3749. border-width:0px;
  3750. white-space:nowrap;
  3751. text-transform:none;
  3752. }
  3753. #u65402_div {
  3754. border-width:0px;
  3755. position:absolute;
  3756. left:0px;
  3757. top:0px;
  3758. width:107px;
  3759. height:43px;
  3760. background:inherit;
  3761. background-color:rgba(255, 255, 255, 0);
  3762. border:none;
  3763. border-top:0px;
  3764. border-right:0px;
  3765. border-bottom:0px;
  3766. border-radius:0px;
  3767. border-top-left-radius:0px;
  3768. border-bottom-left-radius:0px;
  3769. -moz-box-shadow:none;
  3770. -webkit-box-shadow:none;
  3771. box-shadow:none;
  3772. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3773. font-weight:500;
  3774. font-style:normal;
  3775. font-size:24px;
  3776. }
  3777. #u65402 {
  3778. border-width:0px;
  3779. position:absolute;
  3780. left:2242px;
  3781. top:131px;
  3782. width:107px;
  3783. height:43px;
  3784. display:flex;
  3785. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3786. font-weight:500;
  3787. font-style:normal;
  3788. font-size:24px;
  3789. }
  3790. #u65402 .text {
  3791. position:absolute;
  3792. align-self:center;
  3793. padding:5px 10px 5px 0px;
  3794. box-sizing:border-box;
  3795. width:100%;
  3796. }
  3797. #u65402_text {
  3798. border-width:0px;
  3799. white-space:nowrap;
  3800. text-transform:none;
  3801. }
  3802. #u65403_img {
  3803. border-width:0px;
  3804. position:absolute;
  3805. left:0px;
  3806. top:0px;
  3807. width:108px;
  3808. height:108px;
  3809. }
  3810. #u65403 {
  3811. border-width:0px;
  3812. position:absolute;
  3813. left:3062px;
  3814. top:132px;
  3815. width:108px;
  3816. height:108px;
  3817. display:flex;
  3818. -webkit-transform:rotate(315deg);
  3819. -moz-transform:rotate(315deg);
  3820. -ms-transform:rotate(315deg);
  3821. transform:rotate(315deg);
  3822. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3823. font-weight:400;
  3824. font-style:normal;
  3825. font-size:28px;
  3826. color:#F59A23;
  3827. }
  3828. #u65403 .text {
  3829. position:absolute;
  3830. align-self:center;
  3831. padding:2px 2px 2px 2px;
  3832. box-sizing:border-box;
  3833. width:100%;
  3834. }
  3835. #u65403_text {
  3836. border-width:0px;
  3837. word-wrap:break-word;
  3838. text-transform:none;
  3839. }
  3840. #u65404_div {
  3841. border-width:0px;
  3842. position:absolute;
  3843. left:0px;
  3844. top:0px;
  3845. width:325px;
  3846. height:60px;
  3847. background:inherit;
  3848. background-color:rgba(255, 255, 255, 0);
  3849. border:none;
  3850. border-left:0px;
  3851. border-top:0px;
  3852. border-right:0px;
  3853. border-radius:0px;
  3854. border-bottom-right-radius:0px;
  3855. border-bottom-left-radius:0px;
  3856. -moz-box-shadow:none;
  3857. -webkit-box-shadow:none;
  3858. box-shadow:none;
  3859. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3860. font-weight:400;
  3861. font-style:normal;
  3862. font-size:14px;
  3863. line-height:30px;
  3864. }
  3865. #u65404 {
  3866. border-width:0px;
  3867. position:absolute;
  3868. left:2242px;
  3869. top:186px;
  3870. width:325px;
  3871. height:60px;
  3872. display:flex;
  3873. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3874. font-weight:400;
  3875. font-style:normal;
  3876. font-size:14px;
  3877. line-height:30px;
  3878. }
  3879. #u65404 .text {
  3880. position:absolute;
  3881. align-self:flex-start;
  3882. padding:0px 0px 0px 0px;
  3883. box-sizing:border-box;
  3884. width:100%;
  3885. }
  3886. #u65404_text {
  3887. border-width:0px;
  3888. word-wrap:break-word;
  3889. text-transform:none;
  3890. }
  3891. #u65405_img {
  3892. border-width:0px;
  3893. position:absolute;
  3894. left:0px;
  3895. top:0px;
  3896. width:17px;
  3897. height:17px;
  3898. }
  3899. #u65405 {
  3900. border-width:0px;
  3901. position:absolute;
  3902. left:3184px;
  3903. top:84px;
  3904. width:17px;
  3905. height:17px;
  3906. display:flex;
  3907. }
  3908. #u65405 .text {
  3909. position:absolute;
  3910. align-self:center;
  3911. padding:2px 2px 2px 2px;
  3912. box-sizing:border-box;
  3913. width:100%;
  3914. }
  3915. #u65405_text {
  3916. border-width:0px;
  3917. word-wrap:break-word;
  3918. text-transform:none;
  3919. visibility:hidden;
  3920. }
  3921. #u65406_div {
  3922. border-width:0px;
  3923. position:absolute;
  3924. left:0px;
  3925. top:0px;
  3926. width:1000px;
  3927. height:378px;
  3928. background:inherit;
  3929. background-color:rgba(255, 255, 255, 1);
  3930. box-sizing:border-box;
  3931. border-width:1px;
  3932. border-style:solid;
  3933. border-color:rgba(242, 242, 242, 1);
  3934. border-radius:0px;
  3935. -moz-box-shadow:none;
  3936. -webkit-box-shadow:none;
  3937. box-shadow:none;
  3938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3939. font-weight:400;
  3940. font-style:normal;
  3941. font-size:14px;
  3942. color:#AAAAAA;
  3943. text-align:center;
  3944. line-height:30px;
  3945. }
  3946. #u65406 {
  3947. border-width:0px;
  3948. position:absolute;
  3949. left:2211px;
  3950. top:883px;
  3951. width:1000px;
  3952. height:378px;
  3953. display:flex;
  3954. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3955. font-weight:400;
  3956. font-style:normal;
  3957. font-size:14px;
  3958. color:#AAAAAA;
  3959. text-align:center;
  3960. line-height:30px;
  3961. }
  3962. #u65406 .text {
  3963. position:absolute;
  3964. align-self:center;
  3965. padding:5px 10px 5px 10px;
  3966. box-sizing:border-box;
  3967. width:100%;
  3968. }
  3969. #u65406_text {
  3970. border-width:0px;
  3971. word-wrap:break-word;
  3972. text-transform:none;
  3973. visibility:hidden;
  3974. }
  3975. #u65407_div {
  3976. border-width:0px;
  3977. position:absolute;
  3978. left:0px;
  3979. top:0px;
  3980. width:73px;
  3981. height:40px;
  3982. background:inherit;
  3983. background-color:rgba(255, 255, 255, 0);
  3984. border:none;
  3985. border-left:0px;
  3986. border-top:0px;
  3987. border-right:0px;
  3988. border-radius:0px;
  3989. border-bottom-right-radius:0px;
  3990. border-bottom-left-radius:0px;
  3991. -moz-box-shadow:none;
  3992. -webkit-box-shadow:none;
  3993. box-shadow:none;
  3994. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3995. font-weight:400;
  3996. font-style:normal;
  3997. font-size:18px;
  3998. }
  3999. #u65407 {
  4000. border-width:0px;
  4001. position:absolute;
  4002. left:2251px;
  4003. top:899px;
  4004. width:73px;
  4005. height:40px;
  4006. display:flex;
  4007. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4008. font-weight:400;
  4009. font-style:normal;
  4010. font-size:18px;
  4011. }
  4012. #u65407 .text {
  4013. position:absolute;
  4014. align-self:center;
  4015. padding:0px 0px 0px 0px;
  4016. box-sizing:border-box;
  4017. width:100%;
  4018. }
  4019. #u65407_text {
  4020. border-width:0px;
  4021. white-space:nowrap;
  4022. text-transform:none;
  4023. }
  4024. #u65408_div {
  4025. border-width:0px;
  4026. position:absolute;
  4027. left:0px;
  4028. top:0px;
  4029. width:81px;
  4030. height:30px;
  4031. background:inherit;
  4032. background-color:rgba(255, 255, 255, 0);
  4033. border:none;
  4034. border-top:0px;
  4035. border-right:0px;
  4036. border-bottom:0px;
  4037. border-radius:0px;
  4038. border-top-left-radius:0px;
  4039. border-bottom-left-radius:0px;
  4040. -moz-box-shadow:none;
  4041. -webkit-box-shadow:none;
  4042. box-shadow:none;
  4043. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4044. font-weight:400;
  4045. font-style:normal;
  4046. font-size:14px;
  4047. color:#7F7F7F;
  4048. }
  4049. #u65408 {
  4050. border-width:0px;
  4051. position:absolute;
  4052. left:2251px;
  4053. top:949px;
  4054. width:81px;
  4055. height:30px;
  4056. display:flex;
  4057. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4058. font-weight:400;
  4059. font-style:normal;
  4060. font-size:14px;
  4061. color:#7F7F7F;
  4062. }
  4063. #u65408 .text {
  4064. position:absolute;
  4065. align-self:center;
  4066. padding:5px 10px 5px 0px;
  4067. box-sizing:border-box;
  4068. width:100%;
  4069. }
  4070. #u65408_text {
  4071. border-width:0px;
  4072. white-space:nowrap;
  4073. text-transform:none;
  4074. }
  4075. #u65409 {
  4076. border-width:0px;
  4077. position:absolute;
  4078. left:0px;
  4079. top:0px;
  4080. width:0px;
  4081. height:0px;
  4082. }
  4083. #u65410_div {
  4084. border-width:0px;
  4085. position:absolute;
  4086. left:0px;
  4087. top:0px;
  4088. width:1000px;
  4089. height:60px;
  4090. background:inherit;
  4091. background-color:rgba(255, 255, 255, 1);
  4092. box-sizing:border-box;
  4093. border-width:1px;
  4094. border-style:solid;
  4095. border-color:rgba(215, 215, 215, 1);
  4096. border-radius:0px;
  4097. -moz-box-shadow:none;
  4098. -webkit-box-shadow:none;
  4099. box-shadow:none;
  4100. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4101. font-weight:400;
  4102. font-style:normal;
  4103. font-size:14px;
  4104. color:#AAAAAA;
  4105. text-align:center;
  4106. line-height:30px;
  4107. }
  4108. #u65410 {
  4109. border-width:0px;
  4110. position:absolute;
  4111. left:2211px;
  4112. top:1201px;
  4113. width:1000px;
  4114. height:60px;
  4115. display:flex;
  4116. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4117. font-weight:400;
  4118. font-style:normal;
  4119. font-size:14px;
  4120. color:#AAAAAA;
  4121. text-align:center;
  4122. line-height:30px;
  4123. }
  4124. #u65410 .text {
  4125. position:absolute;
  4126. align-self:center;
  4127. padding:5px 10px 5px 10px;
  4128. box-sizing:border-box;
  4129. width:100%;
  4130. }
  4131. #u65410_text {
  4132. border-width:0px;
  4133. word-wrap:break-word;
  4134. text-transform:none;
  4135. visibility:hidden;
  4136. }
  4137. #u65411_div {
  4138. border-width:0px;
  4139. position:absolute;
  4140. left:0px;
  4141. top:0px;
  4142. width:80px;
  4143. height:30px;
  4144. background:inherit;
  4145. background-color:rgba(255, 255, 255, 1);
  4146. box-sizing:border-box;
  4147. border-width:1px;
  4148. border-style:solid;
  4149. border-color:rgba(170, 170, 170, 1);
  4150. border-radius:4px;
  4151. -moz-box-shadow:none;
  4152. -webkit-box-shadow:none;
  4153. box-shadow:none;
  4154. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4155. font-weight:400;
  4156. font-style:normal;
  4157. font-size:14px;
  4158. }
  4159. #u65411 {
  4160. border-width:0px;
  4161. position:absolute;
  4162. left:3112px;
  4163. top:1216px;
  4164. width:80px;
  4165. height:30px;
  4166. display:flex;
  4167. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4168. font-weight:400;
  4169. font-style:normal;
  4170. font-size:14px;
  4171. }
  4172. #u65411 .text {
  4173. position:absolute;
  4174. align-self:center;
  4175. padding:2px 2px 2px 2px;
  4176. box-sizing:border-box;
  4177. width:100%;
  4178. }
  4179. #u65411_text {
  4180. border-width:0px;
  4181. word-wrap:break-word;
  4182. text-transform:none;
  4183. }
  4184. #u65412_div {
  4185. border-width:0px;
  4186. position:absolute;
  4187. left:0px;
  4188. top:0px;
  4189. width:81px;
  4190. height:50px;
  4191. background:inherit;
  4192. background-color:rgba(255, 255, 255, 0);
  4193. border:none;
  4194. border-top:0px;
  4195. border-right:0px;
  4196. border-bottom:0px;
  4197. border-radius:0px;
  4198. border-top-left-radius:0px;
  4199. border-bottom-left-radius:0px;
  4200. -moz-box-shadow:none;
  4201. -webkit-box-shadow:none;
  4202. box-shadow:none;
  4203. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4204. font-weight:400;
  4205. font-style:normal;
  4206. font-size:14px;
  4207. line-height:40px;
  4208. }
  4209. #u65412 {
  4210. border-width:0px;
  4211. position:absolute;
  4212. left:2332px;
  4213. top:939px;
  4214. width:81px;
  4215. height:50px;
  4216. display:flex;
  4217. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4218. font-weight:400;
  4219. font-style:normal;
  4220. font-size:14px;
  4221. line-height:40px;
  4222. }
  4223. #u65412 .text {
  4224. position:absolute;
  4225. align-self:center;
  4226. padding:5px 10px 5px 0px;
  4227. box-sizing:border-box;
  4228. width:100%;
  4229. }
  4230. #u65412_text {
  4231. border-width:0px;
  4232. white-space:nowrap;
  4233. text-transform:none;
  4234. }
  4235. #u65413_div {
  4236. border-width:0px;
  4237. position:absolute;
  4238. left:0px;
  4239. top:0px;
  4240. width:81px;
  4241. height:30px;
  4242. background:inherit;
  4243. background-color:rgba(255, 255, 255, 0);
  4244. border:none;
  4245. border-top:0px;
  4246. border-right:0px;
  4247. border-bottom:0px;
  4248. border-radius:0px;
  4249. border-top-left-radius:0px;
  4250. border-bottom-left-radius:0px;
  4251. -moz-box-shadow:none;
  4252. -webkit-box-shadow:none;
  4253. box-shadow:none;
  4254. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4255. font-weight:400;
  4256. font-style:normal;
  4257. font-size:14px;
  4258. color:#7F7F7F;
  4259. }
  4260. #u65413 {
  4261. border-width:0px;
  4262. position:absolute;
  4263. left:2571px;
  4264. top:949px;
  4265. width:81px;
  4266. height:30px;
  4267. display:flex;
  4268. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4269. font-weight:400;
  4270. font-style:normal;
  4271. font-size:14px;
  4272. color:#7F7F7F;
  4273. }
  4274. #u65413 .text {
  4275. position:absolute;
  4276. align-self:center;
  4277. padding:5px 10px 5px 0px;
  4278. box-sizing:border-box;
  4279. width:100%;
  4280. }
  4281. #u65413_text {
  4282. border-width:0px;
  4283. white-space:nowrap;
  4284. text-transform:none;
  4285. }
  4286. #u65414_div {
  4287. border-width:0px;
  4288. position:absolute;
  4289. left:0px;
  4290. top:0px;
  4291. width:81px;
  4292. height:30px;
  4293. background:inherit;
  4294. background-color:rgba(255, 255, 255, 0);
  4295. border:none;
  4296. border-top:0px;
  4297. border-right:0px;
  4298. border-bottom:0px;
  4299. border-radius:0px;
  4300. border-top-left-radius:0px;
  4301. border-bottom-left-radius:0px;
  4302. -moz-box-shadow:none;
  4303. -webkit-box-shadow:none;
  4304. box-shadow:none;
  4305. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4306. font-weight:400;
  4307. font-style:normal;
  4308. font-size:14px;
  4309. }
  4310. #u65414 {
  4311. border-width:0px;
  4312. position:absolute;
  4313. left:2652px;
  4314. top:949px;
  4315. width:81px;
  4316. height:30px;
  4317. display:flex;
  4318. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4319. font-weight:400;
  4320. font-style:normal;
  4321. font-size:14px;
  4322. }
  4323. #u65414 .text {
  4324. position:absolute;
  4325. align-self:center;
  4326. padding:5px 10px 5px 0px;
  4327. box-sizing:border-box;
  4328. width:100%;
  4329. }
  4330. #u65414_text {
  4331. border-width:0px;
  4332. white-space:nowrap;
  4333. text-transform:none;
  4334. }
  4335. #u65415_div {
  4336. border-width:0px;
  4337. position:absolute;
  4338. left:0px;
  4339. top:0px;
  4340. width:81px;
  4341. height:30px;
  4342. background:inherit;
  4343. background-color:rgba(255, 255, 255, 0);
  4344. border:none;
  4345. border-top:0px;
  4346. border-right:0px;
  4347. border-bottom:0px;
  4348. border-radius:0px;
  4349. border-top-left-radius:0px;
  4350. border-bottom-left-radius:0px;
  4351. -moz-box-shadow:none;
  4352. -webkit-box-shadow:none;
  4353. box-shadow:none;
  4354. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4355. font-weight:400;
  4356. font-style:normal;
  4357. font-size:14px;
  4358. color:#7F7F7F;
  4359. }
  4360. #u65415 {
  4361. border-width:0px;
  4362. position:absolute;
  4363. left:2251px;
  4364. top:989px;
  4365. width:81px;
  4366. height:30px;
  4367. display:flex;
  4368. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4369. font-weight:400;
  4370. font-style:normal;
  4371. font-size:14px;
  4372. color:#7F7F7F;
  4373. }
  4374. #u65415 .text {
  4375. position:absolute;
  4376. align-self:center;
  4377. padding:5px 10px 5px 0px;
  4378. box-sizing:border-box;
  4379. width:100%;
  4380. }
  4381. #u65415_text {
  4382. border-width:0px;
  4383. white-space:nowrap;
  4384. text-transform:none;
  4385. }
  4386. #u65416_div {
  4387. border-width:0px;
  4388. position:absolute;
  4389. left:0px;
  4390. top:0px;
  4391. width:67px;
  4392. height:30px;
  4393. background:inherit;
  4394. background-color:rgba(255, 255, 255, 0);
  4395. border:none;
  4396. border-top:0px;
  4397. border-right:0px;
  4398. border-bottom:0px;
  4399. border-radius:0px;
  4400. border-top-left-radius:0px;
  4401. border-bottom-left-radius:0px;
  4402. -moz-box-shadow:none;
  4403. -webkit-box-shadow:none;
  4404. box-shadow:none;
  4405. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4406. font-weight:400;
  4407. font-style:normal;
  4408. font-size:14px;
  4409. }
  4410. #u65416 {
  4411. border-width:0px;
  4412. position:absolute;
  4413. left:2332px;
  4414. top:989px;
  4415. width:67px;
  4416. height:30px;
  4417. display:flex;
  4418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4419. font-weight:400;
  4420. font-style:normal;
  4421. font-size:14px;
  4422. }
  4423. #u65416 .text {
  4424. position:absolute;
  4425. align-self:center;
  4426. padding:5px 10px 5px 0px;
  4427. box-sizing:border-box;
  4428. width:100%;
  4429. }
  4430. #u65416_text {
  4431. border-width:0px;
  4432. white-space:nowrap;
  4433. text-transform:none;
  4434. }
  4435. #u65417_div {
  4436. border-width:0px;
  4437. position:absolute;
  4438. left:0px;
  4439. top:0px;
  4440. width:81px;
  4441. height:30px;
  4442. background:inherit;
  4443. background-color:rgba(255, 255, 255, 0);
  4444. border:none;
  4445. border-top:0px;
  4446. border-right:0px;
  4447. border-bottom:0px;
  4448. border-radius:0px;
  4449. border-top-left-radius:0px;
  4450. border-bottom-left-radius:0px;
  4451. -moz-box-shadow:none;
  4452. -webkit-box-shadow:none;
  4453. box-shadow:none;
  4454. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4455. font-weight:400;
  4456. font-style:normal;
  4457. font-size:14px;
  4458. color:#7F7F7F;
  4459. }
  4460. #u65417 {
  4461. border-width:0px;
  4462. position:absolute;
  4463. left:2251px;
  4464. top:1029px;
  4465. width:81px;
  4466. height:30px;
  4467. display:flex;
  4468. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4469. font-weight:400;
  4470. font-style:normal;
  4471. font-size:14px;
  4472. color:#7F7F7F;
  4473. }
  4474. #u65417 .text {
  4475. position:absolute;
  4476. align-self:center;
  4477. padding:5px 10px 5px 0px;
  4478. box-sizing:border-box;
  4479. width:100%;
  4480. }
  4481. #u65417_text {
  4482. border-width:0px;
  4483. white-space:nowrap;
  4484. text-transform:none;
  4485. }
  4486. #u65418_img {
  4487. border-width:0px;
  4488. position:absolute;
  4489. left:0px;
  4490. top:0px;
  4491. width:120px;
  4492. height:80px;
  4493. }
  4494. #u65418 {
  4495. border-width:0px;
  4496. position:absolute;
  4497. left:2332px;
  4498. top:1032px;
  4499. width:120px;
  4500. height:80px;
  4501. display:flex;
  4502. }
  4503. #u65418 .text {
  4504. position:absolute;
  4505. align-self:center;
  4506. padding:0px 0px 0px 0px;
  4507. box-sizing:border-box;
  4508. width:100%;
  4509. }
  4510. #u65418_text {
  4511. border-width:0px;
  4512. word-wrap:break-word;
  4513. text-transform:none;
  4514. }
  4515. #u65419_div {
  4516. border-width:0px;
  4517. position:absolute;
  4518. left:0px;
  4519. top:0px;
  4520. width:81px;
  4521. height:30px;
  4522. background:inherit;
  4523. background-color:rgba(255, 255, 255, 0);
  4524. border:none;
  4525. border-top:0px;
  4526. border-right:0px;
  4527. border-bottom:0px;
  4528. border-radius:0px;
  4529. border-top-left-radius:0px;
  4530. border-bottom-left-radius:0px;
  4531. -moz-box-shadow:none;
  4532. -webkit-box-shadow:none;
  4533. box-shadow:none;
  4534. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4535. font-weight:400;
  4536. font-style:normal;
  4537. font-size:14px;
  4538. color:#7F7F7F;
  4539. }
  4540. #u65419 {
  4541. border-width:0px;
  4542. position:absolute;
  4543. left:2891px;
  4544. top:949px;
  4545. width:81px;
  4546. height:30px;
  4547. display:flex;
  4548. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4549. font-weight:400;
  4550. font-style:normal;
  4551. font-size:14px;
  4552. color:#7F7F7F;
  4553. }
  4554. #u65419 .text {
  4555. position:absolute;
  4556. align-self:center;
  4557. padding:5px 10px 5px 0px;
  4558. box-sizing:border-box;
  4559. width:100%;
  4560. }
  4561. #u65419_text {
  4562. border-width:0px;
  4563. white-space:nowrap;
  4564. text-transform:none;
  4565. }
  4566. #u65420_div {
  4567. border-width:0px;
  4568. position:absolute;
  4569. left:0px;
  4570. top:0px;
  4571. width:152px;
  4572. height:50px;
  4573. background:inherit;
  4574. background-color:rgba(255, 255, 255, 0);
  4575. border:none;
  4576. border-top:0px;
  4577. border-right:0px;
  4578. border-bottom:0px;
  4579. border-radius:0px;
  4580. border-top-left-radius:0px;
  4581. border-bottom-left-radius:0px;
  4582. -moz-box-shadow:none;
  4583. -webkit-box-shadow:none;
  4584. box-shadow:none;
  4585. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4586. font-weight:400;
  4587. font-style:normal;
  4588. font-size:14px;
  4589. line-height:40px;
  4590. }
  4591. #u65420 {
  4592. border-width:0px;
  4593. position:absolute;
  4594. left:2972px;
  4595. top:939px;
  4596. width:152px;
  4597. height:50px;
  4598. display:flex;
  4599. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4600. font-weight:400;
  4601. font-style:normal;
  4602. font-size:14px;
  4603. line-height:40px;
  4604. }
  4605. #u65420 .text {
  4606. position:absolute;
  4607. align-self:center;
  4608. padding:5px 10px 5px 0px;
  4609. box-sizing:border-box;
  4610. width:100%;
  4611. }
  4612. #u65420_text {
  4613. border-width:0px;
  4614. white-space:nowrap;
  4615. text-transform:none;
  4616. }
  4617. #u65421_div {
  4618. border-width:0px;
  4619. position:absolute;
  4620. left:0px;
  4621. top:0px;
  4622. width:78px;
  4623. height:40px;
  4624. background:inherit;
  4625. background-color:rgba(255, 255, 255, 0);
  4626. border:none;
  4627. border-top:0px;
  4628. border-right:0px;
  4629. border-bottom:0px;
  4630. border-radius:0px;
  4631. border-top-left-radius:0px;
  4632. border-bottom-left-radius:0px;
  4633. -moz-box-shadow:none;
  4634. -webkit-box-shadow:none;
  4635. box-shadow:none;
  4636. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4637. font-weight:400;
  4638. font-style:normal;
  4639. font-size:14px;
  4640. color:#7F7F7F;
  4641. line-height:40px;
  4642. }
  4643. #u65421 {
  4644. border-width:0px;
  4645. position:absolute;
  4646. left:2251px;
  4647. top:699px;
  4648. width:78px;
  4649. height:40px;
  4650. display:flex;
  4651. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4652. font-weight:400;
  4653. font-style:normal;
  4654. font-size:14px;
  4655. color:#7F7F7F;
  4656. line-height:40px;
  4657. }
  4658. #u65421 .text {
  4659. position:absolute;
  4660. align-self:center;
  4661. padding:0px 0px 0px 0px;
  4662. box-sizing:border-box;
  4663. width:100%;
  4664. }
  4665. #u65421_text {
  4666. border-width:0px;
  4667. white-space:nowrap;
  4668. text-transform:none;
  4669. }
  4670. #u65422_img {
  4671. border-width:0px;
  4672. position:absolute;
  4673. left:0px;
  4674. top:0px;
  4675. width:161px;
  4676. height:107px;
  4677. }
  4678. #u65422 {
  4679. border-width:0px;
  4680. position:absolute;
  4681. left:2330px;
  4682. top:699px;
  4683. width:161px;
  4684. height:107px;
  4685. display:flex;
  4686. }
  4687. #u65422 .text {
  4688. position:absolute;
  4689. align-self:center;
  4690. padding:0px 0px 0px 0px;
  4691. box-sizing:border-box;
  4692. width:100%;
  4693. }
  4694. #u65422_text {
  4695. border-width:0px;
  4696. word-wrap:break-word;
  4697. text-transform:none;
  4698. }
  4699. #u65423_div {
  4700. border-width:0px;
  4701. position:absolute;
  4702. left:0px;
  4703. top:0px;
  4704. width:57px;
  4705. height:40px;
  4706. background:inherit;
  4707. background-color:rgba(255, 255, 255, 0);
  4708. border:none;
  4709. border-top:0px;
  4710. border-right:0px;
  4711. border-bottom:0px;
  4712. border-radius:0px;
  4713. border-top-left-radius:0px;
  4714. border-bottom-left-radius:0px;
  4715. -moz-box-shadow:none;
  4716. -webkit-box-shadow:none;
  4717. box-shadow:none;
  4718. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4719. font-weight:400;
  4720. font-style:normal;
  4721. font-size:14px;
  4722. color:#1890FF;
  4723. line-height:40px;
  4724. }
  4725. #u65423 {
  4726. border-width:0px;
  4727. position:absolute;
  4728. left:2757px;
  4729. top:609px;
  4730. width:57px;
  4731. height:40px;
  4732. display:flex;
  4733. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4734. font-weight:400;
  4735. font-style:normal;
  4736. font-size:14px;
  4737. color:#1890FF;
  4738. line-height:40px;
  4739. }
  4740. #u65423 .text {
  4741. position:absolute;
  4742. align-self:center;
  4743. padding:0px 0px 0px 0px;
  4744. box-sizing:border-box;
  4745. width:100%;
  4746. }
  4747. #u65423_text {
  4748. border-width:0px;
  4749. white-space:nowrap;
  4750. text-transform:none;
  4751. }
  4752. #u65424_div {
  4753. border-width:0px;
  4754. position:absolute;
  4755. left:0px;
  4756. top:0px;
  4757. width:80px;
  4758. height:40px;
  4759. background:inherit;
  4760. background-color:rgba(255, 255, 255, 0);
  4761. border:none;
  4762. border-top:0px;
  4763. border-right:0px;
  4764. border-bottom:0px;
  4765. border-radius:0px;
  4766. border-top-left-radius:0px;
  4767. border-bottom-left-radius:0px;
  4768. -moz-box-shadow:none;
  4769. -webkit-box-shadow:none;
  4770. box-shadow:none;
  4771. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4772. font-weight:400;
  4773. font-style:normal;
  4774. font-size:14px;
  4775. color:#7F7F7F;
  4776. line-height:40px;
  4777. }
  4778. #u65424 {
  4779. border-width:0px;
  4780. position:absolute;
  4781. left:2571px;
  4782. top:649px;
  4783. width:80px;
  4784. height:40px;
  4785. display:flex;
  4786. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4787. font-weight:400;
  4788. font-style:normal;
  4789. font-size:14px;
  4790. color:#7F7F7F;
  4791. line-height:40px;
  4792. }
  4793. #u65424 .text {
  4794. position:absolute;
  4795. align-self:center;
  4796. padding:0px 0px 0px 0px;
  4797. box-sizing:border-box;
  4798. width:100%;
  4799. }
  4800. #u65424_text {
  4801. border-width:0px;
  4802. word-wrap:break-word;
  4803. text-transform:none;
  4804. }
  4805. #u65425_div {
  4806. border-width:0px;
  4807. position:absolute;
  4808. left:0px;
  4809. top:0px;
  4810. width:113px;
  4811. height:40px;
  4812. background:inherit;
  4813. background-color:rgba(255, 255, 255, 0);
  4814. border:none;
  4815. border-top:0px;
  4816. border-right:0px;
  4817. border-bottom:0px;
  4818. border-radius:0px;
  4819. border-top-left-radius:0px;
  4820. border-bottom-left-radius:0px;
  4821. -moz-box-shadow:none;
  4822. -webkit-box-shadow:none;
  4823. box-shadow:none;
  4824. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4825. font-weight:400;
  4826. font-style:normal;
  4827. font-size:14px;
  4828. line-height:40px;
  4829. }
  4830. #u65425 {
  4831. border-width:0px;
  4832. position:absolute;
  4833. left:2651px;
  4834. top:649px;
  4835. width:113px;
  4836. height:40px;
  4837. display:flex;
  4838. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4839. font-weight:400;
  4840. font-style:normal;
  4841. font-size:14px;
  4842. line-height:40px;
  4843. }
  4844. #u65425 .text {
  4845. position:absolute;
  4846. align-self:center;
  4847. padding:0px 0px 0px 0px;
  4848. box-sizing:border-box;
  4849. width:100%;
  4850. }
  4851. #u65425_text {
  4852. border-width:0px;
  4853. white-space:nowrap;
  4854. text-transform:none;
  4855. }
  4856. #u65426_div {
  4857. border-width:0px;
  4858. position:absolute;
  4859. left:0px;
  4860. top:0px;
  4861. width:73px;
  4862. height:40px;
  4863. background:inherit;
  4864. background-color:rgba(255, 255, 255, 0);
  4865. border:none;
  4866. border-left:0px;
  4867. border-top:0px;
  4868. border-right:0px;
  4869. border-radius:0px;
  4870. border-bottom-right-radius:0px;
  4871. border-bottom-left-radius:0px;
  4872. -moz-box-shadow:none;
  4873. -webkit-box-shadow:none;
  4874. box-shadow:none;
  4875. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4876. font-weight:400;
  4877. font-style:normal;
  4878. font-size:18px;
  4879. }
  4880. #u65426 {
  4881. border-width:0px;
  4882. position:absolute;
  4883. left:2251px;
  4884. top:529px;
  4885. width:73px;
  4886. height:40px;
  4887. display:flex;
  4888. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4889. font-weight:400;
  4890. font-style:normal;
  4891. font-size:18px;
  4892. }
  4893. #u65426 .text {
  4894. position:absolute;
  4895. align-self:center;
  4896. padding:0px 0px 0px 0px;
  4897. box-sizing:border-box;
  4898. width:100%;
  4899. }
  4900. #u65426_text {
  4901. border-width:0px;
  4902. white-space:nowrap;
  4903. text-transform:none;
  4904. }
  4905. #u65427_div {
  4906. border-width:0px;
  4907. position:absolute;
  4908. left:0px;
  4909. top:0px;
  4910. width:80px;
  4911. height:40px;
  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-Regular', 'PingFang SC', sans-serif;
  4925. font-weight:400;
  4926. font-style:normal;
  4927. font-size:14px;
  4928. color:#7F7F7F;
  4929. line-height:40px;
  4930. }
  4931. #u65427 {
  4932. border-width:0px;
  4933. position:absolute;
  4934. left:2251px;
  4935. top:569px;
  4936. width:80px;
  4937. height:40px;
  4938. display:flex;
  4939. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4940. font-weight:400;
  4941. font-style:normal;
  4942. font-size:14px;
  4943. color:#7F7F7F;
  4944. line-height:40px;
  4945. }
  4946. #u65427 .text {
  4947. position:absolute;
  4948. align-self:center;
  4949. padding:0px 0px 0px 0px;
  4950. box-sizing:border-box;
  4951. width:100%;
  4952. }
  4953. #u65427_text {
  4954. border-width:0px;
  4955. word-wrap:break-word;
  4956. text-transform:none;
  4957. }
  4958. #u65428_div {
  4959. border-width:0px;
  4960. position:absolute;
  4961. left:0px;
  4962. top:0px;
  4963. width:160px;
  4964. height:40px;
  4965. background:inherit;
  4966. background-color:rgba(255, 255, 255, 0);
  4967. border:none;
  4968. border-top:0px;
  4969. border-right:0px;
  4970. border-bottom:0px;
  4971. border-radius:0px;
  4972. border-top-left-radius:0px;
  4973. border-bottom-left-radius:0px;
  4974. -moz-box-shadow:none;
  4975. -webkit-box-shadow:none;
  4976. box-shadow:none;
  4977. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4978. font-weight:400;
  4979. font-style:normal;
  4980. font-size:14px;
  4981. line-height:40px;
  4982. }
  4983. #u65428 {
  4984. border-width:0px;
  4985. position:absolute;
  4986. left:2331px;
  4987. top:569px;
  4988. width:160px;
  4989. height:40px;
  4990. display:flex;
  4991. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4992. font-weight:400;
  4993. font-style:normal;
  4994. font-size:14px;
  4995. line-height:40px;
  4996. }
  4997. #u65428 .text {
  4998. position:absolute;
  4999. align-self:center;
  5000. padding:0px 0px 0px 0px;
  5001. box-sizing:border-box;
  5002. width:100%;
  5003. }
  5004. #u65428_text {
  5005. border-width:0px;
  5006. word-wrap:break-word;
  5007. text-transform:none;
  5008. }
  5009. #u65429_div {
  5010. border-width:0px;
  5011. position:absolute;
  5012. left:0px;
  5013. top:0px;
  5014. width:80px;
  5015. height:40px;
  5016. background:inherit;
  5017. background-color:rgba(255, 255, 255, 0);
  5018. border:none;
  5019. border-top:0px;
  5020. border-right:0px;
  5021. border-bottom:0px;
  5022. border-radius:0px;
  5023. border-top-left-radius:0px;
  5024. border-bottom-left-radius:0px;
  5025. -moz-box-shadow:none;
  5026. -webkit-box-shadow:none;
  5027. box-shadow:none;
  5028. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5029. font-weight:400;
  5030. font-style:normal;
  5031. font-size:14px;
  5032. color:#7F7F7F;
  5033. line-height:40px;
  5034. }
  5035. #u65429 {
  5036. border-width:0px;
  5037. position:absolute;
  5038. left:2571px;
  5039. top:569px;
  5040. width:80px;
  5041. height:40px;
  5042. display:flex;
  5043. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5044. font-weight:400;
  5045. font-style:normal;
  5046. font-size:14px;
  5047. color:#7F7F7F;
  5048. line-height:40px;
  5049. }
  5050. #u65429 .text {
  5051. position:absolute;
  5052. align-self:center;
  5053. padding:0px 0px 0px 0px;
  5054. box-sizing:border-box;
  5055. width:100%;
  5056. }
  5057. #u65429_text {
  5058. border-width:0px;
  5059. word-wrap:break-word;
  5060. text-transform:none;
  5061. }
  5062. #u65430_div {
  5063. border-width:0px;
  5064. position:absolute;
  5065. left:0px;
  5066. top:0px;
  5067. width:160px;
  5068. height:40px;
  5069. background:inherit;
  5070. background-color:rgba(255, 255, 255, 0);
  5071. border:none;
  5072. border-top:0px;
  5073. border-right:0px;
  5074. border-bottom:0px;
  5075. border-radius:0px;
  5076. border-top-left-radius:0px;
  5077. border-bottom-left-radius:0px;
  5078. -moz-box-shadow:none;
  5079. -webkit-box-shadow:none;
  5080. box-shadow:none;
  5081. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5082. font-weight:400;
  5083. font-style:normal;
  5084. font-size:14px;
  5085. line-height:40px;
  5086. }
  5087. #u65430 {
  5088. border-width:0px;
  5089. position:absolute;
  5090. left:2651px;
  5091. top:569px;
  5092. width:160px;
  5093. height:40px;
  5094. display:flex;
  5095. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5096. font-weight:400;
  5097. font-style:normal;
  5098. font-size:14px;
  5099. line-height:40px;
  5100. }
  5101. #u65430 .text {
  5102. position:absolute;
  5103. align-self:center;
  5104. padding:0px 0px 0px 0px;
  5105. box-sizing:border-box;
  5106. width:100%;
  5107. }
  5108. #u65430_text {
  5109. border-width:0px;
  5110. word-wrap:break-word;
  5111. text-transform:none;
  5112. }
  5113. #u65431_div {
  5114. border-width:0px;
  5115. position:absolute;
  5116. left:0px;
  5117. top:0px;
  5118. width:80px;
  5119. height:40px;
  5120. background:inherit;
  5121. background-color:rgba(255, 255, 255, 0);
  5122. border:none;
  5123. border-top:0px;
  5124. border-right:0px;
  5125. border-bottom:0px;
  5126. border-radius:0px;
  5127. border-top-left-radius:0px;
  5128. border-bottom-left-radius:0px;
  5129. -moz-box-shadow:none;
  5130. -webkit-box-shadow:none;
  5131. box-shadow:none;
  5132. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5133. font-weight:400;
  5134. font-style:normal;
  5135. font-size:14px;
  5136. color:#7F7F7F;
  5137. line-height:40px;
  5138. }
  5139. #u65431 {
  5140. border-width:0px;
  5141. position:absolute;
  5142. left:2891px;
  5143. top:569px;
  5144. width:80px;
  5145. height:40px;
  5146. display:flex;
  5147. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5148. font-weight:400;
  5149. font-style:normal;
  5150. font-size:14px;
  5151. color:#7F7F7F;
  5152. line-height:40px;
  5153. }
  5154. #u65431 .text {
  5155. position:absolute;
  5156. align-self:center;
  5157. padding:0px 0px 0px 0px;
  5158. box-sizing:border-box;
  5159. width:100%;
  5160. }
  5161. #u65431_text {
  5162. border-width:0px;
  5163. word-wrap:break-word;
  5164. text-transform:none;
  5165. }
  5166. #u65432_div {
  5167. border-width:0px;
  5168. position:absolute;
  5169. left:0px;
  5170. top:0px;
  5171. width:160px;
  5172. height:40px;
  5173. background:inherit;
  5174. background-color:rgba(255, 255, 255, 0);
  5175. border:none;
  5176. border-top:0px;
  5177. border-right:0px;
  5178. border-bottom:0px;
  5179. border-radius:0px;
  5180. border-top-left-radius:0px;
  5181. border-bottom-left-radius:0px;
  5182. -moz-box-shadow:none;
  5183. -webkit-box-shadow:none;
  5184. box-shadow:none;
  5185. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5186. font-weight:400;
  5187. font-style:normal;
  5188. font-size:14px;
  5189. line-height:40px;
  5190. }
  5191. #u65432 {
  5192. border-width:0px;
  5193. position:absolute;
  5194. left:2971px;
  5195. top:569px;
  5196. width:160px;
  5197. height:40px;
  5198. display:flex;
  5199. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5200. font-weight:400;
  5201. font-style:normal;
  5202. font-size:14px;
  5203. line-height:40px;
  5204. }
  5205. #u65432 .text {
  5206. position:absolute;
  5207. align-self:center;
  5208. padding:0px 0px 0px 0px;
  5209. box-sizing:border-box;
  5210. width:100%;
  5211. }
  5212. #u65432_text {
  5213. border-width:0px;
  5214. word-wrap:break-word;
  5215. text-transform:none;
  5216. }
  5217. #u65433_div {
  5218. border-width:0px;
  5219. position:absolute;
  5220. left:0px;
  5221. top:0px;
  5222. width:80px;
  5223. height:40px;
  5224. background:inherit;
  5225. background-color:rgba(255, 255, 255, 0);
  5226. border:none;
  5227. border-top:0px;
  5228. border-right:0px;
  5229. border-bottom:0px;
  5230. border-radius:0px;
  5231. border-top-left-radius:0px;
  5232. border-bottom-left-radius:0px;
  5233. -moz-box-shadow:none;
  5234. -webkit-box-shadow:none;
  5235. box-shadow:none;
  5236. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5237. font-weight:400;
  5238. font-style:normal;
  5239. font-size:14px;
  5240. color:#7F7F7F;
  5241. line-height:40px;
  5242. }
  5243. #u65433 {
  5244. border-width:0px;
  5245. position:absolute;
  5246. left:2571px;
  5247. top:609px;
  5248. width:80px;
  5249. height:40px;
  5250. display:flex;
  5251. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5252. font-weight:400;
  5253. font-style:normal;
  5254. font-size:14px;
  5255. color:#7F7F7F;
  5256. line-height:40px;
  5257. }
  5258. #u65433 .text {
  5259. position:absolute;
  5260. align-self:center;
  5261. padding:0px 0px 0px 0px;
  5262. box-sizing:border-box;
  5263. width:100%;
  5264. }
  5265. #u65433_text {
  5266. border-width:0px;
  5267. word-wrap:break-word;
  5268. text-transform:none;
  5269. }
  5270. #u65434_div {
  5271. border-width:0px;
  5272. position:absolute;
  5273. left:0px;
  5274. top:0px;
  5275. width:160px;
  5276. height:40px;
  5277. background:inherit;
  5278. background-color:rgba(255, 255, 255, 0);
  5279. border:none;
  5280. border-top:0px;
  5281. border-right:0px;
  5282. border-bottom:0px;
  5283. border-radius:0px;
  5284. border-top-left-radius:0px;
  5285. border-bottom-left-radius:0px;
  5286. -moz-box-shadow:none;
  5287. -webkit-box-shadow:none;
  5288. box-shadow:none;
  5289. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5290. font-weight:400;
  5291. font-style:normal;
  5292. font-size:14px;
  5293. line-height:40px;
  5294. }
  5295. #u65434 {
  5296. border-width:0px;
  5297. position:absolute;
  5298. left:2651px;
  5299. top:609px;
  5300. width:160px;
  5301. height:40px;
  5302. display:flex;
  5303. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5304. font-weight:400;
  5305. font-style:normal;
  5306. font-size:14px;
  5307. line-height:40px;
  5308. }
  5309. #u65434 .text {
  5310. position:absolute;
  5311. align-self:center;
  5312. padding:0px 0px 0px 0px;
  5313. box-sizing:border-box;
  5314. width:100%;
  5315. }
  5316. #u65434_text {
  5317. border-width:0px;
  5318. word-wrap:break-word;
  5319. text-transform:none;
  5320. }
  5321. #u65435_div {
  5322. border-width:0px;
  5323. position:absolute;
  5324. left:0px;
  5325. top:0px;
  5326. width:80px;
  5327. height:40px;
  5328. background:inherit;
  5329. background-color:rgba(255, 255, 255, 0);
  5330. border:none;
  5331. border-top:0px;
  5332. border-right:0px;
  5333. border-bottom:0px;
  5334. border-radius:0px;
  5335. border-top-left-radius:0px;
  5336. border-bottom-left-radius:0px;
  5337. -moz-box-shadow:none;
  5338. -webkit-box-shadow:none;
  5339. box-shadow:none;
  5340. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5341. font-weight:400;
  5342. font-style:normal;
  5343. font-size:14px;
  5344. color:#7F7F7F;
  5345. line-height:40px;
  5346. }
  5347. #u65435 {
  5348. border-width:0px;
  5349. position:absolute;
  5350. left:2891px;
  5351. top:609px;
  5352. width:80px;
  5353. height:40px;
  5354. display:flex;
  5355. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5356. font-weight:400;
  5357. font-style:normal;
  5358. font-size:14px;
  5359. color:#7F7F7F;
  5360. line-height:40px;
  5361. }
  5362. #u65435 .text {
  5363. position:absolute;
  5364. align-self:center;
  5365. padding:0px 0px 0px 0px;
  5366. box-sizing:border-box;
  5367. width:100%;
  5368. }
  5369. #u65435_text {
  5370. border-width:0px;
  5371. word-wrap:break-word;
  5372. text-transform:none;
  5373. }
  5374. #u65436_div {
  5375. border-width:0px;
  5376. position:absolute;
  5377. left:0px;
  5378. top:0px;
  5379. width:160px;
  5380. height:40px;
  5381. background:inherit;
  5382. background-color:rgba(255, 255, 255, 0);
  5383. border:none;
  5384. border-top:0px;
  5385. border-right:0px;
  5386. border-bottom:0px;
  5387. border-radius:0px;
  5388. border-top-left-radius:0px;
  5389. border-bottom-left-radius:0px;
  5390. -moz-box-shadow:none;
  5391. -webkit-box-shadow:none;
  5392. box-shadow:none;
  5393. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5394. font-weight:400;
  5395. font-style:normal;
  5396. font-size:14px;
  5397. line-height:40px;
  5398. }
  5399. #u65436 {
  5400. border-width:0px;
  5401. position:absolute;
  5402. left:2971px;
  5403. top:609px;
  5404. width:160px;
  5405. height:40px;
  5406. display:flex;
  5407. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5408. font-weight:400;
  5409. font-style:normal;
  5410. font-size:14px;
  5411. line-height:40px;
  5412. }
  5413. #u65436 .text {
  5414. position:absolute;
  5415. align-self:center;
  5416. padding:0px 0px 0px 0px;
  5417. box-sizing:border-box;
  5418. width:100%;
  5419. }
  5420. #u65436_text {
  5421. border-width:0px;
  5422. word-wrap:break-word;
  5423. text-transform:none;
  5424. }
  5425. #u65437_div {
  5426. border-width:0px;
  5427. position:absolute;
  5428. left:0px;
  5429. top:0px;
  5430. width:71px;
  5431. height:40px;
  5432. background:inherit;
  5433. background-color:rgba(255, 255, 255, 0);
  5434. border:none;
  5435. border-top:0px;
  5436. border-right:0px;
  5437. border-bottom:0px;
  5438. border-radius:0px;
  5439. border-top-left-radius:0px;
  5440. border-bottom-left-radius:0px;
  5441. -moz-box-shadow:none;
  5442. -webkit-box-shadow:none;
  5443. box-shadow:none;
  5444. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5445. font-weight:400;
  5446. font-style:normal;
  5447. font-size:14px;
  5448. color:#7F7F7F;
  5449. line-height:40px;
  5450. }
  5451. #u65437 {
  5452. border-width:0px;
  5453. position:absolute;
  5454. left:2251px;
  5455. top:649px;
  5456. width:71px;
  5457. height:40px;
  5458. display:flex;
  5459. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5460. font-weight:400;
  5461. font-style:normal;
  5462. font-size:14px;
  5463. color:#7F7F7F;
  5464. line-height:40px;
  5465. }
  5466. #u65437 .text {
  5467. position:absolute;
  5468. align-self:center;
  5469. padding:0px 0px 0px 0px;
  5470. box-sizing:border-box;
  5471. width:100%;
  5472. }
  5473. #u65437_text {
  5474. border-width:0px;
  5475. white-space:nowrap;
  5476. text-transform:none;
  5477. }
  5478. #u65438_div {
  5479. border-width:0px;
  5480. position:absolute;
  5481. left:0px;
  5482. top:0px;
  5483. width:160px;
  5484. height:40px;
  5485. background:inherit;
  5486. background-color:rgba(255, 255, 255, 0);
  5487. border:none;
  5488. border-top:0px;
  5489. border-right:0px;
  5490. border-bottom:0px;
  5491. border-radius:0px;
  5492. border-top-left-radius:0px;
  5493. border-bottom-left-radius:0px;
  5494. -moz-box-shadow:none;
  5495. -webkit-box-shadow:none;
  5496. box-shadow:none;
  5497. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5498. font-weight:400;
  5499. font-style:normal;
  5500. font-size:14px;
  5501. line-height:40px;
  5502. }
  5503. #u65438 {
  5504. border-width:0px;
  5505. position:absolute;
  5506. left:2331px;
  5507. top:649px;
  5508. width:160px;
  5509. height:40px;
  5510. display:flex;
  5511. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5512. font-weight:400;
  5513. font-style:normal;
  5514. font-size:14px;
  5515. line-height:40px;
  5516. }
  5517. #u65438 .text {
  5518. position:absolute;
  5519. align-self:center;
  5520. padding:0px 0px 0px 0px;
  5521. box-sizing:border-box;
  5522. width:100%;
  5523. }
  5524. #u65438_text {
  5525. border-width:0px;
  5526. word-wrap:break-word;
  5527. text-transform:none;
  5528. }
  5529. #u65439_div {
  5530. border-width:0px;
  5531. position:absolute;
  5532. left:0px;
  5533. top:0px;
  5534. width:80px;
  5535. height:40px;
  5536. background:inherit;
  5537. background-color:rgba(255, 255, 255, 0);
  5538. border:none;
  5539. border-top:0px;
  5540. border-right:0px;
  5541. border-bottom:0px;
  5542. border-radius:0px;
  5543. border-top-left-radius:0px;
  5544. border-bottom-left-radius:0px;
  5545. -moz-box-shadow:none;
  5546. -webkit-box-shadow:none;
  5547. box-shadow:none;
  5548. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5549. font-weight:400;
  5550. font-style:normal;
  5551. font-size:14px;
  5552. color:#7F7F7F;
  5553. line-height:40px;
  5554. }
  5555. #u65439 {
  5556. border-width:0px;
  5557. position:absolute;
  5558. left:2251px;
  5559. top:609px;
  5560. width:80px;
  5561. height:40px;
  5562. display:flex;
  5563. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5564. font-weight:400;
  5565. font-style:normal;
  5566. font-size:14px;
  5567. color:#7F7F7F;
  5568. line-height:40px;
  5569. }
  5570. #u65439 .text {
  5571. position:absolute;
  5572. align-self:center;
  5573. padding:0px 0px 0px 0px;
  5574. box-sizing:border-box;
  5575. width:100%;
  5576. }
  5577. #u65439_text {
  5578. border-width:0px;
  5579. word-wrap:break-word;
  5580. text-transform:none;
  5581. }
  5582. #u65440_div {
  5583. border-width:0px;
  5584. position:absolute;
  5585. left:0px;
  5586. top:0px;
  5587. width:192px;
  5588. height:40px;
  5589. background:inherit;
  5590. background-color:rgba(255, 255, 255, 0);
  5591. border:none;
  5592. border-top:0px;
  5593. border-right:0px;
  5594. border-bottom:0px;
  5595. border-radius:0px;
  5596. border-top-left-radius:0px;
  5597. border-bottom-left-radius:0px;
  5598. -moz-box-shadow:none;
  5599. -webkit-box-shadow:none;
  5600. box-shadow:none;
  5601. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5602. font-weight:400;
  5603. font-style:normal;
  5604. font-size:14px;
  5605. line-height:40px;
  5606. }
  5607. #u65440 {
  5608. border-width:0px;
  5609. position:absolute;
  5610. left:2331px;
  5611. top:609px;
  5612. width:192px;
  5613. height:40px;
  5614. display:flex;
  5615. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5616. font-weight:400;
  5617. font-style:normal;
  5618. font-size:14px;
  5619. line-height:40px;
  5620. }
  5621. #u65440 .text {
  5622. position:absolute;
  5623. align-self:center;
  5624. padding:0px 0px 0px 0px;
  5625. box-sizing:border-box;
  5626. width:100%;
  5627. }
  5628. #u65440_text {
  5629. border-width:0px;
  5630. white-space:nowrap;
  5631. text-transform:none;
  5632. }
  5633. #u65441_div {
  5634. border-width:0px;
  5635. position:absolute;
  5636. left:0px;
  5637. top:0px;
  5638. width:414px;
  5639. height:40px;
  5640. background:inherit;
  5641. background-color:rgba(255, 255, 255, 0);
  5642. border:none;
  5643. border-top:0px;
  5644. border-right:0px;
  5645. border-bottom:0px;
  5646. border-radius:0px;
  5647. border-top-left-radius:0px;
  5648. border-bottom-left-radius:0px;
  5649. -moz-box-shadow:none;
  5650. -webkit-box-shadow:none;
  5651. box-shadow:none;
  5652. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5653. font-weight:400;
  5654. font-style:normal;
  5655. font-size:14px;
  5656. color:#D9001B;
  5657. line-height:40px;
  5658. }
  5659. #u65441 {
  5660. border-width:0px;
  5661. position:absolute;
  5662. left:2711px;
  5663. top:706px;
  5664. width:414px;
  5665. height:40px;
  5666. display:flex;
  5667. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5668. font-weight:400;
  5669. font-style:normal;
  5670. font-size:14px;
  5671. color:#D9001B;
  5672. line-height:40px;
  5673. }
  5674. #u65441 .text {
  5675. position:absolute;
  5676. align-self:center;
  5677. padding:0px 0px 0px 0px;
  5678. box-sizing:border-box;
  5679. width:100%;
  5680. }
  5681. #u65441_text {
  5682. border-width:0px;
  5683. white-space:nowrap;
  5684. text-transform:none;
  5685. }
  5686. #u65442 {
  5687. border-width:0px;
  5688. position:absolute;
  5689. left:2611px;
  5690. top:649px;
  5691. width:0px;
  5692. height:0px;
  5693. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5694. font-weight:400;
  5695. font-style:normal;
  5696. font-size:28px;
  5697. color:#333333;
  5698. }
  5699. #u65442_seg0 {
  5700. border-width:0px;
  5701. position:absolute;
  5702. left:-5px;
  5703. top:0px;
  5704. width:10px;
  5705. height:82px;
  5706. }
  5707. #u65442_seg1 {
  5708. border-width:0px;
  5709. position:absolute;
  5710. left:-5px;
  5711. top:72px;
  5712. width:105px;
  5713. height:10px;
  5714. }
  5715. #u65442_seg2 {
  5716. border-width:0px;
  5717. position:absolute;
  5718. left:90px;
  5719. top:68px;
  5720. width:18px;
  5721. height:18px;
  5722. }
  5723. #u65442_text {
  5724. border-width:0px;
  5725. position:absolute;
  5726. left:-38px;
  5727. top:69px;
  5728. width:100px;
  5729. word-wrap:break-word;
  5730. text-transform:none;
  5731. visibility:hidden;
  5732. }
  5733. #u65443 {
  5734. border-width:0px;
  5735. position:absolute;
  5736. left:0px;
  5737. top:0px;
  5738. width:0px;
  5739. height:0px;
  5740. }
  5741. #u65444_div {
  5742. border-width:0px;
  5743. position:absolute;
  5744. left:0px;
  5745. top:0px;
  5746. width:1000px;
  5747. height:1139px;
  5748. background:inherit;
  5749. background-color:rgba(242, 242, 242, 1);
  5750. box-sizing:border-box;
  5751. border-width:1px;
  5752. border-style:solid;
  5753. border-color:rgba(242, 242, 242, 1);
  5754. border-radius:0px;
  5755. -moz-box-shadow:none;
  5756. -webkit-box-shadow:none;
  5757. box-shadow:none;
  5758. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5759. font-weight:400;
  5760. font-style:normal;
  5761. font-size:14px;
  5762. color:#AAAAAA;
  5763. text-align:center;
  5764. line-height:30px;
  5765. }
  5766. #u65444 {
  5767. border-width:0px;
  5768. position:absolute;
  5769. left:3252px;
  5770. top:122px;
  5771. width:1000px;
  5772. height:1139px;
  5773. display:flex;
  5774. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5775. font-weight:400;
  5776. font-style:normal;
  5777. font-size:14px;
  5778. color:#AAAAAA;
  5779. text-align:center;
  5780. line-height:30px;
  5781. }
  5782. #u65444 .text {
  5783. position:absolute;
  5784. align-self:center;
  5785. padding:5px 10px 5px 10px;
  5786. box-sizing:border-box;
  5787. width:100%;
  5788. }
  5789. #u65444_text {
  5790. border-width:0px;
  5791. word-wrap:break-word;
  5792. text-transform:none;
  5793. visibility:hidden;
  5794. }
  5795. #u65445_div {
  5796. border-width:0px;
  5797. position:absolute;
  5798. left:0px;
  5799. top:0px;
  5800. width:1000px;
  5801. height:600px;
  5802. background:inherit;
  5803. background-color:rgba(255, 255, 255, 1);
  5804. box-sizing:border-box;
  5805. border-width:1px;
  5806. border-style:solid;
  5807. border-color:rgba(242, 242, 242, 1);
  5808. border-radius:0px;
  5809. -moz-box-shadow:none;
  5810. -webkit-box-shadow:none;
  5811. box-shadow:none;
  5812. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5813. font-weight:400;
  5814. font-style:normal;
  5815. font-size:14px;
  5816. color:#AAAAAA;
  5817. text-align:center;
  5818. line-height:30px;
  5819. }
  5820. #u65445 {
  5821. border-width:0px;
  5822. position:absolute;
  5823. left:3252px;
  5824. top:273px;
  5825. width:1000px;
  5826. height:600px;
  5827. display:flex;
  5828. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5829. font-weight:400;
  5830. font-style:normal;
  5831. font-size:14px;
  5832. color:#AAAAAA;
  5833. text-align:center;
  5834. line-height:30px;
  5835. }
  5836. #u65445 .text {
  5837. position:absolute;
  5838. align-self:center;
  5839. padding:5px 10px 5px 10px;
  5840. box-sizing:border-box;
  5841. width:100%;
  5842. }
  5843. #u65445_text {
  5844. border-width:0px;
  5845. word-wrap:break-word;
  5846. text-transform:none;
  5847. visibility:hidden;
  5848. }
  5849. #u65446_div {
  5850. border-width:0px;
  5851. position:absolute;
  5852. left:0px;
  5853. top:0px;
  5854. width:73px;
  5855. height:40px;
  5856. background:inherit;
  5857. background-color:rgba(255, 255, 255, 0);
  5858. border:none;
  5859. border-left:0px;
  5860. border-top:0px;
  5861. border-right:0px;
  5862. border-radius:0px;
  5863. border-bottom-right-radius:0px;
  5864. border-bottom-left-radius:0px;
  5865. -moz-box-shadow:none;
  5866. -webkit-box-shadow:none;
  5867. box-shadow:none;
  5868. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5869. font-weight:400;
  5870. font-style:normal;
  5871. font-size:18px;
  5872. }
  5873. #u65446 {
  5874. border-width:0px;
  5875. position:absolute;
  5876. left:3292px;
  5877. top:289px;
  5878. width:73px;
  5879. height:40px;
  5880. display:flex;
  5881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5882. font-weight:400;
  5883. font-style:normal;
  5884. font-size:18px;
  5885. }
  5886. #u65446 .text {
  5887. position:absolute;
  5888. align-self:center;
  5889. padding:0px 0px 0px 0px;
  5890. box-sizing:border-box;
  5891. width:100%;
  5892. }
  5893. #u65446_text {
  5894. border-width:0px;
  5895. white-space:nowrap;
  5896. text-transform:none;
  5897. }
  5898. #u65447_div {
  5899. border-width:0px;
  5900. position:absolute;
  5901. left:0px;
  5902. top:0px;
  5903. width:81px;
  5904. height:30px;
  5905. background:inherit;
  5906. background-color:rgba(255, 255, 255, 0);
  5907. border:none;
  5908. border-top:0px;
  5909. border-right:0px;
  5910. border-bottom:0px;
  5911. border-radius:0px;
  5912. border-top-left-radius:0px;
  5913. border-bottom-left-radius:0px;
  5914. -moz-box-shadow:none;
  5915. -webkit-box-shadow:none;
  5916. box-shadow:none;
  5917. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5918. font-weight:400;
  5919. font-style:normal;
  5920. font-size:14px;
  5921. color:#7F7F7F;
  5922. }
  5923. #u65447 {
  5924. border-width:0px;
  5925. position:absolute;
  5926. left:3292px;
  5927. top:339px;
  5928. width:81px;
  5929. height:30px;
  5930. display:flex;
  5931. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5932. font-weight:400;
  5933. font-style:normal;
  5934. font-size:14px;
  5935. color:#7F7F7F;
  5936. }
  5937. #u65447 .text {
  5938. position:absolute;
  5939. align-self:center;
  5940. padding:5px 10px 5px 0px;
  5941. box-sizing:border-box;
  5942. width:100%;
  5943. }
  5944. #u65447_text {
  5945. border-width:0px;
  5946. white-space:nowrap;
  5947. text-transform:none;
  5948. }
  5949. #u65448_div {
  5950. border-width:0px;
  5951. position:absolute;
  5952. left:0px;
  5953. top:0px;
  5954. width:142px;
  5955. height:30px;
  5956. background:inherit;
  5957. background-color:rgba(255, 255, 255, 0);
  5958. border:none;
  5959. border-top:0px;
  5960. border-right:0px;
  5961. border-bottom:0px;
  5962. border-radius:0px;
  5963. border-top-left-radius:0px;
  5964. border-bottom-left-radius:0px;
  5965. -moz-box-shadow:none;
  5966. -webkit-box-shadow:none;
  5967. box-shadow:none;
  5968. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5969. font-weight:400;
  5970. font-style:normal;
  5971. font-size:14px;
  5972. color:#1890FF;
  5973. }
  5974. #u65448 {
  5975. border-width:0px;
  5976. position:absolute;
  5977. left:3373px;
  5978. top:339px;
  5979. width:142px;
  5980. height:30px;
  5981. display:flex;
  5982. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5983. font-weight:400;
  5984. font-style:normal;
  5985. font-size:14px;
  5986. color:#1890FF;
  5987. }
  5988. #u65448 .text {
  5989. position:absolute;
  5990. align-self:center;
  5991. padding:5px 10px 5px 0px;
  5992. box-sizing:border-box;
  5993. width:100%;
  5994. }
  5995. #u65448_text {
  5996. border-width:0px;
  5997. white-space:nowrap;
  5998. text-transform:none;
  5999. }
  6000. #u65449_div {
  6001. border-width:0px;
  6002. position:absolute;
  6003. left:0px;
  6004. top:0px;
  6005. width:81px;
  6006. height:30px;
  6007. background:inherit;
  6008. background-color:rgba(255, 255, 255, 0);
  6009. border:none;
  6010. border-top:0px;
  6011. border-right:0px;
  6012. border-bottom:0px;
  6013. border-radius:0px;
  6014. border-top-left-radius:0px;
  6015. border-bottom-left-radius:0px;
  6016. -moz-box-shadow:none;
  6017. -webkit-box-shadow:none;
  6018. box-shadow:none;
  6019. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6020. font-weight:400;
  6021. font-style:normal;
  6022. font-size:14px;
  6023. color:#7F7F7F;
  6024. }
  6025. #u65449 {
  6026. border-width:0px;
  6027. position:absolute;
  6028. left:3612px;
  6029. top:339px;
  6030. width:81px;
  6031. height:30px;
  6032. display:flex;
  6033. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6034. font-weight:400;
  6035. font-style:normal;
  6036. font-size:14px;
  6037. color:#7F7F7F;
  6038. }
  6039. #u65449 .text {
  6040. position:absolute;
  6041. align-self:center;
  6042. padding:5px 10px 5px 0px;
  6043. box-sizing:border-box;
  6044. width:100%;
  6045. }
  6046. #u65449_text {
  6047. border-width:0px;
  6048. white-space:nowrap;
  6049. text-transform:none;
  6050. }
  6051. #u65450_div {
  6052. border-width:0px;
  6053. position:absolute;
  6054. left:0px;
  6055. top:0px;
  6056. width:67px;
  6057. height:30px;
  6058. background:inherit;
  6059. background-color:rgba(255, 255, 255, 0);
  6060. border:none;
  6061. border-top:0px;
  6062. border-right:0px;
  6063. border-bottom:0px;
  6064. border-radius:0px;
  6065. border-top-left-radius:0px;
  6066. border-bottom-left-radius:0px;
  6067. -moz-box-shadow:none;
  6068. -webkit-box-shadow:none;
  6069. box-shadow:none;
  6070. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6071. font-weight:400;
  6072. font-style:normal;
  6073. font-size:14px;
  6074. }
  6075. #u65450 {
  6076. border-width:0px;
  6077. position:absolute;
  6078. left:3693px;
  6079. top:339px;
  6080. width:67px;
  6081. height:30px;
  6082. display:flex;
  6083. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6084. font-weight:400;
  6085. font-style:normal;
  6086. font-size:14px;
  6087. }
  6088. #u65450 .text {
  6089. position:absolute;
  6090. align-self:center;
  6091. padding:5px 10px 5px 0px;
  6092. box-sizing:border-box;
  6093. width:100%;
  6094. }
  6095. #u65450_text {
  6096. border-width:0px;
  6097. white-space:nowrap;
  6098. text-transform:none;
  6099. }
  6100. #u65451_div {
  6101. border-width:0px;
  6102. position:absolute;
  6103. left:0px;
  6104. top:0px;
  6105. width:81px;
  6106. height:30px;
  6107. background:inherit;
  6108. background-color:rgba(255, 255, 255, 0);
  6109. border:none;
  6110. border-top:0px;
  6111. border-right:0px;
  6112. border-bottom:0px;
  6113. border-radius:0px;
  6114. border-top-left-radius:0px;
  6115. border-bottom-left-radius:0px;
  6116. -moz-box-shadow:none;
  6117. -webkit-box-shadow:none;
  6118. box-shadow:none;
  6119. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6120. font-weight:400;
  6121. font-style:normal;
  6122. font-size:14px;
  6123. color:#7F7F7F;
  6124. }
  6125. #u65451 {
  6126. border-width:0px;
  6127. position:absolute;
  6128. left:3909px;
  6129. top:339px;
  6130. width:81px;
  6131. height:30px;
  6132. display:flex;
  6133. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6134. font-weight:400;
  6135. font-style:normal;
  6136. font-size:14px;
  6137. color:#7F7F7F;
  6138. }
  6139. #u65451 .text {
  6140. position:absolute;
  6141. align-self:center;
  6142. padding:5px 10px 5px 0px;
  6143. box-sizing:border-box;
  6144. width:100%;
  6145. }
  6146. #u65451_text {
  6147. border-width:0px;
  6148. white-space:nowrap;
  6149. text-transform:none;
  6150. }
  6151. #u65452_div {
  6152. border-width:0px;
  6153. position:absolute;
  6154. left:0px;
  6155. top:0px;
  6156. width:53px;
  6157. height:30px;
  6158. background:inherit;
  6159. background-color:rgba(255, 255, 255, 0);
  6160. border:none;
  6161. border-top:0px;
  6162. border-right:0px;
  6163. border-bottom:0px;
  6164. border-radius:0px;
  6165. border-top-left-radius:0px;
  6166. border-bottom-left-radius:0px;
  6167. -moz-box-shadow:none;
  6168. -webkit-box-shadow:none;
  6169. box-shadow:none;
  6170. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6171. font-weight:400;
  6172. font-style:normal;
  6173. font-size:14px;
  6174. }
  6175. #u65452 {
  6176. border-width:0px;
  6177. position:absolute;
  6178. left:3990px;
  6179. top:339px;
  6180. width:53px;
  6181. height:30px;
  6182. display:flex;
  6183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6184. font-weight:400;
  6185. font-style:normal;
  6186. font-size:14px;
  6187. }
  6188. #u65452 .text {
  6189. position:absolute;
  6190. align-self:center;
  6191. padding:5px 10px 5px 0px;
  6192. box-sizing:border-box;
  6193. width:100%;
  6194. }
  6195. #u65452_text {
  6196. border-width:0px;
  6197. white-space:nowrap;
  6198. text-transform:none;
  6199. }
  6200. #u65453_div {
  6201. border-width:0px;
  6202. position:absolute;
  6203. left:0px;
  6204. top:0px;
  6205. width:81px;
  6206. height:30px;
  6207. background:inherit;
  6208. background-color:rgba(255, 255, 255, 0);
  6209. border:none;
  6210. border-top:0px;
  6211. border-right:0px;
  6212. border-bottom:0px;
  6213. border-radius:0px;
  6214. border-top-left-radius:0px;
  6215. border-bottom-left-radius:0px;
  6216. -moz-box-shadow:none;
  6217. -webkit-box-shadow:none;
  6218. box-shadow:none;
  6219. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6220. font-weight:400;
  6221. font-style:normal;
  6222. font-size:14px;
  6223. color:#7F7F7F;
  6224. }
  6225. #u65453 {
  6226. border-width:0px;
  6227. position:absolute;
  6228. left:3292px;
  6229. top:379px;
  6230. width:81px;
  6231. height:30px;
  6232. display:flex;
  6233. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6234. font-weight:400;
  6235. font-style:normal;
  6236. font-size:14px;
  6237. color:#7F7F7F;
  6238. }
  6239. #u65453 .text {
  6240. position:absolute;
  6241. align-self:center;
  6242. padding:5px 10px 5px 0px;
  6243. box-sizing:border-box;
  6244. width:100%;
  6245. }
  6246. #u65453_text {
  6247. border-width:0px;
  6248. white-space:nowrap;
  6249. text-transform:none;
  6250. }
  6251. #u65454_div {
  6252. border-width:0px;
  6253. position:absolute;
  6254. left:0px;
  6255. top:0px;
  6256. width:81px;
  6257. height:30px;
  6258. background:inherit;
  6259. background-color:rgba(255, 255, 255, 0);
  6260. border:none;
  6261. border-top:0px;
  6262. border-right:0px;
  6263. border-bottom:0px;
  6264. border-radius:0px;
  6265. border-top-left-radius:0px;
  6266. border-bottom-left-radius:0px;
  6267. -moz-box-shadow:none;
  6268. -webkit-box-shadow:none;
  6269. box-shadow:none;
  6270. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6271. font-weight:400;
  6272. font-style:normal;
  6273. font-size:14px;
  6274. color:#7F7F7F;
  6275. }
  6276. #u65454 {
  6277. border-width:0px;
  6278. position:absolute;
  6279. left:3612px;
  6280. top:379px;
  6281. width:81px;
  6282. height:30px;
  6283. display:flex;
  6284. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6285. font-weight:400;
  6286. font-style:normal;
  6287. font-size:14px;
  6288. color:#7F7F7F;
  6289. }
  6290. #u65454 .text {
  6291. position:absolute;
  6292. align-self:center;
  6293. padding:5px 10px 5px 0px;
  6294. box-sizing:border-box;
  6295. width:100%;
  6296. }
  6297. #u65454_text {
  6298. border-width:0px;
  6299. white-space:nowrap;
  6300. text-transform:none;
  6301. }
  6302. #u65455_div {
  6303. border-width:0px;
  6304. position:absolute;
  6305. left:0px;
  6306. top:0px;
  6307. width:67px;
  6308. height:30px;
  6309. background:inherit;
  6310. background-color:rgba(255, 255, 255, 0);
  6311. border:none;
  6312. border-top:0px;
  6313. border-right:0px;
  6314. border-bottom:0px;
  6315. border-radius:0px;
  6316. border-top-left-radius:0px;
  6317. border-bottom-left-radius:0px;
  6318. -moz-box-shadow:none;
  6319. -webkit-box-shadow:none;
  6320. box-shadow:none;
  6321. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6322. font-weight:400;
  6323. font-style:normal;
  6324. font-size:14px;
  6325. }
  6326. #u65455 {
  6327. border-width:0px;
  6328. position:absolute;
  6329. left:3693px;
  6330. top:379px;
  6331. width:67px;
  6332. height:30px;
  6333. display:flex;
  6334. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6335. font-weight:400;
  6336. font-style:normal;
  6337. font-size:14px;
  6338. }
  6339. #u65455 .text {
  6340. position:absolute;
  6341. align-self:center;
  6342. padding:5px 10px 5px 0px;
  6343. box-sizing:border-box;
  6344. width:100%;
  6345. }
  6346. #u65455_text {
  6347. border-width:0px;
  6348. white-space:nowrap;
  6349. text-transform:none;
  6350. }
  6351. #u65456_div {
  6352. border-width:0px;
  6353. position:absolute;
  6354. left:0px;
  6355. top:0px;
  6356. width:67px;
  6357. height:30px;
  6358. background:inherit;
  6359. background-color:rgba(255, 255, 255, 0);
  6360. border:none;
  6361. border-top:0px;
  6362. border-right:0px;
  6363. border-bottom:0px;
  6364. border-radius:0px;
  6365. border-top-left-radius:0px;
  6366. border-bottom-left-radius:0px;
  6367. -moz-box-shadow:none;
  6368. -webkit-box-shadow:none;
  6369. box-shadow:none;
  6370. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6371. font-weight:400;
  6372. font-style:normal;
  6373. font-size:14px;
  6374. color:#7F7F7F;
  6375. }
  6376. #u65456 {
  6377. border-width:0px;
  6378. position:absolute;
  6379. left:3909px;
  6380. top:379px;
  6381. width:67px;
  6382. height:30px;
  6383. display:flex;
  6384. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6385. font-weight:400;
  6386. font-style:normal;
  6387. font-size:14px;
  6388. color:#7F7F7F;
  6389. }
  6390. #u65456 .text {
  6391. position:absolute;
  6392. align-self:center;
  6393. padding:5px 10px 5px 0px;
  6394. box-sizing:border-box;
  6395. width:100%;
  6396. }
  6397. #u65456_text {
  6398. border-width:0px;
  6399. white-space:nowrap;
  6400. text-transform:none;
  6401. }
  6402. #u65457_div {
  6403. border-width:0px;
  6404. position:absolute;
  6405. left:0px;
  6406. top:0px;
  6407. width:85px;
  6408. height:30px;
  6409. background:inherit;
  6410. background-color:rgba(255, 255, 255, 0);
  6411. border:none;
  6412. border-top:0px;
  6413. border-right:0px;
  6414. border-bottom:0px;
  6415. border-radius:0px;
  6416. border-top-left-radius:0px;
  6417. border-bottom-left-radius:0px;
  6418. -moz-box-shadow:none;
  6419. -webkit-box-shadow:none;
  6420. box-shadow:none;
  6421. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6422. font-weight:400;
  6423. font-style:normal;
  6424. font-size:14px;
  6425. }
  6426. #u65457 {
  6427. border-width:0px;
  6428. position:absolute;
  6429. left:3990px;
  6430. top:379px;
  6431. width:85px;
  6432. height:30px;
  6433. display:flex;
  6434. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6435. font-weight:400;
  6436. font-style:normal;
  6437. font-size:14px;
  6438. }
  6439. #u65457 .text {
  6440. position:absolute;
  6441. align-self:center;
  6442. padding:5px 10px 5px 0px;
  6443. box-sizing:border-box;
  6444. width:100%;
  6445. }
  6446. #u65457_text {
  6447. border-width:0px;
  6448. white-space:nowrap;
  6449. text-transform:none;
  6450. }
  6451. #u65458_div {
  6452. border-width:0px;
  6453. position:absolute;
  6454. left:0px;
  6455. top:0px;
  6456. width:183px;
  6457. height:30px;
  6458. background:inherit;
  6459. background-color:rgba(255, 255, 255, 0);
  6460. border:none;
  6461. border-top:0px;
  6462. border-right:0px;
  6463. border-bottom:0px;
  6464. border-radius:0px;
  6465. border-top-left-radius:0px;
  6466. border-bottom-left-radius:0px;
  6467. -moz-box-shadow:none;
  6468. -webkit-box-shadow:none;
  6469. box-shadow:none;
  6470. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6471. font-weight:400;
  6472. font-style:normal;
  6473. font-size:14px;
  6474. }
  6475. #u65458 {
  6476. border-width:0px;
  6477. position:absolute;
  6478. left:3373px;
  6479. top:379px;
  6480. width:183px;
  6481. height:30px;
  6482. display:flex;
  6483. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6484. font-weight:400;
  6485. font-style:normal;
  6486. font-size:14px;
  6487. }
  6488. #u65458 .text {
  6489. position:absolute;
  6490. align-self:center;
  6491. padding:5px 10px 5px 0px;
  6492. box-sizing:border-box;
  6493. width:100%;
  6494. }
  6495. #u65458_text {
  6496. border-width:0px;
  6497. white-space:nowrap;
  6498. text-transform:none;
  6499. }
  6500. #u65459_div {
  6501. border-width:0px;
  6502. position:absolute;
  6503. left:0px;
  6504. top:0px;
  6505. width:81px;
  6506. height:30px;
  6507. background:inherit;
  6508. background-color:rgba(255, 255, 255, 0);
  6509. border:none;
  6510. border-top:0px;
  6511. border-right:0px;
  6512. border-bottom:0px;
  6513. border-radius:0px;
  6514. border-top-left-radius:0px;
  6515. border-bottom-left-radius:0px;
  6516. -moz-box-shadow:none;
  6517. -webkit-box-shadow:none;
  6518. box-shadow:none;
  6519. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6520. font-weight:400;
  6521. font-style:normal;
  6522. font-size:14px;
  6523. color:#7F7F7F;
  6524. }
  6525. #u65459 {
  6526. border-width:0px;
  6527. position:absolute;
  6528. left:3292px;
  6529. top:419px;
  6530. width:81px;
  6531. height:30px;
  6532. display:flex;
  6533. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6534. font-weight:400;
  6535. font-style:normal;
  6536. font-size:14px;
  6537. color:#7F7F7F;
  6538. }
  6539. #u65459 .text {
  6540. position:absolute;
  6541. align-self:center;
  6542. padding:5px 10px 5px 0px;
  6543. box-sizing:border-box;
  6544. width:100%;
  6545. }
  6546. #u65459_text {
  6547. border-width:0px;
  6548. white-space:nowrap;
  6549. text-transform:none;
  6550. }
  6551. #u65460_div {
  6552. border-width:0px;
  6553. position:absolute;
  6554. left:0px;
  6555. top:0px;
  6556. width:126px;
  6557. height:30px;
  6558. background:inherit;
  6559. background-color:rgba(255, 255, 255, 0);
  6560. border:none;
  6561. border-top:0px;
  6562. border-right:0px;
  6563. border-bottom:0px;
  6564. border-radius:0px;
  6565. border-top-left-radius:0px;
  6566. border-bottom-left-radius:0px;
  6567. -moz-box-shadow:none;
  6568. -webkit-box-shadow:none;
  6569. box-shadow:none;
  6570. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6571. font-weight:400;
  6572. font-style:normal;
  6573. font-size:14px;
  6574. }
  6575. #u65460 {
  6576. border-width:0px;
  6577. position:absolute;
  6578. left:3373px;
  6579. top:419px;
  6580. width:126px;
  6581. height:30px;
  6582. display:flex;
  6583. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6584. font-weight:400;
  6585. font-style:normal;
  6586. font-size:14px;
  6587. }
  6588. #u65460 .text {
  6589. position:absolute;
  6590. align-self:center;
  6591. padding:5px 10px 5px 0px;
  6592. box-sizing:border-box;
  6593. width:100%;
  6594. }
  6595. #u65460_text {
  6596. border-width:0px;
  6597. white-space:nowrap;
  6598. text-transform:none;
  6599. }
  6600. #u65461_div {
  6601. border-width:0px;
  6602. position:absolute;
  6603. left:0px;
  6604. top:0px;
  6605. width:81px;
  6606. height:30px;
  6607. background:inherit;
  6608. background-color:rgba(255, 255, 255, 0);
  6609. border:none;
  6610. border-top:0px;
  6611. border-right:0px;
  6612. border-bottom:0px;
  6613. border-radius:0px;
  6614. border-top-left-radius:0px;
  6615. border-bottom-left-radius:0px;
  6616. -moz-box-shadow:none;
  6617. -webkit-box-shadow:none;
  6618. box-shadow:none;
  6619. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6620. font-weight:400;
  6621. font-style:normal;
  6622. font-size:14px;
  6623. color:#7F7F7F;
  6624. }
  6625. #u65461 {
  6626. border-width:0px;
  6627. position:absolute;
  6628. left:3292px;
  6629. top:459px;
  6630. width:81px;
  6631. height:30px;
  6632. display:flex;
  6633. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6634. font-weight:400;
  6635. font-style:normal;
  6636. font-size:14px;
  6637. color:#7F7F7F;
  6638. }
  6639. #u65461 .text {
  6640. position:absolute;
  6641. align-self:center;
  6642. padding:5px 10px 5px 0px;
  6643. box-sizing:border-box;
  6644. width:100%;
  6645. }
  6646. #u65461_text {
  6647. border-width:0px;
  6648. white-space:nowrap;
  6649. text-transform:none;
  6650. }
  6651. #u65462_div {
  6652. border-width:0px;
  6653. position:absolute;
  6654. left:0px;
  6655. top:0px;
  6656. width:263px;
  6657. height:30px;
  6658. background:inherit;
  6659. background-color:rgba(255, 255, 255, 0);
  6660. border:none;
  6661. border-top:0px;
  6662. border-right:0px;
  6663. border-bottom:0px;
  6664. border-radius:0px;
  6665. border-top-left-radius:0px;
  6666. border-bottom-left-radius:0px;
  6667. -moz-box-shadow:none;
  6668. -webkit-box-shadow:none;
  6669. box-shadow:none;
  6670. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6671. font-weight:400;
  6672. font-style:normal;
  6673. font-size:14px;
  6674. }
  6675. #u65462 {
  6676. border-width:0px;
  6677. position:absolute;
  6678. left:3373px;
  6679. top:459px;
  6680. width:263px;
  6681. height:30px;
  6682. display:flex;
  6683. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6684. font-weight:400;
  6685. font-style:normal;
  6686. font-size:14px;
  6687. }
  6688. #u65462 .text {
  6689. position:absolute;
  6690. align-self:center;
  6691. padding:5px 10px 5px 0px;
  6692. box-sizing:border-box;
  6693. width:100%;
  6694. }
  6695. #u65462_text {
  6696. border-width:0px;
  6697. white-space:nowrap;
  6698. text-transform:none;
  6699. }
  6700. #u65463_img {
  6701. border-width:0px;
  6702. position:absolute;
  6703. left:0px;
  6704. top:0px;
  6705. width:942px;
  6706. height:2px;
  6707. }
  6708. #u65463 {
  6709. border-width:0px;
  6710. position:absolute;
  6711. left:3292px;
  6712. top:507px;
  6713. width:941px;
  6714. height:1px;
  6715. display:flex;
  6716. }
  6717. #u65463 .text {
  6718. position:absolute;
  6719. align-self:center;
  6720. padding:2px 2px 2px 2px;
  6721. box-sizing:border-box;
  6722. width:100%;
  6723. }
  6724. #u65463_text {
  6725. border-width:0px;
  6726. word-wrap:break-word;
  6727. text-transform:none;
  6728. visibility:hidden;
  6729. }
  6730. #u65464_div {
  6731. border-width:0px;
  6732. position:absolute;
  6733. left:0px;
  6734. top:0px;
  6735. width:1000px;
  6736. height:200px;
  6737. background:inherit;
  6738. background-color:rgba(255, 255, 255, 1);
  6739. box-sizing:border-box;
  6740. border-width:1px;
  6741. border-style:solid;
  6742. border-color:rgba(215, 215, 215, 1);
  6743. border-radius:0px;
  6744. -moz-box-shadow:none;
  6745. -webkit-box-shadow:none;
  6746. box-shadow:none;
  6747. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6748. font-weight:400;
  6749. font-style:normal;
  6750. font-size:14px;
  6751. color:#AAAAAA;
  6752. text-align:center;
  6753. line-height:30px;
  6754. }
  6755. #u65464 {
  6756. border-width:0px;
  6757. position:absolute;
  6758. left:3253px;
  6759. top:62px;
  6760. width:1000px;
  6761. height:200px;
  6762. display:flex;
  6763. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6764. font-weight:400;
  6765. font-style:normal;
  6766. font-size:14px;
  6767. color:#AAAAAA;
  6768. text-align:center;
  6769. line-height:30px;
  6770. }
  6771. #u65464 .text {
  6772. position:absolute;
  6773. align-self:center;
  6774. padding:5px 10px 5px 10px;
  6775. box-sizing:border-box;
  6776. width:100%;
  6777. }
  6778. #u65464_text {
  6779. border-width:0px;
  6780. word-wrap:break-word;
  6781. text-transform:none;
  6782. visibility:hidden;
  6783. }
  6784. #u65465_div {
  6785. border-width:0px;
  6786. position:absolute;
  6787. left:0px;
  6788. top:0px;
  6789. width:83px;
  6790. height:35px;
  6791. background:inherit;
  6792. background-color:rgba(255, 255, 255, 0);
  6793. border:none;
  6794. border-top:0px;
  6795. border-right:0px;
  6796. border-bottom:0px;
  6797. border-radius:0px;
  6798. border-top-left-radius:0px;
  6799. border-bottom-left-radius:0px;
  6800. -moz-box-shadow:none;
  6801. -webkit-box-shadow:none;
  6802. box-shadow:none;
  6803. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6804. font-weight:500;
  6805. font-style:normal;
  6806. font-size:18px;
  6807. }
  6808. #u65465 {
  6809. border-width:0px;
  6810. position:absolute;
  6811. left:3273px;
  6812. top:80px;
  6813. width:83px;
  6814. height:35px;
  6815. display:flex;
  6816. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6817. font-weight:500;
  6818. font-style:normal;
  6819. font-size:18px;
  6820. }
  6821. #u65465 .text {
  6822. position:absolute;
  6823. align-self:center;
  6824. padding:5px 10px 5px 0px;
  6825. box-sizing:border-box;
  6826. width:100%;
  6827. }
  6828. #u65465_text {
  6829. border-width:0px;
  6830. white-space:nowrap;
  6831. text-transform:none;
  6832. }
  6833. #u65466_div {
  6834. border-width:0px;
  6835. position:absolute;
  6836. left:0px;
  6837. top:0px;
  6838. width:107px;
  6839. height:43px;
  6840. background:inherit;
  6841. background-color:rgba(255, 255, 255, 0);
  6842. border:none;
  6843. border-top:0px;
  6844. border-right:0px;
  6845. border-bottom:0px;
  6846. border-radius:0px;
  6847. border-top-left-radius:0px;
  6848. border-bottom-left-radius:0px;
  6849. -moz-box-shadow:none;
  6850. -webkit-box-shadow:none;
  6851. box-shadow:none;
  6852. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6853. font-weight:500;
  6854. font-style:normal;
  6855. font-size:24px;
  6856. }
  6857. #u65466 {
  6858. border-width:0px;
  6859. position:absolute;
  6860. left:3283px;
  6861. top:131px;
  6862. width:107px;
  6863. height:43px;
  6864. display:flex;
  6865. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6866. font-weight:500;
  6867. font-style:normal;
  6868. font-size:24px;
  6869. }
  6870. #u65466 .text {
  6871. position:absolute;
  6872. align-self:center;
  6873. padding:5px 10px 5px 0px;
  6874. box-sizing:border-box;
  6875. width:100%;
  6876. }
  6877. #u65466_text {
  6878. border-width:0px;
  6879. white-space:nowrap;
  6880. text-transform:none;
  6881. }
  6882. #u65467_img {
  6883. border-width:0px;
  6884. position:absolute;
  6885. left:0px;
  6886. top:0px;
  6887. width:108px;
  6888. height:108px;
  6889. }
  6890. #u65467 {
  6891. border-width:0px;
  6892. position:absolute;
  6893. left:4103px;
  6894. top:132px;
  6895. width:108px;
  6896. height:108px;
  6897. display:flex;
  6898. -webkit-transform:rotate(315deg);
  6899. -moz-transform:rotate(315deg);
  6900. -ms-transform:rotate(315deg);
  6901. transform:rotate(315deg);
  6902. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6903. font-weight:400;
  6904. font-style:normal;
  6905. font-size:28px;
  6906. color:#F59A23;
  6907. }
  6908. #u65467 .text {
  6909. position:absolute;
  6910. align-self:center;
  6911. padding:2px 2px 2px 2px;
  6912. box-sizing:border-box;
  6913. width:100%;
  6914. }
  6915. #u65467_text {
  6916. border-width:0px;
  6917. word-wrap:break-word;
  6918. text-transform:none;
  6919. }
  6920. #u65468_div {
  6921. border-width:0px;
  6922. position:absolute;
  6923. left:0px;
  6924. top:0px;
  6925. width:325px;
  6926. height:60px;
  6927. background:inherit;
  6928. background-color:rgba(255, 255, 255, 0);
  6929. border:none;
  6930. border-left:0px;
  6931. border-top:0px;
  6932. border-right:0px;
  6933. border-radius:0px;
  6934. border-bottom-right-radius:0px;
  6935. border-bottom-left-radius:0px;
  6936. -moz-box-shadow:none;
  6937. -webkit-box-shadow:none;
  6938. box-shadow:none;
  6939. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6940. font-weight:400;
  6941. font-style:normal;
  6942. font-size:14px;
  6943. line-height:30px;
  6944. }
  6945. #u65468 {
  6946. border-width:0px;
  6947. position:absolute;
  6948. left:3283px;
  6949. top:186px;
  6950. width:325px;
  6951. height:60px;
  6952. display:flex;
  6953. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6954. font-weight:400;
  6955. font-style:normal;
  6956. font-size:14px;
  6957. line-height:30px;
  6958. }
  6959. #u65468 .text {
  6960. position:absolute;
  6961. align-self:flex-start;
  6962. padding:0px 0px 0px 0px;
  6963. box-sizing:border-box;
  6964. width:100%;
  6965. }
  6966. #u65468_text {
  6967. border-width:0px;
  6968. word-wrap:break-word;
  6969. text-transform:none;
  6970. }
  6971. #u65469_img {
  6972. border-width:0px;
  6973. position:absolute;
  6974. left:0px;
  6975. top:0px;
  6976. width:17px;
  6977. height:17px;
  6978. }
  6979. #u65469 {
  6980. border-width:0px;
  6981. position:absolute;
  6982. left:4225px;
  6983. top:84px;
  6984. width:17px;
  6985. height:17px;
  6986. display:flex;
  6987. }
  6988. #u65469 .text {
  6989. position:absolute;
  6990. align-self:center;
  6991. padding:2px 2px 2px 2px;
  6992. box-sizing:border-box;
  6993. width:100%;
  6994. }
  6995. #u65469_text {
  6996. border-width:0px;
  6997. word-wrap:break-word;
  6998. text-transform:none;
  6999. visibility:hidden;
  7000. }
  7001. #u65470_div {
  7002. border-width:0px;
  7003. position:absolute;
  7004. left:0px;
  7005. top:0px;
  7006. width:1000px;
  7007. height:378px;
  7008. background:inherit;
  7009. background-color:rgba(255, 255, 255, 1);
  7010. box-sizing:border-box;
  7011. border-width:1px;
  7012. border-style:solid;
  7013. border-color:rgba(242, 242, 242, 1);
  7014. border-radius:0px;
  7015. -moz-box-shadow:none;
  7016. -webkit-box-shadow:none;
  7017. box-shadow:none;
  7018. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7019. font-weight:400;
  7020. font-style:normal;
  7021. font-size:14px;
  7022. color:#AAAAAA;
  7023. text-align:center;
  7024. line-height:30px;
  7025. }
  7026. #u65470 {
  7027. border-width:0px;
  7028. position:absolute;
  7029. left:3252px;
  7030. top:883px;
  7031. width:1000px;
  7032. height:378px;
  7033. display:flex;
  7034. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7035. font-weight:400;
  7036. font-style:normal;
  7037. font-size:14px;
  7038. color:#AAAAAA;
  7039. text-align:center;
  7040. line-height:30px;
  7041. }
  7042. #u65470 .text {
  7043. position:absolute;
  7044. align-self:center;
  7045. padding:5px 10px 5px 10px;
  7046. box-sizing:border-box;
  7047. width:100%;
  7048. }
  7049. #u65470_text {
  7050. border-width:0px;
  7051. word-wrap:break-word;
  7052. text-transform:none;
  7053. visibility:hidden;
  7054. }
  7055. #u65471_div {
  7056. border-width:0px;
  7057. position:absolute;
  7058. left:0px;
  7059. top:0px;
  7060. width:73px;
  7061. height:40px;
  7062. background:inherit;
  7063. background-color:rgba(255, 255, 255, 0);
  7064. border:none;
  7065. border-left:0px;
  7066. border-top:0px;
  7067. border-right:0px;
  7068. border-radius:0px;
  7069. border-bottom-right-radius:0px;
  7070. border-bottom-left-radius:0px;
  7071. -moz-box-shadow:none;
  7072. -webkit-box-shadow:none;
  7073. box-shadow:none;
  7074. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7075. font-weight:400;
  7076. font-style:normal;
  7077. font-size:18px;
  7078. }
  7079. #u65471 {
  7080. border-width:0px;
  7081. position:absolute;
  7082. left:3292px;
  7083. top:899px;
  7084. width:73px;
  7085. height:40px;
  7086. display:flex;
  7087. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7088. font-weight:400;
  7089. font-style:normal;
  7090. font-size:18px;
  7091. }
  7092. #u65471 .text {
  7093. position:absolute;
  7094. align-self:center;
  7095. padding:0px 0px 0px 0px;
  7096. box-sizing:border-box;
  7097. width:100%;
  7098. }
  7099. #u65471_text {
  7100. border-width:0px;
  7101. white-space:nowrap;
  7102. text-transform:none;
  7103. }
  7104. #u65472 {
  7105. border-width:0px;
  7106. position:absolute;
  7107. left:0px;
  7108. top:0px;
  7109. width:0px;
  7110. height:0px;
  7111. }
  7112. #u65473_div {
  7113. border-width:0px;
  7114. position:absolute;
  7115. left:0px;
  7116. top:0px;
  7117. width:1000px;
  7118. height:60px;
  7119. background:inherit;
  7120. background-color:rgba(255, 255, 255, 1);
  7121. box-sizing:border-box;
  7122. border-width:1px;
  7123. border-style:solid;
  7124. border-color:rgba(215, 215, 215, 1);
  7125. border-radius:0px;
  7126. -moz-box-shadow:none;
  7127. -webkit-box-shadow:none;
  7128. box-shadow:none;
  7129. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7130. font-weight:400;
  7131. font-style:normal;
  7132. font-size:14px;
  7133. color:#AAAAAA;
  7134. text-align:center;
  7135. line-height:30px;
  7136. }
  7137. #u65473 {
  7138. border-width:0px;
  7139. position:absolute;
  7140. left:3252px;
  7141. top:1201px;
  7142. width:1000px;
  7143. height:60px;
  7144. display:flex;
  7145. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7146. font-weight:400;
  7147. font-style:normal;
  7148. font-size:14px;
  7149. color:#AAAAAA;
  7150. text-align:center;
  7151. line-height:30px;
  7152. }
  7153. #u65473 .text {
  7154. position:absolute;
  7155. align-self:center;
  7156. padding:5px 10px 5px 10px;
  7157. box-sizing:border-box;
  7158. width:100%;
  7159. }
  7160. #u65473_text {
  7161. border-width:0px;
  7162. word-wrap:break-word;
  7163. text-transform:none;
  7164. visibility:hidden;
  7165. }
  7166. #u65474_div {
  7167. border-width:0px;
  7168. position:absolute;
  7169. left:0px;
  7170. top:0px;
  7171. width:80px;
  7172. height:30px;
  7173. background:inherit;
  7174. background-color:rgba(255, 255, 255, 1);
  7175. box-sizing:border-box;
  7176. border-width:1px;
  7177. border-style:solid;
  7178. border-color:rgba(170, 170, 170, 1);
  7179. border-radius:4px;
  7180. -moz-box-shadow:none;
  7181. -webkit-box-shadow:none;
  7182. box-shadow:none;
  7183. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7184. font-weight:400;
  7185. font-style:normal;
  7186. font-size:14px;
  7187. }
  7188. #u65474 {
  7189. border-width:0px;
  7190. position:absolute;
  7191. left:4153px;
  7192. top:1216px;
  7193. width:80px;
  7194. height:30px;
  7195. display:flex;
  7196. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7197. font-weight:400;
  7198. font-style:normal;
  7199. font-size:14px;
  7200. }
  7201. #u65474 .text {
  7202. position:absolute;
  7203. align-self:center;
  7204. padding:2px 2px 2px 2px;
  7205. box-sizing:border-box;
  7206. width:100%;
  7207. }
  7208. #u65474_text {
  7209. border-width:0px;
  7210. word-wrap:break-word;
  7211. text-transform:none;
  7212. }
  7213. #u65475_div {
  7214. border-width:0px;
  7215. position:absolute;
  7216. left:0px;
  7217. top:0px;
  7218. width:81px;
  7219. height:30px;
  7220. background:inherit;
  7221. background-color:rgba(255, 255, 255, 0);
  7222. border:none;
  7223. border-top:0px;
  7224. border-right:0px;
  7225. border-bottom:0px;
  7226. border-radius:0px;
  7227. border-top-left-radius:0px;
  7228. border-bottom-left-radius:0px;
  7229. -moz-box-shadow:none;
  7230. -webkit-box-shadow:none;
  7231. box-shadow:none;
  7232. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7233. font-weight:400;
  7234. font-style:normal;
  7235. font-size:14px;
  7236. color:#7F7F7F;
  7237. }
  7238. #u65475 {
  7239. border-width:0px;
  7240. position:absolute;
  7241. left:3292px;
  7242. top:949px;
  7243. width:81px;
  7244. height:30px;
  7245. display:flex;
  7246. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7247. font-weight:400;
  7248. font-style:normal;
  7249. font-size:14px;
  7250. color:#7F7F7F;
  7251. }
  7252. #u65475 .text {
  7253. position:absolute;
  7254. align-self:center;
  7255. padding:5px 10px 5px 0px;
  7256. box-sizing:border-box;
  7257. width:100%;
  7258. }
  7259. #u65475_text {
  7260. border-width:0px;
  7261. white-space:nowrap;
  7262. text-transform:none;
  7263. }
  7264. #u65476_div {
  7265. border-width:0px;
  7266. position:absolute;
  7267. left:0px;
  7268. top:0px;
  7269. width:67px;
  7270. height:30px;
  7271. background:inherit;
  7272. background-color:rgba(255, 255, 255, 0);
  7273. border:none;
  7274. border-top:0px;
  7275. border-right:0px;
  7276. border-bottom:0px;
  7277. border-radius:0px;
  7278. border-top-left-radius:0px;
  7279. border-bottom-left-radius:0px;
  7280. -moz-box-shadow:none;
  7281. -webkit-box-shadow:none;
  7282. box-shadow:none;
  7283. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7284. font-weight:400;
  7285. font-style:normal;
  7286. font-size:14px;
  7287. }
  7288. #u65476 {
  7289. border-width:0px;
  7290. position:absolute;
  7291. left:3373px;
  7292. top:949px;
  7293. width:67px;
  7294. height:30px;
  7295. display:flex;
  7296. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7297. font-weight:400;
  7298. font-style:normal;
  7299. font-size:14px;
  7300. }
  7301. #u65476 .text {
  7302. position:absolute;
  7303. align-self:center;
  7304. padding:5px 10px 5px 0px;
  7305. box-sizing:border-box;
  7306. width:100%;
  7307. }
  7308. #u65476_text {
  7309. border-width:0px;
  7310. white-space:nowrap;
  7311. text-transform:none;
  7312. }
  7313. #u65477_div {
  7314. border-width:0px;
  7315. position:absolute;
  7316. left:0px;
  7317. top:0px;
  7318. width:81px;
  7319. height:30px;
  7320. background:inherit;
  7321. background-color:rgba(255, 255, 255, 0);
  7322. border:none;
  7323. border-top:0px;
  7324. border-right:0px;
  7325. border-bottom:0px;
  7326. border-radius:0px;
  7327. border-top-left-radius:0px;
  7328. border-bottom-left-radius:0px;
  7329. -moz-box-shadow:none;
  7330. -webkit-box-shadow:none;
  7331. box-shadow:none;
  7332. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7333. font-weight:400;
  7334. font-style:normal;
  7335. font-size:14px;
  7336. color:#7F7F7F;
  7337. }
  7338. #u65477 {
  7339. border-width:0px;
  7340. position:absolute;
  7341. left:3612px;
  7342. top:949px;
  7343. width:81px;
  7344. height:30px;
  7345. display:flex;
  7346. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7347. font-weight:400;
  7348. font-style:normal;
  7349. font-size:14px;
  7350. color:#7F7F7F;
  7351. }
  7352. #u65477 .text {
  7353. position:absolute;
  7354. align-self:center;
  7355. padding:5px 10px 5px 0px;
  7356. box-sizing:border-box;
  7357. width:100%;
  7358. }
  7359. #u65477_text {
  7360. border-width:0px;
  7361. white-space:nowrap;
  7362. text-transform:none;
  7363. }
  7364. #u65478_div {
  7365. border-width:0px;
  7366. position:absolute;
  7367. left:0px;
  7368. top:0px;
  7369. width:152px;
  7370. height:50px;
  7371. background:inherit;
  7372. background-color:rgba(255, 255, 255, 0);
  7373. border:none;
  7374. border-top:0px;
  7375. border-right:0px;
  7376. border-bottom:0px;
  7377. border-radius:0px;
  7378. border-top-left-radius:0px;
  7379. border-bottom-left-radius:0px;
  7380. -moz-box-shadow:none;
  7381. -webkit-box-shadow:none;
  7382. box-shadow:none;
  7383. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7384. font-weight:400;
  7385. font-style:normal;
  7386. font-size:14px;
  7387. line-height:40px;
  7388. }
  7389. #u65478 {
  7390. border-width:0px;
  7391. position:absolute;
  7392. left:3693px;
  7393. top:939px;
  7394. width:152px;
  7395. height:50px;
  7396. display:flex;
  7397. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7398. font-weight:400;
  7399. font-style:normal;
  7400. font-size:14px;
  7401. line-height:40px;
  7402. }
  7403. #u65478 .text {
  7404. position:absolute;
  7405. align-self:center;
  7406. padding:5px 10px 5px 0px;
  7407. box-sizing:border-box;
  7408. width:100%;
  7409. }
  7410. #u65478_text {
  7411. border-width:0px;
  7412. white-space:nowrap;
  7413. text-transform:none;
  7414. }
  7415. #u65479_div {
  7416. border-width:0px;
  7417. position:absolute;
  7418. left:0px;
  7419. top:0px;
  7420. width:78px;
  7421. height:40px;
  7422. background:inherit;
  7423. background-color:rgba(255, 255, 255, 0);
  7424. border:none;
  7425. border-top:0px;
  7426. border-right:0px;
  7427. border-bottom:0px;
  7428. border-radius:0px;
  7429. border-top-left-radius:0px;
  7430. border-bottom-left-radius:0px;
  7431. -moz-box-shadow:none;
  7432. -webkit-box-shadow:none;
  7433. box-shadow:none;
  7434. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7435. font-weight:400;
  7436. font-style:normal;
  7437. font-size:14px;
  7438. color:#7F7F7F;
  7439. line-height:40px;
  7440. }
  7441. #u65479 {
  7442. border-width:0px;
  7443. position:absolute;
  7444. left:3292px;
  7445. top:699px;
  7446. width:78px;
  7447. height:40px;
  7448. display:flex;
  7449. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7450. font-weight:400;
  7451. font-style:normal;
  7452. font-size:14px;
  7453. color:#7F7F7F;
  7454. line-height:40px;
  7455. }
  7456. #u65479 .text {
  7457. position:absolute;
  7458. align-self:center;
  7459. padding:0px 0px 0px 0px;
  7460. box-sizing:border-box;
  7461. width:100%;
  7462. }
  7463. #u65479_text {
  7464. border-width:0px;
  7465. white-space:nowrap;
  7466. text-transform:none;
  7467. }
  7468. #u65480_img {
  7469. border-width:0px;
  7470. position:absolute;
  7471. left:0px;
  7472. top:0px;
  7473. width:161px;
  7474. height:107px;
  7475. }
  7476. #u65480 {
  7477. border-width:0px;
  7478. position:absolute;
  7479. left:3371px;
  7480. top:699px;
  7481. width:161px;
  7482. height:107px;
  7483. display:flex;
  7484. }
  7485. #u65480 .text {
  7486. position:absolute;
  7487. align-self:center;
  7488. padding:0px 0px 0px 0px;
  7489. box-sizing:border-box;
  7490. width:100%;
  7491. }
  7492. #u65480_text {
  7493. border-width:0px;
  7494. word-wrap:break-word;
  7495. text-transform:none;
  7496. }
  7497. #u65481_div {
  7498. border-width:0px;
  7499. position:absolute;
  7500. left:0px;
  7501. top:0px;
  7502. width:57px;
  7503. height:40px;
  7504. background:inherit;
  7505. background-color:rgba(255, 255, 255, 0);
  7506. border:none;
  7507. border-top:0px;
  7508. border-right:0px;
  7509. border-bottom:0px;
  7510. border-radius:0px;
  7511. border-top-left-radius:0px;
  7512. border-bottom-left-radius:0px;
  7513. -moz-box-shadow:none;
  7514. -webkit-box-shadow:none;
  7515. box-shadow:none;
  7516. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7517. font-weight:400;
  7518. font-style:normal;
  7519. font-size:14px;
  7520. color:#1890FF;
  7521. line-height:40px;
  7522. }
  7523. #u65481 {
  7524. border-width:0px;
  7525. position:absolute;
  7526. left:3798px;
  7527. top:609px;
  7528. width:57px;
  7529. height:40px;
  7530. display:flex;
  7531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7532. font-weight:400;
  7533. font-style:normal;
  7534. font-size:14px;
  7535. color:#1890FF;
  7536. line-height:40px;
  7537. }
  7538. #u65481 .text {
  7539. position:absolute;
  7540. align-self:center;
  7541. padding:0px 0px 0px 0px;
  7542. box-sizing:border-box;
  7543. width:100%;
  7544. }
  7545. #u65481_text {
  7546. border-width:0px;
  7547. white-space:nowrap;
  7548. text-transform:none;
  7549. }
  7550. #u65482_div {
  7551. border-width:0px;
  7552. position:absolute;
  7553. left:0px;
  7554. top:0px;
  7555. width:80px;
  7556. height:40px;
  7557. background:inherit;
  7558. background-color:rgba(255, 255, 255, 0);
  7559. border:none;
  7560. border-top:0px;
  7561. border-right:0px;
  7562. border-bottom:0px;
  7563. border-radius:0px;
  7564. border-top-left-radius:0px;
  7565. border-bottom-left-radius:0px;
  7566. -moz-box-shadow:none;
  7567. -webkit-box-shadow:none;
  7568. box-shadow:none;
  7569. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7570. font-weight:400;
  7571. font-style:normal;
  7572. font-size:14px;
  7573. color:#7F7F7F;
  7574. line-height:40px;
  7575. }
  7576. #u65482 {
  7577. border-width:0px;
  7578. position:absolute;
  7579. left:3612px;
  7580. top:649px;
  7581. width:80px;
  7582. height:40px;
  7583. display:flex;
  7584. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7585. font-weight:400;
  7586. font-style:normal;
  7587. font-size:14px;
  7588. color:#7F7F7F;
  7589. line-height:40px;
  7590. }
  7591. #u65482 .text {
  7592. position:absolute;
  7593. align-self:center;
  7594. padding:0px 0px 0px 0px;
  7595. box-sizing:border-box;
  7596. width:100%;
  7597. }
  7598. #u65482_text {
  7599. border-width:0px;
  7600. word-wrap:break-word;
  7601. text-transform:none;
  7602. }
  7603. #u65483_div {
  7604. border-width:0px;
  7605. position:absolute;
  7606. left:0px;
  7607. top:0px;
  7608. width:113px;
  7609. height:40px;
  7610. background:inherit;
  7611. background-color:rgba(255, 255, 255, 0);
  7612. border:none;
  7613. border-top:0px;
  7614. border-right:0px;
  7615. border-bottom:0px;
  7616. border-radius:0px;
  7617. border-top-left-radius:0px;
  7618. border-bottom-left-radius:0px;
  7619. -moz-box-shadow:none;
  7620. -webkit-box-shadow:none;
  7621. box-shadow:none;
  7622. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7623. font-weight:400;
  7624. font-style:normal;
  7625. font-size:14px;
  7626. line-height:40px;
  7627. }
  7628. #u65483 {
  7629. border-width:0px;
  7630. position:absolute;
  7631. left:3692px;
  7632. top:649px;
  7633. width:113px;
  7634. height:40px;
  7635. display:flex;
  7636. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7637. font-weight:400;
  7638. font-style:normal;
  7639. font-size:14px;
  7640. line-height:40px;
  7641. }
  7642. #u65483 .text {
  7643. position:absolute;
  7644. align-self:center;
  7645. padding:0px 0px 0px 0px;
  7646. box-sizing:border-box;
  7647. width:100%;
  7648. }
  7649. #u65483_text {
  7650. border-width:0px;
  7651. white-space:nowrap;
  7652. text-transform:none;
  7653. }
  7654. #u65484_div {
  7655. border-width:0px;
  7656. position:absolute;
  7657. left:0px;
  7658. top:0px;
  7659. width:73px;
  7660. height:40px;
  7661. background:inherit;
  7662. background-color:rgba(255, 255, 255, 0);
  7663. border:none;
  7664. border-left:0px;
  7665. border-top:0px;
  7666. border-right:0px;
  7667. border-radius:0px;
  7668. border-bottom-right-radius:0px;
  7669. border-bottom-left-radius:0px;
  7670. -moz-box-shadow:none;
  7671. -webkit-box-shadow:none;
  7672. box-shadow:none;
  7673. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7674. font-weight:400;
  7675. font-style:normal;
  7676. font-size:18px;
  7677. }
  7678. #u65484 {
  7679. border-width:0px;
  7680. position:absolute;
  7681. left:3292px;
  7682. top:529px;
  7683. width:73px;
  7684. height:40px;
  7685. display:flex;
  7686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7687. font-weight:400;
  7688. font-style:normal;
  7689. font-size:18px;
  7690. }
  7691. #u65484 .text {
  7692. position:absolute;
  7693. align-self:center;
  7694. padding:0px 0px 0px 0px;
  7695. box-sizing:border-box;
  7696. width:100%;
  7697. }
  7698. #u65484_text {
  7699. border-width:0px;
  7700. white-space:nowrap;
  7701. text-transform:none;
  7702. }
  7703. #u65485_div {
  7704. border-width:0px;
  7705. position:absolute;
  7706. left:0px;
  7707. top:0px;
  7708. width:80px;
  7709. height:40px;
  7710. background:inherit;
  7711. background-color:rgba(255, 255, 255, 0);
  7712. border:none;
  7713. border-top:0px;
  7714. border-right:0px;
  7715. border-bottom:0px;
  7716. border-radius:0px;
  7717. border-top-left-radius:0px;
  7718. border-bottom-left-radius:0px;
  7719. -moz-box-shadow:none;
  7720. -webkit-box-shadow:none;
  7721. box-shadow:none;
  7722. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7723. font-weight:400;
  7724. font-style:normal;
  7725. font-size:14px;
  7726. color:#7F7F7F;
  7727. line-height:40px;
  7728. }
  7729. #u65485 {
  7730. border-width:0px;
  7731. position:absolute;
  7732. left:3292px;
  7733. top:569px;
  7734. width:80px;
  7735. height:40px;
  7736. display:flex;
  7737. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7738. font-weight:400;
  7739. font-style:normal;
  7740. font-size:14px;
  7741. color:#7F7F7F;
  7742. line-height:40px;
  7743. }
  7744. #u65485 .text {
  7745. position:absolute;
  7746. align-self:center;
  7747. padding:0px 0px 0px 0px;
  7748. box-sizing:border-box;
  7749. width:100%;
  7750. }
  7751. #u65485_text {
  7752. border-width:0px;
  7753. word-wrap:break-word;
  7754. text-transform:none;
  7755. }
  7756. #u65486_div {
  7757. border-width:0px;
  7758. position:absolute;
  7759. left:0px;
  7760. top:0px;
  7761. width:160px;
  7762. height:40px;
  7763. background:inherit;
  7764. background-color:rgba(255, 255, 255, 0);
  7765. border:none;
  7766. border-top:0px;
  7767. border-right:0px;
  7768. border-bottom:0px;
  7769. border-radius:0px;
  7770. border-top-left-radius:0px;
  7771. border-bottom-left-radius:0px;
  7772. -moz-box-shadow:none;
  7773. -webkit-box-shadow:none;
  7774. box-shadow:none;
  7775. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7776. font-weight:400;
  7777. font-style:normal;
  7778. font-size:14px;
  7779. line-height:40px;
  7780. }
  7781. #u65486 {
  7782. border-width:0px;
  7783. position:absolute;
  7784. left:3372px;
  7785. top:569px;
  7786. width:160px;
  7787. height:40px;
  7788. display:flex;
  7789. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7790. font-weight:400;
  7791. font-style:normal;
  7792. font-size:14px;
  7793. line-height:40px;
  7794. }
  7795. #u65486 .text {
  7796. position:absolute;
  7797. align-self:center;
  7798. padding:0px 0px 0px 0px;
  7799. box-sizing:border-box;
  7800. width:100%;
  7801. }
  7802. #u65486_text {
  7803. border-width:0px;
  7804. word-wrap:break-word;
  7805. text-transform:none;
  7806. }
  7807. #u65487_div {
  7808. border-width:0px;
  7809. position:absolute;
  7810. left:0px;
  7811. top:0px;
  7812. width:80px;
  7813. height:40px;
  7814. background:inherit;
  7815. background-color:rgba(255, 255, 255, 0);
  7816. border:none;
  7817. border-top:0px;
  7818. border-right:0px;
  7819. border-bottom:0px;
  7820. border-radius:0px;
  7821. border-top-left-radius:0px;
  7822. border-bottom-left-radius:0px;
  7823. -moz-box-shadow:none;
  7824. -webkit-box-shadow:none;
  7825. box-shadow:none;
  7826. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7827. font-weight:400;
  7828. font-style:normal;
  7829. font-size:14px;
  7830. color:#7F7F7F;
  7831. line-height:40px;
  7832. }
  7833. #u65487 {
  7834. border-width:0px;
  7835. position:absolute;
  7836. left:3612px;
  7837. top:569px;
  7838. width:80px;
  7839. height:40px;
  7840. display:flex;
  7841. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7842. font-weight:400;
  7843. font-style:normal;
  7844. font-size:14px;
  7845. color:#7F7F7F;
  7846. line-height:40px;
  7847. }
  7848. #u65487 .text {
  7849. position:absolute;
  7850. align-self:center;
  7851. padding:0px 0px 0px 0px;
  7852. box-sizing:border-box;
  7853. width:100%;
  7854. }
  7855. #u65487_text {
  7856. border-width:0px;
  7857. word-wrap:break-word;
  7858. text-transform:none;
  7859. }
  7860. #u65488_div {
  7861. border-width:0px;
  7862. position:absolute;
  7863. left:0px;
  7864. top:0px;
  7865. width:160px;
  7866. height:40px;
  7867. background:inherit;
  7868. background-color:rgba(255, 255, 255, 0);
  7869. border:none;
  7870. border-top:0px;
  7871. border-right:0px;
  7872. border-bottom:0px;
  7873. border-radius:0px;
  7874. border-top-left-radius:0px;
  7875. border-bottom-left-radius:0px;
  7876. -moz-box-shadow:none;
  7877. -webkit-box-shadow:none;
  7878. box-shadow:none;
  7879. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7880. font-weight:400;
  7881. font-style:normal;
  7882. font-size:14px;
  7883. line-height:40px;
  7884. }
  7885. #u65488 {
  7886. border-width:0px;
  7887. position:absolute;
  7888. left:3692px;
  7889. top:569px;
  7890. width:160px;
  7891. height:40px;
  7892. display:flex;
  7893. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7894. font-weight:400;
  7895. font-style:normal;
  7896. font-size:14px;
  7897. line-height:40px;
  7898. }
  7899. #u65488 .text {
  7900. position:absolute;
  7901. align-self:center;
  7902. padding:0px 0px 0px 0px;
  7903. box-sizing:border-box;
  7904. width:100%;
  7905. }
  7906. #u65488_text {
  7907. border-width:0px;
  7908. word-wrap:break-word;
  7909. text-transform:none;
  7910. }
  7911. #u65489_div {
  7912. border-width:0px;
  7913. position:absolute;
  7914. left:0px;
  7915. top:0px;
  7916. width:80px;
  7917. height:40px;
  7918. background:inherit;
  7919. background-color:rgba(255, 255, 255, 0);
  7920. border:none;
  7921. border-top:0px;
  7922. border-right:0px;
  7923. border-bottom:0px;
  7924. border-radius:0px;
  7925. border-top-left-radius:0px;
  7926. border-bottom-left-radius:0px;
  7927. -moz-box-shadow:none;
  7928. -webkit-box-shadow:none;
  7929. box-shadow:none;
  7930. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7931. font-weight:400;
  7932. font-style:normal;
  7933. font-size:14px;
  7934. color:#7F7F7F;
  7935. line-height:40px;
  7936. }
  7937. #u65489 {
  7938. border-width:0px;
  7939. position:absolute;
  7940. left:3932px;
  7941. top:569px;
  7942. width:80px;
  7943. height:40px;
  7944. display:flex;
  7945. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7946. font-weight:400;
  7947. font-style:normal;
  7948. font-size:14px;
  7949. color:#7F7F7F;
  7950. line-height:40px;
  7951. }
  7952. #u65489 .text {
  7953. position:absolute;
  7954. align-self:center;
  7955. padding:0px 0px 0px 0px;
  7956. box-sizing:border-box;
  7957. width:100%;
  7958. }
  7959. #u65489_text {
  7960. border-width:0px;
  7961. word-wrap:break-word;
  7962. text-transform:none;
  7963. }
  7964. #u65490_div {
  7965. border-width:0px;
  7966. position:absolute;
  7967. left:0px;
  7968. top:0px;
  7969. width:160px;
  7970. height:40px;
  7971. background:inherit;
  7972. background-color:rgba(255, 255, 255, 0);
  7973. border:none;
  7974. border-top:0px;
  7975. border-right:0px;
  7976. border-bottom:0px;
  7977. border-radius:0px;
  7978. border-top-left-radius:0px;
  7979. border-bottom-left-radius:0px;
  7980. -moz-box-shadow:none;
  7981. -webkit-box-shadow:none;
  7982. box-shadow:none;
  7983. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7984. font-weight:400;
  7985. font-style:normal;
  7986. font-size:14px;
  7987. line-height:40px;
  7988. }
  7989. #u65490 {
  7990. border-width:0px;
  7991. position:absolute;
  7992. left:4012px;
  7993. top:569px;
  7994. width:160px;
  7995. height:40px;
  7996. display:flex;
  7997. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7998. font-weight:400;
  7999. font-style:normal;
  8000. font-size:14px;
  8001. line-height:40px;
  8002. }
  8003. #u65490 .text {
  8004. position:absolute;
  8005. align-self:center;
  8006. padding:0px 0px 0px 0px;
  8007. box-sizing:border-box;
  8008. width:100%;
  8009. }
  8010. #u65490_text {
  8011. border-width:0px;
  8012. word-wrap:break-word;
  8013. text-transform:none;
  8014. }
  8015. #u65491_div {
  8016. border-width:0px;
  8017. position:absolute;
  8018. left:0px;
  8019. top:0px;
  8020. width:80px;
  8021. height:40px;
  8022. background:inherit;
  8023. background-color:rgba(255, 255, 255, 0);
  8024. border:none;
  8025. border-top:0px;
  8026. border-right:0px;
  8027. border-bottom:0px;
  8028. border-radius:0px;
  8029. border-top-left-radius:0px;
  8030. border-bottom-left-radius:0px;
  8031. -moz-box-shadow:none;
  8032. -webkit-box-shadow:none;
  8033. box-shadow:none;
  8034. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8035. font-weight:400;
  8036. font-style:normal;
  8037. font-size:14px;
  8038. color:#7F7F7F;
  8039. line-height:40px;
  8040. }
  8041. #u65491 {
  8042. border-width:0px;
  8043. position:absolute;
  8044. left:3612px;
  8045. top:609px;
  8046. width:80px;
  8047. height:40px;
  8048. display:flex;
  8049. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8050. font-weight:400;
  8051. font-style:normal;
  8052. font-size:14px;
  8053. color:#7F7F7F;
  8054. line-height:40px;
  8055. }
  8056. #u65491 .text {
  8057. position:absolute;
  8058. align-self:center;
  8059. padding:0px 0px 0px 0px;
  8060. box-sizing:border-box;
  8061. width:100%;
  8062. }
  8063. #u65491_text {
  8064. border-width:0px;
  8065. word-wrap:break-word;
  8066. text-transform:none;
  8067. }
  8068. #u65492_div {
  8069. border-width:0px;
  8070. position:absolute;
  8071. left:0px;
  8072. top:0px;
  8073. width:160px;
  8074. height:40px;
  8075. background:inherit;
  8076. background-color:rgba(255, 255, 255, 0);
  8077. border:none;
  8078. border-top:0px;
  8079. border-right:0px;
  8080. border-bottom:0px;
  8081. border-radius:0px;
  8082. border-top-left-radius:0px;
  8083. border-bottom-left-radius:0px;
  8084. -moz-box-shadow:none;
  8085. -webkit-box-shadow:none;
  8086. box-shadow:none;
  8087. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8088. font-weight:400;
  8089. font-style:normal;
  8090. font-size:14px;
  8091. line-height:40px;
  8092. }
  8093. #u65492 {
  8094. border-width:0px;
  8095. position:absolute;
  8096. left:3692px;
  8097. top:609px;
  8098. width:160px;
  8099. height:40px;
  8100. display:flex;
  8101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8102. font-weight:400;
  8103. font-style:normal;
  8104. font-size:14px;
  8105. line-height:40px;
  8106. }
  8107. #u65492 .text {
  8108. position:absolute;
  8109. align-self:center;
  8110. padding:0px 0px 0px 0px;
  8111. box-sizing:border-box;
  8112. width:100%;
  8113. }
  8114. #u65492_text {
  8115. border-width:0px;
  8116. word-wrap:break-word;
  8117. text-transform:none;
  8118. }
  8119. #u65493_div {
  8120. border-width:0px;
  8121. position:absolute;
  8122. left:0px;
  8123. top:0px;
  8124. width:80px;
  8125. height:40px;
  8126. background:inherit;
  8127. background-color:rgba(255, 255, 255, 0);
  8128. border:none;
  8129. border-top:0px;
  8130. border-right:0px;
  8131. border-bottom:0px;
  8132. border-radius:0px;
  8133. border-top-left-radius:0px;
  8134. border-bottom-left-radius:0px;
  8135. -moz-box-shadow:none;
  8136. -webkit-box-shadow:none;
  8137. box-shadow:none;
  8138. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8139. font-weight:400;
  8140. font-style:normal;
  8141. font-size:14px;
  8142. color:#7F7F7F;
  8143. line-height:40px;
  8144. }
  8145. #u65493 {
  8146. border-width:0px;
  8147. position:absolute;
  8148. left:3932px;
  8149. top:609px;
  8150. width:80px;
  8151. height:40px;
  8152. display:flex;
  8153. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8154. font-weight:400;
  8155. font-style:normal;
  8156. font-size:14px;
  8157. color:#7F7F7F;
  8158. line-height:40px;
  8159. }
  8160. #u65493 .text {
  8161. position:absolute;
  8162. align-self:center;
  8163. padding:0px 0px 0px 0px;
  8164. box-sizing:border-box;
  8165. width:100%;
  8166. }
  8167. #u65493_text {
  8168. border-width:0px;
  8169. word-wrap:break-word;
  8170. text-transform:none;
  8171. }
  8172. #u65494_div {
  8173. border-width:0px;
  8174. position:absolute;
  8175. left:0px;
  8176. top:0px;
  8177. width:160px;
  8178. height:40px;
  8179. background:inherit;
  8180. background-color:rgba(255, 255, 255, 0);
  8181. border:none;
  8182. border-top:0px;
  8183. border-right:0px;
  8184. border-bottom:0px;
  8185. border-radius:0px;
  8186. border-top-left-radius:0px;
  8187. border-bottom-left-radius:0px;
  8188. -moz-box-shadow:none;
  8189. -webkit-box-shadow:none;
  8190. box-shadow:none;
  8191. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8192. font-weight:400;
  8193. font-style:normal;
  8194. font-size:14px;
  8195. line-height:40px;
  8196. }
  8197. #u65494 {
  8198. border-width:0px;
  8199. position:absolute;
  8200. left:4012px;
  8201. top:609px;
  8202. width:160px;
  8203. height:40px;
  8204. display:flex;
  8205. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8206. font-weight:400;
  8207. font-style:normal;
  8208. font-size:14px;
  8209. line-height:40px;
  8210. }
  8211. #u65494 .text {
  8212. position:absolute;
  8213. align-self:center;
  8214. padding:0px 0px 0px 0px;
  8215. box-sizing:border-box;
  8216. width:100%;
  8217. }
  8218. #u65494_text {
  8219. border-width:0px;
  8220. word-wrap:break-word;
  8221. text-transform:none;
  8222. }
  8223. #u65495_div {
  8224. border-width:0px;
  8225. position:absolute;
  8226. left:0px;
  8227. top:0px;
  8228. width:71px;
  8229. height:40px;
  8230. background:inherit;
  8231. background-color:rgba(255, 255, 255, 0);
  8232. border:none;
  8233. border-top:0px;
  8234. border-right:0px;
  8235. border-bottom:0px;
  8236. border-radius:0px;
  8237. border-top-left-radius:0px;
  8238. border-bottom-left-radius:0px;
  8239. -moz-box-shadow:none;
  8240. -webkit-box-shadow:none;
  8241. box-shadow:none;
  8242. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8243. font-weight:400;
  8244. font-style:normal;
  8245. font-size:14px;
  8246. color:#7F7F7F;
  8247. line-height:40px;
  8248. }
  8249. #u65495 {
  8250. border-width:0px;
  8251. position:absolute;
  8252. left:3292px;
  8253. top:649px;
  8254. width:71px;
  8255. height:40px;
  8256. display:flex;
  8257. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8258. font-weight:400;
  8259. font-style:normal;
  8260. font-size:14px;
  8261. color:#7F7F7F;
  8262. line-height:40px;
  8263. }
  8264. #u65495 .text {
  8265. position:absolute;
  8266. align-self:center;
  8267. padding:0px 0px 0px 0px;
  8268. box-sizing:border-box;
  8269. width:100%;
  8270. }
  8271. #u65495_text {
  8272. border-width:0px;
  8273. white-space:nowrap;
  8274. text-transform:none;
  8275. }
  8276. #u65496_div {
  8277. border-width:0px;
  8278. position:absolute;
  8279. left:0px;
  8280. top:0px;
  8281. width:160px;
  8282. height:40px;
  8283. background:inherit;
  8284. background-color:rgba(255, 255, 255, 0);
  8285. border:none;
  8286. border-top:0px;
  8287. border-right:0px;
  8288. border-bottom:0px;
  8289. border-radius:0px;
  8290. border-top-left-radius:0px;
  8291. border-bottom-left-radius:0px;
  8292. -moz-box-shadow:none;
  8293. -webkit-box-shadow:none;
  8294. box-shadow:none;
  8295. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8296. font-weight:400;
  8297. font-style:normal;
  8298. font-size:14px;
  8299. line-height:40px;
  8300. }
  8301. #u65496 {
  8302. border-width:0px;
  8303. position:absolute;
  8304. left:3372px;
  8305. top:649px;
  8306. width:160px;
  8307. height:40px;
  8308. display:flex;
  8309. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8310. font-weight:400;
  8311. font-style:normal;
  8312. font-size:14px;
  8313. line-height:40px;
  8314. }
  8315. #u65496 .text {
  8316. position:absolute;
  8317. align-self:center;
  8318. padding:0px 0px 0px 0px;
  8319. box-sizing:border-box;
  8320. width:100%;
  8321. }
  8322. #u65496_text {
  8323. border-width:0px;
  8324. word-wrap:break-word;
  8325. text-transform:none;
  8326. }
  8327. #u65497_div {
  8328. border-width:0px;
  8329. position:absolute;
  8330. left:0px;
  8331. top:0px;
  8332. width:80px;
  8333. height:40px;
  8334. background:inherit;
  8335. background-color:rgba(255, 255, 255, 0);
  8336. border:none;
  8337. border-top:0px;
  8338. border-right:0px;
  8339. border-bottom:0px;
  8340. border-radius:0px;
  8341. border-top-left-radius:0px;
  8342. border-bottom-left-radius:0px;
  8343. -moz-box-shadow:none;
  8344. -webkit-box-shadow:none;
  8345. box-shadow:none;
  8346. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8347. font-weight:400;
  8348. font-style:normal;
  8349. font-size:14px;
  8350. color:#7F7F7F;
  8351. line-height:40px;
  8352. }
  8353. #u65497 {
  8354. border-width:0px;
  8355. position:absolute;
  8356. left:3292px;
  8357. top:609px;
  8358. width:80px;
  8359. height:40px;
  8360. display:flex;
  8361. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8362. font-weight:400;
  8363. font-style:normal;
  8364. font-size:14px;
  8365. color:#7F7F7F;
  8366. line-height:40px;
  8367. }
  8368. #u65497 .text {
  8369. position:absolute;
  8370. align-self:center;
  8371. padding:0px 0px 0px 0px;
  8372. box-sizing:border-box;
  8373. width:100%;
  8374. }
  8375. #u65497_text {
  8376. border-width:0px;
  8377. word-wrap:break-word;
  8378. text-transform:none;
  8379. }
  8380. #u65498_div {
  8381. border-width:0px;
  8382. position:absolute;
  8383. left:0px;
  8384. top:0px;
  8385. width:192px;
  8386. height:40px;
  8387. background:inherit;
  8388. background-color:rgba(255, 255, 255, 0);
  8389. border:none;
  8390. border-top:0px;
  8391. border-right:0px;
  8392. border-bottom:0px;
  8393. border-radius:0px;
  8394. border-top-left-radius:0px;
  8395. border-bottom-left-radius:0px;
  8396. -moz-box-shadow:none;
  8397. -webkit-box-shadow:none;
  8398. box-shadow:none;
  8399. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8400. font-weight:400;
  8401. font-style:normal;
  8402. font-size:14px;
  8403. line-height:40px;
  8404. }
  8405. #u65498 {
  8406. border-width:0px;
  8407. position:absolute;
  8408. left:3372px;
  8409. top:609px;
  8410. width:192px;
  8411. height:40px;
  8412. display:flex;
  8413. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8414. font-weight:400;
  8415. font-style:normal;
  8416. font-size:14px;
  8417. line-height:40px;
  8418. }
  8419. #u65498 .text {
  8420. position:absolute;
  8421. align-self:center;
  8422. padding:0px 0px 0px 0px;
  8423. box-sizing:border-box;
  8424. width:100%;
  8425. }
  8426. #u65498_text {
  8427. border-width:0px;
  8428. white-space:nowrap;
  8429. text-transform:none;
  8430. }
  8431. #u65499_div {
  8432. border-width:0px;
  8433. position:absolute;
  8434. left:0px;
  8435. top:0px;
  8436. width:414px;
  8437. height:40px;
  8438. background:inherit;
  8439. background-color:rgba(255, 255, 255, 0);
  8440. border:none;
  8441. border-top:0px;
  8442. border-right:0px;
  8443. border-bottom:0px;
  8444. border-radius:0px;
  8445. border-top-left-radius:0px;
  8446. border-bottom-left-radius:0px;
  8447. -moz-box-shadow:none;
  8448. -webkit-box-shadow:none;
  8449. box-shadow:none;
  8450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8451. font-weight:400;
  8452. font-style:normal;
  8453. font-size:14px;
  8454. color:#D9001B;
  8455. line-height:40px;
  8456. }
  8457. #u65499 {
  8458. border-width:0px;
  8459. position:absolute;
  8460. left:3752px;
  8461. top:706px;
  8462. width:414px;
  8463. height:40px;
  8464. display:flex;
  8465. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8466. font-weight:400;
  8467. font-style:normal;
  8468. font-size:14px;
  8469. color:#D9001B;
  8470. line-height:40px;
  8471. }
  8472. #u65499 .text {
  8473. position:absolute;
  8474. align-self:center;
  8475. padding:0px 0px 0px 0px;
  8476. box-sizing:border-box;
  8477. width:100%;
  8478. }
  8479. #u65499_text {
  8480. border-width:0px;
  8481. white-space:nowrap;
  8482. text-transform:none;
  8483. }
  8484. #u65500 {
  8485. border-width:0px;
  8486. position:absolute;
  8487. left:3652px;
  8488. top:649px;
  8489. width:0px;
  8490. height:0px;
  8491. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8492. font-weight:400;
  8493. font-style:normal;
  8494. font-size:28px;
  8495. color:#333333;
  8496. }
  8497. #u65500_seg0 {
  8498. border-width:0px;
  8499. position:absolute;
  8500. left:-5px;
  8501. top:0px;
  8502. width:10px;
  8503. height:82px;
  8504. }
  8505. #u65500_seg1 {
  8506. border-width:0px;
  8507. position:absolute;
  8508. left:-5px;
  8509. top:72px;
  8510. width:105px;
  8511. height:10px;
  8512. }
  8513. #u65500_seg2 {
  8514. border-width:0px;
  8515. position:absolute;
  8516. left:90px;
  8517. top:68px;
  8518. width:18px;
  8519. height:18px;
  8520. }
  8521. #u65500_text {
  8522. border-width:0px;
  8523. position:absolute;
  8524. left:-38px;
  8525. top:69px;
  8526. width:100px;
  8527. word-wrap:break-word;
  8528. text-transform:none;
  8529. visibility:hidden;
  8530. }
  8531. #u65501 {
  8532. border-width:0px;
  8533. position:absolute;
  8534. left:0px;
  8535. top:0px;
  8536. width:0px;
  8537. height:0px;
  8538. }
  8539. #u65502_div {
  8540. border-width:0px;
  8541. position:absolute;
  8542. left:0px;
  8543. top:0px;
  8544. width:1000px;
  8545. height:988px;
  8546. background:inherit;
  8547. background-color:rgba(255, 255, 255, 1);
  8548. box-sizing:border-box;
  8549. border-width:1px;
  8550. border-style:solid;
  8551. border-color:rgba(242, 242, 242, 1);
  8552. border-radius:0px;
  8553. -moz-box-shadow:none;
  8554. -webkit-box-shadow:none;
  8555. box-shadow:none;
  8556. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8557. font-weight:400;
  8558. font-style:normal;
  8559. font-size:14px;
  8560. color:#AAAAAA;
  8561. text-align:center;
  8562. line-height:30px;
  8563. }
  8564. #u65502 {
  8565. border-width:0px;
  8566. position:absolute;
  8567. left:1143px;
  8568. top:266px;
  8569. width:1000px;
  8570. height:988px;
  8571. display:flex;
  8572. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8573. font-weight:400;
  8574. font-style:normal;
  8575. font-size:14px;
  8576. color:#AAAAAA;
  8577. text-align:center;
  8578. line-height:30px;
  8579. }
  8580. #u65502 .text {
  8581. position:absolute;
  8582. align-self:center;
  8583. padding:5px 10px 5px 10px;
  8584. box-sizing:border-box;
  8585. width:100%;
  8586. }
  8587. #u65502_text {
  8588. border-width:0px;
  8589. word-wrap:break-word;
  8590. text-transform:none;
  8591. visibility:hidden;
  8592. }
  8593. #u65503_div {
  8594. border-width:0px;
  8595. position:absolute;
  8596. left:0px;
  8597. top:0px;
  8598. width:73px;
  8599. height:40px;
  8600. background:inherit;
  8601. background-color:rgba(255, 255, 255, 0);
  8602. border:none;
  8603. border-left:0px;
  8604. border-top:0px;
  8605. border-right:0px;
  8606. border-radius:0px;
  8607. border-bottom-right-radius:0px;
  8608. border-bottom-left-radius:0px;
  8609. -moz-box-shadow:none;
  8610. -webkit-box-shadow:none;
  8611. box-shadow:none;
  8612. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8613. font-weight:400;
  8614. font-style:normal;
  8615. font-size:18px;
  8616. }
  8617. #u65503 {
  8618. border-width:0px;
  8619. position:absolute;
  8620. left:1183px;
  8621. top:282px;
  8622. width:73px;
  8623. height:40px;
  8624. display:flex;
  8625. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8626. font-weight:400;
  8627. font-style:normal;
  8628. font-size:18px;
  8629. }
  8630. #u65503 .text {
  8631. position:absolute;
  8632. align-self:center;
  8633. padding:0px 0px 0px 0px;
  8634. box-sizing:border-box;
  8635. width:100%;
  8636. }
  8637. #u65503_text {
  8638. border-width:0px;
  8639. white-space:nowrap;
  8640. text-transform:none;
  8641. }
  8642. #u65504_div {
  8643. border-width:0px;
  8644. position:absolute;
  8645. left:0px;
  8646. top:0px;
  8647. width:81px;
  8648. height:30px;
  8649. background:inherit;
  8650. background-color:rgba(255, 255, 255, 0);
  8651. border:none;
  8652. border-top:0px;
  8653. border-right:0px;
  8654. border-bottom:0px;
  8655. border-radius:0px;
  8656. border-top-left-radius:0px;
  8657. border-bottom-left-radius:0px;
  8658. -moz-box-shadow:none;
  8659. -webkit-box-shadow:none;
  8660. box-shadow:none;
  8661. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8662. font-weight:400;
  8663. font-style:normal;
  8664. font-size:14px;
  8665. color:#7F7F7F;
  8666. }
  8667. #u65504 {
  8668. border-width:0px;
  8669. position:absolute;
  8670. left:1183px;
  8671. top:332px;
  8672. width:81px;
  8673. height:30px;
  8674. display:flex;
  8675. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8676. font-weight:400;
  8677. font-style:normal;
  8678. font-size:14px;
  8679. color:#7F7F7F;
  8680. }
  8681. #u65504 .text {
  8682. position:absolute;
  8683. align-self:center;
  8684. padding:5px 10px 5px 0px;
  8685. box-sizing:border-box;
  8686. width:100%;
  8687. }
  8688. #u65504_text {
  8689. border-width:0px;
  8690. white-space:nowrap;
  8691. text-transform:none;
  8692. }
  8693. #u65505_div {
  8694. border-width:0px;
  8695. position:absolute;
  8696. left:0px;
  8697. top:0px;
  8698. width:142px;
  8699. height:30px;
  8700. background:inherit;
  8701. background-color:rgba(255, 255, 255, 0);
  8702. border:none;
  8703. border-top:0px;
  8704. border-right:0px;
  8705. border-bottom:0px;
  8706. border-radius:0px;
  8707. border-top-left-radius:0px;
  8708. border-bottom-left-radius:0px;
  8709. -moz-box-shadow:none;
  8710. -webkit-box-shadow:none;
  8711. box-shadow:none;
  8712. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8713. font-weight:400;
  8714. font-style:normal;
  8715. font-size:14px;
  8716. color:#1890FF;
  8717. }
  8718. #u65505 {
  8719. border-width:0px;
  8720. position:absolute;
  8721. left:1264px;
  8722. top:332px;
  8723. width:142px;
  8724. height:30px;
  8725. display:flex;
  8726. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8727. font-weight:400;
  8728. font-style:normal;
  8729. font-size:14px;
  8730. color:#1890FF;
  8731. }
  8732. #u65505 .text {
  8733. position:absolute;
  8734. align-self:center;
  8735. padding:5px 10px 5px 0px;
  8736. box-sizing:border-box;
  8737. width:100%;
  8738. }
  8739. #u65505_text {
  8740. border-width:0px;
  8741. white-space:nowrap;
  8742. text-transform:none;
  8743. }
  8744. #u65506_div {
  8745. border-width:0px;
  8746. position:absolute;
  8747. left:0px;
  8748. top:0px;
  8749. width:81px;
  8750. height:30px;
  8751. background:inherit;
  8752. background-color:rgba(255, 255, 255, 0);
  8753. border:none;
  8754. border-top:0px;
  8755. border-right:0px;
  8756. border-bottom:0px;
  8757. border-radius:0px;
  8758. border-top-left-radius:0px;
  8759. border-bottom-left-radius:0px;
  8760. -moz-box-shadow:none;
  8761. -webkit-box-shadow:none;
  8762. box-shadow:none;
  8763. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8764. font-weight:400;
  8765. font-style:normal;
  8766. font-size:14px;
  8767. color:#7F7F7F;
  8768. }
  8769. #u65506 {
  8770. border-width:0px;
  8771. position:absolute;
  8772. left:1503px;
  8773. top:332px;
  8774. width:81px;
  8775. height:30px;
  8776. display:flex;
  8777. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8778. font-weight:400;
  8779. font-style:normal;
  8780. font-size:14px;
  8781. color:#7F7F7F;
  8782. }
  8783. #u65506 .text {
  8784. position:absolute;
  8785. align-self:center;
  8786. padding:5px 10px 5px 0px;
  8787. box-sizing:border-box;
  8788. width:100%;
  8789. }
  8790. #u65506_text {
  8791. border-width:0px;
  8792. white-space:nowrap;
  8793. text-transform:none;
  8794. }
  8795. #u65507_div {
  8796. border-width:0px;
  8797. position:absolute;
  8798. left:0px;
  8799. top:0px;
  8800. width:67px;
  8801. height:30px;
  8802. background:inherit;
  8803. background-color:rgba(255, 255, 255, 0);
  8804. border:none;
  8805. border-top:0px;
  8806. border-right:0px;
  8807. border-bottom:0px;
  8808. border-radius:0px;
  8809. border-top-left-radius:0px;
  8810. border-bottom-left-radius:0px;
  8811. -moz-box-shadow:none;
  8812. -webkit-box-shadow:none;
  8813. box-shadow:none;
  8814. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8815. font-weight:400;
  8816. font-style:normal;
  8817. font-size:14px;
  8818. }
  8819. #u65507 {
  8820. border-width:0px;
  8821. position:absolute;
  8822. left:1584px;
  8823. top:332px;
  8824. width:67px;
  8825. height:30px;
  8826. display:flex;
  8827. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8828. font-weight:400;
  8829. font-style:normal;
  8830. font-size:14px;
  8831. }
  8832. #u65507 .text {
  8833. position:absolute;
  8834. align-self:center;
  8835. padding:5px 10px 5px 0px;
  8836. box-sizing:border-box;
  8837. width:100%;
  8838. }
  8839. #u65507_text {
  8840. border-width:0px;
  8841. white-space:nowrap;
  8842. text-transform:none;
  8843. }
  8844. #u65508_div {
  8845. border-width:0px;
  8846. position:absolute;
  8847. left:0px;
  8848. top:0px;
  8849. width:81px;
  8850. height:30px;
  8851. background:inherit;
  8852. background-color:rgba(255, 255, 255, 0);
  8853. border:none;
  8854. border-top:0px;
  8855. border-right:0px;
  8856. border-bottom:0px;
  8857. border-radius:0px;
  8858. border-top-left-radius:0px;
  8859. border-bottom-left-radius:0px;
  8860. -moz-box-shadow:none;
  8861. -webkit-box-shadow:none;
  8862. box-shadow:none;
  8863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8864. font-weight:400;
  8865. font-style:normal;
  8866. font-size:14px;
  8867. color:#7F7F7F;
  8868. }
  8869. #u65508 {
  8870. border-width:0px;
  8871. position:absolute;
  8872. left:1800px;
  8873. top:332px;
  8874. width:81px;
  8875. height:30px;
  8876. display:flex;
  8877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8878. font-weight:400;
  8879. font-style:normal;
  8880. font-size:14px;
  8881. color:#7F7F7F;
  8882. }
  8883. #u65508 .text {
  8884. position:absolute;
  8885. align-self:center;
  8886. padding:5px 10px 5px 0px;
  8887. box-sizing:border-box;
  8888. width:100%;
  8889. }
  8890. #u65508_text {
  8891. border-width:0px;
  8892. white-space:nowrap;
  8893. text-transform:none;
  8894. }
  8895. #u65509_div {
  8896. border-width:0px;
  8897. position:absolute;
  8898. left:0px;
  8899. top:0px;
  8900. width:53px;
  8901. height:30px;
  8902. background:inherit;
  8903. background-color:rgba(255, 255, 255, 0);
  8904. border:none;
  8905. border-top:0px;
  8906. border-right:0px;
  8907. border-bottom:0px;
  8908. border-radius:0px;
  8909. border-top-left-radius:0px;
  8910. border-bottom-left-radius:0px;
  8911. -moz-box-shadow:none;
  8912. -webkit-box-shadow:none;
  8913. box-shadow:none;
  8914. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8915. font-weight:400;
  8916. font-style:normal;
  8917. font-size:14px;
  8918. }
  8919. #u65509 {
  8920. border-width:0px;
  8921. position:absolute;
  8922. left:1881px;
  8923. top:332px;
  8924. width:53px;
  8925. height:30px;
  8926. display:flex;
  8927. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8928. font-weight:400;
  8929. font-style:normal;
  8930. font-size:14px;
  8931. }
  8932. #u65509 .text {
  8933. position:absolute;
  8934. align-self:center;
  8935. padding:5px 10px 5px 0px;
  8936. box-sizing:border-box;
  8937. width:100%;
  8938. }
  8939. #u65509_text {
  8940. border-width:0px;
  8941. white-space:nowrap;
  8942. text-transform:none;
  8943. }
  8944. #u65510_div {
  8945. border-width:0px;
  8946. position:absolute;
  8947. left:0px;
  8948. top:0px;
  8949. width:81px;
  8950. height:30px;
  8951. background:inherit;
  8952. background-color:rgba(255, 255, 255, 0);
  8953. border:none;
  8954. border-top:0px;
  8955. border-right:0px;
  8956. border-bottom:0px;
  8957. border-radius:0px;
  8958. border-top-left-radius:0px;
  8959. border-bottom-left-radius:0px;
  8960. -moz-box-shadow:none;
  8961. -webkit-box-shadow:none;
  8962. box-shadow:none;
  8963. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8964. font-weight:400;
  8965. font-style:normal;
  8966. font-size:14px;
  8967. color:#7F7F7F;
  8968. }
  8969. #u65510 {
  8970. border-width:0px;
  8971. position:absolute;
  8972. left:1183px;
  8973. top:372px;
  8974. width:81px;
  8975. height:30px;
  8976. display:flex;
  8977. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8978. font-weight:400;
  8979. font-style:normal;
  8980. font-size:14px;
  8981. color:#7F7F7F;
  8982. }
  8983. #u65510 .text {
  8984. position:absolute;
  8985. align-self:center;
  8986. padding:5px 10px 5px 0px;
  8987. box-sizing:border-box;
  8988. width:100%;
  8989. }
  8990. #u65510_text {
  8991. border-width:0px;
  8992. white-space:nowrap;
  8993. text-transform:none;
  8994. }
  8995. #u65511_div {
  8996. border-width:0px;
  8997. position:absolute;
  8998. left:0px;
  8999. top:0px;
  9000. width:81px;
  9001. height:30px;
  9002. background:inherit;
  9003. background-color:rgba(255, 255, 255, 0);
  9004. border:none;
  9005. border-top:0px;
  9006. border-right:0px;
  9007. border-bottom:0px;
  9008. border-radius:0px;
  9009. border-top-left-radius:0px;
  9010. border-bottom-left-radius:0px;
  9011. -moz-box-shadow:none;
  9012. -webkit-box-shadow:none;
  9013. box-shadow:none;
  9014. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9015. font-weight:400;
  9016. font-style:normal;
  9017. font-size:14px;
  9018. color:#7F7F7F;
  9019. }
  9020. #u65511 {
  9021. border-width:0px;
  9022. position:absolute;
  9023. left:1503px;
  9024. top:372px;
  9025. width:81px;
  9026. height:30px;
  9027. display:flex;
  9028. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9029. font-weight:400;
  9030. font-style:normal;
  9031. font-size:14px;
  9032. color:#7F7F7F;
  9033. }
  9034. #u65511 .text {
  9035. position:absolute;
  9036. align-self:center;
  9037. padding:5px 10px 5px 0px;
  9038. box-sizing:border-box;
  9039. width:100%;
  9040. }
  9041. #u65511_text {
  9042. border-width:0px;
  9043. white-space:nowrap;
  9044. text-transform:none;
  9045. }
  9046. #u65512_div {
  9047. border-width:0px;
  9048. position:absolute;
  9049. left:0px;
  9050. top:0px;
  9051. width:67px;
  9052. height:30px;
  9053. background:inherit;
  9054. background-color:rgba(255, 255, 255, 0);
  9055. border:none;
  9056. border-top:0px;
  9057. border-right:0px;
  9058. border-bottom:0px;
  9059. border-radius:0px;
  9060. border-top-left-radius:0px;
  9061. border-bottom-left-radius:0px;
  9062. -moz-box-shadow:none;
  9063. -webkit-box-shadow:none;
  9064. box-shadow:none;
  9065. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9066. font-weight:400;
  9067. font-style:normal;
  9068. font-size:14px;
  9069. }
  9070. #u65512 {
  9071. border-width:0px;
  9072. position:absolute;
  9073. left:1584px;
  9074. top:372px;
  9075. width:67px;
  9076. height:30px;
  9077. display:flex;
  9078. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9079. font-weight:400;
  9080. font-style:normal;
  9081. font-size:14px;
  9082. }
  9083. #u65512 .text {
  9084. position:absolute;
  9085. align-self:center;
  9086. padding:5px 10px 5px 0px;
  9087. box-sizing:border-box;
  9088. width:100%;
  9089. }
  9090. #u65512_text {
  9091. border-width:0px;
  9092. white-space:nowrap;
  9093. text-transform:none;
  9094. }
  9095. #u65513_div {
  9096. border-width:0px;
  9097. position:absolute;
  9098. left:0px;
  9099. top:0px;
  9100. width:67px;
  9101. height:30px;
  9102. background:inherit;
  9103. background-color:rgba(255, 255, 255, 0);
  9104. border:none;
  9105. border-top:0px;
  9106. border-right:0px;
  9107. border-bottom:0px;
  9108. border-radius:0px;
  9109. border-top-left-radius:0px;
  9110. border-bottom-left-radius:0px;
  9111. -moz-box-shadow:none;
  9112. -webkit-box-shadow:none;
  9113. box-shadow:none;
  9114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9115. font-weight:400;
  9116. font-style:normal;
  9117. font-size:14px;
  9118. color:#7F7F7F;
  9119. }
  9120. #u65513 {
  9121. border-width:0px;
  9122. position:absolute;
  9123. left:1800px;
  9124. top:372px;
  9125. width:67px;
  9126. height:30px;
  9127. display:flex;
  9128. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9129. font-weight:400;
  9130. font-style:normal;
  9131. font-size:14px;
  9132. color:#7F7F7F;
  9133. }
  9134. #u65513 .text {
  9135. position:absolute;
  9136. align-self:center;
  9137. padding:5px 10px 5px 0px;
  9138. box-sizing:border-box;
  9139. width:100%;
  9140. }
  9141. #u65513_text {
  9142. border-width:0px;
  9143. white-space:nowrap;
  9144. text-transform:none;
  9145. }
  9146. #u65514_div {
  9147. border-width:0px;
  9148. position:absolute;
  9149. left:0px;
  9150. top:0px;
  9151. width:85px;
  9152. height:30px;
  9153. background:inherit;
  9154. background-color:rgba(255, 255, 255, 0);
  9155. border:none;
  9156. border-top:0px;
  9157. border-right:0px;
  9158. border-bottom:0px;
  9159. border-radius:0px;
  9160. border-top-left-radius:0px;
  9161. border-bottom-left-radius:0px;
  9162. -moz-box-shadow:none;
  9163. -webkit-box-shadow:none;
  9164. box-shadow:none;
  9165. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9166. font-weight:400;
  9167. font-style:normal;
  9168. font-size:14px;
  9169. }
  9170. #u65514 {
  9171. border-width:0px;
  9172. position:absolute;
  9173. left:1881px;
  9174. top:372px;
  9175. width:85px;
  9176. height:30px;
  9177. display:flex;
  9178. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9179. font-weight:400;
  9180. font-style:normal;
  9181. font-size:14px;
  9182. }
  9183. #u65514 .text {
  9184. position:absolute;
  9185. align-self:center;
  9186. padding:5px 10px 5px 0px;
  9187. box-sizing:border-box;
  9188. width:100%;
  9189. }
  9190. #u65514_text {
  9191. border-width:0px;
  9192. white-space:nowrap;
  9193. text-transform:none;
  9194. }
  9195. #u65515_div {
  9196. border-width:0px;
  9197. position:absolute;
  9198. left:0px;
  9199. top:0px;
  9200. width:183px;
  9201. height:30px;
  9202. background:inherit;
  9203. background-color:rgba(255, 255, 255, 0);
  9204. border:none;
  9205. border-top:0px;
  9206. border-right:0px;
  9207. border-bottom:0px;
  9208. border-radius:0px;
  9209. border-top-left-radius:0px;
  9210. border-bottom-left-radius:0px;
  9211. -moz-box-shadow:none;
  9212. -webkit-box-shadow:none;
  9213. box-shadow:none;
  9214. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9215. font-weight:400;
  9216. font-style:normal;
  9217. font-size:14px;
  9218. }
  9219. #u65515 {
  9220. border-width:0px;
  9221. position:absolute;
  9222. left:1264px;
  9223. top:372px;
  9224. width:183px;
  9225. height:30px;
  9226. display:flex;
  9227. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9228. font-weight:400;
  9229. font-style:normal;
  9230. font-size:14px;
  9231. }
  9232. #u65515 .text {
  9233. position:absolute;
  9234. align-self:center;
  9235. padding:5px 10px 5px 0px;
  9236. box-sizing:border-box;
  9237. width:100%;
  9238. }
  9239. #u65515_text {
  9240. border-width:0px;
  9241. white-space:nowrap;
  9242. text-transform:none;
  9243. }
  9244. #u65516_div {
  9245. border-width:0px;
  9246. position:absolute;
  9247. left:0px;
  9248. top:0px;
  9249. width:81px;
  9250. height:30px;
  9251. background:inherit;
  9252. background-color:rgba(255, 255, 255, 0);
  9253. border:none;
  9254. border-top:0px;
  9255. border-right:0px;
  9256. border-bottom:0px;
  9257. border-radius:0px;
  9258. border-top-left-radius:0px;
  9259. border-bottom-left-radius:0px;
  9260. -moz-box-shadow:none;
  9261. -webkit-box-shadow:none;
  9262. box-shadow:none;
  9263. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9264. font-weight:400;
  9265. font-style:normal;
  9266. font-size:14px;
  9267. color:#7F7F7F;
  9268. }
  9269. #u65516 {
  9270. border-width:0px;
  9271. position:absolute;
  9272. left:1183px;
  9273. top:412px;
  9274. width:81px;
  9275. height:30px;
  9276. display:flex;
  9277. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9278. font-weight:400;
  9279. font-style:normal;
  9280. font-size:14px;
  9281. color:#7F7F7F;
  9282. }
  9283. #u65516 .text {
  9284. position:absolute;
  9285. align-self:center;
  9286. padding:5px 10px 5px 0px;
  9287. box-sizing:border-box;
  9288. width:100%;
  9289. }
  9290. #u65516_text {
  9291. border-width:0px;
  9292. white-space:nowrap;
  9293. text-transform:none;
  9294. }
  9295. #u65517_div {
  9296. border-width:0px;
  9297. position:absolute;
  9298. left:0px;
  9299. top:0px;
  9300. width:126px;
  9301. height:30px;
  9302. background:inherit;
  9303. background-color:rgba(255, 255, 255, 0);
  9304. border:none;
  9305. border-top:0px;
  9306. border-right:0px;
  9307. border-bottom:0px;
  9308. border-radius:0px;
  9309. border-top-left-radius:0px;
  9310. border-bottom-left-radius:0px;
  9311. -moz-box-shadow:none;
  9312. -webkit-box-shadow:none;
  9313. box-shadow:none;
  9314. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9315. font-weight:400;
  9316. font-style:normal;
  9317. font-size:14px;
  9318. }
  9319. #u65517 {
  9320. border-width:0px;
  9321. position:absolute;
  9322. left:1264px;
  9323. top:412px;
  9324. width:126px;
  9325. height:30px;
  9326. display:flex;
  9327. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9328. font-weight:400;
  9329. font-style:normal;
  9330. font-size:14px;
  9331. }
  9332. #u65517 .text {
  9333. position:absolute;
  9334. align-self:center;
  9335. padding:5px 10px 5px 0px;
  9336. box-sizing:border-box;
  9337. width:100%;
  9338. }
  9339. #u65517_text {
  9340. border-width:0px;
  9341. white-space:nowrap;
  9342. text-transform:none;
  9343. }
  9344. #u65518_div {
  9345. border-width:0px;
  9346. position:absolute;
  9347. left:0px;
  9348. top:0px;
  9349. width:81px;
  9350. height:30px;
  9351. background:inherit;
  9352. background-color:rgba(255, 255, 255, 0);
  9353. border:none;
  9354. border-top:0px;
  9355. border-right:0px;
  9356. border-bottom:0px;
  9357. border-radius:0px;
  9358. border-top-left-radius:0px;
  9359. border-bottom-left-radius:0px;
  9360. -moz-box-shadow:none;
  9361. -webkit-box-shadow:none;
  9362. box-shadow:none;
  9363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9364. font-weight:400;
  9365. font-style:normal;
  9366. font-size:14px;
  9367. color:#7F7F7F;
  9368. }
  9369. #u65518 {
  9370. border-width:0px;
  9371. position:absolute;
  9372. left:1183px;
  9373. top:452px;
  9374. width:81px;
  9375. height:30px;
  9376. display:flex;
  9377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9378. font-weight:400;
  9379. font-style:normal;
  9380. font-size:14px;
  9381. color:#7F7F7F;
  9382. }
  9383. #u65518 .text {
  9384. position:absolute;
  9385. align-self:center;
  9386. padding:5px 10px 5px 0px;
  9387. box-sizing:border-box;
  9388. width:100%;
  9389. }
  9390. #u65518_text {
  9391. border-width:0px;
  9392. white-space:nowrap;
  9393. text-transform:none;
  9394. }
  9395. #u65519_div {
  9396. border-width:0px;
  9397. position:absolute;
  9398. left:0px;
  9399. top:0px;
  9400. width:263px;
  9401. height:30px;
  9402. background:inherit;
  9403. background-color:rgba(255, 255, 255, 0);
  9404. border:none;
  9405. border-top:0px;
  9406. border-right:0px;
  9407. border-bottom:0px;
  9408. border-radius:0px;
  9409. border-top-left-radius:0px;
  9410. border-bottom-left-radius:0px;
  9411. -moz-box-shadow:none;
  9412. -webkit-box-shadow:none;
  9413. box-shadow:none;
  9414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9415. font-weight:400;
  9416. font-style:normal;
  9417. font-size:14px;
  9418. }
  9419. #u65519 {
  9420. border-width:0px;
  9421. position:absolute;
  9422. left:1264px;
  9423. top:452px;
  9424. width:263px;
  9425. height:30px;
  9426. display:flex;
  9427. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9428. font-weight:400;
  9429. font-style:normal;
  9430. font-size:14px;
  9431. }
  9432. #u65519 .text {
  9433. position:absolute;
  9434. align-self:center;
  9435. padding:5px 10px 5px 0px;
  9436. box-sizing:border-box;
  9437. width:100%;
  9438. }
  9439. #u65519_text {
  9440. border-width:0px;
  9441. white-space:nowrap;
  9442. text-transform:none;
  9443. }
  9444. #u65520 {
  9445. border-width:0px;
  9446. position:absolute;
  9447. left:0px;
  9448. top:0px;
  9449. width:0px;
  9450. height:0px;
  9451. }
  9452. #u65521_div {
  9453. border-width:0px;
  9454. position:absolute;
  9455. left:0px;
  9456. top:0px;
  9457. width:1000px;
  9458. height:60px;
  9459. background:inherit;
  9460. background-color:rgba(255, 255, 255, 1);
  9461. box-sizing:border-box;
  9462. border-width:1px;
  9463. border-style:solid;
  9464. border-color:rgba(215, 215, 215, 1);
  9465. border-radius:0px;
  9466. -moz-box-shadow:none;
  9467. -webkit-box-shadow:none;
  9468. box-shadow:none;
  9469. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9470. font-weight:400;
  9471. font-style:normal;
  9472. font-size:14px;
  9473. color:#AAAAAA;
  9474. text-align:center;
  9475. line-height:30px;
  9476. }
  9477. #u65521 {
  9478. border-width:0px;
  9479. position:absolute;
  9480. left:1143px;
  9481. top:1194px;
  9482. width:1000px;
  9483. height:60px;
  9484. display:flex;
  9485. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9486. font-weight:400;
  9487. font-style:normal;
  9488. font-size:14px;
  9489. color:#AAAAAA;
  9490. text-align:center;
  9491. line-height:30px;
  9492. }
  9493. #u65521 .text {
  9494. position:absolute;
  9495. align-self:center;
  9496. padding:5px 10px 5px 10px;
  9497. box-sizing:border-box;
  9498. width:100%;
  9499. }
  9500. #u65521_text {
  9501. border-width:0px;
  9502. word-wrap:break-word;
  9503. text-transform:none;
  9504. visibility:hidden;
  9505. }
  9506. #u65522_div {
  9507. border-width:0px;
  9508. position:absolute;
  9509. left:0px;
  9510. top:0px;
  9511. width:80px;
  9512. height:30px;
  9513. background:inherit;
  9514. background-color:rgba(24, 144, 255, 1);
  9515. border:none;
  9516. border-radius:4px;
  9517. -moz-box-shadow:none;
  9518. -webkit-box-shadow:none;
  9519. box-shadow:none;
  9520. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9521. font-weight:400;
  9522. font-style:normal;
  9523. font-size:14px;
  9524. color:#FFFFFF;
  9525. }
  9526. #u65522 {
  9527. border-width:0px;
  9528. position:absolute;
  9529. left:2037px;
  9530. top:1209px;
  9531. width:80px;
  9532. height:30px;
  9533. display:flex;
  9534. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9535. font-weight:400;
  9536. font-style:normal;
  9537. font-size:14px;
  9538. color:#FFFFFF;
  9539. }
  9540. #u65522 .text {
  9541. position:absolute;
  9542. align-self:center;
  9543. padding:2px 2px 2px 2px;
  9544. box-sizing:border-box;
  9545. width:100%;
  9546. }
  9547. #u65522_text {
  9548. border-width:0px;
  9549. word-wrap:break-word;
  9550. text-transform:none;
  9551. }
  9552. #u65523_div {
  9553. border-width:0px;
  9554. position:absolute;
  9555. left:0px;
  9556. top:0px;
  9557. width:80px;
  9558. height:30px;
  9559. background:inherit;
  9560. background-color:rgba(255, 255, 255, 1);
  9561. box-sizing:border-box;
  9562. border-width:1px;
  9563. border-style:solid;
  9564. border-color:rgba(170, 170, 170, 1);
  9565. border-radius:4px;
  9566. -moz-box-shadow:none;
  9567. -webkit-box-shadow:none;
  9568. box-shadow:none;
  9569. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9570. font-weight:400;
  9571. font-style:normal;
  9572. font-size:14px;
  9573. }
  9574. #u65523 {
  9575. border-width:0px;
  9576. position:absolute;
  9577. left:1947px;
  9578. top:1209px;
  9579. width:80px;
  9580. height:30px;
  9581. display:flex;
  9582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9583. font-weight:400;
  9584. font-style:normal;
  9585. font-size:14px;
  9586. }
  9587. #u65523 .text {
  9588. position:absolute;
  9589. align-self:center;
  9590. padding:2px 2px 2px 2px;
  9591. box-sizing:border-box;
  9592. width:100%;
  9593. }
  9594. #u65523_text {
  9595. border-width:0px;
  9596. word-wrap:break-word;
  9597. text-transform:none;
  9598. }
  9599. #u65524_img {
  9600. border-width:0px;
  9601. position:absolute;
  9602. left:0px;
  9603. top:0px;
  9604. width:942px;
  9605. height:2px;
  9606. }
  9607. #u65524 {
  9608. border-width:0px;
  9609. position:absolute;
  9610. left:1183px;
  9611. top:500px;
  9612. width:941px;
  9613. height:1px;
  9614. display:flex;
  9615. }
  9616. #u65524 .text {
  9617. position:absolute;
  9618. align-self:center;
  9619. padding:2px 2px 2px 2px;
  9620. box-sizing:border-box;
  9621. width:100%;
  9622. }
  9623. #u65524_text {
  9624. border-width:0px;
  9625. word-wrap:break-word;
  9626. text-transform:none;
  9627. visibility:hidden;
  9628. }
  9629. #u65525_div {
  9630. border-width:0px;
  9631. position:absolute;
  9632. left:0px;
  9633. top:0px;
  9634. width:1000px;
  9635. height:200px;
  9636. background:inherit;
  9637. background-color:rgba(255, 255, 255, 1);
  9638. box-sizing:border-box;
  9639. border-width:1px;
  9640. border-style:solid;
  9641. border-color:rgba(215, 215, 215, 1);
  9642. border-radius:0px;
  9643. -moz-box-shadow:none;
  9644. -webkit-box-shadow:none;
  9645. box-shadow:none;
  9646. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9647. font-weight:400;
  9648. font-style:normal;
  9649. font-size:14px;
  9650. color:#AAAAAA;
  9651. text-align:center;
  9652. line-height:30px;
  9653. }
  9654. #u65525 {
  9655. border-width:0px;
  9656. position:absolute;
  9657. left:1144px;
  9658. top:55px;
  9659. width:1000px;
  9660. height:200px;
  9661. display:flex;
  9662. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9663. font-weight:400;
  9664. font-style:normal;
  9665. font-size:14px;
  9666. color:#AAAAAA;
  9667. text-align:center;
  9668. line-height:30px;
  9669. }
  9670. #u65525 .text {
  9671. position:absolute;
  9672. align-self:center;
  9673. padding:5px 10px 5px 10px;
  9674. box-sizing:border-box;
  9675. width:100%;
  9676. }
  9677. #u65525_text {
  9678. border-width:0px;
  9679. word-wrap:break-word;
  9680. text-transform:none;
  9681. visibility:hidden;
  9682. }
  9683. #u65526_div {
  9684. border-width:0px;
  9685. position:absolute;
  9686. left:0px;
  9687. top:0px;
  9688. width:83px;
  9689. height:35px;
  9690. background:inherit;
  9691. background-color:rgba(255, 255, 255, 0);
  9692. border:none;
  9693. border-top:0px;
  9694. border-right:0px;
  9695. border-bottom:0px;
  9696. border-radius:0px;
  9697. border-top-left-radius:0px;
  9698. border-bottom-left-radius:0px;
  9699. -moz-box-shadow:none;
  9700. -webkit-box-shadow:none;
  9701. box-shadow:none;
  9702. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9703. font-weight:500;
  9704. font-style:normal;
  9705. font-size:18px;
  9706. }
  9707. #u65526 {
  9708. border-width:0px;
  9709. position:absolute;
  9710. left:1164px;
  9711. top:73px;
  9712. width:83px;
  9713. height:35px;
  9714. display:flex;
  9715. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9716. font-weight:500;
  9717. font-style:normal;
  9718. font-size:18px;
  9719. }
  9720. #u65526 .text {
  9721. position:absolute;
  9722. align-self:center;
  9723. padding:5px 10px 5px 0px;
  9724. box-sizing:border-box;
  9725. width:100%;
  9726. }
  9727. #u65526_text {
  9728. border-width:0px;
  9729. white-space:nowrap;
  9730. text-transform:none;
  9731. }
  9732. #u65527_div {
  9733. border-width:0px;
  9734. position:absolute;
  9735. left:0px;
  9736. top:0px;
  9737. width:107px;
  9738. height:43px;
  9739. background:inherit;
  9740. background-color:rgba(255, 255, 255, 0);
  9741. border:none;
  9742. border-top:0px;
  9743. border-right:0px;
  9744. border-bottom:0px;
  9745. border-radius:0px;
  9746. border-top-left-radius:0px;
  9747. border-bottom-left-radius:0px;
  9748. -moz-box-shadow:none;
  9749. -webkit-box-shadow:none;
  9750. box-shadow:none;
  9751. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9752. font-weight:500;
  9753. font-style:normal;
  9754. font-size:24px;
  9755. }
  9756. #u65527 {
  9757. border-width:0px;
  9758. position:absolute;
  9759. left:1174px;
  9760. top:124px;
  9761. width:107px;
  9762. height:43px;
  9763. display:flex;
  9764. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  9765. font-weight:500;
  9766. font-style:normal;
  9767. font-size:24px;
  9768. }
  9769. #u65527 .text {
  9770. position:absolute;
  9771. align-self:center;
  9772. padding:5px 10px 5px 0px;
  9773. box-sizing:border-box;
  9774. width:100%;
  9775. }
  9776. #u65527_text {
  9777. border-width:0px;
  9778. white-space:nowrap;
  9779. text-transform:none;
  9780. }
  9781. #u65528_img {
  9782. border-width:0px;
  9783. position:absolute;
  9784. left:0px;
  9785. top:0px;
  9786. width:108px;
  9787. height:108px;
  9788. }
  9789. #u65528 {
  9790. border-width:0px;
  9791. position:absolute;
  9792. left:1994px;
  9793. top:125px;
  9794. width:108px;
  9795. height:108px;
  9796. display:flex;
  9797. -webkit-transform:rotate(315deg);
  9798. -moz-transform:rotate(315deg);
  9799. -ms-transform:rotate(315deg);
  9800. transform:rotate(315deg);
  9801. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9802. font-weight:400;
  9803. font-style:normal;
  9804. font-size:28px;
  9805. color:#F59A23;
  9806. }
  9807. #u65528 .text {
  9808. position:absolute;
  9809. align-self:center;
  9810. padding:2px 2px 2px 2px;
  9811. box-sizing:border-box;
  9812. width:100%;
  9813. }
  9814. #u65528_text {
  9815. border-width:0px;
  9816. word-wrap:break-word;
  9817. text-transform:none;
  9818. }
  9819. #u65529_div {
  9820. border-width:0px;
  9821. position:absolute;
  9822. left:0px;
  9823. top:0px;
  9824. width:325px;
  9825. height:60px;
  9826. background:inherit;
  9827. background-color:rgba(255, 255, 255, 0);
  9828. border:none;
  9829. border-left:0px;
  9830. border-top:0px;
  9831. border-right:0px;
  9832. border-radius:0px;
  9833. border-bottom-right-radius:0px;
  9834. border-bottom-left-radius:0px;
  9835. -moz-box-shadow:none;
  9836. -webkit-box-shadow:none;
  9837. box-shadow:none;
  9838. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9839. font-weight:400;
  9840. font-style:normal;
  9841. font-size:14px;
  9842. line-height:30px;
  9843. }
  9844. #u65529 {
  9845. border-width:0px;
  9846. position:absolute;
  9847. left:1174px;
  9848. top:179px;
  9849. width:325px;
  9850. height:60px;
  9851. display:flex;
  9852. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9853. font-weight:400;
  9854. font-style:normal;
  9855. font-size:14px;
  9856. line-height:30px;
  9857. }
  9858. #u65529 .text {
  9859. position:absolute;
  9860. align-self:flex-start;
  9861. padding:0px 0px 0px 0px;
  9862. box-sizing:border-box;
  9863. width:100%;
  9864. }
  9865. #u65529_text {
  9866. border-width:0px;
  9867. word-wrap:break-word;
  9868. text-transform:none;
  9869. }
  9870. #u65530_img {
  9871. border-width:0px;
  9872. position:absolute;
  9873. left:0px;
  9874. top:0px;
  9875. width:17px;
  9876. height:17px;
  9877. }
  9878. #u65530 {
  9879. border-width:0px;
  9880. position:absolute;
  9881. left:2116px;
  9882. top:77px;
  9883. width:17px;
  9884. height:17px;
  9885. display:flex;
  9886. }
  9887. #u65530 .text {
  9888. position:absolute;
  9889. align-self:center;
  9890. padding:2px 2px 2px 2px;
  9891. box-sizing:border-box;
  9892. width:100%;
  9893. }
  9894. #u65530_text {
  9895. border-width:0px;
  9896. word-wrap:break-word;
  9897. text-transform:none;
  9898. visibility:hidden;
  9899. }
  9900. #u65531_div {
  9901. border-width:0px;
  9902. position:absolute;
  9903. left:0px;
  9904. top:0px;
  9905. width:78px;
  9906. height:40px;
  9907. background:inherit;
  9908. background-color:rgba(255, 255, 255, 0);
  9909. border:none;
  9910. border-top:0px;
  9911. border-right:0px;
  9912. border-bottom:0px;
  9913. border-radius:0px;
  9914. border-top-left-radius:0px;
  9915. border-bottom-left-radius:0px;
  9916. -moz-box-shadow:none;
  9917. -webkit-box-shadow:none;
  9918. box-shadow:none;
  9919. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9920. font-weight:400;
  9921. font-style:normal;
  9922. font-size:14px;
  9923. color:#7F7F7F;
  9924. line-height:40px;
  9925. }
  9926. #u65531 {
  9927. border-width:0px;
  9928. position:absolute;
  9929. left:1183px;
  9930. top:694px;
  9931. width:78px;
  9932. height:40px;
  9933. display:flex;
  9934. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9935. font-weight:400;
  9936. font-style:normal;
  9937. font-size:14px;
  9938. color:#7F7F7F;
  9939. line-height:40px;
  9940. }
  9941. #u65531 .text {
  9942. position:absolute;
  9943. align-self:center;
  9944. padding:0px 0px 0px 0px;
  9945. box-sizing:border-box;
  9946. width:100%;
  9947. }
  9948. #u65531_text {
  9949. border-width:0px;
  9950. white-space:nowrap;
  9951. text-transform:none;
  9952. }
  9953. #u65532_img {
  9954. border-width:0px;
  9955. position:absolute;
  9956. left:0px;
  9957. top:0px;
  9958. width:161px;
  9959. height:107px;
  9960. }
  9961. #u65532 {
  9962. border-width:0px;
  9963. position:absolute;
  9964. left:1262px;
  9965. top:694px;
  9966. width:161px;
  9967. height:107px;
  9968. display:flex;
  9969. }
  9970. #u65532 .text {
  9971. position:absolute;
  9972. align-self:center;
  9973. padding:0px 0px 0px 0px;
  9974. box-sizing:border-box;
  9975. width:100%;
  9976. }
  9977. #u65532_text {
  9978. border-width:0px;
  9979. word-wrap:break-word;
  9980. text-transform:none;
  9981. }
  9982. #u65533_div {
  9983. border-width:0px;
  9984. position:absolute;
  9985. left:0px;
  9986. top:0px;
  9987. width:57px;
  9988. height:40px;
  9989. background:inherit;
  9990. background-color:rgba(255, 255, 255, 0);
  9991. border:none;
  9992. border-top:0px;
  9993. border-right:0px;
  9994. border-bottom:0px;
  9995. border-radius:0px;
  9996. border-top-left-radius:0px;
  9997. border-bottom-left-radius:0px;
  9998. -moz-box-shadow:none;
  9999. -webkit-box-shadow:none;
  10000. box-shadow:none;
  10001. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10002. font-weight:400;
  10003. font-style:normal;
  10004. font-size:14px;
  10005. color:#1890FF;
  10006. line-height:40px;
  10007. }
  10008. #u65533 {
  10009. border-width:0px;
  10010. position:absolute;
  10011. left:1689px;
  10012. top:604px;
  10013. width:57px;
  10014. height:40px;
  10015. display:flex;
  10016. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10017. font-weight:400;
  10018. font-style:normal;
  10019. font-size:14px;
  10020. color:#1890FF;
  10021. line-height:40px;
  10022. }
  10023. #u65533 .text {
  10024. position:absolute;
  10025. align-self:center;
  10026. padding:0px 0px 0px 0px;
  10027. box-sizing:border-box;
  10028. width:100%;
  10029. }
  10030. #u65533_text {
  10031. border-width:0px;
  10032. white-space:nowrap;
  10033. text-transform:none;
  10034. }
  10035. #u65534_div {
  10036. border-width:0px;
  10037. position:absolute;
  10038. left:0px;
  10039. top:0px;
  10040. width:80px;
  10041. height:40px;
  10042. background:inherit;
  10043. background-color:rgba(255, 255, 255, 0);
  10044. border:none;
  10045. border-top:0px;
  10046. border-right:0px;
  10047. border-bottom:0px;
  10048. border-radius:0px;
  10049. border-top-left-radius:0px;
  10050. border-bottom-left-radius:0px;
  10051. -moz-box-shadow:none;
  10052. -webkit-box-shadow:none;
  10053. box-shadow:none;
  10054. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10055. font-weight:400;
  10056. font-style:normal;
  10057. font-size:14px;
  10058. color:#7F7F7F;
  10059. line-height:40px;
  10060. }
  10061. #u65534 {
  10062. border-width:0px;
  10063. position:absolute;
  10064. left:1503px;
  10065. top:644px;
  10066. width:80px;
  10067. height:40px;
  10068. display:flex;
  10069. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10070. font-weight:400;
  10071. font-style:normal;
  10072. font-size:14px;
  10073. color:#7F7F7F;
  10074. line-height:40px;
  10075. }
  10076. #u65534 .text {
  10077. position:absolute;
  10078. align-self:center;
  10079. padding:0px 0px 0px 0px;
  10080. box-sizing:border-box;
  10081. width:100%;
  10082. }
  10083. #u65534_text {
  10084. border-width:0px;
  10085. word-wrap:break-word;
  10086. text-transform:none;
  10087. }
  10088. #u65535_div {
  10089. border-width:0px;
  10090. position:absolute;
  10091. left:0px;
  10092. top:0px;
  10093. width:113px;
  10094. height:40px;
  10095. background:inherit;
  10096. background-color:rgba(255, 255, 255, 0);
  10097. border:none;
  10098. border-top:0px;
  10099. border-right:0px;
  10100. border-bottom:0px;
  10101. border-radius:0px;
  10102. border-top-left-radius:0px;
  10103. border-bottom-left-radius:0px;
  10104. -moz-box-shadow:none;
  10105. -webkit-box-shadow:none;
  10106. box-shadow:none;
  10107. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10108. font-weight:400;
  10109. font-style:normal;
  10110. font-size:14px;
  10111. line-height:40px;
  10112. }
  10113. #u65535 {
  10114. border-width:0px;
  10115. position:absolute;
  10116. left:1583px;
  10117. top:644px;
  10118. width:113px;
  10119. height:40px;
  10120. display:flex;
  10121. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10122. font-weight:400;
  10123. font-style:normal;
  10124. font-size:14px;
  10125. line-height:40px;
  10126. }
  10127. #u65535 .text {
  10128. position:absolute;
  10129. align-self:center;
  10130. padding:0px 0px 0px 0px;
  10131. box-sizing:border-box;
  10132. width:100%;
  10133. }
  10134. #u65535_text {
  10135. border-width:0px;
  10136. white-space:nowrap;
  10137. text-transform:none;
  10138. }
  10139. #u65536_div {
  10140. border-width:0px;
  10141. position:absolute;
  10142. left:0px;
  10143. top:0px;
  10144. width:73px;
  10145. height:40px;
  10146. background:inherit;
  10147. background-color:rgba(255, 255, 255, 0);
  10148. border:none;
  10149. border-left:0px;
  10150. border-top:0px;
  10151. border-right:0px;
  10152. border-radius:0px;
  10153. border-bottom-right-radius:0px;
  10154. border-bottom-left-radius:0px;
  10155. -moz-box-shadow:none;
  10156. -webkit-box-shadow:none;
  10157. box-shadow:none;
  10158. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10159. font-weight:400;
  10160. font-style:normal;
  10161. font-size:18px;
  10162. }
  10163. #u65536 {
  10164. border-width:0px;
  10165. position:absolute;
  10166. left:1183px;
  10167. top:524px;
  10168. width:73px;
  10169. height:40px;
  10170. display:flex;
  10171. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10172. font-weight:400;
  10173. font-style:normal;
  10174. font-size:18px;
  10175. }
  10176. #u65536 .text {
  10177. position:absolute;
  10178. align-self:center;
  10179. padding:0px 0px 0px 0px;
  10180. box-sizing:border-box;
  10181. width:100%;
  10182. }
  10183. #u65536_text {
  10184. border-width:0px;
  10185. white-space:nowrap;
  10186. text-transform:none;
  10187. }
  10188. #u65537_div {
  10189. border-width:0px;
  10190. position:absolute;
  10191. left:0px;
  10192. top:0px;
  10193. width:80px;
  10194. height:40px;
  10195. background:inherit;
  10196. background-color:rgba(255, 255, 255, 0);
  10197. border:none;
  10198. border-top:0px;
  10199. border-right:0px;
  10200. border-bottom:0px;
  10201. border-radius:0px;
  10202. border-top-left-radius:0px;
  10203. border-bottom-left-radius:0px;
  10204. -moz-box-shadow:none;
  10205. -webkit-box-shadow:none;
  10206. box-shadow:none;
  10207. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10208. font-weight:400;
  10209. font-style:normal;
  10210. font-size:14px;
  10211. color:#7F7F7F;
  10212. line-height:40px;
  10213. }
  10214. #u65537 {
  10215. border-width:0px;
  10216. position:absolute;
  10217. left:1183px;
  10218. top:564px;
  10219. width:80px;
  10220. height:40px;
  10221. display:flex;
  10222. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10223. font-weight:400;
  10224. font-style:normal;
  10225. font-size:14px;
  10226. color:#7F7F7F;
  10227. line-height:40px;
  10228. }
  10229. #u65537 .text {
  10230. position:absolute;
  10231. align-self:center;
  10232. padding:0px 0px 0px 0px;
  10233. box-sizing:border-box;
  10234. width:100%;
  10235. }
  10236. #u65537_text {
  10237. border-width:0px;
  10238. word-wrap:break-word;
  10239. text-transform:none;
  10240. }
  10241. #u65538_div {
  10242. border-width:0px;
  10243. position:absolute;
  10244. left:0px;
  10245. top:0px;
  10246. width:160px;
  10247. height:40px;
  10248. background:inherit;
  10249. background-color:rgba(255, 255, 255, 0);
  10250. border:none;
  10251. border-top:0px;
  10252. border-right:0px;
  10253. border-bottom:0px;
  10254. border-radius:0px;
  10255. border-top-left-radius:0px;
  10256. border-bottom-left-radius:0px;
  10257. -moz-box-shadow:none;
  10258. -webkit-box-shadow:none;
  10259. box-shadow:none;
  10260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10261. font-weight:400;
  10262. font-style:normal;
  10263. font-size:14px;
  10264. line-height:40px;
  10265. }
  10266. #u65538 {
  10267. border-width:0px;
  10268. position:absolute;
  10269. left:1263px;
  10270. top:564px;
  10271. width:160px;
  10272. height:40px;
  10273. display:flex;
  10274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10275. font-weight:400;
  10276. font-style:normal;
  10277. font-size:14px;
  10278. line-height:40px;
  10279. }
  10280. #u65538 .text {
  10281. position:absolute;
  10282. align-self:center;
  10283. padding:0px 0px 0px 0px;
  10284. box-sizing:border-box;
  10285. width:100%;
  10286. }
  10287. #u65538_text {
  10288. border-width:0px;
  10289. word-wrap:break-word;
  10290. text-transform:none;
  10291. }
  10292. #u65539_div {
  10293. border-width:0px;
  10294. position:absolute;
  10295. left:0px;
  10296. top:0px;
  10297. width:80px;
  10298. height:40px;
  10299. background:inherit;
  10300. background-color:rgba(255, 255, 255, 0);
  10301. border:none;
  10302. border-top:0px;
  10303. border-right:0px;
  10304. border-bottom:0px;
  10305. border-radius:0px;
  10306. border-top-left-radius:0px;
  10307. border-bottom-left-radius:0px;
  10308. -moz-box-shadow:none;
  10309. -webkit-box-shadow:none;
  10310. box-shadow:none;
  10311. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10312. font-weight:400;
  10313. font-style:normal;
  10314. font-size:14px;
  10315. color:#7F7F7F;
  10316. line-height:40px;
  10317. }
  10318. #u65539 {
  10319. border-width:0px;
  10320. position:absolute;
  10321. left:1503px;
  10322. top:564px;
  10323. width:80px;
  10324. height:40px;
  10325. display:flex;
  10326. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10327. font-weight:400;
  10328. font-style:normal;
  10329. font-size:14px;
  10330. color:#7F7F7F;
  10331. line-height:40px;
  10332. }
  10333. #u65539 .text {
  10334. position:absolute;
  10335. align-self:center;
  10336. padding:0px 0px 0px 0px;
  10337. box-sizing:border-box;
  10338. width:100%;
  10339. }
  10340. #u65539_text {
  10341. border-width:0px;
  10342. word-wrap:break-word;
  10343. text-transform:none;
  10344. }
  10345. #u65540_div {
  10346. border-width:0px;
  10347. position:absolute;
  10348. left:0px;
  10349. top:0px;
  10350. width:160px;
  10351. height:40px;
  10352. background:inherit;
  10353. background-color:rgba(255, 255, 255, 0);
  10354. border:none;
  10355. border-top:0px;
  10356. border-right:0px;
  10357. border-bottom:0px;
  10358. border-radius:0px;
  10359. border-top-left-radius:0px;
  10360. border-bottom-left-radius:0px;
  10361. -moz-box-shadow:none;
  10362. -webkit-box-shadow:none;
  10363. box-shadow:none;
  10364. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10365. font-weight:400;
  10366. font-style:normal;
  10367. font-size:14px;
  10368. line-height:40px;
  10369. }
  10370. #u65540 {
  10371. border-width:0px;
  10372. position:absolute;
  10373. left:1583px;
  10374. top:564px;
  10375. width:160px;
  10376. height:40px;
  10377. display:flex;
  10378. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10379. font-weight:400;
  10380. font-style:normal;
  10381. font-size:14px;
  10382. line-height:40px;
  10383. }
  10384. #u65540 .text {
  10385. position:absolute;
  10386. align-self:center;
  10387. padding:0px 0px 0px 0px;
  10388. box-sizing:border-box;
  10389. width:100%;
  10390. }
  10391. #u65540_text {
  10392. border-width:0px;
  10393. word-wrap:break-word;
  10394. text-transform:none;
  10395. }
  10396. #u65541_div {
  10397. border-width:0px;
  10398. position:absolute;
  10399. left:0px;
  10400. top:0px;
  10401. width:80px;
  10402. height:40px;
  10403. background:inherit;
  10404. background-color:rgba(255, 255, 255, 0);
  10405. border:none;
  10406. border-top:0px;
  10407. border-right:0px;
  10408. border-bottom:0px;
  10409. border-radius:0px;
  10410. border-top-left-radius:0px;
  10411. border-bottom-left-radius:0px;
  10412. -moz-box-shadow:none;
  10413. -webkit-box-shadow:none;
  10414. box-shadow:none;
  10415. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10416. font-weight:400;
  10417. font-style:normal;
  10418. font-size:14px;
  10419. color:#7F7F7F;
  10420. line-height:40px;
  10421. }
  10422. #u65541 {
  10423. border-width:0px;
  10424. position:absolute;
  10425. left:1823px;
  10426. top:564px;
  10427. width:80px;
  10428. height:40px;
  10429. display:flex;
  10430. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10431. font-weight:400;
  10432. font-style:normal;
  10433. font-size:14px;
  10434. color:#7F7F7F;
  10435. line-height:40px;
  10436. }
  10437. #u65541 .text {
  10438. position:absolute;
  10439. align-self:center;
  10440. padding:0px 0px 0px 0px;
  10441. box-sizing:border-box;
  10442. width:100%;
  10443. }
  10444. #u65541_text {
  10445. border-width:0px;
  10446. word-wrap:break-word;
  10447. text-transform:none;
  10448. }
  10449. #u65542_div {
  10450. border-width:0px;
  10451. position:absolute;
  10452. left:0px;
  10453. top:0px;
  10454. width:160px;
  10455. height:40px;
  10456. background:inherit;
  10457. background-color:rgba(255, 255, 255, 0);
  10458. border:none;
  10459. border-top:0px;
  10460. border-right:0px;
  10461. border-bottom:0px;
  10462. border-radius:0px;
  10463. border-top-left-radius:0px;
  10464. border-bottom-left-radius:0px;
  10465. -moz-box-shadow:none;
  10466. -webkit-box-shadow:none;
  10467. box-shadow:none;
  10468. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10469. font-weight:400;
  10470. font-style:normal;
  10471. font-size:14px;
  10472. line-height:40px;
  10473. }
  10474. #u65542 {
  10475. border-width:0px;
  10476. position:absolute;
  10477. left:1903px;
  10478. top:564px;
  10479. width:160px;
  10480. height:40px;
  10481. display:flex;
  10482. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10483. font-weight:400;
  10484. font-style:normal;
  10485. font-size:14px;
  10486. line-height:40px;
  10487. }
  10488. #u65542 .text {
  10489. position:absolute;
  10490. align-self:center;
  10491. padding:0px 0px 0px 0px;
  10492. box-sizing:border-box;
  10493. width:100%;
  10494. }
  10495. #u65542_text {
  10496. border-width:0px;
  10497. word-wrap:break-word;
  10498. text-transform:none;
  10499. }
  10500. #u65543_div {
  10501. border-width:0px;
  10502. position:absolute;
  10503. left:0px;
  10504. top:0px;
  10505. width:80px;
  10506. height:40px;
  10507. background:inherit;
  10508. background-color:rgba(255, 255, 255, 0);
  10509. border:none;
  10510. border-top:0px;
  10511. border-right:0px;
  10512. border-bottom:0px;
  10513. border-radius:0px;
  10514. border-top-left-radius:0px;
  10515. border-bottom-left-radius:0px;
  10516. -moz-box-shadow:none;
  10517. -webkit-box-shadow:none;
  10518. box-shadow:none;
  10519. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10520. font-weight:400;
  10521. font-style:normal;
  10522. font-size:14px;
  10523. color:#7F7F7F;
  10524. line-height:40px;
  10525. }
  10526. #u65543 {
  10527. border-width:0px;
  10528. position:absolute;
  10529. left:1503px;
  10530. top:604px;
  10531. width:80px;
  10532. height:40px;
  10533. display:flex;
  10534. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10535. font-weight:400;
  10536. font-style:normal;
  10537. font-size:14px;
  10538. color:#7F7F7F;
  10539. line-height:40px;
  10540. }
  10541. #u65543 .text {
  10542. position:absolute;
  10543. align-self:center;
  10544. padding:0px 0px 0px 0px;
  10545. box-sizing:border-box;
  10546. width:100%;
  10547. }
  10548. #u65543_text {
  10549. border-width:0px;
  10550. word-wrap:break-word;
  10551. text-transform:none;
  10552. }
  10553. #u65544_div {
  10554. border-width:0px;
  10555. position:absolute;
  10556. left:0px;
  10557. top:0px;
  10558. width:160px;
  10559. height:40px;
  10560. background:inherit;
  10561. background-color:rgba(255, 255, 255, 0);
  10562. border:none;
  10563. border-top:0px;
  10564. border-right:0px;
  10565. border-bottom:0px;
  10566. border-radius:0px;
  10567. border-top-left-radius:0px;
  10568. border-bottom-left-radius:0px;
  10569. -moz-box-shadow:none;
  10570. -webkit-box-shadow:none;
  10571. box-shadow:none;
  10572. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10573. font-weight:400;
  10574. font-style:normal;
  10575. font-size:14px;
  10576. line-height:40px;
  10577. }
  10578. #u65544 {
  10579. border-width:0px;
  10580. position:absolute;
  10581. left:1583px;
  10582. top:604px;
  10583. width:160px;
  10584. height:40px;
  10585. display:flex;
  10586. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10587. font-weight:400;
  10588. font-style:normal;
  10589. font-size:14px;
  10590. line-height:40px;
  10591. }
  10592. #u65544 .text {
  10593. position:absolute;
  10594. align-self:center;
  10595. padding:0px 0px 0px 0px;
  10596. box-sizing:border-box;
  10597. width:100%;
  10598. }
  10599. #u65544_text {
  10600. border-width:0px;
  10601. word-wrap:break-word;
  10602. text-transform:none;
  10603. }
  10604. #u65545_div {
  10605. border-width:0px;
  10606. position:absolute;
  10607. left:0px;
  10608. top:0px;
  10609. width:80px;
  10610. height:40px;
  10611. background:inherit;
  10612. background-color:rgba(255, 255, 255, 0);
  10613. border:none;
  10614. border-top:0px;
  10615. border-right:0px;
  10616. border-bottom:0px;
  10617. border-radius:0px;
  10618. border-top-left-radius:0px;
  10619. border-bottom-left-radius:0px;
  10620. -moz-box-shadow:none;
  10621. -webkit-box-shadow:none;
  10622. box-shadow:none;
  10623. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10624. font-weight:400;
  10625. font-style:normal;
  10626. font-size:14px;
  10627. color:#7F7F7F;
  10628. line-height:40px;
  10629. }
  10630. #u65545 {
  10631. border-width:0px;
  10632. position:absolute;
  10633. left:1823px;
  10634. top:604px;
  10635. width:80px;
  10636. height:40px;
  10637. display:flex;
  10638. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10639. font-weight:400;
  10640. font-style:normal;
  10641. font-size:14px;
  10642. color:#7F7F7F;
  10643. line-height:40px;
  10644. }
  10645. #u65545 .text {
  10646. position:absolute;
  10647. align-self:center;
  10648. padding:0px 0px 0px 0px;
  10649. box-sizing:border-box;
  10650. width:100%;
  10651. }
  10652. #u65545_text {
  10653. border-width:0px;
  10654. word-wrap:break-word;
  10655. text-transform:none;
  10656. }
  10657. #u65546_div {
  10658. border-width:0px;
  10659. position:absolute;
  10660. left:0px;
  10661. top:0px;
  10662. width:160px;
  10663. height:40px;
  10664. background:inherit;
  10665. background-color:rgba(255, 255, 255, 0);
  10666. border:none;
  10667. border-top:0px;
  10668. border-right:0px;
  10669. border-bottom:0px;
  10670. border-radius:0px;
  10671. border-top-left-radius:0px;
  10672. border-bottom-left-radius:0px;
  10673. -moz-box-shadow:none;
  10674. -webkit-box-shadow:none;
  10675. box-shadow:none;
  10676. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10677. font-weight:400;
  10678. font-style:normal;
  10679. font-size:14px;
  10680. line-height:40px;
  10681. }
  10682. #u65546 {
  10683. border-width:0px;
  10684. position:absolute;
  10685. left:1903px;
  10686. top:604px;
  10687. width:160px;
  10688. height:40px;
  10689. display:flex;
  10690. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10691. font-weight:400;
  10692. font-style:normal;
  10693. font-size:14px;
  10694. line-height:40px;
  10695. }
  10696. #u65546 .text {
  10697. position:absolute;
  10698. align-self:center;
  10699. padding:0px 0px 0px 0px;
  10700. box-sizing:border-box;
  10701. width:100%;
  10702. }
  10703. #u65546_text {
  10704. border-width:0px;
  10705. word-wrap:break-word;
  10706. text-transform:none;
  10707. }
  10708. #u65547_div {
  10709. border-width:0px;
  10710. position:absolute;
  10711. left:0px;
  10712. top:0px;
  10713. width:71px;
  10714. height:40px;
  10715. background:inherit;
  10716. background-color:rgba(255, 255, 255, 0);
  10717. border:none;
  10718. border-top:0px;
  10719. border-right:0px;
  10720. border-bottom:0px;
  10721. border-radius:0px;
  10722. border-top-left-radius:0px;
  10723. border-bottom-left-radius:0px;
  10724. -moz-box-shadow:none;
  10725. -webkit-box-shadow:none;
  10726. box-shadow:none;
  10727. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10728. font-weight:400;
  10729. font-style:normal;
  10730. font-size:14px;
  10731. color:#7F7F7F;
  10732. line-height:40px;
  10733. }
  10734. #u65547 {
  10735. border-width:0px;
  10736. position:absolute;
  10737. left:1183px;
  10738. top:644px;
  10739. width:71px;
  10740. height:40px;
  10741. display:flex;
  10742. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10743. font-weight:400;
  10744. font-style:normal;
  10745. font-size:14px;
  10746. color:#7F7F7F;
  10747. line-height:40px;
  10748. }
  10749. #u65547 .text {
  10750. position:absolute;
  10751. align-self:center;
  10752. padding:0px 0px 0px 0px;
  10753. box-sizing:border-box;
  10754. width:100%;
  10755. }
  10756. #u65547_text {
  10757. border-width:0px;
  10758. white-space:nowrap;
  10759. text-transform:none;
  10760. }
  10761. #u65548_div {
  10762. border-width:0px;
  10763. position:absolute;
  10764. left:0px;
  10765. top:0px;
  10766. width:160px;
  10767. height:40px;
  10768. background:inherit;
  10769. background-color:rgba(255, 255, 255, 0);
  10770. border:none;
  10771. border-top:0px;
  10772. border-right:0px;
  10773. border-bottom:0px;
  10774. border-radius:0px;
  10775. border-top-left-radius:0px;
  10776. border-bottom-left-radius:0px;
  10777. -moz-box-shadow:none;
  10778. -webkit-box-shadow:none;
  10779. box-shadow:none;
  10780. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10781. font-weight:400;
  10782. font-style:normal;
  10783. font-size:14px;
  10784. line-height:40px;
  10785. }
  10786. #u65548 {
  10787. border-width:0px;
  10788. position:absolute;
  10789. left:1263px;
  10790. top:644px;
  10791. width:160px;
  10792. height:40px;
  10793. display:flex;
  10794. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10795. font-weight:400;
  10796. font-style:normal;
  10797. font-size:14px;
  10798. line-height:40px;
  10799. }
  10800. #u65548 .text {
  10801. position:absolute;
  10802. align-self:center;
  10803. padding:0px 0px 0px 0px;
  10804. box-sizing:border-box;
  10805. width:100%;
  10806. }
  10807. #u65548_text {
  10808. border-width:0px;
  10809. word-wrap:break-word;
  10810. text-transform:none;
  10811. }
  10812. #u65549_div {
  10813. border-width:0px;
  10814. position:absolute;
  10815. left:0px;
  10816. top:0px;
  10817. width:80px;
  10818. height:40px;
  10819. background:inherit;
  10820. background-color:rgba(255, 255, 255, 0);
  10821. border:none;
  10822. border-top:0px;
  10823. border-right:0px;
  10824. border-bottom:0px;
  10825. border-radius:0px;
  10826. border-top-left-radius:0px;
  10827. border-bottom-left-radius:0px;
  10828. -moz-box-shadow:none;
  10829. -webkit-box-shadow:none;
  10830. box-shadow:none;
  10831. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10832. font-weight:400;
  10833. font-style:normal;
  10834. font-size:14px;
  10835. color:#7F7F7F;
  10836. line-height:40px;
  10837. }
  10838. #u65549 {
  10839. border-width:0px;
  10840. position:absolute;
  10841. left:1183px;
  10842. top:604px;
  10843. width:80px;
  10844. height:40px;
  10845. display:flex;
  10846. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10847. font-weight:400;
  10848. font-style:normal;
  10849. font-size:14px;
  10850. color:#7F7F7F;
  10851. line-height:40px;
  10852. }
  10853. #u65549 .text {
  10854. position:absolute;
  10855. align-self:center;
  10856. padding:0px 0px 0px 0px;
  10857. box-sizing:border-box;
  10858. width:100%;
  10859. }
  10860. #u65549_text {
  10861. border-width:0px;
  10862. word-wrap:break-word;
  10863. text-transform:none;
  10864. }
  10865. #u65550_div {
  10866. border-width:0px;
  10867. position:absolute;
  10868. left:0px;
  10869. top:0px;
  10870. width:192px;
  10871. height:40px;
  10872. background:inherit;
  10873. background-color:rgba(255, 255, 255, 0);
  10874. border:none;
  10875. border-top:0px;
  10876. border-right:0px;
  10877. border-bottom:0px;
  10878. border-radius:0px;
  10879. border-top-left-radius:0px;
  10880. border-bottom-left-radius:0px;
  10881. -moz-box-shadow:none;
  10882. -webkit-box-shadow:none;
  10883. box-shadow:none;
  10884. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10885. font-weight:400;
  10886. font-style:normal;
  10887. font-size:14px;
  10888. line-height:40px;
  10889. }
  10890. #u65550 {
  10891. border-width:0px;
  10892. position:absolute;
  10893. left:1263px;
  10894. top:604px;
  10895. width:192px;
  10896. height:40px;
  10897. display:flex;
  10898. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10899. font-weight:400;
  10900. font-style:normal;
  10901. font-size:14px;
  10902. line-height:40px;
  10903. }
  10904. #u65550 .text {
  10905. position:absolute;
  10906. align-self:center;
  10907. padding:0px 0px 0px 0px;
  10908. box-sizing:border-box;
  10909. width:100%;
  10910. }
  10911. #u65550_text {
  10912. border-width:0px;
  10913. white-space:nowrap;
  10914. text-transform:none;
  10915. }
  10916. #u65551_div {
  10917. border-width:0px;
  10918. position:absolute;
  10919. left:0px;
  10920. top:0px;
  10921. width:414px;
  10922. height:40px;
  10923. background:inherit;
  10924. background-color:rgba(255, 255, 255, 0);
  10925. border:none;
  10926. border-top:0px;
  10927. border-right:0px;
  10928. border-bottom:0px;
  10929. border-radius:0px;
  10930. border-top-left-radius:0px;
  10931. border-bottom-left-radius:0px;
  10932. -moz-box-shadow:none;
  10933. -webkit-box-shadow:none;
  10934. box-shadow:none;
  10935. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10936. font-weight:400;
  10937. font-style:normal;
  10938. font-size:14px;
  10939. color:#D9001B;
  10940. line-height:40px;
  10941. }
  10942. #u65551 {
  10943. border-width:0px;
  10944. position:absolute;
  10945. left:1643px;
  10946. top:701px;
  10947. width:414px;
  10948. height:40px;
  10949. display:flex;
  10950. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10951. font-weight:400;
  10952. font-style:normal;
  10953. font-size:14px;
  10954. color:#D9001B;
  10955. line-height:40px;
  10956. }
  10957. #u65551 .text {
  10958. position:absolute;
  10959. align-self:center;
  10960. padding:0px 0px 0px 0px;
  10961. box-sizing:border-box;
  10962. width:100%;
  10963. }
  10964. #u65551_text {
  10965. border-width:0px;
  10966. white-space:nowrap;
  10967. text-transform:none;
  10968. }
  10969. #u65552 {
  10970. border-width:0px;
  10971. position:absolute;
  10972. left:1543px;
  10973. top:644px;
  10974. width:0px;
  10975. height:0px;
  10976. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10977. font-weight:400;
  10978. font-style:normal;
  10979. font-size:28px;
  10980. color:#333333;
  10981. }
  10982. #u65552_seg0 {
  10983. border-width:0px;
  10984. position:absolute;
  10985. left:-5px;
  10986. top:0px;
  10987. width:10px;
  10988. height:82px;
  10989. }
  10990. #u65552_seg1 {
  10991. border-width:0px;
  10992. position:absolute;
  10993. left:-5px;
  10994. top:72px;
  10995. width:105px;
  10996. height:10px;
  10997. }
  10998. #u65552_seg2 {
  10999. border-width:0px;
  11000. position:absolute;
  11001. left:90px;
  11002. top:68px;
  11003. width:18px;
  11004. height:18px;
  11005. }
  11006. #u65552_text {
  11007. border-width:0px;
  11008. position:absolute;
  11009. left:-38px;
  11010. top:69px;
  11011. width:100px;
  11012. word-wrap:break-word;
  11013. text-transform:none;
  11014. visibility:hidden;
  11015. }