styles.css 110 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1377px;
  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. #u141610_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:433px;
  25. height:865px;
  26. }
  27. #u141610 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:433px;
  33. height:865px;
  34. display:flex;
  35. }
  36. #u141610 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u141610_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u141611_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. #u141611 {
  73. border-width:0px;
  74. position:absolute;
  75. left:29px;
  76. top:67px;
  77. width:375px;
  78. height:40px;
  79. display:flex;
  80. }
  81. #u141611 .text {
  82. position:absolute;
  83. align-self:center;
  84. padding:2px 2px 2px 2px;
  85. box-sizing:border-box;
  86. width:100%;
  87. }
  88. #u141611_text {
  89. border-width:0px;
  90. word-wrap:break-word;
  91. text-transform:none;
  92. visibility:hidden;
  93. }
  94. #u141612 {
  95. border-width:0px;
  96. position:absolute;
  97. left:0px;
  98. top:0px;
  99. width:0px;
  100. height:0px;
  101. }
  102. #u141613_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. #u141613 {
  121. border-width:0px;
  122. position:absolute;
  123. left:309px;
  124. top:71px;
  125. width:88px;
  126. height:32px;
  127. display:flex;
  128. }
  129. #u141613 .text {
  130. position:absolute;
  131. align-self:center;
  132. padding:2px 2px 2px 2px;
  133. box-sizing:border-box;
  134. width:100%;
  135. }
  136. #u141613_text {
  137. border-width:0px;
  138. word-wrap:break-word;
  139. text-transform:none;
  140. visibility:hidden;
  141. }
  142. #u141614 {
  143. border-width:0px;
  144. position:absolute;
  145. left:0px;
  146. top:0px;
  147. width:0px;
  148. height:0px;
  149. }
  150. #u141615_img {
  151. border-width:0px;
  152. position:absolute;
  153. left:0px;
  154. top:0px;
  155. width:18px;
  156. height:18px;
  157. }
  158. #u141615 {
  159. border-width:0px;
  160. position:absolute;
  161. left:372px;
  162. top:78px;
  163. width:18px;
  164. height:18px;
  165. display:flex;
  166. }
  167. #u141615 .text {
  168. position:absolute;
  169. align-self:center;
  170. padding:2px 2px 2px 2px;
  171. box-sizing:border-box;
  172. width:100%;
  173. }
  174. #u141615_text {
  175. border-width:0px;
  176. word-wrap:break-word;
  177. text-transform:none;
  178. visibility:hidden;
  179. }
  180. #u141616_img {
  181. border-width:0px;
  182. position:absolute;
  183. left:0px;
  184. top:0px;
  185. width:6px;
  186. height:6px;
  187. }
  188. #u141616 {
  189. border-width:0px;
  190. position:absolute;
  191. left:378px;
  192. top:84px;
  193. width:6px;
  194. height:6px;
  195. display:flex;
  196. }
  197. #u141616 .text {
  198. position:absolute;
  199. align-self:center;
  200. padding:2px 2px 2px 2px;
  201. box-sizing:border-box;
  202. width:100%;
  203. }
  204. #u141616_text {
  205. border-width:0px;
  206. word-wrap:break-word;
  207. text-transform:none;
  208. visibility:hidden;
  209. }
  210. #u141617 {
  211. border-width:0px;
  212. position:absolute;
  213. left:0px;
  214. top:0px;
  215. width:0px;
  216. height:0px;
  217. }
  218. #u141618_img {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:5px;
  224. height:5px;
  225. }
  226. #u141618 {
  227. border-width:0px;
  228. position:absolute;
  229. left:323px;
  230. top:85px;
  231. width:5px;
  232. height:5px;
  233. display:flex;
  234. }
  235. #u141618 .text {
  236. position:absolute;
  237. align-self:center;
  238. padding:2px 2px 2px 2px;
  239. box-sizing:border-box;
  240. width:100%;
  241. }
  242. #u141618_text {
  243. border-width:0px;
  244. word-wrap:break-word;
  245. text-transform:none;
  246. visibility:hidden;
  247. }
  248. #u141619_img {
  249. border-width:0px;
  250. position:absolute;
  251. left:0px;
  252. top:0px;
  253. width:5px;
  254. height:5px;
  255. }
  256. #u141619 {
  257. border-width:0px;
  258. position:absolute;
  259. left:339px;
  260. top:85px;
  261. width:5px;
  262. height:5px;
  263. display:flex;
  264. }
  265. #u141619 .text {
  266. position:absolute;
  267. align-self:center;
  268. padding:2px 2px 2px 2px;
  269. box-sizing:border-box;
  270. width:100%;
  271. }
  272. #u141619_text {
  273. border-width:0px;
  274. word-wrap:break-word;
  275. text-transform:none;
  276. visibility:hidden;
  277. }
  278. #u141620_img {
  279. border-width:0px;
  280. position:absolute;
  281. left:0px;
  282. top:0px;
  283. width:7px;
  284. height:7px;
  285. }
  286. #u141620 {
  287. border-width:0px;
  288. position:absolute;
  289. left:330px;
  290. top:84px;
  291. width:7px;
  292. height:7px;
  293. display:flex;
  294. }
  295. #u141620 .text {
  296. position:absolute;
  297. align-self:center;
  298. padding:2px 2px 2px 2px;
  299. box-sizing:border-box;
  300. width:100%;
  301. }
  302. #u141620_text {
  303. border-width:0px;
  304. word-wrap:break-word;
  305. text-transform:none;
  306. visibility:hidden;
  307. }
  308. #u141621_img {
  309. border-width:0px;
  310. position:absolute;
  311. left:0px;
  312. top:0px;
  313. width:19px;
  314. height:2px;
  315. }
  316. #u141621 {
  317. border-width:0px;
  318. position:absolute;
  319. left:347px;
  320. top:87px;
  321. width:18px;
  322. height:1px;
  323. display:flex;
  324. -webkit-transform:rotate(90deg);
  325. -moz-transform:rotate(90deg);
  326. -ms-transform:rotate(90deg);
  327. transform:rotate(90deg);
  328. }
  329. #u141621 .text {
  330. position:absolute;
  331. align-self:center;
  332. padding:2px 2px 2px 2px;
  333. box-sizing:border-box;
  334. width:100%;
  335. }
  336. #u141621_text {
  337. border-width:0px;
  338. word-wrap:break-word;
  339. text-transform:none;
  340. visibility:hidden;
  341. }
  342. #u141622_img {
  343. border-width:0px;
  344. position:absolute;
  345. left:0px;
  346. top:0px;
  347. width:375px;
  348. height:44px;
  349. }
  350. #u141622 {
  351. border-width:0px;
  352. position:absolute;
  353. left:29px;
  354. top:24px;
  355. width:375px;
  356. height:44px;
  357. display:flex;
  358. }
  359. #u141622 .text {
  360. position:absolute;
  361. align-self:center;
  362. padding:2px 2px 2px 2px;
  363. box-sizing:border-box;
  364. width:100%;
  365. }
  366. #u141622_text {
  367. border-width:0px;
  368. word-wrap:break-word;
  369. text-transform:none;
  370. visibility:hidden;
  371. }
  372. #u141623_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. #u141623 {
  393. border-width:0px;
  394. position:absolute;
  395. left:29px;
  396. top:788px;
  397. width:375px;
  398. height:50px;
  399. display:flex;
  400. }
  401. #u141623 .text {
  402. position:absolute;
  403. align-self:center;
  404. padding:2px 2px 2px 2px;
  405. box-sizing:border-box;
  406. width:100%;
  407. }
  408. #u141623_text {
  409. border-width:0px;
  410. word-wrap:break-word;
  411. text-transform:none;
  412. visibility:hidden;
  413. }
  414. #u141624 {
  415. border-width:0px;
  416. position:absolute;
  417. left:0px;
  418. top:0px;
  419. width:0px;
  420. height:0px;
  421. }
  422. #u141625_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:24px;
  428. height:24px;
  429. }
  430. #u141625 {
  431. border-width:0px;
  432. position:absolute;
  433. left:69px;
  434. top:792px;
  435. width:24px;
  436. height:24px;
  437. display:flex;
  438. font-size:8px;
  439. }
  440. #u141625 .text {
  441. position:absolute;
  442. align-self:center;
  443. padding:2px 2px 2px 2px;
  444. box-sizing:border-box;
  445. width:100%;
  446. }
  447. #u141625_text {
  448. border-width:0px;
  449. word-wrap:break-word;
  450. text-transform:none;
  451. }
  452. #u141626_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. #u141626 {
  472. border-width:0px;
  473. position:absolute;
  474. left:69px;
  475. top:817px;
  476. width:25px;
  477. height:17px;
  478. display:flex;
  479. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  480. font-weight:400;
  481. font-style:normal;
  482. font-size:12px;
  483. }
  484. #u141626 .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. #u141626_text {
  492. border-width:0px;
  493. white-space:nowrap;
  494. text-transform:none;
  495. }
  496. #u141627 {
  497. border-width:0px;
  498. position:absolute;
  499. left:0px;
  500. top:0px;
  501. width:0px;
  502. height:0px;
  503. }
  504. #u141628_img {
  505. border-width:0px;
  506. position:absolute;
  507. left:0px;
  508. top:0px;
  509. width:24px;
  510. height:24px;
  511. }
  512. #u141628 {
  513. border-width:0px;
  514. position:absolute;
  515. left:339px;
  516. top:794px;
  517. width:24px;
  518. height:24px;
  519. display:flex;
  520. font-size:8px;
  521. }
  522. #u141628 .text {
  523. position:absolute;
  524. align-self:center;
  525. padding:2px 2px 2px 2px;
  526. box-sizing:border-box;
  527. width:100%;
  528. }
  529. #u141628_text {
  530. border-width:0px;
  531. word-wrap:break-word;
  532. text-transform:none;
  533. }
  534. #u141629_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. #u141629 {
  554. border-width:0px;
  555. position:absolute;
  556. left:339px;
  557. top:819px;
  558. width:25px;
  559. height:17px;
  560. display:flex;
  561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  562. font-weight:400;
  563. font-style:normal;
  564. font-size:12px;
  565. }
  566. #u141629 .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. #u141629_text {
  574. border-width:0px;
  575. white-space:nowrap;
  576. text-transform:none;
  577. }
  578. #u141630_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. #u141630 {
  594. border-width:0px;
  595. position:absolute;
  596. left:29px;
  597. top:107px;
  598. width:375px;
  599. height:681px;
  600. display:flex;
  601. }
  602. #u141630 .text {
  603. position:absolute;
  604. align-self:center;
  605. padding:2px 2px 2px 2px;
  606. box-sizing:border-box;
  607. width:100%;
  608. }
  609. #u141630_text {
  610. border-width:0px;
  611. word-wrap:break-word;
  612. text-transform:none;
  613. visibility:hidden;
  614. }
  615. #u141631 {
  616. border-width:0px;
  617. position:absolute;
  618. left:0px;
  619. top:0px;
  620. width:0px;
  621. height:0px;
  622. }
  623. #u141632_img {
  624. border-width:0px;
  625. position:absolute;
  626. left:0px;
  627. top:0px;
  628. width:24px;
  629. height:24px;
  630. }
  631. #u141632 {
  632. border-width:0px;
  633. position:absolute;
  634. left:251px;
  635. top:792px;
  636. width:24px;
  637. height:24px;
  638. display:flex;
  639. font-size:8px;
  640. }
  641. #u141632 .text {
  642. position:absolute;
  643. align-self:center;
  644. padding:2px 2px 2px 2px;
  645. box-sizing:border-box;
  646. width:100%;
  647. }
  648. #u141632_text {
  649. border-width:0px;
  650. word-wrap:break-word;
  651. text-transform:none;
  652. }
  653. #u141633_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. #u141633 {
  673. border-width:0px;
  674. position:absolute;
  675. left:245px;
  676. top:817px;
  677. width:37px;
  678. height:17px;
  679. display:flex;
  680. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  681. font-weight:400;
  682. font-style:normal;
  683. font-size:12px;
  684. }
  685. #u141633 .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. #u141633_text {
  693. border-width:0px;
  694. white-space:nowrap;
  695. text-transform:none;
  696. }
  697. #u141634 {
  698. border-width:0px;
  699. position:absolute;
  700. left:0px;
  701. top:0px;
  702. width:0px;
  703. height:0px;
  704. }
  705. #u141635_img {
  706. border-width:0px;
  707. position:absolute;
  708. left:0px;
  709. top:0px;
  710. width:24px;
  711. height:24px;
  712. }
  713. #u141635 {
  714. border-width:0px;
  715. position:absolute;
  716. left:157px;
  717. top:792px;
  718. width:24px;
  719. height:24px;
  720. display:flex;
  721. font-size:8px;
  722. }
  723. #u141635 .text {
  724. position:absolute;
  725. align-self:center;
  726. padding:2px 2px 2px 2px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u141635_text {
  731. border-width:0px;
  732. word-wrap:break-word;
  733. text-transform:none;
  734. }
  735. #u141636_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. #u141636 {
  755. border-width:0px;
  756. position:absolute;
  757. left:151px;
  758. top:817px;
  759. width:37px;
  760. height:17px;
  761. display:flex;
  762. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  763. font-weight:400;
  764. font-style:normal;
  765. font-size:12px;
  766. }
  767. #u141636 .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. #u141636_text {
  775. border-width:0px;
  776. white-space:nowrap;
  777. text-transform:none;
  778. }
  779. #u141637_div {
  780. border-width:0px;
  781. position:absolute;
  782. left:0px;
  783. top:0px;
  784. width:375px;
  785. height:732px;
  786. background:inherit;
  787. background-color:rgba(242, 242, 242, 0.996078431372549);
  788. border:none;
  789. border-top:0px;
  790. border-radius:28px;
  791. border-top-left-radius:0px;
  792. border-top-right-radius:0px;
  793. -moz-box-shadow:none;
  794. -webkit-box-shadow:none;
  795. box-shadow:none;
  796. }
  797. #u141637 {
  798. border-width:0px;
  799. position:absolute;
  800. left:29px;
  801. top:107px;
  802. width:375px;
  803. height:732px;
  804. display:flex;
  805. }
  806. #u141637 .text {
  807. position:absolute;
  808. align-self:center;
  809. padding:2px 2px 2px 2px;
  810. box-sizing:border-box;
  811. width:100%;
  812. }
  813. #u141637_text {
  814. border-width:0px;
  815. word-wrap:break-word;
  816. text-transform:none;
  817. visibility:hidden;
  818. }
  819. #u141638 {
  820. border-width:0px;
  821. position:absolute;
  822. left:0px;
  823. top:0px;
  824. width:0px;
  825. height:0px;
  826. }
  827. #u141639_div {
  828. border-width:0px;
  829. position:absolute;
  830. left:0px;
  831. top:0px;
  832. width:375px;
  833. height:671px;
  834. background:inherit;
  835. background-color:rgba(255, 255, 255, 1);
  836. border:none;
  837. border-left:0px;
  838. border-top:0px;
  839. border-right:0px;
  840. border-radius:0px;
  841. border-bottom-right-radius:0px;
  842. border-bottom-left-radius:0px;
  843. -moz-box-shadow:none;
  844. -webkit-box-shadow:none;
  845. box-shadow:none;
  846. }
  847. #u141639 {
  848. border-width:0px;
  849. position:absolute;
  850. left:29px;
  851. top:108px;
  852. width:375px;
  853. height:671px;
  854. display:flex;
  855. }
  856. #u141639 .text {
  857. position:absolute;
  858. align-self:center;
  859. padding:2px 2px 2px 2px;
  860. box-sizing:border-box;
  861. width:100%;
  862. }
  863. #u141639_text {
  864. border-width:0px;
  865. word-wrap:break-word;
  866. text-transform:none;
  867. visibility:hidden;
  868. }
  869. #u141640 {
  870. border-width:0px;
  871. position:absolute;
  872. left:0px;
  873. top:0px;
  874. width:0px;
  875. height:0px;
  876. }
  877. #u141641_div {
  878. border-width:0px;
  879. position:absolute;
  880. left:0px;
  881. top:0px;
  882. width:348px;
  883. height:230px;
  884. background:inherit;
  885. background-color:rgba(242, 242, 242, 0.623529411764706);
  886. border:none;
  887. border-left:0px;
  888. border-top:0px;
  889. border-right:0px;
  890. border-radius:0px;
  891. border-bottom-right-radius:0px;
  892. border-bottom-left-radius:0px;
  893. -moz-box-shadow:none;
  894. -webkit-box-shadow:none;
  895. box-shadow:none;
  896. }
  897. #u141641 {
  898. border-width:0px;
  899. position:absolute;
  900. left:42px;
  901. top:308px;
  902. width:348px;
  903. height:230px;
  904. display:flex;
  905. }
  906. #u141641 .text {
  907. position:absolute;
  908. align-self:center;
  909. padding:2px 2px 2px 2px;
  910. box-sizing:border-box;
  911. width:100%;
  912. }
  913. #u141641_text {
  914. border-width:0px;
  915. word-wrap:break-word;
  916. text-transform:none;
  917. visibility:hidden;
  918. }
  919. #u141642_div {
  920. border-width:0px;
  921. position:absolute;
  922. left:0px;
  923. top:0px;
  924. width:107px;
  925. height:70px;
  926. background:inherit;
  927. background-color:rgba(255, 255, 255, 0);
  928. border:none;
  929. border-top:0px;
  930. border-right:0px;
  931. border-bottom:0px;
  932. border-radius:0px;
  933. border-top-left-radius:0px;
  934. border-bottom-left-radius:0px;
  935. -moz-box-shadow:none;
  936. -webkit-box-shadow:none;
  937. box-shadow:none;
  938. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  939. font-style:normal;
  940. line-height:30px;
  941. }
  942. #u141642 {
  943. border-width:0px;
  944. position:absolute;
  945. left:57px;
  946. top:317px;
  947. width:107px;
  948. height:70px;
  949. display:flex;
  950. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  951. font-style:normal;
  952. line-height:30px;
  953. }
  954. #u141642 .text {
  955. position:absolute;
  956. align-self:flex-start;
  957. padding:5px 10px 5px 0px;
  958. box-sizing:border-box;
  959. width:100%;
  960. }
  961. #u141642_text {
  962. border-width:0px;
  963. white-space:nowrap;
  964. text-transform:none;
  965. }
  966. #u141643_div {
  967. border-width:0px;
  968. position:absolute;
  969. left:0px;
  970. top:0px;
  971. width:325px;
  972. height:75px;
  973. background:inherit;
  974. background-color:rgba(255, 255, 255, 0);
  975. border:none;
  976. border-radius:0px;
  977. -moz-box-shadow:none;
  978. -webkit-box-shadow:none;
  979. box-shadow:none;
  980. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  981. font-weight:400;
  982. font-style:normal;
  983. font-size:12px;
  984. line-height:25px;
  985. }
  986. #u141643 {
  987. border-width:0px;
  988. position:absolute;
  989. left:55px;
  990. top:389px;
  991. width:325px;
  992. height:75px;
  993. display:flex;
  994. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  995. font-weight:400;
  996. font-style:normal;
  997. font-size:12px;
  998. line-height:25px;
  999. }
  1000. #u141643 .text {
  1001. position:absolute;
  1002. align-self:flex-start;
  1003. padding:0px 0px 0px 0px;
  1004. box-sizing:border-box;
  1005. width:100%;
  1006. }
  1007. #u141643_text {
  1008. border-width:0px;
  1009. word-wrap:break-word;
  1010. text-transform:none;
  1011. }
  1012. #u141644_img {
  1013. border-width:0px;
  1014. position:absolute;
  1015. left:0px;
  1016. top:0px;
  1017. width:60px;
  1018. height:46px;
  1019. }
  1020. #u141644 {
  1021. border-width:0px;
  1022. position:absolute;
  1023. left:55px;
  1024. top:474px;
  1025. width:60px;
  1026. height:46px;
  1027. display:flex;
  1028. }
  1029. #u141644 .text {
  1030. position:absolute;
  1031. align-self:center;
  1032. padding:2px 2px 2px 2px;
  1033. box-sizing:border-box;
  1034. width:100%;
  1035. }
  1036. #u141644_text {
  1037. border-width:0px;
  1038. word-wrap:break-word;
  1039. text-transform:none;
  1040. visibility:hidden;
  1041. }
  1042. #u141645_img {
  1043. border-width:0px;
  1044. position:absolute;
  1045. left:0px;
  1046. top:0px;
  1047. width:60px;
  1048. height:46px;
  1049. }
  1050. #u141645 {
  1051. border-width:0px;
  1052. position:absolute;
  1053. left:125px;
  1054. top:474px;
  1055. width:60px;
  1056. height:46px;
  1057. display:flex;
  1058. }
  1059. #u141645 .text {
  1060. position:absolute;
  1061. align-self:center;
  1062. padding:2px 2px 2px 2px;
  1063. box-sizing:border-box;
  1064. width:100%;
  1065. }
  1066. #u141645_text {
  1067. border-width:0px;
  1068. word-wrap:break-word;
  1069. text-transform:none;
  1070. visibility:hidden;
  1071. }
  1072. #u141646_div {
  1073. border-width:0px;
  1074. position:absolute;
  1075. left:0px;
  1076. top:0px;
  1077. width:133px;
  1078. height:25px;
  1079. background:inherit;
  1080. background-color:rgba(255, 255, 255, 0);
  1081. border:none;
  1082. border-radius:0px;
  1083. -moz-box-shadow:none;
  1084. -webkit-box-shadow:none;
  1085. box-shadow:none;
  1086. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1087. font-weight:400;
  1088. font-style:normal;
  1089. font-size:12px;
  1090. color:#D9001B;
  1091. line-height:25px;
  1092. }
  1093. #u141646 {
  1094. border-width:0px;
  1095. position:absolute;
  1096. left:202px;
  1097. top:480px;
  1098. width:133px;
  1099. height:25px;
  1100. display:flex;
  1101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1102. font-weight:400;
  1103. font-style:normal;
  1104. font-size:12px;
  1105. color:#D9001B;
  1106. line-height:25px;
  1107. }
  1108. #u141646 .text {
  1109. position:absolute;
  1110. align-self:flex-start;
  1111. padding:0px 0px 0px 0px;
  1112. box-sizing:border-box;
  1113. width:100%;
  1114. }
  1115. #u141646_text {
  1116. border-width:0px;
  1117. white-space:nowrap;
  1118. text-transform:none;
  1119. }
  1120. #u141647_div {
  1121. border-width:0px;
  1122. position:absolute;
  1123. left:0px;
  1124. top:0px;
  1125. width:43px;
  1126. height:20px;
  1127. background:inherit;
  1128. background-color:rgba(255, 255, 255, 0);
  1129. border:none;
  1130. border-radius:0px;
  1131. -moz-box-shadow:none;
  1132. -webkit-box-shadow:none;
  1133. box-shadow:none;
  1134. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1135. font-weight:400;
  1136. font-style:normal;
  1137. color:#F59A23;
  1138. }
  1139. #u141647 {
  1140. border-width:0px;
  1141. position:absolute;
  1142. left:342px;
  1143. top:124px;
  1144. width:43px;
  1145. height:20px;
  1146. display:flex;
  1147. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1148. font-weight:400;
  1149. font-style:normal;
  1150. color:#F59A23;
  1151. }
  1152. #u141647 .text {
  1153. position:absolute;
  1154. align-self:flex-start;
  1155. padding:0px 0px 0px 0px;
  1156. box-sizing:border-box;
  1157. width:100%;
  1158. }
  1159. #u141647_text {
  1160. border-width:0px;
  1161. white-space:nowrap;
  1162. text-transform:none;
  1163. }
  1164. #u141648_div {
  1165. border-width:0px;
  1166. position:absolute;
  1167. left:0px;
  1168. top:0px;
  1169. width:92px;
  1170. height:30px;
  1171. background:inherit;
  1172. background-color:rgba(255, 255, 255, 0);
  1173. border:none;
  1174. border-left:0px;
  1175. border-top:0px;
  1176. border-right:0px;
  1177. border-radius:0px;
  1178. border-bottom-right-radius:0px;
  1179. border-bottom-left-radius:0px;
  1180. -moz-box-shadow:none;
  1181. -webkit-box-shadow:none;
  1182. box-shadow:none;
  1183. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1184. font-weight:500;
  1185. font-style:normal;
  1186. font-size:14px;
  1187. line-height:30px;
  1188. }
  1189. #u141648 {
  1190. border-width:0px;
  1191. position:absolute;
  1192. left:42px;
  1193. top:118px;
  1194. width:92px;
  1195. height:30px;
  1196. display:flex;
  1197. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1198. font-weight:500;
  1199. font-style:normal;
  1200. font-size:14px;
  1201. line-height:30px;
  1202. }
  1203. #u141648 .text {
  1204. position:absolute;
  1205. align-self:flex-start;
  1206. padding:0px 0px 0px 0px;
  1207. box-sizing:border-box;
  1208. width:100%;
  1209. }
  1210. #u141648_text {
  1211. border-width:0px;
  1212. white-space:nowrap;
  1213. text-transform:none;
  1214. }
  1215. #u141649_div {
  1216. border-width:0px;
  1217. position:absolute;
  1218. left:0px;
  1219. top:0px;
  1220. width:109px;
  1221. height:30px;
  1222. background:inherit;
  1223. background-color:rgba(255, 255, 255, 0);
  1224. border:none;
  1225. border-left:0px;
  1226. border-top:0px;
  1227. border-right:0px;
  1228. border-radius:0px;
  1229. border-bottom-right-radius:0px;
  1230. border-bottom-left-radius:0px;
  1231. -moz-box-shadow:none;
  1232. -webkit-box-shadow:none;
  1233. box-shadow:none;
  1234. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1235. font-weight:400;
  1236. font-style:normal;
  1237. font-size:12px;
  1238. line-height:30px;
  1239. }
  1240. #u141649 {
  1241. border-width:0px;
  1242. position:absolute;
  1243. left:42px;
  1244. top:148px;
  1245. width:109px;
  1246. height:30px;
  1247. display:flex;
  1248. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1249. font-weight:400;
  1250. font-style:normal;
  1251. font-size:12px;
  1252. line-height:30px;
  1253. }
  1254. #u141649 .text {
  1255. position:absolute;
  1256. align-self:flex-start;
  1257. padding:0px 0px 0px 0px;
  1258. box-sizing:border-box;
  1259. width:100%;
  1260. }
  1261. #u141649_text {
  1262. border-width:0px;
  1263. white-space:nowrap;
  1264. text-transform:none;
  1265. }
  1266. #u141650_div {
  1267. border-width:0px;
  1268. position:absolute;
  1269. left:0px;
  1270. top:0px;
  1271. width:85px;
  1272. height:30px;
  1273. background:inherit;
  1274. background-color:rgba(255, 255, 255, 0);
  1275. border:none;
  1276. border-left:0px;
  1277. border-top:0px;
  1278. border-right:0px;
  1279. border-radius:0px;
  1280. border-bottom-right-radius:0px;
  1281. border-bottom-left-radius:0px;
  1282. -moz-box-shadow:none;
  1283. -webkit-box-shadow:none;
  1284. box-shadow:none;
  1285. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1286. font-weight:400;
  1287. font-style:normal;
  1288. font-size:12px;
  1289. line-height:30px;
  1290. }
  1291. #u141650 {
  1292. border-width:0px;
  1293. position:absolute;
  1294. left:42px;
  1295. top:208px;
  1296. width:85px;
  1297. height:30px;
  1298. display:flex;
  1299. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1300. font-weight:400;
  1301. font-style:normal;
  1302. font-size:12px;
  1303. line-height:30px;
  1304. }
  1305. #u141650 .text {
  1306. position:absolute;
  1307. align-self:flex-start;
  1308. padding:0px 0px 0px 0px;
  1309. box-sizing:border-box;
  1310. width:100%;
  1311. }
  1312. #u141650_text {
  1313. border-width:0px;
  1314. white-space:nowrap;
  1315. text-transform:none;
  1316. }
  1317. #u141651_div {
  1318. border-width:0px;
  1319. position:absolute;
  1320. left:0px;
  1321. top:0px;
  1322. width:85px;
  1323. height:30px;
  1324. background:inherit;
  1325. background-color:rgba(255, 255, 255, 0);
  1326. border:none;
  1327. border-left:0px;
  1328. border-top:0px;
  1329. border-right:0px;
  1330. border-radius:0px;
  1331. border-bottom-right-radius:0px;
  1332. border-bottom-left-radius:0px;
  1333. -moz-box-shadow:none;
  1334. -webkit-box-shadow:none;
  1335. box-shadow:none;
  1336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1337. font-weight:400;
  1338. font-style:normal;
  1339. font-size:12px;
  1340. line-height:30px;
  1341. }
  1342. #u141651 {
  1343. border-width:0px;
  1344. position:absolute;
  1345. left:42px;
  1346. top:178px;
  1347. width:85px;
  1348. height:30px;
  1349. display:flex;
  1350. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1351. font-weight:400;
  1352. font-style:normal;
  1353. font-size:12px;
  1354. line-height:30px;
  1355. }
  1356. #u141651 .text {
  1357. position:absolute;
  1358. align-self:flex-start;
  1359. padding:0px 0px 0px 0px;
  1360. box-sizing:border-box;
  1361. width:100%;
  1362. }
  1363. #u141651_text {
  1364. border-width:0px;
  1365. white-space:nowrap;
  1366. text-transform:none;
  1367. }
  1368. #u141652_div {
  1369. border-width:0px;
  1370. position:absolute;
  1371. left:0px;
  1372. top:0px;
  1373. width:85px;
  1374. height:30px;
  1375. background:inherit;
  1376. background-color:rgba(255, 255, 255, 0);
  1377. border:none;
  1378. border-left:0px;
  1379. border-top:0px;
  1380. border-right:0px;
  1381. border-radius:0px;
  1382. border-bottom-right-radius:0px;
  1383. border-bottom-left-radius:0px;
  1384. -moz-box-shadow:none;
  1385. -webkit-box-shadow:none;
  1386. box-shadow:none;
  1387. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1388. font-weight:400;
  1389. font-style:normal;
  1390. font-size:12px;
  1391. line-height:30px;
  1392. }
  1393. #u141652 {
  1394. border-width:0px;
  1395. position:absolute;
  1396. left:42px;
  1397. top:238px;
  1398. width:85px;
  1399. height:30px;
  1400. display:flex;
  1401. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1402. font-weight:400;
  1403. font-style:normal;
  1404. font-size:12px;
  1405. line-height:30px;
  1406. }
  1407. #u141652 .text {
  1408. position:absolute;
  1409. align-self:flex-start;
  1410. padding:0px 0px 0px 0px;
  1411. box-sizing:border-box;
  1412. width:100%;
  1413. }
  1414. #u141652_text {
  1415. border-width:0px;
  1416. white-space:nowrap;
  1417. text-transform:none;
  1418. }
  1419. #u141653_div {
  1420. border-width:0px;
  1421. position:absolute;
  1422. left:0px;
  1423. top:0px;
  1424. width:177px;
  1425. height:30px;
  1426. background:inherit;
  1427. background-color:rgba(255, 255, 255, 0);
  1428. border:none;
  1429. border-left:0px;
  1430. border-top:0px;
  1431. border-right:0px;
  1432. border-radius:0px;
  1433. border-bottom-right-radius:0px;
  1434. border-bottom-left-radius:0px;
  1435. -moz-box-shadow:none;
  1436. -webkit-box-shadow:none;
  1437. box-shadow:none;
  1438. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1439. font-weight:400;
  1440. font-style:normal;
  1441. font-size:12px;
  1442. line-height:30px;
  1443. }
  1444. #u141653 {
  1445. border-width:0px;
  1446. position:absolute;
  1447. left:42px;
  1448. top:268px;
  1449. width:177px;
  1450. height:30px;
  1451. display:flex;
  1452. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1453. font-weight:400;
  1454. font-style:normal;
  1455. font-size:12px;
  1456. line-height:30px;
  1457. }
  1458. #u141653 .text {
  1459. position:absolute;
  1460. align-self:flex-start;
  1461. padding:0px 0px 0px 0px;
  1462. box-sizing:border-box;
  1463. width:100%;
  1464. }
  1465. #u141653_text {
  1466. border-width:0px;
  1467. white-space:nowrap;
  1468. text-transform:none;
  1469. }
  1470. #u141654_div {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:375px;
  1476. height:41px;
  1477. background:inherit;
  1478. background-color:rgba(255, 255, 255, 1);
  1479. box-sizing:border-box;
  1480. border-width:1px;
  1481. border-style:solid;
  1482. border-color:rgba(215, 215, 215, 1);
  1483. border-left:0px;
  1484. border-top:0px;
  1485. border-right:0px;
  1486. border-radius:0px;
  1487. border-bottom-right-radius:0px;
  1488. border-bottom-left-radius:0px;
  1489. -moz-box-shadow:none;
  1490. -webkit-box-shadow:none;
  1491. box-shadow:none;
  1492. }
  1493. #u141654 {
  1494. border-width:0px;
  1495. position:absolute;
  1496. left:29px;
  1497. top:67px;
  1498. width:375px;
  1499. height:41px;
  1500. display:flex;
  1501. }
  1502. #u141654 .text {
  1503. position:absolute;
  1504. align-self:center;
  1505. padding:2px 2px 2px 2px;
  1506. box-sizing:border-box;
  1507. width:100%;
  1508. }
  1509. #u141654_text {
  1510. border-width:0px;
  1511. word-wrap:break-word;
  1512. text-transform:none;
  1513. visibility:hidden;
  1514. }
  1515. #u141655_img {
  1516. border-width:0px;
  1517. position:absolute;
  1518. left:0px;
  1519. top:0px;
  1520. width:375px;
  1521. height:44px;
  1522. }
  1523. #u141655 {
  1524. border-width:0px;
  1525. position:absolute;
  1526. left:29px;
  1527. top:24px;
  1528. width:375px;
  1529. height:44px;
  1530. display:flex;
  1531. }
  1532. #u141655 .text {
  1533. position:absolute;
  1534. align-self:center;
  1535. padding:2px 2px 2px 2px;
  1536. box-sizing:border-box;
  1537. width:100%;
  1538. }
  1539. #u141655_text {
  1540. border-width:0px;
  1541. word-wrap:break-word;
  1542. text-transform:none;
  1543. visibility:hidden;
  1544. }
  1545. #u141656 {
  1546. border-width:0px;
  1547. position:absolute;
  1548. left:0px;
  1549. top:0px;
  1550. width:0px;
  1551. height:0px;
  1552. }
  1553. #u141657_div {
  1554. border-width:0px;
  1555. position:absolute;
  1556. left:0px;
  1557. top:0px;
  1558. width:88px;
  1559. height:32px;
  1560. background:inherit;
  1561. background-color:rgba(255, 255, 255, 1);
  1562. box-sizing:border-box;
  1563. border-width:1px;
  1564. border-style:solid;
  1565. border-color:rgba(242, 242, 242, 1);
  1566. border-radius:33px;
  1567. -moz-box-shadow:none;
  1568. -webkit-box-shadow:none;
  1569. box-shadow:none;
  1570. }
  1571. #u141657 {
  1572. border-width:0px;
  1573. position:absolute;
  1574. left:309px;
  1575. top:71px;
  1576. width:88px;
  1577. height:32px;
  1578. display:flex;
  1579. }
  1580. #u141657 .text {
  1581. position:absolute;
  1582. align-self:center;
  1583. padding:2px 2px 2px 2px;
  1584. box-sizing:border-box;
  1585. width:100%;
  1586. }
  1587. #u141657_text {
  1588. border-width:0px;
  1589. word-wrap:break-word;
  1590. text-transform:none;
  1591. visibility:hidden;
  1592. }
  1593. #u141658 {
  1594. border-width:0px;
  1595. position:absolute;
  1596. left:0px;
  1597. top:0px;
  1598. width:0px;
  1599. height:0px;
  1600. }
  1601. #u141659_img {
  1602. border-width:0px;
  1603. position:absolute;
  1604. left:0px;
  1605. top:0px;
  1606. width:18px;
  1607. height:18px;
  1608. }
  1609. #u141659 {
  1610. border-width:0px;
  1611. position:absolute;
  1612. left:372px;
  1613. top:78px;
  1614. width:18px;
  1615. height:18px;
  1616. display:flex;
  1617. }
  1618. #u141659 .text {
  1619. position:absolute;
  1620. align-self:center;
  1621. padding:2px 2px 2px 2px;
  1622. box-sizing:border-box;
  1623. width:100%;
  1624. }
  1625. #u141659_text {
  1626. border-width:0px;
  1627. word-wrap:break-word;
  1628. text-transform:none;
  1629. visibility:hidden;
  1630. }
  1631. #u141660_img {
  1632. border-width:0px;
  1633. position:absolute;
  1634. left:0px;
  1635. top:0px;
  1636. width:6px;
  1637. height:6px;
  1638. }
  1639. #u141660 {
  1640. border-width:0px;
  1641. position:absolute;
  1642. left:378px;
  1643. top:84px;
  1644. width:6px;
  1645. height:6px;
  1646. display:flex;
  1647. }
  1648. #u141660 .text {
  1649. position:absolute;
  1650. align-self:center;
  1651. padding:2px 2px 2px 2px;
  1652. box-sizing:border-box;
  1653. width:100%;
  1654. }
  1655. #u141660_text {
  1656. border-width:0px;
  1657. word-wrap:break-word;
  1658. text-transform:none;
  1659. visibility:hidden;
  1660. }
  1661. #u141661 {
  1662. border-width:0px;
  1663. position:absolute;
  1664. left:0px;
  1665. top:0px;
  1666. width:0px;
  1667. height:0px;
  1668. }
  1669. #u141662_img {
  1670. border-width:0px;
  1671. position:absolute;
  1672. left:0px;
  1673. top:0px;
  1674. width:5px;
  1675. height:5px;
  1676. }
  1677. #u141662 {
  1678. border-width:0px;
  1679. position:absolute;
  1680. left:323px;
  1681. top:85px;
  1682. width:5px;
  1683. height:5px;
  1684. display:flex;
  1685. }
  1686. #u141662 .text {
  1687. position:absolute;
  1688. align-self:center;
  1689. padding:2px 2px 2px 2px;
  1690. box-sizing:border-box;
  1691. width:100%;
  1692. }
  1693. #u141662_text {
  1694. border-width:0px;
  1695. word-wrap:break-word;
  1696. text-transform:none;
  1697. visibility:hidden;
  1698. }
  1699. #u141663_img {
  1700. border-width:0px;
  1701. position:absolute;
  1702. left:0px;
  1703. top:0px;
  1704. width:5px;
  1705. height:5px;
  1706. }
  1707. #u141663 {
  1708. border-width:0px;
  1709. position:absolute;
  1710. left:339px;
  1711. top:85px;
  1712. width:5px;
  1713. height:5px;
  1714. display:flex;
  1715. }
  1716. #u141663 .text {
  1717. position:absolute;
  1718. align-self:center;
  1719. padding:2px 2px 2px 2px;
  1720. box-sizing:border-box;
  1721. width:100%;
  1722. }
  1723. #u141663_text {
  1724. border-width:0px;
  1725. word-wrap:break-word;
  1726. text-transform:none;
  1727. visibility:hidden;
  1728. }
  1729. #u141664_img {
  1730. border-width:0px;
  1731. position:absolute;
  1732. left:0px;
  1733. top:0px;
  1734. width:7px;
  1735. height:7px;
  1736. }
  1737. #u141664 {
  1738. border-width:0px;
  1739. position:absolute;
  1740. left:330px;
  1741. top:84px;
  1742. width:7px;
  1743. height:7px;
  1744. display:flex;
  1745. }
  1746. #u141664 .text {
  1747. position:absolute;
  1748. align-self:center;
  1749. padding:2px 2px 2px 2px;
  1750. box-sizing:border-box;
  1751. width:100%;
  1752. }
  1753. #u141664_text {
  1754. border-width:0px;
  1755. word-wrap:break-word;
  1756. text-transform:none;
  1757. visibility:hidden;
  1758. }
  1759. #u141665_img {
  1760. border-width:0px;
  1761. position:absolute;
  1762. left:0px;
  1763. top:0px;
  1764. width:19px;
  1765. height:2px;
  1766. }
  1767. #u141665 {
  1768. border-width:0px;
  1769. position:absolute;
  1770. left:347px;
  1771. top:87px;
  1772. width:18px;
  1773. height:1px;
  1774. display:flex;
  1775. -webkit-transform:rotate(90deg);
  1776. -moz-transform:rotate(90deg);
  1777. -ms-transform:rotate(90deg);
  1778. transform:rotate(90deg);
  1779. }
  1780. #u141665 .text {
  1781. position:absolute;
  1782. align-self:center;
  1783. padding:2px 2px 2px 2px;
  1784. box-sizing:border-box;
  1785. width:100%;
  1786. }
  1787. #u141665_text {
  1788. border-width:0px;
  1789. word-wrap:break-word;
  1790. text-transform:none;
  1791. visibility:hidden;
  1792. }
  1793. #u141666_div {
  1794. border-width:0px;
  1795. position:absolute;
  1796. left:0px;
  1797. top:0px;
  1798. width:12px;
  1799. height:12px;
  1800. background:inherit;
  1801. background-color:rgba(255, 255, 255, 0);
  1802. box-sizing:border-box;
  1803. border-width:2px;
  1804. border-style:solid;
  1805. border-color:rgba(51, 51, 51, 1);
  1806. border-right:0px;
  1807. border-bottom:0px;
  1808. border-radius:0px;
  1809. border-top-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. #u141666 {
  1816. border-width:0px;
  1817. position:absolute;
  1818. left:44px;
  1819. top:81px;
  1820. width:12px;
  1821. height:12px;
  1822. display:flex;
  1823. -webkit-transform:rotate(315deg);
  1824. -moz-transform:rotate(315deg);
  1825. -ms-transform:rotate(315deg);
  1826. transform:rotate(315deg);
  1827. }
  1828. #u141666 .text {
  1829. position:absolute;
  1830. align-self:center;
  1831. padding:2px 2px 2px 2px;
  1832. box-sizing:border-box;
  1833. width:100%;
  1834. }
  1835. #u141666_text {
  1836. border-width:0px;
  1837. word-wrap:break-word;
  1838. text-transform:none;
  1839. visibility:hidden;
  1840. }
  1841. #u141667_div {
  1842. border-width:0px;
  1843. position:absolute;
  1844. left:0px;
  1845. top:0px;
  1846. width:37px;
  1847. height:25px;
  1848. background:inherit;
  1849. background-color:rgba(255, 255, 255, 0);
  1850. border:none;
  1851. border-radius:0px;
  1852. -moz-box-shadow:none;
  1853. -webkit-box-shadow:none;
  1854. box-shadow:none;
  1855. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1856. font-weight:400;
  1857. font-style:normal;
  1858. font-size:18px;
  1859. }
  1860. #u141667 {
  1861. border-width:0px;
  1862. position:absolute;
  1863. left:64px;
  1864. top:75px;
  1865. width:37px;
  1866. height:25px;
  1867. display:flex;
  1868. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1869. font-weight:400;
  1870. font-style:normal;
  1871. font-size:18px;
  1872. }
  1873. #u141667 .text {
  1874. position:absolute;
  1875. align-self:flex-start;
  1876. padding:0px 0px 0px 0px;
  1877. box-sizing:border-box;
  1878. width:100%;
  1879. }
  1880. #u141667_text {
  1881. border-width:0px;
  1882. white-space:nowrap;
  1883. text-transform:none;
  1884. }
  1885. #u141668 {
  1886. border-width:0px;
  1887. position:absolute;
  1888. left:0px;
  1889. top:0px;
  1890. width:0px;
  1891. height:0px;
  1892. }
  1893. #u141669_div {
  1894. border-width:0px;
  1895. position:absolute;
  1896. left:0px;
  1897. top:0px;
  1898. width:375px;
  1899. height:60px;
  1900. background:inherit;
  1901. background-color:rgba(255, 255, 255, 1);
  1902. box-sizing:border-box;
  1903. border-width:1px;
  1904. border-style:solid;
  1905. border-color:rgba(242, 242, 242, 1);
  1906. border-radius:20px;
  1907. border-top-left-radius:0px;
  1908. border-top-right-radius:0px;
  1909. -moz-box-shadow:none;
  1910. -webkit-box-shadow:none;
  1911. box-shadow:none;
  1912. }
  1913. #u141669 {
  1914. border-width:0px;
  1915. position:absolute;
  1916. left:29px;
  1917. top:779px;
  1918. width:375px;
  1919. height:60px;
  1920. display:flex;
  1921. }
  1922. #u141669 .text {
  1923. position:absolute;
  1924. align-self:center;
  1925. padding:2px 2px 2px 2px;
  1926. box-sizing:border-box;
  1927. width:100%;
  1928. }
  1929. #u141669_text {
  1930. border-width:0px;
  1931. word-wrap:break-word;
  1932. text-transform:none;
  1933. visibility:hidden;
  1934. }
  1935. #u141670_div {
  1936. border-width:0px;
  1937. position:absolute;
  1938. left:0px;
  1939. top:0px;
  1940. width:97px;
  1941. height:40px;
  1942. background:inherit;
  1943. background-color:rgba(255, 255, 255, 1);
  1944. box-sizing:border-box;
  1945. border-width:1px;
  1946. border-style:solid;
  1947. border-color:rgba(121, 121, 121, 1);
  1948. border-radius:63px;
  1949. -moz-box-shadow:none;
  1950. -webkit-box-shadow:none;
  1951. box-shadow:none;
  1952. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1953. font-weight:400;
  1954. font-style:normal;
  1955. font-size:14px;
  1956. color:#555555;
  1957. }
  1958. #u141670 {
  1959. border-width:0px;
  1960. position:absolute;
  1961. left:186px;
  1962. top:789px;
  1963. width:97px;
  1964. height:40px;
  1965. display:flex;
  1966. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1967. font-weight:400;
  1968. font-style:normal;
  1969. font-size:14px;
  1970. color:#555555;
  1971. }
  1972. #u141670 .text {
  1973. position:absolute;
  1974. align-self:center;
  1975. padding:2px 2px 2px 2px;
  1976. box-sizing:border-box;
  1977. width:100%;
  1978. }
  1979. #u141670_text {
  1980. border-width:0px;
  1981. word-wrap:break-word;
  1982. text-transform:none;
  1983. }
  1984. #u141671_div {
  1985. border-width:0px;
  1986. position:absolute;
  1987. left:0px;
  1988. top:0px;
  1989. width:97px;
  1990. height:40px;
  1991. background:inherit;
  1992. background-color:rgba(24, 144, 255, 1);
  1993. border:none;
  1994. border-radius:63px;
  1995. -moz-box-shadow:none;
  1996. -webkit-box-shadow:none;
  1997. box-shadow:none;
  1998. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1999. font-weight:400;
  2000. font-style:normal;
  2001. font-size:14px;
  2002. color:#FFFFFF;
  2003. }
  2004. #u141671 {
  2005. border-width:0px;
  2006. position:absolute;
  2007. left:293px;
  2008. top:789px;
  2009. width:97px;
  2010. height:40px;
  2011. display:flex;
  2012. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2013. font-weight:400;
  2014. font-style:normal;
  2015. font-size:14px;
  2016. color:#FFFFFF;
  2017. }
  2018. #u141671 .text {
  2019. position:absolute;
  2020. align-self:center;
  2021. padding:2px 2px 2px 2px;
  2022. box-sizing:border-box;
  2023. width:100%;
  2024. }
  2025. #u141671_text {
  2026. border-width:0px;
  2027. word-wrap:break-word;
  2028. text-transform:none;
  2029. }
  2030. #u141673_img {
  2031. border-width:0px;
  2032. position:absolute;
  2033. left:0px;
  2034. top:0px;
  2035. width:433px;
  2036. height:865px;
  2037. }
  2038. #u141673 {
  2039. border-width:0px;
  2040. position:absolute;
  2041. left:471px;
  2042. top:0px;
  2043. width:433px;
  2044. height:865px;
  2045. display:flex;
  2046. }
  2047. #u141673 .text {
  2048. position:absolute;
  2049. align-self:center;
  2050. padding:2px 2px 2px 2px;
  2051. box-sizing:border-box;
  2052. width:100%;
  2053. }
  2054. #u141673_text {
  2055. border-width:0px;
  2056. word-wrap:break-word;
  2057. text-transform:none;
  2058. visibility:hidden;
  2059. }
  2060. #u141674_div {
  2061. border-width:0px;
  2062. position:absolute;
  2063. left:0px;
  2064. top:0px;
  2065. width:375px;
  2066. height:40px;
  2067. background:inherit;
  2068. background-color:rgba(255, 255, 255, 1);
  2069. box-sizing:border-box;
  2070. border-width:1px;
  2071. border-style:solid;
  2072. border-color:rgba(215, 215, 215, 1);
  2073. border-left:0px;
  2074. border-top:0px;
  2075. border-right:0px;
  2076. border-radius:0px;
  2077. border-bottom-right-radius:0px;
  2078. border-bottom-left-radius:0px;
  2079. -moz-box-shadow:none;
  2080. -webkit-box-shadow:none;
  2081. box-shadow:none;
  2082. }
  2083. #u141674 {
  2084. border-width:0px;
  2085. position:absolute;
  2086. left:500px;
  2087. top:67px;
  2088. width:375px;
  2089. height:40px;
  2090. display:flex;
  2091. }
  2092. #u141674 .text {
  2093. position:absolute;
  2094. align-self:center;
  2095. padding:2px 2px 2px 2px;
  2096. box-sizing:border-box;
  2097. width:100%;
  2098. }
  2099. #u141674_text {
  2100. border-width:0px;
  2101. word-wrap:break-word;
  2102. text-transform:none;
  2103. visibility:hidden;
  2104. }
  2105. #u141675 {
  2106. border-width:0px;
  2107. position:absolute;
  2108. left:0px;
  2109. top:0px;
  2110. width:0px;
  2111. height:0px;
  2112. }
  2113. #u141676_div {
  2114. border-width:0px;
  2115. position:absolute;
  2116. left:0px;
  2117. top:0px;
  2118. width:88px;
  2119. height:32px;
  2120. background:inherit;
  2121. background-color:rgba(255, 255, 255, 1);
  2122. box-sizing:border-box;
  2123. border-width:1px;
  2124. border-style:solid;
  2125. border-color:rgba(242, 242, 242, 1);
  2126. border-radius:33px;
  2127. -moz-box-shadow:none;
  2128. -webkit-box-shadow:none;
  2129. box-shadow:none;
  2130. }
  2131. #u141676 {
  2132. border-width:0px;
  2133. position:absolute;
  2134. left:780px;
  2135. top:71px;
  2136. width:88px;
  2137. height:32px;
  2138. display:flex;
  2139. }
  2140. #u141676 .text {
  2141. position:absolute;
  2142. align-self:center;
  2143. padding:2px 2px 2px 2px;
  2144. box-sizing:border-box;
  2145. width:100%;
  2146. }
  2147. #u141676_text {
  2148. border-width:0px;
  2149. word-wrap:break-word;
  2150. text-transform:none;
  2151. visibility:hidden;
  2152. }
  2153. #u141677 {
  2154. border-width:0px;
  2155. position:absolute;
  2156. left:0px;
  2157. top:0px;
  2158. width:0px;
  2159. height:0px;
  2160. }
  2161. #u141678_img {
  2162. border-width:0px;
  2163. position:absolute;
  2164. left:0px;
  2165. top:0px;
  2166. width:18px;
  2167. height:18px;
  2168. }
  2169. #u141678 {
  2170. border-width:0px;
  2171. position:absolute;
  2172. left:843px;
  2173. top:78px;
  2174. width:18px;
  2175. height:18px;
  2176. display:flex;
  2177. }
  2178. #u141678 .text {
  2179. position:absolute;
  2180. align-self:center;
  2181. padding:2px 2px 2px 2px;
  2182. box-sizing:border-box;
  2183. width:100%;
  2184. }
  2185. #u141678_text {
  2186. border-width:0px;
  2187. word-wrap:break-word;
  2188. text-transform:none;
  2189. visibility:hidden;
  2190. }
  2191. #u141679_img {
  2192. border-width:0px;
  2193. position:absolute;
  2194. left:0px;
  2195. top:0px;
  2196. width:6px;
  2197. height:6px;
  2198. }
  2199. #u141679 {
  2200. border-width:0px;
  2201. position:absolute;
  2202. left:849px;
  2203. top:84px;
  2204. width:6px;
  2205. height:6px;
  2206. display:flex;
  2207. }
  2208. #u141679 .text {
  2209. position:absolute;
  2210. align-self:center;
  2211. padding:2px 2px 2px 2px;
  2212. box-sizing:border-box;
  2213. width:100%;
  2214. }
  2215. #u141679_text {
  2216. border-width:0px;
  2217. word-wrap:break-word;
  2218. text-transform:none;
  2219. visibility:hidden;
  2220. }
  2221. #u141680 {
  2222. border-width:0px;
  2223. position:absolute;
  2224. left:0px;
  2225. top:0px;
  2226. width:0px;
  2227. height:0px;
  2228. }
  2229. #u141681_img {
  2230. border-width:0px;
  2231. position:absolute;
  2232. left:0px;
  2233. top:0px;
  2234. width:5px;
  2235. height:5px;
  2236. }
  2237. #u141681 {
  2238. border-width:0px;
  2239. position:absolute;
  2240. left:794px;
  2241. top:85px;
  2242. width:5px;
  2243. height:5px;
  2244. display:flex;
  2245. }
  2246. #u141681 .text {
  2247. position:absolute;
  2248. align-self:center;
  2249. padding:2px 2px 2px 2px;
  2250. box-sizing:border-box;
  2251. width:100%;
  2252. }
  2253. #u141681_text {
  2254. border-width:0px;
  2255. word-wrap:break-word;
  2256. text-transform:none;
  2257. visibility:hidden;
  2258. }
  2259. #u141682_img {
  2260. border-width:0px;
  2261. position:absolute;
  2262. left:0px;
  2263. top:0px;
  2264. width:5px;
  2265. height:5px;
  2266. }
  2267. #u141682 {
  2268. border-width:0px;
  2269. position:absolute;
  2270. left:810px;
  2271. top:85px;
  2272. width:5px;
  2273. height:5px;
  2274. display:flex;
  2275. }
  2276. #u141682 .text {
  2277. position:absolute;
  2278. align-self:center;
  2279. padding:2px 2px 2px 2px;
  2280. box-sizing:border-box;
  2281. width:100%;
  2282. }
  2283. #u141682_text {
  2284. border-width:0px;
  2285. word-wrap:break-word;
  2286. text-transform:none;
  2287. visibility:hidden;
  2288. }
  2289. #u141683_img {
  2290. border-width:0px;
  2291. position:absolute;
  2292. left:0px;
  2293. top:0px;
  2294. width:7px;
  2295. height:7px;
  2296. }
  2297. #u141683 {
  2298. border-width:0px;
  2299. position:absolute;
  2300. left:801px;
  2301. top:84px;
  2302. width:7px;
  2303. height:7px;
  2304. display:flex;
  2305. }
  2306. #u141683 .text {
  2307. position:absolute;
  2308. align-self:center;
  2309. padding:2px 2px 2px 2px;
  2310. box-sizing:border-box;
  2311. width:100%;
  2312. }
  2313. #u141683_text {
  2314. border-width:0px;
  2315. word-wrap:break-word;
  2316. text-transform:none;
  2317. visibility:hidden;
  2318. }
  2319. #u141684_img {
  2320. border-width:0px;
  2321. position:absolute;
  2322. left:0px;
  2323. top:0px;
  2324. width:19px;
  2325. height:2px;
  2326. }
  2327. #u141684 {
  2328. border-width:0px;
  2329. position:absolute;
  2330. left:818px;
  2331. top:87px;
  2332. width:18px;
  2333. height:1px;
  2334. display:flex;
  2335. -webkit-transform:rotate(90deg);
  2336. -moz-transform:rotate(90deg);
  2337. -ms-transform:rotate(90deg);
  2338. transform:rotate(90deg);
  2339. }
  2340. #u141684 .text {
  2341. position:absolute;
  2342. align-self:center;
  2343. padding:2px 2px 2px 2px;
  2344. box-sizing:border-box;
  2345. width:100%;
  2346. }
  2347. #u141684_text {
  2348. border-width:0px;
  2349. word-wrap:break-word;
  2350. text-transform:none;
  2351. visibility:hidden;
  2352. }
  2353. #u141685_img {
  2354. border-width:0px;
  2355. position:absolute;
  2356. left:0px;
  2357. top:0px;
  2358. width:375px;
  2359. height:44px;
  2360. }
  2361. #u141685 {
  2362. border-width:0px;
  2363. position:absolute;
  2364. left:500px;
  2365. top:24px;
  2366. width:375px;
  2367. height:44px;
  2368. display:flex;
  2369. }
  2370. #u141685 .text {
  2371. position:absolute;
  2372. align-self:center;
  2373. padding:2px 2px 2px 2px;
  2374. box-sizing:border-box;
  2375. width:100%;
  2376. }
  2377. #u141685_text {
  2378. border-width:0px;
  2379. word-wrap:break-word;
  2380. text-transform:none;
  2381. visibility:hidden;
  2382. }
  2383. #u141686_div {
  2384. border-width:0px;
  2385. position:absolute;
  2386. left:0px;
  2387. top:0px;
  2388. width:375px;
  2389. height:50px;
  2390. background:inherit;
  2391. background-color:rgba(255, 255, 255, 1);
  2392. box-sizing:border-box;
  2393. border-width:1px;
  2394. border-style:solid;
  2395. border-color:rgba(242, 242, 242, 1);
  2396. border-radius:26px;
  2397. border-top-left-radius:0px;
  2398. border-top-right-radius:0px;
  2399. -moz-box-shadow:none;
  2400. -webkit-box-shadow:none;
  2401. box-shadow:none;
  2402. }
  2403. #u141686 {
  2404. border-width:0px;
  2405. position:absolute;
  2406. left:500px;
  2407. top:788px;
  2408. width:375px;
  2409. height:50px;
  2410. display:flex;
  2411. }
  2412. #u141686 .text {
  2413. position:absolute;
  2414. align-self:center;
  2415. padding:2px 2px 2px 2px;
  2416. box-sizing:border-box;
  2417. width:100%;
  2418. }
  2419. #u141686_text {
  2420. border-width:0px;
  2421. word-wrap:break-word;
  2422. text-transform:none;
  2423. visibility:hidden;
  2424. }
  2425. #u141687 {
  2426. border-width:0px;
  2427. position:absolute;
  2428. left:0px;
  2429. top:0px;
  2430. width:0px;
  2431. height:0px;
  2432. }
  2433. #u141688_img {
  2434. border-width:0px;
  2435. position:absolute;
  2436. left:0px;
  2437. top:0px;
  2438. width:24px;
  2439. height:24px;
  2440. }
  2441. #u141688 {
  2442. border-width:0px;
  2443. position:absolute;
  2444. left:540px;
  2445. top:792px;
  2446. width:24px;
  2447. height:24px;
  2448. display:flex;
  2449. font-size:8px;
  2450. }
  2451. #u141688 .text {
  2452. position:absolute;
  2453. align-self:center;
  2454. padding:2px 2px 2px 2px;
  2455. box-sizing:border-box;
  2456. width:100%;
  2457. }
  2458. #u141688_text {
  2459. border-width:0px;
  2460. word-wrap:break-word;
  2461. text-transform:none;
  2462. }
  2463. #u141689_div {
  2464. border-width:0px;
  2465. position:absolute;
  2466. left:0px;
  2467. top:0px;
  2468. width:25px;
  2469. height:17px;
  2470. background:inherit;
  2471. background-color:rgba(255, 255, 255, 0);
  2472. border:none;
  2473. border-radius:0px;
  2474. -moz-box-shadow:none;
  2475. -webkit-box-shadow:none;
  2476. box-shadow:none;
  2477. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2478. font-weight:400;
  2479. font-style:normal;
  2480. font-size:12px;
  2481. }
  2482. #u141689 {
  2483. border-width:0px;
  2484. position:absolute;
  2485. left:540px;
  2486. top:817px;
  2487. width:25px;
  2488. height:17px;
  2489. display:flex;
  2490. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2491. font-weight:400;
  2492. font-style:normal;
  2493. font-size:12px;
  2494. }
  2495. #u141689 .text {
  2496. position:absolute;
  2497. align-self:flex-start;
  2498. padding:0px 0px 0px 0px;
  2499. box-sizing:border-box;
  2500. width:100%;
  2501. }
  2502. #u141689_text {
  2503. border-width:0px;
  2504. white-space:nowrap;
  2505. text-transform:none;
  2506. }
  2507. #u141690 {
  2508. border-width:0px;
  2509. position:absolute;
  2510. left:0px;
  2511. top:0px;
  2512. width:0px;
  2513. height:0px;
  2514. }
  2515. #u141691_img {
  2516. border-width:0px;
  2517. position:absolute;
  2518. left:0px;
  2519. top:0px;
  2520. width:24px;
  2521. height:24px;
  2522. }
  2523. #u141691 {
  2524. border-width:0px;
  2525. position:absolute;
  2526. left:810px;
  2527. top:794px;
  2528. width:24px;
  2529. height:24px;
  2530. display:flex;
  2531. font-size:8px;
  2532. }
  2533. #u141691 .text {
  2534. position:absolute;
  2535. align-self:center;
  2536. padding:2px 2px 2px 2px;
  2537. box-sizing:border-box;
  2538. width:100%;
  2539. }
  2540. #u141691_text {
  2541. border-width:0px;
  2542. word-wrap:break-word;
  2543. text-transform:none;
  2544. }
  2545. #u141692_div {
  2546. border-width:0px;
  2547. position:absolute;
  2548. left:0px;
  2549. top:0px;
  2550. width:25px;
  2551. height:17px;
  2552. background:inherit;
  2553. background-color:rgba(255, 255, 255, 0);
  2554. border:none;
  2555. border-radius:0px;
  2556. -moz-box-shadow:none;
  2557. -webkit-box-shadow:none;
  2558. box-shadow:none;
  2559. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2560. font-weight:400;
  2561. font-style:normal;
  2562. font-size:12px;
  2563. }
  2564. #u141692 {
  2565. border-width:0px;
  2566. position:absolute;
  2567. left:810px;
  2568. top:819px;
  2569. width:25px;
  2570. height:17px;
  2571. display:flex;
  2572. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2573. font-weight:400;
  2574. font-style:normal;
  2575. font-size:12px;
  2576. }
  2577. #u141692 .text {
  2578. position:absolute;
  2579. align-self:flex-start;
  2580. padding:0px 0px 0px 0px;
  2581. box-sizing:border-box;
  2582. width:100%;
  2583. }
  2584. #u141692_text {
  2585. border-width:0px;
  2586. white-space:nowrap;
  2587. text-transform:none;
  2588. }
  2589. #u141693_div {
  2590. border-width:0px;
  2591. position:absolute;
  2592. left:0px;
  2593. top:0px;
  2594. width:375px;
  2595. height:681px;
  2596. background:inherit;
  2597. background-color:rgba(242, 242, 242, 0.462745098039216);
  2598. border:none;
  2599. border-radius:0px;
  2600. -moz-box-shadow:none;
  2601. -webkit-box-shadow:none;
  2602. box-shadow:none;
  2603. }
  2604. #u141693 {
  2605. border-width:0px;
  2606. position:absolute;
  2607. left:500px;
  2608. top:107px;
  2609. width:375px;
  2610. height:681px;
  2611. display:flex;
  2612. }
  2613. #u141693 .text {
  2614. position:absolute;
  2615. align-self:center;
  2616. padding:2px 2px 2px 2px;
  2617. box-sizing:border-box;
  2618. width:100%;
  2619. }
  2620. #u141693_text {
  2621. border-width:0px;
  2622. word-wrap:break-word;
  2623. text-transform:none;
  2624. visibility:hidden;
  2625. }
  2626. #u141694 {
  2627. border-width:0px;
  2628. position:absolute;
  2629. left:0px;
  2630. top:0px;
  2631. width:0px;
  2632. height:0px;
  2633. }
  2634. #u141695_img {
  2635. border-width:0px;
  2636. position:absolute;
  2637. left:0px;
  2638. top:0px;
  2639. width:24px;
  2640. height:24px;
  2641. }
  2642. #u141695 {
  2643. border-width:0px;
  2644. position:absolute;
  2645. left:722px;
  2646. top:792px;
  2647. width:24px;
  2648. height:24px;
  2649. display:flex;
  2650. font-size:8px;
  2651. }
  2652. #u141695 .text {
  2653. position:absolute;
  2654. align-self:center;
  2655. padding:2px 2px 2px 2px;
  2656. box-sizing:border-box;
  2657. width:100%;
  2658. }
  2659. #u141695_text {
  2660. border-width:0px;
  2661. word-wrap:break-word;
  2662. text-transform:none;
  2663. }
  2664. #u141696_div {
  2665. border-width:0px;
  2666. position:absolute;
  2667. left:0px;
  2668. top:0px;
  2669. width:37px;
  2670. height:17px;
  2671. background:inherit;
  2672. background-color:rgba(255, 255, 255, 0);
  2673. border:none;
  2674. border-radius:0px;
  2675. -moz-box-shadow:none;
  2676. -webkit-box-shadow:none;
  2677. box-shadow:none;
  2678. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2679. font-weight:400;
  2680. font-style:normal;
  2681. font-size:12px;
  2682. }
  2683. #u141696 {
  2684. border-width:0px;
  2685. position:absolute;
  2686. left:716px;
  2687. top:817px;
  2688. width:37px;
  2689. height:17px;
  2690. display:flex;
  2691. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2692. font-weight:400;
  2693. font-style:normal;
  2694. font-size:12px;
  2695. }
  2696. #u141696 .text {
  2697. position:absolute;
  2698. align-self:flex-start;
  2699. padding:0px 0px 0px 0px;
  2700. box-sizing:border-box;
  2701. width:100%;
  2702. }
  2703. #u141696_text {
  2704. border-width:0px;
  2705. white-space:nowrap;
  2706. text-transform:none;
  2707. }
  2708. #u141697 {
  2709. border-width:0px;
  2710. position:absolute;
  2711. left:0px;
  2712. top:0px;
  2713. width:0px;
  2714. height:0px;
  2715. }
  2716. #u141698_img {
  2717. border-width:0px;
  2718. position:absolute;
  2719. left:0px;
  2720. top:0px;
  2721. width:24px;
  2722. height:24px;
  2723. }
  2724. #u141698 {
  2725. border-width:0px;
  2726. position:absolute;
  2727. left:628px;
  2728. top:792px;
  2729. width:24px;
  2730. height:24px;
  2731. display:flex;
  2732. font-size:8px;
  2733. }
  2734. #u141698 .text {
  2735. position:absolute;
  2736. align-self:center;
  2737. padding:2px 2px 2px 2px;
  2738. box-sizing:border-box;
  2739. width:100%;
  2740. }
  2741. #u141698_text {
  2742. border-width:0px;
  2743. word-wrap:break-word;
  2744. text-transform:none;
  2745. }
  2746. #u141699_div {
  2747. border-width:0px;
  2748. position:absolute;
  2749. left:0px;
  2750. top:0px;
  2751. width:37px;
  2752. height:17px;
  2753. background:inherit;
  2754. background-color:rgba(255, 255, 255, 0);
  2755. border:none;
  2756. border-radius:0px;
  2757. -moz-box-shadow:none;
  2758. -webkit-box-shadow:none;
  2759. box-shadow:none;
  2760. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2761. font-weight:400;
  2762. font-style:normal;
  2763. font-size:12px;
  2764. }
  2765. #u141699 {
  2766. border-width:0px;
  2767. position:absolute;
  2768. left:622px;
  2769. top:817px;
  2770. width:37px;
  2771. height:17px;
  2772. display:flex;
  2773. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2774. font-weight:400;
  2775. font-style:normal;
  2776. font-size:12px;
  2777. }
  2778. #u141699 .text {
  2779. position:absolute;
  2780. align-self:flex-start;
  2781. padding:0px 0px 0px 0px;
  2782. box-sizing:border-box;
  2783. width:100%;
  2784. }
  2785. #u141699_text {
  2786. border-width:0px;
  2787. white-space:nowrap;
  2788. text-transform:none;
  2789. }
  2790. #u141700_div {
  2791. border-width:0px;
  2792. position:absolute;
  2793. left:0px;
  2794. top:0px;
  2795. width:375px;
  2796. height:732px;
  2797. background:inherit;
  2798. background-color:rgba(242, 242, 242, 0.996078431372549);
  2799. border:none;
  2800. border-top:0px;
  2801. border-radius:28px;
  2802. border-top-left-radius:0px;
  2803. border-top-right-radius:0px;
  2804. -moz-box-shadow:none;
  2805. -webkit-box-shadow:none;
  2806. box-shadow:none;
  2807. }
  2808. #u141700 {
  2809. border-width:0px;
  2810. position:absolute;
  2811. left:500px;
  2812. top:107px;
  2813. width:375px;
  2814. height:732px;
  2815. display:flex;
  2816. }
  2817. #u141700 .text {
  2818. position:absolute;
  2819. align-self:center;
  2820. padding:2px 2px 2px 2px;
  2821. box-sizing:border-box;
  2822. width:100%;
  2823. }
  2824. #u141700_text {
  2825. border-width:0px;
  2826. word-wrap:break-word;
  2827. text-transform:none;
  2828. visibility:hidden;
  2829. }
  2830. #u141701 {
  2831. border-width:0px;
  2832. position:absolute;
  2833. left:0px;
  2834. top:0px;
  2835. width:0px;
  2836. height:0px;
  2837. }
  2838. #u141702_div {
  2839. border-width:0px;
  2840. position:absolute;
  2841. left:0px;
  2842. top:0px;
  2843. width:375px;
  2844. height:450px;
  2845. background:inherit;
  2846. background-color:rgba(255, 255, 255, 1);
  2847. border:none;
  2848. border-left:0px;
  2849. border-top:0px;
  2850. border-right:0px;
  2851. border-radius:0px;
  2852. border-bottom-right-radius:0px;
  2853. border-bottom-left-radius:0px;
  2854. -moz-box-shadow:none;
  2855. -webkit-box-shadow:none;
  2856. box-shadow:none;
  2857. }
  2858. #u141702 {
  2859. border-width:0px;
  2860. position:absolute;
  2861. left:500px;
  2862. top:108px;
  2863. width:375px;
  2864. height:450px;
  2865. display:flex;
  2866. }
  2867. #u141702 .text {
  2868. position:absolute;
  2869. align-self:center;
  2870. padding:2px 2px 2px 2px;
  2871. box-sizing:border-box;
  2872. width:100%;
  2873. }
  2874. #u141702_text {
  2875. border-width:0px;
  2876. word-wrap:break-word;
  2877. text-transform:none;
  2878. visibility:hidden;
  2879. }
  2880. #u141703 {
  2881. border-width:0px;
  2882. position:absolute;
  2883. left:0px;
  2884. top:0px;
  2885. width:0px;
  2886. height:0px;
  2887. }
  2888. #u141704_div {
  2889. border-width:0px;
  2890. position:absolute;
  2891. left:0px;
  2892. top:0px;
  2893. width:348px;
  2894. height:230px;
  2895. background:inherit;
  2896. background-color:rgba(242, 242, 242, 0.623529411764706);
  2897. border:none;
  2898. border-left:0px;
  2899. border-top:0px;
  2900. border-right:0px;
  2901. border-radius:0px;
  2902. border-bottom-right-radius:0px;
  2903. border-bottom-left-radius:0px;
  2904. -moz-box-shadow:none;
  2905. -webkit-box-shadow:none;
  2906. box-shadow:none;
  2907. }
  2908. #u141704 {
  2909. border-width:0px;
  2910. position:absolute;
  2911. left:513px;
  2912. top:308px;
  2913. width:348px;
  2914. height:230px;
  2915. display:flex;
  2916. }
  2917. #u141704 .text {
  2918. position:absolute;
  2919. align-self:center;
  2920. padding:2px 2px 2px 2px;
  2921. box-sizing:border-box;
  2922. width:100%;
  2923. }
  2924. #u141704_text {
  2925. border-width:0px;
  2926. word-wrap:break-word;
  2927. text-transform:none;
  2928. visibility:hidden;
  2929. }
  2930. #u141705_div {
  2931. border-width:0px;
  2932. position:absolute;
  2933. left:0px;
  2934. top:0px;
  2935. width:107px;
  2936. height:70px;
  2937. background:inherit;
  2938. background-color:rgba(255, 255, 255, 0);
  2939. border:none;
  2940. border-top:0px;
  2941. border-right:0px;
  2942. border-bottom:0px;
  2943. border-radius:0px;
  2944. border-top-left-radius:0px;
  2945. border-bottom-left-radius:0px;
  2946. -moz-box-shadow:none;
  2947. -webkit-box-shadow:none;
  2948. box-shadow:none;
  2949. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2950. font-style:normal;
  2951. line-height:30px;
  2952. }
  2953. #u141705 {
  2954. border-width:0px;
  2955. position:absolute;
  2956. left:528px;
  2957. top:317px;
  2958. width:107px;
  2959. height:70px;
  2960. display:flex;
  2961. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2962. font-style:normal;
  2963. line-height:30px;
  2964. }
  2965. #u141705 .text {
  2966. position:absolute;
  2967. align-self:flex-start;
  2968. padding:5px 10px 5px 0px;
  2969. box-sizing:border-box;
  2970. width:100%;
  2971. }
  2972. #u141705_text {
  2973. border-width:0px;
  2974. white-space:nowrap;
  2975. text-transform:none;
  2976. }
  2977. #u141706_div {
  2978. border-width:0px;
  2979. position:absolute;
  2980. left:0px;
  2981. top:0px;
  2982. width:325px;
  2983. height:75px;
  2984. background:inherit;
  2985. background-color:rgba(255, 255, 255, 0);
  2986. border:none;
  2987. border-radius:0px;
  2988. -moz-box-shadow:none;
  2989. -webkit-box-shadow:none;
  2990. box-shadow:none;
  2991. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2992. font-weight:400;
  2993. font-style:normal;
  2994. font-size:12px;
  2995. line-height:25px;
  2996. }
  2997. #u141706 {
  2998. border-width:0px;
  2999. position:absolute;
  3000. left:526px;
  3001. top:389px;
  3002. width:325px;
  3003. height:75px;
  3004. display:flex;
  3005. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3006. font-weight:400;
  3007. font-style:normal;
  3008. font-size:12px;
  3009. line-height:25px;
  3010. }
  3011. #u141706 .text {
  3012. position:absolute;
  3013. align-self:flex-start;
  3014. padding:0px 0px 0px 0px;
  3015. box-sizing:border-box;
  3016. width:100%;
  3017. }
  3018. #u141706_text {
  3019. border-width:0px;
  3020. word-wrap:break-word;
  3021. text-transform:none;
  3022. }
  3023. #u141707_img {
  3024. border-width:0px;
  3025. position:absolute;
  3026. left:0px;
  3027. top:0px;
  3028. width:60px;
  3029. height:46px;
  3030. }
  3031. #u141707 {
  3032. border-width:0px;
  3033. position:absolute;
  3034. left:526px;
  3035. top:474px;
  3036. width:60px;
  3037. height:46px;
  3038. display:flex;
  3039. }
  3040. #u141707 .text {
  3041. position:absolute;
  3042. align-self:center;
  3043. padding:2px 2px 2px 2px;
  3044. box-sizing:border-box;
  3045. width:100%;
  3046. }
  3047. #u141707_text {
  3048. border-width:0px;
  3049. word-wrap:break-word;
  3050. text-transform:none;
  3051. visibility:hidden;
  3052. }
  3053. #u141708_img {
  3054. border-width:0px;
  3055. position:absolute;
  3056. left:0px;
  3057. top:0px;
  3058. width:60px;
  3059. height:46px;
  3060. }
  3061. #u141708 {
  3062. border-width:0px;
  3063. position:absolute;
  3064. left:596px;
  3065. top:474px;
  3066. width:60px;
  3067. height:46px;
  3068. display:flex;
  3069. }
  3070. #u141708 .text {
  3071. position:absolute;
  3072. align-self:center;
  3073. padding:2px 2px 2px 2px;
  3074. box-sizing:border-box;
  3075. width:100%;
  3076. }
  3077. #u141708_text {
  3078. border-width:0px;
  3079. word-wrap:break-word;
  3080. text-transform:none;
  3081. visibility:hidden;
  3082. }
  3083. #u141709_div {
  3084. border-width:0px;
  3085. position:absolute;
  3086. left:0px;
  3087. top:0px;
  3088. width:133px;
  3089. height:25px;
  3090. background:inherit;
  3091. background-color:rgba(255, 255, 255, 0);
  3092. border:none;
  3093. border-radius:0px;
  3094. -moz-box-shadow:none;
  3095. -webkit-box-shadow:none;
  3096. box-shadow:none;
  3097. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3098. font-weight:400;
  3099. font-style:normal;
  3100. font-size:12px;
  3101. color:#D9001B;
  3102. line-height:25px;
  3103. }
  3104. #u141709 {
  3105. border-width:0px;
  3106. position:absolute;
  3107. left:673px;
  3108. top:480px;
  3109. width:133px;
  3110. height:25px;
  3111. display:flex;
  3112. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3113. font-weight:400;
  3114. font-style:normal;
  3115. font-size:12px;
  3116. color:#D9001B;
  3117. line-height:25px;
  3118. }
  3119. #u141709 .text {
  3120. position:absolute;
  3121. align-self:flex-start;
  3122. padding:0px 0px 0px 0px;
  3123. box-sizing:border-box;
  3124. width:100%;
  3125. }
  3126. #u141709_text {
  3127. border-width:0px;
  3128. white-space:nowrap;
  3129. text-transform:none;
  3130. }
  3131. #u141710_div {
  3132. border-width:0px;
  3133. position:absolute;
  3134. left:0px;
  3135. top:0px;
  3136. width:43px;
  3137. height:20px;
  3138. background:inherit;
  3139. background-color:rgba(255, 255, 255, 0);
  3140. border:none;
  3141. border-radius:0px;
  3142. -moz-box-shadow:none;
  3143. -webkit-box-shadow:none;
  3144. box-shadow:none;
  3145. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3146. font-weight:400;
  3147. font-style:normal;
  3148. color:#1890FF;
  3149. }
  3150. #u141710 {
  3151. border-width:0px;
  3152. position:absolute;
  3153. left:813px;
  3154. top:124px;
  3155. width:43px;
  3156. height:20px;
  3157. display:flex;
  3158. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3159. font-weight:400;
  3160. font-style:normal;
  3161. color:#1890FF;
  3162. }
  3163. #u141710 .text {
  3164. position:absolute;
  3165. align-self:flex-start;
  3166. padding:0px 0px 0px 0px;
  3167. box-sizing:border-box;
  3168. width:100%;
  3169. }
  3170. #u141710_text {
  3171. border-width:0px;
  3172. white-space:nowrap;
  3173. text-transform:none;
  3174. }
  3175. #u141711_div {
  3176. border-width:0px;
  3177. position:absolute;
  3178. left:0px;
  3179. top:0px;
  3180. width:92px;
  3181. height:30px;
  3182. background:inherit;
  3183. background-color:rgba(255, 255, 255, 0);
  3184. border:none;
  3185. border-left:0px;
  3186. border-top:0px;
  3187. border-right:0px;
  3188. border-radius:0px;
  3189. border-bottom-right-radius:0px;
  3190. border-bottom-left-radius:0px;
  3191. -moz-box-shadow:none;
  3192. -webkit-box-shadow:none;
  3193. box-shadow:none;
  3194. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3195. font-weight:500;
  3196. font-style:normal;
  3197. font-size:14px;
  3198. line-height:30px;
  3199. }
  3200. #u141711 {
  3201. border-width:0px;
  3202. position:absolute;
  3203. left:513px;
  3204. top:118px;
  3205. width:92px;
  3206. height:30px;
  3207. display:flex;
  3208. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3209. font-weight:500;
  3210. font-style:normal;
  3211. font-size:14px;
  3212. line-height:30px;
  3213. }
  3214. #u141711 .text {
  3215. position:absolute;
  3216. align-self:flex-start;
  3217. padding:0px 0px 0px 0px;
  3218. box-sizing:border-box;
  3219. width:100%;
  3220. }
  3221. #u141711_text {
  3222. border-width:0px;
  3223. white-space:nowrap;
  3224. text-transform:none;
  3225. }
  3226. #u141712_div {
  3227. border-width:0px;
  3228. position:absolute;
  3229. left:0px;
  3230. top:0px;
  3231. width:109px;
  3232. height:30px;
  3233. background:inherit;
  3234. background-color:rgba(255, 255, 255, 0);
  3235. border:none;
  3236. border-left:0px;
  3237. border-top:0px;
  3238. border-right:0px;
  3239. border-radius:0px;
  3240. border-bottom-right-radius:0px;
  3241. border-bottom-left-radius:0px;
  3242. -moz-box-shadow:none;
  3243. -webkit-box-shadow:none;
  3244. box-shadow:none;
  3245. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3246. font-weight:400;
  3247. font-style:normal;
  3248. font-size:12px;
  3249. line-height:30px;
  3250. }
  3251. #u141712 {
  3252. border-width:0px;
  3253. position:absolute;
  3254. left:513px;
  3255. top:148px;
  3256. width:109px;
  3257. height:30px;
  3258. display:flex;
  3259. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3260. font-weight:400;
  3261. font-style:normal;
  3262. font-size:12px;
  3263. line-height:30px;
  3264. }
  3265. #u141712 .text {
  3266. position:absolute;
  3267. align-self:flex-start;
  3268. padding:0px 0px 0px 0px;
  3269. box-sizing:border-box;
  3270. width:100%;
  3271. }
  3272. #u141712_text {
  3273. border-width:0px;
  3274. white-space:nowrap;
  3275. text-transform:none;
  3276. }
  3277. #u141713_div {
  3278. border-width:0px;
  3279. position:absolute;
  3280. left:0px;
  3281. top:0px;
  3282. width:85px;
  3283. height:30px;
  3284. background:inherit;
  3285. background-color:rgba(255, 255, 255, 0);
  3286. border:none;
  3287. border-left:0px;
  3288. border-top:0px;
  3289. border-right:0px;
  3290. border-radius:0px;
  3291. border-bottom-right-radius:0px;
  3292. border-bottom-left-radius:0px;
  3293. -moz-box-shadow:none;
  3294. -webkit-box-shadow:none;
  3295. box-shadow:none;
  3296. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3297. font-weight:400;
  3298. font-style:normal;
  3299. font-size:12px;
  3300. line-height:30px;
  3301. }
  3302. #u141713 {
  3303. border-width:0px;
  3304. position:absolute;
  3305. left:513px;
  3306. top:208px;
  3307. width:85px;
  3308. height:30px;
  3309. display:flex;
  3310. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3311. font-weight:400;
  3312. font-style:normal;
  3313. font-size:12px;
  3314. line-height:30px;
  3315. }
  3316. #u141713 .text {
  3317. position:absolute;
  3318. align-self:flex-start;
  3319. padding:0px 0px 0px 0px;
  3320. box-sizing:border-box;
  3321. width:100%;
  3322. }
  3323. #u141713_text {
  3324. border-width:0px;
  3325. white-space:nowrap;
  3326. text-transform:none;
  3327. }
  3328. #u141714_div {
  3329. border-width:0px;
  3330. position:absolute;
  3331. left:0px;
  3332. top:0px;
  3333. width:85px;
  3334. height:30px;
  3335. background:inherit;
  3336. background-color:rgba(255, 255, 255, 0);
  3337. border:none;
  3338. border-left:0px;
  3339. border-top:0px;
  3340. border-right:0px;
  3341. border-radius:0px;
  3342. border-bottom-right-radius:0px;
  3343. border-bottom-left-radius:0px;
  3344. -moz-box-shadow:none;
  3345. -webkit-box-shadow:none;
  3346. box-shadow:none;
  3347. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3348. font-weight:400;
  3349. font-style:normal;
  3350. font-size:12px;
  3351. line-height:30px;
  3352. }
  3353. #u141714 {
  3354. border-width:0px;
  3355. position:absolute;
  3356. left:513px;
  3357. top:178px;
  3358. width:85px;
  3359. height:30px;
  3360. display:flex;
  3361. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3362. font-weight:400;
  3363. font-style:normal;
  3364. font-size:12px;
  3365. line-height:30px;
  3366. }
  3367. #u141714 .text {
  3368. position:absolute;
  3369. align-self:flex-start;
  3370. padding:0px 0px 0px 0px;
  3371. box-sizing:border-box;
  3372. width:100%;
  3373. }
  3374. #u141714_text {
  3375. border-width:0px;
  3376. white-space:nowrap;
  3377. text-transform:none;
  3378. }
  3379. #u141715_div {
  3380. border-width:0px;
  3381. position:absolute;
  3382. left:0px;
  3383. top:0px;
  3384. width:85px;
  3385. height:30px;
  3386. background:inherit;
  3387. background-color:rgba(255, 255, 255, 0);
  3388. border:none;
  3389. border-left:0px;
  3390. border-top:0px;
  3391. border-right:0px;
  3392. border-radius:0px;
  3393. border-bottom-right-radius:0px;
  3394. border-bottom-left-radius:0px;
  3395. -moz-box-shadow:none;
  3396. -webkit-box-shadow:none;
  3397. box-shadow:none;
  3398. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3399. font-weight:400;
  3400. font-style:normal;
  3401. font-size:12px;
  3402. line-height:30px;
  3403. }
  3404. #u141715 {
  3405. border-width:0px;
  3406. position:absolute;
  3407. left:513px;
  3408. top:238px;
  3409. width:85px;
  3410. height:30px;
  3411. display:flex;
  3412. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3413. font-weight:400;
  3414. font-style:normal;
  3415. font-size:12px;
  3416. line-height:30px;
  3417. }
  3418. #u141715 .text {
  3419. position:absolute;
  3420. align-self:flex-start;
  3421. padding:0px 0px 0px 0px;
  3422. box-sizing:border-box;
  3423. width:100%;
  3424. }
  3425. #u141715_text {
  3426. border-width:0px;
  3427. white-space:nowrap;
  3428. text-transform:none;
  3429. }
  3430. #u141716_div {
  3431. border-width:0px;
  3432. position:absolute;
  3433. left:0px;
  3434. top:0px;
  3435. width:177px;
  3436. height:30px;
  3437. background:inherit;
  3438. background-color:rgba(255, 255, 255, 0);
  3439. border:none;
  3440. border-left:0px;
  3441. border-top:0px;
  3442. border-right:0px;
  3443. border-radius:0px;
  3444. border-bottom-right-radius:0px;
  3445. border-bottom-left-radius:0px;
  3446. -moz-box-shadow:none;
  3447. -webkit-box-shadow:none;
  3448. box-shadow:none;
  3449. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3450. font-weight:400;
  3451. font-style:normal;
  3452. font-size:12px;
  3453. line-height:30px;
  3454. }
  3455. #u141716 {
  3456. border-width:0px;
  3457. position:absolute;
  3458. left:513px;
  3459. top:268px;
  3460. width:177px;
  3461. height:30px;
  3462. display:flex;
  3463. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3464. font-weight:400;
  3465. font-style:normal;
  3466. font-size:12px;
  3467. line-height:30px;
  3468. }
  3469. #u141716 .text {
  3470. position:absolute;
  3471. align-self:flex-start;
  3472. padding:0px 0px 0px 0px;
  3473. box-sizing:border-box;
  3474. width:100%;
  3475. }
  3476. #u141716_text {
  3477. border-width:0px;
  3478. white-space:nowrap;
  3479. text-transform:none;
  3480. }
  3481. #u141717_div {
  3482. border-width:0px;
  3483. position:absolute;
  3484. left:0px;
  3485. top:0px;
  3486. width:375px;
  3487. height:41px;
  3488. background:inherit;
  3489. background-color:rgba(255, 255, 255, 1);
  3490. box-sizing:border-box;
  3491. border-width:1px;
  3492. border-style:solid;
  3493. border-color:rgba(215, 215, 215, 1);
  3494. border-left:0px;
  3495. border-top:0px;
  3496. border-right:0px;
  3497. border-radius:0px;
  3498. border-bottom-right-radius:0px;
  3499. border-bottom-left-radius:0px;
  3500. -moz-box-shadow:none;
  3501. -webkit-box-shadow:none;
  3502. box-shadow:none;
  3503. }
  3504. #u141717 {
  3505. border-width:0px;
  3506. position:absolute;
  3507. left:500px;
  3508. top:67px;
  3509. width:375px;
  3510. height:41px;
  3511. display:flex;
  3512. }
  3513. #u141717 .text {
  3514. position:absolute;
  3515. align-self:center;
  3516. padding:2px 2px 2px 2px;
  3517. box-sizing:border-box;
  3518. width:100%;
  3519. }
  3520. #u141717_text {
  3521. border-width:0px;
  3522. word-wrap:break-word;
  3523. text-transform:none;
  3524. visibility:hidden;
  3525. }
  3526. #u141718_img {
  3527. border-width:0px;
  3528. position:absolute;
  3529. left:0px;
  3530. top:0px;
  3531. width:375px;
  3532. height:44px;
  3533. }
  3534. #u141718 {
  3535. border-width:0px;
  3536. position:absolute;
  3537. left:500px;
  3538. top:24px;
  3539. width:375px;
  3540. height:44px;
  3541. display:flex;
  3542. }
  3543. #u141718 .text {
  3544. position:absolute;
  3545. align-self:center;
  3546. padding:2px 2px 2px 2px;
  3547. box-sizing:border-box;
  3548. width:100%;
  3549. }
  3550. #u141718_text {
  3551. border-width:0px;
  3552. word-wrap:break-word;
  3553. text-transform:none;
  3554. visibility:hidden;
  3555. }
  3556. #u141719 {
  3557. border-width:0px;
  3558. position:absolute;
  3559. left:0px;
  3560. top:0px;
  3561. width:0px;
  3562. height:0px;
  3563. }
  3564. #u141720_div {
  3565. border-width:0px;
  3566. position:absolute;
  3567. left:0px;
  3568. top:0px;
  3569. width:88px;
  3570. height:32px;
  3571. background:inherit;
  3572. background-color:rgba(255, 255, 255, 1);
  3573. box-sizing:border-box;
  3574. border-width:1px;
  3575. border-style:solid;
  3576. border-color:rgba(242, 242, 242, 1);
  3577. border-radius:33px;
  3578. -moz-box-shadow:none;
  3579. -webkit-box-shadow:none;
  3580. box-shadow:none;
  3581. }
  3582. #u141720 {
  3583. border-width:0px;
  3584. position:absolute;
  3585. left:780px;
  3586. top:71px;
  3587. width:88px;
  3588. height:32px;
  3589. display:flex;
  3590. }
  3591. #u141720 .text {
  3592. position:absolute;
  3593. align-self:center;
  3594. padding:2px 2px 2px 2px;
  3595. box-sizing:border-box;
  3596. width:100%;
  3597. }
  3598. #u141720_text {
  3599. border-width:0px;
  3600. word-wrap:break-word;
  3601. text-transform:none;
  3602. visibility:hidden;
  3603. }
  3604. #u141721 {
  3605. border-width:0px;
  3606. position:absolute;
  3607. left:0px;
  3608. top:0px;
  3609. width:0px;
  3610. height:0px;
  3611. }
  3612. #u141722_img {
  3613. border-width:0px;
  3614. position:absolute;
  3615. left:0px;
  3616. top:0px;
  3617. width:18px;
  3618. height:18px;
  3619. }
  3620. #u141722 {
  3621. border-width:0px;
  3622. position:absolute;
  3623. left:843px;
  3624. top:78px;
  3625. width:18px;
  3626. height:18px;
  3627. display:flex;
  3628. }
  3629. #u141722 .text {
  3630. position:absolute;
  3631. align-self:center;
  3632. padding:2px 2px 2px 2px;
  3633. box-sizing:border-box;
  3634. width:100%;
  3635. }
  3636. #u141722_text {
  3637. border-width:0px;
  3638. word-wrap:break-word;
  3639. text-transform:none;
  3640. visibility:hidden;
  3641. }
  3642. #u141723_img {
  3643. border-width:0px;
  3644. position:absolute;
  3645. left:0px;
  3646. top:0px;
  3647. width:6px;
  3648. height:6px;
  3649. }
  3650. #u141723 {
  3651. border-width:0px;
  3652. position:absolute;
  3653. left:849px;
  3654. top:84px;
  3655. width:6px;
  3656. height:6px;
  3657. display:flex;
  3658. }
  3659. #u141723 .text {
  3660. position:absolute;
  3661. align-self:center;
  3662. padding:2px 2px 2px 2px;
  3663. box-sizing:border-box;
  3664. width:100%;
  3665. }
  3666. #u141723_text {
  3667. border-width:0px;
  3668. word-wrap:break-word;
  3669. text-transform:none;
  3670. visibility:hidden;
  3671. }
  3672. #u141724 {
  3673. border-width:0px;
  3674. position:absolute;
  3675. left:0px;
  3676. top:0px;
  3677. width:0px;
  3678. height:0px;
  3679. }
  3680. #u141725_img {
  3681. border-width:0px;
  3682. position:absolute;
  3683. left:0px;
  3684. top:0px;
  3685. width:5px;
  3686. height:5px;
  3687. }
  3688. #u141725 {
  3689. border-width:0px;
  3690. position:absolute;
  3691. left:794px;
  3692. top:85px;
  3693. width:5px;
  3694. height:5px;
  3695. display:flex;
  3696. }
  3697. #u141725 .text {
  3698. position:absolute;
  3699. align-self:center;
  3700. padding:2px 2px 2px 2px;
  3701. box-sizing:border-box;
  3702. width:100%;
  3703. }
  3704. #u141725_text {
  3705. border-width:0px;
  3706. word-wrap:break-word;
  3707. text-transform:none;
  3708. visibility:hidden;
  3709. }
  3710. #u141726_img {
  3711. border-width:0px;
  3712. position:absolute;
  3713. left:0px;
  3714. top:0px;
  3715. width:5px;
  3716. height:5px;
  3717. }
  3718. #u141726 {
  3719. border-width:0px;
  3720. position:absolute;
  3721. left:810px;
  3722. top:85px;
  3723. width:5px;
  3724. height:5px;
  3725. display:flex;
  3726. }
  3727. #u141726 .text {
  3728. position:absolute;
  3729. align-self:center;
  3730. padding:2px 2px 2px 2px;
  3731. box-sizing:border-box;
  3732. width:100%;
  3733. }
  3734. #u141726_text {
  3735. border-width:0px;
  3736. word-wrap:break-word;
  3737. text-transform:none;
  3738. visibility:hidden;
  3739. }
  3740. #u141727_img {
  3741. border-width:0px;
  3742. position:absolute;
  3743. left:0px;
  3744. top:0px;
  3745. width:7px;
  3746. height:7px;
  3747. }
  3748. #u141727 {
  3749. border-width:0px;
  3750. position:absolute;
  3751. left:801px;
  3752. top:84px;
  3753. width:7px;
  3754. height:7px;
  3755. display:flex;
  3756. }
  3757. #u141727 .text {
  3758. position:absolute;
  3759. align-self:center;
  3760. padding:2px 2px 2px 2px;
  3761. box-sizing:border-box;
  3762. width:100%;
  3763. }
  3764. #u141727_text {
  3765. border-width:0px;
  3766. word-wrap:break-word;
  3767. text-transform:none;
  3768. visibility:hidden;
  3769. }
  3770. #u141728_img {
  3771. border-width:0px;
  3772. position:absolute;
  3773. left:0px;
  3774. top:0px;
  3775. width:19px;
  3776. height:2px;
  3777. }
  3778. #u141728 {
  3779. border-width:0px;
  3780. position:absolute;
  3781. left:818px;
  3782. top:87px;
  3783. width:18px;
  3784. height:1px;
  3785. display:flex;
  3786. -webkit-transform:rotate(90deg);
  3787. -moz-transform:rotate(90deg);
  3788. -ms-transform:rotate(90deg);
  3789. transform:rotate(90deg);
  3790. }
  3791. #u141728 .text {
  3792. position:absolute;
  3793. align-self:center;
  3794. padding:2px 2px 2px 2px;
  3795. box-sizing:border-box;
  3796. width:100%;
  3797. }
  3798. #u141728_text {
  3799. border-width:0px;
  3800. word-wrap:break-word;
  3801. text-transform:none;
  3802. visibility:hidden;
  3803. }
  3804. #u141729_div {
  3805. border-width:0px;
  3806. position:absolute;
  3807. left:0px;
  3808. top:0px;
  3809. width:12px;
  3810. height:12px;
  3811. background:inherit;
  3812. background-color:rgba(255, 255, 255, 0);
  3813. box-sizing:border-box;
  3814. border-width:2px;
  3815. border-style:solid;
  3816. border-color:rgba(51, 51, 51, 1);
  3817. border-right:0px;
  3818. border-bottom:0px;
  3819. border-radius:0px;
  3820. border-top-right-radius:0px;
  3821. border-bottom-left-radius:0px;
  3822. -moz-box-shadow:none;
  3823. -webkit-box-shadow:none;
  3824. box-shadow:none;
  3825. }
  3826. #u141729 {
  3827. border-width:0px;
  3828. position:absolute;
  3829. left:515px;
  3830. top:81px;
  3831. width:12px;
  3832. height:12px;
  3833. display:flex;
  3834. -webkit-transform:rotate(315deg);
  3835. -moz-transform:rotate(315deg);
  3836. -ms-transform:rotate(315deg);
  3837. transform:rotate(315deg);
  3838. }
  3839. #u141729 .text {
  3840. position:absolute;
  3841. align-self:center;
  3842. padding:2px 2px 2px 2px;
  3843. box-sizing:border-box;
  3844. width:100%;
  3845. }
  3846. #u141729_text {
  3847. border-width:0px;
  3848. word-wrap:break-word;
  3849. text-transform:none;
  3850. visibility:hidden;
  3851. }
  3852. #u141730_div {
  3853. border-width:0px;
  3854. position:absolute;
  3855. left:0px;
  3856. top:0px;
  3857. width:37px;
  3858. height:25px;
  3859. background:inherit;
  3860. background-color:rgba(255, 255, 255, 0);
  3861. border:none;
  3862. border-radius:0px;
  3863. -moz-box-shadow:none;
  3864. -webkit-box-shadow:none;
  3865. box-shadow:none;
  3866. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3867. font-weight:400;
  3868. font-style:normal;
  3869. font-size:18px;
  3870. }
  3871. #u141730 {
  3872. border-width:0px;
  3873. position:absolute;
  3874. left:535px;
  3875. top:75px;
  3876. width:37px;
  3877. height:25px;
  3878. display:flex;
  3879. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3880. font-weight:400;
  3881. font-style:normal;
  3882. font-size:18px;
  3883. }
  3884. #u141730 .text {
  3885. position:absolute;
  3886. align-self:flex-start;
  3887. padding:0px 0px 0px 0px;
  3888. box-sizing:border-box;
  3889. width:100%;
  3890. }
  3891. #u141730_text {
  3892. border-width:0px;
  3893. white-space:nowrap;
  3894. text-transform:none;
  3895. }
  3896. #u141732_img {
  3897. border-width:0px;
  3898. position:absolute;
  3899. left:0px;
  3900. top:0px;
  3901. width:433px;
  3902. height:865px;
  3903. }
  3904. #u141732 {
  3905. border-width:0px;
  3906. position:absolute;
  3907. left:944px;
  3908. top:0px;
  3909. width:433px;
  3910. height:865px;
  3911. display:flex;
  3912. }
  3913. #u141732 .text {
  3914. position:absolute;
  3915. align-self:center;
  3916. padding:2px 2px 2px 2px;
  3917. box-sizing:border-box;
  3918. width:100%;
  3919. }
  3920. #u141732_text {
  3921. border-width:0px;
  3922. word-wrap:break-word;
  3923. text-transform:none;
  3924. visibility:hidden;
  3925. }
  3926. #u141733_div {
  3927. border-width:0px;
  3928. position:absolute;
  3929. left:0px;
  3930. top:0px;
  3931. width:375px;
  3932. height:40px;
  3933. background:inherit;
  3934. background-color:rgba(255, 255, 255, 1);
  3935. box-sizing:border-box;
  3936. border-width:1px;
  3937. border-style:solid;
  3938. border-color:rgba(215, 215, 215, 1);
  3939. border-left:0px;
  3940. border-top:0px;
  3941. border-right:0px;
  3942. border-radius:0px;
  3943. border-bottom-right-radius:0px;
  3944. border-bottom-left-radius:0px;
  3945. -moz-box-shadow:none;
  3946. -webkit-box-shadow:none;
  3947. box-shadow:none;
  3948. }
  3949. #u141733 {
  3950. border-width:0px;
  3951. position:absolute;
  3952. left:973px;
  3953. top:67px;
  3954. width:375px;
  3955. height:40px;
  3956. display:flex;
  3957. }
  3958. #u141733 .text {
  3959. position:absolute;
  3960. align-self:center;
  3961. padding:2px 2px 2px 2px;
  3962. box-sizing:border-box;
  3963. width:100%;
  3964. }
  3965. #u141733_text {
  3966. border-width:0px;
  3967. word-wrap:break-word;
  3968. text-transform:none;
  3969. visibility:hidden;
  3970. }
  3971. #u141734 {
  3972. border-width:0px;
  3973. position:absolute;
  3974. left:0px;
  3975. top:0px;
  3976. width:0px;
  3977. height:0px;
  3978. }
  3979. #u141735_div {
  3980. border-width:0px;
  3981. position:absolute;
  3982. left:0px;
  3983. top:0px;
  3984. width:88px;
  3985. height:32px;
  3986. background:inherit;
  3987. background-color:rgba(255, 255, 255, 1);
  3988. box-sizing:border-box;
  3989. border-width:1px;
  3990. border-style:solid;
  3991. border-color:rgba(242, 242, 242, 1);
  3992. border-radius:33px;
  3993. -moz-box-shadow:none;
  3994. -webkit-box-shadow:none;
  3995. box-shadow:none;
  3996. }
  3997. #u141735 {
  3998. border-width:0px;
  3999. position:absolute;
  4000. left:1253px;
  4001. top:71px;
  4002. width:88px;
  4003. height:32px;
  4004. display:flex;
  4005. }
  4006. #u141735 .text {
  4007. position:absolute;
  4008. align-self:center;
  4009. padding:2px 2px 2px 2px;
  4010. box-sizing:border-box;
  4011. width:100%;
  4012. }
  4013. #u141735_text {
  4014. border-width:0px;
  4015. word-wrap:break-word;
  4016. text-transform:none;
  4017. visibility:hidden;
  4018. }
  4019. #u141736 {
  4020. border-width:0px;
  4021. position:absolute;
  4022. left:0px;
  4023. top:0px;
  4024. width:0px;
  4025. height:0px;
  4026. }
  4027. #u141737_img {
  4028. border-width:0px;
  4029. position:absolute;
  4030. left:0px;
  4031. top:0px;
  4032. width:18px;
  4033. height:18px;
  4034. }
  4035. #u141737 {
  4036. border-width:0px;
  4037. position:absolute;
  4038. left:1316px;
  4039. top:78px;
  4040. width:18px;
  4041. height:18px;
  4042. display:flex;
  4043. }
  4044. #u141737 .text {
  4045. position:absolute;
  4046. align-self:center;
  4047. padding:2px 2px 2px 2px;
  4048. box-sizing:border-box;
  4049. width:100%;
  4050. }
  4051. #u141737_text {
  4052. border-width:0px;
  4053. word-wrap:break-word;
  4054. text-transform:none;
  4055. visibility:hidden;
  4056. }
  4057. #u141738_img {
  4058. border-width:0px;
  4059. position:absolute;
  4060. left:0px;
  4061. top:0px;
  4062. width:6px;
  4063. height:6px;
  4064. }
  4065. #u141738 {
  4066. border-width:0px;
  4067. position:absolute;
  4068. left:1322px;
  4069. top:84px;
  4070. width:6px;
  4071. height:6px;
  4072. display:flex;
  4073. }
  4074. #u141738 .text {
  4075. position:absolute;
  4076. align-self:center;
  4077. padding:2px 2px 2px 2px;
  4078. box-sizing:border-box;
  4079. width:100%;
  4080. }
  4081. #u141738_text {
  4082. border-width:0px;
  4083. word-wrap:break-word;
  4084. text-transform:none;
  4085. visibility:hidden;
  4086. }
  4087. #u141739 {
  4088. border-width:0px;
  4089. position:absolute;
  4090. left:0px;
  4091. top:0px;
  4092. width:0px;
  4093. height:0px;
  4094. }
  4095. #u141740_img {
  4096. border-width:0px;
  4097. position:absolute;
  4098. left:0px;
  4099. top:0px;
  4100. width:5px;
  4101. height:5px;
  4102. }
  4103. #u141740 {
  4104. border-width:0px;
  4105. position:absolute;
  4106. left:1267px;
  4107. top:85px;
  4108. width:5px;
  4109. height:5px;
  4110. display:flex;
  4111. }
  4112. #u141740 .text {
  4113. position:absolute;
  4114. align-self:center;
  4115. padding:2px 2px 2px 2px;
  4116. box-sizing:border-box;
  4117. width:100%;
  4118. }
  4119. #u141740_text {
  4120. border-width:0px;
  4121. word-wrap:break-word;
  4122. text-transform:none;
  4123. visibility:hidden;
  4124. }
  4125. #u141741_img {
  4126. border-width:0px;
  4127. position:absolute;
  4128. left:0px;
  4129. top:0px;
  4130. width:5px;
  4131. height:5px;
  4132. }
  4133. #u141741 {
  4134. border-width:0px;
  4135. position:absolute;
  4136. left:1283px;
  4137. top:85px;
  4138. width:5px;
  4139. height:5px;
  4140. display:flex;
  4141. }
  4142. #u141741 .text {
  4143. position:absolute;
  4144. align-self:center;
  4145. padding:2px 2px 2px 2px;
  4146. box-sizing:border-box;
  4147. width:100%;
  4148. }
  4149. #u141741_text {
  4150. border-width:0px;
  4151. word-wrap:break-word;
  4152. text-transform:none;
  4153. visibility:hidden;
  4154. }
  4155. #u141742_img {
  4156. border-width:0px;
  4157. position:absolute;
  4158. left:0px;
  4159. top:0px;
  4160. width:7px;
  4161. height:7px;
  4162. }
  4163. #u141742 {
  4164. border-width:0px;
  4165. position:absolute;
  4166. left:1274px;
  4167. top:84px;
  4168. width:7px;
  4169. height:7px;
  4170. display:flex;
  4171. }
  4172. #u141742 .text {
  4173. position:absolute;
  4174. align-self:center;
  4175. padding:2px 2px 2px 2px;
  4176. box-sizing:border-box;
  4177. width:100%;
  4178. }
  4179. #u141742_text {
  4180. border-width:0px;
  4181. word-wrap:break-word;
  4182. text-transform:none;
  4183. visibility:hidden;
  4184. }
  4185. #u141743_img {
  4186. border-width:0px;
  4187. position:absolute;
  4188. left:0px;
  4189. top:0px;
  4190. width:19px;
  4191. height:2px;
  4192. }
  4193. #u141743 {
  4194. border-width:0px;
  4195. position:absolute;
  4196. left:1291px;
  4197. top:87px;
  4198. width:18px;
  4199. height:1px;
  4200. display:flex;
  4201. -webkit-transform:rotate(90deg);
  4202. -moz-transform:rotate(90deg);
  4203. -ms-transform:rotate(90deg);
  4204. transform:rotate(90deg);
  4205. }
  4206. #u141743 .text {
  4207. position:absolute;
  4208. align-self:center;
  4209. padding:2px 2px 2px 2px;
  4210. box-sizing:border-box;
  4211. width:100%;
  4212. }
  4213. #u141743_text {
  4214. border-width:0px;
  4215. word-wrap:break-word;
  4216. text-transform:none;
  4217. visibility:hidden;
  4218. }
  4219. #u141744_img {
  4220. border-width:0px;
  4221. position:absolute;
  4222. left:0px;
  4223. top:0px;
  4224. width:375px;
  4225. height:44px;
  4226. }
  4227. #u141744 {
  4228. border-width:0px;
  4229. position:absolute;
  4230. left:973px;
  4231. top:24px;
  4232. width:375px;
  4233. height:44px;
  4234. display:flex;
  4235. }
  4236. #u141744 .text {
  4237. position:absolute;
  4238. align-self:center;
  4239. padding:2px 2px 2px 2px;
  4240. box-sizing:border-box;
  4241. width:100%;
  4242. }
  4243. #u141744_text {
  4244. border-width:0px;
  4245. word-wrap:break-word;
  4246. text-transform:none;
  4247. visibility:hidden;
  4248. }
  4249. #u141745_div {
  4250. border-width:0px;
  4251. position:absolute;
  4252. left:0px;
  4253. top:0px;
  4254. width:375px;
  4255. height:50px;
  4256. background:inherit;
  4257. background-color:rgba(255, 255, 255, 1);
  4258. box-sizing:border-box;
  4259. border-width:1px;
  4260. border-style:solid;
  4261. border-color:rgba(242, 242, 242, 1);
  4262. border-radius:26px;
  4263. border-top-left-radius:0px;
  4264. border-top-right-radius:0px;
  4265. -moz-box-shadow:none;
  4266. -webkit-box-shadow:none;
  4267. box-shadow:none;
  4268. }
  4269. #u141745 {
  4270. border-width:0px;
  4271. position:absolute;
  4272. left:973px;
  4273. top:788px;
  4274. width:375px;
  4275. height:50px;
  4276. display:flex;
  4277. }
  4278. #u141745 .text {
  4279. position:absolute;
  4280. align-self:center;
  4281. padding:2px 2px 2px 2px;
  4282. box-sizing:border-box;
  4283. width:100%;
  4284. }
  4285. #u141745_text {
  4286. border-width:0px;
  4287. word-wrap:break-word;
  4288. text-transform:none;
  4289. visibility:hidden;
  4290. }
  4291. #u141746 {
  4292. border-width:0px;
  4293. position:absolute;
  4294. left:0px;
  4295. top:0px;
  4296. width:0px;
  4297. height:0px;
  4298. }
  4299. #u141747_img {
  4300. border-width:0px;
  4301. position:absolute;
  4302. left:0px;
  4303. top:0px;
  4304. width:24px;
  4305. height:24px;
  4306. }
  4307. #u141747 {
  4308. border-width:0px;
  4309. position:absolute;
  4310. left:1013px;
  4311. top:792px;
  4312. width:24px;
  4313. height:24px;
  4314. display:flex;
  4315. font-size:8px;
  4316. }
  4317. #u141747 .text {
  4318. position:absolute;
  4319. align-self:center;
  4320. padding:2px 2px 2px 2px;
  4321. box-sizing:border-box;
  4322. width:100%;
  4323. }
  4324. #u141747_text {
  4325. border-width:0px;
  4326. word-wrap:break-word;
  4327. text-transform:none;
  4328. }
  4329. #u141748_div {
  4330. border-width:0px;
  4331. position:absolute;
  4332. left:0px;
  4333. top:0px;
  4334. width:25px;
  4335. height:17px;
  4336. background:inherit;
  4337. background-color:rgba(255, 255, 255, 0);
  4338. border:none;
  4339. border-radius:0px;
  4340. -moz-box-shadow:none;
  4341. -webkit-box-shadow:none;
  4342. box-shadow:none;
  4343. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4344. font-weight:400;
  4345. font-style:normal;
  4346. font-size:12px;
  4347. }
  4348. #u141748 {
  4349. border-width:0px;
  4350. position:absolute;
  4351. left:1013px;
  4352. top:817px;
  4353. width:25px;
  4354. height:17px;
  4355. display:flex;
  4356. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4357. font-weight:400;
  4358. font-style:normal;
  4359. font-size:12px;
  4360. }
  4361. #u141748 .text {
  4362. position:absolute;
  4363. align-self:flex-start;
  4364. padding:0px 0px 0px 0px;
  4365. box-sizing:border-box;
  4366. width:100%;
  4367. }
  4368. #u141748_text {
  4369. border-width:0px;
  4370. white-space:nowrap;
  4371. text-transform:none;
  4372. }
  4373. #u141749 {
  4374. border-width:0px;
  4375. position:absolute;
  4376. left:0px;
  4377. top:0px;
  4378. width:0px;
  4379. height:0px;
  4380. }
  4381. #u141750_img {
  4382. border-width:0px;
  4383. position:absolute;
  4384. left:0px;
  4385. top:0px;
  4386. width:24px;
  4387. height:24px;
  4388. }
  4389. #u141750 {
  4390. border-width:0px;
  4391. position:absolute;
  4392. left:1283px;
  4393. top:794px;
  4394. width:24px;
  4395. height:24px;
  4396. display:flex;
  4397. font-size:8px;
  4398. }
  4399. #u141750 .text {
  4400. position:absolute;
  4401. align-self:center;
  4402. padding:2px 2px 2px 2px;
  4403. box-sizing:border-box;
  4404. width:100%;
  4405. }
  4406. #u141750_text {
  4407. border-width:0px;
  4408. word-wrap:break-word;
  4409. text-transform:none;
  4410. }
  4411. #u141751_div {
  4412. border-width:0px;
  4413. position:absolute;
  4414. left:0px;
  4415. top:0px;
  4416. width:25px;
  4417. height:17px;
  4418. background:inherit;
  4419. background-color:rgba(255, 255, 255, 0);
  4420. border:none;
  4421. border-radius:0px;
  4422. -moz-box-shadow:none;
  4423. -webkit-box-shadow:none;
  4424. box-shadow:none;
  4425. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4426. font-weight:400;
  4427. font-style:normal;
  4428. font-size:12px;
  4429. }
  4430. #u141751 {
  4431. border-width:0px;
  4432. position:absolute;
  4433. left:1283px;
  4434. top:819px;
  4435. width:25px;
  4436. height:17px;
  4437. display:flex;
  4438. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4439. font-weight:400;
  4440. font-style:normal;
  4441. font-size:12px;
  4442. }
  4443. #u141751 .text {
  4444. position:absolute;
  4445. align-self:flex-start;
  4446. padding:0px 0px 0px 0px;
  4447. box-sizing:border-box;
  4448. width:100%;
  4449. }
  4450. #u141751_text {
  4451. border-width:0px;
  4452. white-space:nowrap;
  4453. text-transform:none;
  4454. }
  4455. #u141752_div {
  4456. border-width:0px;
  4457. position:absolute;
  4458. left:0px;
  4459. top:0px;
  4460. width:375px;
  4461. height:681px;
  4462. background:inherit;
  4463. background-color:rgba(242, 242, 242, 0.462745098039216);
  4464. border:none;
  4465. border-radius:0px;
  4466. -moz-box-shadow:none;
  4467. -webkit-box-shadow:none;
  4468. box-shadow:none;
  4469. }
  4470. #u141752 {
  4471. border-width:0px;
  4472. position:absolute;
  4473. left:973px;
  4474. top:107px;
  4475. width:375px;
  4476. height:681px;
  4477. display:flex;
  4478. }
  4479. #u141752 .text {
  4480. position:absolute;
  4481. align-self:center;
  4482. padding:2px 2px 2px 2px;
  4483. box-sizing:border-box;
  4484. width:100%;
  4485. }
  4486. #u141752_text {
  4487. border-width:0px;
  4488. word-wrap:break-word;
  4489. text-transform:none;
  4490. visibility:hidden;
  4491. }
  4492. #u141753 {
  4493. border-width:0px;
  4494. position:absolute;
  4495. left:0px;
  4496. top:0px;
  4497. width:0px;
  4498. height:0px;
  4499. }
  4500. #u141754_img {
  4501. border-width:0px;
  4502. position:absolute;
  4503. left:0px;
  4504. top:0px;
  4505. width:24px;
  4506. height:24px;
  4507. }
  4508. #u141754 {
  4509. border-width:0px;
  4510. position:absolute;
  4511. left:1195px;
  4512. top:792px;
  4513. width:24px;
  4514. height:24px;
  4515. display:flex;
  4516. font-size:8px;
  4517. }
  4518. #u141754 .text {
  4519. position:absolute;
  4520. align-self:center;
  4521. padding:2px 2px 2px 2px;
  4522. box-sizing:border-box;
  4523. width:100%;
  4524. }
  4525. #u141754_text {
  4526. border-width:0px;
  4527. word-wrap:break-word;
  4528. text-transform:none;
  4529. }
  4530. #u141755_div {
  4531. border-width:0px;
  4532. position:absolute;
  4533. left:0px;
  4534. top:0px;
  4535. width:37px;
  4536. height:17px;
  4537. background:inherit;
  4538. background-color:rgba(255, 255, 255, 0);
  4539. border:none;
  4540. border-radius:0px;
  4541. -moz-box-shadow:none;
  4542. -webkit-box-shadow:none;
  4543. box-shadow:none;
  4544. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4545. font-weight:400;
  4546. font-style:normal;
  4547. font-size:12px;
  4548. }
  4549. #u141755 {
  4550. border-width:0px;
  4551. position:absolute;
  4552. left:1189px;
  4553. top:817px;
  4554. width:37px;
  4555. height:17px;
  4556. display:flex;
  4557. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4558. font-weight:400;
  4559. font-style:normal;
  4560. font-size:12px;
  4561. }
  4562. #u141755 .text {
  4563. position:absolute;
  4564. align-self:flex-start;
  4565. padding:0px 0px 0px 0px;
  4566. box-sizing:border-box;
  4567. width:100%;
  4568. }
  4569. #u141755_text {
  4570. border-width:0px;
  4571. white-space:nowrap;
  4572. text-transform:none;
  4573. }
  4574. #u141756 {
  4575. border-width:0px;
  4576. position:absolute;
  4577. left:0px;
  4578. top:0px;
  4579. width:0px;
  4580. height:0px;
  4581. }
  4582. #u141757_img {
  4583. border-width:0px;
  4584. position:absolute;
  4585. left:0px;
  4586. top:0px;
  4587. width:24px;
  4588. height:24px;
  4589. }
  4590. #u141757 {
  4591. border-width:0px;
  4592. position:absolute;
  4593. left:1101px;
  4594. top:792px;
  4595. width:24px;
  4596. height:24px;
  4597. display:flex;
  4598. font-size:8px;
  4599. }
  4600. #u141757 .text {
  4601. position:absolute;
  4602. align-self:center;
  4603. padding:2px 2px 2px 2px;
  4604. box-sizing:border-box;
  4605. width:100%;
  4606. }
  4607. #u141757_text {
  4608. border-width:0px;
  4609. word-wrap:break-word;
  4610. text-transform:none;
  4611. }
  4612. #u141758_div {
  4613. border-width:0px;
  4614. position:absolute;
  4615. left:0px;
  4616. top:0px;
  4617. width:37px;
  4618. height:17px;
  4619. background:inherit;
  4620. background-color:rgba(255, 255, 255, 0);
  4621. border:none;
  4622. border-radius:0px;
  4623. -moz-box-shadow:none;
  4624. -webkit-box-shadow:none;
  4625. box-shadow:none;
  4626. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4627. font-weight:400;
  4628. font-style:normal;
  4629. font-size:12px;
  4630. }
  4631. #u141758 {
  4632. border-width:0px;
  4633. position:absolute;
  4634. left:1095px;
  4635. top:817px;
  4636. width:37px;
  4637. height:17px;
  4638. display:flex;
  4639. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4640. font-weight:400;
  4641. font-style:normal;
  4642. font-size:12px;
  4643. }
  4644. #u141758 .text {
  4645. position:absolute;
  4646. align-self:flex-start;
  4647. padding:0px 0px 0px 0px;
  4648. box-sizing:border-box;
  4649. width:100%;
  4650. }
  4651. #u141758_text {
  4652. border-width:0px;
  4653. white-space:nowrap;
  4654. text-transform:none;
  4655. }
  4656. #u141759_div {
  4657. border-width:0px;
  4658. position:absolute;
  4659. left:0px;
  4660. top:0px;
  4661. width:375px;
  4662. height:732px;
  4663. background:inherit;
  4664. background-color:rgba(242, 242, 242, 0.996078431372549);
  4665. border:none;
  4666. border-top:0px;
  4667. border-radius:28px;
  4668. border-top-left-radius:0px;
  4669. border-top-right-radius:0px;
  4670. -moz-box-shadow:none;
  4671. -webkit-box-shadow:none;
  4672. box-shadow:none;
  4673. }
  4674. #u141759 {
  4675. border-width:0px;
  4676. position:absolute;
  4677. left:973px;
  4678. top:107px;
  4679. width:375px;
  4680. height:732px;
  4681. display:flex;
  4682. }
  4683. #u141759 .text {
  4684. position:absolute;
  4685. align-self:center;
  4686. padding:2px 2px 2px 2px;
  4687. box-sizing:border-box;
  4688. width:100%;
  4689. }
  4690. #u141759_text {
  4691. border-width:0px;
  4692. word-wrap:break-word;
  4693. text-transform:none;
  4694. visibility:hidden;
  4695. }
  4696. #u141760 {
  4697. border-width:0px;
  4698. position:absolute;
  4699. left:0px;
  4700. top:0px;
  4701. width:0px;
  4702. height:0px;
  4703. }
  4704. #u141761_div {
  4705. border-width:0px;
  4706. position:absolute;
  4707. left:0px;
  4708. top:0px;
  4709. width:375px;
  4710. height:450px;
  4711. background:inherit;
  4712. background-color:rgba(255, 255, 255, 1);
  4713. border:none;
  4714. border-left:0px;
  4715. border-top:0px;
  4716. border-right:0px;
  4717. border-radius:0px;
  4718. border-bottom-right-radius:0px;
  4719. border-bottom-left-radius:0px;
  4720. -moz-box-shadow:none;
  4721. -webkit-box-shadow:none;
  4722. box-shadow:none;
  4723. }
  4724. #u141761 {
  4725. border-width:0px;
  4726. position:absolute;
  4727. left:973px;
  4728. top:108px;
  4729. width:375px;
  4730. height:450px;
  4731. display:flex;
  4732. }
  4733. #u141761 .text {
  4734. position:absolute;
  4735. align-self:center;
  4736. padding:2px 2px 2px 2px;
  4737. box-sizing:border-box;
  4738. width:100%;
  4739. }
  4740. #u141761_text {
  4741. border-width:0px;
  4742. word-wrap:break-word;
  4743. text-transform:none;
  4744. visibility:hidden;
  4745. }
  4746. #u141762 {
  4747. border-width:0px;
  4748. position:absolute;
  4749. left:0px;
  4750. top:0px;
  4751. width:0px;
  4752. height:0px;
  4753. }
  4754. #u141763_div {
  4755. border-width:0px;
  4756. position:absolute;
  4757. left:0px;
  4758. top:0px;
  4759. width:348px;
  4760. height:230px;
  4761. background:inherit;
  4762. background-color:rgba(242, 242, 242, 0.623529411764706);
  4763. border:none;
  4764. border-left:0px;
  4765. border-top:0px;
  4766. border-right:0px;
  4767. border-radius:0px;
  4768. border-bottom-right-radius:0px;
  4769. border-bottom-left-radius:0px;
  4770. -moz-box-shadow:none;
  4771. -webkit-box-shadow:none;
  4772. box-shadow:none;
  4773. }
  4774. #u141763 {
  4775. border-width:0px;
  4776. position:absolute;
  4777. left:986px;
  4778. top:308px;
  4779. width:348px;
  4780. height:230px;
  4781. display:flex;
  4782. }
  4783. #u141763 .text {
  4784. position:absolute;
  4785. align-self:center;
  4786. padding:2px 2px 2px 2px;
  4787. box-sizing:border-box;
  4788. width:100%;
  4789. }
  4790. #u141763_text {
  4791. border-width:0px;
  4792. word-wrap:break-word;
  4793. text-transform:none;
  4794. visibility:hidden;
  4795. }
  4796. #u141764_div {
  4797. border-width:0px;
  4798. position:absolute;
  4799. left:0px;
  4800. top:0px;
  4801. width:107px;
  4802. height:70px;
  4803. background:inherit;
  4804. background-color:rgba(255, 255, 255, 0);
  4805. border:none;
  4806. border-top:0px;
  4807. border-right:0px;
  4808. border-bottom:0px;
  4809. border-radius:0px;
  4810. border-top-left-radius:0px;
  4811. border-bottom-left-radius:0px;
  4812. -moz-box-shadow:none;
  4813. -webkit-box-shadow:none;
  4814. box-shadow:none;
  4815. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4816. font-style:normal;
  4817. line-height:30px;
  4818. }
  4819. #u141764 {
  4820. border-width:0px;
  4821. position:absolute;
  4822. left:1001px;
  4823. top:317px;
  4824. width:107px;
  4825. height:70px;
  4826. display:flex;
  4827. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4828. font-style:normal;
  4829. line-height:30px;
  4830. }
  4831. #u141764 .text {
  4832. position:absolute;
  4833. align-self:flex-start;
  4834. padding:5px 10px 5px 0px;
  4835. box-sizing:border-box;
  4836. width:100%;
  4837. }
  4838. #u141764_text {
  4839. border-width:0px;
  4840. white-space:nowrap;
  4841. text-transform:none;
  4842. }
  4843. #u141765_div {
  4844. border-width:0px;
  4845. position:absolute;
  4846. left:0px;
  4847. top:0px;
  4848. width:325px;
  4849. height:75px;
  4850. background:inherit;
  4851. background-color:rgba(255, 255, 255, 0);
  4852. border:none;
  4853. border-radius:0px;
  4854. -moz-box-shadow:none;
  4855. -webkit-box-shadow:none;
  4856. box-shadow:none;
  4857. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4858. font-weight:400;
  4859. font-style:normal;
  4860. font-size:12px;
  4861. line-height:25px;
  4862. }
  4863. #u141765 {
  4864. border-width:0px;
  4865. position:absolute;
  4866. left:999px;
  4867. top:389px;
  4868. width:325px;
  4869. height:75px;
  4870. display:flex;
  4871. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4872. font-weight:400;
  4873. font-style:normal;
  4874. font-size:12px;
  4875. line-height:25px;
  4876. }
  4877. #u141765 .text {
  4878. position:absolute;
  4879. align-self:flex-start;
  4880. padding:0px 0px 0px 0px;
  4881. box-sizing:border-box;
  4882. width:100%;
  4883. }
  4884. #u141765_text {
  4885. border-width:0px;
  4886. word-wrap:break-word;
  4887. text-transform:none;
  4888. }
  4889. #u141766_img {
  4890. border-width:0px;
  4891. position:absolute;
  4892. left:0px;
  4893. top:0px;
  4894. width:60px;
  4895. height:46px;
  4896. }
  4897. #u141766 {
  4898. border-width:0px;
  4899. position:absolute;
  4900. left:999px;
  4901. top:474px;
  4902. width:60px;
  4903. height:46px;
  4904. display:flex;
  4905. }
  4906. #u141766 .text {
  4907. position:absolute;
  4908. align-self:center;
  4909. padding:2px 2px 2px 2px;
  4910. box-sizing:border-box;
  4911. width:100%;
  4912. }
  4913. #u141766_text {
  4914. border-width:0px;
  4915. word-wrap:break-word;
  4916. text-transform:none;
  4917. visibility:hidden;
  4918. }
  4919. #u141767_img {
  4920. border-width:0px;
  4921. position:absolute;
  4922. left:0px;
  4923. top:0px;
  4924. width:60px;
  4925. height:46px;
  4926. }
  4927. #u141767 {
  4928. border-width:0px;
  4929. position:absolute;
  4930. left:1069px;
  4931. top:474px;
  4932. width:60px;
  4933. height:46px;
  4934. display:flex;
  4935. }
  4936. #u141767 .text {
  4937. position:absolute;
  4938. align-self:center;
  4939. padding:2px 2px 2px 2px;
  4940. box-sizing:border-box;
  4941. width:100%;
  4942. }
  4943. #u141767_text {
  4944. border-width:0px;
  4945. word-wrap:break-word;
  4946. text-transform:none;
  4947. visibility:hidden;
  4948. }
  4949. #u141768_div {
  4950. border-width:0px;
  4951. position:absolute;
  4952. left:0px;
  4953. top:0px;
  4954. width:133px;
  4955. height:25px;
  4956. background:inherit;
  4957. background-color:rgba(255, 255, 255, 0);
  4958. border:none;
  4959. border-radius:0px;
  4960. -moz-box-shadow:none;
  4961. -webkit-box-shadow:none;
  4962. box-shadow:none;
  4963. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4964. font-weight:400;
  4965. font-style:normal;
  4966. font-size:12px;
  4967. color:#D9001B;
  4968. line-height:25px;
  4969. }
  4970. #u141768 {
  4971. border-width:0px;
  4972. position:absolute;
  4973. left:1146px;
  4974. top:480px;
  4975. width:133px;
  4976. height:25px;
  4977. display:flex;
  4978. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4979. font-weight:400;
  4980. font-style:normal;
  4981. font-size:12px;
  4982. color:#D9001B;
  4983. line-height:25px;
  4984. }
  4985. #u141768 .text {
  4986. position:absolute;
  4987. align-self:flex-start;
  4988. padding:0px 0px 0px 0px;
  4989. box-sizing:border-box;
  4990. width:100%;
  4991. }
  4992. #u141768_text {
  4993. border-width:0px;
  4994. white-space:nowrap;
  4995. text-transform:none;
  4996. }
  4997. #u141769_div {
  4998. border-width:0px;
  4999. position:absolute;
  5000. left:0px;
  5001. top:0px;
  5002. width:43px;
  5003. height:20px;
  5004. background:inherit;
  5005. background-color:rgba(255, 255, 255, 0);
  5006. border:none;
  5007. border-radius:0px;
  5008. -moz-box-shadow:none;
  5009. -webkit-box-shadow:none;
  5010. box-shadow:none;
  5011. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5012. font-weight:400;
  5013. font-style:normal;
  5014. color:#AAAAAA;
  5015. }
  5016. #u141769 {
  5017. border-width:0px;
  5018. position:absolute;
  5019. left:1286px;
  5020. top:124px;
  5021. width:43px;
  5022. height:20px;
  5023. display:flex;
  5024. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5025. font-weight:400;
  5026. font-style:normal;
  5027. color:#AAAAAA;
  5028. }
  5029. #u141769 .text {
  5030. position:absolute;
  5031. align-self:flex-start;
  5032. padding:0px 0px 0px 0px;
  5033. box-sizing:border-box;
  5034. width:100%;
  5035. }
  5036. #u141769_text {
  5037. border-width:0px;
  5038. white-space:nowrap;
  5039. text-transform:none;
  5040. }
  5041. #u141770_div {
  5042. border-width:0px;
  5043. position:absolute;
  5044. left:0px;
  5045. top:0px;
  5046. width:92px;
  5047. height:30px;
  5048. background:inherit;
  5049. background-color:rgba(255, 255, 255, 0);
  5050. border:none;
  5051. border-left:0px;
  5052. border-top:0px;
  5053. border-right:0px;
  5054. border-radius:0px;
  5055. border-bottom-right-radius:0px;
  5056. border-bottom-left-radius:0px;
  5057. -moz-box-shadow:none;
  5058. -webkit-box-shadow:none;
  5059. box-shadow:none;
  5060. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5061. font-weight:500;
  5062. font-style:normal;
  5063. font-size:14px;
  5064. line-height:30px;
  5065. }
  5066. #u141770 {
  5067. border-width:0px;
  5068. position:absolute;
  5069. left:986px;
  5070. top:118px;
  5071. width:92px;
  5072. height:30px;
  5073. display:flex;
  5074. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5075. font-weight:500;
  5076. font-style:normal;
  5077. font-size:14px;
  5078. line-height:30px;
  5079. }
  5080. #u141770 .text {
  5081. position:absolute;
  5082. align-self:flex-start;
  5083. padding:0px 0px 0px 0px;
  5084. box-sizing:border-box;
  5085. width:100%;
  5086. }
  5087. #u141770_text {
  5088. border-width:0px;
  5089. white-space:nowrap;
  5090. text-transform:none;
  5091. }
  5092. #u141771_div {
  5093. border-width:0px;
  5094. position:absolute;
  5095. left:0px;
  5096. top:0px;
  5097. width:109px;
  5098. height:30px;
  5099. background:inherit;
  5100. background-color:rgba(255, 255, 255, 0);
  5101. border:none;
  5102. border-left:0px;
  5103. border-top:0px;
  5104. border-right:0px;
  5105. border-radius:0px;
  5106. border-bottom-right-radius:0px;
  5107. border-bottom-left-radius:0px;
  5108. -moz-box-shadow:none;
  5109. -webkit-box-shadow:none;
  5110. box-shadow:none;
  5111. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5112. font-weight:400;
  5113. font-style:normal;
  5114. font-size:12px;
  5115. line-height:30px;
  5116. }
  5117. #u141771 {
  5118. border-width:0px;
  5119. position:absolute;
  5120. left:986px;
  5121. top:148px;
  5122. width:109px;
  5123. height:30px;
  5124. display:flex;
  5125. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5126. font-weight:400;
  5127. font-style:normal;
  5128. font-size:12px;
  5129. line-height:30px;
  5130. }
  5131. #u141771 .text {
  5132. position:absolute;
  5133. align-self:flex-start;
  5134. padding:0px 0px 0px 0px;
  5135. box-sizing:border-box;
  5136. width:100%;
  5137. }
  5138. #u141771_text {
  5139. border-width:0px;
  5140. white-space:nowrap;
  5141. text-transform:none;
  5142. }
  5143. #u141772_div {
  5144. border-width:0px;
  5145. position:absolute;
  5146. left:0px;
  5147. top:0px;
  5148. width:85px;
  5149. height:30px;
  5150. background:inherit;
  5151. background-color:rgba(255, 255, 255, 0);
  5152. border:none;
  5153. border-left:0px;
  5154. border-top:0px;
  5155. border-right:0px;
  5156. border-radius:0px;
  5157. border-bottom-right-radius:0px;
  5158. border-bottom-left-radius:0px;
  5159. -moz-box-shadow:none;
  5160. -webkit-box-shadow:none;
  5161. box-shadow:none;
  5162. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5163. font-weight:400;
  5164. font-style:normal;
  5165. font-size:12px;
  5166. line-height:30px;
  5167. }
  5168. #u141772 {
  5169. border-width:0px;
  5170. position:absolute;
  5171. left:986px;
  5172. top:208px;
  5173. width:85px;
  5174. height:30px;
  5175. display:flex;
  5176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5177. font-weight:400;
  5178. font-style:normal;
  5179. font-size:12px;
  5180. line-height:30px;
  5181. }
  5182. #u141772 .text {
  5183. position:absolute;
  5184. align-self:flex-start;
  5185. padding:0px 0px 0px 0px;
  5186. box-sizing:border-box;
  5187. width:100%;
  5188. }
  5189. #u141772_text {
  5190. border-width:0px;
  5191. white-space:nowrap;
  5192. text-transform:none;
  5193. }
  5194. #u141773_div {
  5195. border-width:0px;
  5196. position:absolute;
  5197. left:0px;
  5198. top:0px;
  5199. width:85px;
  5200. height:30px;
  5201. background:inherit;
  5202. background-color:rgba(255, 255, 255, 0);
  5203. border:none;
  5204. border-left:0px;
  5205. border-top:0px;
  5206. border-right:0px;
  5207. border-radius:0px;
  5208. border-bottom-right-radius:0px;
  5209. border-bottom-left-radius:0px;
  5210. -moz-box-shadow:none;
  5211. -webkit-box-shadow:none;
  5212. box-shadow:none;
  5213. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5214. font-weight:400;
  5215. font-style:normal;
  5216. font-size:12px;
  5217. line-height:30px;
  5218. }
  5219. #u141773 {
  5220. border-width:0px;
  5221. position:absolute;
  5222. left:986px;
  5223. top:178px;
  5224. width:85px;
  5225. height:30px;
  5226. display:flex;
  5227. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5228. font-weight:400;
  5229. font-style:normal;
  5230. font-size:12px;
  5231. line-height:30px;
  5232. }
  5233. #u141773 .text {
  5234. position:absolute;
  5235. align-self:flex-start;
  5236. padding:0px 0px 0px 0px;
  5237. box-sizing:border-box;
  5238. width:100%;
  5239. }
  5240. #u141773_text {
  5241. border-width:0px;
  5242. white-space:nowrap;
  5243. text-transform:none;
  5244. }
  5245. #u141774_div {
  5246. border-width:0px;
  5247. position:absolute;
  5248. left:0px;
  5249. top:0px;
  5250. width:85px;
  5251. height:30px;
  5252. background:inherit;
  5253. background-color:rgba(255, 255, 255, 0);
  5254. border:none;
  5255. border-left:0px;
  5256. border-top:0px;
  5257. border-right:0px;
  5258. border-radius:0px;
  5259. border-bottom-right-radius:0px;
  5260. border-bottom-left-radius:0px;
  5261. -moz-box-shadow:none;
  5262. -webkit-box-shadow:none;
  5263. box-shadow:none;
  5264. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5265. font-weight:400;
  5266. font-style:normal;
  5267. font-size:12px;
  5268. line-height:30px;
  5269. }
  5270. #u141774 {
  5271. border-width:0px;
  5272. position:absolute;
  5273. left:986px;
  5274. top:238px;
  5275. width:85px;
  5276. height:30px;
  5277. display:flex;
  5278. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5279. font-weight:400;
  5280. font-style:normal;
  5281. font-size:12px;
  5282. line-height:30px;
  5283. }
  5284. #u141774 .text {
  5285. position:absolute;
  5286. align-self:flex-start;
  5287. padding:0px 0px 0px 0px;
  5288. box-sizing:border-box;
  5289. width:100%;
  5290. }
  5291. #u141774_text {
  5292. border-width:0px;
  5293. white-space:nowrap;
  5294. text-transform:none;
  5295. }
  5296. #u141775_div {
  5297. border-width:0px;
  5298. position:absolute;
  5299. left:0px;
  5300. top:0px;
  5301. width:177px;
  5302. height:30px;
  5303. background:inherit;
  5304. background-color:rgba(255, 255, 255, 0);
  5305. border:none;
  5306. border-left:0px;
  5307. border-top:0px;
  5308. border-right:0px;
  5309. border-radius:0px;
  5310. border-bottom-right-radius:0px;
  5311. border-bottom-left-radius:0px;
  5312. -moz-box-shadow:none;
  5313. -webkit-box-shadow:none;
  5314. box-shadow:none;
  5315. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5316. font-weight:400;
  5317. font-style:normal;
  5318. font-size:12px;
  5319. line-height:30px;
  5320. }
  5321. #u141775 {
  5322. border-width:0px;
  5323. position:absolute;
  5324. left:986px;
  5325. top:268px;
  5326. width:177px;
  5327. height:30px;
  5328. display:flex;
  5329. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5330. font-weight:400;
  5331. font-style:normal;
  5332. font-size:12px;
  5333. line-height:30px;
  5334. }
  5335. #u141775 .text {
  5336. position:absolute;
  5337. align-self:flex-start;
  5338. padding:0px 0px 0px 0px;
  5339. box-sizing:border-box;
  5340. width:100%;
  5341. }
  5342. #u141775_text {
  5343. border-width:0px;
  5344. white-space:nowrap;
  5345. text-transform:none;
  5346. }
  5347. #u141776_div {
  5348. border-width:0px;
  5349. position:absolute;
  5350. left:0px;
  5351. top:0px;
  5352. width:375px;
  5353. height:41px;
  5354. background:inherit;
  5355. background-color:rgba(255, 255, 255, 1);
  5356. box-sizing:border-box;
  5357. border-width:1px;
  5358. border-style:solid;
  5359. border-color:rgba(215, 215, 215, 1);
  5360. border-left:0px;
  5361. border-top:0px;
  5362. border-right:0px;
  5363. border-radius:0px;
  5364. border-bottom-right-radius:0px;
  5365. border-bottom-left-radius:0px;
  5366. -moz-box-shadow:none;
  5367. -webkit-box-shadow:none;
  5368. box-shadow:none;
  5369. }
  5370. #u141776 {
  5371. border-width:0px;
  5372. position:absolute;
  5373. left:973px;
  5374. top:67px;
  5375. width:375px;
  5376. height:41px;
  5377. display:flex;
  5378. }
  5379. #u141776 .text {
  5380. position:absolute;
  5381. align-self:center;
  5382. padding:2px 2px 2px 2px;
  5383. box-sizing:border-box;
  5384. width:100%;
  5385. }
  5386. #u141776_text {
  5387. border-width:0px;
  5388. word-wrap:break-word;
  5389. text-transform:none;
  5390. visibility:hidden;
  5391. }
  5392. #u141777 {
  5393. border-width:0px;
  5394. position:absolute;
  5395. left:0px;
  5396. top:0px;
  5397. width:0px;
  5398. height:0px;
  5399. }
  5400. #u141778_div {
  5401. border-width:0px;
  5402. position:absolute;
  5403. left:0px;
  5404. top:0px;
  5405. width:88px;
  5406. height:32px;
  5407. background:inherit;
  5408. background-color:rgba(255, 255, 255, 1);
  5409. box-sizing:border-box;
  5410. border-width:1px;
  5411. border-style:solid;
  5412. border-color:rgba(242, 242, 242, 1);
  5413. border-radius:33px;
  5414. -moz-box-shadow:none;
  5415. -webkit-box-shadow:none;
  5416. box-shadow:none;
  5417. }
  5418. #u141778 {
  5419. border-width:0px;
  5420. position:absolute;
  5421. left:1253px;
  5422. top:71px;
  5423. width:88px;
  5424. height:32px;
  5425. display:flex;
  5426. }
  5427. #u141778 .text {
  5428. position:absolute;
  5429. align-self:center;
  5430. padding:2px 2px 2px 2px;
  5431. box-sizing:border-box;
  5432. width:100%;
  5433. }
  5434. #u141778_text {
  5435. border-width:0px;
  5436. word-wrap:break-word;
  5437. text-transform:none;
  5438. visibility:hidden;
  5439. }
  5440. #u141779 {
  5441. border-width:0px;
  5442. position:absolute;
  5443. left:0px;
  5444. top:0px;
  5445. width:0px;
  5446. height:0px;
  5447. }
  5448. #u141780_img {
  5449. border-width:0px;
  5450. position:absolute;
  5451. left:0px;
  5452. top:0px;
  5453. width:18px;
  5454. height:18px;
  5455. }
  5456. #u141780 {
  5457. border-width:0px;
  5458. position:absolute;
  5459. left:1316px;
  5460. top:78px;
  5461. width:18px;
  5462. height:18px;
  5463. display:flex;
  5464. }
  5465. #u141780 .text {
  5466. position:absolute;
  5467. align-self:center;
  5468. padding:2px 2px 2px 2px;
  5469. box-sizing:border-box;
  5470. width:100%;
  5471. }
  5472. #u141780_text {
  5473. border-width:0px;
  5474. word-wrap:break-word;
  5475. text-transform:none;
  5476. visibility:hidden;
  5477. }
  5478. #u141781_img {
  5479. border-width:0px;
  5480. position:absolute;
  5481. left:0px;
  5482. top:0px;
  5483. width:6px;
  5484. height:6px;
  5485. }
  5486. #u141781 {
  5487. border-width:0px;
  5488. position:absolute;
  5489. left:1322px;
  5490. top:84px;
  5491. width:6px;
  5492. height:6px;
  5493. display:flex;
  5494. }
  5495. #u141781 .text {
  5496. position:absolute;
  5497. align-self:center;
  5498. padding:2px 2px 2px 2px;
  5499. box-sizing:border-box;
  5500. width:100%;
  5501. }
  5502. #u141781_text {
  5503. border-width:0px;
  5504. word-wrap:break-word;
  5505. text-transform:none;
  5506. visibility:hidden;
  5507. }
  5508. #u141782 {
  5509. border-width:0px;
  5510. position:absolute;
  5511. left:0px;
  5512. top:0px;
  5513. width:0px;
  5514. height:0px;
  5515. }
  5516. #u141783_img {
  5517. border-width:0px;
  5518. position:absolute;
  5519. left:0px;
  5520. top:0px;
  5521. width:5px;
  5522. height:5px;
  5523. }
  5524. #u141783 {
  5525. border-width:0px;
  5526. position:absolute;
  5527. left:1267px;
  5528. top:85px;
  5529. width:5px;
  5530. height:5px;
  5531. display:flex;
  5532. }
  5533. #u141783 .text {
  5534. position:absolute;
  5535. align-self:center;
  5536. padding:2px 2px 2px 2px;
  5537. box-sizing:border-box;
  5538. width:100%;
  5539. }
  5540. #u141783_text {
  5541. border-width:0px;
  5542. word-wrap:break-word;
  5543. text-transform:none;
  5544. visibility:hidden;
  5545. }
  5546. #u141784_img {
  5547. border-width:0px;
  5548. position:absolute;
  5549. left:0px;
  5550. top:0px;
  5551. width:5px;
  5552. height:5px;
  5553. }
  5554. #u141784 {
  5555. border-width:0px;
  5556. position:absolute;
  5557. left:1283px;
  5558. top:85px;
  5559. width:5px;
  5560. height:5px;
  5561. display:flex;
  5562. }
  5563. #u141784 .text {
  5564. position:absolute;
  5565. align-self:center;
  5566. padding:2px 2px 2px 2px;
  5567. box-sizing:border-box;
  5568. width:100%;
  5569. }
  5570. #u141784_text {
  5571. border-width:0px;
  5572. word-wrap:break-word;
  5573. text-transform:none;
  5574. visibility:hidden;
  5575. }
  5576. #u141785_img {
  5577. border-width:0px;
  5578. position:absolute;
  5579. left:0px;
  5580. top:0px;
  5581. width:7px;
  5582. height:7px;
  5583. }
  5584. #u141785 {
  5585. border-width:0px;
  5586. position:absolute;
  5587. left:1274px;
  5588. top:84px;
  5589. width:7px;
  5590. height:7px;
  5591. display:flex;
  5592. }
  5593. #u141785 .text {
  5594. position:absolute;
  5595. align-self:center;
  5596. padding:2px 2px 2px 2px;
  5597. box-sizing:border-box;
  5598. width:100%;
  5599. }
  5600. #u141785_text {
  5601. border-width:0px;
  5602. word-wrap:break-word;
  5603. text-transform:none;
  5604. visibility:hidden;
  5605. }
  5606. #u141786_img {
  5607. border-width:0px;
  5608. position:absolute;
  5609. left:0px;
  5610. top:0px;
  5611. width:19px;
  5612. height:2px;
  5613. }
  5614. #u141786 {
  5615. border-width:0px;
  5616. position:absolute;
  5617. left:1291px;
  5618. top:87px;
  5619. width:18px;
  5620. height:1px;
  5621. display:flex;
  5622. -webkit-transform:rotate(90deg);
  5623. -moz-transform:rotate(90deg);
  5624. -ms-transform:rotate(90deg);
  5625. transform:rotate(90deg);
  5626. }
  5627. #u141786 .text {
  5628. position:absolute;
  5629. align-self:center;
  5630. padding:2px 2px 2px 2px;
  5631. box-sizing:border-box;
  5632. width:100%;
  5633. }
  5634. #u141786_text {
  5635. border-width:0px;
  5636. word-wrap:break-word;
  5637. text-transform:none;
  5638. visibility:hidden;
  5639. }
  5640. #u141787_div {
  5641. border-width:0px;
  5642. position:absolute;
  5643. left:0px;
  5644. top:0px;
  5645. width:12px;
  5646. height:12px;
  5647. background:inherit;
  5648. background-color:rgba(255, 255, 255, 0);
  5649. box-sizing:border-box;
  5650. border-width:2px;
  5651. border-style:solid;
  5652. border-color:rgba(51, 51, 51, 1);
  5653. border-right:0px;
  5654. border-bottom:0px;
  5655. border-radius:0px;
  5656. border-top-right-radius:0px;
  5657. border-bottom-left-radius:0px;
  5658. -moz-box-shadow:none;
  5659. -webkit-box-shadow:none;
  5660. box-shadow:none;
  5661. }
  5662. #u141787 {
  5663. border-width:0px;
  5664. position:absolute;
  5665. left:988px;
  5666. top:81px;
  5667. width:12px;
  5668. height:12px;
  5669. display:flex;
  5670. -webkit-transform:rotate(315deg);
  5671. -moz-transform:rotate(315deg);
  5672. -ms-transform:rotate(315deg);
  5673. transform:rotate(315deg);
  5674. }
  5675. #u141787 .text {
  5676. position:absolute;
  5677. align-self:center;
  5678. padding:2px 2px 2px 2px;
  5679. box-sizing:border-box;
  5680. width:100%;
  5681. }
  5682. #u141787_text {
  5683. border-width:0px;
  5684. word-wrap:break-word;
  5685. text-transform:none;
  5686. visibility:hidden;
  5687. }
  5688. #u141788_div {
  5689. border-width:0px;
  5690. position:absolute;
  5691. left:0px;
  5692. top:0px;
  5693. width:37px;
  5694. height:25px;
  5695. background:inherit;
  5696. background-color:rgba(255, 255, 255, 0);
  5697. border:none;
  5698. border-radius:0px;
  5699. -moz-box-shadow:none;
  5700. -webkit-box-shadow:none;
  5701. box-shadow:none;
  5702. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5703. font-weight:400;
  5704. font-style:normal;
  5705. font-size:18px;
  5706. }
  5707. #u141788 {
  5708. border-width:0px;
  5709. position:absolute;
  5710. left:1008px;
  5711. top:75px;
  5712. width:37px;
  5713. height:25px;
  5714. display:flex;
  5715. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5716. font-weight:400;
  5717. font-style:normal;
  5718. font-size:18px;
  5719. }
  5720. #u141788 .text {
  5721. position:absolute;
  5722. align-self:flex-start;
  5723. padding:0px 0px 0px 0px;
  5724. box-sizing:border-box;
  5725. width:100%;
  5726. }
  5727. #u141788_text {
  5728. border-width:0px;
  5729. white-space:nowrap;
  5730. text-transform:none;
  5731. }
  5732. #u141789_div {
  5733. border-width:0px;
  5734. position:absolute;
  5735. left:0px;
  5736. top:0px;
  5737. width:375px;
  5738. height:211px;
  5739. background:inherit;
  5740. background-color:rgba(255, 255, 255, 1);
  5741. border:none;
  5742. border-left:0px;
  5743. border-top:0px;
  5744. border-right:0px;
  5745. border-radius:0px;
  5746. border-bottom-right-radius:0px;
  5747. border-bottom-left-radius:0px;
  5748. -moz-box-shadow:none;
  5749. -webkit-box-shadow:none;
  5750. box-shadow:none;
  5751. }
  5752. #u141789 {
  5753. border-width:0px;
  5754. position:absolute;
  5755. left:500px;
  5756. top:568px;
  5757. width:375px;
  5758. height:211px;
  5759. display:flex;
  5760. }
  5761. #u141789 .text {
  5762. position:absolute;
  5763. align-self:center;
  5764. padding:2px 2px 2px 2px;
  5765. box-sizing:border-box;
  5766. width:100%;
  5767. }
  5768. #u141789_text {
  5769. border-width:0px;
  5770. word-wrap:break-word;
  5771. text-transform:none;
  5772. visibility:hidden;
  5773. }
  5774. #u141790_div {
  5775. border-width:0px;
  5776. position:absolute;
  5777. left:0px;
  5778. top:0px;
  5779. width:57px;
  5780. height:30px;
  5781. background:inherit;
  5782. background-color:rgba(255, 255, 255, 0);
  5783. border:none;
  5784. border-left:0px;
  5785. border-top:0px;
  5786. border-right:0px;
  5787. border-radius:0px;
  5788. border-bottom-right-radius:0px;
  5789. border-bottom-left-radius:0px;
  5790. -moz-box-shadow:none;
  5791. -webkit-box-shadow:none;
  5792. box-shadow:none;
  5793. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5794. font-weight:500;
  5795. font-style:normal;
  5796. font-size:14px;
  5797. line-height:30px;
  5798. }
  5799. #u141790 {
  5800. border-width:0px;
  5801. position:absolute;
  5802. left:523px;
  5803. top:578px;
  5804. width:57px;
  5805. height:30px;
  5806. display:flex;
  5807. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5808. font-weight:500;
  5809. font-style:normal;
  5810. font-size:14px;
  5811. line-height:30px;
  5812. }
  5813. #u141790 .text {
  5814. position:absolute;
  5815. align-self:flex-start;
  5816. padding:0px 0px 0px 0px;
  5817. box-sizing:border-box;
  5818. width:100%;
  5819. }
  5820. #u141790_text {
  5821. border-width:0px;
  5822. white-space:nowrap;
  5823. text-transform:none;
  5824. }
  5825. #u141791_div {
  5826. border-width:0px;
  5827. position:absolute;
  5828. left:0px;
  5829. top:0px;
  5830. width:109px;
  5831. height:30px;
  5832. background:inherit;
  5833. background-color:rgba(255, 255, 255, 0);
  5834. border:none;
  5835. border-left:0px;
  5836. border-top:0px;
  5837. border-right:0px;
  5838. border-radius:0px;
  5839. border-bottom-right-radius:0px;
  5840. border-bottom-left-radius:0px;
  5841. -moz-box-shadow:none;
  5842. -webkit-box-shadow:none;
  5843. box-shadow:none;
  5844. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5845. font-weight:400;
  5846. font-style:normal;
  5847. font-size:12px;
  5848. line-height:30px;
  5849. }
  5850. #u141791 {
  5851. border-width:0px;
  5852. position:absolute;
  5853. left:523px;
  5854. top:613px;
  5855. width:109px;
  5856. height:30px;
  5857. display:flex;
  5858. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5859. font-weight:400;
  5860. font-style:normal;
  5861. font-size:12px;
  5862. line-height:30px;
  5863. }
  5864. #u141791 .text {
  5865. position:absolute;
  5866. align-self:flex-start;
  5867. padding:0px 0px 0px 0px;
  5868. box-sizing:border-box;
  5869. width:100%;
  5870. }
  5871. #u141791_text {
  5872. border-width:0px;
  5873. white-space:nowrap;
  5874. text-transform:none;
  5875. }
  5876. #u141792_div {
  5877. border-width:0px;
  5878. position:absolute;
  5879. left:0px;
  5880. top:0px;
  5881. width:253px;
  5882. height:120px;
  5883. background:inherit;
  5884. background-color:rgba(255, 255, 255, 0);
  5885. border:none;
  5886. border-left:0px;
  5887. border-top:0px;
  5888. border-right:0px;
  5889. border-radius:0px;
  5890. border-bottom-right-radius:0px;
  5891. border-bottom-left-radius:0px;
  5892. -moz-box-shadow:none;
  5893. -webkit-box-shadow:none;
  5894. box-shadow:none;
  5895. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5896. font-weight:400;
  5897. font-style:normal;
  5898. font-size:12px;
  5899. line-height:30px;
  5900. }
  5901. #u141792 {
  5902. border-width:0px;
  5903. position:absolute;
  5904. left:523px;
  5905. top:643px;
  5906. width:253px;
  5907. height:120px;
  5908. display:flex;
  5909. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5910. font-weight:400;
  5911. font-style:normal;
  5912. font-size:12px;
  5913. line-height:30px;
  5914. }
  5915. #u141792 .text {
  5916. position:absolute;
  5917. align-self:flex-start;
  5918. padding:0px 0px 0px 0px;
  5919. box-sizing:border-box;
  5920. width:100%;
  5921. }
  5922. #u141792_text {
  5923. border-width:0px;
  5924. white-space:nowrap;
  5925. text-transform:none;
  5926. }
  5927. #u141793_div {
  5928. border-width:0px;
  5929. position:absolute;
  5930. left:0px;
  5931. top:0px;
  5932. width:375px;
  5933. height:211px;
  5934. background:inherit;
  5935. background-color:rgba(255, 255, 255, 1);
  5936. border:none;
  5937. border-left:0px;
  5938. border-top:0px;
  5939. border-right:0px;
  5940. border-radius:0px;
  5941. border-bottom-right-radius:0px;
  5942. border-bottom-left-radius:0px;
  5943. -moz-box-shadow:none;
  5944. -webkit-box-shadow:none;
  5945. box-shadow:none;
  5946. }
  5947. #u141793 {
  5948. border-width:0px;
  5949. position:absolute;
  5950. left:973px;
  5951. top:568px;
  5952. width:375px;
  5953. height:211px;
  5954. display:flex;
  5955. }
  5956. #u141793 .text {
  5957. position:absolute;
  5958. align-self:center;
  5959. padding:2px 2px 2px 2px;
  5960. box-sizing:border-box;
  5961. width:100%;
  5962. }
  5963. #u141793_text {
  5964. border-width:0px;
  5965. word-wrap:break-word;
  5966. text-transform:none;
  5967. visibility:hidden;
  5968. }
  5969. #u141794_div {
  5970. border-width:0px;
  5971. position:absolute;
  5972. left:0px;
  5973. top:0px;
  5974. width:57px;
  5975. height:30px;
  5976. background:inherit;
  5977. background-color:rgba(255, 255, 255, 0);
  5978. border:none;
  5979. border-left:0px;
  5980. border-top:0px;
  5981. border-right:0px;
  5982. border-radius:0px;
  5983. border-bottom-right-radius:0px;
  5984. border-bottom-left-radius:0px;
  5985. -moz-box-shadow:none;
  5986. -webkit-box-shadow:none;
  5987. box-shadow:none;
  5988. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5989. font-weight:500;
  5990. font-style:normal;
  5991. font-size:14px;
  5992. line-height:30px;
  5993. }
  5994. #u141794 {
  5995. border-width:0px;
  5996. position:absolute;
  5997. left:996px;
  5998. top:578px;
  5999. width:57px;
  6000. height:30px;
  6001. display:flex;
  6002. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6003. font-weight:500;
  6004. font-style:normal;
  6005. font-size:14px;
  6006. line-height:30px;
  6007. }
  6008. #u141794 .text {
  6009. position:absolute;
  6010. align-self:flex-start;
  6011. padding:0px 0px 0px 0px;
  6012. box-sizing:border-box;
  6013. width:100%;
  6014. }
  6015. #u141794_text {
  6016. border-width:0px;
  6017. white-space:nowrap;
  6018. text-transform:none;
  6019. }
  6020. #u141795_div {
  6021. border-width:0px;
  6022. position:absolute;
  6023. left:0px;
  6024. top:0px;
  6025. width:121px;
  6026. height:30px;
  6027. background:inherit;
  6028. background-color:rgba(255, 255, 255, 0);
  6029. border:none;
  6030. border-left:0px;
  6031. border-top:0px;
  6032. border-right:0px;
  6033. border-radius:0px;
  6034. border-bottom-right-radius:0px;
  6035. border-bottom-left-radius:0px;
  6036. -moz-box-shadow:none;
  6037. -webkit-box-shadow:none;
  6038. box-shadow:none;
  6039. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6040. font-weight:400;
  6041. font-style:normal;
  6042. font-size:12px;
  6043. line-height:30px;
  6044. }
  6045. #u141795 {
  6046. border-width:0px;
  6047. position:absolute;
  6048. left:996px;
  6049. top:613px;
  6050. width:121px;
  6051. height:30px;
  6052. display:flex;
  6053. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6054. font-weight:400;
  6055. font-style:normal;
  6056. font-size:12px;
  6057. line-height:30px;
  6058. }
  6059. #u141795 .text {
  6060. position:absolute;
  6061. align-self:flex-start;
  6062. padding:0px 0px 0px 0px;
  6063. box-sizing:border-box;
  6064. width:100%;
  6065. }
  6066. #u141795_text {
  6067. border-width:0px;
  6068. white-space:nowrap;
  6069. text-transform:none;
  6070. }
  6071. #u141796_div {
  6072. border-width:0px;
  6073. position:absolute;
  6074. left:0px;
  6075. top:0px;
  6076. width:253px;
  6077. height:90px;
  6078. background:inherit;
  6079. background-color:rgba(255, 255, 255, 0);
  6080. border:none;
  6081. border-left:0px;
  6082. border-top:0px;
  6083. border-right:0px;
  6084. border-radius:0px;
  6085. border-bottom-right-radius:0px;
  6086. border-bottom-left-radius:0px;
  6087. -moz-box-shadow:none;
  6088. -webkit-box-shadow:none;
  6089. box-shadow:none;
  6090. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6091. font-weight:400;
  6092. font-style:normal;
  6093. font-size:12px;
  6094. line-height:30px;
  6095. }
  6096. #u141796 {
  6097. border-width:0px;
  6098. position:absolute;
  6099. left:996px;
  6100. top:643px;
  6101. width:253px;
  6102. height:90px;
  6103. display:flex;
  6104. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6105. font-weight:400;
  6106. font-style:normal;
  6107. font-size:12px;
  6108. line-height:30px;
  6109. }
  6110. #u141796 .text {
  6111. position:absolute;
  6112. align-self:flex-start;
  6113. padding:0px 0px 0px 0px;
  6114. box-sizing:border-box;
  6115. width:100%;
  6116. }
  6117. #u141796_text {
  6118. border-width:0px;
  6119. white-space:nowrap;
  6120. text-transform:none;
  6121. }
  6122. #u141797 {
  6123. border-width:0px;
  6124. position:absolute;
  6125. left:0px;
  6126. top:0px;
  6127. width:0px;
  6128. height:0px;
  6129. }
  6130. #u141798_div {
  6131. border-width:0px;
  6132. position:absolute;
  6133. left:0px;
  6134. top:0px;
  6135. width:375px;
  6136. height:60px;
  6137. background:inherit;
  6138. background-color:rgba(255, 255, 255, 1);
  6139. box-sizing:border-box;
  6140. border-width:1px;
  6141. border-style:solid;
  6142. border-color:rgba(242, 242, 242, 1);
  6143. border-radius:20px;
  6144. border-top-left-radius:0px;
  6145. border-top-right-radius:0px;
  6146. -moz-box-shadow:none;
  6147. -webkit-box-shadow:none;
  6148. box-shadow:none;
  6149. }
  6150. #u141798 {
  6151. border-width:0px;
  6152. position:absolute;
  6153. left:500px;
  6154. top:779px;
  6155. width:375px;
  6156. height:60px;
  6157. display:flex;
  6158. }
  6159. #u141798 .text {
  6160. position:absolute;
  6161. align-self:center;
  6162. padding:2px 2px 2px 2px;
  6163. box-sizing:border-box;
  6164. width:100%;
  6165. }
  6166. #u141798_text {
  6167. border-width:0px;
  6168. word-wrap:break-word;
  6169. text-transform:none;
  6170. visibility:hidden;
  6171. }
  6172. #u141799_div {
  6173. border-width:0px;
  6174. position:absolute;
  6175. left:0px;
  6176. top:0px;
  6177. width:97px;
  6178. height:40px;
  6179. background:inherit;
  6180. background-color:rgba(255, 255, 255, 1);
  6181. box-sizing:border-box;
  6182. border-width:1px;
  6183. border-style:solid;
  6184. border-color:rgba(121, 121, 121, 1);
  6185. border-radius:63px;
  6186. -moz-box-shadow:none;
  6187. -webkit-box-shadow:none;
  6188. box-shadow:none;
  6189. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6190. font-weight:400;
  6191. font-style:normal;
  6192. font-size:14px;
  6193. color:#555555;
  6194. }
  6195. #u141799 {
  6196. border-width:0px;
  6197. position:absolute;
  6198. left:764px;
  6199. top:789px;
  6200. width:97px;
  6201. height:40px;
  6202. display:flex;
  6203. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6204. font-weight:400;
  6205. font-style:normal;
  6206. font-size:14px;
  6207. color:#555555;
  6208. }
  6209. #u141799 .text {
  6210. position:absolute;
  6211. align-self:center;
  6212. padding:2px 2px 2px 2px;
  6213. box-sizing:border-box;
  6214. width:100%;
  6215. }
  6216. #u141799_text {
  6217. border-width:0px;
  6218. word-wrap:break-word;
  6219. text-transform:none;
  6220. }