styles.css 235 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227
  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. #u68331 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u68332_div {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:1000px;
  33. height:1139px;
  34. background:inherit;
  35. background-color:rgba(242, 242, 242, 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. #u68332 {
  53. border-width:0px;
  54. position:absolute;
  55. left:100px;
  56. top:115px;
  57. width:1000px;
  58. height:1139px;
  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. #u68332 .text {
  69. position:absolute;
  70. align-self:center;
  71. padding:5px 10px 5px 10px;
  72. box-sizing:border-box;
  73. width:100%;
  74. }
  75. #u68332_text {
  76. border-width:0px;
  77. word-wrap:break-word;
  78. text-transform:none;
  79. visibility:hidden;
  80. }
  81. #u68333_div {
  82. border-width:0px;
  83. position:absolute;
  84. left:0px;
  85. top:0px;
  86. width:1000px;
  87. height:988px;
  88. background:inherit;
  89. background-color:rgba(255, 255, 255, 1);
  90. box-sizing:border-box;
  91. border-width:1px;
  92. border-style:solid;
  93. border-color:rgba(242, 242, 242, 1);
  94. border-radius:0px;
  95. -moz-box-shadow:none;
  96. -webkit-box-shadow:none;
  97. box-shadow:none;
  98. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  99. font-weight:400;
  100. font-style:normal;
  101. font-size:14px;
  102. color:#AAAAAA;
  103. text-align:center;
  104. line-height:30px;
  105. }
  106. #u68333 {
  107. border-width:0px;
  108. position:absolute;
  109. left:100px;
  110. top:266px;
  111. width:1000px;
  112. height:988px;
  113. display:flex;
  114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  115. font-weight:400;
  116. font-style:normal;
  117. font-size:14px;
  118. color:#AAAAAA;
  119. text-align:center;
  120. line-height:30px;
  121. }
  122. #u68333 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:5px 10px 5px 10px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u68333_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u68334_div {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:73px;
  141. height:40px;
  142. background:inherit;
  143. background-color:rgba(255, 255, 255, 0);
  144. border:none;
  145. border-left:0px;
  146. border-top:0px;
  147. border-right:0px;
  148. border-radius:0px;
  149. border-bottom-right-radius:0px;
  150. border-bottom-left-radius:0px;
  151. -moz-box-shadow:none;
  152. -webkit-box-shadow:none;
  153. box-shadow:none;
  154. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  155. font-weight:400;
  156. font-style:normal;
  157. font-size:18px;
  158. }
  159. #u68334 {
  160. border-width:0px;
  161. position:absolute;
  162. left:140px;
  163. top:282px;
  164. width:73px;
  165. height:40px;
  166. display:flex;
  167. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  168. font-weight:400;
  169. font-style:normal;
  170. font-size:18px;
  171. }
  172. #u68334 .text {
  173. position:absolute;
  174. align-self:center;
  175. padding:0px 0px 0px 0px;
  176. box-sizing:border-box;
  177. width:100%;
  178. }
  179. #u68334_text {
  180. border-width:0px;
  181. white-space:nowrap;
  182. text-transform:none;
  183. }
  184. #u68335_div {
  185. border-width:0px;
  186. position:absolute;
  187. left:0px;
  188. top:0px;
  189. width:81px;
  190. height:30px;
  191. background:inherit;
  192. background-color:rgba(255, 255, 255, 0);
  193. border:none;
  194. border-top:0px;
  195. border-right:0px;
  196. border-bottom:0px;
  197. border-radius:0px;
  198. border-top-left-radius:0px;
  199. border-bottom-left-radius:0px;
  200. -moz-box-shadow:none;
  201. -webkit-box-shadow:none;
  202. box-shadow:none;
  203. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  204. font-weight:400;
  205. font-style:normal;
  206. font-size:14px;
  207. color:#7F7F7F;
  208. }
  209. #u68335 {
  210. border-width:0px;
  211. position:absolute;
  212. left:140px;
  213. top:332px;
  214. width:81px;
  215. height:30px;
  216. display:flex;
  217. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  218. font-weight:400;
  219. font-style:normal;
  220. font-size:14px;
  221. color:#7F7F7F;
  222. }
  223. #u68335 .text {
  224. position:absolute;
  225. align-self:center;
  226. padding:5px 10px 5px 0px;
  227. box-sizing:border-box;
  228. width:100%;
  229. }
  230. #u68335_text {
  231. border-width:0px;
  232. white-space:nowrap;
  233. text-transform:none;
  234. }
  235. #u68336_div {
  236. border-width:0px;
  237. position:absolute;
  238. left:0px;
  239. top:0px;
  240. width:142px;
  241. height:30px;
  242. background:inherit;
  243. background-color:rgba(255, 255, 255, 0);
  244. border:none;
  245. border-top:0px;
  246. border-right:0px;
  247. border-bottom:0px;
  248. border-radius:0px;
  249. border-top-left-radius:0px;
  250. border-bottom-left-radius:0px;
  251. -moz-box-shadow:none;
  252. -webkit-box-shadow:none;
  253. box-shadow:none;
  254. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  255. font-weight:400;
  256. font-style:normal;
  257. font-size:14px;
  258. color:#1890FF;
  259. }
  260. #u68336 {
  261. border-width:0px;
  262. position:absolute;
  263. left:221px;
  264. top:332px;
  265. width:142px;
  266. height:30px;
  267. display:flex;
  268. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  269. font-weight:400;
  270. font-style:normal;
  271. font-size:14px;
  272. color:#1890FF;
  273. }
  274. #u68336 .text {
  275. position:absolute;
  276. align-self:center;
  277. padding:5px 10px 5px 0px;
  278. box-sizing:border-box;
  279. width:100%;
  280. }
  281. #u68336_text {
  282. border-width:0px;
  283. white-space:nowrap;
  284. text-transform:none;
  285. }
  286. #u68337_div {
  287. border-width:0px;
  288. position:absolute;
  289. left:0px;
  290. top:0px;
  291. width:81px;
  292. height:30px;
  293. background:inherit;
  294. background-color:rgba(255, 255, 255, 0);
  295. border:none;
  296. border-top:0px;
  297. border-right:0px;
  298. border-bottom:0px;
  299. border-radius:0px;
  300. border-top-left-radius:0px;
  301. border-bottom-left-radius:0px;
  302. -moz-box-shadow:none;
  303. -webkit-box-shadow:none;
  304. box-shadow:none;
  305. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  306. font-weight:400;
  307. font-style:normal;
  308. font-size:14px;
  309. color:#7F7F7F;
  310. }
  311. #u68337 {
  312. border-width:0px;
  313. position:absolute;
  314. left:460px;
  315. top:332px;
  316. width:81px;
  317. height:30px;
  318. display:flex;
  319. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  320. font-weight:400;
  321. font-style:normal;
  322. font-size:14px;
  323. color:#7F7F7F;
  324. }
  325. #u68337 .text {
  326. position:absolute;
  327. align-self:center;
  328. padding:5px 10px 5px 0px;
  329. box-sizing:border-box;
  330. width:100%;
  331. }
  332. #u68337_text {
  333. border-width:0px;
  334. white-space:nowrap;
  335. text-transform:none;
  336. }
  337. #u68338_div {
  338. border-width:0px;
  339. position:absolute;
  340. left:0px;
  341. top:0px;
  342. width:67px;
  343. height:30px;
  344. background:inherit;
  345. background-color:rgba(255, 255, 255, 0);
  346. border:none;
  347. border-top:0px;
  348. border-right:0px;
  349. border-bottom:0px;
  350. border-radius:0px;
  351. border-top-left-radius:0px;
  352. border-bottom-left-radius:0px;
  353. -moz-box-shadow:none;
  354. -webkit-box-shadow:none;
  355. box-shadow:none;
  356. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  357. font-weight:400;
  358. font-style:normal;
  359. font-size:14px;
  360. }
  361. #u68338 {
  362. border-width:0px;
  363. position:absolute;
  364. left:541px;
  365. top:332px;
  366. width:67px;
  367. height:30px;
  368. display:flex;
  369. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  370. font-weight:400;
  371. font-style:normal;
  372. font-size:14px;
  373. }
  374. #u68338 .text {
  375. position:absolute;
  376. align-self:center;
  377. padding:5px 10px 5px 0px;
  378. box-sizing:border-box;
  379. width:100%;
  380. }
  381. #u68338_text {
  382. border-width:0px;
  383. white-space:nowrap;
  384. text-transform:none;
  385. }
  386. #u68339_div {
  387. border-width:0px;
  388. position:absolute;
  389. left:0px;
  390. top:0px;
  391. width:81px;
  392. height:30px;
  393. background:inherit;
  394. background-color:rgba(255, 255, 255, 0);
  395. border:none;
  396. border-top:0px;
  397. border-right:0px;
  398. border-bottom:0px;
  399. border-radius:0px;
  400. border-top-left-radius:0px;
  401. border-bottom-left-radius:0px;
  402. -moz-box-shadow:none;
  403. -webkit-box-shadow:none;
  404. box-shadow:none;
  405. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  406. font-weight:400;
  407. font-style:normal;
  408. font-size:14px;
  409. color:#7F7F7F;
  410. }
  411. #u68339 {
  412. border-width:0px;
  413. position:absolute;
  414. left:757px;
  415. top:332px;
  416. width:81px;
  417. height:30px;
  418. display:flex;
  419. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  420. font-weight:400;
  421. font-style:normal;
  422. font-size:14px;
  423. color:#7F7F7F;
  424. }
  425. #u68339 .text {
  426. position:absolute;
  427. align-self:center;
  428. padding:5px 10px 5px 0px;
  429. box-sizing:border-box;
  430. width:100%;
  431. }
  432. #u68339_text {
  433. border-width:0px;
  434. white-space:nowrap;
  435. text-transform:none;
  436. }
  437. #u68340_div {
  438. border-width:0px;
  439. position:absolute;
  440. left:0px;
  441. top:0px;
  442. width:53px;
  443. height:30px;
  444. background:inherit;
  445. background-color:rgba(255, 255, 255, 0);
  446. border:none;
  447. border-top:0px;
  448. border-right:0px;
  449. border-bottom:0px;
  450. border-radius:0px;
  451. border-top-left-radius:0px;
  452. border-bottom-left-radius:0px;
  453. -moz-box-shadow:none;
  454. -webkit-box-shadow:none;
  455. box-shadow:none;
  456. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  457. font-weight:400;
  458. font-style:normal;
  459. font-size:14px;
  460. }
  461. #u68340 {
  462. border-width:0px;
  463. position:absolute;
  464. left:838px;
  465. top:332px;
  466. width:53px;
  467. height:30px;
  468. display:flex;
  469. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  470. font-weight:400;
  471. font-style:normal;
  472. font-size:14px;
  473. }
  474. #u68340 .text {
  475. position:absolute;
  476. align-self:center;
  477. padding:5px 10px 5px 0px;
  478. box-sizing:border-box;
  479. width:100%;
  480. }
  481. #u68340_text {
  482. border-width:0px;
  483. white-space:nowrap;
  484. text-transform:none;
  485. }
  486. #u68341_div {
  487. border-width:0px;
  488. position:absolute;
  489. left:0px;
  490. top:0px;
  491. width:81px;
  492. height:30px;
  493. background:inherit;
  494. background-color:rgba(255, 255, 255, 0);
  495. border:none;
  496. border-top:0px;
  497. border-right:0px;
  498. border-bottom:0px;
  499. border-radius:0px;
  500. border-top-left-radius:0px;
  501. border-bottom-left-radius:0px;
  502. -moz-box-shadow:none;
  503. -webkit-box-shadow:none;
  504. box-shadow:none;
  505. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  506. font-weight:400;
  507. font-style:normal;
  508. font-size:14px;
  509. color:#7F7F7F;
  510. }
  511. #u68341 {
  512. border-width:0px;
  513. position:absolute;
  514. left:140px;
  515. top:372px;
  516. width:81px;
  517. height:30px;
  518. display:flex;
  519. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  520. font-weight:400;
  521. font-style:normal;
  522. font-size:14px;
  523. color:#7F7F7F;
  524. }
  525. #u68341 .text {
  526. position:absolute;
  527. align-self:center;
  528. padding:5px 10px 5px 0px;
  529. box-sizing:border-box;
  530. width:100%;
  531. }
  532. #u68341_text {
  533. border-width:0px;
  534. white-space:nowrap;
  535. text-transform:none;
  536. }
  537. #u68342_div {
  538. border-width:0px;
  539. position:absolute;
  540. left:0px;
  541. top:0px;
  542. width:81px;
  543. height:30px;
  544. background:inherit;
  545. background-color:rgba(255, 255, 255, 0);
  546. border:none;
  547. border-top:0px;
  548. border-right:0px;
  549. border-bottom:0px;
  550. border-radius:0px;
  551. border-top-left-radius:0px;
  552. border-bottom-left-radius:0px;
  553. -moz-box-shadow:none;
  554. -webkit-box-shadow:none;
  555. box-shadow:none;
  556. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  557. font-weight:400;
  558. font-style:normal;
  559. font-size:14px;
  560. color:#7F7F7F;
  561. }
  562. #u68342 {
  563. border-width:0px;
  564. position:absolute;
  565. left:460px;
  566. top:372px;
  567. width:81px;
  568. height:30px;
  569. display:flex;
  570. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  571. font-weight:400;
  572. font-style:normal;
  573. font-size:14px;
  574. color:#7F7F7F;
  575. }
  576. #u68342 .text {
  577. position:absolute;
  578. align-self:center;
  579. padding:5px 10px 5px 0px;
  580. box-sizing:border-box;
  581. width:100%;
  582. }
  583. #u68342_text {
  584. border-width:0px;
  585. white-space:nowrap;
  586. text-transform:none;
  587. }
  588. #u68343_div {
  589. border-width:0px;
  590. position:absolute;
  591. left:0px;
  592. top:0px;
  593. width:67px;
  594. height:30px;
  595. background:inherit;
  596. background-color:rgba(255, 255, 255, 0);
  597. border:none;
  598. border-top:0px;
  599. border-right:0px;
  600. border-bottom:0px;
  601. border-radius:0px;
  602. border-top-left-radius:0px;
  603. border-bottom-left-radius:0px;
  604. -moz-box-shadow:none;
  605. -webkit-box-shadow:none;
  606. box-shadow:none;
  607. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  608. font-weight:400;
  609. font-style:normal;
  610. font-size:14px;
  611. }
  612. #u68343 {
  613. border-width:0px;
  614. position:absolute;
  615. left:541px;
  616. top:372px;
  617. width:67px;
  618. height:30px;
  619. display:flex;
  620. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  621. font-weight:400;
  622. font-style:normal;
  623. font-size:14px;
  624. }
  625. #u68343 .text {
  626. position:absolute;
  627. align-self:center;
  628. padding:5px 10px 5px 0px;
  629. box-sizing:border-box;
  630. width:100%;
  631. }
  632. #u68343_text {
  633. border-width:0px;
  634. white-space:nowrap;
  635. text-transform:none;
  636. }
  637. #u68344_div {
  638. border-width:0px;
  639. position:absolute;
  640. left:0px;
  641. top:0px;
  642. width:67px;
  643. height:30px;
  644. background:inherit;
  645. background-color:rgba(255, 255, 255, 0);
  646. border:none;
  647. border-top:0px;
  648. border-right:0px;
  649. border-bottom:0px;
  650. border-radius:0px;
  651. border-top-left-radius:0px;
  652. border-bottom-left-radius:0px;
  653. -moz-box-shadow:none;
  654. -webkit-box-shadow:none;
  655. box-shadow:none;
  656. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  657. font-weight:400;
  658. font-style:normal;
  659. font-size:14px;
  660. color:#7F7F7F;
  661. }
  662. #u68344 {
  663. border-width:0px;
  664. position:absolute;
  665. left:757px;
  666. top:372px;
  667. width:67px;
  668. height:30px;
  669. display:flex;
  670. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  671. font-weight:400;
  672. font-style:normal;
  673. font-size:14px;
  674. color:#7F7F7F;
  675. }
  676. #u68344 .text {
  677. position:absolute;
  678. align-self:center;
  679. padding:5px 10px 5px 0px;
  680. box-sizing:border-box;
  681. width:100%;
  682. }
  683. #u68344_text {
  684. border-width:0px;
  685. white-space:nowrap;
  686. text-transform:none;
  687. }
  688. #u68345_div {
  689. border-width:0px;
  690. position:absolute;
  691. left:0px;
  692. top:0px;
  693. width:85px;
  694. height:30px;
  695. background:inherit;
  696. background-color:rgba(255, 255, 255, 0);
  697. border:none;
  698. border-top:0px;
  699. border-right:0px;
  700. border-bottom:0px;
  701. border-radius:0px;
  702. border-top-left-radius:0px;
  703. border-bottom-left-radius:0px;
  704. -moz-box-shadow:none;
  705. -webkit-box-shadow:none;
  706. box-shadow:none;
  707. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  708. font-weight:400;
  709. font-style:normal;
  710. font-size:14px;
  711. }
  712. #u68345 {
  713. border-width:0px;
  714. position:absolute;
  715. left:838px;
  716. top:372px;
  717. width:85px;
  718. height:30px;
  719. display:flex;
  720. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  721. font-weight:400;
  722. font-style:normal;
  723. font-size:14px;
  724. }
  725. #u68345 .text {
  726. position:absolute;
  727. align-self:center;
  728. padding:5px 10px 5px 0px;
  729. box-sizing:border-box;
  730. width:100%;
  731. }
  732. #u68345_text {
  733. border-width:0px;
  734. white-space:nowrap;
  735. text-transform:none;
  736. }
  737. #u68346_div {
  738. border-width:0px;
  739. position:absolute;
  740. left:0px;
  741. top:0px;
  742. width:183px;
  743. height:30px;
  744. background:inherit;
  745. background-color:rgba(255, 255, 255, 0);
  746. border:none;
  747. border-top:0px;
  748. border-right:0px;
  749. border-bottom:0px;
  750. border-radius:0px;
  751. border-top-left-radius:0px;
  752. border-bottom-left-radius:0px;
  753. -moz-box-shadow:none;
  754. -webkit-box-shadow:none;
  755. box-shadow:none;
  756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  757. font-weight:400;
  758. font-style:normal;
  759. font-size:14px;
  760. }
  761. #u68346 {
  762. border-width:0px;
  763. position:absolute;
  764. left:221px;
  765. top:372px;
  766. width:183px;
  767. height:30px;
  768. display:flex;
  769. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  770. font-weight:400;
  771. font-style:normal;
  772. font-size:14px;
  773. }
  774. #u68346 .text {
  775. position:absolute;
  776. align-self:center;
  777. padding:5px 10px 5px 0px;
  778. box-sizing:border-box;
  779. width:100%;
  780. }
  781. #u68346_text {
  782. border-width:0px;
  783. white-space:nowrap;
  784. text-transform:none;
  785. }
  786. #u68347_div {
  787. border-width:0px;
  788. position:absolute;
  789. left:0px;
  790. top:0px;
  791. width:81px;
  792. height:30px;
  793. background:inherit;
  794. background-color:rgba(255, 255, 255, 0);
  795. border:none;
  796. border-top:0px;
  797. border-right:0px;
  798. border-bottom:0px;
  799. border-radius:0px;
  800. border-top-left-radius:0px;
  801. border-bottom-left-radius:0px;
  802. -moz-box-shadow:none;
  803. -webkit-box-shadow:none;
  804. box-shadow:none;
  805. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  806. font-weight:400;
  807. font-style:normal;
  808. font-size:14px;
  809. color:#7F7F7F;
  810. }
  811. #u68347 {
  812. border-width:0px;
  813. position:absolute;
  814. left:140px;
  815. top:412px;
  816. width:81px;
  817. height:30px;
  818. display:flex;
  819. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  820. font-weight:400;
  821. font-style:normal;
  822. font-size:14px;
  823. color:#7F7F7F;
  824. }
  825. #u68347 .text {
  826. position:absolute;
  827. align-self:center;
  828. padding:5px 10px 5px 0px;
  829. box-sizing:border-box;
  830. width:100%;
  831. }
  832. #u68347_text {
  833. border-width:0px;
  834. white-space:nowrap;
  835. text-transform:none;
  836. }
  837. #u68348_div {
  838. border-width:0px;
  839. position:absolute;
  840. left:0px;
  841. top:0px;
  842. width:126px;
  843. height:30px;
  844. background:inherit;
  845. background-color:rgba(255, 255, 255, 0);
  846. border:none;
  847. border-top:0px;
  848. border-right:0px;
  849. border-bottom:0px;
  850. border-radius:0px;
  851. border-top-left-radius:0px;
  852. border-bottom-left-radius:0px;
  853. -moz-box-shadow:none;
  854. -webkit-box-shadow:none;
  855. box-shadow:none;
  856. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  857. font-weight:400;
  858. font-style:normal;
  859. font-size:14px;
  860. }
  861. #u68348 {
  862. border-width:0px;
  863. position:absolute;
  864. left:221px;
  865. top:412px;
  866. width:126px;
  867. height:30px;
  868. display:flex;
  869. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  870. font-weight:400;
  871. font-style:normal;
  872. font-size:14px;
  873. }
  874. #u68348 .text {
  875. position:absolute;
  876. align-self:center;
  877. padding:5px 10px 5px 0px;
  878. box-sizing:border-box;
  879. width:100%;
  880. }
  881. #u68348_text {
  882. border-width:0px;
  883. white-space:nowrap;
  884. text-transform:none;
  885. }
  886. #u68349_div {
  887. border-width:0px;
  888. position:absolute;
  889. left:0px;
  890. top:0px;
  891. width:81px;
  892. height:30px;
  893. background:inherit;
  894. background-color:rgba(255, 255, 255, 0);
  895. border:none;
  896. border-top:0px;
  897. border-right:0px;
  898. border-bottom:0px;
  899. border-radius:0px;
  900. border-top-left-radius:0px;
  901. border-bottom-left-radius:0px;
  902. -moz-box-shadow:none;
  903. -webkit-box-shadow:none;
  904. box-shadow:none;
  905. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  906. font-weight:400;
  907. font-style:normal;
  908. font-size:14px;
  909. color:#7F7F7F;
  910. }
  911. #u68349 {
  912. border-width:0px;
  913. position:absolute;
  914. left:140px;
  915. top:452px;
  916. width:81px;
  917. height:30px;
  918. display:flex;
  919. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  920. font-weight:400;
  921. font-style:normal;
  922. font-size:14px;
  923. color:#7F7F7F;
  924. }
  925. #u68349 .text {
  926. position:absolute;
  927. align-self:center;
  928. padding:5px 10px 5px 0px;
  929. box-sizing:border-box;
  930. width:100%;
  931. }
  932. #u68349_text {
  933. border-width:0px;
  934. white-space:nowrap;
  935. text-transform:none;
  936. }
  937. #u68350_div {
  938. border-width:0px;
  939. position:absolute;
  940. left:0px;
  941. top:0px;
  942. width:263px;
  943. height:30px;
  944. background:inherit;
  945. background-color:rgba(255, 255, 255, 0);
  946. border:none;
  947. border-top:0px;
  948. border-right:0px;
  949. border-bottom:0px;
  950. border-radius:0px;
  951. border-top-left-radius:0px;
  952. border-bottom-left-radius:0px;
  953. -moz-box-shadow:none;
  954. -webkit-box-shadow:none;
  955. box-shadow:none;
  956. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  957. font-weight:400;
  958. font-style:normal;
  959. font-size:14px;
  960. }
  961. #u68350 {
  962. border-width:0px;
  963. position:absolute;
  964. left:221px;
  965. top:452px;
  966. width:263px;
  967. height:30px;
  968. display:flex;
  969. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  970. font-weight:400;
  971. font-style:normal;
  972. font-size:14px;
  973. }
  974. #u68350 .text {
  975. position:absolute;
  976. align-self:center;
  977. padding:5px 10px 5px 0px;
  978. box-sizing:border-box;
  979. width:100%;
  980. }
  981. #u68350_text {
  982. border-width:0px;
  983. white-space:nowrap;
  984. text-transform:none;
  985. }
  986. #u68351 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u68352_div {
  995. border-width:0px;
  996. position:absolute;
  997. left:0px;
  998. top:0px;
  999. width:1000px;
  1000. height:60px;
  1001. background:inherit;
  1002. background-color:rgba(255, 255, 255, 1);
  1003. box-sizing:border-box;
  1004. border-width:1px;
  1005. border-style:solid;
  1006. border-color:rgba(215, 215, 215, 1);
  1007. border-radius:0px;
  1008. -moz-box-shadow:none;
  1009. -webkit-box-shadow:none;
  1010. box-shadow:none;
  1011. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1012. font-weight:400;
  1013. font-style:normal;
  1014. font-size:14px;
  1015. color:#AAAAAA;
  1016. text-align:center;
  1017. line-height:30px;
  1018. }
  1019. #u68352 {
  1020. border-width:0px;
  1021. position:absolute;
  1022. left:100px;
  1023. top:1194px;
  1024. width:1000px;
  1025. height:60px;
  1026. display:flex;
  1027. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1028. font-weight:400;
  1029. font-style:normal;
  1030. font-size:14px;
  1031. color:#AAAAAA;
  1032. text-align:center;
  1033. line-height:30px;
  1034. }
  1035. #u68352 .text {
  1036. position:absolute;
  1037. align-self:center;
  1038. padding:5px 10px 5px 10px;
  1039. box-sizing:border-box;
  1040. width:100%;
  1041. }
  1042. #u68352_text {
  1043. border-width:0px;
  1044. word-wrap:break-word;
  1045. text-transform:none;
  1046. visibility:hidden;
  1047. }
  1048. #u68353_div {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:0px;
  1052. top:0px;
  1053. width:80px;
  1054. height:30px;
  1055. background:inherit;
  1056. background-color:rgba(24, 144, 255, 1);
  1057. border:none;
  1058. border-radius:4px;
  1059. -moz-box-shadow:none;
  1060. -webkit-box-shadow:none;
  1061. box-shadow:none;
  1062. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1063. font-weight:400;
  1064. font-style:normal;
  1065. font-size:14px;
  1066. color:#FFFFFF;
  1067. }
  1068. #u68353 {
  1069. border-width:0px;
  1070. position:absolute;
  1071. left:994px;
  1072. top:1209px;
  1073. width:80px;
  1074. height:30px;
  1075. display:flex;
  1076. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1077. font-weight:400;
  1078. font-style:normal;
  1079. font-size:14px;
  1080. color:#FFFFFF;
  1081. }
  1082. #u68353 .text {
  1083. position:absolute;
  1084. align-self:center;
  1085. padding:2px 2px 2px 2px;
  1086. box-sizing:border-box;
  1087. width:100%;
  1088. }
  1089. #u68353_text {
  1090. border-width:0px;
  1091. word-wrap:break-word;
  1092. text-transform:none;
  1093. }
  1094. #u68354_div {
  1095. border-width:0px;
  1096. position:absolute;
  1097. left:0px;
  1098. top:0px;
  1099. width:80px;
  1100. height:30px;
  1101. background:inherit;
  1102. background-color:rgba(255, 255, 255, 1);
  1103. box-sizing:border-box;
  1104. border-width:1px;
  1105. border-style:solid;
  1106. border-color:rgba(170, 170, 170, 1);
  1107. border-radius:4px;
  1108. -moz-box-shadow:none;
  1109. -webkit-box-shadow:none;
  1110. box-shadow:none;
  1111. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1112. font-weight:400;
  1113. font-style:normal;
  1114. font-size:14px;
  1115. }
  1116. #u68354 {
  1117. border-width:0px;
  1118. position:absolute;
  1119. left:904px;
  1120. top:1209px;
  1121. width:80px;
  1122. height:30px;
  1123. display:flex;
  1124. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1125. font-weight:400;
  1126. font-style:normal;
  1127. font-size:14px;
  1128. }
  1129. #u68354 .text {
  1130. position:absolute;
  1131. align-self:center;
  1132. padding:2px 2px 2px 2px;
  1133. box-sizing:border-box;
  1134. width:100%;
  1135. }
  1136. #u68354_text {
  1137. border-width:0px;
  1138. word-wrap:break-word;
  1139. text-transform:none;
  1140. }
  1141. #u68355_div {
  1142. border-width:0px;
  1143. position:absolute;
  1144. left:0px;
  1145. top:0px;
  1146. width:80px;
  1147. height:30px;
  1148. background:inherit;
  1149. background-color:rgba(255, 255, 255, 1);
  1150. box-sizing:border-box;
  1151. border-width:1px;
  1152. border-style:solid;
  1153. border-color:rgba(170, 170, 170, 1);
  1154. border-radius:4px;
  1155. -moz-box-shadow:none;
  1156. -webkit-box-shadow:none;
  1157. box-shadow:none;
  1158. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1159. font-weight:400;
  1160. font-style:normal;
  1161. font-size:14px;
  1162. }
  1163. #u68355 {
  1164. border-width:0px;
  1165. position:absolute;
  1166. left:814px;
  1167. top:1209px;
  1168. width:80px;
  1169. height:30px;
  1170. display:flex;
  1171. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1172. font-weight:400;
  1173. font-style:normal;
  1174. font-size:14px;
  1175. }
  1176. #u68355 .text {
  1177. position:absolute;
  1178. align-self:center;
  1179. padding:2px 2px 2px 2px;
  1180. box-sizing:border-box;
  1181. width:100%;
  1182. }
  1183. #u68355_text {
  1184. border-width:0px;
  1185. word-wrap:break-word;
  1186. text-transform:none;
  1187. }
  1188. #u68356_img {
  1189. border-width:0px;
  1190. position:absolute;
  1191. left:0px;
  1192. top:0px;
  1193. width:942px;
  1194. height:2px;
  1195. }
  1196. #u68356 {
  1197. border-width:0px;
  1198. position:absolute;
  1199. left:140px;
  1200. top:500px;
  1201. width:941px;
  1202. height:1px;
  1203. display:flex;
  1204. }
  1205. #u68356 .text {
  1206. position:absolute;
  1207. align-self:center;
  1208. padding:2px 2px 2px 2px;
  1209. box-sizing:border-box;
  1210. width:100%;
  1211. }
  1212. #u68356_text {
  1213. border-width:0px;
  1214. word-wrap:break-word;
  1215. text-transform:none;
  1216. visibility:hidden;
  1217. }
  1218. #u68357_div {
  1219. border-width:0px;
  1220. position:absolute;
  1221. left:0px;
  1222. top:0px;
  1223. width:1000px;
  1224. height:200px;
  1225. background:inherit;
  1226. background-color:rgba(255, 255, 255, 1);
  1227. box-sizing:border-box;
  1228. border-width:1px;
  1229. border-style:solid;
  1230. border-color:rgba(215, 215, 215, 1);
  1231. border-radius:0px;
  1232. -moz-box-shadow:none;
  1233. -webkit-box-shadow:none;
  1234. box-shadow:none;
  1235. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1236. font-weight:400;
  1237. font-style:normal;
  1238. font-size:14px;
  1239. color:#AAAAAA;
  1240. text-align:center;
  1241. line-height:30px;
  1242. }
  1243. #u68357 {
  1244. border-width:0px;
  1245. position:absolute;
  1246. left:101px;
  1247. top:55px;
  1248. width:1000px;
  1249. height:200px;
  1250. display:flex;
  1251. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1252. font-weight:400;
  1253. font-style:normal;
  1254. font-size:14px;
  1255. color:#AAAAAA;
  1256. text-align:center;
  1257. line-height:30px;
  1258. }
  1259. #u68357 .text {
  1260. position:absolute;
  1261. align-self:center;
  1262. padding:5px 10px 5px 10px;
  1263. box-sizing:border-box;
  1264. width:100%;
  1265. }
  1266. #u68357_text {
  1267. border-width:0px;
  1268. word-wrap:break-word;
  1269. text-transform:none;
  1270. visibility:hidden;
  1271. }
  1272. #u68358_div {
  1273. border-width:0px;
  1274. position:absolute;
  1275. left:0px;
  1276. top:0px;
  1277. width:83px;
  1278. height:35px;
  1279. background:inherit;
  1280. background-color:rgba(255, 255, 255, 0);
  1281. border:none;
  1282. border-top:0px;
  1283. border-right:0px;
  1284. border-bottom:0px;
  1285. border-radius:0px;
  1286. border-top-left-radius:0px;
  1287. border-bottom-left-radius:0px;
  1288. -moz-box-shadow:none;
  1289. -webkit-box-shadow:none;
  1290. box-shadow:none;
  1291. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1292. font-weight:500;
  1293. font-style:normal;
  1294. font-size:18px;
  1295. }
  1296. #u68358 {
  1297. border-width:0px;
  1298. position:absolute;
  1299. left:121px;
  1300. top:73px;
  1301. width:83px;
  1302. height:35px;
  1303. display:flex;
  1304. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1305. font-weight:500;
  1306. font-style:normal;
  1307. font-size:18px;
  1308. }
  1309. #u68358 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:5px 10px 5px 0px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u68358_text {
  1317. border-width:0px;
  1318. white-space:nowrap;
  1319. text-transform:none;
  1320. }
  1321. #u68359_div {
  1322. border-width:0px;
  1323. position:absolute;
  1324. left:0px;
  1325. top:0px;
  1326. width:146px;
  1327. height:43px;
  1328. background:inherit;
  1329. background-color:rgba(255, 255, 255, 0);
  1330. border:none;
  1331. border-top:0px;
  1332. border-right:0px;
  1333. border-bottom:0px;
  1334. border-radius:0px;
  1335. border-top-left-radius:0px;
  1336. border-bottom-left-radius:0px;
  1337. -moz-box-shadow:none;
  1338. -webkit-box-shadow:none;
  1339. box-shadow:none;
  1340. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1341. font-weight:500;
  1342. font-style:normal;
  1343. font-size:24px;
  1344. }
  1345. #u68359 {
  1346. border-width:0px;
  1347. position:absolute;
  1348. left:131px;
  1349. top:124px;
  1350. width:146px;
  1351. height:43px;
  1352. display:flex;
  1353. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1354. font-weight:500;
  1355. font-style:normal;
  1356. font-size:24px;
  1357. }
  1358. #u68359 .text {
  1359. position:absolute;
  1360. align-self:center;
  1361. padding:5px 10px 5px 0px;
  1362. box-sizing:border-box;
  1363. width:100%;
  1364. }
  1365. #u68359_text {
  1366. border-width:0px;
  1367. white-space:nowrap;
  1368. text-transform:none;
  1369. }
  1370. #u68360_img {
  1371. border-width:0px;
  1372. position:absolute;
  1373. left:0px;
  1374. top:0px;
  1375. width:108px;
  1376. height:108px;
  1377. }
  1378. #u68360 {
  1379. border-width:0px;
  1380. position:absolute;
  1381. left:951px;
  1382. top:125px;
  1383. width:108px;
  1384. height:108px;
  1385. display:flex;
  1386. -webkit-transform:rotate(315deg);
  1387. -moz-transform:rotate(315deg);
  1388. -ms-transform:rotate(315deg);
  1389. transform:rotate(315deg);
  1390. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1391. font-weight:400;
  1392. font-style:normal;
  1393. font-size:28px;
  1394. color:#F59A23;
  1395. }
  1396. #u68360 .text {
  1397. position:absolute;
  1398. align-self:center;
  1399. padding:2px 2px 2px 2px;
  1400. box-sizing:border-box;
  1401. width:100%;
  1402. }
  1403. #u68360_text {
  1404. border-width:0px;
  1405. word-wrap:break-word;
  1406. text-transform:none;
  1407. }
  1408. #u68361_div {
  1409. border-width:0px;
  1410. position:absolute;
  1411. left:0px;
  1412. top:0px;
  1413. width:325px;
  1414. height:60px;
  1415. background:inherit;
  1416. background-color:rgba(255, 255, 255, 0);
  1417. border:none;
  1418. border-left:0px;
  1419. border-top:0px;
  1420. border-right:0px;
  1421. border-radius:0px;
  1422. border-bottom-right-radius:0px;
  1423. border-bottom-left-radius:0px;
  1424. -moz-box-shadow:none;
  1425. -webkit-box-shadow:none;
  1426. box-shadow:none;
  1427. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1428. font-weight:400;
  1429. font-style:normal;
  1430. font-size:14px;
  1431. line-height:30px;
  1432. }
  1433. #u68361 {
  1434. border-width:0px;
  1435. position:absolute;
  1436. left:131px;
  1437. top:179px;
  1438. width:325px;
  1439. height:60px;
  1440. display:flex;
  1441. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1442. font-weight:400;
  1443. font-style:normal;
  1444. font-size:14px;
  1445. line-height:30px;
  1446. }
  1447. #u68361 .text {
  1448. position:absolute;
  1449. align-self:flex-start;
  1450. padding:0px 0px 0px 0px;
  1451. box-sizing:border-box;
  1452. width:100%;
  1453. }
  1454. #u68361_text {
  1455. border-width:0px;
  1456. word-wrap:break-word;
  1457. text-transform:none;
  1458. }
  1459. #u68362_img {
  1460. border-width:0px;
  1461. position:absolute;
  1462. left:0px;
  1463. top:0px;
  1464. width:17px;
  1465. height:17px;
  1466. }
  1467. #u68362 {
  1468. border-width:0px;
  1469. position:absolute;
  1470. left:1073px;
  1471. top:77px;
  1472. width:17px;
  1473. height:17px;
  1474. display:flex;
  1475. }
  1476. #u68362 .text {
  1477. position:absolute;
  1478. align-self:center;
  1479. padding:2px 2px 2px 2px;
  1480. box-sizing:border-box;
  1481. width:100%;
  1482. }
  1483. #u68362_text {
  1484. border-width:0px;
  1485. word-wrap:break-word;
  1486. text-transform:none;
  1487. visibility:hidden;
  1488. }
  1489. #u68363 {
  1490. border-width:0px;
  1491. position:absolute;
  1492. left:0px;
  1493. top:0px;
  1494. width:0px;
  1495. height:0px;
  1496. }
  1497. #u68364_div {
  1498. border-width:0px;
  1499. position:absolute;
  1500. left:0px;
  1501. top:0px;
  1502. width:930px;
  1503. height:210px;
  1504. background:inherit;
  1505. background-color:rgba(242, 242, 242, 1);
  1506. border:none;
  1507. border-radius:0px;
  1508. -moz-box-shadow:none;
  1509. -webkit-box-shadow:none;
  1510. box-shadow:none;
  1511. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1512. font-weight:400;
  1513. font-style:normal;
  1514. font-size:14px;
  1515. color:#AAAAAA;
  1516. text-align:center;
  1517. line-height:30px;
  1518. }
  1519. #u68364 {
  1520. border-width:0px;
  1521. position:absolute;
  1522. left:140px;
  1523. top:636px;
  1524. width:930px;
  1525. height:210px;
  1526. display:flex;
  1527. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1528. font-weight:400;
  1529. font-style:normal;
  1530. font-size:14px;
  1531. color:#AAAAAA;
  1532. text-align:center;
  1533. line-height:30px;
  1534. }
  1535. #u68364 .text {
  1536. position:absolute;
  1537. align-self:center;
  1538. padding:5px 10px 5px 10px;
  1539. box-sizing:border-box;
  1540. width:100%;
  1541. }
  1542. #u68364_text {
  1543. border-width:0px;
  1544. word-wrap:break-word;
  1545. text-transform:none;
  1546. visibility:hidden;
  1547. }
  1548. #u68365_div {
  1549. border-width:0px;
  1550. position:absolute;
  1551. left:0px;
  1552. top:0px;
  1553. width:80px;
  1554. height:40px;
  1555. background:inherit;
  1556. background-color:rgba(255, 255, 255, 0);
  1557. border:none;
  1558. border-top:0px;
  1559. border-right:0px;
  1560. border-bottom:0px;
  1561. border-radius:0px;
  1562. border-top-left-radius:0px;
  1563. border-bottom-left-radius:0px;
  1564. -moz-box-shadow:none;
  1565. -webkit-box-shadow:none;
  1566. box-shadow:none;
  1567. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1568. font-weight:400;
  1569. font-style:normal;
  1570. font-size:14px;
  1571. color:#7F7F7F;
  1572. line-height:40px;
  1573. }
  1574. #u68365 {
  1575. border-width:0px;
  1576. position:absolute;
  1577. left:163px;
  1578. top:656px;
  1579. width:80px;
  1580. height:40px;
  1581. display:flex;
  1582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1583. font-weight:400;
  1584. font-style:normal;
  1585. font-size:14px;
  1586. color:#7F7F7F;
  1587. line-height:40px;
  1588. }
  1589. #u68365 .text {
  1590. position:absolute;
  1591. align-self:center;
  1592. padding:0px 0px 0px 0px;
  1593. box-sizing:border-box;
  1594. width:100%;
  1595. }
  1596. #u68365_text {
  1597. border-width:0px;
  1598. word-wrap:break-word;
  1599. text-transform:none;
  1600. }
  1601. #u68366_div {
  1602. border-width:0px;
  1603. position:absolute;
  1604. left:0px;
  1605. top:0px;
  1606. width:160px;
  1607. height:40px;
  1608. background:inherit;
  1609. background-color:rgba(255, 255, 255, 0);
  1610. border:none;
  1611. border-top:0px;
  1612. border-right:0px;
  1613. border-bottom:0px;
  1614. border-radius:0px;
  1615. border-top-left-radius:0px;
  1616. border-bottom-left-radius:0px;
  1617. -moz-box-shadow:none;
  1618. -webkit-box-shadow:none;
  1619. box-shadow:none;
  1620. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1621. font-weight:400;
  1622. font-style:normal;
  1623. font-size:14px;
  1624. line-height:40px;
  1625. }
  1626. #u68366 {
  1627. border-width:0px;
  1628. position:absolute;
  1629. left:243px;
  1630. top:656px;
  1631. width:160px;
  1632. height:40px;
  1633. display:flex;
  1634. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1635. font-weight:400;
  1636. font-style:normal;
  1637. font-size:14px;
  1638. line-height:40px;
  1639. }
  1640. #u68366 .text {
  1641. position:absolute;
  1642. align-self:center;
  1643. padding:0px 0px 0px 0px;
  1644. box-sizing:border-box;
  1645. width:100%;
  1646. }
  1647. #u68366_text {
  1648. border-width:0px;
  1649. word-wrap:break-word;
  1650. text-transform:none;
  1651. }
  1652. #u68367_div {
  1653. border-width:0px;
  1654. position:absolute;
  1655. left:0px;
  1656. top:0px;
  1657. width:80px;
  1658. height:40px;
  1659. background:inherit;
  1660. background-color:rgba(255, 255, 255, 0);
  1661. border:none;
  1662. border-top:0px;
  1663. border-right:0px;
  1664. border-bottom:0px;
  1665. border-radius:0px;
  1666. border-top-left-radius:0px;
  1667. border-bottom-left-radius:0px;
  1668. -moz-box-shadow:none;
  1669. -webkit-box-shadow:none;
  1670. box-shadow:none;
  1671. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1672. font-weight:400;
  1673. font-style:normal;
  1674. font-size:14px;
  1675. color:#7F7F7F;
  1676. line-height:40px;
  1677. }
  1678. #u68367 {
  1679. border-width:0px;
  1680. position:absolute;
  1681. left:460px;
  1682. top:656px;
  1683. width:80px;
  1684. height:40px;
  1685. display:flex;
  1686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1687. font-weight:400;
  1688. font-style:normal;
  1689. font-size:14px;
  1690. color:#7F7F7F;
  1691. line-height:40px;
  1692. }
  1693. #u68367 .text {
  1694. position:absolute;
  1695. align-self:center;
  1696. padding:0px 0px 0px 0px;
  1697. box-sizing:border-box;
  1698. width:100%;
  1699. }
  1700. #u68367_text {
  1701. border-width:0px;
  1702. word-wrap:break-word;
  1703. text-transform:none;
  1704. }
  1705. #u68368_div {
  1706. border-width:0px;
  1707. position:absolute;
  1708. left:0px;
  1709. top:0px;
  1710. width:160px;
  1711. height:40px;
  1712. background:inherit;
  1713. background-color:rgba(255, 255, 255, 0);
  1714. border:none;
  1715. border-top:0px;
  1716. border-right:0px;
  1717. border-bottom:0px;
  1718. border-radius:0px;
  1719. border-top-left-radius:0px;
  1720. border-bottom-left-radius:0px;
  1721. -moz-box-shadow:none;
  1722. -webkit-box-shadow:none;
  1723. box-shadow:none;
  1724. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1725. font-weight:400;
  1726. font-style:normal;
  1727. font-size:14px;
  1728. line-height:40px;
  1729. }
  1730. #u68368 {
  1731. border-width:0px;
  1732. position:absolute;
  1733. left:540px;
  1734. top:656px;
  1735. width:160px;
  1736. height:40px;
  1737. display:flex;
  1738. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1739. font-weight:400;
  1740. font-style:normal;
  1741. font-size:14px;
  1742. line-height:40px;
  1743. }
  1744. #u68368 .text {
  1745. position:absolute;
  1746. align-self:center;
  1747. padding:0px 0px 0px 0px;
  1748. box-sizing:border-box;
  1749. width:100%;
  1750. }
  1751. #u68368_text {
  1752. border-width:0px;
  1753. word-wrap:break-word;
  1754. text-transform:none;
  1755. }
  1756. #u68369_div {
  1757. border-width:0px;
  1758. position:absolute;
  1759. left:0px;
  1760. top:0px;
  1761. width:78px;
  1762. height:40px;
  1763. background:inherit;
  1764. background-color:rgba(255, 255, 255, 0);
  1765. border:none;
  1766. border-top:0px;
  1767. border-right:0px;
  1768. border-bottom:0px;
  1769. border-radius:0px;
  1770. border-top-left-radius:0px;
  1771. border-bottom-left-radius:0px;
  1772. -moz-box-shadow:none;
  1773. -webkit-box-shadow:none;
  1774. box-shadow:none;
  1775. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1776. font-weight:400;
  1777. font-style:normal;
  1778. font-size:14px;
  1779. color:#7F7F7F;
  1780. line-height:40px;
  1781. }
  1782. #u68369 {
  1783. border-width:0px;
  1784. position:absolute;
  1785. left:163px;
  1786. top:745px;
  1787. width:78px;
  1788. height:40px;
  1789. display:flex;
  1790. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1791. font-weight:400;
  1792. font-style:normal;
  1793. font-size:14px;
  1794. color:#7F7F7F;
  1795. line-height:40px;
  1796. }
  1797. #u68369 .text {
  1798. position:absolute;
  1799. align-self:center;
  1800. padding:0px 0px 0px 0px;
  1801. box-sizing:border-box;
  1802. width:100%;
  1803. }
  1804. #u68369_text {
  1805. border-width:0px;
  1806. white-space:nowrap;
  1807. text-transform:none;
  1808. }
  1809. #u68370_img {
  1810. border-width:0px;
  1811. position:absolute;
  1812. left:0px;
  1813. top:0px;
  1814. width:120px;
  1815. height:80px;
  1816. }
  1817. #u68370 {
  1818. border-width:0px;
  1819. position:absolute;
  1820. left:242px;
  1821. top:745px;
  1822. width:120px;
  1823. height:80px;
  1824. display:flex;
  1825. }
  1826. #u68370 .text {
  1827. position:absolute;
  1828. align-self:center;
  1829. padding:0px 0px 0px 0px;
  1830. box-sizing:border-box;
  1831. width:100%;
  1832. }
  1833. #u68370_text {
  1834. border-width:0px;
  1835. word-wrap:break-word;
  1836. text-transform:none;
  1837. }
  1838. #u68371_img {
  1839. border-width:0px;
  1840. position:absolute;
  1841. left:0px;
  1842. top:0px;
  1843. width:120px;
  1844. height:80px;
  1845. }
  1846. #u68371 {
  1847. border-width:0px;
  1848. position:absolute;
  1849. left:384px;
  1850. top:745px;
  1851. width:120px;
  1852. height:80px;
  1853. display:flex;
  1854. }
  1855. #u68371 .text {
  1856. position:absolute;
  1857. align-self:center;
  1858. padding:0px 0px 0px 0px;
  1859. box-sizing:border-box;
  1860. width:100%;
  1861. }
  1862. #u68371_text {
  1863. border-width:0px;
  1864. word-wrap:break-word;
  1865. text-transform:none;
  1866. }
  1867. #u68372_img {
  1868. border-width:0px;
  1869. position:absolute;
  1870. left:0px;
  1871. top:0px;
  1872. width:120px;
  1873. height:80px;
  1874. }
  1875. #u68372 {
  1876. border-width:0px;
  1877. position:absolute;
  1878. left:525px;
  1879. top:745px;
  1880. width:120px;
  1881. height:80px;
  1882. display:flex;
  1883. }
  1884. #u68372 .text {
  1885. position:absolute;
  1886. align-self:center;
  1887. padding:0px 0px 0px 0px;
  1888. box-sizing:border-box;
  1889. width:100%;
  1890. }
  1891. #u68372_text {
  1892. border-width:0px;
  1893. word-wrap:break-word;
  1894. text-transform:none;
  1895. }
  1896. #u68373_div {
  1897. border-width:0px;
  1898. position:absolute;
  1899. left:0px;
  1900. top:0px;
  1901. width:80px;
  1902. height:40px;
  1903. background:inherit;
  1904. background-color:rgba(255, 255, 255, 0);
  1905. border:none;
  1906. border-top:0px;
  1907. border-right:0px;
  1908. border-bottom:0px;
  1909. border-radius:0px;
  1910. border-top-left-radius:0px;
  1911. border-bottom-left-radius:0px;
  1912. -moz-box-shadow:none;
  1913. -webkit-box-shadow:none;
  1914. box-shadow:none;
  1915. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1916. font-weight:400;
  1917. font-style:normal;
  1918. font-size:14px;
  1919. color:#7F7F7F;
  1920. line-height:40px;
  1921. }
  1922. #u68373 {
  1923. border-width:0px;
  1924. position:absolute;
  1925. left:775px;
  1926. top:656px;
  1927. width:80px;
  1928. height:40px;
  1929. display:flex;
  1930. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1931. font-weight:400;
  1932. font-style:normal;
  1933. font-size:14px;
  1934. color:#7F7F7F;
  1935. line-height:40px;
  1936. }
  1937. #u68373 .text {
  1938. position:absolute;
  1939. align-self:center;
  1940. padding:0px 0px 0px 0px;
  1941. box-sizing:border-box;
  1942. width:100%;
  1943. }
  1944. #u68373_text {
  1945. border-width:0px;
  1946. word-wrap:break-word;
  1947. text-transform:none;
  1948. }
  1949. #u68374_div {
  1950. border-width:0px;
  1951. position:absolute;
  1952. left:0px;
  1953. top:0px;
  1954. width:23px;
  1955. height:40px;
  1956. background:inherit;
  1957. background-color:rgba(255, 255, 255, 0);
  1958. border:none;
  1959. border-top:0px;
  1960. border-right:0px;
  1961. border-bottom:0px;
  1962. border-radius:0px;
  1963. border-top-left-radius:0px;
  1964. border-bottom-left-radius:0px;
  1965. -moz-box-shadow:none;
  1966. -webkit-box-shadow:none;
  1967. box-shadow:none;
  1968. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1969. font-weight:400;
  1970. font-style:normal;
  1971. font-size:14px;
  1972. line-height:40px;
  1973. }
  1974. #u68374 {
  1975. border-width:0px;
  1976. position:absolute;
  1977. left:855px;
  1978. top:656px;
  1979. width:23px;
  1980. height:40px;
  1981. display:flex;
  1982. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1983. font-weight:400;
  1984. font-style:normal;
  1985. font-size:14px;
  1986. line-height:40px;
  1987. }
  1988. #u68374 .text {
  1989. position:absolute;
  1990. align-self:center;
  1991. padding:0px 0px 0px 0px;
  1992. box-sizing:border-box;
  1993. width:100%;
  1994. }
  1995. #u68374_text {
  1996. border-width:0px;
  1997. white-space:nowrap;
  1998. text-transform:none;
  1999. }
  2000. #u68375_div {
  2001. border-width:0px;
  2002. position:absolute;
  2003. left:0px;
  2004. top:0px;
  2005. width:80px;
  2006. height:40px;
  2007. background:inherit;
  2008. background-color:rgba(255, 255, 255, 0);
  2009. border:none;
  2010. border-top:0px;
  2011. border-right:0px;
  2012. border-bottom:0px;
  2013. border-radius:0px;
  2014. border-top-left-radius:0px;
  2015. border-bottom-left-radius:0px;
  2016. -moz-box-shadow:none;
  2017. -webkit-box-shadow:none;
  2018. box-shadow:none;
  2019. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2020. font-weight:400;
  2021. font-style:normal;
  2022. font-size:14px;
  2023. color:#7F7F7F;
  2024. line-height:40px;
  2025. }
  2026. #u68375 {
  2027. border-width:0px;
  2028. position:absolute;
  2029. left:163px;
  2030. top:695px;
  2031. width:80px;
  2032. height:40px;
  2033. display:flex;
  2034. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2035. font-weight:400;
  2036. font-style:normal;
  2037. font-size:14px;
  2038. color:#7F7F7F;
  2039. line-height:40px;
  2040. }
  2041. #u68375 .text {
  2042. position:absolute;
  2043. align-self:center;
  2044. padding:0px 0px 0px 0px;
  2045. box-sizing:border-box;
  2046. width:100%;
  2047. }
  2048. #u68375_text {
  2049. border-width:0px;
  2050. word-wrap:break-word;
  2051. text-transform:none;
  2052. }
  2053. #u68376_div {
  2054. border-width:0px;
  2055. position:absolute;
  2056. left:0px;
  2057. top:0px;
  2058. width:160px;
  2059. height:40px;
  2060. background:inherit;
  2061. background-color:rgba(255, 255, 255, 0);
  2062. border:none;
  2063. border-top:0px;
  2064. border-right:0px;
  2065. border-bottom:0px;
  2066. border-radius:0px;
  2067. border-top-left-radius:0px;
  2068. border-bottom-left-radius:0px;
  2069. -moz-box-shadow:none;
  2070. -webkit-box-shadow:none;
  2071. box-shadow:none;
  2072. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2073. font-weight:400;
  2074. font-style:normal;
  2075. font-size:14px;
  2076. line-height:40px;
  2077. }
  2078. #u68376 {
  2079. border-width:0px;
  2080. position:absolute;
  2081. left:243px;
  2082. top:695px;
  2083. width:160px;
  2084. height:40px;
  2085. display:flex;
  2086. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2087. font-weight:400;
  2088. font-style:normal;
  2089. font-size:14px;
  2090. line-height:40px;
  2091. }
  2092. #u68376 .text {
  2093. position:absolute;
  2094. align-self:center;
  2095. padding:0px 0px 0px 0px;
  2096. box-sizing:border-box;
  2097. width:100%;
  2098. }
  2099. #u68376_text {
  2100. border-width:0px;
  2101. word-wrap:break-word;
  2102. text-transform:none;
  2103. }
  2104. #u68377_div {
  2105. border-width:0px;
  2106. position:absolute;
  2107. left:0px;
  2108. top:0px;
  2109. width:80px;
  2110. height:40px;
  2111. background:inherit;
  2112. background-color:rgba(255, 255, 255, 0);
  2113. border:none;
  2114. border-top:0px;
  2115. border-right:0px;
  2116. border-bottom:0px;
  2117. border-radius:0px;
  2118. border-top-left-radius:0px;
  2119. border-bottom-left-radius:0px;
  2120. -moz-box-shadow:none;
  2121. -webkit-box-shadow:none;
  2122. box-shadow:none;
  2123. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2124. font-weight:400;
  2125. font-style:normal;
  2126. font-size:14px;
  2127. color:#7F7F7F;
  2128. line-height:40px;
  2129. }
  2130. #u68377 {
  2131. border-width:0px;
  2132. position:absolute;
  2133. left:460px;
  2134. top:695px;
  2135. width:80px;
  2136. height:40px;
  2137. display:flex;
  2138. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2139. font-weight:400;
  2140. font-style:normal;
  2141. font-size:14px;
  2142. color:#7F7F7F;
  2143. line-height:40px;
  2144. }
  2145. #u68377 .text {
  2146. position:absolute;
  2147. align-self:center;
  2148. padding:0px 0px 0px 0px;
  2149. box-sizing:border-box;
  2150. width:100%;
  2151. }
  2152. #u68377_text {
  2153. border-width:0px;
  2154. word-wrap:break-word;
  2155. text-transform:none;
  2156. }
  2157. #u68378_div {
  2158. border-width:0px;
  2159. position:absolute;
  2160. left:0px;
  2161. top:0px;
  2162. width:160px;
  2163. height:40px;
  2164. background:inherit;
  2165. background-color:rgba(255, 255, 255, 0);
  2166. border:none;
  2167. border-top:0px;
  2168. border-right:0px;
  2169. border-bottom:0px;
  2170. border-radius:0px;
  2171. border-top-left-radius:0px;
  2172. border-bottom-left-radius:0px;
  2173. -moz-box-shadow:none;
  2174. -webkit-box-shadow:none;
  2175. box-shadow:none;
  2176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2177. font-weight:400;
  2178. font-style:normal;
  2179. font-size:14px;
  2180. line-height:40px;
  2181. }
  2182. #u68378 {
  2183. border-width:0px;
  2184. position:absolute;
  2185. left:540px;
  2186. top:695px;
  2187. width:160px;
  2188. height:40px;
  2189. display:flex;
  2190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2191. font-weight:400;
  2192. font-style:normal;
  2193. font-size:14px;
  2194. line-height:40px;
  2195. }
  2196. #u68378 .text {
  2197. position:absolute;
  2198. align-self:center;
  2199. padding:0px 0px 0px 0px;
  2200. box-sizing:border-box;
  2201. width:100%;
  2202. }
  2203. #u68378_text {
  2204. border-width:0px;
  2205. word-wrap:break-word;
  2206. text-transform:none;
  2207. }
  2208. #u68379_div {
  2209. border-width:0px;
  2210. position:absolute;
  2211. left:0px;
  2212. top:0px;
  2213. width:80px;
  2214. height:40px;
  2215. background:inherit;
  2216. background-color:rgba(255, 255, 255, 0);
  2217. border:none;
  2218. border-top:0px;
  2219. border-right:0px;
  2220. border-bottom:0px;
  2221. border-radius:0px;
  2222. border-top-left-radius:0px;
  2223. border-bottom-left-radius:0px;
  2224. -moz-box-shadow:none;
  2225. -webkit-box-shadow:none;
  2226. box-shadow:none;
  2227. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2228. font-weight:400;
  2229. font-style:normal;
  2230. font-size:14px;
  2231. color:#7F7F7F;
  2232. line-height:40px;
  2233. }
  2234. #u68379 {
  2235. border-width:0px;
  2236. position:absolute;
  2237. left:775px;
  2238. top:695px;
  2239. width:80px;
  2240. height:40px;
  2241. display:flex;
  2242. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2243. font-weight:400;
  2244. font-style:normal;
  2245. font-size:14px;
  2246. color:#7F7F7F;
  2247. line-height:40px;
  2248. }
  2249. #u68379 .text {
  2250. position:absolute;
  2251. align-self:center;
  2252. padding:0px 0px 0px 0px;
  2253. box-sizing:border-box;
  2254. width:100%;
  2255. }
  2256. #u68379_text {
  2257. border-width:0px;
  2258. word-wrap:break-word;
  2259. text-transform:none;
  2260. }
  2261. #u68380_div {
  2262. border-width:0px;
  2263. position:absolute;
  2264. left:0px;
  2265. top:0px;
  2266. width:65px;
  2267. height:40px;
  2268. background:inherit;
  2269. background-color:rgba(255, 255, 255, 0);
  2270. border:none;
  2271. border-top:0px;
  2272. border-right:0px;
  2273. border-bottom:0px;
  2274. border-radius:0px;
  2275. border-top-left-radius:0px;
  2276. border-bottom-left-radius:0px;
  2277. -moz-box-shadow:none;
  2278. -webkit-box-shadow:none;
  2279. box-shadow:none;
  2280. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2281. font-weight:400;
  2282. font-style:normal;
  2283. font-size:14px;
  2284. line-height:40px;
  2285. }
  2286. #u68380 {
  2287. border-width:0px;
  2288. position:absolute;
  2289. left:855px;
  2290. top:695px;
  2291. width:65px;
  2292. height:40px;
  2293. display:flex;
  2294. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2295. font-weight:400;
  2296. font-style:normal;
  2297. font-size:14px;
  2298. line-height:40px;
  2299. }
  2300. #u68380 .text {
  2301. position:absolute;
  2302. align-self:center;
  2303. padding:0px 0px 0px 0px;
  2304. box-sizing:border-box;
  2305. width:100%;
  2306. }
  2307. #u68380_text {
  2308. border-width:0px;
  2309. white-space:nowrap;
  2310. text-transform:none;
  2311. }
  2312. #u68381_div {
  2313. border-width:0px;
  2314. position:absolute;
  2315. left:0px;
  2316. top:0px;
  2317. width:57px;
  2318. height:40px;
  2319. background:inherit;
  2320. background-color:rgba(255, 255, 255, 0);
  2321. border:none;
  2322. border-left:0px;
  2323. border-top:0px;
  2324. border-right:0px;
  2325. border-radius:0px;
  2326. border-bottom-right-radius:0px;
  2327. border-bottom-left-radius:0px;
  2328. -moz-box-shadow:none;
  2329. -webkit-box-shadow:none;
  2330. box-shadow:none;
  2331. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2332. font-weight:400;
  2333. font-style:normal;
  2334. font-size:14px;
  2335. }
  2336. #u68381 {
  2337. border-width:0px;
  2338. position:absolute;
  2339. left:140px;
  2340. top:513px;
  2341. width:57px;
  2342. height:40px;
  2343. display:flex;
  2344. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2345. font-weight:400;
  2346. font-style:normal;
  2347. font-size:14px;
  2348. }
  2349. #u68381 .text {
  2350. position:absolute;
  2351. align-self:center;
  2352. padding:0px 0px 0px 0px;
  2353. box-sizing:border-box;
  2354. width:100%;
  2355. }
  2356. #u68381_text {
  2357. border-width:0px;
  2358. white-space:nowrap;
  2359. text-transform:none;
  2360. }
  2361. #u68382_div {
  2362. border-width:0px;
  2363. position:absolute;
  2364. left:0px;
  2365. top:0px;
  2366. width:80px;
  2367. height:40px;
  2368. background:inherit;
  2369. background-color:rgba(255, 255, 255, 0);
  2370. border:none;
  2371. border-top:0px;
  2372. border-right:0px;
  2373. border-bottom:0px;
  2374. border-radius:0px;
  2375. border-top-left-radius:0px;
  2376. border-bottom-left-radius:0px;
  2377. -moz-box-shadow:none;
  2378. -webkit-box-shadow:none;
  2379. box-shadow:none;
  2380. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2381. font-weight:400;
  2382. font-style:normal;
  2383. font-size:14px;
  2384. color:#7F7F7F;
  2385. line-height:40px;
  2386. }
  2387. #u68382 {
  2388. border-width:0px;
  2389. position:absolute;
  2390. left:140px;
  2391. top:553px;
  2392. width:80px;
  2393. height:40px;
  2394. display:flex;
  2395. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2396. font-weight:400;
  2397. font-style:normal;
  2398. font-size:14px;
  2399. color:#7F7F7F;
  2400. line-height:40px;
  2401. }
  2402. #u68382 .text {
  2403. position:absolute;
  2404. align-self:center;
  2405. padding:0px 0px 0px 0px;
  2406. box-sizing:border-box;
  2407. width:100%;
  2408. }
  2409. #u68382_text {
  2410. border-width:0px;
  2411. word-wrap:break-word;
  2412. text-transform:none;
  2413. }
  2414. #u68383_div {
  2415. border-width:0px;
  2416. position:absolute;
  2417. left:0px;
  2418. top:0px;
  2419. width:160px;
  2420. height:40px;
  2421. background:inherit;
  2422. background-color:rgba(255, 255, 255, 0);
  2423. border:none;
  2424. border-top:0px;
  2425. border-right:0px;
  2426. border-bottom:0px;
  2427. border-radius:0px;
  2428. border-top-left-radius:0px;
  2429. border-bottom-left-radius:0px;
  2430. -moz-box-shadow:none;
  2431. -webkit-box-shadow:none;
  2432. box-shadow:none;
  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. #u68383 {
  2440. border-width:0px;
  2441. position:absolute;
  2442. left:220px;
  2443. top:553px;
  2444. width:160px;
  2445. height:40px;
  2446. display:flex;
  2447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2448. font-weight:400;
  2449. font-style:normal;
  2450. font-size:14px;
  2451. line-height:40px;
  2452. }
  2453. #u68383 .text {
  2454. position:absolute;
  2455. align-self:center;
  2456. padding:0px 0px 0px 0px;
  2457. box-sizing:border-box;
  2458. width:100%;
  2459. }
  2460. #u68383_text {
  2461. border-width:0px;
  2462. word-wrap:break-word;
  2463. text-transform:none;
  2464. }
  2465. #u68384_div {
  2466. border-width:0px;
  2467. position:absolute;
  2468. left:0px;
  2469. top:0px;
  2470. width:80px;
  2471. height:40px;
  2472. background:inherit;
  2473. background-color:rgba(255, 255, 255, 0);
  2474. border:none;
  2475. border-top:0px;
  2476. border-right:0px;
  2477. border-bottom:0px;
  2478. border-radius:0px;
  2479. border-top-left-radius:0px;
  2480. border-bottom-left-radius:0px;
  2481. -moz-box-shadow:none;
  2482. -webkit-box-shadow:none;
  2483. box-shadow:none;
  2484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2485. font-weight:400;
  2486. font-style:normal;
  2487. font-size:14px;
  2488. color:#7F7F7F;
  2489. line-height:40px;
  2490. }
  2491. #u68384 {
  2492. border-width:0px;
  2493. position:absolute;
  2494. left:460px;
  2495. top:553px;
  2496. width:80px;
  2497. height:40px;
  2498. display:flex;
  2499. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2500. font-weight:400;
  2501. font-style:normal;
  2502. font-size:14px;
  2503. color:#7F7F7F;
  2504. line-height:40px;
  2505. }
  2506. #u68384 .text {
  2507. position:absolute;
  2508. align-self:center;
  2509. padding:0px 0px 0px 0px;
  2510. box-sizing:border-box;
  2511. width:100%;
  2512. }
  2513. #u68384_text {
  2514. border-width:0px;
  2515. word-wrap:break-word;
  2516. text-transform:none;
  2517. }
  2518. #u68385_div {
  2519. border-width:0px;
  2520. position:absolute;
  2521. left:0px;
  2522. top:0px;
  2523. width:160px;
  2524. height:40px;
  2525. background:inherit;
  2526. background-color:rgba(255, 255, 255, 0);
  2527. border:none;
  2528. border-top:0px;
  2529. border-right:0px;
  2530. border-bottom:0px;
  2531. border-radius:0px;
  2532. border-top-left-radius:0px;
  2533. border-bottom-left-radius:0px;
  2534. -moz-box-shadow:none;
  2535. -webkit-box-shadow:none;
  2536. box-shadow:none;
  2537. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2538. font-weight:400;
  2539. font-style:normal;
  2540. font-size:14px;
  2541. line-height:40px;
  2542. }
  2543. #u68385 {
  2544. border-width:0px;
  2545. position:absolute;
  2546. left:540px;
  2547. top:553px;
  2548. width:160px;
  2549. height:40px;
  2550. display:flex;
  2551. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2552. font-weight:400;
  2553. font-style:normal;
  2554. font-size:14px;
  2555. line-height:40px;
  2556. }
  2557. #u68385 .text {
  2558. position:absolute;
  2559. align-self:center;
  2560. padding:0px 0px 0px 0px;
  2561. box-sizing:border-box;
  2562. width:100%;
  2563. }
  2564. #u68385_text {
  2565. border-width:0px;
  2566. word-wrap:break-word;
  2567. text-transform:none;
  2568. }
  2569. #u68386_div {
  2570. border-width:0px;
  2571. position:absolute;
  2572. left:0px;
  2573. top:0px;
  2574. width:80px;
  2575. height:40px;
  2576. background:inherit;
  2577. background-color:rgba(255, 255, 255, 0);
  2578. border:none;
  2579. border-top:0px;
  2580. border-right:0px;
  2581. border-bottom:0px;
  2582. border-radius:0px;
  2583. border-top-left-radius:0px;
  2584. border-bottom-left-radius:0px;
  2585. -moz-box-shadow:none;
  2586. -webkit-box-shadow:none;
  2587. box-shadow:none;
  2588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2589. font-weight:400;
  2590. font-style:normal;
  2591. font-size:14px;
  2592. color:#7F7F7F;
  2593. line-height:40px;
  2594. }
  2595. #u68386 {
  2596. border-width:0px;
  2597. position:absolute;
  2598. left:780px;
  2599. top:553px;
  2600. width:80px;
  2601. height:40px;
  2602. display:flex;
  2603. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2604. font-weight:400;
  2605. font-style:normal;
  2606. font-size:14px;
  2607. color:#7F7F7F;
  2608. line-height:40px;
  2609. }
  2610. #u68386 .text {
  2611. position:absolute;
  2612. align-self:center;
  2613. padding:0px 0px 0px 0px;
  2614. box-sizing:border-box;
  2615. width:100%;
  2616. }
  2617. #u68386_text {
  2618. border-width:0px;
  2619. word-wrap:break-word;
  2620. text-transform:none;
  2621. }
  2622. #u68387_div {
  2623. border-width:0px;
  2624. position:absolute;
  2625. left:0px;
  2626. top:0px;
  2627. width:160px;
  2628. height:40px;
  2629. background:inherit;
  2630. background-color:rgba(255, 255, 255, 0);
  2631. border:none;
  2632. border-top:0px;
  2633. border-right:0px;
  2634. border-bottom:0px;
  2635. border-radius:0px;
  2636. border-top-left-radius:0px;
  2637. border-bottom-left-radius:0px;
  2638. -moz-box-shadow:none;
  2639. -webkit-box-shadow:none;
  2640. box-shadow:none;
  2641. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2642. font-weight:400;
  2643. font-style:normal;
  2644. font-size:14px;
  2645. line-height:40px;
  2646. }
  2647. #u68387 {
  2648. border-width:0px;
  2649. position:absolute;
  2650. left:860px;
  2651. top:553px;
  2652. width:160px;
  2653. height:40px;
  2654. display:flex;
  2655. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2656. font-weight:400;
  2657. font-style:normal;
  2658. font-size:14px;
  2659. line-height:40px;
  2660. }
  2661. #u68387 .text {
  2662. position:absolute;
  2663. align-self:center;
  2664. padding:0px 0px 0px 0px;
  2665. box-sizing:border-box;
  2666. width:100%;
  2667. }
  2668. #u68387_text {
  2669. border-width:0px;
  2670. word-wrap:break-word;
  2671. text-transform:none;
  2672. }
  2673. #u68388_div {
  2674. border-width:0px;
  2675. position:absolute;
  2676. left:0px;
  2677. top:0px;
  2678. width:71px;
  2679. height:40px;
  2680. background:inherit;
  2681. background-color:rgba(255, 255, 255, 0);
  2682. border:none;
  2683. border-top:0px;
  2684. border-right:0px;
  2685. border-bottom:0px;
  2686. border-radius:0px;
  2687. border-top-left-radius:0px;
  2688. border-bottom-left-radius:0px;
  2689. -moz-box-shadow:none;
  2690. -webkit-box-shadow:none;
  2691. box-shadow:none;
  2692. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2693. font-weight:400;
  2694. font-style:normal;
  2695. font-size:14px;
  2696. color:#7F7F7F;
  2697. line-height:40px;
  2698. }
  2699. #u68388 {
  2700. border-width:0px;
  2701. position:absolute;
  2702. left:140px;
  2703. top:593px;
  2704. width:71px;
  2705. height:40px;
  2706. display:flex;
  2707. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2708. font-weight:400;
  2709. font-style:normal;
  2710. font-size:14px;
  2711. color:#7F7F7F;
  2712. line-height:40px;
  2713. }
  2714. #u68388 .text {
  2715. position:absolute;
  2716. align-self:center;
  2717. padding:0px 0px 0px 0px;
  2718. box-sizing:border-box;
  2719. width:100%;
  2720. }
  2721. #u68388_text {
  2722. border-width:0px;
  2723. white-space:nowrap;
  2724. text-transform:none;
  2725. }
  2726. #u68389_div {
  2727. border-width:0px;
  2728. position:absolute;
  2729. left:0px;
  2730. top:0px;
  2731. width:160px;
  2732. height:40px;
  2733. background:inherit;
  2734. background-color:rgba(255, 255, 255, 0);
  2735. border:none;
  2736. border-top:0px;
  2737. border-right:0px;
  2738. border-bottom:0px;
  2739. border-radius:0px;
  2740. border-top-left-radius:0px;
  2741. border-bottom-left-radius:0px;
  2742. -moz-box-shadow:none;
  2743. -webkit-box-shadow:none;
  2744. box-shadow:none;
  2745. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2746. font-weight:400;
  2747. font-style:normal;
  2748. font-size:14px;
  2749. line-height:40px;
  2750. }
  2751. #u68389 {
  2752. border-width:0px;
  2753. position:absolute;
  2754. left:220px;
  2755. top:593px;
  2756. width:160px;
  2757. height:40px;
  2758. display:flex;
  2759. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2760. font-weight:400;
  2761. font-style:normal;
  2762. font-size:14px;
  2763. line-height:40px;
  2764. }
  2765. #u68389 .text {
  2766. position:absolute;
  2767. align-self:center;
  2768. padding:0px 0px 0px 0px;
  2769. box-sizing:border-box;
  2770. width:100%;
  2771. }
  2772. #u68389_text {
  2773. border-width:0px;
  2774. word-wrap:break-word;
  2775. text-transform:none;
  2776. }
  2777. #u68390_div {
  2778. border-width:0px;
  2779. position:absolute;
  2780. left:0px;
  2781. top:0px;
  2782. width:80px;
  2783. height:40px;
  2784. background:inherit;
  2785. background-color:rgba(255, 255, 255, 0);
  2786. border:none;
  2787. border-top:0px;
  2788. border-right:0px;
  2789. border-bottom:0px;
  2790. border-radius:0px;
  2791. border-top-left-radius:0px;
  2792. border-bottom-left-radius:0px;
  2793. -moz-box-shadow:none;
  2794. -webkit-box-shadow:none;
  2795. box-shadow:none;
  2796. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2797. font-weight:400;
  2798. font-style:normal;
  2799. font-size:14px;
  2800. color:#7F7F7F;
  2801. line-height:40px;
  2802. }
  2803. #u68390 {
  2804. border-width:0px;
  2805. position:absolute;
  2806. left:460px;
  2807. top:593px;
  2808. width:80px;
  2809. height:40px;
  2810. display:flex;
  2811. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2812. font-weight:400;
  2813. font-style:normal;
  2814. font-size:14px;
  2815. color:#7F7F7F;
  2816. line-height:40px;
  2817. }
  2818. #u68390 .text {
  2819. position:absolute;
  2820. align-self:center;
  2821. padding:0px 0px 0px 0px;
  2822. box-sizing:border-box;
  2823. width:100%;
  2824. }
  2825. #u68390_text {
  2826. border-width:0px;
  2827. word-wrap:break-word;
  2828. text-transform:none;
  2829. }
  2830. #u68391_div {
  2831. border-width:0px;
  2832. position:absolute;
  2833. left:0px;
  2834. top:0px;
  2835. width:160px;
  2836. height:40px;
  2837. background:inherit;
  2838. background-color:rgba(255, 255, 255, 0);
  2839. border:none;
  2840. border-top:0px;
  2841. border-right:0px;
  2842. border-bottom:0px;
  2843. border-radius:0px;
  2844. border-top-left-radius:0px;
  2845. border-bottom-left-radius:0px;
  2846. -moz-box-shadow:none;
  2847. -webkit-box-shadow:none;
  2848. box-shadow:none;
  2849. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2850. font-weight:400;
  2851. font-style:normal;
  2852. font-size:14px;
  2853. line-height:40px;
  2854. }
  2855. #u68391 {
  2856. border-width:0px;
  2857. position:absolute;
  2858. left:540px;
  2859. top:593px;
  2860. width:160px;
  2861. height:40px;
  2862. display:flex;
  2863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2864. font-weight:400;
  2865. font-style:normal;
  2866. font-size:14px;
  2867. line-height:40px;
  2868. }
  2869. #u68391 .text {
  2870. position:absolute;
  2871. align-self:center;
  2872. padding:0px 0px 0px 0px;
  2873. box-sizing:border-box;
  2874. width:100%;
  2875. }
  2876. #u68391_text {
  2877. border-width:0px;
  2878. word-wrap:break-word;
  2879. text-transform:none;
  2880. }
  2881. #u68392 {
  2882. border-width:0px;
  2883. position:absolute;
  2884. left:0px;
  2885. top:0px;
  2886. width:0px;
  2887. height:0px;
  2888. }
  2889. #u68393_div {
  2890. border-width:0px;
  2891. position:absolute;
  2892. left:0px;
  2893. top:0px;
  2894. width:1000px;
  2895. height:1139px;
  2896. background:inherit;
  2897. background-color:rgba(242, 242, 242, 1);
  2898. box-sizing:border-box;
  2899. border-width:1px;
  2900. border-style:solid;
  2901. border-color:rgba(242, 242, 242, 1);
  2902. border-radius:0px;
  2903. -moz-box-shadow:none;
  2904. -webkit-box-shadow:none;
  2905. box-shadow:none;
  2906. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2907. font-weight:400;
  2908. font-style:normal;
  2909. font-size:14px;
  2910. color:#AAAAAA;
  2911. text-align:center;
  2912. line-height:30px;
  2913. }
  2914. #u68393 {
  2915. border-width:0px;
  2916. position:absolute;
  2917. left:2211px;
  2918. top:122px;
  2919. width:1000px;
  2920. height:1139px;
  2921. display:flex;
  2922. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2923. font-weight:400;
  2924. font-style:normal;
  2925. font-size:14px;
  2926. color:#AAAAAA;
  2927. text-align:center;
  2928. line-height:30px;
  2929. }
  2930. #u68393 .text {
  2931. position:absolute;
  2932. align-self:center;
  2933. padding:5px 10px 5px 10px;
  2934. box-sizing:border-box;
  2935. width:100%;
  2936. }
  2937. #u68393_text {
  2938. border-width:0px;
  2939. word-wrap:break-word;
  2940. text-transform:none;
  2941. visibility:hidden;
  2942. }
  2943. #u68394_div {
  2944. border-width:0px;
  2945. position:absolute;
  2946. left:0px;
  2947. top:0px;
  2948. width:1000px;
  2949. height:600px;
  2950. background:inherit;
  2951. background-color:rgba(255, 255, 255, 1);
  2952. box-sizing:border-box;
  2953. border-width:1px;
  2954. border-style:solid;
  2955. border-color:rgba(242, 242, 242, 1);
  2956. border-radius:0px;
  2957. -moz-box-shadow:none;
  2958. -webkit-box-shadow:none;
  2959. box-shadow:none;
  2960. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2961. font-weight:400;
  2962. font-style:normal;
  2963. font-size:14px;
  2964. color:#AAAAAA;
  2965. text-align:center;
  2966. line-height:30px;
  2967. }
  2968. #u68394 {
  2969. border-width:0px;
  2970. position:absolute;
  2971. left:2211px;
  2972. top:273px;
  2973. width:1000px;
  2974. height:600px;
  2975. display:flex;
  2976. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2977. font-weight:400;
  2978. font-style:normal;
  2979. font-size:14px;
  2980. color:#AAAAAA;
  2981. text-align:center;
  2982. line-height:30px;
  2983. }
  2984. #u68394 .text {
  2985. position:absolute;
  2986. align-self:center;
  2987. padding:5px 10px 5px 10px;
  2988. box-sizing:border-box;
  2989. width:100%;
  2990. }
  2991. #u68394_text {
  2992. border-width:0px;
  2993. word-wrap:break-word;
  2994. text-transform:none;
  2995. visibility:hidden;
  2996. }
  2997. #u68395_div {
  2998. border-width:0px;
  2999. position:absolute;
  3000. left:0px;
  3001. top:0px;
  3002. width:73px;
  3003. height:40px;
  3004. background:inherit;
  3005. background-color:rgba(255, 255, 255, 0);
  3006. border:none;
  3007. border-left:0px;
  3008. border-top:0px;
  3009. border-right:0px;
  3010. border-radius:0px;
  3011. border-bottom-right-radius:0px;
  3012. border-bottom-left-radius:0px;
  3013. -moz-box-shadow:none;
  3014. -webkit-box-shadow:none;
  3015. box-shadow:none;
  3016. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3017. font-weight:400;
  3018. font-style:normal;
  3019. font-size:18px;
  3020. }
  3021. #u68395 {
  3022. border-width:0px;
  3023. position:absolute;
  3024. left:2251px;
  3025. top:289px;
  3026. width:73px;
  3027. height:40px;
  3028. display:flex;
  3029. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3030. font-weight:400;
  3031. font-style:normal;
  3032. font-size:18px;
  3033. }
  3034. #u68395 .text {
  3035. position:absolute;
  3036. align-self:center;
  3037. padding:0px 0px 0px 0px;
  3038. box-sizing:border-box;
  3039. width:100%;
  3040. }
  3041. #u68395_text {
  3042. border-width:0px;
  3043. white-space:nowrap;
  3044. text-transform:none;
  3045. }
  3046. #u68396_div {
  3047. border-width:0px;
  3048. position:absolute;
  3049. left:0px;
  3050. top:0px;
  3051. width:81px;
  3052. height:30px;
  3053. background:inherit;
  3054. background-color:rgba(255, 255, 255, 0);
  3055. border:none;
  3056. border-top:0px;
  3057. border-right:0px;
  3058. border-bottom:0px;
  3059. border-radius:0px;
  3060. border-top-left-radius:0px;
  3061. border-bottom-left-radius:0px;
  3062. -moz-box-shadow:none;
  3063. -webkit-box-shadow:none;
  3064. box-shadow:none;
  3065. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3066. font-weight:400;
  3067. font-style:normal;
  3068. font-size:14px;
  3069. color:#7F7F7F;
  3070. }
  3071. #u68396 {
  3072. border-width:0px;
  3073. position:absolute;
  3074. left:2251px;
  3075. top:339px;
  3076. width:81px;
  3077. height:30px;
  3078. display:flex;
  3079. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3080. font-weight:400;
  3081. font-style:normal;
  3082. font-size:14px;
  3083. color:#7F7F7F;
  3084. }
  3085. #u68396 .text {
  3086. position:absolute;
  3087. align-self:center;
  3088. padding:5px 10px 5px 0px;
  3089. box-sizing:border-box;
  3090. width:100%;
  3091. }
  3092. #u68396_text {
  3093. border-width:0px;
  3094. white-space:nowrap;
  3095. text-transform:none;
  3096. }
  3097. #u68397_div {
  3098. border-width:0px;
  3099. position:absolute;
  3100. left:0px;
  3101. top:0px;
  3102. width:142px;
  3103. height:30px;
  3104. background:inherit;
  3105. background-color:rgba(255, 255, 255, 0);
  3106. border:none;
  3107. border-top:0px;
  3108. border-right:0px;
  3109. border-bottom:0px;
  3110. border-radius:0px;
  3111. border-top-left-radius:0px;
  3112. border-bottom-left-radius:0px;
  3113. -moz-box-shadow:none;
  3114. -webkit-box-shadow:none;
  3115. box-shadow:none;
  3116. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3117. font-weight:400;
  3118. font-style:normal;
  3119. font-size:14px;
  3120. color:#1890FF;
  3121. }
  3122. #u68397 {
  3123. border-width:0px;
  3124. position:absolute;
  3125. left:2332px;
  3126. top:339px;
  3127. width:142px;
  3128. height:30px;
  3129. display:flex;
  3130. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3131. font-weight:400;
  3132. font-style:normal;
  3133. font-size:14px;
  3134. color:#1890FF;
  3135. }
  3136. #u68397 .text {
  3137. position:absolute;
  3138. align-self:center;
  3139. padding:5px 10px 5px 0px;
  3140. box-sizing:border-box;
  3141. width:100%;
  3142. }
  3143. #u68397_text {
  3144. border-width:0px;
  3145. white-space:nowrap;
  3146. text-transform:none;
  3147. }
  3148. #u68398_div {
  3149. border-width:0px;
  3150. position:absolute;
  3151. left:0px;
  3152. top:0px;
  3153. width:81px;
  3154. height:30px;
  3155. background:inherit;
  3156. background-color:rgba(255, 255, 255, 0);
  3157. border:none;
  3158. border-top:0px;
  3159. border-right:0px;
  3160. border-bottom:0px;
  3161. border-radius:0px;
  3162. border-top-left-radius:0px;
  3163. border-bottom-left-radius:0px;
  3164. -moz-box-shadow:none;
  3165. -webkit-box-shadow:none;
  3166. box-shadow:none;
  3167. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3168. font-weight:400;
  3169. font-style:normal;
  3170. font-size:14px;
  3171. color:#7F7F7F;
  3172. }
  3173. #u68398 {
  3174. border-width:0px;
  3175. position:absolute;
  3176. left:2571px;
  3177. top:339px;
  3178. width:81px;
  3179. height:30px;
  3180. display:flex;
  3181. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3182. font-weight:400;
  3183. font-style:normal;
  3184. font-size:14px;
  3185. color:#7F7F7F;
  3186. }
  3187. #u68398 .text {
  3188. position:absolute;
  3189. align-self:center;
  3190. padding:5px 10px 5px 0px;
  3191. box-sizing:border-box;
  3192. width:100%;
  3193. }
  3194. #u68398_text {
  3195. border-width:0px;
  3196. white-space:nowrap;
  3197. text-transform:none;
  3198. }
  3199. #u68399_div {
  3200. border-width:0px;
  3201. position:absolute;
  3202. left:0px;
  3203. top:0px;
  3204. width:67px;
  3205. height:30px;
  3206. background:inherit;
  3207. background-color:rgba(255, 255, 255, 0);
  3208. border:none;
  3209. border-top:0px;
  3210. border-right:0px;
  3211. border-bottom:0px;
  3212. border-radius:0px;
  3213. border-top-left-radius:0px;
  3214. border-bottom-left-radius:0px;
  3215. -moz-box-shadow:none;
  3216. -webkit-box-shadow:none;
  3217. box-shadow:none;
  3218. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3219. font-weight:400;
  3220. font-style:normal;
  3221. font-size:14px;
  3222. }
  3223. #u68399 {
  3224. border-width:0px;
  3225. position:absolute;
  3226. left:2652px;
  3227. top:339px;
  3228. width:67px;
  3229. height:30px;
  3230. display:flex;
  3231. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3232. font-weight:400;
  3233. font-style:normal;
  3234. font-size:14px;
  3235. }
  3236. #u68399 .text {
  3237. position:absolute;
  3238. align-self:center;
  3239. padding:5px 10px 5px 0px;
  3240. box-sizing:border-box;
  3241. width:100%;
  3242. }
  3243. #u68399_text {
  3244. border-width:0px;
  3245. white-space:nowrap;
  3246. text-transform:none;
  3247. }
  3248. #u68400_div {
  3249. border-width:0px;
  3250. position:absolute;
  3251. left:0px;
  3252. top:0px;
  3253. width:81px;
  3254. height:30px;
  3255. background:inherit;
  3256. background-color:rgba(255, 255, 255, 0);
  3257. border:none;
  3258. border-top:0px;
  3259. border-right:0px;
  3260. border-bottom:0px;
  3261. border-radius:0px;
  3262. border-top-left-radius:0px;
  3263. border-bottom-left-radius:0px;
  3264. -moz-box-shadow:none;
  3265. -webkit-box-shadow:none;
  3266. box-shadow:none;
  3267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3268. font-weight:400;
  3269. font-style:normal;
  3270. font-size:14px;
  3271. color:#7F7F7F;
  3272. }
  3273. #u68400 {
  3274. border-width:0px;
  3275. position:absolute;
  3276. left:2868px;
  3277. top:339px;
  3278. width:81px;
  3279. height:30px;
  3280. display:flex;
  3281. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3282. font-weight:400;
  3283. font-style:normal;
  3284. font-size:14px;
  3285. color:#7F7F7F;
  3286. }
  3287. #u68400 .text {
  3288. position:absolute;
  3289. align-self:center;
  3290. padding:5px 10px 5px 0px;
  3291. box-sizing:border-box;
  3292. width:100%;
  3293. }
  3294. #u68400_text {
  3295. border-width:0px;
  3296. white-space:nowrap;
  3297. text-transform:none;
  3298. }
  3299. #u68401_div {
  3300. border-width:0px;
  3301. position:absolute;
  3302. left:0px;
  3303. top:0px;
  3304. width:53px;
  3305. height:30px;
  3306. background:inherit;
  3307. background-color:rgba(255, 255, 255, 0);
  3308. border:none;
  3309. border-top:0px;
  3310. border-right:0px;
  3311. border-bottom:0px;
  3312. border-radius:0px;
  3313. border-top-left-radius:0px;
  3314. border-bottom-left-radius:0px;
  3315. -moz-box-shadow:none;
  3316. -webkit-box-shadow:none;
  3317. box-shadow:none;
  3318. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3319. font-weight:400;
  3320. font-style:normal;
  3321. font-size:14px;
  3322. }
  3323. #u68401 {
  3324. border-width:0px;
  3325. position:absolute;
  3326. left:2949px;
  3327. top:339px;
  3328. width:53px;
  3329. height:30px;
  3330. display:flex;
  3331. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3332. font-weight:400;
  3333. font-style:normal;
  3334. font-size:14px;
  3335. }
  3336. #u68401 .text {
  3337. position:absolute;
  3338. align-self:center;
  3339. padding:5px 10px 5px 0px;
  3340. box-sizing:border-box;
  3341. width:100%;
  3342. }
  3343. #u68401_text {
  3344. border-width:0px;
  3345. white-space:nowrap;
  3346. text-transform:none;
  3347. }
  3348. #u68402_div {
  3349. border-width:0px;
  3350. position:absolute;
  3351. left:0px;
  3352. top:0px;
  3353. width:81px;
  3354. height:30px;
  3355. background:inherit;
  3356. background-color:rgba(255, 255, 255, 0);
  3357. border:none;
  3358. border-top:0px;
  3359. border-right:0px;
  3360. border-bottom:0px;
  3361. border-radius:0px;
  3362. border-top-left-radius:0px;
  3363. border-bottom-left-radius:0px;
  3364. -moz-box-shadow:none;
  3365. -webkit-box-shadow:none;
  3366. box-shadow:none;
  3367. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3368. font-weight:400;
  3369. font-style:normal;
  3370. font-size:14px;
  3371. color:#7F7F7F;
  3372. }
  3373. #u68402 {
  3374. border-width:0px;
  3375. position:absolute;
  3376. left:2251px;
  3377. top:379px;
  3378. width:81px;
  3379. height:30px;
  3380. display:flex;
  3381. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3382. font-weight:400;
  3383. font-style:normal;
  3384. font-size:14px;
  3385. color:#7F7F7F;
  3386. }
  3387. #u68402 .text {
  3388. position:absolute;
  3389. align-self:center;
  3390. padding:5px 10px 5px 0px;
  3391. box-sizing:border-box;
  3392. width:100%;
  3393. }
  3394. #u68402_text {
  3395. border-width:0px;
  3396. white-space:nowrap;
  3397. text-transform:none;
  3398. }
  3399. #u68403_div {
  3400. border-width:0px;
  3401. position:absolute;
  3402. left:0px;
  3403. top:0px;
  3404. width:81px;
  3405. height:30px;
  3406. background:inherit;
  3407. background-color:rgba(255, 255, 255, 0);
  3408. border:none;
  3409. border-top:0px;
  3410. border-right:0px;
  3411. border-bottom:0px;
  3412. border-radius:0px;
  3413. border-top-left-radius:0px;
  3414. border-bottom-left-radius:0px;
  3415. -moz-box-shadow:none;
  3416. -webkit-box-shadow:none;
  3417. box-shadow:none;
  3418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3419. font-weight:400;
  3420. font-style:normal;
  3421. font-size:14px;
  3422. color:#7F7F7F;
  3423. }
  3424. #u68403 {
  3425. border-width:0px;
  3426. position:absolute;
  3427. left:2571px;
  3428. top:379px;
  3429. width:81px;
  3430. height:30px;
  3431. display:flex;
  3432. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3433. font-weight:400;
  3434. font-style:normal;
  3435. font-size:14px;
  3436. color:#7F7F7F;
  3437. }
  3438. #u68403 .text {
  3439. position:absolute;
  3440. align-self:center;
  3441. padding:5px 10px 5px 0px;
  3442. box-sizing:border-box;
  3443. width:100%;
  3444. }
  3445. #u68403_text {
  3446. border-width:0px;
  3447. white-space:nowrap;
  3448. text-transform:none;
  3449. }
  3450. #u68404_div {
  3451. border-width:0px;
  3452. position:absolute;
  3453. left:0px;
  3454. top:0px;
  3455. width:67px;
  3456. height:30px;
  3457. background:inherit;
  3458. background-color:rgba(255, 255, 255, 0);
  3459. border:none;
  3460. border-top:0px;
  3461. border-right:0px;
  3462. border-bottom:0px;
  3463. border-radius:0px;
  3464. border-top-left-radius:0px;
  3465. border-bottom-left-radius:0px;
  3466. -moz-box-shadow:none;
  3467. -webkit-box-shadow:none;
  3468. box-shadow:none;
  3469. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3470. font-weight:400;
  3471. font-style:normal;
  3472. font-size:14px;
  3473. }
  3474. #u68404 {
  3475. border-width:0px;
  3476. position:absolute;
  3477. left:2652px;
  3478. top:379px;
  3479. width:67px;
  3480. height:30px;
  3481. display:flex;
  3482. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3483. font-weight:400;
  3484. font-style:normal;
  3485. font-size:14px;
  3486. }
  3487. #u68404 .text {
  3488. position:absolute;
  3489. align-self:center;
  3490. padding:5px 10px 5px 0px;
  3491. box-sizing:border-box;
  3492. width:100%;
  3493. }
  3494. #u68404_text {
  3495. border-width:0px;
  3496. white-space:nowrap;
  3497. text-transform:none;
  3498. }
  3499. #u68405_div {
  3500. border-width:0px;
  3501. position:absolute;
  3502. left:0px;
  3503. top:0px;
  3504. width:67px;
  3505. height:30px;
  3506. background:inherit;
  3507. background-color:rgba(255, 255, 255, 0);
  3508. border:none;
  3509. border-top:0px;
  3510. border-right:0px;
  3511. border-bottom:0px;
  3512. border-radius:0px;
  3513. border-top-left-radius:0px;
  3514. border-bottom-left-radius:0px;
  3515. -moz-box-shadow:none;
  3516. -webkit-box-shadow:none;
  3517. box-shadow:none;
  3518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3519. font-weight:400;
  3520. font-style:normal;
  3521. font-size:14px;
  3522. color:#7F7F7F;
  3523. }
  3524. #u68405 {
  3525. border-width:0px;
  3526. position:absolute;
  3527. left:2868px;
  3528. top:379px;
  3529. width:67px;
  3530. height:30px;
  3531. display:flex;
  3532. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3533. font-weight:400;
  3534. font-style:normal;
  3535. font-size:14px;
  3536. color:#7F7F7F;
  3537. }
  3538. #u68405 .text {
  3539. position:absolute;
  3540. align-self:center;
  3541. padding:5px 10px 5px 0px;
  3542. box-sizing:border-box;
  3543. width:100%;
  3544. }
  3545. #u68405_text {
  3546. border-width:0px;
  3547. white-space:nowrap;
  3548. text-transform:none;
  3549. }
  3550. #u68406_div {
  3551. border-width:0px;
  3552. position:absolute;
  3553. left:0px;
  3554. top:0px;
  3555. width:85px;
  3556. height:30px;
  3557. background:inherit;
  3558. background-color:rgba(255, 255, 255, 0);
  3559. border:none;
  3560. border-top:0px;
  3561. border-right:0px;
  3562. border-bottom:0px;
  3563. border-radius:0px;
  3564. border-top-left-radius:0px;
  3565. border-bottom-left-radius:0px;
  3566. -moz-box-shadow:none;
  3567. -webkit-box-shadow:none;
  3568. box-shadow:none;
  3569. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3570. font-weight:400;
  3571. font-style:normal;
  3572. font-size:14px;
  3573. }
  3574. #u68406 {
  3575. border-width:0px;
  3576. position:absolute;
  3577. left:2949px;
  3578. top:379px;
  3579. width:85px;
  3580. height:30px;
  3581. display:flex;
  3582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3583. font-weight:400;
  3584. font-style:normal;
  3585. font-size:14px;
  3586. }
  3587. #u68406 .text {
  3588. position:absolute;
  3589. align-self:center;
  3590. padding:5px 10px 5px 0px;
  3591. box-sizing:border-box;
  3592. width:100%;
  3593. }
  3594. #u68406_text {
  3595. border-width:0px;
  3596. white-space:nowrap;
  3597. text-transform:none;
  3598. }
  3599. #u68407_div {
  3600. border-width:0px;
  3601. position:absolute;
  3602. left:0px;
  3603. top:0px;
  3604. width:183px;
  3605. height:30px;
  3606. background:inherit;
  3607. background-color:rgba(255, 255, 255, 0);
  3608. border:none;
  3609. border-top:0px;
  3610. border-right:0px;
  3611. border-bottom:0px;
  3612. border-radius:0px;
  3613. border-top-left-radius:0px;
  3614. border-bottom-left-radius:0px;
  3615. -moz-box-shadow:none;
  3616. -webkit-box-shadow:none;
  3617. box-shadow:none;
  3618. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3619. font-weight:400;
  3620. font-style:normal;
  3621. font-size:14px;
  3622. }
  3623. #u68407 {
  3624. border-width:0px;
  3625. position:absolute;
  3626. left:2332px;
  3627. top:379px;
  3628. width:183px;
  3629. height:30px;
  3630. display:flex;
  3631. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3632. font-weight:400;
  3633. font-style:normal;
  3634. font-size:14px;
  3635. }
  3636. #u68407 .text {
  3637. position:absolute;
  3638. align-self:center;
  3639. padding:5px 10px 5px 0px;
  3640. box-sizing:border-box;
  3641. width:100%;
  3642. }
  3643. #u68407_text {
  3644. border-width:0px;
  3645. white-space:nowrap;
  3646. text-transform:none;
  3647. }
  3648. #u68408_div {
  3649. border-width:0px;
  3650. position:absolute;
  3651. left:0px;
  3652. top:0px;
  3653. width:81px;
  3654. height:30px;
  3655. background:inherit;
  3656. background-color:rgba(255, 255, 255, 0);
  3657. border:none;
  3658. border-top:0px;
  3659. border-right:0px;
  3660. border-bottom:0px;
  3661. border-radius:0px;
  3662. border-top-left-radius:0px;
  3663. border-bottom-left-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:#7F7F7F;
  3672. }
  3673. #u68408 {
  3674. border-width:0px;
  3675. position:absolute;
  3676. left:2251px;
  3677. top:419px;
  3678. width:81px;
  3679. height:30px;
  3680. display:flex;
  3681. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3682. font-weight:400;
  3683. font-style:normal;
  3684. font-size:14px;
  3685. color:#7F7F7F;
  3686. }
  3687. #u68408 .text {
  3688. position:absolute;
  3689. align-self:center;
  3690. padding:5px 10px 5px 0px;
  3691. box-sizing:border-box;
  3692. width:100%;
  3693. }
  3694. #u68408_text {
  3695. border-width:0px;
  3696. white-space:nowrap;
  3697. text-transform:none;
  3698. }
  3699. #u68409_div {
  3700. border-width:0px;
  3701. position:absolute;
  3702. left:0px;
  3703. top:0px;
  3704. width:126px;
  3705. height:30px;
  3706. background:inherit;
  3707. background-color:rgba(255, 255, 255, 0);
  3708. border:none;
  3709. border-top:0px;
  3710. border-right:0px;
  3711. border-bottom:0px;
  3712. border-radius:0px;
  3713. border-top-left-radius:0px;
  3714. border-bottom-left-radius:0px;
  3715. -moz-box-shadow:none;
  3716. -webkit-box-shadow:none;
  3717. box-shadow:none;
  3718. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3719. font-weight:400;
  3720. font-style:normal;
  3721. font-size:14px;
  3722. }
  3723. #u68409 {
  3724. border-width:0px;
  3725. position:absolute;
  3726. left:2332px;
  3727. top:419px;
  3728. width:126px;
  3729. height:30px;
  3730. display:flex;
  3731. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3732. font-weight:400;
  3733. font-style:normal;
  3734. font-size:14px;
  3735. }
  3736. #u68409 .text {
  3737. position:absolute;
  3738. align-self:center;
  3739. padding:5px 10px 5px 0px;
  3740. box-sizing:border-box;
  3741. width:100%;
  3742. }
  3743. #u68409_text {
  3744. border-width:0px;
  3745. white-space:nowrap;
  3746. text-transform:none;
  3747. }
  3748. #u68410_div {
  3749. border-width:0px;
  3750. position:absolute;
  3751. left:0px;
  3752. top:0px;
  3753. width:81px;
  3754. height:30px;
  3755. background:inherit;
  3756. background-color:rgba(255, 255, 255, 0);
  3757. border:none;
  3758. border-top:0px;
  3759. border-right:0px;
  3760. border-bottom:0px;
  3761. border-radius:0px;
  3762. border-top-left-radius:0px;
  3763. border-bottom-left-radius:0px;
  3764. -moz-box-shadow:none;
  3765. -webkit-box-shadow:none;
  3766. box-shadow:none;
  3767. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3768. font-weight:400;
  3769. font-style:normal;
  3770. font-size:14px;
  3771. color:#7F7F7F;
  3772. }
  3773. #u68410 {
  3774. border-width:0px;
  3775. position:absolute;
  3776. left:2251px;
  3777. top:459px;
  3778. width:81px;
  3779. height:30px;
  3780. display:flex;
  3781. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3782. font-weight:400;
  3783. font-style:normal;
  3784. font-size:14px;
  3785. color:#7F7F7F;
  3786. }
  3787. #u68410 .text {
  3788. position:absolute;
  3789. align-self:center;
  3790. padding:5px 10px 5px 0px;
  3791. box-sizing:border-box;
  3792. width:100%;
  3793. }
  3794. #u68410_text {
  3795. border-width:0px;
  3796. white-space:nowrap;
  3797. text-transform:none;
  3798. }
  3799. #u68411_div {
  3800. border-width:0px;
  3801. position:absolute;
  3802. left:0px;
  3803. top:0px;
  3804. width:263px;
  3805. height:30px;
  3806. background:inherit;
  3807. background-color:rgba(255, 255, 255, 0);
  3808. border:none;
  3809. border-top:0px;
  3810. border-right:0px;
  3811. border-bottom:0px;
  3812. border-radius:0px;
  3813. border-top-left-radius:0px;
  3814. border-bottom-left-radius:0px;
  3815. -moz-box-shadow:none;
  3816. -webkit-box-shadow:none;
  3817. box-shadow:none;
  3818. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3819. font-weight:400;
  3820. font-style:normal;
  3821. font-size:14px;
  3822. }
  3823. #u68411 {
  3824. border-width:0px;
  3825. position:absolute;
  3826. left:2332px;
  3827. top:459px;
  3828. width:263px;
  3829. height:30px;
  3830. display:flex;
  3831. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3832. font-weight:400;
  3833. font-style:normal;
  3834. font-size:14px;
  3835. }
  3836. #u68411 .text {
  3837. position:absolute;
  3838. align-self:center;
  3839. padding:5px 10px 5px 0px;
  3840. box-sizing:border-box;
  3841. width:100%;
  3842. }
  3843. #u68411_text {
  3844. border-width:0px;
  3845. white-space:nowrap;
  3846. text-transform:none;
  3847. }
  3848. #u68412_div {
  3849. border-width:0px;
  3850. position:absolute;
  3851. left:0px;
  3852. top:0px;
  3853. width:81px;
  3854. height:30px;
  3855. background:inherit;
  3856. background-color:rgba(255, 255, 255, 0);
  3857. border:none;
  3858. border-top:0px;
  3859. border-right:0px;
  3860. border-bottom:0px;
  3861. border-radius:0px;
  3862. border-top-left-radius:0px;
  3863. border-bottom-left-radius:0px;
  3864. -moz-box-shadow:none;
  3865. -webkit-box-shadow:none;
  3866. box-shadow:none;
  3867. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3868. font-weight:400;
  3869. font-style:normal;
  3870. font-size:14px;
  3871. color:#7F7F7F;
  3872. }
  3873. #u68412 {
  3874. border-width:0px;
  3875. position:absolute;
  3876. left:2571px;
  3877. top:419px;
  3878. width:81px;
  3879. height:30px;
  3880. display:flex;
  3881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3882. font-weight:400;
  3883. font-style:normal;
  3884. font-size:14px;
  3885. color:#7F7F7F;
  3886. }
  3887. #u68412 .text {
  3888. position:absolute;
  3889. align-self:center;
  3890. padding:5px 10px 5px 0px;
  3891. box-sizing:border-box;
  3892. width:100%;
  3893. }
  3894. #u68412_text {
  3895. border-width:0px;
  3896. white-space:nowrap;
  3897. text-transform:none;
  3898. }
  3899. #u68413_div {
  3900. border-width:0px;
  3901. position:absolute;
  3902. left:0px;
  3903. top:0px;
  3904. width:53px;
  3905. height:30px;
  3906. background:inherit;
  3907. background-color:rgba(255, 255, 255, 0);
  3908. border:none;
  3909. border-top:0px;
  3910. border-right:0px;
  3911. border-bottom:0px;
  3912. border-radius:0px;
  3913. border-top-left-radius:0px;
  3914. border-bottom-left-radius:0px;
  3915. -moz-box-shadow:none;
  3916. -webkit-box-shadow:none;
  3917. box-shadow:none;
  3918. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3919. font-weight:400;
  3920. font-style:normal;
  3921. font-size:14px;
  3922. color:#1890FF;
  3923. }
  3924. #u68413 {
  3925. border-width:0px;
  3926. position:absolute;
  3927. left:2652px;
  3928. top:419px;
  3929. width:53px;
  3930. height:30px;
  3931. display:flex;
  3932. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3933. font-weight:400;
  3934. font-style:normal;
  3935. font-size:14px;
  3936. color:#1890FF;
  3937. }
  3938. #u68413 .text {
  3939. position:absolute;
  3940. align-self:center;
  3941. padding:5px 10px 5px 0px;
  3942. box-sizing:border-box;
  3943. width:100%;
  3944. }
  3945. #u68413_text {
  3946. border-width:0px;
  3947. white-space:nowrap;
  3948. text-transform:none;
  3949. }
  3950. #u68414_img {
  3951. border-width:0px;
  3952. position:absolute;
  3953. left:0px;
  3954. top:0px;
  3955. width:942px;
  3956. height:2px;
  3957. }
  3958. #u68414 {
  3959. border-width:0px;
  3960. position:absolute;
  3961. left:2251px;
  3962. top:507px;
  3963. width:941px;
  3964. height:1px;
  3965. display:flex;
  3966. }
  3967. #u68414 .text {
  3968. position:absolute;
  3969. align-self:center;
  3970. padding:2px 2px 2px 2px;
  3971. box-sizing:border-box;
  3972. width:100%;
  3973. }
  3974. #u68414_text {
  3975. border-width:0px;
  3976. word-wrap:break-word;
  3977. text-transform:none;
  3978. visibility:hidden;
  3979. }
  3980. #u68415_div {
  3981. border-width:0px;
  3982. position:absolute;
  3983. left:0px;
  3984. top:0px;
  3985. width:1000px;
  3986. height:200px;
  3987. background:inherit;
  3988. background-color:rgba(255, 255, 255, 1);
  3989. box-sizing:border-box;
  3990. border-width:1px;
  3991. border-style:solid;
  3992. border-color:rgba(215, 215, 215, 1);
  3993. border-radius:0px;
  3994. -moz-box-shadow:none;
  3995. -webkit-box-shadow:none;
  3996. box-shadow:none;
  3997. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3998. font-weight:400;
  3999. font-style:normal;
  4000. font-size:14px;
  4001. color:#AAAAAA;
  4002. text-align:center;
  4003. line-height:30px;
  4004. }
  4005. #u68415 {
  4006. border-width:0px;
  4007. position:absolute;
  4008. left:2212px;
  4009. top:62px;
  4010. width:1000px;
  4011. height:200px;
  4012. display:flex;
  4013. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4014. font-weight:400;
  4015. font-style:normal;
  4016. font-size:14px;
  4017. color:#AAAAAA;
  4018. text-align:center;
  4019. line-height:30px;
  4020. }
  4021. #u68415 .text {
  4022. position:absolute;
  4023. align-self:center;
  4024. padding:5px 10px 5px 10px;
  4025. box-sizing:border-box;
  4026. width:100%;
  4027. }
  4028. #u68415_text {
  4029. border-width:0px;
  4030. word-wrap:break-word;
  4031. text-transform:none;
  4032. visibility:hidden;
  4033. }
  4034. #u68416_div {
  4035. border-width:0px;
  4036. position:absolute;
  4037. left:0px;
  4038. top:0px;
  4039. width:155px;
  4040. height:35px;
  4041. background:inherit;
  4042. background-color:rgba(255, 255, 255, 0);
  4043. border:none;
  4044. border-top:0px;
  4045. border-right:0px;
  4046. border-bottom:0px;
  4047. border-radius:0px;
  4048. border-top-left-radius:0px;
  4049. border-bottom-left-radius:0px;
  4050. -moz-box-shadow:none;
  4051. -webkit-box-shadow:none;
  4052. box-shadow:none;
  4053. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4054. font-weight:500;
  4055. font-style:normal;
  4056. font-size:18px;
  4057. }
  4058. #u68416 {
  4059. border-width:0px;
  4060. position:absolute;
  4061. left:2232px;
  4062. top:80px;
  4063. width:155px;
  4064. height:35px;
  4065. display:flex;
  4066. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4067. font-weight:500;
  4068. font-style:normal;
  4069. font-size:18px;
  4070. }
  4071. #u68416 .text {
  4072. position:absolute;
  4073. align-self:center;
  4074. padding:5px 10px 5px 0px;
  4075. box-sizing:border-box;
  4076. width:100%;
  4077. }
  4078. #u68416_text {
  4079. border-width:0px;
  4080. white-space:nowrap;
  4081. text-transform:none;
  4082. }
  4083. #u68417_div {
  4084. border-width:0px;
  4085. position:absolute;
  4086. left:0px;
  4087. top:0px;
  4088. width:146px;
  4089. height:43px;
  4090. background:inherit;
  4091. background-color:rgba(255, 255, 255, 0);
  4092. border:none;
  4093. border-top:0px;
  4094. border-right:0px;
  4095. border-bottom:0px;
  4096. border-radius:0px;
  4097. border-top-left-radius:0px;
  4098. border-bottom-left-radius:0px;
  4099. -moz-box-shadow:none;
  4100. -webkit-box-shadow:none;
  4101. box-shadow:none;
  4102. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4103. font-weight:500;
  4104. font-style:normal;
  4105. font-size:24px;
  4106. }
  4107. #u68417 {
  4108. border-width:0px;
  4109. position:absolute;
  4110. left:2242px;
  4111. top:131px;
  4112. width:146px;
  4113. height:43px;
  4114. display:flex;
  4115. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4116. font-weight:500;
  4117. font-style:normal;
  4118. font-size:24px;
  4119. }
  4120. #u68417 .text {
  4121. position:absolute;
  4122. align-self:center;
  4123. padding:5px 10px 5px 0px;
  4124. box-sizing:border-box;
  4125. width:100%;
  4126. }
  4127. #u68417_text {
  4128. border-width:0px;
  4129. white-space:nowrap;
  4130. text-transform:none;
  4131. }
  4132. #u68418_img {
  4133. border-width:0px;
  4134. position:absolute;
  4135. left:0px;
  4136. top:0px;
  4137. width:108px;
  4138. height:108px;
  4139. }
  4140. #u68418 {
  4141. border-width:0px;
  4142. position:absolute;
  4143. left:3062px;
  4144. top:132px;
  4145. width:108px;
  4146. height:108px;
  4147. display:flex;
  4148. -webkit-transform:rotate(315deg);
  4149. -moz-transform:rotate(315deg);
  4150. -ms-transform:rotate(315deg);
  4151. transform:rotate(315deg);
  4152. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4153. font-weight:400;
  4154. font-style:normal;
  4155. font-size:28px;
  4156. color:#F59A23;
  4157. }
  4158. #u68418 .text {
  4159. position:absolute;
  4160. align-self:center;
  4161. padding:2px 2px 2px 2px;
  4162. box-sizing:border-box;
  4163. width:100%;
  4164. }
  4165. #u68418_text {
  4166. border-width:0px;
  4167. word-wrap:break-word;
  4168. text-transform:none;
  4169. }
  4170. #u68419_div {
  4171. border-width:0px;
  4172. position:absolute;
  4173. left:0px;
  4174. top:0px;
  4175. width:325px;
  4176. height:60px;
  4177. background:inherit;
  4178. background-color:rgba(255, 255, 255, 0);
  4179. border:none;
  4180. border-left:0px;
  4181. border-top:0px;
  4182. border-right:0px;
  4183. border-radius:0px;
  4184. border-bottom-right-radius:0px;
  4185. border-bottom-left-radius:0px;
  4186. -moz-box-shadow:none;
  4187. -webkit-box-shadow:none;
  4188. box-shadow:none;
  4189. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4190. font-weight:400;
  4191. font-style:normal;
  4192. font-size:14px;
  4193. line-height:30px;
  4194. }
  4195. #u68419 {
  4196. border-width:0px;
  4197. position:absolute;
  4198. left:2242px;
  4199. top:186px;
  4200. width:325px;
  4201. height:60px;
  4202. display:flex;
  4203. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4204. font-weight:400;
  4205. font-style:normal;
  4206. font-size:14px;
  4207. line-height:30px;
  4208. }
  4209. #u68419 .text {
  4210. position:absolute;
  4211. align-self:flex-start;
  4212. padding:0px 0px 0px 0px;
  4213. box-sizing:border-box;
  4214. width:100%;
  4215. }
  4216. #u68419_text {
  4217. border-width:0px;
  4218. word-wrap:break-word;
  4219. text-transform:none;
  4220. }
  4221. #u68420_img {
  4222. border-width:0px;
  4223. position:absolute;
  4224. left:0px;
  4225. top:0px;
  4226. width:17px;
  4227. height:17px;
  4228. }
  4229. #u68420 {
  4230. border-width:0px;
  4231. position:absolute;
  4232. left:3184px;
  4233. top:84px;
  4234. width:17px;
  4235. height:17px;
  4236. display:flex;
  4237. }
  4238. #u68420 .text {
  4239. position:absolute;
  4240. align-self:center;
  4241. padding:2px 2px 2px 2px;
  4242. box-sizing:border-box;
  4243. width:100%;
  4244. }
  4245. #u68420_text {
  4246. border-width:0px;
  4247. word-wrap:break-word;
  4248. text-transform:none;
  4249. visibility:hidden;
  4250. }
  4251. #u68421_div {
  4252. border-width:0px;
  4253. position:absolute;
  4254. left:0px;
  4255. top:0px;
  4256. width:1000px;
  4257. height:378px;
  4258. background:inherit;
  4259. background-color:rgba(255, 255, 255, 1);
  4260. box-sizing:border-box;
  4261. border-width:1px;
  4262. border-style:solid;
  4263. border-color:rgba(242, 242, 242, 1);
  4264. border-radius:0px;
  4265. -moz-box-shadow:none;
  4266. -webkit-box-shadow:none;
  4267. box-shadow:none;
  4268. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4269. font-weight:400;
  4270. font-style:normal;
  4271. font-size:14px;
  4272. color:#AAAAAA;
  4273. text-align:center;
  4274. line-height:30px;
  4275. }
  4276. #u68421 {
  4277. border-width:0px;
  4278. position:absolute;
  4279. left:2211px;
  4280. top:883px;
  4281. width:1000px;
  4282. height:378px;
  4283. display:flex;
  4284. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4285. font-weight:400;
  4286. font-style:normal;
  4287. font-size:14px;
  4288. color:#AAAAAA;
  4289. text-align:center;
  4290. line-height:30px;
  4291. }
  4292. #u68421 .text {
  4293. position:absolute;
  4294. align-self:center;
  4295. padding:5px 10px 5px 10px;
  4296. box-sizing:border-box;
  4297. width:100%;
  4298. }
  4299. #u68421_text {
  4300. border-width:0px;
  4301. word-wrap:break-word;
  4302. text-transform:none;
  4303. visibility:hidden;
  4304. }
  4305. #u68422_div {
  4306. border-width:0px;
  4307. position:absolute;
  4308. left:0px;
  4309. top:0px;
  4310. width:73px;
  4311. height:40px;
  4312. background:inherit;
  4313. background-color:rgba(255, 255, 255, 0);
  4314. border:none;
  4315. border-left:0px;
  4316. border-top:0px;
  4317. border-right:0px;
  4318. border-radius:0px;
  4319. border-bottom-right-radius:0px;
  4320. border-bottom-left-radius:0px;
  4321. -moz-box-shadow:none;
  4322. -webkit-box-shadow:none;
  4323. box-shadow:none;
  4324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4325. font-weight:400;
  4326. font-style:normal;
  4327. font-size:18px;
  4328. }
  4329. #u68422 {
  4330. border-width:0px;
  4331. position:absolute;
  4332. left:2251px;
  4333. top:899px;
  4334. width:73px;
  4335. height:40px;
  4336. display:flex;
  4337. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4338. font-weight:400;
  4339. font-style:normal;
  4340. font-size:18px;
  4341. }
  4342. #u68422 .text {
  4343. position:absolute;
  4344. align-self:center;
  4345. padding:0px 0px 0px 0px;
  4346. box-sizing:border-box;
  4347. width:100%;
  4348. }
  4349. #u68422_text {
  4350. border-width:0px;
  4351. white-space:nowrap;
  4352. text-transform:none;
  4353. }
  4354. #u68423_div {
  4355. border-width:0px;
  4356. position:absolute;
  4357. left:0px;
  4358. top:0px;
  4359. width:81px;
  4360. height:30px;
  4361. background:inherit;
  4362. background-color:rgba(255, 255, 255, 0);
  4363. border:none;
  4364. border-top:0px;
  4365. border-right:0px;
  4366. border-bottom:0px;
  4367. border-radius:0px;
  4368. border-top-left-radius:0px;
  4369. border-bottom-left-radius:0px;
  4370. -moz-box-shadow:none;
  4371. -webkit-box-shadow:none;
  4372. box-shadow:none;
  4373. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4374. font-weight:400;
  4375. font-style:normal;
  4376. font-size:14px;
  4377. color:#7F7F7F;
  4378. }
  4379. #u68423 {
  4380. border-width:0px;
  4381. position:absolute;
  4382. left:2251px;
  4383. top:949px;
  4384. width:81px;
  4385. height:30px;
  4386. display:flex;
  4387. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4388. font-weight:400;
  4389. font-style:normal;
  4390. font-size:14px;
  4391. color:#7F7F7F;
  4392. }
  4393. #u68423 .text {
  4394. position:absolute;
  4395. align-self:center;
  4396. padding:5px 10px 5px 0px;
  4397. box-sizing:border-box;
  4398. width:100%;
  4399. }
  4400. #u68423_text {
  4401. border-width:0px;
  4402. white-space:nowrap;
  4403. text-transform:none;
  4404. }
  4405. #u68424 {
  4406. border-width:0px;
  4407. position:absolute;
  4408. left:0px;
  4409. top:0px;
  4410. width:0px;
  4411. height:0px;
  4412. }
  4413. #u68425_div {
  4414. border-width:0px;
  4415. position:absolute;
  4416. left:0px;
  4417. top:0px;
  4418. width:1000px;
  4419. height:60px;
  4420. background:inherit;
  4421. background-color:rgba(255, 255, 255, 1);
  4422. box-sizing:border-box;
  4423. border-width:1px;
  4424. border-style:solid;
  4425. border-color:rgba(215, 215, 215, 1);
  4426. border-radius:0px;
  4427. -moz-box-shadow:none;
  4428. -webkit-box-shadow:none;
  4429. box-shadow:none;
  4430. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4431. font-weight:400;
  4432. font-style:normal;
  4433. font-size:14px;
  4434. color:#AAAAAA;
  4435. text-align:center;
  4436. line-height:30px;
  4437. }
  4438. #u68425 {
  4439. border-width:0px;
  4440. position:absolute;
  4441. left:2211px;
  4442. top:1201px;
  4443. width:1000px;
  4444. height:60px;
  4445. display:flex;
  4446. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4447. font-weight:400;
  4448. font-style:normal;
  4449. font-size:14px;
  4450. color:#AAAAAA;
  4451. text-align:center;
  4452. line-height:30px;
  4453. }
  4454. #u68425 .text {
  4455. position:absolute;
  4456. align-self:center;
  4457. padding:5px 10px 5px 10px;
  4458. box-sizing:border-box;
  4459. width:100%;
  4460. }
  4461. #u68425_text {
  4462. border-width:0px;
  4463. word-wrap:break-word;
  4464. text-transform:none;
  4465. visibility:hidden;
  4466. }
  4467. #u68426_div {
  4468. border-width:0px;
  4469. position:absolute;
  4470. left:0px;
  4471. top:0px;
  4472. width:80px;
  4473. height:30px;
  4474. background:inherit;
  4475. background-color:rgba(255, 255, 255, 1);
  4476. box-sizing:border-box;
  4477. border-width:1px;
  4478. border-style:solid;
  4479. border-color:rgba(170, 170, 170, 1);
  4480. border-radius:4px;
  4481. -moz-box-shadow:none;
  4482. -webkit-box-shadow:none;
  4483. box-shadow:none;
  4484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4485. font-weight:400;
  4486. font-style:normal;
  4487. font-size:14px;
  4488. }
  4489. #u68426 {
  4490. border-width:0px;
  4491. position:absolute;
  4492. left:3112px;
  4493. top:1216px;
  4494. width:80px;
  4495. height:30px;
  4496. display:flex;
  4497. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4498. font-weight:400;
  4499. font-style:normal;
  4500. font-size:14px;
  4501. }
  4502. #u68426 .text {
  4503. position:absolute;
  4504. align-self:center;
  4505. padding:2px 2px 2px 2px;
  4506. box-sizing:border-box;
  4507. width:100%;
  4508. }
  4509. #u68426_text {
  4510. border-width:0px;
  4511. word-wrap:break-word;
  4512. text-transform:none;
  4513. }
  4514. #u68427_div {
  4515. border-width:0px;
  4516. position:absolute;
  4517. left:0px;
  4518. top:0px;
  4519. width:81px;
  4520. height:50px;
  4521. background:inherit;
  4522. background-color:rgba(255, 255, 255, 0);
  4523. border:none;
  4524. border-top:0px;
  4525. border-right:0px;
  4526. border-bottom:0px;
  4527. border-radius:0px;
  4528. border-top-left-radius:0px;
  4529. border-bottom-left-radius:0px;
  4530. -moz-box-shadow:none;
  4531. -webkit-box-shadow:none;
  4532. box-shadow:none;
  4533. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4534. font-weight:400;
  4535. font-style:normal;
  4536. font-size:14px;
  4537. line-height:40px;
  4538. }
  4539. #u68427 {
  4540. border-width:0px;
  4541. position:absolute;
  4542. left:2332px;
  4543. top:939px;
  4544. width:81px;
  4545. height:50px;
  4546. display:flex;
  4547. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4548. font-weight:400;
  4549. font-style:normal;
  4550. font-size:14px;
  4551. line-height:40px;
  4552. }
  4553. #u68427 .text {
  4554. position:absolute;
  4555. align-self:center;
  4556. padding:5px 10px 5px 0px;
  4557. box-sizing:border-box;
  4558. width:100%;
  4559. }
  4560. #u68427_text {
  4561. border-width:0px;
  4562. white-space:nowrap;
  4563. text-transform:none;
  4564. }
  4565. #u68428_div {
  4566. border-width:0px;
  4567. position:absolute;
  4568. left:0px;
  4569. top:0px;
  4570. width:81px;
  4571. height:30px;
  4572. background:inherit;
  4573. background-color:rgba(255, 255, 255, 0);
  4574. border:none;
  4575. border-top:0px;
  4576. border-right:0px;
  4577. border-bottom:0px;
  4578. border-radius:0px;
  4579. border-top-left-radius:0px;
  4580. border-bottom-left-radius:0px;
  4581. -moz-box-shadow:none;
  4582. -webkit-box-shadow:none;
  4583. box-shadow:none;
  4584. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4585. font-weight:400;
  4586. font-style:normal;
  4587. font-size:14px;
  4588. color:#7F7F7F;
  4589. }
  4590. #u68428 {
  4591. border-width:0px;
  4592. position:absolute;
  4593. left:2571px;
  4594. top:949px;
  4595. width:81px;
  4596. height:30px;
  4597. display:flex;
  4598. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4599. font-weight:400;
  4600. font-style:normal;
  4601. font-size:14px;
  4602. color:#7F7F7F;
  4603. }
  4604. #u68428 .text {
  4605. position:absolute;
  4606. align-self:center;
  4607. padding:5px 10px 5px 0px;
  4608. box-sizing:border-box;
  4609. width:100%;
  4610. }
  4611. #u68428_text {
  4612. border-width:0px;
  4613. white-space:nowrap;
  4614. text-transform:none;
  4615. }
  4616. #u68429_div {
  4617. border-width:0px;
  4618. position:absolute;
  4619. left:0px;
  4620. top:0px;
  4621. width:81px;
  4622. height:30px;
  4623. background:inherit;
  4624. background-color:rgba(255, 255, 255, 0);
  4625. border:none;
  4626. border-top:0px;
  4627. border-right:0px;
  4628. border-bottom:0px;
  4629. border-radius:0px;
  4630. border-top-left-radius:0px;
  4631. border-bottom-left-radius:0px;
  4632. -moz-box-shadow:none;
  4633. -webkit-box-shadow:none;
  4634. box-shadow:none;
  4635. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4636. font-weight:400;
  4637. font-style:normal;
  4638. font-size:14px;
  4639. }
  4640. #u68429 {
  4641. border-width:0px;
  4642. position:absolute;
  4643. left:2652px;
  4644. top:949px;
  4645. width:81px;
  4646. height:30px;
  4647. display:flex;
  4648. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4649. font-weight:400;
  4650. font-style:normal;
  4651. font-size:14px;
  4652. }
  4653. #u68429 .text {
  4654. position:absolute;
  4655. align-self:center;
  4656. padding:5px 10px 5px 0px;
  4657. box-sizing:border-box;
  4658. width:100%;
  4659. }
  4660. #u68429_text {
  4661. border-width:0px;
  4662. white-space:nowrap;
  4663. text-transform:none;
  4664. }
  4665. #u68430_div {
  4666. border-width:0px;
  4667. position:absolute;
  4668. left:0px;
  4669. top:0px;
  4670. width:81px;
  4671. height:30px;
  4672. background:inherit;
  4673. background-color:rgba(255, 255, 255, 0);
  4674. border:none;
  4675. border-top:0px;
  4676. border-right:0px;
  4677. border-bottom:0px;
  4678. border-radius:0px;
  4679. border-top-left-radius:0px;
  4680. border-bottom-left-radius:0px;
  4681. -moz-box-shadow:none;
  4682. -webkit-box-shadow:none;
  4683. box-shadow:none;
  4684. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4685. font-weight:400;
  4686. font-style:normal;
  4687. font-size:14px;
  4688. color:#7F7F7F;
  4689. }
  4690. #u68430 {
  4691. border-width:0px;
  4692. position:absolute;
  4693. left:2251px;
  4694. top:989px;
  4695. width:81px;
  4696. height:30px;
  4697. display:flex;
  4698. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4699. font-weight:400;
  4700. font-style:normal;
  4701. font-size:14px;
  4702. color:#7F7F7F;
  4703. }
  4704. #u68430 .text {
  4705. position:absolute;
  4706. align-self:center;
  4707. padding:5px 10px 5px 0px;
  4708. box-sizing:border-box;
  4709. width:100%;
  4710. }
  4711. #u68430_text {
  4712. border-width:0px;
  4713. white-space:nowrap;
  4714. text-transform:none;
  4715. }
  4716. #u68431_div {
  4717. border-width:0px;
  4718. position:absolute;
  4719. left:0px;
  4720. top:0px;
  4721. width:67px;
  4722. height:30px;
  4723. background:inherit;
  4724. background-color:rgba(255, 255, 255, 0);
  4725. border:none;
  4726. border-top:0px;
  4727. border-right:0px;
  4728. border-bottom:0px;
  4729. border-radius:0px;
  4730. border-top-left-radius:0px;
  4731. border-bottom-left-radius:0px;
  4732. -moz-box-shadow:none;
  4733. -webkit-box-shadow:none;
  4734. box-shadow:none;
  4735. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4736. font-weight:400;
  4737. font-style:normal;
  4738. font-size:14px;
  4739. }
  4740. #u68431 {
  4741. border-width:0px;
  4742. position:absolute;
  4743. left:2332px;
  4744. top:989px;
  4745. width:67px;
  4746. height:30px;
  4747. display:flex;
  4748. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4749. font-weight:400;
  4750. font-style:normal;
  4751. font-size:14px;
  4752. }
  4753. #u68431 .text {
  4754. position:absolute;
  4755. align-self:center;
  4756. padding:5px 10px 5px 0px;
  4757. box-sizing:border-box;
  4758. width:100%;
  4759. }
  4760. #u68431_text {
  4761. border-width:0px;
  4762. white-space:nowrap;
  4763. text-transform:none;
  4764. }
  4765. #u68432_div {
  4766. border-width:0px;
  4767. position:absolute;
  4768. left:0px;
  4769. top:0px;
  4770. width:81px;
  4771. height:30px;
  4772. background:inherit;
  4773. background-color:rgba(255, 255, 255, 0);
  4774. border:none;
  4775. border-top:0px;
  4776. border-right:0px;
  4777. border-bottom:0px;
  4778. border-radius:0px;
  4779. border-top-left-radius:0px;
  4780. border-bottom-left-radius:0px;
  4781. -moz-box-shadow:none;
  4782. -webkit-box-shadow:none;
  4783. box-shadow:none;
  4784. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4785. font-weight:400;
  4786. font-style:normal;
  4787. font-size:14px;
  4788. color:#7F7F7F;
  4789. }
  4790. #u68432 {
  4791. border-width:0px;
  4792. position:absolute;
  4793. left:2251px;
  4794. top:1029px;
  4795. width:81px;
  4796. height:30px;
  4797. display:flex;
  4798. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4799. font-weight:400;
  4800. font-style:normal;
  4801. font-size:14px;
  4802. color:#7F7F7F;
  4803. }
  4804. #u68432 .text {
  4805. position:absolute;
  4806. align-self:center;
  4807. padding:5px 10px 5px 0px;
  4808. box-sizing:border-box;
  4809. width:100%;
  4810. }
  4811. #u68432_text {
  4812. border-width:0px;
  4813. white-space:nowrap;
  4814. text-transform:none;
  4815. }
  4816. #u68433_img {
  4817. border-width:0px;
  4818. position:absolute;
  4819. left:0px;
  4820. top:0px;
  4821. width:120px;
  4822. height:80px;
  4823. }
  4824. #u68433 {
  4825. border-width:0px;
  4826. position:absolute;
  4827. left:2332px;
  4828. top:1032px;
  4829. width:120px;
  4830. height:80px;
  4831. display:flex;
  4832. }
  4833. #u68433 .text {
  4834. position:absolute;
  4835. align-self:center;
  4836. padding:0px 0px 0px 0px;
  4837. box-sizing:border-box;
  4838. width:100%;
  4839. }
  4840. #u68433_text {
  4841. border-width:0px;
  4842. word-wrap:break-word;
  4843. text-transform:none;
  4844. }
  4845. #u68434_div {
  4846. border-width:0px;
  4847. position:absolute;
  4848. left:0px;
  4849. top:0px;
  4850. width:81px;
  4851. height:30px;
  4852. background:inherit;
  4853. background-color:rgba(255, 255, 255, 0);
  4854. border:none;
  4855. border-top:0px;
  4856. border-right:0px;
  4857. border-bottom:0px;
  4858. border-radius:0px;
  4859. border-top-left-radius:0px;
  4860. border-bottom-left-radius:0px;
  4861. -moz-box-shadow:none;
  4862. -webkit-box-shadow:none;
  4863. box-shadow:none;
  4864. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4865. font-weight:400;
  4866. font-style:normal;
  4867. font-size:14px;
  4868. color:#7F7F7F;
  4869. }
  4870. #u68434 {
  4871. border-width:0px;
  4872. position:absolute;
  4873. left:2891px;
  4874. top:949px;
  4875. width:81px;
  4876. height:30px;
  4877. display:flex;
  4878. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4879. font-weight:400;
  4880. font-style:normal;
  4881. font-size:14px;
  4882. color:#7F7F7F;
  4883. }
  4884. #u68434 .text {
  4885. position:absolute;
  4886. align-self:center;
  4887. padding:5px 10px 5px 0px;
  4888. box-sizing:border-box;
  4889. width:100%;
  4890. }
  4891. #u68434_text {
  4892. border-width:0px;
  4893. white-space:nowrap;
  4894. text-transform:none;
  4895. }
  4896. #u68435_div {
  4897. border-width:0px;
  4898. position:absolute;
  4899. left:0px;
  4900. top:0px;
  4901. width:152px;
  4902. height:50px;
  4903. background:inherit;
  4904. background-color:rgba(255, 255, 255, 0);
  4905. border:none;
  4906. border-top:0px;
  4907. border-right:0px;
  4908. border-bottom:0px;
  4909. border-radius:0px;
  4910. border-top-left-radius:0px;
  4911. border-bottom-left-radius:0px;
  4912. -moz-box-shadow:none;
  4913. -webkit-box-shadow:none;
  4914. box-shadow:none;
  4915. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4916. font-weight:400;
  4917. font-style:normal;
  4918. font-size:14px;
  4919. line-height:40px;
  4920. }
  4921. #u68435 {
  4922. border-width:0px;
  4923. position:absolute;
  4924. left:2972px;
  4925. top:939px;
  4926. width:152px;
  4927. height:50px;
  4928. display:flex;
  4929. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4930. font-weight:400;
  4931. font-style:normal;
  4932. font-size:14px;
  4933. line-height:40px;
  4934. }
  4935. #u68435 .text {
  4936. position:absolute;
  4937. align-self:center;
  4938. padding:5px 10px 5px 0px;
  4939. box-sizing:border-box;
  4940. width:100%;
  4941. }
  4942. #u68435_text {
  4943. border-width:0px;
  4944. white-space:nowrap;
  4945. text-transform:none;
  4946. }
  4947. #u68436 {
  4948. border-width:0px;
  4949. position:absolute;
  4950. left:0px;
  4951. top:0px;
  4952. width:0px;
  4953. height:0px;
  4954. }
  4955. #u68437_div {
  4956. border-width:0px;
  4957. position:absolute;
  4958. left:0px;
  4959. top:0px;
  4960. width:930px;
  4961. height:210px;
  4962. background:inherit;
  4963. background-color:rgba(242, 242, 242, 1);
  4964. border:none;
  4965. border-radius:0px;
  4966. -moz-box-shadow:none;
  4967. -webkit-box-shadow:none;
  4968. box-shadow:none;
  4969. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4970. font-weight:400;
  4971. font-style:normal;
  4972. font-size:14px;
  4973. color:#AAAAAA;
  4974. text-align:center;
  4975. line-height:30px;
  4976. }
  4977. #u68437 {
  4978. border-width:0px;
  4979. position:absolute;
  4980. left:2251px;
  4981. top:641px;
  4982. width:930px;
  4983. height:210px;
  4984. display:flex;
  4985. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4986. font-weight:400;
  4987. font-style:normal;
  4988. font-size:14px;
  4989. color:#AAAAAA;
  4990. text-align:center;
  4991. line-height:30px;
  4992. }
  4993. #u68437 .text {
  4994. position:absolute;
  4995. align-self:center;
  4996. padding:5px 10px 5px 10px;
  4997. box-sizing:border-box;
  4998. width:100%;
  4999. }
  5000. #u68437_text {
  5001. border-width:0px;
  5002. word-wrap:break-word;
  5003. text-transform:none;
  5004. visibility:hidden;
  5005. }
  5006. #u68438_div {
  5007. border-width:0px;
  5008. position:absolute;
  5009. left:0px;
  5010. top:0px;
  5011. width:80px;
  5012. height:40px;
  5013. background:inherit;
  5014. background-color:rgba(255, 255, 255, 0);
  5015. border:none;
  5016. border-top:0px;
  5017. border-right:0px;
  5018. border-bottom:0px;
  5019. border-radius:0px;
  5020. border-top-left-radius:0px;
  5021. border-bottom-left-radius:0px;
  5022. -moz-box-shadow:none;
  5023. -webkit-box-shadow:none;
  5024. box-shadow:none;
  5025. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5026. font-weight:400;
  5027. font-style:normal;
  5028. font-size:14px;
  5029. color:#7F7F7F;
  5030. line-height:40px;
  5031. }
  5032. #u68438 {
  5033. border-width:0px;
  5034. position:absolute;
  5035. left:2274px;
  5036. top:661px;
  5037. width:80px;
  5038. height:40px;
  5039. display:flex;
  5040. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5041. font-weight:400;
  5042. font-style:normal;
  5043. font-size:14px;
  5044. color:#7F7F7F;
  5045. line-height:40px;
  5046. }
  5047. #u68438 .text {
  5048. position:absolute;
  5049. align-self:center;
  5050. padding:0px 0px 0px 0px;
  5051. box-sizing:border-box;
  5052. width:100%;
  5053. }
  5054. #u68438_text {
  5055. border-width:0px;
  5056. word-wrap:break-word;
  5057. text-transform:none;
  5058. }
  5059. #u68439_div {
  5060. border-width:0px;
  5061. position:absolute;
  5062. left:0px;
  5063. top:0px;
  5064. width:160px;
  5065. height:40px;
  5066. background:inherit;
  5067. background-color:rgba(255, 255, 255, 0);
  5068. border:none;
  5069. border-top:0px;
  5070. border-right:0px;
  5071. border-bottom:0px;
  5072. border-radius:0px;
  5073. border-top-left-radius:0px;
  5074. border-bottom-left-radius:0px;
  5075. -moz-box-shadow:none;
  5076. -webkit-box-shadow:none;
  5077. box-shadow:none;
  5078. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5079. font-weight:400;
  5080. font-style:normal;
  5081. font-size:14px;
  5082. line-height:40px;
  5083. }
  5084. #u68439 {
  5085. border-width:0px;
  5086. position:absolute;
  5087. left:2354px;
  5088. top:661px;
  5089. width:160px;
  5090. height:40px;
  5091. display:flex;
  5092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5093. font-weight:400;
  5094. font-style:normal;
  5095. font-size:14px;
  5096. line-height:40px;
  5097. }
  5098. #u68439 .text {
  5099. position:absolute;
  5100. align-self:center;
  5101. padding:0px 0px 0px 0px;
  5102. box-sizing:border-box;
  5103. width:100%;
  5104. }
  5105. #u68439_text {
  5106. border-width:0px;
  5107. word-wrap:break-word;
  5108. text-transform:none;
  5109. }
  5110. #u68440_div {
  5111. border-width:0px;
  5112. position:absolute;
  5113. left:0px;
  5114. top:0px;
  5115. width:80px;
  5116. height:40px;
  5117. background:inherit;
  5118. background-color:rgba(255, 255, 255, 0);
  5119. border:none;
  5120. border-top:0px;
  5121. border-right:0px;
  5122. border-bottom:0px;
  5123. border-radius:0px;
  5124. border-top-left-radius:0px;
  5125. border-bottom-left-radius:0px;
  5126. -moz-box-shadow:none;
  5127. -webkit-box-shadow:none;
  5128. box-shadow:none;
  5129. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5130. font-weight:400;
  5131. font-style:normal;
  5132. font-size:14px;
  5133. color:#7F7F7F;
  5134. line-height:40px;
  5135. }
  5136. #u68440 {
  5137. border-width:0px;
  5138. position:absolute;
  5139. left:2571px;
  5140. top:661px;
  5141. width:80px;
  5142. height:40px;
  5143. display:flex;
  5144. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5145. font-weight:400;
  5146. font-style:normal;
  5147. font-size:14px;
  5148. color:#7F7F7F;
  5149. line-height:40px;
  5150. }
  5151. #u68440 .text {
  5152. position:absolute;
  5153. align-self:center;
  5154. padding:0px 0px 0px 0px;
  5155. box-sizing:border-box;
  5156. width:100%;
  5157. }
  5158. #u68440_text {
  5159. border-width:0px;
  5160. word-wrap:break-word;
  5161. text-transform:none;
  5162. }
  5163. #u68441_div {
  5164. border-width:0px;
  5165. position:absolute;
  5166. left:0px;
  5167. top:0px;
  5168. width:160px;
  5169. height:40px;
  5170. background:inherit;
  5171. background-color:rgba(255, 255, 255, 0);
  5172. border:none;
  5173. border-top:0px;
  5174. border-right:0px;
  5175. border-bottom:0px;
  5176. border-radius:0px;
  5177. border-top-left-radius:0px;
  5178. border-bottom-left-radius:0px;
  5179. -moz-box-shadow:none;
  5180. -webkit-box-shadow:none;
  5181. box-shadow:none;
  5182. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5183. font-weight:400;
  5184. font-style:normal;
  5185. font-size:14px;
  5186. line-height:40px;
  5187. }
  5188. #u68441 {
  5189. border-width:0px;
  5190. position:absolute;
  5191. left:2651px;
  5192. top:661px;
  5193. width:160px;
  5194. height:40px;
  5195. display:flex;
  5196. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5197. font-weight:400;
  5198. font-style:normal;
  5199. font-size:14px;
  5200. line-height:40px;
  5201. }
  5202. #u68441 .text {
  5203. position:absolute;
  5204. align-self:center;
  5205. padding:0px 0px 0px 0px;
  5206. box-sizing:border-box;
  5207. width:100%;
  5208. }
  5209. #u68441_text {
  5210. border-width:0px;
  5211. word-wrap:break-word;
  5212. text-transform:none;
  5213. }
  5214. #u68442_div {
  5215. border-width:0px;
  5216. position:absolute;
  5217. left:0px;
  5218. top:0px;
  5219. width:78px;
  5220. height:40px;
  5221. background:inherit;
  5222. background-color:rgba(255, 255, 255, 0);
  5223. border:none;
  5224. border-top:0px;
  5225. border-right:0px;
  5226. border-bottom:0px;
  5227. border-radius:0px;
  5228. border-top-left-radius:0px;
  5229. border-bottom-left-radius:0px;
  5230. -moz-box-shadow:none;
  5231. -webkit-box-shadow:none;
  5232. box-shadow:none;
  5233. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5234. font-weight:400;
  5235. font-style:normal;
  5236. font-size:14px;
  5237. color:#7F7F7F;
  5238. line-height:40px;
  5239. }
  5240. #u68442 {
  5241. border-width:0px;
  5242. position:absolute;
  5243. left:2274px;
  5244. top:750px;
  5245. width:78px;
  5246. height:40px;
  5247. display:flex;
  5248. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5249. font-weight:400;
  5250. font-style:normal;
  5251. font-size:14px;
  5252. color:#7F7F7F;
  5253. line-height:40px;
  5254. }
  5255. #u68442 .text {
  5256. position:absolute;
  5257. align-self:center;
  5258. padding:0px 0px 0px 0px;
  5259. box-sizing:border-box;
  5260. width:100%;
  5261. }
  5262. #u68442_text {
  5263. border-width:0px;
  5264. white-space:nowrap;
  5265. text-transform:none;
  5266. }
  5267. #u68443_img {
  5268. border-width:0px;
  5269. position:absolute;
  5270. left:0px;
  5271. top:0px;
  5272. width:120px;
  5273. height:80px;
  5274. }
  5275. #u68443 {
  5276. border-width:0px;
  5277. position:absolute;
  5278. left:2353px;
  5279. top:750px;
  5280. width:120px;
  5281. height:80px;
  5282. display:flex;
  5283. }
  5284. #u68443 .text {
  5285. position:absolute;
  5286. align-self:center;
  5287. padding:0px 0px 0px 0px;
  5288. box-sizing:border-box;
  5289. width:100%;
  5290. }
  5291. #u68443_text {
  5292. border-width:0px;
  5293. word-wrap:break-word;
  5294. text-transform:none;
  5295. }
  5296. #u68444_img {
  5297. border-width:0px;
  5298. position:absolute;
  5299. left:0px;
  5300. top:0px;
  5301. width:120px;
  5302. height:80px;
  5303. }
  5304. #u68444 {
  5305. border-width:0px;
  5306. position:absolute;
  5307. left:2495px;
  5308. top:750px;
  5309. width:120px;
  5310. height:80px;
  5311. display:flex;
  5312. }
  5313. #u68444 .text {
  5314. position:absolute;
  5315. align-self:center;
  5316. padding:0px 0px 0px 0px;
  5317. box-sizing:border-box;
  5318. width:100%;
  5319. }
  5320. #u68444_text {
  5321. border-width:0px;
  5322. word-wrap:break-word;
  5323. text-transform:none;
  5324. }
  5325. #u68445_img {
  5326. border-width:0px;
  5327. position:absolute;
  5328. left:0px;
  5329. top:0px;
  5330. width:120px;
  5331. height:80px;
  5332. }
  5333. #u68445 {
  5334. border-width:0px;
  5335. position:absolute;
  5336. left:2636px;
  5337. top:750px;
  5338. width:120px;
  5339. height:80px;
  5340. display:flex;
  5341. }
  5342. #u68445 .text {
  5343. position:absolute;
  5344. align-self:center;
  5345. padding:0px 0px 0px 0px;
  5346. box-sizing:border-box;
  5347. width:100%;
  5348. }
  5349. #u68445_text {
  5350. border-width:0px;
  5351. word-wrap:break-word;
  5352. text-transform:none;
  5353. }
  5354. #u68446_div {
  5355. border-width:0px;
  5356. position:absolute;
  5357. left:0px;
  5358. top:0px;
  5359. width:80px;
  5360. height:40px;
  5361. background:inherit;
  5362. background-color:rgba(255, 255, 255, 0);
  5363. border:none;
  5364. border-top:0px;
  5365. border-right:0px;
  5366. border-bottom:0px;
  5367. border-radius:0px;
  5368. border-top-left-radius:0px;
  5369. border-bottom-left-radius:0px;
  5370. -moz-box-shadow:none;
  5371. -webkit-box-shadow:none;
  5372. box-shadow:none;
  5373. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5374. font-weight:400;
  5375. font-style:normal;
  5376. font-size:14px;
  5377. color:#7F7F7F;
  5378. line-height:40px;
  5379. }
  5380. #u68446 {
  5381. border-width:0px;
  5382. position:absolute;
  5383. left:2886px;
  5384. top:661px;
  5385. width:80px;
  5386. height:40px;
  5387. display:flex;
  5388. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5389. font-weight:400;
  5390. font-style:normal;
  5391. font-size:14px;
  5392. color:#7F7F7F;
  5393. line-height:40px;
  5394. }
  5395. #u68446 .text {
  5396. position:absolute;
  5397. align-self:center;
  5398. padding:0px 0px 0px 0px;
  5399. box-sizing:border-box;
  5400. width:100%;
  5401. }
  5402. #u68446_text {
  5403. border-width:0px;
  5404. word-wrap:break-word;
  5405. text-transform:none;
  5406. }
  5407. #u68447_div {
  5408. border-width:0px;
  5409. position:absolute;
  5410. left:0px;
  5411. top:0px;
  5412. width:23px;
  5413. height:40px;
  5414. background:inherit;
  5415. background-color:rgba(255, 255, 255, 0);
  5416. border:none;
  5417. border-top:0px;
  5418. border-right:0px;
  5419. border-bottom:0px;
  5420. border-radius:0px;
  5421. border-top-left-radius:0px;
  5422. border-bottom-left-radius:0px;
  5423. -moz-box-shadow:none;
  5424. -webkit-box-shadow:none;
  5425. box-shadow:none;
  5426. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5427. font-weight:400;
  5428. font-style:normal;
  5429. font-size:14px;
  5430. line-height:40px;
  5431. }
  5432. #u68447 {
  5433. border-width:0px;
  5434. position:absolute;
  5435. left:2966px;
  5436. top:661px;
  5437. width:23px;
  5438. height:40px;
  5439. display:flex;
  5440. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5441. font-weight:400;
  5442. font-style:normal;
  5443. font-size:14px;
  5444. line-height:40px;
  5445. }
  5446. #u68447 .text {
  5447. position:absolute;
  5448. align-self:center;
  5449. padding:0px 0px 0px 0px;
  5450. box-sizing:border-box;
  5451. width:100%;
  5452. }
  5453. #u68447_text {
  5454. border-width:0px;
  5455. white-space:nowrap;
  5456. text-transform:none;
  5457. }
  5458. #u68448_div {
  5459. border-width:0px;
  5460. position:absolute;
  5461. left:0px;
  5462. top:0px;
  5463. width:80px;
  5464. height:40px;
  5465. background:inherit;
  5466. background-color:rgba(255, 255, 255, 0);
  5467. border:none;
  5468. border-top:0px;
  5469. border-right:0px;
  5470. border-bottom:0px;
  5471. border-radius:0px;
  5472. border-top-left-radius:0px;
  5473. border-bottom-left-radius:0px;
  5474. -moz-box-shadow:none;
  5475. -webkit-box-shadow:none;
  5476. box-shadow:none;
  5477. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5478. font-weight:400;
  5479. font-style:normal;
  5480. font-size:14px;
  5481. color:#7F7F7F;
  5482. line-height:40px;
  5483. }
  5484. #u68448 {
  5485. border-width:0px;
  5486. position:absolute;
  5487. left:2274px;
  5488. top:700px;
  5489. width:80px;
  5490. height:40px;
  5491. display:flex;
  5492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5493. font-weight:400;
  5494. font-style:normal;
  5495. font-size:14px;
  5496. color:#7F7F7F;
  5497. line-height:40px;
  5498. }
  5499. #u68448 .text {
  5500. position:absolute;
  5501. align-self:center;
  5502. padding:0px 0px 0px 0px;
  5503. box-sizing:border-box;
  5504. width:100%;
  5505. }
  5506. #u68448_text {
  5507. border-width:0px;
  5508. word-wrap:break-word;
  5509. text-transform:none;
  5510. }
  5511. #u68449_div {
  5512. border-width:0px;
  5513. position:absolute;
  5514. left:0px;
  5515. top:0px;
  5516. width:160px;
  5517. height:40px;
  5518. background:inherit;
  5519. background-color:rgba(255, 255, 255, 0);
  5520. border:none;
  5521. border-top:0px;
  5522. border-right:0px;
  5523. border-bottom:0px;
  5524. border-radius:0px;
  5525. border-top-left-radius:0px;
  5526. border-bottom-left-radius:0px;
  5527. -moz-box-shadow:none;
  5528. -webkit-box-shadow:none;
  5529. box-shadow:none;
  5530. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5531. font-weight:400;
  5532. font-style:normal;
  5533. font-size:14px;
  5534. line-height:40px;
  5535. }
  5536. #u68449 {
  5537. border-width:0px;
  5538. position:absolute;
  5539. left:2354px;
  5540. top:700px;
  5541. width:160px;
  5542. height:40px;
  5543. display:flex;
  5544. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5545. font-weight:400;
  5546. font-style:normal;
  5547. font-size:14px;
  5548. line-height:40px;
  5549. }
  5550. #u68449 .text {
  5551. position:absolute;
  5552. align-self:center;
  5553. padding:0px 0px 0px 0px;
  5554. box-sizing:border-box;
  5555. width:100%;
  5556. }
  5557. #u68449_text {
  5558. border-width:0px;
  5559. word-wrap:break-word;
  5560. text-transform:none;
  5561. }
  5562. #u68450_div {
  5563. border-width:0px;
  5564. position:absolute;
  5565. left:0px;
  5566. top:0px;
  5567. width:80px;
  5568. height:40px;
  5569. background:inherit;
  5570. background-color:rgba(255, 255, 255, 0);
  5571. border:none;
  5572. border-top:0px;
  5573. border-right:0px;
  5574. border-bottom:0px;
  5575. border-radius:0px;
  5576. border-top-left-radius:0px;
  5577. border-bottom-left-radius:0px;
  5578. -moz-box-shadow:none;
  5579. -webkit-box-shadow:none;
  5580. box-shadow:none;
  5581. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5582. font-weight:400;
  5583. font-style:normal;
  5584. font-size:14px;
  5585. color:#7F7F7F;
  5586. line-height:40px;
  5587. }
  5588. #u68450 {
  5589. border-width:0px;
  5590. position:absolute;
  5591. left:2571px;
  5592. top:700px;
  5593. width:80px;
  5594. height:40px;
  5595. display:flex;
  5596. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5597. font-weight:400;
  5598. font-style:normal;
  5599. font-size:14px;
  5600. color:#7F7F7F;
  5601. line-height:40px;
  5602. }
  5603. #u68450 .text {
  5604. position:absolute;
  5605. align-self:center;
  5606. padding:0px 0px 0px 0px;
  5607. box-sizing:border-box;
  5608. width:100%;
  5609. }
  5610. #u68450_text {
  5611. border-width:0px;
  5612. word-wrap:break-word;
  5613. text-transform:none;
  5614. }
  5615. #u68451_div {
  5616. border-width:0px;
  5617. position:absolute;
  5618. left:0px;
  5619. top:0px;
  5620. width:160px;
  5621. height:40px;
  5622. background:inherit;
  5623. background-color:rgba(255, 255, 255, 0);
  5624. border:none;
  5625. border-top:0px;
  5626. border-right:0px;
  5627. border-bottom:0px;
  5628. border-radius:0px;
  5629. border-top-left-radius:0px;
  5630. border-bottom-left-radius:0px;
  5631. -moz-box-shadow:none;
  5632. -webkit-box-shadow:none;
  5633. box-shadow:none;
  5634. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5635. font-weight:400;
  5636. font-style:normal;
  5637. font-size:14px;
  5638. line-height:40px;
  5639. }
  5640. #u68451 {
  5641. border-width:0px;
  5642. position:absolute;
  5643. left:2651px;
  5644. top:700px;
  5645. width:160px;
  5646. height:40px;
  5647. display:flex;
  5648. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5649. font-weight:400;
  5650. font-style:normal;
  5651. font-size:14px;
  5652. line-height:40px;
  5653. }
  5654. #u68451 .text {
  5655. position:absolute;
  5656. align-self:center;
  5657. padding:0px 0px 0px 0px;
  5658. box-sizing:border-box;
  5659. width:100%;
  5660. }
  5661. #u68451_text {
  5662. border-width:0px;
  5663. word-wrap:break-word;
  5664. text-transform:none;
  5665. }
  5666. #u68452_div {
  5667. border-width:0px;
  5668. position:absolute;
  5669. left:0px;
  5670. top:0px;
  5671. width:80px;
  5672. height:40px;
  5673. background:inherit;
  5674. background-color:rgba(255, 255, 255, 0);
  5675. border:none;
  5676. border-top:0px;
  5677. border-right:0px;
  5678. border-bottom:0px;
  5679. border-radius:0px;
  5680. border-top-left-radius:0px;
  5681. border-bottom-left-radius:0px;
  5682. -moz-box-shadow:none;
  5683. -webkit-box-shadow:none;
  5684. box-shadow:none;
  5685. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5686. font-weight:400;
  5687. font-style:normal;
  5688. font-size:14px;
  5689. color:#7F7F7F;
  5690. line-height:40px;
  5691. }
  5692. #u68452 {
  5693. border-width:0px;
  5694. position:absolute;
  5695. left:2886px;
  5696. top:700px;
  5697. width:80px;
  5698. height:40px;
  5699. display:flex;
  5700. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5701. font-weight:400;
  5702. font-style:normal;
  5703. font-size:14px;
  5704. color:#7F7F7F;
  5705. line-height:40px;
  5706. }
  5707. #u68452 .text {
  5708. position:absolute;
  5709. align-self:center;
  5710. padding:0px 0px 0px 0px;
  5711. box-sizing:border-box;
  5712. width:100%;
  5713. }
  5714. #u68452_text {
  5715. border-width:0px;
  5716. word-wrap:break-word;
  5717. text-transform:none;
  5718. }
  5719. #u68453_div {
  5720. border-width:0px;
  5721. position:absolute;
  5722. left:0px;
  5723. top:0px;
  5724. width:65px;
  5725. height:40px;
  5726. background:inherit;
  5727. background-color:rgba(255, 255, 255, 0);
  5728. border:none;
  5729. border-top:0px;
  5730. border-right:0px;
  5731. border-bottom:0px;
  5732. border-radius:0px;
  5733. border-top-left-radius:0px;
  5734. border-bottom-left-radius:0px;
  5735. -moz-box-shadow:none;
  5736. -webkit-box-shadow:none;
  5737. box-shadow:none;
  5738. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5739. font-weight:400;
  5740. font-style:normal;
  5741. font-size:14px;
  5742. line-height:40px;
  5743. }
  5744. #u68453 {
  5745. border-width:0px;
  5746. position:absolute;
  5747. left:2966px;
  5748. top:700px;
  5749. width:65px;
  5750. height:40px;
  5751. display:flex;
  5752. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5753. font-weight:400;
  5754. font-style:normal;
  5755. font-size:14px;
  5756. line-height:40px;
  5757. }
  5758. #u68453 .text {
  5759. position:absolute;
  5760. align-self:center;
  5761. padding:0px 0px 0px 0px;
  5762. box-sizing:border-box;
  5763. width:100%;
  5764. }
  5765. #u68453_text {
  5766. border-width:0px;
  5767. white-space:nowrap;
  5768. text-transform:none;
  5769. }
  5770. #u68454_div {
  5771. border-width:0px;
  5772. position:absolute;
  5773. left:0px;
  5774. top:0px;
  5775. width:57px;
  5776. height:40px;
  5777. background:inherit;
  5778. background-color:rgba(255, 255, 255, 0);
  5779. border:none;
  5780. border-left:0px;
  5781. border-top:0px;
  5782. border-right:0px;
  5783. border-radius:0px;
  5784. border-bottom-right-radius:0px;
  5785. border-bottom-left-radius:0px;
  5786. -moz-box-shadow:none;
  5787. -webkit-box-shadow:none;
  5788. box-shadow:none;
  5789. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5790. font-weight:400;
  5791. font-style:normal;
  5792. font-size:14px;
  5793. }
  5794. #u68454 {
  5795. border-width:0px;
  5796. position:absolute;
  5797. left:2251px;
  5798. top:518px;
  5799. width:57px;
  5800. height:40px;
  5801. display:flex;
  5802. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5803. font-weight:400;
  5804. font-style:normal;
  5805. font-size:14px;
  5806. }
  5807. #u68454 .text {
  5808. position:absolute;
  5809. align-self:center;
  5810. padding:0px 0px 0px 0px;
  5811. box-sizing:border-box;
  5812. width:100%;
  5813. }
  5814. #u68454_text {
  5815. border-width:0px;
  5816. white-space:nowrap;
  5817. text-transform:none;
  5818. }
  5819. #u68455_div {
  5820. border-width:0px;
  5821. position:absolute;
  5822. left:0px;
  5823. top:0px;
  5824. width:80px;
  5825. height:40px;
  5826. background:inherit;
  5827. background-color:rgba(255, 255, 255, 0);
  5828. border:none;
  5829. border-top:0px;
  5830. border-right:0px;
  5831. border-bottom:0px;
  5832. border-radius:0px;
  5833. border-top-left-radius:0px;
  5834. border-bottom-left-radius:0px;
  5835. -moz-box-shadow:none;
  5836. -webkit-box-shadow:none;
  5837. box-shadow:none;
  5838. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5839. font-weight:400;
  5840. font-style:normal;
  5841. font-size:14px;
  5842. color:#7F7F7F;
  5843. line-height:40px;
  5844. }
  5845. #u68455 {
  5846. border-width:0px;
  5847. position:absolute;
  5848. left:2251px;
  5849. top:558px;
  5850. width:80px;
  5851. height:40px;
  5852. display:flex;
  5853. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5854. font-weight:400;
  5855. font-style:normal;
  5856. font-size:14px;
  5857. color:#7F7F7F;
  5858. line-height:40px;
  5859. }
  5860. #u68455 .text {
  5861. position:absolute;
  5862. align-self:center;
  5863. padding:0px 0px 0px 0px;
  5864. box-sizing:border-box;
  5865. width:100%;
  5866. }
  5867. #u68455_text {
  5868. border-width:0px;
  5869. word-wrap:break-word;
  5870. text-transform:none;
  5871. }
  5872. #u68456_div {
  5873. border-width:0px;
  5874. position:absolute;
  5875. left:0px;
  5876. top:0px;
  5877. width:160px;
  5878. height:40px;
  5879. background:inherit;
  5880. background-color:rgba(255, 255, 255, 0);
  5881. border:none;
  5882. border-top:0px;
  5883. border-right:0px;
  5884. border-bottom:0px;
  5885. border-radius:0px;
  5886. border-top-left-radius:0px;
  5887. border-bottom-left-radius:0px;
  5888. -moz-box-shadow:none;
  5889. -webkit-box-shadow:none;
  5890. box-shadow:none;
  5891. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5892. font-weight:400;
  5893. font-style:normal;
  5894. font-size:14px;
  5895. line-height:40px;
  5896. }
  5897. #u68456 {
  5898. border-width:0px;
  5899. position:absolute;
  5900. left:2331px;
  5901. top:558px;
  5902. width:160px;
  5903. height:40px;
  5904. display:flex;
  5905. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5906. font-weight:400;
  5907. font-style:normal;
  5908. font-size:14px;
  5909. line-height:40px;
  5910. }
  5911. #u68456 .text {
  5912. position:absolute;
  5913. align-self:center;
  5914. padding:0px 0px 0px 0px;
  5915. box-sizing:border-box;
  5916. width:100%;
  5917. }
  5918. #u68456_text {
  5919. border-width:0px;
  5920. word-wrap:break-word;
  5921. text-transform:none;
  5922. }
  5923. #u68457_div {
  5924. border-width:0px;
  5925. position:absolute;
  5926. left:0px;
  5927. top:0px;
  5928. width:80px;
  5929. height:40px;
  5930. background:inherit;
  5931. background-color:rgba(255, 255, 255, 0);
  5932. border:none;
  5933. border-top:0px;
  5934. border-right:0px;
  5935. border-bottom:0px;
  5936. border-radius:0px;
  5937. border-top-left-radius:0px;
  5938. border-bottom-left-radius:0px;
  5939. -moz-box-shadow:none;
  5940. -webkit-box-shadow:none;
  5941. box-shadow:none;
  5942. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5943. font-weight:400;
  5944. font-style:normal;
  5945. font-size:14px;
  5946. color:#7F7F7F;
  5947. line-height:40px;
  5948. }
  5949. #u68457 {
  5950. border-width:0px;
  5951. position:absolute;
  5952. left:2571px;
  5953. top:558px;
  5954. width:80px;
  5955. height:40px;
  5956. display:flex;
  5957. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5958. font-weight:400;
  5959. font-style:normal;
  5960. font-size:14px;
  5961. color:#7F7F7F;
  5962. line-height:40px;
  5963. }
  5964. #u68457 .text {
  5965. position:absolute;
  5966. align-self:center;
  5967. padding:0px 0px 0px 0px;
  5968. box-sizing:border-box;
  5969. width:100%;
  5970. }
  5971. #u68457_text {
  5972. border-width:0px;
  5973. word-wrap:break-word;
  5974. text-transform:none;
  5975. }
  5976. #u68458_div {
  5977. border-width:0px;
  5978. position:absolute;
  5979. left:0px;
  5980. top:0px;
  5981. width:160px;
  5982. height:40px;
  5983. background:inherit;
  5984. background-color:rgba(255, 255, 255, 0);
  5985. border:none;
  5986. border-top:0px;
  5987. border-right:0px;
  5988. border-bottom:0px;
  5989. border-radius:0px;
  5990. border-top-left-radius:0px;
  5991. border-bottom-left-radius:0px;
  5992. -moz-box-shadow:none;
  5993. -webkit-box-shadow:none;
  5994. box-shadow:none;
  5995. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5996. font-weight:400;
  5997. font-style:normal;
  5998. font-size:14px;
  5999. line-height:40px;
  6000. }
  6001. #u68458 {
  6002. border-width:0px;
  6003. position:absolute;
  6004. left:2651px;
  6005. top:558px;
  6006. width:160px;
  6007. height:40px;
  6008. display:flex;
  6009. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6010. font-weight:400;
  6011. font-style:normal;
  6012. font-size:14px;
  6013. line-height:40px;
  6014. }
  6015. #u68458 .text {
  6016. position:absolute;
  6017. align-self:center;
  6018. padding:0px 0px 0px 0px;
  6019. box-sizing:border-box;
  6020. width:100%;
  6021. }
  6022. #u68458_text {
  6023. border-width:0px;
  6024. word-wrap:break-word;
  6025. text-transform:none;
  6026. }
  6027. #u68459_div {
  6028. border-width:0px;
  6029. position:absolute;
  6030. left:0px;
  6031. top:0px;
  6032. width:80px;
  6033. height:40px;
  6034. background:inherit;
  6035. background-color:rgba(255, 255, 255, 0);
  6036. border:none;
  6037. border-top:0px;
  6038. border-right:0px;
  6039. border-bottom:0px;
  6040. border-radius:0px;
  6041. border-top-left-radius:0px;
  6042. border-bottom-left-radius:0px;
  6043. -moz-box-shadow:none;
  6044. -webkit-box-shadow:none;
  6045. box-shadow:none;
  6046. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6047. font-weight:400;
  6048. font-style:normal;
  6049. font-size:14px;
  6050. color:#7F7F7F;
  6051. line-height:40px;
  6052. }
  6053. #u68459 {
  6054. border-width:0px;
  6055. position:absolute;
  6056. left:2891px;
  6057. top:558px;
  6058. width:80px;
  6059. height:40px;
  6060. display:flex;
  6061. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6062. font-weight:400;
  6063. font-style:normal;
  6064. font-size:14px;
  6065. color:#7F7F7F;
  6066. line-height:40px;
  6067. }
  6068. #u68459 .text {
  6069. position:absolute;
  6070. align-self:center;
  6071. padding:0px 0px 0px 0px;
  6072. box-sizing:border-box;
  6073. width:100%;
  6074. }
  6075. #u68459_text {
  6076. border-width:0px;
  6077. word-wrap:break-word;
  6078. text-transform:none;
  6079. }
  6080. #u68460_div {
  6081. border-width:0px;
  6082. position:absolute;
  6083. left:0px;
  6084. top:0px;
  6085. width:160px;
  6086. height:40px;
  6087. background:inherit;
  6088. background-color:rgba(255, 255, 255, 0);
  6089. border:none;
  6090. border-top:0px;
  6091. border-right:0px;
  6092. border-bottom:0px;
  6093. border-radius:0px;
  6094. border-top-left-radius:0px;
  6095. border-bottom-left-radius:0px;
  6096. -moz-box-shadow:none;
  6097. -webkit-box-shadow:none;
  6098. box-shadow:none;
  6099. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6100. font-weight:400;
  6101. font-style:normal;
  6102. font-size:14px;
  6103. line-height:40px;
  6104. }
  6105. #u68460 {
  6106. border-width:0px;
  6107. position:absolute;
  6108. left:2971px;
  6109. top:558px;
  6110. width:160px;
  6111. height:40px;
  6112. display:flex;
  6113. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6114. font-weight:400;
  6115. font-style:normal;
  6116. font-size:14px;
  6117. line-height:40px;
  6118. }
  6119. #u68460 .text {
  6120. position:absolute;
  6121. align-self:center;
  6122. padding:0px 0px 0px 0px;
  6123. box-sizing:border-box;
  6124. width:100%;
  6125. }
  6126. #u68460_text {
  6127. border-width:0px;
  6128. word-wrap:break-word;
  6129. text-transform:none;
  6130. }
  6131. #u68461_div {
  6132. border-width:0px;
  6133. position:absolute;
  6134. left:0px;
  6135. top:0px;
  6136. width:71px;
  6137. height:40px;
  6138. background:inherit;
  6139. background-color:rgba(255, 255, 255, 0);
  6140. border:none;
  6141. border-top:0px;
  6142. border-right:0px;
  6143. border-bottom:0px;
  6144. border-radius:0px;
  6145. border-top-left-radius:0px;
  6146. border-bottom-left-radius:0px;
  6147. -moz-box-shadow:none;
  6148. -webkit-box-shadow:none;
  6149. box-shadow:none;
  6150. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6151. font-weight:400;
  6152. font-style:normal;
  6153. font-size:14px;
  6154. color:#7F7F7F;
  6155. line-height:40px;
  6156. }
  6157. #u68461 {
  6158. border-width:0px;
  6159. position:absolute;
  6160. left:2251px;
  6161. top:598px;
  6162. width:71px;
  6163. height:40px;
  6164. display:flex;
  6165. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6166. font-weight:400;
  6167. font-style:normal;
  6168. font-size:14px;
  6169. color:#7F7F7F;
  6170. line-height:40px;
  6171. }
  6172. #u68461 .text {
  6173. position:absolute;
  6174. align-self:center;
  6175. padding:0px 0px 0px 0px;
  6176. box-sizing:border-box;
  6177. width:100%;
  6178. }
  6179. #u68461_text {
  6180. border-width:0px;
  6181. white-space:nowrap;
  6182. text-transform:none;
  6183. }
  6184. #u68462_div {
  6185. border-width:0px;
  6186. position:absolute;
  6187. left:0px;
  6188. top:0px;
  6189. width:160px;
  6190. height:40px;
  6191. background:inherit;
  6192. background-color:rgba(255, 255, 255, 0);
  6193. border:none;
  6194. border-top:0px;
  6195. border-right:0px;
  6196. border-bottom:0px;
  6197. border-radius:0px;
  6198. border-top-left-radius:0px;
  6199. border-bottom-left-radius:0px;
  6200. -moz-box-shadow:none;
  6201. -webkit-box-shadow:none;
  6202. box-shadow:none;
  6203. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6204. font-weight:400;
  6205. font-style:normal;
  6206. font-size:14px;
  6207. line-height:40px;
  6208. }
  6209. #u68462 {
  6210. border-width:0px;
  6211. position:absolute;
  6212. left:2331px;
  6213. top:598px;
  6214. width:160px;
  6215. height:40px;
  6216. display:flex;
  6217. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6218. font-weight:400;
  6219. font-style:normal;
  6220. font-size:14px;
  6221. line-height:40px;
  6222. }
  6223. #u68462 .text {
  6224. position:absolute;
  6225. align-self:center;
  6226. padding:0px 0px 0px 0px;
  6227. box-sizing:border-box;
  6228. width:100%;
  6229. }
  6230. #u68462_text {
  6231. border-width:0px;
  6232. word-wrap:break-word;
  6233. text-transform:none;
  6234. }
  6235. #u68463_div {
  6236. border-width:0px;
  6237. position:absolute;
  6238. left:0px;
  6239. top:0px;
  6240. width:80px;
  6241. height:40px;
  6242. background:inherit;
  6243. background-color:rgba(255, 255, 255, 0);
  6244. border:none;
  6245. border-top:0px;
  6246. border-right:0px;
  6247. border-bottom:0px;
  6248. border-radius:0px;
  6249. border-top-left-radius:0px;
  6250. border-bottom-left-radius:0px;
  6251. -moz-box-shadow:none;
  6252. -webkit-box-shadow:none;
  6253. box-shadow:none;
  6254. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6255. font-weight:400;
  6256. font-style:normal;
  6257. font-size:14px;
  6258. color:#7F7F7F;
  6259. line-height:40px;
  6260. }
  6261. #u68463 {
  6262. border-width:0px;
  6263. position:absolute;
  6264. left:2571px;
  6265. top:598px;
  6266. width:80px;
  6267. height:40px;
  6268. display:flex;
  6269. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6270. font-weight:400;
  6271. font-style:normal;
  6272. font-size:14px;
  6273. color:#7F7F7F;
  6274. line-height:40px;
  6275. }
  6276. #u68463 .text {
  6277. position:absolute;
  6278. align-self:center;
  6279. padding:0px 0px 0px 0px;
  6280. box-sizing:border-box;
  6281. width:100%;
  6282. }
  6283. #u68463_text {
  6284. border-width:0px;
  6285. word-wrap:break-word;
  6286. text-transform:none;
  6287. }
  6288. #u68464_div {
  6289. border-width:0px;
  6290. position:absolute;
  6291. left:0px;
  6292. top:0px;
  6293. width:160px;
  6294. height:40px;
  6295. background:inherit;
  6296. background-color:rgba(255, 255, 255, 0);
  6297. border:none;
  6298. border-top:0px;
  6299. border-right:0px;
  6300. border-bottom:0px;
  6301. border-radius:0px;
  6302. border-top-left-radius:0px;
  6303. border-bottom-left-radius:0px;
  6304. -moz-box-shadow:none;
  6305. -webkit-box-shadow:none;
  6306. box-shadow:none;
  6307. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6308. font-weight:400;
  6309. font-style:normal;
  6310. font-size:14px;
  6311. line-height:40px;
  6312. }
  6313. #u68464 {
  6314. border-width:0px;
  6315. position:absolute;
  6316. left:2651px;
  6317. top:598px;
  6318. width:160px;
  6319. height:40px;
  6320. display:flex;
  6321. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6322. font-weight:400;
  6323. font-style:normal;
  6324. font-size:14px;
  6325. line-height:40px;
  6326. }
  6327. #u68464 .text {
  6328. position:absolute;
  6329. align-self:center;
  6330. padding:0px 0px 0px 0px;
  6331. box-sizing:border-box;
  6332. width:100%;
  6333. }
  6334. #u68464_text {
  6335. border-width:0px;
  6336. word-wrap:break-word;
  6337. text-transform:none;
  6338. }
  6339. #u68465 {
  6340. border-width:0px;
  6341. position:absolute;
  6342. left:0px;
  6343. top:0px;
  6344. width:0px;
  6345. height:0px;
  6346. }
  6347. #u68466_div {
  6348. border-width:0px;
  6349. position:absolute;
  6350. left:0px;
  6351. top:0px;
  6352. width:1000px;
  6353. height:1139px;
  6354. background:inherit;
  6355. background-color:rgba(242, 242, 242, 1);
  6356. box-sizing:border-box;
  6357. border-width:1px;
  6358. border-style:solid;
  6359. border-color:rgba(242, 242, 242, 1);
  6360. border-radius:0px;
  6361. -moz-box-shadow:none;
  6362. -webkit-box-shadow:none;
  6363. box-shadow:none;
  6364. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6365. font-weight:400;
  6366. font-style:normal;
  6367. font-size:14px;
  6368. color:#AAAAAA;
  6369. text-align:center;
  6370. line-height:30px;
  6371. }
  6372. #u68466 {
  6373. border-width:0px;
  6374. position:absolute;
  6375. left:3252px;
  6376. top:122px;
  6377. width:1000px;
  6378. height:1139px;
  6379. display:flex;
  6380. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6381. font-weight:400;
  6382. font-style:normal;
  6383. font-size:14px;
  6384. color:#AAAAAA;
  6385. text-align:center;
  6386. line-height:30px;
  6387. }
  6388. #u68466 .text {
  6389. position:absolute;
  6390. align-self:center;
  6391. padding:5px 10px 5px 10px;
  6392. box-sizing:border-box;
  6393. width:100%;
  6394. }
  6395. #u68466_text {
  6396. border-width:0px;
  6397. word-wrap:break-word;
  6398. text-transform:none;
  6399. visibility:hidden;
  6400. }
  6401. #u68467_div {
  6402. border-width:0px;
  6403. position:absolute;
  6404. left:0px;
  6405. top:0px;
  6406. width:1000px;
  6407. height:600px;
  6408. background:inherit;
  6409. background-color:rgba(255, 255, 255, 1);
  6410. box-sizing:border-box;
  6411. border-width:1px;
  6412. border-style:solid;
  6413. border-color:rgba(242, 242, 242, 1);
  6414. border-radius:0px;
  6415. -moz-box-shadow:none;
  6416. -webkit-box-shadow:none;
  6417. box-shadow:none;
  6418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6419. font-weight:400;
  6420. font-style:normal;
  6421. font-size:14px;
  6422. color:#AAAAAA;
  6423. text-align:center;
  6424. line-height:30px;
  6425. }
  6426. #u68467 {
  6427. border-width:0px;
  6428. position:absolute;
  6429. left:3252px;
  6430. top:273px;
  6431. width:1000px;
  6432. height:600px;
  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. color:#AAAAAA;
  6439. text-align:center;
  6440. line-height:30px;
  6441. }
  6442. #u68467 .text {
  6443. position:absolute;
  6444. align-self:center;
  6445. padding:5px 10px 5px 10px;
  6446. box-sizing:border-box;
  6447. width:100%;
  6448. }
  6449. #u68467_text {
  6450. border-width:0px;
  6451. word-wrap:break-word;
  6452. text-transform:none;
  6453. visibility:hidden;
  6454. }
  6455. #u68468_div {
  6456. border-width:0px;
  6457. position:absolute;
  6458. left:0px;
  6459. top:0px;
  6460. width:73px;
  6461. height:40px;
  6462. background:inherit;
  6463. background-color:rgba(255, 255, 255, 0);
  6464. border:none;
  6465. border-left:0px;
  6466. border-top:0px;
  6467. border-right:0px;
  6468. border-radius:0px;
  6469. border-bottom-right-radius:0px;
  6470. border-bottom-left-radius:0px;
  6471. -moz-box-shadow:none;
  6472. -webkit-box-shadow:none;
  6473. box-shadow:none;
  6474. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6475. font-weight:400;
  6476. font-style:normal;
  6477. font-size:18px;
  6478. }
  6479. #u68468 {
  6480. border-width:0px;
  6481. position:absolute;
  6482. left:3292px;
  6483. top:289px;
  6484. width:73px;
  6485. height:40px;
  6486. display:flex;
  6487. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6488. font-weight:400;
  6489. font-style:normal;
  6490. font-size:18px;
  6491. }
  6492. #u68468 .text {
  6493. position:absolute;
  6494. align-self:center;
  6495. padding:0px 0px 0px 0px;
  6496. box-sizing:border-box;
  6497. width:100%;
  6498. }
  6499. #u68468_text {
  6500. border-width:0px;
  6501. white-space:nowrap;
  6502. text-transform:none;
  6503. }
  6504. #u68469_div {
  6505. border-width:0px;
  6506. position:absolute;
  6507. left:0px;
  6508. top:0px;
  6509. width:81px;
  6510. height:30px;
  6511. background:inherit;
  6512. background-color:rgba(255, 255, 255, 0);
  6513. border:none;
  6514. border-top:0px;
  6515. border-right:0px;
  6516. border-bottom:0px;
  6517. border-radius:0px;
  6518. border-top-left-radius:0px;
  6519. border-bottom-left-radius:0px;
  6520. -moz-box-shadow:none;
  6521. -webkit-box-shadow:none;
  6522. box-shadow:none;
  6523. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6524. font-weight:400;
  6525. font-style:normal;
  6526. font-size:14px;
  6527. color:#7F7F7F;
  6528. }
  6529. #u68469 {
  6530. border-width:0px;
  6531. position:absolute;
  6532. left:3292px;
  6533. top:339px;
  6534. width:81px;
  6535. height:30px;
  6536. display:flex;
  6537. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6538. font-weight:400;
  6539. font-style:normal;
  6540. font-size:14px;
  6541. color:#7F7F7F;
  6542. }
  6543. #u68469 .text {
  6544. position:absolute;
  6545. align-self:center;
  6546. padding:5px 10px 5px 0px;
  6547. box-sizing:border-box;
  6548. width:100%;
  6549. }
  6550. #u68469_text {
  6551. border-width:0px;
  6552. white-space:nowrap;
  6553. text-transform:none;
  6554. }
  6555. #u68470_div {
  6556. border-width:0px;
  6557. position:absolute;
  6558. left:0px;
  6559. top:0px;
  6560. width:142px;
  6561. height:30px;
  6562. background:inherit;
  6563. background-color:rgba(255, 255, 255, 0);
  6564. border:none;
  6565. border-top:0px;
  6566. border-right:0px;
  6567. border-bottom:0px;
  6568. border-radius:0px;
  6569. border-top-left-radius:0px;
  6570. border-bottom-left-radius:0px;
  6571. -moz-box-shadow:none;
  6572. -webkit-box-shadow:none;
  6573. box-shadow:none;
  6574. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6575. font-weight:400;
  6576. font-style:normal;
  6577. font-size:14px;
  6578. color:#1890FF;
  6579. }
  6580. #u68470 {
  6581. border-width:0px;
  6582. position:absolute;
  6583. left:3373px;
  6584. top:339px;
  6585. width:142px;
  6586. height:30px;
  6587. display:flex;
  6588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6589. font-weight:400;
  6590. font-style:normal;
  6591. font-size:14px;
  6592. color:#1890FF;
  6593. }
  6594. #u68470 .text {
  6595. position:absolute;
  6596. align-self:center;
  6597. padding:5px 10px 5px 0px;
  6598. box-sizing:border-box;
  6599. width:100%;
  6600. }
  6601. #u68470_text {
  6602. border-width:0px;
  6603. white-space:nowrap;
  6604. text-transform:none;
  6605. }
  6606. #u68471_div {
  6607. border-width:0px;
  6608. position:absolute;
  6609. left:0px;
  6610. top:0px;
  6611. width:81px;
  6612. height:30px;
  6613. background:inherit;
  6614. background-color:rgba(255, 255, 255, 0);
  6615. border:none;
  6616. border-top:0px;
  6617. border-right:0px;
  6618. border-bottom:0px;
  6619. border-radius:0px;
  6620. border-top-left-radius:0px;
  6621. border-bottom-left-radius:0px;
  6622. -moz-box-shadow:none;
  6623. -webkit-box-shadow:none;
  6624. box-shadow:none;
  6625. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6626. font-weight:400;
  6627. font-style:normal;
  6628. font-size:14px;
  6629. color:#7F7F7F;
  6630. }
  6631. #u68471 {
  6632. border-width:0px;
  6633. position:absolute;
  6634. left:3612px;
  6635. top:339px;
  6636. width:81px;
  6637. height:30px;
  6638. display:flex;
  6639. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6640. font-weight:400;
  6641. font-style:normal;
  6642. font-size:14px;
  6643. color:#7F7F7F;
  6644. }
  6645. #u68471 .text {
  6646. position:absolute;
  6647. align-self:center;
  6648. padding:5px 10px 5px 0px;
  6649. box-sizing:border-box;
  6650. width:100%;
  6651. }
  6652. #u68471_text {
  6653. border-width:0px;
  6654. white-space:nowrap;
  6655. text-transform:none;
  6656. }
  6657. #u68472_div {
  6658. border-width:0px;
  6659. position:absolute;
  6660. left:0px;
  6661. top:0px;
  6662. width:67px;
  6663. height:30px;
  6664. background:inherit;
  6665. background-color:rgba(255, 255, 255, 0);
  6666. border:none;
  6667. border-top:0px;
  6668. border-right:0px;
  6669. border-bottom:0px;
  6670. border-radius:0px;
  6671. border-top-left-radius:0px;
  6672. border-bottom-left-radius:0px;
  6673. -moz-box-shadow:none;
  6674. -webkit-box-shadow:none;
  6675. box-shadow:none;
  6676. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6677. font-weight:400;
  6678. font-style:normal;
  6679. font-size:14px;
  6680. }
  6681. #u68472 {
  6682. border-width:0px;
  6683. position:absolute;
  6684. left:3693px;
  6685. top:339px;
  6686. width:67px;
  6687. height:30px;
  6688. display:flex;
  6689. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6690. font-weight:400;
  6691. font-style:normal;
  6692. font-size:14px;
  6693. }
  6694. #u68472 .text {
  6695. position:absolute;
  6696. align-self:center;
  6697. padding:5px 10px 5px 0px;
  6698. box-sizing:border-box;
  6699. width:100%;
  6700. }
  6701. #u68472_text {
  6702. border-width:0px;
  6703. white-space:nowrap;
  6704. text-transform:none;
  6705. }
  6706. #u68473_div {
  6707. border-width:0px;
  6708. position:absolute;
  6709. left:0px;
  6710. top:0px;
  6711. width:81px;
  6712. height:30px;
  6713. background:inherit;
  6714. background-color:rgba(255, 255, 255, 0);
  6715. border:none;
  6716. border-top:0px;
  6717. border-right:0px;
  6718. border-bottom:0px;
  6719. border-radius:0px;
  6720. border-top-left-radius:0px;
  6721. border-bottom-left-radius:0px;
  6722. -moz-box-shadow:none;
  6723. -webkit-box-shadow:none;
  6724. box-shadow:none;
  6725. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6726. font-weight:400;
  6727. font-style:normal;
  6728. font-size:14px;
  6729. color:#7F7F7F;
  6730. }
  6731. #u68473 {
  6732. border-width:0px;
  6733. position:absolute;
  6734. left:3909px;
  6735. top:339px;
  6736. width:81px;
  6737. height:30px;
  6738. display:flex;
  6739. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6740. font-weight:400;
  6741. font-style:normal;
  6742. font-size:14px;
  6743. color:#7F7F7F;
  6744. }
  6745. #u68473 .text {
  6746. position:absolute;
  6747. align-self:center;
  6748. padding:5px 10px 5px 0px;
  6749. box-sizing:border-box;
  6750. width:100%;
  6751. }
  6752. #u68473_text {
  6753. border-width:0px;
  6754. white-space:nowrap;
  6755. text-transform:none;
  6756. }
  6757. #u68474_div {
  6758. border-width:0px;
  6759. position:absolute;
  6760. left:0px;
  6761. top:0px;
  6762. width:53px;
  6763. height:30px;
  6764. background:inherit;
  6765. background-color:rgba(255, 255, 255, 0);
  6766. border:none;
  6767. border-top:0px;
  6768. border-right:0px;
  6769. border-bottom:0px;
  6770. border-radius:0px;
  6771. border-top-left-radius:0px;
  6772. border-bottom-left-radius:0px;
  6773. -moz-box-shadow:none;
  6774. -webkit-box-shadow:none;
  6775. box-shadow:none;
  6776. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6777. font-weight:400;
  6778. font-style:normal;
  6779. font-size:14px;
  6780. }
  6781. #u68474 {
  6782. border-width:0px;
  6783. position:absolute;
  6784. left:3990px;
  6785. top:339px;
  6786. width:53px;
  6787. height:30px;
  6788. display:flex;
  6789. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6790. font-weight:400;
  6791. font-style:normal;
  6792. font-size:14px;
  6793. }
  6794. #u68474 .text {
  6795. position:absolute;
  6796. align-self:center;
  6797. padding:5px 10px 5px 0px;
  6798. box-sizing:border-box;
  6799. width:100%;
  6800. }
  6801. #u68474_text {
  6802. border-width:0px;
  6803. white-space:nowrap;
  6804. text-transform:none;
  6805. }
  6806. #u68475_div {
  6807. border-width:0px;
  6808. position:absolute;
  6809. left:0px;
  6810. top:0px;
  6811. width:81px;
  6812. height:30px;
  6813. background:inherit;
  6814. background-color:rgba(255, 255, 255, 0);
  6815. border:none;
  6816. border-top:0px;
  6817. border-right:0px;
  6818. border-bottom:0px;
  6819. border-radius:0px;
  6820. border-top-left-radius:0px;
  6821. border-bottom-left-radius:0px;
  6822. -moz-box-shadow:none;
  6823. -webkit-box-shadow:none;
  6824. box-shadow:none;
  6825. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6826. font-weight:400;
  6827. font-style:normal;
  6828. font-size:14px;
  6829. color:#7F7F7F;
  6830. }
  6831. #u68475 {
  6832. border-width:0px;
  6833. position:absolute;
  6834. left:3292px;
  6835. top:379px;
  6836. width:81px;
  6837. height:30px;
  6838. display:flex;
  6839. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6840. font-weight:400;
  6841. font-style:normal;
  6842. font-size:14px;
  6843. color:#7F7F7F;
  6844. }
  6845. #u68475 .text {
  6846. position:absolute;
  6847. align-self:center;
  6848. padding:5px 10px 5px 0px;
  6849. box-sizing:border-box;
  6850. width:100%;
  6851. }
  6852. #u68475_text {
  6853. border-width:0px;
  6854. white-space:nowrap;
  6855. text-transform:none;
  6856. }
  6857. #u68476_div {
  6858. border-width:0px;
  6859. position:absolute;
  6860. left:0px;
  6861. top:0px;
  6862. width:81px;
  6863. height:30px;
  6864. background:inherit;
  6865. background-color:rgba(255, 255, 255, 0);
  6866. border:none;
  6867. border-top:0px;
  6868. border-right:0px;
  6869. border-bottom:0px;
  6870. border-radius:0px;
  6871. border-top-left-radius:0px;
  6872. border-bottom-left-radius:0px;
  6873. -moz-box-shadow:none;
  6874. -webkit-box-shadow:none;
  6875. box-shadow:none;
  6876. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6877. font-weight:400;
  6878. font-style:normal;
  6879. font-size:14px;
  6880. color:#7F7F7F;
  6881. }
  6882. #u68476 {
  6883. border-width:0px;
  6884. position:absolute;
  6885. left:3612px;
  6886. top:379px;
  6887. width:81px;
  6888. height:30px;
  6889. display:flex;
  6890. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6891. font-weight:400;
  6892. font-style:normal;
  6893. font-size:14px;
  6894. color:#7F7F7F;
  6895. }
  6896. #u68476 .text {
  6897. position:absolute;
  6898. align-self:center;
  6899. padding:5px 10px 5px 0px;
  6900. box-sizing:border-box;
  6901. width:100%;
  6902. }
  6903. #u68476_text {
  6904. border-width:0px;
  6905. white-space:nowrap;
  6906. text-transform:none;
  6907. }
  6908. #u68477_div {
  6909. border-width:0px;
  6910. position:absolute;
  6911. left:0px;
  6912. top:0px;
  6913. width:67px;
  6914. height:30px;
  6915. background:inherit;
  6916. background-color:rgba(255, 255, 255, 0);
  6917. border:none;
  6918. border-top:0px;
  6919. border-right:0px;
  6920. border-bottom:0px;
  6921. border-radius:0px;
  6922. border-top-left-radius:0px;
  6923. border-bottom-left-radius:0px;
  6924. -moz-box-shadow:none;
  6925. -webkit-box-shadow:none;
  6926. box-shadow:none;
  6927. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6928. font-weight:400;
  6929. font-style:normal;
  6930. font-size:14px;
  6931. }
  6932. #u68477 {
  6933. border-width:0px;
  6934. position:absolute;
  6935. left:3693px;
  6936. top:379px;
  6937. width:67px;
  6938. height:30px;
  6939. display:flex;
  6940. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6941. font-weight:400;
  6942. font-style:normal;
  6943. font-size:14px;
  6944. }
  6945. #u68477 .text {
  6946. position:absolute;
  6947. align-self:center;
  6948. padding:5px 10px 5px 0px;
  6949. box-sizing:border-box;
  6950. width:100%;
  6951. }
  6952. #u68477_text {
  6953. border-width:0px;
  6954. white-space:nowrap;
  6955. text-transform:none;
  6956. }
  6957. #u68478_div {
  6958. border-width:0px;
  6959. position:absolute;
  6960. left:0px;
  6961. top:0px;
  6962. width:67px;
  6963. height:30px;
  6964. background:inherit;
  6965. background-color:rgba(255, 255, 255, 0);
  6966. border:none;
  6967. border-top:0px;
  6968. border-right:0px;
  6969. border-bottom:0px;
  6970. border-radius:0px;
  6971. border-top-left-radius:0px;
  6972. border-bottom-left-radius:0px;
  6973. -moz-box-shadow:none;
  6974. -webkit-box-shadow:none;
  6975. box-shadow:none;
  6976. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6977. font-weight:400;
  6978. font-style:normal;
  6979. font-size:14px;
  6980. color:#7F7F7F;
  6981. }
  6982. #u68478 {
  6983. border-width:0px;
  6984. position:absolute;
  6985. left:3909px;
  6986. top:379px;
  6987. width:67px;
  6988. height:30px;
  6989. display:flex;
  6990. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6991. font-weight:400;
  6992. font-style:normal;
  6993. font-size:14px;
  6994. color:#7F7F7F;
  6995. }
  6996. #u68478 .text {
  6997. position:absolute;
  6998. align-self:center;
  6999. padding:5px 10px 5px 0px;
  7000. box-sizing:border-box;
  7001. width:100%;
  7002. }
  7003. #u68478_text {
  7004. border-width:0px;
  7005. white-space:nowrap;
  7006. text-transform:none;
  7007. }
  7008. #u68479_div {
  7009. border-width:0px;
  7010. position:absolute;
  7011. left:0px;
  7012. top:0px;
  7013. width:85px;
  7014. height:30px;
  7015. background:inherit;
  7016. background-color:rgba(255, 255, 255, 0);
  7017. border:none;
  7018. border-top:0px;
  7019. border-right:0px;
  7020. border-bottom:0px;
  7021. border-radius:0px;
  7022. border-top-left-radius:0px;
  7023. border-bottom-left-radius:0px;
  7024. -moz-box-shadow:none;
  7025. -webkit-box-shadow:none;
  7026. box-shadow:none;
  7027. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7028. font-weight:400;
  7029. font-style:normal;
  7030. font-size:14px;
  7031. }
  7032. #u68479 {
  7033. border-width:0px;
  7034. position:absolute;
  7035. left:3990px;
  7036. top:379px;
  7037. width:85px;
  7038. height:30px;
  7039. display:flex;
  7040. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7041. font-weight:400;
  7042. font-style:normal;
  7043. font-size:14px;
  7044. }
  7045. #u68479 .text {
  7046. position:absolute;
  7047. align-self:center;
  7048. padding:5px 10px 5px 0px;
  7049. box-sizing:border-box;
  7050. width:100%;
  7051. }
  7052. #u68479_text {
  7053. border-width:0px;
  7054. white-space:nowrap;
  7055. text-transform:none;
  7056. }
  7057. #u68480_div {
  7058. border-width:0px;
  7059. position:absolute;
  7060. left:0px;
  7061. top:0px;
  7062. width:183px;
  7063. height:30px;
  7064. background:inherit;
  7065. background-color:rgba(255, 255, 255, 0);
  7066. border:none;
  7067. border-top:0px;
  7068. border-right:0px;
  7069. border-bottom:0px;
  7070. border-radius:0px;
  7071. border-top-left-radius:0px;
  7072. border-bottom-left-radius:0px;
  7073. -moz-box-shadow:none;
  7074. -webkit-box-shadow:none;
  7075. box-shadow:none;
  7076. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7077. font-weight:400;
  7078. font-style:normal;
  7079. font-size:14px;
  7080. }
  7081. #u68480 {
  7082. border-width:0px;
  7083. position:absolute;
  7084. left:3373px;
  7085. top:379px;
  7086. width:183px;
  7087. height:30px;
  7088. display:flex;
  7089. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7090. font-weight:400;
  7091. font-style:normal;
  7092. font-size:14px;
  7093. }
  7094. #u68480 .text {
  7095. position:absolute;
  7096. align-self:center;
  7097. padding:5px 10px 5px 0px;
  7098. box-sizing:border-box;
  7099. width:100%;
  7100. }
  7101. #u68480_text {
  7102. border-width:0px;
  7103. white-space:nowrap;
  7104. text-transform:none;
  7105. }
  7106. #u68481_div {
  7107. border-width:0px;
  7108. position:absolute;
  7109. left:0px;
  7110. top:0px;
  7111. width:81px;
  7112. height:30px;
  7113. background:inherit;
  7114. background-color:rgba(255, 255, 255, 0);
  7115. border:none;
  7116. border-top:0px;
  7117. border-right:0px;
  7118. border-bottom:0px;
  7119. border-radius:0px;
  7120. border-top-left-radius:0px;
  7121. border-bottom-left-radius:0px;
  7122. -moz-box-shadow:none;
  7123. -webkit-box-shadow:none;
  7124. box-shadow:none;
  7125. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7126. font-weight:400;
  7127. font-style:normal;
  7128. font-size:14px;
  7129. color:#7F7F7F;
  7130. }
  7131. #u68481 {
  7132. border-width:0px;
  7133. position:absolute;
  7134. left:3292px;
  7135. top:419px;
  7136. width:81px;
  7137. height:30px;
  7138. display:flex;
  7139. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7140. font-weight:400;
  7141. font-style:normal;
  7142. font-size:14px;
  7143. color:#7F7F7F;
  7144. }
  7145. #u68481 .text {
  7146. position:absolute;
  7147. align-self:center;
  7148. padding:5px 10px 5px 0px;
  7149. box-sizing:border-box;
  7150. width:100%;
  7151. }
  7152. #u68481_text {
  7153. border-width:0px;
  7154. white-space:nowrap;
  7155. text-transform:none;
  7156. }
  7157. #u68482_div {
  7158. border-width:0px;
  7159. position:absolute;
  7160. left:0px;
  7161. top:0px;
  7162. width:126px;
  7163. height:30px;
  7164. background:inherit;
  7165. background-color:rgba(255, 255, 255, 0);
  7166. border:none;
  7167. border-top:0px;
  7168. border-right:0px;
  7169. border-bottom:0px;
  7170. border-radius:0px;
  7171. border-top-left-radius:0px;
  7172. border-bottom-left-radius:0px;
  7173. -moz-box-shadow:none;
  7174. -webkit-box-shadow:none;
  7175. box-shadow:none;
  7176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7177. font-weight:400;
  7178. font-style:normal;
  7179. font-size:14px;
  7180. }
  7181. #u68482 {
  7182. border-width:0px;
  7183. position:absolute;
  7184. left:3373px;
  7185. top:419px;
  7186. width:126px;
  7187. height:30px;
  7188. display:flex;
  7189. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7190. font-weight:400;
  7191. font-style:normal;
  7192. font-size:14px;
  7193. }
  7194. #u68482 .text {
  7195. position:absolute;
  7196. align-self:center;
  7197. padding:5px 10px 5px 0px;
  7198. box-sizing:border-box;
  7199. width:100%;
  7200. }
  7201. #u68482_text {
  7202. border-width:0px;
  7203. white-space:nowrap;
  7204. text-transform:none;
  7205. }
  7206. #u68483_div {
  7207. border-width:0px;
  7208. position:absolute;
  7209. left:0px;
  7210. top:0px;
  7211. width:81px;
  7212. height:30px;
  7213. background:inherit;
  7214. background-color:rgba(255, 255, 255, 0);
  7215. border:none;
  7216. border-top:0px;
  7217. border-right:0px;
  7218. border-bottom:0px;
  7219. border-radius:0px;
  7220. border-top-left-radius:0px;
  7221. border-bottom-left-radius:0px;
  7222. -moz-box-shadow:none;
  7223. -webkit-box-shadow:none;
  7224. box-shadow:none;
  7225. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7226. font-weight:400;
  7227. font-style:normal;
  7228. font-size:14px;
  7229. color:#7F7F7F;
  7230. }
  7231. #u68483 {
  7232. border-width:0px;
  7233. position:absolute;
  7234. left:3292px;
  7235. top:459px;
  7236. width:81px;
  7237. height:30px;
  7238. display:flex;
  7239. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7240. font-weight:400;
  7241. font-style:normal;
  7242. font-size:14px;
  7243. color:#7F7F7F;
  7244. }
  7245. #u68483 .text {
  7246. position:absolute;
  7247. align-self:center;
  7248. padding:5px 10px 5px 0px;
  7249. box-sizing:border-box;
  7250. width:100%;
  7251. }
  7252. #u68483_text {
  7253. border-width:0px;
  7254. white-space:nowrap;
  7255. text-transform:none;
  7256. }
  7257. #u68484_div {
  7258. border-width:0px;
  7259. position:absolute;
  7260. left:0px;
  7261. top:0px;
  7262. width:263px;
  7263. height:30px;
  7264. background:inherit;
  7265. background-color:rgba(255, 255, 255, 0);
  7266. border:none;
  7267. border-top:0px;
  7268. border-right:0px;
  7269. border-bottom:0px;
  7270. border-radius:0px;
  7271. border-top-left-radius:0px;
  7272. border-bottom-left-radius:0px;
  7273. -moz-box-shadow:none;
  7274. -webkit-box-shadow:none;
  7275. box-shadow:none;
  7276. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7277. font-weight:400;
  7278. font-style:normal;
  7279. font-size:14px;
  7280. }
  7281. #u68484 {
  7282. border-width:0px;
  7283. position:absolute;
  7284. left:3373px;
  7285. top:459px;
  7286. width:263px;
  7287. height:30px;
  7288. display:flex;
  7289. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7290. font-weight:400;
  7291. font-style:normal;
  7292. font-size:14px;
  7293. }
  7294. #u68484 .text {
  7295. position:absolute;
  7296. align-self:center;
  7297. padding:5px 10px 5px 0px;
  7298. box-sizing:border-box;
  7299. width:100%;
  7300. }
  7301. #u68484_text {
  7302. border-width:0px;
  7303. white-space:nowrap;
  7304. text-transform:none;
  7305. }
  7306. #u68485_img {
  7307. border-width:0px;
  7308. position:absolute;
  7309. left:0px;
  7310. top:0px;
  7311. width:942px;
  7312. height:2px;
  7313. }
  7314. #u68485 {
  7315. border-width:0px;
  7316. position:absolute;
  7317. left:3292px;
  7318. top:507px;
  7319. width:941px;
  7320. height:1px;
  7321. display:flex;
  7322. }
  7323. #u68485 .text {
  7324. position:absolute;
  7325. align-self:center;
  7326. padding:2px 2px 2px 2px;
  7327. box-sizing:border-box;
  7328. width:100%;
  7329. }
  7330. #u68485_text {
  7331. border-width:0px;
  7332. word-wrap:break-word;
  7333. text-transform:none;
  7334. visibility:hidden;
  7335. }
  7336. #u68486_div {
  7337. border-width:0px;
  7338. position:absolute;
  7339. left:0px;
  7340. top:0px;
  7341. width:1000px;
  7342. height:200px;
  7343. background:inherit;
  7344. background-color:rgba(255, 255, 255, 1);
  7345. box-sizing:border-box;
  7346. border-width:1px;
  7347. border-style:solid;
  7348. border-color:rgba(215, 215, 215, 1);
  7349. border-radius:0px;
  7350. -moz-box-shadow:none;
  7351. -webkit-box-shadow:none;
  7352. box-shadow:none;
  7353. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7354. font-weight:400;
  7355. font-style:normal;
  7356. font-size:14px;
  7357. color:#AAAAAA;
  7358. text-align:center;
  7359. line-height:30px;
  7360. }
  7361. #u68486 {
  7362. border-width:0px;
  7363. position:absolute;
  7364. left:3253px;
  7365. top:62px;
  7366. width:1000px;
  7367. height:200px;
  7368. display:flex;
  7369. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7370. font-weight:400;
  7371. font-style:normal;
  7372. font-size:14px;
  7373. color:#AAAAAA;
  7374. text-align:center;
  7375. line-height:30px;
  7376. }
  7377. #u68486 .text {
  7378. position:absolute;
  7379. align-self:center;
  7380. padding:5px 10px 5px 10px;
  7381. box-sizing:border-box;
  7382. width:100%;
  7383. }
  7384. #u68486_text {
  7385. border-width:0px;
  7386. word-wrap:break-word;
  7387. text-transform:none;
  7388. visibility:hidden;
  7389. }
  7390. #u68487_div {
  7391. border-width:0px;
  7392. position:absolute;
  7393. left:0px;
  7394. top:0px;
  7395. width:155px;
  7396. height:35px;
  7397. background:inherit;
  7398. background-color:rgba(255, 255, 255, 0);
  7399. border:none;
  7400. border-top:0px;
  7401. border-right:0px;
  7402. border-bottom:0px;
  7403. border-radius:0px;
  7404. border-top-left-radius:0px;
  7405. border-bottom-left-radius:0px;
  7406. -moz-box-shadow:none;
  7407. -webkit-box-shadow:none;
  7408. box-shadow:none;
  7409. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7410. font-weight:500;
  7411. font-style:normal;
  7412. font-size:18px;
  7413. }
  7414. #u68487 {
  7415. border-width:0px;
  7416. position:absolute;
  7417. left:3273px;
  7418. top:80px;
  7419. width:155px;
  7420. height:35px;
  7421. display:flex;
  7422. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7423. font-weight:500;
  7424. font-style:normal;
  7425. font-size:18px;
  7426. }
  7427. #u68487 .text {
  7428. position:absolute;
  7429. align-self:center;
  7430. padding:5px 10px 5px 0px;
  7431. box-sizing:border-box;
  7432. width:100%;
  7433. }
  7434. #u68487_text {
  7435. border-width:0px;
  7436. white-space:nowrap;
  7437. text-transform:none;
  7438. }
  7439. #u68488_div {
  7440. border-width:0px;
  7441. position:absolute;
  7442. left:0px;
  7443. top:0px;
  7444. width:146px;
  7445. height:43px;
  7446. background:inherit;
  7447. background-color:rgba(255, 255, 255, 0);
  7448. border:none;
  7449. border-top:0px;
  7450. border-right:0px;
  7451. border-bottom:0px;
  7452. border-radius:0px;
  7453. border-top-left-radius:0px;
  7454. border-bottom-left-radius:0px;
  7455. -moz-box-shadow:none;
  7456. -webkit-box-shadow:none;
  7457. box-shadow:none;
  7458. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7459. font-weight:500;
  7460. font-style:normal;
  7461. font-size:24px;
  7462. }
  7463. #u68488 {
  7464. border-width:0px;
  7465. position:absolute;
  7466. left:3283px;
  7467. top:131px;
  7468. width:146px;
  7469. height:43px;
  7470. display:flex;
  7471. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7472. font-weight:500;
  7473. font-style:normal;
  7474. font-size:24px;
  7475. }
  7476. #u68488 .text {
  7477. position:absolute;
  7478. align-self:center;
  7479. padding:5px 10px 5px 0px;
  7480. box-sizing:border-box;
  7481. width:100%;
  7482. }
  7483. #u68488_text {
  7484. border-width:0px;
  7485. white-space:nowrap;
  7486. text-transform:none;
  7487. }
  7488. #u68489_img {
  7489. border-width:0px;
  7490. position:absolute;
  7491. left:0px;
  7492. top:0px;
  7493. width:108px;
  7494. height:108px;
  7495. }
  7496. #u68489 {
  7497. border-width:0px;
  7498. position:absolute;
  7499. left:4103px;
  7500. top:132px;
  7501. width:108px;
  7502. height:108px;
  7503. display:flex;
  7504. -webkit-transform:rotate(315deg);
  7505. -moz-transform:rotate(315deg);
  7506. -ms-transform:rotate(315deg);
  7507. transform:rotate(315deg);
  7508. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7509. font-weight:400;
  7510. font-style:normal;
  7511. font-size:28px;
  7512. color:#F59A23;
  7513. }
  7514. #u68489 .text {
  7515. position:absolute;
  7516. align-self:center;
  7517. padding:2px 2px 2px 2px;
  7518. box-sizing:border-box;
  7519. width:100%;
  7520. }
  7521. #u68489_text {
  7522. border-width:0px;
  7523. word-wrap:break-word;
  7524. text-transform:none;
  7525. }
  7526. #u68490_div {
  7527. border-width:0px;
  7528. position:absolute;
  7529. left:0px;
  7530. top:0px;
  7531. width:325px;
  7532. height:60px;
  7533. background:inherit;
  7534. background-color:rgba(255, 255, 255, 0);
  7535. border:none;
  7536. border-left:0px;
  7537. border-top:0px;
  7538. border-right:0px;
  7539. border-radius:0px;
  7540. border-bottom-right-radius:0px;
  7541. border-bottom-left-radius:0px;
  7542. -moz-box-shadow:none;
  7543. -webkit-box-shadow:none;
  7544. box-shadow:none;
  7545. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7546. font-weight:400;
  7547. font-style:normal;
  7548. font-size:14px;
  7549. line-height:30px;
  7550. }
  7551. #u68490 {
  7552. border-width:0px;
  7553. position:absolute;
  7554. left:3283px;
  7555. top:186px;
  7556. width:325px;
  7557. height:60px;
  7558. display:flex;
  7559. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7560. font-weight:400;
  7561. font-style:normal;
  7562. font-size:14px;
  7563. line-height:30px;
  7564. }
  7565. #u68490 .text {
  7566. position:absolute;
  7567. align-self:flex-start;
  7568. padding:0px 0px 0px 0px;
  7569. box-sizing:border-box;
  7570. width:100%;
  7571. }
  7572. #u68490_text {
  7573. border-width:0px;
  7574. word-wrap:break-word;
  7575. text-transform:none;
  7576. }
  7577. #u68491_img {
  7578. border-width:0px;
  7579. position:absolute;
  7580. left:0px;
  7581. top:0px;
  7582. width:17px;
  7583. height:17px;
  7584. }
  7585. #u68491 {
  7586. border-width:0px;
  7587. position:absolute;
  7588. left:4225px;
  7589. top:84px;
  7590. width:17px;
  7591. height:17px;
  7592. display:flex;
  7593. }
  7594. #u68491 .text {
  7595. position:absolute;
  7596. align-self:center;
  7597. padding:2px 2px 2px 2px;
  7598. box-sizing:border-box;
  7599. width:100%;
  7600. }
  7601. #u68491_text {
  7602. border-width:0px;
  7603. word-wrap:break-word;
  7604. text-transform:none;
  7605. visibility:hidden;
  7606. }
  7607. #u68492_div {
  7608. border-width:0px;
  7609. position:absolute;
  7610. left:0px;
  7611. top:0px;
  7612. width:1000px;
  7613. height:378px;
  7614. background:inherit;
  7615. background-color:rgba(255, 255, 255, 1);
  7616. box-sizing:border-box;
  7617. border-width:1px;
  7618. border-style:solid;
  7619. border-color:rgba(242, 242, 242, 1);
  7620. border-radius:0px;
  7621. -moz-box-shadow:none;
  7622. -webkit-box-shadow:none;
  7623. box-shadow:none;
  7624. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7625. font-weight:400;
  7626. font-style:normal;
  7627. font-size:14px;
  7628. color:#AAAAAA;
  7629. text-align:center;
  7630. line-height:30px;
  7631. }
  7632. #u68492 {
  7633. border-width:0px;
  7634. position:absolute;
  7635. left:3252px;
  7636. top:883px;
  7637. width:1000px;
  7638. height:378px;
  7639. display:flex;
  7640. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7641. font-weight:400;
  7642. font-style:normal;
  7643. font-size:14px;
  7644. color:#AAAAAA;
  7645. text-align:center;
  7646. line-height:30px;
  7647. }
  7648. #u68492 .text {
  7649. position:absolute;
  7650. align-self:center;
  7651. padding:5px 10px 5px 10px;
  7652. box-sizing:border-box;
  7653. width:100%;
  7654. }
  7655. #u68492_text {
  7656. border-width:0px;
  7657. word-wrap:break-word;
  7658. text-transform:none;
  7659. visibility:hidden;
  7660. }
  7661. #u68493_div {
  7662. border-width:0px;
  7663. position:absolute;
  7664. left:0px;
  7665. top:0px;
  7666. width:73px;
  7667. height:40px;
  7668. background:inherit;
  7669. background-color:rgba(255, 255, 255, 0);
  7670. border:none;
  7671. border-left:0px;
  7672. border-top:0px;
  7673. border-right:0px;
  7674. border-radius:0px;
  7675. border-bottom-right-radius:0px;
  7676. border-bottom-left-radius:0px;
  7677. -moz-box-shadow:none;
  7678. -webkit-box-shadow:none;
  7679. box-shadow:none;
  7680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7681. font-weight:400;
  7682. font-style:normal;
  7683. font-size:18px;
  7684. }
  7685. #u68493 {
  7686. border-width:0px;
  7687. position:absolute;
  7688. left:3292px;
  7689. top:899px;
  7690. width:73px;
  7691. height:40px;
  7692. display:flex;
  7693. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7694. font-weight:400;
  7695. font-style:normal;
  7696. font-size:18px;
  7697. }
  7698. #u68493 .text {
  7699. position:absolute;
  7700. align-self:center;
  7701. padding:0px 0px 0px 0px;
  7702. box-sizing:border-box;
  7703. width:100%;
  7704. }
  7705. #u68493_text {
  7706. border-width:0px;
  7707. white-space:nowrap;
  7708. text-transform:none;
  7709. }
  7710. #u68494 {
  7711. border-width:0px;
  7712. position:absolute;
  7713. left:0px;
  7714. top:0px;
  7715. width:0px;
  7716. height:0px;
  7717. }
  7718. #u68495_div {
  7719. border-width:0px;
  7720. position:absolute;
  7721. left:0px;
  7722. top:0px;
  7723. width:1000px;
  7724. height:60px;
  7725. background:inherit;
  7726. background-color:rgba(255, 255, 255, 1);
  7727. box-sizing:border-box;
  7728. border-width:1px;
  7729. border-style:solid;
  7730. border-color:rgba(215, 215, 215, 1);
  7731. border-radius:0px;
  7732. -moz-box-shadow:none;
  7733. -webkit-box-shadow:none;
  7734. box-shadow:none;
  7735. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7736. font-weight:400;
  7737. font-style:normal;
  7738. font-size:14px;
  7739. color:#AAAAAA;
  7740. text-align:center;
  7741. line-height:30px;
  7742. }
  7743. #u68495 {
  7744. border-width:0px;
  7745. position:absolute;
  7746. left:3252px;
  7747. top:1201px;
  7748. width:1000px;
  7749. height:60px;
  7750. display:flex;
  7751. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7752. font-weight:400;
  7753. font-style:normal;
  7754. font-size:14px;
  7755. color:#AAAAAA;
  7756. text-align:center;
  7757. line-height:30px;
  7758. }
  7759. #u68495 .text {
  7760. position:absolute;
  7761. align-self:center;
  7762. padding:5px 10px 5px 10px;
  7763. box-sizing:border-box;
  7764. width:100%;
  7765. }
  7766. #u68495_text {
  7767. border-width:0px;
  7768. word-wrap:break-word;
  7769. text-transform:none;
  7770. visibility:hidden;
  7771. }
  7772. #u68496_div {
  7773. border-width:0px;
  7774. position:absolute;
  7775. left:0px;
  7776. top:0px;
  7777. width:80px;
  7778. height:30px;
  7779. background:inherit;
  7780. background-color:rgba(255, 255, 255, 1);
  7781. box-sizing:border-box;
  7782. border-width:1px;
  7783. border-style:solid;
  7784. border-color:rgba(170, 170, 170, 1);
  7785. border-radius:4px;
  7786. -moz-box-shadow:none;
  7787. -webkit-box-shadow:none;
  7788. box-shadow:none;
  7789. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7790. font-weight:400;
  7791. font-style:normal;
  7792. font-size:14px;
  7793. }
  7794. #u68496 {
  7795. border-width:0px;
  7796. position:absolute;
  7797. left:4153px;
  7798. top:1216px;
  7799. width:80px;
  7800. height:30px;
  7801. display:flex;
  7802. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7803. font-weight:400;
  7804. font-style:normal;
  7805. font-size:14px;
  7806. }
  7807. #u68496 .text {
  7808. position:absolute;
  7809. align-self:center;
  7810. padding:2px 2px 2px 2px;
  7811. box-sizing:border-box;
  7812. width:100%;
  7813. }
  7814. #u68496_text {
  7815. border-width:0px;
  7816. word-wrap:break-word;
  7817. text-transform:none;
  7818. }
  7819. #u68497_div {
  7820. border-width:0px;
  7821. position:absolute;
  7822. left:0px;
  7823. top:0px;
  7824. width:81px;
  7825. height:30px;
  7826. background:inherit;
  7827. background-color:rgba(255, 255, 255, 0);
  7828. border:none;
  7829. border-top:0px;
  7830. border-right:0px;
  7831. border-bottom:0px;
  7832. border-radius:0px;
  7833. border-top-left-radius:0px;
  7834. border-bottom-left-radius:0px;
  7835. -moz-box-shadow:none;
  7836. -webkit-box-shadow:none;
  7837. box-shadow:none;
  7838. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7839. font-weight:400;
  7840. font-style:normal;
  7841. font-size:14px;
  7842. color:#7F7F7F;
  7843. }
  7844. #u68497 {
  7845. border-width:0px;
  7846. position:absolute;
  7847. left:3292px;
  7848. top:949px;
  7849. width:81px;
  7850. height:30px;
  7851. display:flex;
  7852. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7853. font-weight:400;
  7854. font-style:normal;
  7855. font-size:14px;
  7856. color:#7F7F7F;
  7857. }
  7858. #u68497 .text {
  7859. position:absolute;
  7860. align-self:center;
  7861. padding:5px 10px 5px 0px;
  7862. box-sizing:border-box;
  7863. width:100%;
  7864. }
  7865. #u68497_text {
  7866. border-width:0px;
  7867. white-space:nowrap;
  7868. text-transform:none;
  7869. }
  7870. #u68498_div {
  7871. border-width:0px;
  7872. position:absolute;
  7873. left:0px;
  7874. top:0px;
  7875. width:67px;
  7876. height:30px;
  7877. background:inherit;
  7878. background-color:rgba(255, 255, 255, 0);
  7879. border:none;
  7880. border-top:0px;
  7881. border-right:0px;
  7882. border-bottom:0px;
  7883. border-radius:0px;
  7884. border-top-left-radius:0px;
  7885. border-bottom-left-radius:0px;
  7886. -moz-box-shadow:none;
  7887. -webkit-box-shadow:none;
  7888. box-shadow:none;
  7889. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7890. font-weight:400;
  7891. font-style:normal;
  7892. font-size:14px;
  7893. }
  7894. #u68498 {
  7895. border-width:0px;
  7896. position:absolute;
  7897. left:3373px;
  7898. top:949px;
  7899. width:67px;
  7900. height:30px;
  7901. display:flex;
  7902. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7903. font-weight:400;
  7904. font-style:normal;
  7905. font-size:14px;
  7906. }
  7907. #u68498 .text {
  7908. position:absolute;
  7909. align-self:center;
  7910. padding:5px 10px 5px 0px;
  7911. box-sizing:border-box;
  7912. width:100%;
  7913. }
  7914. #u68498_text {
  7915. border-width:0px;
  7916. white-space:nowrap;
  7917. text-transform:none;
  7918. }
  7919. #u68499_div {
  7920. border-width:0px;
  7921. position:absolute;
  7922. left:0px;
  7923. top:0px;
  7924. width:81px;
  7925. height:30px;
  7926. background:inherit;
  7927. background-color:rgba(255, 255, 255, 0);
  7928. border:none;
  7929. border-top:0px;
  7930. border-right:0px;
  7931. border-bottom:0px;
  7932. border-radius:0px;
  7933. border-top-left-radius:0px;
  7934. border-bottom-left-radius:0px;
  7935. -moz-box-shadow:none;
  7936. -webkit-box-shadow:none;
  7937. box-shadow:none;
  7938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7939. font-weight:400;
  7940. font-style:normal;
  7941. font-size:14px;
  7942. color:#7F7F7F;
  7943. }
  7944. #u68499 {
  7945. border-width:0px;
  7946. position:absolute;
  7947. left:3612px;
  7948. top:949px;
  7949. width:81px;
  7950. height:30px;
  7951. display:flex;
  7952. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7953. font-weight:400;
  7954. font-style:normal;
  7955. font-size:14px;
  7956. color:#7F7F7F;
  7957. }
  7958. #u68499 .text {
  7959. position:absolute;
  7960. align-self:center;
  7961. padding:5px 10px 5px 0px;
  7962. box-sizing:border-box;
  7963. width:100%;
  7964. }
  7965. #u68499_text {
  7966. border-width:0px;
  7967. white-space:nowrap;
  7968. text-transform:none;
  7969. }
  7970. #u68500_div {
  7971. border-width:0px;
  7972. position:absolute;
  7973. left:0px;
  7974. top:0px;
  7975. width:152px;
  7976. height:50px;
  7977. background:inherit;
  7978. background-color:rgba(255, 255, 255, 0);
  7979. border:none;
  7980. border-top:0px;
  7981. border-right:0px;
  7982. border-bottom:0px;
  7983. border-radius:0px;
  7984. border-top-left-radius:0px;
  7985. border-bottom-left-radius:0px;
  7986. -moz-box-shadow:none;
  7987. -webkit-box-shadow:none;
  7988. box-shadow:none;
  7989. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7990. font-weight:400;
  7991. font-style:normal;
  7992. font-size:14px;
  7993. line-height:40px;
  7994. }
  7995. #u68500 {
  7996. border-width:0px;
  7997. position:absolute;
  7998. left:3693px;
  7999. top:939px;
  8000. width:152px;
  8001. height:50px;
  8002. display:flex;
  8003. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8004. font-weight:400;
  8005. font-style:normal;
  8006. font-size:14px;
  8007. line-height:40px;
  8008. }
  8009. #u68500 .text {
  8010. position:absolute;
  8011. align-self:center;
  8012. padding:5px 10px 5px 0px;
  8013. box-sizing:border-box;
  8014. width:100%;
  8015. }
  8016. #u68500_text {
  8017. border-width:0px;
  8018. white-space:nowrap;
  8019. text-transform:none;
  8020. }
  8021. #u68501 {
  8022. border-width:0px;
  8023. position:absolute;
  8024. left:0px;
  8025. top:0px;
  8026. width:0px;
  8027. height:0px;
  8028. }
  8029. #u68502_div {
  8030. border-width:0px;
  8031. position:absolute;
  8032. left:0px;
  8033. top:0px;
  8034. width:930px;
  8035. height:210px;
  8036. background:inherit;
  8037. background-color:rgba(242, 242, 242, 1);
  8038. border:none;
  8039. border-radius:0px;
  8040. -moz-box-shadow:none;
  8041. -webkit-box-shadow:none;
  8042. box-shadow:none;
  8043. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8044. font-weight:400;
  8045. font-style:normal;
  8046. font-size:14px;
  8047. color:#AAAAAA;
  8048. text-align:center;
  8049. line-height:30px;
  8050. }
  8051. #u68502 {
  8052. border-width:0px;
  8053. position:absolute;
  8054. left:3292px;
  8055. top:641px;
  8056. width:930px;
  8057. height:210px;
  8058. display:flex;
  8059. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8060. font-weight:400;
  8061. font-style:normal;
  8062. font-size:14px;
  8063. color:#AAAAAA;
  8064. text-align:center;
  8065. line-height:30px;
  8066. }
  8067. #u68502 .text {
  8068. position:absolute;
  8069. align-self:center;
  8070. padding:5px 10px 5px 10px;
  8071. box-sizing:border-box;
  8072. width:100%;
  8073. }
  8074. #u68502_text {
  8075. border-width:0px;
  8076. word-wrap:break-word;
  8077. text-transform:none;
  8078. visibility:hidden;
  8079. }
  8080. #u68503_div {
  8081. border-width:0px;
  8082. position:absolute;
  8083. left:0px;
  8084. top:0px;
  8085. width:80px;
  8086. height:40px;
  8087. background:inherit;
  8088. background-color:rgba(255, 255, 255, 0);
  8089. border:none;
  8090. border-top:0px;
  8091. border-right:0px;
  8092. border-bottom:0px;
  8093. border-radius:0px;
  8094. border-top-left-radius:0px;
  8095. border-bottom-left-radius:0px;
  8096. -moz-box-shadow:none;
  8097. -webkit-box-shadow:none;
  8098. box-shadow:none;
  8099. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8100. font-weight:400;
  8101. font-style:normal;
  8102. font-size:14px;
  8103. color:#7F7F7F;
  8104. line-height:40px;
  8105. }
  8106. #u68503 {
  8107. border-width:0px;
  8108. position:absolute;
  8109. left:3315px;
  8110. top:661px;
  8111. width:80px;
  8112. height:40px;
  8113. display:flex;
  8114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8115. font-weight:400;
  8116. font-style:normal;
  8117. font-size:14px;
  8118. color:#7F7F7F;
  8119. line-height:40px;
  8120. }
  8121. #u68503 .text {
  8122. position:absolute;
  8123. align-self:center;
  8124. padding:0px 0px 0px 0px;
  8125. box-sizing:border-box;
  8126. width:100%;
  8127. }
  8128. #u68503_text {
  8129. border-width:0px;
  8130. word-wrap:break-word;
  8131. text-transform:none;
  8132. }
  8133. #u68504_div {
  8134. border-width:0px;
  8135. position:absolute;
  8136. left:0px;
  8137. top:0px;
  8138. width:160px;
  8139. height:40px;
  8140. background:inherit;
  8141. background-color:rgba(255, 255, 255, 0);
  8142. border:none;
  8143. border-top:0px;
  8144. border-right:0px;
  8145. border-bottom:0px;
  8146. border-radius:0px;
  8147. border-top-left-radius:0px;
  8148. border-bottom-left-radius:0px;
  8149. -moz-box-shadow:none;
  8150. -webkit-box-shadow:none;
  8151. box-shadow:none;
  8152. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8153. font-weight:400;
  8154. font-style:normal;
  8155. font-size:14px;
  8156. line-height:40px;
  8157. }
  8158. #u68504 {
  8159. border-width:0px;
  8160. position:absolute;
  8161. left:3395px;
  8162. top:661px;
  8163. width:160px;
  8164. height:40px;
  8165. display:flex;
  8166. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8167. font-weight:400;
  8168. font-style:normal;
  8169. font-size:14px;
  8170. line-height:40px;
  8171. }
  8172. #u68504 .text {
  8173. position:absolute;
  8174. align-self:center;
  8175. padding:0px 0px 0px 0px;
  8176. box-sizing:border-box;
  8177. width:100%;
  8178. }
  8179. #u68504_text {
  8180. border-width:0px;
  8181. word-wrap:break-word;
  8182. text-transform:none;
  8183. }
  8184. #u68505_div {
  8185. border-width:0px;
  8186. position:absolute;
  8187. left:0px;
  8188. top:0px;
  8189. width:80px;
  8190. height:40px;
  8191. background:inherit;
  8192. background-color:rgba(255, 255, 255, 0);
  8193. border:none;
  8194. border-top:0px;
  8195. border-right:0px;
  8196. border-bottom:0px;
  8197. border-radius:0px;
  8198. border-top-left-radius:0px;
  8199. border-bottom-left-radius:0px;
  8200. -moz-box-shadow:none;
  8201. -webkit-box-shadow:none;
  8202. box-shadow:none;
  8203. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8204. font-weight:400;
  8205. font-style:normal;
  8206. font-size:14px;
  8207. color:#7F7F7F;
  8208. line-height:40px;
  8209. }
  8210. #u68505 {
  8211. border-width:0px;
  8212. position:absolute;
  8213. left:3612px;
  8214. top:661px;
  8215. width:80px;
  8216. height:40px;
  8217. display:flex;
  8218. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8219. font-weight:400;
  8220. font-style:normal;
  8221. font-size:14px;
  8222. color:#7F7F7F;
  8223. line-height:40px;
  8224. }
  8225. #u68505 .text {
  8226. position:absolute;
  8227. align-self:center;
  8228. padding:0px 0px 0px 0px;
  8229. box-sizing:border-box;
  8230. width:100%;
  8231. }
  8232. #u68505_text {
  8233. border-width:0px;
  8234. word-wrap:break-word;
  8235. text-transform:none;
  8236. }
  8237. #u68506_div {
  8238. border-width:0px;
  8239. position:absolute;
  8240. left:0px;
  8241. top:0px;
  8242. width:160px;
  8243. height:40px;
  8244. background:inherit;
  8245. background-color:rgba(255, 255, 255, 0);
  8246. border:none;
  8247. border-top:0px;
  8248. border-right:0px;
  8249. border-bottom:0px;
  8250. border-radius:0px;
  8251. border-top-left-radius:0px;
  8252. border-bottom-left-radius:0px;
  8253. -moz-box-shadow:none;
  8254. -webkit-box-shadow:none;
  8255. box-shadow:none;
  8256. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8257. font-weight:400;
  8258. font-style:normal;
  8259. font-size:14px;
  8260. line-height:40px;
  8261. }
  8262. #u68506 {
  8263. border-width:0px;
  8264. position:absolute;
  8265. left:3692px;
  8266. top:661px;
  8267. width:160px;
  8268. height:40px;
  8269. display:flex;
  8270. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8271. font-weight:400;
  8272. font-style:normal;
  8273. font-size:14px;
  8274. line-height:40px;
  8275. }
  8276. #u68506 .text {
  8277. position:absolute;
  8278. align-self:center;
  8279. padding:0px 0px 0px 0px;
  8280. box-sizing:border-box;
  8281. width:100%;
  8282. }
  8283. #u68506_text {
  8284. border-width:0px;
  8285. word-wrap:break-word;
  8286. text-transform:none;
  8287. }
  8288. #u68507_div {
  8289. border-width:0px;
  8290. position:absolute;
  8291. left:0px;
  8292. top:0px;
  8293. width:78px;
  8294. height:40px;
  8295. background:inherit;
  8296. background-color:rgba(255, 255, 255, 0);
  8297. border:none;
  8298. border-top:0px;
  8299. border-right:0px;
  8300. border-bottom:0px;
  8301. border-radius:0px;
  8302. border-top-left-radius:0px;
  8303. border-bottom-left-radius:0px;
  8304. -moz-box-shadow:none;
  8305. -webkit-box-shadow:none;
  8306. box-shadow:none;
  8307. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8308. font-weight:400;
  8309. font-style:normal;
  8310. font-size:14px;
  8311. color:#7F7F7F;
  8312. line-height:40px;
  8313. }
  8314. #u68507 {
  8315. border-width:0px;
  8316. position:absolute;
  8317. left:3315px;
  8318. top:750px;
  8319. width:78px;
  8320. height:40px;
  8321. display:flex;
  8322. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8323. font-weight:400;
  8324. font-style:normal;
  8325. font-size:14px;
  8326. color:#7F7F7F;
  8327. line-height:40px;
  8328. }
  8329. #u68507 .text {
  8330. position:absolute;
  8331. align-self:center;
  8332. padding:0px 0px 0px 0px;
  8333. box-sizing:border-box;
  8334. width:100%;
  8335. }
  8336. #u68507_text {
  8337. border-width:0px;
  8338. white-space:nowrap;
  8339. text-transform:none;
  8340. }
  8341. #u68508_img {
  8342. border-width:0px;
  8343. position:absolute;
  8344. left:0px;
  8345. top:0px;
  8346. width:120px;
  8347. height:80px;
  8348. }
  8349. #u68508 {
  8350. border-width:0px;
  8351. position:absolute;
  8352. left:3394px;
  8353. top:750px;
  8354. width:120px;
  8355. height:80px;
  8356. display:flex;
  8357. }
  8358. #u68508 .text {
  8359. position:absolute;
  8360. align-self:center;
  8361. padding:0px 0px 0px 0px;
  8362. box-sizing:border-box;
  8363. width:100%;
  8364. }
  8365. #u68508_text {
  8366. border-width:0px;
  8367. word-wrap:break-word;
  8368. text-transform:none;
  8369. }
  8370. #u68509_img {
  8371. border-width:0px;
  8372. position:absolute;
  8373. left:0px;
  8374. top:0px;
  8375. width:120px;
  8376. height:80px;
  8377. }
  8378. #u68509 {
  8379. border-width:0px;
  8380. position:absolute;
  8381. left:3536px;
  8382. top:750px;
  8383. width:120px;
  8384. height:80px;
  8385. display:flex;
  8386. }
  8387. #u68509 .text {
  8388. position:absolute;
  8389. align-self:center;
  8390. padding:0px 0px 0px 0px;
  8391. box-sizing:border-box;
  8392. width:100%;
  8393. }
  8394. #u68509_text {
  8395. border-width:0px;
  8396. word-wrap:break-word;
  8397. text-transform:none;
  8398. }
  8399. #u68510_img {
  8400. border-width:0px;
  8401. position:absolute;
  8402. left:0px;
  8403. top:0px;
  8404. width:120px;
  8405. height:80px;
  8406. }
  8407. #u68510 {
  8408. border-width:0px;
  8409. position:absolute;
  8410. left:3677px;
  8411. top:750px;
  8412. width:120px;
  8413. height:80px;
  8414. display:flex;
  8415. }
  8416. #u68510 .text {
  8417. position:absolute;
  8418. align-self:center;
  8419. padding:0px 0px 0px 0px;
  8420. box-sizing:border-box;
  8421. width:100%;
  8422. }
  8423. #u68510_text {
  8424. border-width:0px;
  8425. word-wrap:break-word;
  8426. text-transform:none;
  8427. }
  8428. #u68511_div {
  8429. border-width:0px;
  8430. position:absolute;
  8431. left:0px;
  8432. top:0px;
  8433. width:80px;
  8434. height:40px;
  8435. background:inherit;
  8436. background-color:rgba(255, 255, 255, 0);
  8437. border:none;
  8438. border-top:0px;
  8439. border-right:0px;
  8440. border-bottom:0px;
  8441. border-radius:0px;
  8442. border-top-left-radius:0px;
  8443. border-bottom-left-radius:0px;
  8444. -moz-box-shadow:none;
  8445. -webkit-box-shadow:none;
  8446. box-shadow:none;
  8447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8448. font-weight:400;
  8449. font-style:normal;
  8450. font-size:14px;
  8451. color:#7F7F7F;
  8452. line-height:40px;
  8453. }
  8454. #u68511 {
  8455. border-width:0px;
  8456. position:absolute;
  8457. left:3927px;
  8458. top:661px;
  8459. width:80px;
  8460. height:40px;
  8461. display:flex;
  8462. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8463. font-weight:400;
  8464. font-style:normal;
  8465. font-size:14px;
  8466. color:#7F7F7F;
  8467. line-height:40px;
  8468. }
  8469. #u68511 .text {
  8470. position:absolute;
  8471. align-self:center;
  8472. padding:0px 0px 0px 0px;
  8473. box-sizing:border-box;
  8474. width:100%;
  8475. }
  8476. #u68511_text {
  8477. border-width:0px;
  8478. word-wrap:break-word;
  8479. text-transform:none;
  8480. }
  8481. #u68512_div {
  8482. border-width:0px;
  8483. position:absolute;
  8484. left:0px;
  8485. top:0px;
  8486. width:23px;
  8487. height:40px;
  8488. background:inherit;
  8489. background-color:rgba(255, 255, 255, 0);
  8490. border:none;
  8491. border-top:0px;
  8492. border-right:0px;
  8493. border-bottom:0px;
  8494. border-radius:0px;
  8495. border-top-left-radius:0px;
  8496. border-bottom-left-radius:0px;
  8497. -moz-box-shadow:none;
  8498. -webkit-box-shadow:none;
  8499. box-shadow:none;
  8500. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8501. font-weight:400;
  8502. font-style:normal;
  8503. font-size:14px;
  8504. line-height:40px;
  8505. }
  8506. #u68512 {
  8507. border-width:0px;
  8508. position:absolute;
  8509. left:4007px;
  8510. top:661px;
  8511. width:23px;
  8512. height:40px;
  8513. display:flex;
  8514. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8515. font-weight:400;
  8516. font-style:normal;
  8517. font-size:14px;
  8518. line-height:40px;
  8519. }
  8520. #u68512 .text {
  8521. position:absolute;
  8522. align-self:center;
  8523. padding:0px 0px 0px 0px;
  8524. box-sizing:border-box;
  8525. width:100%;
  8526. }
  8527. #u68512_text {
  8528. border-width:0px;
  8529. white-space:nowrap;
  8530. text-transform:none;
  8531. }
  8532. #u68513_div {
  8533. border-width:0px;
  8534. position:absolute;
  8535. left:0px;
  8536. top:0px;
  8537. width:80px;
  8538. height:40px;
  8539. background:inherit;
  8540. background-color:rgba(255, 255, 255, 0);
  8541. border:none;
  8542. border-top:0px;
  8543. border-right:0px;
  8544. border-bottom:0px;
  8545. border-radius:0px;
  8546. border-top-left-radius:0px;
  8547. border-bottom-left-radius:0px;
  8548. -moz-box-shadow:none;
  8549. -webkit-box-shadow:none;
  8550. box-shadow:none;
  8551. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8552. font-weight:400;
  8553. font-style:normal;
  8554. font-size:14px;
  8555. color:#7F7F7F;
  8556. line-height:40px;
  8557. }
  8558. #u68513 {
  8559. border-width:0px;
  8560. position:absolute;
  8561. left:3315px;
  8562. top:700px;
  8563. width:80px;
  8564. height:40px;
  8565. display:flex;
  8566. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8567. font-weight:400;
  8568. font-style:normal;
  8569. font-size:14px;
  8570. color:#7F7F7F;
  8571. line-height:40px;
  8572. }
  8573. #u68513 .text {
  8574. position:absolute;
  8575. align-self:center;
  8576. padding:0px 0px 0px 0px;
  8577. box-sizing:border-box;
  8578. width:100%;
  8579. }
  8580. #u68513_text {
  8581. border-width:0px;
  8582. word-wrap:break-word;
  8583. text-transform:none;
  8584. }
  8585. #u68514_div {
  8586. border-width:0px;
  8587. position:absolute;
  8588. left:0px;
  8589. top:0px;
  8590. width:160px;
  8591. height:40px;
  8592. background:inherit;
  8593. background-color:rgba(255, 255, 255, 0);
  8594. border:none;
  8595. border-top:0px;
  8596. border-right:0px;
  8597. border-bottom:0px;
  8598. border-radius:0px;
  8599. border-top-left-radius:0px;
  8600. border-bottom-left-radius:0px;
  8601. -moz-box-shadow:none;
  8602. -webkit-box-shadow:none;
  8603. box-shadow:none;
  8604. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8605. font-weight:400;
  8606. font-style:normal;
  8607. font-size:14px;
  8608. line-height:40px;
  8609. }
  8610. #u68514 {
  8611. border-width:0px;
  8612. position:absolute;
  8613. left:3395px;
  8614. top:700px;
  8615. width:160px;
  8616. height:40px;
  8617. display:flex;
  8618. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8619. font-weight:400;
  8620. font-style:normal;
  8621. font-size:14px;
  8622. line-height:40px;
  8623. }
  8624. #u68514 .text {
  8625. position:absolute;
  8626. align-self:center;
  8627. padding:0px 0px 0px 0px;
  8628. box-sizing:border-box;
  8629. width:100%;
  8630. }
  8631. #u68514_text {
  8632. border-width:0px;
  8633. word-wrap:break-word;
  8634. text-transform:none;
  8635. }
  8636. #u68515_div {
  8637. border-width:0px;
  8638. position:absolute;
  8639. left:0px;
  8640. top:0px;
  8641. width:80px;
  8642. height:40px;
  8643. background:inherit;
  8644. background-color:rgba(255, 255, 255, 0);
  8645. border:none;
  8646. border-top:0px;
  8647. border-right:0px;
  8648. border-bottom:0px;
  8649. border-radius:0px;
  8650. border-top-left-radius:0px;
  8651. border-bottom-left-radius:0px;
  8652. -moz-box-shadow:none;
  8653. -webkit-box-shadow:none;
  8654. box-shadow:none;
  8655. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8656. font-weight:400;
  8657. font-style:normal;
  8658. font-size:14px;
  8659. color:#7F7F7F;
  8660. line-height:40px;
  8661. }
  8662. #u68515 {
  8663. border-width:0px;
  8664. position:absolute;
  8665. left:3612px;
  8666. top:700px;
  8667. width:80px;
  8668. height:40px;
  8669. display:flex;
  8670. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8671. font-weight:400;
  8672. font-style:normal;
  8673. font-size:14px;
  8674. color:#7F7F7F;
  8675. line-height:40px;
  8676. }
  8677. #u68515 .text {
  8678. position:absolute;
  8679. align-self:center;
  8680. padding:0px 0px 0px 0px;
  8681. box-sizing:border-box;
  8682. width:100%;
  8683. }
  8684. #u68515_text {
  8685. border-width:0px;
  8686. word-wrap:break-word;
  8687. text-transform:none;
  8688. }
  8689. #u68516_div {
  8690. border-width:0px;
  8691. position:absolute;
  8692. left:0px;
  8693. top:0px;
  8694. width:160px;
  8695. height:40px;
  8696. background:inherit;
  8697. background-color:rgba(255, 255, 255, 0);
  8698. border:none;
  8699. border-top:0px;
  8700. border-right:0px;
  8701. border-bottom:0px;
  8702. border-radius:0px;
  8703. border-top-left-radius:0px;
  8704. border-bottom-left-radius:0px;
  8705. -moz-box-shadow:none;
  8706. -webkit-box-shadow:none;
  8707. box-shadow:none;
  8708. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8709. font-weight:400;
  8710. font-style:normal;
  8711. font-size:14px;
  8712. line-height:40px;
  8713. }
  8714. #u68516 {
  8715. border-width:0px;
  8716. position:absolute;
  8717. left:3692px;
  8718. top:700px;
  8719. width:160px;
  8720. height:40px;
  8721. display:flex;
  8722. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8723. font-weight:400;
  8724. font-style:normal;
  8725. font-size:14px;
  8726. line-height:40px;
  8727. }
  8728. #u68516 .text {
  8729. position:absolute;
  8730. align-self:center;
  8731. padding:0px 0px 0px 0px;
  8732. box-sizing:border-box;
  8733. width:100%;
  8734. }
  8735. #u68516_text {
  8736. border-width:0px;
  8737. word-wrap:break-word;
  8738. text-transform:none;
  8739. }
  8740. #u68517_div {
  8741. border-width:0px;
  8742. position:absolute;
  8743. left:0px;
  8744. top:0px;
  8745. width:80px;
  8746. height:40px;
  8747. background:inherit;
  8748. background-color:rgba(255, 255, 255, 0);
  8749. border:none;
  8750. border-top:0px;
  8751. border-right:0px;
  8752. border-bottom:0px;
  8753. border-radius:0px;
  8754. border-top-left-radius:0px;
  8755. border-bottom-left-radius:0px;
  8756. -moz-box-shadow:none;
  8757. -webkit-box-shadow:none;
  8758. box-shadow:none;
  8759. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8760. font-weight:400;
  8761. font-style:normal;
  8762. font-size:14px;
  8763. color:#7F7F7F;
  8764. line-height:40px;
  8765. }
  8766. #u68517 {
  8767. border-width:0px;
  8768. position:absolute;
  8769. left:3927px;
  8770. top:700px;
  8771. width:80px;
  8772. height:40px;
  8773. display:flex;
  8774. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8775. font-weight:400;
  8776. font-style:normal;
  8777. font-size:14px;
  8778. color:#7F7F7F;
  8779. line-height:40px;
  8780. }
  8781. #u68517 .text {
  8782. position:absolute;
  8783. align-self:center;
  8784. padding:0px 0px 0px 0px;
  8785. box-sizing:border-box;
  8786. width:100%;
  8787. }
  8788. #u68517_text {
  8789. border-width:0px;
  8790. word-wrap:break-word;
  8791. text-transform:none;
  8792. }
  8793. #u68518_div {
  8794. border-width:0px;
  8795. position:absolute;
  8796. left:0px;
  8797. top:0px;
  8798. width:65px;
  8799. height:40px;
  8800. background:inherit;
  8801. background-color:rgba(255, 255, 255, 0);
  8802. border:none;
  8803. border-top:0px;
  8804. border-right:0px;
  8805. border-bottom:0px;
  8806. border-radius:0px;
  8807. border-top-left-radius:0px;
  8808. border-bottom-left-radius:0px;
  8809. -moz-box-shadow:none;
  8810. -webkit-box-shadow:none;
  8811. box-shadow:none;
  8812. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8813. font-weight:400;
  8814. font-style:normal;
  8815. font-size:14px;
  8816. line-height:40px;
  8817. }
  8818. #u68518 {
  8819. border-width:0px;
  8820. position:absolute;
  8821. left:4007px;
  8822. top:700px;
  8823. width:65px;
  8824. height:40px;
  8825. display:flex;
  8826. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8827. font-weight:400;
  8828. font-style:normal;
  8829. font-size:14px;
  8830. line-height:40px;
  8831. }
  8832. #u68518 .text {
  8833. position:absolute;
  8834. align-self:center;
  8835. padding:0px 0px 0px 0px;
  8836. box-sizing:border-box;
  8837. width:100%;
  8838. }
  8839. #u68518_text {
  8840. border-width:0px;
  8841. white-space:nowrap;
  8842. text-transform:none;
  8843. }
  8844. #u68519_div {
  8845. border-width:0px;
  8846. position:absolute;
  8847. left:0px;
  8848. top:0px;
  8849. width:57px;
  8850. height:40px;
  8851. background:inherit;
  8852. background-color:rgba(255, 255, 255, 0);
  8853. border:none;
  8854. border-left:0px;
  8855. border-top:0px;
  8856. border-right:0px;
  8857. border-radius:0px;
  8858. border-bottom-right-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. }
  8868. #u68519 {
  8869. border-width:0px;
  8870. position:absolute;
  8871. left:3292px;
  8872. top:518px;
  8873. width:57px;
  8874. height:40px;
  8875. display:flex;
  8876. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8877. font-weight:400;
  8878. font-style:normal;
  8879. font-size:14px;
  8880. }
  8881. #u68519 .text {
  8882. position:absolute;
  8883. align-self:center;
  8884. padding:0px 0px 0px 0px;
  8885. box-sizing:border-box;
  8886. width:100%;
  8887. }
  8888. #u68519_text {
  8889. border-width:0px;
  8890. white-space:nowrap;
  8891. text-transform:none;
  8892. }
  8893. #u68520_div {
  8894. border-width:0px;
  8895. position:absolute;
  8896. left:0px;
  8897. top:0px;
  8898. width:80px;
  8899. height:40px;
  8900. background:inherit;
  8901. background-color:rgba(255, 255, 255, 0);
  8902. border:none;
  8903. border-top:0px;
  8904. border-right:0px;
  8905. border-bottom:0px;
  8906. border-radius:0px;
  8907. border-top-left-radius:0px;
  8908. border-bottom-left-radius:0px;
  8909. -moz-box-shadow:none;
  8910. -webkit-box-shadow:none;
  8911. box-shadow:none;
  8912. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8913. font-weight:400;
  8914. font-style:normal;
  8915. font-size:14px;
  8916. color:#7F7F7F;
  8917. line-height:40px;
  8918. }
  8919. #u68520 {
  8920. border-width:0px;
  8921. position:absolute;
  8922. left:3292px;
  8923. top:558px;
  8924. width:80px;
  8925. height:40px;
  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. color:#7F7F7F;
  8932. line-height:40px;
  8933. }
  8934. #u68520 .text {
  8935. position:absolute;
  8936. align-self:center;
  8937. padding:0px 0px 0px 0px;
  8938. box-sizing:border-box;
  8939. width:100%;
  8940. }
  8941. #u68520_text {
  8942. border-width:0px;
  8943. word-wrap:break-word;
  8944. text-transform:none;
  8945. }
  8946. #u68521_div {
  8947. border-width:0px;
  8948. position:absolute;
  8949. left:0px;
  8950. top:0px;
  8951. width:160px;
  8952. height:40px;
  8953. background:inherit;
  8954. background-color:rgba(255, 255, 255, 0);
  8955. border:none;
  8956. border-top:0px;
  8957. border-right:0px;
  8958. border-bottom:0px;
  8959. border-radius:0px;
  8960. border-top-left-radius:0px;
  8961. border-bottom-left-radius:0px;
  8962. -moz-box-shadow:none;
  8963. -webkit-box-shadow:none;
  8964. box-shadow:none;
  8965. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8966. font-weight:400;
  8967. font-style:normal;
  8968. font-size:14px;
  8969. line-height:40px;
  8970. }
  8971. #u68521 {
  8972. border-width:0px;
  8973. position:absolute;
  8974. left:3372px;
  8975. top:558px;
  8976. width:160px;
  8977. height:40px;
  8978. display:flex;
  8979. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8980. font-weight:400;
  8981. font-style:normal;
  8982. font-size:14px;
  8983. line-height:40px;
  8984. }
  8985. #u68521 .text {
  8986. position:absolute;
  8987. align-self:center;
  8988. padding:0px 0px 0px 0px;
  8989. box-sizing:border-box;
  8990. width:100%;
  8991. }
  8992. #u68521_text {
  8993. border-width:0px;
  8994. word-wrap:break-word;
  8995. text-transform:none;
  8996. }
  8997. #u68522_div {
  8998. border-width:0px;
  8999. position:absolute;
  9000. left:0px;
  9001. top:0px;
  9002. width:80px;
  9003. height:40px;
  9004. background:inherit;
  9005. background-color:rgba(255, 255, 255, 0);
  9006. border:none;
  9007. border-top:0px;
  9008. border-right:0px;
  9009. border-bottom:0px;
  9010. border-radius:0px;
  9011. border-top-left-radius:0px;
  9012. border-bottom-left-radius:0px;
  9013. -moz-box-shadow:none;
  9014. -webkit-box-shadow:none;
  9015. box-shadow:none;
  9016. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9017. font-weight:400;
  9018. font-style:normal;
  9019. font-size:14px;
  9020. color:#7F7F7F;
  9021. line-height:40px;
  9022. }
  9023. #u68522 {
  9024. border-width:0px;
  9025. position:absolute;
  9026. left:3612px;
  9027. top:558px;
  9028. width:80px;
  9029. height:40px;
  9030. display:flex;
  9031. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9032. font-weight:400;
  9033. font-style:normal;
  9034. font-size:14px;
  9035. color:#7F7F7F;
  9036. line-height:40px;
  9037. }
  9038. #u68522 .text {
  9039. position:absolute;
  9040. align-self:center;
  9041. padding:0px 0px 0px 0px;
  9042. box-sizing:border-box;
  9043. width:100%;
  9044. }
  9045. #u68522_text {
  9046. border-width:0px;
  9047. word-wrap:break-word;
  9048. text-transform:none;
  9049. }
  9050. #u68523_div {
  9051. border-width:0px;
  9052. position:absolute;
  9053. left:0px;
  9054. top:0px;
  9055. width:160px;
  9056. height:40px;
  9057. background:inherit;
  9058. background-color:rgba(255, 255, 255, 0);
  9059. border:none;
  9060. border-top:0px;
  9061. border-right:0px;
  9062. border-bottom:0px;
  9063. border-radius:0px;
  9064. border-top-left-radius:0px;
  9065. border-bottom-left-radius:0px;
  9066. -moz-box-shadow:none;
  9067. -webkit-box-shadow:none;
  9068. box-shadow:none;
  9069. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9070. font-weight:400;
  9071. font-style:normal;
  9072. font-size:14px;
  9073. line-height:40px;
  9074. }
  9075. #u68523 {
  9076. border-width:0px;
  9077. position:absolute;
  9078. left:3692px;
  9079. top:558px;
  9080. width:160px;
  9081. height:40px;
  9082. display:flex;
  9083. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9084. font-weight:400;
  9085. font-style:normal;
  9086. font-size:14px;
  9087. line-height:40px;
  9088. }
  9089. #u68523 .text {
  9090. position:absolute;
  9091. align-self:center;
  9092. padding:0px 0px 0px 0px;
  9093. box-sizing:border-box;
  9094. width:100%;
  9095. }
  9096. #u68523_text {
  9097. border-width:0px;
  9098. word-wrap:break-word;
  9099. text-transform:none;
  9100. }
  9101. #u68524_div {
  9102. border-width:0px;
  9103. position:absolute;
  9104. left:0px;
  9105. top:0px;
  9106. width:80px;
  9107. height:40px;
  9108. background:inherit;
  9109. background-color:rgba(255, 255, 255, 0);
  9110. border:none;
  9111. border-top:0px;
  9112. border-right:0px;
  9113. border-bottom:0px;
  9114. border-radius:0px;
  9115. border-top-left-radius:0px;
  9116. border-bottom-left-radius:0px;
  9117. -moz-box-shadow:none;
  9118. -webkit-box-shadow:none;
  9119. box-shadow:none;
  9120. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9121. font-weight:400;
  9122. font-style:normal;
  9123. font-size:14px;
  9124. color:#7F7F7F;
  9125. line-height:40px;
  9126. }
  9127. #u68524 {
  9128. border-width:0px;
  9129. position:absolute;
  9130. left:3932px;
  9131. top:558px;
  9132. width:80px;
  9133. height:40px;
  9134. display:flex;
  9135. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9136. font-weight:400;
  9137. font-style:normal;
  9138. font-size:14px;
  9139. color:#7F7F7F;
  9140. line-height:40px;
  9141. }
  9142. #u68524 .text {
  9143. position:absolute;
  9144. align-self:center;
  9145. padding:0px 0px 0px 0px;
  9146. box-sizing:border-box;
  9147. width:100%;
  9148. }
  9149. #u68524_text {
  9150. border-width:0px;
  9151. word-wrap:break-word;
  9152. text-transform:none;
  9153. }
  9154. #u68525_div {
  9155. border-width:0px;
  9156. position:absolute;
  9157. left:0px;
  9158. top:0px;
  9159. width:160px;
  9160. height:40px;
  9161. background:inherit;
  9162. background-color:rgba(255, 255, 255, 0);
  9163. border:none;
  9164. border-top:0px;
  9165. border-right:0px;
  9166. border-bottom:0px;
  9167. border-radius:0px;
  9168. border-top-left-radius:0px;
  9169. border-bottom-left-radius:0px;
  9170. -moz-box-shadow:none;
  9171. -webkit-box-shadow:none;
  9172. box-shadow:none;
  9173. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9174. font-weight:400;
  9175. font-style:normal;
  9176. font-size:14px;
  9177. line-height:40px;
  9178. }
  9179. #u68525 {
  9180. border-width:0px;
  9181. position:absolute;
  9182. left:4012px;
  9183. top:558px;
  9184. width:160px;
  9185. height:40px;
  9186. display:flex;
  9187. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9188. font-weight:400;
  9189. font-style:normal;
  9190. font-size:14px;
  9191. line-height:40px;
  9192. }
  9193. #u68525 .text {
  9194. position:absolute;
  9195. align-self:center;
  9196. padding:0px 0px 0px 0px;
  9197. box-sizing:border-box;
  9198. width:100%;
  9199. }
  9200. #u68525_text {
  9201. border-width:0px;
  9202. word-wrap:break-word;
  9203. text-transform:none;
  9204. }
  9205. #u68526_div {
  9206. border-width:0px;
  9207. position:absolute;
  9208. left:0px;
  9209. top:0px;
  9210. width:71px;
  9211. height:40px;
  9212. background:inherit;
  9213. background-color:rgba(255, 255, 255, 0);
  9214. border:none;
  9215. border-top:0px;
  9216. border-right:0px;
  9217. border-bottom:0px;
  9218. border-radius:0px;
  9219. border-top-left-radius:0px;
  9220. border-bottom-left-radius:0px;
  9221. -moz-box-shadow:none;
  9222. -webkit-box-shadow:none;
  9223. box-shadow:none;
  9224. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9225. font-weight:400;
  9226. font-style:normal;
  9227. font-size:14px;
  9228. color:#7F7F7F;
  9229. line-height:40px;
  9230. }
  9231. #u68526 {
  9232. border-width:0px;
  9233. position:absolute;
  9234. left:3292px;
  9235. top:598px;
  9236. width:71px;
  9237. height:40px;
  9238. display:flex;
  9239. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9240. font-weight:400;
  9241. font-style:normal;
  9242. font-size:14px;
  9243. color:#7F7F7F;
  9244. line-height:40px;
  9245. }
  9246. #u68526 .text {
  9247. position:absolute;
  9248. align-self:center;
  9249. padding:0px 0px 0px 0px;
  9250. box-sizing:border-box;
  9251. width:100%;
  9252. }
  9253. #u68526_text {
  9254. border-width:0px;
  9255. white-space:nowrap;
  9256. text-transform:none;
  9257. }
  9258. #u68527_div {
  9259. border-width:0px;
  9260. position:absolute;
  9261. left:0px;
  9262. top:0px;
  9263. width:160px;
  9264. height:40px;
  9265. background:inherit;
  9266. background-color:rgba(255, 255, 255, 0);
  9267. border:none;
  9268. border-top:0px;
  9269. border-right:0px;
  9270. border-bottom:0px;
  9271. border-radius:0px;
  9272. border-top-left-radius:0px;
  9273. border-bottom-left-radius:0px;
  9274. -moz-box-shadow:none;
  9275. -webkit-box-shadow:none;
  9276. box-shadow:none;
  9277. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9278. font-weight:400;
  9279. font-style:normal;
  9280. font-size:14px;
  9281. line-height:40px;
  9282. }
  9283. #u68527 {
  9284. border-width:0px;
  9285. position:absolute;
  9286. left:3372px;
  9287. top:598px;
  9288. width:160px;
  9289. height:40px;
  9290. display:flex;
  9291. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9292. font-weight:400;
  9293. font-style:normal;
  9294. font-size:14px;
  9295. line-height:40px;
  9296. }
  9297. #u68527 .text {
  9298. position:absolute;
  9299. align-self:center;
  9300. padding:0px 0px 0px 0px;
  9301. box-sizing:border-box;
  9302. width:100%;
  9303. }
  9304. #u68527_text {
  9305. border-width:0px;
  9306. word-wrap:break-word;
  9307. text-transform:none;
  9308. }
  9309. #u68528_div {
  9310. border-width:0px;
  9311. position:absolute;
  9312. left:0px;
  9313. top:0px;
  9314. width:80px;
  9315. height:40px;
  9316. background:inherit;
  9317. background-color:rgba(255, 255, 255, 0);
  9318. border:none;
  9319. border-top:0px;
  9320. border-right:0px;
  9321. border-bottom:0px;
  9322. border-radius:0px;
  9323. border-top-left-radius:0px;
  9324. border-bottom-left-radius:0px;
  9325. -moz-box-shadow:none;
  9326. -webkit-box-shadow:none;
  9327. box-shadow:none;
  9328. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9329. font-weight:400;
  9330. font-style:normal;
  9331. font-size:14px;
  9332. color:#7F7F7F;
  9333. line-height:40px;
  9334. }
  9335. #u68528 {
  9336. border-width:0px;
  9337. position:absolute;
  9338. left:3612px;
  9339. top:598px;
  9340. width:80px;
  9341. height:40px;
  9342. display:flex;
  9343. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9344. font-weight:400;
  9345. font-style:normal;
  9346. font-size:14px;
  9347. color:#7F7F7F;
  9348. line-height:40px;
  9349. }
  9350. #u68528 .text {
  9351. position:absolute;
  9352. align-self:center;
  9353. padding:0px 0px 0px 0px;
  9354. box-sizing:border-box;
  9355. width:100%;
  9356. }
  9357. #u68528_text {
  9358. border-width:0px;
  9359. word-wrap:break-word;
  9360. text-transform:none;
  9361. }
  9362. #u68529_div {
  9363. border-width:0px;
  9364. position:absolute;
  9365. left:0px;
  9366. top:0px;
  9367. width:160px;
  9368. height:40px;
  9369. background:inherit;
  9370. background-color:rgba(255, 255, 255, 0);
  9371. border:none;
  9372. border-top:0px;
  9373. border-right:0px;
  9374. border-bottom:0px;
  9375. border-radius:0px;
  9376. border-top-left-radius:0px;
  9377. border-bottom-left-radius:0px;
  9378. -moz-box-shadow:none;
  9379. -webkit-box-shadow:none;
  9380. box-shadow:none;
  9381. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9382. font-weight:400;
  9383. font-style:normal;
  9384. font-size:14px;
  9385. line-height:40px;
  9386. }
  9387. #u68529 {
  9388. border-width:0px;
  9389. position:absolute;
  9390. left:3692px;
  9391. top:598px;
  9392. width:160px;
  9393. height:40px;
  9394. display:flex;
  9395. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9396. font-weight:400;
  9397. font-style:normal;
  9398. font-size:14px;
  9399. line-height:40px;
  9400. }
  9401. #u68529 .text {
  9402. position:absolute;
  9403. align-self:center;
  9404. padding:0px 0px 0px 0px;
  9405. box-sizing:border-box;
  9406. width:100%;
  9407. }
  9408. #u68529_text {
  9409. border-width:0px;
  9410. word-wrap:break-word;
  9411. text-transform:none;
  9412. }
  9413. #u68530 {
  9414. border-width:0px;
  9415. position:absolute;
  9416. left:0px;
  9417. top:0px;
  9418. width:0px;
  9419. height:0px;
  9420. }
  9421. #u68531_div {
  9422. border-width:0px;
  9423. position:absolute;
  9424. left:0px;
  9425. top:0px;
  9426. width:1000px;
  9427. height:1139px;
  9428. background:inherit;
  9429. background-color:rgba(242, 242, 242, 1);
  9430. box-sizing:border-box;
  9431. border-width:1px;
  9432. border-style:solid;
  9433. border-color:rgba(242, 242, 242, 1);
  9434. border-radius:0px;
  9435. -moz-box-shadow:none;
  9436. -webkit-box-shadow:none;
  9437. box-shadow:none;
  9438. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9439. font-weight:400;
  9440. font-style:normal;
  9441. font-size:14px;
  9442. color:#AAAAAA;
  9443. text-align:center;
  9444. line-height:30px;
  9445. }
  9446. #u68531 {
  9447. border-width:0px;
  9448. position:absolute;
  9449. left:1143px;
  9450. top:115px;
  9451. width:1000px;
  9452. height:1139px;
  9453. display:flex;
  9454. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9455. font-weight:400;
  9456. font-style:normal;
  9457. font-size:14px;
  9458. color:#AAAAAA;
  9459. text-align:center;
  9460. line-height:30px;
  9461. }
  9462. #u68531 .text {
  9463. position:absolute;
  9464. align-self:center;
  9465. padding:5px 10px 5px 10px;
  9466. box-sizing:border-box;
  9467. width:100%;
  9468. }
  9469. #u68531_text {
  9470. border-width:0px;
  9471. word-wrap:break-word;
  9472. text-transform:none;
  9473. visibility:hidden;
  9474. }
  9475. #u68532_div {
  9476. border-width:0px;
  9477. position:absolute;
  9478. left:0px;
  9479. top:0px;
  9480. width:1000px;
  9481. height:988px;
  9482. background:inherit;
  9483. background-color:rgba(255, 255, 255, 1);
  9484. box-sizing:border-box;
  9485. border-width:1px;
  9486. border-style:solid;
  9487. border-color:rgba(242, 242, 242, 1);
  9488. border-radius:0px;
  9489. -moz-box-shadow:none;
  9490. -webkit-box-shadow:none;
  9491. box-shadow:none;
  9492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9493. font-weight:400;
  9494. font-style:normal;
  9495. font-size:14px;
  9496. color:#AAAAAA;
  9497. text-align:center;
  9498. line-height:30px;
  9499. }
  9500. #u68532 {
  9501. border-width:0px;
  9502. position:absolute;
  9503. left:1143px;
  9504. top:266px;
  9505. width:1000px;
  9506. height:988px;
  9507. display:flex;
  9508. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9509. font-weight:400;
  9510. font-style:normal;
  9511. font-size:14px;
  9512. color:#AAAAAA;
  9513. text-align:center;
  9514. line-height:30px;
  9515. }
  9516. #u68532 .text {
  9517. position:absolute;
  9518. align-self:center;
  9519. padding:5px 10px 5px 10px;
  9520. box-sizing:border-box;
  9521. width:100%;
  9522. }
  9523. #u68532_text {
  9524. border-width:0px;
  9525. word-wrap:break-word;
  9526. text-transform:none;
  9527. visibility:hidden;
  9528. }
  9529. #u68533_div {
  9530. border-width:0px;
  9531. position:absolute;
  9532. left:0px;
  9533. top:0px;
  9534. width:73px;
  9535. height:40px;
  9536. background:inherit;
  9537. background-color:rgba(255, 255, 255, 0);
  9538. border:none;
  9539. border-left:0px;
  9540. border-top:0px;
  9541. border-right:0px;
  9542. border-radius:0px;
  9543. border-bottom-right-radius:0px;
  9544. border-bottom-left-radius:0px;
  9545. -moz-box-shadow:none;
  9546. -webkit-box-shadow:none;
  9547. box-shadow:none;
  9548. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9549. font-weight:400;
  9550. font-style:normal;
  9551. font-size:18px;
  9552. }
  9553. #u68533 {
  9554. border-width:0px;
  9555. position:absolute;
  9556. left:1183px;
  9557. top:282px;
  9558. width:73px;
  9559. height:40px;
  9560. display:flex;
  9561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9562. font-weight:400;
  9563. font-style:normal;
  9564. font-size:18px;
  9565. }
  9566. #u68533 .text {
  9567. position:absolute;
  9568. align-self:center;
  9569. padding:0px 0px 0px 0px;
  9570. box-sizing:border-box;
  9571. width:100%;
  9572. }
  9573. #u68533_text {
  9574. border-width:0px;
  9575. white-space:nowrap;
  9576. text-transform:none;
  9577. }
  9578. #u68534_div {
  9579. border-width:0px;
  9580. position:absolute;
  9581. left:0px;
  9582. top:0px;
  9583. width:81px;
  9584. height:30px;
  9585. background:inherit;
  9586. background-color:rgba(255, 255, 255, 0);
  9587. border:none;
  9588. border-top:0px;
  9589. border-right:0px;
  9590. border-bottom:0px;
  9591. border-radius:0px;
  9592. border-top-left-radius:0px;
  9593. border-bottom-left-radius:0px;
  9594. -moz-box-shadow:none;
  9595. -webkit-box-shadow:none;
  9596. box-shadow:none;
  9597. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9598. font-weight:400;
  9599. font-style:normal;
  9600. font-size:14px;
  9601. color:#7F7F7F;
  9602. }
  9603. #u68534 {
  9604. border-width:0px;
  9605. position:absolute;
  9606. left:1183px;
  9607. top:332px;
  9608. width:81px;
  9609. height:30px;
  9610. display:flex;
  9611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9612. font-weight:400;
  9613. font-style:normal;
  9614. font-size:14px;
  9615. color:#7F7F7F;
  9616. }
  9617. #u68534 .text {
  9618. position:absolute;
  9619. align-self:center;
  9620. padding:5px 10px 5px 0px;
  9621. box-sizing:border-box;
  9622. width:100%;
  9623. }
  9624. #u68534_text {
  9625. border-width:0px;
  9626. white-space:nowrap;
  9627. text-transform:none;
  9628. }
  9629. #u68535_div {
  9630. border-width:0px;
  9631. position:absolute;
  9632. left:0px;
  9633. top:0px;
  9634. width:142px;
  9635. height:30px;
  9636. background:inherit;
  9637. background-color:rgba(255, 255, 255, 0);
  9638. border:none;
  9639. border-top:0px;
  9640. border-right:0px;
  9641. border-bottom:0px;
  9642. border-radius:0px;
  9643. border-top-left-radius:0px;
  9644. border-bottom-left-radius:0px;
  9645. -moz-box-shadow:none;
  9646. -webkit-box-shadow:none;
  9647. box-shadow:none;
  9648. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9649. font-weight:400;
  9650. font-style:normal;
  9651. font-size:14px;
  9652. color:#1890FF;
  9653. }
  9654. #u68535 {
  9655. border-width:0px;
  9656. position:absolute;
  9657. left:1264px;
  9658. top:332px;
  9659. width:142px;
  9660. height:30px;
  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:#1890FF;
  9667. }
  9668. #u68535 .text {
  9669. position:absolute;
  9670. align-self:center;
  9671. padding:5px 10px 5px 0px;
  9672. box-sizing:border-box;
  9673. width:100%;
  9674. }
  9675. #u68535_text {
  9676. border-width:0px;
  9677. white-space:nowrap;
  9678. text-transform:none;
  9679. }
  9680. #u68536_div {
  9681. border-width:0px;
  9682. position:absolute;
  9683. left:0px;
  9684. top:0px;
  9685. width:81px;
  9686. height:30px;
  9687. background:inherit;
  9688. background-color:rgba(255, 255, 255, 0);
  9689. border:none;
  9690. border-top:0px;
  9691. border-right:0px;
  9692. border-bottom:0px;
  9693. border-radius:0px;
  9694. border-top-left-radius:0px;
  9695. border-bottom-left-radius:0px;
  9696. -moz-box-shadow:none;
  9697. -webkit-box-shadow:none;
  9698. box-shadow:none;
  9699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9700. font-weight:400;
  9701. font-style:normal;
  9702. font-size:14px;
  9703. color:#7F7F7F;
  9704. }
  9705. #u68536 {
  9706. border-width:0px;
  9707. position:absolute;
  9708. left:1503px;
  9709. top:332px;
  9710. width:81px;
  9711. height:30px;
  9712. display:flex;
  9713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9714. font-weight:400;
  9715. font-style:normal;
  9716. font-size:14px;
  9717. color:#7F7F7F;
  9718. }
  9719. #u68536 .text {
  9720. position:absolute;
  9721. align-self:center;
  9722. padding:5px 10px 5px 0px;
  9723. box-sizing:border-box;
  9724. width:100%;
  9725. }
  9726. #u68536_text {
  9727. border-width:0px;
  9728. white-space:nowrap;
  9729. text-transform:none;
  9730. }
  9731. #u68537_div {
  9732. border-width:0px;
  9733. position:absolute;
  9734. left:0px;
  9735. top:0px;
  9736. width:67px;
  9737. height:30px;
  9738. background:inherit;
  9739. background-color:rgba(255, 255, 255, 0);
  9740. border:none;
  9741. border-top:0px;
  9742. border-right:0px;
  9743. border-bottom:0px;
  9744. border-radius:0px;
  9745. border-top-left-radius:0px;
  9746. border-bottom-left-radius:0px;
  9747. -moz-box-shadow:none;
  9748. -webkit-box-shadow:none;
  9749. box-shadow:none;
  9750. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9751. font-weight:400;
  9752. font-style:normal;
  9753. font-size:14px;
  9754. }
  9755. #u68537 {
  9756. border-width:0px;
  9757. position:absolute;
  9758. left:1584px;
  9759. top:332px;
  9760. width:67px;
  9761. height:30px;
  9762. display:flex;
  9763. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9764. font-weight:400;
  9765. font-style:normal;
  9766. font-size:14px;
  9767. }
  9768. #u68537 .text {
  9769. position:absolute;
  9770. align-self:center;
  9771. padding:5px 10px 5px 0px;
  9772. box-sizing:border-box;
  9773. width:100%;
  9774. }
  9775. #u68537_text {
  9776. border-width:0px;
  9777. white-space:nowrap;
  9778. text-transform:none;
  9779. }
  9780. #u68538_div {
  9781. border-width:0px;
  9782. position:absolute;
  9783. left:0px;
  9784. top:0px;
  9785. width:81px;
  9786. height:30px;
  9787. background:inherit;
  9788. background-color:rgba(255, 255, 255, 0);
  9789. border:none;
  9790. border-top:0px;
  9791. border-right:0px;
  9792. border-bottom:0px;
  9793. border-radius:0px;
  9794. border-top-left-radius:0px;
  9795. border-bottom-left-radius:0px;
  9796. -moz-box-shadow:none;
  9797. -webkit-box-shadow:none;
  9798. box-shadow:none;
  9799. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9800. font-weight:400;
  9801. font-style:normal;
  9802. font-size:14px;
  9803. color:#7F7F7F;
  9804. }
  9805. #u68538 {
  9806. border-width:0px;
  9807. position:absolute;
  9808. left:1800px;
  9809. top:332px;
  9810. width:81px;
  9811. height:30px;
  9812. display:flex;
  9813. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9814. font-weight:400;
  9815. font-style:normal;
  9816. font-size:14px;
  9817. color:#7F7F7F;
  9818. }
  9819. #u68538 .text {
  9820. position:absolute;
  9821. align-self:center;
  9822. padding:5px 10px 5px 0px;
  9823. box-sizing:border-box;
  9824. width:100%;
  9825. }
  9826. #u68538_text {
  9827. border-width:0px;
  9828. white-space:nowrap;
  9829. text-transform:none;
  9830. }
  9831. #u68539_div {
  9832. border-width:0px;
  9833. position:absolute;
  9834. left:0px;
  9835. top:0px;
  9836. width:53px;
  9837. height:30px;
  9838. background:inherit;
  9839. background-color:rgba(255, 255, 255, 0);
  9840. border:none;
  9841. border-top:0px;
  9842. border-right:0px;
  9843. border-bottom:0px;
  9844. border-radius:0px;
  9845. border-top-left-radius:0px;
  9846. border-bottom-left-radius:0px;
  9847. -moz-box-shadow:none;
  9848. -webkit-box-shadow:none;
  9849. box-shadow:none;
  9850. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9851. font-weight:400;
  9852. font-style:normal;
  9853. font-size:14px;
  9854. }
  9855. #u68539 {
  9856. border-width:0px;
  9857. position:absolute;
  9858. left:1881px;
  9859. top:332px;
  9860. width:53px;
  9861. height:30px;
  9862. display:flex;
  9863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9864. font-weight:400;
  9865. font-style:normal;
  9866. font-size:14px;
  9867. }
  9868. #u68539 .text {
  9869. position:absolute;
  9870. align-self:center;
  9871. padding:5px 10px 5px 0px;
  9872. box-sizing:border-box;
  9873. width:100%;
  9874. }
  9875. #u68539_text {
  9876. border-width:0px;
  9877. white-space:nowrap;
  9878. text-transform:none;
  9879. }
  9880. #u68540_div {
  9881. border-width:0px;
  9882. position:absolute;
  9883. left:0px;
  9884. top:0px;
  9885. width:81px;
  9886. height:30px;
  9887. background:inherit;
  9888. background-color:rgba(255, 255, 255, 0);
  9889. border:none;
  9890. border-top:0px;
  9891. border-right:0px;
  9892. border-bottom:0px;
  9893. border-radius:0px;
  9894. border-top-left-radius:0px;
  9895. border-bottom-left-radius:0px;
  9896. -moz-box-shadow:none;
  9897. -webkit-box-shadow:none;
  9898. box-shadow:none;
  9899. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9900. font-weight:400;
  9901. font-style:normal;
  9902. font-size:14px;
  9903. color:#7F7F7F;
  9904. }
  9905. #u68540 {
  9906. border-width:0px;
  9907. position:absolute;
  9908. left:1183px;
  9909. top:372px;
  9910. width:81px;
  9911. height:30px;
  9912. display:flex;
  9913. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9914. font-weight:400;
  9915. font-style:normal;
  9916. font-size:14px;
  9917. color:#7F7F7F;
  9918. }
  9919. #u68540 .text {
  9920. position:absolute;
  9921. align-self:center;
  9922. padding:5px 10px 5px 0px;
  9923. box-sizing:border-box;
  9924. width:100%;
  9925. }
  9926. #u68540_text {
  9927. border-width:0px;
  9928. white-space:nowrap;
  9929. text-transform:none;
  9930. }
  9931. #u68541_div {
  9932. border-width:0px;
  9933. position:absolute;
  9934. left:0px;
  9935. top:0px;
  9936. width:81px;
  9937. height:30px;
  9938. background:inherit;
  9939. background-color:rgba(255, 255, 255, 0);
  9940. border:none;
  9941. border-top:0px;
  9942. border-right:0px;
  9943. border-bottom:0px;
  9944. border-radius:0px;
  9945. border-top-left-radius:0px;
  9946. border-bottom-left-radius:0px;
  9947. -moz-box-shadow:none;
  9948. -webkit-box-shadow:none;
  9949. box-shadow:none;
  9950. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9951. font-weight:400;
  9952. font-style:normal;
  9953. font-size:14px;
  9954. color:#7F7F7F;
  9955. }
  9956. #u68541 {
  9957. border-width:0px;
  9958. position:absolute;
  9959. left:1503px;
  9960. top:372px;
  9961. width:81px;
  9962. height:30px;
  9963. display:flex;
  9964. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9965. font-weight:400;
  9966. font-style:normal;
  9967. font-size:14px;
  9968. color:#7F7F7F;
  9969. }
  9970. #u68541 .text {
  9971. position:absolute;
  9972. align-self:center;
  9973. padding:5px 10px 5px 0px;
  9974. box-sizing:border-box;
  9975. width:100%;
  9976. }
  9977. #u68541_text {
  9978. border-width:0px;
  9979. white-space:nowrap;
  9980. text-transform:none;
  9981. }
  9982. #u68542_div {
  9983. border-width:0px;
  9984. position:absolute;
  9985. left:0px;
  9986. top:0px;
  9987. width:67px;
  9988. height:30px;
  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. }
  10006. #u68542 {
  10007. border-width:0px;
  10008. position:absolute;
  10009. left:1584px;
  10010. top:372px;
  10011. width:67px;
  10012. height:30px;
  10013. display:flex;
  10014. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10015. font-weight:400;
  10016. font-style:normal;
  10017. font-size:14px;
  10018. }
  10019. #u68542 .text {
  10020. position:absolute;
  10021. align-self:center;
  10022. padding:5px 10px 5px 0px;
  10023. box-sizing:border-box;
  10024. width:100%;
  10025. }
  10026. #u68542_text {
  10027. border-width:0px;
  10028. white-space:nowrap;
  10029. text-transform:none;
  10030. }
  10031. #u68543_div {
  10032. border-width:0px;
  10033. position:absolute;
  10034. left:0px;
  10035. top:0px;
  10036. width:67px;
  10037. height:30px;
  10038. background:inherit;
  10039. background-color:rgba(255, 255, 255, 0);
  10040. border:none;
  10041. border-top:0px;
  10042. border-right:0px;
  10043. border-bottom:0px;
  10044. border-radius:0px;
  10045. border-top-left-radius:0px;
  10046. border-bottom-left-radius:0px;
  10047. -moz-box-shadow:none;
  10048. -webkit-box-shadow:none;
  10049. box-shadow:none;
  10050. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10051. font-weight:400;
  10052. font-style:normal;
  10053. font-size:14px;
  10054. color:#7F7F7F;
  10055. }
  10056. #u68543 {
  10057. border-width:0px;
  10058. position:absolute;
  10059. left:1800px;
  10060. top:372px;
  10061. width:67px;
  10062. height:30px;
  10063. display:flex;
  10064. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10065. font-weight:400;
  10066. font-style:normal;
  10067. font-size:14px;
  10068. color:#7F7F7F;
  10069. }
  10070. #u68543 .text {
  10071. position:absolute;
  10072. align-self:center;
  10073. padding:5px 10px 5px 0px;
  10074. box-sizing:border-box;
  10075. width:100%;
  10076. }
  10077. #u68543_text {
  10078. border-width:0px;
  10079. white-space:nowrap;
  10080. text-transform:none;
  10081. }
  10082. #u68544_div {
  10083. border-width:0px;
  10084. position:absolute;
  10085. left:0px;
  10086. top:0px;
  10087. width:85px;
  10088. height:30px;
  10089. background:inherit;
  10090. background-color:rgba(255, 255, 255, 0);
  10091. border:none;
  10092. border-top:0px;
  10093. border-right:0px;
  10094. border-bottom:0px;
  10095. border-radius:0px;
  10096. border-top-left-radius:0px;
  10097. border-bottom-left-radius:0px;
  10098. -moz-box-shadow:none;
  10099. -webkit-box-shadow:none;
  10100. box-shadow:none;
  10101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10102. font-weight:400;
  10103. font-style:normal;
  10104. font-size:14px;
  10105. }
  10106. #u68544 {
  10107. border-width:0px;
  10108. position:absolute;
  10109. left:1881px;
  10110. top:372px;
  10111. width:85px;
  10112. height:30px;
  10113. display:flex;
  10114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10115. font-weight:400;
  10116. font-style:normal;
  10117. font-size:14px;
  10118. }
  10119. #u68544 .text {
  10120. position:absolute;
  10121. align-self:center;
  10122. padding:5px 10px 5px 0px;
  10123. box-sizing:border-box;
  10124. width:100%;
  10125. }
  10126. #u68544_text {
  10127. border-width:0px;
  10128. white-space:nowrap;
  10129. text-transform:none;
  10130. }
  10131. #u68545_div {
  10132. border-width:0px;
  10133. position:absolute;
  10134. left:0px;
  10135. top:0px;
  10136. width:183px;
  10137. height:30px;
  10138. background:inherit;
  10139. background-color:rgba(255, 255, 255, 0);
  10140. border:none;
  10141. border-top:0px;
  10142. border-right:0px;
  10143. border-bottom:0px;
  10144. border-radius:0px;
  10145. border-top-left-radius:0px;
  10146. border-bottom-left-radius:0px;
  10147. -moz-box-shadow:none;
  10148. -webkit-box-shadow:none;
  10149. box-shadow:none;
  10150. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10151. font-weight:400;
  10152. font-style:normal;
  10153. font-size:14px;
  10154. }
  10155. #u68545 {
  10156. border-width:0px;
  10157. position:absolute;
  10158. left:1264px;
  10159. top:372px;
  10160. width:183px;
  10161. height:30px;
  10162. display:flex;
  10163. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10164. font-weight:400;
  10165. font-style:normal;
  10166. font-size:14px;
  10167. }
  10168. #u68545 .text {
  10169. position:absolute;
  10170. align-self:center;
  10171. padding:5px 10px 5px 0px;
  10172. box-sizing:border-box;
  10173. width:100%;
  10174. }
  10175. #u68545_text {
  10176. border-width:0px;
  10177. white-space:nowrap;
  10178. text-transform:none;
  10179. }
  10180. #u68546_div {
  10181. border-width:0px;
  10182. position:absolute;
  10183. left:0px;
  10184. top:0px;
  10185. width:81px;
  10186. height:30px;
  10187. background:inherit;
  10188. background-color:rgba(255, 255, 255, 0);
  10189. border:none;
  10190. border-top:0px;
  10191. border-right:0px;
  10192. border-bottom:0px;
  10193. border-radius:0px;
  10194. border-top-left-radius:0px;
  10195. border-bottom-left-radius:0px;
  10196. -moz-box-shadow:none;
  10197. -webkit-box-shadow:none;
  10198. box-shadow:none;
  10199. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10200. font-weight:400;
  10201. font-style:normal;
  10202. font-size:14px;
  10203. color:#7F7F7F;
  10204. }
  10205. #u68546 {
  10206. border-width:0px;
  10207. position:absolute;
  10208. left:1183px;
  10209. top:412px;
  10210. width:81px;
  10211. height:30px;
  10212. display:flex;
  10213. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10214. font-weight:400;
  10215. font-style:normal;
  10216. font-size:14px;
  10217. color:#7F7F7F;
  10218. }
  10219. #u68546 .text {
  10220. position:absolute;
  10221. align-self:center;
  10222. padding:5px 10px 5px 0px;
  10223. box-sizing:border-box;
  10224. width:100%;
  10225. }
  10226. #u68546_text {
  10227. border-width:0px;
  10228. white-space:nowrap;
  10229. text-transform:none;
  10230. }
  10231. #u68547_div {
  10232. border-width:0px;
  10233. position:absolute;
  10234. left:0px;
  10235. top:0px;
  10236. width:126px;
  10237. height:30px;
  10238. background:inherit;
  10239. background-color:rgba(255, 255, 255, 0);
  10240. border:none;
  10241. border-top:0px;
  10242. border-right:0px;
  10243. border-bottom:0px;
  10244. border-radius:0px;
  10245. border-top-left-radius:0px;
  10246. border-bottom-left-radius:0px;
  10247. -moz-box-shadow:none;
  10248. -webkit-box-shadow:none;
  10249. box-shadow:none;
  10250. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10251. font-weight:400;
  10252. font-style:normal;
  10253. font-size:14px;
  10254. }
  10255. #u68547 {
  10256. border-width:0px;
  10257. position:absolute;
  10258. left:1264px;
  10259. top:412px;
  10260. width:126px;
  10261. height:30px;
  10262. display:flex;
  10263. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10264. font-weight:400;
  10265. font-style:normal;
  10266. font-size:14px;
  10267. }
  10268. #u68547 .text {
  10269. position:absolute;
  10270. align-self:center;
  10271. padding:5px 10px 5px 0px;
  10272. box-sizing:border-box;
  10273. width:100%;
  10274. }
  10275. #u68547_text {
  10276. border-width:0px;
  10277. white-space:nowrap;
  10278. text-transform:none;
  10279. }
  10280. #u68548_div {
  10281. border-width:0px;
  10282. position:absolute;
  10283. left:0px;
  10284. top:0px;
  10285. width:81px;
  10286. height:30px;
  10287. background:inherit;
  10288. background-color:rgba(255, 255, 255, 0);
  10289. border:none;
  10290. border-top:0px;
  10291. border-right:0px;
  10292. border-bottom:0px;
  10293. border-radius:0px;
  10294. border-top-left-radius:0px;
  10295. border-bottom-left-radius:0px;
  10296. -moz-box-shadow:none;
  10297. -webkit-box-shadow:none;
  10298. box-shadow:none;
  10299. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10300. font-weight:400;
  10301. font-style:normal;
  10302. font-size:14px;
  10303. color:#7F7F7F;
  10304. }
  10305. #u68548 {
  10306. border-width:0px;
  10307. position:absolute;
  10308. left:1183px;
  10309. top:452px;
  10310. width:81px;
  10311. height:30px;
  10312. display:flex;
  10313. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10314. font-weight:400;
  10315. font-style:normal;
  10316. font-size:14px;
  10317. color:#7F7F7F;
  10318. }
  10319. #u68548 .text {
  10320. position:absolute;
  10321. align-self:center;
  10322. padding:5px 10px 5px 0px;
  10323. box-sizing:border-box;
  10324. width:100%;
  10325. }
  10326. #u68548_text {
  10327. border-width:0px;
  10328. white-space:nowrap;
  10329. text-transform:none;
  10330. }
  10331. #u68549_div {
  10332. border-width:0px;
  10333. position:absolute;
  10334. left:0px;
  10335. top:0px;
  10336. width:263px;
  10337. height:30px;
  10338. background:inherit;
  10339. background-color:rgba(255, 255, 255, 0);
  10340. border:none;
  10341. border-top:0px;
  10342. border-right:0px;
  10343. border-bottom:0px;
  10344. border-radius:0px;
  10345. border-top-left-radius:0px;
  10346. border-bottom-left-radius:0px;
  10347. -moz-box-shadow:none;
  10348. -webkit-box-shadow:none;
  10349. box-shadow:none;
  10350. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10351. font-weight:400;
  10352. font-style:normal;
  10353. font-size:14px;
  10354. }
  10355. #u68549 {
  10356. border-width:0px;
  10357. position:absolute;
  10358. left:1264px;
  10359. top:452px;
  10360. width:263px;
  10361. height:30px;
  10362. display:flex;
  10363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10364. font-weight:400;
  10365. font-style:normal;
  10366. font-size:14px;
  10367. }
  10368. #u68549 .text {
  10369. position:absolute;
  10370. align-self:center;
  10371. padding:5px 10px 5px 0px;
  10372. box-sizing:border-box;
  10373. width:100%;
  10374. }
  10375. #u68549_text {
  10376. border-width:0px;
  10377. white-space:nowrap;
  10378. text-transform:none;
  10379. }
  10380. #u68550 {
  10381. border-width:0px;
  10382. position:absolute;
  10383. left:0px;
  10384. top:0px;
  10385. width:0px;
  10386. height:0px;
  10387. }
  10388. #u68551_div {
  10389. border-width:0px;
  10390. position:absolute;
  10391. left:0px;
  10392. top:0px;
  10393. width:1000px;
  10394. height:60px;
  10395. background:inherit;
  10396. background-color:rgba(255, 255, 255, 1);
  10397. box-sizing:border-box;
  10398. border-width:1px;
  10399. border-style:solid;
  10400. border-color:rgba(215, 215, 215, 1);
  10401. border-radius:0px;
  10402. -moz-box-shadow:none;
  10403. -webkit-box-shadow:none;
  10404. box-shadow:none;
  10405. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10406. font-weight:400;
  10407. font-style:normal;
  10408. font-size:14px;
  10409. color:#AAAAAA;
  10410. text-align:center;
  10411. line-height:30px;
  10412. }
  10413. #u68551 {
  10414. border-width:0px;
  10415. position:absolute;
  10416. left:1143px;
  10417. top:1194px;
  10418. width:1000px;
  10419. height:60px;
  10420. display:flex;
  10421. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10422. font-weight:400;
  10423. font-style:normal;
  10424. font-size:14px;
  10425. color:#AAAAAA;
  10426. text-align:center;
  10427. line-height:30px;
  10428. }
  10429. #u68551 .text {
  10430. position:absolute;
  10431. align-self:center;
  10432. padding:5px 10px 5px 10px;
  10433. box-sizing:border-box;
  10434. width:100%;
  10435. }
  10436. #u68551_text {
  10437. border-width:0px;
  10438. word-wrap:break-word;
  10439. text-transform:none;
  10440. visibility:hidden;
  10441. }
  10442. #u68552_div {
  10443. border-width:0px;
  10444. position:absolute;
  10445. left:0px;
  10446. top:0px;
  10447. width:80px;
  10448. height:30px;
  10449. background:inherit;
  10450. background-color:rgba(24, 144, 255, 1);
  10451. border:none;
  10452. border-radius:4px;
  10453. -moz-box-shadow:none;
  10454. -webkit-box-shadow:none;
  10455. box-shadow:none;
  10456. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10457. font-weight:400;
  10458. font-style:normal;
  10459. font-size:14px;
  10460. color:#FFFFFF;
  10461. }
  10462. #u68552 {
  10463. border-width:0px;
  10464. position:absolute;
  10465. left:2037px;
  10466. top:1209px;
  10467. width:80px;
  10468. height:30px;
  10469. display:flex;
  10470. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10471. font-weight:400;
  10472. font-style:normal;
  10473. font-size:14px;
  10474. color:#FFFFFF;
  10475. }
  10476. #u68552 .text {
  10477. position:absolute;
  10478. align-self:center;
  10479. padding:2px 2px 2px 2px;
  10480. box-sizing:border-box;
  10481. width:100%;
  10482. }
  10483. #u68552_text {
  10484. border-width:0px;
  10485. word-wrap:break-word;
  10486. text-transform:none;
  10487. }
  10488. #u68553_div {
  10489. border-width:0px;
  10490. position:absolute;
  10491. left:0px;
  10492. top:0px;
  10493. width:80px;
  10494. height:30px;
  10495. background:inherit;
  10496. background-color:rgba(255, 255, 255, 1);
  10497. box-sizing:border-box;
  10498. border-width:1px;
  10499. border-style:solid;
  10500. border-color:rgba(170, 170, 170, 1);
  10501. border-radius:4px;
  10502. -moz-box-shadow:none;
  10503. -webkit-box-shadow:none;
  10504. box-shadow:none;
  10505. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10506. font-weight:400;
  10507. font-style:normal;
  10508. font-size:14px;
  10509. }
  10510. #u68553 {
  10511. border-width:0px;
  10512. position:absolute;
  10513. left:1947px;
  10514. top:1209px;
  10515. width:80px;
  10516. height:30px;
  10517. display:flex;
  10518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10519. font-weight:400;
  10520. font-style:normal;
  10521. font-size:14px;
  10522. }
  10523. #u68553 .text {
  10524. position:absolute;
  10525. align-self:center;
  10526. padding:2px 2px 2px 2px;
  10527. box-sizing:border-box;
  10528. width:100%;
  10529. }
  10530. #u68553_text {
  10531. border-width:0px;
  10532. word-wrap:break-word;
  10533. text-transform:none;
  10534. }
  10535. #u68554_img {
  10536. border-width:0px;
  10537. position:absolute;
  10538. left:0px;
  10539. top:0px;
  10540. width:942px;
  10541. height:2px;
  10542. }
  10543. #u68554 {
  10544. border-width:0px;
  10545. position:absolute;
  10546. left:1183px;
  10547. top:500px;
  10548. width:941px;
  10549. height:1px;
  10550. display:flex;
  10551. }
  10552. #u68554 .text {
  10553. position:absolute;
  10554. align-self:center;
  10555. padding:2px 2px 2px 2px;
  10556. box-sizing:border-box;
  10557. width:100%;
  10558. }
  10559. #u68554_text {
  10560. border-width:0px;
  10561. word-wrap:break-word;
  10562. text-transform:none;
  10563. visibility:hidden;
  10564. }
  10565. #u68555_div {
  10566. border-width:0px;
  10567. position:absolute;
  10568. left:0px;
  10569. top:0px;
  10570. width:1000px;
  10571. height:200px;
  10572. background:inherit;
  10573. background-color:rgba(255, 255, 255, 1);
  10574. box-sizing:border-box;
  10575. border-width:1px;
  10576. border-style:solid;
  10577. border-color:rgba(215, 215, 215, 1);
  10578. border-radius:0px;
  10579. -moz-box-shadow:none;
  10580. -webkit-box-shadow:none;
  10581. box-shadow:none;
  10582. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10583. font-weight:400;
  10584. font-style:normal;
  10585. font-size:14px;
  10586. color:#AAAAAA;
  10587. text-align:center;
  10588. line-height:30px;
  10589. }
  10590. #u68555 {
  10591. border-width:0px;
  10592. position:absolute;
  10593. left:1144px;
  10594. top:55px;
  10595. width:1000px;
  10596. height:200px;
  10597. display:flex;
  10598. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10599. font-weight:400;
  10600. font-style:normal;
  10601. font-size:14px;
  10602. color:#AAAAAA;
  10603. text-align:center;
  10604. line-height:30px;
  10605. }
  10606. #u68555 .text {
  10607. position:absolute;
  10608. align-self:center;
  10609. padding:5px 10px 5px 10px;
  10610. box-sizing:border-box;
  10611. width:100%;
  10612. }
  10613. #u68555_text {
  10614. border-width:0px;
  10615. word-wrap:break-word;
  10616. text-transform:none;
  10617. visibility:hidden;
  10618. }
  10619. #u68556_div {
  10620. border-width:0px;
  10621. position:absolute;
  10622. left:0px;
  10623. top:0px;
  10624. width:155px;
  10625. height:35px;
  10626. background:inherit;
  10627. background-color:rgba(255, 255, 255, 0);
  10628. border:none;
  10629. border-top:0px;
  10630. border-right:0px;
  10631. border-bottom:0px;
  10632. border-radius:0px;
  10633. border-top-left-radius:0px;
  10634. border-bottom-left-radius:0px;
  10635. -moz-box-shadow:none;
  10636. -webkit-box-shadow:none;
  10637. box-shadow:none;
  10638. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10639. font-weight:500;
  10640. font-style:normal;
  10641. font-size:18px;
  10642. }
  10643. #u68556 {
  10644. border-width:0px;
  10645. position:absolute;
  10646. left:1164px;
  10647. top:73px;
  10648. width:155px;
  10649. height:35px;
  10650. display:flex;
  10651. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10652. font-weight:500;
  10653. font-style:normal;
  10654. font-size:18px;
  10655. }
  10656. #u68556 .text {
  10657. position:absolute;
  10658. align-self:center;
  10659. padding:5px 10px 5px 0px;
  10660. box-sizing:border-box;
  10661. width:100%;
  10662. }
  10663. #u68556_text {
  10664. border-width:0px;
  10665. white-space:nowrap;
  10666. text-transform:none;
  10667. }
  10668. #u68557_div {
  10669. border-width:0px;
  10670. position:absolute;
  10671. left:0px;
  10672. top:0px;
  10673. width:146px;
  10674. height:43px;
  10675. background:inherit;
  10676. background-color:rgba(255, 255, 255, 0);
  10677. border:none;
  10678. border-top:0px;
  10679. border-right:0px;
  10680. border-bottom:0px;
  10681. border-radius:0px;
  10682. border-top-left-radius:0px;
  10683. border-bottom-left-radius:0px;
  10684. -moz-box-shadow:none;
  10685. -webkit-box-shadow:none;
  10686. box-shadow:none;
  10687. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10688. font-weight:500;
  10689. font-style:normal;
  10690. font-size:24px;
  10691. }
  10692. #u68557 {
  10693. border-width:0px;
  10694. position:absolute;
  10695. left:1174px;
  10696. top:124px;
  10697. width:146px;
  10698. height:43px;
  10699. display:flex;
  10700. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10701. font-weight:500;
  10702. font-style:normal;
  10703. font-size:24px;
  10704. }
  10705. #u68557 .text {
  10706. position:absolute;
  10707. align-self:center;
  10708. padding:5px 10px 5px 0px;
  10709. box-sizing:border-box;
  10710. width:100%;
  10711. }
  10712. #u68557_text {
  10713. border-width:0px;
  10714. white-space:nowrap;
  10715. text-transform:none;
  10716. }
  10717. #u68558_img {
  10718. border-width:0px;
  10719. position:absolute;
  10720. left:0px;
  10721. top:0px;
  10722. width:108px;
  10723. height:108px;
  10724. }
  10725. #u68558 {
  10726. border-width:0px;
  10727. position:absolute;
  10728. left:1994px;
  10729. top:125px;
  10730. width:108px;
  10731. height:108px;
  10732. display:flex;
  10733. -webkit-transform:rotate(315deg);
  10734. -moz-transform:rotate(315deg);
  10735. -ms-transform:rotate(315deg);
  10736. transform:rotate(315deg);
  10737. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10738. font-weight:400;
  10739. font-style:normal;
  10740. font-size:28px;
  10741. color:#F59A23;
  10742. }
  10743. #u68558 .text {
  10744. position:absolute;
  10745. align-self:center;
  10746. padding:2px 2px 2px 2px;
  10747. box-sizing:border-box;
  10748. width:100%;
  10749. }
  10750. #u68558_text {
  10751. border-width:0px;
  10752. word-wrap:break-word;
  10753. text-transform:none;
  10754. }
  10755. #u68559_div {
  10756. border-width:0px;
  10757. position:absolute;
  10758. left:0px;
  10759. top:0px;
  10760. width:325px;
  10761. height:60px;
  10762. background:inherit;
  10763. background-color:rgba(255, 255, 255, 0);
  10764. border:none;
  10765. border-left:0px;
  10766. border-top:0px;
  10767. border-right:0px;
  10768. border-radius:0px;
  10769. border-bottom-right-radius:0px;
  10770. border-bottom-left-radius:0px;
  10771. -moz-box-shadow:none;
  10772. -webkit-box-shadow:none;
  10773. box-shadow:none;
  10774. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10775. font-weight:400;
  10776. font-style:normal;
  10777. font-size:14px;
  10778. line-height:30px;
  10779. }
  10780. #u68559 {
  10781. border-width:0px;
  10782. position:absolute;
  10783. left:1174px;
  10784. top:179px;
  10785. width:325px;
  10786. height:60px;
  10787. display:flex;
  10788. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10789. font-weight:400;
  10790. font-style:normal;
  10791. font-size:14px;
  10792. line-height:30px;
  10793. }
  10794. #u68559 .text {
  10795. position:absolute;
  10796. align-self:flex-start;
  10797. padding:0px 0px 0px 0px;
  10798. box-sizing:border-box;
  10799. width:100%;
  10800. }
  10801. #u68559_text {
  10802. border-width:0px;
  10803. word-wrap:break-word;
  10804. text-transform:none;
  10805. }
  10806. #u68560_img {
  10807. border-width:0px;
  10808. position:absolute;
  10809. left:0px;
  10810. top:0px;
  10811. width:17px;
  10812. height:17px;
  10813. }
  10814. #u68560 {
  10815. border-width:0px;
  10816. position:absolute;
  10817. left:2116px;
  10818. top:77px;
  10819. width:17px;
  10820. height:17px;
  10821. display:flex;
  10822. }
  10823. #u68560 .text {
  10824. position:absolute;
  10825. align-self:center;
  10826. padding:2px 2px 2px 2px;
  10827. box-sizing:border-box;
  10828. width:100%;
  10829. }
  10830. #u68560_text {
  10831. border-width:0px;
  10832. word-wrap:break-word;
  10833. text-transform:none;
  10834. visibility:hidden;
  10835. }
  10836. #u68561 {
  10837. border-width:0px;
  10838. position:absolute;
  10839. left:0px;
  10840. top:0px;
  10841. width:0px;
  10842. height:0px;
  10843. }
  10844. #u68562_div {
  10845. border-width:0px;
  10846. position:absolute;
  10847. left:0px;
  10848. top:0px;
  10849. width:930px;
  10850. height:210px;
  10851. background:inherit;
  10852. background-color:rgba(242, 242, 242, 1);
  10853. border:none;
  10854. border-radius:0px;
  10855. -moz-box-shadow:none;
  10856. -webkit-box-shadow:none;
  10857. box-shadow:none;
  10858. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10859. font-weight:400;
  10860. font-style:normal;
  10861. font-size:14px;
  10862. color:#AAAAAA;
  10863. text-align:center;
  10864. line-height:30px;
  10865. }
  10866. #u68562 {
  10867. border-width:0px;
  10868. position:absolute;
  10869. left:1183px;
  10870. top:634px;
  10871. width:930px;
  10872. height:210px;
  10873. display:flex;
  10874. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10875. font-weight:400;
  10876. font-style:normal;
  10877. font-size:14px;
  10878. color:#AAAAAA;
  10879. text-align:center;
  10880. line-height:30px;
  10881. }
  10882. #u68562 .text {
  10883. position:absolute;
  10884. align-self:center;
  10885. padding:5px 10px 5px 10px;
  10886. box-sizing:border-box;
  10887. width:100%;
  10888. }
  10889. #u68562_text {
  10890. border-width:0px;
  10891. word-wrap:break-word;
  10892. text-transform:none;
  10893. visibility:hidden;
  10894. }
  10895. #u68563_div {
  10896. border-width:0px;
  10897. position:absolute;
  10898. left:0px;
  10899. top:0px;
  10900. width:80px;
  10901. height:40px;
  10902. background:inherit;
  10903. background-color:rgba(255, 255, 255, 0);
  10904. border:none;
  10905. border-top:0px;
  10906. border-right:0px;
  10907. border-bottom:0px;
  10908. border-radius:0px;
  10909. border-top-left-radius:0px;
  10910. border-bottom-left-radius:0px;
  10911. -moz-box-shadow:none;
  10912. -webkit-box-shadow:none;
  10913. box-shadow:none;
  10914. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10915. font-weight:400;
  10916. font-style:normal;
  10917. font-size:14px;
  10918. color:#7F7F7F;
  10919. line-height:40px;
  10920. }
  10921. #u68563 {
  10922. border-width:0px;
  10923. position:absolute;
  10924. left:1206px;
  10925. top:654px;
  10926. width:80px;
  10927. height:40px;
  10928. display:flex;
  10929. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10930. font-weight:400;
  10931. font-style:normal;
  10932. font-size:14px;
  10933. color:#7F7F7F;
  10934. line-height:40px;
  10935. }
  10936. #u68563 .text {
  10937. position:absolute;
  10938. align-self:center;
  10939. padding:0px 0px 0px 0px;
  10940. box-sizing:border-box;
  10941. width:100%;
  10942. }
  10943. #u68563_text {
  10944. border-width:0px;
  10945. word-wrap:break-word;
  10946. text-transform:none;
  10947. }
  10948. #u68564_div {
  10949. border-width:0px;
  10950. position:absolute;
  10951. left:0px;
  10952. top:0px;
  10953. width:160px;
  10954. height:40px;
  10955. background:inherit;
  10956. background-color:rgba(255, 255, 255, 0);
  10957. border:none;
  10958. border-top:0px;
  10959. border-right:0px;
  10960. border-bottom:0px;
  10961. border-radius:0px;
  10962. border-top-left-radius:0px;
  10963. border-bottom-left-radius:0px;
  10964. -moz-box-shadow:none;
  10965. -webkit-box-shadow:none;
  10966. box-shadow:none;
  10967. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10968. font-weight:400;
  10969. font-style:normal;
  10970. font-size:14px;
  10971. line-height:40px;
  10972. }
  10973. #u68564 {
  10974. border-width:0px;
  10975. position:absolute;
  10976. left:1286px;
  10977. top:654px;
  10978. width:160px;
  10979. height:40px;
  10980. display:flex;
  10981. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10982. font-weight:400;
  10983. font-style:normal;
  10984. font-size:14px;
  10985. line-height:40px;
  10986. }
  10987. #u68564 .text {
  10988. position:absolute;
  10989. align-self:center;
  10990. padding:0px 0px 0px 0px;
  10991. box-sizing:border-box;
  10992. width:100%;
  10993. }
  10994. #u68564_text {
  10995. border-width:0px;
  10996. word-wrap:break-word;
  10997. text-transform:none;
  10998. }
  10999. #u68565_div {
  11000. border-width:0px;
  11001. position:absolute;
  11002. left:0px;
  11003. top:0px;
  11004. width:80px;
  11005. height:40px;
  11006. background:inherit;
  11007. background-color:rgba(255, 255, 255, 0);
  11008. border:none;
  11009. border-top:0px;
  11010. border-right:0px;
  11011. border-bottom:0px;
  11012. border-radius:0px;
  11013. border-top-left-radius:0px;
  11014. border-bottom-left-radius:0px;
  11015. -moz-box-shadow:none;
  11016. -webkit-box-shadow:none;
  11017. box-shadow:none;
  11018. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11019. font-weight:400;
  11020. font-style:normal;
  11021. font-size:14px;
  11022. color:#7F7F7F;
  11023. line-height:40px;
  11024. }
  11025. #u68565 {
  11026. border-width:0px;
  11027. position:absolute;
  11028. left:1503px;
  11029. top:654px;
  11030. width:80px;
  11031. height:40px;
  11032. display:flex;
  11033. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11034. font-weight:400;
  11035. font-style:normal;
  11036. font-size:14px;
  11037. color:#7F7F7F;
  11038. line-height:40px;
  11039. }
  11040. #u68565 .text {
  11041. position:absolute;
  11042. align-self:center;
  11043. padding:0px 0px 0px 0px;
  11044. box-sizing:border-box;
  11045. width:100%;
  11046. }
  11047. #u68565_text {
  11048. border-width:0px;
  11049. word-wrap:break-word;
  11050. text-transform:none;
  11051. }
  11052. #u68566_div {
  11053. border-width:0px;
  11054. position:absolute;
  11055. left:0px;
  11056. top:0px;
  11057. width:160px;
  11058. height:40px;
  11059. background:inherit;
  11060. background-color:rgba(255, 255, 255, 0);
  11061. border:none;
  11062. border-top:0px;
  11063. border-right:0px;
  11064. border-bottom:0px;
  11065. border-radius:0px;
  11066. border-top-left-radius:0px;
  11067. border-bottom-left-radius:0px;
  11068. -moz-box-shadow:none;
  11069. -webkit-box-shadow:none;
  11070. box-shadow:none;
  11071. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11072. font-weight:400;
  11073. font-style:normal;
  11074. font-size:14px;
  11075. line-height:40px;
  11076. }
  11077. #u68566 {
  11078. border-width:0px;
  11079. position:absolute;
  11080. left:1583px;
  11081. top:654px;
  11082. width:160px;
  11083. height:40px;
  11084. display:flex;
  11085. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11086. font-weight:400;
  11087. font-style:normal;
  11088. font-size:14px;
  11089. line-height:40px;
  11090. }
  11091. #u68566 .text {
  11092. position:absolute;
  11093. align-self:center;
  11094. padding:0px 0px 0px 0px;
  11095. box-sizing:border-box;
  11096. width:100%;
  11097. }
  11098. #u68566_text {
  11099. border-width:0px;
  11100. word-wrap:break-word;
  11101. text-transform:none;
  11102. }
  11103. #u68567_div {
  11104. border-width:0px;
  11105. position:absolute;
  11106. left:0px;
  11107. top:0px;
  11108. width:78px;
  11109. height:40px;
  11110. background:inherit;
  11111. background-color:rgba(255, 255, 255, 0);
  11112. border:none;
  11113. border-top:0px;
  11114. border-right:0px;
  11115. border-bottom:0px;
  11116. border-radius:0px;
  11117. border-top-left-radius:0px;
  11118. border-bottom-left-radius:0px;
  11119. -moz-box-shadow:none;
  11120. -webkit-box-shadow:none;
  11121. box-shadow:none;
  11122. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11123. font-weight:400;
  11124. font-style:normal;
  11125. font-size:14px;
  11126. color:#7F7F7F;
  11127. line-height:40px;
  11128. }
  11129. #u68567 {
  11130. border-width:0px;
  11131. position:absolute;
  11132. left:1206px;
  11133. top:743px;
  11134. width:78px;
  11135. height:40px;
  11136. display:flex;
  11137. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11138. font-weight:400;
  11139. font-style:normal;
  11140. font-size:14px;
  11141. color:#7F7F7F;
  11142. line-height:40px;
  11143. }
  11144. #u68567 .text {
  11145. position:absolute;
  11146. align-self:center;
  11147. padding:0px 0px 0px 0px;
  11148. box-sizing:border-box;
  11149. width:100%;
  11150. }
  11151. #u68567_text {
  11152. border-width:0px;
  11153. white-space:nowrap;
  11154. text-transform:none;
  11155. }
  11156. #u68568_img {
  11157. border-width:0px;
  11158. position:absolute;
  11159. left:0px;
  11160. top:0px;
  11161. width:120px;
  11162. height:80px;
  11163. }
  11164. #u68568 {
  11165. border-width:0px;
  11166. position:absolute;
  11167. left:1285px;
  11168. top:743px;
  11169. width:120px;
  11170. height:80px;
  11171. display:flex;
  11172. }
  11173. #u68568 .text {
  11174. position:absolute;
  11175. align-self:center;
  11176. padding:0px 0px 0px 0px;
  11177. box-sizing:border-box;
  11178. width:100%;
  11179. }
  11180. #u68568_text {
  11181. border-width:0px;
  11182. word-wrap:break-word;
  11183. text-transform:none;
  11184. }
  11185. #u68569_img {
  11186. border-width:0px;
  11187. position:absolute;
  11188. left:0px;
  11189. top:0px;
  11190. width:120px;
  11191. height:80px;
  11192. }
  11193. #u68569 {
  11194. border-width:0px;
  11195. position:absolute;
  11196. left:1427px;
  11197. top:743px;
  11198. width:120px;
  11199. height:80px;
  11200. display:flex;
  11201. }
  11202. #u68569 .text {
  11203. position:absolute;
  11204. align-self:center;
  11205. padding:0px 0px 0px 0px;
  11206. box-sizing:border-box;
  11207. width:100%;
  11208. }
  11209. #u68569_text {
  11210. border-width:0px;
  11211. word-wrap:break-word;
  11212. text-transform:none;
  11213. }
  11214. #u68570_img {
  11215. border-width:0px;
  11216. position:absolute;
  11217. left:0px;
  11218. top:0px;
  11219. width:120px;
  11220. height:80px;
  11221. }
  11222. #u68570 {
  11223. border-width:0px;
  11224. position:absolute;
  11225. left:1568px;
  11226. top:743px;
  11227. width:120px;
  11228. height:80px;
  11229. display:flex;
  11230. }
  11231. #u68570 .text {
  11232. position:absolute;
  11233. align-self:center;
  11234. padding:0px 0px 0px 0px;
  11235. box-sizing:border-box;
  11236. width:100%;
  11237. }
  11238. #u68570_text {
  11239. border-width:0px;
  11240. word-wrap:break-word;
  11241. text-transform:none;
  11242. }
  11243. #u68571_div {
  11244. border-width:0px;
  11245. position:absolute;
  11246. left:0px;
  11247. top:0px;
  11248. width:80px;
  11249. height:40px;
  11250. background:inherit;
  11251. background-color:rgba(255, 255, 255, 0);
  11252. border:none;
  11253. border-top:0px;
  11254. border-right:0px;
  11255. border-bottom:0px;
  11256. border-radius:0px;
  11257. border-top-left-radius:0px;
  11258. border-bottom-left-radius:0px;
  11259. -moz-box-shadow:none;
  11260. -webkit-box-shadow:none;
  11261. box-shadow:none;
  11262. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11263. font-weight:400;
  11264. font-style:normal;
  11265. font-size:14px;
  11266. color:#7F7F7F;
  11267. line-height:40px;
  11268. }
  11269. #u68571 {
  11270. border-width:0px;
  11271. position:absolute;
  11272. left:1818px;
  11273. top:654px;
  11274. width:80px;
  11275. height:40px;
  11276. display:flex;
  11277. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11278. font-weight:400;
  11279. font-style:normal;
  11280. font-size:14px;
  11281. color:#7F7F7F;
  11282. line-height:40px;
  11283. }
  11284. #u68571 .text {
  11285. position:absolute;
  11286. align-self:center;
  11287. padding:0px 0px 0px 0px;
  11288. box-sizing:border-box;
  11289. width:100%;
  11290. }
  11291. #u68571_text {
  11292. border-width:0px;
  11293. word-wrap:break-word;
  11294. text-transform:none;
  11295. }
  11296. #u68572_div {
  11297. border-width:0px;
  11298. position:absolute;
  11299. left:0px;
  11300. top:0px;
  11301. width:23px;
  11302. height:40px;
  11303. background:inherit;
  11304. background-color:rgba(255, 255, 255, 0);
  11305. border:none;
  11306. border-top:0px;
  11307. border-right:0px;
  11308. border-bottom:0px;
  11309. border-radius:0px;
  11310. border-top-left-radius:0px;
  11311. border-bottom-left-radius:0px;
  11312. -moz-box-shadow:none;
  11313. -webkit-box-shadow:none;
  11314. box-shadow:none;
  11315. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11316. font-weight:400;
  11317. font-style:normal;
  11318. font-size:14px;
  11319. line-height:40px;
  11320. }
  11321. #u68572 {
  11322. border-width:0px;
  11323. position:absolute;
  11324. left:1898px;
  11325. top:654px;
  11326. width:23px;
  11327. height:40px;
  11328. display:flex;
  11329. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11330. font-weight:400;
  11331. font-style:normal;
  11332. font-size:14px;
  11333. line-height:40px;
  11334. }
  11335. #u68572 .text {
  11336. position:absolute;
  11337. align-self:center;
  11338. padding:0px 0px 0px 0px;
  11339. box-sizing:border-box;
  11340. width:100%;
  11341. }
  11342. #u68572_text {
  11343. border-width:0px;
  11344. white-space:nowrap;
  11345. text-transform:none;
  11346. }
  11347. #u68573_div {
  11348. border-width:0px;
  11349. position:absolute;
  11350. left:0px;
  11351. top:0px;
  11352. width:80px;
  11353. height:40px;
  11354. background:inherit;
  11355. background-color:rgba(255, 255, 255, 0);
  11356. border:none;
  11357. border-top:0px;
  11358. border-right:0px;
  11359. border-bottom:0px;
  11360. border-radius:0px;
  11361. border-top-left-radius:0px;
  11362. border-bottom-left-radius:0px;
  11363. -moz-box-shadow:none;
  11364. -webkit-box-shadow:none;
  11365. box-shadow:none;
  11366. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11367. font-weight:400;
  11368. font-style:normal;
  11369. font-size:14px;
  11370. color:#7F7F7F;
  11371. line-height:40px;
  11372. }
  11373. #u68573 {
  11374. border-width:0px;
  11375. position:absolute;
  11376. left:1206px;
  11377. top:693px;
  11378. width:80px;
  11379. height:40px;
  11380. display:flex;
  11381. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11382. font-weight:400;
  11383. font-style:normal;
  11384. font-size:14px;
  11385. color:#7F7F7F;
  11386. line-height:40px;
  11387. }
  11388. #u68573 .text {
  11389. position:absolute;
  11390. align-self:center;
  11391. padding:0px 0px 0px 0px;
  11392. box-sizing:border-box;
  11393. width:100%;
  11394. }
  11395. #u68573_text {
  11396. border-width:0px;
  11397. word-wrap:break-word;
  11398. text-transform:none;
  11399. }
  11400. #u68574_div {
  11401. border-width:0px;
  11402. position:absolute;
  11403. left:0px;
  11404. top:0px;
  11405. width:160px;
  11406. height:40px;
  11407. background:inherit;
  11408. background-color:rgba(255, 255, 255, 0);
  11409. border:none;
  11410. border-top:0px;
  11411. border-right:0px;
  11412. border-bottom:0px;
  11413. border-radius:0px;
  11414. border-top-left-radius:0px;
  11415. border-bottom-left-radius:0px;
  11416. -moz-box-shadow:none;
  11417. -webkit-box-shadow:none;
  11418. box-shadow:none;
  11419. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11420. font-weight:400;
  11421. font-style:normal;
  11422. font-size:14px;
  11423. line-height:40px;
  11424. }
  11425. #u68574 {
  11426. border-width:0px;
  11427. position:absolute;
  11428. left:1286px;
  11429. top:693px;
  11430. width:160px;
  11431. height:40px;
  11432. display:flex;
  11433. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11434. font-weight:400;
  11435. font-style:normal;
  11436. font-size:14px;
  11437. line-height:40px;
  11438. }
  11439. #u68574 .text {
  11440. position:absolute;
  11441. align-self:center;
  11442. padding:0px 0px 0px 0px;
  11443. box-sizing:border-box;
  11444. width:100%;
  11445. }
  11446. #u68574_text {
  11447. border-width:0px;
  11448. word-wrap:break-word;
  11449. text-transform:none;
  11450. }
  11451. #u68575_div {
  11452. border-width:0px;
  11453. position:absolute;
  11454. left:0px;
  11455. top:0px;
  11456. width:80px;
  11457. height:40px;
  11458. background:inherit;
  11459. background-color:rgba(255, 255, 255, 0);
  11460. border:none;
  11461. border-top:0px;
  11462. border-right:0px;
  11463. border-bottom:0px;
  11464. border-radius:0px;
  11465. border-top-left-radius:0px;
  11466. border-bottom-left-radius:0px;
  11467. -moz-box-shadow:none;
  11468. -webkit-box-shadow:none;
  11469. box-shadow:none;
  11470. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11471. font-weight:400;
  11472. font-style:normal;
  11473. font-size:14px;
  11474. color:#7F7F7F;
  11475. line-height:40px;
  11476. }
  11477. #u68575 {
  11478. border-width:0px;
  11479. position:absolute;
  11480. left:1503px;
  11481. top:693px;
  11482. width:80px;
  11483. height:40px;
  11484. display:flex;
  11485. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11486. font-weight:400;
  11487. font-style:normal;
  11488. font-size:14px;
  11489. color:#7F7F7F;
  11490. line-height:40px;
  11491. }
  11492. #u68575 .text {
  11493. position:absolute;
  11494. align-self:center;
  11495. padding:0px 0px 0px 0px;
  11496. box-sizing:border-box;
  11497. width:100%;
  11498. }
  11499. #u68575_text {
  11500. border-width:0px;
  11501. word-wrap:break-word;
  11502. text-transform:none;
  11503. }
  11504. #u68576_div {
  11505. border-width:0px;
  11506. position:absolute;
  11507. left:0px;
  11508. top:0px;
  11509. width:160px;
  11510. height:40px;
  11511. background:inherit;
  11512. background-color:rgba(255, 255, 255, 0);
  11513. border:none;
  11514. border-top:0px;
  11515. border-right:0px;
  11516. border-bottom:0px;
  11517. border-radius:0px;
  11518. border-top-left-radius:0px;
  11519. border-bottom-left-radius:0px;
  11520. -moz-box-shadow:none;
  11521. -webkit-box-shadow:none;
  11522. box-shadow:none;
  11523. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11524. font-weight:400;
  11525. font-style:normal;
  11526. font-size:14px;
  11527. line-height:40px;
  11528. }
  11529. #u68576 {
  11530. border-width:0px;
  11531. position:absolute;
  11532. left:1583px;
  11533. top:693px;
  11534. width:160px;
  11535. height:40px;
  11536. display:flex;
  11537. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11538. font-weight:400;
  11539. font-style:normal;
  11540. font-size:14px;
  11541. line-height:40px;
  11542. }
  11543. #u68576 .text {
  11544. position:absolute;
  11545. align-self:center;
  11546. padding:0px 0px 0px 0px;
  11547. box-sizing:border-box;
  11548. width:100%;
  11549. }
  11550. #u68576_text {
  11551. border-width:0px;
  11552. word-wrap:break-word;
  11553. text-transform:none;
  11554. }
  11555. #u68577_div {
  11556. border-width:0px;
  11557. position:absolute;
  11558. left:0px;
  11559. top:0px;
  11560. width:80px;
  11561. height:40px;
  11562. background:inherit;
  11563. background-color:rgba(255, 255, 255, 0);
  11564. border:none;
  11565. border-top:0px;
  11566. border-right:0px;
  11567. border-bottom:0px;
  11568. border-radius:0px;
  11569. border-top-left-radius:0px;
  11570. border-bottom-left-radius:0px;
  11571. -moz-box-shadow:none;
  11572. -webkit-box-shadow:none;
  11573. box-shadow:none;
  11574. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11575. font-weight:400;
  11576. font-style:normal;
  11577. font-size:14px;
  11578. color:#7F7F7F;
  11579. line-height:40px;
  11580. }
  11581. #u68577 {
  11582. border-width:0px;
  11583. position:absolute;
  11584. left:1818px;
  11585. top:693px;
  11586. width:80px;
  11587. height:40px;
  11588. display:flex;
  11589. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11590. font-weight:400;
  11591. font-style:normal;
  11592. font-size:14px;
  11593. color:#7F7F7F;
  11594. line-height:40px;
  11595. }
  11596. #u68577 .text {
  11597. position:absolute;
  11598. align-self:center;
  11599. padding:0px 0px 0px 0px;
  11600. box-sizing:border-box;
  11601. width:100%;
  11602. }
  11603. #u68577_text {
  11604. border-width:0px;
  11605. word-wrap:break-word;
  11606. text-transform:none;
  11607. }
  11608. #u68578_div {
  11609. border-width:0px;
  11610. position:absolute;
  11611. left:0px;
  11612. top:0px;
  11613. width:65px;
  11614. height:40px;
  11615. background:inherit;
  11616. background-color:rgba(255, 255, 255, 0);
  11617. border:none;
  11618. border-top:0px;
  11619. border-right:0px;
  11620. border-bottom:0px;
  11621. border-radius:0px;
  11622. border-top-left-radius:0px;
  11623. border-bottom-left-radius:0px;
  11624. -moz-box-shadow:none;
  11625. -webkit-box-shadow:none;
  11626. box-shadow:none;
  11627. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11628. font-weight:400;
  11629. font-style:normal;
  11630. font-size:14px;
  11631. line-height:40px;
  11632. }
  11633. #u68578 {
  11634. border-width:0px;
  11635. position:absolute;
  11636. left:1898px;
  11637. top:693px;
  11638. width:65px;
  11639. height:40px;
  11640. display:flex;
  11641. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11642. font-weight:400;
  11643. font-style:normal;
  11644. font-size:14px;
  11645. line-height:40px;
  11646. }
  11647. #u68578 .text {
  11648. position:absolute;
  11649. align-self:center;
  11650. padding:0px 0px 0px 0px;
  11651. box-sizing:border-box;
  11652. width:100%;
  11653. }
  11654. #u68578_text {
  11655. border-width:0px;
  11656. white-space:nowrap;
  11657. text-transform:none;
  11658. }
  11659. #u68579_div {
  11660. border-width:0px;
  11661. position:absolute;
  11662. left:0px;
  11663. top:0px;
  11664. width:57px;
  11665. height:40px;
  11666. background:inherit;
  11667. background-color:rgba(255, 255, 255, 0);
  11668. border:none;
  11669. border-left:0px;
  11670. border-top:0px;
  11671. border-right:0px;
  11672. border-radius:0px;
  11673. border-bottom-right-radius:0px;
  11674. border-bottom-left-radius:0px;
  11675. -moz-box-shadow:none;
  11676. -webkit-box-shadow:none;
  11677. box-shadow:none;
  11678. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11679. font-weight:400;
  11680. font-style:normal;
  11681. font-size:14px;
  11682. }
  11683. #u68579 {
  11684. border-width:0px;
  11685. position:absolute;
  11686. left:1183px;
  11687. top:511px;
  11688. width:57px;
  11689. height:40px;
  11690. display:flex;
  11691. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11692. font-weight:400;
  11693. font-style:normal;
  11694. font-size:14px;
  11695. }
  11696. #u68579 .text {
  11697. position:absolute;
  11698. align-self:center;
  11699. padding:0px 0px 0px 0px;
  11700. box-sizing:border-box;
  11701. width:100%;
  11702. }
  11703. #u68579_text {
  11704. border-width:0px;
  11705. white-space:nowrap;
  11706. text-transform:none;
  11707. }
  11708. #u68580_div {
  11709. border-width:0px;
  11710. position:absolute;
  11711. left:0px;
  11712. top:0px;
  11713. width:80px;
  11714. height:40px;
  11715. background:inherit;
  11716. background-color:rgba(255, 255, 255, 0);
  11717. border:none;
  11718. border-top:0px;
  11719. border-right:0px;
  11720. border-bottom:0px;
  11721. border-radius:0px;
  11722. border-top-left-radius:0px;
  11723. border-bottom-left-radius:0px;
  11724. -moz-box-shadow:none;
  11725. -webkit-box-shadow:none;
  11726. box-shadow:none;
  11727. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11728. font-weight:400;
  11729. font-style:normal;
  11730. font-size:14px;
  11731. color:#7F7F7F;
  11732. line-height:40px;
  11733. }
  11734. #u68580 {
  11735. border-width:0px;
  11736. position:absolute;
  11737. left:1183px;
  11738. top:551px;
  11739. width:80px;
  11740. height:40px;
  11741. display:flex;
  11742. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11743. font-weight:400;
  11744. font-style:normal;
  11745. font-size:14px;
  11746. color:#7F7F7F;
  11747. line-height:40px;
  11748. }
  11749. #u68580 .text {
  11750. position:absolute;
  11751. align-self:center;
  11752. padding:0px 0px 0px 0px;
  11753. box-sizing:border-box;
  11754. width:100%;
  11755. }
  11756. #u68580_text {
  11757. border-width:0px;
  11758. word-wrap:break-word;
  11759. text-transform:none;
  11760. }
  11761. #u68581_div {
  11762. border-width:0px;
  11763. position:absolute;
  11764. left:0px;
  11765. top:0px;
  11766. width:160px;
  11767. height:40px;
  11768. background:inherit;
  11769. background-color:rgba(255, 255, 255, 0);
  11770. border:none;
  11771. border-top:0px;
  11772. border-right:0px;
  11773. border-bottom:0px;
  11774. border-radius:0px;
  11775. border-top-left-radius:0px;
  11776. border-bottom-left-radius:0px;
  11777. -moz-box-shadow:none;
  11778. -webkit-box-shadow:none;
  11779. box-shadow:none;
  11780. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11781. font-weight:400;
  11782. font-style:normal;
  11783. font-size:14px;
  11784. line-height:40px;
  11785. }
  11786. #u68581 {
  11787. border-width:0px;
  11788. position:absolute;
  11789. left:1263px;
  11790. top:551px;
  11791. width:160px;
  11792. height:40px;
  11793. display:flex;
  11794. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11795. font-weight:400;
  11796. font-style:normal;
  11797. font-size:14px;
  11798. line-height:40px;
  11799. }
  11800. #u68581 .text {
  11801. position:absolute;
  11802. align-self:center;
  11803. padding:0px 0px 0px 0px;
  11804. box-sizing:border-box;
  11805. width:100%;
  11806. }
  11807. #u68581_text {
  11808. border-width:0px;
  11809. word-wrap:break-word;
  11810. text-transform:none;
  11811. }
  11812. #u68582_div {
  11813. border-width:0px;
  11814. position:absolute;
  11815. left:0px;
  11816. top:0px;
  11817. width:80px;
  11818. height:40px;
  11819. background:inherit;
  11820. background-color:rgba(255, 255, 255, 0);
  11821. border:none;
  11822. border-top:0px;
  11823. border-right:0px;
  11824. border-bottom:0px;
  11825. border-radius:0px;
  11826. border-top-left-radius:0px;
  11827. border-bottom-left-radius:0px;
  11828. -moz-box-shadow:none;
  11829. -webkit-box-shadow:none;
  11830. box-shadow:none;
  11831. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11832. font-weight:400;
  11833. font-style:normal;
  11834. font-size:14px;
  11835. color:#7F7F7F;
  11836. line-height:40px;
  11837. }
  11838. #u68582 {
  11839. border-width:0px;
  11840. position:absolute;
  11841. left:1503px;
  11842. top:551px;
  11843. width:80px;
  11844. height:40px;
  11845. display:flex;
  11846. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11847. font-weight:400;
  11848. font-style:normal;
  11849. font-size:14px;
  11850. color:#7F7F7F;
  11851. line-height:40px;
  11852. }
  11853. #u68582 .text {
  11854. position:absolute;
  11855. align-self:center;
  11856. padding:0px 0px 0px 0px;
  11857. box-sizing:border-box;
  11858. width:100%;
  11859. }
  11860. #u68582_text {
  11861. border-width:0px;
  11862. word-wrap:break-word;
  11863. text-transform:none;
  11864. }
  11865. #u68583_div {
  11866. border-width:0px;
  11867. position:absolute;
  11868. left:0px;
  11869. top:0px;
  11870. width:160px;
  11871. height:40px;
  11872. background:inherit;
  11873. background-color:rgba(255, 255, 255, 0);
  11874. border:none;
  11875. border-top:0px;
  11876. border-right:0px;
  11877. border-bottom:0px;
  11878. border-radius:0px;
  11879. border-top-left-radius:0px;
  11880. border-bottom-left-radius:0px;
  11881. -moz-box-shadow:none;
  11882. -webkit-box-shadow:none;
  11883. box-shadow:none;
  11884. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11885. font-weight:400;
  11886. font-style:normal;
  11887. font-size:14px;
  11888. line-height:40px;
  11889. }
  11890. #u68583 {
  11891. border-width:0px;
  11892. position:absolute;
  11893. left:1583px;
  11894. top:551px;
  11895. width:160px;
  11896. height:40px;
  11897. display:flex;
  11898. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11899. font-weight:400;
  11900. font-style:normal;
  11901. font-size:14px;
  11902. line-height:40px;
  11903. }
  11904. #u68583 .text {
  11905. position:absolute;
  11906. align-self:center;
  11907. padding:0px 0px 0px 0px;
  11908. box-sizing:border-box;
  11909. width:100%;
  11910. }
  11911. #u68583_text {
  11912. border-width:0px;
  11913. word-wrap:break-word;
  11914. text-transform:none;
  11915. }
  11916. #u68584_div {
  11917. border-width:0px;
  11918. position:absolute;
  11919. left:0px;
  11920. top:0px;
  11921. width:80px;
  11922. height:40px;
  11923. background:inherit;
  11924. background-color:rgba(255, 255, 255, 0);
  11925. border:none;
  11926. border-top:0px;
  11927. border-right:0px;
  11928. border-bottom:0px;
  11929. border-radius:0px;
  11930. border-top-left-radius:0px;
  11931. border-bottom-left-radius:0px;
  11932. -moz-box-shadow:none;
  11933. -webkit-box-shadow:none;
  11934. box-shadow:none;
  11935. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11936. font-weight:400;
  11937. font-style:normal;
  11938. font-size:14px;
  11939. color:#7F7F7F;
  11940. line-height:40px;
  11941. }
  11942. #u68584 {
  11943. border-width:0px;
  11944. position:absolute;
  11945. left:1823px;
  11946. top:551px;
  11947. width:80px;
  11948. height:40px;
  11949. display:flex;
  11950. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11951. font-weight:400;
  11952. font-style:normal;
  11953. font-size:14px;
  11954. color:#7F7F7F;
  11955. line-height:40px;
  11956. }
  11957. #u68584 .text {
  11958. position:absolute;
  11959. align-self:center;
  11960. padding:0px 0px 0px 0px;
  11961. box-sizing:border-box;
  11962. width:100%;
  11963. }
  11964. #u68584_text {
  11965. border-width:0px;
  11966. word-wrap:break-word;
  11967. text-transform:none;
  11968. }
  11969. #u68585_div {
  11970. border-width:0px;
  11971. position:absolute;
  11972. left:0px;
  11973. top:0px;
  11974. width:160px;
  11975. height:40px;
  11976. background:inherit;
  11977. background-color:rgba(255, 255, 255, 0);
  11978. border:none;
  11979. border-top:0px;
  11980. border-right:0px;
  11981. border-bottom:0px;
  11982. border-radius:0px;
  11983. border-top-left-radius:0px;
  11984. border-bottom-left-radius:0px;
  11985. -moz-box-shadow:none;
  11986. -webkit-box-shadow:none;
  11987. box-shadow:none;
  11988. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  11989. font-weight:400;
  11990. font-style:normal;
  11991. font-size:14px;
  11992. line-height:40px;
  11993. }
  11994. #u68585 {
  11995. border-width:0px;
  11996. position:absolute;
  11997. left:1903px;
  11998. top:551px;
  11999. width:160px;
  12000. height:40px;
  12001. display:flex;
  12002. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12003. font-weight:400;
  12004. font-style:normal;
  12005. font-size:14px;
  12006. line-height:40px;
  12007. }
  12008. #u68585 .text {
  12009. position:absolute;
  12010. align-self:center;
  12011. padding:0px 0px 0px 0px;
  12012. box-sizing:border-box;
  12013. width:100%;
  12014. }
  12015. #u68585_text {
  12016. border-width:0px;
  12017. word-wrap:break-word;
  12018. text-transform:none;
  12019. }
  12020. #u68586_div {
  12021. border-width:0px;
  12022. position:absolute;
  12023. left:0px;
  12024. top:0px;
  12025. width:71px;
  12026. height:40px;
  12027. background:inherit;
  12028. background-color:rgba(255, 255, 255, 0);
  12029. border:none;
  12030. border-top:0px;
  12031. border-right:0px;
  12032. border-bottom:0px;
  12033. border-radius:0px;
  12034. border-top-left-radius:0px;
  12035. border-bottom-left-radius:0px;
  12036. -moz-box-shadow:none;
  12037. -webkit-box-shadow:none;
  12038. box-shadow:none;
  12039. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12040. font-weight:400;
  12041. font-style:normal;
  12042. font-size:14px;
  12043. color:#7F7F7F;
  12044. line-height:40px;
  12045. }
  12046. #u68586 {
  12047. border-width:0px;
  12048. position:absolute;
  12049. left:1183px;
  12050. top:591px;
  12051. width:71px;
  12052. height:40px;
  12053. display:flex;
  12054. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12055. font-weight:400;
  12056. font-style:normal;
  12057. font-size:14px;
  12058. color:#7F7F7F;
  12059. line-height:40px;
  12060. }
  12061. #u68586 .text {
  12062. position:absolute;
  12063. align-self:center;
  12064. padding:0px 0px 0px 0px;
  12065. box-sizing:border-box;
  12066. width:100%;
  12067. }
  12068. #u68586_text {
  12069. border-width:0px;
  12070. white-space:nowrap;
  12071. text-transform:none;
  12072. }
  12073. #u68587_div {
  12074. border-width:0px;
  12075. position:absolute;
  12076. left:0px;
  12077. top:0px;
  12078. width:160px;
  12079. height:40px;
  12080. background:inherit;
  12081. background-color:rgba(255, 255, 255, 0);
  12082. border:none;
  12083. border-top:0px;
  12084. border-right:0px;
  12085. border-bottom:0px;
  12086. border-radius:0px;
  12087. border-top-left-radius:0px;
  12088. border-bottom-left-radius:0px;
  12089. -moz-box-shadow:none;
  12090. -webkit-box-shadow:none;
  12091. box-shadow:none;
  12092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12093. font-weight:400;
  12094. font-style:normal;
  12095. font-size:14px;
  12096. line-height:40px;
  12097. }
  12098. #u68587 {
  12099. border-width:0px;
  12100. position:absolute;
  12101. left:1263px;
  12102. top:591px;
  12103. width:160px;
  12104. height:40px;
  12105. display:flex;
  12106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12107. font-weight:400;
  12108. font-style:normal;
  12109. font-size:14px;
  12110. line-height:40px;
  12111. }
  12112. #u68587 .text {
  12113. position:absolute;
  12114. align-self:center;
  12115. padding:0px 0px 0px 0px;
  12116. box-sizing:border-box;
  12117. width:100%;
  12118. }
  12119. #u68587_text {
  12120. border-width:0px;
  12121. word-wrap:break-word;
  12122. text-transform:none;
  12123. }
  12124. #u68588_div {
  12125. border-width:0px;
  12126. position:absolute;
  12127. left:0px;
  12128. top:0px;
  12129. width:80px;
  12130. height:40px;
  12131. background:inherit;
  12132. background-color:rgba(255, 255, 255, 0);
  12133. border:none;
  12134. border-top:0px;
  12135. border-right:0px;
  12136. border-bottom:0px;
  12137. border-radius:0px;
  12138. border-top-left-radius:0px;
  12139. border-bottom-left-radius:0px;
  12140. -moz-box-shadow:none;
  12141. -webkit-box-shadow:none;
  12142. box-shadow:none;
  12143. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12144. font-weight:400;
  12145. font-style:normal;
  12146. font-size:14px;
  12147. color:#7F7F7F;
  12148. line-height:40px;
  12149. }
  12150. #u68588 {
  12151. border-width:0px;
  12152. position:absolute;
  12153. left:1503px;
  12154. top:591px;
  12155. width:80px;
  12156. height:40px;
  12157. display:flex;
  12158. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12159. font-weight:400;
  12160. font-style:normal;
  12161. font-size:14px;
  12162. color:#7F7F7F;
  12163. line-height:40px;
  12164. }
  12165. #u68588 .text {
  12166. position:absolute;
  12167. align-self:center;
  12168. padding:0px 0px 0px 0px;
  12169. box-sizing:border-box;
  12170. width:100%;
  12171. }
  12172. #u68588_text {
  12173. border-width:0px;
  12174. word-wrap:break-word;
  12175. text-transform:none;
  12176. }
  12177. #u68589_div {
  12178. border-width:0px;
  12179. position:absolute;
  12180. left:0px;
  12181. top:0px;
  12182. width:160px;
  12183. height:40px;
  12184. background:inherit;
  12185. background-color:rgba(255, 255, 255, 0);
  12186. border:none;
  12187. border-top:0px;
  12188. border-right:0px;
  12189. border-bottom:0px;
  12190. border-radius:0px;
  12191. border-top-left-radius:0px;
  12192. border-bottom-left-radius:0px;
  12193. -moz-box-shadow:none;
  12194. -webkit-box-shadow:none;
  12195. box-shadow:none;
  12196. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12197. font-weight:400;
  12198. font-style:normal;
  12199. font-size:14px;
  12200. line-height:40px;
  12201. }
  12202. #u68589 {
  12203. border-width:0px;
  12204. position:absolute;
  12205. left:1583px;
  12206. top:591px;
  12207. width:160px;
  12208. height:40px;
  12209. display:flex;
  12210. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  12211. font-weight:400;
  12212. font-style:normal;
  12213. font-size:14px;
  12214. line-height:40px;
  12215. }
  12216. #u68589 .text {
  12217. position:absolute;
  12218. align-self:center;
  12219. padding:0px 0px 0px 0px;
  12220. box-sizing:border-box;
  12221. width:100%;
  12222. }
  12223. #u68589_text {
  12224. border-width:0px;
  12225. word-wrap:break-word;
  12226. text-transform:none;
  12227. }