styles.css 114 KB

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