styles.css 159 KB

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