styles.css 190 KB

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