styles.css 144 KB

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