styles.css 130 KB

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