styles.css 162 KB

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