styles.css 137 KB

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