styles.css 132 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1367px;
  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. #u146449_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u146449 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u146449 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u146449_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u146450_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. #u146450 {
  73. border-width:0px;
  74. position:absolute;
  75. left:29px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u146450 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u146450_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u146451 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u146452_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. #u146452 {
  121. border-width:0px;
  122. position:absolute;
  123. left:309px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u146452 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u146452_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u146453 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u146454_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u146454 {
  159. border-width:0px;
  160. position:absolute;
  161. left:372px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u146454 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u146454_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u146455_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u146455 {
  189. border-width:0px;
  190. position:absolute;
  191. left:378px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u146455 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u146455_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u146456 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u146457_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u146457 {
  227. border-width:0px;
  228. position:absolute;
  229. left:323px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u146457 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u146457_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u146458_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u146458 {
  257. border-width:0px;
  258. position:absolute;
  259. left:339px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u146458 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u146458_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u146459_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u146459 {
  287. border-width:0px;
  288. position:absolute;
  289. left:330px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u146459 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u146459_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u146460_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u146460 {
  317. border-width:0px;
  318. position:absolute;
  319. left:347px;
  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. #u146460 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u146460_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u146461_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u146461 {
  351. border-width:0px;
  352. position:absolute;
  353. left:29px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u146461 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u146461_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u146462_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. #u146462 {
  393. border-width:0px;
  394. position:absolute;
  395. left:29px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u146462 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u146462_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u146463 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u146464_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u146464 {
  431. border-width:0px;
  432. position:absolute;
  433. left:69px;
  434. top:792px;
  435. width:24px;
  436. height:24px;
  437. display:flex;
  438. font-size:8px;
  439. }
  440. #u146464 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u146464_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u146465_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. #u146465 {
  472. border-width:0px;
  473. position:absolute;
  474. left:69px;
  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. #u146465 .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. #u146465_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u146466 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u146467_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u146467 {
  513. border-width:0px;
  514. position:absolute;
  515. left:339px;
  516. top:794px;
  517. width:24px;
  518. height:24px;
  519. display:flex;
  520. font-size:8px;
  521. }
  522. #u146467 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u146467_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u146468_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. #u146468 {
  554. border-width:0px;
  555. position:absolute;
  556. left:339px;
  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. #u146468 .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. #u146468_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u146469_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. #u146469 {
  594. border-width:0px;
  595. position:absolute;
  596. left:29px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u146469 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u146469_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u146470 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u146471_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u146471 {
  632. border-width:0px;
  633. position:absolute;
  634. left:251px;
  635. top:792px;
  636. width:24px;
  637. height:24px;
  638. display:flex;
  639. font-size:8px;
  640. }
  641. #u146471 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u146471_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u146472_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. #u146472 {
  673. border-width:0px;
  674. position:absolute;
  675. left:245px;
  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. #u146472 .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. #u146472_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u146473 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u146474_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u146474 {
  714. border-width:0px;
  715. position:absolute;
  716. left:157px;
  717. top:792px;
  718. width:24px;
  719. height:24px;
  720. display:flex;
  721. font-size:8px;
  722. }
  723. #u146474 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u146474_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u146475_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. #u146475 {
  755. border-width:0px;
  756. position:absolute;
  757. left:151px;
  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. #u146475 .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. #u146475_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u146476_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. #u146476 {
  798. border-width:0px;
  799. position:absolute;
  800. left:29px;
  801. top:107px;
  802. width:375px;
  803. height:732px;
  804. display:flex;
  805. }
  806. #u146476 .text {
  807. position:absolute;
  808. align-self:center;
  809. padding:2px 2px 2px 2px;
  810. box-sizing:border-box;
  811. width:100%;
  812. }
  813. #u146476_text {
  814. border-width:0px;
  815. word-wrap:break-word;
  816. text-transform:none;
  817. visibility:hidden;
  818. }
  819. #u146477_img {
  820. border-width:0px;
  821. position:absolute;
  822. left:0px;
  823. top:0px;
  824. width:375px;
  825. height:44px;
  826. }
  827. #u146477 {
  828. border-width:0px;
  829. position:absolute;
  830. left:29px;
  831. top:24px;
  832. width:375px;
  833. height:44px;
  834. display:flex;
  835. }
  836. #u146477 .text {
  837. position:absolute;
  838. align-self:center;
  839. padding:2px 2px 2px 2px;
  840. box-sizing:border-box;
  841. width:100%;
  842. }
  843. #u146477_text {
  844. border-width:0px;
  845. word-wrap:break-word;
  846. text-transform:none;
  847. visibility:hidden;
  848. }
  849. #u146478 {
  850. border-width:0px;
  851. position:absolute;
  852. left:0px;
  853. top:0px;
  854. width:0px;
  855. height:0px;
  856. }
  857. #u146479_div {
  858. border-width:0px;
  859. position:absolute;
  860. left:0px;
  861. top:0px;
  862. width:355px;
  863. height:150px;
  864. background:inherit;
  865. background-color:rgba(255, 255, 255, 1);
  866. border:none;
  867. border-radius:4px;
  868. -moz-box-shadow:none;
  869. -webkit-box-shadow:none;
  870. box-shadow:none;
  871. }
  872. #u146479 {
  873. border-width:0px;
  874. position:absolute;
  875. left:39px;
  876. top:217px;
  877. width:355px;
  878. height:150px;
  879. display:flex;
  880. }
  881. #u146479 .text {
  882. position:absolute;
  883. align-self:center;
  884. padding:2px 2px 2px 2px;
  885. box-sizing:border-box;
  886. width:100%;
  887. }
  888. #u146479_text {
  889. border-width:0px;
  890. word-wrap:break-word;
  891. text-transform:none;
  892. visibility:hidden;
  893. }
  894. #u146480_div {
  895. border-width:0px;
  896. position:absolute;
  897. left:0px;
  898. top:0px;
  899. width:166px;
  900. height:75px;
  901. background:inherit;
  902. background-color:rgba(255, 255, 255, 0);
  903. border:none;
  904. border-left:0px;
  905. border-top:0px;
  906. border-right:0px;
  907. border-radius:0px;
  908. border-bottom-right-radius:0px;
  909. border-bottom-left-radius:0px;
  910. -moz-box-shadow:none;
  911. -webkit-box-shadow:none;
  912. box-shadow:none;
  913. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  914. font-weight:400;
  915. font-style:normal;
  916. font-size:11px;
  917. line-height:25px;
  918. }
  919. #u146480 {
  920. border-width:0px;
  921. position:absolute;
  922. left:55px;
  923. top:286px;
  924. width:166px;
  925. height:75px;
  926. display:flex;
  927. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  928. font-weight:400;
  929. font-style:normal;
  930. font-size:11px;
  931. line-height:25px;
  932. }
  933. #u146480 .text {
  934. position:absolute;
  935. align-self:flex-start;
  936. padding:0px 0px 0px 0px;
  937. box-sizing:border-box;
  938. width:100%;
  939. }
  940. #u146480_text {
  941. border-width:0px;
  942. white-space:nowrap;
  943. text-transform:none;
  944. }
  945. #u146481_div {
  946. border-width:0px;
  947. position:absolute;
  948. left:0px;
  949. top:0px;
  950. width:128px;
  951. height:30px;
  952. background:inherit;
  953. background-color:rgba(255, 255, 255, 0);
  954. border:none;
  955. border-left:0px;
  956. border-top:0px;
  957. border-right:0px;
  958. border-radius:0px;
  959. border-bottom-right-radius:0px;
  960. border-bottom-left-radius:0px;
  961. -moz-box-shadow:none;
  962. -webkit-box-shadow:none;
  963. box-shadow:none;
  964. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  965. font-weight:400;
  966. font-style:normal;
  967. font-size:12px;
  968. color:#AAAAAA;
  969. line-height:30px;
  970. }
  971. #u146481 {
  972. border-width:0px;
  973. position:absolute;
  974. left:55px;
  975. top:226px;
  976. width:128px;
  977. height:30px;
  978. display:flex;
  979. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  980. font-weight:400;
  981. font-style:normal;
  982. font-size:12px;
  983. color:#AAAAAA;
  984. line-height:30px;
  985. }
  986. #u146481 .text {
  987. position:absolute;
  988. align-self:flex-start;
  989. padding:0px 0px 0px 0px;
  990. box-sizing:border-box;
  991. width:100%;
  992. }
  993. #u146481_text {
  994. border-width:0px;
  995. white-space:nowrap;
  996. text-transform:none;
  997. }
  998. #u146482_div {
  999. border-width:0px;
  1000. position:absolute;
  1001. left:0px;
  1002. top:0px;
  1003. width:8px;
  1004. height:8px;
  1005. background:inherit;
  1006. background-color:rgba(255, 255, 255, 0);
  1007. box-sizing:border-box;
  1008. border-width:1px;
  1009. border-style:solid;
  1010. border-color:rgba(51, 51, 51, 1);
  1011. border-right:0px;
  1012. border-bottom:0px;
  1013. border-radius:0px;
  1014. border-top-right-radius:0px;
  1015. border-bottom-left-radius:0px;
  1016. -moz-box-shadow:none;
  1017. -webkit-box-shadow:none;
  1018. box-shadow:none;
  1019. }
  1020. #u146482 {
  1021. border-width:0px;
  1022. position:absolute;
  1023. left:372px;
  1024. top:236px;
  1025. width:8px;
  1026. height:8px;
  1027. display:flex;
  1028. -webkit-transform:rotate(135deg);
  1029. -moz-transform:rotate(135deg);
  1030. -ms-transform:rotate(135deg);
  1031. transform:rotate(135deg);
  1032. }
  1033. #u146482 .text {
  1034. position:absolute;
  1035. align-self:center;
  1036. padding:2px 2px 2px 2px;
  1037. box-sizing:border-box;
  1038. width:100%;
  1039. }
  1040. #u146482_text {
  1041. border-width:0px;
  1042. word-wrap:break-word;
  1043. text-transform:none;
  1044. visibility:hidden;
  1045. }
  1046. #u146483 {
  1047. border-width:0px;
  1048. position:absolute;
  1049. left:0px;
  1050. top:0px;
  1051. width:0px;
  1052. height:0px;
  1053. }
  1054. #u146484_div {
  1055. border-width:0px;
  1056. position:absolute;
  1057. left:0px;
  1058. top:0px;
  1059. width:72px;
  1060. height:20px;
  1061. background:inherit;
  1062. background-color:rgba(255, 255, 255, 0);
  1063. border:none;
  1064. border-left:0px;
  1065. border-top:0px;
  1066. border-right:0px;
  1067. border-radius:0px;
  1068. border-bottom-right-radius:0px;
  1069. border-bottom-left-radius:0px;
  1070. -moz-box-shadow:none;
  1071. -webkit-box-shadow:none;
  1072. box-shadow:none;
  1073. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1074. font-weight:400;
  1075. font-style:normal;
  1076. font-size:14px;
  1077. }
  1078. #u146484 {
  1079. border-width:0px;
  1080. position:absolute;
  1081. left:55px;
  1082. top:261px;
  1083. width:72px;
  1084. height:20px;
  1085. display:flex;
  1086. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1087. font-weight:400;
  1088. font-style:normal;
  1089. font-size:14px;
  1090. }
  1091. #u146484 .text {
  1092. position:absolute;
  1093. align-self:flex-start;
  1094. padding:0px 0px 0px 0px;
  1095. box-sizing:border-box;
  1096. width:100%;
  1097. }
  1098. #u146484_text {
  1099. border-width:0px;
  1100. white-space:nowrap;
  1101. text-transform:none;
  1102. }
  1103. #u146485_div {
  1104. border-width:0px;
  1105. position:absolute;
  1106. left:0px;
  1107. top:0px;
  1108. width:9px;
  1109. height:11px;
  1110. background:inherit;
  1111. background-color:rgba(51, 51, 51, 1);
  1112. border:none;
  1113. border-radius:17px;
  1114. -moz-box-shadow:none;
  1115. -webkit-box-shadow:none;
  1116. box-shadow:none;
  1117. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1118. font-weight:400;
  1119. font-style:normal;
  1120. font-size:8px;
  1121. color:#FFFFFF;
  1122. }
  1123. #u146485 {
  1124. border-width:0px;
  1125. position:absolute;
  1126. left:131px;
  1127. top:266px;
  1128. width:9px;
  1129. height:11px;
  1130. display:flex;
  1131. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1132. font-weight:400;
  1133. font-style:normal;
  1134. font-size:8px;
  1135. color:#FFFFFF;
  1136. }
  1137. #u146485 .text {
  1138. position:absolute;
  1139. align-self:center;
  1140. padding:0px 0px 0px 0px;
  1141. box-sizing:border-box;
  1142. width:100%;
  1143. }
  1144. #u146485_text {
  1145. border-width:0px;
  1146. white-space:nowrap;
  1147. text-transform:none;
  1148. }
  1149. #u146486 {
  1150. border-width:0px;
  1151. position:absolute;
  1152. left:0px;
  1153. top:0px;
  1154. width:0px;
  1155. height:0px;
  1156. }
  1157. #u146487_div {
  1158. border-width:0px;
  1159. position:absolute;
  1160. left:0px;
  1161. top:0px;
  1162. width:72px;
  1163. height:20px;
  1164. background:inherit;
  1165. background-color:rgba(255, 255, 255, 0);
  1166. border:none;
  1167. border-left:0px;
  1168. border-top:0px;
  1169. border-right:0px;
  1170. border-radius:0px;
  1171. border-bottom-right-radius:0px;
  1172. border-bottom-left-radius:0px;
  1173. -moz-box-shadow:none;
  1174. -webkit-box-shadow:none;
  1175. box-shadow:none;
  1176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1177. font-weight:400;
  1178. font-style:normal;
  1179. font-size:14px;
  1180. }
  1181. #u146487 {
  1182. border-width:0px;
  1183. position:absolute;
  1184. left:174px;
  1185. top:261px;
  1186. width:72px;
  1187. height:20px;
  1188. display:flex;
  1189. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1190. font-weight:400;
  1191. font-style:normal;
  1192. font-size:14px;
  1193. }
  1194. #u146487 .text {
  1195. position:absolute;
  1196. align-self:flex-start;
  1197. padding:0px 0px 0px 0px;
  1198. box-sizing:border-box;
  1199. width:100%;
  1200. }
  1201. #u146487_text {
  1202. border-width:0px;
  1203. white-space:nowrap;
  1204. text-transform:none;
  1205. }
  1206. #u146488_div {
  1207. border-width:0px;
  1208. position:absolute;
  1209. left:0px;
  1210. top:0px;
  1211. width:9px;
  1212. height:11px;
  1213. background:inherit;
  1214. background-color:rgba(51, 51, 51, 1);
  1215. border:none;
  1216. border-radius:17px;
  1217. -moz-box-shadow:none;
  1218. -webkit-box-shadow:none;
  1219. box-shadow:none;
  1220. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1221. font-weight:400;
  1222. font-style:normal;
  1223. font-size:8px;
  1224. color:#FFFFFF;
  1225. }
  1226. #u146488 {
  1227. border-width:0px;
  1228. position:absolute;
  1229. left:250px;
  1230. top:266px;
  1231. width:9px;
  1232. height:11px;
  1233. display:flex;
  1234. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1235. font-weight:400;
  1236. font-style:normal;
  1237. font-size:8px;
  1238. color:#FFFFFF;
  1239. }
  1240. #u146488 .text {
  1241. position:absolute;
  1242. align-self:center;
  1243. padding:0px 0px 0px 0px;
  1244. box-sizing:border-box;
  1245. width:100%;
  1246. }
  1247. #u146488_text {
  1248. border-width:0px;
  1249. white-space:nowrap;
  1250. text-transform:none;
  1251. }
  1252. #u146489_img {
  1253. border-width:0px;
  1254. position:absolute;
  1255. left:0px;
  1256. top:0px;
  1257. width:10px;
  1258. height:11px;
  1259. }
  1260. #u146489 {
  1261. border-width:0px;
  1262. position:absolute;
  1263. left:152px;
  1264. top:266px;
  1265. width:10px;
  1266. height:11px;
  1267. display:flex;
  1268. }
  1269. #u146489 .text {
  1270. position:absolute;
  1271. align-self:center;
  1272. padding:2px 2px 2px 2px;
  1273. box-sizing:border-box;
  1274. width:100%;
  1275. }
  1276. #u146489_text {
  1277. border-width:0px;
  1278. word-wrap:break-word;
  1279. text-transform:none;
  1280. visibility:hidden;
  1281. }
  1282. #u146491_img {
  1283. border-width:0px;
  1284. position:absolute;
  1285. left:0px;
  1286. top:0px;
  1287. width:433px;
  1288. height:865px;
  1289. }
  1290. #u146491 {
  1291. border-width:0px;
  1292. position:absolute;
  1293. left:464px;
  1294. top:0px;
  1295. width:433px;
  1296. height:865px;
  1297. display:flex;
  1298. }
  1299. #u146491 .text {
  1300. position:absolute;
  1301. align-self:center;
  1302. padding:2px 2px 2px 2px;
  1303. box-sizing:border-box;
  1304. width:100%;
  1305. }
  1306. #u146491_text {
  1307. border-width:0px;
  1308. word-wrap:break-word;
  1309. text-transform:none;
  1310. visibility:hidden;
  1311. }
  1312. #u146492_div {
  1313. border-width:0px;
  1314. position:absolute;
  1315. left:0px;
  1316. top:0px;
  1317. width:375px;
  1318. height:40px;
  1319. background:inherit;
  1320. background-color:rgba(255, 255, 255, 1);
  1321. box-sizing:border-box;
  1322. border-width:1px;
  1323. border-style:solid;
  1324. border-color:rgba(215, 215, 215, 1);
  1325. border-left:0px;
  1326. border-top:0px;
  1327. border-right:0px;
  1328. border-radius:0px;
  1329. border-bottom-right-radius:0px;
  1330. border-bottom-left-radius:0px;
  1331. -moz-box-shadow:none;
  1332. -webkit-box-shadow:none;
  1333. box-shadow:none;
  1334. }
  1335. #u146492 {
  1336. border-width:0px;
  1337. position:absolute;
  1338. left:493px;
  1339. top:67px;
  1340. width:375px;
  1341. height:40px;
  1342. display:flex;
  1343. }
  1344. #u146492 .text {
  1345. position:absolute;
  1346. align-self:center;
  1347. padding:2px 2px 2px 2px;
  1348. box-sizing:border-box;
  1349. width:100%;
  1350. }
  1351. #u146492_text {
  1352. border-width:0px;
  1353. word-wrap:break-word;
  1354. text-transform:none;
  1355. visibility:hidden;
  1356. }
  1357. #u146493 {
  1358. border-width:0px;
  1359. position:absolute;
  1360. left:0px;
  1361. top:0px;
  1362. width:0px;
  1363. height:0px;
  1364. }
  1365. #u146494_div {
  1366. border-width:0px;
  1367. position:absolute;
  1368. left:0px;
  1369. top:0px;
  1370. width:88px;
  1371. height:32px;
  1372. background:inherit;
  1373. background-color:rgba(255, 255, 255, 1);
  1374. box-sizing:border-box;
  1375. border-width:1px;
  1376. border-style:solid;
  1377. border-color:rgba(242, 242, 242, 1);
  1378. border-radius:33px;
  1379. -moz-box-shadow:none;
  1380. -webkit-box-shadow:none;
  1381. box-shadow:none;
  1382. }
  1383. #u146494 {
  1384. border-width:0px;
  1385. position:absolute;
  1386. left:773px;
  1387. top:71px;
  1388. width:88px;
  1389. height:32px;
  1390. display:flex;
  1391. }
  1392. #u146494 .text {
  1393. position:absolute;
  1394. align-self:center;
  1395. padding:2px 2px 2px 2px;
  1396. box-sizing:border-box;
  1397. width:100%;
  1398. }
  1399. #u146494_text {
  1400. border-width:0px;
  1401. word-wrap:break-word;
  1402. text-transform:none;
  1403. visibility:hidden;
  1404. }
  1405. #u146495 {
  1406. border-width:0px;
  1407. position:absolute;
  1408. left:0px;
  1409. top:0px;
  1410. width:0px;
  1411. height:0px;
  1412. }
  1413. #u146496_img {
  1414. border-width:0px;
  1415. position:absolute;
  1416. left:0px;
  1417. top:0px;
  1418. width:18px;
  1419. height:18px;
  1420. }
  1421. #u146496 {
  1422. border-width:0px;
  1423. position:absolute;
  1424. left:836px;
  1425. top:78px;
  1426. width:18px;
  1427. height:18px;
  1428. display:flex;
  1429. }
  1430. #u146496 .text {
  1431. position:absolute;
  1432. align-self:center;
  1433. padding:2px 2px 2px 2px;
  1434. box-sizing:border-box;
  1435. width:100%;
  1436. }
  1437. #u146496_text {
  1438. border-width:0px;
  1439. word-wrap:break-word;
  1440. text-transform:none;
  1441. visibility:hidden;
  1442. }
  1443. #u146497_img {
  1444. border-width:0px;
  1445. position:absolute;
  1446. left:0px;
  1447. top:0px;
  1448. width:6px;
  1449. height:6px;
  1450. }
  1451. #u146497 {
  1452. border-width:0px;
  1453. position:absolute;
  1454. left:842px;
  1455. top:84px;
  1456. width:6px;
  1457. height:6px;
  1458. display:flex;
  1459. }
  1460. #u146497 .text {
  1461. position:absolute;
  1462. align-self:center;
  1463. padding:2px 2px 2px 2px;
  1464. box-sizing:border-box;
  1465. width:100%;
  1466. }
  1467. #u146497_text {
  1468. border-width:0px;
  1469. word-wrap:break-word;
  1470. text-transform:none;
  1471. visibility:hidden;
  1472. }
  1473. #u146498 {
  1474. border-width:0px;
  1475. position:absolute;
  1476. left:0px;
  1477. top:0px;
  1478. width:0px;
  1479. height:0px;
  1480. }
  1481. #u146499_img {
  1482. border-width:0px;
  1483. position:absolute;
  1484. left:0px;
  1485. top:0px;
  1486. width:5px;
  1487. height:5px;
  1488. }
  1489. #u146499 {
  1490. border-width:0px;
  1491. position:absolute;
  1492. left:787px;
  1493. top:85px;
  1494. width:5px;
  1495. height:5px;
  1496. display:flex;
  1497. }
  1498. #u146499 .text {
  1499. position:absolute;
  1500. align-self:center;
  1501. padding:2px 2px 2px 2px;
  1502. box-sizing:border-box;
  1503. width:100%;
  1504. }
  1505. #u146499_text {
  1506. border-width:0px;
  1507. word-wrap:break-word;
  1508. text-transform:none;
  1509. visibility:hidden;
  1510. }
  1511. #u146500_img {
  1512. border-width:0px;
  1513. position:absolute;
  1514. left:0px;
  1515. top:0px;
  1516. width:5px;
  1517. height:5px;
  1518. }
  1519. #u146500 {
  1520. border-width:0px;
  1521. position:absolute;
  1522. left:803px;
  1523. top:85px;
  1524. width:5px;
  1525. height:5px;
  1526. display:flex;
  1527. }
  1528. #u146500 .text {
  1529. position:absolute;
  1530. align-self:center;
  1531. padding:2px 2px 2px 2px;
  1532. box-sizing:border-box;
  1533. width:100%;
  1534. }
  1535. #u146500_text {
  1536. border-width:0px;
  1537. word-wrap:break-word;
  1538. text-transform:none;
  1539. visibility:hidden;
  1540. }
  1541. #u146501_img {
  1542. border-width:0px;
  1543. position:absolute;
  1544. left:0px;
  1545. top:0px;
  1546. width:7px;
  1547. height:7px;
  1548. }
  1549. #u146501 {
  1550. border-width:0px;
  1551. position:absolute;
  1552. left:794px;
  1553. top:84px;
  1554. width:7px;
  1555. height:7px;
  1556. display:flex;
  1557. }
  1558. #u146501 .text {
  1559. position:absolute;
  1560. align-self:center;
  1561. padding:2px 2px 2px 2px;
  1562. box-sizing:border-box;
  1563. width:100%;
  1564. }
  1565. #u146501_text {
  1566. border-width:0px;
  1567. word-wrap:break-word;
  1568. text-transform:none;
  1569. visibility:hidden;
  1570. }
  1571. #u146502_img {
  1572. border-width:0px;
  1573. position:absolute;
  1574. left:0px;
  1575. top:0px;
  1576. width:19px;
  1577. height:2px;
  1578. }
  1579. #u146502 {
  1580. border-width:0px;
  1581. position:absolute;
  1582. left:811px;
  1583. top:87px;
  1584. width:18px;
  1585. height:1px;
  1586. display:flex;
  1587. -webkit-transform:rotate(90deg);
  1588. -moz-transform:rotate(90deg);
  1589. -ms-transform:rotate(90deg);
  1590. transform:rotate(90deg);
  1591. }
  1592. #u146502 .text {
  1593. position:absolute;
  1594. align-self:center;
  1595. padding:2px 2px 2px 2px;
  1596. box-sizing:border-box;
  1597. width:100%;
  1598. }
  1599. #u146502_text {
  1600. border-width:0px;
  1601. word-wrap:break-word;
  1602. text-transform:none;
  1603. visibility:hidden;
  1604. }
  1605. #u146503_img {
  1606. border-width:0px;
  1607. position:absolute;
  1608. left:0px;
  1609. top:0px;
  1610. width:375px;
  1611. height:44px;
  1612. }
  1613. #u146503 {
  1614. border-width:0px;
  1615. position:absolute;
  1616. left:493px;
  1617. top:24px;
  1618. width:375px;
  1619. height:44px;
  1620. display:flex;
  1621. }
  1622. #u146503 .text {
  1623. position:absolute;
  1624. align-self:center;
  1625. padding:2px 2px 2px 2px;
  1626. box-sizing:border-box;
  1627. width:100%;
  1628. }
  1629. #u146503_text {
  1630. border-width:0px;
  1631. word-wrap:break-word;
  1632. text-transform:none;
  1633. visibility:hidden;
  1634. }
  1635. #u146504_div {
  1636. border-width:0px;
  1637. position:absolute;
  1638. left:0px;
  1639. top:0px;
  1640. width:375px;
  1641. height:50px;
  1642. background:inherit;
  1643. background-color:rgba(255, 255, 255, 1);
  1644. box-sizing:border-box;
  1645. border-width:1px;
  1646. border-style:solid;
  1647. border-color:rgba(242, 242, 242, 1);
  1648. border-radius:26px;
  1649. border-top-left-radius:0px;
  1650. border-top-right-radius:0px;
  1651. -moz-box-shadow:none;
  1652. -webkit-box-shadow:none;
  1653. box-shadow:none;
  1654. }
  1655. #u146504 {
  1656. border-width:0px;
  1657. position:absolute;
  1658. left:493px;
  1659. top:788px;
  1660. width:375px;
  1661. height:50px;
  1662. display:flex;
  1663. }
  1664. #u146504 .text {
  1665. position:absolute;
  1666. align-self:center;
  1667. padding:2px 2px 2px 2px;
  1668. box-sizing:border-box;
  1669. width:100%;
  1670. }
  1671. #u146504_text {
  1672. border-width:0px;
  1673. word-wrap:break-word;
  1674. text-transform:none;
  1675. visibility:hidden;
  1676. }
  1677. #u146505 {
  1678. border-width:0px;
  1679. position:absolute;
  1680. left:0px;
  1681. top:0px;
  1682. width:0px;
  1683. height:0px;
  1684. }
  1685. #u146506_img {
  1686. border-width:0px;
  1687. position:absolute;
  1688. left:0px;
  1689. top:0px;
  1690. width:24px;
  1691. height:24px;
  1692. }
  1693. #u146506 {
  1694. border-width:0px;
  1695. position:absolute;
  1696. left:533px;
  1697. top:792px;
  1698. width:24px;
  1699. height:24px;
  1700. display:flex;
  1701. font-size:8px;
  1702. }
  1703. #u146506 .text {
  1704. position:absolute;
  1705. align-self:center;
  1706. padding:2px 2px 2px 2px;
  1707. box-sizing:border-box;
  1708. width:100%;
  1709. }
  1710. #u146506_text {
  1711. border-width:0px;
  1712. word-wrap:break-word;
  1713. text-transform:none;
  1714. }
  1715. #u146507_div {
  1716. border-width:0px;
  1717. position:absolute;
  1718. left:0px;
  1719. top:0px;
  1720. width:25px;
  1721. height:17px;
  1722. background:inherit;
  1723. background-color:rgba(255, 255, 255, 0);
  1724. border:none;
  1725. border-radius:0px;
  1726. -moz-box-shadow:none;
  1727. -webkit-box-shadow:none;
  1728. box-shadow:none;
  1729. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1730. font-weight:400;
  1731. font-style:normal;
  1732. font-size:12px;
  1733. }
  1734. #u146507 {
  1735. border-width:0px;
  1736. position:absolute;
  1737. left:533px;
  1738. top:817px;
  1739. width:25px;
  1740. height:17px;
  1741. display:flex;
  1742. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1743. font-weight:400;
  1744. font-style:normal;
  1745. font-size:12px;
  1746. }
  1747. #u146507 .text {
  1748. position:absolute;
  1749. align-self:flex-start;
  1750. padding:0px 0px 0px 0px;
  1751. box-sizing:border-box;
  1752. width:100%;
  1753. }
  1754. #u146507_text {
  1755. border-width:0px;
  1756. white-space:nowrap;
  1757. text-transform:none;
  1758. }
  1759. #u146508 {
  1760. border-width:0px;
  1761. position:absolute;
  1762. left:0px;
  1763. top:0px;
  1764. width:0px;
  1765. height:0px;
  1766. }
  1767. #u146509_img {
  1768. border-width:0px;
  1769. position:absolute;
  1770. left:0px;
  1771. top:0px;
  1772. width:24px;
  1773. height:24px;
  1774. }
  1775. #u146509 {
  1776. border-width:0px;
  1777. position:absolute;
  1778. left:803px;
  1779. top:794px;
  1780. width:24px;
  1781. height:24px;
  1782. display:flex;
  1783. font-size:8px;
  1784. }
  1785. #u146509 .text {
  1786. position:absolute;
  1787. align-self:center;
  1788. padding:2px 2px 2px 2px;
  1789. box-sizing:border-box;
  1790. width:100%;
  1791. }
  1792. #u146509_text {
  1793. border-width:0px;
  1794. word-wrap:break-word;
  1795. text-transform:none;
  1796. }
  1797. #u146510_div {
  1798. border-width:0px;
  1799. position:absolute;
  1800. left:0px;
  1801. top:0px;
  1802. width:25px;
  1803. height:17px;
  1804. background:inherit;
  1805. background-color:rgba(255, 255, 255, 0);
  1806. border:none;
  1807. border-radius:0px;
  1808. -moz-box-shadow:none;
  1809. -webkit-box-shadow:none;
  1810. box-shadow:none;
  1811. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1812. font-weight:400;
  1813. font-style:normal;
  1814. font-size:12px;
  1815. }
  1816. #u146510 {
  1817. border-width:0px;
  1818. position:absolute;
  1819. left:803px;
  1820. top:819px;
  1821. width:25px;
  1822. height:17px;
  1823. display:flex;
  1824. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1825. font-weight:400;
  1826. font-style:normal;
  1827. font-size:12px;
  1828. }
  1829. #u146510 .text {
  1830. position:absolute;
  1831. align-self:flex-start;
  1832. padding:0px 0px 0px 0px;
  1833. box-sizing:border-box;
  1834. width:100%;
  1835. }
  1836. #u146510_text {
  1837. border-width:0px;
  1838. white-space:nowrap;
  1839. text-transform:none;
  1840. }
  1841. #u146511_div {
  1842. border-width:0px;
  1843. position:absolute;
  1844. left:0px;
  1845. top:0px;
  1846. width:375px;
  1847. height:681px;
  1848. background:inherit;
  1849. background-color:rgba(242, 242, 242, 0.462745098039216);
  1850. border:none;
  1851. border-radius:0px;
  1852. -moz-box-shadow:none;
  1853. -webkit-box-shadow:none;
  1854. box-shadow:none;
  1855. }
  1856. #u146511 {
  1857. border-width:0px;
  1858. position:absolute;
  1859. left:493px;
  1860. top:107px;
  1861. width:375px;
  1862. height:681px;
  1863. display:flex;
  1864. }
  1865. #u146511 .text {
  1866. position:absolute;
  1867. align-self:center;
  1868. padding:2px 2px 2px 2px;
  1869. box-sizing:border-box;
  1870. width:100%;
  1871. }
  1872. #u146511_text {
  1873. border-width:0px;
  1874. word-wrap:break-word;
  1875. text-transform:none;
  1876. visibility:hidden;
  1877. }
  1878. #u146512 {
  1879. border-width:0px;
  1880. position:absolute;
  1881. left:0px;
  1882. top:0px;
  1883. width:0px;
  1884. height:0px;
  1885. }
  1886. #u146513_img {
  1887. border-width:0px;
  1888. position:absolute;
  1889. left:0px;
  1890. top:0px;
  1891. width:24px;
  1892. height:24px;
  1893. }
  1894. #u146513 {
  1895. border-width:0px;
  1896. position:absolute;
  1897. left:715px;
  1898. top:792px;
  1899. width:24px;
  1900. height:24px;
  1901. display:flex;
  1902. font-size:8px;
  1903. }
  1904. #u146513 .text {
  1905. position:absolute;
  1906. align-self:center;
  1907. padding:2px 2px 2px 2px;
  1908. box-sizing:border-box;
  1909. width:100%;
  1910. }
  1911. #u146513_text {
  1912. border-width:0px;
  1913. word-wrap:break-word;
  1914. text-transform:none;
  1915. }
  1916. #u146514_div {
  1917. border-width:0px;
  1918. position:absolute;
  1919. left:0px;
  1920. top:0px;
  1921. width:37px;
  1922. height:17px;
  1923. background:inherit;
  1924. background-color:rgba(255, 255, 255, 0);
  1925. border:none;
  1926. border-radius:0px;
  1927. -moz-box-shadow:none;
  1928. -webkit-box-shadow:none;
  1929. box-shadow:none;
  1930. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1931. font-weight:400;
  1932. font-style:normal;
  1933. font-size:12px;
  1934. }
  1935. #u146514 {
  1936. border-width:0px;
  1937. position:absolute;
  1938. left:709px;
  1939. top:817px;
  1940. width:37px;
  1941. height:17px;
  1942. display:flex;
  1943. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1944. font-weight:400;
  1945. font-style:normal;
  1946. font-size:12px;
  1947. }
  1948. #u146514 .text {
  1949. position:absolute;
  1950. align-self:flex-start;
  1951. padding:0px 0px 0px 0px;
  1952. box-sizing:border-box;
  1953. width:100%;
  1954. }
  1955. #u146514_text {
  1956. border-width:0px;
  1957. white-space:nowrap;
  1958. text-transform:none;
  1959. }
  1960. #u146515 {
  1961. border-width:0px;
  1962. position:absolute;
  1963. left:0px;
  1964. top:0px;
  1965. width:0px;
  1966. height:0px;
  1967. }
  1968. #u146516_img {
  1969. border-width:0px;
  1970. position:absolute;
  1971. left:0px;
  1972. top:0px;
  1973. width:24px;
  1974. height:24px;
  1975. }
  1976. #u146516 {
  1977. border-width:0px;
  1978. position:absolute;
  1979. left:621px;
  1980. top:792px;
  1981. width:24px;
  1982. height:24px;
  1983. display:flex;
  1984. font-size:8px;
  1985. }
  1986. #u146516 .text {
  1987. position:absolute;
  1988. align-self:center;
  1989. padding:2px 2px 2px 2px;
  1990. box-sizing:border-box;
  1991. width:100%;
  1992. }
  1993. #u146516_text {
  1994. border-width:0px;
  1995. word-wrap:break-word;
  1996. text-transform:none;
  1997. }
  1998. #u146517_div {
  1999. border-width:0px;
  2000. position:absolute;
  2001. left:0px;
  2002. top:0px;
  2003. width:37px;
  2004. height:17px;
  2005. background:inherit;
  2006. background-color:rgba(255, 255, 255, 0);
  2007. border:none;
  2008. border-radius:0px;
  2009. -moz-box-shadow:none;
  2010. -webkit-box-shadow:none;
  2011. box-shadow:none;
  2012. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2013. font-weight:400;
  2014. font-style:normal;
  2015. font-size:12px;
  2016. }
  2017. #u146517 {
  2018. border-width:0px;
  2019. position:absolute;
  2020. left:615px;
  2021. top:817px;
  2022. width:37px;
  2023. height:17px;
  2024. display:flex;
  2025. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2026. font-weight:400;
  2027. font-style:normal;
  2028. font-size:12px;
  2029. }
  2030. #u146517 .text {
  2031. position:absolute;
  2032. align-self:flex-start;
  2033. padding:0px 0px 0px 0px;
  2034. box-sizing:border-box;
  2035. width:100%;
  2036. }
  2037. #u146517_text {
  2038. border-width:0px;
  2039. white-space:nowrap;
  2040. text-transform:none;
  2041. }
  2042. #u146518_div {
  2043. border-width:0px;
  2044. position:absolute;
  2045. left:0px;
  2046. top:0px;
  2047. width:375px;
  2048. height:732px;
  2049. background:inherit;
  2050. background-color:rgba(242, 242, 242, 0.996078431372549);
  2051. border:none;
  2052. border-top:0px;
  2053. border-radius:28px;
  2054. border-top-left-radius:0px;
  2055. border-top-right-radius:0px;
  2056. -moz-box-shadow:none;
  2057. -webkit-box-shadow:none;
  2058. box-shadow:none;
  2059. }
  2060. #u146518 {
  2061. border-width:0px;
  2062. position:absolute;
  2063. left:492px;
  2064. top:107px;
  2065. width:375px;
  2066. height:732px;
  2067. display:flex;
  2068. }
  2069. #u146518 .text {
  2070. position:absolute;
  2071. align-self:center;
  2072. padding:2px 2px 2px 2px;
  2073. box-sizing:border-box;
  2074. width:100%;
  2075. }
  2076. #u146518_text {
  2077. border-width:0px;
  2078. word-wrap:break-word;
  2079. text-transform:none;
  2080. visibility:hidden;
  2081. }
  2082. #u146519_img {
  2083. border-width:0px;
  2084. position:absolute;
  2085. left:0px;
  2086. top:0px;
  2087. width:375px;
  2088. height:44px;
  2089. }
  2090. #u146519 {
  2091. border-width:0px;
  2092. position:absolute;
  2093. left:492px;
  2094. top:24px;
  2095. width:375px;
  2096. height:44px;
  2097. display:flex;
  2098. }
  2099. #u146519 .text {
  2100. position:absolute;
  2101. align-self:center;
  2102. padding:2px 2px 2px 2px;
  2103. box-sizing:border-box;
  2104. width:100%;
  2105. }
  2106. #u146519_text {
  2107. border-width:0px;
  2108. word-wrap:break-word;
  2109. text-transform:none;
  2110. visibility:hidden;
  2111. }
  2112. #u146520 {
  2113. border-width:0px;
  2114. position:absolute;
  2115. left:0px;
  2116. top:0px;
  2117. width:0px;
  2118. height:0px;
  2119. }
  2120. #u146521_div {
  2121. border-width:0px;
  2122. position:absolute;
  2123. left:0px;
  2124. top:0px;
  2125. width:88px;
  2126. height:32px;
  2127. background:inherit;
  2128. background-color:rgba(255, 255, 255, 1);
  2129. box-sizing:border-box;
  2130. border-width:1px;
  2131. border-style:solid;
  2132. border-color:rgba(242, 242, 242, 1);
  2133. border-radius:33px;
  2134. -moz-box-shadow:none;
  2135. -webkit-box-shadow:none;
  2136. box-shadow:none;
  2137. }
  2138. #u146521 {
  2139. border-width:0px;
  2140. position:absolute;
  2141. left:772px;
  2142. top:71px;
  2143. width:88px;
  2144. height:32px;
  2145. display:flex;
  2146. }
  2147. #u146521 .text {
  2148. position:absolute;
  2149. align-self:center;
  2150. padding:2px 2px 2px 2px;
  2151. box-sizing:border-box;
  2152. width:100%;
  2153. }
  2154. #u146521_text {
  2155. border-width:0px;
  2156. word-wrap:break-word;
  2157. text-transform:none;
  2158. visibility:hidden;
  2159. }
  2160. #u146522 {
  2161. border-width:0px;
  2162. position:absolute;
  2163. left:0px;
  2164. top:0px;
  2165. width:0px;
  2166. height:0px;
  2167. }
  2168. #u146523_img {
  2169. border-width:0px;
  2170. position:absolute;
  2171. left:0px;
  2172. top:0px;
  2173. width:18px;
  2174. height:18px;
  2175. }
  2176. #u146523 {
  2177. border-width:0px;
  2178. position:absolute;
  2179. left:835px;
  2180. top:78px;
  2181. width:18px;
  2182. height:18px;
  2183. display:flex;
  2184. }
  2185. #u146523 .text {
  2186. position:absolute;
  2187. align-self:center;
  2188. padding:2px 2px 2px 2px;
  2189. box-sizing:border-box;
  2190. width:100%;
  2191. }
  2192. #u146523_text {
  2193. border-width:0px;
  2194. word-wrap:break-word;
  2195. text-transform:none;
  2196. visibility:hidden;
  2197. }
  2198. #u146524_img {
  2199. border-width:0px;
  2200. position:absolute;
  2201. left:0px;
  2202. top:0px;
  2203. width:6px;
  2204. height:6px;
  2205. }
  2206. #u146524 {
  2207. border-width:0px;
  2208. position:absolute;
  2209. left:841px;
  2210. top:84px;
  2211. width:6px;
  2212. height:6px;
  2213. display:flex;
  2214. }
  2215. #u146524 .text {
  2216. position:absolute;
  2217. align-self:center;
  2218. padding:2px 2px 2px 2px;
  2219. box-sizing:border-box;
  2220. width:100%;
  2221. }
  2222. #u146524_text {
  2223. border-width:0px;
  2224. word-wrap:break-word;
  2225. text-transform:none;
  2226. visibility:hidden;
  2227. }
  2228. #u146525 {
  2229. border-width:0px;
  2230. position:absolute;
  2231. left:0px;
  2232. top:0px;
  2233. width:0px;
  2234. height:0px;
  2235. }
  2236. #u146526_img {
  2237. border-width:0px;
  2238. position:absolute;
  2239. left:0px;
  2240. top:0px;
  2241. width:5px;
  2242. height:5px;
  2243. }
  2244. #u146526 {
  2245. border-width:0px;
  2246. position:absolute;
  2247. left:786px;
  2248. top:85px;
  2249. width:5px;
  2250. height:5px;
  2251. display:flex;
  2252. }
  2253. #u146526 .text {
  2254. position:absolute;
  2255. align-self:center;
  2256. padding:2px 2px 2px 2px;
  2257. box-sizing:border-box;
  2258. width:100%;
  2259. }
  2260. #u146526_text {
  2261. border-width:0px;
  2262. word-wrap:break-word;
  2263. text-transform:none;
  2264. visibility:hidden;
  2265. }
  2266. #u146527_img {
  2267. border-width:0px;
  2268. position:absolute;
  2269. left:0px;
  2270. top:0px;
  2271. width:5px;
  2272. height:5px;
  2273. }
  2274. #u146527 {
  2275. border-width:0px;
  2276. position:absolute;
  2277. left:802px;
  2278. top:85px;
  2279. width:5px;
  2280. height:5px;
  2281. display:flex;
  2282. }
  2283. #u146527 .text {
  2284. position:absolute;
  2285. align-self:center;
  2286. padding:2px 2px 2px 2px;
  2287. box-sizing:border-box;
  2288. width:100%;
  2289. }
  2290. #u146527_text {
  2291. border-width:0px;
  2292. word-wrap:break-word;
  2293. text-transform:none;
  2294. visibility:hidden;
  2295. }
  2296. #u146528_img {
  2297. border-width:0px;
  2298. position:absolute;
  2299. left:0px;
  2300. top:0px;
  2301. width:7px;
  2302. height:7px;
  2303. }
  2304. #u146528 {
  2305. border-width:0px;
  2306. position:absolute;
  2307. left:793px;
  2308. top:84px;
  2309. width:7px;
  2310. height:7px;
  2311. display:flex;
  2312. }
  2313. #u146528 .text {
  2314. position:absolute;
  2315. align-self:center;
  2316. padding:2px 2px 2px 2px;
  2317. box-sizing:border-box;
  2318. width:100%;
  2319. }
  2320. #u146528_text {
  2321. border-width:0px;
  2322. word-wrap:break-word;
  2323. text-transform:none;
  2324. visibility:hidden;
  2325. }
  2326. #u146529_img {
  2327. border-width:0px;
  2328. position:absolute;
  2329. left:0px;
  2330. top:0px;
  2331. width:19px;
  2332. height:2px;
  2333. }
  2334. #u146529 {
  2335. border-width:0px;
  2336. position:absolute;
  2337. left:810px;
  2338. top:87px;
  2339. width:18px;
  2340. height:1px;
  2341. display:flex;
  2342. -webkit-transform:rotate(90deg);
  2343. -moz-transform:rotate(90deg);
  2344. -ms-transform:rotate(90deg);
  2345. transform:rotate(90deg);
  2346. }
  2347. #u146529 .text {
  2348. position:absolute;
  2349. align-self:center;
  2350. padding:2px 2px 2px 2px;
  2351. box-sizing:border-box;
  2352. width:100%;
  2353. }
  2354. #u146529_text {
  2355. border-width:0px;
  2356. word-wrap:break-word;
  2357. text-transform:none;
  2358. visibility:hidden;
  2359. }
  2360. #u146530_div {
  2361. border-width:0px;
  2362. position:absolute;
  2363. left:0px;
  2364. top:0px;
  2365. width:12px;
  2366. height:12px;
  2367. background:inherit;
  2368. background-color:rgba(255, 255, 255, 0);
  2369. box-sizing:border-box;
  2370. border-width:2px;
  2371. border-style:solid;
  2372. border-color:rgba(51, 51, 51, 1);
  2373. border-right:0px;
  2374. border-bottom:0px;
  2375. border-radius:0px;
  2376. border-top-right-radius:0px;
  2377. border-bottom-left-radius:0px;
  2378. -moz-box-shadow:none;
  2379. -webkit-box-shadow:none;
  2380. box-shadow:none;
  2381. }
  2382. #u146530 {
  2383. border-width:0px;
  2384. position:absolute;
  2385. left:507px;
  2386. top:81px;
  2387. width:12px;
  2388. height:12px;
  2389. display:flex;
  2390. -webkit-transform:rotate(315deg);
  2391. -moz-transform:rotate(315deg);
  2392. -ms-transform:rotate(315deg);
  2393. transform:rotate(315deg);
  2394. }
  2395. #u146530 .text {
  2396. position:absolute;
  2397. align-self:center;
  2398. padding:2px 2px 2px 2px;
  2399. box-sizing:border-box;
  2400. width:100%;
  2401. }
  2402. #u146530_text {
  2403. border-width:0px;
  2404. word-wrap:break-word;
  2405. text-transform:none;
  2406. visibility:hidden;
  2407. }
  2408. #u146531_div {
  2409. border-width:0px;
  2410. position:absolute;
  2411. left:0px;
  2412. top:0px;
  2413. width:33px;
  2414. height:22px;
  2415. background:inherit;
  2416. background-color:rgba(255, 255, 255, 0);
  2417. border:none;
  2418. border-radius:0px;
  2419. -moz-box-shadow:none;
  2420. -webkit-box-shadow:none;
  2421. box-shadow:none;
  2422. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2423. font-weight:400;
  2424. font-style:normal;
  2425. font-size:16px;
  2426. color:#000000;
  2427. }
  2428. #u146531 {
  2429. border-width:0px;
  2430. position:absolute;
  2431. left:531px;
  2432. top:76px;
  2433. width:33px;
  2434. height:22px;
  2435. display:flex;
  2436. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2437. font-weight:400;
  2438. font-style:normal;
  2439. font-size:16px;
  2440. color:#000000;
  2441. }
  2442. #u146531 .text {
  2443. position:absolute;
  2444. align-self:flex-start;
  2445. padding:0px 0px 0px 0px;
  2446. box-sizing:border-box;
  2447. width:100%;
  2448. }
  2449. #u146531_text {
  2450. border-width:0px;
  2451. white-space:nowrap;
  2452. text-transform:none;
  2453. }
  2454. #u146532_div {
  2455. border-width:0px;
  2456. position:absolute;
  2457. left:0px;
  2458. top:0px;
  2459. width:375px;
  2460. height:334px;
  2461. background:inherit;
  2462. background-color:rgba(255, 255, 255, 1);
  2463. border:none;
  2464. border-radius:0px;
  2465. -moz-box-shadow:none;
  2466. -webkit-box-shadow:none;
  2467. box-shadow:none;
  2468. }
  2469. #u146532 {
  2470. border-width:0px;
  2471. position:absolute;
  2472. left:492px;
  2473. top:107px;
  2474. width:375px;
  2475. height:334px;
  2476. display:flex;
  2477. }
  2478. #u146532 .text {
  2479. position:absolute;
  2480. align-self:center;
  2481. padding:2px 2px 2px 2px;
  2482. box-sizing:border-box;
  2483. width:100%;
  2484. }
  2485. #u146532_text {
  2486. border-width:0px;
  2487. word-wrap:break-word;
  2488. text-transform:none;
  2489. visibility:hidden;
  2490. }
  2491. #u146533_div {
  2492. border-width:0px;
  2493. position:absolute;
  2494. left:0px;
  2495. top:0px;
  2496. width:215px;
  2497. height:120px;
  2498. background:inherit;
  2499. background-color:rgba(255, 255, 255, 0);
  2500. border:none;
  2501. border-left:0px;
  2502. border-top:0px;
  2503. border-right:0px;
  2504. border-radius:0px;
  2505. border-bottom-right-radius:0px;
  2506. border-bottom-left-radius:0px;
  2507. -moz-box-shadow:none;
  2508. -webkit-box-shadow:none;
  2509. box-shadow:none;
  2510. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2511. font-weight:400;
  2512. font-style:normal;
  2513. font-size:14px;
  2514. line-height:30px;
  2515. }
  2516. #u146533 {
  2517. border-width:0px;
  2518. position:absolute;
  2519. left:508px;
  2520. top:165px;
  2521. width:215px;
  2522. height:120px;
  2523. display:flex;
  2524. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2525. font-weight:400;
  2526. font-style:normal;
  2527. font-size:14px;
  2528. line-height:30px;
  2529. }
  2530. #u146533 .text {
  2531. position:absolute;
  2532. align-self:flex-start;
  2533. padding:0px 0px 0px 0px;
  2534. box-sizing:border-box;
  2535. width:100%;
  2536. }
  2537. #u146533_text {
  2538. border-width:0px;
  2539. white-space:nowrap;
  2540. text-transform:none;
  2541. }
  2542. #u146534_div {
  2543. border-width:0px;
  2544. position:absolute;
  2545. left:0px;
  2546. top:0px;
  2547. width:253px;
  2548. height:60px;
  2549. background:inherit;
  2550. background-color:rgba(255, 255, 255, 0);
  2551. border:none;
  2552. border-left:0px;
  2553. border-top:0px;
  2554. border-right:0px;
  2555. border-radius:0px;
  2556. border-bottom-right-radius:0px;
  2557. border-bottom-left-radius:0px;
  2558. -moz-box-shadow:none;
  2559. -webkit-box-shadow:none;
  2560. box-shadow:none;
  2561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2562. font-weight:400;
  2563. font-style:normal;
  2564. font-size:14px;
  2565. line-height:30px;
  2566. }
  2567. #u146534 {
  2568. border-width:0px;
  2569. position:absolute;
  2570. left:508px;
  2571. top:294px;
  2572. width:253px;
  2573. height:60px;
  2574. display:flex;
  2575. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2576. font-weight:400;
  2577. font-style:normal;
  2578. font-size:14px;
  2579. line-height:30px;
  2580. }
  2581. #u146534 .text {
  2582. position:absolute;
  2583. align-self:flex-start;
  2584. padding:0px 0px 0px 0px;
  2585. box-sizing:border-box;
  2586. width:100%;
  2587. }
  2588. #u146534_text {
  2589. border-width:0px;
  2590. white-space:nowrap;
  2591. text-transform:none;
  2592. }
  2593. #u146535_img {
  2594. border-width:0px;
  2595. position:absolute;
  2596. left:0px;
  2597. top:0px;
  2598. width:79px;
  2599. height:62px;
  2600. }
  2601. #u146535 {
  2602. border-width:0px;
  2603. position:absolute;
  2604. left:508px;
  2605. top:364px;
  2606. width:79px;
  2607. height:62px;
  2608. display:flex;
  2609. }
  2610. #u146535 .text {
  2611. position:absolute;
  2612. align-self:center;
  2613. padding:2px 2px 2px 2px;
  2614. box-sizing:border-box;
  2615. width:100%;
  2616. }
  2617. #u146535_text {
  2618. border-width:0px;
  2619. word-wrap:break-word;
  2620. text-transform:none;
  2621. visibility:hidden;
  2622. }
  2623. #u146536_img {
  2624. border-width:0px;
  2625. position:absolute;
  2626. left:0px;
  2627. top:0px;
  2628. width:79px;
  2629. height:62px;
  2630. }
  2631. #u146536 {
  2632. border-width:0px;
  2633. position:absolute;
  2634. left:597px;
  2635. top:364px;
  2636. width:79px;
  2637. height:62px;
  2638. display:flex;
  2639. }
  2640. #u146536 .text {
  2641. position:absolute;
  2642. align-self:center;
  2643. padding:2px 2px 2px 2px;
  2644. box-sizing:border-box;
  2645. width:100%;
  2646. }
  2647. #u146536_text {
  2648. border-width:0px;
  2649. word-wrap:break-word;
  2650. text-transform:none;
  2651. visibility:hidden;
  2652. }
  2653. #u146537_img {
  2654. border-width:0px;
  2655. position:absolute;
  2656. left:0px;
  2657. top:0px;
  2658. width:79px;
  2659. height:62px;
  2660. }
  2661. #u146537 {
  2662. border-width:0px;
  2663. position:absolute;
  2664. left:686px;
  2665. top:364px;
  2666. width:79px;
  2667. height:62px;
  2668. display:flex;
  2669. }
  2670. #u146537 .text {
  2671. position:absolute;
  2672. align-self:center;
  2673. padding:2px 2px 2px 2px;
  2674. box-sizing:border-box;
  2675. width:100%;
  2676. }
  2677. #u146537_text {
  2678. border-width:0px;
  2679. word-wrap:break-word;
  2680. text-transform:none;
  2681. visibility:hidden;
  2682. }
  2683. #u146538_div {
  2684. border-width:0px;
  2685. position:absolute;
  2686. left:0px;
  2687. top:0px;
  2688. width:22px;
  2689. height:13px;
  2690. background:inherit;
  2691. background-color:rgba(0, 191, 191, 1);
  2692. border:none;
  2693. border-radius:17px;
  2694. -moz-box-shadow:none;
  2695. -webkit-box-shadow:none;
  2696. box-shadow:none;
  2697. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2698. font-weight:400;
  2699. font-style:normal;
  2700. font-size:9px;
  2701. color:#FFFFFF;
  2702. text-align:center;
  2703. }
  2704. #u146538 {
  2705. border-width:0px;
  2706. position:absolute;
  2707. left:720px;
  2708. top:261px;
  2709. width:22px;
  2710. height:13px;
  2711. display:flex;
  2712. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2713. font-weight:400;
  2714. font-style:normal;
  2715. font-size:9px;
  2716. color:#FFFFFF;
  2717. text-align:center;
  2718. }
  2719. #u146538 .text {
  2720. position:absolute;
  2721. align-self:center;
  2722. padding:0px 0px 0px 0px;
  2723. box-sizing:border-box;
  2724. width:100%;
  2725. }
  2726. #u146538_text {
  2727. border-width:0px;
  2728. word-wrap:break-word;
  2729. text-transform:none;
  2730. }
  2731. #u146539 {
  2732. border-width:0px;
  2733. position:absolute;
  2734. left:0px;
  2735. top:0px;
  2736. width:0px;
  2737. height:0px;
  2738. }
  2739. #u146540_div {
  2740. border-width:0px;
  2741. position:absolute;
  2742. left:0px;
  2743. top:0px;
  2744. width:358px;
  2745. height:280px;
  2746. background:inherit;
  2747. background-color:rgba(255, 255, 255, 1);
  2748. border:none;
  2749. border-radius:6px;
  2750. -moz-box-shadow:none;
  2751. -webkit-box-shadow:none;
  2752. box-shadow:none;
  2753. }
  2754. #u146540 {
  2755. border-width:0px;
  2756. position:absolute;
  2757. left:502px;
  2758. top:451px;
  2759. width:358px;
  2760. height:280px;
  2761. display:flex;
  2762. }
  2763. #u146540 .text {
  2764. position:absolute;
  2765. align-self:center;
  2766. padding:2px 2px 2px 2px;
  2767. box-sizing:border-box;
  2768. width:100%;
  2769. }
  2770. #u146540_text {
  2771. border-width:0px;
  2772. word-wrap:break-word;
  2773. text-transform:none;
  2774. visibility:hidden;
  2775. }
  2776. #u146541_div {
  2777. border-width:0px;
  2778. position:absolute;
  2779. left:0px;
  2780. top:0px;
  2781. width:57px;
  2782. height:30px;
  2783. background:inherit;
  2784. background-color:rgba(255, 255, 255, 0);
  2785. border:none;
  2786. border-left:0px;
  2787. border-top:0px;
  2788. border-right:0px;
  2789. border-radius:0px;
  2790. border-bottom-right-radius:0px;
  2791. border-bottom-left-radius:0px;
  2792. -moz-box-shadow:none;
  2793. -webkit-box-shadow:none;
  2794. box-shadow:none;
  2795. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2796. font-weight:400;
  2797. font-style:normal;
  2798. font-size:14px;
  2799. line-height:30px;
  2800. }
  2801. #u146541 {
  2802. border-width:0px;
  2803. position:absolute;
  2804. left:516px;
  2805. top:461px;
  2806. width:57px;
  2807. height:30px;
  2808. display:flex;
  2809. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2810. font-weight:400;
  2811. font-style:normal;
  2812. font-size:14px;
  2813. line-height:30px;
  2814. }
  2815. #u146541 .text {
  2816. position:absolute;
  2817. align-self:flex-start;
  2818. padding:0px 0px 0px 0px;
  2819. box-sizing:border-box;
  2820. width:100%;
  2821. }
  2822. #u146541_text {
  2823. border-width:0px;
  2824. white-space:nowrap;
  2825. text-transform:none;
  2826. }
  2827. #u146542_div {
  2828. border-width:0px;
  2829. position:absolute;
  2830. left:0px;
  2831. top:0px;
  2832. width:107px;
  2833. height:30px;
  2834. background:inherit;
  2835. background-color:rgba(255, 255, 255, 0);
  2836. border:none;
  2837. border-radius:0px;
  2838. -moz-box-shadow:none;
  2839. -webkit-box-shadow:none;
  2840. box-shadow:none;
  2841. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2842. font-weight:400;
  2843. font-style:normal;
  2844. font-size:12px;
  2845. color:#7F7F7F;
  2846. text-align:right;
  2847. line-height:30px;
  2848. }
  2849. #u146542 {
  2850. border-width:0px;
  2851. position:absolute;
  2852. left:740px;
  2853. top:571px;
  2854. width:107px;
  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. text-align:right;
  2863. line-height:30px;
  2864. }
  2865. #u146542 .text {
  2866. position:absolute;
  2867. align-self:flex-start;
  2868. padding:0px 0px 0px 0px;
  2869. box-sizing:border-box;
  2870. width:100%;
  2871. }
  2872. #u146542_text {
  2873. border-width:0px;
  2874. white-space:nowrap;
  2875. text-transform:none;
  2876. }
  2877. #u146543_img {
  2878. border-width:0px;
  2879. position:absolute;
  2880. left:0px;
  2881. top:0px;
  2882. width:2px;
  2883. height:201px;
  2884. }
  2885. #u146543 {
  2886. border-width:0px;
  2887. position:absolute;
  2888. left:526px;
  2889. top:501px;
  2890. width:1px;
  2891. height:200px;
  2892. display:flex;
  2893. }
  2894. #u146543 .text {
  2895. position:absolute;
  2896. align-self:center;
  2897. padding:2px 2px 2px 2px;
  2898. box-sizing:border-box;
  2899. width:100%;
  2900. }
  2901. #u146543_text {
  2902. border-width:0px;
  2903. word-wrap:break-word;
  2904. text-transform:none;
  2905. visibility:hidden;
  2906. }
  2907. #u146544_div {
  2908. border-width:0px;
  2909. position:absolute;
  2910. left:0px;
  2911. top:0px;
  2912. width:97px;
  2913. height:30px;
  2914. background:inherit;
  2915. background-color:rgba(255, 255, 255, 0);
  2916. border:none;
  2917. border-left:0px;
  2918. border-top:0px;
  2919. border-right:0px;
  2920. border-radius:0px;
  2921. border-bottom-right-radius:0px;
  2922. border-bottom-left-radius:0px;
  2923. -moz-box-shadow:none;
  2924. -webkit-box-shadow:none;
  2925. box-shadow:none;
  2926. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2927. font-weight:400;
  2928. font-style:normal;
  2929. font-size:14px;
  2930. color:#000000;
  2931. line-height:30px;
  2932. }
  2933. #u146544 {
  2934. border-width:0px;
  2935. position:absolute;
  2936. left:496px;
  2937. top:501px;
  2938. width:97px;
  2939. height:30px;
  2940. display:flex;
  2941. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2942. font-weight:400;
  2943. font-style:normal;
  2944. font-size:14px;
  2945. color:#000000;
  2946. line-height:30px;
  2947. }
  2948. #u146544 .text {
  2949. position:absolute;
  2950. align-self:flex-start;
  2951. padding:0px 0px 0px 0px;
  2952. box-sizing:border-box;
  2953. width:100%;
  2954. }
  2955. #u146544_text {
  2956. border-width:0px;
  2957. white-space:nowrap;
  2958. text-transform:none;
  2959. }
  2960. #u146545_div {
  2961. border-width:0px;
  2962. position:absolute;
  2963. left:0px;
  2964. top:0px;
  2965. width:144px;
  2966. height:30px;
  2967. background:inherit;
  2968. background-color:rgba(255, 255, 255, 0);
  2969. border:none;
  2970. border-radius:0px;
  2971. -moz-box-shadow:none;
  2972. -webkit-box-shadow:none;
  2973. box-shadow:none;
  2974. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2975. font-weight:400;
  2976. font-style:normal;
  2977. font-size:12px;
  2978. color:#AAAAAA;
  2979. line-height:30px;
  2980. }
  2981. #u146545 {
  2982. border-width:0px;
  2983. position:absolute;
  2984. left:538px;
  2985. top:531px;
  2986. width:144px;
  2987. height:30px;
  2988. display:flex;
  2989. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2990. font-weight:400;
  2991. font-style:normal;
  2992. font-size:12px;
  2993. color:#AAAAAA;
  2994. line-height:30px;
  2995. }
  2996. #u146545 .text {
  2997. position:absolute;
  2998. align-self:flex-start;
  2999. padding:0px 0px 0px 0px;
  3000. box-sizing:border-box;
  3001. width:100%;
  3002. }
  3003. #u146545_text {
  3004. border-width:0px;
  3005. white-space:nowrap;
  3006. text-transform:none;
  3007. }
  3008. #u146546_div {
  3009. border-width:0px;
  3010. position:absolute;
  3011. left:0px;
  3012. top:0px;
  3013. width:69px;
  3014. height:30px;
  3015. background:inherit;
  3016. background-color:rgba(255, 255, 255, 0);
  3017. border:none;
  3018. border-left:0px;
  3019. border-top:0px;
  3020. border-right:0px;
  3021. border-radius:0px;
  3022. border-bottom-right-radius:0px;
  3023. border-bottom-left-radius:0px;
  3024. -moz-box-shadow:none;
  3025. -webkit-box-shadow:none;
  3026. box-shadow:none;
  3027. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3028. font-weight:400;
  3029. font-style:normal;
  3030. font-size:14px;
  3031. color:#000000;
  3032. line-height:30px;
  3033. }
  3034. #u146546 {
  3035. border-width:0px;
  3036. position:absolute;
  3037. left:496px;
  3038. top:571px;
  3039. width:69px;
  3040. height:30px;
  3041. display:flex;
  3042. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3043. font-weight:400;
  3044. font-style:normal;
  3045. font-size:14px;
  3046. color:#000000;
  3047. line-height:30px;
  3048. }
  3049. #u146546 .text {
  3050. position:absolute;
  3051. align-self:flex-start;
  3052. padding:0px 0px 0px 0px;
  3053. box-sizing:border-box;
  3054. width:100%;
  3055. }
  3056. #u146546_text {
  3057. border-width:0px;
  3058. white-space:nowrap;
  3059. text-transform:none;
  3060. }
  3061. #u146547_div {
  3062. border-width:0px;
  3063. position:absolute;
  3064. left:0px;
  3065. top:0px;
  3066. width:169px;
  3067. height:30px;
  3068. background:inherit;
  3069. background-color:rgba(255, 255, 255, 0);
  3070. border:none;
  3071. border-radius:0px;
  3072. -moz-box-shadow:none;
  3073. -webkit-box-shadow:none;
  3074. box-shadow:none;
  3075. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3076. font-weight:400;
  3077. font-style:normal;
  3078. font-size:12px;
  3079. line-height:30px;
  3080. }
  3081. #u146547 {
  3082. border-width:0px;
  3083. position:absolute;
  3084. left:538px;
  3085. top:601px;
  3086. width:169px;
  3087. height:30px;
  3088. display:flex;
  3089. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3090. font-weight:400;
  3091. font-style:normal;
  3092. font-size:12px;
  3093. line-height:30px;
  3094. }
  3095. #u146547 .text {
  3096. position:absolute;
  3097. align-self:flex-start;
  3098. padding:0px 0px 0px 0px;
  3099. box-sizing:border-box;
  3100. width:100%;
  3101. }
  3102. #u146547_text {
  3103. border-width:0px;
  3104. white-space:nowrap;
  3105. text-transform:none;
  3106. }
  3107. #u146548_div {
  3108. border-width:0px;
  3109. position:absolute;
  3110. left:0px;
  3111. top:0px;
  3112. width:69px;
  3113. height:30px;
  3114. background:inherit;
  3115. background-color:rgba(255, 255, 255, 0);
  3116. border:none;
  3117. border-left:0px;
  3118. border-top:0px;
  3119. border-right:0px;
  3120. border-radius:0px;
  3121. border-bottom-right-radius:0px;
  3122. border-bottom-left-radius:0px;
  3123. -moz-box-shadow:none;
  3124. -webkit-box-shadow:none;
  3125. box-shadow:none;
  3126. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3127. font-weight:400;
  3128. font-style:normal;
  3129. font-size:14px;
  3130. color:#AAAAAA;
  3131. line-height:30px;
  3132. }
  3133. #u146548 {
  3134. border-width:0px;
  3135. position:absolute;
  3136. left:496px;
  3137. top:651px;
  3138. width:69px;
  3139. height:30px;
  3140. display:flex;
  3141. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3142. font-weight:400;
  3143. font-style:normal;
  3144. font-size:14px;
  3145. color:#AAAAAA;
  3146. line-height:30px;
  3147. }
  3148. #u146548 .text {
  3149. position:absolute;
  3150. align-self:flex-start;
  3151. padding:0px 0px 0px 0px;
  3152. box-sizing:border-box;
  3153. width:100%;
  3154. }
  3155. #u146548_text {
  3156. border-width:0px;
  3157. white-space:nowrap;
  3158. text-transform:none;
  3159. }
  3160. #u146549_div {
  3161. border-width:0px;
  3162. position:absolute;
  3163. left:0px;
  3164. top:0px;
  3165. width:61px;
  3166. height:30px;
  3167. background:inherit;
  3168. background-color:rgba(255, 255, 255, 0);
  3169. border:none;
  3170. border-radius:0px;
  3171. -moz-box-shadow:none;
  3172. -webkit-box-shadow:none;
  3173. box-shadow:none;
  3174. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3175. font-weight:400;
  3176. font-style:normal;
  3177. font-size:12px;
  3178. line-height:30px;
  3179. }
  3180. #u146549 {
  3181. border-width:0px;
  3182. position:absolute;
  3183. left:538px;
  3184. top:681px;
  3185. width:61px;
  3186. height:30px;
  3187. display:flex;
  3188. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3189. font-weight:400;
  3190. font-style:normal;
  3191. font-size:12px;
  3192. line-height:30px;
  3193. }
  3194. #u146549 .text {
  3195. position:absolute;
  3196. align-self:flex-start;
  3197. padding:0px 0px 0px 0px;
  3198. box-sizing:border-box;
  3199. width:100%;
  3200. }
  3201. #u146549_text {
  3202. border-width:0px;
  3203. white-space:nowrap;
  3204. text-transform:none;
  3205. }
  3206. #u146550_div {
  3207. border-width:0px;
  3208. position:absolute;
  3209. left:0px;
  3210. top:0px;
  3211. width:107px;
  3212. height:30px;
  3213. background:inherit;
  3214. background-color:rgba(255, 255, 255, 0);
  3215. border:none;
  3216. border-radius:0px;
  3217. -moz-box-shadow:none;
  3218. -webkit-box-shadow:none;
  3219. box-shadow:none;
  3220. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3221. font-weight:400;
  3222. font-style:normal;
  3223. font-size:12px;
  3224. color:#7F7F7F;
  3225. text-align:right;
  3226. line-height:30px;
  3227. }
  3228. #u146550 {
  3229. border-width:0px;
  3230. position:absolute;
  3231. left:740px;
  3232. top:501px;
  3233. width:107px;
  3234. height:30px;
  3235. display:flex;
  3236. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3237. font-weight:400;
  3238. font-style:normal;
  3239. font-size:12px;
  3240. color:#7F7F7F;
  3241. text-align:right;
  3242. line-height:30px;
  3243. }
  3244. #u146550 .text {
  3245. position:absolute;
  3246. align-self:flex-start;
  3247. padding:0px 0px 0px 0px;
  3248. box-sizing:border-box;
  3249. width:100%;
  3250. }
  3251. #u146550_text {
  3252. border-width:0px;
  3253. white-space:nowrap;
  3254. text-transform:none;
  3255. }
  3256. #u146551 {
  3257. border-width:0px;
  3258. position:absolute;
  3259. left:0px;
  3260. top:0px;
  3261. width:0px;
  3262. height:0px;
  3263. }
  3264. #u146552_div {
  3265. border-width:0px;
  3266. position:absolute;
  3267. left:0px;
  3268. top:0px;
  3269. width:375px;
  3270. height:60px;
  3271. background:inherit;
  3272. background-color:rgba(255, 255, 255, 1);
  3273. box-sizing:border-box;
  3274. border-width:1px;
  3275. border-style:solid;
  3276. border-color:rgba(242, 242, 242, 1);
  3277. border-radius:20px;
  3278. border-top-left-radius:0px;
  3279. border-top-right-radius:0px;
  3280. -moz-box-shadow:none;
  3281. -webkit-box-shadow:none;
  3282. box-shadow:none;
  3283. }
  3284. #u146552 {
  3285. border-width:0px;
  3286. position:absolute;
  3287. left:492px;
  3288. top:779px;
  3289. width:375px;
  3290. height:60px;
  3291. display:flex;
  3292. }
  3293. #u146552 .text {
  3294. position:absolute;
  3295. align-self:center;
  3296. padding:2px 2px 2px 2px;
  3297. box-sizing:border-box;
  3298. width:100%;
  3299. }
  3300. #u146552_text {
  3301. border-width:0px;
  3302. word-wrap:break-word;
  3303. text-transform:none;
  3304. visibility:hidden;
  3305. }
  3306. #u146553_div {
  3307. border-width:0px;
  3308. position:absolute;
  3309. left:0px;
  3310. top:0px;
  3311. width:160px;
  3312. height:40px;
  3313. background:inherit;
  3314. background-color:rgba(0, 137, 254, 1);
  3315. border:none;
  3316. border-radius:63px;
  3317. -moz-box-shadow:none;
  3318. -webkit-box-shadow:none;
  3319. box-shadow:none;
  3320. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3321. font-weight:400;
  3322. font-style:normal;
  3323. font-size:14px;
  3324. color:#FFFFFF;
  3325. }
  3326. #u146553 {
  3327. border-width:0px;
  3328. position:absolute;
  3329. left:687px;
  3330. top:789px;
  3331. width:160px;
  3332. height:40px;
  3333. display:flex;
  3334. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3335. font-weight:400;
  3336. font-style:normal;
  3337. font-size:14px;
  3338. color:#FFFFFF;
  3339. }
  3340. #u146553 .text {
  3341. position:absolute;
  3342. align-self:center;
  3343. padding:2px 2px 2px 2px;
  3344. box-sizing:border-box;
  3345. width:100%;
  3346. }
  3347. #u146553_text {
  3348. border-width:0px;
  3349. word-wrap:break-word;
  3350. text-transform:none;
  3351. }
  3352. #u146554_div {
  3353. border-width:0px;
  3354. position:absolute;
  3355. left:0px;
  3356. top:0px;
  3357. width:160px;
  3358. height:40px;
  3359. background:inherit;
  3360. background-color:rgba(255, 255, 255, 1);
  3361. box-sizing:border-box;
  3362. border-width:1px;
  3363. border-style:solid;
  3364. border-color:rgba(245, 154, 35, 1);
  3365. border-radius:63px;
  3366. -moz-box-shadow:none;
  3367. -webkit-box-shadow:none;
  3368. box-shadow:none;
  3369. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3370. font-weight:400;
  3371. font-style:normal;
  3372. font-size:14px;
  3373. color:#F59A23;
  3374. }
  3375. #u146554 {
  3376. border-width:0px;
  3377. position:absolute;
  3378. left:512px;
  3379. top:789px;
  3380. width:160px;
  3381. height:40px;
  3382. display:flex;
  3383. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3384. font-weight:400;
  3385. font-style:normal;
  3386. font-size:14px;
  3387. color:#F59A23;
  3388. }
  3389. #u146554 .text {
  3390. position:absolute;
  3391. align-self:center;
  3392. padding:2px 2px 2px 2px;
  3393. box-sizing:border-box;
  3394. width:100%;
  3395. }
  3396. #u146554_text {
  3397. border-width:0px;
  3398. word-wrap:break-word;
  3399. text-transform:none;
  3400. }
  3401. #u146555 {
  3402. border-width:0px;
  3403. position:absolute;
  3404. left:0px;
  3405. top:0px;
  3406. width:0px;
  3407. height:0px;
  3408. }
  3409. #u146556_div {
  3410. border-width:0px;
  3411. position:absolute;
  3412. left:0px;
  3413. top:0px;
  3414. width:355px;
  3415. height:150px;
  3416. background:inherit;
  3417. background-color:rgba(255, 255, 255, 1);
  3418. border:none;
  3419. border-radius:4px;
  3420. -moz-box-shadow:none;
  3421. -webkit-box-shadow:none;
  3422. box-shadow:none;
  3423. }
  3424. #u146556 {
  3425. border-width:0px;
  3426. position:absolute;
  3427. left:39px;
  3428. top:377px;
  3429. width:355px;
  3430. height:150px;
  3431. display:flex;
  3432. }
  3433. #u146556 .text {
  3434. position:absolute;
  3435. align-self:center;
  3436. padding:2px 2px 2px 2px;
  3437. box-sizing:border-box;
  3438. width:100%;
  3439. }
  3440. #u146556_text {
  3441. border-width:0px;
  3442. word-wrap:break-word;
  3443. text-transform:none;
  3444. visibility:hidden;
  3445. }
  3446. #u146557_div {
  3447. border-width:0px;
  3448. position:absolute;
  3449. left:0px;
  3450. top:0px;
  3451. width:166px;
  3452. height:75px;
  3453. background:inherit;
  3454. background-color:rgba(255, 255, 255, 0);
  3455. border:none;
  3456. border-left:0px;
  3457. border-top:0px;
  3458. border-right:0px;
  3459. border-radius:0px;
  3460. border-bottom-right-radius:0px;
  3461. border-bottom-left-radius:0px;
  3462. -moz-box-shadow:none;
  3463. -webkit-box-shadow:none;
  3464. box-shadow:none;
  3465. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3466. font-weight:400;
  3467. font-style:normal;
  3468. font-size:11px;
  3469. line-height:25px;
  3470. }
  3471. #u146557 {
  3472. border-width:0px;
  3473. position:absolute;
  3474. left:55px;
  3475. top:446px;
  3476. width:166px;
  3477. height:75px;
  3478. display:flex;
  3479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3480. font-weight:400;
  3481. font-style:normal;
  3482. font-size:11px;
  3483. line-height:25px;
  3484. }
  3485. #u146557 .text {
  3486. position:absolute;
  3487. align-self:flex-start;
  3488. padding:0px 0px 0px 0px;
  3489. box-sizing:border-box;
  3490. width:100%;
  3491. }
  3492. #u146557_text {
  3493. border-width:0px;
  3494. white-space:nowrap;
  3495. text-transform:none;
  3496. }
  3497. #u146558_div {
  3498. border-width:0px;
  3499. position:absolute;
  3500. left:0px;
  3501. top:0px;
  3502. width:128px;
  3503. height:30px;
  3504. background:inherit;
  3505. background-color:rgba(255, 255, 255, 0);
  3506. border:none;
  3507. border-left:0px;
  3508. border-top:0px;
  3509. border-right:0px;
  3510. border-radius:0px;
  3511. border-bottom-right-radius:0px;
  3512. border-bottom-left-radius:0px;
  3513. -moz-box-shadow:none;
  3514. -webkit-box-shadow:none;
  3515. box-shadow:none;
  3516. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3517. font-weight:400;
  3518. font-style:normal;
  3519. font-size:12px;
  3520. color:#AAAAAA;
  3521. line-height:30px;
  3522. }
  3523. #u146558 {
  3524. border-width:0px;
  3525. position:absolute;
  3526. left:55px;
  3527. top:386px;
  3528. width:128px;
  3529. height:30px;
  3530. display:flex;
  3531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3532. font-weight:400;
  3533. font-style:normal;
  3534. font-size:12px;
  3535. color:#AAAAAA;
  3536. line-height:30px;
  3537. }
  3538. #u146558 .text {
  3539. position:absolute;
  3540. align-self:flex-start;
  3541. padding:0px 0px 0px 0px;
  3542. box-sizing:border-box;
  3543. width:100%;
  3544. }
  3545. #u146558_text {
  3546. border-width:0px;
  3547. white-space:nowrap;
  3548. text-transform:none;
  3549. }
  3550. #u146559_div {
  3551. border-width:0px;
  3552. position:absolute;
  3553. left:0px;
  3554. top:0px;
  3555. width:8px;
  3556. height:8px;
  3557. background:inherit;
  3558. background-color:rgba(255, 255, 255, 0);
  3559. box-sizing:border-box;
  3560. border-width:1px;
  3561. border-style:solid;
  3562. border-color:rgba(51, 51, 51, 1);
  3563. border-right:0px;
  3564. border-bottom:0px;
  3565. border-radius:0px;
  3566. border-top-right-radius:0px;
  3567. border-bottom-left-radius:0px;
  3568. -moz-box-shadow:none;
  3569. -webkit-box-shadow:none;
  3570. box-shadow:none;
  3571. }
  3572. #u146559 {
  3573. border-width:0px;
  3574. position:absolute;
  3575. left:372px;
  3576. top:396px;
  3577. width:8px;
  3578. height:8px;
  3579. display:flex;
  3580. -webkit-transform:rotate(135deg);
  3581. -moz-transform:rotate(135deg);
  3582. -ms-transform:rotate(135deg);
  3583. transform:rotate(135deg);
  3584. }
  3585. #u146559 .text {
  3586. position:absolute;
  3587. align-self:center;
  3588. padding:2px 2px 2px 2px;
  3589. box-sizing:border-box;
  3590. width:100%;
  3591. }
  3592. #u146559_text {
  3593. border-width:0px;
  3594. word-wrap:break-word;
  3595. text-transform:none;
  3596. visibility:hidden;
  3597. }
  3598. #u146560 {
  3599. border-width:0px;
  3600. position:absolute;
  3601. left:0px;
  3602. top:0px;
  3603. width:0px;
  3604. height:0px;
  3605. }
  3606. #u146561_div {
  3607. border-width:0px;
  3608. position:absolute;
  3609. left:0px;
  3610. top:0px;
  3611. width:127px;
  3612. height:20px;
  3613. background:inherit;
  3614. background-color:rgba(255, 255, 255, 0);
  3615. border:none;
  3616. border-left:0px;
  3617. border-top:0px;
  3618. border-right:0px;
  3619. border-radius:0px;
  3620. border-bottom-right-radius:0px;
  3621. border-bottom-left-radius:0px;
  3622. -moz-box-shadow:none;
  3623. -webkit-box-shadow:none;
  3624. box-shadow:none;
  3625. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3626. font-weight:400;
  3627. font-style:normal;
  3628. font-size:14px;
  3629. }
  3630. #u146561 {
  3631. border-width:0px;
  3632. position:absolute;
  3633. left:55px;
  3634. top:421px;
  3635. width:127px;
  3636. height:20px;
  3637. display:flex;
  3638. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3639. font-weight:400;
  3640. font-style:normal;
  3641. font-size:14px;
  3642. }
  3643. #u146561 .text {
  3644. position:absolute;
  3645. align-self:flex-start;
  3646. padding:0px 0px 0px 0px;
  3647. box-sizing:border-box;
  3648. width:100%;
  3649. }
  3650. #u146561_text {
  3651. border-width:0px;
  3652. white-space:nowrap;
  3653. text-transform:none;
  3654. }
  3655. #u146562_div {
  3656. border-width:0px;
  3657. position:absolute;
  3658. left:0px;
  3659. top:0px;
  3660. width:9px;
  3661. height:11px;
  3662. background:inherit;
  3663. background-color:rgba(51, 51, 51, 1);
  3664. border:none;
  3665. border-radius:17px;
  3666. -moz-box-shadow:none;
  3667. -webkit-box-shadow:none;
  3668. box-shadow:none;
  3669. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3670. font-weight:400;
  3671. font-style:normal;
  3672. font-size:8px;
  3673. color:#FFFFFF;
  3674. }
  3675. #u146562 {
  3676. border-width:0px;
  3677. position:absolute;
  3678. left:187px;
  3679. top:426px;
  3680. width:9px;
  3681. height:11px;
  3682. display:flex;
  3683. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3684. font-weight:400;
  3685. font-style:normal;
  3686. font-size:8px;
  3687. color:#FFFFFF;
  3688. }
  3689. #u146562 .text {
  3690. position:absolute;
  3691. align-self:center;
  3692. padding:0px 0px 0px 0px;
  3693. box-sizing:border-box;
  3694. width:100%;
  3695. }
  3696. #u146562_text {
  3697. border-width:0px;
  3698. white-space:nowrap;
  3699. text-transform:none;
  3700. }
  3701. #u146563 {
  3702. border-width:0px;
  3703. position:absolute;
  3704. left:0px;
  3705. top:0px;
  3706. width:0px;
  3707. height:0px;
  3708. }
  3709. #u146564_div {
  3710. border-width:0px;
  3711. position:absolute;
  3712. left:0px;
  3713. top:0px;
  3714. width:133px;
  3715. height:20px;
  3716. background:inherit;
  3717. background-color:rgba(255, 255, 255, 0);
  3718. border:none;
  3719. border-left:0px;
  3720. border-top:0px;
  3721. border-right:0px;
  3722. border-radius:0px;
  3723. border-bottom-right-radius:0px;
  3724. border-bottom-left-radius:0px;
  3725. -moz-box-shadow:none;
  3726. -webkit-box-shadow:none;
  3727. box-shadow:none;
  3728. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3729. font-weight:400;
  3730. font-style:normal;
  3731. font-size:14px;
  3732. }
  3733. #u146564 {
  3734. border-width:0px;
  3735. position:absolute;
  3736. left:226px;
  3737. top:421px;
  3738. width:133px;
  3739. height:20px;
  3740. display:flex;
  3741. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3742. font-weight:400;
  3743. font-style:normal;
  3744. font-size:14px;
  3745. }
  3746. #u146564 .text {
  3747. position:absolute;
  3748. align-self:flex-start;
  3749. padding:0px 0px 0px 0px;
  3750. box-sizing:border-box;
  3751. width:100%;
  3752. }
  3753. #u146564_text {
  3754. border-width:0px;
  3755. white-space:nowrap;
  3756. text-transform:none;
  3757. }
  3758. #u146565_div {
  3759. border-width:0px;
  3760. position:absolute;
  3761. left:0px;
  3762. top:0px;
  3763. width:9px;
  3764. height:11px;
  3765. background:inherit;
  3766. background-color:rgba(51, 51, 51, 1);
  3767. border:none;
  3768. border-radius:17px;
  3769. -moz-box-shadow:none;
  3770. -webkit-box-shadow:none;
  3771. box-shadow:none;
  3772. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3773. font-weight:400;
  3774. font-style:normal;
  3775. font-size:8px;
  3776. color:#FFFFFF;
  3777. }
  3778. #u146565 {
  3779. border-width:0px;
  3780. position:absolute;
  3781. left:362px;
  3782. top:426px;
  3783. width:9px;
  3784. height:11px;
  3785. display:flex;
  3786. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3787. font-weight:400;
  3788. font-style:normal;
  3789. font-size:8px;
  3790. color:#FFFFFF;
  3791. }
  3792. #u146565 .text {
  3793. position:absolute;
  3794. align-self:center;
  3795. padding:0px 0px 0px 0px;
  3796. box-sizing:border-box;
  3797. width:100%;
  3798. }
  3799. #u146565_text {
  3800. border-width:0px;
  3801. white-space:nowrap;
  3802. text-transform:none;
  3803. }
  3804. #u146566_img {
  3805. border-width:0px;
  3806. position:absolute;
  3807. left:0px;
  3808. top:0px;
  3809. width:10px;
  3810. height:11px;
  3811. }
  3812. #u146566 {
  3813. border-width:0px;
  3814. position:absolute;
  3815. left:207px;
  3816. top:426px;
  3817. width:10px;
  3818. height:11px;
  3819. display:flex;
  3820. }
  3821. #u146566 .text {
  3822. position:absolute;
  3823. align-self:center;
  3824. padding:2px 2px 2px 2px;
  3825. box-sizing:border-box;
  3826. width:100%;
  3827. }
  3828. #u146566_text {
  3829. border-width:0px;
  3830. word-wrap:break-word;
  3831. text-transform:none;
  3832. visibility:hidden;
  3833. }
  3834. #u146568_img {
  3835. border-width:0px;
  3836. position:absolute;
  3837. left:0px;
  3838. top:0px;
  3839. width:433px;
  3840. height:865px;
  3841. }
  3842. #u146568 {
  3843. border-width:0px;
  3844. position:absolute;
  3845. left:934px;
  3846. top:0px;
  3847. width:433px;
  3848. height:865px;
  3849. display:flex;
  3850. }
  3851. #u146568 .text {
  3852. position:absolute;
  3853. align-self:center;
  3854. padding:2px 2px 2px 2px;
  3855. box-sizing:border-box;
  3856. width:100%;
  3857. }
  3858. #u146568_text {
  3859. border-width:0px;
  3860. word-wrap:break-word;
  3861. text-transform:none;
  3862. visibility:hidden;
  3863. }
  3864. #u146569_div {
  3865. border-width:0px;
  3866. position:absolute;
  3867. left:0px;
  3868. top:0px;
  3869. width:375px;
  3870. height:40px;
  3871. background:inherit;
  3872. background-color:rgba(255, 255, 255, 1);
  3873. box-sizing:border-box;
  3874. border-width:1px;
  3875. border-style:solid;
  3876. border-color:rgba(215, 215, 215, 1);
  3877. border-left:0px;
  3878. border-top:0px;
  3879. border-right:0px;
  3880. border-radius:0px;
  3881. border-bottom-right-radius:0px;
  3882. border-bottom-left-radius:0px;
  3883. -moz-box-shadow:none;
  3884. -webkit-box-shadow:none;
  3885. box-shadow:none;
  3886. }
  3887. #u146569 {
  3888. border-width:0px;
  3889. position:absolute;
  3890. left:963px;
  3891. top:67px;
  3892. width:375px;
  3893. height:40px;
  3894. display:flex;
  3895. }
  3896. #u146569 .text {
  3897. position:absolute;
  3898. align-self:center;
  3899. padding:2px 2px 2px 2px;
  3900. box-sizing:border-box;
  3901. width:100%;
  3902. }
  3903. #u146569_text {
  3904. border-width:0px;
  3905. word-wrap:break-word;
  3906. text-transform:none;
  3907. visibility:hidden;
  3908. }
  3909. #u146570 {
  3910. border-width:0px;
  3911. position:absolute;
  3912. left:0px;
  3913. top:0px;
  3914. width:0px;
  3915. height:0px;
  3916. }
  3917. #u146571_div {
  3918. border-width:0px;
  3919. position:absolute;
  3920. left:0px;
  3921. top:0px;
  3922. width:88px;
  3923. height:32px;
  3924. background:inherit;
  3925. background-color:rgba(255, 255, 255, 1);
  3926. box-sizing:border-box;
  3927. border-width:1px;
  3928. border-style:solid;
  3929. border-color:rgba(242, 242, 242, 1);
  3930. border-radius:33px;
  3931. -moz-box-shadow:none;
  3932. -webkit-box-shadow:none;
  3933. box-shadow:none;
  3934. }
  3935. #u146571 {
  3936. border-width:0px;
  3937. position:absolute;
  3938. left:1243px;
  3939. top:71px;
  3940. width:88px;
  3941. height:32px;
  3942. display:flex;
  3943. }
  3944. #u146571 .text {
  3945. position:absolute;
  3946. align-self:center;
  3947. padding:2px 2px 2px 2px;
  3948. box-sizing:border-box;
  3949. width:100%;
  3950. }
  3951. #u146571_text {
  3952. border-width:0px;
  3953. word-wrap:break-word;
  3954. text-transform:none;
  3955. visibility:hidden;
  3956. }
  3957. #u146572 {
  3958. border-width:0px;
  3959. position:absolute;
  3960. left:0px;
  3961. top:0px;
  3962. width:0px;
  3963. height:0px;
  3964. }
  3965. #u146573_img {
  3966. border-width:0px;
  3967. position:absolute;
  3968. left:0px;
  3969. top:0px;
  3970. width:18px;
  3971. height:18px;
  3972. }
  3973. #u146573 {
  3974. border-width:0px;
  3975. position:absolute;
  3976. left:1306px;
  3977. top:78px;
  3978. width:18px;
  3979. height:18px;
  3980. display:flex;
  3981. }
  3982. #u146573 .text {
  3983. position:absolute;
  3984. align-self:center;
  3985. padding:2px 2px 2px 2px;
  3986. box-sizing:border-box;
  3987. width:100%;
  3988. }
  3989. #u146573_text {
  3990. border-width:0px;
  3991. word-wrap:break-word;
  3992. text-transform:none;
  3993. visibility:hidden;
  3994. }
  3995. #u146574_img {
  3996. border-width:0px;
  3997. position:absolute;
  3998. left:0px;
  3999. top:0px;
  4000. width:6px;
  4001. height:6px;
  4002. }
  4003. #u146574 {
  4004. border-width:0px;
  4005. position:absolute;
  4006. left:1312px;
  4007. top:84px;
  4008. width:6px;
  4009. height:6px;
  4010. display:flex;
  4011. }
  4012. #u146574 .text {
  4013. position:absolute;
  4014. align-self:center;
  4015. padding:2px 2px 2px 2px;
  4016. box-sizing:border-box;
  4017. width:100%;
  4018. }
  4019. #u146574_text {
  4020. border-width:0px;
  4021. word-wrap:break-word;
  4022. text-transform:none;
  4023. visibility:hidden;
  4024. }
  4025. #u146575 {
  4026. border-width:0px;
  4027. position:absolute;
  4028. left:0px;
  4029. top:0px;
  4030. width:0px;
  4031. height:0px;
  4032. }
  4033. #u146576_img {
  4034. border-width:0px;
  4035. position:absolute;
  4036. left:0px;
  4037. top:0px;
  4038. width:5px;
  4039. height:5px;
  4040. }
  4041. #u146576 {
  4042. border-width:0px;
  4043. position:absolute;
  4044. left:1257px;
  4045. top:85px;
  4046. width:5px;
  4047. height:5px;
  4048. display:flex;
  4049. }
  4050. #u146576 .text {
  4051. position:absolute;
  4052. align-self:center;
  4053. padding:2px 2px 2px 2px;
  4054. box-sizing:border-box;
  4055. width:100%;
  4056. }
  4057. #u146576_text {
  4058. border-width:0px;
  4059. word-wrap:break-word;
  4060. text-transform:none;
  4061. visibility:hidden;
  4062. }
  4063. #u146577_img {
  4064. border-width:0px;
  4065. position:absolute;
  4066. left:0px;
  4067. top:0px;
  4068. width:5px;
  4069. height:5px;
  4070. }
  4071. #u146577 {
  4072. border-width:0px;
  4073. position:absolute;
  4074. left:1273px;
  4075. top:85px;
  4076. width:5px;
  4077. height:5px;
  4078. display:flex;
  4079. }
  4080. #u146577 .text {
  4081. position:absolute;
  4082. align-self:center;
  4083. padding:2px 2px 2px 2px;
  4084. box-sizing:border-box;
  4085. width:100%;
  4086. }
  4087. #u146577_text {
  4088. border-width:0px;
  4089. word-wrap:break-word;
  4090. text-transform:none;
  4091. visibility:hidden;
  4092. }
  4093. #u146578_img {
  4094. border-width:0px;
  4095. position:absolute;
  4096. left:0px;
  4097. top:0px;
  4098. width:7px;
  4099. height:7px;
  4100. }
  4101. #u146578 {
  4102. border-width:0px;
  4103. position:absolute;
  4104. left:1264px;
  4105. top:84px;
  4106. width:7px;
  4107. height:7px;
  4108. display:flex;
  4109. }
  4110. #u146578 .text {
  4111. position:absolute;
  4112. align-self:center;
  4113. padding:2px 2px 2px 2px;
  4114. box-sizing:border-box;
  4115. width:100%;
  4116. }
  4117. #u146578_text {
  4118. border-width:0px;
  4119. word-wrap:break-word;
  4120. text-transform:none;
  4121. visibility:hidden;
  4122. }
  4123. #u146579_img {
  4124. border-width:0px;
  4125. position:absolute;
  4126. left:0px;
  4127. top:0px;
  4128. width:19px;
  4129. height:2px;
  4130. }
  4131. #u146579 {
  4132. border-width:0px;
  4133. position:absolute;
  4134. left:1281px;
  4135. top:87px;
  4136. width:18px;
  4137. height:1px;
  4138. display:flex;
  4139. -webkit-transform:rotate(90deg);
  4140. -moz-transform:rotate(90deg);
  4141. -ms-transform:rotate(90deg);
  4142. transform:rotate(90deg);
  4143. }
  4144. #u146579 .text {
  4145. position:absolute;
  4146. align-self:center;
  4147. padding:2px 2px 2px 2px;
  4148. box-sizing:border-box;
  4149. width:100%;
  4150. }
  4151. #u146579_text {
  4152. border-width:0px;
  4153. word-wrap:break-word;
  4154. text-transform:none;
  4155. visibility:hidden;
  4156. }
  4157. #u146580_img {
  4158. border-width:0px;
  4159. position:absolute;
  4160. left:0px;
  4161. top:0px;
  4162. width:375px;
  4163. height:44px;
  4164. }
  4165. #u146580 {
  4166. border-width:0px;
  4167. position:absolute;
  4168. left:963px;
  4169. top:24px;
  4170. width:375px;
  4171. height:44px;
  4172. display:flex;
  4173. }
  4174. #u146580 .text {
  4175. position:absolute;
  4176. align-self:center;
  4177. padding:2px 2px 2px 2px;
  4178. box-sizing:border-box;
  4179. width:100%;
  4180. }
  4181. #u146580_text {
  4182. border-width:0px;
  4183. word-wrap:break-word;
  4184. text-transform:none;
  4185. visibility:hidden;
  4186. }
  4187. #u146581_div {
  4188. border-width:0px;
  4189. position:absolute;
  4190. left:0px;
  4191. top:0px;
  4192. width:375px;
  4193. height:50px;
  4194. background:inherit;
  4195. background-color:rgba(255, 255, 255, 1);
  4196. box-sizing:border-box;
  4197. border-width:1px;
  4198. border-style:solid;
  4199. border-color:rgba(242, 242, 242, 1);
  4200. border-radius:26px;
  4201. border-top-left-radius:0px;
  4202. border-top-right-radius:0px;
  4203. -moz-box-shadow:none;
  4204. -webkit-box-shadow:none;
  4205. box-shadow:none;
  4206. }
  4207. #u146581 {
  4208. border-width:0px;
  4209. position:absolute;
  4210. left:963px;
  4211. top:788px;
  4212. width:375px;
  4213. height:50px;
  4214. display:flex;
  4215. }
  4216. #u146581 .text {
  4217. position:absolute;
  4218. align-self:center;
  4219. padding:2px 2px 2px 2px;
  4220. box-sizing:border-box;
  4221. width:100%;
  4222. }
  4223. #u146581_text {
  4224. border-width:0px;
  4225. word-wrap:break-word;
  4226. text-transform:none;
  4227. visibility:hidden;
  4228. }
  4229. #u146582 {
  4230. border-width:0px;
  4231. position:absolute;
  4232. left:0px;
  4233. top:0px;
  4234. width:0px;
  4235. height:0px;
  4236. }
  4237. #u146583_img {
  4238. border-width:0px;
  4239. position:absolute;
  4240. left:0px;
  4241. top:0px;
  4242. width:24px;
  4243. height:24px;
  4244. }
  4245. #u146583 {
  4246. border-width:0px;
  4247. position:absolute;
  4248. left:1003px;
  4249. top:792px;
  4250. width:24px;
  4251. height:24px;
  4252. display:flex;
  4253. font-size:8px;
  4254. }
  4255. #u146583 .text {
  4256. position:absolute;
  4257. align-self:center;
  4258. padding:2px 2px 2px 2px;
  4259. box-sizing:border-box;
  4260. width:100%;
  4261. }
  4262. #u146583_text {
  4263. border-width:0px;
  4264. word-wrap:break-word;
  4265. text-transform:none;
  4266. }
  4267. #u146584_div {
  4268. border-width:0px;
  4269. position:absolute;
  4270. left:0px;
  4271. top:0px;
  4272. width:25px;
  4273. height:17px;
  4274. background:inherit;
  4275. background-color:rgba(255, 255, 255, 0);
  4276. border:none;
  4277. border-radius:0px;
  4278. -moz-box-shadow:none;
  4279. -webkit-box-shadow:none;
  4280. box-shadow:none;
  4281. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4282. font-weight:400;
  4283. font-style:normal;
  4284. font-size:12px;
  4285. }
  4286. #u146584 {
  4287. border-width:0px;
  4288. position:absolute;
  4289. left:1003px;
  4290. top:817px;
  4291. width:25px;
  4292. height:17px;
  4293. display:flex;
  4294. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4295. font-weight:400;
  4296. font-style:normal;
  4297. font-size:12px;
  4298. }
  4299. #u146584 .text {
  4300. position:absolute;
  4301. align-self:flex-start;
  4302. padding:0px 0px 0px 0px;
  4303. box-sizing:border-box;
  4304. width:100%;
  4305. }
  4306. #u146584_text {
  4307. border-width:0px;
  4308. white-space:nowrap;
  4309. text-transform:none;
  4310. }
  4311. #u146585 {
  4312. border-width:0px;
  4313. position:absolute;
  4314. left:0px;
  4315. top:0px;
  4316. width:0px;
  4317. height:0px;
  4318. }
  4319. #u146586_img {
  4320. border-width:0px;
  4321. position:absolute;
  4322. left:0px;
  4323. top:0px;
  4324. width:24px;
  4325. height:24px;
  4326. }
  4327. #u146586 {
  4328. border-width:0px;
  4329. position:absolute;
  4330. left:1273px;
  4331. top:794px;
  4332. width:24px;
  4333. height:24px;
  4334. display:flex;
  4335. font-size:8px;
  4336. }
  4337. #u146586 .text {
  4338. position:absolute;
  4339. align-self:center;
  4340. padding:2px 2px 2px 2px;
  4341. box-sizing:border-box;
  4342. width:100%;
  4343. }
  4344. #u146586_text {
  4345. border-width:0px;
  4346. word-wrap:break-word;
  4347. text-transform:none;
  4348. }
  4349. #u146587_div {
  4350. border-width:0px;
  4351. position:absolute;
  4352. left:0px;
  4353. top:0px;
  4354. width:25px;
  4355. height:17px;
  4356. background:inherit;
  4357. background-color:rgba(255, 255, 255, 0);
  4358. border:none;
  4359. border-radius:0px;
  4360. -moz-box-shadow:none;
  4361. -webkit-box-shadow:none;
  4362. box-shadow:none;
  4363. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4364. font-weight:400;
  4365. font-style:normal;
  4366. font-size:12px;
  4367. }
  4368. #u146587 {
  4369. border-width:0px;
  4370. position:absolute;
  4371. left:1273px;
  4372. top:819px;
  4373. width:25px;
  4374. height:17px;
  4375. display:flex;
  4376. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4377. font-weight:400;
  4378. font-style:normal;
  4379. font-size:12px;
  4380. }
  4381. #u146587 .text {
  4382. position:absolute;
  4383. align-self:flex-start;
  4384. padding:0px 0px 0px 0px;
  4385. box-sizing:border-box;
  4386. width:100%;
  4387. }
  4388. #u146587_text {
  4389. border-width:0px;
  4390. white-space:nowrap;
  4391. text-transform:none;
  4392. }
  4393. #u146588_div {
  4394. border-width:0px;
  4395. position:absolute;
  4396. left:0px;
  4397. top:0px;
  4398. width:375px;
  4399. height:681px;
  4400. background:inherit;
  4401. background-color:rgba(242, 242, 242, 0.462745098039216);
  4402. border:none;
  4403. border-radius:0px;
  4404. -moz-box-shadow:none;
  4405. -webkit-box-shadow:none;
  4406. box-shadow:none;
  4407. }
  4408. #u146588 {
  4409. border-width:0px;
  4410. position:absolute;
  4411. left:963px;
  4412. top:107px;
  4413. width:375px;
  4414. height:681px;
  4415. display:flex;
  4416. }
  4417. #u146588 .text {
  4418. position:absolute;
  4419. align-self:center;
  4420. padding:2px 2px 2px 2px;
  4421. box-sizing:border-box;
  4422. width:100%;
  4423. }
  4424. #u146588_text {
  4425. border-width:0px;
  4426. word-wrap:break-word;
  4427. text-transform:none;
  4428. visibility:hidden;
  4429. }
  4430. #u146589 {
  4431. border-width:0px;
  4432. position:absolute;
  4433. left:0px;
  4434. top:0px;
  4435. width:0px;
  4436. height:0px;
  4437. }
  4438. #u146590_img {
  4439. border-width:0px;
  4440. position:absolute;
  4441. left:0px;
  4442. top:0px;
  4443. width:24px;
  4444. height:24px;
  4445. }
  4446. #u146590 {
  4447. border-width:0px;
  4448. position:absolute;
  4449. left:1185px;
  4450. top:792px;
  4451. width:24px;
  4452. height:24px;
  4453. display:flex;
  4454. font-size:8px;
  4455. }
  4456. #u146590 .text {
  4457. position:absolute;
  4458. align-self:center;
  4459. padding:2px 2px 2px 2px;
  4460. box-sizing:border-box;
  4461. width:100%;
  4462. }
  4463. #u146590_text {
  4464. border-width:0px;
  4465. word-wrap:break-word;
  4466. text-transform:none;
  4467. }
  4468. #u146591_div {
  4469. border-width:0px;
  4470. position:absolute;
  4471. left:0px;
  4472. top:0px;
  4473. width:37px;
  4474. height:17px;
  4475. background:inherit;
  4476. background-color:rgba(255, 255, 255, 0);
  4477. border:none;
  4478. border-radius:0px;
  4479. -moz-box-shadow:none;
  4480. -webkit-box-shadow:none;
  4481. box-shadow:none;
  4482. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4483. font-weight:400;
  4484. font-style:normal;
  4485. font-size:12px;
  4486. }
  4487. #u146591 {
  4488. border-width:0px;
  4489. position:absolute;
  4490. left:1179px;
  4491. top:817px;
  4492. width:37px;
  4493. height:17px;
  4494. display:flex;
  4495. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4496. font-weight:400;
  4497. font-style:normal;
  4498. font-size:12px;
  4499. }
  4500. #u146591 .text {
  4501. position:absolute;
  4502. align-self:flex-start;
  4503. padding:0px 0px 0px 0px;
  4504. box-sizing:border-box;
  4505. width:100%;
  4506. }
  4507. #u146591_text {
  4508. border-width:0px;
  4509. white-space:nowrap;
  4510. text-transform:none;
  4511. }
  4512. #u146592 {
  4513. border-width:0px;
  4514. position:absolute;
  4515. left:0px;
  4516. top:0px;
  4517. width:0px;
  4518. height:0px;
  4519. }
  4520. #u146593_img {
  4521. border-width:0px;
  4522. position:absolute;
  4523. left:0px;
  4524. top:0px;
  4525. width:24px;
  4526. height:24px;
  4527. }
  4528. #u146593 {
  4529. border-width:0px;
  4530. position:absolute;
  4531. left:1091px;
  4532. top:792px;
  4533. width:24px;
  4534. height:24px;
  4535. display:flex;
  4536. font-size:8px;
  4537. }
  4538. #u146593 .text {
  4539. position:absolute;
  4540. align-self:center;
  4541. padding:2px 2px 2px 2px;
  4542. box-sizing:border-box;
  4543. width:100%;
  4544. }
  4545. #u146593_text {
  4546. border-width:0px;
  4547. word-wrap:break-word;
  4548. text-transform:none;
  4549. }
  4550. #u146594_div {
  4551. border-width:0px;
  4552. position:absolute;
  4553. left:0px;
  4554. top:0px;
  4555. width:37px;
  4556. height:17px;
  4557. background:inherit;
  4558. background-color:rgba(255, 255, 255, 0);
  4559. border:none;
  4560. border-radius:0px;
  4561. -moz-box-shadow:none;
  4562. -webkit-box-shadow:none;
  4563. box-shadow:none;
  4564. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4565. font-weight:400;
  4566. font-style:normal;
  4567. font-size:12px;
  4568. }
  4569. #u146594 {
  4570. border-width:0px;
  4571. position:absolute;
  4572. left:1085px;
  4573. top:817px;
  4574. width:37px;
  4575. height:17px;
  4576. display:flex;
  4577. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4578. font-weight:400;
  4579. font-style:normal;
  4580. font-size:12px;
  4581. }
  4582. #u146594 .text {
  4583. position:absolute;
  4584. align-self:flex-start;
  4585. padding:0px 0px 0px 0px;
  4586. box-sizing:border-box;
  4587. width:100%;
  4588. }
  4589. #u146594_text {
  4590. border-width:0px;
  4591. white-space:nowrap;
  4592. text-transform:none;
  4593. }
  4594. #u146595_div {
  4595. border-width:0px;
  4596. position:absolute;
  4597. left:0px;
  4598. top:0px;
  4599. width:375px;
  4600. height:732px;
  4601. background:inherit;
  4602. background-color:rgba(242, 242, 242, 0.996078431372549);
  4603. border:none;
  4604. border-top:0px;
  4605. border-radius:28px;
  4606. border-top-left-radius:0px;
  4607. border-top-right-radius:0px;
  4608. -moz-box-shadow:none;
  4609. -webkit-box-shadow:none;
  4610. box-shadow:none;
  4611. }
  4612. #u146595 {
  4613. border-width:0px;
  4614. position:absolute;
  4615. left:962px;
  4616. top:107px;
  4617. width:375px;
  4618. height:732px;
  4619. display:flex;
  4620. }
  4621. #u146595 .text {
  4622. position:absolute;
  4623. align-self:center;
  4624. padding:2px 2px 2px 2px;
  4625. box-sizing:border-box;
  4626. width:100%;
  4627. }
  4628. #u146595_text {
  4629. border-width:0px;
  4630. word-wrap:break-word;
  4631. text-transform:none;
  4632. visibility:hidden;
  4633. }
  4634. #u146596_img {
  4635. border-width:0px;
  4636. position:absolute;
  4637. left:0px;
  4638. top:0px;
  4639. width:375px;
  4640. height:44px;
  4641. }
  4642. #u146596 {
  4643. border-width:0px;
  4644. position:absolute;
  4645. left:962px;
  4646. top:24px;
  4647. width:375px;
  4648. height:44px;
  4649. display:flex;
  4650. }
  4651. #u146596 .text {
  4652. position:absolute;
  4653. align-self:center;
  4654. padding:2px 2px 2px 2px;
  4655. box-sizing:border-box;
  4656. width:100%;
  4657. }
  4658. #u146596_text {
  4659. border-width:0px;
  4660. word-wrap:break-word;
  4661. text-transform:none;
  4662. visibility:hidden;
  4663. }
  4664. #u146597 {
  4665. border-width:0px;
  4666. position:absolute;
  4667. left:0px;
  4668. top:0px;
  4669. width:0px;
  4670. height:0px;
  4671. }
  4672. #u146598_div {
  4673. border-width:0px;
  4674. position:absolute;
  4675. left:0px;
  4676. top:0px;
  4677. width:88px;
  4678. height:32px;
  4679. background:inherit;
  4680. background-color:rgba(255, 255, 255, 1);
  4681. box-sizing:border-box;
  4682. border-width:1px;
  4683. border-style:solid;
  4684. border-color:rgba(242, 242, 242, 1);
  4685. border-radius:33px;
  4686. -moz-box-shadow:none;
  4687. -webkit-box-shadow:none;
  4688. box-shadow:none;
  4689. }
  4690. #u146598 {
  4691. border-width:0px;
  4692. position:absolute;
  4693. left:1242px;
  4694. top:71px;
  4695. width:88px;
  4696. height:32px;
  4697. display:flex;
  4698. }
  4699. #u146598 .text {
  4700. position:absolute;
  4701. align-self:center;
  4702. padding:2px 2px 2px 2px;
  4703. box-sizing:border-box;
  4704. width:100%;
  4705. }
  4706. #u146598_text {
  4707. border-width:0px;
  4708. word-wrap:break-word;
  4709. text-transform:none;
  4710. visibility:hidden;
  4711. }
  4712. #u146599 {
  4713. border-width:0px;
  4714. position:absolute;
  4715. left:0px;
  4716. top:0px;
  4717. width:0px;
  4718. height:0px;
  4719. }
  4720. #u146600_img {
  4721. border-width:0px;
  4722. position:absolute;
  4723. left:0px;
  4724. top:0px;
  4725. width:18px;
  4726. height:18px;
  4727. }
  4728. #u146600 {
  4729. border-width:0px;
  4730. position:absolute;
  4731. left:1305px;
  4732. top:78px;
  4733. width:18px;
  4734. height:18px;
  4735. display:flex;
  4736. }
  4737. #u146600 .text {
  4738. position:absolute;
  4739. align-self:center;
  4740. padding:2px 2px 2px 2px;
  4741. box-sizing:border-box;
  4742. width:100%;
  4743. }
  4744. #u146600_text {
  4745. border-width:0px;
  4746. word-wrap:break-word;
  4747. text-transform:none;
  4748. visibility:hidden;
  4749. }
  4750. #u146601_img {
  4751. border-width:0px;
  4752. position:absolute;
  4753. left:0px;
  4754. top:0px;
  4755. width:6px;
  4756. height:6px;
  4757. }
  4758. #u146601 {
  4759. border-width:0px;
  4760. position:absolute;
  4761. left:1311px;
  4762. top:84px;
  4763. width:6px;
  4764. height:6px;
  4765. display:flex;
  4766. }
  4767. #u146601 .text {
  4768. position:absolute;
  4769. align-self:center;
  4770. padding:2px 2px 2px 2px;
  4771. box-sizing:border-box;
  4772. width:100%;
  4773. }
  4774. #u146601_text {
  4775. border-width:0px;
  4776. word-wrap:break-word;
  4777. text-transform:none;
  4778. visibility:hidden;
  4779. }
  4780. #u146602 {
  4781. border-width:0px;
  4782. position:absolute;
  4783. left:0px;
  4784. top:0px;
  4785. width:0px;
  4786. height:0px;
  4787. }
  4788. #u146603_img {
  4789. border-width:0px;
  4790. position:absolute;
  4791. left:0px;
  4792. top:0px;
  4793. width:5px;
  4794. height:5px;
  4795. }
  4796. #u146603 {
  4797. border-width:0px;
  4798. position:absolute;
  4799. left:1256px;
  4800. top:85px;
  4801. width:5px;
  4802. height:5px;
  4803. display:flex;
  4804. }
  4805. #u146603 .text {
  4806. position:absolute;
  4807. align-self:center;
  4808. padding:2px 2px 2px 2px;
  4809. box-sizing:border-box;
  4810. width:100%;
  4811. }
  4812. #u146603_text {
  4813. border-width:0px;
  4814. word-wrap:break-word;
  4815. text-transform:none;
  4816. visibility:hidden;
  4817. }
  4818. #u146604_img {
  4819. border-width:0px;
  4820. position:absolute;
  4821. left:0px;
  4822. top:0px;
  4823. width:5px;
  4824. height:5px;
  4825. }
  4826. #u146604 {
  4827. border-width:0px;
  4828. position:absolute;
  4829. left:1272px;
  4830. top:85px;
  4831. width:5px;
  4832. height:5px;
  4833. display:flex;
  4834. }
  4835. #u146604 .text {
  4836. position:absolute;
  4837. align-self:center;
  4838. padding:2px 2px 2px 2px;
  4839. box-sizing:border-box;
  4840. width:100%;
  4841. }
  4842. #u146604_text {
  4843. border-width:0px;
  4844. word-wrap:break-word;
  4845. text-transform:none;
  4846. visibility:hidden;
  4847. }
  4848. #u146605_img {
  4849. border-width:0px;
  4850. position:absolute;
  4851. left:0px;
  4852. top:0px;
  4853. width:7px;
  4854. height:7px;
  4855. }
  4856. #u146605 {
  4857. border-width:0px;
  4858. position:absolute;
  4859. left:1263px;
  4860. top:84px;
  4861. width:7px;
  4862. height:7px;
  4863. display:flex;
  4864. }
  4865. #u146605 .text {
  4866. position:absolute;
  4867. align-self:center;
  4868. padding:2px 2px 2px 2px;
  4869. box-sizing:border-box;
  4870. width:100%;
  4871. }
  4872. #u146605_text {
  4873. border-width:0px;
  4874. word-wrap:break-word;
  4875. text-transform:none;
  4876. visibility:hidden;
  4877. }
  4878. #u146606_img {
  4879. border-width:0px;
  4880. position:absolute;
  4881. left:0px;
  4882. top:0px;
  4883. width:19px;
  4884. height:2px;
  4885. }
  4886. #u146606 {
  4887. border-width:0px;
  4888. position:absolute;
  4889. left:1280px;
  4890. top:87px;
  4891. width:18px;
  4892. height:1px;
  4893. display:flex;
  4894. -webkit-transform:rotate(90deg);
  4895. -moz-transform:rotate(90deg);
  4896. -ms-transform:rotate(90deg);
  4897. transform:rotate(90deg);
  4898. }
  4899. #u146606 .text {
  4900. position:absolute;
  4901. align-self:center;
  4902. padding:2px 2px 2px 2px;
  4903. box-sizing:border-box;
  4904. width:100%;
  4905. }
  4906. #u146606_text {
  4907. border-width:0px;
  4908. word-wrap:break-word;
  4909. text-transform:none;
  4910. visibility:hidden;
  4911. }
  4912. #u146607_div {
  4913. border-width:0px;
  4914. position:absolute;
  4915. left:0px;
  4916. top:0px;
  4917. width:12px;
  4918. height:12px;
  4919. background:inherit;
  4920. background-color:rgba(255, 255, 255, 0);
  4921. box-sizing:border-box;
  4922. border-width:2px;
  4923. border-style:solid;
  4924. border-color:rgba(51, 51, 51, 1);
  4925. border-right:0px;
  4926. border-bottom:0px;
  4927. border-radius:0px;
  4928. border-top-right-radius:0px;
  4929. border-bottom-left-radius:0px;
  4930. -moz-box-shadow:none;
  4931. -webkit-box-shadow:none;
  4932. box-shadow:none;
  4933. }
  4934. #u146607 {
  4935. border-width:0px;
  4936. position:absolute;
  4937. left:977px;
  4938. top:81px;
  4939. width:12px;
  4940. height:12px;
  4941. display:flex;
  4942. -webkit-transform:rotate(315deg);
  4943. -moz-transform:rotate(315deg);
  4944. -ms-transform:rotate(315deg);
  4945. transform:rotate(315deg);
  4946. }
  4947. #u146607 .text {
  4948. position:absolute;
  4949. align-self:center;
  4950. padding:2px 2px 2px 2px;
  4951. box-sizing:border-box;
  4952. width:100%;
  4953. }
  4954. #u146607_text {
  4955. border-width:0px;
  4956. word-wrap:break-word;
  4957. text-transform:none;
  4958. visibility:hidden;
  4959. }
  4960. #u146608_div {
  4961. border-width:0px;
  4962. position:absolute;
  4963. left:0px;
  4964. top:0px;
  4965. width:33px;
  4966. height:22px;
  4967. background:inherit;
  4968. background-color:rgba(255, 255, 255, 0);
  4969. border:none;
  4970. border-radius:0px;
  4971. -moz-box-shadow:none;
  4972. -webkit-box-shadow:none;
  4973. box-shadow:none;
  4974. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4975. font-weight:400;
  4976. font-style:normal;
  4977. font-size:16px;
  4978. color:#000000;
  4979. }
  4980. #u146608 {
  4981. border-width:0px;
  4982. position:absolute;
  4983. left:1001px;
  4984. top:76px;
  4985. width:33px;
  4986. height:22px;
  4987. display:flex;
  4988. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4989. font-weight:400;
  4990. font-style:normal;
  4991. font-size:16px;
  4992. color:#000000;
  4993. }
  4994. #u146608 .text {
  4995. position:absolute;
  4996. align-self:flex-start;
  4997. padding:0px 0px 0px 0px;
  4998. box-sizing:border-box;
  4999. width:100%;
  5000. }
  5001. #u146608_text {
  5002. border-width:0px;
  5003. white-space:nowrap;
  5004. text-transform:none;
  5005. }
  5006. #u146609_div {
  5007. border-width:0px;
  5008. position:absolute;
  5009. left:0px;
  5010. top:0px;
  5011. width:375px;
  5012. height:309px;
  5013. background:inherit;
  5014. background-color:rgba(255, 255, 255, 1);
  5015. border:none;
  5016. border-radius:0px;
  5017. -moz-box-shadow:none;
  5018. -webkit-box-shadow:none;
  5019. box-shadow:none;
  5020. }
  5021. #u146609 {
  5022. border-width:0px;
  5023. position:absolute;
  5024. left:962px;
  5025. top:107px;
  5026. width:375px;
  5027. height:309px;
  5028. display:flex;
  5029. }
  5030. #u146609 .text {
  5031. position:absolute;
  5032. align-self:center;
  5033. padding:2px 2px 2px 2px;
  5034. box-sizing:border-box;
  5035. width:100%;
  5036. }
  5037. #u146609_text {
  5038. border-width:0px;
  5039. word-wrap:break-word;
  5040. text-transform:none;
  5041. visibility:hidden;
  5042. }
  5043. #u146610_div {
  5044. border-width:0px;
  5045. position:absolute;
  5046. left:0px;
  5047. top:0px;
  5048. width:215px;
  5049. height:90px;
  5050. background:inherit;
  5051. background-color:rgba(255, 255, 255, 0);
  5052. border:none;
  5053. border-left:0px;
  5054. border-top:0px;
  5055. border-right:0px;
  5056. border-radius:0px;
  5057. border-bottom-right-radius:0px;
  5058. border-bottom-left-radius:0px;
  5059. -moz-box-shadow:none;
  5060. -webkit-box-shadow:none;
  5061. box-shadow:none;
  5062. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5063. font-weight:400;
  5064. font-style:normal;
  5065. font-size:14px;
  5066. line-height:30px;
  5067. }
  5068. #u146610 {
  5069. border-width:0px;
  5070. position:absolute;
  5071. left:978px;
  5072. top:165px;
  5073. width:215px;
  5074. height:90px;
  5075. display:flex;
  5076. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5077. font-weight:400;
  5078. font-style:normal;
  5079. font-size:14px;
  5080. line-height:30px;
  5081. }
  5082. #u146610 .text {
  5083. position:absolute;
  5084. align-self:flex-start;
  5085. padding:0px 0px 0px 0px;
  5086. box-sizing:border-box;
  5087. width:100%;
  5088. }
  5089. #u146610_text {
  5090. border-width:0px;
  5091. white-space:nowrap;
  5092. text-transform:none;
  5093. }
  5094. #u146611_div {
  5095. border-width:0px;
  5096. position:absolute;
  5097. left:0px;
  5098. top:0px;
  5099. width:253px;
  5100. height:60px;
  5101. background:inherit;
  5102. background-color:rgba(255, 255, 255, 0);
  5103. border:none;
  5104. border-left:0px;
  5105. border-top:0px;
  5106. border-right:0px;
  5107. border-radius:0px;
  5108. border-bottom-right-radius:0px;
  5109. border-bottom-left-radius:0px;
  5110. -moz-box-shadow:none;
  5111. -webkit-box-shadow:none;
  5112. box-shadow:none;
  5113. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5114. font-weight:400;
  5115. font-style:normal;
  5116. font-size:14px;
  5117. line-height:30px;
  5118. }
  5119. #u146611 {
  5120. border-width:0px;
  5121. position:absolute;
  5122. left:978px;
  5123. top:265px;
  5124. width:253px;
  5125. height:60px;
  5126. display:flex;
  5127. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5128. font-weight:400;
  5129. font-style:normal;
  5130. font-size:14px;
  5131. line-height:30px;
  5132. }
  5133. #u146611 .text {
  5134. position:absolute;
  5135. align-self:flex-start;
  5136. padding:0px 0px 0px 0px;
  5137. box-sizing:border-box;
  5138. width:100%;
  5139. }
  5140. #u146611_text {
  5141. border-width:0px;
  5142. white-space:nowrap;
  5143. text-transform:none;
  5144. }
  5145. #u146612_img {
  5146. border-width:0px;
  5147. position:absolute;
  5148. left:0px;
  5149. top:0px;
  5150. width:79px;
  5151. height:62px;
  5152. }
  5153. #u146612 {
  5154. border-width:0px;
  5155. position:absolute;
  5156. left:978px;
  5157. top:335px;
  5158. width:79px;
  5159. height:62px;
  5160. display:flex;
  5161. }
  5162. #u146612 .text {
  5163. position:absolute;
  5164. align-self:center;
  5165. padding:2px 2px 2px 2px;
  5166. box-sizing:border-box;
  5167. width:100%;
  5168. }
  5169. #u146612_text {
  5170. border-width:0px;
  5171. word-wrap:break-word;
  5172. text-transform:none;
  5173. visibility:hidden;
  5174. }
  5175. #u146613_img {
  5176. border-width:0px;
  5177. position:absolute;
  5178. left:0px;
  5179. top:0px;
  5180. width:79px;
  5181. height:62px;
  5182. }
  5183. #u146613 {
  5184. border-width:0px;
  5185. position:absolute;
  5186. left:1067px;
  5187. top:335px;
  5188. width:79px;
  5189. height:62px;
  5190. display:flex;
  5191. }
  5192. #u146613 .text {
  5193. position:absolute;
  5194. align-self:center;
  5195. padding:2px 2px 2px 2px;
  5196. box-sizing:border-box;
  5197. width:100%;
  5198. }
  5199. #u146613_text {
  5200. border-width:0px;
  5201. word-wrap:break-word;
  5202. text-transform:none;
  5203. visibility:hidden;
  5204. }
  5205. #u146614_img {
  5206. border-width:0px;
  5207. position:absolute;
  5208. left:0px;
  5209. top:0px;
  5210. width:79px;
  5211. height:62px;
  5212. }
  5213. #u146614 {
  5214. border-width:0px;
  5215. position:absolute;
  5216. left:1156px;
  5217. top:335px;
  5218. width:79px;
  5219. height:62px;
  5220. display:flex;
  5221. }
  5222. #u146614 .text {
  5223. position:absolute;
  5224. align-self:center;
  5225. padding:2px 2px 2px 2px;
  5226. box-sizing:border-box;
  5227. width:100%;
  5228. }
  5229. #u146614_text {
  5230. border-width:0px;
  5231. word-wrap:break-word;
  5232. text-transform:none;
  5233. visibility:hidden;
  5234. }
  5235. #u146615 {
  5236. border-width:0px;
  5237. position:absolute;
  5238. left:0px;
  5239. top:0px;
  5240. width:0px;
  5241. height:0px;
  5242. }
  5243. #u146616_div {
  5244. border-width:0px;
  5245. position:absolute;
  5246. left:0px;
  5247. top:0px;
  5248. width:358px;
  5249. height:280px;
  5250. background:inherit;
  5251. background-color:rgba(255, 255, 255, 1);
  5252. border:none;
  5253. border-radius:6px;
  5254. -moz-box-shadow:none;
  5255. -webkit-box-shadow:none;
  5256. box-shadow:none;
  5257. }
  5258. #u146616 {
  5259. border-width:0px;
  5260. position:absolute;
  5261. left:972px;
  5262. top:426px;
  5263. width:358px;
  5264. height:280px;
  5265. display:flex;
  5266. }
  5267. #u146616 .text {
  5268. position:absolute;
  5269. align-self:center;
  5270. padding:2px 2px 2px 2px;
  5271. box-sizing:border-box;
  5272. width:100%;
  5273. }
  5274. #u146616_text {
  5275. border-width:0px;
  5276. word-wrap:break-word;
  5277. text-transform:none;
  5278. visibility:hidden;
  5279. }
  5280. #u146617_div {
  5281. border-width:0px;
  5282. position:absolute;
  5283. left:0px;
  5284. top:0px;
  5285. width:57px;
  5286. height:30px;
  5287. background:inherit;
  5288. background-color:rgba(255, 255, 255, 0);
  5289. border:none;
  5290. border-left:0px;
  5291. border-top:0px;
  5292. border-right:0px;
  5293. border-radius:0px;
  5294. border-bottom-right-radius:0px;
  5295. border-bottom-left-radius:0px;
  5296. -moz-box-shadow:none;
  5297. -webkit-box-shadow:none;
  5298. box-shadow:none;
  5299. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5300. font-weight:400;
  5301. font-style:normal;
  5302. font-size:14px;
  5303. line-height:30px;
  5304. }
  5305. #u146617 {
  5306. border-width:0px;
  5307. position:absolute;
  5308. left:986px;
  5309. top:436px;
  5310. width:57px;
  5311. height:30px;
  5312. display:flex;
  5313. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5314. font-weight:400;
  5315. font-style:normal;
  5316. font-size:14px;
  5317. line-height:30px;
  5318. }
  5319. #u146617 .text {
  5320. position:absolute;
  5321. align-self:flex-start;
  5322. padding:0px 0px 0px 0px;
  5323. box-sizing:border-box;
  5324. width:100%;
  5325. }
  5326. #u146617_text {
  5327. border-width:0px;
  5328. white-space:nowrap;
  5329. text-transform:none;
  5330. }
  5331. #u146618_div {
  5332. border-width:0px;
  5333. position:absolute;
  5334. left:0px;
  5335. top:0px;
  5336. width:107px;
  5337. height:30px;
  5338. background:inherit;
  5339. background-color:rgba(255, 255, 255, 0);
  5340. border:none;
  5341. border-radius:0px;
  5342. -moz-box-shadow:none;
  5343. -webkit-box-shadow:none;
  5344. box-shadow:none;
  5345. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5346. font-weight:400;
  5347. font-style:normal;
  5348. font-size:12px;
  5349. color:#7F7F7F;
  5350. text-align:right;
  5351. line-height:30px;
  5352. }
  5353. #u146618 {
  5354. border-width:0px;
  5355. position:absolute;
  5356. left:1210px;
  5357. top:546px;
  5358. width:107px;
  5359. height:30px;
  5360. display:flex;
  5361. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5362. font-weight:400;
  5363. font-style:normal;
  5364. font-size:12px;
  5365. color:#7F7F7F;
  5366. text-align:right;
  5367. line-height:30px;
  5368. }
  5369. #u146618 .text {
  5370. position:absolute;
  5371. align-self:flex-start;
  5372. padding:0px 0px 0px 0px;
  5373. box-sizing:border-box;
  5374. width:100%;
  5375. }
  5376. #u146618_text {
  5377. border-width:0px;
  5378. white-space:nowrap;
  5379. text-transform:none;
  5380. }
  5381. #u146619_img {
  5382. border-width:0px;
  5383. position:absolute;
  5384. left:0px;
  5385. top:0px;
  5386. width:2px;
  5387. height:201px;
  5388. }
  5389. #u146619 {
  5390. border-width:0px;
  5391. position:absolute;
  5392. left:996px;
  5393. top:476px;
  5394. width:1px;
  5395. height:200px;
  5396. display:flex;
  5397. }
  5398. #u146619 .text {
  5399. position:absolute;
  5400. align-self:center;
  5401. padding:2px 2px 2px 2px;
  5402. box-sizing:border-box;
  5403. width:100%;
  5404. }
  5405. #u146619_text {
  5406. border-width:0px;
  5407. word-wrap:break-word;
  5408. text-transform:none;
  5409. visibility:hidden;
  5410. }
  5411. #u146620_div {
  5412. border-width:0px;
  5413. position:absolute;
  5414. left:0px;
  5415. top:0px;
  5416. width:97px;
  5417. height:30px;
  5418. background:inherit;
  5419. background-color:rgba(255, 255, 255, 0);
  5420. border:none;
  5421. border-left:0px;
  5422. border-top:0px;
  5423. border-right:0px;
  5424. border-radius:0px;
  5425. border-bottom-right-radius:0px;
  5426. border-bottom-left-radius:0px;
  5427. -moz-box-shadow:none;
  5428. -webkit-box-shadow:none;
  5429. box-shadow:none;
  5430. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5431. font-weight:400;
  5432. font-style:normal;
  5433. font-size:14px;
  5434. color:#000000;
  5435. line-height:30px;
  5436. }
  5437. #u146620 {
  5438. border-width:0px;
  5439. position:absolute;
  5440. left:966px;
  5441. top:476px;
  5442. width:97px;
  5443. height:30px;
  5444. display:flex;
  5445. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5446. font-weight:400;
  5447. font-style:normal;
  5448. font-size:14px;
  5449. color:#000000;
  5450. line-height:30px;
  5451. }
  5452. #u146620 .text {
  5453. position:absolute;
  5454. align-self:flex-start;
  5455. padding:0px 0px 0px 0px;
  5456. box-sizing:border-box;
  5457. width:100%;
  5458. }
  5459. #u146620_text {
  5460. border-width:0px;
  5461. white-space:nowrap;
  5462. text-transform:none;
  5463. }
  5464. #u146621_div {
  5465. border-width:0px;
  5466. position:absolute;
  5467. left:0px;
  5468. top:0px;
  5469. width:144px;
  5470. height:30px;
  5471. background:inherit;
  5472. background-color:rgba(255, 255, 255, 0);
  5473. border:none;
  5474. border-radius:0px;
  5475. -moz-box-shadow:none;
  5476. -webkit-box-shadow:none;
  5477. box-shadow:none;
  5478. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5479. font-weight:400;
  5480. font-style:normal;
  5481. font-size:12px;
  5482. color:#AAAAAA;
  5483. line-height:30px;
  5484. }
  5485. #u146621 {
  5486. border-width:0px;
  5487. position:absolute;
  5488. left:1008px;
  5489. top:506px;
  5490. width:144px;
  5491. height:30px;
  5492. display:flex;
  5493. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5494. font-weight:400;
  5495. font-style:normal;
  5496. font-size:12px;
  5497. color:#AAAAAA;
  5498. line-height:30px;
  5499. }
  5500. #u146621 .text {
  5501. position:absolute;
  5502. align-self:flex-start;
  5503. padding:0px 0px 0px 0px;
  5504. box-sizing:border-box;
  5505. width:100%;
  5506. }
  5507. #u146621_text {
  5508. border-width:0px;
  5509. white-space:nowrap;
  5510. text-transform:none;
  5511. }
  5512. #u146622_div {
  5513. border-width:0px;
  5514. position:absolute;
  5515. left:0px;
  5516. top:0px;
  5517. width:69px;
  5518. height:30px;
  5519. background:inherit;
  5520. background-color:rgba(255, 255, 255, 0);
  5521. border:none;
  5522. border-left:0px;
  5523. border-top:0px;
  5524. border-right:0px;
  5525. border-radius:0px;
  5526. border-bottom-right-radius:0px;
  5527. border-bottom-left-radius:0px;
  5528. -moz-box-shadow:none;
  5529. -webkit-box-shadow:none;
  5530. box-shadow:none;
  5531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5532. font-weight:400;
  5533. font-style:normal;
  5534. font-size:14px;
  5535. color:#000000;
  5536. line-height:30px;
  5537. }
  5538. #u146622 {
  5539. border-width:0px;
  5540. position:absolute;
  5541. left:966px;
  5542. top:546px;
  5543. width:69px;
  5544. height:30px;
  5545. display:flex;
  5546. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5547. font-weight:400;
  5548. font-style:normal;
  5549. font-size:14px;
  5550. color:#000000;
  5551. line-height:30px;
  5552. }
  5553. #u146622 .text {
  5554. position:absolute;
  5555. align-self:flex-start;
  5556. padding:0px 0px 0px 0px;
  5557. box-sizing:border-box;
  5558. width:100%;
  5559. }
  5560. #u146622_text {
  5561. border-width:0px;
  5562. white-space:nowrap;
  5563. text-transform:none;
  5564. }
  5565. #u146623_div {
  5566. border-width:0px;
  5567. position:absolute;
  5568. left:0px;
  5569. top:0px;
  5570. width:169px;
  5571. height:30px;
  5572. background:inherit;
  5573. background-color:rgba(255, 255, 255, 0);
  5574. border:none;
  5575. border-radius:0px;
  5576. -moz-box-shadow:none;
  5577. -webkit-box-shadow:none;
  5578. box-shadow:none;
  5579. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5580. font-weight:400;
  5581. font-style:normal;
  5582. font-size:12px;
  5583. line-height:30px;
  5584. }
  5585. #u146623 {
  5586. border-width:0px;
  5587. position:absolute;
  5588. left:1008px;
  5589. top:576px;
  5590. width:169px;
  5591. height:30px;
  5592. display:flex;
  5593. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5594. font-weight:400;
  5595. font-style:normal;
  5596. font-size:12px;
  5597. line-height:30px;
  5598. }
  5599. #u146623 .text {
  5600. position:absolute;
  5601. align-self:flex-start;
  5602. padding:0px 0px 0px 0px;
  5603. box-sizing:border-box;
  5604. width:100%;
  5605. }
  5606. #u146623_text {
  5607. border-width:0px;
  5608. white-space:nowrap;
  5609. text-transform:none;
  5610. }
  5611. #u146624_div {
  5612. border-width:0px;
  5613. position:absolute;
  5614. left:0px;
  5615. top:0px;
  5616. width:69px;
  5617. height:30px;
  5618. background:inherit;
  5619. background-color:rgba(255, 255, 255, 0);
  5620. border:none;
  5621. border-left:0px;
  5622. border-top:0px;
  5623. border-right:0px;
  5624. border-radius:0px;
  5625. border-bottom-right-radius:0px;
  5626. border-bottom-left-radius:0px;
  5627. -moz-box-shadow:none;
  5628. -webkit-box-shadow:none;
  5629. box-shadow:none;
  5630. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5631. font-weight:400;
  5632. font-style:normal;
  5633. font-size:14px;
  5634. color:#AAAAAA;
  5635. line-height:30px;
  5636. }
  5637. #u146624 {
  5638. border-width:0px;
  5639. position:absolute;
  5640. left:966px;
  5641. top:626px;
  5642. width:69px;
  5643. height:30px;
  5644. display:flex;
  5645. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5646. font-weight:400;
  5647. font-style:normal;
  5648. font-size:14px;
  5649. color:#AAAAAA;
  5650. line-height:30px;
  5651. }
  5652. #u146624 .text {
  5653. position:absolute;
  5654. align-self:flex-start;
  5655. padding:0px 0px 0px 0px;
  5656. box-sizing:border-box;
  5657. width:100%;
  5658. }
  5659. #u146624_text {
  5660. border-width:0px;
  5661. white-space:nowrap;
  5662. text-transform:none;
  5663. }
  5664. #u146625_div {
  5665. border-width:0px;
  5666. position:absolute;
  5667. left:0px;
  5668. top:0px;
  5669. width:61px;
  5670. height:30px;
  5671. background:inherit;
  5672. background-color:rgba(255, 255, 255, 0);
  5673. border:none;
  5674. border-radius:0px;
  5675. -moz-box-shadow:none;
  5676. -webkit-box-shadow:none;
  5677. box-shadow:none;
  5678. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5679. font-weight:400;
  5680. font-style:normal;
  5681. font-size:12px;
  5682. line-height:30px;
  5683. }
  5684. #u146625 {
  5685. border-width:0px;
  5686. position:absolute;
  5687. left:1008px;
  5688. top:656px;
  5689. width:61px;
  5690. height:30px;
  5691. display:flex;
  5692. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5693. font-weight:400;
  5694. font-style:normal;
  5695. font-size:12px;
  5696. line-height:30px;
  5697. }
  5698. #u146625 .text {
  5699. position:absolute;
  5700. align-self:flex-start;
  5701. padding:0px 0px 0px 0px;
  5702. box-sizing:border-box;
  5703. width:100%;
  5704. }
  5705. #u146625_text {
  5706. border-width:0px;
  5707. white-space:nowrap;
  5708. text-transform:none;
  5709. }
  5710. #u146626_div {
  5711. border-width:0px;
  5712. position:absolute;
  5713. left:0px;
  5714. top:0px;
  5715. width:107px;
  5716. height:30px;
  5717. background:inherit;
  5718. background-color:rgba(255, 255, 255, 0);
  5719. border:none;
  5720. border-radius:0px;
  5721. -moz-box-shadow:none;
  5722. -webkit-box-shadow:none;
  5723. box-shadow:none;
  5724. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5725. font-weight:400;
  5726. font-style:normal;
  5727. font-size:12px;
  5728. color:#7F7F7F;
  5729. text-align:right;
  5730. line-height:30px;
  5731. }
  5732. #u146626 {
  5733. border-width:0px;
  5734. position:absolute;
  5735. left:1210px;
  5736. top:476px;
  5737. width:107px;
  5738. height:30px;
  5739. display:flex;
  5740. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5741. font-weight:400;
  5742. font-style:normal;
  5743. font-size:12px;
  5744. color:#7F7F7F;
  5745. text-align:right;
  5746. line-height:30px;
  5747. }
  5748. #u146626 .text {
  5749. position:absolute;
  5750. align-self:flex-start;
  5751. padding:0px 0px 0px 0px;
  5752. box-sizing:border-box;
  5753. width:100%;
  5754. }
  5755. #u146626_text {
  5756. border-width:0px;
  5757. white-space:nowrap;
  5758. text-transform:none;
  5759. }
  5760. #u146627 {
  5761. border-width:0px;
  5762. position:absolute;
  5763. left:0px;
  5764. top:0px;
  5765. width:0px;
  5766. height:0px;
  5767. }
  5768. #u146628_div {
  5769. border-width:0px;
  5770. position:absolute;
  5771. left:0px;
  5772. top:0px;
  5773. width:375px;
  5774. height:60px;
  5775. background:inherit;
  5776. background-color:rgba(255, 255, 255, 1);
  5777. box-sizing:border-box;
  5778. border-width:1px;
  5779. border-style:solid;
  5780. border-color:rgba(242, 242, 242, 1);
  5781. border-radius:20px;
  5782. border-top-left-radius:0px;
  5783. border-top-right-radius:0px;
  5784. -moz-box-shadow:none;
  5785. -webkit-box-shadow:none;
  5786. box-shadow:none;
  5787. }
  5788. #u146628 {
  5789. border-width:0px;
  5790. position:absolute;
  5791. left:962px;
  5792. top:779px;
  5793. width:375px;
  5794. height:60px;
  5795. display:flex;
  5796. }
  5797. #u146628 .text {
  5798. position:absolute;
  5799. align-self:center;
  5800. padding:2px 2px 2px 2px;
  5801. box-sizing:border-box;
  5802. width:100%;
  5803. }
  5804. #u146628_text {
  5805. border-width:0px;
  5806. word-wrap:break-word;
  5807. text-transform:none;
  5808. visibility:hidden;
  5809. }
  5810. #u146629_div {
  5811. border-width:0px;
  5812. position:absolute;
  5813. left:0px;
  5814. top:0px;
  5815. width:160px;
  5816. height:40px;
  5817. background:inherit;
  5818. background-color:rgba(0, 137, 254, 1);
  5819. border:none;
  5820. border-radius:63px;
  5821. -moz-box-shadow:none;
  5822. -webkit-box-shadow:none;
  5823. box-shadow:none;
  5824. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5825. font-weight:400;
  5826. font-style:normal;
  5827. font-size:14px;
  5828. color:#FFFFFF;
  5829. }
  5830. #u146629 {
  5831. border-width:0px;
  5832. position:absolute;
  5833. left:1157px;
  5834. top:789px;
  5835. width:160px;
  5836. height:40px;
  5837. display:flex;
  5838. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5839. font-weight:400;
  5840. font-style:normal;
  5841. font-size:14px;
  5842. color:#FFFFFF;
  5843. }
  5844. #u146629 .text {
  5845. position:absolute;
  5846. align-self:center;
  5847. padding:2px 2px 2px 2px;
  5848. box-sizing:border-box;
  5849. width:100%;
  5850. }
  5851. #u146629_text {
  5852. border-width:0px;
  5853. word-wrap:break-word;
  5854. text-transform:none;
  5855. }
  5856. #u146630_div {
  5857. border-width:0px;
  5858. position:absolute;
  5859. left:0px;
  5860. top:0px;
  5861. width:160px;
  5862. height:40px;
  5863. background:inherit;
  5864. background-color:rgba(255, 255, 255, 1);
  5865. box-sizing:border-box;
  5866. border-width:1px;
  5867. border-style:solid;
  5868. border-color:rgba(245, 154, 35, 1);
  5869. border-radius:63px;
  5870. -moz-box-shadow:none;
  5871. -webkit-box-shadow:none;
  5872. box-shadow:none;
  5873. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5874. font-weight:400;
  5875. font-style:normal;
  5876. font-size:14px;
  5877. color:#F59A23;
  5878. }
  5879. #u146630 {
  5880. border-width:0px;
  5881. position:absolute;
  5882. left:982px;
  5883. top:789px;
  5884. width:160px;
  5885. height:40px;
  5886. display:flex;
  5887. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5888. font-weight:400;
  5889. font-style:normal;
  5890. font-size:14px;
  5891. color:#F59A23;
  5892. }
  5893. #u146630 .text {
  5894. position:absolute;
  5895. align-self:center;
  5896. padding:2px 2px 2px 2px;
  5897. box-sizing:border-box;
  5898. width:100%;
  5899. }
  5900. #u146630_text {
  5901. border-width:0px;
  5902. word-wrap:break-word;
  5903. text-transform:none;
  5904. }
  5905. #u146631 {
  5906. border-width:0px;
  5907. position:absolute;
  5908. left:0px;
  5909. top:0px;
  5910. width:0px;
  5911. height:0px;
  5912. }
  5913. #u146632_div {
  5914. border-width:0px;
  5915. position:absolute;
  5916. left:0px;
  5917. top:0px;
  5918. width:127px;
  5919. height:20px;
  5920. background:inherit;
  5921. background-color:rgba(255, 255, 255, 0);
  5922. border:none;
  5923. border-left:0px;
  5924. border-top:0px;
  5925. border-right:0px;
  5926. border-radius:0px;
  5927. border-bottom-right-radius:0px;
  5928. border-bottom-left-radius:0px;
  5929. -moz-box-shadow:none;
  5930. -webkit-box-shadow:none;
  5931. box-shadow:none;
  5932. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5933. font-weight:400;
  5934. font-style:normal;
  5935. font-size:14px;
  5936. }
  5937. #u146632 {
  5938. border-width:0px;
  5939. position:absolute;
  5940. left:978px;
  5941. top:128px;
  5942. width:127px;
  5943. height:20px;
  5944. display:flex;
  5945. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5946. font-weight:400;
  5947. font-style:normal;
  5948. font-size:14px;
  5949. }
  5950. #u146632 .text {
  5951. position:absolute;
  5952. align-self:flex-start;
  5953. padding:0px 0px 0px 0px;
  5954. box-sizing:border-box;
  5955. width:100%;
  5956. }
  5957. #u146632_text {
  5958. border-width:0px;
  5959. white-space:nowrap;
  5960. text-transform:none;
  5961. }
  5962. #u146633_div {
  5963. border-width:0px;
  5964. position:absolute;
  5965. left:0px;
  5966. top:0px;
  5967. width:9px;
  5968. height:11px;
  5969. background:inherit;
  5970. background-color:rgba(51, 51, 51, 1);
  5971. border:none;
  5972. border-radius:17px;
  5973. -moz-box-shadow:none;
  5974. -webkit-box-shadow:none;
  5975. box-shadow:none;
  5976. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5977. font-weight:400;
  5978. font-style:normal;
  5979. font-size:8px;
  5980. color:#FFFFFF;
  5981. }
  5982. #u146633 {
  5983. border-width:0px;
  5984. position:absolute;
  5985. left:1110px;
  5986. top:133px;
  5987. width:9px;
  5988. height:11px;
  5989. display:flex;
  5990. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5991. font-weight:400;
  5992. font-style:normal;
  5993. font-size:8px;
  5994. color:#FFFFFF;
  5995. }
  5996. #u146633 .text {
  5997. position:absolute;
  5998. align-self:center;
  5999. padding:0px 0px 0px 0px;
  6000. box-sizing:border-box;
  6001. width:100%;
  6002. }
  6003. #u146633_text {
  6004. border-width:0px;
  6005. white-space:nowrap;
  6006. text-transform:none;
  6007. }
  6008. #u146634 {
  6009. border-width:0px;
  6010. position:absolute;
  6011. left:0px;
  6012. top:0px;
  6013. width:0px;
  6014. height:0px;
  6015. }
  6016. #u146635_div {
  6017. border-width:0px;
  6018. position:absolute;
  6019. left:0px;
  6020. top:0px;
  6021. width:133px;
  6022. height:20px;
  6023. background:inherit;
  6024. background-color:rgba(255, 255, 255, 0);
  6025. border:none;
  6026. border-left:0px;
  6027. border-top:0px;
  6028. border-right:0px;
  6029. border-radius:0px;
  6030. border-bottom-right-radius:0px;
  6031. border-bottom-left-radius:0px;
  6032. -moz-box-shadow:none;
  6033. -webkit-box-shadow:none;
  6034. box-shadow:none;
  6035. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6036. font-weight:400;
  6037. font-style:normal;
  6038. font-size:14px;
  6039. }
  6040. #u146635 {
  6041. border-width:0px;
  6042. position:absolute;
  6043. left:1149px;
  6044. top:128px;
  6045. width:133px;
  6046. height:20px;
  6047. display:flex;
  6048. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6049. font-weight:400;
  6050. font-style:normal;
  6051. font-size:14px;
  6052. }
  6053. #u146635 .text {
  6054. position:absolute;
  6055. align-self:flex-start;
  6056. padding:0px 0px 0px 0px;
  6057. box-sizing:border-box;
  6058. width:100%;
  6059. }
  6060. #u146635_text {
  6061. border-width:0px;
  6062. white-space:nowrap;
  6063. text-transform:none;
  6064. }
  6065. #u146636_div {
  6066. border-width:0px;
  6067. position:absolute;
  6068. left:0px;
  6069. top:0px;
  6070. width:9px;
  6071. height:11px;
  6072. background:inherit;
  6073. background-color:rgba(51, 51, 51, 1);
  6074. border:none;
  6075. border-radius:17px;
  6076. -moz-box-shadow:none;
  6077. -webkit-box-shadow:none;
  6078. box-shadow:none;
  6079. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6080. font-weight:400;
  6081. font-style:normal;
  6082. font-size:8px;
  6083. color:#FFFFFF;
  6084. }
  6085. #u146636 {
  6086. border-width:0px;
  6087. position:absolute;
  6088. left:1285px;
  6089. top:133px;
  6090. width:9px;
  6091. height:11px;
  6092. display:flex;
  6093. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6094. font-weight:400;
  6095. font-style:normal;
  6096. font-size:8px;
  6097. color:#FFFFFF;
  6098. }
  6099. #u146636 .text {
  6100. position:absolute;
  6101. align-self:center;
  6102. padding:0px 0px 0px 0px;
  6103. box-sizing:border-box;
  6104. width:100%;
  6105. }
  6106. #u146636_text {
  6107. border-width:0px;
  6108. white-space:nowrap;
  6109. text-transform:none;
  6110. }
  6111. #u146637_img {
  6112. border-width:0px;
  6113. position:absolute;
  6114. left:0px;
  6115. top:0px;
  6116. width:10px;
  6117. height:11px;
  6118. }
  6119. #u146637 {
  6120. border-width:0px;
  6121. position:absolute;
  6122. left:1130px;
  6123. top:133px;
  6124. width:10px;
  6125. height:11px;
  6126. display:flex;
  6127. }
  6128. #u146637 .text {
  6129. position:absolute;
  6130. align-self:center;
  6131. padding:2px 2px 2px 2px;
  6132. box-sizing:border-box;
  6133. width:100%;
  6134. }
  6135. #u146637_text {
  6136. border-width:0px;
  6137. word-wrap:break-word;
  6138. text-transform:none;
  6139. visibility:hidden;
  6140. }
  6141. #u146638 {
  6142. border-width:0px;
  6143. position:absolute;
  6144. left:0px;
  6145. top:0px;
  6146. width:0px;
  6147. height:0px;
  6148. }
  6149. #u146639_div {
  6150. border-width:0px;
  6151. position:absolute;
  6152. left:0px;
  6153. top:0px;
  6154. width:72px;
  6155. height:20px;
  6156. background:inherit;
  6157. background-color:rgba(255, 255, 255, 0);
  6158. border:none;
  6159. border-left:0px;
  6160. border-top:0px;
  6161. border-right:0px;
  6162. border-radius:0px;
  6163. border-bottom-right-radius:0px;
  6164. border-bottom-left-radius:0px;
  6165. -moz-box-shadow:none;
  6166. -webkit-box-shadow:none;
  6167. box-shadow:none;
  6168. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6169. font-weight:400;
  6170. font-style:normal;
  6171. font-size:14px;
  6172. }
  6173. #u146639 {
  6174. border-width:0px;
  6175. position:absolute;
  6176. left:508px;
  6177. top:128px;
  6178. width:72px;
  6179. height:20px;
  6180. display:flex;
  6181. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6182. font-weight:400;
  6183. font-style:normal;
  6184. font-size:14px;
  6185. }
  6186. #u146639 .text {
  6187. position:absolute;
  6188. align-self:flex-start;
  6189. padding:0px 0px 0px 0px;
  6190. box-sizing:border-box;
  6191. width:100%;
  6192. }
  6193. #u146639_text {
  6194. border-width:0px;
  6195. white-space:nowrap;
  6196. text-transform:none;
  6197. }
  6198. #u146640_div {
  6199. border-width:0px;
  6200. position:absolute;
  6201. left:0px;
  6202. top:0px;
  6203. width:9px;
  6204. height:11px;
  6205. background:inherit;
  6206. background-color:rgba(51, 51, 51, 1);
  6207. border:none;
  6208. border-radius:17px;
  6209. -moz-box-shadow:none;
  6210. -webkit-box-shadow:none;
  6211. box-shadow:none;
  6212. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6213. font-weight:400;
  6214. font-style:normal;
  6215. font-size:8px;
  6216. color:#FFFFFF;
  6217. }
  6218. #u146640 {
  6219. border-width:0px;
  6220. position:absolute;
  6221. left:584px;
  6222. top:133px;
  6223. width:9px;
  6224. height:11px;
  6225. display:flex;
  6226. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6227. font-weight:400;
  6228. font-style:normal;
  6229. font-size:8px;
  6230. color:#FFFFFF;
  6231. }
  6232. #u146640 .text {
  6233. position:absolute;
  6234. align-self:center;
  6235. padding:0px 0px 0px 0px;
  6236. box-sizing:border-box;
  6237. width:100%;
  6238. }
  6239. #u146640_text {
  6240. border-width:0px;
  6241. white-space:nowrap;
  6242. text-transform:none;
  6243. }
  6244. #u146641 {
  6245. border-width:0px;
  6246. position:absolute;
  6247. left:0px;
  6248. top:0px;
  6249. width:0px;
  6250. height:0px;
  6251. }
  6252. #u146642_div {
  6253. border-width:0px;
  6254. position:absolute;
  6255. left:0px;
  6256. top:0px;
  6257. width:72px;
  6258. height:20px;
  6259. background:inherit;
  6260. background-color:rgba(255, 255, 255, 0);
  6261. border:none;
  6262. border-left:0px;
  6263. border-top:0px;
  6264. border-right:0px;
  6265. border-radius:0px;
  6266. border-bottom-right-radius:0px;
  6267. border-bottom-left-radius:0px;
  6268. -moz-box-shadow:none;
  6269. -webkit-box-shadow:none;
  6270. box-shadow:none;
  6271. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6272. font-weight:400;
  6273. font-style:normal;
  6274. font-size:14px;
  6275. }
  6276. #u146642 {
  6277. border-width:0px;
  6278. position:absolute;
  6279. left:627px;
  6280. top:128px;
  6281. width:72px;
  6282. height:20px;
  6283. display:flex;
  6284. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6285. font-weight:400;
  6286. font-style:normal;
  6287. font-size:14px;
  6288. }
  6289. #u146642 .text {
  6290. position:absolute;
  6291. align-self:flex-start;
  6292. padding:0px 0px 0px 0px;
  6293. box-sizing:border-box;
  6294. width:100%;
  6295. }
  6296. #u146642_text {
  6297. border-width:0px;
  6298. white-space:nowrap;
  6299. text-transform:none;
  6300. }
  6301. #u146643_div {
  6302. border-width:0px;
  6303. position:absolute;
  6304. left:0px;
  6305. top:0px;
  6306. width:9px;
  6307. height:11px;
  6308. background:inherit;
  6309. background-color:rgba(51, 51, 51, 1);
  6310. border:none;
  6311. border-radius:17px;
  6312. -moz-box-shadow:none;
  6313. -webkit-box-shadow:none;
  6314. box-shadow:none;
  6315. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6316. font-weight:400;
  6317. font-style:normal;
  6318. font-size:8px;
  6319. color:#FFFFFF;
  6320. }
  6321. #u146643 {
  6322. border-width:0px;
  6323. position:absolute;
  6324. left:703px;
  6325. top:133px;
  6326. width:9px;
  6327. height:11px;
  6328. display:flex;
  6329. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6330. font-weight:400;
  6331. font-style:normal;
  6332. font-size:8px;
  6333. color:#FFFFFF;
  6334. }
  6335. #u146643 .text {
  6336. position:absolute;
  6337. align-self:center;
  6338. padding:0px 0px 0px 0px;
  6339. box-sizing:border-box;
  6340. width:100%;
  6341. }
  6342. #u146643_text {
  6343. border-width:0px;
  6344. white-space:nowrap;
  6345. text-transform:none;
  6346. }
  6347. #u146644_img {
  6348. border-width:0px;
  6349. position:absolute;
  6350. left:0px;
  6351. top:0px;
  6352. width:10px;
  6353. height:11px;
  6354. }
  6355. #u146644 {
  6356. border-width:0px;
  6357. position:absolute;
  6358. left:605px;
  6359. top:133px;
  6360. width:10px;
  6361. height:11px;
  6362. display:flex;
  6363. }
  6364. #u146644 .text {
  6365. position:absolute;
  6366. align-self:center;
  6367. padding:2px 2px 2px 2px;
  6368. box-sizing:border-box;
  6369. width:100%;
  6370. }
  6371. #u146644_text {
  6372. border-width:0px;
  6373. word-wrap:break-word;
  6374. text-transform:none;
  6375. visibility:hidden;
  6376. }
  6377. #u146645 {
  6378. border-width:0px;
  6379. position:absolute;
  6380. left:0px;
  6381. top:0px;
  6382. width:0px;
  6383. height:0px;
  6384. }
  6385. #u146646_div {
  6386. border-width:0px;
  6387. position:absolute;
  6388. left:0px;
  6389. top:0px;
  6390. width:375px;
  6391. height:40px;
  6392. background:inherit;
  6393. background-color:rgba(255, 255, 255, 1);
  6394. box-sizing:border-box;
  6395. border-width:1px;
  6396. border-style:solid;
  6397. border-color:rgba(215, 215, 215, 1);
  6398. border-left:0px;
  6399. border-top:0px;
  6400. border-right:0px;
  6401. border-radius:0px;
  6402. border-bottom-right-radius:0px;
  6403. border-bottom-left-radius:0px;
  6404. -moz-box-shadow:none;
  6405. -webkit-box-shadow:none;
  6406. box-shadow:none;
  6407. }
  6408. #u146646 {
  6409. border-width:0px;
  6410. position:absolute;
  6411. left:29px;
  6412. top:66px;
  6413. width:375px;
  6414. height:40px;
  6415. display:flex;
  6416. }
  6417. #u146646 .text {
  6418. position:absolute;
  6419. align-self:center;
  6420. padding:2px 2px 2px 2px;
  6421. box-sizing:border-box;
  6422. width:100%;
  6423. }
  6424. #u146646_text {
  6425. border-width:0px;
  6426. word-wrap:break-word;
  6427. text-transform:none;
  6428. visibility:hidden;
  6429. }
  6430. #u146647 {
  6431. border-width:0px;
  6432. position:absolute;
  6433. left:0px;
  6434. top:0px;
  6435. width:0px;
  6436. height:0px;
  6437. }
  6438. #u146648_div {
  6439. border-width:0px;
  6440. position:absolute;
  6441. left:0px;
  6442. top:0px;
  6443. width:88px;
  6444. height:32px;
  6445. background:inherit;
  6446. background-color:rgba(255, 255, 255, 1);
  6447. box-sizing:border-box;
  6448. border-width:1px;
  6449. border-style:solid;
  6450. border-color:rgba(242, 242, 242, 1);
  6451. border-radius:33px;
  6452. -moz-box-shadow:none;
  6453. -webkit-box-shadow:none;
  6454. box-shadow:none;
  6455. }
  6456. #u146648 {
  6457. border-width:0px;
  6458. position:absolute;
  6459. left:309px;
  6460. top:71px;
  6461. width:88px;
  6462. height:32px;
  6463. display:flex;
  6464. }
  6465. #u146648 .text {
  6466. position:absolute;
  6467. align-self:center;
  6468. padding:2px 2px 2px 2px;
  6469. box-sizing:border-box;
  6470. width:100%;
  6471. }
  6472. #u146648_text {
  6473. border-width:0px;
  6474. word-wrap:break-word;
  6475. text-transform:none;
  6476. visibility:hidden;
  6477. }
  6478. #u146649 {
  6479. border-width:0px;
  6480. position:absolute;
  6481. left:0px;
  6482. top:0px;
  6483. width:0px;
  6484. height:0px;
  6485. }
  6486. #u146650_img {
  6487. border-width:0px;
  6488. position:absolute;
  6489. left:0px;
  6490. top:0px;
  6491. width:18px;
  6492. height:18px;
  6493. }
  6494. #u146650 {
  6495. border-width:0px;
  6496. position:absolute;
  6497. left:372px;
  6498. top:78px;
  6499. width:18px;
  6500. height:18px;
  6501. display:flex;
  6502. }
  6503. #u146650 .text {
  6504. position:absolute;
  6505. align-self:center;
  6506. padding:2px 2px 2px 2px;
  6507. box-sizing:border-box;
  6508. width:100%;
  6509. }
  6510. #u146650_text {
  6511. border-width:0px;
  6512. word-wrap:break-word;
  6513. text-transform:none;
  6514. visibility:hidden;
  6515. }
  6516. #u146651_img {
  6517. border-width:0px;
  6518. position:absolute;
  6519. left:0px;
  6520. top:0px;
  6521. width:6px;
  6522. height:6px;
  6523. }
  6524. #u146651 {
  6525. border-width:0px;
  6526. position:absolute;
  6527. left:378px;
  6528. top:84px;
  6529. width:6px;
  6530. height:6px;
  6531. display:flex;
  6532. }
  6533. #u146651 .text {
  6534. position:absolute;
  6535. align-self:center;
  6536. padding:2px 2px 2px 2px;
  6537. box-sizing:border-box;
  6538. width:100%;
  6539. }
  6540. #u146651_text {
  6541. border-width:0px;
  6542. word-wrap:break-word;
  6543. text-transform:none;
  6544. visibility:hidden;
  6545. }
  6546. #u146652 {
  6547. border-width:0px;
  6548. position:absolute;
  6549. left:0px;
  6550. top:0px;
  6551. width:0px;
  6552. height:0px;
  6553. }
  6554. #u146653_img {
  6555. border-width:0px;
  6556. position:absolute;
  6557. left:0px;
  6558. top:0px;
  6559. width:5px;
  6560. height:5px;
  6561. }
  6562. #u146653 {
  6563. border-width:0px;
  6564. position:absolute;
  6565. left:323px;
  6566. top:85px;
  6567. width:5px;
  6568. height:5px;
  6569. display:flex;
  6570. }
  6571. #u146653 .text {
  6572. position:absolute;
  6573. align-self:center;
  6574. padding:2px 2px 2px 2px;
  6575. box-sizing:border-box;
  6576. width:100%;
  6577. }
  6578. #u146653_text {
  6579. border-width:0px;
  6580. word-wrap:break-word;
  6581. text-transform:none;
  6582. visibility:hidden;
  6583. }
  6584. #u146654_img {
  6585. border-width:0px;
  6586. position:absolute;
  6587. left:0px;
  6588. top:0px;
  6589. width:5px;
  6590. height:5px;
  6591. }
  6592. #u146654 {
  6593. border-width:0px;
  6594. position:absolute;
  6595. left:339px;
  6596. top:85px;
  6597. width:5px;
  6598. height:5px;
  6599. display:flex;
  6600. }
  6601. #u146654 .text {
  6602. position:absolute;
  6603. align-self:center;
  6604. padding:2px 2px 2px 2px;
  6605. box-sizing:border-box;
  6606. width:100%;
  6607. }
  6608. #u146654_text {
  6609. border-width:0px;
  6610. word-wrap:break-word;
  6611. text-transform:none;
  6612. visibility:hidden;
  6613. }
  6614. #u146655_img {
  6615. border-width:0px;
  6616. position:absolute;
  6617. left:0px;
  6618. top:0px;
  6619. width:7px;
  6620. height:7px;
  6621. }
  6622. #u146655 {
  6623. border-width:0px;
  6624. position:absolute;
  6625. left:330px;
  6626. top:84px;
  6627. width:7px;
  6628. height:7px;
  6629. display:flex;
  6630. }
  6631. #u146655 .text {
  6632. position:absolute;
  6633. align-self:center;
  6634. padding:2px 2px 2px 2px;
  6635. box-sizing:border-box;
  6636. width:100%;
  6637. }
  6638. #u146655_text {
  6639. border-width:0px;
  6640. word-wrap:break-word;
  6641. text-transform:none;
  6642. visibility:hidden;
  6643. }
  6644. #u146656_img {
  6645. border-width:0px;
  6646. position:absolute;
  6647. left:0px;
  6648. top:0px;
  6649. width:19px;
  6650. height:2px;
  6651. }
  6652. #u146656 {
  6653. border-width:0px;
  6654. position:absolute;
  6655. left:347px;
  6656. top:87px;
  6657. width:18px;
  6658. height:1px;
  6659. display:flex;
  6660. -webkit-transform:rotate(90deg);
  6661. -moz-transform:rotate(90deg);
  6662. -ms-transform:rotate(90deg);
  6663. transform:rotate(90deg);
  6664. }
  6665. #u146656 .text {
  6666. position:absolute;
  6667. align-self:center;
  6668. padding:2px 2px 2px 2px;
  6669. box-sizing:border-box;
  6670. width:100%;
  6671. }
  6672. #u146656_text {
  6673. border-width:0px;
  6674. word-wrap:break-word;
  6675. text-transform:none;
  6676. visibility:hidden;
  6677. }
  6678. #u146657_div {
  6679. border-width:0px;
  6680. position:absolute;
  6681. left:0px;
  6682. top:0px;
  6683. width:12px;
  6684. height:12px;
  6685. background:inherit;
  6686. background-color:rgba(255, 255, 255, 0);
  6687. box-sizing:border-box;
  6688. border-width:2px;
  6689. border-style:solid;
  6690. border-color:rgba(51, 51, 51, 1);
  6691. border-right:0px;
  6692. border-bottom:0px;
  6693. border-radius:0px;
  6694. border-top-right-radius:0px;
  6695. border-bottom-left-radius:0px;
  6696. -moz-box-shadow:none;
  6697. -webkit-box-shadow:none;
  6698. box-shadow:none;
  6699. }
  6700. #u146657 {
  6701. border-width:0px;
  6702. position:absolute;
  6703. left:44px;
  6704. top:80px;
  6705. width:12px;
  6706. height:12px;
  6707. display:flex;
  6708. -webkit-transform:rotate(315deg);
  6709. -moz-transform:rotate(315deg);
  6710. -ms-transform:rotate(315deg);
  6711. transform:rotate(315deg);
  6712. }
  6713. #u146657 .text {
  6714. position:absolute;
  6715. align-self:center;
  6716. padding:2px 2px 2px 2px;
  6717. box-sizing:border-box;
  6718. width:100%;
  6719. }
  6720. #u146657_text {
  6721. border-width:0px;
  6722. word-wrap:break-word;
  6723. text-transform:none;
  6724. visibility:hidden;
  6725. }
  6726. #u146658_div {
  6727. border-width:0px;
  6728. position:absolute;
  6729. left:0px;
  6730. top:0px;
  6731. width:65px;
  6732. height:22px;
  6733. background:inherit;
  6734. background-color:rgba(255, 255, 255, 0);
  6735. border:none;
  6736. border-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:16px;
  6744. color:#000000;
  6745. }
  6746. #u146658 {
  6747. border-width:0px;
  6748. position:absolute;
  6749. left:58px;
  6750. top:75px;
  6751. width:65px;
  6752. height:22px;
  6753. display:flex;
  6754. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6755. font-weight:400;
  6756. font-style:normal;
  6757. font-size:16px;
  6758. color:#000000;
  6759. }
  6760. #u146658 .text {
  6761. position:absolute;
  6762. align-self:flex-start;
  6763. padding:0px 0px 0px 0px;
  6764. box-sizing:border-box;
  6765. width:100%;
  6766. }
  6767. #u146658_text {
  6768. border-width:0px;
  6769. white-space:nowrap;
  6770. text-transform:none;
  6771. }
  6772. #u146659 {
  6773. border-width:0px;
  6774. position:absolute;
  6775. left:0px;
  6776. top:0px;
  6777. width:0px;
  6778. height:0px;
  6779. }
  6780. #u146660_div {
  6781. border-width:0px;
  6782. position:absolute;
  6783. left:0px;
  6784. top:0px;
  6785. width:375px;
  6786. height:50px;
  6787. background:inherit;
  6788. background-color:rgba(255, 255, 255, 1);
  6789. border:none;
  6790. border-radius:0px;
  6791. -moz-box-shadow:none;
  6792. -webkit-box-shadow:none;
  6793. box-shadow:none;
  6794. }
  6795. #u146660 {
  6796. border-width:0px;
  6797. position:absolute;
  6798. left:29px;
  6799. top:106px;
  6800. width:375px;
  6801. height:50px;
  6802. display:flex;
  6803. }
  6804. #u146660 .text {
  6805. position:absolute;
  6806. align-self:center;
  6807. padding:2px 2px 2px 2px;
  6808. box-sizing:border-box;
  6809. width:100%;
  6810. }
  6811. #u146660_text {
  6812. border-width:0px;
  6813. word-wrap:break-word;
  6814. text-transform:none;
  6815. visibility:hidden;
  6816. }
  6817. #u146661 {
  6818. border-width:0px;
  6819. position:absolute;
  6820. left:0px;
  6821. top:0px;
  6822. width:0px;
  6823. height:0px;
  6824. }
  6825. #u146662 {
  6826. border-width:0px;
  6827. position:absolute;
  6828. left:0px;
  6829. top:0px;
  6830. width:0px;
  6831. height:0px;
  6832. }
  6833. #u146663_div {
  6834. border-width:0px;
  6835. position:absolute;
  6836. left:0px;
  6837. top:0px;
  6838. width:135px;
  6839. height:30px;
  6840. background:inherit;
  6841. background-color:rgba(242, 242, 242, 1);
  6842. border:none;
  6843. border-radius:20px;
  6844. -moz-box-shadow:none;
  6845. -webkit-box-shadow:none;
  6846. box-shadow:none;
  6847. }
  6848. #u146663 {
  6849. border-width:0px;
  6850. position:absolute;
  6851. left:42px;
  6852. top:116px;
  6853. width:135px;
  6854. height:30px;
  6855. display:flex;
  6856. }
  6857. #u146663 .text {
  6858. position:absolute;
  6859. align-self:center;
  6860. padding:2px 2px 2px 2px;
  6861. box-sizing:border-box;
  6862. width:100%;
  6863. }
  6864. #u146663_text {
  6865. border-width:0px;
  6866. word-wrap:break-word;
  6867. text-transform:none;
  6868. visibility:hidden;
  6869. }
  6870. #u146664_input {
  6871. position:absolute;
  6872. left:0px;
  6873. top:0px;
  6874. width:121px;
  6875. height:22px;
  6876. padding:2px 2px 2px 2px;
  6877. font-family:'ArialMT', 'Arial', sans-serif;
  6878. font-weight:400;
  6879. font-style:normal;
  6880. font-size:12px;
  6881. letter-spacing:normal;
  6882. color:#7F7F7F;
  6883. vertical-align:none;
  6884. text-align:left;
  6885. text-transform:none;
  6886. background-color:transparent;
  6887. border-color:transparent;
  6888. }
  6889. #u146664_input.disabled {
  6890. position:absolute;
  6891. left:0px;
  6892. top:0px;
  6893. width:121px;
  6894. height:22px;
  6895. padding:2px 2px 2px 2px;
  6896. font-family:'ArialMT', 'Arial', sans-serif;
  6897. font-weight:400;
  6898. font-style:normal;
  6899. font-size:12px;
  6900. letter-spacing:normal;
  6901. color:#7F7F7F;
  6902. vertical-align:none;
  6903. text-align:left;
  6904. text-transform:none;
  6905. background-color:transparent;
  6906. border-color:transparent;
  6907. }
  6908. #u146664_div {
  6909. border-width:0px;
  6910. position:absolute;
  6911. left:0px;
  6912. top:0px;
  6913. width:121px;
  6914. height:22px;
  6915. background:inherit;
  6916. background-color:rgba(255, 255, 255, 0);
  6917. border:none;
  6918. border-radius:0px;
  6919. -moz-box-shadow:none;
  6920. -webkit-box-shadow:none;
  6921. box-shadow:none;
  6922. font-size:12px;
  6923. color:#7F7F7F;
  6924. }
  6925. #u146664 {
  6926. border-width:0px;
  6927. position:absolute;
  6928. left:49px;
  6929. top:120px;
  6930. width:121px;
  6931. height:22px;
  6932. display:flex;
  6933. font-size:12px;
  6934. color:#7F7F7F;
  6935. }
  6936. #u146664 .text {
  6937. position:absolute;
  6938. align-self:flex-start;
  6939. padding:2px 2px 2px 2px;
  6940. box-sizing:border-box;
  6941. width:100%;
  6942. }
  6943. #u146664_div.disabled {
  6944. border-width:0px;
  6945. position:absolute;
  6946. left:0px;
  6947. top:0px;
  6948. width:121px;
  6949. height:22px;
  6950. background:inherit;
  6951. background-color:rgba(240, 240, 240, 1);
  6952. border:none;
  6953. border-radius:0px;
  6954. -moz-box-shadow:none;
  6955. -webkit-box-shadow:none;
  6956. box-shadow:none;
  6957. font-size:12px;
  6958. color:#7F7F7F;
  6959. }
  6960. #u146664.disabled {
  6961. }
  6962. .u146664_input_option {
  6963. font-size:12px;
  6964. }
  6965. #u146665_div {
  6966. border-width:0px;
  6967. position:absolute;
  6968. left:0px;
  6969. top:0px;
  6970. width:64px;
  6971. height:30px;
  6972. background:inherit;
  6973. background-color:rgba(255, 255, 255, 0);
  6974. border:none;
  6975. border-left:0px;
  6976. border-top:0px;
  6977. border-right:0px;
  6978. border-radius:0px;
  6979. border-bottom-right-radius:0px;
  6980. border-bottom-left-radius:0px;
  6981. -moz-box-shadow:none;
  6982. -webkit-box-shadow:none;
  6983. box-shadow:none;
  6984. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6985. font-weight:400;
  6986. font-style:normal;
  6987. font-size:12px;
  6988. color:#1890FF;
  6989. line-height:30px;
  6990. }
  6991. #u146665 {
  6992. border-width:0px;
  6993. position:absolute;
  6994. left:332px;
  6995. top:116px;
  6996. width:64px;
  6997. height:30px;
  6998. display:flex;
  6999. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7000. font-weight:400;
  7001. font-style:normal;
  7002. font-size:12px;
  7003. color:#1890FF;
  7004. line-height:30px;
  7005. }
  7006. #u146665 .text {
  7007. position:absolute;
  7008. align-self:flex-start;
  7009. padding:0px 0px 0px 0px;
  7010. box-sizing:border-box;
  7011. width:100%;
  7012. }
  7013. #u146665_text {
  7014. border-width:0px;
  7015. white-space:nowrap;
  7016. text-transform:none;
  7017. }
  7018. #u146666 {
  7019. border-width:0px;
  7020. position:absolute;
  7021. left:0px;
  7022. top:0px;
  7023. width:0px;
  7024. height:0px;
  7025. }
  7026. #u146667_div {
  7027. border-width:0px;
  7028. position:absolute;
  7029. left:0px;
  7030. top:0px;
  7031. width:135px;
  7032. height:30px;
  7033. background:inherit;
  7034. background-color:rgba(242, 242, 242, 1);
  7035. border:none;
  7036. border-radius:20px;
  7037. -moz-box-shadow:none;
  7038. -webkit-box-shadow:none;
  7039. box-shadow:none;
  7040. }
  7041. #u146667 {
  7042. border-width:0px;
  7043. position:absolute;
  7044. left:187px;
  7045. top:116px;
  7046. width:135px;
  7047. height:30px;
  7048. display:flex;
  7049. }
  7050. #u146667 .text {
  7051. position:absolute;
  7052. align-self:center;
  7053. padding:2px 2px 2px 2px;
  7054. box-sizing:border-box;
  7055. width:100%;
  7056. }
  7057. #u146667_text {
  7058. border-width:0px;
  7059. word-wrap:break-word;
  7060. text-transform:none;
  7061. visibility:hidden;
  7062. }
  7063. #u146668_input {
  7064. position:absolute;
  7065. left:0px;
  7066. top:0px;
  7067. width:121px;
  7068. height:22px;
  7069. padding:2px 2px 2px 2px;
  7070. font-family:'ArialMT', 'Arial', sans-serif;
  7071. font-weight:400;
  7072. font-style:normal;
  7073. font-size:12px;
  7074. letter-spacing:normal;
  7075. color:#7F7F7F;
  7076. vertical-align:none;
  7077. text-align:left;
  7078. text-transform:none;
  7079. background-color:transparent;
  7080. border-color:transparent;
  7081. }
  7082. #u146668_input.disabled {
  7083. position:absolute;
  7084. left:0px;
  7085. top:0px;
  7086. width:121px;
  7087. height:22px;
  7088. padding:2px 2px 2px 2px;
  7089. font-family:'ArialMT', 'Arial', sans-serif;
  7090. font-weight:400;
  7091. font-style:normal;
  7092. font-size:12px;
  7093. letter-spacing:normal;
  7094. color:#7F7F7F;
  7095. vertical-align:none;
  7096. text-align:left;
  7097. text-transform:none;
  7098. background-color:transparent;
  7099. border-color:transparent;
  7100. }
  7101. #u146668_div {
  7102. border-width:0px;
  7103. position:absolute;
  7104. left:0px;
  7105. top:0px;
  7106. width:121px;
  7107. height:22px;
  7108. background:inherit;
  7109. background-color:rgba(255, 255, 255, 0);
  7110. border:none;
  7111. border-radius:0px;
  7112. -moz-box-shadow:none;
  7113. -webkit-box-shadow:none;
  7114. box-shadow:none;
  7115. font-size:12px;
  7116. color:#7F7F7F;
  7117. }
  7118. #u146668 {
  7119. border-width:0px;
  7120. position:absolute;
  7121. left:194px;
  7122. top:120px;
  7123. width:121px;
  7124. height:22px;
  7125. display:flex;
  7126. font-size:12px;
  7127. color:#7F7F7F;
  7128. }
  7129. #u146668 .text {
  7130. position:absolute;
  7131. align-self:flex-start;
  7132. padding:2px 2px 2px 2px;
  7133. box-sizing:border-box;
  7134. width:100%;
  7135. }
  7136. #u146668_div.disabled {
  7137. border-width:0px;
  7138. position:absolute;
  7139. left:0px;
  7140. top:0px;
  7141. width:121px;
  7142. height:22px;
  7143. background:inherit;
  7144. background-color:rgba(240, 240, 240, 1);
  7145. border:none;
  7146. border-radius:0px;
  7147. -moz-box-shadow:none;
  7148. -webkit-box-shadow:none;
  7149. box-shadow:none;
  7150. font-size:12px;
  7151. color:#7F7F7F;
  7152. }
  7153. #u146668.disabled {
  7154. }
  7155. .u146668_input_option {
  7156. font-size:12px;
  7157. }
  7158. #u146669 {
  7159. border-width:0px;
  7160. position:absolute;
  7161. left:0px;
  7162. top:0px;
  7163. width:0px;
  7164. height:0px;
  7165. }
  7166. #u146670_div {
  7167. border-width:0px;
  7168. position:absolute;
  7169. left:0px;
  7170. top:0px;
  7171. width:375px;
  7172. height:41px;
  7173. background:inherit;
  7174. background-color:rgba(255, 255, 255, 1);
  7175. border:none;
  7176. border-radius:0px;
  7177. -moz-box-shadow:none;
  7178. -webkit-box-shadow:none;
  7179. box-shadow:none;
  7180. }
  7181. #u146670 {
  7182. border-width:0px;
  7183. position:absolute;
  7184. left:29px;
  7185. top:156px;
  7186. width:375px;
  7187. height:41px;
  7188. display:flex;
  7189. }
  7190. #u146670 .text {
  7191. position:absolute;
  7192. align-self:center;
  7193. padding:2px 2px 2px 2px;
  7194. box-sizing:border-box;
  7195. width:100%;
  7196. }
  7197. #u146670_text {
  7198. border-width:0px;
  7199. word-wrap:break-word;
  7200. text-transform:none;
  7201. visibility:hidden;
  7202. }
  7203. #u146671_div {
  7204. border-width:0px;
  7205. position:absolute;
  7206. left:0px;
  7207. top:0px;
  7208. width:37px;
  7209. height:40px;
  7210. background:inherit;
  7211. background-color:rgba(255, 255, 255, 0);
  7212. border:none;
  7213. border-left:0px;
  7214. border-top:0px;
  7215. border-right:0px;
  7216. border-radius:0px;
  7217. border-bottom-right-radius:0px;
  7218. border-bottom-left-radius:0px;
  7219. -moz-box-shadow:none;
  7220. -webkit-box-shadow:none;
  7221. box-shadow:none;
  7222. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7223. font-weight:400;
  7224. font-style:normal;
  7225. font-size:12px;
  7226. text-align:center;
  7227. }
  7228. #u146671 {
  7229. border-width:0px;
  7230. position:absolute;
  7231. left:111px;
  7232. top:156px;
  7233. width:37px;
  7234. height:40px;
  7235. display:flex;
  7236. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7237. font-weight:400;
  7238. font-style:normal;
  7239. font-size:12px;
  7240. text-align:center;
  7241. }
  7242. #u146671 .text {
  7243. position:absolute;
  7244. align-self:center;
  7245. padding:0px 0px 0px 0px;
  7246. box-sizing:border-box;
  7247. width:100%;
  7248. }
  7249. #u146671_text {
  7250. border-width:0px;
  7251. white-space:nowrap;
  7252. text-transform:none;
  7253. }
  7254. #u146672_div {
  7255. border-width:0px;
  7256. position:absolute;
  7257. left:0px;
  7258. top:0px;
  7259. width:37px;
  7260. height:40px;
  7261. background:inherit;
  7262. background-color:rgba(255, 255, 255, 0);
  7263. box-sizing:border-box;
  7264. border-width:2px;
  7265. border-style:solid;
  7266. border-color:rgba(24, 144, 255, 1);
  7267. border-left:0px;
  7268. border-top:0px;
  7269. border-right:0px;
  7270. border-radius:0px;
  7271. border-bottom-right-radius:0px;
  7272. border-bottom-left-radius:0px;
  7273. -moz-box-shadow:none;
  7274. -webkit-box-shadow:none;
  7275. box-shadow:none;
  7276. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7277. font-weight:400;
  7278. font-style:normal;
  7279. font-size:12px;
  7280. color:#1890FF;
  7281. text-align:center;
  7282. }
  7283. #u146672 {
  7284. border-width:0px;
  7285. position:absolute;
  7286. left:45px;
  7287. top:156px;
  7288. width:37px;
  7289. height:40px;
  7290. display:flex;
  7291. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7292. font-weight:400;
  7293. font-style:normal;
  7294. font-size:12px;
  7295. color:#1890FF;
  7296. text-align:center;
  7297. }
  7298. #u146672 .text {
  7299. position:absolute;
  7300. align-self:center;
  7301. padding:0px 0px 0px 0px;
  7302. box-sizing:border-box;
  7303. width:100%;
  7304. }
  7305. #u146672_text {
  7306. border-width:0px;
  7307. white-space:nowrap;
  7308. text-transform:none;
  7309. }
  7310. #u146673_div {
  7311. border-width:0px;
  7312. position:absolute;
  7313. left:0px;
  7314. top:0px;
  7315. width:11px;
  7316. height:11px;
  7317. background:inherit;
  7318. background-color:rgba(217, 0, 27, 1);
  7319. border:none;
  7320. border-radius:7px;
  7321. -moz-box-shadow:none;
  7322. -webkit-box-shadow:none;
  7323. box-shadow:none;
  7324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7325. font-weight:400;
  7326. font-style:normal;
  7327. font-size:8px;
  7328. color:#FFFFFF;
  7329. text-align:center;
  7330. }
  7331. #u146673 {
  7332. border-width:0px;
  7333. position:absolute;
  7334. left:79px;
  7335. top:160px;
  7336. width:11px;
  7337. height:11px;
  7338. display:flex;
  7339. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7340. font-weight:400;
  7341. font-style:normal;
  7342. font-size:8px;
  7343. color:#FFFFFF;
  7344. text-align:center;
  7345. }
  7346. #u146673 .text {
  7347. position:absolute;
  7348. align-self:flex-start;
  7349. padding:0px 0px 0px 0px;
  7350. box-sizing:border-box;
  7351. width:100%;
  7352. }
  7353. #u146673_text {
  7354. border-width:0px;
  7355. word-wrap:break-word;
  7356. text-transform:none;
  7357. }
  7358. #u146674_div {
  7359. border-width:0px;
  7360. position:absolute;
  7361. left:0px;
  7362. top:0px;
  7363. width:37px;
  7364. height:40px;
  7365. background:inherit;
  7366. background-color:rgba(255, 255, 255, 0);
  7367. border:none;
  7368. border-left:0px;
  7369. border-top:0px;
  7370. border-right:0px;
  7371. border-radius:0px;
  7372. border-bottom-right-radius:0px;
  7373. border-bottom-left-radius:0px;
  7374. -moz-box-shadow:none;
  7375. -webkit-box-shadow:none;
  7376. box-shadow:none;
  7377. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7378. font-weight:400;
  7379. font-style:normal;
  7380. font-size:12px;
  7381. text-align:center;
  7382. }
  7383. #u146674 {
  7384. border-width:0px;
  7385. position:absolute;
  7386. left:178px;
  7387. top:156px;
  7388. width:37px;
  7389. height:40px;
  7390. display:flex;
  7391. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7392. font-weight:400;
  7393. font-style:normal;
  7394. font-size:12px;
  7395. text-align:center;
  7396. }
  7397. #u146674 .text {
  7398. position:absolute;
  7399. align-self:center;
  7400. padding:0px 0px 0px 0px;
  7401. box-sizing:border-box;
  7402. width:100%;
  7403. }
  7404. #u146674_text {
  7405. border-width:0px;
  7406. white-space:nowrap;
  7407. text-transform:none;
  7408. }
  7409. #u146675_div {
  7410. border-width:0px;
  7411. position:absolute;
  7412. left:0px;
  7413. top:0px;
  7414. width:37px;
  7415. height:40px;
  7416. background:inherit;
  7417. background-color:rgba(255, 255, 255, 0);
  7418. border:none;
  7419. border-left:0px;
  7420. border-top:0px;
  7421. border-right:0px;
  7422. border-radius:0px;
  7423. border-bottom-right-radius:0px;
  7424. border-bottom-left-radius:0px;
  7425. -moz-box-shadow:none;
  7426. -webkit-box-shadow:none;
  7427. box-shadow:none;
  7428. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7429. font-weight:400;
  7430. font-style:normal;
  7431. font-size:12px;
  7432. text-align:center;
  7433. }
  7434. #u146675 {
  7435. border-width:0px;
  7436. position:absolute;
  7437. left:244px;
  7438. top:156px;
  7439. width:37px;
  7440. height:40px;
  7441. display:flex;
  7442. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7443. font-weight:400;
  7444. font-style:normal;
  7445. font-size:12px;
  7446. text-align:center;
  7447. }
  7448. #u146675 .text {
  7449. position:absolute;
  7450. align-self:center;
  7451. padding:0px 0px 0px 0px;
  7452. box-sizing:border-box;
  7453. width:100%;
  7454. }
  7455. #u146675_text {
  7456. border-width:0px;
  7457. white-space:nowrap;
  7458. text-transform:none;
  7459. }
  7460. #u146676_div {
  7461. border-width:0px;
  7462. position:absolute;
  7463. left:0px;
  7464. top:0px;
  7465. width:37px;
  7466. height:40px;
  7467. background:inherit;
  7468. background-color:rgba(255, 255, 255, 0);
  7469. border:none;
  7470. border-left:0px;
  7471. border-top:0px;
  7472. border-right:0px;
  7473. border-radius:0px;
  7474. border-bottom-right-radius:0px;
  7475. border-bottom-left-radius:0px;
  7476. -moz-box-shadow:none;
  7477. -webkit-box-shadow:none;
  7478. box-shadow:none;
  7479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7480. font-weight:400;
  7481. font-style:normal;
  7482. font-size:12px;
  7483. text-align:center;
  7484. }
  7485. #u146676 {
  7486. border-width:0px;
  7487. position:absolute;
  7488. left:311px;
  7489. top:156px;
  7490. width:37px;
  7491. height:40px;
  7492. display:flex;
  7493. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7494. font-weight:400;
  7495. font-style:normal;
  7496. font-size:12px;
  7497. text-align:center;
  7498. }
  7499. #u146676 .text {
  7500. position:absolute;
  7501. align-self:center;
  7502. padding:0px 0px 0px 0px;
  7503. box-sizing:border-box;
  7504. width:100%;
  7505. }
  7506. #u146676_text {
  7507. border-width:0px;
  7508. white-space:nowrap;
  7509. text-transform:none;
  7510. }