styles.css 165 KB

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