styles.css 122 KB

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