styles.css 172 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-66px;
  6. width:4090px;
  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. #u18619_div {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1000px;
  25. height:1201px;
  26. background:inherit;
  27. background-color:rgba(242, 242, 242, 1);
  28. box-sizing:border-box;
  29. border-width:1px;
  30. border-style:solid;
  31. border-color:rgba(215, 215, 215, 1);
  32. border-radius:0px;
  33. filter:drop-shadow(none);
  34. transition:none;
  35. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  36. font-weight:400;
  37. font-style:normal;
  38. font-size:14px;
  39. color:#AAAAAA;
  40. text-align:center;
  41. line-height:30px;
  42. }
  43. #u18619 {
  44. border-width:0px;
  45. position:absolute;
  46. left:1096px;
  47. top:83px;
  48. width:1000px;
  49. height:1201px;
  50. display:flex;
  51. transition:none;
  52. transform-origin:50% 50%;
  53. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  54. font-weight:400;
  55. font-style:normal;
  56. font-size:14px;
  57. color:#AAAAAA;
  58. text-align:center;
  59. line-height:30px;
  60. }
  61. #u18619 .text {
  62. position:absolute;
  63. align-self:center;
  64. padding:5px 10px 5px 10px;
  65. box-sizing:border-box;
  66. width:100%;
  67. }
  68. #u18619_text {
  69. border-width:0px;
  70. word-wrap:break-word;
  71. text-transform:none;
  72. visibility:hidden;
  73. }
  74. #u18620_div {
  75. border-width:0px;
  76. position:absolute;
  77. left:0px;
  78. top:0px;
  79. width:1000px;
  80. height:680px;
  81. background:inherit;
  82. background-color:rgba(255, 255, 255, 1);
  83. box-sizing:border-box;
  84. border-width:1px;
  85. border-style:solid;
  86. border-color:rgba(215, 215, 215, 1);
  87. border-radius:0px;
  88. filter:drop-shadow(none);
  89. transition:none;
  90. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  91. font-weight:400;
  92. font-style:normal;
  93. font-size:14px;
  94. color:#AAAAAA;
  95. text-align:center;
  96. line-height:30px;
  97. }
  98. #u18620 {
  99. border-width:0px;
  100. position:absolute;
  101. left:1096px;
  102. top:83px;
  103. width:1000px;
  104. height:680px;
  105. display:flex;
  106. transition:none;
  107. transform-origin:50% 50%;
  108. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  109. font-weight:400;
  110. font-style:normal;
  111. font-size:14px;
  112. color:#AAAAAA;
  113. text-align:center;
  114. line-height:30px;
  115. }
  116. #u18620 .text {
  117. position:absolute;
  118. align-self:center;
  119. padding:5px 10px 5px 10px;
  120. box-sizing:border-box;
  121. width:100%;
  122. }
  123. #u18620_text {
  124. border-width:0px;
  125. word-wrap:break-word;
  126. text-transform:none;
  127. visibility:hidden;
  128. }
  129. #u18621_div {
  130. border-width:0px;
  131. position:absolute;
  132. left:0px;
  133. top:0px;
  134. width:119px;
  135. height:35px;
  136. background:inherit;
  137. background-color:rgba(255, 255, 255, 0);
  138. border-top:0px;
  139. border-right:0px;
  140. border-bottom:0px;
  141. border-radius:0px;
  142. border-top-left-radius:0px;
  143. border-bottom-left-radius:0px;
  144. filter:drop-shadow(none);
  145. transition:none;
  146. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  147. font-weight:500;
  148. font-style:normal;
  149. font-size:18px;
  150. }
  151. #u18621 {
  152. border-width:0px;
  153. position:absolute;
  154. left:1116px;
  155. top:101px;
  156. width:119px;
  157. height:35px;
  158. display:flex;
  159. transition:none;
  160. transform-origin:50% 50%;
  161. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  162. font-weight:500;
  163. font-style:normal;
  164. font-size:18px;
  165. }
  166. #u18621 .text {
  167. position:absolute;
  168. align-self:center;
  169. padding:5px 10px 5px 0px;
  170. box-sizing:border-box;
  171. width:100%;
  172. }
  173. #u18621_text {
  174. border-width:0px;
  175. white-space:nowrap;
  176. text-transform:none;
  177. }
  178. #u18622 {
  179. border-width:0px;
  180. position:absolute;
  181. left:0px;
  182. top:0px;
  183. width:0px;
  184. height:0px;
  185. }
  186. #u18623_div {
  187. border-width:0px;
  188. position:absolute;
  189. left:0px;
  190. top:0px;
  191. width:40px;
  192. height:40px;
  193. background:inherit;
  194. background-color:rgba(255, 255, 255, 0);
  195. border-top:0px;
  196. border-right:0px;
  197. border-bottom:0px;
  198. border-radius:0px;
  199. border-top-left-radius:0px;
  200. border-bottom-left-radius:0px;
  201. filter:drop-shadow(none);
  202. transition:none;
  203. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  204. font-weight:500;
  205. font-style:normal;
  206. font-size:14px;
  207. text-align:center;
  208. }
  209. #u18623 {
  210. border-width:0px;
  211. position:absolute;
  212. left:2056px;
  213. top:83px;
  214. width:40px;
  215. height:40px;
  216. display:flex;
  217. transition:none;
  218. transform-origin:50% 50%;
  219. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  220. font-weight:500;
  221. font-style:normal;
  222. font-size:14px;
  223. text-align:center;
  224. }
  225. #u18623 .text {
  226. position:absolute;
  227. align-self:center;
  228. padding:5px 10px 5px 0px;
  229. box-sizing:border-box;
  230. width:100%;
  231. }
  232. #u18623_text {
  233. border-width:0px;
  234. word-wrap:break-word;
  235. text-transform:none;
  236. }
  237. #u18624 {
  238. border-width:0px;
  239. position:absolute;
  240. left:2044px;
  241. top:99px;
  242. width:13px;
  243. height:13px;
  244. display:flex;
  245. transition:none;
  246. font-size:14px;
  247. }
  248. #u18624 .text {
  249. position:absolute;
  250. align-self:center;
  251. padding:2px 2px 2px 2px;
  252. box-sizing:border-box;
  253. width:100%;
  254. }
  255. #u18624_img {
  256. border-width:0px;
  257. position:absolute;
  258. left:0px;
  259. top:0px;
  260. width:13px;
  261. height:13px;
  262. }
  263. #u18624_text {
  264. border-width:0px;
  265. word-wrap:break-word;
  266. text-transform:none;
  267. visibility:hidden;
  268. }
  269. #u18625_div {
  270. border-width:0px;
  271. position:absolute;
  272. left:0px;
  273. top:0px;
  274. width:213px;
  275. height:43px;
  276. background:inherit;
  277. background-color:rgba(255, 255, 255, 0);
  278. border-top:0px;
  279. border-right:0px;
  280. border-bottom:0px;
  281. border-radius:0px;
  282. border-top-left-radius:0px;
  283. border-bottom-left-radius:0px;
  284. filter:drop-shadow(none);
  285. transition:none;
  286. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  287. font-weight:500;
  288. font-style:normal;
  289. font-size:24px;
  290. }
  291. #u18625 {
  292. border-width:0px;
  293. position:absolute;
  294. left:1126px;
  295. top:152px;
  296. width:213px;
  297. height:43px;
  298. display:flex;
  299. transition:none;
  300. transform-origin:50% 50%;
  301. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  302. font-weight:500;
  303. font-style:normal;
  304. font-size:24px;
  305. }
  306. #u18625 .text {
  307. position:absolute;
  308. align-self:center;
  309. padding:5px 10px 5px 0px;
  310. box-sizing:border-box;
  311. width:100%;
  312. }
  313. #u18625_text {
  314. border-width:0px;
  315. white-space:nowrap;
  316. text-transform:none;
  317. }
  318. #u18626 {
  319. border-width:0px;
  320. position:absolute;
  321. left:1946px;
  322. top:153px;
  323. width:108px;
  324. height:108px;
  325. display:flex;
  326. -webkit-transform:rotate(315deg);
  327. -moz-transform:rotate(315deg);
  328. -ms-transform:rotate(315deg);
  329. transform:rotate(315deg);
  330. transition:none;
  331. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  332. font-weight:400;
  333. font-style:normal;
  334. font-size:28px;
  335. color:#00BFBF;
  336. }
  337. #u18626 .text {
  338. position:absolute;
  339. align-self:center;
  340. padding:2px 2px 2px 2px;
  341. box-sizing:border-box;
  342. width:100%;
  343. }
  344. #u18626_img {
  345. border-width:0px;
  346. position:absolute;
  347. left:0px;
  348. top:0px;
  349. width:108px;
  350. height:108px;
  351. }
  352. #u18626_text {
  353. border-width:0px;
  354. word-wrap:break-word;
  355. text-transform:none;
  356. }
  357. #u18627 {
  358. border-width:0px;
  359. position:absolute;
  360. left:0px;
  361. top:0px;
  362. width:0px;
  363. height:0px;
  364. }
  365. #u18628_div {
  366. border-width:0px;
  367. position:absolute;
  368. left:0px;
  369. top:0px;
  370. width:1000px;
  371. height:451px;
  372. background:inherit;
  373. background-color:rgba(255, 255, 255, 1);
  374. box-sizing:border-box;
  375. border-width:1px;
  376. border-style:solid;
  377. border-color:rgba(215, 215, 215, 1);
  378. border-radius:0px;
  379. filter:drop-shadow(none);
  380. transition:none;
  381. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  382. font-weight:400;
  383. font-style:normal;
  384. font-size:14px;
  385. color:#AAAAAA;
  386. text-align:center;
  387. line-height:30px;
  388. }
  389. #u18628 {
  390. border-width:0px;
  391. position:absolute;
  392. left:1096px;
  393. top:773px;
  394. width:1000px;
  395. height:451px;
  396. display:flex;
  397. transition:none;
  398. transform-origin:50% 50%;
  399. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  400. font-weight:400;
  401. font-style:normal;
  402. font-size:14px;
  403. color:#AAAAAA;
  404. text-align:center;
  405. line-height:30px;
  406. }
  407. #u18628 .text {
  408. position:absolute;
  409. align-self:center;
  410. padding:5px 10px 5px 10px;
  411. box-sizing:border-box;
  412. width:100%;
  413. }
  414. #u18628_text {
  415. border-width:0px;
  416. word-wrap:break-word;
  417. text-transform:none;
  418. visibility:hidden;
  419. }
  420. #u18629_div {
  421. border-width:0px;
  422. position:absolute;
  423. left:0px;
  424. top:0px;
  425. width:107px;
  426. height:43px;
  427. background:inherit;
  428. background-color:rgba(255, 255, 255, 0);
  429. border-top:0px;
  430. border-right:0px;
  431. border-bottom:0px;
  432. border-radius:0px;
  433. border-top-left-radius:0px;
  434. border-bottom-left-radius:0px;
  435. filter:drop-shadow(none);
  436. transition:none;
  437. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  438. font-weight:500;
  439. font-style:normal;
  440. font-size:24px;
  441. }
  442. #u18629 {
  443. border-width:0px;
  444. position:absolute;
  445. left:1126px;
  446. top:796px;
  447. width:107px;
  448. height:43px;
  449. display:flex;
  450. transition:none;
  451. transform-origin:50% 50%;
  452. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  453. font-weight:500;
  454. font-style:normal;
  455. font-size:24px;
  456. }
  457. #u18629 .text {
  458. position:absolute;
  459. align-self:center;
  460. padding:5px 10px 5px 0px;
  461. box-sizing:border-box;
  462. width:100%;
  463. }
  464. #u18629_text {
  465. border-width:0px;
  466. white-space:nowrap;
  467. text-transform:none;
  468. }
  469. #u18630_div {
  470. border-width:0px;
  471. position:absolute;
  472. left:0px;
  473. top:0px;
  474. width:80px;
  475. height:30px;
  476. background:inherit;
  477. background-color:rgba(255, 255, 255, 0);
  478. border-left:0px;
  479. border-top:0px;
  480. border-right:0px;
  481. border-radius:0px;
  482. border-bottom-right-radius:0px;
  483. border-bottom-left-radius:0px;
  484. filter:drop-shadow(none);
  485. transition:none;
  486. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  487. font-weight:400;
  488. font-style:normal;
  489. font-size:14px;
  490. color:#7F7F7F;
  491. line-height:30px;
  492. }
  493. #u18630 {
  494. border-width:0px;
  495. position:absolute;
  496. left:1136px;
  497. top:849px;
  498. width:80px;
  499. height:30px;
  500. display:flex;
  501. transition:none;
  502. transform-origin:50% 50%;
  503. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  504. font-weight:400;
  505. font-style:normal;
  506. font-size:14px;
  507. color:#7F7F7F;
  508. line-height:30px;
  509. }
  510. #u18630 .text {
  511. position:absolute;
  512. align-self:flex-start;
  513. padding:0px 0px 0px 0px;
  514. box-sizing:border-box;
  515. width:100%;
  516. }
  517. #u18630_text {
  518. border-width:0px;
  519. word-wrap:break-word;
  520. text-transform:none;
  521. }
  522. #u18631_div {
  523. border-width:0px;
  524. position:absolute;
  525. left:0px;
  526. top:0px;
  527. width:43px;
  528. height:30px;
  529. background:inherit;
  530. background-color:rgba(255, 255, 255, 0);
  531. border-left:0px;
  532. border-top:0px;
  533. border-right:0px;
  534. border-radius:0px;
  535. border-bottom-right-radius:0px;
  536. border-bottom-left-radius:0px;
  537. filter:drop-shadow(none);
  538. transition:none;
  539. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  540. font-weight:400;
  541. font-style:normal;
  542. font-size:14px;
  543. color:#3399FF;
  544. line-height:30px;
  545. }
  546. #u18631 {
  547. border-width:0px;
  548. position:absolute;
  549. left:1216px;
  550. top:849px;
  551. width:43px;
  552. height:30px;
  553. display:flex;
  554. transition:none;
  555. transform-origin:50% 50%;
  556. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  557. font-weight:400;
  558. font-style:normal;
  559. font-size:14px;
  560. color:#3399FF;
  561. line-height:30px;
  562. }
  563. #u18631 .text {
  564. position:absolute;
  565. align-self:flex-start;
  566. padding:0px 0px 0px 0px;
  567. box-sizing:border-box;
  568. width:100%;
  569. }
  570. #u18631_text {
  571. border-width:0px;
  572. white-space:nowrap;
  573. text-transform:none;
  574. }
  575. #u18632_div {
  576. border-width:0px;
  577. position:absolute;
  578. left:0px;
  579. top:0px;
  580. width:80px;
  581. height:30px;
  582. background:inherit;
  583. background-color:rgba(255, 255, 255, 0);
  584. border-left:0px;
  585. border-top:0px;
  586. border-right:0px;
  587. border-radius:0px;
  588. border-bottom-right-radius:0px;
  589. border-bottom-left-radius:0px;
  590. filter:drop-shadow(none);
  591. transition:none;
  592. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  593. font-weight:400;
  594. font-style:normal;
  595. font-size:14px;
  596. color:#7F7F7F;
  597. line-height:30px;
  598. }
  599. #u18632 {
  600. border-width:0px;
  601. position:absolute;
  602. left:1136px;
  603. top:889px;
  604. width:80px;
  605. height:30px;
  606. display:flex;
  607. transition:none;
  608. transform-origin:50% 50%;
  609. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  610. font-weight:400;
  611. font-style:normal;
  612. font-size:14px;
  613. color:#7F7F7F;
  614. line-height:30px;
  615. }
  616. #u18632 .text {
  617. position:absolute;
  618. align-self:flex-start;
  619. padding:0px 0px 0px 0px;
  620. box-sizing:border-box;
  621. width:100%;
  622. }
  623. #u18632_text {
  624. border-width:0px;
  625. word-wrap:break-word;
  626. text-transform:none;
  627. }
  628. #u18633_div {
  629. border-width:0px;
  630. position:absolute;
  631. left:0px;
  632. top:0px;
  633. width:128px;
  634. height:30px;
  635. background:inherit;
  636. background-color:rgba(255, 255, 255, 0);
  637. border-left:0px;
  638. border-top:0px;
  639. border-right:0px;
  640. border-radius:0px;
  641. border-bottom-right-radius:0px;
  642. border-bottom-left-radius:0px;
  643. filter:drop-shadow(none);
  644. transition:none;
  645. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  646. font-weight:400;
  647. font-style:normal;
  648. font-size:14px;
  649. line-height:30px;
  650. }
  651. #u18633 {
  652. border-width:0px;
  653. position:absolute;
  654. left:1216px;
  655. top:889px;
  656. width:128px;
  657. height:30px;
  658. display:flex;
  659. transition:none;
  660. transform-origin:50% 50%;
  661. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  662. font-weight:400;
  663. font-style:normal;
  664. font-size:14px;
  665. line-height:30px;
  666. }
  667. #u18633 .text {
  668. position:absolute;
  669. align-self:flex-start;
  670. padding:0px 0px 0px 0px;
  671. box-sizing:border-box;
  672. width:100%;
  673. }
  674. #u18633_text {
  675. border-width:0px;
  676. white-space:nowrap;
  677. text-transform:none;
  678. }
  679. #u18634_div {
  680. border-width:0px;
  681. position:absolute;
  682. left:0px;
  683. top:0px;
  684. width:80px;
  685. height:30px;
  686. background:inherit;
  687. background-color:rgba(255, 255, 255, 0);
  688. border-left:0px;
  689. border-top:0px;
  690. border-right:0px;
  691. border-radius:0px;
  692. border-bottom-right-radius:0px;
  693. border-bottom-left-radius:0px;
  694. filter:drop-shadow(none);
  695. transition:none;
  696. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  697. font-weight:400;
  698. font-style:normal;
  699. font-size:14px;
  700. color:#7F7F7F;
  701. line-height:30px;
  702. }
  703. #u18634 {
  704. border-width:0px;
  705. position:absolute;
  706. left:1136px;
  707. top:929px;
  708. width:80px;
  709. height:30px;
  710. display:flex;
  711. transition:none;
  712. transform-origin:50% 50%;
  713. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  714. font-weight:400;
  715. font-style:normal;
  716. font-size:14px;
  717. color:#7F7F7F;
  718. line-height:30px;
  719. }
  720. #u18634 .text {
  721. position:absolute;
  722. align-self:flex-start;
  723. padding:0px 0px 0px 0px;
  724. box-sizing:border-box;
  725. width:100%;
  726. }
  727. #u18634_text {
  728. border-width:0px;
  729. word-wrap:break-word;
  730. text-transform:none;
  731. }
  732. #u18635_div {
  733. border-width:0px;
  734. position:absolute;
  735. left:0px;
  736. top:0px;
  737. width:121px;
  738. height:30px;
  739. background:inherit;
  740. background-color:rgba(255, 255, 255, 0);
  741. border-left:0px;
  742. border-top:0px;
  743. border-right:0px;
  744. border-radius:0px;
  745. border-bottom-right-radius:0px;
  746. border-bottom-left-radius:0px;
  747. filter:drop-shadow(none);
  748. transition:none;
  749. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  750. font-weight:400;
  751. font-style:normal;
  752. font-size:14px;
  753. line-height:30px;
  754. }
  755. #u18635 {
  756. border-width:0px;
  757. position:absolute;
  758. left:1216px;
  759. top:929px;
  760. width:121px;
  761. height:30px;
  762. display:flex;
  763. transition:none;
  764. transform-origin:50% 50%;
  765. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  766. font-weight:400;
  767. font-style:normal;
  768. font-size:14px;
  769. line-height:30px;
  770. }
  771. #u18635 .text {
  772. position:absolute;
  773. align-self:flex-start;
  774. padding:0px 0px 0px 0px;
  775. box-sizing:border-box;
  776. width:100%;
  777. }
  778. #u18635_text {
  779. border-width:0px;
  780. white-space:nowrap;
  781. text-transform:none;
  782. }
  783. #u18636_div {
  784. border-width:0px;
  785. position:absolute;
  786. left:0px;
  787. top:0px;
  788. width:80px;
  789. height:30px;
  790. background:inherit;
  791. background-color:rgba(255, 255, 255, 0);
  792. border-left:0px;
  793. border-top:0px;
  794. border-right:0px;
  795. border-radius:0px;
  796. border-bottom-right-radius:0px;
  797. border-bottom-left-radius:0px;
  798. filter:drop-shadow(none);
  799. transition:none;
  800. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  801. font-weight:400;
  802. font-style:normal;
  803. font-size:14px;
  804. color:#7F7F7F;
  805. line-height:30px;
  806. }
  807. #u18636 {
  808. border-width:0px;
  809. position:absolute;
  810. left:1136px;
  811. top:969px;
  812. width:80px;
  813. height:30px;
  814. display:flex;
  815. transition:none;
  816. transform-origin:50% 50%;
  817. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  818. font-weight:400;
  819. font-style:normal;
  820. font-size:14px;
  821. color:#7F7F7F;
  822. line-height:30px;
  823. }
  824. #u18636 .text {
  825. position:absolute;
  826. align-self:flex-start;
  827. padding:0px 0px 0px 0px;
  828. box-sizing:border-box;
  829. width:100%;
  830. }
  831. #u18636_text {
  832. border-width:0px;
  833. word-wrap:break-word;
  834. text-transform:none;
  835. }
  836. #u18637_div {
  837. border-width:0px;
  838. position:absolute;
  839. left:0px;
  840. top:0px;
  841. width:23px;
  842. height:30px;
  843. background:inherit;
  844. background-color:rgba(255, 255, 255, 0);
  845. border-left:0px;
  846. border-top:0px;
  847. border-right:0px;
  848. border-radius:0px;
  849. border-bottom-right-radius:0px;
  850. border-bottom-left-radius:0px;
  851. filter:drop-shadow(none);
  852. transition:none;
  853. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  854. font-weight:400;
  855. font-style:normal;
  856. font-size:14px;
  857. line-height:30px;
  858. }
  859. #u18637 {
  860. border-width:0px;
  861. position:absolute;
  862. left:1216px;
  863. top:969px;
  864. width:23px;
  865. height:30px;
  866. display:flex;
  867. transition:none;
  868. transform-origin:50% 50%;
  869. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  870. font-weight:400;
  871. font-style:normal;
  872. font-size:14px;
  873. line-height:30px;
  874. }
  875. #u18637 .text {
  876. position:absolute;
  877. align-self:flex-start;
  878. padding:0px 0px 0px 0px;
  879. box-sizing:border-box;
  880. width:100%;
  881. }
  882. #u18637_text {
  883. border-width:0px;
  884. white-space:nowrap;
  885. text-transform:none;
  886. }
  887. #u18638 {
  888. border-width:0px;
  889. position:absolute;
  890. left:0px;
  891. top:0px;
  892. width:0px;
  893. height:0px;
  894. }
  895. #u18639_div {
  896. border-width:0px;
  897. position:absolute;
  898. left:0px;
  899. top:0px;
  900. width:1000px;
  901. height:60px;
  902. background:inherit;
  903. background-color:rgba(255, 255, 255, 1);
  904. box-sizing:border-box;
  905. border-width:1px;
  906. border-style:solid;
  907. border-color:rgba(215, 215, 215, 1);
  908. border-radius:0px;
  909. filter:drop-shadow(none);
  910. transition:none;
  911. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  912. font-weight:400;
  913. font-style:normal;
  914. font-size:14px;
  915. color:#AAAAAA;
  916. text-align:center;
  917. line-height:30px;
  918. }
  919. #u18639 {
  920. border-width:0px;
  921. position:absolute;
  922. left:1096px;
  923. top:1224px;
  924. width:1000px;
  925. height:60px;
  926. display:flex;
  927. transition:none;
  928. transform-origin:50% 50%;
  929. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  930. font-weight:400;
  931. font-style:normal;
  932. font-size:14px;
  933. color:#AAAAAA;
  934. text-align:center;
  935. line-height:30px;
  936. }
  937. #u18639 .text {
  938. position:absolute;
  939. align-self:center;
  940. padding:5px 10px 5px 10px;
  941. box-sizing:border-box;
  942. width:100%;
  943. }
  944. #u18639_text {
  945. border-width:0px;
  946. word-wrap:break-word;
  947. text-transform:none;
  948. visibility:hidden;
  949. }
  950. #u18640_div {
  951. border-width:0px;
  952. position:absolute;
  953. left:0px;
  954. top:0px;
  955. width:80px;
  956. height:30px;
  957. background:inherit;
  958. background-color:rgba(255, 255, 255, 1);
  959. box-sizing:border-box;
  960. border-width:1px;
  961. border-style:solid;
  962. border-color:rgba(170, 170, 170, 1);
  963. border-radius:4px;
  964. filter:drop-shadow(none);
  965. transition:none;
  966. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  967. font-weight:400;
  968. font-style:normal;
  969. font-size:14px;
  970. }
  971. #u18640 {
  972. border-width:0px;
  973. position:absolute;
  974. left:1986px;
  975. top:1239px;
  976. width:80px;
  977. height:30px;
  978. display:flex;
  979. transition:none;
  980. transform-origin:50% 50%;
  981. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  982. font-weight:400;
  983. font-style:normal;
  984. font-size:14px;
  985. }
  986. #u18640 .text {
  987. position:absolute;
  988. align-self:center;
  989. padding:2px 2px 2px 2px;
  990. box-sizing:border-box;
  991. width:100%;
  992. }
  993. #u18640_text {
  994. border-width:0px;
  995. word-wrap:break-word;
  996. text-transform:none;
  997. }
  998. #u18641_div {
  999. border-width:0px;
  1000. position:absolute;
  1001. left:0px;
  1002. top:0px;
  1003. width:1000px;
  1004. height:1201px;
  1005. background:inherit;
  1006. background-color:rgba(242, 242, 242, 1);
  1007. box-sizing:border-box;
  1008. border-width:1px;
  1009. border-style:solid;
  1010. border-color:rgba(215, 215, 215, 1);
  1011. border-radius:0px;
  1012. filter:drop-shadow(none);
  1013. transition:none;
  1014. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1015. font-weight:400;
  1016. font-style:normal;
  1017. font-size:14px;
  1018. color:#AAAAAA;
  1019. text-align:center;
  1020. line-height:30px;
  1021. }
  1022. #u18641 {
  1023. border-width:0px;
  1024. position:absolute;
  1025. left:2126px;
  1026. top:83px;
  1027. width:1000px;
  1028. height:1201px;
  1029. display:flex;
  1030. transition:none;
  1031. transform-origin:50% 50%;
  1032. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1033. font-weight:400;
  1034. font-style:normal;
  1035. font-size:14px;
  1036. color:#AAAAAA;
  1037. text-align:center;
  1038. line-height:30px;
  1039. }
  1040. #u18641 .text {
  1041. position:absolute;
  1042. align-self:center;
  1043. padding:5px 10px 5px 10px;
  1044. box-sizing:border-box;
  1045. width:100%;
  1046. }
  1047. #u18641_text {
  1048. border-width:0px;
  1049. word-wrap:break-word;
  1050. text-transform:none;
  1051. visibility:hidden;
  1052. }
  1053. #u18642_div {
  1054. border-width:0px;
  1055. position:absolute;
  1056. left:0px;
  1057. top:0px;
  1058. width:1000px;
  1059. height:680px;
  1060. background:inherit;
  1061. background-color:rgba(255, 255, 255, 1);
  1062. box-sizing:border-box;
  1063. border-width:1px;
  1064. border-style:solid;
  1065. border-color:rgba(215, 215, 215, 1);
  1066. border-radius:0px;
  1067. filter:drop-shadow(none);
  1068. transition:none;
  1069. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1070. font-weight:400;
  1071. font-style:normal;
  1072. font-size:14px;
  1073. color:#AAAAAA;
  1074. text-align:center;
  1075. line-height:30px;
  1076. }
  1077. #u18642 {
  1078. border-width:0px;
  1079. position:absolute;
  1080. left:2126px;
  1081. top:83px;
  1082. width:1000px;
  1083. height:680px;
  1084. display:flex;
  1085. transition:none;
  1086. transform-origin:50% 50%;
  1087. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1088. font-weight:400;
  1089. font-style:normal;
  1090. font-size:14px;
  1091. color:#AAAAAA;
  1092. text-align:center;
  1093. line-height:30px;
  1094. }
  1095. #u18642 .text {
  1096. position:absolute;
  1097. align-self:center;
  1098. padding:5px 10px 5px 10px;
  1099. box-sizing:border-box;
  1100. width:100%;
  1101. }
  1102. #u18642_text {
  1103. border-width:0px;
  1104. word-wrap:break-word;
  1105. text-transform:none;
  1106. visibility:hidden;
  1107. }
  1108. #u18643_div {
  1109. border-width:0px;
  1110. position:absolute;
  1111. left:0px;
  1112. top:0px;
  1113. width:119px;
  1114. height:35px;
  1115. background:inherit;
  1116. background-color:rgba(255, 255, 255, 0);
  1117. border-top:0px;
  1118. border-right:0px;
  1119. border-bottom:0px;
  1120. border-radius:0px;
  1121. border-top-left-radius:0px;
  1122. border-bottom-left-radius:0px;
  1123. filter:drop-shadow(none);
  1124. transition:none;
  1125. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1126. font-weight:500;
  1127. font-style:normal;
  1128. font-size:18px;
  1129. }
  1130. #u18643 {
  1131. border-width:0px;
  1132. position:absolute;
  1133. left:2146px;
  1134. top:101px;
  1135. width:119px;
  1136. height:35px;
  1137. display:flex;
  1138. transition:none;
  1139. transform-origin:50% 50%;
  1140. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1141. font-weight:500;
  1142. font-style:normal;
  1143. font-size:18px;
  1144. }
  1145. #u18643 .text {
  1146. position:absolute;
  1147. align-self:center;
  1148. padding:5px 10px 5px 0px;
  1149. box-sizing:border-box;
  1150. width:100%;
  1151. }
  1152. #u18643_text {
  1153. border-width:0px;
  1154. white-space:nowrap;
  1155. text-transform:none;
  1156. }
  1157. #u18644 {
  1158. border-width:0px;
  1159. position:absolute;
  1160. left:0px;
  1161. top:0px;
  1162. width:0px;
  1163. height:0px;
  1164. }
  1165. #u18645_div {
  1166. border-width:0px;
  1167. position:absolute;
  1168. left:0px;
  1169. top:0px;
  1170. width:40px;
  1171. height:40px;
  1172. background:inherit;
  1173. background-color:rgba(255, 255, 255, 0);
  1174. border-top:0px;
  1175. border-right:0px;
  1176. border-bottom:0px;
  1177. border-radius:0px;
  1178. border-top-left-radius:0px;
  1179. border-bottom-left-radius:0px;
  1180. filter:drop-shadow(none);
  1181. transition:none;
  1182. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1183. font-weight:500;
  1184. font-style:normal;
  1185. font-size:14px;
  1186. text-align:center;
  1187. }
  1188. #u18645 {
  1189. border-width:0px;
  1190. position:absolute;
  1191. left:3086px;
  1192. top:83px;
  1193. width:40px;
  1194. height:40px;
  1195. display:flex;
  1196. transition:none;
  1197. transform-origin:50% 50%;
  1198. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1199. font-weight:500;
  1200. font-style:normal;
  1201. font-size:14px;
  1202. text-align:center;
  1203. }
  1204. #u18645 .text {
  1205. position:absolute;
  1206. align-self:center;
  1207. padding:5px 10px 5px 0px;
  1208. box-sizing:border-box;
  1209. width:100%;
  1210. }
  1211. #u18645_text {
  1212. border-width:0px;
  1213. word-wrap:break-word;
  1214. text-transform:none;
  1215. }
  1216. #u18646 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:3074px;
  1220. top:99px;
  1221. width:13px;
  1222. height:13px;
  1223. display:flex;
  1224. transition:none;
  1225. font-size:14px;
  1226. }
  1227. #u18646 .text {
  1228. position:absolute;
  1229. align-self:center;
  1230. padding:2px 2px 2px 2px;
  1231. box-sizing:border-box;
  1232. width:100%;
  1233. }
  1234. #u18646_img {
  1235. border-width:0px;
  1236. position:absolute;
  1237. left:0px;
  1238. top:0px;
  1239. width:13px;
  1240. height:13px;
  1241. }
  1242. #u18646_text {
  1243. border-width:0px;
  1244. word-wrap:break-word;
  1245. text-transform:none;
  1246. visibility:hidden;
  1247. }
  1248. #u18647_div {
  1249. border-width:0px;
  1250. position:absolute;
  1251. left:0px;
  1252. top:0px;
  1253. width:213px;
  1254. height:43px;
  1255. background:inherit;
  1256. background-color:rgba(255, 255, 255, 0);
  1257. border-top:0px;
  1258. border-right:0px;
  1259. border-bottom:0px;
  1260. border-radius:0px;
  1261. border-top-left-radius:0px;
  1262. border-bottom-left-radius:0px;
  1263. filter:drop-shadow(none);
  1264. transition:none;
  1265. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1266. font-weight:500;
  1267. font-style:normal;
  1268. font-size:24px;
  1269. }
  1270. #u18647 {
  1271. border-width:0px;
  1272. position:absolute;
  1273. left:2156px;
  1274. top:152px;
  1275. width:213px;
  1276. height:43px;
  1277. display:flex;
  1278. transition:none;
  1279. transform-origin:50% 50%;
  1280. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1281. font-weight:500;
  1282. font-style:normal;
  1283. font-size:24px;
  1284. }
  1285. #u18647 .text {
  1286. position:absolute;
  1287. align-self:center;
  1288. padding:5px 10px 5px 0px;
  1289. box-sizing:border-box;
  1290. width:100%;
  1291. }
  1292. #u18647_text {
  1293. border-width:0px;
  1294. white-space:nowrap;
  1295. text-transform:none;
  1296. }
  1297. #u18648 {
  1298. border-width:0px;
  1299. position:absolute;
  1300. left:0px;
  1301. top:0px;
  1302. width:0px;
  1303. height:0px;
  1304. }
  1305. #u18649_div {
  1306. border-width:0px;
  1307. position:absolute;
  1308. left:0px;
  1309. top:0px;
  1310. width:1000px;
  1311. height:451px;
  1312. background:inherit;
  1313. background-color:rgba(255, 255, 255, 1);
  1314. box-sizing:border-box;
  1315. border-width:1px;
  1316. border-style:solid;
  1317. border-color:rgba(215, 215, 215, 1);
  1318. border-radius:0px;
  1319. filter:drop-shadow(none);
  1320. transition:none;
  1321. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1322. font-weight:400;
  1323. font-style:normal;
  1324. font-size:14px;
  1325. color:#AAAAAA;
  1326. text-align:center;
  1327. line-height:30px;
  1328. }
  1329. #u18649 {
  1330. border-width:0px;
  1331. position:absolute;
  1332. left:2126px;
  1333. top:773px;
  1334. width:1000px;
  1335. height:451px;
  1336. display:flex;
  1337. transition:none;
  1338. transform-origin:50% 50%;
  1339. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1340. font-weight:400;
  1341. font-style:normal;
  1342. font-size:14px;
  1343. color:#AAAAAA;
  1344. text-align:center;
  1345. line-height:30px;
  1346. }
  1347. #u18649 .text {
  1348. position:absolute;
  1349. align-self:center;
  1350. padding:5px 10px 5px 10px;
  1351. box-sizing:border-box;
  1352. width:100%;
  1353. }
  1354. #u18649_text {
  1355. border-width:0px;
  1356. word-wrap:break-word;
  1357. text-transform:none;
  1358. visibility:hidden;
  1359. }
  1360. #u18650_div {
  1361. border-width:0px;
  1362. position:absolute;
  1363. left:0px;
  1364. top:0px;
  1365. width:107px;
  1366. height:43px;
  1367. background:inherit;
  1368. background-color:rgba(255, 255, 255, 0);
  1369. border-top:0px;
  1370. border-right:0px;
  1371. border-bottom:0px;
  1372. border-radius:0px;
  1373. border-top-left-radius:0px;
  1374. border-bottom-left-radius:0px;
  1375. filter:drop-shadow(none);
  1376. transition:none;
  1377. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1378. font-weight:500;
  1379. font-style:normal;
  1380. font-size:24px;
  1381. }
  1382. #u18650 {
  1383. border-width:0px;
  1384. position:absolute;
  1385. left:2156px;
  1386. top:796px;
  1387. width:107px;
  1388. height:43px;
  1389. display:flex;
  1390. transition:none;
  1391. transform-origin:50% 50%;
  1392. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1393. font-weight:500;
  1394. font-style:normal;
  1395. font-size:24px;
  1396. }
  1397. #u18650 .text {
  1398. position:absolute;
  1399. align-self:center;
  1400. padding:5px 10px 5px 0px;
  1401. box-sizing:border-box;
  1402. width:100%;
  1403. }
  1404. #u18650_text {
  1405. border-width:0px;
  1406. white-space:nowrap;
  1407. text-transform:none;
  1408. }
  1409. #u18651_div {
  1410. border-width:0px;
  1411. position:absolute;
  1412. left:0px;
  1413. top:0px;
  1414. width:80px;
  1415. height:30px;
  1416. background:inherit;
  1417. background-color:rgba(255, 255, 255, 0);
  1418. border-left:0px;
  1419. border-top:0px;
  1420. border-right:0px;
  1421. border-radius:0px;
  1422. border-bottom-right-radius:0px;
  1423. border-bottom-left-radius:0px;
  1424. filter:drop-shadow(none);
  1425. transition:none;
  1426. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1427. font-weight:400;
  1428. font-style:normal;
  1429. font-size:14px;
  1430. color:#7F7F7F;
  1431. line-height:30px;
  1432. }
  1433. #u18651 {
  1434. border-width:0px;
  1435. position:absolute;
  1436. left:2166px;
  1437. top:849px;
  1438. width:80px;
  1439. height:30px;
  1440. display:flex;
  1441. transition:none;
  1442. transform-origin:50% 50%;
  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. line-height:30px;
  1449. }
  1450. #u18651 .text {
  1451. position:absolute;
  1452. align-self:flex-start;
  1453. padding:0px 0px 0px 0px;
  1454. box-sizing:border-box;
  1455. width:100%;
  1456. }
  1457. #u18651_text {
  1458. border-width:0px;
  1459. word-wrap:break-word;
  1460. text-transform:none;
  1461. }
  1462. #u18652_div {
  1463. border-width:0px;
  1464. position:absolute;
  1465. left:0px;
  1466. top:0px;
  1467. width:43px;
  1468. height:30px;
  1469. background:inherit;
  1470. background-color:rgba(255, 255, 255, 0);
  1471. border-left:0px;
  1472. border-top:0px;
  1473. border-right:0px;
  1474. border-radius:0px;
  1475. border-bottom-right-radius:0px;
  1476. border-bottom-left-radius:0px;
  1477. filter:drop-shadow(none);
  1478. transition:none;
  1479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1480. font-weight:400;
  1481. font-style:normal;
  1482. font-size:14px;
  1483. color:#D9001B;
  1484. line-height:30px;
  1485. }
  1486. #u18652 {
  1487. border-width:0px;
  1488. position:absolute;
  1489. left:2246px;
  1490. top:849px;
  1491. width:43px;
  1492. height:30px;
  1493. display:flex;
  1494. transition:none;
  1495. transform-origin:50% 50%;
  1496. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1497. font-weight:400;
  1498. font-style:normal;
  1499. font-size:14px;
  1500. color:#D9001B;
  1501. line-height:30px;
  1502. }
  1503. #u18652 .text {
  1504. position:absolute;
  1505. align-self:flex-start;
  1506. padding:0px 0px 0px 0px;
  1507. box-sizing:border-box;
  1508. width:100%;
  1509. }
  1510. #u18652_text {
  1511. border-width:0px;
  1512. white-space:nowrap;
  1513. text-transform:none;
  1514. }
  1515. #u18653_div {
  1516. border-width:0px;
  1517. position:absolute;
  1518. left:0px;
  1519. top:0px;
  1520. width:80px;
  1521. height:30px;
  1522. background:inherit;
  1523. background-color:rgba(255, 255, 255, 0);
  1524. border-left:0px;
  1525. border-top:0px;
  1526. border-right:0px;
  1527. border-radius:0px;
  1528. border-bottom-right-radius:0px;
  1529. border-bottom-left-radius:0px;
  1530. filter:drop-shadow(none);
  1531. transition:none;
  1532. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1533. font-weight:400;
  1534. font-style:normal;
  1535. font-size:14px;
  1536. color:#7F7F7F;
  1537. line-height:30px;
  1538. }
  1539. #u18653 {
  1540. border-width:0px;
  1541. position:absolute;
  1542. left:2166px;
  1543. top:889px;
  1544. width:80px;
  1545. height:30px;
  1546. display:flex;
  1547. transition:none;
  1548. transform-origin:50% 50%;
  1549. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1550. font-weight:400;
  1551. font-style:normal;
  1552. font-size:14px;
  1553. color:#7F7F7F;
  1554. line-height:30px;
  1555. }
  1556. #u18653 .text {
  1557. position:absolute;
  1558. align-self:flex-start;
  1559. padding:0px 0px 0px 0px;
  1560. box-sizing:border-box;
  1561. width:100%;
  1562. }
  1563. #u18653_text {
  1564. border-width:0px;
  1565. word-wrap:break-word;
  1566. text-transform:none;
  1567. }
  1568. #u18654_div {
  1569. border-width:0px;
  1570. position:absolute;
  1571. left:0px;
  1572. top:0px;
  1573. width:128px;
  1574. height:30px;
  1575. background:inherit;
  1576. background-color:rgba(255, 255, 255, 0);
  1577. border-left:0px;
  1578. border-top:0px;
  1579. border-right:0px;
  1580. border-radius:0px;
  1581. border-bottom-right-radius:0px;
  1582. border-bottom-left-radius:0px;
  1583. filter:drop-shadow(none);
  1584. transition:none;
  1585. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1586. font-weight:400;
  1587. font-style:normal;
  1588. font-size:14px;
  1589. line-height:30px;
  1590. }
  1591. #u18654 {
  1592. border-width:0px;
  1593. position:absolute;
  1594. left:2246px;
  1595. top:889px;
  1596. width:128px;
  1597. height:30px;
  1598. display:flex;
  1599. transition:none;
  1600. transform-origin:50% 50%;
  1601. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1602. font-weight:400;
  1603. font-style:normal;
  1604. font-size:14px;
  1605. line-height:30px;
  1606. }
  1607. #u18654 .text {
  1608. position:absolute;
  1609. align-self:flex-start;
  1610. padding:0px 0px 0px 0px;
  1611. box-sizing:border-box;
  1612. width:100%;
  1613. }
  1614. #u18654_text {
  1615. border-width:0px;
  1616. white-space:nowrap;
  1617. text-transform:none;
  1618. }
  1619. #u18655_div {
  1620. border-width:0px;
  1621. position:absolute;
  1622. left:0px;
  1623. top:0px;
  1624. width:80px;
  1625. height:30px;
  1626. background:inherit;
  1627. background-color:rgba(255, 255, 255, 0);
  1628. border-left:0px;
  1629. border-top:0px;
  1630. border-right:0px;
  1631. border-radius:0px;
  1632. border-bottom-right-radius:0px;
  1633. border-bottom-left-radius:0px;
  1634. filter:drop-shadow(none);
  1635. transition:none;
  1636. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1637. font-weight:400;
  1638. font-style:normal;
  1639. font-size:14px;
  1640. color:#7F7F7F;
  1641. line-height:30px;
  1642. }
  1643. #u18655 {
  1644. border-width:0px;
  1645. position:absolute;
  1646. left:2166px;
  1647. top:929px;
  1648. width:80px;
  1649. height:30px;
  1650. display:flex;
  1651. transition:none;
  1652. transform-origin:50% 50%;
  1653. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1654. font-weight:400;
  1655. font-style:normal;
  1656. font-size:14px;
  1657. color:#7F7F7F;
  1658. line-height:30px;
  1659. }
  1660. #u18655 .text {
  1661. position:absolute;
  1662. align-self:flex-start;
  1663. padding:0px 0px 0px 0px;
  1664. box-sizing:border-box;
  1665. width:100%;
  1666. }
  1667. #u18655_text {
  1668. border-width:0px;
  1669. word-wrap:break-word;
  1670. text-transform:none;
  1671. }
  1672. #u18656_div {
  1673. border-width:0px;
  1674. position:absolute;
  1675. left:0px;
  1676. top:0px;
  1677. width:121px;
  1678. height:30px;
  1679. background:inherit;
  1680. background-color:rgba(255, 255, 255, 0);
  1681. border-left:0px;
  1682. border-top:0px;
  1683. border-right:0px;
  1684. border-radius:0px;
  1685. border-bottom-right-radius:0px;
  1686. border-bottom-left-radius:0px;
  1687. filter:drop-shadow(none);
  1688. transition:none;
  1689. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1690. font-weight:400;
  1691. font-style:normal;
  1692. font-size:14px;
  1693. line-height:30px;
  1694. }
  1695. #u18656 {
  1696. border-width:0px;
  1697. position:absolute;
  1698. left:2246px;
  1699. top:929px;
  1700. width:121px;
  1701. height:30px;
  1702. display:flex;
  1703. transition:none;
  1704. transform-origin:50% 50%;
  1705. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1706. font-weight:400;
  1707. font-style:normal;
  1708. font-size:14px;
  1709. line-height:30px;
  1710. }
  1711. #u18656 .text {
  1712. position:absolute;
  1713. align-self:flex-start;
  1714. padding:0px 0px 0px 0px;
  1715. box-sizing:border-box;
  1716. width:100%;
  1717. }
  1718. #u18656_text {
  1719. border-width:0px;
  1720. white-space:nowrap;
  1721. text-transform:none;
  1722. }
  1723. #u18657_div {
  1724. border-width:0px;
  1725. position:absolute;
  1726. left:0px;
  1727. top:0px;
  1728. width:80px;
  1729. height:30px;
  1730. background:inherit;
  1731. background-color:rgba(255, 255, 255, 0);
  1732. border-left:0px;
  1733. border-top:0px;
  1734. border-right:0px;
  1735. border-radius:0px;
  1736. border-bottom-right-radius:0px;
  1737. border-bottom-left-radius:0px;
  1738. filter:drop-shadow(none);
  1739. transition:none;
  1740. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1741. font-weight:400;
  1742. font-style:normal;
  1743. font-size:14px;
  1744. color:#7F7F7F;
  1745. line-height:30px;
  1746. }
  1747. #u18657 {
  1748. border-width:0px;
  1749. position:absolute;
  1750. left:2166px;
  1751. top:969px;
  1752. width:80px;
  1753. height:30px;
  1754. display:flex;
  1755. transition:none;
  1756. transform-origin:50% 50%;
  1757. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1758. font-weight:400;
  1759. font-style:normal;
  1760. font-size:14px;
  1761. color:#7F7F7F;
  1762. line-height:30px;
  1763. }
  1764. #u18657 .text {
  1765. position:absolute;
  1766. align-self:flex-start;
  1767. padding:0px 0px 0px 0px;
  1768. box-sizing:border-box;
  1769. width:100%;
  1770. }
  1771. #u18657_text {
  1772. border-width:0px;
  1773. word-wrap:break-word;
  1774. text-transform:none;
  1775. }
  1776. #u18658_div {
  1777. border-width:0px;
  1778. position:absolute;
  1779. left:0px;
  1780. top:0px;
  1781. width:23px;
  1782. height:30px;
  1783. background:inherit;
  1784. background-color:rgba(255, 255, 255, 0);
  1785. border-left:0px;
  1786. border-top:0px;
  1787. border-right:0px;
  1788. border-radius:0px;
  1789. border-bottom-right-radius:0px;
  1790. border-bottom-left-radius:0px;
  1791. filter:drop-shadow(none);
  1792. transition:none;
  1793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1794. font-weight:400;
  1795. font-style:normal;
  1796. font-size:14px;
  1797. line-height:30px;
  1798. }
  1799. #u18658 {
  1800. border-width:0px;
  1801. position:absolute;
  1802. left:2246px;
  1803. top:969px;
  1804. width:23px;
  1805. height:30px;
  1806. display:flex;
  1807. transition:none;
  1808. transform-origin:50% 50%;
  1809. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1810. font-weight:400;
  1811. font-style:normal;
  1812. font-size:14px;
  1813. line-height:30px;
  1814. }
  1815. #u18658 .text {
  1816. position:absolute;
  1817. align-self:flex-start;
  1818. padding:0px 0px 0px 0px;
  1819. box-sizing:border-box;
  1820. width:100%;
  1821. }
  1822. #u18658_text {
  1823. border-width:0px;
  1824. white-space:nowrap;
  1825. text-transform:none;
  1826. }
  1827. #u18659 {
  1828. border-width:0px;
  1829. position:absolute;
  1830. left:2976px;
  1831. top:144px;
  1832. width:112px;
  1833. height:109px;
  1834. display:flex;
  1835. -webkit-transform:rotate(315deg);
  1836. -moz-transform:rotate(315deg);
  1837. -ms-transform:rotate(315deg);
  1838. transform:rotate(315deg);
  1839. transition:none;
  1840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1841. font-weight:400;
  1842. font-style:normal;
  1843. font-size:28px;
  1844. color:#D9001B;
  1845. }
  1846. #u18659 .text {
  1847. position:absolute;
  1848. align-self:center;
  1849. padding:2px 2px 2px 2px;
  1850. box-sizing:border-box;
  1851. width:100%;
  1852. }
  1853. #u18659_img {
  1854. border-width:0px;
  1855. position:absolute;
  1856. left:0px;
  1857. top:0px;
  1858. width:112px;
  1859. height:109px;
  1860. }
  1861. #u18659_text {
  1862. border-width:0px;
  1863. word-wrap:break-word;
  1864. text-transform:none;
  1865. }
  1866. #u18660 {
  1867. border-width:0px;
  1868. position:absolute;
  1869. left:0px;
  1870. top:0px;
  1871. width:0px;
  1872. height:0px;
  1873. }
  1874. #u18661_div {
  1875. border-width:0px;
  1876. position:absolute;
  1877. left:0px;
  1878. top:0px;
  1879. width:1000px;
  1880. height:60px;
  1881. background:inherit;
  1882. background-color:rgba(255, 255, 255, 1);
  1883. box-sizing:border-box;
  1884. border-width:1px;
  1885. border-style:solid;
  1886. border-color:rgba(215, 215, 215, 1);
  1887. border-radius:0px;
  1888. filter:drop-shadow(none);
  1889. transition:none;
  1890. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1891. font-weight:400;
  1892. font-style:normal;
  1893. font-size:14px;
  1894. color:#AAAAAA;
  1895. text-align:center;
  1896. line-height:30px;
  1897. }
  1898. #u18661 {
  1899. border-width:0px;
  1900. position:absolute;
  1901. left:2126px;
  1902. top:1224px;
  1903. width:1000px;
  1904. height:60px;
  1905. display:flex;
  1906. transition:none;
  1907. transform-origin:50% 50%;
  1908. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1909. font-weight:400;
  1910. font-style:normal;
  1911. font-size:14px;
  1912. color:#AAAAAA;
  1913. text-align:center;
  1914. line-height:30px;
  1915. }
  1916. #u18661 .text {
  1917. position:absolute;
  1918. align-self:center;
  1919. padding:5px 10px 5px 10px;
  1920. box-sizing:border-box;
  1921. width:100%;
  1922. }
  1923. #u18661_text {
  1924. border-width:0px;
  1925. word-wrap:break-word;
  1926. text-transform:none;
  1927. visibility:hidden;
  1928. }
  1929. #u18662_div {
  1930. border-width:0px;
  1931. position:absolute;
  1932. left:0px;
  1933. top:0px;
  1934. width:80px;
  1935. height:30px;
  1936. background:inherit;
  1937. background-color:rgba(255, 255, 255, 1);
  1938. box-sizing:border-box;
  1939. border-width:1px;
  1940. border-style:solid;
  1941. border-color:rgba(170, 170, 170, 1);
  1942. border-radius:4px;
  1943. filter:drop-shadow(none);
  1944. transition:none;
  1945. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1946. font-weight:400;
  1947. font-style:normal;
  1948. font-size:14px;
  1949. }
  1950. #u18662 {
  1951. border-width:0px;
  1952. position:absolute;
  1953. left:3016px;
  1954. top:1239px;
  1955. width:80px;
  1956. height:30px;
  1957. display:flex;
  1958. transition:none;
  1959. transform-origin:50% 50%;
  1960. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1961. font-weight:400;
  1962. font-style:normal;
  1963. font-size:14px;
  1964. }
  1965. #u18662 .text {
  1966. position:absolute;
  1967. align-self:center;
  1968. padding:2px 2px 2px 2px;
  1969. box-sizing:border-box;
  1970. width:100%;
  1971. }
  1972. #u18662_text {
  1973. border-width:0px;
  1974. word-wrap:break-word;
  1975. text-transform:none;
  1976. }
  1977. #u18663_div {
  1978. border-width:0px;
  1979. position:absolute;
  1980. left:0px;
  1981. top:0px;
  1982. width:1000px;
  1983. height:1201px;
  1984. background:inherit;
  1985. background-color:rgba(242, 242, 242, 1);
  1986. box-sizing:border-box;
  1987. border-width:1px;
  1988. border-style:solid;
  1989. border-color:rgba(215, 215, 215, 1);
  1990. border-radius:0px;
  1991. filter:drop-shadow(none);
  1992. transition:none;
  1993. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1994. font-weight:400;
  1995. font-style:normal;
  1996. font-size:14px;
  1997. color:#AAAAAA;
  1998. text-align:center;
  1999. line-height:30px;
  2000. }
  2001. #u18663 {
  2002. border-width:0px;
  2003. position:absolute;
  2004. left:3156px;
  2005. top:83px;
  2006. width:1000px;
  2007. height:1201px;
  2008. display:flex;
  2009. transition:none;
  2010. transform-origin:50% 50%;
  2011. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2012. font-weight:400;
  2013. font-style:normal;
  2014. font-size:14px;
  2015. color:#AAAAAA;
  2016. text-align:center;
  2017. line-height:30px;
  2018. }
  2019. #u18663 .text {
  2020. position:absolute;
  2021. align-self:center;
  2022. padding:5px 10px 5px 10px;
  2023. box-sizing:border-box;
  2024. width:100%;
  2025. }
  2026. #u18663_text {
  2027. border-width:0px;
  2028. word-wrap:break-word;
  2029. text-transform:none;
  2030. visibility:hidden;
  2031. }
  2032. #u18664_div {
  2033. border-width:0px;
  2034. position:absolute;
  2035. left:0px;
  2036. top:0px;
  2037. width:1000px;
  2038. height:1141px;
  2039. background:inherit;
  2040. background-color:rgba(255, 255, 255, 1);
  2041. box-sizing:border-box;
  2042. border-width:1px;
  2043. border-style:solid;
  2044. border-color:rgba(215, 215, 215, 1);
  2045. border-radius:0px;
  2046. filter:drop-shadow(none);
  2047. transition:none;
  2048. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2049. font-weight:400;
  2050. font-style:normal;
  2051. font-size:14px;
  2052. color:#AAAAAA;
  2053. text-align:center;
  2054. line-height:30px;
  2055. }
  2056. #u18664 {
  2057. border-width:0px;
  2058. position:absolute;
  2059. left:3156px;
  2060. top:83px;
  2061. width:1000px;
  2062. height:1141px;
  2063. display:flex;
  2064. transition:none;
  2065. transform-origin:50% 50%;
  2066. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2067. font-weight:400;
  2068. font-style:normal;
  2069. font-size:14px;
  2070. color:#AAAAAA;
  2071. text-align:center;
  2072. line-height:30px;
  2073. }
  2074. #u18664 .text {
  2075. position:absolute;
  2076. align-self:center;
  2077. padding:5px 10px 5px 10px;
  2078. box-sizing:border-box;
  2079. width:100%;
  2080. }
  2081. #u18664_text {
  2082. border-width:0px;
  2083. word-wrap:break-word;
  2084. text-transform:none;
  2085. visibility:hidden;
  2086. }
  2087. #u18665_div {
  2088. border-width:0px;
  2089. position:absolute;
  2090. left:0px;
  2091. top:0px;
  2092. width:119px;
  2093. height:35px;
  2094. background:inherit;
  2095. background-color:rgba(255, 255, 255, 0);
  2096. border-top:0px;
  2097. border-right:0px;
  2098. border-bottom:0px;
  2099. border-radius:0px;
  2100. border-top-left-radius:0px;
  2101. border-bottom-left-radius:0px;
  2102. filter:drop-shadow(none);
  2103. transition:none;
  2104. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2105. font-weight:500;
  2106. font-style:normal;
  2107. font-size:18px;
  2108. }
  2109. #u18665 {
  2110. border-width:0px;
  2111. position:absolute;
  2112. left:3176px;
  2113. top:101px;
  2114. width:119px;
  2115. height:35px;
  2116. display:flex;
  2117. transition:none;
  2118. transform-origin:50% 50%;
  2119. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2120. font-weight:500;
  2121. font-style:normal;
  2122. font-size:18px;
  2123. }
  2124. #u18665 .text {
  2125. position:absolute;
  2126. align-self:center;
  2127. padding:5px 10px 5px 0px;
  2128. box-sizing:border-box;
  2129. width:100%;
  2130. }
  2131. #u18665_text {
  2132. border-width:0px;
  2133. white-space:nowrap;
  2134. text-transform:none;
  2135. }
  2136. #u18666 {
  2137. border-width:0px;
  2138. position:absolute;
  2139. left:0px;
  2140. top:0px;
  2141. width:0px;
  2142. height:0px;
  2143. }
  2144. #u18667_div {
  2145. border-width:0px;
  2146. position:absolute;
  2147. left:0px;
  2148. top:0px;
  2149. width:40px;
  2150. height:40px;
  2151. background:inherit;
  2152. background-color:rgba(255, 255, 255, 0);
  2153. border-top:0px;
  2154. border-right:0px;
  2155. border-bottom:0px;
  2156. border-radius:0px;
  2157. border-top-left-radius:0px;
  2158. border-bottom-left-radius:0px;
  2159. filter:drop-shadow(none);
  2160. transition:none;
  2161. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2162. font-weight:500;
  2163. font-style:normal;
  2164. font-size:14px;
  2165. text-align:center;
  2166. }
  2167. #u18667 {
  2168. border-width:0px;
  2169. position:absolute;
  2170. left:4116px;
  2171. top:83px;
  2172. width:40px;
  2173. height:40px;
  2174. display:flex;
  2175. transition:none;
  2176. transform-origin:50% 50%;
  2177. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2178. font-weight:500;
  2179. font-style:normal;
  2180. font-size:14px;
  2181. text-align:center;
  2182. }
  2183. #u18667 .text {
  2184. position:absolute;
  2185. align-self:center;
  2186. padding:5px 10px 5px 0px;
  2187. box-sizing:border-box;
  2188. width:100%;
  2189. }
  2190. #u18667_text {
  2191. border-width:0px;
  2192. word-wrap:break-word;
  2193. text-transform:none;
  2194. }
  2195. #u18668 {
  2196. border-width:0px;
  2197. position:absolute;
  2198. left:4104px;
  2199. top:99px;
  2200. width:13px;
  2201. height:13px;
  2202. display:flex;
  2203. transition:none;
  2204. font-size:14px;
  2205. }
  2206. #u18668 .text {
  2207. position:absolute;
  2208. align-self:center;
  2209. padding:2px 2px 2px 2px;
  2210. box-sizing:border-box;
  2211. width:100%;
  2212. }
  2213. #u18668_img {
  2214. border-width:0px;
  2215. position:absolute;
  2216. left:0px;
  2217. top:0px;
  2218. width:13px;
  2219. height:13px;
  2220. }
  2221. #u18668_text {
  2222. border-width:0px;
  2223. word-wrap:break-word;
  2224. text-transform:none;
  2225. visibility:hidden;
  2226. }
  2227. #u18669_div {
  2228. border-width:0px;
  2229. position:absolute;
  2230. left:0px;
  2231. top:0px;
  2232. width:213px;
  2233. height:43px;
  2234. background:inherit;
  2235. background-color:rgba(255, 255, 255, 0);
  2236. border-top:0px;
  2237. border-right:0px;
  2238. border-bottom:0px;
  2239. border-radius:0px;
  2240. border-top-left-radius:0px;
  2241. border-bottom-left-radius:0px;
  2242. filter:drop-shadow(none);
  2243. transition:none;
  2244. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2245. font-weight:500;
  2246. font-style:normal;
  2247. font-size:24px;
  2248. }
  2249. #u18669 {
  2250. border-width:0px;
  2251. position:absolute;
  2252. left:3186px;
  2253. top:152px;
  2254. width:213px;
  2255. height:43px;
  2256. display:flex;
  2257. transition:none;
  2258. transform-origin:50% 50%;
  2259. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2260. font-weight:500;
  2261. font-style:normal;
  2262. font-size:24px;
  2263. }
  2264. #u18669 .text {
  2265. position:absolute;
  2266. align-self:center;
  2267. padding:5px 10px 5px 0px;
  2268. box-sizing:border-box;
  2269. width:100%;
  2270. }
  2271. #u18669_text {
  2272. border-width:0px;
  2273. white-space:nowrap;
  2274. text-transform:none;
  2275. }
  2276. #u18670 {
  2277. border-width:0px;
  2278. position:absolute;
  2279. left:4002px;
  2280. top:144px;
  2281. width:112px;
  2282. height:109px;
  2283. display:flex;
  2284. -webkit-transform:rotate(315deg);
  2285. -moz-transform:rotate(315deg);
  2286. -ms-transform:rotate(315deg);
  2287. transform:rotate(315deg);
  2288. transition:none;
  2289. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2290. font-weight:400;
  2291. font-style:normal;
  2292. font-size:28px;
  2293. color:#7F7F7F;
  2294. }
  2295. #u18670 .text {
  2296. position:absolute;
  2297. align-self:center;
  2298. padding:2px 2px 2px 2px;
  2299. box-sizing:border-box;
  2300. width:100%;
  2301. }
  2302. #u18670_img {
  2303. border-width:0px;
  2304. position:absolute;
  2305. left:0px;
  2306. top:0px;
  2307. width:112px;
  2308. height:109px;
  2309. }
  2310. #u18670_text {
  2311. border-width:0px;
  2312. word-wrap:break-word;
  2313. text-transform:none;
  2314. }
  2315. #u18671 {
  2316. border-width:0px;
  2317. position:absolute;
  2318. left:0px;
  2319. top:0px;
  2320. width:0px;
  2321. height:0px;
  2322. }
  2323. #u18672_div {
  2324. border-width:0px;
  2325. position:absolute;
  2326. left:0px;
  2327. top:0px;
  2328. width:1000px;
  2329. height:60px;
  2330. background:inherit;
  2331. background-color:rgba(255, 255, 255, 1);
  2332. box-sizing:border-box;
  2333. border-width:1px;
  2334. border-style:solid;
  2335. border-color:rgba(215, 215, 215, 1);
  2336. border-radius:0px;
  2337. filter:drop-shadow(none);
  2338. transition:none;
  2339. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2340. font-weight:400;
  2341. font-style:normal;
  2342. font-size:14px;
  2343. color:#AAAAAA;
  2344. text-align:center;
  2345. line-height:30px;
  2346. }
  2347. #u18672 {
  2348. border-width:0px;
  2349. position:absolute;
  2350. left:3156px;
  2351. top:1224px;
  2352. width:1000px;
  2353. height:60px;
  2354. display:flex;
  2355. transition:none;
  2356. transform-origin:50% 50%;
  2357. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2358. font-weight:400;
  2359. font-style:normal;
  2360. font-size:14px;
  2361. color:#AAAAAA;
  2362. text-align:center;
  2363. line-height:30px;
  2364. }
  2365. #u18672 .text {
  2366. position:absolute;
  2367. align-self:center;
  2368. padding:5px 10px 5px 10px;
  2369. box-sizing:border-box;
  2370. width:100%;
  2371. }
  2372. #u18672_text {
  2373. border-width:0px;
  2374. word-wrap:break-word;
  2375. text-transform:none;
  2376. visibility:hidden;
  2377. }
  2378. #u18673_div {
  2379. border-width:0px;
  2380. position:absolute;
  2381. left:0px;
  2382. top:0px;
  2383. width:80px;
  2384. height:30px;
  2385. background:inherit;
  2386. background-color:rgba(255, 255, 255, 1);
  2387. box-sizing:border-box;
  2388. border-width:1px;
  2389. border-style:solid;
  2390. border-color:rgba(170, 170, 170, 1);
  2391. border-radius:4px;
  2392. filter:drop-shadow(none);
  2393. transition:none;
  2394. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2395. font-weight:400;
  2396. font-style:normal;
  2397. font-size:14px;
  2398. }
  2399. #u18673 {
  2400. border-width:0px;
  2401. position:absolute;
  2402. left:4046px;
  2403. top:1239px;
  2404. width:80px;
  2405. height:30px;
  2406. display:flex;
  2407. transition:none;
  2408. transform-origin:50% 50%;
  2409. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2410. font-weight:400;
  2411. font-style:normal;
  2412. font-size:14px;
  2413. }
  2414. #u18673 .text {
  2415. position:absolute;
  2416. align-self:center;
  2417. padding:2px 2px 2px 2px;
  2418. box-sizing:border-box;
  2419. width:100%;
  2420. }
  2421. #u18673_text {
  2422. border-width:0px;
  2423. word-wrap:break-word;
  2424. text-transform:none;
  2425. }
  2426. #u18674_div {
  2427. border-width:0px;
  2428. position:absolute;
  2429. left:0px;
  2430. top:0px;
  2431. width:1000px;
  2432. height:1201px;
  2433. background:inherit;
  2434. background-color:rgba(242, 242, 242, 1);
  2435. box-sizing:border-box;
  2436. border-width:1px;
  2437. border-style:solid;
  2438. border-color:rgba(215, 215, 215, 1);
  2439. border-radius:0px;
  2440. filter:drop-shadow(none);
  2441. transition:none;
  2442. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2443. font-weight:400;
  2444. font-style:normal;
  2445. font-size:14px;
  2446. color:#AAAAAA;
  2447. text-align:center;
  2448. line-height:30px;
  2449. }
  2450. #u18674 {
  2451. border-width:0px;
  2452. position:absolute;
  2453. left:66px;
  2454. top:83px;
  2455. width:1000px;
  2456. height:1201px;
  2457. display:flex;
  2458. transition:none;
  2459. transform-origin:50% 50%;
  2460. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2461. font-weight:400;
  2462. font-style:normal;
  2463. font-size:14px;
  2464. color:#AAAAAA;
  2465. text-align:center;
  2466. line-height:30px;
  2467. }
  2468. #u18674 .text {
  2469. position:absolute;
  2470. align-self:center;
  2471. padding:5px 10px 5px 10px;
  2472. box-sizing:border-box;
  2473. width:100%;
  2474. }
  2475. #u18674_text {
  2476. border-width:0px;
  2477. word-wrap:break-word;
  2478. text-transform:none;
  2479. visibility:hidden;
  2480. }
  2481. #u18675_div {
  2482. border-width:0px;
  2483. position:absolute;
  2484. left:0px;
  2485. top:0px;
  2486. width:1000px;
  2487. height:1141px;
  2488. background:inherit;
  2489. background-color:rgba(255, 255, 255, 1);
  2490. box-sizing:border-box;
  2491. border-width:1px;
  2492. border-style:solid;
  2493. border-color:rgba(215, 215, 215, 1);
  2494. border-radius:0px;
  2495. filter:drop-shadow(none);
  2496. transition:none;
  2497. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2498. font-weight:400;
  2499. font-style:normal;
  2500. font-size:14px;
  2501. color:#AAAAAA;
  2502. text-align:center;
  2503. line-height:30px;
  2504. }
  2505. #u18675 {
  2506. border-width:0px;
  2507. position:absolute;
  2508. left:66px;
  2509. top:83px;
  2510. width:1000px;
  2511. height:1141px;
  2512. display:flex;
  2513. transition:none;
  2514. transform-origin:50% 50%;
  2515. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2516. font-weight:400;
  2517. font-style:normal;
  2518. font-size:14px;
  2519. color:#AAAAAA;
  2520. text-align:center;
  2521. line-height:30px;
  2522. }
  2523. #u18675 .text {
  2524. position:absolute;
  2525. align-self:center;
  2526. padding:5px 10px 5px 10px;
  2527. box-sizing:border-box;
  2528. width:100%;
  2529. }
  2530. #u18675_text {
  2531. border-width:0px;
  2532. word-wrap:break-word;
  2533. text-transform:none;
  2534. visibility:hidden;
  2535. }
  2536. #u18676_div {
  2537. border-width:0px;
  2538. position:absolute;
  2539. left:0px;
  2540. top:0px;
  2541. width:119px;
  2542. height:35px;
  2543. background:inherit;
  2544. background-color:rgba(255, 255, 255, 0);
  2545. border-top:0px;
  2546. border-right:0px;
  2547. border-bottom:0px;
  2548. border-radius:0px;
  2549. border-top-left-radius:0px;
  2550. border-bottom-left-radius:0px;
  2551. filter:drop-shadow(none);
  2552. transition:none;
  2553. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2554. font-weight:500;
  2555. font-style:normal;
  2556. font-size:18px;
  2557. }
  2558. #u18676 {
  2559. border-width:0px;
  2560. position:absolute;
  2561. left:86px;
  2562. top:101px;
  2563. width:119px;
  2564. height:35px;
  2565. display:flex;
  2566. transition:none;
  2567. transform-origin:50% 50%;
  2568. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2569. font-weight:500;
  2570. font-style:normal;
  2571. font-size:18px;
  2572. }
  2573. #u18676 .text {
  2574. position:absolute;
  2575. align-self:center;
  2576. padding:5px 10px 5px 0px;
  2577. box-sizing:border-box;
  2578. width:100%;
  2579. }
  2580. #u18676_text {
  2581. border-width:0px;
  2582. white-space:nowrap;
  2583. text-transform:none;
  2584. }
  2585. #u18677 {
  2586. border-width:0px;
  2587. position:absolute;
  2588. left:0px;
  2589. top:0px;
  2590. width:0px;
  2591. height:0px;
  2592. }
  2593. #u18678_div {
  2594. border-width:0px;
  2595. position:absolute;
  2596. left:0px;
  2597. top:0px;
  2598. width:40px;
  2599. height:40px;
  2600. background:inherit;
  2601. background-color:rgba(255, 255, 255, 0);
  2602. border-top:0px;
  2603. border-right:0px;
  2604. border-bottom:0px;
  2605. border-radius:0px;
  2606. border-top-left-radius:0px;
  2607. border-bottom-left-radius:0px;
  2608. filter:drop-shadow(none);
  2609. transition:none;
  2610. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2611. font-weight:500;
  2612. font-style:normal;
  2613. font-size:14px;
  2614. text-align:center;
  2615. }
  2616. #u18678 {
  2617. border-width:0px;
  2618. position:absolute;
  2619. left:1026px;
  2620. top:83px;
  2621. width:40px;
  2622. height:40px;
  2623. display:flex;
  2624. transition:none;
  2625. transform-origin:50% 50%;
  2626. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2627. font-weight:500;
  2628. font-style:normal;
  2629. font-size:14px;
  2630. text-align:center;
  2631. }
  2632. #u18678 .text {
  2633. position:absolute;
  2634. align-self:center;
  2635. padding:5px 10px 5px 0px;
  2636. box-sizing:border-box;
  2637. width:100%;
  2638. }
  2639. #u18678_text {
  2640. border-width:0px;
  2641. word-wrap:break-word;
  2642. text-transform:none;
  2643. }
  2644. #u18679 {
  2645. border-width:0px;
  2646. position:absolute;
  2647. left:1014px;
  2648. top:99px;
  2649. width:13px;
  2650. height:13px;
  2651. display:flex;
  2652. transition:none;
  2653. font-size:14px;
  2654. }
  2655. #u18679 .text {
  2656. position:absolute;
  2657. align-self:center;
  2658. padding:2px 2px 2px 2px;
  2659. box-sizing:border-box;
  2660. width:100%;
  2661. }
  2662. #u18679_img {
  2663. border-width:0px;
  2664. position:absolute;
  2665. left:0px;
  2666. top:0px;
  2667. width:13px;
  2668. height:13px;
  2669. }
  2670. #u18679_text {
  2671. border-width:0px;
  2672. word-wrap:break-word;
  2673. text-transform:none;
  2674. visibility:hidden;
  2675. }
  2676. #u18680_div {
  2677. border-width:0px;
  2678. position:absolute;
  2679. left:0px;
  2680. top:0px;
  2681. width:213px;
  2682. height:43px;
  2683. background:inherit;
  2684. background-color:rgba(255, 255, 255, 0);
  2685. border-top:0px;
  2686. border-right:0px;
  2687. border-bottom:0px;
  2688. border-radius:0px;
  2689. border-top-left-radius:0px;
  2690. border-bottom-left-radius:0px;
  2691. filter:drop-shadow(none);
  2692. transition:none;
  2693. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2694. font-weight:500;
  2695. font-style:normal;
  2696. font-size:24px;
  2697. }
  2698. #u18680 {
  2699. border-width:0px;
  2700. position:absolute;
  2701. left:96px;
  2702. top:152px;
  2703. width:213px;
  2704. height:43px;
  2705. display:flex;
  2706. transition:none;
  2707. transform-origin:50% 50%;
  2708. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2709. font-weight:500;
  2710. font-style:normal;
  2711. font-size:24px;
  2712. }
  2713. #u18680 .text {
  2714. position:absolute;
  2715. align-self:center;
  2716. padding:5px 10px 5px 0px;
  2717. box-sizing:border-box;
  2718. width:100%;
  2719. }
  2720. #u18680_text {
  2721. border-width:0px;
  2722. white-space:nowrap;
  2723. text-transform:none;
  2724. }
  2725. #u18681 {
  2726. border-width:0px;
  2727. position:absolute;
  2728. left:916px;
  2729. top:153px;
  2730. width:108px;
  2731. height:108px;
  2732. display:flex;
  2733. -webkit-transform:rotate(315deg);
  2734. -moz-transform:rotate(315deg);
  2735. -ms-transform:rotate(315deg);
  2736. transform:rotate(315deg);
  2737. transition:none;
  2738. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2739. font-weight:400;
  2740. font-style:normal;
  2741. font-size:28px;
  2742. color:#F59A23;
  2743. }
  2744. #u18681 .text {
  2745. position:absolute;
  2746. align-self:center;
  2747. padding:2px 2px 2px 2px;
  2748. box-sizing:border-box;
  2749. width:100%;
  2750. }
  2751. #u18681_img {
  2752. border-width:0px;
  2753. position:absolute;
  2754. left:0px;
  2755. top:0px;
  2756. width:108px;
  2757. height:108px;
  2758. }
  2759. #u18681_text {
  2760. border-width:0px;
  2761. word-wrap:break-word;
  2762. text-transform:none;
  2763. }
  2764. #u18682_div {
  2765. border-width:0px;
  2766. position:absolute;
  2767. left:0px;
  2768. top:0px;
  2769. width:80px;
  2770. height:30px;
  2771. background:inherit;
  2772. background-color:rgba(255, 255, 255, 0);
  2773. border-left:0px;
  2774. border-top:0px;
  2775. border-right:0px;
  2776. border-radius:0px;
  2777. border-bottom-right-radius:0px;
  2778. border-bottom-left-radius:0px;
  2779. filter:drop-shadow(none);
  2780. transition:none;
  2781. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2782. font-weight:400;
  2783. font-style:normal;
  2784. font-size:14px;
  2785. color:#7F7F7F;
  2786. line-height:30px;
  2787. }
  2788. #u18682 {
  2789. border-width:0px;
  2790. position:absolute;
  2791. left:96px;
  2792. top:215px;
  2793. width:80px;
  2794. height:30px;
  2795. display:flex;
  2796. transition:none;
  2797. transform-origin:50% 50%;
  2798. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2799. font-weight:400;
  2800. font-style:normal;
  2801. font-size:14px;
  2802. color:#7F7F7F;
  2803. line-height:30px;
  2804. }
  2805. #u18682 .text {
  2806. position:absolute;
  2807. align-self:flex-start;
  2808. padding:0px 0px 0px 0px;
  2809. box-sizing:border-box;
  2810. width:100%;
  2811. }
  2812. #u18682_text {
  2813. border-width:0px;
  2814. word-wrap:break-word;
  2815. text-transform:none;
  2816. }
  2817. #u18683_div {
  2818. border-width:0px;
  2819. position:absolute;
  2820. left:0px;
  2821. top:0px;
  2822. width:85px;
  2823. height:30px;
  2824. background:inherit;
  2825. background-color:rgba(255, 255, 255, 0);
  2826. border-left:0px;
  2827. border-top:0px;
  2828. border-right:0px;
  2829. border-radius:0px;
  2830. border-bottom-right-radius:0px;
  2831. border-bottom-left-radius:0px;
  2832. filter:drop-shadow(none);
  2833. transition:none;
  2834. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2835. font-weight:400;
  2836. font-style:normal;
  2837. font-size:14px;
  2838. line-height:30px;
  2839. }
  2840. #u18683 {
  2841. border-width:0px;
  2842. position:absolute;
  2843. left:176px;
  2844. top:215px;
  2845. width:85px;
  2846. height:30px;
  2847. display:flex;
  2848. transition:none;
  2849. transform-origin:50% 50%;
  2850. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2851. font-weight:400;
  2852. font-style:normal;
  2853. font-size:14px;
  2854. line-height:30px;
  2855. }
  2856. #u18683 .text {
  2857. position:absolute;
  2858. align-self:flex-start;
  2859. padding:0px 0px 0px 0px;
  2860. box-sizing:border-box;
  2861. width:100%;
  2862. }
  2863. #u18683_text {
  2864. border-width:0px;
  2865. white-space:nowrap;
  2866. text-transform:none;
  2867. }
  2868. #u18684_div {
  2869. border-width:0px;
  2870. position:absolute;
  2871. left:0px;
  2872. top:0px;
  2873. width:71px;
  2874. height:30px;
  2875. background:inherit;
  2876. background-color:rgba(255, 255, 255, 0);
  2877. border-left:0px;
  2878. border-top:0px;
  2879. border-right:0px;
  2880. border-radius:0px;
  2881. border-bottom-right-radius:0px;
  2882. border-bottom-left-radius:0px;
  2883. filter:drop-shadow(none);
  2884. transition:none;
  2885. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2886. font-weight:400;
  2887. font-style:normal;
  2888. font-size:14px;
  2889. color:#7F7F7F;
  2890. line-height:30px;
  2891. }
  2892. #u18684 {
  2893. border-width:0px;
  2894. position:absolute;
  2895. left:96px;
  2896. top:255px;
  2897. width:71px;
  2898. height:30px;
  2899. display:flex;
  2900. transition:none;
  2901. transform-origin:50% 50%;
  2902. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2903. font-weight:400;
  2904. font-style:normal;
  2905. font-size:14px;
  2906. color:#7F7F7F;
  2907. line-height:30px;
  2908. }
  2909. #u18684 .text {
  2910. position:absolute;
  2911. align-self:flex-start;
  2912. padding:0px 0px 0px 0px;
  2913. box-sizing:border-box;
  2914. width:100%;
  2915. }
  2916. #u18684_text {
  2917. border-width:0px;
  2918. white-space:nowrap;
  2919. text-transform:none;
  2920. }
  2921. #u18685_div {
  2922. border-width:0px;
  2923. position:absolute;
  2924. left:0px;
  2925. top:0px;
  2926. width:29px;
  2927. height:30px;
  2928. background:inherit;
  2929. background-color:rgba(255, 255, 255, 0);
  2930. border-left:0px;
  2931. border-top:0px;
  2932. border-right:0px;
  2933. border-radius:0px;
  2934. border-bottom-right-radius:0px;
  2935. border-bottom-left-radius:0px;
  2936. filter:drop-shadow(none);
  2937. transition:none;
  2938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2939. font-weight:400;
  2940. font-style:normal;
  2941. font-size:14px;
  2942. line-height:30px;
  2943. }
  2944. #u18685 {
  2945. border-width:0px;
  2946. position:absolute;
  2947. left:176px;
  2948. top:255px;
  2949. width:29px;
  2950. height:30px;
  2951. display:flex;
  2952. transition:none;
  2953. transform-origin:50% 50%;
  2954. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2955. font-weight:400;
  2956. font-style:normal;
  2957. font-size:14px;
  2958. line-height:30px;
  2959. }
  2960. #u18685 .text {
  2961. position:absolute;
  2962. align-self:flex-start;
  2963. padding:0px 0px 0px 0px;
  2964. box-sizing:border-box;
  2965. width:100%;
  2966. }
  2967. #u18685_text {
  2968. border-width:0px;
  2969. white-space:nowrap;
  2970. text-transform:none;
  2971. }
  2972. #u18686_div {
  2973. border-width:0px;
  2974. position:absolute;
  2975. left:0px;
  2976. top:0px;
  2977. width:43px;
  2978. height:30px;
  2979. background:inherit;
  2980. background-color:rgba(255, 255, 255, 0);
  2981. border-left:0px;
  2982. border-top:0px;
  2983. border-right:0px;
  2984. border-radius:0px;
  2985. border-bottom-right-radius:0px;
  2986. border-bottom-left-radius:0px;
  2987. filter:drop-shadow(none);
  2988. transition:none;
  2989. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2990. font-weight:400;
  2991. font-style:normal;
  2992. font-size:14px;
  2993. color:#7F7F7F;
  2994. line-height:30px;
  2995. }
  2996. #u18686 {
  2997. border-width:0px;
  2998. position:absolute;
  2999. left:534px;
  3000. top:255px;
  3001. width:43px;
  3002. height:30px;
  3003. display:flex;
  3004. transition:none;
  3005. transform-origin:50% 50%;
  3006. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3007. font-weight:400;
  3008. font-style:normal;
  3009. font-size:14px;
  3010. color:#7F7F7F;
  3011. line-height:30px;
  3012. }
  3013. #u18686 .text {
  3014. position:absolute;
  3015. align-self:flex-start;
  3016. padding:0px 0px 0px 0px;
  3017. box-sizing:border-box;
  3018. width:100%;
  3019. }
  3020. #u18686_text {
  3021. border-width:0px;
  3022. white-space:nowrap;
  3023. text-transform:none;
  3024. }
  3025. #u18687_div {
  3026. border-width:0px;
  3027. position:absolute;
  3028. left:0px;
  3029. top:0px;
  3030. width:15px;
  3031. height:30px;
  3032. background:inherit;
  3033. background-color:rgba(255, 255, 255, 0);
  3034. border-left:0px;
  3035. border-top:0px;
  3036. border-right:0px;
  3037. border-radius:0px;
  3038. border-bottom-right-radius:0px;
  3039. border-bottom-left-radius:0px;
  3040. filter:drop-shadow(none);
  3041. transition:none;
  3042. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3043. font-weight:400;
  3044. font-style:normal;
  3045. font-size:14px;
  3046. line-height:30px;
  3047. }
  3048. #u18687 {
  3049. border-width:0px;
  3050. position:absolute;
  3051. left:614px;
  3052. top:255px;
  3053. width:15px;
  3054. height:30px;
  3055. display:flex;
  3056. transition:none;
  3057. transform-origin:50% 50%;
  3058. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3059. font-weight:400;
  3060. font-style:normal;
  3061. font-size:14px;
  3062. line-height:30px;
  3063. }
  3064. #u18687 .text {
  3065. position:absolute;
  3066. align-self:flex-start;
  3067. padding:0px 0px 0px 0px;
  3068. box-sizing:border-box;
  3069. width:100%;
  3070. }
  3071. #u18687_text {
  3072. border-width:0px;
  3073. white-space:nowrap;
  3074. text-transform:none;
  3075. }
  3076. #u18688_div {
  3077. border-width:0px;
  3078. position:absolute;
  3079. left:0px;
  3080. top:0px;
  3081. width:71px;
  3082. height:30px;
  3083. background:inherit;
  3084. background-color:rgba(255, 255, 255, 0);
  3085. border-left:0px;
  3086. border-top:0px;
  3087. border-right:0px;
  3088. border-radius:0px;
  3089. border-bottom-right-radius:0px;
  3090. border-bottom-left-radius:0px;
  3091. filter:drop-shadow(none);
  3092. transition:none;
  3093. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3094. font-weight:400;
  3095. font-style:normal;
  3096. font-size:14px;
  3097. color:#7F7F7F;
  3098. line-height:30px;
  3099. }
  3100. #u18688 {
  3101. border-width:0px;
  3102. position:absolute;
  3103. left:96px;
  3104. top:295px;
  3105. width:71px;
  3106. height:30px;
  3107. display:flex;
  3108. transition:none;
  3109. transform-origin:50% 50%;
  3110. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3111. font-weight:400;
  3112. font-style:normal;
  3113. font-size:14px;
  3114. color:#7F7F7F;
  3115. line-height:30px;
  3116. }
  3117. #u18688 .text {
  3118. position:absolute;
  3119. align-self:flex-start;
  3120. padding:0px 0px 0px 0px;
  3121. box-sizing:border-box;
  3122. width:100%;
  3123. }
  3124. #u18688_text {
  3125. border-width:0px;
  3126. white-space:nowrap;
  3127. text-transform:none;
  3128. }
  3129. #u18689_div {
  3130. border-width:0px;
  3131. position:absolute;
  3132. left:0px;
  3133. top:0px;
  3134. width:43px;
  3135. height:30px;
  3136. background:inherit;
  3137. background-color:rgba(255, 255, 255, 0);
  3138. border-left:0px;
  3139. border-top:0px;
  3140. border-right:0px;
  3141. border-radius:0px;
  3142. border-bottom-right-radius:0px;
  3143. border-bottom-left-radius:0px;
  3144. filter:drop-shadow(none);
  3145. transition:none;
  3146. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3147. font-weight:400;
  3148. font-style:normal;
  3149. font-size:14px;
  3150. line-height:30px;
  3151. }
  3152. #u18689 {
  3153. border-width:0px;
  3154. position:absolute;
  3155. left:176px;
  3156. top:295px;
  3157. width:43px;
  3158. height:30px;
  3159. display:flex;
  3160. transition:none;
  3161. transform-origin:50% 50%;
  3162. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3163. font-weight:400;
  3164. font-style:normal;
  3165. font-size:14px;
  3166. line-height:30px;
  3167. }
  3168. #u18689 .text {
  3169. position:absolute;
  3170. align-self:flex-start;
  3171. padding:0px 0px 0px 0px;
  3172. box-sizing:border-box;
  3173. width:100%;
  3174. }
  3175. #u18689_text {
  3176. border-width:0px;
  3177. white-space:nowrap;
  3178. text-transform:none;
  3179. }
  3180. #u18690_div {
  3181. border-width:0px;
  3182. position:absolute;
  3183. left:0px;
  3184. top:0px;
  3185. width:71px;
  3186. height:30px;
  3187. background:inherit;
  3188. background-color:rgba(255, 255, 255, 0);
  3189. border-left:0px;
  3190. border-top:0px;
  3191. border-right:0px;
  3192. border-radius:0px;
  3193. border-bottom-right-radius:0px;
  3194. border-bottom-left-radius:0px;
  3195. filter:drop-shadow(none);
  3196. transition:none;
  3197. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3198. font-weight:400;
  3199. font-style:normal;
  3200. font-size:14px;
  3201. color:#7F7F7F;
  3202. line-height:30px;
  3203. }
  3204. #u18690 {
  3205. border-width:0px;
  3206. position:absolute;
  3207. left:534px;
  3208. top:295px;
  3209. width:71px;
  3210. height:30px;
  3211. display:flex;
  3212. transition:none;
  3213. transform-origin:50% 50%;
  3214. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3215. font-weight:400;
  3216. font-style:normal;
  3217. font-size:14px;
  3218. color:#7F7F7F;
  3219. line-height:30px;
  3220. }
  3221. #u18690 .text {
  3222. position:absolute;
  3223. align-self:flex-start;
  3224. padding:0px 0px 0px 0px;
  3225. box-sizing:border-box;
  3226. width:100%;
  3227. }
  3228. #u18690_text {
  3229. border-width:0px;
  3230. white-space:nowrap;
  3231. text-transform:none;
  3232. }
  3233. #u18691_div {
  3234. border-width:0px;
  3235. position:absolute;
  3236. left:0px;
  3237. top:0px;
  3238. width:57px;
  3239. height:30px;
  3240. background:inherit;
  3241. background-color:rgba(255, 255, 255, 0);
  3242. border-left:0px;
  3243. border-top:0px;
  3244. border-right:0px;
  3245. border-radius:0px;
  3246. border-bottom-right-radius:0px;
  3247. border-bottom-left-radius:0px;
  3248. filter:drop-shadow(none);
  3249. transition:none;
  3250. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3251. font-weight:400;
  3252. font-style:normal;
  3253. font-size:14px;
  3254. line-height:30px;
  3255. }
  3256. #u18691 {
  3257. border-width:0px;
  3258. position:absolute;
  3259. left:614px;
  3260. top:295px;
  3261. width:57px;
  3262. height:30px;
  3263. display:flex;
  3264. transition:none;
  3265. transform-origin:50% 50%;
  3266. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3267. font-weight:400;
  3268. font-style:normal;
  3269. font-size:14px;
  3270. line-height:30px;
  3271. }
  3272. #u18691 .text {
  3273. position:absolute;
  3274. align-self:flex-start;
  3275. padding:0px 0px 0px 0px;
  3276. box-sizing:border-box;
  3277. width:100%;
  3278. }
  3279. #u18691_text {
  3280. border-width:0px;
  3281. white-space:nowrap;
  3282. text-transform:none;
  3283. }
  3284. #u18692_div {
  3285. border-width:0px;
  3286. position:absolute;
  3287. left:0px;
  3288. top:0px;
  3289. width:71px;
  3290. height:30px;
  3291. background:inherit;
  3292. background-color:rgba(255, 255, 255, 0);
  3293. border-left:0px;
  3294. border-top:0px;
  3295. border-right:0px;
  3296. border-radius:0px;
  3297. border-bottom-right-radius:0px;
  3298. border-bottom-left-radius:0px;
  3299. filter:drop-shadow(none);
  3300. transition:none;
  3301. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3302. font-weight:400;
  3303. font-style:normal;
  3304. font-size:14px;
  3305. color:#7F7F7F;
  3306. line-height:30px;
  3307. }
  3308. #u18692 {
  3309. border-width:0px;
  3310. position:absolute;
  3311. left:96px;
  3312. top:335px;
  3313. width:71px;
  3314. height:30px;
  3315. display:flex;
  3316. transition:none;
  3317. transform-origin:50% 50%;
  3318. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3319. font-weight:400;
  3320. font-style:normal;
  3321. font-size:14px;
  3322. color:#7F7F7F;
  3323. line-height:30px;
  3324. }
  3325. #u18692 .text {
  3326. position:absolute;
  3327. align-self:flex-start;
  3328. padding:0px 0px 0px 0px;
  3329. box-sizing:border-box;
  3330. width:100%;
  3331. }
  3332. #u18692_text {
  3333. border-width:0px;
  3334. white-space:nowrap;
  3335. text-transform:none;
  3336. }
  3337. #u18693_div {
  3338. border-width:0px;
  3339. position:absolute;
  3340. left:0px;
  3341. top:0px;
  3342. width:82px;
  3343. height:30px;
  3344. background:inherit;
  3345. background-color:rgba(255, 255, 255, 0);
  3346. border-left:0px;
  3347. border-top:0px;
  3348. border-right:0px;
  3349. border-radius:0px;
  3350. border-bottom-right-radius:0px;
  3351. border-bottom-left-radius:0px;
  3352. filter:drop-shadow(none);
  3353. transition:none;
  3354. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3355. font-weight:400;
  3356. font-style:normal;
  3357. font-size:14px;
  3358. line-height:30px;
  3359. }
  3360. #u18693 {
  3361. border-width:0px;
  3362. position:absolute;
  3363. left:176px;
  3364. top:335px;
  3365. width:82px;
  3366. height:30px;
  3367. display:flex;
  3368. transition:none;
  3369. transform-origin:50% 50%;
  3370. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3371. font-weight:400;
  3372. font-style:normal;
  3373. font-size:14px;
  3374. line-height:30px;
  3375. }
  3376. #u18693 .text {
  3377. position:absolute;
  3378. align-self:flex-start;
  3379. padding:0px 0px 0px 0px;
  3380. box-sizing:border-box;
  3381. width:100%;
  3382. }
  3383. #u18693_text {
  3384. border-width:0px;
  3385. white-space:nowrap;
  3386. text-transform:none;
  3387. }
  3388. #u18694_div {
  3389. border-width:0px;
  3390. position:absolute;
  3391. left:0px;
  3392. top:0px;
  3393. width:71px;
  3394. height:30px;
  3395. background:inherit;
  3396. background-color:rgba(255, 255, 255, 0);
  3397. border-left:0px;
  3398. border-top:0px;
  3399. border-right:0px;
  3400. border-radius:0px;
  3401. border-bottom-right-radius:0px;
  3402. border-bottom-left-radius:0px;
  3403. filter:drop-shadow(none);
  3404. transition:none;
  3405. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3406. font-weight:400;
  3407. font-style:normal;
  3408. font-size:14px;
  3409. color:#7F7F7F;
  3410. line-height:30px;
  3411. }
  3412. #u18694 {
  3413. border-width:0px;
  3414. position:absolute;
  3415. left:534px;
  3416. top:215px;
  3417. width:71px;
  3418. height:30px;
  3419. display:flex;
  3420. transition:none;
  3421. transform-origin:50% 50%;
  3422. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3423. font-weight:400;
  3424. font-style:normal;
  3425. font-size:14px;
  3426. color:#7F7F7F;
  3427. line-height:30px;
  3428. }
  3429. #u18694 .text {
  3430. position:absolute;
  3431. align-self:flex-start;
  3432. padding:0px 0px 0px 0px;
  3433. box-sizing:border-box;
  3434. width:100%;
  3435. }
  3436. #u18694_text {
  3437. border-width:0px;
  3438. white-space:nowrap;
  3439. text-transform:none;
  3440. }
  3441. #u18695_div {
  3442. border-width:0px;
  3443. position:absolute;
  3444. left:0px;
  3445. top:0px;
  3446. width:57px;
  3447. height:30px;
  3448. background:inherit;
  3449. background-color:rgba(255, 255, 255, 0);
  3450. border-left:0px;
  3451. border-top:0px;
  3452. border-right:0px;
  3453. border-radius:0px;
  3454. border-bottom-right-radius:0px;
  3455. border-bottom-left-radius:0px;
  3456. filter:drop-shadow(none);
  3457. transition:none;
  3458. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3459. font-weight:400;
  3460. font-style:normal;
  3461. font-size:14px;
  3462. line-height:30px;
  3463. }
  3464. #u18695 {
  3465. border-width:0px;
  3466. position:absolute;
  3467. left:614px;
  3468. top:215px;
  3469. width:57px;
  3470. height:30px;
  3471. display:flex;
  3472. transition:none;
  3473. transform-origin:50% 50%;
  3474. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3475. font-weight:400;
  3476. font-style:normal;
  3477. font-size:14px;
  3478. line-height:30px;
  3479. }
  3480. #u18695 .text {
  3481. position:absolute;
  3482. align-self:flex-start;
  3483. padding:0px 0px 0px 0px;
  3484. box-sizing:border-box;
  3485. width:100%;
  3486. }
  3487. #u18695_text {
  3488. border-width:0px;
  3489. white-space:nowrap;
  3490. text-transform:none;
  3491. }
  3492. #u18696_div {
  3493. border-width:0px;
  3494. position:absolute;
  3495. left:0px;
  3496. top:0px;
  3497. width:71px;
  3498. height:30px;
  3499. background:inherit;
  3500. background-color:rgba(255, 255, 255, 0);
  3501. border-left:0px;
  3502. border-top:0px;
  3503. border-right:0px;
  3504. border-radius:0px;
  3505. border-bottom-right-radius:0px;
  3506. border-bottom-left-radius:0px;
  3507. filter:drop-shadow(none);
  3508. transition:none;
  3509. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3510. font-weight:400;
  3511. font-style:normal;
  3512. font-size:14px;
  3513. color:#7F7F7F;
  3514. line-height:30px;
  3515. }
  3516. #u18696 {
  3517. border-width:0px;
  3518. position:absolute;
  3519. left:96px;
  3520. top:375px;
  3521. width:71px;
  3522. height:30px;
  3523. display:flex;
  3524. transition:none;
  3525. transform-origin:50% 50%;
  3526. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3527. font-weight:400;
  3528. font-style:normal;
  3529. font-size:14px;
  3530. color:#7F7F7F;
  3531. line-height:30px;
  3532. }
  3533. #u18696 .text {
  3534. position:absolute;
  3535. align-self:flex-start;
  3536. padding:0px 0px 0px 0px;
  3537. box-sizing:border-box;
  3538. width:100%;
  3539. }
  3540. #u18696_text {
  3541. border-width:0px;
  3542. white-space:nowrap;
  3543. text-transform:none;
  3544. }
  3545. #u18697_div {
  3546. border-width:0px;
  3547. position:absolute;
  3548. left:0px;
  3549. top:0px;
  3550. width:337px;
  3551. height:30px;
  3552. background:inherit;
  3553. background-color:rgba(255, 255, 255, 0);
  3554. border-left:0px;
  3555. border-top:0px;
  3556. border-right:0px;
  3557. border-radius:0px;
  3558. border-bottom-right-radius:0px;
  3559. border-bottom-left-radius:0px;
  3560. filter:drop-shadow(none);
  3561. transition:none;
  3562. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3563. font-weight:400;
  3564. font-style:normal;
  3565. font-size:14px;
  3566. line-height:30px;
  3567. }
  3568. #u18697 {
  3569. border-width:0px;
  3570. position:absolute;
  3571. left:176px;
  3572. top:375px;
  3573. width:337px;
  3574. height:30px;
  3575. display:flex;
  3576. transition:none;
  3577. transform-origin:50% 50%;
  3578. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3579. font-weight:400;
  3580. font-style:normal;
  3581. font-size:14px;
  3582. line-height:30px;
  3583. }
  3584. #u18697 .text {
  3585. position:absolute;
  3586. align-self:flex-start;
  3587. padding:0px 0px 0px 0px;
  3588. box-sizing:border-box;
  3589. width:100%;
  3590. }
  3591. #u18697_text {
  3592. border-width:0px;
  3593. white-space:nowrap;
  3594. text-transform:none;
  3595. }
  3596. #u18698_div {
  3597. border-width:0px;
  3598. position:absolute;
  3599. left:0px;
  3600. top:0px;
  3601. width:99px;
  3602. height:30px;
  3603. background:inherit;
  3604. background-color:rgba(255, 255, 255, 0);
  3605. border-left:0px;
  3606. border-top:0px;
  3607. border-right:0px;
  3608. border-radius:0px;
  3609. border-bottom-right-radius:0px;
  3610. border-bottom-left-radius:0px;
  3611. filter:drop-shadow(none);
  3612. transition:none;
  3613. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3614. font-weight:400;
  3615. font-style:normal;
  3616. font-size:14px;
  3617. color:#7F7F7F;
  3618. line-height:30px;
  3619. }
  3620. #u18698 {
  3621. border-width:0px;
  3622. position:absolute;
  3623. left:534px;
  3624. top:335px;
  3625. width:99px;
  3626. height:30px;
  3627. display:flex;
  3628. transition:none;
  3629. transform-origin:50% 50%;
  3630. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3631. font-weight:400;
  3632. font-style:normal;
  3633. font-size:14px;
  3634. color:#7F7F7F;
  3635. line-height:30px;
  3636. }
  3637. #u18698 .text {
  3638. position:absolute;
  3639. align-self:flex-start;
  3640. padding:0px 0px 0px 0px;
  3641. box-sizing:border-box;
  3642. width:100%;
  3643. }
  3644. #u18698_text {
  3645. border-width:0px;
  3646. white-space:nowrap;
  3647. text-transform:none;
  3648. }
  3649. #u18699_div {
  3650. border-width:0px;
  3651. position:absolute;
  3652. left:0px;
  3653. top:0px;
  3654. width:169px;
  3655. height:30px;
  3656. background:inherit;
  3657. background-color:rgba(255, 255, 255, 0);
  3658. border-left:0px;
  3659. border-top:0px;
  3660. border-right:0px;
  3661. border-radius:0px;
  3662. border-bottom-right-radius:0px;
  3663. border-bottom-left-radius:0px;
  3664. filter:drop-shadow(none);
  3665. transition:none;
  3666. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3667. font-weight:400;
  3668. font-style:normal;
  3669. font-size:14px;
  3670. line-height:30px;
  3671. }
  3672. #u18699 {
  3673. border-width:0px;
  3674. position:absolute;
  3675. left:633px;
  3676. top:335px;
  3677. width:169px;
  3678. height:30px;
  3679. display:flex;
  3680. transition:none;
  3681. transform-origin:50% 50%;
  3682. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3683. font-weight:400;
  3684. font-style:normal;
  3685. font-size:14px;
  3686. line-height:30px;
  3687. }
  3688. #u18699 .text {
  3689. position:absolute;
  3690. align-self:flex-start;
  3691. padding:0px 0px 0px 0px;
  3692. box-sizing:border-box;
  3693. width:100%;
  3694. }
  3695. #u18699_text {
  3696. border-width:0px;
  3697. white-space:nowrap;
  3698. text-transform:none;
  3699. }
  3700. #u18700_div {
  3701. border-width:0px;
  3702. position:absolute;
  3703. left:0px;
  3704. top:0px;
  3705. width:80px;
  3706. height:30px;
  3707. background:inherit;
  3708. background-color:rgba(255, 255, 255, 0);
  3709. border-left:0px;
  3710. border-top:0px;
  3711. border-right:0px;
  3712. border-radius:0px;
  3713. border-bottom-right-radius:0px;
  3714. border-bottom-left-radius:0px;
  3715. filter:drop-shadow(none);
  3716. transition:none;
  3717. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3718. font-weight:400;
  3719. font-style:normal;
  3720. font-size:14px;
  3721. color:#7F7F7F;
  3722. line-height:30px;
  3723. }
  3724. #u18700 {
  3725. border-width:0px;
  3726. position:absolute;
  3727. left:96px;
  3728. top:415px;
  3729. width:80px;
  3730. height:30px;
  3731. display:flex;
  3732. transition:none;
  3733. transform-origin:50% 50%;
  3734. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3735. font-weight:400;
  3736. font-style:normal;
  3737. font-size:14px;
  3738. color:#7F7F7F;
  3739. line-height:30px;
  3740. }
  3741. #u18700 .text {
  3742. position:absolute;
  3743. align-self:flex-start;
  3744. padding:0px 0px 0px 0px;
  3745. box-sizing:border-box;
  3746. width:100%;
  3747. }
  3748. #u18700_text {
  3749. border-width:0px;
  3750. word-wrap:break-word;
  3751. text-transform:none;
  3752. }
  3753. #u18701_div {
  3754. border-width:0px;
  3755. position:absolute;
  3756. left:0px;
  3757. top:0px;
  3758. width:121px;
  3759. height:30px;
  3760. background:inherit;
  3761. background-color:rgba(255, 255, 255, 0);
  3762. border-left:0px;
  3763. border-top:0px;
  3764. border-right:0px;
  3765. border-radius:0px;
  3766. border-bottom-right-radius:0px;
  3767. border-bottom-left-radius:0px;
  3768. filter:drop-shadow(none);
  3769. transition:none;
  3770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3771. font-weight:400;
  3772. font-style:normal;
  3773. font-size:14px;
  3774. line-height:30px;
  3775. }
  3776. #u18701 {
  3777. border-width:0px;
  3778. position:absolute;
  3779. left:176px;
  3780. top:415px;
  3781. width:121px;
  3782. height:30px;
  3783. display:flex;
  3784. transition:none;
  3785. transform-origin:50% 50%;
  3786. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3787. font-weight:400;
  3788. font-style:normal;
  3789. font-size:14px;
  3790. line-height:30px;
  3791. }
  3792. #u18701 .text {
  3793. position:absolute;
  3794. align-self:flex-start;
  3795. padding:0px 0px 0px 0px;
  3796. box-sizing:border-box;
  3797. width:100%;
  3798. }
  3799. #u18701_text {
  3800. border-width:0px;
  3801. white-space:nowrap;
  3802. text-transform:none;
  3803. }
  3804. #u18702_div {
  3805. border-width:0px;
  3806. position:absolute;
  3807. left:0px;
  3808. top:0px;
  3809. width:80px;
  3810. height:30px;
  3811. background:inherit;
  3812. background-color:rgba(255, 255, 255, 0);
  3813. border-left:0px;
  3814. border-top:0px;
  3815. border-right:0px;
  3816. border-radius:0px;
  3817. border-bottom-right-radius:0px;
  3818. border-bottom-left-radius:0px;
  3819. filter:drop-shadow(none);
  3820. transition:none;
  3821. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3822. font-weight:400;
  3823. font-style:normal;
  3824. font-size:14px;
  3825. color:#7F7F7F;
  3826. line-height:30px;
  3827. }
  3828. #u18702 {
  3829. border-width:0px;
  3830. position:absolute;
  3831. left:535px;
  3832. top:415px;
  3833. width:80px;
  3834. height:30px;
  3835. display:flex;
  3836. transition:none;
  3837. transform-origin:50% 50%;
  3838. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3839. font-weight:400;
  3840. font-style:normal;
  3841. font-size:14px;
  3842. color:#7F7F7F;
  3843. line-height:30px;
  3844. }
  3845. #u18702 .text {
  3846. position:absolute;
  3847. align-self:flex-start;
  3848. padding:0px 0px 0px 0px;
  3849. box-sizing:border-box;
  3850. width:100%;
  3851. }
  3852. #u18702_text {
  3853. border-width:0px;
  3854. word-wrap:break-word;
  3855. text-transform:none;
  3856. }
  3857. #u18703_div {
  3858. border-width:0px;
  3859. position:absolute;
  3860. left:0px;
  3861. top:0px;
  3862. width:141px;
  3863. height:30px;
  3864. background:inherit;
  3865. background-color:rgba(255, 255, 255, 0);
  3866. border-left:0px;
  3867. border-top:0px;
  3868. border-right:0px;
  3869. border-radius:0px;
  3870. border-bottom-right-radius:0px;
  3871. border-bottom-left-radius:0px;
  3872. filter:drop-shadow(none);
  3873. transition:none;
  3874. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3875. font-weight:400;
  3876. font-style:normal;
  3877. font-size:14px;
  3878. line-height:30px;
  3879. }
  3880. #u18703 {
  3881. border-width:0px;
  3882. position:absolute;
  3883. left:615px;
  3884. top:415px;
  3885. width:141px;
  3886. height:30px;
  3887. display:flex;
  3888. transition:none;
  3889. transform-origin:50% 50%;
  3890. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3891. font-weight:400;
  3892. font-style:normal;
  3893. font-size:14px;
  3894. line-height:30px;
  3895. }
  3896. #u18703 .text {
  3897. position:absolute;
  3898. align-self:flex-start;
  3899. padding:0px 0px 0px 0px;
  3900. box-sizing:border-box;
  3901. width:100%;
  3902. }
  3903. #u18703_text {
  3904. border-width:0px;
  3905. white-space:nowrap;
  3906. text-transform:none;
  3907. }
  3908. #u18704 {
  3909. border-width:0px;
  3910. position:absolute;
  3911. left:0px;
  3912. top:0px;
  3913. width:0px;
  3914. height:0px;
  3915. }
  3916. #u18705_div {
  3917. border-width:0px;
  3918. position:absolute;
  3919. left:0px;
  3920. top:0px;
  3921. width:1000px;
  3922. height:60px;
  3923. background:inherit;
  3924. background-color:rgba(255, 255, 255, 1);
  3925. box-sizing:border-box;
  3926. border-width:1px;
  3927. border-style:solid;
  3928. border-color:rgba(215, 215, 215, 1);
  3929. border-radius:0px;
  3930. filter:drop-shadow(none);
  3931. transition:none;
  3932. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3933. font-weight:400;
  3934. font-style:normal;
  3935. font-size:14px;
  3936. color:#AAAAAA;
  3937. text-align:center;
  3938. line-height:30px;
  3939. }
  3940. #u18705 {
  3941. border-width:0px;
  3942. position:absolute;
  3943. left:66px;
  3944. top:1224px;
  3945. width:1000px;
  3946. height:60px;
  3947. display:flex;
  3948. transition:none;
  3949. transform-origin:50% 50%;
  3950. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3951. font-weight:400;
  3952. font-style:normal;
  3953. font-size:14px;
  3954. color:#AAAAAA;
  3955. text-align:center;
  3956. line-height:30px;
  3957. }
  3958. #u18705 .text {
  3959. position:absolute;
  3960. align-self:center;
  3961. padding:5px 10px 5px 10px;
  3962. box-sizing:border-box;
  3963. width:100%;
  3964. }
  3965. #u18705_text {
  3966. border-width:0px;
  3967. word-wrap:break-word;
  3968. text-transform:none;
  3969. visibility:hidden;
  3970. }
  3971. #u18706_div {
  3972. border-width:0px;
  3973. position:absolute;
  3974. left:0px;
  3975. top:0px;
  3976. width:80px;
  3977. height:30px;
  3978. background:inherit;
  3979. background-color:rgba(255, 255, 255, 1);
  3980. box-sizing:border-box;
  3981. border-width:1px;
  3982. border-style:solid;
  3983. border-color:rgba(170, 170, 170, 1);
  3984. border-radius:4px;
  3985. filter:drop-shadow(none);
  3986. transition:none;
  3987. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3988. font-weight:400;
  3989. font-style:normal;
  3990. font-size:14px;
  3991. }
  3992. #u18706 {
  3993. border-width:0px;
  3994. position:absolute;
  3995. left:956px;
  3996. top:1239px;
  3997. width:80px;
  3998. height:30px;
  3999. display:flex;
  4000. transition:none;
  4001. transform-origin:50% 50%;
  4002. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4003. font-weight:400;
  4004. font-style:normal;
  4005. font-size:14px;
  4006. }
  4007. #u18706 .text {
  4008. position:absolute;
  4009. align-self:center;
  4010. padding:2px 2px 2px 2px;
  4011. box-sizing:border-box;
  4012. width:100%;
  4013. }
  4014. #u18706_text {
  4015. border-width:0px;
  4016. word-wrap:break-word;
  4017. text-transform:none;
  4018. }
  4019. #u18707 {
  4020. border-width:0px;
  4021. position:absolute;
  4022. left:0px;
  4023. top:0px;
  4024. width:0px;
  4025. height:0px;
  4026. }
  4027. #u18708_div {
  4028. border-width:0px;
  4029. position:absolute;
  4030. left:0px;
  4031. top:0px;
  4032. width:80px;
  4033. height:30px;
  4034. background:inherit;
  4035. background-color:rgba(255, 255, 255, 0);
  4036. border-left:0px;
  4037. border-top:0px;
  4038. border-right:0px;
  4039. border-radius:0px;
  4040. border-bottom-right-radius:0px;
  4041. border-bottom-left-radius:0px;
  4042. filter:drop-shadow(none);
  4043. transition:none;
  4044. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4045. font-weight:400;
  4046. font-style:normal;
  4047. font-size:14px;
  4048. color:#7F7F7F;
  4049. line-height:30px;
  4050. }
  4051. #u18708 {
  4052. border-width:0px;
  4053. position:absolute;
  4054. left:1126px;
  4055. top:215px;
  4056. width:80px;
  4057. height:30px;
  4058. display:flex;
  4059. transition:none;
  4060. transform-origin:50% 50%;
  4061. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4062. font-weight:400;
  4063. font-style:normal;
  4064. font-size:14px;
  4065. color:#7F7F7F;
  4066. line-height:30px;
  4067. }
  4068. #u18708 .text {
  4069. position:absolute;
  4070. align-self:flex-start;
  4071. padding:0px 0px 0px 0px;
  4072. box-sizing:border-box;
  4073. width:100%;
  4074. }
  4075. #u18708_text {
  4076. border-width:0px;
  4077. word-wrap:break-word;
  4078. text-transform:none;
  4079. }
  4080. #u18709_div {
  4081. border-width:0px;
  4082. position:absolute;
  4083. left:0px;
  4084. top:0px;
  4085. width:85px;
  4086. height:30px;
  4087. background:inherit;
  4088. background-color:rgba(255, 255, 255, 0);
  4089. border-left:0px;
  4090. border-top:0px;
  4091. border-right:0px;
  4092. border-radius:0px;
  4093. border-bottom-right-radius:0px;
  4094. border-bottom-left-radius:0px;
  4095. filter:drop-shadow(none);
  4096. transition:none;
  4097. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4098. font-weight:400;
  4099. font-style:normal;
  4100. font-size:14px;
  4101. line-height:30px;
  4102. }
  4103. #u18709 {
  4104. border-width:0px;
  4105. position:absolute;
  4106. left:1206px;
  4107. top:215px;
  4108. width:85px;
  4109. height:30px;
  4110. display:flex;
  4111. transition:none;
  4112. transform-origin:50% 50%;
  4113. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4114. font-weight:400;
  4115. font-style:normal;
  4116. font-size:14px;
  4117. line-height:30px;
  4118. }
  4119. #u18709 .text {
  4120. position:absolute;
  4121. align-self:flex-start;
  4122. padding:0px 0px 0px 0px;
  4123. box-sizing:border-box;
  4124. width:100%;
  4125. }
  4126. #u18709_text {
  4127. border-width:0px;
  4128. white-space:nowrap;
  4129. text-transform:none;
  4130. }
  4131. #u18710_div {
  4132. border-width:0px;
  4133. position:absolute;
  4134. left:0px;
  4135. top:0px;
  4136. width:71px;
  4137. height:30px;
  4138. background:inherit;
  4139. background-color:rgba(255, 255, 255, 0);
  4140. border-left:0px;
  4141. border-top:0px;
  4142. border-right:0px;
  4143. border-radius:0px;
  4144. border-bottom-right-radius:0px;
  4145. border-bottom-left-radius:0px;
  4146. filter:drop-shadow(none);
  4147. transition:none;
  4148. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4149. font-weight:400;
  4150. font-style:normal;
  4151. font-size:14px;
  4152. color:#7F7F7F;
  4153. line-height:30px;
  4154. }
  4155. #u18710 {
  4156. border-width:0px;
  4157. position:absolute;
  4158. left:1126px;
  4159. top:255px;
  4160. width:71px;
  4161. height:30px;
  4162. display:flex;
  4163. transition:none;
  4164. transform-origin:50% 50%;
  4165. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4166. font-weight:400;
  4167. font-style:normal;
  4168. font-size:14px;
  4169. color:#7F7F7F;
  4170. line-height:30px;
  4171. }
  4172. #u18710 .text {
  4173. position:absolute;
  4174. align-self:flex-start;
  4175. padding:0px 0px 0px 0px;
  4176. box-sizing:border-box;
  4177. width:100%;
  4178. }
  4179. #u18710_text {
  4180. border-width:0px;
  4181. white-space:nowrap;
  4182. text-transform:none;
  4183. }
  4184. #u18711_div {
  4185. border-width:0px;
  4186. position:absolute;
  4187. left:0px;
  4188. top:0px;
  4189. width:29px;
  4190. height:30px;
  4191. background:inherit;
  4192. background-color:rgba(255, 255, 255, 0);
  4193. border-left:0px;
  4194. border-top:0px;
  4195. border-right:0px;
  4196. border-radius:0px;
  4197. border-bottom-right-radius:0px;
  4198. border-bottom-left-radius:0px;
  4199. filter:drop-shadow(none);
  4200. transition:none;
  4201. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4202. font-weight:400;
  4203. font-style:normal;
  4204. font-size:14px;
  4205. line-height:30px;
  4206. }
  4207. #u18711 {
  4208. border-width:0px;
  4209. position:absolute;
  4210. left:1206px;
  4211. top:255px;
  4212. width:29px;
  4213. height:30px;
  4214. display:flex;
  4215. transition:none;
  4216. transform-origin:50% 50%;
  4217. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4218. font-weight:400;
  4219. font-style:normal;
  4220. font-size:14px;
  4221. line-height:30px;
  4222. }
  4223. #u18711 .text {
  4224. position:absolute;
  4225. align-self:flex-start;
  4226. padding:0px 0px 0px 0px;
  4227. box-sizing:border-box;
  4228. width:100%;
  4229. }
  4230. #u18711_text {
  4231. border-width:0px;
  4232. white-space:nowrap;
  4233. text-transform:none;
  4234. }
  4235. #u18712_div {
  4236. border-width:0px;
  4237. position:absolute;
  4238. left:0px;
  4239. top:0px;
  4240. width:43px;
  4241. height:30px;
  4242. background:inherit;
  4243. background-color:rgba(255, 255, 255, 0);
  4244. border-left:0px;
  4245. border-top:0px;
  4246. border-right:0px;
  4247. border-radius:0px;
  4248. border-bottom-right-radius:0px;
  4249. border-bottom-left-radius:0px;
  4250. filter:drop-shadow(none);
  4251. transition:none;
  4252. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4253. font-weight:400;
  4254. font-style:normal;
  4255. font-size:14px;
  4256. color:#7F7F7F;
  4257. line-height:30px;
  4258. }
  4259. #u18712 {
  4260. border-width:0px;
  4261. position:absolute;
  4262. left:1564px;
  4263. top:255px;
  4264. width:43px;
  4265. height:30px;
  4266. display:flex;
  4267. transition:none;
  4268. transform-origin:50% 50%;
  4269. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4270. font-weight:400;
  4271. font-style:normal;
  4272. font-size:14px;
  4273. color:#7F7F7F;
  4274. line-height:30px;
  4275. }
  4276. #u18712 .text {
  4277. position:absolute;
  4278. align-self:flex-start;
  4279. padding:0px 0px 0px 0px;
  4280. box-sizing:border-box;
  4281. width:100%;
  4282. }
  4283. #u18712_text {
  4284. border-width:0px;
  4285. white-space:nowrap;
  4286. text-transform:none;
  4287. }
  4288. #u18713_div {
  4289. border-width:0px;
  4290. position:absolute;
  4291. left:0px;
  4292. top:0px;
  4293. width:15px;
  4294. height:30px;
  4295. background:inherit;
  4296. background-color:rgba(255, 255, 255, 0);
  4297. border-left:0px;
  4298. border-top:0px;
  4299. border-right:0px;
  4300. border-radius:0px;
  4301. border-bottom-right-radius:0px;
  4302. border-bottom-left-radius:0px;
  4303. filter:drop-shadow(none);
  4304. transition:none;
  4305. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4306. font-weight:400;
  4307. font-style:normal;
  4308. font-size:14px;
  4309. line-height:30px;
  4310. }
  4311. #u18713 {
  4312. border-width:0px;
  4313. position:absolute;
  4314. left:1644px;
  4315. top:255px;
  4316. width:15px;
  4317. height:30px;
  4318. display:flex;
  4319. transition:none;
  4320. transform-origin:50% 50%;
  4321. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4322. font-weight:400;
  4323. font-style:normal;
  4324. font-size:14px;
  4325. line-height:30px;
  4326. }
  4327. #u18713 .text {
  4328. position:absolute;
  4329. align-self:flex-start;
  4330. padding:0px 0px 0px 0px;
  4331. box-sizing:border-box;
  4332. width:100%;
  4333. }
  4334. #u18713_text {
  4335. border-width:0px;
  4336. white-space:nowrap;
  4337. text-transform:none;
  4338. }
  4339. #u18714_div {
  4340. border-width:0px;
  4341. position:absolute;
  4342. left:0px;
  4343. top:0px;
  4344. width:71px;
  4345. height:30px;
  4346. background:inherit;
  4347. background-color:rgba(255, 255, 255, 0);
  4348. border-left:0px;
  4349. border-top:0px;
  4350. border-right:0px;
  4351. border-radius:0px;
  4352. border-bottom-right-radius:0px;
  4353. border-bottom-left-radius:0px;
  4354. filter:drop-shadow(none);
  4355. transition:none;
  4356. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4357. font-weight:400;
  4358. font-style:normal;
  4359. font-size:14px;
  4360. color:#7F7F7F;
  4361. line-height:30px;
  4362. }
  4363. #u18714 {
  4364. border-width:0px;
  4365. position:absolute;
  4366. left:1126px;
  4367. top:295px;
  4368. width:71px;
  4369. height:30px;
  4370. display:flex;
  4371. transition:none;
  4372. transform-origin:50% 50%;
  4373. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4374. font-weight:400;
  4375. font-style:normal;
  4376. font-size:14px;
  4377. color:#7F7F7F;
  4378. line-height:30px;
  4379. }
  4380. #u18714 .text {
  4381. position:absolute;
  4382. align-self:flex-start;
  4383. padding:0px 0px 0px 0px;
  4384. box-sizing:border-box;
  4385. width:100%;
  4386. }
  4387. #u18714_text {
  4388. border-width:0px;
  4389. white-space:nowrap;
  4390. text-transform:none;
  4391. }
  4392. #u18715_div {
  4393. border-width:0px;
  4394. position:absolute;
  4395. left:0px;
  4396. top:0px;
  4397. width:43px;
  4398. height:30px;
  4399. background:inherit;
  4400. background-color:rgba(255, 255, 255, 0);
  4401. border-left:0px;
  4402. border-top:0px;
  4403. border-right:0px;
  4404. border-radius:0px;
  4405. border-bottom-right-radius:0px;
  4406. border-bottom-left-radius:0px;
  4407. filter:drop-shadow(none);
  4408. transition:none;
  4409. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4410. font-weight:400;
  4411. font-style:normal;
  4412. font-size:14px;
  4413. line-height:30px;
  4414. }
  4415. #u18715 {
  4416. border-width:0px;
  4417. position:absolute;
  4418. left:1206px;
  4419. top:295px;
  4420. width:43px;
  4421. height:30px;
  4422. display:flex;
  4423. transition:none;
  4424. transform-origin:50% 50%;
  4425. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4426. font-weight:400;
  4427. font-style:normal;
  4428. font-size:14px;
  4429. line-height:30px;
  4430. }
  4431. #u18715 .text {
  4432. position:absolute;
  4433. align-self:flex-start;
  4434. padding:0px 0px 0px 0px;
  4435. box-sizing:border-box;
  4436. width:100%;
  4437. }
  4438. #u18715_text {
  4439. border-width:0px;
  4440. white-space:nowrap;
  4441. text-transform:none;
  4442. }
  4443. #u18716_div {
  4444. border-width:0px;
  4445. position:absolute;
  4446. left:0px;
  4447. top:0px;
  4448. width:71px;
  4449. height:30px;
  4450. background:inherit;
  4451. background-color:rgba(255, 255, 255, 0);
  4452. border-left:0px;
  4453. border-top:0px;
  4454. border-right:0px;
  4455. border-radius:0px;
  4456. border-bottom-right-radius:0px;
  4457. border-bottom-left-radius:0px;
  4458. filter:drop-shadow(none);
  4459. transition:none;
  4460. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4461. font-weight:400;
  4462. font-style:normal;
  4463. font-size:14px;
  4464. color:#7F7F7F;
  4465. line-height:30px;
  4466. }
  4467. #u18716 {
  4468. border-width:0px;
  4469. position:absolute;
  4470. left:1564px;
  4471. top:295px;
  4472. width:71px;
  4473. height:30px;
  4474. display:flex;
  4475. transition:none;
  4476. transform-origin:50% 50%;
  4477. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4478. font-weight:400;
  4479. font-style:normal;
  4480. font-size:14px;
  4481. color:#7F7F7F;
  4482. line-height:30px;
  4483. }
  4484. #u18716 .text {
  4485. position:absolute;
  4486. align-self:flex-start;
  4487. padding:0px 0px 0px 0px;
  4488. box-sizing:border-box;
  4489. width:100%;
  4490. }
  4491. #u18716_text {
  4492. border-width:0px;
  4493. white-space:nowrap;
  4494. text-transform:none;
  4495. }
  4496. #u18717_div {
  4497. border-width:0px;
  4498. position:absolute;
  4499. left:0px;
  4500. top:0px;
  4501. width:57px;
  4502. height:30px;
  4503. background:inherit;
  4504. background-color:rgba(255, 255, 255, 0);
  4505. border-left:0px;
  4506. border-top:0px;
  4507. border-right:0px;
  4508. border-radius:0px;
  4509. border-bottom-right-radius:0px;
  4510. border-bottom-left-radius:0px;
  4511. filter:drop-shadow(none);
  4512. transition:none;
  4513. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4514. font-weight:400;
  4515. font-style:normal;
  4516. font-size:14px;
  4517. line-height:30px;
  4518. }
  4519. #u18717 {
  4520. border-width:0px;
  4521. position:absolute;
  4522. left:1644px;
  4523. top:295px;
  4524. width:57px;
  4525. height:30px;
  4526. display:flex;
  4527. transition:none;
  4528. transform-origin:50% 50%;
  4529. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4530. font-weight:400;
  4531. font-style:normal;
  4532. font-size:14px;
  4533. line-height:30px;
  4534. }
  4535. #u18717 .text {
  4536. position:absolute;
  4537. align-self:flex-start;
  4538. padding:0px 0px 0px 0px;
  4539. box-sizing:border-box;
  4540. width:100%;
  4541. }
  4542. #u18717_text {
  4543. border-width:0px;
  4544. white-space:nowrap;
  4545. text-transform:none;
  4546. }
  4547. #u18718_div {
  4548. border-width:0px;
  4549. position:absolute;
  4550. left:0px;
  4551. top:0px;
  4552. width:71px;
  4553. height:30px;
  4554. background:inherit;
  4555. background-color:rgba(255, 255, 255, 0);
  4556. border-left:0px;
  4557. border-top:0px;
  4558. border-right:0px;
  4559. border-radius:0px;
  4560. border-bottom-right-radius:0px;
  4561. border-bottom-left-radius:0px;
  4562. filter:drop-shadow(none);
  4563. transition:none;
  4564. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4565. font-weight:400;
  4566. font-style:normal;
  4567. font-size:14px;
  4568. color:#7F7F7F;
  4569. line-height:30px;
  4570. }
  4571. #u18718 {
  4572. border-width:0px;
  4573. position:absolute;
  4574. left:1126px;
  4575. top:335px;
  4576. width:71px;
  4577. height:30px;
  4578. display:flex;
  4579. transition:none;
  4580. transform-origin:50% 50%;
  4581. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4582. font-weight:400;
  4583. font-style:normal;
  4584. font-size:14px;
  4585. color:#7F7F7F;
  4586. line-height:30px;
  4587. }
  4588. #u18718 .text {
  4589. position:absolute;
  4590. align-self:flex-start;
  4591. padding:0px 0px 0px 0px;
  4592. box-sizing:border-box;
  4593. width:100%;
  4594. }
  4595. #u18718_text {
  4596. border-width:0px;
  4597. white-space:nowrap;
  4598. text-transform:none;
  4599. }
  4600. #u18719_div {
  4601. border-width:0px;
  4602. position:absolute;
  4603. left:0px;
  4604. top:0px;
  4605. width:82px;
  4606. height:30px;
  4607. background:inherit;
  4608. background-color:rgba(255, 255, 255, 0);
  4609. border-left:0px;
  4610. border-top:0px;
  4611. border-right:0px;
  4612. border-radius:0px;
  4613. border-bottom-right-radius:0px;
  4614. border-bottom-left-radius:0px;
  4615. filter:drop-shadow(none);
  4616. transition:none;
  4617. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4618. font-weight:400;
  4619. font-style:normal;
  4620. font-size:14px;
  4621. line-height:30px;
  4622. }
  4623. #u18719 {
  4624. border-width:0px;
  4625. position:absolute;
  4626. left:1206px;
  4627. top:335px;
  4628. width:82px;
  4629. height:30px;
  4630. display:flex;
  4631. transition:none;
  4632. transform-origin:50% 50%;
  4633. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4634. font-weight:400;
  4635. font-style:normal;
  4636. font-size:14px;
  4637. line-height:30px;
  4638. }
  4639. #u18719 .text {
  4640. position:absolute;
  4641. align-self:flex-start;
  4642. padding:0px 0px 0px 0px;
  4643. box-sizing:border-box;
  4644. width:100%;
  4645. }
  4646. #u18719_text {
  4647. border-width:0px;
  4648. white-space:nowrap;
  4649. text-transform:none;
  4650. }
  4651. #u18720_div {
  4652. border-width:0px;
  4653. position:absolute;
  4654. left:0px;
  4655. top:0px;
  4656. width:71px;
  4657. height:30px;
  4658. background:inherit;
  4659. background-color:rgba(255, 255, 255, 0);
  4660. border-left:0px;
  4661. border-top:0px;
  4662. border-right:0px;
  4663. border-radius:0px;
  4664. border-bottom-right-radius:0px;
  4665. border-bottom-left-radius:0px;
  4666. filter:drop-shadow(none);
  4667. transition:none;
  4668. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4669. font-weight:400;
  4670. font-style:normal;
  4671. font-size:14px;
  4672. color:#7F7F7F;
  4673. line-height:30px;
  4674. }
  4675. #u18720 {
  4676. border-width:0px;
  4677. position:absolute;
  4678. left:1564px;
  4679. top:215px;
  4680. width:71px;
  4681. height:30px;
  4682. display:flex;
  4683. transition:none;
  4684. transform-origin:50% 50%;
  4685. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4686. font-weight:400;
  4687. font-style:normal;
  4688. font-size:14px;
  4689. color:#7F7F7F;
  4690. line-height:30px;
  4691. }
  4692. #u18720 .text {
  4693. position:absolute;
  4694. align-self:flex-start;
  4695. padding:0px 0px 0px 0px;
  4696. box-sizing:border-box;
  4697. width:100%;
  4698. }
  4699. #u18720_text {
  4700. border-width:0px;
  4701. white-space:nowrap;
  4702. text-transform:none;
  4703. }
  4704. #u18721_div {
  4705. border-width:0px;
  4706. position:absolute;
  4707. left:0px;
  4708. top:0px;
  4709. width:57px;
  4710. height:30px;
  4711. background:inherit;
  4712. background-color:rgba(255, 255, 255, 0);
  4713. border-left:0px;
  4714. border-top:0px;
  4715. border-right:0px;
  4716. border-radius:0px;
  4717. border-bottom-right-radius:0px;
  4718. border-bottom-left-radius:0px;
  4719. filter:drop-shadow(none);
  4720. transition:none;
  4721. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4722. font-weight:400;
  4723. font-style:normal;
  4724. font-size:14px;
  4725. line-height:30px;
  4726. }
  4727. #u18721 {
  4728. border-width:0px;
  4729. position:absolute;
  4730. left:1644px;
  4731. top:215px;
  4732. width:57px;
  4733. height:30px;
  4734. display:flex;
  4735. transition:none;
  4736. transform-origin:50% 50%;
  4737. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4738. font-weight:400;
  4739. font-style:normal;
  4740. font-size:14px;
  4741. line-height:30px;
  4742. }
  4743. #u18721 .text {
  4744. position:absolute;
  4745. align-self:flex-start;
  4746. padding:0px 0px 0px 0px;
  4747. box-sizing:border-box;
  4748. width:100%;
  4749. }
  4750. #u18721_text {
  4751. border-width:0px;
  4752. white-space:nowrap;
  4753. text-transform:none;
  4754. }
  4755. #u18722_div {
  4756. border-width:0px;
  4757. position:absolute;
  4758. left:0px;
  4759. top:0px;
  4760. width:57px;
  4761. height:30px;
  4762. background:inherit;
  4763. background-color:rgba(255, 255, 255, 0);
  4764. border-left:0px;
  4765. border-top:0px;
  4766. border-right:0px;
  4767. border-radius:0px;
  4768. border-bottom-right-radius:0px;
  4769. border-bottom-left-radius:0px;
  4770. filter:drop-shadow(none);
  4771. transition:none;
  4772. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4773. font-weight:400;
  4774. font-style:normal;
  4775. font-size:14px;
  4776. color:#7F7F7F;
  4777. line-height:30px;
  4778. }
  4779. #u18722 {
  4780. border-width:0px;
  4781. position:absolute;
  4782. left:1126px;
  4783. top:425px;
  4784. width:57px;
  4785. height:30px;
  4786. display:flex;
  4787. transition:none;
  4788. transform-origin:50% 50%;
  4789. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4790. font-weight:400;
  4791. font-style:normal;
  4792. font-size:14px;
  4793. color:#7F7F7F;
  4794. line-height:30px;
  4795. }
  4796. #u18722 .text {
  4797. position:absolute;
  4798. align-self:flex-start;
  4799. padding:0px 0px 0px 0px;
  4800. box-sizing:border-box;
  4801. width:100%;
  4802. }
  4803. #u18722_text {
  4804. border-width:0px;
  4805. white-space:nowrap;
  4806. text-transform:none;
  4807. }
  4808. #u18723 {
  4809. border-width:0px;
  4810. position:absolute;
  4811. left:1126px;
  4812. top:455px;
  4813. width:153px;
  4814. height:107px;
  4815. display:flex;
  4816. transition:none;
  4817. }
  4818. #u18723 .text {
  4819. position:absolute;
  4820. align-self:center;
  4821. padding:2px 2px 2px 2px;
  4822. box-sizing:border-box;
  4823. width:100%;
  4824. }
  4825. #u18723_img {
  4826. border-width:0px;
  4827. position:absolute;
  4828. left:0px;
  4829. top:0px;
  4830. width:153px;
  4831. height:107px;
  4832. }
  4833. #u18723_text {
  4834. border-width:0px;
  4835. word-wrap:break-word;
  4836. text-transform:none;
  4837. visibility:hidden;
  4838. }
  4839. #u18724_div {
  4840. border-width:0px;
  4841. position:absolute;
  4842. left:0px;
  4843. top:0px;
  4844. width:71px;
  4845. height:30px;
  4846. background:inherit;
  4847. background-color:rgba(255, 255, 255, 0);
  4848. border-left:0px;
  4849. border-top:0px;
  4850. border-right:0px;
  4851. border-radius:0px;
  4852. border-bottom-right-radius:0px;
  4853. border-bottom-left-radius:0px;
  4854. filter:drop-shadow(none);
  4855. transition:none;
  4856. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4857. font-weight:400;
  4858. font-style:normal;
  4859. font-size:14px;
  4860. color:#7F7F7F;
  4861. line-height:30px;
  4862. }
  4863. #u18724 {
  4864. border-width:0px;
  4865. position:absolute;
  4866. left:1544px;
  4867. top:430px;
  4868. width:71px;
  4869. height:30px;
  4870. display:flex;
  4871. transition:none;
  4872. transform-origin:50% 50%;
  4873. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4874. font-weight:400;
  4875. font-style:normal;
  4876. font-size:14px;
  4877. color:#7F7F7F;
  4878. line-height:30px;
  4879. }
  4880. #u18724 .text {
  4881. position:absolute;
  4882. align-self:flex-start;
  4883. padding:0px 0px 0px 0px;
  4884. box-sizing:border-box;
  4885. width:100%;
  4886. }
  4887. #u18724_text {
  4888. border-width:0px;
  4889. white-space:nowrap;
  4890. text-transform:none;
  4891. }
  4892. #u18725 {
  4893. border-width:0px;
  4894. position:absolute;
  4895. left:1544px;
  4896. top:460px;
  4897. width:146px;
  4898. height:102px;
  4899. display:flex;
  4900. transition:none;
  4901. }
  4902. #u18725 .text {
  4903. position:absolute;
  4904. align-self:center;
  4905. padding:2px 2px 2px 2px;
  4906. box-sizing:border-box;
  4907. width:100%;
  4908. }
  4909. #u18725_img {
  4910. border-width:0px;
  4911. position:absolute;
  4912. left:0px;
  4913. top:0px;
  4914. width:146px;
  4915. height:102px;
  4916. }
  4917. #u18725_text {
  4918. border-width:0px;
  4919. word-wrap:break-word;
  4920. text-transform:none;
  4921. visibility:hidden;
  4922. }
  4923. #u18726 {
  4924. border-width:0px;
  4925. position:absolute;
  4926. left:1700px;
  4927. top:460px;
  4928. width:146px;
  4929. height:102px;
  4930. display:flex;
  4931. transition:none;
  4932. }
  4933. #u18726 .text {
  4934. position:absolute;
  4935. align-self:center;
  4936. padding:2px 2px 2px 2px;
  4937. box-sizing:border-box;
  4938. width:100%;
  4939. }
  4940. #u18726_img {
  4941. border-width:0px;
  4942. position:absolute;
  4943. left:0px;
  4944. top:0px;
  4945. width:146px;
  4946. height:102px;
  4947. }
  4948. #u18726_text {
  4949. border-width:0px;
  4950. word-wrap:break-word;
  4951. text-transform:none;
  4952. visibility:hidden;
  4953. }
  4954. #u18727_div {
  4955. border-width:0px;
  4956. position:absolute;
  4957. left:0px;
  4958. top:0px;
  4959. width:71px;
  4960. height:30px;
  4961. background:inherit;
  4962. background-color:rgba(255, 255, 255, 0);
  4963. border-left:0px;
  4964. border-top:0px;
  4965. border-right:0px;
  4966. border-radius:0px;
  4967. border-bottom-right-radius:0px;
  4968. border-bottom-left-radius:0px;
  4969. filter:drop-shadow(none);
  4970. transition:none;
  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. line-height:30px;
  4977. }
  4978. #u18727 {
  4979. border-width:0px;
  4980. position:absolute;
  4981. left:1126px;
  4982. top:375px;
  4983. width:71px;
  4984. height:30px;
  4985. display:flex;
  4986. transition:none;
  4987. transform-origin:50% 50%;
  4988. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4989. font-weight:400;
  4990. font-style:normal;
  4991. font-size:14px;
  4992. color:#7F7F7F;
  4993. line-height:30px;
  4994. }
  4995. #u18727 .text {
  4996. position:absolute;
  4997. align-self:flex-start;
  4998. padding:0px 0px 0px 0px;
  4999. box-sizing:border-box;
  5000. width:100%;
  5001. }
  5002. #u18727_text {
  5003. border-width:0px;
  5004. white-space:nowrap;
  5005. text-transform:none;
  5006. }
  5007. #u18728_div {
  5008. border-width:0px;
  5009. position:absolute;
  5010. left:0px;
  5011. top:0px;
  5012. width:337px;
  5013. height:30px;
  5014. background:inherit;
  5015. background-color:rgba(255, 255, 255, 0);
  5016. border-left:0px;
  5017. border-top:0px;
  5018. border-right:0px;
  5019. border-radius:0px;
  5020. border-bottom-right-radius:0px;
  5021. border-bottom-left-radius:0px;
  5022. filter:drop-shadow(none);
  5023. transition:none;
  5024. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5025. font-weight:400;
  5026. font-style:normal;
  5027. font-size:14px;
  5028. line-height:30px;
  5029. }
  5030. #u18728 {
  5031. border-width:0px;
  5032. position:absolute;
  5033. left:1206px;
  5034. top:375px;
  5035. width:337px;
  5036. height:30px;
  5037. display:flex;
  5038. transition:none;
  5039. transform-origin:50% 50%;
  5040. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5041. font-weight:400;
  5042. font-style:normal;
  5043. font-size:14px;
  5044. line-height:30px;
  5045. }
  5046. #u18728 .text {
  5047. position:absolute;
  5048. align-self:flex-start;
  5049. padding:0px 0px 0px 0px;
  5050. box-sizing:border-box;
  5051. width:100%;
  5052. }
  5053. #u18728_text {
  5054. border-width:0px;
  5055. white-space:nowrap;
  5056. text-transform:none;
  5057. }
  5058. #u18729_div {
  5059. border-width:0px;
  5060. position:absolute;
  5061. left:0px;
  5062. top:0px;
  5063. width:99px;
  5064. height:30px;
  5065. background:inherit;
  5066. background-color:rgba(255, 255, 255, 0);
  5067. border-left:0px;
  5068. border-top:0px;
  5069. border-right:0px;
  5070. border-radius:0px;
  5071. border-bottom-right-radius:0px;
  5072. border-bottom-left-radius:0px;
  5073. filter:drop-shadow(none);
  5074. transition:none;
  5075. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5076. font-weight:400;
  5077. font-style:normal;
  5078. font-size:14px;
  5079. color:#7F7F7F;
  5080. line-height:30px;
  5081. }
  5082. #u18729 {
  5083. border-width:0px;
  5084. position:absolute;
  5085. left:1564px;
  5086. top:335px;
  5087. width:99px;
  5088. height:30px;
  5089. display:flex;
  5090. transition:none;
  5091. transform-origin:50% 50%;
  5092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5093. font-weight:400;
  5094. font-style:normal;
  5095. font-size:14px;
  5096. color:#7F7F7F;
  5097. line-height:30px;
  5098. }
  5099. #u18729 .text {
  5100. position:absolute;
  5101. align-self:flex-start;
  5102. padding:0px 0px 0px 0px;
  5103. box-sizing:border-box;
  5104. width:100%;
  5105. }
  5106. #u18729_text {
  5107. border-width:0px;
  5108. white-space:nowrap;
  5109. text-transform:none;
  5110. }
  5111. #u18730_div {
  5112. border-width:0px;
  5113. position:absolute;
  5114. left:0px;
  5115. top:0px;
  5116. width:169px;
  5117. height:30px;
  5118. background:inherit;
  5119. background-color:rgba(255, 255, 255, 0);
  5120. border-left:0px;
  5121. border-top:0px;
  5122. border-right:0px;
  5123. border-radius:0px;
  5124. border-bottom-right-radius:0px;
  5125. border-bottom-left-radius:0px;
  5126. filter:drop-shadow(none);
  5127. transition:none;
  5128. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5129. font-weight:400;
  5130. font-style:normal;
  5131. font-size:14px;
  5132. line-height:30px;
  5133. }
  5134. #u18730 {
  5135. border-width:0px;
  5136. position:absolute;
  5137. left:1663px;
  5138. top:335px;
  5139. width:169px;
  5140. height:30px;
  5141. display:flex;
  5142. transition:none;
  5143. transform-origin:50% 50%;
  5144. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5145. font-weight:400;
  5146. font-style:normal;
  5147. font-size:14px;
  5148. line-height:30px;
  5149. }
  5150. #u18730 .text {
  5151. position:absolute;
  5152. align-self:flex-start;
  5153. padding:0px 0px 0px 0px;
  5154. box-sizing:border-box;
  5155. width:100%;
  5156. }
  5157. #u18730_text {
  5158. border-width:0px;
  5159. white-space:nowrap;
  5160. text-transform:none;
  5161. }
  5162. #u18731_div {
  5163. border-width:0px;
  5164. position:absolute;
  5165. left:0px;
  5166. top:0px;
  5167. width:80px;
  5168. height:30px;
  5169. background:inherit;
  5170. background-color:rgba(255, 255, 255, 0);
  5171. border-left:0px;
  5172. border-top:0px;
  5173. border-right:0px;
  5174. border-radius:0px;
  5175. border-bottom-right-radius:0px;
  5176. border-bottom-left-radius:0px;
  5177. filter:drop-shadow(none);
  5178. transition:none;
  5179. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5180. font-weight:400;
  5181. font-style:normal;
  5182. font-size:14px;
  5183. color:#7F7F7F;
  5184. line-height:30px;
  5185. }
  5186. #u18731 {
  5187. border-width:0px;
  5188. position:absolute;
  5189. left:1131px;
  5190. top:719px;
  5191. width:80px;
  5192. height:30px;
  5193. display:flex;
  5194. transition:none;
  5195. transform-origin:50% 50%;
  5196. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5197. font-weight:400;
  5198. font-style:normal;
  5199. font-size:14px;
  5200. color:#7F7F7F;
  5201. line-height:30px;
  5202. }
  5203. #u18731 .text {
  5204. position:absolute;
  5205. align-self:flex-start;
  5206. padding:0px 0px 0px 0px;
  5207. box-sizing:border-box;
  5208. width:100%;
  5209. }
  5210. #u18731_text {
  5211. border-width:0px;
  5212. word-wrap:break-word;
  5213. text-transform:none;
  5214. }
  5215. #u18732_div {
  5216. border-width:0px;
  5217. position:absolute;
  5218. left:0px;
  5219. top:0px;
  5220. width:121px;
  5221. height:30px;
  5222. background:inherit;
  5223. background-color:rgba(255, 255, 255, 0);
  5224. border-left:0px;
  5225. border-top:0px;
  5226. border-right:0px;
  5227. border-radius:0px;
  5228. border-bottom-right-radius:0px;
  5229. border-bottom-left-radius:0px;
  5230. filter:drop-shadow(none);
  5231. transition:none;
  5232. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5233. font-weight:400;
  5234. font-style:normal;
  5235. font-size:14px;
  5236. line-height:30px;
  5237. }
  5238. #u18732 {
  5239. border-width:0px;
  5240. position:absolute;
  5241. left:1211px;
  5242. top:719px;
  5243. width:121px;
  5244. height:30px;
  5245. display:flex;
  5246. transition:none;
  5247. transform-origin:50% 50%;
  5248. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5249. font-weight:400;
  5250. font-style:normal;
  5251. font-size:14px;
  5252. line-height:30px;
  5253. }
  5254. #u18732 .text {
  5255. position:absolute;
  5256. align-self:flex-start;
  5257. padding:0px 0px 0px 0px;
  5258. box-sizing:border-box;
  5259. width:100%;
  5260. }
  5261. #u18732_text {
  5262. border-width:0px;
  5263. white-space:nowrap;
  5264. text-transform:none;
  5265. }
  5266. #u18733_div {
  5267. border-width:0px;
  5268. position:absolute;
  5269. left:0px;
  5270. top:0px;
  5271. width:80px;
  5272. height:30px;
  5273. background:inherit;
  5274. background-color:rgba(255, 255, 255, 0);
  5275. border-left:0px;
  5276. border-top:0px;
  5277. border-right:0px;
  5278. border-radius:0px;
  5279. border-bottom-right-radius:0px;
  5280. border-bottom-left-radius:0px;
  5281. filter:drop-shadow(none);
  5282. transition:none;
  5283. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5284. font-weight:400;
  5285. font-style:normal;
  5286. font-size:14px;
  5287. color:#7F7F7F;
  5288. line-height:30px;
  5289. }
  5290. #u18733 {
  5291. border-width:0px;
  5292. position:absolute;
  5293. left:1570px;
  5294. top:719px;
  5295. width:80px;
  5296. height:30px;
  5297. display:flex;
  5298. transition:none;
  5299. transform-origin:50% 50%;
  5300. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5301. font-weight:400;
  5302. font-style:normal;
  5303. font-size:14px;
  5304. color:#7F7F7F;
  5305. line-height:30px;
  5306. }
  5307. #u18733 .text {
  5308. position:absolute;
  5309. align-self:flex-start;
  5310. padding:0px 0px 0px 0px;
  5311. box-sizing:border-box;
  5312. width:100%;
  5313. }
  5314. #u18733_text {
  5315. border-width:0px;
  5316. word-wrap:break-word;
  5317. text-transform:none;
  5318. }
  5319. #u18734_div {
  5320. border-width:0px;
  5321. position:absolute;
  5322. left:0px;
  5323. top:0px;
  5324. width:141px;
  5325. height:30px;
  5326. background:inherit;
  5327. background-color:rgba(255, 255, 255, 0);
  5328. border-left:0px;
  5329. border-top:0px;
  5330. border-right:0px;
  5331. border-radius:0px;
  5332. border-bottom-right-radius:0px;
  5333. border-bottom-left-radius:0px;
  5334. filter:drop-shadow(none);
  5335. transition:none;
  5336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5337. font-weight:400;
  5338. font-style:normal;
  5339. font-size:14px;
  5340. line-height:30px;
  5341. }
  5342. #u18734 {
  5343. border-width:0px;
  5344. position:absolute;
  5345. left:1650px;
  5346. top:719px;
  5347. width:141px;
  5348. height:30px;
  5349. display:flex;
  5350. transition:none;
  5351. transform-origin:50% 50%;
  5352. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5353. font-weight:400;
  5354. font-style:normal;
  5355. font-size:14px;
  5356. line-height:30px;
  5357. }
  5358. #u18734 .text {
  5359. position:absolute;
  5360. align-self:flex-start;
  5361. padding:0px 0px 0px 0px;
  5362. box-sizing:border-box;
  5363. width:100%;
  5364. }
  5365. #u18734_text {
  5366. border-width:0px;
  5367. white-space:nowrap;
  5368. text-transform:none;
  5369. }
  5370. #u18735_div {
  5371. border-width:0px;
  5372. position:absolute;
  5373. left:0px;
  5374. top:0px;
  5375. width:71px;
  5376. height:30px;
  5377. background:inherit;
  5378. background-color:rgba(255, 255, 255, 0);
  5379. border-left:0px;
  5380. border-top:0px;
  5381. border-right:0px;
  5382. border-radius:0px;
  5383. border-bottom-right-radius:0px;
  5384. border-bottom-left-radius:0px;
  5385. filter:drop-shadow(none);
  5386. transition:none;
  5387. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5388. font-weight:400;
  5389. font-style:normal;
  5390. font-size:14px;
  5391. color:#7F7F7F;
  5392. line-height:30px;
  5393. }
  5394. #u18735 {
  5395. border-width:0px;
  5396. position:absolute;
  5397. left:1131px;
  5398. top:572px;
  5399. width:71px;
  5400. height:30px;
  5401. display:flex;
  5402. transition:none;
  5403. transform-origin:50% 50%;
  5404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5405. font-weight:400;
  5406. font-style:normal;
  5407. font-size:14px;
  5408. color:#7F7F7F;
  5409. line-height:30px;
  5410. }
  5411. #u18735 .text {
  5412. position:absolute;
  5413. align-self:flex-start;
  5414. padding:0px 0px 0px 0px;
  5415. box-sizing:border-box;
  5416. width:100%;
  5417. }
  5418. #u18735_text {
  5419. border-width:0px;
  5420. white-space:nowrap;
  5421. text-transform:none;
  5422. }
  5423. #u18736 {
  5424. border-width:0px;
  5425. position:absolute;
  5426. left:1131px;
  5427. top:602px;
  5428. width:153px;
  5429. height:107px;
  5430. display:flex;
  5431. transition:none;
  5432. }
  5433. #u18736 .text {
  5434. position:absolute;
  5435. align-self:center;
  5436. padding:2px 2px 2px 2px;
  5437. box-sizing:border-box;
  5438. width:100%;
  5439. }
  5440. #u18736_img {
  5441. border-width:0px;
  5442. position:absolute;
  5443. left:0px;
  5444. top:0px;
  5445. width:153px;
  5446. height:107px;
  5447. }
  5448. #u18736_text {
  5449. border-width:0px;
  5450. word-wrap:break-word;
  5451. text-transform:none;
  5452. visibility:hidden;
  5453. }
  5454. #u18737 {
  5455. border-width:0px;
  5456. position:absolute;
  5457. left:1294px;
  5458. top:602px;
  5459. width:153px;
  5460. height:107px;
  5461. display:flex;
  5462. transition:none;
  5463. }
  5464. #u18737 .text {
  5465. position:absolute;
  5466. align-self:center;
  5467. padding:2px 2px 2px 2px;
  5468. box-sizing:border-box;
  5469. width:100%;
  5470. }
  5471. #u18737_img {
  5472. border-width:0px;
  5473. position:absolute;
  5474. left:0px;
  5475. top:0px;
  5476. width:153px;
  5477. height:107px;
  5478. }
  5479. #u18737_text {
  5480. border-width:0px;
  5481. word-wrap:break-word;
  5482. text-transform:none;
  5483. visibility:hidden;
  5484. }
  5485. #u18738 {
  5486. border-width:0px;
  5487. position:absolute;
  5488. left:1457px;
  5489. top:602px;
  5490. width:153px;
  5491. height:107px;
  5492. display:flex;
  5493. transition:none;
  5494. }
  5495. #u18738 .text {
  5496. position:absolute;
  5497. align-self:center;
  5498. padding:2px 2px 2px 2px;
  5499. box-sizing:border-box;
  5500. width:100%;
  5501. }
  5502. #u18738_img {
  5503. border-width:0px;
  5504. position:absolute;
  5505. left:0px;
  5506. top:0px;
  5507. width:153px;
  5508. height:107px;
  5509. }
  5510. #u18738_text {
  5511. border-width:0px;
  5512. word-wrap:break-word;
  5513. text-transform:none;
  5514. visibility:hidden;
  5515. }
  5516. #u18739 {
  5517. border-width:0px;
  5518. position:absolute;
  5519. left:1620px;
  5520. top:602px;
  5521. width:153px;
  5522. height:107px;
  5523. display:flex;
  5524. transition:none;
  5525. }
  5526. #u18739 .text {
  5527. position:absolute;
  5528. align-self:center;
  5529. padding:2px 2px 2px 2px;
  5530. box-sizing:border-box;
  5531. width:100%;
  5532. }
  5533. #u18739_img {
  5534. border-width:0px;
  5535. position:absolute;
  5536. left:0px;
  5537. top:0px;
  5538. width:153px;
  5539. height:107px;
  5540. }
  5541. #u18739_text {
  5542. border-width:0px;
  5543. word-wrap:break-word;
  5544. text-transform:none;
  5545. visibility:hidden;
  5546. }
  5547. #u18740 {
  5548. border-width:0px;
  5549. position:absolute;
  5550. left:0px;
  5551. top:0px;
  5552. width:0px;
  5553. height:0px;
  5554. }
  5555. #u18741_div {
  5556. border-width:0px;
  5557. position:absolute;
  5558. left:0px;
  5559. top:0px;
  5560. width:80px;
  5561. height:30px;
  5562. background:inherit;
  5563. background-color:rgba(255, 255, 255, 0);
  5564. border-left:0px;
  5565. border-top:0px;
  5566. border-right:0px;
  5567. border-radius:0px;
  5568. border-bottom-right-radius:0px;
  5569. border-bottom-left-radius:0px;
  5570. filter:drop-shadow(none);
  5571. transition:none;
  5572. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5573. font-weight:400;
  5574. font-style:normal;
  5575. font-size:14px;
  5576. color:#7F7F7F;
  5577. line-height:30px;
  5578. }
  5579. #u18741 {
  5580. border-width:0px;
  5581. position:absolute;
  5582. left:2156px;
  5583. top:215px;
  5584. width:80px;
  5585. height:30px;
  5586. display:flex;
  5587. transition:none;
  5588. transform-origin:50% 50%;
  5589. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5590. font-weight:400;
  5591. font-style:normal;
  5592. font-size:14px;
  5593. color:#7F7F7F;
  5594. line-height:30px;
  5595. }
  5596. #u18741 .text {
  5597. position:absolute;
  5598. align-self:flex-start;
  5599. padding:0px 0px 0px 0px;
  5600. box-sizing:border-box;
  5601. width:100%;
  5602. }
  5603. #u18741_text {
  5604. border-width:0px;
  5605. word-wrap:break-word;
  5606. text-transform:none;
  5607. }
  5608. #u18742_div {
  5609. border-width:0px;
  5610. position:absolute;
  5611. left:0px;
  5612. top:0px;
  5613. width:85px;
  5614. height:30px;
  5615. background:inherit;
  5616. background-color:rgba(255, 255, 255, 0);
  5617. border-left:0px;
  5618. border-top:0px;
  5619. border-right:0px;
  5620. border-radius:0px;
  5621. border-bottom-right-radius:0px;
  5622. border-bottom-left-radius:0px;
  5623. filter:drop-shadow(none);
  5624. transition:none;
  5625. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5626. font-weight:400;
  5627. font-style:normal;
  5628. font-size:14px;
  5629. line-height:30px;
  5630. }
  5631. #u18742 {
  5632. border-width:0px;
  5633. position:absolute;
  5634. left:2236px;
  5635. top:215px;
  5636. width:85px;
  5637. height:30px;
  5638. display:flex;
  5639. transition:none;
  5640. transform-origin:50% 50%;
  5641. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5642. font-weight:400;
  5643. font-style:normal;
  5644. font-size:14px;
  5645. line-height:30px;
  5646. }
  5647. #u18742 .text {
  5648. position:absolute;
  5649. align-self:flex-start;
  5650. padding:0px 0px 0px 0px;
  5651. box-sizing:border-box;
  5652. width:100%;
  5653. }
  5654. #u18742_text {
  5655. border-width:0px;
  5656. white-space:nowrap;
  5657. text-transform:none;
  5658. }
  5659. #u18743_div {
  5660. border-width:0px;
  5661. position:absolute;
  5662. left:0px;
  5663. top:0px;
  5664. width:71px;
  5665. height:30px;
  5666. background:inherit;
  5667. background-color:rgba(255, 255, 255, 0);
  5668. border-left:0px;
  5669. border-top:0px;
  5670. border-right:0px;
  5671. border-radius:0px;
  5672. border-bottom-right-radius:0px;
  5673. border-bottom-left-radius:0px;
  5674. filter:drop-shadow(none);
  5675. transition:none;
  5676. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5677. font-weight:400;
  5678. font-style:normal;
  5679. font-size:14px;
  5680. color:#7F7F7F;
  5681. line-height:30px;
  5682. }
  5683. #u18743 {
  5684. border-width:0px;
  5685. position:absolute;
  5686. left:2156px;
  5687. top:255px;
  5688. width:71px;
  5689. height:30px;
  5690. display:flex;
  5691. transition:none;
  5692. transform-origin:50% 50%;
  5693. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5694. font-weight:400;
  5695. font-style:normal;
  5696. font-size:14px;
  5697. color:#7F7F7F;
  5698. line-height:30px;
  5699. }
  5700. #u18743 .text {
  5701. position:absolute;
  5702. align-self:flex-start;
  5703. padding:0px 0px 0px 0px;
  5704. box-sizing:border-box;
  5705. width:100%;
  5706. }
  5707. #u18743_text {
  5708. border-width:0px;
  5709. white-space:nowrap;
  5710. text-transform:none;
  5711. }
  5712. #u18744_div {
  5713. border-width:0px;
  5714. position:absolute;
  5715. left:0px;
  5716. top:0px;
  5717. width:29px;
  5718. height:30px;
  5719. background:inherit;
  5720. background-color:rgba(255, 255, 255, 0);
  5721. border-left:0px;
  5722. border-top:0px;
  5723. border-right:0px;
  5724. border-radius:0px;
  5725. border-bottom-right-radius:0px;
  5726. border-bottom-left-radius:0px;
  5727. filter:drop-shadow(none);
  5728. transition:none;
  5729. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5730. font-weight:400;
  5731. font-style:normal;
  5732. font-size:14px;
  5733. line-height:30px;
  5734. }
  5735. #u18744 {
  5736. border-width:0px;
  5737. position:absolute;
  5738. left:2236px;
  5739. top:255px;
  5740. width:29px;
  5741. height:30px;
  5742. display:flex;
  5743. transition:none;
  5744. transform-origin:50% 50%;
  5745. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5746. font-weight:400;
  5747. font-style:normal;
  5748. font-size:14px;
  5749. line-height:30px;
  5750. }
  5751. #u18744 .text {
  5752. position:absolute;
  5753. align-self:flex-start;
  5754. padding:0px 0px 0px 0px;
  5755. box-sizing:border-box;
  5756. width:100%;
  5757. }
  5758. #u18744_text {
  5759. border-width:0px;
  5760. white-space:nowrap;
  5761. text-transform:none;
  5762. }
  5763. #u18745_div {
  5764. border-width:0px;
  5765. position:absolute;
  5766. left:0px;
  5767. top:0px;
  5768. width:43px;
  5769. height:30px;
  5770. background:inherit;
  5771. background-color:rgba(255, 255, 255, 0);
  5772. border-left:0px;
  5773. border-top:0px;
  5774. border-right:0px;
  5775. border-radius:0px;
  5776. border-bottom-right-radius:0px;
  5777. border-bottom-left-radius:0px;
  5778. filter:drop-shadow(none);
  5779. transition:none;
  5780. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5781. font-weight:400;
  5782. font-style:normal;
  5783. font-size:14px;
  5784. color:#7F7F7F;
  5785. line-height:30px;
  5786. }
  5787. #u18745 {
  5788. border-width:0px;
  5789. position:absolute;
  5790. left:2594px;
  5791. top:255px;
  5792. width:43px;
  5793. height:30px;
  5794. display:flex;
  5795. transition:none;
  5796. transform-origin:50% 50%;
  5797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5798. font-weight:400;
  5799. font-style:normal;
  5800. font-size:14px;
  5801. color:#7F7F7F;
  5802. line-height:30px;
  5803. }
  5804. #u18745 .text {
  5805. position:absolute;
  5806. align-self:flex-start;
  5807. padding:0px 0px 0px 0px;
  5808. box-sizing:border-box;
  5809. width:100%;
  5810. }
  5811. #u18745_text {
  5812. border-width:0px;
  5813. white-space:nowrap;
  5814. text-transform:none;
  5815. }
  5816. #u18746_div {
  5817. border-width:0px;
  5818. position:absolute;
  5819. left:0px;
  5820. top:0px;
  5821. width:15px;
  5822. height:30px;
  5823. background:inherit;
  5824. background-color:rgba(255, 255, 255, 0);
  5825. border-left:0px;
  5826. border-top:0px;
  5827. border-right:0px;
  5828. border-radius:0px;
  5829. border-bottom-right-radius:0px;
  5830. border-bottom-left-radius:0px;
  5831. filter:drop-shadow(none);
  5832. transition:none;
  5833. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5834. font-weight:400;
  5835. font-style:normal;
  5836. font-size:14px;
  5837. line-height:30px;
  5838. }
  5839. #u18746 {
  5840. border-width:0px;
  5841. position:absolute;
  5842. left:2674px;
  5843. top:255px;
  5844. width:15px;
  5845. height:30px;
  5846. display:flex;
  5847. transition:none;
  5848. transform-origin:50% 50%;
  5849. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5850. font-weight:400;
  5851. font-style:normal;
  5852. font-size:14px;
  5853. line-height:30px;
  5854. }
  5855. #u18746 .text {
  5856. position:absolute;
  5857. align-self:flex-start;
  5858. padding:0px 0px 0px 0px;
  5859. box-sizing:border-box;
  5860. width:100%;
  5861. }
  5862. #u18746_text {
  5863. border-width:0px;
  5864. white-space:nowrap;
  5865. text-transform:none;
  5866. }
  5867. #u18747_div {
  5868. border-width:0px;
  5869. position:absolute;
  5870. left:0px;
  5871. top:0px;
  5872. width:71px;
  5873. height:30px;
  5874. background:inherit;
  5875. background-color:rgba(255, 255, 255, 0);
  5876. border-left:0px;
  5877. border-top:0px;
  5878. border-right:0px;
  5879. border-radius:0px;
  5880. border-bottom-right-radius:0px;
  5881. border-bottom-left-radius:0px;
  5882. filter:drop-shadow(none);
  5883. transition:none;
  5884. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5885. font-weight:400;
  5886. font-style:normal;
  5887. font-size:14px;
  5888. color:#7F7F7F;
  5889. line-height:30px;
  5890. }
  5891. #u18747 {
  5892. border-width:0px;
  5893. position:absolute;
  5894. left:2156px;
  5895. top:295px;
  5896. width:71px;
  5897. height:30px;
  5898. display:flex;
  5899. transition:none;
  5900. transform-origin:50% 50%;
  5901. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5902. font-weight:400;
  5903. font-style:normal;
  5904. font-size:14px;
  5905. color:#7F7F7F;
  5906. line-height:30px;
  5907. }
  5908. #u18747 .text {
  5909. position:absolute;
  5910. align-self:flex-start;
  5911. padding:0px 0px 0px 0px;
  5912. box-sizing:border-box;
  5913. width:100%;
  5914. }
  5915. #u18747_text {
  5916. border-width:0px;
  5917. white-space:nowrap;
  5918. text-transform:none;
  5919. }
  5920. #u18748_div {
  5921. border-width:0px;
  5922. position:absolute;
  5923. left:0px;
  5924. top:0px;
  5925. width:43px;
  5926. height:30px;
  5927. background:inherit;
  5928. background-color:rgba(255, 255, 255, 0);
  5929. border-left:0px;
  5930. border-top:0px;
  5931. border-right:0px;
  5932. border-radius:0px;
  5933. border-bottom-right-radius:0px;
  5934. border-bottom-left-radius:0px;
  5935. filter:drop-shadow(none);
  5936. transition:none;
  5937. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5938. font-weight:400;
  5939. font-style:normal;
  5940. font-size:14px;
  5941. line-height:30px;
  5942. }
  5943. #u18748 {
  5944. border-width:0px;
  5945. position:absolute;
  5946. left:2236px;
  5947. top:295px;
  5948. width:43px;
  5949. height:30px;
  5950. display:flex;
  5951. transition:none;
  5952. transform-origin:50% 50%;
  5953. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5954. font-weight:400;
  5955. font-style:normal;
  5956. font-size:14px;
  5957. line-height:30px;
  5958. }
  5959. #u18748 .text {
  5960. position:absolute;
  5961. align-self:flex-start;
  5962. padding:0px 0px 0px 0px;
  5963. box-sizing:border-box;
  5964. width:100%;
  5965. }
  5966. #u18748_text {
  5967. border-width:0px;
  5968. white-space:nowrap;
  5969. text-transform:none;
  5970. }
  5971. #u18749_div {
  5972. border-width:0px;
  5973. position:absolute;
  5974. left:0px;
  5975. top:0px;
  5976. width:71px;
  5977. height:30px;
  5978. background:inherit;
  5979. background-color:rgba(255, 255, 255, 0);
  5980. border-left:0px;
  5981. border-top:0px;
  5982. border-right:0px;
  5983. border-radius:0px;
  5984. border-bottom-right-radius:0px;
  5985. border-bottom-left-radius:0px;
  5986. filter:drop-shadow(none);
  5987. transition:none;
  5988. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5989. font-weight:400;
  5990. font-style:normal;
  5991. font-size:14px;
  5992. color:#7F7F7F;
  5993. line-height:30px;
  5994. }
  5995. #u18749 {
  5996. border-width:0px;
  5997. position:absolute;
  5998. left:2594px;
  5999. top:295px;
  6000. width:71px;
  6001. height:30px;
  6002. display:flex;
  6003. transition:none;
  6004. transform-origin:50% 50%;
  6005. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6006. font-weight:400;
  6007. font-style:normal;
  6008. font-size:14px;
  6009. color:#7F7F7F;
  6010. line-height:30px;
  6011. }
  6012. #u18749 .text {
  6013. position:absolute;
  6014. align-self:flex-start;
  6015. padding:0px 0px 0px 0px;
  6016. box-sizing:border-box;
  6017. width:100%;
  6018. }
  6019. #u18749_text {
  6020. border-width:0px;
  6021. white-space:nowrap;
  6022. text-transform:none;
  6023. }
  6024. #u18750_div {
  6025. border-width:0px;
  6026. position:absolute;
  6027. left:0px;
  6028. top:0px;
  6029. width:57px;
  6030. height:30px;
  6031. background:inherit;
  6032. background-color:rgba(255, 255, 255, 0);
  6033. border-left:0px;
  6034. border-top:0px;
  6035. border-right:0px;
  6036. border-radius:0px;
  6037. border-bottom-right-radius:0px;
  6038. border-bottom-left-radius:0px;
  6039. filter:drop-shadow(none);
  6040. transition:none;
  6041. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6042. font-weight:400;
  6043. font-style:normal;
  6044. font-size:14px;
  6045. line-height:30px;
  6046. }
  6047. #u18750 {
  6048. border-width:0px;
  6049. position:absolute;
  6050. left:2674px;
  6051. top:295px;
  6052. width:57px;
  6053. height:30px;
  6054. display:flex;
  6055. transition:none;
  6056. transform-origin:50% 50%;
  6057. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6058. font-weight:400;
  6059. font-style:normal;
  6060. font-size:14px;
  6061. line-height:30px;
  6062. }
  6063. #u18750 .text {
  6064. position:absolute;
  6065. align-self:flex-start;
  6066. padding:0px 0px 0px 0px;
  6067. box-sizing:border-box;
  6068. width:100%;
  6069. }
  6070. #u18750_text {
  6071. border-width:0px;
  6072. white-space:nowrap;
  6073. text-transform:none;
  6074. }
  6075. #u18751_div {
  6076. border-width:0px;
  6077. position:absolute;
  6078. left:0px;
  6079. top:0px;
  6080. width:71px;
  6081. height:30px;
  6082. background:inherit;
  6083. background-color:rgba(255, 255, 255, 0);
  6084. border-left:0px;
  6085. border-top:0px;
  6086. border-right:0px;
  6087. border-radius:0px;
  6088. border-bottom-right-radius:0px;
  6089. border-bottom-left-radius:0px;
  6090. filter:drop-shadow(none);
  6091. transition:none;
  6092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6093. font-weight:400;
  6094. font-style:normal;
  6095. font-size:14px;
  6096. color:#7F7F7F;
  6097. line-height:30px;
  6098. }
  6099. #u18751 {
  6100. border-width:0px;
  6101. position:absolute;
  6102. left:2156px;
  6103. top:335px;
  6104. width:71px;
  6105. height:30px;
  6106. display:flex;
  6107. transition:none;
  6108. transform-origin:50% 50%;
  6109. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6110. font-weight:400;
  6111. font-style:normal;
  6112. font-size:14px;
  6113. color:#7F7F7F;
  6114. line-height:30px;
  6115. }
  6116. #u18751 .text {
  6117. position:absolute;
  6118. align-self:flex-start;
  6119. padding:0px 0px 0px 0px;
  6120. box-sizing:border-box;
  6121. width:100%;
  6122. }
  6123. #u18751_text {
  6124. border-width:0px;
  6125. white-space:nowrap;
  6126. text-transform:none;
  6127. }
  6128. #u18752_div {
  6129. border-width:0px;
  6130. position:absolute;
  6131. left:0px;
  6132. top:0px;
  6133. width:82px;
  6134. height:30px;
  6135. background:inherit;
  6136. background-color:rgba(255, 255, 255, 0);
  6137. border-left:0px;
  6138. border-top:0px;
  6139. border-right:0px;
  6140. border-radius:0px;
  6141. border-bottom-right-radius:0px;
  6142. border-bottom-left-radius:0px;
  6143. filter:drop-shadow(none);
  6144. transition:none;
  6145. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6146. font-weight:400;
  6147. font-style:normal;
  6148. font-size:14px;
  6149. line-height:30px;
  6150. }
  6151. #u18752 {
  6152. border-width:0px;
  6153. position:absolute;
  6154. left:2236px;
  6155. top:335px;
  6156. width:82px;
  6157. height:30px;
  6158. display:flex;
  6159. transition:none;
  6160. transform-origin:50% 50%;
  6161. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6162. font-weight:400;
  6163. font-style:normal;
  6164. font-size:14px;
  6165. line-height:30px;
  6166. }
  6167. #u18752 .text {
  6168. position:absolute;
  6169. align-self:flex-start;
  6170. padding:0px 0px 0px 0px;
  6171. box-sizing:border-box;
  6172. width:100%;
  6173. }
  6174. #u18752_text {
  6175. border-width:0px;
  6176. white-space:nowrap;
  6177. text-transform:none;
  6178. }
  6179. #u18753_div {
  6180. border-width:0px;
  6181. position:absolute;
  6182. left:0px;
  6183. top:0px;
  6184. width:71px;
  6185. height:30px;
  6186. background:inherit;
  6187. background-color:rgba(255, 255, 255, 0);
  6188. border-left:0px;
  6189. border-top:0px;
  6190. border-right:0px;
  6191. border-radius:0px;
  6192. border-bottom-right-radius:0px;
  6193. border-bottom-left-radius:0px;
  6194. filter:drop-shadow(none);
  6195. transition:none;
  6196. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6197. font-weight:400;
  6198. font-style:normal;
  6199. font-size:14px;
  6200. color:#7F7F7F;
  6201. line-height:30px;
  6202. }
  6203. #u18753 {
  6204. border-width:0px;
  6205. position:absolute;
  6206. left:2594px;
  6207. top:215px;
  6208. width:71px;
  6209. height:30px;
  6210. display:flex;
  6211. transition:none;
  6212. transform-origin:50% 50%;
  6213. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6214. font-weight:400;
  6215. font-style:normal;
  6216. font-size:14px;
  6217. color:#7F7F7F;
  6218. line-height:30px;
  6219. }
  6220. #u18753 .text {
  6221. position:absolute;
  6222. align-self:flex-start;
  6223. padding:0px 0px 0px 0px;
  6224. box-sizing:border-box;
  6225. width:100%;
  6226. }
  6227. #u18753_text {
  6228. border-width:0px;
  6229. white-space:nowrap;
  6230. text-transform:none;
  6231. }
  6232. #u18754_div {
  6233. border-width:0px;
  6234. position:absolute;
  6235. left:0px;
  6236. top:0px;
  6237. width:57px;
  6238. height:30px;
  6239. background:inherit;
  6240. background-color:rgba(255, 255, 255, 0);
  6241. border-left:0px;
  6242. border-top:0px;
  6243. border-right:0px;
  6244. border-radius:0px;
  6245. border-bottom-right-radius:0px;
  6246. border-bottom-left-radius:0px;
  6247. filter:drop-shadow(none);
  6248. transition:none;
  6249. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6250. font-weight:400;
  6251. font-style:normal;
  6252. font-size:14px;
  6253. line-height:30px;
  6254. }
  6255. #u18754 {
  6256. border-width:0px;
  6257. position:absolute;
  6258. left:2674px;
  6259. top:215px;
  6260. width:57px;
  6261. height:30px;
  6262. display:flex;
  6263. transition:none;
  6264. transform-origin:50% 50%;
  6265. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6266. font-weight:400;
  6267. font-style:normal;
  6268. font-size:14px;
  6269. line-height:30px;
  6270. }
  6271. #u18754 .text {
  6272. position:absolute;
  6273. align-self:flex-start;
  6274. padding:0px 0px 0px 0px;
  6275. box-sizing:border-box;
  6276. width:100%;
  6277. }
  6278. #u18754_text {
  6279. border-width:0px;
  6280. white-space:nowrap;
  6281. text-transform:none;
  6282. }
  6283. #u18755_div {
  6284. border-width:0px;
  6285. position:absolute;
  6286. left:0px;
  6287. top:0px;
  6288. width:57px;
  6289. height:30px;
  6290. background:inherit;
  6291. background-color:rgba(255, 255, 255, 0);
  6292. border-left:0px;
  6293. border-top:0px;
  6294. border-right:0px;
  6295. border-radius:0px;
  6296. border-bottom-right-radius:0px;
  6297. border-bottom-left-radius:0px;
  6298. filter:drop-shadow(none);
  6299. transition:none;
  6300. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6301. font-weight:400;
  6302. font-style:normal;
  6303. font-size:14px;
  6304. color:#7F7F7F;
  6305. line-height:30px;
  6306. }
  6307. #u18755 {
  6308. border-width:0px;
  6309. position:absolute;
  6310. left:2156px;
  6311. top:425px;
  6312. width:57px;
  6313. height:30px;
  6314. display:flex;
  6315. transition:none;
  6316. transform-origin:50% 50%;
  6317. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6318. font-weight:400;
  6319. font-style:normal;
  6320. font-size:14px;
  6321. color:#7F7F7F;
  6322. line-height:30px;
  6323. }
  6324. #u18755 .text {
  6325. position:absolute;
  6326. align-self:flex-start;
  6327. padding:0px 0px 0px 0px;
  6328. box-sizing:border-box;
  6329. width:100%;
  6330. }
  6331. #u18755_text {
  6332. border-width:0px;
  6333. white-space:nowrap;
  6334. text-transform:none;
  6335. }
  6336. #u18756 {
  6337. border-width:0px;
  6338. position:absolute;
  6339. left:2156px;
  6340. top:455px;
  6341. width:153px;
  6342. height:107px;
  6343. display:flex;
  6344. transition:none;
  6345. }
  6346. #u18756 .text {
  6347. position:absolute;
  6348. align-self:center;
  6349. padding:2px 2px 2px 2px;
  6350. box-sizing:border-box;
  6351. width:100%;
  6352. }
  6353. #u18756_img {
  6354. border-width:0px;
  6355. position:absolute;
  6356. left:0px;
  6357. top:0px;
  6358. width:153px;
  6359. height:107px;
  6360. }
  6361. #u18756_text {
  6362. border-width:0px;
  6363. word-wrap:break-word;
  6364. text-transform:none;
  6365. visibility:hidden;
  6366. }
  6367. #u18757_div {
  6368. border-width:0px;
  6369. position:absolute;
  6370. left:0px;
  6371. top:0px;
  6372. width:71px;
  6373. height:30px;
  6374. background:inherit;
  6375. background-color:rgba(255, 255, 255, 0);
  6376. border-left:0px;
  6377. border-top:0px;
  6378. border-right:0px;
  6379. border-radius:0px;
  6380. border-bottom-right-radius:0px;
  6381. border-bottom-left-radius:0px;
  6382. filter:drop-shadow(none);
  6383. transition:none;
  6384. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6385. font-weight:400;
  6386. font-style:normal;
  6387. font-size:14px;
  6388. color:#7F7F7F;
  6389. line-height:30px;
  6390. }
  6391. #u18757 {
  6392. border-width:0px;
  6393. position:absolute;
  6394. left:2574px;
  6395. top:430px;
  6396. width:71px;
  6397. height:30px;
  6398. display:flex;
  6399. transition:none;
  6400. transform-origin:50% 50%;
  6401. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6402. font-weight:400;
  6403. font-style:normal;
  6404. font-size:14px;
  6405. color:#7F7F7F;
  6406. line-height:30px;
  6407. }
  6408. #u18757 .text {
  6409. position:absolute;
  6410. align-self:flex-start;
  6411. padding:0px 0px 0px 0px;
  6412. box-sizing:border-box;
  6413. width:100%;
  6414. }
  6415. #u18757_text {
  6416. border-width:0px;
  6417. white-space:nowrap;
  6418. text-transform:none;
  6419. }
  6420. #u18758 {
  6421. border-width:0px;
  6422. position:absolute;
  6423. left:2574px;
  6424. top:460px;
  6425. width:146px;
  6426. height:102px;
  6427. display:flex;
  6428. transition:none;
  6429. }
  6430. #u18758 .text {
  6431. position:absolute;
  6432. align-self:center;
  6433. padding:2px 2px 2px 2px;
  6434. box-sizing:border-box;
  6435. width:100%;
  6436. }
  6437. #u18758_img {
  6438. border-width:0px;
  6439. position:absolute;
  6440. left:0px;
  6441. top:0px;
  6442. width:146px;
  6443. height:102px;
  6444. }
  6445. #u18758_text {
  6446. border-width:0px;
  6447. word-wrap:break-word;
  6448. text-transform:none;
  6449. visibility:hidden;
  6450. }
  6451. #u18759 {
  6452. border-width:0px;
  6453. position:absolute;
  6454. left:2730px;
  6455. top:460px;
  6456. width:146px;
  6457. height:102px;
  6458. display:flex;
  6459. transition:none;
  6460. }
  6461. #u18759 .text {
  6462. position:absolute;
  6463. align-self:center;
  6464. padding:2px 2px 2px 2px;
  6465. box-sizing:border-box;
  6466. width:100%;
  6467. }
  6468. #u18759_img {
  6469. border-width:0px;
  6470. position:absolute;
  6471. left:0px;
  6472. top:0px;
  6473. width:146px;
  6474. height:102px;
  6475. }
  6476. #u18759_text {
  6477. border-width:0px;
  6478. word-wrap:break-word;
  6479. text-transform:none;
  6480. visibility:hidden;
  6481. }
  6482. #u18760_div {
  6483. border-width:0px;
  6484. position:absolute;
  6485. left:0px;
  6486. top:0px;
  6487. width:71px;
  6488. height:30px;
  6489. background:inherit;
  6490. background-color:rgba(255, 255, 255, 0);
  6491. border-left:0px;
  6492. border-top:0px;
  6493. border-right:0px;
  6494. border-radius:0px;
  6495. border-bottom-right-radius:0px;
  6496. border-bottom-left-radius:0px;
  6497. filter:drop-shadow(none);
  6498. transition:none;
  6499. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6500. font-weight:400;
  6501. font-style:normal;
  6502. font-size:14px;
  6503. color:#7F7F7F;
  6504. line-height:30px;
  6505. }
  6506. #u18760 {
  6507. border-width:0px;
  6508. position:absolute;
  6509. left:2156px;
  6510. top:375px;
  6511. width:71px;
  6512. height:30px;
  6513. display:flex;
  6514. transition:none;
  6515. transform-origin:50% 50%;
  6516. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6517. font-weight:400;
  6518. font-style:normal;
  6519. font-size:14px;
  6520. color:#7F7F7F;
  6521. line-height:30px;
  6522. }
  6523. #u18760 .text {
  6524. position:absolute;
  6525. align-self:flex-start;
  6526. padding:0px 0px 0px 0px;
  6527. box-sizing:border-box;
  6528. width:100%;
  6529. }
  6530. #u18760_text {
  6531. border-width:0px;
  6532. white-space:nowrap;
  6533. text-transform:none;
  6534. }
  6535. #u18761_div {
  6536. border-width:0px;
  6537. position:absolute;
  6538. left:0px;
  6539. top:0px;
  6540. width:337px;
  6541. height:30px;
  6542. background:inherit;
  6543. background-color:rgba(255, 255, 255, 0);
  6544. border-left:0px;
  6545. border-top:0px;
  6546. border-right:0px;
  6547. border-radius:0px;
  6548. border-bottom-right-radius:0px;
  6549. border-bottom-left-radius:0px;
  6550. filter:drop-shadow(none);
  6551. transition:none;
  6552. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6553. font-weight:400;
  6554. font-style:normal;
  6555. font-size:14px;
  6556. line-height:30px;
  6557. }
  6558. #u18761 {
  6559. border-width:0px;
  6560. position:absolute;
  6561. left:2236px;
  6562. top:375px;
  6563. width:337px;
  6564. height:30px;
  6565. display:flex;
  6566. transition:none;
  6567. transform-origin:50% 50%;
  6568. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6569. font-weight:400;
  6570. font-style:normal;
  6571. font-size:14px;
  6572. line-height:30px;
  6573. }
  6574. #u18761 .text {
  6575. position:absolute;
  6576. align-self:flex-start;
  6577. padding:0px 0px 0px 0px;
  6578. box-sizing:border-box;
  6579. width:100%;
  6580. }
  6581. #u18761_text {
  6582. border-width:0px;
  6583. white-space:nowrap;
  6584. text-transform:none;
  6585. }
  6586. #u18762_div {
  6587. border-width:0px;
  6588. position:absolute;
  6589. left:0px;
  6590. top:0px;
  6591. width:99px;
  6592. height:30px;
  6593. background:inherit;
  6594. background-color:rgba(255, 255, 255, 0);
  6595. border-left:0px;
  6596. border-top:0px;
  6597. border-right:0px;
  6598. border-radius:0px;
  6599. border-bottom-right-radius:0px;
  6600. border-bottom-left-radius:0px;
  6601. filter:drop-shadow(none);
  6602. transition:none;
  6603. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6604. font-weight:400;
  6605. font-style:normal;
  6606. font-size:14px;
  6607. color:#7F7F7F;
  6608. line-height:30px;
  6609. }
  6610. #u18762 {
  6611. border-width:0px;
  6612. position:absolute;
  6613. left:2594px;
  6614. top:335px;
  6615. width:99px;
  6616. height:30px;
  6617. display:flex;
  6618. transition:none;
  6619. transform-origin:50% 50%;
  6620. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6621. font-weight:400;
  6622. font-style:normal;
  6623. font-size:14px;
  6624. color:#7F7F7F;
  6625. line-height:30px;
  6626. }
  6627. #u18762 .text {
  6628. position:absolute;
  6629. align-self:flex-start;
  6630. padding:0px 0px 0px 0px;
  6631. box-sizing:border-box;
  6632. width:100%;
  6633. }
  6634. #u18762_text {
  6635. border-width:0px;
  6636. white-space:nowrap;
  6637. text-transform:none;
  6638. }
  6639. #u18763_div {
  6640. border-width:0px;
  6641. position:absolute;
  6642. left:0px;
  6643. top:0px;
  6644. width:169px;
  6645. height:30px;
  6646. background:inherit;
  6647. background-color:rgba(255, 255, 255, 0);
  6648. border-left:0px;
  6649. border-top:0px;
  6650. border-right:0px;
  6651. border-radius:0px;
  6652. border-bottom-right-radius:0px;
  6653. border-bottom-left-radius:0px;
  6654. filter:drop-shadow(none);
  6655. transition:none;
  6656. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6657. font-weight:400;
  6658. font-style:normal;
  6659. font-size:14px;
  6660. line-height:30px;
  6661. }
  6662. #u18763 {
  6663. border-width:0px;
  6664. position:absolute;
  6665. left:2693px;
  6666. top:335px;
  6667. width:169px;
  6668. height:30px;
  6669. display:flex;
  6670. transition:none;
  6671. transform-origin:50% 50%;
  6672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6673. font-weight:400;
  6674. font-style:normal;
  6675. font-size:14px;
  6676. line-height:30px;
  6677. }
  6678. #u18763 .text {
  6679. position:absolute;
  6680. align-self:flex-start;
  6681. padding:0px 0px 0px 0px;
  6682. box-sizing:border-box;
  6683. width:100%;
  6684. }
  6685. #u18763_text {
  6686. border-width:0px;
  6687. white-space:nowrap;
  6688. text-transform:none;
  6689. }
  6690. #u18764_div {
  6691. border-width:0px;
  6692. position:absolute;
  6693. left:0px;
  6694. top:0px;
  6695. width:80px;
  6696. height:30px;
  6697. background:inherit;
  6698. background-color:rgba(255, 255, 255, 0);
  6699. border-left:0px;
  6700. border-top:0px;
  6701. border-right:0px;
  6702. border-radius:0px;
  6703. border-bottom-right-radius:0px;
  6704. border-bottom-left-radius:0px;
  6705. filter:drop-shadow(none);
  6706. transition:none;
  6707. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6708. font-weight:400;
  6709. font-style:normal;
  6710. font-size:14px;
  6711. color:#7F7F7F;
  6712. line-height:30px;
  6713. }
  6714. #u18764 {
  6715. border-width:0px;
  6716. position:absolute;
  6717. left:2161px;
  6718. top:719px;
  6719. width:80px;
  6720. height:30px;
  6721. display:flex;
  6722. transition:none;
  6723. transform-origin:50% 50%;
  6724. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6725. font-weight:400;
  6726. font-style:normal;
  6727. font-size:14px;
  6728. color:#7F7F7F;
  6729. line-height:30px;
  6730. }
  6731. #u18764 .text {
  6732. position:absolute;
  6733. align-self:flex-start;
  6734. padding:0px 0px 0px 0px;
  6735. box-sizing:border-box;
  6736. width:100%;
  6737. }
  6738. #u18764_text {
  6739. border-width:0px;
  6740. word-wrap:break-word;
  6741. text-transform:none;
  6742. }
  6743. #u18765_div {
  6744. border-width:0px;
  6745. position:absolute;
  6746. left:0px;
  6747. top:0px;
  6748. width:121px;
  6749. height:30px;
  6750. background:inherit;
  6751. background-color:rgba(255, 255, 255, 0);
  6752. border-left:0px;
  6753. border-top:0px;
  6754. border-right:0px;
  6755. border-radius:0px;
  6756. border-bottom-right-radius:0px;
  6757. border-bottom-left-radius:0px;
  6758. filter:drop-shadow(none);
  6759. transition:none;
  6760. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6761. font-weight:400;
  6762. font-style:normal;
  6763. font-size:14px;
  6764. line-height:30px;
  6765. }
  6766. #u18765 {
  6767. border-width:0px;
  6768. position:absolute;
  6769. left:2241px;
  6770. top:719px;
  6771. width:121px;
  6772. height:30px;
  6773. display:flex;
  6774. transition:none;
  6775. transform-origin:50% 50%;
  6776. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6777. font-weight:400;
  6778. font-style:normal;
  6779. font-size:14px;
  6780. line-height:30px;
  6781. }
  6782. #u18765 .text {
  6783. position:absolute;
  6784. align-self:flex-start;
  6785. padding:0px 0px 0px 0px;
  6786. box-sizing:border-box;
  6787. width:100%;
  6788. }
  6789. #u18765_text {
  6790. border-width:0px;
  6791. white-space:nowrap;
  6792. text-transform:none;
  6793. }
  6794. #u18766_div {
  6795. border-width:0px;
  6796. position:absolute;
  6797. left:0px;
  6798. top:0px;
  6799. width:80px;
  6800. height:30px;
  6801. background:inherit;
  6802. background-color:rgba(255, 255, 255, 0);
  6803. border-left:0px;
  6804. border-top:0px;
  6805. border-right:0px;
  6806. border-radius:0px;
  6807. border-bottom-right-radius:0px;
  6808. border-bottom-left-radius:0px;
  6809. filter:drop-shadow(none);
  6810. transition:none;
  6811. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6812. font-weight:400;
  6813. font-style:normal;
  6814. font-size:14px;
  6815. color:#7F7F7F;
  6816. line-height:30px;
  6817. }
  6818. #u18766 {
  6819. border-width:0px;
  6820. position:absolute;
  6821. left:2600px;
  6822. top:719px;
  6823. width:80px;
  6824. height:30px;
  6825. display:flex;
  6826. transition:none;
  6827. transform-origin:50% 50%;
  6828. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6829. font-weight:400;
  6830. font-style:normal;
  6831. font-size:14px;
  6832. color:#7F7F7F;
  6833. line-height:30px;
  6834. }
  6835. #u18766 .text {
  6836. position:absolute;
  6837. align-self:flex-start;
  6838. padding:0px 0px 0px 0px;
  6839. box-sizing:border-box;
  6840. width:100%;
  6841. }
  6842. #u18766_text {
  6843. border-width:0px;
  6844. word-wrap:break-word;
  6845. text-transform:none;
  6846. }
  6847. #u18767_div {
  6848. border-width:0px;
  6849. position:absolute;
  6850. left:0px;
  6851. top:0px;
  6852. width:141px;
  6853. height:30px;
  6854. background:inherit;
  6855. background-color:rgba(255, 255, 255, 0);
  6856. border-left:0px;
  6857. border-top:0px;
  6858. border-right:0px;
  6859. border-radius:0px;
  6860. border-bottom-right-radius:0px;
  6861. border-bottom-left-radius:0px;
  6862. filter:drop-shadow(none);
  6863. transition:none;
  6864. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6865. font-weight:400;
  6866. font-style:normal;
  6867. font-size:14px;
  6868. line-height:30px;
  6869. }
  6870. #u18767 {
  6871. border-width:0px;
  6872. position:absolute;
  6873. left:2680px;
  6874. top:719px;
  6875. width:141px;
  6876. height:30px;
  6877. display:flex;
  6878. transition:none;
  6879. transform-origin:50% 50%;
  6880. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6881. font-weight:400;
  6882. font-style:normal;
  6883. font-size:14px;
  6884. line-height:30px;
  6885. }
  6886. #u18767 .text {
  6887. position:absolute;
  6888. align-self:flex-start;
  6889. padding:0px 0px 0px 0px;
  6890. box-sizing:border-box;
  6891. width:100%;
  6892. }
  6893. #u18767_text {
  6894. border-width:0px;
  6895. white-space:nowrap;
  6896. text-transform:none;
  6897. }
  6898. #u18768_div {
  6899. border-width:0px;
  6900. position:absolute;
  6901. left:0px;
  6902. top:0px;
  6903. width:71px;
  6904. height:30px;
  6905. background:inherit;
  6906. background-color:rgba(255, 255, 255, 0);
  6907. border-left:0px;
  6908. border-top:0px;
  6909. border-right:0px;
  6910. border-radius:0px;
  6911. border-bottom-right-radius:0px;
  6912. border-bottom-left-radius:0px;
  6913. filter:drop-shadow(none);
  6914. transition:none;
  6915. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6916. font-weight:400;
  6917. font-style:normal;
  6918. font-size:14px;
  6919. color:#7F7F7F;
  6920. line-height:30px;
  6921. }
  6922. #u18768 {
  6923. border-width:0px;
  6924. position:absolute;
  6925. left:2161px;
  6926. top:572px;
  6927. width:71px;
  6928. height:30px;
  6929. display:flex;
  6930. transition:none;
  6931. transform-origin:50% 50%;
  6932. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6933. font-weight:400;
  6934. font-style:normal;
  6935. font-size:14px;
  6936. color:#7F7F7F;
  6937. line-height:30px;
  6938. }
  6939. #u18768 .text {
  6940. position:absolute;
  6941. align-self:flex-start;
  6942. padding:0px 0px 0px 0px;
  6943. box-sizing:border-box;
  6944. width:100%;
  6945. }
  6946. #u18768_text {
  6947. border-width:0px;
  6948. white-space:nowrap;
  6949. text-transform:none;
  6950. }
  6951. #u18769 {
  6952. border-width:0px;
  6953. position:absolute;
  6954. left:2161px;
  6955. top:602px;
  6956. width:153px;
  6957. height:107px;
  6958. display:flex;
  6959. transition:none;
  6960. }
  6961. #u18769 .text {
  6962. position:absolute;
  6963. align-self:center;
  6964. padding:2px 2px 2px 2px;
  6965. box-sizing:border-box;
  6966. width:100%;
  6967. }
  6968. #u18769_img {
  6969. border-width:0px;
  6970. position:absolute;
  6971. left:0px;
  6972. top:0px;
  6973. width:153px;
  6974. height:107px;
  6975. }
  6976. #u18769_text {
  6977. border-width:0px;
  6978. word-wrap:break-word;
  6979. text-transform:none;
  6980. visibility:hidden;
  6981. }
  6982. #u18770 {
  6983. border-width:0px;
  6984. position:absolute;
  6985. left:2324px;
  6986. top:602px;
  6987. width:153px;
  6988. height:107px;
  6989. display:flex;
  6990. transition:none;
  6991. }
  6992. #u18770 .text {
  6993. position:absolute;
  6994. align-self:center;
  6995. padding:2px 2px 2px 2px;
  6996. box-sizing:border-box;
  6997. width:100%;
  6998. }
  6999. #u18770_img {
  7000. border-width:0px;
  7001. position:absolute;
  7002. left:0px;
  7003. top:0px;
  7004. width:153px;
  7005. height:107px;
  7006. }
  7007. #u18770_text {
  7008. border-width:0px;
  7009. word-wrap:break-word;
  7010. text-transform:none;
  7011. visibility:hidden;
  7012. }
  7013. #u18771 {
  7014. border-width:0px;
  7015. position:absolute;
  7016. left:2487px;
  7017. top:602px;
  7018. width:153px;
  7019. height:107px;
  7020. display:flex;
  7021. transition:none;
  7022. }
  7023. #u18771 .text {
  7024. position:absolute;
  7025. align-self:center;
  7026. padding:2px 2px 2px 2px;
  7027. box-sizing:border-box;
  7028. width:100%;
  7029. }
  7030. #u18771_img {
  7031. border-width:0px;
  7032. position:absolute;
  7033. left:0px;
  7034. top:0px;
  7035. width:153px;
  7036. height:107px;
  7037. }
  7038. #u18771_text {
  7039. border-width:0px;
  7040. word-wrap:break-word;
  7041. text-transform:none;
  7042. visibility:hidden;
  7043. }
  7044. #u18772 {
  7045. border-width:0px;
  7046. position:absolute;
  7047. left:2650px;
  7048. top:602px;
  7049. width:153px;
  7050. height:107px;
  7051. display:flex;
  7052. transition:none;
  7053. }
  7054. #u18772 .text {
  7055. position:absolute;
  7056. align-self:center;
  7057. padding:2px 2px 2px 2px;
  7058. box-sizing:border-box;
  7059. width:100%;
  7060. }
  7061. #u18772_img {
  7062. border-width:0px;
  7063. position:absolute;
  7064. left:0px;
  7065. top:0px;
  7066. width:153px;
  7067. height:107px;
  7068. }
  7069. #u18772_text {
  7070. border-width:0px;
  7071. word-wrap:break-word;
  7072. text-transform:none;
  7073. visibility:hidden;
  7074. }
  7075. #u18773 {
  7076. border-width:0px;
  7077. position:absolute;
  7078. left:0px;
  7079. top:0px;
  7080. width:0px;
  7081. height:0px;
  7082. }
  7083. #u18774_div {
  7084. border-width:0px;
  7085. position:absolute;
  7086. left:0px;
  7087. top:0px;
  7088. width:80px;
  7089. height:30px;
  7090. background:inherit;
  7091. background-color:rgba(255, 255, 255, 0);
  7092. border-left:0px;
  7093. border-top:0px;
  7094. border-right:0px;
  7095. border-radius:0px;
  7096. border-bottom-right-radius:0px;
  7097. border-bottom-left-radius:0px;
  7098. filter:drop-shadow(none);
  7099. transition:none;
  7100. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7101. font-weight:400;
  7102. font-style:normal;
  7103. font-size:14px;
  7104. color:#7F7F7F;
  7105. line-height:30px;
  7106. }
  7107. #u18774 {
  7108. border-width:0px;
  7109. position:absolute;
  7110. left:3186px;
  7111. top:215px;
  7112. width:80px;
  7113. height:30px;
  7114. display:flex;
  7115. transition:none;
  7116. transform-origin:50% 50%;
  7117. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7118. font-weight:400;
  7119. font-style:normal;
  7120. font-size:14px;
  7121. color:#7F7F7F;
  7122. line-height:30px;
  7123. }
  7124. #u18774 .text {
  7125. position:absolute;
  7126. align-self:flex-start;
  7127. padding:0px 0px 0px 0px;
  7128. box-sizing:border-box;
  7129. width:100%;
  7130. }
  7131. #u18774_text {
  7132. border-width:0px;
  7133. word-wrap:break-word;
  7134. text-transform:none;
  7135. }
  7136. #u18775_div {
  7137. border-width:0px;
  7138. position:absolute;
  7139. left:0px;
  7140. top:0px;
  7141. width:85px;
  7142. height:30px;
  7143. background:inherit;
  7144. background-color:rgba(255, 255, 255, 0);
  7145. border-left:0px;
  7146. border-top:0px;
  7147. border-right:0px;
  7148. border-radius:0px;
  7149. border-bottom-right-radius:0px;
  7150. border-bottom-left-radius:0px;
  7151. filter:drop-shadow(none);
  7152. transition:none;
  7153. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7154. font-weight:400;
  7155. font-style:normal;
  7156. font-size:14px;
  7157. line-height:30px;
  7158. }
  7159. #u18775 {
  7160. border-width:0px;
  7161. position:absolute;
  7162. left:3266px;
  7163. top:215px;
  7164. width:85px;
  7165. height:30px;
  7166. display:flex;
  7167. transition:none;
  7168. transform-origin:50% 50%;
  7169. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7170. font-weight:400;
  7171. font-style:normal;
  7172. font-size:14px;
  7173. line-height:30px;
  7174. }
  7175. #u18775 .text {
  7176. position:absolute;
  7177. align-self:flex-start;
  7178. padding:0px 0px 0px 0px;
  7179. box-sizing:border-box;
  7180. width:100%;
  7181. }
  7182. #u18775_text {
  7183. border-width:0px;
  7184. white-space:nowrap;
  7185. text-transform:none;
  7186. }
  7187. #u18776_div {
  7188. border-width:0px;
  7189. position:absolute;
  7190. left:0px;
  7191. top:0px;
  7192. width:71px;
  7193. height:30px;
  7194. background:inherit;
  7195. background-color:rgba(255, 255, 255, 0);
  7196. border-left:0px;
  7197. border-top:0px;
  7198. border-right:0px;
  7199. border-radius:0px;
  7200. border-bottom-right-radius:0px;
  7201. border-bottom-left-radius:0px;
  7202. filter:drop-shadow(none);
  7203. transition:none;
  7204. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7205. font-weight:400;
  7206. font-style:normal;
  7207. font-size:14px;
  7208. color:#7F7F7F;
  7209. line-height:30px;
  7210. }
  7211. #u18776 {
  7212. border-width:0px;
  7213. position:absolute;
  7214. left:3186px;
  7215. top:255px;
  7216. width:71px;
  7217. height:30px;
  7218. display:flex;
  7219. transition:none;
  7220. transform-origin:50% 50%;
  7221. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7222. font-weight:400;
  7223. font-style:normal;
  7224. font-size:14px;
  7225. color:#7F7F7F;
  7226. line-height:30px;
  7227. }
  7228. #u18776 .text {
  7229. position:absolute;
  7230. align-self:flex-start;
  7231. padding:0px 0px 0px 0px;
  7232. box-sizing:border-box;
  7233. width:100%;
  7234. }
  7235. #u18776_text {
  7236. border-width:0px;
  7237. white-space:nowrap;
  7238. text-transform:none;
  7239. }
  7240. #u18777_div {
  7241. border-width:0px;
  7242. position:absolute;
  7243. left:0px;
  7244. top:0px;
  7245. width:29px;
  7246. height:30px;
  7247. background:inherit;
  7248. background-color:rgba(255, 255, 255, 0);
  7249. border-left:0px;
  7250. border-top:0px;
  7251. border-right:0px;
  7252. border-radius:0px;
  7253. border-bottom-right-radius:0px;
  7254. border-bottom-left-radius:0px;
  7255. filter:drop-shadow(none);
  7256. transition:none;
  7257. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7258. font-weight:400;
  7259. font-style:normal;
  7260. font-size:14px;
  7261. line-height:30px;
  7262. }
  7263. #u18777 {
  7264. border-width:0px;
  7265. position:absolute;
  7266. left:3266px;
  7267. top:255px;
  7268. width:29px;
  7269. height:30px;
  7270. display:flex;
  7271. transition:none;
  7272. transform-origin:50% 50%;
  7273. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7274. font-weight:400;
  7275. font-style:normal;
  7276. font-size:14px;
  7277. line-height:30px;
  7278. }
  7279. #u18777 .text {
  7280. position:absolute;
  7281. align-self:flex-start;
  7282. padding:0px 0px 0px 0px;
  7283. box-sizing:border-box;
  7284. width:100%;
  7285. }
  7286. #u18777_text {
  7287. border-width:0px;
  7288. white-space:nowrap;
  7289. text-transform:none;
  7290. }
  7291. #u18778_div {
  7292. border-width:0px;
  7293. position:absolute;
  7294. left:0px;
  7295. top:0px;
  7296. width:43px;
  7297. height:30px;
  7298. background:inherit;
  7299. background-color:rgba(255, 255, 255, 0);
  7300. border-left:0px;
  7301. border-top:0px;
  7302. border-right:0px;
  7303. border-radius:0px;
  7304. border-bottom-right-radius:0px;
  7305. border-bottom-left-radius:0px;
  7306. filter:drop-shadow(none);
  7307. transition:none;
  7308. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7309. font-weight:400;
  7310. font-style:normal;
  7311. font-size:14px;
  7312. color:#7F7F7F;
  7313. line-height:30px;
  7314. }
  7315. #u18778 {
  7316. border-width:0px;
  7317. position:absolute;
  7318. left:3624px;
  7319. top:255px;
  7320. width:43px;
  7321. height:30px;
  7322. display:flex;
  7323. transition:none;
  7324. transform-origin:50% 50%;
  7325. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7326. font-weight:400;
  7327. font-style:normal;
  7328. font-size:14px;
  7329. color:#7F7F7F;
  7330. line-height:30px;
  7331. }
  7332. #u18778 .text {
  7333. position:absolute;
  7334. align-self:flex-start;
  7335. padding:0px 0px 0px 0px;
  7336. box-sizing:border-box;
  7337. width:100%;
  7338. }
  7339. #u18778_text {
  7340. border-width:0px;
  7341. white-space:nowrap;
  7342. text-transform:none;
  7343. }
  7344. #u18779_div {
  7345. border-width:0px;
  7346. position:absolute;
  7347. left:0px;
  7348. top:0px;
  7349. width:15px;
  7350. height:30px;
  7351. background:inherit;
  7352. background-color:rgba(255, 255, 255, 0);
  7353. border-left:0px;
  7354. border-top:0px;
  7355. border-right:0px;
  7356. border-radius:0px;
  7357. border-bottom-right-radius:0px;
  7358. border-bottom-left-radius:0px;
  7359. filter:drop-shadow(none);
  7360. transition:none;
  7361. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7362. font-weight:400;
  7363. font-style:normal;
  7364. font-size:14px;
  7365. line-height:30px;
  7366. }
  7367. #u18779 {
  7368. border-width:0px;
  7369. position:absolute;
  7370. left:3704px;
  7371. top:255px;
  7372. width:15px;
  7373. height:30px;
  7374. display:flex;
  7375. transition:none;
  7376. transform-origin:50% 50%;
  7377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7378. font-weight:400;
  7379. font-style:normal;
  7380. font-size:14px;
  7381. line-height:30px;
  7382. }
  7383. #u18779 .text {
  7384. position:absolute;
  7385. align-self:flex-start;
  7386. padding:0px 0px 0px 0px;
  7387. box-sizing:border-box;
  7388. width:100%;
  7389. }
  7390. #u18779_text {
  7391. border-width:0px;
  7392. white-space:nowrap;
  7393. text-transform:none;
  7394. }
  7395. #u18780_div {
  7396. border-width:0px;
  7397. position:absolute;
  7398. left:0px;
  7399. top:0px;
  7400. width:71px;
  7401. height:30px;
  7402. background:inherit;
  7403. background-color:rgba(255, 255, 255, 0);
  7404. border-left:0px;
  7405. border-top:0px;
  7406. border-right:0px;
  7407. border-radius:0px;
  7408. border-bottom-right-radius:0px;
  7409. border-bottom-left-radius:0px;
  7410. filter:drop-shadow(none);
  7411. transition:none;
  7412. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7413. font-weight:400;
  7414. font-style:normal;
  7415. font-size:14px;
  7416. color:#7F7F7F;
  7417. line-height:30px;
  7418. }
  7419. #u18780 {
  7420. border-width:0px;
  7421. position:absolute;
  7422. left:3186px;
  7423. top:295px;
  7424. width:71px;
  7425. height:30px;
  7426. display:flex;
  7427. transition:none;
  7428. transform-origin:50% 50%;
  7429. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7430. font-weight:400;
  7431. font-style:normal;
  7432. font-size:14px;
  7433. color:#7F7F7F;
  7434. line-height:30px;
  7435. }
  7436. #u18780 .text {
  7437. position:absolute;
  7438. align-self:flex-start;
  7439. padding:0px 0px 0px 0px;
  7440. box-sizing:border-box;
  7441. width:100%;
  7442. }
  7443. #u18780_text {
  7444. border-width:0px;
  7445. white-space:nowrap;
  7446. text-transform:none;
  7447. }
  7448. #u18781_div {
  7449. border-width:0px;
  7450. position:absolute;
  7451. left:0px;
  7452. top:0px;
  7453. width:43px;
  7454. height:30px;
  7455. background:inherit;
  7456. background-color:rgba(255, 255, 255, 0);
  7457. border-left:0px;
  7458. border-top:0px;
  7459. border-right:0px;
  7460. border-radius:0px;
  7461. border-bottom-right-radius:0px;
  7462. border-bottom-left-radius:0px;
  7463. filter:drop-shadow(none);
  7464. transition:none;
  7465. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7466. font-weight:400;
  7467. font-style:normal;
  7468. font-size:14px;
  7469. line-height:30px;
  7470. }
  7471. #u18781 {
  7472. border-width:0px;
  7473. position:absolute;
  7474. left:3266px;
  7475. top:295px;
  7476. width:43px;
  7477. height:30px;
  7478. display:flex;
  7479. transition:none;
  7480. transform-origin:50% 50%;
  7481. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7482. font-weight:400;
  7483. font-style:normal;
  7484. font-size:14px;
  7485. line-height:30px;
  7486. }
  7487. #u18781 .text {
  7488. position:absolute;
  7489. align-self:flex-start;
  7490. padding:0px 0px 0px 0px;
  7491. box-sizing:border-box;
  7492. width:100%;
  7493. }
  7494. #u18781_text {
  7495. border-width:0px;
  7496. white-space:nowrap;
  7497. text-transform:none;
  7498. }
  7499. #u18782_div {
  7500. border-width:0px;
  7501. position:absolute;
  7502. left:0px;
  7503. top:0px;
  7504. width:71px;
  7505. height:30px;
  7506. background:inherit;
  7507. background-color:rgba(255, 255, 255, 0);
  7508. border-left:0px;
  7509. border-top:0px;
  7510. border-right:0px;
  7511. border-radius:0px;
  7512. border-bottom-right-radius:0px;
  7513. border-bottom-left-radius:0px;
  7514. filter:drop-shadow(none);
  7515. transition:none;
  7516. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7517. font-weight:400;
  7518. font-style:normal;
  7519. font-size:14px;
  7520. color:#7F7F7F;
  7521. line-height:30px;
  7522. }
  7523. #u18782 {
  7524. border-width:0px;
  7525. position:absolute;
  7526. left:3624px;
  7527. top:295px;
  7528. width:71px;
  7529. height:30px;
  7530. display:flex;
  7531. transition:none;
  7532. transform-origin:50% 50%;
  7533. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7534. font-weight:400;
  7535. font-style:normal;
  7536. font-size:14px;
  7537. color:#7F7F7F;
  7538. line-height:30px;
  7539. }
  7540. #u18782 .text {
  7541. position:absolute;
  7542. align-self:flex-start;
  7543. padding:0px 0px 0px 0px;
  7544. box-sizing:border-box;
  7545. width:100%;
  7546. }
  7547. #u18782_text {
  7548. border-width:0px;
  7549. white-space:nowrap;
  7550. text-transform:none;
  7551. }
  7552. #u18783_div {
  7553. border-width:0px;
  7554. position:absolute;
  7555. left:0px;
  7556. top:0px;
  7557. width:57px;
  7558. height:30px;
  7559. background:inherit;
  7560. background-color:rgba(255, 255, 255, 0);
  7561. border-left:0px;
  7562. border-top:0px;
  7563. border-right:0px;
  7564. border-radius:0px;
  7565. border-bottom-right-radius:0px;
  7566. border-bottom-left-radius:0px;
  7567. filter:drop-shadow(none);
  7568. transition:none;
  7569. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7570. font-weight:400;
  7571. font-style:normal;
  7572. font-size:14px;
  7573. line-height:30px;
  7574. }
  7575. #u18783 {
  7576. border-width:0px;
  7577. position:absolute;
  7578. left:3704px;
  7579. top:295px;
  7580. width:57px;
  7581. height:30px;
  7582. display:flex;
  7583. transition:none;
  7584. transform-origin:50% 50%;
  7585. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7586. font-weight:400;
  7587. font-style:normal;
  7588. font-size:14px;
  7589. line-height:30px;
  7590. }
  7591. #u18783 .text {
  7592. position:absolute;
  7593. align-self:flex-start;
  7594. padding:0px 0px 0px 0px;
  7595. box-sizing:border-box;
  7596. width:100%;
  7597. }
  7598. #u18783_text {
  7599. border-width:0px;
  7600. white-space:nowrap;
  7601. text-transform:none;
  7602. }
  7603. #u18784_div {
  7604. border-width:0px;
  7605. position:absolute;
  7606. left:0px;
  7607. top:0px;
  7608. width:71px;
  7609. height:30px;
  7610. background:inherit;
  7611. background-color:rgba(255, 255, 255, 0);
  7612. border-left:0px;
  7613. border-top:0px;
  7614. border-right:0px;
  7615. border-radius:0px;
  7616. border-bottom-right-radius:0px;
  7617. border-bottom-left-radius:0px;
  7618. filter:drop-shadow(none);
  7619. transition:none;
  7620. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7621. font-weight:400;
  7622. font-style:normal;
  7623. font-size:14px;
  7624. color:#7F7F7F;
  7625. line-height:30px;
  7626. }
  7627. #u18784 {
  7628. border-width:0px;
  7629. position:absolute;
  7630. left:3186px;
  7631. top:335px;
  7632. width:71px;
  7633. height:30px;
  7634. display:flex;
  7635. transition:none;
  7636. transform-origin:50% 50%;
  7637. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7638. font-weight:400;
  7639. font-style:normal;
  7640. font-size:14px;
  7641. color:#7F7F7F;
  7642. line-height:30px;
  7643. }
  7644. #u18784 .text {
  7645. position:absolute;
  7646. align-self:flex-start;
  7647. padding:0px 0px 0px 0px;
  7648. box-sizing:border-box;
  7649. width:100%;
  7650. }
  7651. #u18784_text {
  7652. border-width:0px;
  7653. white-space:nowrap;
  7654. text-transform:none;
  7655. }
  7656. #u18785_div {
  7657. border-width:0px;
  7658. position:absolute;
  7659. left:0px;
  7660. top:0px;
  7661. width:82px;
  7662. height:30px;
  7663. background:inherit;
  7664. background-color:rgba(255, 255, 255, 0);
  7665. border-left:0px;
  7666. border-top:0px;
  7667. border-right:0px;
  7668. border-radius:0px;
  7669. border-bottom-right-radius:0px;
  7670. border-bottom-left-radius:0px;
  7671. filter:drop-shadow(none);
  7672. transition:none;
  7673. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7674. font-weight:400;
  7675. font-style:normal;
  7676. font-size:14px;
  7677. line-height:30px;
  7678. }
  7679. #u18785 {
  7680. border-width:0px;
  7681. position:absolute;
  7682. left:3266px;
  7683. top:335px;
  7684. width:82px;
  7685. height:30px;
  7686. display:flex;
  7687. transition:none;
  7688. transform-origin:50% 50%;
  7689. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7690. font-weight:400;
  7691. font-style:normal;
  7692. font-size:14px;
  7693. line-height:30px;
  7694. }
  7695. #u18785 .text {
  7696. position:absolute;
  7697. align-self:flex-start;
  7698. padding:0px 0px 0px 0px;
  7699. box-sizing:border-box;
  7700. width:100%;
  7701. }
  7702. #u18785_text {
  7703. border-width:0px;
  7704. white-space:nowrap;
  7705. text-transform:none;
  7706. }
  7707. #u18786_div {
  7708. border-width:0px;
  7709. position:absolute;
  7710. left:0px;
  7711. top:0px;
  7712. width:71px;
  7713. height:30px;
  7714. background:inherit;
  7715. background-color:rgba(255, 255, 255, 0);
  7716. border-left:0px;
  7717. border-top:0px;
  7718. border-right:0px;
  7719. border-radius:0px;
  7720. border-bottom-right-radius:0px;
  7721. border-bottom-left-radius:0px;
  7722. filter:drop-shadow(none);
  7723. transition:none;
  7724. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7725. font-weight:400;
  7726. font-style:normal;
  7727. font-size:14px;
  7728. color:#7F7F7F;
  7729. line-height:30px;
  7730. }
  7731. #u18786 {
  7732. border-width:0px;
  7733. position:absolute;
  7734. left:3624px;
  7735. top:215px;
  7736. width:71px;
  7737. height:30px;
  7738. display:flex;
  7739. transition:none;
  7740. transform-origin:50% 50%;
  7741. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7742. font-weight:400;
  7743. font-style:normal;
  7744. font-size:14px;
  7745. color:#7F7F7F;
  7746. line-height:30px;
  7747. }
  7748. #u18786 .text {
  7749. position:absolute;
  7750. align-self:flex-start;
  7751. padding:0px 0px 0px 0px;
  7752. box-sizing:border-box;
  7753. width:100%;
  7754. }
  7755. #u18786_text {
  7756. border-width:0px;
  7757. white-space:nowrap;
  7758. text-transform:none;
  7759. }
  7760. #u18787_div {
  7761. border-width:0px;
  7762. position:absolute;
  7763. left:0px;
  7764. top:0px;
  7765. width:57px;
  7766. height:30px;
  7767. background:inherit;
  7768. background-color:rgba(255, 255, 255, 0);
  7769. border-left:0px;
  7770. border-top:0px;
  7771. border-right:0px;
  7772. border-radius:0px;
  7773. border-bottom-right-radius:0px;
  7774. border-bottom-left-radius:0px;
  7775. filter:drop-shadow(none);
  7776. transition:none;
  7777. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7778. font-weight:400;
  7779. font-style:normal;
  7780. font-size:14px;
  7781. line-height:30px;
  7782. }
  7783. #u18787 {
  7784. border-width:0px;
  7785. position:absolute;
  7786. left:3704px;
  7787. top:215px;
  7788. width:57px;
  7789. height:30px;
  7790. display:flex;
  7791. transition:none;
  7792. transform-origin:50% 50%;
  7793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7794. font-weight:400;
  7795. font-style:normal;
  7796. font-size:14px;
  7797. line-height:30px;
  7798. }
  7799. #u18787 .text {
  7800. position:absolute;
  7801. align-self:flex-start;
  7802. padding:0px 0px 0px 0px;
  7803. box-sizing:border-box;
  7804. width:100%;
  7805. }
  7806. #u18787_text {
  7807. border-width:0px;
  7808. white-space:nowrap;
  7809. text-transform:none;
  7810. }
  7811. #u18788_div {
  7812. border-width:0px;
  7813. position:absolute;
  7814. left:0px;
  7815. top:0px;
  7816. width:57px;
  7817. height:30px;
  7818. background:inherit;
  7819. background-color:rgba(255, 255, 255, 0);
  7820. border-left:0px;
  7821. border-top:0px;
  7822. border-right:0px;
  7823. border-radius:0px;
  7824. border-bottom-right-radius:0px;
  7825. border-bottom-left-radius:0px;
  7826. filter:drop-shadow(none);
  7827. transition:none;
  7828. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7829. font-weight:400;
  7830. font-style:normal;
  7831. font-size:14px;
  7832. color:#7F7F7F;
  7833. line-height:30px;
  7834. }
  7835. #u18788 {
  7836. border-width:0px;
  7837. position:absolute;
  7838. left:3186px;
  7839. top:425px;
  7840. width:57px;
  7841. height:30px;
  7842. display:flex;
  7843. transition:none;
  7844. transform-origin:50% 50%;
  7845. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7846. font-weight:400;
  7847. font-style:normal;
  7848. font-size:14px;
  7849. color:#7F7F7F;
  7850. line-height:30px;
  7851. }
  7852. #u18788 .text {
  7853. position:absolute;
  7854. align-self:flex-start;
  7855. padding:0px 0px 0px 0px;
  7856. box-sizing:border-box;
  7857. width:100%;
  7858. }
  7859. #u18788_text {
  7860. border-width:0px;
  7861. white-space:nowrap;
  7862. text-transform:none;
  7863. }
  7864. #u18789 {
  7865. border-width:0px;
  7866. position:absolute;
  7867. left:3186px;
  7868. top:455px;
  7869. width:153px;
  7870. height:107px;
  7871. display:flex;
  7872. transition:none;
  7873. }
  7874. #u18789 .text {
  7875. position:absolute;
  7876. align-self:center;
  7877. padding:2px 2px 2px 2px;
  7878. box-sizing:border-box;
  7879. width:100%;
  7880. }
  7881. #u18789_img {
  7882. border-width:0px;
  7883. position:absolute;
  7884. left:0px;
  7885. top:0px;
  7886. width:153px;
  7887. height:107px;
  7888. }
  7889. #u18789_text {
  7890. border-width:0px;
  7891. word-wrap:break-word;
  7892. text-transform:none;
  7893. visibility:hidden;
  7894. }
  7895. #u18790_div {
  7896. border-width:0px;
  7897. position:absolute;
  7898. left:0px;
  7899. top:0px;
  7900. width:71px;
  7901. height:30px;
  7902. background:inherit;
  7903. background-color:rgba(255, 255, 255, 0);
  7904. border-left:0px;
  7905. border-top:0px;
  7906. border-right:0px;
  7907. border-radius:0px;
  7908. border-bottom-right-radius:0px;
  7909. border-bottom-left-radius:0px;
  7910. filter:drop-shadow(none);
  7911. transition:none;
  7912. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7913. font-weight:400;
  7914. font-style:normal;
  7915. font-size:14px;
  7916. color:#7F7F7F;
  7917. line-height:30px;
  7918. }
  7919. #u18790 {
  7920. border-width:0px;
  7921. position:absolute;
  7922. left:3604px;
  7923. top:430px;
  7924. width:71px;
  7925. height:30px;
  7926. display:flex;
  7927. transition:none;
  7928. transform-origin:50% 50%;
  7929. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7930. font-weight:400;
  7931. font-style:normal;
  7932. font-size:14px;
  7933. color:#7F7F7F;
  7934. line-height:30px;
  7935. }
  7936. #u18790 .text {
  7937. position:absolute;
  7938. align-self:flex-start;
  7939. padding:0px 0px 0px 0px;
  7940. box-sizing:border-box;
  7941. width:100%;
  7942. }
  7943. #u18790_text {
  7944. border-width:0px;
  7945. white-space:nowrap;
  7946. text-transform:none;
  7947. }
  7948. #u18791 {
  7949. border-width:0px;
  7950. position:absolute;
  7951. left:3604px;
  7952. top:460px;
  7953. width:146px;
  7954. height:102px;
  7955. display:flex;
  7956. transition:none;
  7957. }
  7958. #u18791 .text {
  7959. position:absolute;
  7960. align-self:center;
  7961. padding:2px 2px 2px 2px;
  7962. box-sizing:border-box;
  7963. width:100%;
  7964. }
  7965. #u18791_img {
  7966. border-width:0px;
  7967. position:absolute;
  7968. left:0px;
  7969. top:0px;
  7970. width:146px;
  7971. height:102px;
  7972. }
  7973. #u18791_text {
  7974. border-width:0px;
  7975. word-wrap:break-word;
  7976. text-transform:none;
  7977. visibility:hidden;
  7978. }
  7979. #u18792 {
  7980. border-width:0px;
  7981. position:absolute;
  7982. left:3760px;
  7983. top:460px;
  7984. width:146px;
  7985. height:102px;
  7986. display:flex;
  7987. transition:none;
  7988. }
  7989. #u18792 .text {
  7990. position:absolute;
  7991. align-self:center;
  7992. padding:2px 2px 2px 2px;
  7993. box-sizing:border-box;
  7994. width:100%;
  7995. }
  7996. #u18792_img {
  7997. border-width:0px;
  7998. position:absolute;
  7999. left:0px;
  8000. top:0px;
  8001. width:146px;
  8002. height:102px;
  8003. }
  8004. #u18792_text {
  8005. border-width:0px;
  8006. word-wrap:break-word;
  8007. text-transform:none;
  8008. visibility:hidden;
  8009. }
  8010. #u18793_div {
  8011. border-width:0px;
  8012. position:absolute;
  8013. left:0px;
  8014. top:0px;
  8015. width:71px;
  8016. height:30px;
  8017. background:inherit;
  8018. background-color:rgba(255, 255, 255, 0);
  8019. border-left:0px;
  8020. border-top:0px;
  8021. border-right:0px;
  8022. border-radius:0px;
  8023. border-bottom-right-radius:0px;
  8024. border-bottom-left-radius:0px;
  8025. filter:drop-shadow(none);
  8026. transition:none;
  8027. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8028. font-weight:400;
  8029. font-style:normal;
  8030. font-size:14px;
  8031. color:#7F7F7F;
  8032. line-height:30px;
  8033. }
  8034. #u18793 {
  8035. border-width:0px;
  8036. position:absolute;
  8037. left:3186px;
  8038. top:375px;
  8039. width:71px;
  8040. height:30px;
  8041. display:flex;
  8042. transition:none;
  8043. transform-origin:50% 50%;
  8044. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8045. font-weight:400;
  8046. font-style:normal;
  8047. font-size:14px;
  8048. color:#7F7F7F;
  8049. line-height:30px;
  8050. }
  8051. #u18793 .text {
  8052. position:absolute;
  8053. align-self:flex-start;
  8054. padding:0px 0px 0px 0px;
  8055. box-sizing:border-box;
  8056. width:100%;
  8057. }
  8058. #u18793_text {
  8059. border-width:0px;
  8060. white-space:nowrap;
  8061. text-transform:none;
  8062. }
  8063. #u18794_div {
  8064. border-width:0px;
  8065. position:absolute;
  8066. left:0px;
  8067. top:0px;
  8068. width:337px;
  8069. height:30px;
  8070. background:inherit;
  8071. background-color:rgba(255, 255, 255, 0);
  8072. border-left:0px;
  8073. border-top:0px;
  8074. border-right:0px;
  8075. border-radius:0px;
  8076. border-bottom-right-radius:0px;
  8077. border-bottom-left-radius:0px;
  8078. filter:drop-shadow(none);
  8079. transition:none;
  8080. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8081. font-weight:400;
  8082. font-style:normal;
  8083. font-size:14px;
  8084. line-height:30px;
  8085. }
  8086. #u18794 {
  8087. border-width:0px;
  8088. position:absolute;
  8089. left:3266px;
  8090. top:375px;
  8091. width:337px;
  8092. height:30px;
  8093. display:flex;
  8094. transition:none;
  8095. transform-origin:50% 50%;
  8096. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8097. font-weight:400;
  8098. font-style:normal;
  8099. font-size:14px;
  8100. line-height:30px;
  8101. }
  8102. #u18794 .text {
  8103. position:absolute;
  8104. align-self:flex-start;
  8105. padding:0px 0px 0px 0px;
  8106. box-sizing:border-box;
  8107. width:100%;
  8108. }
  8109. #u18794_text {
  8110. border-width:0px;
  8111. white-space:nowrap;
  8112. text-transform:none;
  8113. }
  8114. #u18795_div {
  8115. border-width:0px;
  8116. position:absolute;
  8117. left:0px;
  8118. top:0px;
  8119. width:99px;
  8120. height:30px;
  8121. background:inherit;
  8122. background-color:rgba(255, 255, 255, 0);
  8123. border-left:0px;
  8124. border-top:0px;
  8125. border-right:0px;
  8126. border-radius:0px;
  8127. border-bottom-right-radius:0px;
  8128. border-bottom-left-radius:0px;
  8129. filter:drop-shadow(none);
  8130. transition:none;
  8131. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8132. font-weight:400;
  8133. font-style:normal;
  8134. font-size:14px;
  8135. color:#7F7F7F;
  8136. line-height:30px;
  8137. }
  8138. #u18795 {
  8139. border-width:0px;
  8140. position:absolute;
  8141. left:3624px;
  8142. top:335px;
  8143. width:99px;
  8144. height:30px;
  8145. display:flex;
  8146. transition:none;
  8147. transform-origin:50% 50%;
  8148. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8149. font-weight:400;
  8150. font-style:normal;
  8151. font-size:14px;
  8152. color:#7F7F7F;
  8153. line-height:30px;
  8154. }
  8155. #u18795 .text {
  8156. position:absolute;
  8157. align-self:flex-start;
  8158. padding:0px 0px 0px 0px;
  8159. box-sizing:border-box;
  8160. width:100%;
  8161. }
  8162. #u18795_text {
  8163. border-width:0px;
  8164. white-space:nowrap;
  8165. text-transform:none;
  8166. }
  8167. #u18796_div {
  8168. border-width:0px;
  8169. position:absolute;
  8170. left:0px;
  8171. top:0px;
  8172. width:169px;
  8173. height:30px;
  8174. background:inherit;
  8175. background-color:rgba(255, 255, 255, 0);
  8176. border-left:0px;
  8177. border-top:0px;
  8178. border-right:0px;
  8179. border-radius:0px;
  8180. border-bottom-right-radius:0px;
  8181. border-bottom-left-radius:0px;
  8182. filter:drop-shadow(none);
  8183. transition:none;
  8184. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8185. font-weight:400;
  8186. font-style:normal;
  8187. font-size:14px;
  8188. line-height:30px;
  8189. }
  8190. #u18796 {
  8191. border-width:0px;
  8192. position:absolute;
  8193. left:3723px;
  8194. top:335px;
  8195. width:169px;
  8196. height:30px;
  8197. display:flex;
  8198. transition:none;
  8199. transform-origin:50% 50%;
  8200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8201. font-weight:400;
  8202. font-style:normal;
  8203. font-size:14px;
  8204. line-height:30px;
  8205. }
  8206. #u18796 .text {
  8207. position:absolute;
  8208. align-self:flex-start;
  8209. padding:0px 0px 0px 0px;
  8210. box-sizing:border-box;
  8211. width:100%;
  8212. }
  8213. #u18796_text {
  8214. border-width:0px;
  8215. white-space:nowrap;
  8216. text-transform:none;
  8217. }
  8218. #u18797_div {
  8219. border-width:0px;
  8220. position:absolute;
  8221. left:0px;
  8222. top:0px;
  8223. width:80px;
  8224. height:30px;
  8225. background:inherit;
  8226. background-color:rgba(255, 255, 255, 0);
  8227. border-left:0px;
  8228. border-top:0px;
  8229. border-right:0px;
  8230. border-radius:0px;
  8231. border-bottom-right-radius:0px;
  8232. border-bottom-left-radius:0px;
  8233. filter:drop-shadow(none);
  8234. transition:none;
  8235. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8236. font-weight:400;
  8237. font-style:normal;
  8238. font-size:14px;
  8239. color:#7F7F7F;
  8240. line-height:30px;
  8241. }
  8242. #u18797 {
  8243. border-width:0px;
  8244. position:absolute;
  8245. left:3191px;
  8246. top:719px;
  8247. width:80px;
  8248. height:30px;
  8249. display:flex;
  8250. transition:none;
  8251. transform-origin:50% 50%;
  8252. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8253. font-weight:400;
  8254. font-style:normal;
  8255. font-size:14px;
  8256. color:#7F7F7F;
  8257. line-height:30px;
  8258. }
  8259. #u18797 .text {
  8260. position:absolute;
  8261. align-self:flex-start;
  8262. padding:0px 0px 0px 0px;
  8263. box-sizing:border-box;
  8264. width:100%;
  8265. }
  8266. #u18797_text {
  8267. border-width:0px;
  8268. word-wrap:break-word;
  8269. text-transform:none;
  8270. }
  8271. #u18798_div {
  8272. border-width:0px;
  8273. position:absolute;
  8274. left:0px;
  8275. top:0px;
  8276. width:121px;
  8277. height:30px;
  8278. background:inherit;
  8279. background-color:rgba(255, 255, 255, 0);
  8280. border-left:0px;
  8281. border-top:0px;
  8282. border-right:0px;
  8283. border-radius:0px;
  8284. border-bottom-right-radius:0px;
  8285. border-bottom-left-radius:0px;
  8286. filter:drop-shadow(none);
  8287. transition:none;
  8288. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8289. font-weight:400;
  8290. font-style:normal;
  8291. font-size:14px;
  8292. line-height:30px;
  8293. }
  8294. #u18798 {
  8295. border-width:0px;
  8296. position:absolute;
  8297. left:3271px;
  8298. top:719px;
  8299. width:121px;
  8300. height:30px;
  8301. display:flex;
  8302. transition:none;
  8303. transform-origin:50% 50%;
  8304. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8305. font-weight:400;
  8306. font-style:normal;
  8307. font-size:14px;
  8308. line-height:30px;
  8309. }
  8310. #u18798 .text {
  8311. position:absolute;
  8312. align-self:flex-start;
  8313. padding:0px 0px 0px 0px;
  8314. box-sizing:border-box;
  8315. width:100%;
  8316. }
  8317. #u18798_text {
  8318. border-width:0px;
  8319. white-space:nowrap;
  8320. text-transform:none;
  8321. }
  8322. #u18799_div {
  8323. border-width:0px;
  8324. position:absolute;
  8325. left:0px;
  8326. top:0px;
  8327. width:80px;
  8328. height:30px;
  8329. background:inherit;
  8330. background-color:rgba(255, 255, 255, 0);
  8331. border-left:0px;
  8332. border-top:0px;
  8333. border-right:0px;
  8334. border-radius:0px;
  8335. border-bottom-right-radius:0px;
  8336. border-bottom-left-radius:0px;
  8337. filter:drop-shadow(none);
  8338. transition:none;
  8339. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8340. font-weight:400;
  8341. font-style:normal;
  8342. font-size:14px;
  8343. color:#7F7F7F;
  8344. line-height:30px;
  8345. }
  8346. #u18799 {
  8347. border-width:0px;
  8348. position:absolute;
  8349. left:3630px;
  8350. top:719px;
  8351. width:80px;
  8352. height:30px;
  8353. display:flex;
  8354. transition:none;
  8355. transform-origin:50% 50%;
  8356. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8357. font-weight:400;
  8358. font-style:normal;
  8359. font-size:14px;
  8360. color:#7F7F7F;
  8361. line-height:30px;
  8362. }
  8363. #u18799 .text {
  8364. position:absolute;
  8365. align-self:flex-start;
  8366. padding:0px 0px 0px 0px;
  8367. box-sizing:border-box;
  8368. width:100%;
  8369. }
  8370. #u18799_text {
  8371. border-width:0px;
  8372. word-wrap:break-word;
  8373. text-transform:none;
  8374. }
  8375. #u18800_div {
  8376. border-width:0px;
  8377. position:absolute;
  8378. left:0px;
  8379. top:0px;
  8380. width:141px;
  8381. height:30px;
  8382. background:inherit;
  8383. background-color:rgba(255, 255, 255, 0);
  8384. border-left:0px;
  8385. border-top:0px;
  8386. border-right:0px;
  8387. border-radius:0px;
  8388. border-bottom-right-radius:0px;
  8389. border-bottom-left-radius:0px;
  8390. filter:drop-shadow(none);
  8391. transition:none;
  8392. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8393. font-weight:400;
  8394. font-style:normal;
  8395. font-size:14px;
  8396. line-height:30px;
  8397. }
  8398. #u18800 {
  8399. border-width:0px;
  8400. position:absolute;
  8401. left:3710px;
  8402. top:719px;
  8403. width:141px;
  8404. height:30px;
  8405. display:flex;
  8406. transition:none;
  8407. transform-origin:50% 50%;
  8408. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8409. font-weight:400;
  8410. font-style:normal;
  8411. font-size:14px;
  8412. line-height:30px;
  8413. }
  8414. #u18800 .text {
  8415. position:absolute;
  8416. align-self:flex-start;
  8417. padding:0px 0px 0px 0px;
  8418. box-sizing:border-box;
  8419. width:100%;
  8420. }
  8421. #u18800_text {
  8422. border-width:0px;
  8423. white-space:nowrap;
  8424. text-transform:none;
  8425. }
  8426. #u18801_div {
  8427. border-width:0px;
  8428. position:absolute;
  8429. left:0px;
  8430. top:0px;
  8431. width:71px;
  8432. height:30px;
  8433. background:inherit;
  8434. background-color:rgba(255, 255, 255, 0);
  8435. border-left:0px;
  8436. border-top:0px;
  8437. border-right:0px;
  8438. border-radius:0px;
  8439. border-bottom-right-radius:0px;
  8440. border-bottom-left-radius:0px;
  8441. filter:drop-shadow(none);
  8442. transition:none;
  8443. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8444. font-weight:400;
  8445. font-style:normal;
  8446. font-size:14px;
  8447. color:#7F7F7F;
  8448. line-height:30px;
  8449. }
  8450. #u18801 {
  8451. border-width:0px;
  8452. position:absolute;
  8453. left:3191px;
  8454. top:572px;
  8455. width:71px;
  8456. height:30px;
  8457. display:flex;
  8458. transition:none;
  8459. transform-origin:50% 50%;
  8460. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8461. font-weight:400;
  8462. font-style:normal;
  8463. font-size:14px;
  8464. color:#7F7F7F;
  8465. line-height:30px;
  8466. }
  8467. #u18801 .text {
  8468. position:absolute;
  8469. align-self:flex-start;
  8470. padding:0px 0px 0px 0px;
  8471. box-sizing:border-box;
  8472. width:100%;
  8473. }
  8474. #u18801_text {
  8475. border-width:0px;
  8476. white-space:nowrap;
  8477. text-transform:none;
  8478. }
  8479. #u18802 {
  8480. border-width:0px;
  8481. position:absolute;
  8482. left:3191px;
  8483. top:602px;
  8484. width:153px;
  8485. height:107px;
  8486. display:flex;
  8487. transition:none;
  8488. }
  8489. #u18802 .text {
  8490. position:absolute;
  8491. align-self:center;
  8492. padding:2px 2px 2px 2px;
  8493. box-sizing:border-box;
  8494. width:100%;
  8495. }
  8496. #u18802_img {
  8497. border-width:0px;
  8498. position:absolute;
  8499. left:0px;
  8500. top:0px;
  8501. width:153px;
  8502. height:107px;
  8503. }
  8504. #u18802_text {
  8505. border-width:0px;
  8506. word-wrap:break-word;
  8507. text-transform:none;
  8508. visibility:hidden;
  8509. }
  8510. #u18803 {
  8511. border-width:0px;
  8512. position:absolute;
  8513. left:3354px;
  8514. top:602px;
  8515. width:153px;
  8516. height:107px;
  8517. display:flex;
  8518. transition:none;
  8519. }
  8520. #u18803 .text {
  8521. position:absolute;
  8522. align-self:center;
  8523. padding:2px 2px 2px 2px;
  8524. box-sizing:border-box;
  8525. width:100%;
  8526. }
  8527. #u18803_img {
  8528. border-width:0px;
  8529. position:absolute;
  8530. left:0px;
  8531. top:0px;
  8532. width:153px;
  8533. height:107px;
  8534. }
  8535. #u18803_text {
  8536. border-width:0px;
  8537. word-wrap:break-word;
  8538. text-transform:none;
  8539. visibility:hidden;
  8540. }
  8541. #u18804 {
  8542. border-width:0px;
  8543. position:absolute;
  8544. left:3517px;
  8545. top:602px;
  8546. width:153px;
  8547. height:107px;
  8548. display:flex;
  8549. transition:none;
  8550. }
  8551. #u18804 .text {
  8552. position:absolute;
  8553. align-self:center;
  8554. padding:2px 2px 2px 2px;
  8555. box-sizing:border-box;
  8556. width:100%;
  8557. }
  8558. #u18804_img {
  8559. border-width:0px;
  8560. position:absolute;
  8561. left:0px;
  8562. top:0px;
  8563. width:153px;
  8564. height:107px;
  8565. }
  8566. #u18804_text {
  8567. border-width:0px;
  8568. word-wrap:break-word;
  8569. text-transform:none;
  8570. visibility:hidden;
  8571. }
  8572. #u18805 {
  8573. border-width:0px;
  8574. position:absolute;
  8575. left:3680px;
  8576. top:602px;
  8577. width:153px;
  8578. height:107px;
  8579. display:flex;
  8580. transition:none;
  8581. }
  8582. #u18805 .text {
  8583. position:absolute;
  8584. align-self:center;
  8585. padding:2px 2px 2px 2px;
  8586. box-sizing:border-box;
  8587. width:100%;
  8588. }
  8589. #u18805_img {
  8590. border-width:0px;
  8591. position:absolute;
  8592. left:0px;
  8593. top:0px;
  8594. width:153px;
  8595. height:107px;
  8596. }
  8597. #u18805_text {
  8598. border-width:0px;
  8599. word-wrap:break-word;
  8600. text-transform:none;
  8601. visibility:hidden;
  8602. }
  8603. #u18806_div {
  8604. border-width:0px;
  8605. position:absolute;
  8606. left:0px;
  8607. top:0px;
  8608. width:85px;
  8609. height:30px;
  8610. background:inherit;
  8611. background-color:rgba(255, 255, 255, 0);
  8612. border-left:0px;
  8613. border-top:0px;
  8614. border-right:0px;
  8615. border-radius:0px;
  8616. border-bottom-right-radius:0px;
  8617. border-bottom-left-radius:0px;
  8618. filter:drop-shadow(none);
  8619. transition:none;
  8620. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8621. font-weight:400;
  8622. font-style:normal;
  8623. font-size:14px;
  8624. color:#7F7F7F;
  8625. line-height:30px;
  8626. }
  8627. #u18806 {
  8628. border-width:0px;
  8629. position:absolute;
  8630. left:534px;
  8631. top:465px;
  8632. width:85px;
  8633. height:30px;
  8634. display:flex;
  8635. transition:none;
  8636. transform-origin:50% 50%;
  8637. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8638. font-weight:400;
  8639. font-style:normal;
  8640. font-size:14px;
  8641. color:#7F7F7F;
  8642. line-height:30px;
  8643. }
  8644. #u18806 .text {
  8645. position:absolute;
  8646. align-self:flex-start;
  8647. padding:0px 0px 0px 0px;
  8648. box-sizing:border-box;
  8649. width:100%;
  8650. }
  8651. #u18806_text {
  8652. border-width:0px;
  8653. white-space:nowrap;
  8654. text-transform:none;
  8655. }
  8656. #u18807 {
  8657. border-width:0px;
  8658. position:absolute;
  8659. left:534px;
  8660. top:495px;
  8661. width:153px;
  8662. height:107px;
  8663. display:flex;
  8664. transition:none;
  8665. }
  8666. #u18807 .text {
  8667. position:absolute;
  8668. align-self:center;
  8669. padding:2px 2px 2px 2px;
  8670. box-sizing:border-box;
  8671. width:100%;
  8672. }
  8673. #u18807_img {
  8674. border-width:0px;
  8675. position:absolute;
  8676. left:0px;
  8677. top:0px;
  8678. width:153px;
  8679. height:107px;
  8680. }
  8681. #u18807_text {
  8682. border-width:0px;
  8683. word-wrap:break-word;
  8684. text-transform:none;
  8685. visibility:hidden;
  8686. }
  8687. #u18808 {
  8688. border-width:0px;
  8689. position:absolute;
  8690. left:697px;
  8691. top:495px;
  8692. width:153px;
  8693. height:107px;
  8694. display:flex;
  8695. transition:none;
  8696. }
  8697. #u18808 .text {
  8698. position:absolute;
  8699. align-self:center;
  8700. padding:2px 2px 2px 2px;
  8701. box-sizing:border-box;
  8702. width:100%;
  8703. }
  8704. #u18808_img {
  8705. border-width:0px;
  8706. position:absolute;
  8707. left:0px;
  8708. top:0px;
  8709. width:153px;
  8710. height:107px;
  8711. }
  8712. #u18808_text {
  8713. border-width:0px;
  8714. word-wrap:break-word;
  8715. text-transform:none;
  8716. visibility:hidden;
  8717. }
  8718. #u18809_div {
  8719. border-width:0px;
  8720. position:absolute;
  8721. left:0px;
  8722. top:0px;
  8723. width:71px;
  8724. height:30px;
  8725. background:inherit;
  8726. background-color:rgba(255, 255, 255, 0);
  8727. border-left:0px;
  8728. border-top:0px;
  8729. border-right:0px;
  8730. border-radius:0px;
  8731. border-bottom-right-radius:0px;
  8732. border-bottom-left-radius:0px;
  8733. filter:drop-shadow(none);
  8734. transition:none;
  8735. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8736. font-weight:400;
  8737. font-style:normal;
  8738. font-size:14px;
  8739. color:#7F7F7F;
  8740. line-height:30px;
  8741. }
  8742. #u18809 {
  8743. border-width:0px;
  8744. position:absolute;
  8745. left:96px;
  8746. top:622px;
  8747. width:71px;
  8748. height:30px;
  8749. display:flex;
  8750. transition:none;
  8751. transform-origin:50% 50%;
  8752. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8753. font-weight:400;
  8754. font-style:normal;
  8755. font-size:14px;
  8756. color:#7F7F7F;
  8757. line-height:30px;
  8758. }
  8759. #u18809 .text {
  8760. position:absolute;
  8761. align-self:flex-start;
  8762. padding:0px 0px 0px 0px;
  8763. box-sizing:border-box;
  8764. width:100%;
  8765. }
  8766. #u18809_text {
  8767. border-width:0px;
  8768. white-space:nowrap;
  8769. text-transform:none;
  8770. }
  8771. #u18810 {
  8772. border-width:0px;
  8773. position:absolute;
  8774. left:96px;
  8775. top:652px;
  8776. width:146px;
  8777. height:102px;
  8778. display:flex;
  8779. transition:none;
  8780. }
  8781. #u18810 .text {
  8782. position:absolute;
  8783. align-self:center;
  8784. padding:2px 2px 2px 2px;
  8785. box-sizing:border-box;
  8786. width:100%;
  8787. }
  8788. #u18810_img {
  8789. border-width:0px;
  8790. position:absolute;
  8791. left:0px;
  8792. top:0px;
  8793. width:146px;
  8794. height:102px;
  8795. }
  8796. #u18810_text {
  8797. border-width:0px;
  8798. word-wrap:break-word;
  8799. text-transform:none;
  8800. visibility:hidden;
  8801. }
  8802. #u18811 {
  8803. border-width:0px;
  8804. position:absolute;
  8805. left:252px;
  8806. top:652px;
  8807. width:146px;
  8808. height:102px;
  8809. display:flex;
  8810. transition:none;
  8811. }
  8812. #u18811 .text {
  8813. position:absolute;
  8814. align-self:center;
  8815. padding:2px 2px 2px 2px;
  8816. box-sizing:border-box;
  8817. width:100%;
  8818. }
  8819. #u18811_img {
  8820. border-width:0px;
  8821. position:absolute;
  8822. left:0px;
  8823. top:0px;
  8824. width:146px;
  8825. height:102px;
  8826. }
  8827. #u18811_text {
  8828. border-width:0px;
  8829. word-wrap:break-word;
  8830. text-transform:none;
  8831. visibility:hidden;
  8832. }
  8833. #u18812 {
  8834. border-width:0px;
  8835. position:absolute;
  8836. left:408px;
  8837. top:652px;
  8838. width:146px;
  8839. height:102px;
  8840. display:flex;
  8841. transition:none;
  8842. }
  8843. #u18812 .text {
  8844. position:absolute;
  8845. align-self:center;
  8846. padding:2px 2px 2px 2px;
  8847. box-sizing:border-box;
  8848. width:100%;
  8849. }
  8850. #u18812_img {
  8851. border-width:0px;
  8852. position:absolute;
  8853. left:0px;
  8854. top:0px;
  8855. width:146px;
  8856. height:102px;
  8857. }
  8858. #u18812_text {
  8859. border-width:0px;
  8860. word-wrap:break-word;
  8861. text-transform:none;
  8862. visibility:hidden;
  8863. }
  8864. #u18813_div {
  8865. border-width:0px;
  8866. position:absolute;
  8867. left:0px;
  8868. top:0px;
  8869. width:57px;
  8870. height:30px;
  8871. background:inherit;
  8872. background-color:rgba(255, 255, 255, 0);
  8873. border-left:0px;
  8874. border-top:0px;
  8875. border-right:0px;
  8876. border-radius:0px;
  8877. border-bottom-right-radius:0px;
  8878. border-bottom-left-radius:0px;
  8879. filter:drop-shadow(none);
  8880. transition:none;
  8881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8882. font-weight:400;
  8883. font-style:normal;
  8884. font-size:14px;
  8885. color:#7F7F7F;
  8886. line-height:30px;
  8887. }
  8888. #u18813 {
  8889. border-width:0px;
  8890. position:absolute;
  8891. left:96px;
  8892. top:465px;
  8893. width:57px;
  8894. height:30px;
  8895. display:flex;
  8896. transition:none;
  8897. transform-origin:50% 50%;
  8898. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8899. font-weight:400;
  8900. font-style:normal;
  8901. font-size:14px;
  8902. color:#7F7F7F;
  8903. line-height:30px;
  8904. }
  8905. #u18813 .text {
  8906. position:absolute;
  8907. align-self:flex-start;
  8908. padding:0px 0px 0px 0px;
  8909. box-sizing:border-box;
  8910. width:100%;
  8911. }
  8912. #u18813_text {
  8913. border-width:0px;
  8914. white-space:nowrap;
  8915. text-transform:none;
  8916. }
  8917. #u18814 {
  8918. border-width:0px;
  8919. position:absolute;
  8920. left:96px;
  8921. top:495px;
  8922. width:153px;
  8923. height:107px;
  8924. display:flex;
  8925. transition:none;
  8926. }
  8927. #u18814 .text {
  8928. position:absolute;
  8929. align-self:center;
  8930. padding:2px 2px 2px 2px;
  8931. box-sizing:border-box;
  8932. width:100%;
  8933. }
  8934. #u18814_img {
  8935. border-width:0px;
  8936. position:absolute;
  8937. left:0px;
  8938. top:0px;
  8939. width:153px;
  8940. height:107px;
  8941. }
  8942. #u18814_text {
  8943. border-width:0px;
  8944. word-wrap:break-word;
  8945. text-transform:none;
  8946. visibility:hidden;
  8947. }