styles.css 185 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1804px;
  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. #u130411 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u130413_img {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. }
  35. #u130413 {
  36. border-width:0px;
  37. position:absolute;
  38. left:0px;
  39. top:0px;
  40. width:433px;
  41. height:865px;
  42. display:flex;
  43. }
  44. #u130413 .text {
  45. position:absolute;
  46. align-self:center;
  47. padding:2px 2px 2px 2px;
  48. box-sizing:border-box;
  49. width:100%;
  50. }
  51. #u130413_text {
  52. border-width:0px;
  53. word-wrap:break-word;
  54. text-transform:none;
  55. visibility:hidden;
  56. }
  57. #u130414_div {
  58. border-width:0px;
  59. position:absolute;
  60. left:0px;
  61. top:0px;
  62. width:375px;
  63. height:40px;
  64. background:inherit;
  65. background-color:rgba(255, 255, 255, 1);
  66. box-sizing:border-box;
  67. border-width:1px;
  68. border-style:solid;
  69. border-color:rgba(215, 215, 215, 1);
  70. border-left:0px;
  71. border-top:0px;
  72. border-right:0px;
  73. border-radius:0px;
  74. border-bottom-right-radius:0px;
  75. border-bottom-left-radius:0px;
  76. -moz-box-shadow:none;
  77. -webkit-box-shadow:none;
  78. box-shadow:none;
  79. }
  80. #u130414 {
  81. border-width:0px;
  82. position:absolute;
  83. left:29px;
  84. top:67px;
  85. width:375px;
  86. height:40px;
  87. display:flex;
  88. }
  89. #u130414 .text {
  90. position:absolute;
  91. align-self:center;
  92. padding:2px 2px 2px 2px;
  93. box-sizing:border-box;
  94. width:100%;
  95. }
  96. #u130414_text {
  97. border-width:0px;
  98. word-wrap:break-word;
  99. text-transform:none;
  100. visibility:hidden;
  101. }
  102. #u130415 {
  103. border-width:0px;
  104. position:absolute;
  105. left:0px;
  106. top:0px;
  107. width:0px;
  108. height:0px;
  109. }
  110. #u130416_div {
  111. border-width:0px;
  112. position:absolute;
  113. left:0px;
  114. top:0px;
  115. width:88px;
  116. height:32px;
  117. background:inherit;
  118. background-color:rgba(255, 255, 255, 1);
  119. box-sizing:border-box;
  120. border-width:1px;
  121. border-style:solid;
  122. border-color:rgba(242, 242, 242, 1);
  123. border-radius:33px;
  124. -moz-box-shadow:none;
  125. -webkit-box-shadow:none;
  126. box-shadow:none;
  127. }
  128. #u130416 {
  129. border-width:0px;
  130. position:absolute;
  131. left:309px;
  132. top:71px;
  133. width:88px;
  134. height:32px;
  135. display:flex;
  136. }
  137. #u130416 .text {
  138. position:absolute;
  139. align-self:center;
  140. padding:2px 2px 2px 2px;
  141. box-sizing:border-box;
  142. width:100%;
  143. }
  144. #u130416_text {
  145. border-width:0px;
  146. word-wrap:break-word;
  147. text-transform:none;
  148. visibility:hidden;
  149. }
  150. #u130417 {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:0px;
  156. height:0px;
  157. }
  158. #u130418_img {
  159. border-width:0px;
  160. position:absolute;
  161. left:0px;
  162. top:0px;
  163. width:18px;
  164. height:18px;
  165. }
  166. #u130418 {
  167. border-width:0px;
  168. position:absolute;
  169. left:372px;
  170. top:78px;
  171. width:18px;
  172. height:18px;
  173. display:flex;
  174. }
  175. #u130418 .text {
  176. position:absolute;
  177. align-self:center;
  178. padding:2px 2px 2px 2px;
  179. box-sizing:border-box;
  180. width:100%;
  181. }
  182. #u130418_text {
  183. border-width:0px;
  184. word-wrap:break-word;
  185. text-transform:none;
  186. visibility:hidden;
  187. }
  188. #u130419_img {
  189. border-width:0px;
  190. position:absolute;
  191. left:0px;
  192. top:0px;
  193. width:6px;
  194. height:6px;
  195. }
  196. #u130419 {
  197. border-width:0px;
  198. position:absolute;
  199. left:378px;
  200. top:84px;
  201. width:6px;
  202. height:6px;
  203. display:flex;
  204. }
  205. #u130419 .text {
  206. position:absolute;
  207. align-self:center;
  208. padding:2px 2px 2px 2px;
  209. box-sizing:border-box;
  210. width:100%;
  211. }
  212. #u130419_text {
  213. border-width:0px;
  214. word-wrap:break-word;
  215. text-transform:none;
  216. visibility:hidden;
  217. }
  218. #u130420 {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:0px;
  224. height:0px;
  225. }
  226. #u130421_img {
  227. border-width:0px;
  228. position:absolute;
  229. left:0px;
  230. top:0px;
  231. width:5px;
  232. height:5px;
  233. }
  234. #u130421 {
  235. border-width:0px;
  236. position:absolute;
  237. left:323px;
  238. top:85px;
  239. width:5px;
  240. height:5px;
  241. display:flex;
  242. }
  243. #u130421 .text {
  244. position:absolute;
  245. align-self:center;
  246. padding:2px 2px 2px 2px;
  247. box-sizing:border-box;
  248. width:100%;
  249. }
  250. #u130421_text {
  251. border-width:0px;
  252. word-wrap:break-word;
  253. text-transform:none;
  254. visibility:hidden;
  255. }
  256. #u130422_img {
  257. border-width:0px;
  258. position:absolute;
  259. left:0px;
  260. top:0px;
  261. width:5px;
  262. height:5px;
  263. }
  264. #u130422 {
  265. border-width:0px;
  266. position:absolute;
  267. left:339px;
  268. top:85px;
  269. width:5px;
  270. height:5px;
  271. display:flex;
  272. }
  273. #u130422 .text {
  274. position:absolute;
  275. align-self:center;
  276. padding:2px 2px 2px 2px;
  277. box-sizing:border-box;
  278. width:100%;
  279. }
  280. #u130422_text {
  281. border-width:0px;
  282. word-wrap:break-word;
  283. text-transform:none;
  284. visibility:hidden;
  285. }
  286. #u130423_img {
  287. border-width:0px;
  288. position:absolute;
  289. left:0px;
  290. top:0px;
  291. width:7px;
  292. height:7px;
  293. }
  294. #u130423 {
  295. border-width:0px;
  296. position:absolute;
  297. left:330px;
  298. top:84px;
  299. width:7px;
  300. height:7px;
  301. display:flex;
  302. }
  303. #u130423 .text {
  304. position:absolute;
  305. align-self:center;
  306. padding:2px 2px 2px 2px;
  307. box-sizing:border-box;
  308. width:100%;
  309. }
  310. #u130423_text {
  311. border-width:0px;
  312. word-wrap:break-word;
  313. text-transform:none;
  314. visibility:hidden;
  315. }
  316. #u130424_img {
  317. border-width:0px;
  318. position:absolute;
  319. left:0px;
  320. top:0px;
  321. width:19px;
  322. height:2px;
  323. }
  324. #u130424 {
  325. border-width:0px;
  326. position:absolute;
  327. left:347px;
  328. top:87px;
  329. width:18px;
  330. height:1px;
  331. display:flex;
  332. -webkit-transform:rotate(90deg);
  333. -moz-transform:rotate(90deg);
  334. -ms-transform:rotate(90deg);
  335. transform:rotate(90deg);
  336. }
  337. #u130424 .text {
  338. position:absolute;
  339. align-self:center;
  340. padding:2px 2px 2px 2px;
  341. box-sizing:border-box;
  342. width:100%;
  343. }
  344. #u130424_text {
  345. border-width:0px;
  346. word-wrap:break-word;
  347. text-transform:none;
  348. visibility:hidden;
  349. }
  350. #u130425_img {
  351. border-width:0px;
  352. position:absolute;
  353. left:0px;
  354. top:0px;
  355. width:375px;
  356. height:44px;
  357. }
  358. #u130425 {
  359. border-width:0px;
  360. position:absolute;
  361. left:29px;
  362. top:24px;
  363. width:375px;
  364. height:44px;
  365. display:flex;
  366. }
  367. #u130425 .text {
  368. position:absolute;
  369. align-self:center;
  370. padding:2px 2px 2px 2px;
  371. box-sizing:border-box;
  372. width:100%;
  373. }
  374. #u130425_text {
  375. border-width:0px;
  376. word-wrap:break-word;
  377. text-transform:none;
  378. visibility:hidden;
  379. }
  380. #u130426_div {
  381. border-width:0px;
  382. position:absolute;
  383. left:0px;
  384. top:0px;
  385. width:375px;
  386. height:50px;
  387. background:inherit;
  388. background-color:rgba(255, 255, 255, 1);
  389. box-sizing:border-box;
  390. border-width:1px;
  391. border-style:solid;
  392. border-color:rgba(242, 242, 242, 1);
  393. border-radius:26px;
  394. border-top-left-radius:0px;
  395. border-top-right-radius:0px;
  396. -moz-box-shadow:none;
  397. -webkit-box-shadow:none;
  398. box-shadow:none;
  399. }
  400. #u130426 {
  401. border-width:0px;
  402. position:absolute;
  403. left:29px;
  404. top:788px;
  405. width:375px;
  406. height:50px;
  407. display:flex;
  408. }
  409. #u130426 .text {
  410. position:absolute;
  411. align-self:center;
  412. padding:2px 2px 2px 2px;
  413. box-sizing:border-box;
  414. width:100%;
  415. }
  416. #u130426_text {
  417. border-width:0px;
  418. word-wrap:break-word;
  419. text-transform:none;
  420. visibility:hidden;
  421. }
  422. #u130427 {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:0px;
  428. height:0px;
  429. }
  430. #u130428_img {
  431. border-width:0px;
  432. position:absolute;
  433. left:0px;
  434. top:0px;
  435. width:24px;
  436. height:24px;
  437. }
  438. #u130428 {
  439. border-width:0px;
  440. position:absolute;
  441. left:69px;
  442. top:792px;
  443. width:24px;
  444. height:24px;
  445. display:flex;
  446. font-size:8px;
  447. }
  448. #u130428 .text {
  449. position:absolute;
  450. align-self:center;
  451. padding:2px 2px 2px 2px;
  452. box-sizing:border-box;
  453. width:100%;
  454. }
  455. #u130428_text {
  456. border-width:0px;
  457. word-wrap:break-word;
  458. text-transform:none;
  459. }
  460. #u130429_div {
  461. border-width:0px;
  462. position:absolute;
  463. left:0px;
  464. top:0px;
  465. width:25px;
  466. height:17px;
  467. background:inherit;
  468. background-color:rgba(255, 255, 255, 0);
  469. border:none;
  470. border-radius:0px;
  471. -moz-box-shadow:none;
  472. -webkit-box-shadow:none;
  473. box-shadow:none;
  474. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  475. font-weight:400;
  476. font-style:normal;
  477. font-size:12px;
  478. }
  479. #u130429 {
  480. border-width:0px;
  481. position:absolute;
  482. left:69px;
  483. top:817px;
  484. width:25px;
  485. height:17px;
  486. display:flex;
  487. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  488. font-weight:400;
  489. font-style:normal;
  490. font-size:12px;
  491. }
  492. #u130429 .text {
  493. position:absolute;
  494. align-self:flex-start;
  495. padding:0px 0px 0px 0px;
  496. box-sizing:border-box;
  497. width:100%;
  498. }
  499. #u130429_text {
  500. border-width:0px;
  501. white-space:nowrap;
  502. text-transform:none;
  503. }
  504. #u130430 {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:0px;
  510. height:0px;
  511. }
  512. #u130431_img {
  513. border-width:0px;
  514. position:absolute;
  515. left:0px;
  516. top:0px;
  517. width:24px;
  518. height:24px;
  519. }
  520. #u130431 {
  521. border-width:0px;
  522. position:absolute;
  523. left:339px;
  524. top:794px;
  525. width:24px;
  526. height:24px;
  527. display:flex;
  528. font-size:8px;
  529. }
  530. #u130431 .text {
  531. position:absolute;
  532. align-self:center;
  533. padding:2px 2px 2px 2px;
  534. box-sizing:border-box;
  535. width:100%;
  536. }
  537. #u130431_text {
  538. border-width:0px;
  539. word-wrap:break-word;
  540. text-transform:none;
  541. }
  542. #u130432_div {
  543. border-width:0px;
  544. position:absolute;
  545. left:0px;
  546. top:0px;
  547. width:25px;
  548. height:17px;
  549. background:inherit;
  550. background-color:rgba(255, 255, 255, 0);
  551. border:none;
  552. border-radius:0px;
  553. -moz-box-shadow:none;
  554. -webkit-box-shadow:none;
  555. box-shadow:none;
  556. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  557. font-weight:400;
  558. font-style:normal;
  559. font-size:12px;
  560. }
  561. #u130432 {
  562. border-width:0px;
  563. position:absolute;
  564. left:339px;
  565. top:819px;
  566. width:25px;
  567. height:17px;
  568. display:flex;
  569. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  570. font-weight:400;
  571. font-style:normal;
  572. font-size:12px;
  573. }
  574. #u130432 .text {
  575. position:absolute;
  576. align-self:flex-start;
  577. padding:0px 0px 0px 0px;
  578. box-sizing:border-box;
  579. width:100%;
  580. }
  581. #u130432_text {
  582. border-width:0px;
  583. white-space:nowrap;
  584. text-transform:none;
  585. }
  586. #u130433_div {
  587. border-width:0px;
  588. position:absolute;
  589. left:0px;
  590. top:0px;
  591. width:375px;
  592. height:681px;
  593. background:inherit;
  594. background-color:rgba(242, 242, 242, 0.462745098039216);
  595. border:none;
  596. border-radius:0px;
  597. -moz-box-shadow:none;
  598. -webkit-box-shadow:none;
  599. box-shadow:none;
  600. }
  601. #u130433 {
  602. border-width:0px;
  603. position:absolute;
  604. left:29px;
  605. top:107px;
  606. width:375px;
  607. height:681px;
  608. display:flex;
  609. }
  610. #u130433 .text {
  611. position:absolute;
  612. align-self:center;
  613. padding:2px 2px 2px 2px;
  614. box-sizing:border-box;
  615. width:100%;
  616. }
  617. #u130433_text {
  618. border-width:0px;
  619. word-wrap:break-word;
  620. text-transform:none;
  621. visibility:hidden;
  622. }
  623. #u130434 {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:0px;
  629. height:0px;
  630. }
  631. #u130435_img {
  632. border-width:0px;
  633. position:absolute;
  634. left:0px;
  635. top:0px;
  636. width:24px;
  637. height:24px;
  638. }
  639. #u130435 {
  640. border-width:0px;
  641. position:absolute;
  642. left:251px;
  643. top:792px;
  644. width:24px;
  645. height:24px;
  646. display:flex;
  647. font-size:8px;
  648. }
  649. #u130435 .text {
  650. position:absolute;
  651. align-self:center;
  652. padding:2px 2px 2px 2px;
  653. box-sizing:border-box;
  654. width:100%;
  655. }
  656. #u130435_text {
  657. border-width:0px;
  658. word-wrap:break-word;
  659. text-transform:none;
  660. }
  661. #u130436_div {
  662. border-width:0px;
  663. position:absolute;
  664. left:0px;
  665. top:0px;
  666. width:37px;
  667. height:17px;
  668. background:inherit;
  669. background-color:rgba(255, 255, 255, 0);
  670. border:none;
  671. border-radius:0px;
  672. -moz-box-shadow:none;
  673. -webkit-box-shadow:none;
  674. box-shadow:none;
  675. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  676. font-weight:400;
  677. font-style:normal;
  678. font-size:12px;
  679. }
  680. #u130436 {
  681. border-width:0px;
  682. position:absolute;
  683. left:245px;
  684. top:817px;
  685. width:37px;
  686. height:17px;
  687. display:flex;
  688. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  689. font-weight:400;
  690. font-style:normal;
  691. font-size:12px;
  692. }
  693. #u130436 .text {
  694. position:absolute;
  695. align-self:flex-start;
  696. padding:0px 0px 0px 0px;
  697. box-sizing:border-box;
  698. width:100%;
  699. }
  700. #u130436_text {
  701. border-width:0px;
  702. white-space:nowrap;
  703. text-transform:none;
  704. }
  705. #u130437 {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:0px;
  711. height:0px;
  712. }
  713. #u130438_img {
  714. border-width:0px;
  715. position:absolute;
  716. left:0px;
  717. top:0px;
  718. width:24px;
  719. height:24px;
  720. }
  721. #u130438 {
  722. border-width:0px;
  723. position:absolute;
  724. left:157px;
  725. top:792px;
  726. width:24px;
  727. height:24px;
  728. display:flex;
  729. font-size:8px;
  730. }
  731. #u130438 .text {
  732. position:absolute;
  733. align-self:center;
  734. padding:2px 2px 2px 2px;
  735. box-sizing:border-box;
  736. width:100%;
  737. }
  738. #u130438_text {
  739. border-width:0px;
  740. word-wrap:break-word;
  741. text-transform:none;
  742. }
  743. #u130439_div {
  744. border-width:0px;
  745. position:absolute;
  746. left:0px;
  747. top:0px;
  748. width:37px;
  749. height:17px;
  750. background:inherit;
  751. background-color:rgba(255, 255, 255, 0);
  752. border:none;
  753. border-radius:0px;
  754. -moz-box-shadow:none;
  755. -webkit-box-shadow:none;
  756. box-shadow:none;
  757. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  758. font-weight:400;
  759. font-style:normal;
  760. font-size:12px;
  761. }
  762. #u130439 {
  763. border-width:0px;
  764. position:absolute;
  765. left:151px;
  766. top:817px;
  767. width:37px;
  768. height:17px;
  769. display:flex;
  770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  771. font-weight:400;
  772. font-style:normal;
  773. font-size:12px;
  774. }
  775. #u130439 .text {
  776. position:absolute;
  777. align-self:flex-start;
  778. padding:0px 0px 0px 0px;
  779. box-sizing:border-box;
  780. width:100%;
  781. }
  782. #u130439_text {
  783. border-width:0px;
  784. white-space:nowrap;
  785. text-transform:none;
  786. }
  787. #u130440_div {
  788. border-width:0px;
  789. position:absolute;
  790. left:0px;
  791. top:0px;
  792. width:375px;
  793. height:1137px;
  794. background:inherit;
  795. background-color:rgba(242, 242, 242, 0.996078431372549);
  796. border:none;
  797. border-top:0px;
  798. border-radius:28px;
  799. border-top-left-radius:0px;
  800. border-top-right-radius:0px;
  801. -moz-box-shadow:none;
  802. -webkit-box-shadow:none;
  803. box-shadow:none;
  804. }
  805. #u130440 {
  806. border-width:0px;
  807. position:absolute;
  808. left:29px;
  809. top:107px;
  810. width:375px;
  811. height:1137px;
  812. display:flex;
  813. }
  814. #u130440 .text {
  815. position:absolute;
  816. align-self:center;
  817. padding:2px 2px 2px 2px;
  818. box-sizing:border-box;
  819. width:100%;
  820. }
  821. #u130440_text {
  822. border-width:0px;
  823. word-wrap:break-word;
  824. text-transform:none;
  825. visibility:hidden;
  826. }
  827. #u130441_div {
  828. border-width:0px;
  829. position:absolute;
  830. left:0px;
  831. top:0px;
  832. width:375px;
  833. height:40px;
  834. background:inherit;
  835. background-color:rgba(255, 255, 255, 1);
  836. box-sizing:border-box;
  837. border-width:1px;
  838. border-style:solid;
  839. border-color:rgba(215, 215, 215, 1);
  840. border-left:0px;
  841. border-top:0px;
  842. border-right:0px;
  843. border-radius:0px;
  844. border-bottom-right-radius:0px;
  845. border-bottom-left-radius:0px;
  846. -moz-box-shadow:none;
  847. -webkit-box-shadow:none;
  848. box-shadow:none;
  849. }
  850. #u130441 {
  851. border-width:0px;
  852. position:absolute;
  853. left:29px;
  854. top:67px;
  855. width:375px;
  856. height:40px;
  857. display:flex;
  858. }
  859. #u130441 .text {
  860. position:absolute;
  861. align-self:center;
  862. padding:2px 2px 2px 2px;
  863. box-sizing:border-box;
  864. width:100%;
  865. }
  866. #u130441_text {
  867. border-width:0px;
  868. word-wrap:break-word;
  869. text-transform:none;
  870. visibility:hidden;
  871. }
  872. #u130442_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:375px;
  878. height:44px;
  879. }
  880. #u130442 {
  881. border-width:0px;
  882. position:absolute;
  883. left:29px;
  884. top:24px;
  885. width:375px;
  886. height:44px;
  887. display:flex;
  888. }
  889. #u130442 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u130442_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u130443 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u130444_div {
  911. border-width:0px;
  912. position:absolute;
  913. left:0px;
  914. top:0px;
  915. width:88px;
  916. height:32px;
  917. background:inherit;
  918. background-color:rgba(255, 255, 255, 1);
  919. box-sizing:border-box;
  920. border-width:1px;
  921. border-style:solid;
  922. border-color:rgba(242, 242, 242, 1);
  923. border-radius:33px;
  924. -moz-box-shadow:none;
  925. -webkit-box-shadow:none;
  926. box-shadow:none;
  927. }
  928. #u130444 {
  929. border-width:0px;
  930. position:absolute;
  931. left:309px;
  932. top:71px;
  933. width:88px;
  934. height:32px;
  935. display:flex;
  936. }
  937. #u130444 .text {
  938. position:absolute;
  939. align-self:center;
  940. padding:2px 2px 2px 2px;
  941. box-sizing:border-box;
  942. width:100%;
  943. }
  944. #u130444_text {
  945. border-width:0px;
  946. word-wrap:break-word;
  947. text-transform:none;
  948. visibility:hidden;
  949. }
  950. #u130445 {
  951. border-width:0px;
  952. position:absolute;
  953. left:0px;
  954. top:0px;
  955. width:0px;
  956. height:0px;
  957. }
  958. #u130446_img {
  959. border-width:0px;
  960. position:absolute;
  961. left:0px;
  962. top:0px;
  963. width:18px;
  964. height:18px;
  965. }
  966. #u130446 {
  967. border-width:0px;
  968. position:absolute;
  969. left:372px;
  970. top:78px;
  971. width:18px;
  972. height:18px;
  973. display:flex;
  974. }
  975. #u130446 .text {
  976. position:absolute;
  977. align-self:center;
  978. padding:2px 2px 2px 2px;
  979. box-sizing:border-box;
  980. width:100%;
  981. }
  982. #u130446_text {
  983. border-width:0px;
  984. word-wrap:break-word;
  985. text-transform:none;
  986. visibility:hidden;
  987. }
  988. #u130447_img {
  989. border-width:0px;
  990. position:absolute;
  991. left:0px;
  992. top:0px;
  993. width:6px;
  994. height:6px;
  995. }
  996. #u130447 {
  997. border-width:0px;
  998. position:absolute;
  999. left:378px;
  1000. top:84px;
  1001. width:6px;
  1002. height:6px;
  1003. display:flex;
  1004. }
  1005. #u130447 .text {
  1006. position:absolute;
  1007. align-self:center;
  1008. padding:2px 2px 2px 2px;
  1009. box-sizing:border-box;
  1010. width:100%;
  1011. }
  1012. #u130447_text {
  1013. border-width:0px;
  1014. word-wrap:break-word;
  1015. text-transform:none;
  1016. visibility:hidden;
  1017. }
  1018. #u130448 {
  1019. border-width:0px;
  1020. position:absolute;
  1021. left:0px;
  1022. top:0px;
  1023. width:0px;
  1024. height:0px;
  1025. }
  1026. #u130449_img {
  1027. border-width:0px;
  1028. position:absolute;
  1029. left:0px;
  1030. top:0px;
  1031. width:5px;
  1032. height:5px;
  1033. }
  1034. #u130449 {
  1035. border-width:0px;
  1036. position:absolute;
  1037. left:323px;
  1038. top:85px;
  1039. width:5px;
  1040. height:5px;
  1041. display:flex;
  1042. }
  1043. #u130449 .text {
  1044. position:absolute;
  1045. align-self:center;
  1046. padding:2px 2px 2px 2px;
  1047. box-sizing:border-box;
  1048. width:100%;
  1049. }
  1050. #u130449_text {
  1051. border-width:0px;
  1052. word-wrap:break-word;
  1053. text-transform:none;
  1054. visibility:hidden;
  1055. }
  1056. #u130450_img {
  1057. border-width:0px;
  1058. position:absolute;
  1059. left:0px;
  1060. top:0px;
  1061. width:5px;
  1062. height:5px;
  1063. }
  1064. #u130450 {
  1065. border-width:0px;
  1066. position:absolute;
  1067. left:339px;
  1068. top:85px;
  1069. width:5px;
  1070. height:5px;
  1071. display:flex;
  1072. }
  1073. #u130450 .text {
  1074. position:absolute;
  1075. align-self:center;
  1076. padding:2px 2px 2px 2px;
  1077. box-sizing:border-box;
  1078. width:100%;
  1079. }
  1080. #u130450_text {
  1081. border-width:0px;
  1082. word-wrap:break-word;
  1083. text-transform:none;
  1084. visibility:hidden;
  1085. }
  1086. #u130451_img {
  1087. border-width:0px;
  1088. position:absolute;
  1089. left:0px;
  1090. top:0px;
  1091. width:7px;
  1092. height:7px;
  1093. }
  1094. #u130451 {
  1095. border-width:0px;
  1096. position:absolute;
  1097. left:330px;
  1098. top:84px;
  1099. width:7px;
  1100. height:7px;
  1101. display:flex;
  1102. }
  1103. #u130451 .text {
  1104. position:absolute;
  1105. align-self:center;
  1106. padding:2px 2px 2px 2px;
  1107. box-sizing:border-box;
  1108. width:100%;
  1109. }
  1110. #u130451_text {
  1111. border-width:0px;
  1112. word-wrap:break-word;
  1113. text-transform:none;
  1114. visibility:hidden;
  1115. }
  1116. #u130452_img {
  1117. border-width:0px;
  1118. position:absolute;
  1119. left:0px;
  1120. top:0px;
  1121. width:19px;
  1122. height:2px;
  1123. }
  1124. #u130452 {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:347px;
  1128. top:87px;
  1129. width:18px;
  1130. height:1px;
  1131. display:flex;
  1132. -webkit-transform:rotate(90deg);
  1133. -moz-transform:rotate(90deg);
  1134. -ms-transform:rotate(90deg);
  1135. transform:rotate(90deg);
  1136. }
  1137. #u130452 .text {
  1138. position:absolute;
  1139. align-self:center;
  1140. padding:2px 2px 2px 2px;
  1141. box-sizing:border-box;
  1142. width:100%;
  1143. }
  1144. #u130452_text {
  1145. border-width:0px;
  1146. word-wrap:break-word;
  1147. text-transform:none;
  1148. visibility:hidden;
  1149. }
  1150. #u130453_div {
  1151. border-width:0px;
  1152. position:absolute;
  1153. left:0px;
  1154. top:0px;
  1155. width:65px;
  1156. height:22px;
  1157. background:inherit;
  1158. background-color:rgba(255, 255, 255, 0);
  1159. border:none;
  1160. border-radius:0px;
  1161. -moz-box-shadow:none;
  1162. -webkit-box-shadow:none;
  1163. box-shadow:none;
  1164. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1165. font-weight:400;
  1166. font-style:normal;
  1167. font-size:16px;
  1168. color:#000000;
  1169. }
  1170. #u130453 {
  1171. border-width:0px;
  1172. position:absolute;
  1173. left:58px;
  1174. top:76px;
  1175. width:65px;
  1176. height:22px;
  1177. display:flex;
  1178. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1179. font-weight:400;
  1180. font-style:normal;
  1181. font-size:16px;
  1182. color:#000000;
  1183. }
  1184. #u130453 .text {
  1185. position:absolute;
  1186. align-self:flex-start;
  1187. padding:0px 0px 0px 0px;
  1188. box-sizing:border-box;
  1189. width:100%;
  1190. }
  1191. #u130453_text {
  1192. border-width:0px;
  1193. white-space:nowrap;
  1194. text-transform:none;
  1195. }
  1196. #u130454_div {
  1197. border-width:0px;
  1198. position:absolute;
  1199. left:0px;
  1200. top:0px;
  1201. width:12px;
  1202. height:12px;
  1203. background:inherit;
  1204. background-color:rgba(255, 255, 255, 0);
  1205. box-sizing:border-box;
  1206. border-width:2px;
  1207. border-style:solid;
  1208. border-color:rgba(51, 51, 51, 1);
  1209. border-right:0px;
  1210. border-bottom:0px;
  1211. border-radius:0px;
  1212. border-top-right-radius:0px;
  1213. border-bottom-left-radius:0px;
  1214. -moz-box-shadow:none;
  1215. -webkit-box-shadow:none;
  1216. box-shadow:none;
  1217. }
  1218. #u130454 {
  1219. border-width:0px;
  1220. position:absolute;
  1221. left:44px;
  1222. top:81px;
  1223. width:12px;
  1224. height:12px;
  1225. display:flex;
  1226. -webkit-transform:rotate(315deg);
  1227. -moz-transform:rotate(315deg);
  1228. -ms-transform:rotate(315deg);
  1229. transform:rotate(315deg);
  1230. }
  1231. #u130454 .text {
  1232. position:absolute;
  1233. align-self:center;
  1234. padding:2px 2px 2px 2px;
  1235. box-sizing:border-box;
  1236. width:100%;
  1237. }
  1238. #u130454_text {
  1239. border-width:0px;
  1240. word-wrap:break-word;
  1241. text-transform:none;
  1242. visibility:hidden;
  1243. }
  1244. #u130455_div {
  1245. border-width:0px;
  1246. position:absolute;
  1247. left:0px;
  1248. top:0px;
  1249. width:375px;
  1250. height:100px;
  1251. background:inherit;
  1252. background-color:rgba(255, 255, 255, 1);
  1253. border:none;
  1254. border-left:0px;
  1255. border-top:0px;
  1256. border-right:0px;
  1257. border-radius:0px;
  1258. border-bottom-right-radius:0px;
  1259. border-bottom-left-radius:0px;
  1260. -moz-box-shadow:none;
  1261. -webkit-box-shadow:none;
  1262. box-shadow:none;
  1263. }
  1264. #u130455 {
  1265. border-width:0px;
  1266. position:absolute;
  1267. left:29px;
  1268. top:107px;
  1269. width:375px;
  1270. height:100px;
  1271. display:flex;
  1272. }
  1273. #u130455 .text {
  1274. position:absolute;
  1275. align-self:center;
  1276. padding:2px 2px 2px 2px;
  1277. box-sizing:border-box;
  1278. width:100%;
  1279. }
  1280. #u130455_text {
  1281. border-width:0px;
  1282. word-wrap:break-word;
  1283. text-transform:none;
  1284. visibility:hidden;
  1285. }
  1286. #u130456 {
  1287. border-width:0px;
  1288. position:absolute;
  1289. left:0px;
  1290. top:0px;
  1291. width:0px;
  1292. height:0px;
  1293. }
  1294. #u130457_img {
  1295. border-width:0px;
  1296. position:absolute;
  1297. left:0px;
  1298. top:0px;
  1299. width:355px;
  1300. height:240px;
  1301. }
  1302. #u130457 {
  1303. border-width:0px;
  1304. position:absolute;
  1305. left:39px;
  1306. top:237px;
  1307. width:355px;
  1308. height:240px;
  1309. display:flex;
  1310. }
  1311. #u130457 .text {
  1312. position:absolute;
  1313. align-self:center;
  1314. padding:2px 2px 2px 2px;
  1315. box-sizing:border-box;
  1316. width:100%;
  1317. }
  1318. #u130457_text {
  1319. border-width:0px;
  1320. word-wrap:break-word;
  1321. text-transform:none;
  1322. visibility:hidden;
  1323. }
  1324. #u130458_div {
  1325. border-width:0px;
  1326. position:absolute;
  1327. left:0px;
  1328. top:0px;
  1329. width:325px;
  1330. height:30px;
  1331. background:inherit;
  1332. background-color:rgba(255, 255, 255, 0);
  1333. border:none;
  1334. border-left:0px;
  1335. border-top:0px;
  1336. border-right:0px;
  1337. border-radius:0px;
  1338. border-bottom-right-radius:0px;
  1339. border-bottom-left-radius:0px;
  1340. -moz-box-shadow:none;
  1341. -webkit-box-shadow:none;
  1342. box-shadow:none;
  1343. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1344. font-weight:400;
  1345. font-style:normal;
  1346. font-size:14px;
  1347. line-height:30px;
  1348. }
  1349. #u130458 {
  1350. border-width:0px;
  1351. position:absolute;
  1352. left:55px;
  1353. top:248px;
  1354. width:325px;
  1355. height:30px;
  1356. display:flex;
  1357. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1358. font-weight:400;
  1359. font-style:normal;
  1360. font-size:14px;
  1361. line-height:30px;
  1362. }
  1363. #u130458 .text {
  1364. position:absolute;
  1365. align-self:flex-start;
  1366. padding:0px 0px 0px 0px;
  1367. box-sizing:border-box;
  1368. width:100%;
  1369. }
  1370. #u130458_text {
  1371. border-width:0px;
  1372. word-wrap:break-word;
  1373. text-transform:none;
  1374. }
  1375. #u130459_div {
  1376. border-width:0px;
  1377. position:absolute;
  1378. left:0px;
  1379. top:0px;
  1380. width:108px;
  1381. height:180px;
  1382. background:inherit;
  1383. background-color:rgba(255, 255, 255, 0);
  1384. border:none;
  1385. border-left:0px;
  1386. border-top:0px;
  1387. border-right:0px;
  1388. border-radius:0px;
  1389. border-bottom-right-radius:0px;
  1390. border-bottom-left-radius:0px;
  1391. -moz-box-shadow:none;
  1392. -webkit-box-shadow:none;
  1393. box-shadow:none;
  1394. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1395. font-weight:400;
  1396. font-style:normal;
  1397. font-size:12px;
  1398. line-height:30px;
  1399. }
  1400. #u130459 {
  1401. border-width:0px;
  1402. position:absolute;
  1403. left:55px;
  1404. top:288px;
  1405. width:108px;
  1406. height:180px;
  1407. display:flex;
  1408. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1409. font-weight:400;
  1410. font-style:normal;
  1411. font-size:12px;
  1412. line-height:30px;
  1413. }
  1414. #u130459 .text {
  1415. position:absolute;
  1416. align-self:flex-start;
  1417. padding:0px 0px 0px 0px;
  1418. box-sizing:border-box;
  1419. width:100%;
  1420. }
  1421. #u130459_text {
  1422. border-width:0px;
  1423. word-wrap:break-word;
  1424. text-transform:none;
  1425. }
  1426. #u130460_div {
  1427. border-width:0px;
  1428. position:absolute;
  1429. left:0px;
  1430. top:0px;
  1431. width:108px;
  1432. height:180px;
  1433. background:inherit;
  1434. background-color:rgba(255, 255, 255, 0);
  1435. border:none;
  1436. border-left:0px;
  1437. border-top:0px;
  1438. border-right:0px;
  1439. border-radius:0px;
  1440. border-bottom-right-radius:0px;
  1441. border-bottom-left-radius:0px;
  1442. -moz-box-shadow:none;
  1443. -webkit-box-shadow:none;
  1444. box-shadow:none;
  1445. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1446. font-weight:400;
  1447. font-style:normal;
  1448. font-size:12px;
  1449. line-height:30px;
  1450. }
  1451. #u130460 {
  1452. border-width:0px;
  1453. position:absolute;
  1454. left:163px;
  1455. top:288px;
  1456. width:108px;
  1457. height:180px;
  1458. display:flex;
  1459. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1460. font-weight:400;
  1461. font-style:normal;
  1462. font-size:12px;
  1463. line-height:30px;
  1464. }
  1465. #u130460 .text {
  1466. position:absolute;
  1467. align-self:flex-start;
  1468. padding:0px 0px 0px 0px;
  1469. box-sizing:border-box;
  1470. width:100%;
  1471. }
  1472. #u130460_text {
  1473. border-width:0px;
  1474. word-wrap:break-word;
  1475. text-transform:none;
  1476. }
  1477. #u130461_div {
  1478. border-width:0px;
  1479. position:absolute;
  1480. left:0px;
  1481. top:0px;
  1482. width:108px;
  1483. height:180px;
  1484. background:inherit;
  1485. background-color:rgba(255, 255, 255, 0);
  1486. border:none;
  1487. border-left:0px;
  1488. border-top:0px;
  1489. border-right:0px;
  1490. border-radius:0px;
  1491. border-bottom-right-radius:0px;
  1492. border-bottom-left-radius:0px;
  1493. -moz-box-shadow:none;
  1494. -webkit-box-shadow:none;
  1495. box-shadow:none;
  1496. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1497. font-weight:400;
  1498. font-style:normal;
  1499. font-size:12px;
  1500. line-height:30px;
  1501. }
  1502. #u130461 {
  1503. border-width:0px;
  1504. position:absolute;
  1505. left:272px;
  1506. top:288px;
  1507. width:108px;
  1508. height:180px;
  1509. display:flex;
  1510. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1511. font-weight:400;
  1512. font-style:normal;
  1513. font-size:12px;
  1514. line-height:30px;
  1515. }
  1516. #u130461 .text {
  1517. position:absolute;
  1518. align-self:flex-start;
  1519. padding:0px 0px 0px 0px;
  1520. box-sizing:border-box;
  1521. width:100%;
  1522. }
  1523. #u130461_text {
  1524. border-width:0px;
  1525. word-wrap:break-word;
  1526. text-transform:none;
  1527. }
  1528. #u130462_div {
  1529. border-width:0px;
  1530. position:absolute;
  1531. left:0px;
  1532. top:0px;
  1533. width:155px;
  1534. height:30px;
  1535. background:inherit;
  1536. background-color:rgba(255, 255, 255, 0);
  1537. border:none;
  1538. border-left:0px;
  1539. border-top:0px;
  1540. border-right:0px;
  1541. border-radius:0px;
  1542. border-bottom-right-radius:0px;
  1543. border-bottom-left-radius:0px;
  1544. -moz-box-shadow:none;
  1545. -webkit-box-shadow:none;
  1546. box-shadow:none;
  1547. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1548. font-weight:500;
  1549. font-style:normal;
  1550. font-size:14px;
  1551. line-height:30px;
  1552. }
  1553. #u130462 {
  1554. border-width:0px;
  1555. position:absolute;
  1556. left:56px;
  1557. top:117px;
  1558. width:155px;
  1559. height:30px;
  1560. display:flex;
  1561. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1562. font-weight:500;
  1563. font-style:normal;
  1564. font-size:14px;
  1565. line-height:30px;
  1566. }
  1567. #u130462 .text {
  1568. position:absolute;
  1569. align-self:flex-start;
  1570. padding:0px 0px 0px 0px;
  1571. box-sizing:border-box;
  1572. width:100%;
  1573. }
  1574. #u130462_text {
  1575. border-width:0px;
  1576. white-space:nowrap;
  1577. text-transform:none;
  1578. }
  1579. #u130463 {
  1580. border-width:0px;
  1581. position:absolute;
  1582. left:0px;
  1583. top:0px;
  1584. width:0px;
  1585. height:0px;
  1586. }
  1587. #u130464_div {
  1588. border-width:0px;
  1589. position:absolute;
  1590. left:0px;
  1591. top:0px;
  1592. width:375px;
  1593. height:60px;
  1594. background:inherit;
  1595. background-color:rgba(255, 255, 255, 1);
  1596. border:none;
  1597. border-top:0px;
  1598. border-radius:28px;
  1599. border-top-left-radius:0px;
  1600. border-top-right-radius:0px;
  1601. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1602. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1603. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  1604. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1605. font-weight:400;
  1606. font-style:normal;
  1607. font-size:14px;
  1608. color:#FFFFFF;
  1609. }
  1610. #u130464 {
  1611. border-width:0px;
  1612. position:absolute;
  1613. left:29px;
  1614. top:1184px;
  1615. width:375px;
  1616. height:60px;
  1617. display:flex;
  1618. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1619. font-weight:400;
  1620. font-style:normal;
  1621. font-size:14px;
  1622. color:#FFFFFF;
  1623. }
  1624. #u130464 .text {
  1625. position:absolute;
  1626. align-self:center;
  1627. padding:2px 2px 2px 2px;
  1628. box-sizing:border-box;
  1629. width:100%;
  1630. }
  1631. #u130464_text {
  1632. border-width:0px;
  1633. word-wrap:break-word;
  1634. text-transform:none;
  1635. visibility:hidden;
  1636. }
  1637. #u130465_div {
  1638. border-width:0px;
  1639. position:absolute;
  1640. left:0px;
  1641. top:0px;
  1642. width:80px;
  1643. height:40px;
  1644. background:inherit;
  1645. background-color:rgba(24, 144, 255, 1);
  1646. border:none;
  1647. border-radius:27px;
  1648. -moz-box-shadow:none;
  1649. -webkit-box-shadow:none;
  1650. box-shadow:none;
  1651. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1652. font-weight:400;
  1653. font-style:normal;
  1654. color:#FFFFFF;
  1655. text-align:center;
  1656. }
  1657. #u130465 {
  1658. border-width:0px;
  1659. position:absolute;
  1660. left:304px;
  1661. top:1194px;
  1662. width:80px;
  1663. height:40px;
  1664. display:flex;
  1665. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1666. font-weight:400;
  1667. font-style:normal;
  1668. color:#FFFFFF;
  1669. text-align:center;
  1670. }
  1671. #u130465 .text {
  1672. position:absolute;
  1673. align-self:center;
  1674. padding:2px 3px 2px 3px;
  1675. box-sizing:border-box;
  1676. width:100%;
  1677. }
  1678. #u130465_text {
  1679. border-width:0px;
  1680. word-wrap:break-word;
  1681. text-transform:none;
  1682. }
  1683. #u130466_div {
  1684. border-width:0px;
  1685. position:absolute;
  1686. left:0px;
  1687. top:0px;
  1688. width:80px;
  1689. height:40px;
  1690. background:inherit;
  1691. background-color:rgba(215, 215, 215, 1);
  1692. border:none;
  1693. border-radius:27px;
  1694. -moz-box-shadow:none;
  1695. -webkit-box-shadow:none;
  1696. box-shadow:none;
  1697. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1698. font-weight:400;
  1699. font-style:normal;
  1700. text-align:center;
  1701. }
  1702. #u130466 {
  1703. border-width:0px;
  1704. position:absolute;
  1705. left:214px;
  1706. top:1194px;
  1707. width:80px;
  1708. height:40px;
  1709. display:flex;
  1710. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1711. font-weight:400;
  1712. font-style:normal;
  1713. text-align:center;
  1714. }
  1715. #u130466 .text {
  1716. position:absolute;
  1717. align-self:center;
  1718. padding:2px 3px 2px 3px;
  1719. box-sizing:border-box;
  1720. width:100%;
  1721. }
  1722. #u130466_text {
  1723. border-width:0px;
  1724. word-wrap:break-word;
  1725. text-transform:none;
  1726. }
  1727. #u130467_div {
  1728. border-width:0px;
  1729. position:absolute;
  1730. left:0px;
  1731. top:0px;
  1732. width:31px;
  1733. height:21px;
  1734. background:inherit;
  1735. background-color:rgba(215, 215, 215, 0);
  1736. border:none;
  1737. border-radius:27px;
  1738. -moz-box-shadow:none;
  1739. -webkit-box-shadow:none;
  1740. box-shadow:none;
  1741. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1742. font-weight:400;
  1743. font-style:normal;
  1744. font-size:12px;
  1745. color:#7F7F7F;
  1746. text-align:center;
  1747. }
  1748. #u130467 {
  1749. border-width:0px;
  1750. position:absolute;
  1751. left:172px;
  1752. top:1204px;
  1753. width:31px;
  1754. height:21px;
  1755. display:flex;
  1756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1757. font-weight:400;
  1758. font-style:normal;
  1759. font-size:12px;
  1760. color:#7F7F7F;
  1761. text-align:center;
  1762. }
  1763. #u130467 .text {
  1764. position:absolute;
  1765. align-self:center;
  1766. padding:2px 3px 2px 3px;
  1767. box-sizing:border-box;
  1768. width:100%;
  1769. }
  1770. #u130467_text {
  1771. border-width:0px;
  1772. white-space:nowrap;
  1773. text-transform:none;
  1774. }
  1775. #u130468_div {
  1776. border-width:0px;
  1777. position:absolute;
  1778. left:0px;
  1779. top:0px;
  1780. width:375px;
  1781. height:30px;
  1782. background:inherit;
  1783. background-color:rgba(255, 255, 128, 0.0980392156862745);
  1784. border:none;
  1785. border-left:0px;
  1786. border-top:0px;
  1787. border-right:0px;
  1788. border-radius:0px;
  1789. border-bottom-right-radius:0px;
  1790. border-bottom-left-radius:0px;
  1791. -moz-box-shadow:none;
  1792. -webkit-box-shadow:none;
  1793. box-shadow:none;
  1794. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1795. font-weight:400;
  1796. font-style:normal;
  1797. font-size:12px;
  1798. color:#F59A23;
  1799. text-align:center;
  1800. }
  1801. #u130468 {
  1802. border-width:0px;
  1803. position:absolute;
  1804. left:29px;
  1805. top:207px;
  1806. width:375px;
  1807. height:30px;
  1808. display:flex;
  1809. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1810. font-weight:400;
  1811. font-style:normal;
  1812. font-size:12px;
  1813. color:#F59A23;
  1814. text-align:center;
  1815. }
  1816. #u130468 .text {
  1817. position:absolute;
  1818. align-self:center;
  1819. padding:0px 0px 0px 0px;
  1820. box-sizing:border-box;
  1821. width:100%;
  1822. }
  1823. #u130468_text {
  1824. border-width:0px;
  1825. word-wrap:break-word;
  1826. text-transform:none;
  1827. }
  1828. #u130469 {
  1829. border-width:0px;
  1830. position:absolute;
  1831. left:0px;
  1832. top:0px;
  1833. width:0px;
  1834. height:0px;
  1835. }
  1836. #u130470_img {
  1837. border-width:0px;
  1838. position:absolute;
  1839. left:0px;
  1840. top:0px;
  1841. width:355px;
  1842. height:210px;
  1843. }
  1844. #u130470 {
  1845. border-width:0px;
  1846. position:absolute;
  1847. left:39px;
  1848. top:487px;
  1849. width:355px;
  1850. height:210px;
  1851. display:flex;
  1852. }
  1853. #u130470 .text {
  1854. position:absolute;
  1855. align-self:center;
  1856. padding:2px 2px 2px 2px;
  1857. box-sizing:border-box;
  1858. width:100%;
  1859. }
  1860. #u130470_text {
  1861. border-width:0px;
  1862. word-wrap:break-word;
  1863. text-transform:none;
  1864. visibility:hidden;
  1865. }
  1866. #u130471_div {
  1867. border-width:0px;
  1868. position:absolute;
  1869. left:0px;
  1870. top:0px;
  1871. width:325px;
  1872. height:30px;
  1873. background:inherit;
  1874. background-color:rgba(255, 255, 255, 0);
  1875. border:none;
  1876. border-left:0px;
  1877. border-top:0px;
  1878. border-right:0px;
  1879. border-radius:0px;
  1880. border-bottom-right-radius:0px;
  1881. border-bottom-left-radius:0px;
  1882. -moz-box-shadow:none;
  1883. -webkit-box-shadow:none;
  1884. box-shadow:none;
  1885. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1886. font-weight:400;
  1887. font-style:normal;
  1888. font-size:14px;
  1889. line-height:30px;
  1890. }
  1891. #u130471 {
  1892. border-width:0px;
  1893. position:absolute;
  1894. left:55px;
  1895. top:498px;
  1896. width:325px;
  1897. height:30px;
  1898. display:flex;
  1899. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1900. font-weight:400;
  1901. font-style:normal;
  1902. font-size:14px;
  1903. line-height:30px;
  1904. }
  1905. #u130471 .text {
  1906. position:absolute;
  1907. align-self:flex-start;
  1908. padding:0px 0px 0px 0px;
  1909. box-sizing:border-box;
  1910. width:100%;
  1911. }
  1912. #u130471_text {
  1913. border-width:0px;
  1914. word-wrap:break-word;
  1915. text-transform:none;
  1916. }
  1917. #u130472_div {
  1918. border-width:0px;
  1919. position:absolute;
  1920. left:0px;
  1921. top:0px;
  1922. width:108px;
  1923. height:150px;
  1924. background:inherit;
  1925. background-color:rgba(255, 255, 255, 0);
  1926. border:none;
  1927. border-left:0px;
  1928. border-top:0px;
  1929. border-right:0px;
  1930. border-radius:0px;
  1931. border-bottom-right-radius:0px;
  1932. border-bottom-left-radius:0px;
  1933. -moz-box-shadow:none;
  1934. -webkit-box-shadow:none;
  1935. box-shadow:none;
  1936. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1937. font-weight:400;
  1938. font-style:normal;
  1939. font-size:12px;
  1940. line-height:30px;
  1941. }
  1942. #u130472 {
  1943. border-width:0px;
  1944. position:absolute;
  1945. left:55px;
  1946. top:538px;
  1947. width:108px;
  1948. height:150px;
  1949. display:flex;
  1950. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1951. font-weight:400;
  1952. font-style:normal;
  1953. font-size:12px;
  1954. line-height:30px;
  1955. }
  1956. #u130472 .text {
  1957. position:absolute;
  1958. align-self:flex-start;
  1959. padding:0px 0px 0px 0px;
  1960. box-sizing:border-box;
  1961. width:100%;
  1962. }
  1963. #u130472_text {
  1964. border-width:0px;
  1965. word-wrap:break-word;
  1966. text-transform:none;
  1967. }
  1968. #u130473_div {
  1969. border-width:0px;
  1970. position:absolute;
  1971. left:0px;
  1972. top:0px;
  1973. width:108px;
  1974. height:150px;
  1975. background:inherit;
  1976. background-color:rgba(255, 255, 255, 0);
  1977. border:none;
  1978. border-left:0px;
  1979. border-top:0px;
  1980. border-right:0px;
  1981. border-radius:0px;
  1982. border-bottom-right-radius:0px;
  1983. border-bottom-left-radius:0px;
  1984. -moz-box-shadow:none;
  1985. -webkit-box-shadow:none;
  1986. box-shadow:none;
  1987. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1988. font-weight:400;
  1989. font-style:normal;
  1990. font-size:12px;
  1991. line-height:30px;
  1992. }
  1993. #u130473 {
  1994. border-width:0px;
  1995. position:absolute;
  1996. left:163px;
  1997. top:538px;
  1998. width:108px;
  1999. height:150px;
  2000. display:flex;
  2001. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2002. font-weight:400;
  2003. font-style:normal;
  2004. font-size:12px;
  2005. line-height:30px;
  2006. }
  2007. #u130473 .text {
  2008. position:absolute;
  2009. align-self:flex-start;
  2010. padding:0px 0px 0px 0px;
  2011. box-sizing:border-box;
  2012. width:100%;
  2013. }
  2014. #u130473_text {
  2015. border-width:0px;
  2016. word-wrap:break-word;
  2017. text-transform:none;
  2018. }
  2019. #u130474_div {
  2020. border-width:0px;
  2021. position:absolute;
  2022. left:0px;
  2023. top:0px;
  2024. width:108px;
  2025. height:150px;
  2026. background:inherit;
  2027. background-color:rgba(255, 255, 255, 0);
  2028. border:none;
  2029. border-left:0px;
  2030. border-top:0px;
  2031. border-right:0px;
  2032. border-radius:0px;
  2033. border-bottom-right-radius:0px;
  2034. border-bottom-left-radius:0px;
  2035. -moz-box-shadow:none;
  2036. -webkit-box-shadow:none;
  2037. box-shadow:none;
  2038. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2039. font-weight:400;
  2040. font-style:normal;
  2041. font-size:12px;
  2042. line-height:30px;
  2043. }
  2044. #u130474 {
  2045. border-width:0px;
  2046. position:absolute;
  2047. left:272px;
  2048. top:538px;
  2049. width:108px;
  2050. height:150px;
  2051. display:flex;
  2052. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2053. font-weight:400;
  2054. font-style:normal;
  2055. font-size:12px;
  2056. line-height:30px;
  2057. }
  2058. #u130474 .text {
  2059. position:absolute;
  2060. align-self:flex-start;
  2061. padding:0px 0px 0px 0px;
  2062. box-sizing:border-box;
  2063. width:100%;
  2064. }
  2065. #u130474_text {
  2066. border-width:0px;
  2067. word-wrap:break-word;
  2068. text-transform:none;
  2069. }
  2070. #u130475_div {
  2071. border-width:0px;
  2072. position:absolute;
  2073. left:0px;
  2074. top:0px;
  2075. width:57px;
  2076. height:50px;
  2077. background:inherit;
  2078. background-color:rgba(255, 255, 255, 0);
  2079. box-sizing:border-box;
  2080. border-width:2px;
  2081. border-style:solid;
  2082. border-color:rgba(51, 51, 51, 1);
  2083. border-left:0px;
  2084. border-top:0px;
  2085. border-right:0px;
  2086. border-radius:0px;
  2087. border-bottom-right-radius:0px;
  2088. border-bottom-left-radius:0px;
  2089. -moz-box-shadow:none;
  2090. -webkit-box-shadow:none;
  2091. box-shadow:none;
  2092. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2093. font-weight:500;
  2094. font-style:normal;
  2095. font-size:14px;
  2096. line-height:30px;
  2097. }
  2098. #u130475 {
  2099. border-width:0px;
  2100. position:absolute;
  2101. left:69px;
  2102. top:697px;
  2103. width:57px;
  2104. height:50px;
  2105. display:flex;
  2106. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2107. font-weight:500;
  2108. font-style:normal;
  2109. font-size:14px;
  2110. line-height:30px;
  2111. }
  2112. #u130475 .text {
  2113. position:absolute;
  2114. align-self:center;
  2115. padding:0px 0px 0px 0px;
  2116. box-sizing:border-box;
  2117. width:100%;
  2118. }
  2119. #u130475_text {
  2120. border-width:0px;
  2121. white-space:nowrap;
  2122. text-transform:none;
  2123. }
  2124. #u130476_div {
  2125. border-width:0px;
  2126. position:absolute;
  2127. left:0px;
  2128. top:0px;
  2129. width:57px;
  2130. height:50px;
  2131. background:inherit;
  2132. background-color:rgba(255, 255, 255, 0);
  2133. border:none;
  2134. border-left:0px;
  2135. border-top:0px;
  2136. border-right:0px;
  2137. border-radius:0px;
  2138. border-bottom-right-radius:0px;
  2139. border-bottom-left-radius:0px;
  2140. -moz-box-shadow:none;
  2141. -webkit-box-shadow:none;
  2142. box-shadow:none;
  2143. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2144. font-weight:400;
  2145. font-style:normal;
  2146. font-size:14px;
  2147. line-height:30px;
  2148. }
  2149. #u130476 {
  2150. border-width:0px;
  2151. position:absolute;
  2152. left:188px;
  2153. top:697px;
  2154. width:57px;
  2155. height:50px;
  2156. display:flex;
  2157. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2158. font-weight:400;
  2159. font-style:normal;
  2160. font-size:14px;
  2161. line-height:30px;
  2162. }
  2163. #u130476 .text {
  2164. position:absolute;
  2165. align-self:center;
  2166. padding:0px 0px 0px 0px;
  2167. box-sizing:border-box;
  2168. width:100%;
  2169. }
  2170. #u130476_text {
  2171. border-width:0px;
  2172. white-space:nowrap;
  2173. text-transform:none;
  2174. }
  2175. #u130477_div {
  2176. border-width:0px;
  2177. position:absolute;
  2178. left:0px;
  2179. top:0px;
  2180. width:57px;
  2181. height:50px;
  2182. background:inherit;
  2183. background-color:rgba(255, 255, 255, 0);
  2184. border:none;
  2185. border-left:0px;
  2186. border-top:0px;
  2187. border-right:0px;
  2188. border-radius:0px;
  2189. border-bottom-right-radius:0px;
  2190. border-bottom-left-radius:0px;
  2191. -moz-box-shadow:none;
  2192. -webkit-box-shadow:none;
  2193. box-shadow:none;
  2194. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2195. font-weight:400;
  2196. font-style:normal;
  2197. font-size:14px;
  2198. line-height:30px;
  2199. }
  2200. #u130477 {
  2201. border-width:0px;
  2202. position:absolute;
  2203. left:307px;
  2204. top:697px;
  2205. width:57px;
  2206. height:50px;
  2207. display:flex;
  2208. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2209. font-weight:400;
  2210. font-style:normal;
  2211. font-size:14px;
  2212. line-height:30px;
  2213. }
  2214. #u130477 .text {
  2215. position:absolute;
  2216. align-self:center;
  2217. padding:0px 0px 0px 0px;
  2218. box-sizing:border-box;
  2219. width:100%;
  2220. }
  2221. #u130477_text {
  2222. border-width:0px;
  2223. white-space:nowrap;
  2224. text-transform:none;
  2225. }
  2226. #u130478 {
  2227. border-width:0px;
  2228. position:absolute;
  2229. left:0px;
  2230. top:0px;
  2231. width:0px;
  2232. height:0px;
  2233. }
  2234. #u130479_img {
  2235. border-width:0px;
  2236. position:absolute;
  2237. left:0px;
  2238. top:0px;
  2239. width:355px;
  2240. height:200px;
  2241. }
  2242. #u130479 {
  2243. border-width:0px;
  2244. position:absolute;
  2245. left:39px;
  2246. top:752px;
  2247. width:355px;
  2248. height:200px;
  2249. display:flex;
  2250. }
  2251. #u130479 .text {
  2252. position:absolute;
  2253. align-self:center;
  2254. padding:2px 2px 2px 2px;
  2255. box-sizing:border-box;
  2256. width:100%;
  2257. }
  2258. #u130479_text {
  2259. border-width:0px;
  2260. word-wrap:break-word;
  2261. text-transform:none;
  2262. visibility:hidden;
  2263. }
  2264. #u130480_div {
  2265. border-width:0px;
  2266. position:absolute;
  2267. left:0px;
  2268. top:0px;
  2269. width:108px;
  2270. height:30px;
  2271. background:inherit;
  2272. background-color:rgba(255, 255, 255, 0);
  2273. border:none;
  2274. border-left:0px;
  2275. border-top:0px;
  2276. border-right:0px;
  2277. border-radius:0px;
  2278. border-bottom-right-radius:0px;
  2279. border-bottom-left-radius:0px;
  2280. -moz-box-shadow:none;
  2281. -webkit-box-shadow:none;
  2282. box-shadow:none;
  2283. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2284. font-weight:400;
  2285. font-style:normal;
  2286. font-size:12px;
  2287. line-height:30px;
  2288. }
  2289. #u130480 {
  2290. border-width:0px;
  2291. position:absolute;
  2292. left:55px;
  2293. top:763px;
  2294. width:108px;
  2295. height:30px;
  2296. display:flex;
  2297. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2298. font-weight:400;
  2299. font-style:normal;
  2300. font-size:12px;
  2301. line-height:30px;
  2302. }
  2303. #u130480 .text {
  2304. position:absolute;
  2305. align-self:flex-start;
  2306. padding:0px 0px 0px 0px;
  2307. box-sizing:border-box;
  2308. width:100%;
  2309. }
  2310. #u130480_text {
  2311. border-width:0px;
  2312. word-wrap:break-word;
  2313. text-transform:none;
  2314. }
  2315. #u130481_div {
  2316. border-width:0px;
  2317. position:absolute;
  2318. left:0px;
  2319. top:0px;
  2320. width:60px;
  2321. height:30px;
  2322. background:inherit;
  2323. background-color:rgba(255, 255, 255, 0);
  2324. border:none;
  2325. border-left:0px;
  2326. border-top:0px;
  2327. border-right:0px;
  2328. border-radius:0px;
  2329. border-bottom-right-radius:0px;
  2330. border-bottom-left-radius:0px;
  2331. -moz-box-shadow:none;
  2332. -webkit-box-shadow:none;
  2333. box-shadow:none;
  2334. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2335. font-weight:400;
  2336. font-style:normal;
  2337. font-size:12px;
  2338. line-height:30px;
  2339. }
  2340. #u130481 {
  2341. border-width:0px;
  2342. position:absolute;
  2343. left:163px;
  2344. top:763px;
  2345. width:60px;
  2346. height:30px;
  2347. display:flex;
  2348. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2349. font-weight:400;
  2350. font-style:normal;
  2351. font-size:12px;
  2352. line-height:30px;
  2353. }
  2354. #u130481 .text {
  2355. position:absolute;
  2356. align-self:flex-start;
  2357. padding:0px 0px 0px 0px;
  2358. box-sizing:border-box;
  2359. width:100%;
  2360. }
  2361. #u130481_text {
  2362. border-width:0px;
  2363. word-wrap:break-word;
  2364. text-transform:none;
  2365. }
  2366. #u130482_div {
  2367. border-width:0px;
  2368. position:absolute;
  2369. left:0px;
  2370. top:0px;
  2371. width:60px;
  2372. height:30px;
  2373. background:inherit;
  2374. background-color:rgba(255, 255, 255, 0);
  2375. border:none;
  2376. border-left:0px;
  2377. border-top:0px;
  2378. border-right:0px;
  2379. border-radius:0px;
  2380. border-bottom-right-radius:0px;
  2381. border-bottom-left-radius:0px;
  2382. -moz-box-shadow:none;
  2383. -webkit-box-shadow:none;
  2384. box-shadow:none;
  2385. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2386. font-weight:400;
  2387. font-style:normal;
  2388. font-size:12px;
  2389. line-height:30px;
  2390. }
  2391. #u130482 {
  2392. border-width:0px;
  2393. position:absolute;
  2394. left:223px;
  2395. top:763px;
  2396. width:60px;
  2397. height:30px;
  2398. display:flex;
  2399. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2400. font-weight:400;
  2401. font-style:normal;
  2402. font-size:12px;
  2403. line-height:30px;
  2404. }
  2405. #u130482 .text {
  2406. position:absolute;
  2407. align-self:flex-start;
  2408. padding:0px 0px 0px 0px;
  2409. box-sizing:border-box;
  2410. width:100%;
  2411. }
  2412. #u130482_text {
  2413. border-width:0px;
  2414. word-wrap:break-word;
  2415. text-transform:none;
  2416. }
  2417. #u130483_div {
  2418. border-width:0px;
  2419. position:absolute;
  2420. left:0px;
  2421. top:0px;
  2422. width:60px;
  2423. height:30px;
  2424. background:inherit;
  2425. background-color:rgba(255, 255, 255, 0);
  2426. border:none;
  2427. border-left:0px;
  2428. border-top:0px;
  2429. border-right:0px;
  2430. border-radius:0px;
  2431. border-bottom-right-radius:0px;
  2432. border-bottom-left-radius:0px;
  2433. -moz-box-shadow:none;
  2434. -webkit-box-shadow:none;
  2435. box-shadow:none;
  2436. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2437. font-weight:400;
  2438. font-style:normal;
  2439. font-size:12px;
  2440. line-height:30px;
  2441. }
  2442. #u130483 {
  2443. border-width:0px;
  2444. position:absolute;
  2445. left:283px;
  2446. top:763px;
  2447. width:60px;
  2448. height:30px;
  2449. display:flex;
  2450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2451. font-weight:400;
  2452. font-style:normal;
  2453. font-size:12px;
  2454. line-height:30px;
  2455. }
  2456. #u130483 .text {
  2457. position:absolute;
  2458. align-self:flex-start;
  2459. padding:0px 0px 0px 0px;
  2460. box-sizing:border-box;
  2461. width:100%;
  2462. }
  2463. #u130483_text {
  2464. border-width:0px;
  2465. word-wrap:break-word;
  2466. text-transform:none;
  2467. }
  2468. #u130484_div {
  2469. border-width:0px;
  2470. position:absolute;
  2471. left:0px;
  2472. top:0px;
  2473. width:51px;
  2474. height:30px;
  2475. background:inherit;
  2476. background-color:rgba(255, 255, 255, 0);
  2477. border:none;
  2478. border-left:0px;
  2479. border-top:0px;
  2480. border-right:0px;
  2481. border-radius:0px;
  2482. border-bottom-right-radius:0px;
  2483. border-bottom-left-radius:0px;
  2484. -moz-box-shadow:none;
  2485. -webkit-box-shadow:none;
  2486. box-shadow:none;
  2487. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2488. font-weight:400;
  2489. font-style:normal;
  2490. font-size:12px;
  2491. line-height:30px;
  2492. }
  2493. #u130484 {
  2494. border-width:0px;
  2495. position:absolute;
  2496. left:343px;
  2497. top:763px;
  2498. width:51px;
  2499. height:30px;
  2500. display:flex;
  2501. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2502. font-weight:400;
  2503. font-style:normal;
  2504. font-size:12px;
  2505. line-height:30px;
  2506. }
  2507. #u130484 .text {
  2508. position:absolute;
  2509. align-self:flex-start;
  2510. padding:0px 0px 0px 0px;
  2511. box-sizing:border-box;
  2512. width:100%;
  2513. }
  2514. #u130484_text {
  2515. border-width:0px;
  2516. word-wrap:break-word;
  2517. text-transform:none;
  2518. }
  2519. #u130485_div {
  2520. border-width:0px;
  2521. position:absolute;
  2522. left:0px;
  2523. top:0px;
  2524. width:108px;
  2525. height:30px;
  2526. background:inherit;
  2527. background-color:rgba(255, 255, 255, 0);
  2528. border:none;
  2529. border-left:0px;
  2530. border-top:0px;
  2531. border-right:0px;
  2532. border-radius:0px;
  2533. border-bottom-right-radius:0px;
  2534. border-bottom-left-radius:0px;
  2535. -moz-box-shadow:none;
  2536. -webkit-box-shadow:none;
  2537. box-shadow:none;
  2538. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2539. font-weight:400;
  2540. font-style:normal;
  2541. font-size:12px;
  2542. line-height:30px;
  2543. }
  2544. #u130485 {
  2545. border-width:0px;
  2546. position:absolute;
  2547. left:55px;
  2548. top:793px;
  2549. width:108px;
  2550. height:30px;
  2551. display:flex;
  2552. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2553. font-weight:400;
  2554. font-style:normal;
  2555. font-size:12px;
  2556. line-height:30px;
  2557. }
  2558. #u130485 .text {
  2559. position:absolute;
  2560. align-self:flex-start;
  2561. padding:0px 0px 0px 10px;
  2562. box-sizing:border-box;
  2563. width:100%;
  2564. }
  2565. #u130485_text {
  2566. border-width:0px;
  2567. word-wrap:break-word;
  2568. text-transform:none;
  2569. }
  2570. #u130486_div {
  2571. border-width:0px;
  2572. position:absolute;
  2573. left:0px;
  2574. top:0px;
  2575. width:60px;
  2576. height:30px;
  2577. background:inherit;
  2578. background-color:rgba(255, 255, 255, 0);
  2579. border:none;
  2580. border-left:0px;
  2581. border-top:0px;
  2582. border-right:0px;
  2583. border-radius:0px;
  2584. border-bottom-right-radius:0px;
  2585. border-bottom-left-radius:0px;
  2586. -moz-box-shadow:none;
  2587. -webkit-box-shadow:none;
  2588. box-shadow:none;
  2589. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2590. font-weight:400;
  2591. font-style:normal;
  2592. font-size:12px;
  2593. line-height:30px;
  2594. }
  2595. #u130486 {
  2596. border-width:0px;
  2597. position:absolute;
  2598. left:163px;
  2599. top:793px;
  2600. width:60px;
  2601. height:30px;
  2602. display:flex;
  2603. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2604. font-weight:400;
  2605. font-style:normal;
  2606. font-size:12px;
  2607. line-height:30px;
  2608. }
  2609. #u130486 .text {
  2610. position:absolute;
  2611. align-self:flex-start;
  2612. padding:0px 0px 0px 0px;
  2613. box-sizing:border-box;
  2614. width:100%;
  2615. }
  2616. #u130486_text {
  2617. border-width:0px;
  2618. word-wrap:break-word;
  2619. text-transform:none;
  2620. }
  2621. #u130487_div {
  2622. border-width:0px;
  2623. position:absolute;
  2624. left:0px;
  2625. top:0px;
  2626. width:60px;
  2627. height:30px;
  2628. background:inherit;
  2629. background-color:rgba(255, 255, 255, 0);
  2630. border:none;
  2631. border-left:0px;
  2632. border-top:0px;
  2633. border-right:0px;
  2634. border-radius:0px;
  2635. border-bottom-right-radius:0px;
  2636. border-bottom-left-radius:0px;
  2637. -moz-box-shadow:none;
  2638. -webkit-box-shadow:none;
  2639. box-shadow:none;
  2640. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2641. font-weight:400;
  2642. font-style:normal;
  2643. font-size:12px;
  2644. line-height:30px;
  2645. }
  2646. #u130487 {
  2647. border-width:0px;
  2648. position:absolute;
  2649. left:223px;
  2650. top:793px;
  2651. width:60px;
  2652. height:30px;
  2653. display:flex;
  2654. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2655. font-weight:400;
  2656. font-style:normal;
  2657. font-size:12px;
  2658. line-height:30px;
  2659. }
  2660. #u130487 .text {
  2661. position:absolute;
  2662. align-self:flex-start;
  2663. padding:0px 0px 0px 0px;
  2664. box-sizing:border-box;
  2665. width:100%;
  2666. }
  2667. #u130487_text {
  2668. border-width:0px;
  2669. word-wrap:break-word;
  2670. text-transform:none;
  2671. }
  2672. #u130488_div {
  2673. border-width:0px;
  2674. position:absolute;
  2675. left:0px;
  2676. top:0px;
  2677. width:60px;
  2678. height:30px;
  2679. background:inherit;
  2680. background-color:rgba(255, 255, 255, 0);
  2681. border:none;
  2682. border-left:0px;
  2683. border-top:0px;
  2684. border-right:0px;
  2685. border-radius:0px;
  2686. border-bottom-right-radius:0px;
  2687. border-bottom-left-radius:0px;
  2688. -moz-box-shadow:none;
  2689. -webkit-box-shadow:none;
  2690. box-shadow:none;
  2691. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2692. font-weight:400;
  2693. font-style:normal;
  2694. font-size:12px;
  2695. line-height:30px;
  2696. }
  2697. #u130488 {
  2698. border-width:0px;
  2699. position:absolute;
  2700. left:283px;
  2701. top:793px;
  2702. width:60px;
  2703. height:30px;
  2704. display:flex;
  2705. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2706. font-weight:400;
  2707. font-style:normal;
  2708. font-size:12px;
  2709. line-height:30px;
  2710. }
  2711. #u130488 .text {
  2712. position:absolute;
  2713. align-self:flex-start;
  2714. padding:0px 0px 0px 0px;
  2715. box-sizing:border-box;
  2716. width:100%;
  2717. }
  2718. #u130488_text {
  2719. border-width:0px;
  2720. word-wrap:break-word;
  2721. text-transform:none;
  2722. }
  2723. #u130489_div {
  2724. border-width:0px;
  2725. position:absolute;
  2726. left:0px;
  2727. top:0px;
  2728. width:51px;
  2729. height:30px;
  2730. background:inherit;
  2731. background-color:rgba(255, 255, 255, 0);
  2732. border:none;
  2733. border-left:0px;
  2734. border-top:0px;
  2735. border-right:0px;
  2736. border-radius:0px;
  2737. border-bottom-right-radius:0px;
  2738. border-bottom-left-radius:0px;
  2739. -moz-box-shadow:none;
  2740. -webkit-box-shadow:none;
  2741. box-shadow:none;
  2742. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2743. font-weight:400;
  2744. font-style:normal;
  2745. font-size:12px;
  2746. line-height:30px;
  2747. }
  2748. #u130489 {
  2749. border-width:0px;
  2750. position:absolute;
  2751. left:343px;
  2752. top:793px;
  2753. width:51px;
  2754. height:30px;
  2755. display:flex;
  2756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2757. font-weight:400;
  2758. font-style:normal;
  2759. font-size:12px;
  2760. line-height:30px;
  2761. }
  2762. #u130489 .text {
  2763. position:absolute;
  2764. align-self:flex-start;
  2765. padding:0px 0px 0px 0px;
  2766. box-sizing:border-box;
  2767. width:100%;
  2768. }
  2769. #u130489_text {
  2770. border-width:0px;
  2771. word-wrap:break-word;
  2772. text-transform:none;
  2773. }
  2774. #u130490_div {
  2775. border-width:0px;
  2776. position:absolute;
  2777. left:0px;
  2778. top:0px;
  2779. width:108px;
  2780. height:30px;
  2781. background:inherit;
  2782. background-color:rgba(255, 255, 255, 0);
  2783. border:none;
  2784. border-left:0px;
  2785. border-top:0px;
  2786. border-right:0px;
  2787. border-radius:0px;
  2788. border-bottom-right-radius:0px;
  2789. border-bottom-left-radius:0px;
  2790. -moz-box-shadow:none;
  2791. -webkit-box-shadow:none;
  2792. box-shadow:none;
  2793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2794. font-weight:400;
  2795. font-style:normal;
  2796. font-size:12px;
  2797. line-height:30px;
  2798. }
  2799. #u130490 {
  2800. border-width:0px;
  2801. position:absolute;
  2802. left:55px;
  2803. top:823px;
  2804. width:108px;
  2805. height:30px;
  2806. display:flex;
  2807. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2808. font-weight:400;
  2809. font-style:normal;
  2810. font-size:12px;
  2811. line-height:30px;
  2812. }
  2813. #u130490 .text {
  2814. position:absolute;
  2815. align-self:flex-start;
  2816. padding:0px 0px 0px 10px;
  2817. box-sizing:border-box;
  2818. width:100%;
  2819. }
  2820. #u130490_text {
  2821. border-width:0px;
  2822. word-wrap:break-word;
  2823. text-transform:none;
  2824. }
  2825. #u130491_div {
  2826. border-width:0px;
  2827. position:absolute;
  2828. left:0px;
  2829. top:0px;
  2830. width:60px;
  2831. height:30px;
  2832. background:inherit;
  2833. background-color:rgba(255, 255, 255, 0);
  2834. border:none;
  2835. border-left:0px;
  2836. border-top:0px;
  2837. border-right:0px;
  2838. border-radius:0px;
  2839. border-bottom-right-radius:0px;
  2840. border-bottom-left-radius:0px;
  2841. -moz-box-shadow:none;
  2842. -webkit-box-shadow:none;
  2843. box-shadow:none;
  2844. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2845. font-weight:400;
  2846. font-style:normal;
  2847. font-size:12px;
  2848. line-height:30px;
  2849. }
  2850. #u130491 {
  2851. border-width:0px;
  2852. position:absolute;
  2853. left:163px;
  2854. top:823px;
  2855. width:60px;
  2856. height:30px;
  2857. display:flex;
  2858. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2859. font-weight:400;
  2860. font-style:normal;
  2861. font-size:12px;
  2862. line-height:30px;
  2863. }
  2864. #u130491 .text {
  2865. position:absolute;
  2866. align-self:flex-start;
  2867. padding:0px 0px 0px 0px;
  2868. box-sizing:border-box;
  2869. width:100%;
  2870. }
  2871. #u130491_text {
  2872. border-width:0px;
  2873. word-wrap:break-word;
  2874. text-transform:none;
  2875. }
  2876. #u130492_div {
  2877. border-width:0px;
  2878. position:absolute;
  2879. left:0px;
  2880. top:0px;
  2881. width:60px;
  2882. height:30px;
  2883. background:inherit;
  2884. background-color:rgba(255, 255, 255, 0);
  2885. border:none;
  2886. border-left:0px;
  2887. border-top:0px;
  2888. border-right:0px;
  2889. border-radius:0px;
  2890. border-bottom-right-radius:0px;
  2891. border-bottom-left-radius:0px;
  2892. -moz-box-shadow:none;
  2893. -webkit-box-shadow:none;
  2894. box-shadow:none;
  2895. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2896. font-weight:400;
  2897. font-style:normal;
  2898. font-size:12px;
  2899. line-height:30px;
  2900. }
  2901. #u130492 {
  2902. border-width:0px;
  2903. position:absolute;
  2904. left:223px;
  2905. top:823px;
  2906. width:60px;
  2907. height:30px;
  2908. display:flex;
  2909. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2910. font-weight:400;
  2911. font-style:normal;
  2912. font-size:12px;
  2913. line-height:30px;
  2914. }
  2915. #u130492 .text {
  2916. position:absolute;
  2917. align-self:flex-start;
  2918. padding:0px 0px 0px 0px;
  2919. box-sizing:border-box;
  2920. width:100%;
  2921. }
  2922. #u130492_text {
  2923. border-width:0px;
  2924. word-wrap:break-word;
  2925. text-transform:none;
  2926. }
  2927. #u130493_div {
  2928. border-width:0px;
  2929. position:absolute;
  2930. left:0px;
  2931. top:0px;
  2932. width:60px;
  2933. height:30px;
  2934. background:inherit;
  2935. background-color:rgba(255, 255, 255, 0);
  2936. border:none;
  2937. border-left:0px;
  2938. border-top:0px;
  2939. border-right:0px;
  2940. border-radius:0px;
  2941. border-bottom-right-radius:0px;
  2942. border-bottom-left-radius:0px;
  2943. -moz-box-shadow:none;
  2944. -webkit-box-shadow:none;
  2945. box-shadow:none;
  2946. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2947. font-weight:400;
  2948. font-style:normal;
  2949. font-size:12px;
  2950. line-height:30px;
  2951. }
  2952. #u130493 {
  2953. border-width:0px;
  2954. position:absolute;
  2955. left:283px;
  2956. top:823px;
  2957. width:60px;
  2958. height:30px;
  2959. display:flex;
  2960. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2961. font-weight:400;
  2962. font-style:normal;
  2963. font-size:12px;
  2964. line-height:30px;
  2965. }
  2966. #u130493 .text {
  2967. position:absolute;
  2968. align-self:flex-start;
  2969. padding:0px 0px 0px 0px;
  2970. box-sizing:border-box;
  2971. width:100%;
  2972. }
  2973. #u130493_text {
  2974. border-width:0px;
  2975. word-wrap:break-word;
  2976. text-transform:none;
  2977. }
  2978. #u130494_div {
  2979. border-width:0px;
  2980. position:absolute;
  2981. left:0px;
  2982. top:0px;
  2983. width:51px;
  2984. height:30px;
  2985. background:inherit;
  2986. background-color:rgba(255, 255, 255, 0);
  2987. border:none;
  2988. border-left:0px;
  2989. border-top:0px;
  2990. border-right:0px;
  2991. border-radius:0px;
  2992. border-bottom-right-radius:0px;
  2993. border-bottom-left-radius:0px;
  2994. -moz-box-shadow:none;
  2995. -webkit-box-shadow:none;
  2996. box-shadow:none;
  2997. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2998. font-weight:400;
  2999. font-style:normal;
  3000. font-size:12px;
  3001. line-height:30px;
  3002. }
  3003. #u130494 {
  3004. border-width:0px;
  3005. position:absolute;
  3006. left:343px;
  3007. top:823px;
  3008. width:51px;
  3009. height:30px;
  3010. display:flex;
  3011. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3012. font-weight:400;
  3013. font-style:normal;
  3014. font-size:12px;
  3015. line-height:30px;
  3016. }
  3017. #u130494 .text {
  3018. position:absolute;
  3019. align-self:flex-start;
  3020. padding:0px 0px 0px 0px;
  3021. box-sizing:border-box;
  3022. width:100%;
  3023. }
  3024. #u130494_text {
  3025. border-width:0px;
  3026. word-wrap:break-word;
  3027. text-transform:none;
  3028. }
  3029. #u130495_div {
  3030. border-width:0px;
  3031. position:absolute;
  3032. left:0px;
  3033. top:0px;
  3034. width:108px;
  3035. height:30px;
  3036. background:inherit;
  3037. background-color:rgba(255, 255, 255, 0);
  3038. border:none;
  3039. border-left:0px;
  3040. border-top:0px;
  3041. border-right:0px;
  3042. border-radius:0px;
  3043. border-bottom-right-radius:0px;
  3044. border-bottom-left-radius:0px;
  3045. -moz-box-shadow:none;
  3046. -webkit-box-shadow:none;
  3047. box-shadow:none;
  3048. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3049. font-weight:400;
  3050. font-style:normal;
  3051. font-size:12px;
  3052. line-height:30px;
  3053. }
  3054. #u130495 {
  3055. border-width:0px;
  3056. position:absolute;
  3057. left:55px;
  3058. top:853px;
  3059. width:108px;
  3060. height:30px;
  3061. display:flex;
  3062. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3063. font-weight:400;
  3064. font-style:normal;
  3065. font-size:12px;
  3066. line-height:30px;
  3067. }
  3068. #u130495 .text {
  3069. position:absolute;
  3070. align-self:flex-start;
  3071. padding:0px 0px 0px 10px;
  3072. box-sizing:border-box;
  3073. width:100%;
  3074. }
  3075. #u130495_text {
  3076. border-width:0px;
  3077. word-wrap:break-word;
  3078. text-transform:none;
  3079. }
  3080. #u130496_div {
  3081. border-width:0px;
  3082. position:absolute;
  3083. left:0px;
  3084. top:0px;
  3085. width:60px;
  3086. height:30px;
  3087. background:inherit;
  3088. background-color:rgba(255, 255, 255, 0);
  3089. border:none;
  3090. border-left:0px;
  3091. border-top:0px;
  3092. border-right:0px;
  3093. border-radius:0px;
  3094. border-bottom-right-radius:0px;
  3095. border-bottom-left-radius:0px;
  3096. -moz-box-shadow:none;
  3097. -webkit-box-shadow:none;
  3098. box-shadow:none;
  3099. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3100. font-weight:400;
  3101. font-style:normal;
  3102. font-size:12px;
  3103. line-height:30px;
  3104. }
  3105. #u130496 {
  3106. border-width:0px;
  3107. position:absolute;
  3108. left:163px;
  3109. top:853px;
  3110. width:60px;
  3111. height:30px;
  3112. display:flex;
  3113. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3114. font-weight:400;
  3115. font-style:normal;
  3116. font-size:12px;
  3117. line-height:30px;
  3118. }
  3119. #u130496 .text {
  3120. position:absolute;
  3121. align-self:flex-start;
  3122. padding:0px 0px 0px 0px;
  3123. box-sizing:border-box;
  3124. width:100%;
  3125. }
  3126. #u130496_text {
  3127. border-width:0px;
  3128. word-wrap:break-word;
  3129. text-transform:none;
  3130. }
  3131. #u130497_div {
  3132. border-width:0px;
  3133. position:absolute;
  3134. left:0px;
  3135. top:0px;
  3136. width:60px;
  3137. height:30px;
  3138. background:inherit;
  3139. background-color:rgba(255, 255, 255, 0);
  3140. border:none;
  3141. border-left:0px;
  3142. border-top:0px;
  3143. border-right:0px;
  3144. border-radius:0px;
  3145. border-bottom-right-radius:0px;
  3146. border-bottom-left-radius:0px;
  3147. -moz-box-shadow:none;
  3148. -webkit-box-shadow:none;
  3149. box-shadow:none;
  3150. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3151. font-weight:400;
  3152. font-style:normal;
  3153. font-size:12px;
  3154. line-height:30px;
  3155. }
  3156. #u130497 {
  3157. border-width:0px;
  3158. position:absolute;
  3159. left:223px;
  3160. top:853px;
  3161. width:60px;
  3162. height:30px;
  3163. display:flex;
  3164. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3165. font-weight:400;
  3166. font-style:normal;
  3167. font-size:12px;
  3168. line-height:30px;
  3169. }
  3170. #u130497 .text {
  3171. position:absolute;
  3172. align-self:flex-start;
  3173. padding:0px 0px 0px 0px;
  3174. box-sizing:border-box;
  3175. width:100%;
  3176. }
  3177. #u130497_text {
  3178. border-width:0px;
  3179. word-wrap:break-word;
  3180. text-transform:none;
  3181. }
  3182. #u130498_div {
  3183. border-width:0px;
  3184. position:absolute;
  3185. left:0px;
  3186. top:0px;
  3187. width:60px;
  3188. height:30px;
  3189. background:inherit;
  3190. background-color:rgba(255, 255, 255, 0);
  3191. border:none;
  3192. border-left:0px;
  3193. border-top:0px;
  3194. border-right:0px;
  3195. border-radius:0px;
  3196. border-bottom-right-radius:0px;
  3197. border-bottom-left-radius:0px;
  3198. -moz-box-shadow:none;
  3199. -webkit-box-shadow:none;
  3200. box-shadow:none;
  3201. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3202. font-weight:400;
  3203. font-style:normal;
  3204. font-size:12px;
  3205. line-height:30px;
  3206. }
  3207. #u130498 {
  3208. border-width:0px;
  3209. position:absolute;
  3210. left:283px;
  3211. top:853px;
  3212. width:60px;
  3213. height:30px;
  3214. display:flex;
  3215. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3216. font-weight:400;
  3217. font-style:normal;
  3218. font-size:12px;
  3219. line-height:30px;
  3220. }
  3221. #u130498 .text {
  3222. position:absolute;
  3223. align-self:flex-start;
  3224. padding:0px 0px 0px 0px;
  3225. box-sizing:border-box;
  3226. width:100%;
  3227. }
  3228. #u130498_text {
  3229. border-width:0px;
  3230. word-wrap:break-word;
  3231. text-transform:none;
  3232. }
  3233. #u130499_div {
  3234. border-width:0px;
  3235. position:absolute;
  3236. left:0px;
  3237. top:0px;
  3238. width:51px;
  3239. height:30px;
  3240. background:inherit;
  3241. background-color:rgba(255, 255, 255, 0);
  3242. border:none;
  3243. border-left:0px;
  3244. border-top:0px;
  3245. border-right:0px;
  3246. border-radius:0px;
  3247. border-bottom-right-radius:0px;
  3248. border-bottom-left-radius:0px;
  3249. -moz-box-shadow:none;
  3250. -webkit-box-shadow:none;
  3251. box-shadow:none;
  3252. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3253. font-weight:400;
  3254. font-style:normal;
  3255. font-size:12px;
  3256. line-height:30px;
  3257. }
  3258. #u130499 {
  3259. border-width:0px;
  3260. position:absolute;
  3261. left:343px;
  3262. top:853px;
  3263. width:51px;
  3264. height:30px;
  3265. display:flex;
  3266. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3267. font-weight:400;
  3268. font-style:normal;
  3269. font-size:12px;
  3270. line-height:30px;
  3271. }
  3272. #u130499 .text {
  3273. position:absolute;
  3274. align-self:flex-start;
  3275. padding:0px 0px 0px 0px;
  3276. box-sizing:border-box;
  3277. width:100%;
  3278. }
  3279. #u130499_text {
  3280. border-width:0px;
  3281. word-wrap:break-word;
  3282. text-transform:none;
  3283. }
  3284. #u130500_div {
  3285. border-width:0px;
  3286. position:absolute;
  3287. left:0px;
  3288. top:0px;
  3289. width:108px;
  3290. height:30px;
  3291. background:inherit;
  3292. background-color:rgba(255, 255, 255, 0);
  3293. border:none;
  3294. border-left:0px;
  3295. border-top:0px;
  3296. border-right:0px;
  3297. border-radius:0px;
  3298. border-bottom-right-radius:0px;
  3299. border-bottom-left-radius:0px;
  3300. -moz-box-shadow:none;
  3301. -webkit-box-shadow:none;
  3302. box-shadow:none;
  3303. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3304. font-weight:400;
  3305. font-style:normal;
  3306. font-size:12px;
  3307. line-height:30px;
  3308. }
  3309. #u130500 {
  3310. border-width:0px;
  3311. position:absolute;
  3312. left:55px;
  3313. top:883px;
  3314. width:108px;
  3315. height:30px;
  3316. display:flex;
  3317. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3318. font-weight:400;
  3319. font-style:normal;
  3320. font-size:12px;
  3321. line-height:30px;
  3322. }
  3323. #u130500 .text {
  3324. position:absolute;
  3325. align-self:flex-start;
  3326. padding:0px 0px 0px 0px;
  3327. box-sizing:border-box;
  3328. width:100%;
  3329. }
  3330. #u130500_text {
  3331. border-width:0px;
  3332. word-wrap:break-word;
  3333. text-transform:none;
  3334. }
  3335. #u130501_div {
  3336. border-width:0px;
  3337. position:absolute;
  3338. left:0px;
  3339. top:0px;
  3340. width:60px;
  3341. height:30px;
  3342. background:inherit;
  3343. background-color:rgba(255, 255, 255, 0);
  3344. border:none;
  3345. border-left:0px;
  3346. border-top:0px;
  3347. border-right:0px;
  3348. border-radius:0px;
  3349. border-bottom-right-radius:0px;
  3350. border-bottom-left-radius:0px;
  3351. -moz-box-shadow:none;
  3352. -webkit-box-shadow:none;
  3353. box-shadow:none;
  3354. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3355. font-weight:400;
  3356. font-style:normal;
  3357. font-size:12px;
  3358. line-height:30px;
  3359. }
  3360. #u130501 {
  3361. border-width:0px;
  3362. position:absolute;
  3363. left:163px;
  3364. top:883px;
  3365. width:60px;
  3366. height:30px;
  3367. display:flex;
  3368. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3369. font-weight:400;
  3370. font-style:normal;
  3371. font-size:12px;
  3372. line-height:30px;
  3373. }
  3374. #u130501 .text {
  3375. position:absolute;
  3376. align-self:flex-start;
  3377. padding:0px 0px 0px 0px;
  3378. box-sizing:border-box;
  3379. width:100%;
  3380. }
  3381. #u130501_text {
  3382. border-width:0px;
  3383. word-wrap:break-word;
  3384. text-transform:none;
  3385. }
  3386. #u130502_div {
  3387. border-width:0px;
  3388. position:absolute;
  3389. left:0px;
  3390. top:0px;
  3391. width:60px;
  3392. height:30px;
  3393. background:inherit;
  3394. background-color:rgba(255, 255, 255, 0);
  3395. border:none;
  3396. border-left:0px;
  3397. border-top:0px;
  3398. border-right:0px;
  3399. border-radius:0px;
  3400. border-bottom-right-radius:0px;
  3401. border-bottom-left-radius:0px;
  3402. -moz-box-shadow:none;
  3403. -webkit-box-shadow:none;
  3404. box-shadow:none;
  3405. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3406. font-weight:400;
  3407. font-style:normal;
  3408. font-size:12px;
  3409. line-height:30px;
  3410. }
  3411. #u130502 {
  3412. border-width:0px;
  3413. position:absolute;
  3414. left:223px;
  3415. top:883px;
  3416. width:60px;
  3417. height:30px;
  3418. display:flex;
  3419. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3420. font-weight:400;
  3421. font-style:normal;
  3422. font-size:12px;
  3423. line-height:30px;
  3424. }
  3425. #u130502 .text {
  3426. position:absolute;
  3427. align-self:flex-start;
  3428. padding:0px 0px 0px 0px;
  3429. box-sizing:border-box;
  3430. width:100%;
  3431. }
  3432. #u130502_text {
  3433. border-width:0px;
  3434. word-wrap:break-word;
  3435. text-transform:none;
  3436. }
  3437. #u130503_div {
  3438. border-width:0px;
  3439. position:absolute;
  3440. left:0px;
  3441. top:0px;
  3442. width:60px;
  3443. height:30px;
  3444. background:inherit;
  3445. background-color:rgba(255, 255, 255, 0);
  3446. border:none;
  3447. border-left:0px;
  3448. border-top:0px;
  3449. border-right:0px;
  3450. border-radius:0px;
  3451. border-bottom-right-radius:0px;
  3452. border-bottom-left-radius:0px;
  3453. -moz-box-shadow:none;
  3454. -webkit-box-shadow:none;
  3455. box-shadow:none;
  3456. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3457. font-weight:400;
  3458. font-style:normal;
  3459. font-size:12px;
  3460. line-height:30px;
  3461. }
  3462. #u130503 {
  3463. border-width:0px;
  3464. position:absolute;
  3465. left:283px;
  3466. top:883px;
  3467. width:60px;
  3468. height:30px;
  3469. display:flex;
  3470. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3471. font-weight:400;
  3472. font-style:normal;
  3473. font-size:12px;
  3474. line-height:30px;
  3475. }
  3476. #u130503 .text {
  3477. position:absolute;
  3478. align-self:flex-start;
  3479. padding:0px 0px 0px 0px;
  3480. box-sizing:border-box;
  3481. width:100%;
  3482. }
  3483. #u130503_text {
  3484. border-width:0px;
  3485. word-wrap:break-word;
  3486. text-transform:none;
  3487. }
  3488. #u130504_div {
  3489. border-width:0px;
  3490. position:absolute;
  3491. left:0px;
  3492. top:0px;
  3493. width:51px;
  3494. height:30px;
  3495. background:inherit;
  3496. background-color:rgba(255, 255, 255, 0);
  3497. border:none;
  3498. border-left:0px;
  3499. border-top:0px;
  3500. border-right:0px;
  3501. border-radius:0px;
  3502. border-bottom-right-radius:0px;
  3503. border-bottom-left-radius:0px;
  3504. -moz-box-shadow:none;
  3505. -webkit-box-shadow:none;
  3506. box-shadow:none;
  3507. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3508. font-weight:400;
  3509. font-style:normal;
  3510. font-size:12px;
  3511. line-height:30px;
  3512. }
  3513. #u130504 {
  3514. border-width:0px;
  3515. position:absolute;
  3516. left:343px;
  3517. top:883px;
  3518. width:51px;
  3519. height:30px;
  3520. display:flex;
  3521. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3522. font-weight:400;
  3523. font-style:normal;
  3524. font-size:12px;
  3525. line-height:30px;
  3526. }
  3527. #u130504 .text {
  3528. position:absolute;
  3529. align-self:flex-start;
  3530. padding:0px 0px 0px 0px;
  3531. box-sizing:border-box;
  3532. width:100%;
  3533. }
  3534. #u130504_text {
  3535. border-width:0px;
  3536. word-wrap:break-word;
  3537. text-transform:none;
  3538. }
  3539. #u130505_div {
  3540. border-width:0px;
  3541. position:absolute;
  3542. left:0px;
  3543. top:0px;
  3544. width:108px;
  3545. height:30px;
  3546. background:inherit;
  3547. background-color:rgba(255, 255, 255, 0);
  3548. border:none;
  3549. border-left:0px;
  3550. border-top:0px;
  3551. border-right:0px;
  3552. border-radius:0px;
  3553. border-bottom-right-radius:0px;
  3554. border-bottom-left-radius:0px;
  3555. -moz-box-shadow:none;
  3556. -webkit-box-shadow:none;
  3557. box-shadow:none;
  3558. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3559. font-weight:400;
  3560. font-style:normal;
  3561. font-size:12px;
  3562. line-height:30px;
  3563. }
  3564. #u130505 {
  3565. border-width:0px;
  3566. position:absolute;
  3567. left:55px;
  3568. top:913px;
  3569. width:108px;
  3570. height:30px;
  3571. display:flex;
  3572. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3573. font-weight:400;
  3574. font-style:normal;
  3575. font-size:12px;
  3576. line-height:30px;
  3577. }
  3578. #u130505 .text {
  3579. position:absolute;
  3580. align-self:flex-start;
  3581. padding:0px 0px 0px 0px;
  3582. box-sizing:border-box;
  3583. width:100%;
  3584. }
  3585. #u130505_text {
  3586. border-width:0px;
  3587. word-wrap:break-word;
  3588. text-transform:none;
  3589. }
  3590. #u130506_div {
  3591. border-width:0px;
  3592. position:absolute;
  3593. left:0px;
  3594. top:0px;
  3595. width:60px;
  3596. height:30px;
  3597. background:inherit;
  3598. background-color:rgba(255, 255, 255, 0);
  3599. border:none;
  3600. border-left:0px;
  3601. border-top:0px;
  3602. border-right:0px;
  3603. border-radius:0px;
  3604. border-bottom-right-radius:0px;
  3605. border-bottom-left-radius:0px;
  3606. -moz-box-shadow:none;
  3607. -webkit-box-shadow:none;
  3608. box-shadow:none;
  3609. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3610. font-weight:400;
  3611. font-style:normal;
  3612. font-size:12px;
  3613. line-height:30px;
  3614. }
  3615. #u130506 {
  3616. border-width:0px;
  3617. position:absolute;
  3618. left:163px;
  3619. top:913px;
  3620. width:60px;
  3621. height:30px;
  3622. display:flex;
  3623. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3624. font-weight:400;
  3625. font-style:normal;
  3626. font-size:12px;
  3627. line-height:30px;
  3628. }
  3629. #u130506 .text {
  3630. position:absolute;
  3631. align-self:flex-start;
  3632. padding:0px 0px 0px 0px;
  3633. box-sizing:border-box;
  3634. width:100%;
  3635. }
  3636. #u130506_text {
  3637. border-width:0px;
  3638. word-wrap:break-word;
  3639. text-transform:none;
  3640. }
  3641. #u130507_div {
  3642. border-width:0px;
  3643. position:absolute;
  3644. left:0px;
  3645. top:0px;
  3646. width:60px;
  3647. height:30px;
  3648. background:inherit;
  3649. background-color:rgba(255, 255, 255, 0);
  3650. border:none;
  3651. border-left:0px;
  3652. border-top:0px;
  3653. border-right:0px;
  3654. border-radius:0px;
  3655. border-bottom-right-radius:0px;
  3656. border-bottom-left-radius:0px;
  3657. -moz-box-shadow:none;
  3658. -webkit-box-shadow:none;
  3659. box-shadow:none;
  3660. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3661. font-weight:400;
  3662. font-style:normal;
  3663. font-size:12px;
  3664. line-height:30px;
  3665. }
  3666. #u130507 {
  3667. border-width:0px;
  3668. position:absolute;
  3669. left:223px;
  3670. top:913px;
  3671. width:60px;
  3672. height:30px;
  3673. display:flex;
  3674. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3675. font-weight:400;
  3676. font-style:normal;
  3677. font-size:12px;
  3678. line-height:30px;
  3679. }
  3680. #u130507 .text {
  3681. position:absolute;
  3682. align-self:flex-start;
  3683. padding:0px 0px 0px 0px;
  3684. box-sizing:border-box;
  3685. width:100%;
  3686. }
  3687. #u130507_text {
  3688. border-width:0px;
  3689. word-wrap:break-word;
  3690. text-transform:none;
  3691. }
  3692. #u130508_div {
  3693. border-width:0px;
  3694. position:absolute;
  3695. left:0px;
  3696. top:0px;
  3697. width:60px;
  3698. height:30px;
  3699. background:inherit;
  3700. background-color:rgba(255, 255, 255, 0);
  3701. border:none;
  3702. border-left:0px;
  3703. border-top:0px;
  3704. border-right:0px;
  3705. border-radius:0px;
  3706. border-bottom-right-radius:0px;
  3707. border-bottom-left-radius:0px;
  3708. -moz-box-shadow:none;
  3709. -webkit-box-shadow:none;
  3710. box-shadow:none;
  3711. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3712. font-weight:400;
  3713. font-style:normal;
  3714. font-size:12px;
  3715. line-height:30px;
  3716. }
  3717. #u130508 {
  3718. border-width:0px;
  3719. position:absolute;
  3720. left:283px;
  3721. top:913px;
  3722. width:60px;
  3723. height:30px;
  3724. display:flex;
  3725. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3726. font-weight:400;
  3727. font-style:normal;
  3728. font-size:12px;
  3729. line-height:30px;
  3730. }
  3731. #u130508 .text {
  3732. position:absolute;
  3733. align-self:flex-start;
  3734. padding:0px 0px 0px 0px;
  3735. box-sizing:border-box;
  3736. width:100%;
  3737. }
  3738. #u130508_text {
  3739. border-width:0px;
  3740. word-wrap:break-word;
  3741. text-transform:none;
  3742. }
  3743. #u130509_div {
  3744. border-width:0px;
  3745. position:absolute;
  3746. left:0px;
  3747. top:0px;
  3748. width:51px;
  3749. height:30px;
  3750. background:inherit;
  3751. background-color:rgba(255, 255, 255, 0);
  3752. border:none;
  3753. border-left:0px;
  3754. border-top:0px;
  3755. border-right:0px;
  3756. border-radius:0px;
  3757. border-bottom-right-radius:0px;
  3758. border-bottom-left-radius:0px;
  3759. -moz-box-shadow:none;
  3760. -webkit-box-shadow:none;
  3761. box-shadow:none;
  3762. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3763. font-weight:400;
  3764. font-style:normal;
  3765. font-size:12px;
  3766. line-height:30px;
  3767. }
  3768. #u130509 {
  3769. border-width:0px;
  3770. position:absolute;
  3771. left:343px;
  3772. top:913px;
  3773. width:51px;
  3774. height:30px;
  3775. display:flex;
  3776. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3777. font-weight:400;
  3778. font-style:normal;
  3779. font-size:12px;
  3780. line-height:30px;
  3781. }
  3782. #u130509 .text {
  3783. position:absolute;
  3784. align-self:flex-start;
  3785. padding:0px 0px 0px 0px;
  3786. box-sizing:border-box;
  3787. width:100%;
  3788. }
  3789. #u130509_text {
  3790. border-width:0px;
  3791. word-wrap:break-word;
  3792. text-transform:none;
  3793. }
  3794. #u130510_div {
  3795. border-width:0px;
  3796. position:absolute;
  3797. left:0px;
  3798. top:0px;
  3799. width:7px;
  3800. height:7px;
  3801. background:inherit;
  3802. background-color:rgba(255, 255, 255, 0);
  3803. box-sizing:border-box;
  3804. border-width:1px;
  3805. border-style:solid;
  3806. border-color:rgba(51, 51, 51, 1);
  3807. border-right:0px;
  3808. border-bottom:0px;
  3809. border-radius:0px;
  3810. border-top-right-radius:0px;
  3811. border-bottom-left-radius:0px;
  3812. -moz-box-shadow:none;
  3813. -webkit-box-shadow:none;
  3814. box-shadow:none;
  3815. }
  3816. #u130510 {
  3817. border-width:0px;
  3818. position:absolute;
  3819. left:54px;
  3820. top:804px;
  3821. width:7px;
  3822. height:7px;
  3823. display:flex;
  3824. -webkit-transform:rotate(135deg);
  3825. -moz-transform:rotate(135deg);
  3826. -ms-transform:rotate(135deg);
  3827. transform:rotate(135deg);
  3828. }
  3829. #u130510 .text {
  3830. position:absolute;
  3831. align-self:center;
  3832. padding:2px 2px 2px 2px;
  3833. box-sizing:border-box;
  3834. width:100%;
  3835. }
  3836. #u130510_text {
  3837. border-width:0px;
  3838. word-wrap:break-word;
  3839. text-transform:none;
  3840. visibility:hidden;
  3841. }
  3842. #u130511_div {
  3843. border-width:0px;
  3844. position:absolute;
  3845. left:0px;
  3846. top:0px;
  3847. width:7px;
  3848. height:7px;
  3849. background:inherit;
  3850. background-color:rgba(255, 255, 255, 0);
  3851. box-sizing:border-box;
  3852. border-width:1px;
  3853. border-style:solid;
  3854. border-color:rgba(51, 51, 51, 1);
  3855. border-right:0px;
  3856. border-bottom:0px;
  3857. border-radius:0px;
  3858. border-top-right-radius:0px;
  3859. border-bottom-left-radius:0px;
  3860. -moz-box-shadow:none;
  3861. -webkit-box-shadow:none;
  3862. box-shadow:none;
  3863. }
  3864. #u130511 {
  3865. border-width:0px;
  3866. position:absolute;
  3867. left:54px;
  3868. top:835px;
  3869. width:7px;
  3870. height:7px;
  3871. display:flex;
  3872. -webkit-transform:rotate(135deg);
  3873. -moz-transform:rotate(135deg);
  3874. -ms-transform:rotate(135deg);
  3875. transform:rotate(135deg);
  3876. }
  3877. #u130511 .text {
  3878. position:absolute;
  3879. align-self:center;
  3880. padding:2px 2px 2px 2px;
  3881. box-sizing:border-box;
  3882. width:100%;
  3883. }
  3884. #u130511_text {
  3885. border-width:0px;
  3886. word-wrap:break-word;
  3887. text-transform:none;
  3888. visibility:hidden;
  3889. }
  3890. #u130512_div {
  3891. border-width:0px;
  3892. position:absolute;
  3893. left:0px;
  3894. top:0px;
  3895. width:7px;
  3896. height:7px;
  3897. background:inherit;
  3898. background-color:rgba(255, 255, 255, 0);
  3899. box-sizing:border-box;
  3900. border-width:1px;
  3901. border-style:solid;
  3902. border-color:rgba(51, 51, 51, 1);
  3903. border-right:0px;
  3904. border-bottom:0px;
  3905. border-radius:0px;
  3906. border-top-right-radius:0px;
  3907. border-bottom-left-radius:0px;
  3908. -moz-box-shadow:none;
  3909. -webkit-box-shadow:none;
  3910. box-shadow:none;
  3911. }
  3912. #u130512 {
  3913. border-width:0px;
  3914. position:absolute;
  3915. left:54px;
  3916. top:864px;
  3917. width:7px;
  3918. height:7px;
  3919. display:flex;
  3920. -webkit-transform:rotate(135deg);
  3921. -moz-transform:rotate(135deg);
  3922. -ms-transform:rotate(135deg);
  3923. transform:rotate(135deg);
  3924. }
  3925. #u130512 .text {
  3926. position:absolute;
  3927. align-self:center;
  3928. padding:2px 2px 2px 2px;
  3929. box-sizing:border-box;
  3930. width:100%;
  3931. }
  3932. #u130512_text {
  3933. border-width:0px;
  3934. word-wrap:break-word;
  3935. text-transform:none;
  3936. visibility:hidden;
  3937. }
  3938. #u130513 {
  3939. border-width:0px;
  3940. position:absolute;
  3941. left:0px;
  3942. top:0px;
  3943. width:0px;
  3944. height:0px;
  3945. }
  3946. #u130514_div {
  3947. border-width:0px;
  3948. position:absolute;
  3949. left:0px;
  3950. top:0px;
  3951. width:355px;
  3952. height:192px;
  3953. background:inherit;
  3954. background-color:rgba(255, 255, 255, 1);
  3955. border:none;
  3956. border-radius:0px;
  3957. -moz-box-shadow:none;
  3958. -webkit-box-shadow:none;
  3959. box-shadow:none;
  3960. }
  3961. #u130514 {
  3962. border-width:0px;
  3963. position:absolute;
  3964. left:39px;
  3965. top:962px;
  3966. width:355px;
  3967. height:192px;
  3968. display:flex;
  3969. }
  3970. #u130514 .text {
  3971. position:absolute;
  3972. align-self:center;
  3973. padding:2px 2px 2px 2px;
  3974. box-sizing:border-box;
  3975. width:100%;
  3976. }
  3977. #u130514_text {
  3978. border-width:0px;
  3979. word-wrap:break-word;
  3980. text-transform:none;
  3981. visibility:hidden;
  3982. }
  3983. #u130515_div {
  3984. border-width:0px;
  3985. position:absolute;
  3986. left:0px;
  3987. top:0px;
  3988. width:103px;
  3989. height:24px;
  3990. background:inherit;
  3991. background-color:rgba(255, 255, 255, 0);
  3992. border:none;
  3993. border-top:0px;
  3994. border-right:0px;
  3995. border-bottom:0px;
  3996. border-radius:0px;
  3997. border-top-left-radius:0px;
  3998. border-bottom-left-radius:0px;
  3999. -moz-box-shadow:none;
  4000. -webkit-box-shadow:none;
  4001. box-shadow:none;
  4002. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4003. font-weight:400;
  4004. font-style:normal;
  4005. font-size:10px;
  4006. color:#AAAAAA;
  4007. }
  4008. #u130515 {
  4009. border-width:0px;
  4010. position:absolute;
  4011. left:274px;
  4012. top:1012px;
  4013. width:103px;
  4014. height:24px;
  4015. display:flex;
  4016. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4017. font-weight:400;
  4018. font-style:normal;
  4019. font-size:10px;
  4020. color:#AAAAAA;
  4021. }
  4022. #u130515 .text {
  4023. position:absolute;
  4024. align-self:flex-start;
  4025. padding:5px 0px 5px 0px;
  4026. box-sizing:border-box;
  4027. width:100%;
  4028. }
  4029. #u130515_text {
  4030. border-width:0px;
  4031. white-space:nowrap;
  4032. text-transform:none;
  4033. }
  4034. #u130516 {
  4035. border-width:0px;
  4036. position:absolute;
  4037. left:0px;
  4038. top:0px;
  4039. width:0px;
  4040. height:0px;
  4041. }
  4042. #u130517_div {
  4043. border-width:0px;
  4044. position:absolute;
  4045. left:0px;
  4046. top:0px;
  4047. width:43px;
  4048. height:30px;
  4049. background:inherit;
  4050. background-color:rgba(255, 255, 255, 0);
  4051. border:none;
  4052. border-top:0px;
  4053. border-right:0px;
  4054. border-bottom:0px;
  4055. border-radius:0px;
  4056. border-top-left-radius:0px;
  4057. border-bottom-left-radius:0px;
  4058. -moz-box-shadow:none;
  4059. -webkit-box-shadow:none;
  4060. box-shadow:none;
  4061. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4062. font-weight:400;
  4063. font-style:normal;
  4064. font-size:14px;
  4065. }
  4066. #u130517 {
  4067. border-width:0px;
  4068. position:absolute;
  4069. left:107px;
  4070. top:1014px;
  4071. width:43px;
  4072. height:30px;
  4073. display:flex;
  4074. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4075. font-weight:400;
  4076. font-style:normal;
  4077. font-size:14px;
  4078. }
  4079. #u130517 .text {
  4080. position:absolute;
  4081. align-self:flex-start;
  4082. padding:0px 0px 0px 0px;
  4083. box-sizing:border-box;
  4084. width:100%;
  4085. }
  4086. #u130517_text {
  4087. border-width:0px;
  4088. white-space:nowrap;
  4089. text-transform:none;
  4090. }
  4091. #u130518_div {
  4092. border-width:0px;
  4093. position:absolute;
  4094. left:0px;
  4095. top:0px;
  4096. width:63px;
  4097. height:16px;
  4098. background:inherit;
  4099. background-color:rgba(255, 255, 255, 0);
  4100. border:none;
  4101. border-top:0px;
  4102. border-right:0px;
  4103. border-bottom:0px;
  4104. border-radius:0px;
  4105. border-top-left-radius:0px;
  4106. border-bottom-left-radius:0px;
  4107. -moz-box-shadow:none;
  4108. -webkit-box-shadow:none;
  4109. box-shadow:none;
  4110. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4111. font-weight:400;
  4112. font-style:normal;
  4113. font-size:11px;
  4114. color:#AAAAAA;
  4115. }
  4116. #u130518 {
  4117. border-width:0px;
  4118. position:absolute;
  4119. left:107px;
  4120. top:1042px;
  4121. width:63px;
  4122. height:16px;
  4123. display:flex;
  4124. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4125. font-weight:400;
  4126. font-style:normal;
  4127. font-size:11px;
  4128. color:#AAAAAA;
  4129. }
  4130. #u130518 .text {
  4131. position:absolute;
  4132. align-self:flex-start;
  4133. padding:0px 0px 0px 0px;
  4134. box-sizing:border-box;
  4135. width:100%;
  4136. }
  4137. #u130518_text {
  4138. border-width:0px;
  4139. white-space:nowrap;
  4140. text-transform:none;
  4141. }
  4142. #u130519_div {
  4143. border-width:0px;
  4144. position:absolute;
  4145. left:0px;
  4146. top:0px;
  4147. width:43px;
  4148. height:20px;
  4149. background:inherit;
  4150. background-color:rgba(255, 255, 255, 0);
  4151. border:none;
  4152. border-top:0px;
  4153. border-right:0px;
  4154. border-bottom:0px;
  4155. border-radius:0px;
  4156. border-top-left-radius:0px;
  4157. border-bottom-left-radius:0px;
  4158. -moz-box-shadow:none;
  4159. -webkit-box-shadow:none;
  4160. box-shadow:none;
  4161. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4162. font-weight:400;
  4163. font-style:normal;
  4164. font-size:14px;
  4165. }
  4166. #u130519 {
  4167. border-width:0px;
  4168. position:absolute;
  4169. left:107px;
  4170. top:1084px;
  4171. width:43px;
  4172. height:20px;
  4173. display:flex;
  4174. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4175. font-weight:400;
  4176. font-style:normal;
  4177. font-size:14px;
  4178. }
  4179. #u130519 .text {
  4180. position:absolute;
  4181. align-self:flex-start;
  4182. padding:0px 0px 0px 0px;
  4183. box-sizing:border-box;
  4184. width:100%;
  4185. }
  4186. #u130519_text {
  4187. border-width:0px;
  4188. white-space:nowrap;
  4189. text-transform:none;
  4190. }
  4191. #u130520_div {
  4192. border-width:0px;
  4193. position:absolute;
  4194. left:0px;
  4195. top:0px;
  4196. width:80px;
  4197. height:26px;
  4198. background:inherit;
  4199. background-color:rgba(255, 255, 255, 0);
  4200. border:none;
  4201. border-top:0px;
  4202. border-right:0px;
  4203. border-bottom:0px;
  4204. border-radius:0px;
  4205. border-top-left-radius:0px;
  4206. border-bottom-left-radius:0px;
  4207. -moz-box-shadow:none;
  4208. -webkit-box-shadow:none;
  4209. box-shadow:none;
  4210. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4211. font-weight:400;
  4212. font-style:normal;
  4213. font-size:11px;
  4214. color:#AAAAAA;
  4215. }
  4216. #u130520 {
  4217. border-width:0px;
  4218. position:absolute;
  4219. left:107px;
  4220. top:1112px;
  4221. width:80px;
  4222. height:26px;
  4223. display:flex;
  4224. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4225. font-weight:400;
  4226. font-style:normal;
  4227. font-size:11px;
  4228. color:#AAAAAA;
  4229. }
  4230. #u130520 .text {
  4231. position:absolute;
  4232. align-self:flex-start;
  4233. padding:0px 0px 0px 0px;
  4234. box-sizing:border-box;
  4235. width:100%;
  4236. }
  4237. #u130520_text {
  4238. border-width:0px;
  4239. word-wrap:break-word;
  4240. text-transform:none;
  4241. }
  4242. #u130521_div {
  4243. border-width:0px;
  4244. position:absolute;
  4245. left:0px;
  4246. top:0px;
  4247. width:29px;
  4248. height:30px;
  4249. background:inherit;
  4250. background-color:rgba(255, 255, 255, 0);
  4251. border:none;
  4252. border-top:0px;
  4253. border-right:0px;
  4254. border-bottom:0px;
  4255. border-radius:0px;
  4256. border-top-left-radius:0px;
  4257. border-bottom-left-radius:0px;
  4258. -moz-box-shadow:none;
  4259. -webkit-box-shadow:none;
  4260. box-shadow:none;
  4261. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4262. font-weight:400;
  4263. font-style:normal;
  4264. font-size:14px;
  4265. }
  4266. #u130521 {
  4267. border-width:0px;
  4268. position:absolute;
  4269. left:65px;
  4270. top:970px;
  4271. width:29px;
  4272. height:30px;
  4273. display:flex;
  4274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4275. font-weight:400;
  4276. font-style:normal;
  4277. font-size:14px;
  4278. }
  4279. #u130521 .text {
  4280. position:absolute;
  4281. align-self:flex-start;
  4282. padding:5px 0px 5px 0px;
  4283. box-sizing:border-box;
  4284. width:100%;
  4285. }
  4286. #u130521_text {
  4287. border-width:0px;
  4288. white-space:nowrap;
  4289. text-transform:none;
  4290. }
  4291. #u130522 {
  4292. border-width:0px;
  4293. position:absolute;
  4294. left:0px;
  4295. top:0px;
  4296. width:0px;
  4297. height:0px;
  4298. }
  4299. #u130523_img {
  4300. border-width:0px;
  4301. position:absolute;
  4302. left:0px;
  4303. top:0px;
  4304. width:2px;
  4305. height:32px;
  4306. }
  4307. #u130523 {
  4308. border-width:0px;
  4309. position:absolute;
  4310. left:84px;
  4311. top:1048px;
  4312. width:1px;
  4313. height:31px;
  4314. display:flex;
  4315. }
  4316. #u130523 .text {
  4317. position:absolute;
  4318. align-self:center;
  4319. padding:2px 2px 2px 2px;
  4320. box-sizing:border-box;
  4321. width:100%;
  4322. }
  4323. #u130523_text {
  4324. border-width:0px;
  4325. word-wrap:break-word;
  4326. text-transform:none;
  4327. visibility:hidden;
  4328. }
  4329. #u130524 {
  4330. border-width:0px;
  4331. position:absolute;
  4332. left:0px;
  4333. top:0px;
  4334. width:0px;
  4335. height:0px;
  4336. }
  4337. #u130525_div {
  4338. border-width:0px;
  4339. position:absolute;
  4340. left:0px;
  4341. top:0px;
  4342. width:30px;
  4343. height:30px;
  4344. background:inherit;
  4345. background-color:rgba(24, 144, 255, 1);
  4346. border:none;
  4347. border-radius:4px;
  4348. -moz-box-shadow:none;
  4349. -webkit-box-shadow:none;
  4350. box-shadow:none;
  4351. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4352. font-weight:400;
  4353. font-style:normal;
  4354. font-size:10px;
  4355. color:#FFFFFF;
  4356. }
  4357. #u130525 {
  4358. border-width:0px;
  4359. position:absolute;
  4360. left:69px;
  4361. top:1084px;
  4362. width:30px;
  4363. height:30px;
  4364. display:flex;
  4365. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4366. font-weight:400;
  4367. font-style:normal;
  4368. font-size:10px;
  4369. color:#FFFFFF;
  4370. }
  4371. #u130525 .text {
  4372. position:absolute;
  4373. align-self:center;
  4374. padding:2px 2px 2px 2px;
  4375. box-sizing:border-box;
  4376. width:100%;
  4377. }
  4378. #u130525_text {
  4379. border-width:0px;
  4380. word-wrap:break-word;
  4381. text-transform:none;
  4382. }
  4383. #u130526 {
  4384. border-width:0px;
  4385. position:absolute;
  4386. left:0px;
  4387. top:0px;
  4388. width:0px;
  4389. height:0px;
  4390. }
  4391. #u130527_img {
  4392. border-width:0px;
  4393. position:absolute;
  4394. left:0px;
  4395. top:0px;
  4396. width:9px;
  4397. height:9px;
  4398. }
  4399. #u130527 {
  4400. border-width:0px;
  4401. position:absolute;
  4402. left:91px;
  4403. top:1106px;
  4404. width:9px;
  4405. height:9px;
  4406. display:flex;
  4407. }
  4408. #u130527 .text {
  4409. position:absolute;
  4410. align-self:center;
  4411. padding:2px 2px 2px 2px;
  4412. box-sizing:border-box;
  4413. width:100%;
  4414. }
  4415. #u130527_text {
  4416. border-width:0px;
  4417. word-wrap:break-word;
  4418. text-transform:none;
  4419. visibility:hidden;
  4420. }
  4421. #u130528_img {
  4422. border-width:0px;
  4423. position:absolute;
  4424. left:0px;
  4425. top:0px;
  4426. width:5px;
  4427. height:1px;
  4428. }
  4429. #u130528 {
  4430. border-width:0px;
  4431. position:absolute;
  4432. left:93px;
  4433. top:1110px;
  4434. width:5px;
  4435. height:1px;
  4436. display:flex;
  4437. }
  4438. #u130528 .text {
  4439. position:absolute;
  4440. align-self:center;
  4441. padding:2px 2px 2px 2px;
  4442. box-sizing:border-box;
  4443. width:100%;
  4444. }
  4445. #u130528_text {
  4446. border-width:0px;
  4447. word-wrap:break-word;
  4448. text-transform:none;
  4449. visibility:hidden;
  4450. }
  4451. #u130529 {
  4452. border-width:0px;
  4453. position:absolute;
  4454. left:0px;
  4455. top:0px;
  4456. width:0px;
  4457. height:0px;
  4458. }
  4459. #u130530_div {
  4460. border-width:0px;
  4461. position:absolute;
  4462. left:0px;
  4463. top:0px;
  4464. width:30px;
  4465. height:30px;
  4466. background:inherit;
  4467. background-color:rgba(24, 144, 255, 1);
  4468. border:none;
  4469. border-radius:4px;
  4470. -moz-box-shadow:none;
  4471. -webkit-box-shadow:none;
  4472. box-shadow:none;
  4473. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4474. font-weight:400;
  4475. font-style:normal;
  4476. font-size:12px;
  4477. color:#FFFFFF;
  4478. }
  4479. #u130530 {
  4480. border-width:0px;
  4481. position:absolute;
  4482. left:69px;
  4483. top:1014px;
  4484. width:30px;
  4485. height:30px;
  4486. display:flex;
  4487. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4488. font-weight:400;
  4489. font-style:normal;
  4490. font-size:12px;
  4491. color:#FFFFFF;
  4492. }
  4493. #u130530 .text {
  4494. position:absolute;
  4495. align-self:center;
  4496. padding:2px 2px 2px 2px;
  4497. box-sizing:border-box;
  4498. width:100%;
  4499. }
  4500. #u130530_text {
  4501. border-width:0px;
  4502. word-wrap:break-word;
  4503. text-transform:none;
  4504. }
  4505. #u130531 {
  4506. border-width:0px;
  4507. position:absolute;
  4508. left:0px;
  4509. top:0px;
  4510. width:0px;
  4511. height:0px;
  4512. }
  4513. #u130532_img {
  4514. border-width:0px;
  4515. position:absolute;
  4516. left:0px;
  4517. top:0px;
  4518. width:9px;
  4519. height:9px;
  4520. }
  4521. #u130532 {
  4522. border-width:0px;
  4523. position:absolute;
  4524. left:91px;
  4525. top:1036px;
  4526. width:9px;
  4527. height:9px;
  4528. display:flex;
  4529. }
  4530. #u130532 .text {
  4531. position:absolute;
  4532. align-self:center;
  4533. padding:2px 2px 2px 2px;
  4534. box-sizing:border-box;
  4535. width:100%;
  4536. }
  4537. #u130532_text {
  4538. border-width:0px;
  4539. word-wrap:break-word;
  4540. text-transform:none;
  4541. visibility:hidden;
  4542. }
  4543. #u130533_img {
  4544. border-width:0px;
  4545. position:absolute;
  4546. left:0px;
  4547. top:0px;
  4548. width:5px;
  4549. height:4px;
  4550. }
  4551. #u130533 {
  4552. border-width:0px;
  4553. position:absolute;
  4554. left:93px;
  4555. top:1039px;
  4556. width:5px;
  4557. height:4px;
  4558. display:flex;
  4559. }
  4560. #u130533 .text {
  4561. position:absolute;
  4562. align-self:center;
  4563. padding:2px 2px 2px 2px;
  4564. box-sizing:border-box;
  4565. width:100%;
  4566. }
  4567. #u130533_text {
  4568. border-width:0px;
  4569. word-wrap:break-word;
  4570. text-transform:none;
  4571. visibility:hidden;
  4572. }
  4573. #u130534_div {
  4574. border-width:0px;
  4575. position:absolute;
  4576. left:0px;
  4577. top:0px;
  4578. width:325px;
  4579. height:50px;
  4580. background:inherit;
  4581. background-color:rgba(255, 255, 255, 0);
  4582. border:none;
  4583. border-left:0px;
  4584. border-top:0px;
  4585. border-right:0px;
  4586. border-radius:0px;
  4587. border-bottom-right-radius:0px;
  4588. border-bottom-left-radius:0px;
  4589. -moz-box-shadow:none;
  4590. -webkit-box-shadow:none;
  4591. box-shadow:none;
  4592. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4593. font-weight:400;
  4594. font-style:normal;
  4595. font-size:12px;
  4596. line-height:25px;
  4597. }
  4598. #u130534 {
  4599. border-width:0px;
  4600. position:absolute;
  4601. left:56px;
  4602. top:147px;
  4603. width:325px;
  4604. height:50px;
  4605. display:flex;
  4606. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4607. font-weight:400;
  4608. font-style:normal;
  4609. font-size:12px;
  4610. line-height:25px;
  4611. }
  4612. #u130534 .text {
  4613. position:absolute;
  4614. align-self:flex-start;
  4615. padding:0px 0px 0px 0px;
  4616. box-sizing:border-box;
  4617. width:100%;
  4618. }
  4619. #u130534_text {
  4620. border-width:0px;
  4621. word-wrap:break-word;
  4622. text-transform:none;
  4623. }
  4624. #u130535_div {
  4625. border-width:0px;
  4626. position:absolute;
  4627. left:0px;
  4628. top:0px;
  4629. width:97px;
  4630. height:25px;
  4631. background:inherit;
  4632. background-color:rgba(255, 255, 255, 0);
  4633. border:none;
  4634. border-radius:0px;
  4635. -moz-box-shadow:none;
  4636. -webkit-box-shadow:none;
  4637. box-shadow:none;
  4638. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4639. font-weight:400;
  4640. font-style:normal;
  4641. font-size:12px;
  4642. color:#B8741A;
  4643. line-height:25px;
  4644. }
  4645. #u130535 {
  4646. border-width:0px;
  4647. position:absolute;
  4648. left:284px;
  4649. top:172px;
  4650. width:97px;
  4651. height:25px;
  4652. display:flex;
  4653. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4654. font-weight:400;
  4655. font-style:normal;
  4656. font-size:12px;
  4657. color:#B8741A;
  4658. line-height:25px;
  4659. }
  4660. #u130535 .text {
  4661. position:absolute;
  4662. align-self:flex-start;
  4663. padding:0px 0px 0px 0px;
  4664. box-sizing:border-box;
  4665. width:100%;
  4666. }
  4667. #u130535_text {
  4668. border-width:0px;
  4669. white-space:nowrap;
  4670. text-transform:none;
  4671. }
  4672. #u130537_img {
  4673. border-width:0px;
  4674. position:absolute;
  4675. left:0px;
  4676. top:0px;
  4677. width:433px;
  4678. height:865px;
  4679. }
  4680. #u130537 {
  4681. border-width:0px;
  4682. position:absolute;
  4683. left:906px;
  4684. top:0px;
  4685. width:433px;
  4686. height:865px;
  4687. display:flex;
  4688. }
  4689. #u130537 .text {
  4690. position:absolute;
  4691. align-self:center;
  4692. padding:2px 2px 2px 2px;
  4693. box-sizing:border-box;
  4694. width:100%;
  4695. }
  4696. #u130537_text {
  4697. border-width:0px;
  4698. word-wrap:break-word;
  4699. text-transform:none;
  4700. visibility:hidden;
  4701. }
  4702. #u130538_div {
  4703. border-width:0px;
  4704. position:absolute;
  4705. left:0px;
  4706. top:0px;
  4707. width:375px;
  4708. height:40px;
  4709. background:inherit;
  4710. background-color:rgba(255, 255, 255, 1);
  4711. box-sizing:border-box;
  4712. border-width:1px;
  4713. border-style:solid;
  4714. border-color:rgba(215, 215, 215, 1);
  4715. border-left:0px;
  4716. border-top:0px;
  4717. border-right:0px;
  4718. border-radius:0px;
  4719. border-bottom-right-radius:0px;
  4720. border-bottom-left-radius:0px;
  4721. -moz-box-shadow:none;
  4722. -webkit-box-shadow:none;
  4723. box-shadow:none;
  4724. }
  4725. #u130538 {
  4726. border-width:0px;
  4727. position:absolute;
  4728. left:935px;
  4729. top:67px;
  4730. width:375px;
  4731. height:40px;
  4732. display:flex;
  4733. }
  4734. #u130538 .text {
  4735. position:absolute;
  4736. align-self:center;
  4737. padding:2px 2px 2px 2px;
  4738. box-sizing:border-box;
  4739. width:100%;
  4740. }
  4741. #u130538_text {
  4742. border-width:0px;
  4743. word-wrap:break-word;
  4744. text-transform:none;
  4745. visibility:hidden;
  4746. }
  4747. #u130539 {
  4748. border-width:0px;
  4749. position:absolute;
  4750. left:0px;
  4751. top:0px;
  4752. width:0px;
  4753. height:0px;
  4754. }
  4755. #u130540_div {
  4756. border-width:0px;
  4757. position:absolute;
  4758. left:0px;
  4759. top:0px;
  4760. width:88px;
  4761. height:32px;
  4762. background:inherit;
  4763. background-color:rgba(255, 255, 255, 1);
  4764. box-sizing:border-box;
  4765. border-width:1px;
  4766. border-style:solid;
  4767. border-color:rgba(242, 242, 242, 1);
  4768. border-radius:33px;
  4769. -moz-box-shadow:none;
  4770. -webkit-box-shadow:none;
  4771. box-shadow:none;
  4772. }
  4773. #u130540 {
  4774. border-width:0px;
  4775. position:absolute;
  4776. left:1215px;
  4777. top:71px;
  4778. width:88px;
  4779. height:32px;
  4780. display:flex;
  4781. }
  4782. #u130540 .text {
  4783. position:absolute;
  4784. align-self:center;
  4785. padding:2px 2px 2px 2px;
  4786. box-sizing:border-box;
  4787. width:100%;
  4788. }
  4789. #u130540_text {
  4790. border-width:0px;
  4791. word-wrap:break-word;
  4792. text-transform:none;
  4793. visibility:hidden;
  4794. }
  4795. #u130541 {
  4796. border-width:0px;
  4797. position:absolute;
  4798. left:0px;
  4799. top:0px;
  4800. width:0px;
  4801. height:0px;
  4802. }
  4803. #u130542_img {
  4804. border-width:0px;
  4805. position:absolute;
  4806. left:0px;
  4807. top:0px;
  4808. width:18px;
  4809. height:18px;
  4810. }
  4811. #u130542 {
  4812. border-width:0px;
  4813. position:absolute;
  4814. left:1278px;
  4815. top:78px;
  4816. width:18px;
  4817. height:18px;
  4818. display:flex;
  4819. }
  4820. #u130542 .text {
  4821. position:absolute;
  4822. align-self:center;
  4823. padding:2px 2px 2px 2px;
  4824. box-sizing:border-box;
  4825. width:100%;
  4826. }
  4827. #u130542_text {
  4828. border-width:0px;
  4829. word-wrap:break-word;
  4830. text-transform:none;
  4831. visibility:hidden;
  4832. }
  4833. #u130543_img {
  4834. border-width:0px;
  4835. position:absolute;
  4836. left:0px;
  4837. top:0px;
  4838. width:6px;
  4839. height:6px;
  4840. }
  4841. #u130543 {
  4842. border-width:0px;
  4843. position:absolute;
  4844. left:1284px;
  4845. top:84px;
  4846. width:6px;
  4847. height:6px;
  4848. display:flex;
  4849. }
  4850. #u130543 .text {
  4851. position:absolute;
  4852. align-self:center;
  4853. padding:2px 2px 2px 2px;
  4854. box-sizing:border-box;
  4855. width:100%;
  4856. }
  4857. #u130543_text {
  4858. border-width:0px;
  4859. word-wrap:break-word;
  4860. text-transform:none;
  4861. visibility:hidden;
  4862. }
  4863. #u130544 {
  4864. border-width:0px;
  4865. position:absolute;
  4866. left:0px;
  4867. top:0px;
  4868. width:0px;
  4869. height:0px;
  4870. }
  4871. #u130545_img {
  4872. border-width:0px;
  4873. position:absolute;
  4874. left:0px;
  4875. top:0px;
  4876. width:5px;
  4877. height:5px;
  4878. }
  4879. #u130545 {
  4880. border-width:0px;
  4881. position:absolute;
  4882. left:1229px;
  4883. top:85px;
  4884. width:5px;
  4885. height:5px;
  4886. display:flex;
  4887. }
  4888. #u130545 .text {
  4889. position:absolute;
  4890. align-self:center;
  4891. padding:2px 2px 2px 2px;
  4892. box-sizing:border-box;
  4893. width:100%;
  4894. }
  4895. #u130545_text {
  4896. border-width:0px;
  4897. word-wrap:break-word;
  4898. text-transform:none;
  4899. visibility:hidden;
  4900. }
  4901. #u130546_img {
  4902. border-width:0px;
  4903. position:absolute;
  4904. left:0px;
  4905. top:0px;
  4906. width:5px;
  4907. height:5px;
  4908. }
  4909. #u130546 {
  4910. border-width:0px;
  4911. position:absolute;
  4912. left:1245px;
  4913. top:85px;
  4914. width:5px;
  4915. height:5px;
  4916. display:flex;
  4917. }
  4918. #u130546 .text {
  4919. position:absolute;
  4920. align-self:center;
  4921. padding:2px 2px 2px 2px;
  4922. box-sizing:border-box;
  4923. width:100%;
  4924. }
  4925. #u130546_text {
  4926. border-width:0px;
  4927. word-wrap:break-word;
  4928. text-transform:none;
  4929. visibility:hidden;
  4930. }
  4931. #u130547_img {
  4932. border-width:0px;
  4933. position:absolute;
  4934. left:0px;
  4935. top:0px;
  4936. width:7px;
  4937. height:7px;
  4938. }
  4939. #u130547 {
  4940. border-width:0px;
  4941. position:absolute;
  4942. left:1236px;
  4943. top:84px;
  4944. width:7px;
  4945. height:7px;
  4946. display:flex;
  4947. }
  4948. #u130547 .text {
  4949. position:absolute;
  4950. align-self:center;
  4951. padding:2px 2px 2px 2px;
  4952. box-sizing:border-box;
  4953. width:100%;
  4954. }
  4955. #u130547_text {
  4956. border-width:0px;
  4957. word-wrap:break-word;
  4958. text-transform:none;
  4959. visibility:hidden;
  4960. }
  4961. #u130548_img {
  4962. border-width:0px;
  4963. position:absolute;
  4964. left:0px;
  4965. top:0px;
  4966. width:19px;
  4967. height:2px;
  4968. }
  4969. #u130548 {
  4970. border-width:0px;
  4971. position:absolute;
  4972. left:1253px;
  4973. top:87px;
  4974. width:18px;
  4975. height:1px;
  4976. display:flex;
  4977. -webkit-transform:rotate(90deg);
  4978. -moz-transform:rotate(90deg);
  4979. -ms-transform:rotate(90deg);
  4980. transform:rotate(90deg);
  4981. }
  4982. #u130548 .text {
  4983. position:absolute;
  4984. align-self:center;
  4985. padding:2px 2px 2px 2px;
  4986. box-sizing:border-box;
  4987. width:100%;
  4988. }
  4989. #u130548_text {
  4990. border-width:0px;
  4991. word-wrap:break-word;
  4992. text-transform:none;
  4993. visibility:hidden;
  4994. }
  4995. #u130549_img {
  4996. border-width:0px;
  4997. position:absolute;
  4998. left:0px;
  4999. top:0px;
  5000. width:375px;
  5001. height:44px;
  5002. }
  5003. #u130549 {
  5004. border-width:0px;
  5005. position:absolute;
  5006. left:935px;
  5007. top:24px;
  5008. width:375px;
  5009. height:44px;
  5010. display:flex;
  5011. }
  5012. #u130549 .text {
  5013. position:absolute;
  5014. align-self:center;
  5015. padding:2px 2px 2px 2px;
  5016. box-sizing:border-box;
  5017. width:100%;
  5018. }
  5019. #u130549_text {
  5020. border-width:0px;
  5021. word-wrap:break-word;
  5022. text-transform:none;
  5023. visibility:hidden;
  5024. }
  5025. #u130550_div {
  5026. border-width:0px;
  5027. position:absolute;
  5028. left:0px;
  5029. top:0px;
  5030. width:375px;
  5031. height:50px;
  5032. background:inherit;
  5033. background-color:rgba(255, 255, 255, 1);
  5034. box-sizing:border-box;
  5035. border-width:1px;
  5036. border-style:solid;
  5037. border-color:rgba(242, 242, 242, 1);
  5038. border-radius:26px;
  5039. border-top-left-radius:0px;
  5040. border-top-right-radius:0px;
  5041. -moz-box-shadow:none;
  5042. -webkit-box-shadow:none;
  5043. box-shadow:none;
  5044. }
  5045. #u130550 {
  5046. border-width:0px;
  5047. position:absolute;
  5048. left:935px;
  5049. top:788px;
  5050. width:375px;
  5051. height:50px;
  5052. display:flex;
  5053. }
  5054. #u130550 .text {
  5055. position:absolute;
  5056. align-self:center;
  5057. padding:2px 2px 2px 2px;
  5058. box-sizing:border-box;
  5059. width:100%;
  5060. }
  5061. #u130550_text {
  5062. border-width:0px;
  5063. word-wrap:break-word;
  5064. text-transform:none;
  5065. visibility:hidden;
  5066. }
  5067. #u130551 {
  5068. border-width:0px;
  5069. position:absolute;
  5070. left:0px;
  5071. top:0px;
  5072. width:0px;
  5073. height:0px;
  5074. }
  5075. #u130552_img {
  5076. border-width:0px;
  5077. position:absolute;
  5078. left:0px;
  5079. top:0px;
  5080. width:24px;
  5081. height:24px;
  5082. }
  5083. #u130552 {
  5084. border-width:0px;
  5085. position:absolute;
  5086. left:975px;
  5087. top:792px;
  5088. width:24px;
  5089. height:24px;
  5090. display:flex;
  5091. font-size:8px;
  5092. }
  5093. #u130552 .text {
  5094. position:absolute;
  5095. align-self:center;
  5096. padding:2px 2px 2px 2px;
  5097. box-sizing:border-box;
  5098. width:100%;
  5099. }
  5100. #u130552_text {
  5101. border-width:0px;
  5102. word-wrap:break-word;
  5103. text-transform:none;
  5104. }
  5105. #u130553_div {
  5106. border-width:0px;
  5107. position:absolute;
  5108. left:0px;
  5109. top:0px;
  5110. width:25px;
  5111. height:17px;
  5112. background:inherit;
  5113. background-color:rgba(255, 255, 255, 0);
  5114. border:none;
  5115. border-radius:0px;
  5116. -moz-box-shadow:none;
  5117. -webkit-box-shadow:none;
  5118. box-shadow:none;
  5119. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5120. font-weight:400;
  5121. font-style:normal;
  5122. font-size:12px;
  5123. }
  5124. #u130553 {
  5125. border-width:0px;
  5126. position:absolute;
  5127. left:975px;
  5128. top:817px;
  5129. width:25px;
  5130. height:17px;
  5131. display:flex;
  5132. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5133. font-weight:400;
  5134. font-style:normal;
  5135. font-size:12px;
  5136. }
  5137. #u130553 .text {
  5138. position:absolute;
  5139. align-self:flex-start;
  5140. padding:0px 0px 0px 0px;
  5141. box-sizing:border-box;
  5142. width:100%;
  5143. }
  5144. #u130553_text {
  5145. border-width:0px;
  5146. white-space:nowrap;
  5147. text-transform:none;
  5148. }
  5149. #u130554 {
  5150. border-width:0px;
  5151. position:absolute;
  5152. left:0px;
  5153. top:0px;
  5154. width:0px;
  5155. height:0px;
  5156. }
  5157. #u130555_img {
  5158. border-width:0px;
  5159. position:absolute;
  5160. left:0px;
  5161. top:0px;
  5162. width:24px;
  5163. height:24px;
  5164. }
  5165. #u130555 {
  5166. border-width:0px;
  5167. position:absolute;
  5168. left:1245px;
  5169. top:794px;
  5170. width:24px;
  5171. height:24px;
  5172. display:flex;
  5173. font-size:8px;
  5174. }
  5175. #u130555 .text {
  5176. position:absolute;
  5177. align-self:center;
  5178. padding:2px 2px 2px 2px;
  5179. box-sizing:border-box;
  5180. width:100%;
  5181. }
  5182. #u130555_text {
  5183. border-width:0px;
  5184. word-wrap:break-word;
  5185. text-transform:none;
  5186. }
  5187. #u130556_div {
  5188. border-width:0px;
  5189. position:absolute;
  5190. left:0px;
  5191. top:0px;
  5192. width:25px;
  5193. height:17px;
  5194. background:inherit;
  5195. background-color:rgba(255, 255, 255, 0);
  5196. border:none;
  5197. border-radius:0px;
  5198. -moz-box-shadow:none;
  5199. -webkit-box-shadow:none;
  5200. box-shadow:none;
  5201. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5202. font-weight:400;
  5203. font-style:normal;
  5204. font-size:12px;
  5205. }
  5206. #u130556 {
  5207. border-width:0px;
  5208. position:absolute;
  5209. left:1245px;
  5210. top:819px;
  5211. width:25px;
  5212. height:17px;
  5213. display:flex;
  5214. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5215. font-weight:400;
  5216. font-style:normal;
  5217. font-size:12px;
  5218. }
  5219. #u130556 .text {
  5220. position:absolute;
  5221. align-self:flex-start;
  5222. padding:0px 0px 0px 0px;
  5223. box-sizing:border-box;
  5224. width:100%;
  5225. }
  5226. #u130556_text {
  5227. border-width:0px;
  5228. white-space:nowrap;
  5229. text-transform:none;
  5230. }
  5231. #u130557_div {
  5232. border-width:0px;
  5233. position:absolute;
  5234. left:0px;
  5235. top:0px;
  5236. width:375px;
  5237. height:681px;
  5238. background:inherit;
  5239. background-color:rgba(242, 242, 242, 0.462745098039216);
  5240. border:none;
  5241. border-radius:0px;
  5242. -moz-box-shadow:none;
  5243. -webkit-box-shadow:none;
  5244. box-shadow:none;
  5245. }
  5246. #u130557 {
  5247. border-width:0px;
  5248. position:absolute;
  5249. left:935px;
  5250. top:107px;
  5251. width:375px;
  5252. height:681px;
  5253. display:flex;
  5254. }
  5255. #u130557 .text {
  5256. position:absolute;
  5257. align-self:center;
  5258. padding:2px 2px 2px 2px;
  5259. box-sizing:border-box;
  5260. width:100%;
  5261. }
  5262. #u130557_text {
  5263. border-width:0px;
  5264. word-wrap:break-word;
  5265. text-transform:none;
  5266. visibility:hidden;
  5267. }
  5268. #u130558 {
  5269. border-width:0px;
  5270. position:absolute;
  5271. left:0px;
  5272. top:0px;
  5273. width:0px;
  5274. height:0px;
  5275. }
  5276. #u130559_img {
  5277. border-width:0px;
  5278. position:absolute;
  5279. left:0px;
  5280. top:0px;
  5281. width:24px;
  5282. height:24px;
  5283. }
  5284. #u130559 {
  5285. border-width:0px;
  5286. position:absolute;
  5287. left:1157px;
  5288. top:792px;
  5289. width:24px;
  5290. height:24px;
  5291. display:flex;
  5292. font-size:8px;
  5293. }
  5294. #u130559 .text {
  5295. position:absolute;
  5296. align-self:center;
  5297. padding:2px 2px 2px 2px;
  5298. box-sizing:border-box;
  5299. width:100%;
  5300. }
  5301. #u130559_text {
  5302. border-width:0px;
  5303. word-wrap:break-word;
  5304. text-transform:none;
  5305. }
  5306. #u130560_div {
  5307. border-width:0px;
  5308. position:absolute;
  5309. left:0px;
  5310. top:0px;
  5311. width:37px;
  5312. height:17px;
  5313. background:inherit;
  5314. background-color:rgba(255, 255, 255, 0);
  5315. border:none;
  5316. border-radius:0px;
  5317. -moz-box-shadow:none;
  5318. -webkit-box-shadow:none;
  5319. box-shadow:none;
  5320. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5321. font-weight:400;
  5322. font-style:normal;
  5323. font-size:12px;
  5324. }
  5325. #u130560 {
  5326. border-width:0px;
  5327. position:absolute;
  5328. left:1151px;
  5329. top:817px;
  5330. width:37px;
  5331. height:17px;
  5332. display:flex;
  5333. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5334. font-weight:400;
  5335. font-style:normal;
  5336. font-size:12px;
  5337. }
  5338. #u130560 .text {
  5339. position:absolute;
  5340. align-self:flex-start;
  5341. padding:0px 0px 0px 0px;
  5342. box-sizing:border-box;
  5343. width:100%;
  5344. }
  5345. #u130560_text {
  5346. border-width:0px;
  5347. white-space:nowrap;
  5348. text-transform:none;
  5349. }
  5350. #u130561 {
  5351. border-width:0px;
  5352. position:absolute;
  5353. left:0px;
  5354. top:0px;
  5355. width:0px;
  5356. height:0px;
  5357. }
  5358. #u130562_img {
  5359. border-width:0px;
  5360. position:absolute;
  5361. left:0px;
  5362. top:0px;
  5363. width:24px;
  5364. height:24px;
  5365. }
  5366. #u130562 {
  5367. border-width:0px;
  5368. position:absolute;
  5369. left:1063px;
  5370. top:792px;
  5371. width:24px;
  5372. height:24px;
  5373. display:flex;
  5374. font-size:8px;
  5375. }
  5376. #u130562 .text {
  5377. position:absolute;
  5378. align-self:center;
  5379. padding:2px 2px 2px 2px;
  5380. box-sizing:border-box;
  5381. width:100%;
  5382. }
  5383. #u130562_text {
  5384. border-width:0px;
  5385. word-wrap:break-word;
  5386. text-transform:none;
  5387. }
  5388. #u130563_div {
  5389. border-width:0px;
  5390. position:absolute;
  5391. left:0px;
  5392. top:0px;
  5393. width:37px;
  5394. height:17px;
  5395. background:inherit;
  5396. background-color:rgba(255, 255, 255, 0);
  5397. border:none;
  5398. border-radius:0px;
  5399. -moz-box-shadow:none;
  5400. -webkit-box-shadow:none;
  5401. box-shadow:none;
  5402. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5403. font-weight:400;
  5404. font-style:normal;
  5405. font-size:12px;
  5406. }
  5407. #u130563 {
  5408. border-width:0px;
  5409. position:absolute;
  5410. left:1057px;
  5411. top:817px;
  5412. width:37px;
  5413. height:17px;
  5414. display:flex;
  5415. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5416. font-weight:400;
  5417. font-style:normal;
  5418. font-size:12px;
  5419. }
  5420. #u130563 .text {
  5421. position:absolute;
  5422. align-self:flex-start;
  5423. padding:0px 0px 0px 0px;
  5424. box-sizing:border-box;
  5425. width:100%;
  5426. }
  5427. #u130563_text {
  5428. border-width:0px;
  5429. white-space:nowrap;
  5430. text-transform:none;
  5431. }
  5432. #u130564_div {
  5433. border-width:0px;
  5434. position:absolute;
  5435. left:0px;
  5436. top:0px;
  5437. width:375px;
  5438. height:732px;
  5439. background:inherit;
  5440. background-color:rgba(242, 242, 242, 0.996078431372549);
  5441. border:none;
  5442. border-top:0px;
  5443. border-radius:28px;
  5444. border-top-left-radius:0px;
  5445. border-top-right-radius:0px;
  5446. -moz-box-shadow:none;
  5447. -webkit-box-shadow:none;
  5448. box-shadow:none;
  5449. }
  5450. #u130564 {
  5451. border-width:0px;
  5452. position:absolute;
  5453. left:935px;
  5454. top:107px;
  5455. width:375px;
  5456. height:732px;
  5457. display:flex;
  5458. }
  5459. #u130564 .text {
  5460. position:absolute;
  5461. align-self:center;
  5462. padding:2px 2px 2px 2px;
  5463. box-sizing:border-box;
  5464. width:100%;
  5465. }
  5466. #u130564_text {
  5467. border-width:0px;
  5468. word-wrap:break-word;
  5469. text-transform:none;
  5470. visibility:hidden;
  5471. }
  5472. #u130565_div {
  5473. border-width:0px;
  5474. position:absolute;
  5475. left:0px;
  5476. top:0px;
  5477. width:375px;
  5478. height:100px;
  5479. background:inherit;
  5480. background-color:rgba(255, 255, 255, 1);
  5481. border:none;
  5482. border-left:0px;
  5483. border-top:0px;
  5484. border-right:0px;
  5485. border-radius:0px;
  5486. border-bottom-right-radius:0px;
  5487. border-bottom-left-radius:0px;
  5488. -moz-box-shadow:none;
  5489. -webkit-box-shadow:none;
  5490. box-shadow:none;
  5491. }
  5492. #u130565 {
  5493. border-width:0px;
  5494. position:absolute;
  5495. left:935px;
  5496. top:107px;
  5497. width:375px;
  5498. height:100px;
  5499. display:flex;
  5500. }
  5501. #u130565 .text {
  5502. position:absolute;
  5503. align-self:center;
  5504. padding:2px 2px 2px 2px;
  5505. box-sizing:border-box;
  5506. width:100%;
  5507. }
  5508. #u130565_text {
  5509. border-width:0px;
  5510. word-wrap:break-word;
  5511. text-transform:none;
  5512. visibility:hidden;
  5513. }
  5514. #u130566_div {
  5515. border-width:0px;
  5516. position:absolute;
  5517. left:0px;
  5518. top:0px;
  5519. width:375px;
  5520. height:40px;
  5521. background:inherit;
  5522. background-color:rgba(255, 255, 255, 1);
  5523. box-sizing:border-box;
  5524. border-width:1px;
  5525. border-style:solid;
  5526. border-color:rgba(215, 215, 215, 1);
  5527. border-left:0px;
  5528. border-top:0px;
  5529. border-right:0px;
  5530. border-radius:0px;
  5531. border-bottom-right-radius:0px;
  5532. border-bottom-left-radius:0px;
  5533. -moz-box-shadow:none;
  5534. -webkit-box-shadow:none;
  5535. box-shadow:none;
  5536. }
  5537. #u130566 {
  5538. border-width:0px;
  5539. position:absolute;
  5540. left:935px;
  5541. top:67px;
  5542. width:375px;
  5543. height:40px;
  5544. display:flex;
  5545. }
  5546. #u130566 .text {
  5547. position:absolute;
  5548. align-self:center;
  5549. padding:2px 2px 2px 2px;
  5550. box-sizing:border-box;
  5551. width:100%;
  5552. }
  5553. #u130566_text {
  5554. border-width:0px;
  5555. word-wrap:break-word;
  5556. text-transform:none;
  5557. visibility:hidden;
  5558. }
  5559. #u130567_img {
  5560. border-width:0px;
  5561. position:absolute;
  5562. left:0px;
  5563. top:0px;
  5564. width:375px;
  5565. height:44px;
  5566. }
  5567. #u130567 {
  5568. border-width:0px;
  5569. position:absolute;
  5570. left:935px;
  5571. top:24px;
  5572. width:375px;
  5573. height:44px;
  5574. display:flex;
  5575. }
  5576. #u130567 .text {
  5577. position:absolute;
  5578. align-self:center;
  5579. padding:2px 2px 2px 2px;
  5580. box-sizing:border-box;
  5581. width:100%;
  5582. }
  5583. #u130567_text {
  5584. border-width:0px;
  5585. word-wrap:break-word;
  5586. text-transform:none;
  5587. visibility:hidden;
  5588. }
  5589. #u130568 {
  5590. border-width:0px;
  5591. position:absolute;
  5592. left:0px;
  5593. top:0px;
  5594. width:0px;
  5595. height:0px;
  5596. }
  5597. #u130569_div {
  5598. border-width:0px;
  5599. position:absolute;
  5600. left:0px;
  5601. top:0px;
  5602. width:88px;
  5603. height:32px;
  5604. background:inherit;
  5605. background-color:rgba(255, 255, 255, 1);
  5606. box-sizing:border-box;
  5607. border-width:1px;
  5608. border-style:solid;
  5609. border-color:rgba(242, 242, 242, 1);
  5610. border-radius:33px;
  5611. -moz-box-shadow:none;
  5612. -webkit-box-shadow:none;
  5613. box-shadow:none;
  5614. }
  5615. #u130569 {
  5616. border-width:0px;
  5617. position:absolute;
  5618. left:1215px;
  5619. top:71px;
  5620. width:88px;
  5621. height:32px;
  5622. display:flex;
  5623. }
  5624. #u130569 .text {
  5625. position:absolute;
  5626. align-self:center;
  5627. padding:2px 2px 2px 2px;
  5628. box-sizing:border-box;
  5629. width:100%;
  5630. }
  5631. #u130569_text {
  5632. border-width:0px;
  5633. word-wrap:break-word;
  5634. text-transform:none;
  5635. visibility:hidden;
  5636. }
  5637. #u130570 {
  5638. border-width:0px;
  5639. position:absolute;
  5640. left:0px;
  5641. top:0px;
  5642. width:0px;
  5643. height:0px;
  5644. }
  5645. #u130571_img {
  5646. border-width:0px;
  5647. position:absolute;
  5648. left:0px;
  5649. top:0px;
  5650. width:18px;
  5651. height:18px;
  5652. }
  5653. #u130571 {
  5654. border-width:0px;
  5655. position:absolute;
  5656. left:1278px;
  5657. top:78px;
  5658. width:18px;
  5659. height:18px;
  5660. display:flex;
  5661. }
  5662. #u130571 .text {
  5663. position:absolute;
  5664. align-self:center;
  5665. padding:2px 2px 2px 2px;
  5666. box-sizing:border-box;
  5667. width:100%;
  5668. }
  5669. #u130571_text {
  5670. border-width:0px;
  5671. word-wrap:break-word;
  5672. text-transform:none;
  5673. visibility:hidden;
  5674. }
  5675. #u130572_img {
  5676. border-width:0px;
  5677. position:absolute;
  5678. left:0px;
  5679. top:0px;
  5680. width:6px;
  5681. height:6px;
  5682. }
  5683. #u130572 {
  5684. border-width:0px;
  5685. position:absolute;
  5686. left:1284px;
  5687. top:84px;
  5688. width:6px;
  5689. height:6px;
  5690. display:flex;
  5691. }
  5692. #u130572 .text {
  5693. position:absolute;
  5694. align-self:center;
  5695. padding:2px 2px 2px 2px;
  5696. box-sizing:border-box;
  5697. width:100%;
  5698. }
  5699. #u130572_text {
  5700. border-width:0px;
  5701. word-wrap:break-word;
  5702. text-transform:none;
  5703. visibility:hidden;
  5704. }
  5705. #u130573 {
  5706. border-width:0px;
  5707. position:absolute;
  5708. left:0px;
  5709. top:0px;
  5710. width:0px;
  5711. height:0px;
  5712. }
  5713. #u130574_img {
  5714. border-width:0px;
  5715. position:absolute;
  5716. left:0px;
  5717. top:0px;
  5718. width:5px;
  5719. height:5px;
  5720. }
  5721. #u130574 {
  5722. border-width:0px;
  5723. position:absolute;
  5724. left:1229px;
  5725. top:85px;
  5726. width:5px;
  5727. height:5px;
  5728. display:flex;
  5729. }
  5730. #u130574 .text {
  5731. position:absolute;
  5732. align-self:center;
  5733. padding:2px 2px 2px 2px;
  5734. box-sizing:border-box;
  5735. width:100%;
  5736. }
  5737. #u130574_text {
  5738. border-width:0px;
  5739. word-wrap:break-word;
  5740. text-transform:none;
  5741. visibility:hidden;
  5742. }
  5743. #u130575_img {
  5744. border-width:0px;
  5745. position:absolute;
  5746. left:0px;
  5747. top:0px;
  5748. width:5px;
  5749. height:5px;
  5750. }
  5751. #u130575 {
  5752. border-width:0px;
  5753. position:absolute;
  5754. left:1245px;
  5755. top:85px;
  5756. width:5px;
  5757. height:5px;
  5758. display:flex;
  5759. }
  5760. #u130575 .text {
  5761. position:absolute;
  5762. align-self:center;
  5763. padding:2px 2px 2px 2px;
  5764. box-sizing:border-box;
  5765. width:100%;
  5766. }
  5767. #u130575_text {
  5768. border-width:0px;
  5769. word-wrap:break-word;
  5770. text-transform:none;
  5771. visibility:hidden;
  5772. }
  5773. #u130576_img {
  5774. border-width:0px;
  5775. position:absolute;
  5776. left:0px;
  5777. top:0px;
  5778. width:7px;
  5779. height:7px;
  5780. }
  5781. #u130576 {
  5782. border-width:0px;
  5783. position:absolute;
  5784. left:1236px;
  5785. top:84px;
  5786. width:7px;
  5787. height:7px;
  5788. display:flex;
  5789. }
  5790. #u130576 .text {
  5791. position:absolute;
  5792. align-self:center;
  5793. padding:2px 2px 2px 2px;
  5794. box-sizing:border-box;
  5795. width:100%;
  5796. }
  5797. #u130576_text {
  5798. border-width:0px;
  5799. word-wrap:break-word;
  5800. text-transform:none;
  5801. visibility:hidden;
  5802. }
  5803. #u130577_img {
  5804. border-width:0px;
  5805. position:absolute;
  5806. left:0px;
  5807. top:0px;
  5808. width:19px;
  5809. height:2px;
  5810. }
  5811. #u130577 {
  5812. border-width:0px;
  5813. position:absolute;
  5814. left:1253px;
  5815. top:87px;
  5816. width:18px;
  5817. height:1px;
  5818. display:flex;
  5819. -webkit-transform:rotate(90deg);
  5820. -moz-transform:rotate(90deg);
  5821. -ms-transform:rotate(90deg);
  5822. transform:rotate(90deg);
  5823. }
  5824. #u130577 .text {
  5825. position:absolute;
  5826. align-self:center;
  5827. padding:2px 2px 2px 2px;
  5828. box-sizing:border-box;
  5829. width:100%;
  5830. }
  5831. #u130577_text {
  5832. border-width:0px;
  5833. word-wrap:break-word;
  5834. text-transform:none;
  5835. visibility:hidden;
  5836. }
  5837. #u130578_div {
  5838. border-width:0px;
  5839. position:absolute;
  5840. left:0px;
  5841. top:0px;
  5842. width:33px;
  5843. height:22px;
  5844. background:inherit;
  5845. background-color:rgba(255, 255, 255, 0);
  5846. border:none;
  5847. border-radius:0px;
  5848. -moz-box-shadow:none;
  5849. -webkit-box-shadow:none;
  5850. box-shadow:none;
  5851. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5852. font-weight:400;
  5853. font-style:normal;
  5854. font-size:16px;
  5855. color:#000000;
  5856. }
  5857. #u130578 {
  5858. border-width:0px;
  5859. position:absolute;
  5860. left:970px;
  5861. top:76px;
  5862. width:33px;
  5863. height:22px;
  5864. display:flex;
  5865. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5866. font-weight:400;
  5867. font-style:normal;
  5868. font-size:16px;
  5869. color:#000000;
  5870. }
  5871. #u130578 .text {
  5872. position:absolute;
  5873. align-self:flex-start;
  5874. padding:0px 0px 0px 0px;
  5875. box-sizing:border-box;
  5876. width:100%;
  5877. }
  5878. #u130578_text {
  5879. border-width:0px;
  5880. white-space:nowrap;
  5881. text-transform:none;
  5882. }
  5883. #u130579_div {
  5884. border-width:0px;
  5885. position:absolute;
  5886. left:0px;
  5887. top:0px;
  5888. width:12px;
  5889. height:12px;
  5890. background:inherit;
  5891. background-color:rgba(255, 255, 255, 0);
  5892. box-sizing:border-box;
  5893. border-width:2px;
  5894. border-style:solid;
  5895. border-color:rgba(51, 51, 51, 1);
  5896. border-right:0px;
  5897. border-bottom:0px;
  5898. border-radius:0px;
  5899. border-top-right-radius:0px;
  5900. border-bottom-left-radius:0px;
  5901. -moz-box-shadow:none;
  5902. -webkit-box-shadow:none;
  5903. box-shadow:none;
  5904. }
  5905. #u130579 {
  5906. border-width:0px;
  5907. position:absolute;
  5908. left:950px;
  5909. top:81px;
  5910. width:12px;
  5911. height:12px;
  5912. display:flex;
  5913. -webkit-transform:rotate(315deg);
  5914. -moz-transform:rotate(315deg);
  5915. -ms-transform:rotate(315deg);
  5916. transform:rotate(315deg);
  5917. }
  5918. #u130579 .text {
  5919. position:absolute;
  5920. align-self:center;
  5921. padding:2px 2px 2px 2px;
  5922. box-sizing:border-box;
  5923. width:100%;
  5924. }
  5925. #u130579_text {
  5926. border-width:0px;
  5927. word-wrap:break-word;
  5928. text-transform:none;
  5929. visibility:hidden;
  5930. }
  5931. #u130580 {
  5932. border-width:0px;
  5933. position:absolute;
  5934. left:0px;
  5935. top:0px;
  5936. width:0px;
  5937. height:0px;
  5938. }
  5939. #u130581_img {
  5940. border-width:0px;
  5941. position:absolute;
  5942. left:0px;
  5943. top:0px;
  5944. width:355px;
  5945. height:232px;
  5946. }
  5947. #u130581 {
  5948. border-width:0px;
  5949. position:absolute;
  5950. left:945px;
  5951. top:217px;
  5952. width:355px;
  5953. height:232px;
  5954. display:flex;
  5955. }
  5956. #u130581 .text {
  5957. position:absolute;
  5958. align-self:center;
  5959. padding:2px 2px 2px 2px;
  5960. box-sizing:border-box;
  5961. width:100%;
  5962. }
  5963. #u130581_text {
  5964. border-width:0px;
  5965. word-wrap:break-word;
  5966. text-transform:none;
  5967. visibility:hidden;
  5968. }
  5969. #u130582_div {
  5970. border-width:0px;
  5971. position:absolute;
  5972. left:0px;
  5973. top:0px;
  5974. width:325px;
  5975. height:210px;
  5976. background:inherit;
  5977. background-color:rgba(255, 255, 255, 0);
  5978. border:none;
  5979. border-left:0px;
  5980. border-top:0px;
  5981. border-right:0px;
  5982. border-radius:0px;
  5983. border-bottom-right-radius:0px;
  5984. border-bottom-left-radius:0px;
  5985. -moz-box-shadow:none;
  5986. -webkit-box-shadow:none;
  5987. box-shadow:none;
  5988. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5989. font-weight:400;
  5990. font-style:normal;
  5991. font-size:12px;
  5992. line-height:30px;
  5993. }
  5994. #u130582 {
  5995. border-width:0px;
  5996. position:absolute;
  5997. left:961px;
  5998. top:228px;
  5999. width:325px;
  6000. height:210px;
  6001. display:flex;
  6002. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6003. font-weight:400;
  6004. font-style:normal;
  6005. font-size:12px;
  6006. line-height:30px;
  6007. }
  6008. #u130582 .text {
  6009. position:absolute;
  6010. align-self:flex-start;
  6011. padding:0px 0px 0px 0px;
  6012. box-sizing:border-box;
  6013. width:100%;
  6014. }
  6015. #u130582_text {
  6016. border-width:0px;
  6017. word-wrap:break-word;
  6018. text-transform:none;
  6019. }
  6020. #u130583_div {
  6021. border-width:0px;
  6022. position:absolute;
  6023. left:0px;
  6024. top:0px;
  6025. width:132px;
  6026. height:30px;
  6027. background:inherit;
  6028. background-color:rgba(255, 255, 255, 0);
  6029. border:none;
  6030. border-left:0px;
  6031. border-top:0px;
  6032. border-right:0px;
  6033. border-radius:0px;
  6034. border-bottom-right-radius:0px;
  6035. border-bottom-left-radius:0px;
  6036. -moz-box-shadow:none;
  6037. -webkit-box-shadow:none;
  6038. box-shadow:none;
  6039. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6040. font-weight:500;
  6041. font-style:normal;
  6042. font-size:14px;
  6043. line-height:30px;
  6044. }
  6045. #u130583 {
  6046. border-width:0px;
  6047. position:absolute;
  6048. left:962px;
  6049. top:117px;
  6050. width:132px;
  6051. height:30px;
  6052. display:flex;
  6053. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6054. font-weight:500;
  6055. font-style:normal;
  6056. font-size:14px;
  6057. line-height:30px;
  6058. }
  6059. #u130583 .text {
  6060. position:absolute;
  6061. align-self:flex-start;
  6062. padding:0px 0px 0px 0px;
  6063. box-sizing:border-box;
  6064. width:100%;
  6065. }
  6066. #u130583_text {
  6067. border-width:0px;
  6068. white-space:nowrap;
  6069. text-transform:none;
  6070. }
  6071. #u130584_div {
  6072. border-width:0px;
  6073. position:absolute;
  6074. left:0px;
  6075. top:0px;
  6076. width:325px;
  6077. height:50px;
  6078. background:inherit;
  6079. background-color:rgba(255, 255, 255, 0);
  6080. border:none;
  6081. border-left:0px;
  6082. border-top:0px;
  6083. border-right:0px;
  6084. border-radius:0px;
  6085. border-bottom-right-radius:0px;
  6086. border-bottom-left-radius:0px;
  6087. -moz-box-shadow:none;
  6088. -webkit-box-shadow:none;
  6089. box-shadow:none;
  6090. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6091. font-weight:400;
  6092. font-style:normal;
  6093. font-size:12px;
  6094. line-height:25px;
  6095. }
  6096. #u130584 {
  6097. border-width:0px;
  6098. position:absolute;
  6099. left:962px;
  6100. top:147px;
  6101. width:325px;
  6102. height:50px;
  6103. display:flex;
  6104. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6105. font-weight:400;
  6106. font-style:normal;
  6107. font-size:12px;
  6108. line-height:25px;
  6109. }
  6110. #u130584 .text {
  6111. position:absolute;
  6112. align-self:flex-start;
  6113. padding:0px 0px 0px 0px;
  6114. box-sizing:border-box;
  6115. width:100%;
  6116. }
  6117. #u130584_text {
  6118. border-width:0px;
  6119. word-wrap:break-word;
  6120. text-transform:none;
  6121. }
  6122. #u130585 {
  6123. border-width:0px;
  6124. position:absolute;
  6125. left:0px;
  6126. top:0px;
  6127. width:0px;
  6128. height:0px;
  6129. }
  6130. #u130586_div {
  6131. border-width:0px;
  6132. position:absolute;
  6133. left:0px;
  6134. top:0px;
  6135. width:355px;
  6136. height:192px;
  6137. background:inherit;
  6138. background-color:rgba(255, 255, 255, 1);
  6139. border:none;
  6140. border-radius:0px;
  6141. -moz-box-shadow:none;
  6142. -webkit-box-shadow:none;
  6143. box-shadow:none;
  6144. }
  6145. #u130586 {
  6146. border-width:0px;
  6147. position:absolute;
  6148. left:945px;
  6149. top:509px;
  6150. width:355px;
  6151. height:192px;
  6152. display:flex;
  6153. }
  6154. #u130586 .text {
  6155. position:absolute;
  6156. align-self:center;
  6157. padding:2px 2px 2px 2px;
  6158. box-sizing:border-box;
  6159. width:100%;
  6160. }
  6161. #u130586_text {
  6162. border-width:0px;
  6163. word-wrap:break-word;
  6164. text-transform:none;
  6165. visibility:hidden;
  6166. }
  6167. #u130587_div {
  6168. border-width:0px;
  6169. position:absolute;
  6170. left:0px;
  6171. top:0px;
  6172. width:103px;
  6173. height:24px;
  6174. background:inherit;
  6175. background-color:rgba(255, 255, 255, 0);
  6176. border:none;
  6177. border-top:0px;
  6178. border-right:0px;
  6179. border-bottom:0px;
  6180. border-radius:0px;
  6181. border-top-left-radius:0px;
  6182. border-bottom-left-radius:0px;
  6183. -moz-box-shadow:none;
  6184. -webkit-box-shadow:none;
  6185. box-shadow:none;
  6186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6187. font-weight:400;
  6188. font-style:normal;
  6189. font-size:10px;
  6190. color:#AAAAAA;
  6191. }
  6192. #u130587 {
  6193. border-width:0px;
  6194. position:absolute;
  6195. left:1180px;
  6196. top:559px;
  6197. width:103px;
  6198. height:24px;
  6199. display:flex;
  6200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6201. font-weight:400;
  6202. font-style:normal;
  6203. font-size:10px;
  6204. color:#AAAAAA;
  6205. }
  6206. #u130587 .text {
  6207. position:absolute;
  6208. align-self:flex-start;
  6209. padding:5px 0px 5px 0px;
  6210. box-sizing:border-box;
  6211. width:100%;
  6212. }
  6213. #u130587_text {
  6214. border-width:0px;
  6215. white-space:nowrap;
  6216. text-transform:none;
  6217. }
  6218. #u130588 {
  6219. border-width:0px;
  6220. position:absolute;
  6221. left:0px;
  6222. top:0px;
  6223. width:0px;
  6224. height:0px;
  6225. }
  6226. #u130589_div {
  6227. border-width:0px;
  6228. position:absolute;
  6229. left:0px;
  6230. top:0px;
  6231. width:43px;
  6232. height:30px;
  6233. background:inherit;
  6234. background-color:rgba(255, 255, 255, 0);
  6235. border:none;
  6236. border-top:0px;
  6237. border-right:0px;
  6238. border-bottom:0px;
  6239. border-radius:0px;
  6240. border-top-left-radius:0px;
  6241. border-bottom-left-radius:0px;
  6242. -moz-box-shadow:none;
  6243. -webkit-box-shadow:none;
  6244. box-shadow:none;
  6245. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6246. font-weight:400;
  6247. font-style:normal;
  6248. font-size:14px;
  6249. }
  6250. #u130589 {
  6251. border-width:0px;
  6252. position:absolute;
  6253. left:1013px;
  6254. top:561px;
  6255. width:43px;
  6256. height:30px;
  6257. display:flex;
  6258. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6259. font-weight:400;
  6260. font-style:normal;
  6261. font-size:14px;
  6262. }
  6263. #u130589 .text {
  6264. position:absolute;
  6265. align-self:flex-start;
  6266. padding:0px 0px 0px 0px;
  6267. box-sizing:border-box;
  6268. width:100%;
  6269. }
  6270. #u130589_text {
  6271. border-width:0px;
  6272. white-space:nowrap;
  6273. text-transform:none;
  6274. }
  6275. #u130590_div {
  6276. border-width:0px;
  6277. position:absolute;
  6278. left:0px;
  6279. top:0px;
  6280. width:12px;
  6281. height:16px;
  6282. background:inherit;
  6283. background-color:rgba(255, 255, 255, 0);
  6284. border:none;
  6285. border-top:0px;
  6286. border-right:0px;
  6287. border-bottom:0px;
  6288. border-radius:0px;
  6289. border-top-left-radius:0px;
  6290. border-bottom-left-radius:0px;
  6291. -moz-box-shadow:none;
  6292. -webkit-box-shadow:none;
  6293. box-shadow:none;
  6294. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6295. font-weight:400;
  6296. font-style:normal;
  6297. font-size:11px;
  6298. color:#AAAAAA;
  6299. }
  6300. #u130590 {
  6301. border-width:0px;
  6302. position:absolute;
  6303. left:1013px;
  6304. top:589px;
  6305. width:12px;
  6306. height:16px;
  6307. display:flex;
  6308. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6309. font-weight:400;
  6310. font-style:normal;
  6311. font-size:11px;
  6312. color:#AAAAAA;
  6313. }
  6314. #u130590 .text {
  6315. position:absolute;
  6316. align-self:flex-start;
  6317. padding:0px 0px 0px 0px;
  6318. box-sizing:border-box;
  6319. width:100%;
  6320. }
  6321. #u130590_text {
  6322. border-width:0px;
  6323. white-space:nowrap;
  6324. text-transform:none;
  6325. }
  6326. #u130591_div {
  6327. border-width:0px;
  6328. position:absolute;
  6329. left:0px;
  6330. top:0px;
  6331. width:43px;
  6332. height:20px;
  6333. background:inherit;
  6334. background-color:rgba(255, 255, 255, 0);
  6335. border:none;
  6336. border-top:0px;
  6337. border-right:0px;
  6338. border-bottom:0px;
  6339. border-radius:0px;
  6340. border-top-left-radius:0px;
  6341. border-bottom-left-radius:0px;
  6342. -moz-box-shadow:none;
  6343. -webkit-box-shadow:none;
  6344. box-shadow:none;
  6345. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6346. font-weight:400;
  6347. font-style:normal;
  6348. font-size:14px;
  6349. }
  6350. #u130591 {
  6351. border-width:0px;
  6352. position:absolute;
  6353. left:1013px;
  6354. top:631px;
  6355. width:43px;
  6356. height:20px;
  6357. display:flex;
  6358. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6359. font-weight:400;
  6360. font-style:normal;
  6361. font-size:14px;
  6362. }
  6363. #u130591 .text {
  6364. position:absolute;
  6365. align-self:flex-start;
  6366. padding:0px 0px 0px 0px;
  6367. box-sizing:border-box;
  6368. width:100%;
  6369. }
  6370. #u130591_text {
  6371. border-width:0px;
  6372. white-space:nowrap;
  6373. text-transform:none;
  6374. }
  6375. #u130592_div {
  6376. border-width:0px;
  6377. position:absolute;
  6378. left:0px;
  6379. top:0px;
  6380. width:91px;
  6381. height:16px;
  6382. background:inherit;
  6383. background-color:rgba(255, 255, 255, 0);
  6384. border:none;
  6385. border-top:0px;
  6386. border-right:0px;
  6387. border-bottom:0px;
  6388. border-radius:0px;
  6389. border-top-left-radius:0px;
  6390. border-bottom-left-radius:0px;
  6391. -moz-box-shadow:none;
  6392. -webkit-box-shadow:none;
  6393. box-shadow:none;
  6394. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6395. font-weight:400;
  6396. font-style:normal;
  6397. font-size:11px;
  6398. color:#AAAAAA;
  6399. }
  6400. #u130592 {
  6401. border-width:0px;
  6402. position:absolute;
  6403. left:1013px;
  6404. top:659px;
  6405. width:91px;
  6406. height:16px;
  6407. display:flex;
  6408. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6409. font-weight:400;
  6410. font-style:normal;
  6411. font-size:11px;
  6412. color:#AAAAAA;
  6413. }
  6414. #u130592 .text {
  6415. position:absolute;
  6416. align-self:flex-start;
  6417. padding:0px 0px 0px 0px;
  6418. box-sizing:border-box;
  6419. width:100%;
  6420. }
  6421. #u130592_text {
  6422. border-width:0px;
  6423. white-space:nowrap;
  6424. text-transform:none;
  6425. }
  6426. #u130593_div {
  6427. border-width:0px;
  6428. position:absolute;
  6429. left:0px;
  6430. top:0px;
  6431. width:29px;
  6432. height:30px;
  6433. background:inherit;
  6434. background-color:rgba(255, 255, 255, 0);
  6435. border:none;
  6436. border-top:0px;
  6437. border-right:0px;
  6438. border-bottom:0px;
  6439. border-radius:0px;
  6440. border-top-left-radius:0px;
  6441. border-bottom-left-radius:0px;
  6442. -moz-box-shadow:none;
  6443. -webkit-box-shadow:none;
  6444. box-shadow:none;
  6445. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6446. font-weight:400;
  6447. font-style:normal;
  6448. font-size:14px;
  6449. }
  6450. #u130593 {
  6451. border-width:0px;
  6452. position:absolute;
  6453. left:971px;
  6454. top:517px;
  6455. width:29px;
  6456. height:30px;
  6457. display:flex;
  6458. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6459. font-weight:400;
  6460. font-style:normal;
  6461. font-size:14px;
  6462. }
  6463. #u130593 .text {
  6464. position:absolute;
  6465. align-self:flex-start;
  6466. padding:5px 0px 5px 0px;
  6467. box-sizing:border-box;
  6468. width:100%;
  6469. }
  6470. #u130593_text {
  6471. border-width:0px;
  6472. white-space:nowrap;
  6473. text-transform:none;
  6474. }
  6475. #u130594 {
  6476. border-width:0px;
  6477. position:absolute;
  6478. left:0px;
  6479. top:0px;
  6480. width:0px;
  6481. height:0px;
  6482. }
  6483. #u130595_img {
  6484. border-width:0px;
  6485. position:absolute;
  6486. left:0px;
  6487. top:0px;
  6488. width:2px;
  6489. height:32px;
  6490. }
  6491. #u130595 {
  6492. border-width:0px;
  6493. position:absolute;
  6494. left:990px;
  6495. top:595px;
  6496. width:1px;
  6497. height:31px;
  6498. display:flex;
  6499. }
  6500. #u130595 .text {
  6501. position:absolute;
  6502. align-self:center;
  6503. padding:2px 2px 2px 2px;
  6504. box-sizing:border-box;
  6505. width:100%;
  6506. }
  6507. #u130595_text {
  6508. border-width:0px;
  6509. word-wrap:break-word;
  6510. text-transform:none;
  6511. visibility:hidden;
  6512. }
  6513. #u130596 {
  6514. border-width:0px;
  6515. position:absolute;
  6516. left:0px;
  6517. top:0px;
  6518. width:0px;
  6519. height:0px;
  6520. }
  6521. #u130597_div {
  6522. border-width:0px;
  6523. position:absolute;
  6524. left:0px;
  6525. top:0px;
  6526. width:30px;
  6527. height:30px;
  6528. background:inherit;
  6529. background-color:rgba(24, 144, 255, 1);
  6530. border:none;
  6531. border-radius:4px;
  6532. -moz-box-shadow:none;
  6533. -webkit-box-shadow:none;
  6534. box-shadow:none;
  6535. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6536. font-weight:400;
  6537. font-style:normal;
  6538. font-size:10px;
  6539. color:#FFFFFF;
  6540. }
  6541. #u130597 {
  6542. border-width:0px;
  6543. position:absolute;
  6544. left:975px;
  6545. top:631px;
  6546. width:30px;
  6547. height:30px;
  6548. display:flex;
  6549. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6550. font-weight:400;
  6551. font-style:normal;
  6552. font-size:10px;
  6553. color:#FFFFFF;
  6554. }
  6555. #u130597 .text {
  6556. position:absolute;
  6557. align-self:center;
  6558. padding:2px 2px 2px 2px;
  6559. box-sizing:border-box;
  6560. width:100%;
  6561. }
  6562. #u130597_text {
  6563. border-width:0px;
  6564. word-wrap:break-word;
  6565. text-transform:none;
  6566. }
  6567. #u130598 {
  6568. border-width:0px;
  6569. position:absolute;
  6570. left:0px;
  6571. top:0px;
  6572. width:0px;
  6573. height:0px;
  6574. }
  6575. #u130599_img {
  6576. border-width:0px;
  6577. position:absolute;
  6578. left:0px;
  6579. top:0px;
  6580. width:9px;
  6581. height:9px;
  6582. }
  6583. #u130599 {
  6584. border-width:0px;
  6585. position:absolute;
  6586. left:997px;
  6587. top:653px;
  6588. width:9px;
  6589. height:9px;
  6590. display:flex;
  6591. }
  6592. #u130599 .text {
  6593. position:absolute;
  6594. align-self:center;
  6595. padding:2px 2px 2px 2px;
  6596. box-sizing:border-box;
  6597. width:100%;
  6598. }
  6599. #u130599_text {
  6600. border-width:0px;
  6601. word-wrap:break-word;
  6602. text-transform:none;
  6603. visibility:hidden;
  6604. }
  6605. #u130600_img {
  6606. border-width:0px;
  6607. position:absolute;
  6608. left:0px;
  6609. top:0px;
  6610. width:5px;
  6611. height:1px;
  6612. }
  6613. #u130600 {
  6614. border-width:0px;
  6615. position:absolute;
  6616. left:999px;
  6617. top:657px;
  6618. width:5px;
  6619. height:1px;
  6620. display:flex;
  6621. }
  6622. #u130600 .text {
  6623. position:absolute;
  6624. align-self:center;
  6625. padding:2px 2px 2px 2px;
  6626. box-sizing:border-box;
  6627. width:100%;
  6628. }
  6629. #u130600_text {
  6630. border-width:0px;
  6631. word-wrap:break-word;
  6632. text-transform:none;
  6633. visibility:hidden;
  6634. }
  6635. #u130601 {
  6636. border-width:0px;
  6637. position:absolute;
  6638. left:0px;
  6639. top:0px;
  6640. width:0px;
  6641. height:0px;
  6642. }
  6643. #u130602_div {
  6644. border-width:0px;
  6645. position:absolute;
  6646. left:0px;
  6647. top:0px;
  6648. width:30px;
  6649. height:30px;
  6650. background:inherit;
  6651. background-color:rgba(24, 144, 255, 1);
  6652. border:none;
  6653. border-radius:4px;
  6654. -moz-box-shadow:none;
  6655. -webkit-box-shadow:none;
  6656. box-shadow:none;
  6657. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6658. font-weight:400;
  6659. font-style:normal;
  6660. font-size:12px;
  6661. color:#FFFFFF;
  6662. }
  6663. #u130602 {
  6664. border-width:0px;
  6665. position:absolute;
  6666. left:975px;
  6667. top:561px;
  6668. width:30px;
  6669. height:30px;
  6670. display:flex;
  6671. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6672. font-weight:400;
  6673. font-style:normal;
  6674. font-size:12px;
  6675. color:#FFFFFF;
  6676. }
  6677. #u130602 .text {
  6678. position:absolute;
  6679. align-self:center;
  6680. padding:2px 2px 2px 2px;
  6681. box-sizing:border-box;
  6682. width:100%;
  6683. }
  6684. #u130602_text {
  6685. border-width:0px;
  6686. word-wrap:break-word;
  6687. text-transform:none;
  6688. }
  6689. #u130603 {
  6690. border-width:0px;
  6691. position:absolute;
  6692. left:0px;
  6693. top:0px;
  6694. width:0px;
  6695. height:0px;
  6696. }
  6697. #u130604_img {
  6698. border-width:0px;
  6699. position:absolute;
  6700. left:0px;
  6701. top:0px;
  6702. width:9px;
  6703. height:9px;
  6704. }
  6705. #u130604 {
  6706. border-width:0px;
  6707. position:absolute;
  6708. left:997px;
  6709. top:583px;
  6710. width:9px;
  6711. height:9px;
  6712. display:flex;
  6713. }
  6714. #u130604 .text {
  6715. position:absolute;
  6716. align-self:center;
  6717. padding:2px 2px 2px 2px;
  6718. box-sizing:border-box;
  6719. width:100%;
  6720. }
  6721. #u130604_text {
  6722. border-width:0px;
  6723. word-wrap:break-word;
  6724. text-transform:none;
  6725. visibility:hidden;
  6726. }
  6727. #u130605_img {
  6728. border-width:0px;
  6729. position:absolute;
  6730. left:0px;
  6731. top:0px;
  6732. width:5px;
  6733. height:4px;
  6734. }
  6735. #u130605 {
  6736. border-width:0px;
  6737. position:absolute;
  6738. left:999px;
  6739. top:586px;
  6740. width:5px;
  6741. height:4px;
  6742. display:flex;
  6743. }
  6744. #u130605 .text {
  6745. position:absolute;
  6746. align-self:center;
  6747. padding:2px 2px 2px 2px;
  6748. box-sizing:border-box;
  6749. width:100%;
  6750. }
  6751. #u130605_text {
  6752. border-width:0px;
  6753. word-wrap:break-word;
  6754. text-transform:none;
  6755. visibility:hidden;
  6756. }
  6757. #u130606 {
  6758. border-width:0px;
  6759. position:absolute;
  6760. left:0px;
  6761. top:0px;
  6762. width:0px;
  6763. height:0px;
  6764. }
  6765. #u130607_div {
  6766. border-width:0px;
  6767. position:absolute;
  6768. left:0px;
  6769. top:0px;
  6770. width:375px;
  6771. height:60px;
  6772. background:inherit;
  6773. background-color:rgba(255, 255, 255, 1);
  6774. border:none;
  6775. border-top:0px;
  6776. border-radius:28px;
  6777. border-top-left-radius:0px;
  6778. border-top-right-radius:0px;
  6779. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  6780. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  6781. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  6782. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6783. font-weight:400;
  6784. font-style:normal;
  6785. font-size:14px;
  6786. color:#FFFFFF;
  6787. }
  6788. #u130607 {
  6789. border-width:0px;
  6790. position:absolute;
  6791. left:935px;
  6792. top:783px;
  6793. width:375px;
  6794. height:60px;
  6795. display:flex;
  6796. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6797. font-weight:400;
  6798. font-style:normal;
  6799. font-size:14px;
  6800. color:#FFFFFF;
  6801. }
  6802. #u130607 .text {
  6803. position:absolute;
  6804. align-self:center;
  6805. padding:2px 2px 2px 2px;
  6806. box-sizing:border-box;
  6807. width:100%;
  6808. }
  6809. #u130607_text {
  6810. border-width:0px;
  6811. word-wrap:break-word;
  6812. text-transform:none;
  6813. visibility:hidden;
  6814. }
  6815. #u130608_div {
  6816. border-width:0px;
  6817. position:absolute;
  6818. left:0px;
  6819. top:0px;
  6820. width:80px;
  6821. height:40px;
  6822. background:inherit;
  6823. background-color:rgba(24, 144, 255, 1);
  6824. border:none;
  6825. border-radius:27px;
  6826. -moz-box-shadow:none;
  6827. -webkit-box-shadow:none;
  6828. box-shadow:none;
  6829. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6830. font-weight:400;
  6831. font-style:normal;
  6832. color:#FFFFFF;
  6833. text-align:center;
  6834. }
  6835. #u130608 {
  6836. border-width:0px;
  6837. position:absolute;
  6838. left:1215px;
  6839. top:793px;
  6840. width:80px;
  6841. height:40px;
  6842. display:flex;
  6843. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6844. font-weight:400;
  6845. font-style:normal;
  6846. color:#FFFFFF;
  6847. text-align:center;
  6848. }
  6849. #u130608 .text {
  6850. position:absolute;
  6851. align-self:center;
  6852. padding:2px 3px 2px 3px;
  6853. box-sizing:border-box;
  6854. width:100%;
  6855. }
  6856. #u130608_text {
  6857. border-width:0px;
  6858. word-wrap:break-word;
  6859. text-transform:none;
  6860. }
  6861. #u130609_div {
  6862. border-width:0px;
  6863. position:absolute;
  6864. left:0px;
  6865. top:0px;
  6866. width:80px;
  6867. height:40px;
  6868. background:inherit;
  6869. background-color:rgba(215, 215, 215, 1);
  6870. border:none;
  6871. border-radius:27px;
  6872. -moz-box-shadow:none;
  6873. -webkit-box-shadow:none;
  6874. box-shadow:none;
  6875. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6876. font-weight:400;
  6877. font-style:normal;
  6878. text-align:center;
  6879. }
  6880. #u130609 {
  6881. border-width:0px;
  6882. position:absolute;
  6883. left:1125px;
  6884. top:793px;
  6885. width:80px;
  6886. height:40px;
  6887. display:flex;
  6888. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6889. font-weight:400;
  6890. font-style:normal;
  6891. text-align:center;
  6892. }
  6893. #u130609 .text {
  6894. position:absolute;
  6895. align-self:center;
  6896. padding:2px 3px 2px 3px;
  6897. box-sizing:border-box;
  6898. width:100%;
  6899. }
  6900. #u130609_text {
  6901. border-width:0px;
  6902. word-wrap:break-word;
  6903. text-transform:none;
  6904. }
  6905. #u130610_div {
  6906. border-width:0px;
  6907. position:absolute;
  6908. left:0px;
  6909. top:0px;
  6910. width:31px;
  6911. height:21px;
  6912. background:inherit;
  6913. background-color:rgba(215, 215, 215, 0);
  6914. border:none;
  6915. border-radius:27px;
  6916. -moz-box-shadow:none;
  6917. -webkit-box-shadow:none;
  6918. box-shadow:none;
  6919. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6920. font-weight:400;
  6921. font-style:normal;
  6922. font-size:12px;
  6923. color:#7F7F7F;
  6924. text-align:center;
  6925. }
  6926. #u130610 {
  6927. border-width:0px;
  6928. position:absolute;
  6929. left:1084px;
  6930. top:803px;
  6931. width:31px;
  6932. height:21px;
  6933. display:flex;
  6934. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6935. font-weight:400;
  6936. font-style:normal;
  6937. font-size:12px;
  6938. color:#7F7F7F;
  6939. text-align:center;
  6940. }
  6941. #u130610 .text {
  6942. position:absolute;
  6943. align-self:center;
  6944. padding:2px 3px 2px 3px;
  6945. box-sizing:border-box;
  6946. width:100%;
  6947. }
  6948. #u130610_text {
  6949. border-width:0px;
  6950. white-space:nowrap;
  6951. text-transform:none;
  6952. }
  6953. #u130611_div {
  6954. border-width:0px;
  6955. position:absolute;
  6956. left:0px;
  6957. top:0px;
  6958. width:97px;
  6959. height:25px;
  6960. background:inherit;
  6961. background-color:rgba(255, 255, 255, 0);
  6962. border:none;
  6963. border-radius:0px;
  6964. -moz-box-shadow:none;
  6965. -webkit-box-shadow:none;
  6966. box-shadow:none;
  6967. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6968. font-weight:400;
  6969. font-style:normal;
  6970. font-size:12px;
  6971. color:#B8741A;
  6972. line-height:25px;
  6973. }
  6974. #u130611 {
  6975. border-width:0px;
  6976. position:absolute;
  6977. left:1190px;
  6978. top:172px;
  6979. width:97px;
  6980. height:25px;
  6981. display:flex;
  6982. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6983. font-weight:400;
  6984. font-style:normal;
  6985. font-size:12px;
  6986. color:#B8741A;
  6987. line-height:25px;
  6988. }
  6989. #u130611 .text {
  6990. position:absolute;
  6991. align-self:flex-start;
  6992. padding:0px 0px 0px 0px;
  6993. box-sizing:border-box;
  6994. width:100%;
  6995. }
  6996. #u130611_text {
  6997. border-width:0px;
  6998. white-space:nowrap;
  6999. text-transform:none;
  7000. }
  7001. #u130613_img {
  7002. border-width:0px;
  7003. position:absolute;
  7004. left:0px;
  7005. top:0px;
  7006. width:433px;
  7007. height:865px;
  7008. }
  7009. #u130613 {
  7010. border-width:0px;
  7011. position:absolute;
  7012. left:1371px;
  7013. top:0px;
  7014. width:433px;
  7015. height:865px;
  7016. display:flex;
  7017. }
  7018. #u130613 .text {
  7019. position:absolute;
  7020. align-self:center;
  7021. padding:2px 2px 2px 2px;
  7022. box-sizing:border-box;
  7023. width:100%;
  7024. }
  7025. #u130613_text {
  7026. border-width:0px;
  7027. word-wrap:break-word;
  7028. text-transform:none;
  7029. visibility:hidden;
  7030. }
  7031. #u130614_div {
  7032. border-width:0px;
  7033. position:absolute;
  7034. left:0px;
  7035. top:0px;
  7036. width:375px;
  7037. height:40px;
  7038. background:inherit;
  7039. background-color:rgba(255, 255, 255, 1);
  7040. box-sizing:border-box;
  7041. border-width:1px;
  7042. border-style:solid;
  7043. border-color:rgba(215, 215, 215, 1);
  7044. border-left:0px;
  7045. border-top:0px;
  7046. border-right:0px;
  7047. border-radius:0px;
  7048. border-bottom-right-radius:0px;
  7049. border-bottom-left-radius:0px;
  7050. -moz-box-shadow:none;
  7051. -webkit-box-shadow:none;
  7052. box-shadow:none;
  7053. }
  7054. #u130614 {
  7055. border-width:0px;
  7056. position:absolute;
  7057. left:1400px;
  7058. top:67px;
  7059. width:375px;
  7060. height:40px;
  7061. display:flex;
  7062. }
  7063. #u130614 .text {
  7064. position:absolute;
  7065. align-self:center;
  7066. padding:2px 2px 2px 2px;
  7067. box-sizing:border-box;
  7068. width:100%;
  7069. }
  7070. #u130614_text {
  7071. border-width:0px;
  7072. word-wrap:break-word;
  7073. text-transform:none;
  7074. visibility:hidden;
  7075. }
  7076. #u130615 {
  7077. border-width:0px;
  7078. position:absolute;
  7079. left:0px;
  7080. top:0px;
  7081. width:0px;
  7082. height:0px;
  7083. }
  7084. #u130616_div {
  7085. border-width:0px;
  7086. position:absolute;
  7087. left:0px;
  7088. top:0px;
  7089. width:88px;
  7090. height:32px;
  7091. background:inherit;
  7092. background-color:rgba(255, 255, 255, 1);
  7093. box-sizing:border-box;
  7094. border-width:1px;
  7095. border-style:solid;
  7096. border-color:rgba(242, 242, 242, 1);
  7097. border-radius:33px;
  7098. -moz-box-shadow:none;
  7099. -webkit-box-shadow:none;
  7100. box-shadow:none;
  7101. }
  7102. #u130616 {
  7103. border-width:0px;
  7104. position:absolute;
  7105. left:1680px;
  7106. top:71px;
  7107. width:88px;
  7108. height:32px;
  7109. display:flex;
  7110. }
  7111. #u130616 .text {
  7112. position:absolute;
  7113. align-self:center;
  7114. padding:2px 2px 2px 2px;
  7115. box-sizing:border-box;
  7116. width:100%;
  7117. }
  7118. #u130616_text {
  7119. border-width:0px;
  7120. word-wrap:break-word;
  7121. text-transform:none;
  7122. visibility:hidden;
  7123. }
  7124. #u130617 {
  7125. border-width:0px;
  7126. position:absolute;
  7127. left:0px;
  7128. top:0px;
  7129. width:0px;
  7130. height:0px;
  7131. }
  7132. #u130618_img {
  7133. border-width:0px;
  7134. position:absolute;
  7135. left:0px;
  7136. top:0px;
  7137. width:18px;
  7138. height:18px;
  7139. }
  7140. #u130618 {
  7141. border-width:0px;
  7142. position:absolute;
  7143. left:1743px;
  7144. top:78px;
  7145. width:18px;
  7146. height:18px;
  7147. display:flex;
  7148. }
  7149. #u130618 .text {
  7150. position:absolute;
  7151. align-self:center;
  7152. padding:2px 2px 2px 2px;
  7153. box-sizing:border-box;
  7154. width:100%;
  7155. }
  7156. #u130618_text {
  7157. border-width:0px;
  7158. word-wrap:break-word;
  7159. text-transform:none;
  7160. visibility:hidden;
  7161. }
  7162. #u130619_img {
  7163. border-width:0px;
  7164. position:absolute;
  7165. left:0px;
  7166. top:0px;
  7167. width:6px;
  7168. height:6px;
  7169. }
  7170. #u130619 {
  7171. border-width:0px;
  7172. position:absolute;
  7173. left:1749px;
  7174. top:84px;
  7175. width:6px;
  7176. height:6px;
  7177. display:flex;
  7178. }
  7179. #u130619 .text {
  7180. position:absolute;
  7181. align-self:center;
  7182. padding:2px 2px 2px 2px;
  7183. box-sizing:border-box;
  7184. width:100%;
  7185. }
  7186. #u130619_text {
  7187. border-width:0px;
  7188. word-wrap:break-word;
  7189. text-transform:none;
  7190. visibility:hidden;
  7191. }
  7192. #u130620 {
  7193. border-width:0px;
  7194. position:absolute;
  7195. left:0px;
  7196. top:0px;
  7197. width:0px;
  7198. height:0px;
  7199. }
  7200. #u130621_img {
  7201. border-width:0px;
  7202. position:absolute;
  7203. left:0px;
  7204. top:0px;
  7205. width:5px;
  7206. height:5px;
  7207. }
  7208. #u130621 {
  7209. border-width:0px;
  7210. position:absolute;
  7211. left:1694px;
  7212. top:85px;
  7213. width:5px;
  7214. height:5px;
  7215. display:flex;
  7216. }
  7217. #u130621 .text {
  7218. position:absolute;
  7219. align-self:center;
  7220. padding:2px 2px 2px 2px;
  7221. box-sizing:border-box;
  7222. width:100%;
  7223. }
  7224. #u130621_text {
  7225. border-width:0px;
  7226. word-wrap:break-word;
  7227. text-transform:none;
  7228. visibility:hidden;
  7229. }
  7230. #u130622_img {
  7231. border-width:0px;
  7232. position:absolute;
  7233. left:0px;
  7234. top:0px;
  7235. width:5px;
  7236. height:5px;
  7237. }
  7238. #u130622 {
  7239. border-width:0px;
  7240. position:absolute;
  7241. left:1710px;
  7242. top:85px;
  7243. width:5px;
  7244. height:5px;
  7245. display:flex;
  7246. }
  7247. #u130622 .text {
  7248. position:absolute;
  7249. align-self:center;
  7250. padding:2px 2px 2px 2px;
  7251. box-sizing:border-box;
  7252. width:100%;
  7253. }
  7254. #u130622_text {
  7255. border-width:0px;
  7256. word-wrap:break-word;
  7257. text-transform:none;
  7258. visibility:hidden;
  7259. }
  7260. #u130623_img {
  7261. border-width:0px;
  7262. position:absolute;
  7263. left:0px;
  7264. top:0px;
  7265. width:7px;
  7266. height:7px;
  7267. }
  7268. #u130623 {
  7269. border-width:0px;
  7270. position:absolute;
  7271. left:1701px;
  7272. top:84px;
  7273. width:7px;
  7274. height:7px;
  7275. display:flex;
  7276. }
  7277. #u130623 .text {
  7278. position:absolute;
  7279. align-self:center;
  7280. padding:2px 2px 2px 2px;
  7281. box-sizing:border-box;
  7282. width:100%;
  7283. }
  7284. #u130623_text {
  7285. border-width:0px;
  7286. word-wrap:break-word;
  7287. text-transform:none;
  7288. visibility:hidden;
  7289. }
  7290. #u130624_img {
  7291. border-width:0px;
  7292. position:absolute;
  7293. left:0px;
  7294. top:0px;
  7295. width:19px;
  7296. height:2px;
  7297. }
  7298. #u130624 {
  7299. border-width:0px;
  7300. position:absolute;
  7301. left:1718px;
  7302. top:87px;
  7303. width:18px;
  7304. height:1px;
  7305. display:flex;
  7306. -webkit-transform:rotate(90deg);
  7307. -moz-transform:rotate(90deg);
  7308. -ms-transform:rotate(90deg);
  7309. transform:rotate(90deg);
  7310. }
  7311. #u130624 .text {
  7312. position:absolute;
  7313. align-self:center;
  7314. padding:2px 2px 2px 2px;
  7315. box-sizing:border-box;
  7316. width:100%;
  7317. }
  7318. #u130624_text {
  7319. border-width:0px;
  7320. word-wrap:break-word;
  7321. text-transform:none;
  7322. visibility:hidden;
  7323. }
  7324. #u130625_img {
  7325. border-width:0px;
  7326. position:absolute;
  7327. left:0px;
  7328. top:0px;
  7329. width:375px;
  7330. height:44px;
  7331. }
  7332. #u130625 {
  7333. border-width:0px;
  7334. position:absolute;
  7335. left:1400px;
  7336. top:24px;
  7337. width:375px;
  7338. height:44px;
  7339. display:flex;
  7340. }
  7341. #u130625 .text {
  7342. position:absolute;
  7343. align-self:center;
  7344. padding:2px 2px 2px 2px;
  7345. box-sizing:border-box;
  7346. width:100%;
  7347. }
  7348. #u130625_text {
  7349. border-width:0px;
  7350. word-wrap:break-word;
  7351. text-transform:none;
  7352. visibility:hidden;
  7353. }
  7354. #u130626_div {
  7355. border-width:0px;
  7356. position:absolute;
  7357. left:0px;
  7358. top:0px;
  7359. width:375px;
  7360. height:50px;
  7361. background:inherit;
  7362. background-color:rgba(255, 255, 255, 1);
  7363. box-sizing:border-box;
  7364. border-width:1px;
  7365. border-style:solid;
  7366. border-color:rgba(242, 242, 242, 1);
  7367. border-radius:26px;
  7368. border-top-left-radius:0px;
  7369. border-top-right-radius:0px;
  7370. -moz-box-shadow:none;
  7371. -webkit-box-shadow:none;
  7372. box-shadow:none;
  7373. }
  7374. #u130626 {
  7375. border-width:0px;
  7376. position:absolute;
  7377. left:1400px;
  7378. top:788px;
  7379. width:375px;
  7380. height:50px;
  7381. display:flex;
  7382. }
  7383. #u130626 .text {
  7384. position:absolute;
  7385. align-self:center;
  7386. padding:2px 2px 2px 2px;
  7387. box-sizing:border-box;
  7388. width:100%;
  7389. }
  7390. #u130626_text {
  7391. border-width:0px;
  7392. word-wrap:break-word;
  7393. text-transform:none;
  7394. visibility:hidden;
  7395. }
  7396. #u130627 {
  7397. border-width:0px;
  7398. position:absolute;
  7399. left:0px;
  7400. top:0px;
  7401. width:0px;
  7402. height:0px;
  7403. }
  7404. #u130628_img {
  7405. border-width:0px;
  7406. position:absolute;
  7407. left:0px;
  7408. top:0px;
  7409. width:24px;
  7410. height:24px;
  7411. }
  7412. #u130628 {
  7413. border-width:0px;
  7414. position:absolute;
  7415. left:1440px;
  7416. top:792px;
  7417. width:24px;
  7418. height:24px;
  7419. display:flex;
  7420. font-size:8px;
  7421. }
  7422. #u130628 .text {
  7423. position:absolute;
  7424. align-self:center;
  7425. padding:2px 2px 2px 2px;
  7426. box-sizing:border-box;
  7427. width:100%;
  7428. }
  7429. #u130628_text {
  7430. border-width:0px;
  7431. word-wrap:break-word;
  7432. text-transform:none;
  7433. }
  7434. #u130629_div {
  7435. border-width:0px;
  7436. position:absolute;
  7437. left:0px;
  7438. top:0px;
  7439. width:25px;
  7440. height:17px;
  7441. background:inherit;
  7442. background-color:rgba(255, 255, 255, 0);
  7443. border:none;
  7444. border-radius:0px;
  7445. -moz-box-shadow:none;
  7446. -webkit-box-shadow:none;
  7447. box-shadow:none;
  7448. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7449. font-weight:400;
  7450. font-style:normal;
  7451. font-size:12px;
  7452. }
  7453. #u130629 {
  7454. border-width:0px;
  7455. position:absolute;
  7456. left:1440px;
  7457. top:817px;
  7458. width:25px;
  7459. height:17px;
  7460. display:flex;
  7461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7462. font-weight:400;
  7463. font-style:normal;
  7464. font-size:12px;
  7465. }
  7466. #u130629 .text {
  7467. position:absolute;
  7468. align-self:flex-start;
  7469. padding:0px 0px 0px 0px;
  7470. box-sizing:border-box;
  7471. width:100%;
  7472. }
  7473. #u130629_text {
  7474. border-width:0px;
  7475. white-space:nowrap;
  7476. text-transform:none;
  7477. }
  7478. #u130630 {
  7479. border-width:0px;
  7480. position:absolute;
  7481. left:0px;
  7482. top:0px;
  7483. width:0px;
  7484. height:0px;
  7485. }
  7486. #u130631_img {
  7487. border-width:0px;
  7488. position:absolute;
  7489. left:0px;
  7490. top:0px;
  7491. width:24px;
  7492. height:24px;
  7493. }
  7494. #u130631 {
  7495. border-width:0px;
  7496. position:absolute;
  7497. left:1710px;
  7498. top:794px;
  7499. width:24px;
  7500. height:24px;
  7501. display:flex;
  7502. font-size:8px;
  7503. }
  7504. #u130631 .text {
  7505. position:absolute;
  7506. align-self:center;
  7507. padding:2px 2px 2px 2px;
  7508. box-sizing:border-box;
  7509. width:100%;
  7510. }
  7511. #u130631_text {
  7512. border-width:0px;
  7513. word-wrap:break-word;
  7514. text-transform:none;
  7515. }
  7516. #u130632_div {
  7517. border-width:0px;
  7518. position:absolute;
  7519. left:0px;
  7520. top:0px;
  7521. width:25px;
  7522. height:17px;
  7523. background:inherit;
  7524. background-color:rgba(255, 255, 255, 0);
  7525. border:none;
  7526. border-radius:0px;
  7527. -moz-box-shadow:none;
  7528. -webkit-box-shadow:none;
  7529. box-shadow:none;
  7530. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7531. font-weight:400;
  7532. font-style:normal;
  7533. font-size:12px;
  7534. }
  7535. #u130632 {
  7536. border-width:0px;
  7537. position:absolute;
  7538. left:1710px;
  7539. top:819px;
  7540. width:25px;
  7541. height:17px;
  7542. display:flex;
  7543. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7544. font-weight:400;
  7545. font-style:normal;
  7546. font-size:12px;
  7547. }
  7548. #u130632 .text {
  7549. position:absolute;
  7550. align-self:flex-start;
  7551. padding:0px 0px 0px 0px;
  7552. box-sizing:border-box;
  7553. width:100%;
  7554. }
  7555. #u130632_text {
  7556. border-width:0px;
  7557. white-space:nowrap;
  7558. text-transform:none;
  7559. }
  7560. #u130633_div {
  7561. border-width:0px;
  7562. position:absolute;
  7563. left:0px;
  7564. top:0px;
  7565. width:375px;
  7566. height:681px;
  7567. background:inherit;
  7568. background-color:rgba(242, 242, 242, 0.462745098039216);
  7569. border:none;
  7570. border-radius:0px;
  7571. -moz-box-shadow:none;
  7572. -webkit-box-shadow:none;
  7573. box-shadow:none;
  7574. }
  7575. #u130633 {
  7576. border-width:0px;
  7577. position:absolute;
  7578. left:1400px;
  7579. top:107px;
  7580. width:375px;
  7581. height:681px;
  7582. display:flex;
  7583. }
  7584. #u130633 .text {
  7585. position:absolute;
  7586. align-self:center;
  7587. padding:2px 2px 2px 2px;
  7588. box-sizing:border-box;
  7589. width:100%;
  7590. }
  7591. #u130633_text {
  7592. border-width:0px;
  7593. word-wrap:break-word;
  7594. text-transform:none;
  7595. visibility:hidden;
  7596. }
  7597. #u130634 {
  7598. border-width:0px;
  7599. position:absolute;
  7600. left:0px;
  7601. top:0px;
  7602. width:0px;
  7603. height:0px;
  7604. }
  7605. #u130635_img {
  7606. border-width:0px;
  7607. position:absolute;
  7608. left:0px;
  7609. top:0px;
  7610. width:24px;
  7611. height:24px;
  7612. }
  7613. #u130635 {
  7614. border-width:0px;
  7615. position:absolute;
  7616. left:1622px;
  7617. top:792px;
  7618. width:24px;
  7619. height:24px;
  7620. display:flex;
  7621. font-size:8px;
  7622. }
  7623. #u130635 .text {
  7624. position:absolute;
  7625. align-self:center;
  7626. padding:2px 2px 2px 2px;
  7627. box-sizing:border-box;
  7628. width:100%;
  7629. }
  7630. #u130635_text {
  7631. border-width:0px;
  7632. word-wrap:break-word;
  7633. text-transform:none;
  7634. }
  7635. #u130636_div {
  7636. border-width:0px;
  7637. position:absolute;
  7638. left:0px;
  7639. top:0px;
  7640. width:37px;
  7641. height:17px;
  7642. background:inherit;
  7643. background-color:rgba(255, 255, 255, 0);
  7644. border:none;
  7645. border-radius:0px;
  7646. -moz-box-shadow:none;
  7647. -webkit-box-shadow:none;
  7648. box-shadow:none;
  7649. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7650. font-weight:400;
  7651. font-style:normal;
  7652. font-size:12px;
  7653. }
  7654. #u130636 {
  7655. border-width:0px;
  7656. position:absolute;
  7657. left:1616px;
  7658. top:817px;
  7659. width:37px;
  7660. height:17px;
  7661. display:flex;
  7662. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7663. font-weight:400;
  7664. font-style:normal;
  7665. font-size:12px;
  7666. }
  7667. #u130636 .text {
  7668. position:absolute;
  7669. align-self:flex-start;
  7670. padding:0px 0px 0px 0px;
  7671. box-sizing:border-box;
  7672. width:100%;
  7673. }
  7674. #u130636_text {
  7675. border-width:0px;
  7676. white-space:nowrap;
  7677. text-transform:none;
  7678. }
  7679. #u130637 {
  7680. border-width:0px;
  7681. position:absolute;
  7682. left:0px;
  7683. top:0px;
  7684. width:0px;
  7685. height:0px;
  7686. }
  7687. #u130638_img {
  7688. border-width:0px;
  7689. position:absolute;
  7690. left:0px;
  7691. top:0px;
  7692. width:24px;
  7693. height:24px;
  7694. }
  7695. #u130638 {
  7696. border-width:0px;
  7697. position:absolute;
  7698. left:1528px;
  7699. top:792px;
  7700. width:24px;
  7701. height:24px;
  7702. display:flex;
  7703. font-size:8px;
  7704. }
  7705. #u130638 .text {
  7706. position:absolute;
  7707. align-self:center;
  7708. padding:2px 2px 2px 2px;
  7709. box-sizing:border-box;
  7710. width:100%;
  7711. }
  7712. #u130638_text {
  7713. border-width:0px;
  7714. word-wrap:break-word;
  7715. text-transform:none;
  7716. }
  7717. #u130639_div {
  7718. border-width:0px;
  7719. position:absolute;
  7720. left:0px;
  7721. top:0px;
  7722. width:37px;
  7723. height:17px;
  7724. background:inherit;
  7725. background-color:rgba(255, 255, 255, 0);
  7726. border:none;
  7727. border-radius:0px;
  7728. -moz-box-shadow:none;
  7729. -webkit-box-shadow:none;
  7730. box-shadow:none;
  7731. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7732. font-weight:400;
  7733. font-style:normal;
  7734. font-size:12px;
  7735. }
  7736. #u130639 {
  7737. border-width:0px;
  7738. position:absolute;
  7739. left:1522px;
  7740. top:817px;
  7741. width:37px;
  7742. height:17px;
  7743. display:flex;
  7744. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7745. font-weight:400;
  7746. font-style:normal;
  7747. font-size:12px;
  7748. }
  7749. #u130639 .text {
  7750. position:absolute;
  7751. align-self:flex-start;
  7752. padding:0px 0px 0px 0px;
  7753. box-sizing:border-box;
  7754. width:100%;
  7755. }
  7756. #u130639_text {
  7757. border-width:0px;
  7758. white-space:nowrap;
  7759. text-transform:none;
  7760. }
  7761. #u130640_div {
  7762. border-width:0px;
  7763. position:absolute;
  7764. left:0px;
  7765. top:0px;
  7766. width:375px;
  7767. height:732px;
  7768. background:inherit;
  7769. background-color:rgba(242, 242, 242, 0.996078431372549);
  7770. border:none;
  7771. border-top:0px;
  7772. border-radius:28px;
  7773. border-top-left-radius:0px;
  7774. border-top-right-radius:0px;
  7775. -moz-box-shadow:none;
  7776. -webkit-box-shadow:none;
  7777. box-shadow:none;
  7778. }
  7779. #u130640 {
  7780. border-width:0px;
  7781. position:absolute;
  7782. left:1400px;
  7783. top:107px;
  7784. width:375px;
  7785. height:732px;
  7786. display:flex;
  7787. }
  7788. #u130640 .text {
  7789. position:absolute;
  7790. align-self:center;
  7791. padding:2px 2px 2px 2px;
  7792. box-sizing:border-box;
  7793. width:100%;
  7794. }
  7795. #u130640_text {
  7796. border-width:0px;
  7797. word-wrap:break-word;
  7798. text-transform:none;
  7799. visibility:hidden;
  7800. }
  7801. #u130641_div {
  7802. border-width:0px;
  7803. position:absolute;
  7804. left:0px;
  7805. top:0px;
  7806. width:375px;
  7807. height:100px;
  7808. background:inherit;
  7809. background-color:rgba(255, 255, 255, 1);
  7810. border:none;
  7811. border-left:0px;
  7812. border-top:0px;
  7813. border-right:0px;
  7814. border-radius:0px;
  7815. border-bottom-right-radius:0px;
  7816. border-bottom-left-radius:0px;
  7817. -moz-box-shadow:none;
  7818. -webkit-box-shadow:none;
  7819. box-shadow:none;
  7820. }
  7821. #u130641 {
  7822. border-width:0px;
  7823. position:absolute;
  7824. left:1400px;
  7825. top:107px;
  7826. width:375px;
  7827. height:100px;
  7828. display:flex;
  7829. }
  7830. #u130641 .text {
  7831. position:absolute;
  7832. align-self:center;
  7833. padding:2px 2px 2px 2px;
  7834. box-sizing:border-box;
  7835. width:100%;
  7836. }
  7837. #u130641_text {
  7838. border-width:0px;
  7839. word-wrap:break-word;
  7840. text-transform:none;
  7841. visibility:hidden;
  7842. }
  7843. #u130642_div {
  7844. border-width:0px;
  7845. position:absolute;
  7846. left:0px;
  7847. top:0px;
  7848. width:375px;
  7849. height:40px;
  7850. background:inherit;
  7851. background-color:rgba(255, 255, 255, 1);
  7852. box-sizing:border-box;
  7853. border-width:1px;
  7854. border-style:solid;
  7855. border-color:rgba(215, 215, 215, 1);
  7856. border-left:0px;
  7857. border-top:0px;
  7858. border-right:0px;
  7859. border-radius:0px;
  7860. border-bottom-right-radius:0px;
  7861. border-bottom-left-radius:0px;
  7862. -moz-box-shadow:none;
  7863. -webkit-box-shadow:none;
  7864. box-shadow:none;
  7865. }
  7866. #u130642 {
  7867. border-width:0px;
  7868. position:absolute;
  7869. left:1400px;
  7870. top:67px;
  7871. width:375px;
  7872. height:40px;
  7873. display:flex;
  7874. }
  7875. #u130642 .text {
  7876. position:absolute;
  7877. align-self:center;
  7878. padding:2px 2px 2px 2px;
  7879. box-sizing:border-box;
  7880. width:100%;
  7881. }
  7882. #u130642_text {
  7883. border-width:0px;
  7884. word-wrap:break-word;
  7885. text-transform:none;
  7886. visibility:hidden;
  7887. }
  7888. #u130643_img {
  7889. border-width:0px;
  7890. position:absolute;
  7891. left:0px;
  7892. top:0px;
  7893. width:375px;
  7894. height:44px;
  7895. }
  7896. #u130643 {
  7897. border-width:0px;
  7898. position:absolute;
  7899. left:1400px;
  7900. top:24px;
  7901. width:375px;
  7902. height:44px;
  7903. display:flex;
  7904. }
  7905. #u130643 .text {
  7906. position:absolute;
  7907. align-self:center;
  7908. padding:2px 2px 2px 2px;
  7909. box-sizing:border-box;
  7910. width:100%;
  7911. }
  7912. #u130643_text {
  7913. border-width:0px;
  7914. word-wrap:break-word;
  7915. text-transform:none;
  7916. visibility:hidden;
  7917. }
  7918. #u130644 {
  7919. border-width:0px;
  7920. position:absolute;
  7921. left:0px;
  7922. top:0px;
  7923. width:0px;
  7924. height:0px;
  7925. }
  7926. #u130645_div {
  7927. border-width:0px;
  7928. position:absolute;
  7929. left:0px;
  7930. top:0px;
  7931. width:88px;
  7932. height:32px;
  7933. background:inherit;
  7934. background-color:rgba(255, 255, 255, 1);
  7935. box-sizing:border-box;
  7936. border-width:1px;
  7937. border-style:solid;
  7938. border-color:rgba(242, 242, 242, 1);
  7939. border-radius:33px;
  7940. -moz-box-shadow:none;
  7941. -webkit-box-shadow:none;
  7942. box-shadow:none;
  7943. }
  7944. #u130645 {
  7945. border-width:0px;
  7946. position:absolute;
  7947. left:1680px;
  7948. top:71px;
  7949. width:88px;
  7950. height:32px;
  7951. display:flex;
  7952. }
  7953. #u130645 .text {
  7954. position:absolute;
  7955. align-self:center;
  7956. padding:2px 2px 2px 2px;
  7957. box-sizing:border-box;
  7958. width:100%;
  7959. }
  7960. #u130645_text {
  7961. border-width:0px;
  7962. word-wrap:break-word;
  7963. text-transform:none;
  7964. visibility:hidden;
  7965. }
  7966. #u130646 {
  7967. border-width:0px;
  7968. position:absolute;
  7969. left:0px;
  7970. top:0px;
  7971. width:0px;
  7972. height:0px;
  7973. }
  7974. #u130647_img {
  7975. border-width:0px;
  7976. position:absolute;
  7977. left:0px;
  7978. top:0px;
  7979. width:18px;
  7980. height:18px;
  7981. }
  7982. #u130647 {
  7983. border-width:0px;
  7984. position:absolute;
  7985. left:1743px;
  7986. top:78px;
  7987. width:18px;
  7988. height:18px;
  7989. display:flex;
  7990. }
  7991. #u130647 .text {
  7992. position:absolute;
  7993. align-self:center;
  7994. padding:2px 2px 2px 2px;
  7995. box-sizing:border-box;
  7996. width:100%;
  7997. }
  7998. #u130647_text {
  7999. border-width:0px;
  8000. word-wrap:break-word;
  8001. text-transform:none;
  8002. visibility:hidden;
  8003. }
  8004. #u130648_img {
  8005. border-width:0px;
  8006. position:absolute;
  8007. left:0px;
  8008. top:0px;
  8009. width:6px;
  8010. height:6px;
  8011. }
  8012. #u130648 {
  8013. border-width:0px;
  8014. position:absolute;
  8015. left:1749px;
  8016. top:84px;
  8017. width:6px;
  8018. height:6px;
  8019. display:flex;
  8020. }
  8021. #u130648 .text {
  8022. position:absolute;
  8023. align-self:center;
  8024. padding:2px 2px 2px 2px;
  8025. box-sizing:border-box;
  8026. width:100%;
  8027. }
  8028. #u130648_text {
  8029. border-width:0px;
  8030. word-wrap:break-word;
  8031. text-transform:none;
  8032. visibility:hidden;
  8033. }
  8034. #u130649 {
  8035. border-width:0px;
  8036. position:absolute;
  8037. left:0px;
  8038. top:0px;
  8039. width:0px;
  8040. height:0px;
  8041. }
  8042. #u130650_img {
  8043. border-width:0px;
  8044. position:absolute;
  8045. left:0px;
  8046. top:0px;
  8047. width:5px;
  8048. height:5px;
  8049. }
  8050. #u130650 {
  8051. border-width:0px;
  8052. position:absolute;
  8053. left:1694px;
  8054. top:85px;
  8055. width:5px;
  8056. height:5px;
  8057. display:flex;
  8058. }
  8059. #u130650 .text {
  8060. position:absolute;
  8061. align-self:center;
  8062. padding:2px 2px 2px 2px;
  8063. box-sizing:border-box;
  8064. width:100%;
  8065. }
  8066. #u130650_text {
  8067. border-width:0px;
  8068. word-wrap:break-word;
  8069. text-transform:none;
  8070. visibility:hidden;
  8071. }
  8072. #u130651_img {
  8073. border-width:0px;
  8074. position:absolute;
  8075. left:0px;
  8076. top:0px;
  8077. width:5px;
  8078. height:5px;
  8079. }
  8080. #u130651 {
  8081. border-width:0px;
  8082. position:absolute;
  8083. left:1710px;
  8084. top:85px;
  8085. width:5px;
  8086. height:5px;
  8087. display:flex;
  8088. }
  8089. #u130651 .text {
  8090. position:absolute;
  8091. align-self:center;
  8092. padding:2px 2px 2px 2px;
  8093. box-sizing:border-box;
  8094. width:100%;
  8095. }
  8096. #u130651_text {
  8097. border-width:0px;
  8098. word-wrap:break-word;
  8099. text-transform:none;
  8100. visibility:hidden;
  8101. }
  8102. #u130652_img {
  8103. border-width:0px;
  8104. position:absolute;
  8105. left:0px;
  8106. top:0px;
  8107. width:7px;
  8108. height:7px;
  8109. }
  8110. #u130652 {
  8111. border-width:0px;
  8112. position:absolute;
  8113. left:1701px;
  8114. top:84px;
  8115. width:7px;
  8116. height:7px;
  8117. display:flex;
  8118. }
  8119. #u130652 .text {
  8120. position:absolute;
  8121. align-self:center;
  8122. padding:2px 2px 2px 2px;
  8123. box-sizing:border-box;
  8124. width:100%;
  8125. }
  8126. #u130652_text {
  8127. border-width:0px;
  8128. word-wrap:break-word;
  8129. text-transform:none;
  8130. visibility:hidden;
  8131. }
  8132. #u130653_img {
  8133. border-width:0px;
  8134. position:absolute;
  8135. left:0px;
  8136. top:0px;
  8137. width:19px;
  8138. height:2px;
  8139. }
  8140. #u130653 {
  8141. border-width:0px;
  8142. position:absolute;
  8143. left:1718px;
  8144. top:87px;
  8145. width:18px;
  8146. height:1px;
  8147. display:flex;
  8148. -webkit-transform:rotate(90deg);
  8149. -moz-transform:rotate(90deg);
  8150. -ms-transform:rotate(90deg);
  8151. transform:rotate(90deg);
  8152. }
  8153. #u130653 .text {
  8154. position:absolute;
  8155. align-self:center;
  8156. padding:2px 2px 2px 2px;
  8157. box-sizing:border-box;
  8158. width:100%;
  8159. }
  8160. #u130653_text {
  8161. border-width:0px;
  8162. word-wrap:break-word;
  8163. text-transform:none;
  8164. visibility:hidden;
  8165. }
  8166. #u130654_div {
  8167. border-width:0px;
  8168. position:absolute;
  8169. left:0px;
  8170. top:0px;
  8171. width:33px;
  8172. height:22px;
  8173. background:inherit;
  8174. background-color:rgba(255, 255, 255, 0);
  8175. border:none;
  8176. border-radius:0px;
  8177. -moz-box-shadow:none;
  8178. -webkit-box-shadow:none;
  8179. box-shadow:none;
  8180. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8181. font-weight:400;
  8182. font-style:normal;
  8183. font-size:16px;
  8184. color:#000000;
  8185. }
  8186. #u130654 {
  8187. border-width:0px;
  8188. position:absolute;
  8189. left:1435px;
  8190. top:76px;
  8191. width:33px;
  8192. height:22px;
  8193. display:flex;
  8194. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8195. font-weight:400;
  8196. font-style:normal;
  8197. font-size:16px;
  8198. color:#000000;
  8199. }
  8200. #u130654 .text {
  8201. position:absolute;
  8202. align-self:flex-start;
  8203. padding:0px 0px 0px 0px;
  8204. box-sizing:border-box;
  8205. width:100%;
  8206. }
  8207. #u130654_text {
  8208. border-width:0px;
  8209. white-space:nowrap;
  8210. text-transform:none;
  8211. }
  8212. #u130655_div {
  8213. border-width:0px;
  8214. position:absolute;
  8215. left:0px;
  8216. top:0px;
  8217. width:12px;
  8218. height:12px;
  8219. background:inherit;
  8220. background-color:rgba(255, 255, 255, 0);
  8221. box-sizing:border-box;
  8222. border-width:2px;
  8223. border-style:solid;
  8224. border-color:rgba(51, 51, 51, 1);
  8225. border-right:0px;
  8226. border-bottom:0px;
  8227. border-radius:0px;
  8228. border-top-right-radius:0px;
  8229. border-bottom-left-radius:0px;
  8230. -moz-box-shadow:none;
  8231. -webkit-box-shadow:none;
  8232. box-shadow:none;
  8233. }
  8234. #u130655 {
  8235. border-width:0px;
  8236. position:absolute;
  8237. left:1415px;
  8238. top:81px;
  8239. width:12px;
  8240. height:12px;
  8241. display:flex;
  8242. -webkit-transform:rotate(315deg);
  8243. -moz-transform:rotate(315deg);
  8244. -ms-transform:rotate(315deg);
  8245. transform:rotate(315deg);
  8246. }
  8247. #u130655 .text {
  8248. position:absolute;
  8249. align-self:center;
  8250. padding:2px 2px 2px 2px;
  8251. box-sizing:border-box;
  8252. width:100%;
  8253. }
  8254. #u130655_text {
  8255. border-width:0px;
  8256. word-wrap:break-word;
  8257. text-transform:none;
  8258. visibility:hidden;
  8259. }
  8260. #u130656 {
  8261. border-width:0px;
  8262. position:absolute;
  8263. left:0px;
  8264. top:0px;
  8265. width:0px;
  8266. height:0px;
  8267. }
  8268. #u130657_img {
  8269. border-width:0px;
  8270. position:absolute;
  8271. left:0px;
  8272. top:0px;
  8273. width:355px;
  8274. height:232px;
  8275. }
  8276. #u130657 {
  8277. border-width:0px;
  8278. position:absolute;
  8279. left:1410px;
  8280. top:217px;
  8281. width:355px;
  8282. height:232px;
  8283. display:flex;
  8284. }
  8285. #u130657 .text {
  8286. position:absolute;
  8287. align-self:center;
  8288. padding:2px 2px 2px 2px;
  8289. box-sizing:border-box;
  8290. width:100%;
  8291. }
  8292. #u130657_text {
  8293. border-width:0px;
  8294. word-wrap:break-word;
  8295. text-transform:none;
  8296. visibility:hidden;
  8297. }
  8298. #u130658_div {
  8299. border-width:0px;
  8300. position:absolute;
  8301. left:0px;
  8302. top:0px;
  8303. width:325px;
  8304. height:210px;
  8305. background:inherit;
  8306. background-color:rgba(255, 255, 255, 0);
  8307. border:none;
  8308. border-left:0px;
  8309. border-top:0px;
  8310. border-right:0px;
  8311. border-radius:0px;
  8312. border-bottom-right-radius:0px;
  8313. border-bottom-left-radius:0px;
  8314. -moz-box-shadow:none;
  8315. -webkit-box-shadow:none;
  8316. box-shadow:none;
  8317. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8318. font-weight:400;
  8319. font-style:normal;
  8320. font-size:12px;
  8321. line-height:30px;
  8322. }
  8323. #u130658 {
  8324. border-width:0px;
  8325. position:absolute;
  8326. left:1426px;
  8327. top:228px;
  8328. width:325px;
  8329. height:210px;
  8330. display:flex;
  8331. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8332. font-weight:400;
  8333. font-style:normal;
  8334. font-size:12px;
  8335. line-height:30px;
  8336. }
  8337. #u130658 .text {
  8338. position:absolute;
  8339. align-self:flex-start;
  8340. padding:0px 0px 0px 0px;
  8341. box-sizing:border-box;
  8342. width:100%;
  8343. }
  8344. #u130658_text {
  8345. border-width:0px;
  8346. word-wrap:break-word;
  8347. text-transform:none;
  8348. }
  8349. #u130659_div {
  8350. border-width:0px;
  8351. position:absolute;
  8352. left:0px;
  8353. top:0px;
  8354. width:132px;
  8355. height:30px;
  8356. background:inherit;
  8357. background-color:rgba(255, 255, 255, 0);
  8358. border:none;
  8359. border-left:0px;
  8360. border-top:0px;
  8361. border-right:0px;
  8362. border-radius:0px;
  8363. border-bottom-right-radius:0px;
  8364. border-bottom-left-radius:0px;
  8365. -moz-box-shadow:none;
  8366. -webkit-box-shadow:none;
  8367. box-shadow:none;
  8368. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8369. font-weight:500;
  8370. font-style:normal;
  8371. font-size:14px;
  8372. line-height:30px;
  8373. }
  8374. #u130659 {
  8375. border-width:0px;
  8376. position:absolute;
  8377. left:1427px;
  8378. top:117px;
  8379. width:132px;
  8380. height:30px;
  8381. display:flex;
  8382. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8383. font-weight:500;
  8384. font-style:normal;
  8385. font-size:14px;
  8386. line-height:30px;
  8387. }
  8388. #u130659 .text {
  8389. position:absolute;
  8390. align-self:flex-start;
  8391. padding:0px 0px 0px 0px;
  8392. box-sizing:border-box;
  8393. width:100%;
  8394. }
  8395. #u130659_text {
  8396. border-width:0px;
  8397. white-space:nowrap;
  8398. text-transform:none;
  8399. }
  8400. #u130660_div {
  8401. border-width:0px;
  8402. position:absolute;
  8403. left:0px;
  8404. top:0px;
  8405. width:325px;
  8406. height:50px;
  8407. background:inherit;
  8408. background-color:rgba(255, 255, 255, 0);
  8409. border:none;
  8410. border-left:0px;
  8411. border-top:0px;
  8412. border-right:0px;
  8413. border-radius:0px;
  8414. border-bottom-right-radius:0px;
  8415. border-bottom-left-radius:0px;
  8416. -moz-box-shadow:none;
  8417. -webkit-box-shadow:none;
  8418. box-shadow:none;
  8419. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8420. font-weight:400;
  8421. font-style:normal;
  8422. font-size:12px;
  8423. line-height:25px;
  8424. }
  8425. #u130660 {
  8426. border-width:0px;
  8427. position:absolute;
  8428. left:1427px;
  8429. top:147px;
  8430. width:325px;
  8431. height:50px;
  8432. display:flex;
  8433. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8434. font-weight:400;
  8435. font-style:normal;
  8436. font-size:12px;
  8437. line-height:25px;
  8438. }
  8439. #u130660 .text {
  8440. position:absolute;
  8441. align-self:flex-start;
  8442. padding:0px 0px 0px 0px;
  8443. box-sizing:border-box;
  8444. width:100%;
  8445. }
  8446. #u130660_text {
  8447. border-width:0px;
  8448. word-wrap:break-word;
  8449. text-transform:none;
  8450. }
  8451. #u130661 {
  8452. border-width:0px;
  8453. position:absolute;
  8454. left:0px;
  8455. top:0px;
  8456. width:0px;
  8457. height:0px;
  8458. }
  8459. #u130662_div {
  8460. border-width:0px;
  8461. position:absolute;
  8462. left:0px;
  8463. top:0px;
  8464. width:355px;
  8465. height:192px;
  8466. background:inherit;
  8467. background-color:rgba(255, 255, 255, 1);
  8468. border:none;
  8469. border-radius:0px;
  8470. -moz-box-shadow:none;
  8471. -webkit-box-shadow:none;
  8472. box-shadow:none;
  8473. }
  8474. #u130662 {
  8475. border-width:0px;
  8476. position:absolute;
  8477. left:1410px;
  8478. top:509px;
  8479. width:355px;
  8480. height:192px;
  8481. display:flex;
  8482. }
  8483. #u130662 .text {
  8484. position:absolute;
  8485. align-self:center;
  8486. padding:2px 2px 2px 2px;
  8487. box-sizing:border-box;
  8488. width:100%;
  8489. }
  8490. #u130662_text {
  8491. border-width:0px;
  8492. word-wrap:break-word;
  8493. text-transform:none;
  8494. visibility:hidden;
  8495. }
  8496. #u130663_div {
  8497. border-width:0px;
  8498. position:absolute;
  8499. left:0px;
  8500. top:0px;
  8501. width:103px;
  8502. height:24px;
  8503. background:inherit;
  8504. background-color:rgba(255, 255, 255, 0);
  8505. border:none;
  8506. border-top:0px;
  8507. border-right:0px;
  8508. border-bottom:0px;
  8509. border-radius:0px;
  8510. border-top-left-radius:0px;
  8511. border-bottom-left-radius:0px;
  8512. -moz-box-shadow:none;
  8513. -webkit-box-shadow:none;
  8514. box-shadow:none;
  8515. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8516. font-weight:400;
  8517. font-style:normal;
  8518. font-size:10px;
  8519. color:#AAAAAA;
  8520. }
  8521. #u130663 {
  8522. border-width:0px;
  8523. position:absolute;
  8524. left:1645px;
  8525. top:559px;
  8526. width:103px;
  8527. height:24px;
  8528. display:flex;
  8529. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8530. font-weight:400;
  8531. font-style:normal;
  8532. font-size:10px;
  8533. color:#AAAAAA;
  8534. }
  8535. #u130663 .text {
  8536. position:absolute;
  8537. align-self:flex-start;
  8538. padding:5px 0px 5px 0px;
  8539. box-sizing:border-box;
  8540. width:100%;
  8541. }
  8542. #u130663_text {
  8543. border-width:0px;
  8544. white-space:nowrap;
  8545. text-transform:none;
  8546. }
  8547. #u130664 {
  8548. border-width:0px;
  8549. position:absolute;
  8550. left:0px;
  8551. top:0px;
  8552. width:0px;
  8553. height:0px;
  8554. }
  8555. #u130665_div {
  8556. border-width:0px;
  8557. position:absolute;
  8558. left:0px;
  8559. top:0px;
  8560. width:43px;
  8561. height:30px;
  8562. background:inherit;
  8563. background-color:rgba(255, 255, 255, 0);
  8564. border:none;
  8565. border-top:0px;
  8566. border-right:0px;
  8567. border-bottom:0px;
  8568. border-radius:0px;
  8569. border-top-left-radius:0px;
  8570. border-bottom-left-radius:0px;
  8571. -moz-box-shadow:none;
  8572. -webkit-box-shadow:none;
  8573. box-shadow:none;
  8574. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8575. font-weight:400;
  8576. font-style:normal;
  8577. font-size:14px;
  8578. }
  8579. #u130665 {
  8580. border-width:0px;
  8581. position:absolute;
  8582. left:1478px;
  8583. top:561px;
  8584. width:43px;
  8585. height:30px;
  8586. display:flex;
  8587. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8588. font-weight:400;
  8589. font-style:normal;
  8590. font-size:14px;
  8591. }
  8592. #u130665 .text {
  8593. position:absolute;
  8594. align-self:flex-start;
  8595. padding:0px 0px 0px 0px;
  8596. box-sizing:border-box;
  8597. width:100%;
  8598. }
  8599. #u130665_text {
  8600. border-width:0px;
  8601. white-space:nowrap;
  8602. text-transform:none;
  8603. }
  8604. #u130666_div {
  8605. border-width:0px;
  8606. position:absolute;
  8607. left:0px;
  8608. top:0px;
  8609. width:12px;
  8610. height:16px;
  8611. background:inherit;
  8612. background-color:rgba(255, 255, 255, 0);
  8613. border:none;
  8614. border-top:0px;
  8615. border-right:0px;
  8616. border-bottom:0px;
  8617. border-radius:0px;
  8618. border-top-left-radius:0px;
  8619. border-bottom-left-radius:0px;
  8620. -moz-box-shadow:none;
  8621. -webkit-box-shadow:none;
  8622. box-shadow:none;
  8623. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8624. font-weight:400;
  8625. font-style:normal;
  8626. font-size:11px;
  8627. color:#AAAAAA;
  8628. }
  8629. #u130666 {
  8630. border-width:0px;
  8631. position:absolute;
  8632. left:1478px;
  8633. top:589px;
  8634. width:12px;
  8635. height:16px;
  8636. display:flex;
  8637. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8638. font-weight:400;
  8639. font-style:normal;
  8640. font-size:11px;
  8641. color:#AAAAAA;
  8642. }
  8643. #u130666 .text {
  8644. position:absolute;
  8645. align-self:flex-start;
  8646. padding:0px 0px 0px 0px;
  8647. box-sizing:border-box;
  8648. width:100%;
  8649. }
  8650. #u130666_text {
  8651. border-width:0px;
  8652. white-space:nowrap;
  8653. text-transform:none;
  8654. }
  8655. #u130667_div {
  8656. border-width:0px;
  8657. position:absolute;
  8658. left:0px;
  8659. top:0px;
  8660. width:43px;
  8661. height:20px;
  8662. background:inherit;
  8663. background-color:rgba(255, 255, 255, 0);
  8664. border:none;
  8665. border-top:0px;
  8666. border-right:0px;
  8667. border-bottom:0px;
  8668. border-radius:0px;
  8669. border-top-left-radius:0px;
  8670. border-bottom-left-radius:0px;
  8671. -moz-box-shadow:none;
  8672. -webkit-box-shadow:none;
  8673. box-shadow:none;
  8674. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8675. font-weight:400;
  8676. font-style:normal;
  8677. font-size:14px;
  8678. }
  8679. #u130667 {
  8680. border-width:0px;
  8681. position:absolute;
  8682. left:1478px;
  8683. top:631px;
  8684. width:43px;
  8685. height:20px;
  8686. display:flex;
  8687. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8688. font-weight:400;
  8689. font-style:normal;
  8690. font-size:14px;
  8691. }
  8692. #u130667 .text {
  8693. position:absolute;
  8694. align-self:flex-start;
  8695. padding:0px 0px 0px 0px;
  8696. box-sizing:border-box;
  8697. width:100%;
  8698. }
  8699. #u130667_text {
  8700. border-width:0px;
  8701. white-space:nowrap;
  8702. text-transform:none;
  8703. }
  8704. #u130668_div {
  8705. border-width:0px;
  8706. position:absolute;
  8707. left:0px;
  8708. top:0px;
  8709. width:91px;
  8710. height:16px;
  8711. background:inherit;
  8712. background-color:rgba(255, 255, 255, 0);
  8713. border:none;
  8714. border-top:0px;
  8715. border-right:0px;
  8716. border-bottom:0px;
  8717. border-radius:0px;
  8718. border-top-left-radius:0px;
  8719. border-bottom-left-radius:0px;
  8720. -moz-box-shadow:none;
  8721. -webkit-box-shadow:none;
  8722. box-shadow:none;
  8723. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8724. font-weight:400;
  8725. font-style:normal;
  8726. font-size:11px;
  8727. color:#AAAAAA;
  8728. }
  8729. #u130668 {
  8730. border-width:0px;
  8731. position:absolute;
  8732. left:1478px;
  8733. top:659px;
  8734. width:91px;
  8735. height:16px;
  8736. display:flex;
  8737. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8738. font-weight:400;
  8739. font-style:normal;
  8740. font-size:11px;
  8741. color:#AAAAAA;
  8742. }
  8743. #u130668 .text {
  8744. position:absolute;
  8745. align-self:flex-start;
  8746. padding:0px 0px 0px 0px;
  8747. box-sizing:border-box;
  8748. width:100%;
  8749. }
  8750. #u130668_text {
  8751. border-width:0px;
  8752. white-space:nowrap;
  8753. text-transform:none;
  8754. }
  8755. #u130669_div {
  8756. border-width:0px;
  8757. position:absolute;
  8758. left:0px;
  8759. top:0px;
  8760. width:29px;
  8761. height:30px;
  8762. background:inherit;
  8763. background-color:rgba(255, 255, 255, 0);
  8764. border:none;
  8765. border-top:0px;
  8766. border-right:0px;
  8767. border-bottom:0px;
  8768. border-radius:0px;
  8769. border-top-left-radius:0px;
  8770. border-bottom-left-radius:0px;
  8771. -moz-box-shadow:none;
  8772. -webkit-box-shadow:none;
  8773. box-shadow:none;
  8774. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8775. font-weight:400;
  8776. font-style:normal;
  8777. font-size:14px;
  8778. }
  8779. #u130669 {
  8780. border-width:0px;
  8781. position:absolute;
  8782. left:1436px;
  8783. top:517px;
  8784. width:29px;
  8785. height:30px;
  8786. display:flex;
  8787. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8788. font-weight:400;
  8789. font-style:normal;
  8790. font-size:14px;
  8791. }
  8792. #u130669 .text {
  8793. position:absolute;
  8794. align-self:flex-start;
  8795. padding:5px 0px 5px 0px;
  8796. box-sizing:border-box;
  8797. width:100%;
  8798. }
  8799. #u130669_text {
  8800. border-width:0px;
  8801. white-space:nowrap;
  8802. text-transform:none;
  8803. }
  8804. #u130670 {
  8805. border-width:0px;
  8806. position:absolute;
  8807. left:0px;
  8808. top:0px;
  8809. width:0px;
  8810. height:0px;
  8811. }
  8812. #u130671_img {
  8813. border-width:0px;
  8814. position:absolute;
  8815. left:0px;
  8816. top:0px;
  8817. width:2px;
  8818. height:32px;
  8819. }
  8820. #u130671 {
  8821. border-width:0px;
  8822. position:absolute;
  8823. left:1455px;
  8824. top:595px;
  8825. width:1px;
  8826. height:31px;
  8827. display:flex;
  8828. }
  8829. #u130671 .text {
  8830. position:absolute;
  8831. align-self:center;
  8832. padding:2px 2px 2px 2px;
  8833. box-sizing:border-box;
  8834. width:100%;
  8835. }
  8836. #u130671_text {
  8837. border-width:0px;
  8838. word-wrap:break-word;
  8839. text-transform:none;
  8840. visibility:hidden;
  8841. }
  8842. #u130672 {
  8843. border-width:0px;
  8844. position:absolute;
  8845. left:0px;
  8846. top:0px;
  8847. width:0px;
  8848. height:0px;
  8849. }
  8850. #u130673_div {
  8851. border-width:0px;
  8852. position:absolute;
  8853. left:0px;
  8854. top:0px;
  8855. width:30px;
  8856. height:30px;
  8857. background:inherit;
  8858. background-color:rgba(24, 144, 255, 1);
  8859. border:none;
  8860. border-radius:4px;
  8861. -moz-box-shadow:none;
  8862. -webkit-box-shadow:none;
  8863. box-shadow:none;
  8864. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8865. font-weight:400;
  8866. font-style:normal;
  8867. font-size:10px;
  8868. color:#FFFFFF;
  8869. }
  8870. #u130673 {
  8871. border-width:0px;
  8872. position:absolute;
  8873. left:1440px;
  8874. top:631px;
  8875. width:30px;
  8876. height:30px;
  8877. display:flex;
  8878. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8879. font-weight:400;
  8880. font-style:normal;
  8881. font-size:10px;
  8882. color:#FFFFFF;
  8883. }
  8884. #u130673 .text {
  8885. position:absolute;
  8886. align-self:center;
  8887. padding:2px 2px 2px 2px;
  8888. box-sizing:border-box;
  8889. width:100%;
  8890. }
  8891. #u130673_text {
  8892. border-width:0px;
  8893. word-wrap:break-word;
  8894. text-transform:none;
  8895. }
  8896. #u130674 {
  8897. border-width:0px;
  8898. position:absolute;
  8899. left:0px;
  8900. top:0px;
  8901. width:0px;
  8902. height:0px;
  8903. }
  8904. #u130675_img {
  8905. border-width:0px;
  8906. position:absolute;
  8907. left:0px;
  8908. top:0px;
  8909. width:9px;
  8910. height:9px;
  8911. }
  8912. #u130675 {
  8913. border-width:0px;
  8914. position:absolute;
  8915. left:1462px;
  8916. top:653px;
  8917. width:9px;
  8918. height:9px;
  8919. display:flex;
  8920. }
  8921. #u130675 .text {
  8922. position:absolute;
  8923. align-self:center;
  8924. padding:2px 2px 2px 2px;
  8925. box-sizing:border-box;
  8926. width:100%;
  8927. }
  8928. #u130675_text {
  8929. border-width:0px;
  8930. word-wrap:break-word;
  8931. text-transform:none;
  8932. visibility:hidden;
  8933. }
  8934. #u130676_img {
  8935. border-width:0px;
  8936. position:absolute;
  8937. left:0px;
  8938. top:0px;
  8939. width:5px;
  8940. height:1px;
  8941. }
  8942. #u130676 {
  8943. border-width:0px;
  8944. position:absolute;
  8945. left:1464px;
  8946. top:657px;
  8947. width:5px;
  8948. height:1px;
  8949. display:flex;
  8950. }
  8951. #u130676 .text {
  8952. position:absolute;
  8953. align-self:center;
  8954. padding:2px 2px 2px 2px;
  8955. box-sizing:border-box;
  8956. width:100%;
  8957. }
  8958. #u130676_text {
  8959. border-width:0px;
  8960. word-wrap:break-word;
  8961. text-transform:none;
  8962. visibility:hidden;
  8963. }
  8964. #u130677 {
  8965. border-width:0px;
  8966. position:absolute;
  8967. left:0px;
  8968. top:0px;
  8969. width:0px;
  8970. height:0px;
  8971. }
  8972. #u130678_div {
  8973. border-width:0px;
  8974. position:absolute;
  8975. left:0px;
  8976. top:0px;
  8977. width:30px;
  8978. height:30px;
  8979. background:inherit;
  8980. background-color:rgba(24, 144, 255, 1);
  8981. border:none;
  8982. border-radius:4px;
  8983. -moz-box-shadow:none;
  8984. -webkit-box-shadow:none;
  8985. box-shadow:none;
  8986. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8987. font-weight:400;
  8988. font-style:normal;
  8989. font-size:12px;
  8990. color:#FFFFFF;
  8991. }
  8992. #u130678 {
  8993. border-width:0px;
  8994. position:absolute;
  8995. left:1440px;
  8996. top:561px;
  8997. width:30px;
  8998. height:30px;
  8999. display:flex;
  9000. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9001. font-weight:400;
  9002. font-style:normal;
  9003. font-size:12px;
  9004. color:#FFFFFF;
  9005. }
  9006. #u130678 .text {
  9007. position:absolute;
  9008. align-self:center;
  9009. padding:2px 2px 2px 2px;
  9010. box-sizing:border-box;
  9011. width:100%;
  9012. }
  9013. #u130678_text {
  9014. border-width:0px;
  9015. word-wrap:break-word;
  9016. text-transform:none;
  9017. }
  9018. #u130679 {
  9019. border-width:0px;
  9020. position:absolute;
  9021. left:0px;
  9022. top:0px;
  9023. width:0px;
  9024. height:0px;
  9025. }
  9026. #u130680_img {
  9027. border-width:0px;
  9028. position:absolute;
  9029. left:0px;
  9030. top:0px;
  9031. width:9px;
  9032. height:9px;
  9033. }
  9034. #u130680 {
  9035. border-width:0px;
  9036. position:absolute;
  9037. left:1462px;
  9038. top:583px;
  9039. width:9px;
  9040. height:9px;
  9041. display:flex;
  9042. }
  9043. #u130680 .text {
  9044. position:absolute;
  9045. align-self:center;
  9046. padding:2px 2px 2px 2px;
  9047. box-sizing:border-box;
  9048. width:100%;
  9049. }
  9050. #u130680_text {
  9051. border-width:0px;
  9052. word-wrap:break-word;
  9053. text-transform:none;
  9054. visibility:hidden;
  9055. }
  9056. #u130681_img {
  9057. border-width:0px;
  9058. position:absolute;
  9059. left:0px;
  9060. top:0px;
  9061. width:5px;
  9062. height:4px;
  9063. }
  9064. #u130681 {
  9065. border-width:0px;
  9066. position:absolute;
  9067. left:1464px;
  9068. top:586px;
  9069. width:5px;
  9070. height:4px;
  9071. display:flex;
  9072. }
  9073. #u130681 .text {
  9074. position:absolute;
  9075. align-self:center;
  9076. padding:2px 2px 2px 2px;
  9077. box-sizing:border-box;
  9078. width:100%;
  9079. }
  9080. #u130681_text {
  9081. border-width:0px;
  9082. word-wrap:break-word;
  9083. text-transform:none;
  9084. visibility:hidden;
  9085. }
  9086. #u130682 {
  9087. border-width:0px;
  9088. position:absolute;
  9089. left:0px;
  9090. top:0px;
  9091. width:0px;
  9092. height:0px;
  9093. }
  9094. #u130683_div {
  9095. border-width:0px;
  9096. position:absolute;
  9097. left:0px;
  9098. top:0px;
  9099. width:375px;
  9100. height:60px;
  9101. background:inherit;
  9102. background-color:rgba(255, 255, 255, 1);
  9103. border:none;
  9104. border-top:0px;
  9105. border-radius:28px;
  9106. border-top-left-radius:0px;
  9107. border-top-right-radius:0px;
  9108. -moz-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  9109. -webkit-box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  9110. box-shadow:0px 0px 5px rgba(0, 0, 0, 0.349019607843137);
  9111. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9112. font-weight:400;
  9113. font-style:normal;
  9114. font-size:14px;
  9115. color:#FFFFFF;
  9116. }
  9117. #u130683 {
  9118. border-width:0px;
  9119. position:absolute;
  9120. left:1400px;
  9121. top:783px;
  9122. width:375px;
  9123. height:60px;
  9124. display:flex;
  9125. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9126. font-weight:400;
  9127. font-style:normal;
  9128. font-size:14px;
  9129. color:#FFFFFF;
  9130. }
  9131. #u130683 .text {
  9132. position:absolute;
  9133. align-self:center;
  9134. padding:2px 2px 2px 2px;
  9135. box-sizing:border-box;
  9136. width:100%;
  9137. }
  9138. #u130683_text {
  9139. border-width:0px;
  9140. word-wrap:break-word;
  9141. text-transform:none;
  9142. visibility:hidden;
  9143. }
  9144. #u130684_div {
  9145. border-width:0px;
  9146. position:absolute;
  9147. left:0px;
  9148. top:0px;
  9149. width:80px;
  9150. height:40px;
  9151. background:inherit;
  9152. background-color:rgba(24, 144, 255, 1);
  9153. border:none;
  9154. border-radius:27px;
  9155. -moz-box-shadow:none;
  9156. -webkit-box-shadow:none;
  9157. box-shadow:none;
  9158. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9159. font-weight:400;
  9160. font-style:normal;
  9161. color:#FFFFFF;
  9162. text-align:center;
  9163. }
  9164. #u130684 {
  9165. border-width:0px;
  9166. position:absolute;
  9167. left:1680px;
  9168. top:793px;
  9169. width:80px;
  9170. height:40px;
  9171. display:flex;
  9172. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9173. font-weight:400;
  9174. font-style:normal;
  9175. color:#FFFFFF;
  9176. text-align:center;
  9177. }
  9178. #u130684 .text {
  9179. position:absolute;
  9180. align-self:center;
  9181. padding:2px 3px 2px 3px;
  9182. box-sizing:border-box;
  9183. width:100%;
  9184. }
  9185. #u130684_text {
  9186. border-width:0px;
  9187. word-wrap:break-word;
  9188. text-transform:none;
  9189. }
  9190. #u130685_div {
  9191. border-width:0px;
  9192. position:absolute;
  9193. left:0px;
  9194. top:0px;
  9195. width:80px;
  9196. height:40px;
  9197. background:inherit;
  9198. background-color:rgba(215, 215, 215, 1);
  9199. border:none;
  9200. border-radius:27px;
  9201. -moz-box-shadow:none;
  9202. -webkit-box-shadow:none;
  9203. box-shadow:none;
  9204. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9205. font-weight:400;
  9206. font-style:normal;
  9207. text-align:center;
  9208. }
  9209. #u130685 {
  9210. border-width:0px;
  9211. position:absolute;
  9212. left:1590px;
  9213. top:793px;
  9214. width:80px;
  9215. height:40px;
  9216. display:flex;
  9217. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9218. font-weight:400;
  9219. font-style:normal;
  9220. text-align:center;
  9221. }
  9222. #u130685 .text {
  9223. position:absolute;
  9224. align-self:center;
  9225. padding:2px 3px 2px 3px;
  9226. box-sizing:border-box;
  9227. width:100%;
  9228. }
  9229. #u130685_text {
  9230. border-width:0px;
  9231. word-wrap:break-word;
  9232. text-transform:none;
  9233. }
  9234. #u130686_div {
  9235. border-width:0px;
  9236. position:absolute;
  9237. left:0px;
  9238. top:0px;
  9239. width:31px;
  9240. height:21px;
  9241. background:inherit;
  9242. background-color:rgba(215, 215, 215, 0);
  9243. border:none;
  9244. border-radius:27px;
  9245. -moz-box-shadow:none;
  9246. -webkit-box-shadow:none;
  9247. box-shadow:none;
  9248. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9249. font-weight:400;
  9250. font-style:normal;
  9251. font-size:12px;
  9252. color:#7F7F7F;
  9253. text-align:center;
  9254. }
  9255. #u130686 {
  9256. border-width:0px;
  9257. position:absolute;
  9258. left:1549px;
  9259. top:803px;
  9260. width:31px;
  9261. height:21px;
  9262. display:flex;
  9263. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9264. font-weight:400;
  9265. font-style:normal;
  9266. font-size:12px;
  9267. color:#7F7F7F;
  9268. text-align:center;
  9269. }
  9270. #u130686 .text {
  9271. position:absolute;
  9272. align-self:center;
  9273. padding:2px 3px 2px 3px;
  9274. box-sizing:border-box;
  9275. width:100%;
  9276. }
  9277. #u130686_text {
  9278. border-width:0px;
  9279. white-space:nowrap;
  9280. text-transform:none;
  9281. }
  9282. #u130687_div {
  9283. border-width:0px;
  9284. position:absolute;
  9285. left:0px;
  9286. top:0px;
  9287. width:97px;
  9288. height:25px;
  9289. background:inherit;
  9290. background-color:rgba(255, 255, 255, 0);
  9291. border:none;
  9292. border-radius:0px;
  9293. -moz-box-shadow:none;
  9294. -webkit-box-shadow:none;
  9295. box-shadow:none;
  9296. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9297. font-weight:400;
  9298. font-style:normal;
  9299. font-size:12px;
  9300. color:#B8741A;
  9301. line-height:25px;
  9302. }
  9303. #u130687 {
  9304. border-width:0px;
  9305. position:absolute;
  9306. left:1655px;
  9307. top:172px;
  9308. width:97px;
  9309. height:25px;
  9310. display:flex;
  9311. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9312. font-weight:400;
  9313. font-style:normal;
  9314. font-size:12px;
  9315. color:#B8741A;
  9316. line-height:25px;
  9317. }
  9318. #u130687 .text {
  9319. position:absolute;
  9320. align-self:flex-start;
  9321. padding:0px 0px 0px 0px;
  9322. box-sizing:border-box;
  9323. width:100%;
  9324. }
  9325. #u130687_text {
  9326. border-width:0px;
  9327. white-space:nowrap;
  9328. text-transform:none;
  9329. }
  9330. #u130688 {
  9331. border-width:0px;
  9332. position:absolute;
  9333. left:0px;
  9334. top:0px;
  9335. width:0px;
  9336. height:0px;
  9337. }
  9338. #u130689_img {
  9339. border-width:0px;
  9340. position:absolute;
  9341. left:0px;
  9342. top:0px;
  9343. width:355px;
  9344. height:40px;
  9345. }
  9346. #u130689 {
  9347. border-width:0px;
  9348. position:absolute;
  9349. left:945px;
  9350. top:459px;
  9351. width:355px;
  9352. height:40px;
  9353. display:flex;
  9354. }
  9355. #u130689 .text {
  9356. position:absolute;
  9357. align-self:center;
  9358. padding:2px 2px 2px 2px;
  9359. box-sizing:border-box;
  9360. width:100%;
  9361. }
  9362. #u130689_text {
  9363. border-width:0px;
  9364. word-wrap:break-word;
  9365. text-transform:none;
  9366. visibility:hidden;
  9367. }
  9368. #u130690_div {
  9369. border-width:0px;
  9370. position:absolute;
  9371. left:0px;
  9372. top:0px;
  9373. width:71px;
  9374. height:20px;
  9375. background:inherit;
  9376. background-color:rgba(255, 255, 255, 0);
  9377. border:none;
  9378. border-left:0px;
  9379. border-top:0px;
  9380. border-right:0px;
  9381. border-radius:0px;
  9382. border-bottom-right-radius:0px;
  9383. border-bottom-left-radius:0px;
  9384. -moz-box-shadow:none;
  9385. -webkit-box-shadow:none;
  9386. box-shadow:none;
  9387. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9388. font-weight:400;
  9389. font-style:normal;
  9390. font-size:14px;
  9391. }
  9392. #u130690 {
  9393. border-width:0px;
  9394. position:absolute;
  9395. left:961px;
  9396. top:469px;
  9397. width:71px;
  9398. height:20px;
  9399. display:flex;
  9400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9401. font-weight:400;
  9402. font-style:normal;
  9403. font-size:14px;
  9404. }
  9405. #u130690 .text {
  9406. position:absolute;
  9407. align-self:flex-start;
  9408. padding:0px 0px 0px 0px;
  9409. box-sizing:border-box;
  9410. width:100%;
  9411. }
  9412. #u130690_text {
  9413. border-width:0px;
  9414. white-space:nowrap;
  9415. text-transform:none;
  9416. }
  9417. #u130691 {
  9418. border-width:0px;
  9419. position:absolute;
  9420. left:0px;
  9421. top:0px;
  9422. width:0px;
  9423. height:0px;
  9424. }
  9425. #u130692 {
  9426. border-width:0px;
  9427. position:absolute;
  9428. left:0px;
  9429. top:0px;
  9430. width:0px;
  9431. height:0px;
  9432. }
  9433. #u130693_div {
  9434. border-width:0px;
  9435. position:absolute;
  9436. left:0px;
  9437. top:0px;
  9438. width:23px;
  9439. height:20px;
  9440. background:inherit;
  9441. background-color:rgba(255, 255, 255, 0);
  9442. border:none;
  9443. border-left:0px;
  9444. border-top:0px;
  9445. border-right:0px;
  9446. border-radius:0px;
  9447. border-bottom-right-radius:0px;
  9448. border-bottom-left-radius:0px;
  9449. -moz-box-shadow:none;
  9450. -webkit-box-shadow:none;
  9451. box-shadow:none;
  9452. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9453. font-weight:400;
  9454. font-style:normal;
  9455. font-size:14px;
  9456. color:#00BFBF;
  9457. }
  9458. #u130693 {
  9459. border-width:0px;
  9460. position:absolute;
  9461. left:1251px;
  9462. top:469px;
  9463. width:23px;
  9464. height:20px;
  9465. display:flex;
  9466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9467. font-weight:400;
  9468. font-style:normal;
  9469. font-size:14px;
  9470. color:#00BFBF;
  9471. }
  9472. #u130693 .text {
  9473. position:absolute;
  9474. align-self:center;
  9475. padding:0px 0px 0px 0px;
  9476. box-sizing:border-box;
  9477. width:100%;
  9478. }
  9479. #u130693_text {
  9480. border-width:0px;
  9481. white-space:nowrap;
  9482. text-transform:none;
  9483. }
  9484. #u130694_div {
  9485. border-width:0px;
  9486. position:absolute;
  9487. left:0px;
  9488. top:0px;
  9489. width:6px;
  9490. height:6px;
  9491. background:inherit;
  9492. background-color:rgba(255, 255, 255, 0);
  9493. box-sizing:border-box;
  9494. border-width:1px;
  9495. border-style:solid;
  9496. border-color:rgba(0, 191, 191, 1);
  9497. border-right:0px;
  9498. border-bottom:0px;
  9499. border-radius:0px;
  9500. border-top-right-radius:0px;
  9501. border-bottom-left-radius:0px;
  9502. -moz-box-shadow:none;
  9503. -webkit-box-shadow:none;
  9504. box-shadow:none;
  9505. }
  9506. #u130694 {
  9507. border-width:0px;
  9508. position:absolute;
  9509. left:1285px;
  9510. top:478px;
  9511. width:6px;
  9512. height:6px;
  9513. display:flex;
  9514. -webkit-transform:rotate(45deg);
  9515. -moz-transform:rotate(45deg);
  9516. -ms-transform:rotate(45deg);
  9517. transform:rotate(45deg);
  9518. }
  9519. #u130694 .text {
  9520. position:absolute;
  9521. align-self:center;
  9522. padding:2px 2px 2px 2px;
  9523. box-sizing:border-box;
  9524. width:100%;
  9525. }
  9526. #u130694_text {
  9527. border-width:0px;
  9528. word-wrap:break-word;
  9529. text-transform:none;
  9530. visibility:hidden;
  9531. }
  9532. #u130695 {
  9533. border-width:0px;
  9534. position:absolute;
  9535. left:0px;
  9536. top:0px;
  9537. width:0px;
  9538. height:0px;
  9539. }
  9540. #u130696_img {
  9541. border-width:0px;
  9542. position:absolute;
  9543. left:0px;
  9544. top:0px;
  9545. width:355px;
  9546. height:40px;
  9547. }
  9548. #u130696 {
  9549. border-width:0px;
  9550. position:absolute;
  9551. left:1410px;
  9552. top:459px;
  9553. width:355px;
  9554. height:40px;
  9555. display:flex;
  9556. }
  9557. #u130696 .text {
  9558. position:absolute;
  9559. align-self:center;
  9560. padding:2px 2px 2px 2px;
  9561. box-sizing:border-box;
  9562. width:100%;
  9563. }
  9564. #u130696_text {
  9565. border-width:0px;
  9566. word-wrap:break-word;
  9567. text-transform:none;
  9568. visibility:hidden;
  9569. }
  9570. #u130697_div {
  9571. border-width:0px;
  9572. position:absolute;
  9573. left:0px;
  9574. top:0px;
  9575. width:71px;
  9576. height:20px;
  9577. background:inherit;
  9578. background-color:rgba(255, 255, 255, 0);
  9579. border:none;
  9580. border-left:0px;
  9581. border-top:0px;
  9582. border-right:0px;
  9583. border-radius:0px;
  9584. border-bottom-right-radius:0px;
  9585. border-bottom-left-radius:0px;
  9586. -moz-box-shadow:none;
  9587. -webkit-box-shadow:none;
  9588. box-shadow:none;
  9589. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9590. font-weight:400;
  9591. font-style:normal;
  9592. font-size:14px;
  9593. }
  9594. #u130697 {
  9595. border-width:0px;
  9596. position:absolute;
  9597. left:1426px;
  9598. top:469px;
  9599. width:71px;
  9600. height:20px;
  9601. display:flex;
  9602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9603. font-weight:400;
  9604. font-style:normal;
  9605. font-size:14px;
  9606. }
  9607. #u130697 .text {
  9608. position:absolute;
  9609. align-self:flex-start;
  9610. padding:0px 0px 0px 0px;
  9611. box-sizing:border-box;
  9612. width:100%;
  9613. }
  9614. #u130697_text {
  9615. border-width:0px;
  9616. white-space:nowrap;
  9617. text-transform:none;
  9618. }
  9619. #u130698 {
  9620. border-width:0px;
  9621. position:absolute;
  9622. left:0px;
  9623. top:0px;
  9624. width:0px;
  9625. height:0px;
  9626. }
  9627. #u130699 {
  9628. border-width:0px;
  9629. position:absolute;
  9630. left:0px;
  9631. top:0px;
  9632. width:0px;
  9633. height:0px;
  9634. }
  9635. #u130700_div {
  9636. border-width:0px;
  9637. position:absolute;
  9638. left:0px;
  9639. top:0px;
  9640. width:23px;
  9641. height:20px;
  9642. background:inherit;
  9643. background-color:rgba(255, 255, 255, 0);
  9644. border:none;
  9645. border-left:0px;
  9646. border-top:0px;
  9647. border-right:0px;
  9648. border-radius:0px;
  9649. border-bottom-right-radius:0px;
  9650. border-bottom-left-radius:0px;
  9651. -moz-box-shadow:none;
  9652. -webkit-box-shadow:none;
  9653. box-shadow:none;
  9654. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9655. font-weight:400;
  9656. font-style:normal;
  9657. font-size:14px;
  9658. color:#00BFBF;
  9659. }
  9660. #u130700 {
  9661. border-width:0px;
  9662. position:absolute;
  9663. left:1716px;
  9664. top:469px;
  9665. width:23px;
  9666. height:20px;
  9667. display:flex;
  9668. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9669. font-weight:400;
  9670. font-style:normal;
  9671. font-size:14px;
  9672. color:#00BFBF;
  9673. }
  9674. #u130700 .text {
  9675. position:absolute;
  9676. align-self:center;
  9677. padding:0px 0px 0px 0px;
  9678. box-sizing:border-box;
  9679. width:100%;
  9680. }
  9681. #u130700_text {
  9682. border-width:0px;
  9683. white-space:nowrap;
  9684. text-transform:none;
  9685. }
  9686. #u130701_div {
  9687. border-width:0px;
  9688. position:absolute;
  9689. left:0px;
  9690. top:0px;
  9691. width:6px;
  9692. height:6px;
  9693. background:inherit;
  9694. background-color:rgba(255, 255, 255, 0);
  9695. box-sizing:border-box;
  9696. border-width:1px;
  9697. border-style:solid;
  9698. border-color:rgba(0, 191, 191, 1);
  9699. border-right:0px;
  9700. border-bottom:0px;
  9701. border-radius:0px;
  9702. border-top-right-radius:0px;
  9703. border-bottom-left-radius:0px;
  9704. -moz-box-shadow:none;
  9705. -webkit-box-shadow:none;
  9706. box-shadow:none;
  9707. }
  9708. #u130701 {
  9709. border-width:0px;
  9710. position:absolute;
  9711. left:1750px;
  9712. top:478px;
  9713. width:6px;
  9714. height:6px;
  9715. display:flex;
  9716. -webkit-transform:rotate(45deg);
  9717. -moz-transform:rotate(45deg);
  9718. -ms-transform:rotate(45deg);
  9719. transform:rotate(45deg);
  9720. }
  9721. #u130701 .text {
  9722. position:absolute;
  9723. align-self:center;
  9724. padding:2px 2px 2px 2px;
  9725. box-sizing:border-box;
  9726. width:100%;
  9727. }
  9728. #u130701_text {
  9729. border-width:0px;
  9730. word-wrap:break-word;
  9731. text-transform:none;
  9732. visibility:hidden;
  9733. }
  9734. #u130702_img {
  9735. border-width:0px;
  9736. position:absolute;
  9737. left:0px;
  9738. top:0px;
  9739. width:433px;
  9740. height:865px;
  9741. }
  9742. #u130702 {
  9743. border-width:0px;
  9744. position:absolute;
  9745. left:453px;
  9746. top:0px;
  9747. width:433px;
  9748. height:865px;
  9749. display:flex;
  9750. }
  9751. #u130702 .text {
  9752. position:absolute;
  9753. align-self:center;
  9754. padding:2px 2px 2px 2px;
  9755. box-sizing:border-box;
  9756. width:100%;
  9757. }
  9758. #u130702_text {
  9759. border-width:0px;
  9760. word-wrap:break-word;
  9761. text-transform:none;
  9762. visibility:hidden;
  9763. }
  9764. #u130703 {
  9765. border-width:0px;
  9766. position:absolute;
  9767. left:0px;
  9768. top:0px;
  9769. width:0px;
  9770. height:0px;
  9771. }
  9772. #u130704_div {
  9773. border-width:0px;
  9774. position:absolute;
  9775. left:0px;
  9776. top:0px;
  9777. width:375px;
  9778. height:736px;
  9779. background:inherit;
  9780. background-color:rgba(51, 51, 51, 0.533333333333333);
  9781. border:none;
  9782. border-top:0px;
  9783. border-radius:25px;
  9784. border-top-left-radius:0px;
  9785. border-top-right-radius:0px;
  9786. -moz-box-shadow:none;
  9787. -webkit-box-shadow:none;
  9788. box-shadow:none;
  9789. }
  9790. #u130704 {
  9791. border-width:0px;
  9792. position:absolute;
  9793. left:482px;
  9794. top:107px;
  9795. width:375px;
  9796. height:736px;
  9797. display:flex;
  9798. }
  9799. #u130704 .text {
  9800. position:absolute;
  9801. align-self:center;
  9802. padding:2px 2px 2px 2px;
  9803. box-sizing:border-box;
  9804. width:100%;
  9805. }
  9806. #u130704_text {
  9807. border-width:0px;
  9808. word-wrap:break-word;
  9809. text-transform:none;
  9810. visibility:hidden;
  9811. }
  9812. #u130705_div {
  9813. border-width:0px;
  9814. position:absolute;
  9815. left:0px;
  9816. top:0px;
  9817. width:375px;
  9818. height:248px;
  9819. background:inherit;
  9820. background-color:rgba(242, 242, 242, 1);
  9821. border:none;
  9822. border-top:0px;
  9823. border-radius:25px;
  9824. border-top-left-radius:0px;
  9825. border-top-right-radius:0px;
  9826. -moz-box-shadow:none;
  9827. -webkit-box-shadow:none;
  9828. box-shadow:none;
  9829. }
  9830. #u130705 {
  9831. border-width:0px;
  9832. position:absolute;
  9833. left:482px;
  9834. top:595px;
  9835. width:375px;
  9836. height:248px;
  9837. display:flex;
  9838. }
  9839. #u130705 .text {
  9840. position:absolute;
  9841. align-self:center;
  9842. padding:2px 2px 2px 2px;
  9843. box-sizing:border-box;
  9844. width:100%;
  9845. }
  9846. #u130705_text {
  9847. border-width:0px;
  9848. word-wrap:break-word;
  9849. text-transform:none;
  9850. visibility:hidden;
  9851. }
  9852. #u130706 {
  9853. border-width:0px;
  9854. position:absolute;
  9855. left:0px;
  9856. top:0px;
  9857. width:0px;
  9858. height:0px;
  9859. }
  9860. #u130707_div {
  9861. border-width:0px;
  9862. position:absolute;
  9863. left:0px;
  9864. top:0px;
  9865. width:375px;
  9866. height:60px;
  9867. background:inherit;
  9868. background-color:rgba(255, 255, 255, 1);
  9869. box-sizing:border-box;
  9870. border-width:1px;
  9871. border-style:solid;
  9872. border-color:rgba(242, 242, 242, 1);
  9873. border-left:0px;
  9874. border-right:0px;
  9875. border-radius:0px;
  9876. border-top-left-radius:0px;
  9877. border-top-right-radius:0px;
  9878. border-bottom-right-radius:0px;
  9879. border-bottom-left-radius:0px;
  9880. -moz-box-shadow:none;
  9881. -webkit-box-shadow:none;
  9882. box-shadow:none;
  9883. }
  9884. #u130707 {
  9885. border-width:0px;
  9886. position:absolute;
  9887. left:482px;
  9888. top:655px;
  9889. width:375px;
  9890. height:60px;
  9891. display:flex;
  9892. }
  9893. #u130707 .text {
  9894. position:absolute;
  9895. align-self:center;
  9896. padding:2px 2px 2px 2px;
  9897. box-sizing:border-box;
  9898. width:100%;
  9899. }
  9900. #u130707_text {
  9901. border-width:0px;
  9902. word-wrap:break-word;
  9903. text-transform:none;
  9904. visibility:hidden;
  9905. }
  9906. #u130708_div {
  9907. border-width:0px;
  9908. position:absolute;
  9909. left:0px;
  9910. top:0px;
  9911. width:29px;
  9912. height:30px;
  9913. background:inherit;
  9914. background-color:rgba(255, 255, 255, 0);
  9915. border:none;
  9916. border-left:0px;
  9917. border-top:0px;
  9918. border-right:0px;
  9919. border-radius:0px;
  9920. border-bottom-right-radius:0px;
  9921. border-bottom-left-radius:0px;
  9922. -moz-box-shadow:none;
  9923. -webkit-box-shadow:none;
  9924. box-shadow:none;
  9925. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9926. font-weight:400;
  9927. font-style:normal;
  9928. font-size:14px;
  9929. line-height:30px;
  9930. }
  9931. #u130708 {
  9932. border-width:0px;
  9933. position:absolute;
  9934. left:655px;
  9935. top:670px;
  9936. width:29px;
  9937. height:30px;
  9938. display:flex;
  9939. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9940. font-weight:400;
  9941. font-style:normal;
  9942. font-size:14px;
  9943. line-height:30px;
  9944. }
  9945. #u130708 .text {
  9946. position:absolute;
  9947. align-self:flex-start;
  9948. padding:0px 0px 0px 0px;
  9949. box-sizing:border-box;
  9950. width:100%;
  9951. }
  9952. #u130708_text {
  9953. border-width:0px;
  9954. white-space:nowrap;
  9955. text-transform:none;
  9956. }
  9957. #u130709 {
  9958. border-width:0px;
  9959. position:absolute;
  9960. left:0px;
  9961. top:0px;
  9962. width:0px;
  9963. height:0px;
  9964. }
  9965. #u130710_div {
  9966. border-width:0px;
  9967. position:absolute;
  9968. left:0px;
  9969. top:0px;
  9970. width:375px;
  9971. height:60px;
  9972. background:inherit;
  9973. background-color:rgba(255, 255, 255, 1);
  9974. box-sizing:border-box;
  9975. border-width:1px;
  9976. border-style:solid;
  9977. border-color:rgba(242, 242, 242, 1);
  9978. border-left:0px;
  9979. border-right:0px;
  9980. border-radius:0px;
  9981. border-top-left-radius:0px;
  9982. border-top-right-radius:0px;
  9983. border-bottom-right-radius:0px;
  9984. border-bottom-left-radius:0px;
  9985. -moz-box-shadow:none;
  9986. -webkit-box-shadow:none;
  9987. box-shadow:none;
  9988. }
  9989. #u130710 {
  9990. border-width:0px;
  9991. position:absolute;
  9992. left:482px;
  9993. top:714px;
  9994. width:375px;
  9995. height:60px;
  9996. display:flex;
  9997. }
  9998. #u130710 .text {
  9999. position:absolute;
  10000. align-self:center;
  10001. padding:2px 2px 2px 2px;
  10002. box-sizing:border-box;
  10003. width:100%;
  10004. }
  10005. #u130710_text {
  10006. border-width:0px;
  10007. word-wrap:break-word;
  10008. text-transform:none;
  10009. visibility:hidden;
  10010. }
  10011. #u130711_div {
  10012. border-width:0px;
  10013. position:absolute;
  10014. left:0px;
  10015. top:0px;
  10016. width:29px;
  10017. height:30px;
  10018. background:inherit;
  10019. background-color:rgba(255, 255, 255, 0);
  10020. border:none;
  10021. border-left:0px;
  10022. border-top:0px;
  10023. border-right:0px;
  10024. border-radius:0px;
  10025. border-bottom-right-radius:0px;
  10026. border-bottom-left-radius:0px;
  10027. -moz-box-shadow:none;
  10028. -webkit-box-shadow:none;
  10029. box-shadow:none;
  10030. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10031. font-weight:400;
  10032. font-style:normal;
  10033. font-size:14px;
  10034. line-height:30px;
  10035. }
  10036. #u130711 {
  10037. border-width:0px;
  10038. position:absolute;
  10039. left:655px;
  10040. top:729px;
  10041. width:29px;
  10042. height:30px;
  10043. display:flex;
  10044. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10045. font-weight:400;
  10046. font-style:normal;
  10047. font-size:14px;
  10048. line-height:30px;
  10049. }
  10050. #u130711 .text {
  10051. position:absolute;
  10052. align-self:flex-start;
  10053. padding:0px 0px 0px 0px;
  10054. box-sizing:border-box;
  10055. width:100%;
  10056. }
  10057. #u130711_text {
  10058. border-width:0px;
  10059. white-space:nowrap;
  10060. text-transform:none;
  10061. }
  10062. #u130712 {
  10063. border-width:0px;
  10064. position:absolute;
  10065. left:0px;
  10066. top:0px;
  10067. width:0px;
  10068. height:0px;
  10069. }
  10070. #u130713_div {
  10071. border-width:0px;
  10072. position:absolute;
  10073. left:0px;
  10074. top:0px;
  10075. width:375px;
  10076. height:60px;
  10077. background:inherit;
  10078. background-color:rgba(255, 255, 255, 1);
  10079. box-sizing:border-box;
  10080. border-width:1px;
  10081. border-style:solid;
  10082. border-color:rgba(242, 242, 242, 1);
  10083. border-top:0px;
  10084. border-radius:20px;
  10085. border-top-left-radius:0px;
  10086. border-top-right-radius:0px;
  10087. -moz-box-shadow:none;
  10088. -webkit-box-shadow:none;
  10089. box-shadow:none;
  10090. }
  10091. #u130713 {
  10092. border-width:0px;
  10093. position:absolute;
  10094. left:482px;
  10095. top:783px;
  10096. width:375px;
  10097. height:60px;
  10098. display:flex;
  10099. }
  10100. #u130713 .text {
  10101. position:absolute;
  10102. align-self:center;
  10103. padding:2px 2px 2px 2px;
  10104. box-sizing:border-box;
  10105. width:100%;
  10106. }
  10107. #u130713_text {
  10108. border-width:0px;
  10109. word-wrap:break-word;
  10110. text-transform:none;
  10111. visibility:hidden;
  10112. }
  10113. #u130714_div {
  10114. border-width:0px;
  10115. position:absolute;
  10116. left:0px;
  10117. top:0px;
  10118. width:29px;
  10119. height:30px;
  10120. background:inherit;
  10121. background-color:rgba(255, 255, 255, 0);
  10122. border:none;
  10123. border-left:0px;
  10124. border-top:0px;
  10125. border-right:0px;
  10126. border-radius:0px;
  10127. border-bottom-right-radius:0px;
  10128. border-bottom-left-radius:0px;
  10129. -moz-box-shadow:none;
  10130. -webkit-box-shadow:none;
  10131. box-shadow:none;
  10132. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10133. font-weight:400;
  10134. font-style:normal;
  10135. font-size:14px;
  10136. line-height:30px;
  10137. }
  10138. #u130714 {
  10139. border-width:0px;
  10140. position:absolute;
  10141. left:655px;
  10142. top:798px;
  10143. width:29px;
  10144. height:30px;
  10145. display:flex;
  10146. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10147. font-weight:400;
  10148. font-style:normal;
  10149. font-size:14px;
  10150. line-height:30px;
  10151. }
  10152. #u130714 .text {
  10153. position:absolute;
  10154. align-self:flex-start;
  10155. padding:0px 0px 0px 0px;
  10156. box-sizing:border-box;
  10157. width:100%;
  10158. }
  10159. #u130714_text {
  10160. border-width:0px;
  10161. white-space:nowrap;
  10162. text-transform:none;
  10163. }
  10164. #u130715 {
  10165. border-width:0px;
  10166. position:absolute;
  10167. left:0px;
  10168. top:0px;
  10169. width:0px;
  10170. height:0px;
  10171. }
  10172. #u130716_div {
  10173. border-width:0px;
  10174. position:absolute;
  10175. left:0px;
  10176. top:0px;
  10177. width:375px;
  10178. height:60px;
  10179. background:inherit;
  10180. background-color:rgba(255, 255, 255, 1);
  10181. box-sizing:border-box;
  10182. border-width:1px;
  10183. border-style:solid;
  10184. border-color:rgba(242, 242, 242, 1);
  10185. border-left:0px;
  10186. border-right:0px;
  10187. border-radius:0px;
  10188. border-top-left-radius:0px;
  10189. border-top-right-radius:0px;
  10190. border-bottom-right-radius:0px;
  10191. border-bottom-left-radius:0px;
  10192. -moz-box-shadow:none;
  10193. -webkit-box-shadow:none;
  10194. box-shadow:none;
  10195. }
  10196. #u130716 {
  10197. border-width:0px;
  10198. position:absolute;
  10199. left:482px;
  10200. top:595px;
  10201. width:375px;
  10202. height:60px;
  10203. display:flex;
  10204. }
  10205. #u130716 .text {
  10206. position:absolute;
  10207. align-self:center;
  10208. padding:2px 2px 2px 2px;
  10209. box-sizing:border-box;
  10210. width:100%;
  10211. }
  10212. #u130716_text {
  10213. border-width:0px;
  10214. word-wrap:break-word;
  10215. text-transform:none;
  10216. visibility:hidden;
  10217. }
  10218. #u130717_div {
  10219. border-width:0px;
  10220. position:absolute;
  10221. left:0px;
  10222. top:0px;
  10223. width:29px;
  10224. height:30px;
  10225. background:inherit;
  10226. background-color:rgba(255, 255, 255, 0);
  10227. border:none;
  10228. border-left:0px;
  10229. border-top:0px;
  10230. border-right:0px;
  10231. border-radius:0px;
  10232. border-bottom-right-radius:0px;
  10233. border-bottom-left-radius:0px;
  10234. -moz-box-shadow:none;
  10235. -webkit-box-shadow:none;
  10236. box-shadow:none;
  10237. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10238. font-weight:400;
  10239. font-style:normal;
  10240. font-size:14px;
  10241. line-height:30px;
  10242. }
  10243. #u130717 {
  10244. border-width:0px;
  10245. position:absolute;
  10246. left:655px;
  10247. top:610px;
  10248. width:29px;
  10249. height:30px;
  10250. display:flex;
  10251. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10252. font-weight:400;
  10253. font-style:normal;
  10254. font-size:14px;
  10255. line-height:30px;
  10256. }
  10257. #u130717 .text {
  10258. position:absolute;
  10259. align-self:flex-start;
  10260. padding:0px 0px 0px 0px;
  10261. box-sizing:border-box;
  10262. width:100%;
  10263. }
  10264. #u130717_text {
  10265. border-width:0px;
  10266. white-space:nowrap;
  10267. text-transform:none;
  10268. }