styles.css 146 KB

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