styles.css 170 KB

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