styles.css 129 KB

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