styles.css 139 KB

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