admin.scss 154 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915
  1. @charset "UTF-8";
  2. @use "sass:math";
  3. // Utility classes for padding and margin (1-100)
  4. @for $i from 1 through 200 {
  5. // Padding
  6. .pt--#{$i} {
  7. padding-top: #{$i}px !important;
  8. }
  9. .pr--#{$i} {
  10. padding-right: #{$i}px !important;
  11. }
  12. .pb--#{$i} {
  13. padding-bottom: #{$i}px !important;
  14. }
  15. .pl--#{$i} {
  16. padding-left: #{$i}px !important;
  17. }
  18. .p--#{$i} {
  19. padding: #{$i}px !important;
  20. }
  21. // Margin
  22. .mt--#{$i} {
  23. margin-top: #{$i}px !important;
  24. }
  25. .mr--#{$i} {
  26. margin-right: #{$i}px !important;
  27. }
  28. .mb--#{$i} {
  29. margin-bottom: #{$i}px !important;
  30. }
  31. .ml--#{$i} {
  32. margin-left: #{$i}px !important;
  33. }
  34. .m--#{$i} {
  35. margin: #{$i}px !important;
  36. }
  37. @media (max-width: 720px) {
  38. .pt--#{$i} {
  39. padding-top: #{math.div($i, 2)}px !important;
  40. }
  41. .pr--#{$i} {
  42. padding-right: #{math.div($i, 2)}px !important;
  43. }
  44. .pb--#{$i} {
  45. padding-bottom: #{math.div($i, 2)}px !important;
  46. }
  47. .pl--#{$i} {
  48. padding-left: #{math.div($i, 2)}px !important;
  49. }
  50. .p--#{$i} {
  51. padding: #{math.div($i, 2)}px !important;
  52. }
  53. .mt--#{$i} {
  54. margin-top: #{math.div($i, 2)}px !important;
  55. }
  56. .mr--#{$i} {
  57. margin-right: #{math.div($i, 2)}px !important;
  58. }
  59. .mb--#{$i} {
  60. margin-bottom: #{math.div($i, 2)}px !important;
  61. }
  62. .ml--#{$i} {
  63. margin-left: #{math.div($i, 2)}px !important;
  64. }
  65. .m--#{$i} {
  66. margin: #{math.div($i, 2)}px !important;
  67. }
  68. }
  69. }
  70. @for $i from 12 through 40 {
  71. .ft--#{$i} {
  72. font-size : #{$i}px !important;
  73. }
  74. }
  75. html {
  76. scroll-behavior: smooth;
  77. }
  78. :root {
  79. --max-content-width: 1920px;
  80. --page-margin: 16px;
  81. @media (min-width: 375px) {
  82. --page-margin: 28px;
  83. }
  84. @media (min-width: 768px) {
  85. --page-margin: 40px;
  86. }
  87. @media (min-width: 1024px) {
  88. --page-margin: 60px;
  89. }
  90. @media (min-width: 1440px) {
  91. --page-margin: 96px;
  92. }
  93. @media (min-width: 1920px) {
  94. --page-margin: 96px;
  95. }
  96. @property --gradient-start {
  97. syntax: '<color>';
  98. initial-value: transparent;
  99. inherits: false;
  100. }
  101. @property --gradient-end {
  102. syntax: '<color>';
  103. initial-value: transparent;
  104. inherits: false;
  105. }
  106. --spacing-relative-2xs: 4px;
  107. --spacing-relative-xs: 8px;
  108. --spacing-relative-sm: 12px;
  109. --spacing-relative-md: 16px;
  110. --spacing-relative-lg: 24px;
  111. --spacing-relative-xl: 28px;
  112. --spacing-relative-2xl: 36px;
  113. --spacing-relative-3xl: 40px;
  114. --spacing-relative-4xl: 48px;
  115. --spacing-relative-5xl: 64px;
  116. --spacing-relative-6xl: 80px;
  117. --spacing-relative-7xl: 96px;
  118. --spacing-relative-8xl: 120px;
  119. @media (min-width: 768px) {
  120. --spacing-relative-3xl: 48px;
  121. --spacing-relative-4xl: 64px;
  122. --spacing-relative-5xl: 72px;
  123. --spacing-relative-6xl: 88px;
  124. --spacing-relative-7xl: 104px;
  125. --spacing-relative-8xl: 136px;
  126. }
  127. @media (min-width: 1024px) {
  128. --spacing-relative-2xl: 40px;
  129. --spacing-relative-3xl: 56px;
  130. --spacing-relative-4xl: 72px;
  131. --spacing-relative-5xl: 88px;
  132. --spacing-relative-6xl: 104px;
  133. --spacing-relative-7xl: 128px;
  134. --spacing-relative-8xl: 168px;
  135. }
  136. @media (min-width: 1440px) {
  137. --spacing-relative-xl: 32px;
  138. --spacing-relative-2xl: 56px;
  139. --spacing-relative-3xl: 72px;
  140. --spacing-relative-4xl: 88px;
  141. --spacing-relative-5xl: 104px;
  142. --spacing-relative-6xl: 120px;
  143. --spacing-relative-7xl: 160px;
  144. --spacing-relative-8xl: 216px;
  145. }
  146. @media (min-width: 1920px) {
  147. --spacing-relative-xl: 40px;
  148. --spacing-relative-2xl: 72px;
  149. --spacing-relative-3xl: 88px;
  150. --spacing-relative-4xl: 104px;
  151. --spacing-relative-5xl: 120px;
  152. --spacing-relative-6xl: 136px;
  153. --spacing-relative-7xl: 176px;
  154. --spacing-relative-8xl: 248px;
  155. }
  156. }
  157. /*=================================================
  158. |컴포넌트 별 css
  159. |START
  160. =================================================*/
  161. /*=================================================
  162. |컴포넌트 별 css
  163. |END
  164. =================================================*/
  165. .radius--img--wrap {
  166. overflow: hidden;
  167. border-radius: 20px;
  168. }
  169. // 딜러 검색 드롭다운 스타일
  170. .dealer--search--section {
  171. width: 100%;
  172. max-width: 1920px;
  173. margin: 0 auto;
  174. padding: 80px 96px;
  175. background-color: hsla(216, 23%, 8%, 1);
  176. }
  177. .dealer--search--container {
  178. display: flex;
  179. flex-direction: column;
  180. gap: 48px;
  181. border-top: 1px solid rgba(252, 252, 253, 0.15);
  182. }
  183. .dealer--category--wrap {
  184. display: flex;
  185. flex-direction: column;
  186. }
  187. .dealer--category--title {
  188. font-size: 28px;
  189. font-weight: 600;
  190. margin: 0 0 24px 0;
  191. color: rgb(252, 252, 253);
  192. padding-bottom: 16px;
  193. border-bottom: 2px solid rgba(252, 252, 253, 0.3);
  194. }
  195. .dealer--region--item {
  196. border-bottom: 1px solid rgba(252, 252, 253, 0.15);
  197. }
  198. .dealer--region--header {
  199. width: 100%;
  200. display: flex;
  201. justify-content: space-between;
  202. align-items: center;
  203. padding: 20px 24px;
  204. background-color: transparent;
  205. border: none;
  206. color: rgb(252, 252, 253);
  207. cursor: pointer;
  208. transition: all 0.3s ease;
  209. &:hover {
  210. background-color: rgba(252, 252, 253, 0.05);
  211. }
  212. &.active {
  213. background-color: rgba(252, 252, 253, 0.08);
  214. }
  215. }
  216. .dealer--region--name {
  217. font-size: 18px;
  218. font-weight: 500;
  219. }
  220. .dealer--toggle--icon {
  221. font-size: 28px;
  222. line-height: 1;
  223. transition: transform 0.3s ease;
  224. }
  225. .dealer--list--content {
  226. padding: 0 24px 24px;
  227. animation: slideDown 0.3s ease;
  228. }
  229. @keyframes slideDown {
  230. from {
  231. opacity: 0;
  232. transform: translateY(-10px);
  233. }
  234. to {
  235. opacity: 1;
  236. transform: translateY(0);
  237. }
  238. }
  239. .dealer--list {
  240. list-style: none;
  241. padding: 0;
  242. padding-left: 10px;
  243. margin: 0;
  244. display: flex;
  245. flex-direction: column;
  246. gap: 0px;
  247. li {
  248. margin: 0;
  249. position: relative;
  250. &:before {
  251. content: '>';
  252. font-size: 12px;
  253. margin-right: 10px;
  254. }
  255. a {
  256. text-decoration: underline;
  257. }
  258. }
  259. }
  260. .dealer--link {
  261. display: inline-block;
  262. color: rgba(252, 252, 253, 0.7);
  263. text-decoration: none;
  264. font-size: 16px;
  265. transition: all 0.2s ease;
  266. padding: 8px 0;
  267. &:hover {
  268. color: rgb(252, 252, 253);
  269. text-decoration: underline;
  270. }
  271. }
  272. // 반응형 처리
  273. @media (max-width: 1024px) {
  274. .dealer--search--section {
  275. padding: 60px 48px;
  276. }
  277. .dealer--search--container {
  278. gap: 40px;
  279. }
  280. .dealer--category--title {
  281. font-size: 24px;
  282. margin-bottom: 20px;
  283. padding-bottom: 12px;
  284. }
  285. .dealer--region--header {
  286. padding: 16px 20px;
  287. }
  288. .dealer--region--name {
  289. font-size: 16px;
  290. }
  291. .dealer--list--content {
  292. padding: 0 20px 20px;
  293. }
  294. .dealer--list {
  295. gap: 6px;
  296. }
  297. }
  298. @media (max-width: 768px) {
  299. .dealer--search--section {
  300. padding: 40px 24px;
  301. }
  302. .dealer--search--container {
  303. gap: 32px;
  304. }
  305. .dealer--category--title {
  306. font-size: 20px;
  307. margin-bottom: 16px;
  308. padding-bottom: 10px;
  309. }
  310. .dealer--region--header {
  311. padding: 14px 16px;
  312. }
  313. .dealer--region--name {
  314. font-size: 15px;
  315. }
  316. .dealer--toggle--icon {
  317. font-size: 24px;
  318. }
  319. .dealer--list--content {
  320. padding: 0 16px 16px;
  321. }
  322. .dealer--list {
  323. gap: 6px;
  324. }
  325. .dealer--link {
  326. font-size: 14px;
  327. padding: 6px 0;
  328. }
  329. }
  330. // 딜러 검색 페이지 스타일
  331. .dealer--search--section {
  332. padding: 64px 96px;
  333. .dealer--search--container {
  334. margin: 0 auto;
  335. }
  336. .dealer--category--wrap {
  337. display: flex;
  338. flex-direction: column;
  339. //gap: 16px;
  340. }
  341. .dealer--region--item {
  342. border-bottom: 1px solid rgba(252, 252, 253, 0.1);
  343. }
  344. .dealer--region--header {
  345. width: 100%;
  346. display: flex;
  347. justify-content: space-between;
  348. align-items: center;
  349. padding: 24px 0;
  350. background: transparent;
  351. border: none;
  352. color: #fcfcfd;
  353. font-size: 24px;
  354. font-weight: 400;
  355. transition: all 0.3s;
  356. &:hover {
  357. color: rgba(252, 252, 253, 0.7);
  358. }
  359. &.active {
  360. color: #fcfcfd;
  361. }
  362. }
  363. .dealer--region--name {
  364. font-size: 24px;
  365. }
  366. .dealer--toggle--icon {
  367. font-size: 32px;
  368. line-height: 1;
  369. font-weight: 300;
  370. }
  371. .dealer--list--content {
  372. padding-bottom: 24px;
  373. }
  374. .dealer--list {
  375. display: flex;
  376. flex-direction: column;
  377. gap: 16px;
  378. >li {
  379. list-style: none;
  380. }
  381. }
  382. .dealer--link {
  383. display: inline-block;
  384. color: rgba(252, 252, 253, 0.7);
  385. font-size: 16px;
  386. text-decoration: underline;
  387. text-underline-offset: 4px;
  388. transition: all 0.3s;
  389. background: transparent;
  390. border: none;
  391. font-weight: 400;
  392. padding: 0;
  393. cursor: pointer;
  394. &:hover {
  395. color: #fcfcfd;
  396. }
  397. }
  398. }
  399. // 딜러 팝업 스타일
  400. .dealer--popup--overlay {
  401. position: fixed;
  402. top: 0;
  403. left: 0;
  404. width: 100%;
  405. height: 100%;
  406. background-color: rgba(0, 0, 0, 0.5);
  407. display: flex;
  408. justify-content: center;
  409. align-items: center;
  410. z-index: 9999;
  411. padding: 20px;
  412. }
  413. .dealer--popup--container {
  414. position: relative;
  415. background-color: #ffffff;
  416. border-radius: 20px;
  417. max-width: 1024px;
  418. width: 100%;
  419. max-height: 90vh;
  420. overflow-y: auto;
  421. box-shadow: 0 24px 48px rgba(0, 0, 0, 0.15);
  422. &::-webkit-scrollbar {
  423. width: 8px;
  424. }
  425. &::-webkit-scrollbar-track {
  426. background: transparent;
  427. }
  428. &::-webkit-scrollbar-thumb {
  429. background: rgba(0, 0, 0, 0.2);
  430. border-radius: 4px;
  431. &:hover {
  432. background: rgba(0, 0, 0, 0.3);
  433. }
  434. }
  435. @media (min-width: 320px) {
  436. padding: 16px;
  437. }
  438. @media (min-width: 375px) {
  439. padding: 28px;
  440. }
  441. @media (min-width: 768px) {
  442. padding: 48px;
  443. }
  444. @media (min-width: 1024px) {
  445. padding: 56px;
  446. }
  447. @media (min-width: 1440px) {
  448. padding: 64px;
  449. }
  450. }
  451. .dealer--popup--close {
  452. position: absolute;
  453. top: 24px;
  454. right: 24px;
  455. width: 40px;
  456. height: 40px;
  457. background: transparent;
  458. border: none;
  459. cursor: pointer;
  460. z-index: 1;
  461. display: flex;
  462. justify-content: center;
  463. align-items: center;
  464. border-radius: 50%;
  465. transition: all 0.3s;
  466. &:hover {
  467. background-color: rgba(0, 0, 0, 0.05);
  468. }
  469. .close--icon {
  470. width: 24px;
  471. height: 24px;
  472. position: relative;
  473. &::before,
  474. &::after {
  475. content: '';
  476. position: absolute;
  477. top: 50%;
  478. left: 50%;
  479. width: 20px;
  480. height: 2px;
  481. background-color: #333333;
  482. }
  483. &::before {
  484. transform: translate(-50%, -50%) rotate(45deg);
  485. }
  486. &::after {
  487. transform: translate(-50%, -50%) rotate(-45deg);
  488. }
  489. }
  490. }
  491. .dealer--popup--content {
  492. margin: auto;
  493. max-width: var(--max-content-width);
  494. display: grid;
  495. grid-template-columns: 1fr;
  496. grid-template-rows: 1fr;
  497. grid-template-areas: "media" "textarea";
  498. padding: var(--spacing-relative-xl) var(--spacing-relative-md);
  499. @media (min-width: 1024px) {
  500. grid-template-columns: 1fr 1fr;
  501. grid-template-areas: "media textarea";
  502. }
  503. @media (min-width: 1440px) {
  504. grid-template-columns: 1fr 1fr;
  505. grid-template-areas: "media textarea";
  506. }
  507. .dealer--thumb--wrap {
  508. border-radius: 20px;
  509. overflow: hidden;
  510. }
  511. .dealer--infos--wrap {
  512. grid-area: textarea;
  513. align-self: center;
  514. @media screen and (min-width: 320px) {
  515. padding-block-start: var(--spacing-relative-lg);
  516. }
  517. @media screen and (min-width: 1024px) {
  518. display: flex;
  519. flex-direction: column;
  520. -webkit-box-pack: center;
  521. justify-content: center;
  522. align-items: flex-start;
  523. padding-inline-start: var(--spacing-relative-2xl);
  524. padding-inline-end: var(--spacing-relative-2xl);
  525. padding-block-start: 0px;
  526. }
  527. }
  528. }
  529. .dealer--popup--header {
  530. .dealer--name {
  531. margin: 0px;
  532. color: #1a1a1a;
  533. letter-spacing: 0px;
  534. font-weight: 400;
  535. text-decoration: none;
  536. font-size: 24px;
  537. line-height: 36px;
  538. font-stretch: 130%;
  539. @media (min-width: 1024px) {
  540. font-size: 28px;
  541. line-height: 40px;
  542. }
  543. @media (min-width: 1440px) {
  544. font-size: 32px;
  545. line-height: 44px;
  546. }
  547. @media (min-width: 1920px) {
  548. font-size: 36px;
  549. line-height: 52px;
  550. }
  551. }
  552. .dealer--type {
  553. display: inline-block;
  554. font-size: 14px;
  555. color: #666666;
  556. padding: 4px 12px;
  557. background-color: rgba(0, 0, 0, 0.05);
  558. border-radius: 100px;
  559. }
  560. }
  561. .dealer--popup--body {
  562. display: flex;
  563. flex-direction: column;
  564. gap: 8px;
  565. padding-top: 8px;
  566. }
  567. .dealer--info--section {
  568. display: flex;
  569. flex-direction: column;
  570. gap: 8px;
  571. .info--label {
  572. margin: 0px;
  573. color: #666666;
  574. letter-spacing: 0px;
  575. font-weight: 400;
  576. text-decoration: none;
  577. font-size: 16px;
  578. line-height: 24px;
  579. font-stretch: 105%;
  580. a {
  581. word-break: break-all;
  582. }
  583. }
  584. .phone--link,
  585. .email--link,
  586. .website--link {
  587. color: #2563eb;
  588. text-decoration: underline;
  589. text-underline-offset: 4px;
  590. transition: all 0.3s;
  591. &:hover {
  592. color: #1d4ed8;
  593. }
  594. }
  595. .business--hours--item {
  596. line-height: 1.8;
  597. }
  598. }
  599. .dealer--popup--footer {
  600. margin-top: 40px;
  601. padding-top: 24px;
  602. border-top: 1px solid #e0e0e0;
  603. display: flex;
  604. justify-content: center;
  605. }
  606. .dealer--popup--empty {
  607. padding: 80px 48px;
  608. text-align: center;
  609. >p {
  610. font-size: 16px;
  611. color: #666666;
  612. }
  613. }
  614. // 팝업 페이드 애니메이션
  615. .dealer--popup--fade-enter-active,
  616. .dealer--popup--fade-leave-active {
  617. transition: opacity 0.3s ease;
  618. .dealer--popup--container {
  619. transition: transform 0.3s ease, opacity 0.3s ease;
  620. }
  621. }
  622. .dealer--popup--fade-enter-from,
  623. .dealer--popup--fade-leave-to {
  624. opacity: 0;
  625. .dealer--popup--container {
  626. transform: scale(0.95);
  627. opacity: 0;
  628. }
  629. }
  630. .dealer--popup--fade-enter-to,
  631. .dealer--popup--fade-leave-from {
  632. opacity: 1;
  633. .dealer--popup--container {
  634. transform: scale(1);
  635. opacity: 1;
  636. }
  637. }
  638. /*=================================================
  639. |버튼 리스트 css
  640. |end
  641. =================================================*/
  642. header {
  643. position: sticky;
  644. top: 0px;
  645. z-index: 1000;
  646. background-color: #ffffff;
  647. border-bottom: 1px solid #E9E9E9;
  648. .header--wrap {
  649. max-width: 1440px;
  650. // padding:25px 0px;
  651. background-color: #fff;
  652. align-items: center;
  653. margin: 0 auto;
  654. display: flex;
  655. justify-content: space-between;
  656. position: relative;
  657. z-index: 1001;
  658. nav {
  659. display: flex;
  660. align-items: center;
  661. >ul {
  662. display: flex;
  663. align-items: center;
  664. >li {
  665. width: 200px;
  666. white-space: nowrap;
  667. height: 90px;
  668. display: flex;
  669. position: relative;
  670. align-items: center;
  671. justify-content: center;
  672. cursor: pointer;
  673. >a {
  674. width: 100%;
  675. color: #222;
  676. text-align: center;
  677. // padding: 0 60px;
  678. display: inline-block;
  679. font-size: 16px;
  680. font-style: normal;
  681. font-weight: 700 !important;
  682. text-transform: uppercase;
  683. transition: color 0.3s;
  684. &:hover {
  685. color: #076FED;
  686. }
  687. }
  688. &:hover {
  689. .sub--menu--wrap {
  690. max-height: 550px;
  691. }
  692. }
  693. .sub--menu--wrap {
  694. max-height: 0px;
  695. overflow: hidden;
  696. transition: max-height 0.3s;
  697. background-color: #fff;
  698. top: 90.5px;
  699. &.sub1 {
  700. position: fixed;
  701. border-bottom-left-radius: 30px;
  702. border-bottom-right-radius: 30px;
  703. max-width: 1440px;
  704. left: 50%;
  705. transform: translateX(-50%);
  706. width: 100%;
  707. >div {
  708. padding: 60px 0;
  709. display: flex;
  710. justify-content: center;
  711. align-items: center;
  712. gap: 70px;
  713. &.active {
  714. max-height: 300px;
  715. }
  716. li {
  717. a {
  718. display: flex;
  719. gap: 25px;
  720. flex-direction: column;
  721. max-width: 180px;
  722. text-align: center;
  723. color: #000;
  724. font-size: 16px;
  725. font-weight: 500;
  726. text-transform: uppercase;
  727. img {
  728. transition: all 0.3s;
  729. }
  730. &:hover {
  731. color: #076fed;
  732. img {
  733. transform: scale(1.1);
  734. }
  735. }
  736. }
  737. }
  738. }
  739. }
  740. &.sub2 {
  741. position: absolute;
  742. border-bottom-left-radius: 20px;
  743. border-bottom-right-radius: 20px;
  744. width: 280px;
  745. left: calc(50% - 140px);
  746. >div {
  747. padding: 20px 40px;
  748. display: flex;
  749. flex-direction: column;
  750. //height: 550px;
  751. line-height: 1;
  752. li {
  753. a {
  754. cursor: pointer;
  755. color: #000;
  756. padding: 20px 0;
  757. font-size: 16px;
  758. font-weight: 500;
  759. display: flex;
  760. justify-content: space-between;
  761. align-items: center;
  762. transition: color 0.3s;
  763. &:hover {
  764. color: #076fed;
  765. }
  766. }
  767. }
  768. }
  769. }
  770. &.sub3 {
  771. position: absolute;
  772. border-bottom-left-radius: 20px;
  773. border-bottom-right-radius: 20px;
  774. width: 280px;
  775. left: calc(50% - 140px);
  776. //left: -32px;
  777. transition: all 0.3s;
  778. &:has(.active) {
  779. width: 630px;
  780. }
  781. &.h--200 {
  782. >div {
  783. height: 320px;
  784. }
  785. }
  786. &.h--400 {
  787. >div {
  788. height: 432px;
  789. }
  790. }
  791. >div {
  792. height: 375px;
  793. // max-height: 550px;
  794. background-color: #fff;
  795. position: relative;
  796. .sub--menu--left {
  797. width: 280px;
  798. padding: 20px 40px;
  799. line-height: 1;
  800. li {
  801. padding: 20px 0;
  802. cursor: pointer;
  803. color: #000;
  804. font-size: 16px;
  805. font-weight: 500;
  806. display: flex;
  807. justify-content: space-between;
  808. align-items: center;
  809. transition: color 0.3s;
  810. &:hover,
  811. &.active {
  812. color: #076fed;
  813. .ico {
  814. background-image: url(/img/ico--header--arrow--blue.svg);
  815. }
  816. }
  817. .ico {
  818. width: 18px;
  819. background-image: url(/img/ico--header--arrow.svg);
  820. height: 18px;
  821. }
  822. }
  823. }
  824. .sub--menu--right {
  825. position: absolute;
  826. left: 280px;
  827. border-left: 1px solid #E5E5E5;
  828. width: 350px;
  829. padding: 40px 35px;
  830. height: 100%;
  831. top: 0;
  832. >div {
  833. opacity: 0;
  834. transition: opacity 0.3s;
  835. display: none;
  836. pointer-events: none;
  837. flex-direction: column;
  838. gap: 40px;
  839. li {
  840. line-height: 1;
  841. a {
  842. display: inline-block;
  843. color: #333;
  844. font-size: 16px;
  845. font-weight: 400;
  846. width: 100%;
  847. transition: all 0.3s;
  848. &:hover {
  849. color: #076fed;
  850. }
  851. }
  852. }
  853. &.active {
  854. display: flex;
  855. pointer-events: all;
  856. opacity: 1;
  857. }
  858. }
  859. }
  860. }
  861. }
  862. }
  863. }
  864. }
  865. }
  866. }
  867. }
  868. footer {
  869. width: 100%;
  870. //--one-footer-color-black: hsla(216, 26%, 1%, 1);
  871. --one-footer-color-white: hsla(216, 33%, 99%, 1);
  872. --one-footer-neutral-5: hsla(216, 26%, 1%, 0.6);
  873. --one-footer-neutral-10: hsla(216, 17%, 26%, 1);
  874. --one-footer-neutral-20: hsla(216, 14%, 35%, 1);
  875. --one-footer-neutral-70: hsla(216, 33%, 99%, 0.6);
  876. --one-footer-side-spacing: 16px;
  877. --one-footer-space-xs: var(--spacing-relative-xs);
  878. --one-footer-space-s: var(--spacing-relative-sm);
  879. --one-footer-space-m: var(--spacing-relative-md);
  880. --one-footer-space-l: var(--spacing-relative-lg);
  881. --one-footer-space-xl: var(--spacing-relative-xl);
  882. --one-footer-space-xxl: var(--spacing-relative-2xl);
  883. --one-footer-space-xxxl: var(--spacing-relative-3xl);
  884. background: var(--one-footer-color-black);
  885. box-sizing: border-box;
  886. color: var(--one-footer-color-white);
  887. @media (min-width: 375px) {
  888. --one-footer-side-spacing: 28px;
  889. }
  890. @media (min-width: 768px) {
  891. --one-footer-side-spacing: 40px;
  892. }
  893. @media (min-width: 1024px) {
  894. --one-footer-side-spacing: 60px;
  895. }
  896. .footer--wrap {
  897. max-width: 1440px;
  898. width: 100%;
  899. margin: 0 auto;
  900. display: flex;
  901. flex-direction: column;
  902. .footer--site--map {
  903. width: 100%;
  904. max-width: 1440px;
  905. margin: 0 auto;
  906. padding: 70px 0px 40px;
  907. >ul {
  908. display: block;
  909. list-style: none;
  910. row-gap: 40px;
  911. padding: 0px;
  912. width: 100%;
  913. @media (min-width: 768px) {
  914. display: flex;
  915. flex-flow: wrap;
  916. width: 100%;
  917. }
  918. >li {
  919. margin-bottom: -1px;
  920. @media (min-width: 768px) {
  921. //margin: 0px 24px 40px 0px;
  922. width: calc(33.333%);
  923. &:first-of-type {
  924. margin-top: 0px;
  925. }
  926. >h2 {
  927. border: none !important;
  928. }
  929. >ul {
  930. >h3 {
  931. color: #E9E9E9;
  932. font-size: 14px;
  933. font-style: normal;
  934. font-weight: 500;
  935. line-height: 100%;
  936. /* 14px */
  937. text-transform: uppercase;
  938. display: flex;
  939. }
  940. >li {
  941. padding-left: 0;
  942. padding-right: 0;
  943. margin-bottom: 25px;
  944. a {
  945. color: #E9E9E9;
  946. font-size: 14px;
  947. font-style: normal;
  948. font-weight: 500;
  949. line-height: 100%;
  950. /* 14px */
  951. text-transform: uppercase;
  952. display: flex;
  953. }
  954. }
  955. }
  956. }
  957. @media (min-width: 1440px) {
  958. width: calc(100% / 6);
  959. }
  960. >h2 {
  961. color: var(--one-footer-color-white);
  962. display: flex;
  963. flex-flow: row;
  964. -webkit-box-pack: justify;
  965. justify-content: space-between;
  966. padding: var(--one-footer-space-m) 20px;
  967. width: 100%;
  968. margin: 0px;
  969. color: #FFF;
  970. font-size: 18px;
  971. font-style: normal;
  972. font-weight: 700;
  973. line-height: 100%;
  974. /* 18px */
  975. text-transform: uppercase;
  976. text-decoration: none;
  977. border-top: 1px solid #4A4A4A;
  978. border-bottom: 1px solid #4A4A4A;
  979. @media (min-width: 768px) {
  980. padding: 0px;
  981. width: auto;
  982. margin-bottom: 30px;
  983. }
  984. @media (min-width: 1440px) {
  985. font-size: 18px;
  986. line-height: 28px;
  987. }
  988. @media (min-width: 1920px) {
  989. font-size: 20px;
  990. line-height: 32px;
  991. }
  992. }
  993. }
  994. }
  995. }
  996. }
  997. }
  998. // ============================================
  999. // Admin Panel Dark Theme Styles
  1000. // ============================================
  1001. // Light Theme Color Variables
  1002. :root {
  1003. --admin-yellow: #e8b546;
  1004. --admin-red: #E85D3F;
  1005. --admin-blue: #3c80f2;
  1006. --admin-bg-navy: #1a2332;
  1007. --admin-bg-primary: rgba(246, 247, 248, 1);
  1008. --admin-bg-secondary: #ffffff;
  1009. --admin-bg-tertiary: #f6f7f8;
  1010. --admin-text-primary: #181d29;
  1011. --admin-text-secondary: #666b75;
  1012. --admin-text-muted: #a8adb8;
  1013. --admin-border-color: #e0e0e0;
  1014. --admin-accent-primary: #1A2332;
  1015. --admin-accent-hover: #1A2332;
  1016. --admin-success: #10b981;
  1017. --admin-warning: #f59e0b;
  1018. --admin-error: #ef4444;
  1019. --admin-shadow: rgba(0, 0, 0, 0.1);
  1020. }
  1021. // Admin Login Page
  1022. .admin--login {
  1023. min-height: 100vh;
  1024. width: 100%;
  1025. min-width: 1680px;
  1026. background: var(--admin-bg-primary);
  1027. .login--container {
  1028. display: flex;
  1029. width: 100%;
  1030. min-width: 1680px;
  1031. min-height: 100vh;
  1032. }
  1033. // 왼쪽 영역 (50%) - 로고 + 설명
  1034. .login--layout {
  1035. flex: 0 0 50%;
  1036. max-width: 50%;
  1037. min-height: 100vh;
  1038. background: #1A2332;
  1039. color: #fcfcfd;
  1040. display: flex;
  1041. align-items: center;
  1042. justify-content: center;
  1043. padding: 80px 96px;
  1044. position: relative;
  1045. overflow: hidden;
  1046. &::before {
  1047. content: '';
  1048. position: absolute;
  1049. top: -200px;
  1050. right: -200px;
  1051. width: 600px;
  1052. height: 600px;
  1053. border-radius: 50%;
  1054. opacity: 0.08;
  1055. background: var(--admin-yellow);
  1056. pointer-events: none;
  1057. }
  1058. &::after {
  1059. content: '';
  1060. position: absolute;
  1061. bottom: 100px;
  1062. left: 80px;
  1063. width: 300px;
  1064. height: 300px;
  1065. border-radius: 50%;
  1066. background: #e85c3f;
  1067. opacity: 0.08;
  1068. pointer-events: none;
  1069. }
  1070. .login--layout-inner {
  1071. position: relative;
  1072. z-index: 1;
  1073. width: 100%;
  1074. max-width: 560px;
  1075. display: flex;
  1076. flex-direction: column;
  1077. gap: 48px;
  1078. }
  1079. .login--brand {
  1080. display: flex;
  1081. gap: 16px;
  1082. align-items: center;
  1083. .login--brand--logo{
  1084. width: 56px;
  1085. height: 56px;
  1086. border-radius: 12px;
  1087. background-color: var(--admin-yellow);
  1088. font-size: 28px;
  1089. text-align: center;
  1090. display: flex;
  1091. align-items: center;
  1092. justify-content: center;
  1093. }
  1094. .login--brand-title {
  1095. font-size: 22px;
  1096. font-weight: 600;
  1097. color: #fcfcfd;
  1098. letter-spacing: -0.11px;
  1099. }
  1100. .login--brand-tagline {
  1101. font-size: 10px;
  1102. letter-spacing: 1px;
  1103. text-transform: uppercase;
  1104. color: var(--admin-yellow);
  1105. margin: 0;
  1106. font-weight: 500;
  1107. }
  1108. }
  1109. .login--deco--line{
  1110. position: relative;
  1111. width: 240px;
  1112. height: 240px;
  1113. margin: 0 auto;
  1114. .circle1{
  1115. position: absolute;
  1116. width: 100%;
  1117. height: 100%;
  1118. border-radius: 50%;
  1119. border: 1.5px solid var(--admin-yellow);
  1120. opacity: 0.3;
  1121. }
  1122. .circle2{
  1123. position: absolute;
  1124. width: 160px;
  1125. height: 160px;
  1126. top: calc(50% - 80px);
  1127. left: calc(50% - 80px);
  1128. border-radius: 50%;
  1129. border: 1px solid var(--admin-yellow);
  1130. opacity: 0.3;
  1131. }
  1132. .circle3{
  1133. font-size: 100px;
  1134. width: 160px;
  1135. height: 160px;
  1136. position: absolute;
  1137. top: calc(50% - 80px);
  1138. left: calc(50% - 80px);
  1139. display: flex;
  1140. align-items: center;
  1141. justify-content: center;
  1142. }
  1143. }
  1144. .login--intro {
  1145. .login--intro-title {
  1146. font-size: 36px;
  1147. font-weight: 600;
  1148. color: #fff;
  1149. }
  1150. .login--intro-desc {
  1151. font-size: 14px;
  1152. letter-spacing: 2.1px;
  1153. line-height: 1.7;
  1154. margin-bottom: 15px;
  1155. color: var(--admin-yellow);
  1156. }
  1157. .login--intro-list {
  1158. color: #b2bdcc;
  1159. font-size: 13px;
  1160. font-weight: 400;
  1161. }
  1162. }
  1163. .login--copyright {
  1164. font-size: 13px;
  1165. color: rgba(252, 252, 253, 0.4);
  1166. letter-spacing: 0.5px;
  1167. }
  1168. }
  1169. // 오른쪽 영역 (50%) - 로그인 폼
  1170. .login--panel {
  1171. flex: 0 0 50%;
  1172. max-width: 50%;
  1173. min-height: 100vh;
  1174. display: flex;
  1175. align-items: center;
  1176. justify-content: center;
  1177. padding: 80px 96px;
  1178. background: var(--admin-bg-secondary);
  1179. }
  1180. .login--box {
  1181. width: 100%;
  1182. max-width: 480px;
  1183. background: var(--admin-bg-secondary);
  1184. padding: 0;
  1185. border: none;
  1186. box-shadow: none;
  1187. border-radius: 0;
  1188. }
  1189. .login--logo {
  1190. margin-bottom: 48px;
  1191. > span{
  1192. color: var(--admin-yellow);
  1193. font-size: 12px;
  1194. font-weight: 700;
  1195. letter-spacing: 0.96px;
  1196. }
  1197. h1 {
  1198. font-size: 40px;
  1199. font-weight: 700;
  1200. color: var(--admin-text-primary);
  1201. margin: 0 0 8px 0;
  1202. }
  1203. .subtitle {
  1204. font-size: 14px;
  1205. color: var(--admin-text-secondary);
  1206. margin: 0;
  1207. }
  1208. }
  1209. .login--error {
  1210. background: rgba(239, 68, 68, 0.1);
  1211. border: 1px solid var(--admin-error);
  1212. color: var(--admin-error);
  1213. padding: 12px 16px;
  1214. border-radius: 6px;
  1215. margin-bottom: 20px;
  1216. font-size: 14px;
  1217. }
  1218. .login--form {
  1219. .form--group {
  1220. margin-bottom: 20px;
  1221. }
  1222. .form--input {
  1223. width: 100%;
  1224. padding: 14px 16px;
  1225. background: var(--admin-bg-tertiary);
  1226. border: 1px solid var(--admin-border-color);
  1227. border-radius: 6px;
  1228. color: var(--admin-text-primary);
  1229. font-size: 14px;
  1230. transition: all 0.3s ease;
  1231. &:focus {
  1232. outline: none;
  1233. border-color: var(--admin-accent-primary);
  1234. box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  1235. }
  1236. &::placeholder {
  1237. color: var(--admin-text-muted);
  1238. }
  1239. &:disabled {
  1240. opacity: 0.5;
  1241. cursor: not-allowed;
  1242. }
  1243. }
  1244. .form--options {
  1245. display: flex;
  1246. justify-content: space-between;
  1247. align-items: center;
  1248. margin-bottom: 24px;
  1249. .checkbox--label {
  1250. display: flex;
  1251. align-items: center;
  1252. cursor: pointer;
  1253. font-size: 14px;
  1254. color: var(--admin-text-secondary);
  1255. input[type="checkbox"] {
  1256. margin-right: 8px;
  1257. cursor: pointer;
  1258. }
  1259. }
  1260. .forgot--password {
  1261. font-size: 14px;
  1262. color: var(--admin-accent-primary);
  1263. text-decoration: none;
  1264. transition: color 0.3s ease;
  1265. &:hover {
  1266. color: var(--admin-accent-hover);
  1267. }
  1268. }
  1269. }
  1270. .login--button {
  1271. width: 100%;
  1272. height: 56px;
  1273. line-height: 56px;
  1274. background: var(--admin-accent-primary);
  1275. color: var(--admin-yellow);
  1276. border: none;
  1277. border-radius: 10px;
  1278. font-size: 15px;
  1279. font-weight: 600;
  1280. cursor: pointer;
  1281. transition: all 0.3s ease;
  1282. &:hover:not(:disabled) {
  1283. background: var(--admin-accent-hover);
  1284. transform: translateY(-2px);
  1285. box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  1286. }
  1287. &:active:not(:disabled) {
  1288. transform: translateY(0);
  1289. }
  1290. &:disabled {
  1291. opacity: 0.6;
  1292. cursor: not-allowed;
  1293. }
  1294. }
  1295. }
  1296. .login--footer {
  1297. margin-top: 32px;
  1298. text-align: center;
  1299. p {
  1300. font-size: 12px;
  1301. color: var(--admin-text-muted);
  1302. margin: 0;
  1303. }
  1304. }
  1305. }
  1306. // Admin Layout
  1307. .admin--layout {
  1308. background: var(--admin-bg-primary);
  1309. }
  1310. // Admin Header
  1311. .admin--header {
  1312. position: fixed;
  1313. top: 0;
  1314. left: 240px;
  1315. right: 0;
  1316. height: 64px;
  1317. background: var(--admin-bg-secondary);
  1318. border-bottom: 1px solid var(--admin-border-color);
  1319. display: flex;
  1320. justify-content: space-between;
  1321. align-items: center;
  1322. padding: 0 32px;
  1323. z-index: 1000;
  1324. .admin--header-left {
  1325. display: flex;
  1326. flex-direction: column;
  1327. h1 {
  1328. font-size: 18px;
  1329. font-weight: 700;
  1330. color: var(--admin-text-primary);
  1331. margin: 0;
  1332. }
  1333. }
  1334. .admin--header-right {
  1335. display: flex;
  1336. gap: 12px;
  1337. }
  1338. .admin--header-btn {
  1339. padding: 8px 20px;
  1340. background: var(--admin-bg-tertiary);
  1341. color: var(--admin-text-primary);
  1342. border: 1px solid var(--admin-border-color);
  1343. border-radius: 6px;
  1344. font-size: 14px;
  1345. font-weight: 500;
  1346. cursor: pointer;
  1347. transition: all 0.3s ease;
  1348. &:hover {
  1349. background: var(--admin-bg-primary);
  1350. border-color: var(--admin-accent-primary);
  1351. }
  1352. &.admin--header-btn-logout {
  1353. background: var(--admin-accent-primary);
  1354. border-color: var(--admin-accent-primary);
  1355. color: #ffffff !important;
  1356. &:hover {
  1357. background: var(--admin-accent-hover);
  1358. border-color: var(--admin-accent-hover);
  1359. color: #ffffff !important;
  1360. }
  1361. }
  1362. }
  1363. }
  1364. // Admin Content Wrapper
  1365. .admin--content--wrapper {
  1366. display: flex;
  1367. margin-top: 64px;
  1368. min-height: calc(100vh - 64px);
  1369. }
  1370. // Admin Sidebar
  1371. .admin--sidebar {
  1372. width: 240px;
  1373. position: fixed;
  1374. left: 0;
  1375. top: 0px;
  1376. bottom: 0;
  1377. overflow-y: auto;
  1378. background-color: var(--admin-bg-navy);
  1379. padding: 24px 16px;
  1380. .admin--brand{
  1381. display: flex;
  1382. gap: 12px;
  1383. align-items: center;
  1384. .brand--logo{
  1385. width: 36px;
  1386. height: 36px;
  1387. border-radius: 8px;
  1388. display: flex;
  1389. align-items: center;
  1390. justify-content: center;
  1391. text-align: center;
  1392. background-color: var(--admin-yellow);
  1393. }
  1394. .brand--title{
  1395. color: #fff;
  1396. font-size: 15px;
  1397. display: flex;
  1398. flex-direction: column;
  1399. font-weight: 700;
  1400. span{
  1401. color: var(--admin-yellow);
  1402. font-size: 10px;
  1403. font-weight: 600;
  1404. letter-spacing: 1.2px;
  1405. }
  1406. }
  1407. }
  1408. &::-webkit-scrollbar {
  1409. width: 6px;
  1410. }
  1411. &::-webkit-scrollbar-track {
  1412. background: var(--admin-bg-primary);
  1413. }
  1414. &::-webkit-scrollbar-thumb {
  1415. background: var(--admin-border-color);
  1416. border-radius: 3px;
  1417. &:hover {
  1418. background: var(--admin-text-muted);
  1419. }
  1420. }
  1421. }
  1422. // Admin GNB
  1423. .admin--gnb {
  1424. margin-top: 28px;
  1425. .admin--gnb-group {
  1426. margin-bottom: 8px;
  1427. }
  1428. .admin--gnb-title {
  1429. padding: 12px 24px;
  1430. font-size: 13px;
  1431. font-weight: 400;
  1432. color: var(--admin-text-muted);
  1433. cursor: pointer;
  1434. display: flex;
  1435. justify-content: space-between;
  1436. align-items: center;
  1437. transition: all 0.3s ease;
  1438. user-select: none;
  1439. font-weight: 400;
  1440. &:has(.admin--gnb-arrow.is-open){
  1441. color: #fff;
  1442. font-weight: 600;
  1443. }
  1444. &:hover {
  1445. color: #fff;
  1446. }
  1447. .admin--gnb-arrow {
  1448. font-size: 10px;
  1449. transition: transform 0.3s ease;
  1450. &.is-open {
  1451. transform: rotate(-180deg);
  1452. }
  1453. }
  1454. }
  1455. // children 없는 단일 링크 메뉴
  1456. .admin--gnb-title-link {
  1457. position: relative;
  1458. border-radius: 6px;
  1459. color: var(--admin-text-muted);
  1460. font-size: 13px;
  1461. font-weight: 400;
  1462. &.is-active {
  1463. color: #fff;
  1464. background: #262f40;
  1465. font-weight: 600;
  1466. &::before{
  1467. content: '';
  1468. display: inline-block;
  1469. position: absolute;
  1470. top: 0;
  1471. left: 0;
  1472. height: 100%;
  1473. width: 3px;
  1474. border-radius: 6px;
  1475. background-color: var(--admin-yellow);
  1476. }
  1477. }
  1478. }
  1479. .admin--gnb-submenu {
  1480. list-style: none;
  1481. padding: 0;
  1482. margin: 0;
  1483. }
  1484. .admin--gnb-item {
  1485. position: relative;
  1486. border-radius: 6px;
  1487. color: var(--admin-text-muted);
  1488. font-size: 13px;
  1489. font-weight: 400;
  1490. &.is-active {
  1491. .admin--gnb-link {
  1492. color: #fff;
  1493. background: #262f40;
  1494. font-weight: 600;
  1495. &::before{
  1496. content: '';
  1497. display: inline-block;
  1498. position: absolute;
  1499. top: 0;
  1500. left: 20px;
  1501. height: 100%;
  1502. width: 3px;
  1503. border-radius: 6px;
  1504. background-color: var(--admin-yellow);
  1505. }
  1506. }
  1507. }
  1508. }
  1509. .admin--gnb-link {
  1510. display: block;
  1511. margin-left: 20px;
  1512. padding: 12px 24px;
  1513. font-size: 13px;
  1514. color: #78808c;
  1515. border-radius: 6px;
  1516. text-decoration: none;
  1517. transition: all 0.3s ease;
  1518. &:hover {
  1519. color: #fff;
  1520. background: #262f40;
  1521. }
  1522. }
  1523. }
  1524. // Submenu Animation
  1525. .admin--submenu-enter-active,
  1526. .admin--submenu-leave-active {
  1527. transition: all 0.3s ease;
  1528. overflow: hidden;
  1529. }
  1530. .admin--submenu-enter-from,
  1531. .admin--submenu-leave-to {
  1532. opacity: 0;
  1533. max-height: 0;
  1534. }
  1535. .admin--submenu-enter-to,
  1536. .admin--submenu-leave-from {
  1537. opacity: 1;
  1538. max-height: 500px;
  1539. }
  1540. // Admin Main Content
  1541. .admin--main {
  1542. flex: 1;
  1543. margin-left: 240px;
  1544. padding: 32px;
  1545. background: var(--admin-bg-primary);
  1546. }
  1547. // Admin Page Header
  1548. .admin--page-header {
  1549. display: flex;
  1550. justify-content: space-between;
  1551. align-items: center;
  1552. }
  1553. .admin--page-title {
  1554. font-size: 28px;
  1555. font-weight: 700;
  1556. color: var(--admin-text-primary);
  1557. margin: 0;
  1558. }
  1559. // Admin Breadcrumb
  1560. .admin--breadcrumb {
  1561. display: flex;
  1562. align-items: center;
  1563. font-size: 12px;
  1564. .admin--breadcrumb-link {
  1565. color: var(--admin-text-secondary);
  1566. text-decoration: none;
  1567. transition: color 0.3s ease;
  1568. &:hover {
  1569. color: var(--admin-accent-primary);
  1570. }
  1571. }
  1572. .admin--breadcrumb-current {
  1573. color: #666b75;
  1574. font-weight: 400;
  1575. }
  1576. .admin--breadcrumb-separator {
  1577. color: #666b75;
  1578. font-weight: 400;
  1579. }
  1580. }
  1581. // Admin Page Content
  1582. .admin--page-content {
  1583. background: var(--admin-bg-secondary);
  1584. border-radius: 8px;
  1585. padding: 24px;
  1586. border: 1px solid var(--admin-border-color);
  1587. .admin--sub--table--title{
  1588. display: flex;
  1589. justify-content: space-between;
  1590. margin-bottom: 25px;
  1591. color: #1a2b4a;
  1592. font-size: 16px;
  1593. font-weight: 700;
  1594. align-items: center;
  1595. .sub--table--info{
  1596. display: flex;
  1597. gap: 10px;
  1598. span{
  1599. padding: 4px 12px;
  1600. border-radius: 12px;
  1601. font-size: 12px;
  1602. font-weight: 600;
  1603. background-color: #E8F0FE;
  1604. color: #3c80f2;
  1605. &:last-child{
  1606. background-color: rgba(16, 185, 129, 0.1);
  1607. color: var(--admin-success);
  1608. }
  1609. }
  1610. }
  1611. }
  1612. }
  1613. // Admin Dashboard
  1614. .admin--dashboard {
  1615. .admin--dashboard-welcome {
  1616. margin-bottom: 32px;
  1617. h3 {
  1618. font-size: 24px;
  1619. color: var(--admin-text-primary);
  1620. margin: 0 0 8px 0;
  1621. }
  1622. p {
  1623. font-size: 14px;
  1624. color: var(--admin-text-secondary);
  1625. margin: 0;
  1626. }
  1627. }
  1628. .admin--dashboard-stats {
  1629. display: grid;
  1630. grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  1631. gap: 20px;
  1632. margin-bottom: 32px;
  1633. }
  1634. .admin--stat-card {
  1635. background: var(--admin-bg-tertiary);
  1636. border: 1px solid var(--admin-border-color);
  1637. border-radius: 8px;
  1638. padding: 24px;
  1639. display: flex;
  1640. align-items: center;
  1641. gap: 16px;
  1642. transition: all 0.3s ease;
  1643. &:hover {
  1644. border-color: var(--admin-accent-primary);
  1645. transform: translateY(-2px);
  1646. box-shadow: 0 4px 12px var(--admin-shadow);
  1647. }
  1648. .admin--stat-icon {
  1649. font-size: 36px;
  1650. }
  1651. .admin--stat-content {
  1652. flex: 1;
  1653. h4 {
  1654. font-size: 14px;
  1655. color: var(--admin-text-secondary);
  1656. margin: 0 0 8px 0;
  1657. font-weight: 500;
  1658. }
  1659. .admin--stat-number {
  1660. font-size: 28px;
  1661. color: var(--admin-text-primary);
  1662. margin: 0;
  1663. font-weight: 700;
  1664. }
  1665. }
  1666. }
  1667. .admin--dashboard-recent {
  1668. h4 {
  1669. font-size: 18px;
  1670. color: var(--admin-text-primary);
  1671. margin: 0 0 16px 0;
  1672. }
  1673. .admin--recent-list {
  1674. background: var(--admin-bg-tertiary);
  1675. border: 1px solid var(--admin-border-color);
  1676. border-radius: 8px;
  1677. padding: 24px;
  1678. .admin--no-data {
  1679. text-align: center;
  1680. color: var(--admin-text-muted);
  1681. margin: 0;
  1682. }
  1683. }
  1684. }
  1685. }
  1686. // Admin Form Styles
  1687. .admin--form {
  1688. .admin--form-group {
  1689. margin-bottom: 24px;
  1690. }
  1691. .admin--form-label {
  1692. display: block;
  1693. font-size: 14px;
  1694. font-weight: 500;
  1695. color: var(--admin-text-primary);
  1696. margin-bottom: 8px;
  1697. .admin--required {
  1698. color: var(--admin-error);
  1699. margin-left: 4px;
  1700. }
  1701. }
  1702. .admin--form-input,
  1703. .admin--form-textarea,
  1704. .admin--form-select {
  1705. width: 100%;
  1706. padding: 12px;
  1707. background: #fff;
  1708. border: 1px solid var(--admin-border-color);
  1709. border-radius: 6px;
  1710. color: var(--admin-text-primary);
  1711. font-size: 13px;
  1712. transition: all 0.3s ease;
  1713. &:focus {
  1714. // outline: none;
  1715. // border-color: var(--admin-accent-primary);
  1716. // box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
  1717. }
  1718. &::placeholder {
  1719. color: var(--admin-text-muted);
  1720. }
  1721. &:disabled {
  1722. opacity: 0.5;
  1723. cursor: not-allowed;
  1724. background-color: var(--admin-bg-tertiary);
  1725. }
  1726. }
  1727. .admin--form-textarea {
  1728. min-height: 120px;
  1729. resize: vertical;
  1730. }
  1731. .admin--form-select {
  1732. cursor: pointer;
  1733. appearance: none;
  1734. -webkit-appearance: none;
  1735. -moz-appearance: none;
  1736. padding-right: 36px;
  1737. background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23666B75' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  1738. background-repeat: no-repeat;
  1739. background-position: right 12px center;
  1740. }
  1741. // 다중 입력 필드
  1742. .admin--multi-input-wrapper {
  1743. .admin--multi-input-item {
  1744. display: flex;
  1745. gap: 12px;
  1746. margin-bottom: 12px;
  1747. align-items: flex-start;
  1748. .admin--sender-row {
  1749. display: flex;
  1750. gap: 10px;
  1751. flex: 1;
  1752. }
  1753. .admin--form-input {
  1754. flex: 1;
  1755. }
  1756. .admin--btn-remove {
  1757. padding: 12px 20px;
  1758. background: var(--admin-error);
  1759. color: #fff;
  1760. border: none;
  1761. border-radius: 6px;
  1762. font-size: 14px;
  1763. font-weight: 500;
  1764. cursor: pointer;
  1765. transition: all 0.3s ease;
  1766. white-space: nowrap;
  1767. &:hover {
  1768. background: #dc2626;
  1769. }
  1770. }
  1771. }
  1772. .admin--btn-add {
  1773. padding: 10px 20px;
  1774. background: var(--admin-bg-tertiary);
  1775. color: var(--admin-text-secondary);
  1776. border: 1px dashed var(--admin-border-color);
  1777. border-radius: 6px;
  1778. font-size: 14px;
  1779. font-weight: 500;
  1780. cursor: pointer;
  1781. transition: all 0.3s ease;
  1782. &:hover {
  1783. background: var(--admin-bg-primary);
  1784. border-color: var(--admin-accent-primary);
  1785. color: var(--admin-text-primary);
  1786. }
  1787. }
  1788. }
  1789. // 폼 액션 버튼
  1790. .admin--form-actions {
  1791. display: flex;
  1792. gap: 12px;
  1793. margin-top: 32px;
  1794. padding-top: 24px;
  1795. border-top: 1px solid var(--admin-border-color);
  1796. }
  1797. .txt--btn{
  1798. color: #3c80f2;
  1799. font-weight: 600;
  1800. font-size: 14px;
  1801. cursor: pointer;
  1802. }
  1803. .admin--btn {
  1804. padding: 12px;
  1805. border: none;
  1806. border-radius: 4px;
  1807. font-size: 13px;
  1808. font-weight: 600;
  1809. cursor: pointer;
  1810. transition: all 0.3s ease;
  1811. min-width: 100px;
  1812. color: #666b75;
  1813. border: 1px solid #e8eaef;
  1814. &:disabled {
  1815. opacity: 0.5;
  1816. cursor: not-allowed;
  1817. }
  1818. }
  1819. .ml--auto{
  1820. margin-left: auto;
  1821. }
  1822. .mr--auto{
  1823. margin-right: auto;
  1824. }
  1825. .admin--btn-red{
  1826. background-color: #e85d3f;
  1827. color: #fff;
  1828. }
  1829. .admin--btn-blue{
  1830. background-color: #3c80f2;
  1831. color: #fff;
  1832. }
  1833. .admin--btn-red-border{
  1834. border-color: #e85d3f;
  1835. color: #e85d3f;
  1836. }
  1837. .admin--btn-primary {
  1838. background: var(--admin-accent-primary);
  1839. color: #ffffff;
  1840. &:hover:not(:disabled) {
  1841. background: var(--admin-accent-hover);
  1842. transform: translateY(-2px);
  1843. box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  1844. }
  1845. }
  1846. .admin--btn-secondary {
  1847. background: var(--admin-bg-tertiary);
  1848. color: var(--admin-text-primary);
  1849. border: 1px solid var(--admin-border-color);
  1850. &:hover:not(:disabled) {
  1851. background: var(--admin-bg-primary);
  1852. border-color: var(--admin-accent-primary);
  1853. }
  1854. }
  1855. // 알림 메시지
  1856. .admin--alert {
  1857. padding: 12px 16px;
  1858. border-radius: 6px;
  1859. margin-top: 20px;
  1860. font-size: 14px;
  1861. }
  1862. .admin--alert-success {
  1863. background: rgba(16, 185, 129, 0.1);
  1864. border: 1px solid var(--admin-success);
  1865. color: var(--admin-success);
  1866. }
  1867. .admin--alert-error {
  1868. background: rgba(239, 68, 68, 0.1);
  1869. border: 1px solid var(--admin-error);
  1870. color: var(--admin-error);
  1871. }
  1872. .admin--alert-warning {
  1873. background: rgba(245, 158, 11, 0.1);
  1874. border: 1px solid var(--admin-warning);
  1875. color: var(--admin-warning);
  1876. }
  1877. }
  1878. // 로딩
  1879. .admin--loading {
  1880. display: flex;
  1881. align-items: center;
  1882. justify-content: center;
  1883. padding: 60px 20px;
  1884. color: var(--admin-text-secondary);
  1885. font-size: 16px;
  1886. }
  1887. // 전역 로딩 오버레이
  1888. .admin--loading-overlay {
  1889. position: fixed;
  1890. top: 0;
  1891. left: 0;
  1892. right: 0;
  1893. bottom: 0;
  1894. background: rgba(0, 0, 0, 0.5);
  1895. display: flex;
  1896. align-items: center;
  1897. justify-content: center;
  1898. z-index: 99999;
  1899. }
  1900. // 스피너
  1901. .admin--spinner {
  1902. width: 50px;
  1903. height: 50px;
  1904. border: 4px solid rgba(255, 255, 255, 0.3);
  1905. border-top-color: #fff;
  1906. border-radius: 50%;
  1907. animation: admin-spin 0.8s linear infinite;
  1908. }
  1909. @keyframes admin-spin {
  1910. to {
  1911. transform: rotate(360deg);
  1912. }
  1913. }
  1914. // 검색 박스
  1915. .admin--search-box {
  1916. background: var(--admin-bg-secondary);
  1917. border: 1px solid var(--admin-border-color);
  1918. border-radius: 8px;
  1919. padding: 20px;
  1920. margin-bottom: 20px;
  1921. display: flex;
  1922. justify-content: space-between;
  1923. align-items: center;
  1924. gap: 20px;
  1925. &.type2{
  1926. flex-direction: column;
  1927. align-items: start;
  1928. gap: 8px;
  1929. }
  1930. .admin--search-actions{
  1931. display: flex;
  1932. margin-left: auto;
  1933. gap: 12px;
  1934. }
  1935. .admin--search--inner--box{
  1936. display: flex;
  1937. justify-content: space-between;
  1938. align-items: center;
  1939. width: 100%;
  1940. gap: 20px;
  1941. }
  1942. .admin--search-form {
  1943. display: flex;
  1944. gap: 12px;
  1945. align-items: center;
  1946. flex: 1;
  1947. .admin--quick-range{
  1948. display: flex;
  1949. gap: 8px;
  1950. .range--btn{
  1951. width: 60px;
  1952. font-weight: 400;
  1953. min-width: 60px;
  1954. padding: 12px 0;
  1955. color: #1a2b4a;
  1956. }
  1957. }
  1958. .admin--filter-radio{
  1959. display: flex;
  1960. gap: 6px;
  1961. .filter--btn{
  1962. width: 64px;
  1963. font-weight: 400;
  1964. min-width: 60px;
  1965. padding: 12px 0;
  1966. color: #1a2b4a;
  1967. transition: all 0.15s ease;
  1968. &.is-active{
  1969. background: var(--admin-accent-primary);
  1970. color: #fff;
  1971. border-color: var(--admin-accent-primary);
  1972. }
  1973. }
  1974. }
  1975. }
  1976. // 검색 박스 내 모든 select, input 통일된 스타일
  1977. .admin--search-select,
  1978. .admin--form-select,
  1979. .admin--form-input,
  1980. .admin--search-input {
  1981. border: 1px solid #e8eaef !important;
  1982. border-radius: 4px;
  1983. padding: 12px;
  1984. font-size: 13px !important;
  1985. background-color: #fff;
  1986. line-height: normal;
  1987. &::placeholder{
  1988. color: #a8adb8;
  1989. }
  1990. }
  1991. .admin--form-select{
  1992. cursor: pointer;
  1993. appearance: none;
  1994. -webkit-appearance: none;
  1995. -moz-appearance: none;
  1996. padding-right: 36px;
  1997. background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23666B75' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  1998. background-repeat: no-repeat;
  1999. background-position: right 12px center;
  2000. }
  2001. .admin--search-select,
  2002. .admin--form-select {
  2003. width: 140px;
  2004. }
  2005. .admin--form-input,
  2006. .admin--search-input {
  2007. flex: 1;
  2008. max-width: 400px;
  2009. }
  2010. .admin--btn-add{
  2011. width: 140px;
  2012. background-color: #e85d3f;
  2013. border-radius: 6px;
  2014. color: #fff;
  2015. font-weight: 600;
  2016. font-size: 13px;
  2017. padding: 12px;
  2018. cursor: pointer;
  2019. }
  2020. }
  2021. // 날짜 입력 필드
  2022. .admin--date-input {
  2023. cursor: pointer;
  2024. &::-webkit-calendar-picker-indicator {
  2025. cursor: pointer;
  2026. opacity: 0.7;
  2027. transition: opacity 0.2s;
  2028. &:hover {
  2029. opacity: 1;
  2030. }
  2031. }
  2032. }
  2033. // 날짜 범위
  2034. .admin--date-range {
  2035. display: flex;
  2036. align-items: center;
  2037. gap: 12px;
  2038. .admin--date-separator {
  2039. color: var(--admin-text-secondary);
  2040. font-size: 14px;
  2041. }
  2042. .admin--form-input {
  2043. flex: 1;
  2044. max-width: 200px;
  2045. }
  2046. }
  2047. // 테이블
  2048. .admin--table--top--text{
  2049. color: #666b75;
  2050. margin-bottom: 18px;
  2051. font-size: 12px;
  2052. font-weight: 600;
  2053. }
  2054. .admin--table-wrapper {
  2055. background: var(--admin-bg-secondary);
  2056. border: 1px solid var(--admin-border-color);
  2057. border-radius: 8px;
  2058. overflow-x: auto;
  2059. }
  2060. .admin--table {
  2061. &.fish--table{
  2062. // 챌린지&퀘스트 어종관리 테이블
  2063. // 인라인 수정 콘텐츠가 많아 패딩 간격 줄임
  2064. th, td{
  2065. padding: 14px 8px!important;
  2066. }
  2067. }
  2068. // 테이블 안 체크박스 — SVG 체크/대시
  2069. input[type="checkbox"] {
  2070. appearance: none;
  2071. -webkit-appearance: none;
  2072. -moz-appearance: none;
  2073. width: 18px;
  2074. height: 18px;
  2075. margin: 0;
  2076. border: 1.5px solid #cbd5e0;
  2077. border-radius: 4px;
  2078. background-color: #fff;
  2079. background-position: center;
  2080. background-repeat: no-repeat;
  2081. background-size: 12px 12px;
  2082. cursor: pointer;
  2083. display: inline-block;
  2084. vertical-align: middle;
  2085. transition: background-color 0.15s ease, border-color 0.15s ease;
  2086. flex-shrink: 0;
  2087. &:hover {
  2088. border-color: var(--admin-accent-primary);
  2089. }
  2090. &:focus-visible {
  2091. outline: 2px solid rgba(26, 35, 50, 0.25);
  2092. outline-offset: 1px;
  2093. }
  2094. &:checked {
  2095. background-color: #fff;
  2096. border-color: var(--admin-accent-primary);
  2097. background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3.5 8L6.75 11.25L12.5 5.25' stroke='%231A2332' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  2098. }
  2099. &:indeterminate {
  2100. background-color: #fff;
  2101. border-color: var(--admin-accent-primary);
  2102. background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M4 8h8' stroke='%231A2332' stroke-width='2.2' stroke-linecap='round'/%3E%3C/svg%3E");
  2103. }
  2104. &:disabled {
  2105. opacity: 0.4;
  2106. cursor: not-allowed;
  2107. }
  2108. }
  2109. width: 100%;
  2110. border-collapse: collapse;
  2111. .input--wrap{
  2112. display: flex;
  2113. align-items: center;
  2114. justify-content: center;
  2115. }
  2116. thead {
  2117. background: #F8F9FB;
  2118. border-bottom: 1px solid #E8EAEF;
  2119. th {
  2120. padding: 14px 16px;
  2121. text-align: center;
  2122. font-size: 12px;
  2123. font-weight: 600;
  2124. color: #666b75;
  2125. white-space: nowrap;
  2126. letter-spacing: 0.36px;
  2127. }
  2128. }
  2129. tbody {
  2130. tr {
  2131. border-bottom: 1px solid #E8EAEF;
  2132. transition: background 0.3s ease;
  2133. &:hover {
  2134. background: var(--admin-bg-tertiary);
  2135. }
  2136. &:last-child {
  2137. border-bottom: none;
  2138. }
  2139. &.admin--table-row-clickable {
  2140. cursor: pointer;
  2141. &:hover {
  2142. background: var(--admin-bg-primary);
  2143. }
  2144. }
  2145. &.admin--table-row-new {
  2146. background: #fffbe6;
  2147. td {
  2148. padding: 8px!important;
  2149. }
  2150. .admin--range-cell{
  2151. gap: 8px;
  2152. display: flex;
  2153. align-items: center;
  2154. color: #a8adb8;
  2155. font-size: 11px;
  2156. font-weight: 400;
  2157. input{
  2158. text-align: center;
  2159. }
  2160. }
  2161. }
  2162. }
  2163. // 인라인 input (테이블 셀 안에서 편집)
  2164. .admin--inline-input {
  2165. width: 100%;
  2166. color: #333;
  2167. padding: 12px 8px;
  2168. font-size: 13px;
  2169. font-weight: 500;
  2170. border: 1px solid #e8eaef;
  2171. border-radius: 4px;
  2172. background: #fff;
  2173. &.center{
  2174. text-align: center;
  2175. }
  2176. &:focus {
  2177. outline: none;
  2178. border-color: var(--admin-accent-primary) !important;
  2179. }
  2180. // number 입력 spinner(증감 화살표) 제거
  2181. &[type="number"] {
  2182. -moz-appearance: textfield;
  2183. appearance: textfield;
  2184. &::-webkit-inner-spin-button,
  2185. &::-webkit-outer-spin-button {
  2186. -webkit-appearance: none;
  2187. margin: 0;
  2188. }
  2189. }
  2190. &.admin--form-select{
  2191. cursor: pointer;
  2192. appearance: none;
  2193. -webkit-appearance: none;
  2194. -moz-appearance: none;
  2195. padding-right: 36px;
  2196. background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23666B75' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  2197. background-repeat: no-repeat;
  2198. background-position: right 12px center;
  2199. }
  2200. }
  2201. td {
  2202. padding: 14px 16px;
  2203. font-size: 13px;
  2204. font-weight: 500;
  2205. color: #1a2b4a;
  2206. vertical-align: middle;
  2207. text-align: center;
  2208. &.left{
  2209. text-align: left;
  2210. }
  2211. &.color--yellow{
  2212. color: var(--admin-yellow);
  2213. font-weight: 700;
  2214. }
  2215. &.date{
  2216. color: #666b75;
  2217. font-size: 12px;
  2218. font-weight: 400;
  2219. }
  2220. &.point{
  2221. color: #e85d3f;
  2222. font-weight: 700;
  2223. }
  2224. }
  2225. .admin--table-title {
  2226. color: var(--admin-text-primary);
  2227. font-weight: 500;
  2228. max-width: 300px;
  2229. overflow: hidden;
  2230. text-overflow: ellipsis;
  2231. white-space: nowrap;
  2232. }
  2233. .admin--table-loading,
  2234. .admin--table-empty {
  2235. text-align: center;
  2236. padding: 60px 20px;
  2237. color: var(--admin-text-muted);
  2238. }
  2239. }
  2240. .admin--table-actions {
  2241. display: flex;
  2242. gap: 8px;
  2243. .admin--btn-blue{
  2244. background-color: #3c80f2;
  2245. color: #fff;
  2246. font-size: 12px;
  2247. }
  2248. }
  2249. input[type=checkbox]{
  2250. width: 20px;
  2251. height: 20px;
  2252. cursor: pointer;
  2253. border: 1px solid #c8d5e6;
  2254. border-radius: 3px;
  2255. background-color: #fff;
  2256. appearance: none;
  2257. &:checked{
  2258. }
  2259. }
  2260. }
  2261. // 배지
  2262. .admin--badge {
  2263. display: inline-block;
  2264. padding: 4px 12px;
  2265. border-radius: 12px;
  2266. font-size: 12px;
  2267. font-weight: 600;
  2268. white-space: nowrap;
  2269. &.admin--badge-html {
  2270. background: rgba(59, 130, 246, 0.1);
  2271. color: #3b82f6;
  2272. }
  2273. &.admin--badge-image {
  2274. background: rgba(16, 185, 129, 0.1);
  2275. color: #10b981;
  2276. }
  2277. &.admin--badge-active {
  2278. background: rgba(16, 185, 129, 0.1);
  2279. color: var(--admin-success);
  2280. }
  2281. &.admin--badge-scheduled {
  2282. background: rgba(245, 158, 11, 0.1);
  2283. color: var(--admin-warning);
  2284. }
  2285. &.admin--badge-ended {
  2286. background: rgba(107, 114, 128, 0.1);
  2287. color: #6b7280;
  2288. }
  2289. &.item--ticket{
  2290. background-color: #E8F0FE;
  2291. color: #3c80f2;
  2292. }
  2293. &.item--point{
  2294. color: #e85d3f;
  2295. background-color: #FFF8DE;
  2296. }
  2297. &.item--badge{
  2298. color: #2DB672;
  2299. background-color: #E8F7ED;
  2300. }
  2301. }
  2302. // 작은 버튼
  2303. .admin--btn-small {
  2304. padding: 12px 24px;
  2305. border: none;
  2306. border-radius: 4px;
  2307. font-size: 13px;
  2308. font-weight: 500;
  2309. cursor: pointer;
  2310. transition: all 0.3s ease;
  2311. white-space: nowrap;
  2312. line-height: normal;
  2313. min-width: 100px;
  2314. &.mw--0{
  2315. min-width: 0;
  2316. }
  2317. &.admin--btn-small-primary {
  2318. background: var(--admin-accent-primary);
  2319. color: #fff;
  2320. &:hover {
  2321. background: var(--admin-accent-hover);
  2322. }
  2323. }
  2324. &.admin--btn-small-danger {
  2325. background: var(--admin-error);
  2326. color: #fff;
  2327. &:hover {
  2328. background: #dc2626;
  2329. }
  2330. }
  2331. }
  2332. // 페이지네이션
  2333. .admin--pagination {
  2334. display: flex;
  2335. justify-content: flex-end;
  2336. align-items: center;
  2337. gap: 8px;
  2338. margin-top: 24px;
  2339. .admin--pagination-btn {
  2340. min-width: 32px;
  2341. height: 32px;
  2342. max-width: 32px;
  2343. border-radius: 6px;
  2344. cursor: pointer;
  2345. transition: all 0.3s ease;
  2346. background-color: #fff;
  2347. border: 1px solid #e8eaef;
  2348. font-size: 11px;
  2349. font-weight: 400;
  2350. color: #666b75;
  2351. &.is-active {
  2352. color: #fff;
  2353. font-weight: 700;
  2354. background-color: var(--admin-blue);
  2355. pointer-events: none;
  2356. }
  2357. &:disabled {
  2358. opacity: 0.5;
  2359. cursor: not-allowed;
  2360. }
  2361. }
  2362. }
  2363. // 라디오 그룹
  2364. .admin--radio-group {
  2365. display: flex;
  2366. gap: 20px;
  2367. flex-wrap: wrap;
  2368. }
  2369. .admin--radio-label {
  2370. display: flex;
  2371. align-items: center;
  2372. gap: 8px;
  2373. cursor: pointer;
  2374. font-size: 13px;
  2375. color: #666b75;
  2376. transition: color 0.3s ease;
  2377. input[type="radio"] {
  2378. cursor: pointer;
  2379. margin: 0;
  2380. }
  2381. &:hover {
  2382. color: var(--admin-text-primary);
  2383. }
  2384. }
  2385. // 날짜 범위
  2386. .admin--date-range {
  2387. display: flex;
  2388. align-items: center;
  2389. gap: 12px;
  2390. .admin--date-separator {
  2391. color: var(--admin-text-secondary);
  2392. font-weight: 500;
  2393. }
  2394. }
  2395. // 시간 입력 그룹 (AM/PM + 시 + 분)
  2396. .admin--time-group {
  2397. display: flex;
  2398. align-items: center;
  2399. gap: 10px;
  2400. flex-wrap: wrap;
  2401. .admin--time-input {
  2402. width: 80px;
  2403. text-align: center;
  2404. }
  2405. }
  2406. .admin--hint {
  2407. margin-left: 6px;
  2408. color: var(--admin-text-secondary);
  2409. font-size: 12px;
  2410. font-weight: 400;
  2411. }
  2412. // 사이즈 그룹
  2413. .admin--size-group {
  2414. display: flex;
  2415. gap: 20px;
  2416. .admin--size-item {
  2417. display: flex;
  2418. align-items: center;
  2419. gap: 8px;
  2420. label {
  2421. font-size: 14px;
  2422. color: var(--admin-text-secondary);
  2423. min-width: 40px;
  2424. }
  2425. .admin--form-input {
  2426. max-width: 120px;
  2427. }
  2428. span {
  2429. font-size: 14px;
  2430. color: var(--admin-text-secondary);
  2431. }
  2432. }
  2433. }
  2434. // 파일 입력
  2435. .admin--form-file {
  2436. width: 100%;
  2437. padding: 12px 16px;
  2438. background: var(--admin-bg-tertiary);
  2439. border: 1px solid var(--admin-border-color);
  2440. border-radius: 6px;
  2441. color: #fff;
  2442. font-size: 14px;
  2443. cursor: pointer;
  2444. &::-webkit-file-upload-button {
  2445. padding: 8px 16px;
  2446. background: var(--admin-accent-primary);
  2447. color: #fff;
  2448. border: none;
  2449. border-radius: 4px;
  2450. font-size: 13px;
  2451. font-weight: 500;
  2452. cursor: pointer;
  2453. margin-right: 12px;
  2454. }
  2455. }
  2456. // 이미지 미리보기
  2457. .admin--image-preview {
  2458. margin-top: 16px;
  2459. position: relative;
  2460. display: inline-block;
  2461. max-width: 400px;
  2462. img {
  2463. max-width: 100%;
  2464. border-radius: 8px;
  2465. border: 1px solid var(--admin-border-color);
  2466. display: block;
  2467. }
  2468. .admin--btn-remove-image {
  2469. position: absolute;
  2470. top: 12px;
  2471. right: 12px;
  2472. padding: 8px 16px;
  2473. background: var(--admin-error);
  2474. color: #fff;
  2475. border: none;
  2476. border-radius: 4px;
  2477. font-size: 13px;
  2478. font-weight: 500;
  2479. cursor: pointer;
  2480. transition: all 0.3s ease;
  2481. &:hover {
  2482. background: #dc2626;
  2483. }
  2484. }
  2485. }
  2486. // 비밀번호 입력 래퍼
  2487. .admin--password-input-wrapper {
  2488. position: relative;
  2489. .admin--form-input {
  2490. padding-right: 50px;
  2491. }
  2492. .admin--password-toggle {
  2493. position: absolute;
  2494. right: 12px;
  2495. top: 50%;
  2496. transform: translateY(-50%);
  2497. background: none;
  2498. border: none;
  2499. font-size: 20px;
  2500. cursor: pointer;
  2501. padding: 4px;
  2502. line-height: 1;
  2503. transition: opacity 0.3s ease;
  2504. &:hover {
  2505. opacity: 0.7;
  2506. }
  2507. }
  2508. }
  2509. // 폼 도움말
  2510. .admin--form-help {
  2511. margin: 8px 0 0 0;
  2512. font-size: 13px;
  2513. color: var(--admin-text-muted);
  2514. font-style: italic;
  2515. }
  2516. // 폼 경고 (좌표 미검출 등)
  2517. .admin--form-warning {
  2518. margin: 8px 0 0 0;
  2519. font-size: 13px;
  2520. color: var(--admin-red);
  2521. }
  2522. // 검색 박스 (큰 버전 - 여러 필터)
  2523. .admin--search-box-large {
  2524. .admin--search-filters {
  2525. flex: 1;
  2526. display: flex;
  2527. flex-direction: column;
  2528. gap: 12px;
  2529. .admin--filter-row {
  2530. display: flex;
  2531. align-items: center;
  2532. gap: 12px;
  2533. flex-wrap: wrap;
  2534. .admin--filter-label {
  2535. font-size: 14px;
  2536. color: var(--admin-text-secondary);
  2537. min-width: 60px;
  2538. }
  2539. .admin--form-select,
  2540. .admin--form-input {
  2541. flex: 1;
  2542. min-width: 150px;
  2543. }
  2544. }
  2545. }
  2546. }
  2547. // 테이블 사진
  2548. .admin--table-photo {
  2549. width: 80px;
  2550. height: 120px;
  2551. border-radius: 4px;
  2552. overflow: hidden;
  2553. display: flex;
  2554. align-items: center;
  2555. justify-content: center;
  2556. background: var(--admin-bg-tertiary);
  2557. img {
  2558. width: 100%;
  2559. height: 100%;
  2560. object-fit: cover;
  2561. }
  2562. .admin--table-photo-empty {
  2563. font-size: 11px;
  2564. color: var(--admin-text-muted);
  2565. text-align: center;
  2566. }
  2567. }
  2568. // 테이블 액션 (세로 배치)
  2569. .admin--table-actions-col {
  2570. flex-direction: column;
  2571. gap: 6px;
  2572. .admin--btn-small {
  2573. width: 100%;
  2574. }
  2575. }
  2576. // 작은 버튼 (secondary 추가)
  2577. .admin--btn-small{
  2578. &.admin--btn-small-secondary {
  2579. border-radius: 6px;
  2580. border: 1px solid #E8EAEF;
  2581. background: #FFF;
  2582. &:hover{
  2583. border: 1px solid #e8eaef!important;
  2584. }
  2585. }
  2586. }
  2587. // 엑셀 버튼 (녹색 배경)
  2588. .admin--btn-small-excel {
  2589. background: #217346;
  2590. color: #ffffff;
  2591. border: 1px solid #1a5c37;
  2592. &:hover {
  2593. background: #185c37;
  2594. border-color: #144d2d;
  2595. }
  2596. }
  2597. // Responsive
  2598. @media (max-width: 1024px) {
  2599. .admin--sidebar {
  2600. width: 220px;
  2601. }
  2602. .admin--main {
  2603. margin-left: 220px;
  2604. }
  2605. }
  2606. @media (max-width: 768px) {
  2607. .admin--header {
  2608. padding: 0 16px;
  2609. }
  2610. .admin--sidebar {
  2611. transform: translateX(-100%);
  2612. transition: transform 0.3s ease;
  2613. &.is-open {
  2614. transform: translateX(0);
  2615. }
  2616. }
  2617. .admin--main {
  2618. margin-left: 0;
  2619. padding: 16px;
  2620. }
  2621. .admin--page-header {
  2622. flex-direction: column;
  2623. align-items: flex-start;
  2624. gap: 12px;
  2625. }
  2626. .admin--form {
  2627. .admin--form-actions {
  2628. flex-direction: column;
  2629. .admin--btn {
  2630. width: 100%;
  2631. }
  2632. }
  2633. .admin--multi-input-wrapper {
  2634. .admin--multi-input-item {
  2635. flex-direction: column;
  2636. .admin--btn-remove {
  2637. width: 100%;
  2638. }
  2639. }
  2640. }
  2641. }
  2642. }
  2643. // File Attachment Styles
  2644. .admin--form-file-hidden {
  2645. display: none;
  2646. }
  2647. .admin--file-list {
  2648. margin-bottom: 12px;
  2649. border: 1px solid var(--admin-border-color);
  2650. border-radius: 4px;
  2651. background-color: var(--admin-bg-secondary);
  2652. }
  2653. .admin--file-item {
  2654. display: flex;
  2655. align-items: center;
  2656. padding: 12px 16px;
  2657. border-bottom: 1px solid var(--admin-border-color);
  2658. &:last-child {
  2659. border-bottom: none;
  2660. }
  2661. &:hover {
  2662. background-color: rgba(255, 255, 255, 0.03);
  2663. }
  2664. }
  2665. .admin--file-name {
  2666. flex: 1;
  2667. color: var(--admin-text-primary);
  2668. font-size: 14px;
  2669. overflow: hidden;
  2670. text-overflow: ellipsis;
  2671. white-space: nowrap;
  2672. margin-right: 8px;
  2673. &:hover {
  2674. text-decoration: underline;
  2675. }
  2676. }
  2677. .admin--file-size {
  2678. color: var(--admin-text-secondary);
  2679. font-size: 13px;
  2680. margin-right: 12px;
  2681. white-space: nowrap;
  2682. }
  2683. .admin--btn-remove-file {
  2684. padding: 4px 12px;
  2685. background-color: transparent;
  2686. color: var(--admin-danger-color);
  2687. border: 1px solid var(--admin-danger-color);
  2688. border-radius: 4px;
  2689. font-size: 13px;
  2690. cursor: pointer;
  2691. transition: all 0.2s ease;
  2692. white-space: nowrap;
  2693. &:hover {
  2694. background-color: var(--admin-danger-color);
  2695. color: white;
  2696. }
  2697. }
  2698. // Checkbox Group Styles
  2699. .admin--checkbox-group {
  2700. display: flex;
  2701. gap: 20px;
  2702. }
  2703. .admin--checkbox-label {
  2704. display: flex;
  2705. align-items: center;
  2706. gap: 8px;
  2707. color: var(--admin-text-primary);
  2708. font-size: 14px;
  2709. cursor: pointer;
  2710. input[type="checkbox"] {
  2711. width: 18px;
  2712. height: 18px;
  2713. cursor: pointer;
  2714. accent-color: var(--admin-accent-primary);
  2715. }
  2716. span {
  2717. user-select: none;
  2718. }
  2719. &:hover {
  2720. opacity: 0.8;
  2721. }
  2722. }
  2723. // Admin Footer
  2724. .admin--footer {
  2725. margin-top: 64px;
  2726. padding: 24px 0;
  2727. border-top: 1px solid var(--admin-border-color);
  2728. text-align: center;
  2729. p {
  2730. color: var(--admin-text-muted);
  2731. font-size: 14px;
  2732. margin: 0;
  2733. }
  2734. }
  2735. // IMPORTANT: Force display admin header and footer
  2736. .admin--header {
  2737. display: flex !important;
  2738. min-height: 64px !important;
  2739. background: #ffffff !important;
  2740. visibility: visible !important;
  2741. box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  2742. }
  2743. .admin--footer {
  2744. display: block !important;
  2745. min-height: 60px !important;
  2746. background: #ffffff !important;
  2747. visibility: visible !important;
  2748. }
  2749. // Alert Modal Styles
  2750. .admin--modal-overlay {
  2751. position: fixed;
  2752. top: 0;
  2753. left: 0;
  2754. right: 0;
  2755. bottom: 0;
  2756. background: rgba(0, 0, 0, 0.7);
  2757. z-index: 9999;
  2758. display: flex;
  2759. align-items: center;
  2760. justify-content: center;
  2761. }
  2762. .admin--alert-modal {
  2763. background: #ffffff;
  2764. padding: 0;
  2765. border-radius: 8px;
  2766. min-width: 400px;
  2767. max-width: 500px;
  2768. box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  2769. }
  2770. .admin--alert-modal .admin--modal-header {
  2771. padding: 20px;
  2772. border-bottom: 1px solid #e0e0e0;
  2773. display: flex;
  2774. justify-content: space-between;
  2775. align-items: center;
  2776. h4 {
  2777. margin: 0;
  2778. font-size: 18px;
  2779. font-weight: 600;
  2780. color: #1a1a1a;
  2781. }
  2782. }
  2783. .admin--alert-modal .admin--modal-close {
  2784. background: none;
  2785. border: none;
  2786. font-size: 24px;
  2787. cursor: pointer;
  2788. color: #999;
  2789. line-height: 1;
  2790. transition: color 0.2s;
  2791. &:hover {
  2792. color: #333;
  2793. }
  2794. }
  2795. .admin--alert-modal .admin--modal-body {
  2796. padding: 30px 20px;
  2797. .admin--alert-content p {
  2798. margin: 0;
  2799. font-size: 15px;
  2800. line-height: 1.6;
  2801. color: #333333;
  2802. }
  2803. }
  2804. .admin--alert-modal .admin--modal-footer {
  2805. padding: 15px 20px;
  2806. border-top: 1px solid #e0e0e0;
  2807. display: flex;
  2808. gap: 10px;
  2809. justify-content: flex-end;
  2810. }
  2811. .admin--alert-modal .admin--btn-secondary {
  2812. padding: 8px 20px;
  2813. border: 1px solid #e0e0e0;
  2814. background: #f5f5f5;
  2815. color: #333333;
  2816. border-radius: 4px;
  2817. cursor: pointer;
  2818. font-size: 14px;
  2819. transition: all 0.2s;
  2820. &:hover {
  2821. background: #eeeeee;
  2822. }
  2823. }
  2824. .admin--alert-modal .admin--btn-primary {
  2825. padding: 8px 20px;
  2826. border: none;
  2827. background: var(--admin-accent-primary);
  2828. color: white;
  2829. border-radius: 4px;
  2830. cursor: pointer;
  2831. font-size: 14px;
  2832. transition: all 0.2s;
  2833. &:hover {
  2834. background: var(--admin-accent-hover);
  2835. }
  2836. }
  2837. // Modal Animation
  2838. @keyframes slideUp {
  2839. from {
  2840. opacity: 0;
  2841. transform: translateY(30px);
  2842. }
  2843. to {
  2844. opacity: 1;
  2845. transform: translateY(0);
  2846. }
  2847. }
  2848. .modal-fade-enter-active {
  2849. transition: opacity 0.3s ease;
  2850. .admin--alert-modal {
  2851. animation: slideUp 0.3s ease-out;
  2852. }
  2853. }
  2854. .modal-fade-leave-active {
  2855. transition: opacity 0.2s ease;
  2856. }
  2857. .modal-fade-enter-from,
  2858. .modal-fade-leave-to {
  2859. opacity: 0;
  2860. }
  2861. // ScrollCanvasAnimation Component Styles
  2862. .scroll--canvas--animation {
  2863. position: relative;
  2864. width: 100%;
  2865. // 가상 스크롤 공간 (보이지 않음, 스크롤 영역만 확보)
  2866. .scroll--spacer {
  2867. width: 100%;
  2868. pointer-events: none;
  2869. }
  2870. // 고정될 캔버스 영역 (100vh)
  2871. .scroll--canvas--sticky {
  2872. position: absolute;
  2873. top: 0;
  2874. left: 0;
  2875. width: 100%;
  2876. height: 100vh;
  2877. overflow: hidden;
  2878. transition: background-color 0.3s ease;
  2879. // 고정 상태일 때
  2880. &.is--fixed {
  2881. position: fixed;
  2882. top: 0;
  2883. left: 0;
  2884. right: 0;
  2885. z-index: 100;
  2886. }
  2887. // 완료 상태일 때
  2888. &.is--completed {
  2889. position: absolute;
  2890. top: auto;
  2891. bottom: 0;
  2892. }
  2893. }
  2894. // 헤드라인 컨테이너
  2895. .headline--container {
  2896. position: absolute;
  2897. top: 0;
  2898. left: 0;
  2899. right: 0;
  2900. bottom: 0;
  2901. z-index: 10;
  2902. display: flex;
  2903. align-items: center;
  2904. justify-content: center;
  2905. padding: 40px 20px;
  2906. pointer-events: none;
  2907. transition: opacity 0.3s ease;
  2908. .content--container {
  2909. text-align: left;
  2910. padding: 0 var(--spacing-relative-3xl);
  2911. width: 100%;
  2912. }
  2913. .headline--text {
  2914. font-size: clamp(32px, 5vw, 64px);
  2915. font-weight: 700;
  2916. line-height: 1.2;
  2917. margin: 0 0 20px 0;
  2918. letter-spacing: -0.02em;
  2919. animation: fadeInUp 0.8s cubic-bezier(0.15, 0, 0.25, 1) forwards;
  2920. opacity: 0;
  2921. color: rgb(252, 252, 253);
  2922. letter-spacing: 0px;
  2923. font-weight: 400;
  2924. text-decoration: none;
  2925. font-size: 36px;
  2926. line-height: 52px;
  2927. font-stretch: 130%;
  2928. @media (min-width: 768px) {
  2929. font-size: 44px;
  2930. line-height: 60px;
  2931. }
  2932. @media (min-width: 1024px) {
  2933. font-size: 52px;
  2934. line-height: 76px;
  2935. }
  2936. @media (min-width: 1440px) {
  2937. font-size: 60px;
  2938. line-height: 84px;
  2939. }
  2940. @media (min-width: 1920px) {
  2941. font-size: 72px;
  2942. line-height: 100px;
  2943. }
  2944. }
  2945. .subheadline--text {
  2946. font-size: clamp(16px, 2.5vw, 24px);
  2947. font-weight: 400;
  2948. line-height: 1.5;
  2949. margin: 0;
  2950. color: rgba(252, 252, 253, 0.8);
  2951. animation: fadeInUp 0.8s cubic-bezier(0.15, 0, 0.25, 1) 0.2s forwards;
  2952. opacity: 0;
  2953. }
  2954. }
  2955. // 이미지 컨테이너
  2956. .scroll--images--container {
  2957. position: absolute;
  2958. top: 0;
  2959. left: 0;
  2960. width: 100%;
  2961. height: 100%;
  2962. display: flex;
  2963. align-items: center;
  2964. justify-content: center;
  2965. }
  2966. // 캔버스
  2967. .scroll--canvas {
  2968. display: block;
  2969. position: absolute;
  2970. top: 50%;
  2971. left: 50%;
  2972. transform: translate(-50%, -50%);
  2973. max-width: 100%;
  2974. max-height: 100%;
  2975. object-fit: cover;
  2976. }
  2977. }
  2978. // 페이드인 애니메이션
  2979. @keyframes fadeInUp {
  2980. from {
  2981. opacity: 0;
  2982. transform: translateY(40px);
  2983. }
  2984. to {
  2985. opacity: 1;
  2986. transform: translateY(0);
  2987. }
  2988. }
  2989. // 반응형 스타일
  2990. @media (max-width: 1024px) {
  2991. .scroll--canvas--animation {
  2992. .headline--container {
  2993. padding: 30px 15px;
  2994. .headline--text {
  2995. margin-bottom: 15px;
  2996. }
  2997. }
  2998. }
  2999. }
  3000. @media (max-width: 768px) {
  3001. .scroll--canvas--animation {
  3002. .headline--container {
  3003. padding: 20px 15px;
  3004. .headline--text {
  3005. margin-bottom: 12px;
  3006. }
  3007. }
  3008. }
  3009. }
  3010. @media (max-width: 480px) {
  3011. .scroll--canvas--animation {
  3012. .headline--container {
  3013. padding: 15px 10px;
  3014. .content--container {
  3015. max-width: 100%;
  3016. }
  3017. }
  3018. }
  3019. }
  3020. .iframe--wrapper {
  3021. position: relative;
  3022. padding-top: 55.6%;
  3023. iframe {
  3024. position: absolute;
  3025. width: 100%;
  3026. height: 100%;
  3027. top: 0px;
  3028. }
  3029. }
  3030. .sign--wrapper {
  3031. display: flex;
  3032. align-items: center;
  3033. gap: 30px;
  3034. width: 100%;
  3035. justify-content: flex-end;
  3036. }
  3037. // 중복 체크 버튼 스타일
  3038. .admin--input-with-button {
  3039. display: flex;
  3040. gap: 8px;
  3041. align-items: stretch;
  3042. .admin--form-input {
  3043. flex: 1;
  3044. }
  3045. .admin--btn {
  3046. flex-shrink: 0;
  3047. white-space: nowrap;
  3048. height: auto;
  3049. }
  3050. }
  3051. .admin--btn-check {
  3052. background: #2563eb !important;
  3053. color: #ffffff !important;
  3054. border: none;
  3055. padding: 10px 16px;
  3056. border-radius: 4px;
  3057. font-size: 13px;
  3058. font-weight: 500;
  3059. cursor: pointer;
  3060. transition: all 0.3s ease;
  3061. &:hover:not(:disabled) {
  3062. background: #1d4ed8 !important;
  3063. }
  3064. &:disabled {
  3065. opacity: 0.5;
  3066. cursor: not-allowed;
  3067. }
  3068. }
  3069. .admin--form-help {
  3070. margin-top: 6px;
  3071. font-size: 12px;
  3072. line-height: 1.4;
  3073. color: #999;
  3074. }
  3075. .admin--text-success {
  3076. color: #4caf50 !important;
  3077. }
  3078. .admin--text-error {
  3079. color: #f44336 !important;
  3080. }
  3081. .file--item {
  3082. display: flex;
  3083. align-items: center;
  3084. }
  3085. footer {
  3086. position: relative;
  3087. background: #252525;
  3088. .footer--wrap {
  3089. //position: relative;
  3090. .footer--btn--wrap {
  3091. display: flex;
  3092. flex-direction: column;
  3093. position: fixed;
  3094. bottom: 120px;
  3095. //left: calc(100% + 60px);
  3096. right: 110px;
  3097. gap: 12px;
  3098. opacity: 0;
  3099. z-index: 10;
  3100. pointer-events: none;
  3101. transition: all 0.3s;
  3102. &.active {
  3103. pointer-events: all;
  3104. opacity: 1;
  3105. }
  3106. .quick--wrap {
  3107. position: fixed;
  3108. right: 49px;
  3109. border-radius: 20px;
  3110. background: #F5FAFF;
  3111. box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.20);
  3112. width: 192px;
  3113. overflow: hidden;
  3114. transition: all 0.3s;
  3115. border: 1px solid rgba(7, 111, 237, 0.50);
  3116. opacity: 0;
  3117. bottom: 330px;
  3118. pointer-events: none;
  3119. &.active {
  3120. pointer-events: all;
  3121. opacity: 1;
  3122. bottom: 317px;
  3123. }
  3124. .inner--wrap {
  3125. padding: 5px 30px;
  3126. display: flex;
  3127. flex-direction: column;
  3128. li {
  3129. text-align: center;
  3130. display: flex;
  3131. a {
  3132. width: 100%;
  3133. color: #333;
  3134. white-space: nowrap;
  3135. padding: 12.5px 0;
  3136. font-size: 13px;
  3137. text-transform: uppercase;
  3138. font-weight: 500;
  3139. transition: all 0.3s;
  3140. line-height: 1;
  3141. &:hover {
  3142. color: #076FED;
  3143. text-decoration-line: underline;
  3144. text-decoration-style: solid;
  3145. text-decoration-skip-ink: auto;
  3146. text-decoration-thickness: auto;
  3147. text-underline-offset: auto;
  3148. text-underline-position: from-font;
  3149. font-weight: 700;
  3150. }
  3151. }
  3152. }
  3153. }
  3154. }
  3155. .quick--menu {
  3156. display: flex;
  3157. flex-direction: column;
  3158. background-color: #076fed;
  3159. border-radius: 100px;
  3160. box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.20);
  3161. align-items: center;
  3162. justify-content: center;
  3163. width: 70px;
  3164. height: 100px;
  3165. gap: 10px;
  3166. font-size: 12px;
  3167. font-weight: 700;
  3168. color: #fff;
  3169. &.active {
  3170. .ico {
  3171. background-image: url(/img/ico--quick--close.svg);
  3172. }
  3173. }
  3174. .ico {
  3175. width: 24px;
  3176. height: 24px;
  3177. background-image: url(/img/ico--quick.svg);
  3178. }
  3179. }
  3180. .scroll--to--top {
  3181. display: flex;
  3182. flex-direction: column;
  3183. box-shadow: 0 4px 10px 0 rgba(0, 0, 0, 0.20);
  3184. width: 70px;
  3185. height: 70px;
  3186. border-radius: 50%;
  3187. background-color: #282828;
  3188. gap: 2px;
  3189. justify-content: center;
  3190. font-size: 13px;
  3191. font-weight: 700;
  3192. align-items: center;
  3193. .ico {
  3194. width: 24px;
  3195. height: 24px;
  3196. background-image: url(/img/ico--top--arrow.svg);
  3197. }
  3198. }
  3199. }
  3200. .footer--site--map {
  3201. >ul {
  3202. >li {
  3203. >ul {
  3204. >h3,
  3205. >a {
  3206. position: relative;
  3207. padding-left: 13px;
  3208. margin-bottom: 15px;
  3209. text-transform: capitalize;
  3210. display: block;
  3211. &:before {
  3212. content: '';
  3213. width: 3px;
  3214. height: 3px;
  3215. position: absolute;
  3216. display: block;
  3217. background: #E9E9E9;
  3218. top: 50%;
  3219. left: 0;
  3220. transform: translateY(-50%);
  3221. }
  3222. }
  3223. >li {
  3224. position: relative;
  3225. padding-left: 13px;
  3226. &:before {
  3227. content: '';
  3228. width: 3px;
  3229. height: 3px;
  3230. position: absolute;
  3231. display: block;
  3232. background: #E9E9E9;
  3233. top: 50%;
  3234. left: 0;
  3235. transform: translateY(-50%);
  3236. }
  3237. >a {
  3238. color: #E9E9E9;
  3239. font-size: 14px;
  3240. }
  3241. &.inner--style {
  3242. margin-bottom: 15px;
  3243. &:last-child {
  3244. margin-bottom: 30px;
  3245. }
  3246. &:before {
  3247. display: none;
  3248. }
  3249. a {
  3250. color: #B7B7B7;
  3251. font-size: 14px;
  3252. font-style: normal;
  3253. font-weight: 400;
  3254. line-height: 100%;
  3255. /* 14px */
  3256. text-transform: capitalize;
  3257. }
  3258. }
  3259. }
  3260. }
  3261. }
  3262. }
  3263. }
  3264. }
  3265. .footer--info--wrapper {
  3266. background: #161616;
  3267. .footer--info--wrap {
  3268. position: relative;
  3269. .sns--wrap {
  3270. display: flex;
  3271. justify-content: flex-end;
  3272. margin-bottom: 12px;
  3273. gap: 15px;
  3274. position: absolute;
  3275. top: 50%;
  3276. transform: translateY(-50%);
  3277. right: 0px;
  3278. >a {
  3279. width: 40px;
  3280. height: 40px;
  3281. display: inline-block;
  3282. border-radius: 50%;
  3283. display: flex;
  3284. align-items: center;
  3285. justify-content: center;
  3286. cursor: pointer;
  3287. box-sizing: border-box;
  3288. background: #fff;
  3289. }
  3290. }
  3291. .copy--wrap {
  3292. font-size: 14px;
  3293. color: #fcfcfdb2;
  3294. max-width: 1440px;
  3295. margin: 0 auto;
  3296. padding: 30px 0px;
  3297. position: relative;
  3298. .link--list {
  3299. display: flex;
  3300. flex-wrap: wrap;
  3301. gap: 37px;
  3302. >li {
  3303. position: relative;
  3304. &::after {
  3305. content: '';
  3306. height: 15px;
  3307. width: 1px;
  3308. background: rgba(255, 255, 255, 0.50);
  3309. display: block;
  3310. position: absolute;
  3311. right: -18px;
  3312. top: 50%;
  3313. transform: translateY(-50%);
  3314. }
  3315. &:last-child {
  3316. &::after {
  3317. display: none;
  3318. }
  3319. }
  3320. >a {
  3321. display: inline-block;
  3322. color: rgb(252, 252, 253);
  3323. transition: all 0.3s;
  3324. color: #FFF;
  3325. font-size: 15px;
  3326. font-style: normal;
  3327. font-weight: 700;
  3328. line-height: 100%;
  3329. /* 15px */
  3330. letter-spacing: -0.3px;
  3331. text-transform: capitalize;
  3332. &:hover {
  3333. opacity: 0.7;
  3334. }
  3335. }
  3336. }
  3337. }
  3338. >p {
  3339. //margin-top: 25px;
  3340. }
  3341. }
  3342. }
  3343. }
  3344. @media (max-width: 768px) {
  3345. .footer--wrap {
  3346. .footer--site--map {
  3347. >ul {
  3348. >li {
  3349. >h2 {
  3350. cursor: pointer;
  3351. user-select: none;
  3352. position: relative;
  3353. padding-right: 20px;
  3354. &::after {
  3355. content: '';
  3356. position: absolute;
  3357. right: 20px;
  3358. background-image: url(/img/ico--footer.svg);
  3359. width: 18px;
  3360. min-width: 18px;
  3361. margin-left: 20px;
  3362. height: 18px;
  3363. transition: transform 0.3s ease;
  3364. }
  3365. }
  3366. >ul {
  3367. max-height: 0;
  3368. overflow: hidden;
  3369. transition: max-height 0.3s ease;
  3370. &.active {
  3371. max-height: 1000px;
  3372. }
  3373. }
  3374. }
  3375. }
  3376. }
  3377. }
  3378. }
  3379. }
  3380. .swiper--banner--wrapper {
  3381. width: 100%;
  3382. overflow: hidden;
  3383. .swiper--banner--container {
  3384. position: relative;
  3385. .swiper-button-next,
  3386. .swiper-button-prev {
  3387. display: flex;
  3388. width: 65px;
  3389. height: 65px;
  3390. padding: 21px 20px 20px 21px;
  3391. justify-content: center;
  3392. align-items: center;
  3393. flex-shrink: 0;
  3394. position: absolute;
  3395. top: 50%;
  3396. background: none;
  3397. border-radius: 1000px;
  3398. border: 1px solid #FFF;
  3399. z-index: 9;
  3400. cursor: pointer;
  3401. transition: all 0.3s ease;
  3402. &:hover {
  3403. background: rgba(0, 0, 0, 0.5);
  3404. }
  3405. &::after {
  3406. display: none; // Swiper 기본 화살표 숨김
  3407. }
  3408. svg {
  3409. width: 24px;
  3410. height: 24px;
  3411. fill: none;
  3412. pointer-events: none; // SVG가 클릭을 방해하지 않도록
  3413. }
  3414. }
  3415. .swiper-button-next {
  3416. right: 50%;
  3417. transform: translate(calc(1440px / 2), -50%);
  3418. }
  3419. .swiper-button-prev {
  3420. left: 50%;
  3421. transform: translate(calc(-1440px / 2), -50%);
  3422. }
  3423. // Pagination wrapper with progress and fractions
  3424. .swiper--pagination--wrapper {
  3425. position: absolute;
  3426. bottom: 20px;
  3427. left: 50%;
  3428. transform: translateX(-50%);
  3429. z-index: 9;
  3430. display: flex;
  3431. flex-direction: column;
  3432. align-items: center;
  3433. gap: 12px;
  3434. .swiper-pagination {
  3435. position: relative;
  3436. bottom: auto;
  3437. left: auto;
  3438. transform: none;
  3439. .swiper-pagination-bullet {
  3440. opacity: 1;
  3441. width: 12px;
  3442. height: 12px;
  3443. background: rgba(255, 255, 255, 0.5);
  3444. transition: all 0.3s ease;
  3445. &.swiper-pagination-bullet-active {
  3446. background: #fff;
  3447. }
  3448. }
  3449. }
  3450. .swiper--fraction {
  3451. display: flex;
  3452. align-items: center;
  3453. gap: 4px;
  3454. color: #fff;
  3455. font-size: 16px;
  3456. font-weight: 600;
  3457. .separator {
  3458. opacity: 0.7;
  3459. }
  3460. .total {
  3461. opacity: 0.7;
  3462. }
  3463. }
  3464. .swiper--progressbar {
  3465. width: 200px;
  3466. height: 3px;
  3467. background: rgba(255, 255, 255, 0.3);
  3468. border-radius: 10px;
  3469. overflow: hidden;
  3470. .swiper--progressbar-fill {
  3471. height: 100%;
  3472. background: #fff;
  3473. transition: width 0.3s ease;
  3474. border-radius: 10px;
  3475. }
  3476. }
  3477. }
  3478. // 기존 pagination (호환성 유지)
  3479. .swiper-pagination {
  3480. position: absolute;
  3481. bottom: 20px;
  3482. z-index: 8;
  3483. .swiper-pagination-bullet {
  3484. opacity: 1;
  3485. &.swiper-pagination-bullet-active {
  3486. background: #FFF;
  3487. }
  3488. width:12px;
  3489. height:12px;
  3490. background: rgba(255, 255, 255, 0.50);
  3491. }
  3492. }
  3493. .swiper--banner--section {
  3494. .swiper--container {
  3495. .swiper-wrapper {
  3496. .slide--image {
  3497. height: 550px;
  3498. position: relative;
  3499. img {
  3500. margin: 0 auto;
  3501. width: 100%;
  3502. height: 100%;
  3503. object-fit: cover;
  3504. }
  3505. // 확대 버튼
  3506. .zoom--btn {
  3507. position: absolute;
  3508. top: 20px;
  3509. right: 20px;
  3510. width: 50px;
  3511. height: 50px;
  3512. background: rgba(0, 0, 0, 0.5);
  3513. border: 1px solid rgba(255, 255, 255, 0.3);
  3514. border-radius: 50%;
  3515. display: flex;
  3516. align-items: center;
  3517. justify-content: center;
  3518. cursor: pointer;
  3519. z-index: 10;
  3520. transition: all 0.3s ease;
  3521. &:hover {
  3522. background: rgba(0, 0, 0, 0.7);
  3523. border-color: rgba(255, 255, 255, 0.6);
  3524. transform: scale(1.1);
  3525. }
  3526. svg {
  3527. width: 24px;
  3528. height: 24px;
  3529. }
  3530. }
  3531. .desc--wrapper {
  3532. position: absolute;
  3533. top: 100px;
  3534. left: 50%;
  3535. transform: translateX(-50%);
  3536. width: 100%;
  3537. display: flex;
  3538. align-items: center;
  3539. flex-direction: column;
  3540. h2 {
  3541. color: #FFF;
  3542. text-align: center;
  3543. font-size: 45px;
  3544. font-style: normal;
  3545. font-weight: 700;
  3546. line-height: 1.2;
  3547. text-transform: uppercase;
  3548. }
  3549. h3 {
  3550. color: #FFF;
  3551. text-align: center;
  3552. font-size: 20px;
  3553. font-style: normal;
  3554. font-weight: 400;
  3555. //line-height: 100%; /* 20px */
  3556. text-transform: uppercase;
  3557. margin-top: 25px;
  3558. }
  3559. .more--detail--href {
  3560. border-radius: 100px;
  3561. border: 1px solid #FFF;
  3562. color: #FFF;
  3563. text-align: center;
  3564. font-size: 15px;
  3565. font-style: normal;
  3566. font-weight: 700;
  3567. line-height: 100%;
  3568. /* 15px */
  3569. letter-spacing: -0.3px;
  3570. text-transform: uppercase;
  3571. padding: 18px 20px;
  3572. min-width: 150px;
  3573. }
  3574. }
  3575. }
  3576. }
  3577. }
  3578. }
  3579. }
  3580. }
  3581. .swiper--banner--wrapper2 {
  3582. width: 100%;
  3583. overflow: hidden;
  3584. border-radius: 30px;
  3585. max-height: 600px;
  3586. .swiper--banner--container {
  3587. position: relative;
  3588. .type--connection {
  3589. position: absolute;
  3590. top: 45px;
  3591. right: 45px;
  3592. z-index: 10;
  3593. &.exterior {
  3594. color: #FFF;
  3595. font-size: 14px;
  3596. font-style: normal;
  3597. font-weight: 700;
  3598. line-height: 100%;
  3599. /* 14px */
  3600. text-transform: uppercase;
  3601. border-radius: 1000px;
  3602. background: #076FED;
  3603. padding: 15px 20px;
  3604. gap: 10px;
  3605. display: flex;
  3606. align-items: center;
  3607. }
  3608. &.interior {
  3609. color: #FFF;
  3610. font-size: 14px;
  3611. font-style: normal;
  3612. font-weight: 700;
  3613. line-height: 100%;
  3614. /* 14px */
  3615. text-transform: uppercase;
  3616. border-radius: 1000px;
  3617. background: #0AF;
  3618. padding: 15px 20px;
  3619. gap: 10px;
  3620. display: flex;
  3621. align-items: center;
  3622. }
  3623. }
  3624. // Pagination wrapper with progress and fractions
  3625. .swiper--pagination--wrapper {
  3626. position: absolute;
  3627. bottom: 65px;
  3628. right: 45px;
  3629. z-index: 9;
  3630. display: flex;
  3631. align-items: center;
  3632. gap: 12px;
  3633. .swiper-pagination {
  3634. display: none;
  3635. position: relative;
  3636. bottom: auto;
  3637. left: auto;
  3638. transform: none;
  3639. .swiper-pagination-bullet {
  3640. opacity: 1;
  3641. width: 12px;
  3642. height: 12px;
  3643. background: rgba(255, 255, 255, 0.5);
  3644. transition: all 0.3s ease;
  3645. &.swiper-pagination-bullet-active {
  3646. background: #fff;
  3647. }
  3648. }
  3649. }
  3650. .swiper--fraction {
  3651. display: flex;
  3652. align-items: center;
  3653. gap: 4px;
  3654. color: #fff;
  3655. font-size: 14px;
  3656. font-weight: 700;
  3657. .separator {
  3658. color: rgba(255, 255, 255, 0.60);
  3659. font-weight: 400;
  3660. }
  3661. .total {
  3662. color: rgba(255, 255, 255, 0.60);
  3663. font-weight: 400;
  3664. }
  3665. }
  3666. .swiper--progressbar {
  3667. width: 200px;
  3668. height: 3px;
  3669. background: rgba(255, 255, 255, 0.3);
  3670. border-radius: 10px;
  3671. overflow: hidden;
  3672. .swiper--progressbar-fill {
  3673. height: 100%;
  3674. background: #fff;
  3675. transition: width 0.3s ease;
  3676. border-radius: 10px;
  3677. }
  3678. }
  3679. }
  3680. .swiper--banner--section {
  3681. .swiper--container {
  3682. .swiper-wrapper {
  3683. .slide--image {
  3684. position: relative;
  3685. z-index: 1;
  3686. padding-top: 56.5%;
  3687. min-height: 600px;
  3688. >img {
  3689. position: absolute;
  3690. top: 0px;
  3691. width: 100%;
  3692. height: 100%;
  3693. z-index: 1;
  3694. object-fit: cover;
  3695. }
  3696. // 확대 버튼
  3697. .zoom--btn {
  3698. position: absolute;
  3699. bottom: 45px;
  3700. left: 45px;
  3701. display: flex;
  3702. height: 60px;
  3703. padding: 20px 25px;
  3704. justify-content: center;
  3705. align-items: center;
  3706. gap: 10px;
  3707. cursor: pointer;
  3708. z-index: 10;
  3709. transition: all 0.3s ease;
  3710. border-radius: 1000px;
  3711. border: 1px solid #FFF;
  3712. color: #FFF;
  3713. font-size: 14px;
  3714. font-style: normal;
  3715. font-weight: 400;
  3716. line-height: 100%;
  3717. /* 14px */
  3718. text-transform: capitalize;
  3719. svg {
  3720. width: 12px;
  3721. height: 12px;
  3722. }
  3723. }
  3724. .desc--wrapper {
  3725. position: absolute;
  3726. top: 0px;
  3727. left: 0px;
  3728. width: 100%;
  3729. height: 100%;
  3730. display: flex;
  3731. align-items: center;
  3732. justify-content: center;
  3733. flex-direction: column;
  3734. h2 {
  3735. color: #FFF;
  3736. text-align: center;
  3737. font-size: 45px;
  3738. font-style: normal;
  3739. font-weight: 700;
  3740. line-height: 100%;
  3741. /* 45px */
  3742. text-transform: uppercase;
  3743. }
  3744. h3 {
  3745. color: #FFF;
  3746. text-align: center;
  3747. font-size: 20px;
  3748. font-style: normal;
  3749. font-weight: 400;
  3750. line-height: 100%;
  3751. /* 20px */
  3752. text-transform: uppercase;
  3753. margin-top: 25px;
  3754. }
  3755. .more--detail--href {
  3756. border-radius: 100px;
  3757. border: 1px solid #FFF;
  3758. color: #FFF;
  3759. text-align: center;
  3760. font-size: 15px;
  3761. font-style: normal;
  3762. font-weight: 700;
  3763. line-height: 100%;
  3764. /* 15px */
  3765. letter-spacing: -0.3px;
  3766. text-transform: uppercase;
  3767. padding: 18px 20px;
  3768. min-width: 150px;
  3769. }
  3770. }
  3771. }
  3772. }
  3773. }
  3774. }
  3775. }
  3776. }
  3777. .swiper--banner--wrapper3 {
  3778. width: 100%;
  3779. overflow: hidden;
  3780. background: #111;
  3781. .top--text--wrap {
  3782. padding: 80px 0px;
  3783. h2 {
  3784. color: #FFF;
  3785. text-align: center;
  3786. font-size: 40px;
  3787. font-style: normal;
  3788. font-weight: 500;
  3789. line-height: 100%;
  3790. /* 40px */
  3791. text-transform: capitalize;
  3792. }
  3793. >div {
  3794. color: #FFF;
  3795. text-align: center;
  3796. font-size: 18px;
  3797. font-style: normal;
  3798. font-weight: 300;
  3799. line-height: 1.7;
  3800. text-transform: uppercase;
  3801. }
  3802. }
  3803. .swiper--banner--container {
  3804. position: relative;
  3805. .btn--actions {
  3806. display: flex;
  3807. position: absolute;
  3808. top: -27.5px;
  3809. right: 25px;
  3810. height: 55px;
  3811. justify-content: flex-end;
  3812. gap: 15px;
  3813. z-index: 10;
  3814. .swiper-button-next,
  3815. .swiper-button-prev {
  3816. margin-top: 0;
  3817. display: flex;
  3818. width: 55px;
  3819. height: 55px;
  3820. justify-content: center;
  3821. align-items: center;
  3822. flex-shrink: 0;
  3823. background: none;
  3824. border-radius: 1000px;
  3825. border: 0px;
  3826. background: #fff;
  3827. cursor: pointer;
  3828. transition: all 0.3s ease;
  3829. position: static;
  3830. &:hover {
  3831. background: rgba(0, 0, 0, 0.5);
  3832. }
  3833. &::after {
  3834. display: none; // Swiper 기본 화살표 숨김
  3835. }
  3836. svg {
  3837. width: 24px;
  3838. height: 24px;
  3839. fill: none;
  3840. pointer-events: none; // SVG가 클릭을 방해하지 않도록
  3841. }
  3842. }
  3843. }
  3844. // Pagination wrapper with progress and fractions
  3845. .swiper--pagination--wrapper {
  3846. position: absolute;
  3847. bottom: 20px;
  3848. left: 50%;
  3849. transform: translateX(-50%);
  3850. z-index: 9;
  3851. display: flex;
  3852. flex-direction: column;
  3853. align-items: center;
  3854. gap: 12px;
  3855. .swiper-pagination {
  3856. position: relative;
  3857. bottom: auto;
  3858. left: auto;
  3859. transform: none;
  3860. .swiper-pagination-bullet {
  3861. opacity: 1;
  3862. width: 12px;
  3863. height: 12px;
  3864. background: rgba(255, 255, 255, 0.5);
  3865. transition: all 0.3s ease;
  3866. &.swiper-pagination-bullet-active {
  3867. background: #fff;
  3868. }
  3869. }
  3870. }
  3871. }
  3872. // 기존 pagination (호환성 유지)
  3873. .swiper-pagination {
  3874. position: absolute;
  3875. bottom: 20px;
  3876. z-index: 9;
  3877. display: none;
  3878. .swiper-pagination-bullet {
  3879. opacity: 1;
  3880. &.swiper-pagination-bullet-active {
  3881. background: #FFF;
  3882. }
  3883. width:12px;
  3884. height:12px;
  3885. background: rgba(255, 255, 255, 0.50);
  3886. }
  3887. }
  3888. .swiper--banner--section {
  3889. .swiper--container {
  3890. .swiper-wrapper {
  3891. .slide--image {
  3892. position: relative;
  3893. img {
  3894. width: 100%;
  3895. margin: 0 auto;
  3896. object-fit: cover;
  3897. }
  3898. .desc--wrapper {
  3899. position: absolute;
  3900. bottom: 0;
  3901. width: 100%;
  3902. max-width: 1440px;
  3903. margin: 0 auto;
  3904. left: 50%;
  3905. transform: translateX(-50%);
  3906. background: rgba(0, 0, 0, 0.50);
  3907. .desc--wrap {
  3908. padding: 50px 60px;
  3909. align-self: stretch;
  3910. gap: 25px;
  3911. flex-direction: column;
  3912. display: flex;
  3913. position: relative;
  3914. height: 100%;
  3915. width: 100%;
  3916. }
  3917. h2 {
  3918. color: #FFF;
  3919. font-size: 22px;
  3920. font-style: normal;
  3921. font-weight: 500;
  3922. line-height: 100%;
  3923. /* 22px */
  3924. text-transform: uppercase;
  3925. }
  3926. h4 {
  3927. color: #FFF;
  3928. font-size: 17px;
  3929. font-style: normal;
  3930. font-weight: 400;
  3931. line-height: 1.9;
  3932. }
  3933. }
  3934. }
  3935. }
  3936. }
  3937. }
  3938. }
  3939. }
  3940. /* 차량 상세 정보 스팩 */
  3941. .trim--spec--wrap {
  3942. width: 100%;
  3943. max-width: 1440px;
  3944. margin: 0 auto;
  3945. ul {
  3946. display: flex;
  3947. width: 100%;
  3948. align-items: flex-start;
  3949. justify-content: center;
  3950. padding: 40px 0px;
  3951. border-radius: 30px;
  3952. background: #F9F9F9;
  3953. li {
  3954. width: calc(100% / 3);
  3955. display: flex;
  3956. flex-direction: column;
  3957. justify-content: center;
  3958. align-items: center;
  3959. border-right: 1px solid #DEDEDE;
  3960. padding: 15px 20px;
  3961. &:last-child {
  3962. border-right: 0px;
  3963. }
  3964. >span {
  3965. color: #000;
  3966. text-align: center;
  3967. font-size: 16px;
  3968. font-style: normal;
  3969. font-weight: 400;
  3970. line-height: 100%;
  3971. /* 16px */
  3972. text-transform: uppercase;
  3973. }
  3974. >div {
  3975. color: #000;
  3976. font-size: 22px;
  3977. font-style: normal;
  3978. font-weight: 700;
  3979. text-align: center;
  3980. //line-height: 100%; /* 22px */
  3981. flex-wrap: wrap;
  3982. //text-transform: uppercase;
  3983. justify-content: center;
  3984. display: flex;
  3985. align-items: center;
  3986. margin-top: 25px;
  3987. >u {
  3988. text-decoration: none;
  3989. color: #000;
  3990. font-size: 16px;
  3991. font-style: normal;
  3992. font-weight: 500;
  3993. line-height: 1.3;
  3994. text-align: left;
  3995. width: 90px;
  3996. margin-right: 20px;
  3997. display: flex;
  3998. align-items: center;
  3999. }
  4000. >i {
  4001. margin: 0 5px;
  4002. text-transform: lowercase;
  4003. color: #000;
  4004. text-align: center;
  4005. font-size: 22px;
  4006. font-style: normal;
  4007. font-weight: 700;
  4008. line-height: 100%;
  4009. /* 22px */
  4010. }
  4011. span {
  4012. display: inline-flex;
  4013. width: 1px;
  4014. height: 18px;
  4015. background: #CACACA;
  4016. margin: 0 10px;
  4017. }
  4018. em {
  4019. font-style: normal;
  4020. color: #000;
  4021. font-size: 16px;
  4022. font-style: normal;
  4023. font-weight: 400;
  4024. line-height: 100%;
  4025. /* 16px */
  4026. text-transform: uppercase;
  4027. margin-left: 5px;
  4028. position: relative;
  4029. i {
  4030. font-style: normal;
  4031. color: #076FED;
  4032. font-size: 12px;
  4033. font-style: normal;
  4034. font-weight: 700;
  4035. line-height: 100%;
  4036. /* 12px */
  4037. text-transform: uppercase;
  4038. position: absolute;
  4039. top: -1px;
  4040. right: -10px;
  4041. }
  4042. }
  4043. }
  4044. }
  4045. }
  4046. }
  4047. .title--visual {
  4048. margin-top: 120px;
  4049. &.dark--type {
  4050. background: #FAFAFA;
  4051. margin-top: 0px;
  4052. padding: 80px 0px;
  4053. }
  4054. h2 {
  4055. color: #000;
  4056. text-align: center;
  4057. font-size: 45px;
  4058. font-style: normal;
  4059. font-weight: 500;
  4060. //line-height: 100%; /* 45px */
  4061. text-transform: capitalize;
  4062. span {
  4063. font-weight: 400;
  4064. }
  4065. &.side--title {
  4066. color: #111;
  4067. text-align: center;
  4068. font-size: 35px;
  4069. font-style: normal;
  4070. font-weight: 500;
  4071. //line-height: 100%; /* 30px */
  4072. text-transform: uppercase;
  4073. }
  4074. &.side--title2 {
  4075. color: #111;
  4076. text-align: center;
  4077. font-size: 25px;
  4078. font-style: normal;
  4079. font-weight: 500;
  4080. line-height: 100%;
  4081. /* 25px */
  4082. letter-spacing: -0.5px;
  4083. text-transform: uppercase;
  4084. }
  4085. &.side--title3 {
  4086. color: #000;
  4087. font-size: 30px;
  4088. font-weight: 700;
  4089. }
  4090. }
  4091. .middle--title {
  4092. color: #00095B;
  4093. text-align: center;
  4094. font-size: 20px;
  4095. font-style: normal;
  4096. font-weight: 500;
  4097. //line-height: 100%; /* 20px */
  4098. text-transform: uppercase;
  4099. margin-top: 40px;
  4100. }
  4101. .sub--title {
  4102. margin-top: 45px;
  4103. color: #222;
  4104. text-align: center;
  4105. font-size: 18px;
  4106. font-style: normal;
  4107. font-weight: 300;
  4108. line-height: 1.7;
  4109. // text-transform: uppercase;
  4110. }
  4111. .sub--title2 {
  4112. margin-top: 40px;
  4113. text-align: center;
  4114. color: #111;
  4115. font-size: 25px;
  4116. font-weight: 700;
  4117. @media(max-width: 1024px) {
  4118. margin-top: 20px;
  4119. font-size: 20px;
  4120. }
  4121. }
  4122. }
  4123. .models--visual--01 {
  4124. width: 100%;
  4125. max-width: 1440px;
  4126. margin: 0 auto;
  4127. overflow: hidden;
  4128. border-radius: 20px;
  4129. position: relative;
  4130. aspect-ratio: 1440 / 530; // 비율 유지
  4131. &.type--5 {
  4132. aspect-ratio: 1440 / 650; // 비율 유지
  4133. .thumb--wrap {
  4134. top: 0%;
  4135. }
  4136. }
  4137. &.type--4 {
  4138. aspect-ratio: 1440 / 530; // 비율 유지
  4139. .thumb--wrap {
  4140. top: 0%;
  4141. img {
  4142. width: 100%;
  4143. height: 100%;
  4144. max-height: 530px;
  4145. }
  4146. }
  4147. }
  4148. &.type--3 {
  4149. aspect-ratio: 1440 / 530; // 비율 유지
  4150. .thumb--wrap {
  4151. top: 0%;
  4152. img {
  4153. width: 100%;
  4154. height: auto;
  4155. }
  4156. }
  4157. }
  4158. &.type--2 {
  4159. //aspect-ratio: 1440 / 650; // 비율 유지
  4160. .thumb--wrap {
  4161. top: -20%;
  4162. img {
  4163. width: 100%;
  4164. height: auto;
  4165. }
  4166. }
  4167. }
  4168. .thumb--wrap {
  4169. width: 100%;
  4170. height: 150%; // 높이를 늘려서 여유 공간 확보
  4171. position: relative;
  4172. top: -50%; // 위로 이동
  4173. img {
  4174. object-fit: cover;
  4175. object-position: center top; // 이미지 상단 기준으로 정렬
  4176. width: 100%;
  4177. height: 100%;
  4178. }
  4179. }
  4180. }
  4181. .car--price--small--pic--wrap {
  4182. >div {
  4183. h2 {
  4184. color: #000;
  4185. text-align: center;
  4186. font-size: 30px;
  4187. font-style: normal;
  4188. font-weight: 500;
  4189. line-height: 1.4;
  4190. text-transform: capitalize;
  4191. }
  4192. .car--list--wrap {
  4193. padding-top: 60px;
  4194. ;
  4195. ul {
  4196. display: flex;
  4197. align-items: flex-start;
  4198. justify-content: center;
  4199. gap: 100px;
  4200. li {
  4201. display: flex;
  4202. flex-direction: column;
  4203. align-items: center;
  4204. justify-content: flex-start;
  4205. text-align: center;
  4206. .desc--wrap {
  4207. padding-top: 30px;
  4208. h2 {
  4209. color: #00095B;
  4210. text-align: center;
  4211. font-size: 22px;
  4212. font-style: normal;
  4213. font-weight: 500;
  4214. //line-height: 100%; /* 22px */
  4215. text-transform: capitalize;
  4216. .trim--desc {
  4217. color: #00095B;
  4218. font-weight: 500;
  4219. font-size: 16px;
  4220. }
  4221. &.black {
  4222. color: #22292B;
  4223. font-weight: 700;
  4224. }
  4225. }
  4226. .price--wrap {
  4227. color: #000;
  4228. text-align: center;
  4229. font-size: 18px;
  4230. font-style: normal;
  4231. font-weight: 300;
  4232. // line-height: 100%; /* 18px */
  4233. text-transform: uppercase;
  4234. position: relative;
  4235. display: flex;
  4236. flex-wrap: wrap;
  4237. justify-content: center;
  4238. align-items: center;
  4239. margin-top: 25px;
  4240. &.flex--column {
  4241. flex-direction: column;
  4242. }
  4243. em {
  4244. color: #000;
  4245. font-size: 18px;
  4246. font-style: normal;
  4247. font-weight: 500;
  4248. line-height: 100%;
  4249. text-transform: uppercase;
  4250. position: relative;
  4251. margin-left: 3px;
  4252. i {
  4253. position: absolute;
  4254. top: -1px;
  4255. right: -10px;
  4256. color: #1700F4;
  4257. text-align: center;
  4258. font-size: 12px;
  4259. font-style: normal;
  4260. font-weight: 500;
  4261. line-height: 100%;
  4262. /* 12px */
  4263. text-transform: uppercase;
  4264. }
  4265. }
  4266. }
  4267. }
  4268. }
  4269. }
  4270. }
  4271. }
  4272. }
  4273. // Lightbox Styles
  4274. .lightbox--overlay {
  4275. position: fixed;
  4276. top: 0;
  4277. left: 0;
  4278. right: 0;
  4279. bottom: 0;
  4280. background: rgba(0, 0, 0, 0.95);
  4281. z-index: 10000;
  4282. display: flex;
  4283. align-items: center;
  4284. justify-content: center;
  4285. padding: 20px;
  4286. .lightbox--close {
  4287. position: absolute;
  4288. top: 20px;
  4289. right: 20px;
  4290. width: 50px;
  4291. height: 50px;
  4292. background: rgba(255, 255, 255, 0.1);
  4293. border: 1px solid rgba(255, 255, 255, 0.3);
  4294. border-radius: 50%;
  4295. display: flex;
  4296. align-items: center;
  4297. justify-content: center;
  4298. cursor: pointer;
  4299. z-index: 10001;
  4300. transition: all 0.3s ease;
  4301. &:hover {
  4302. background: rgba(255, 255, 255, 0.2);
  4303. transform: rotate(90deg);
  4304. }
  4305. svg {
  4306. width: 32px;
  4307. height: 32px;
  4308. }
  4309. }
  4310. .lightbox--prev,
  4311. .lightbox--next {
  4312. position: absolute;
  4313. top: 50%;
  4314. transform: translateY(-50%);
  4315. width: 60px;
  4316. height: 60px;
  4317. background: rgba(255, 255, 255, 0.1);
  4318. border: 1px solid rgba(255, 255, 255, 0.3);
  4319. border-radius: 50%;
  4320. display: flex;
  4321. align-items: center;
  4322. justify-content: center;
  4323. cursor: pointer;
  4324. z-index: 10001;
  4325. transition: all 0.3s ease;
  4326. &:hover {
  4327. background: rgba(255, 255, 255, 0.2);
  4328. transform: translateY(-50%) scale(1.1);
  4329. }
  4330. &:disabled {
  4331. opacity: 0.3;
  4332. cursor: not-allowed;
  4333. &:hover {
  4334. transform: translateY(-50%);
  4335. }
  4336. }
  4337. svg {
  4338. width: 40px;
  4339. height: 40px;
  4340. }
  4341. }
  4342. .lightbox--prev {
  4343. left: 20px;
  4344. }
  4345. .lightbox--next {
  4346. right: 20px;
  4347. }
  4348. .lightbox--content {
  4349. width: 100%;
  4350. height: 100%;
  4351. display: flex;
  4352. align-items: center;
  4353. justify-content: center;
  4354. position: relative;
  4355. .lightbox--swiper {
  4356. width: 100%;
  4357. height: 100%;
  4358. max-width: 90vw;
  4359. max-height: 90vh;
  4360. .swiper-wrapper {
  4361. .swiper-slide {
  4362. display: flex;
  4363. align-items: center;
  4364. justify-content: center;
  4365. img {
  4366. max-width: 100%;
  4367. max-height: 90vh;
  4368. width: auto;
  4369. height: auto;
  4370. object-fit: contain;
  4371. border-radius: 8px;
  4372. }
  4373. }
  4374. }
  4375. }
  4376. .lightbox--info {
  4377. position: absolute;
  4378. bottom: 30px;
  4379. left: 50%;
  4380. transform: translateX(-50%);
  4381. z-index: 10001;
  4382. .lightbox--fraction {
  4383. display: flex;
  4384. align-items: center;
  4385. gap: 8px;
  4386. padding: 12px 24px;
  4387. background: rgba(0, 0, 0, 0.6);
  4388. border-radius: 30px;
  4389. color: #fff;
  4390. font-size: 18px;
  4391. font-weight: 600;
  4392. backdrop-filter: blur(10px);
  4393. }
  4394. }
  4395. }
  4396. }
  4397. // Lightbox Animation
  4398. .lightbox-fade-enter-active,
  4399. .lightbox-fade-leave-active {
  4400. transition: opacity 0.3s ease;
  4401. }
  4402. .lightbox-fade-enter-from,
  4403. .lightbox-fade-leave-to {
  4404. opacity: 0;
  4405. }
  4406. .caution--text--foot {
  4407. display: flex;
  4408. width: 100%;
  4409. gap: 10px;
  4410. background: #F7F7F7;
  4411. padding: 70px 0px;
  4412. .caution--text {
  4413. max-width: 1440px;
  4414. margin: 0 auto;
  4415. color: #000;
  4416. font-size: 17px;
  4417. font-style: normal;
  4418. font-weight: 300;
  4419. line-height: 1.8;
  4420. letter-spacing: -0.34px;
  4421. text-transform: uppercase;
  4422. }
  4423. }
  4424. // 반응형
  4425. @media (max-width: 768px) {
  4426. .swiper--banner--wrapper {
  4427. .swiper--banner--container {
  4428. .swiper--pagination--wrapper {
  4429. .swiper--progressbar {
  4430. width: 150px;
  4431. }
  4432. .swiper--fraction {
  4433. font-size: 14px;
  4434. }
  4435. }
  4436. .zoom--btn {
  4437. width: 40px;
  4438. height: 40px;
  4439. top: 10px;
  4440. right: 10px;
  4441. svg {
  4442. width: 20px;
  4443. height: 20px;
  4444. }
  4445. }
  4446. }
  4447. }
  4448. .lightbox--overlay {
  4449. .lightbox--prev,
  4450. .lightbox--next {
  4451. width: 50px;
  4452. height: 50px;
  4453. svg {
  4454. width: 30px;
  4455. height: 30px;
  4456. }
  4457. }
  4458. .lightbox--prev {
  4459. left: 10px;
  4460. }
  4461. .lightbox--next {
  4462. right: 10px;
  4463. }
  4464. .lightbox--content {
  4465. .lightbox--info {
  4466. bottom: 20px;
  4467. .lightbox--fraction {
  4468. font-size: 16px;
  4469. padding: 10px 20px;
  4470. }
  4471. }
  4472. }
  4473. }
  4474. }
  4475. .theme--wrap {
  4476. display: flex;
  4477. flex-direction: column;
  4478. margin: 0 auto;
  4479. max-width: 1440px;
  4480. align-items: center;
  4481. justify-content: center;
  4482. gap: 120px;
  4483. .theme--img {
  4484. >p {
  4485. margin-bottom: 35px;
  4486. color: #000;
  4487. font-size: 19px;
  4488. font-weight: 400;
  4489. text-align: center;
  4490. text-transform: capitalize;
  4491. @media(max-width: 500px) {
  4492. margin-bottom: 10px;
  4493. }
  4494. }
  4495. .img--wrap {
  4496. border-radius: 20px;
  4497. overflow: hidden;
  4498. img {
  4499. width: 100%;
  4500. }
  4501. }
  4502. }
  4503. .theme--top {
  4504. display: flex;
  4505. gap: 40px;
  4506. }
  4507. .theme--bot {
  4508. gap: 30px;
  4509. display: flex;
  4510. .theme--img {
  4511. border-radius: 20px;
  4512. overflow: hidden;
  4513. img {
  4514. width: 100%;
  4515. }
  4516. }
  4517. }
  4518. }
  4519. .gallery--wrap {
  4520. margin: 0 auto;
  4521. max-width: 1440px;
  4522. display: flex;
  4523. align-items: center;
  4524. justify-content: space-between;
  4525. .thumb--wrap {
  4526. // width:calc(50% - 20px);
  4527. width: 100%;
  4528. .slide--image {
  4529. padding-top: 0px !important;
  4530. }
  4531. }
  4532. }
  4533. .models--visual--grid {
  4534. width: 100%;
  4535. ul {
  4536. max-width: 1440px;
  4537. margin: 0 auto;
  4538. display: flex;
  4539. align-items: flex-start;
  4540. justify-content: center;
  4541. gap: 30px;
  4542. li {
  4543. width: calc((100% - 60px) / 3);
  4544. .desc--wrap {
  4545. padding-top: 50px;
  4546. h2 {
  4547. color: #111;
  4548. text-align: center;
  4549. font-size: 25px;
  4550. font-style: normal;
  4551. font-weight: 500;
  4552. line-height: 1.3;
  4553. //text-transform: uppercase;
  4554. }
  4555. .captions {
  4556. color: #222;
  4557. text-align: center;
  4558. font-size: 17px;
  4559. font-style: normal;
  4560. font-weight: 300;
  4561. line-height: 1.7;
  4562. //text-transform: uppercase;
  4563. margin-top: 40px;
  4564. }
  4565. }
  4566. .thumb--wrap {
  4567. position: relative;
  4568. aspect-ratio: 46/35;
  4569. overflow: hidden;
  4570. border-radius: 20px;
  4571. img {
  4572. width: 100%;
  4573. height: 100%;
  4574. position: absolute;
  4575. top: 50%;
  4576. transform: translateY(-50%);
  4577. object-fit: cover;
  4578. }
  4579. }
  4580. }
  4581. }
  4582. }
  4583. .ovwner--wrapper {
  4584. width: 100%;
  4585. max-width: 1440px;
  4586. margin: 0 auto;
  4587. padding-bottom: 120px;
  4588. &.type--2 {
  4589. max-width: 100%;
  4590. .inner--wrap {
  4591. max-width: 1440px;
  4592. margin: 0 auto;
  4593. }
  4594. }
  4595. .title--visual {
  4596. text-align: center;
  4597. .desc {
  4598. color: #333;
  4599. text-align: center;
  4600. font-size: 18px;
  4601. font-style: normal;
  4602. font-weight: 300;
  4603. line-height: 1.7;
  4604. /* 18px */
  4605. letter-spacing: -0.36px;
  4606. text-transform: uppercase;
  4607. &.type2 {
  4608. color: #00095b;
  4609. margin-top: 50px;
  4610. font-weight: 500;
  4611. font-size: 22px;
  4612. letter-spacing: -0.44px;
  4613. }
  4614. }
  4615. }
  4616. .nav--desc--wrap {
  4617. margin-top: 80px;
  4618. margin-bottom: 240px;
  4619. @media(max-width: 1024px) {
  4620. margin-bottom: 120px;
  4621. }
  4622. p {
  4623. color: #333;
  4624. font-size: 22px;
  4625. font-weight: 400;
  4626. @media(max-width: 1024px) {
  4627. font-size: 18px;
  4628. }
  4629. b {
  4630. font-weight: 700;
  4631. color: #00095b;
  4632. }
  4633. }
  4634. }
  4635. .contact--wrap {
  4636. display: flex;
  4637. justify-content: space-between;
  4638. gap: 50px;
  4639. text-align: center;
  4640. margin-top: 100px;
  4641. .contact {
  4642. background-color: #fafafa;
  4643. padding: 60px 20px 80px;
  4644. width: 33%;
  4645. display: flex;
  4646. flex-direction: column;
  4647. align-items: center;
  4648. .quick--more {
  4649. border-radius: 10px;
  4650. border: 1px solid rgba(0, 9, 91, 0.50);
  4651. display: inline-flex;
  4652. padding: 20px;
  4653. justify-content: center;
  4654. align-items: center;
  4655. gap: 10px;
  4656. color: #00095B;
  4657. text-align: center;
  4658. font-size: 14px;
  4659. font-style: normal;
  4660. font-weight: 500;
  4661. line-height: 100%;
  4662. /* 14px */
  4663. letter-spacing: -0.28px;
  4664. text-transform: uppercase;
  4665. }
  4666. .mailto--type {
  4667. font-size: 20px;
  4668. font-weight: 400;
  4669. color: #00095B;
  4670. @media(max-width: 768px) {
  4671. font-size: 18px;
  4672. }
  4673. }
  4674. .ico {
  4675. margin-bottom: 40px;
  4676. width: 100px;
  4677. height: 100px;
  4678. background-color: #f3f3f3;
  4679. border-radius: 50%;
  4680. background-image: url(/img/ico--contact1.svg);
  4681. }
  4682. &:nth-of-type(2) {
  4683. .ico {
  4684. background-image: url(/img/ico--contact2.svg);
  4685. }
  4686. }
  4687. &:nth-of-type(3) {
  4688. .ico {
  4689. background-image: url(/img/ico--contact4.svg);
  4690. }
  4691. }
  4692. }
  4693. h3 {
  4694. color: #000;
  4695. font-size: 18px;
  4696. letter-spacing: -0.36px;
  4697. margin-bottom: 30px;
  4698. font-weight: 500;
  4699. }
  4700. span {
  4701. margin-bottom: 30px;
  4702. font-size: 20px;
  4703. font-weight: 500;
  4704. letter-spacing: -0.4px;
  4705. color: #00095b;
  4706. }
  4707. p {
  4708. color: #333;
  4709. font-size: 16px;
  4710. font-weight: 400;
  4711. letter-spacing: -0.32px;
  4712. }
  4713. }
  4714. .contact--wrap2 {
  4715. margin-top: 100px;
  4716. display: flex;
  4717. gap: 50px;
  4718. .contact {
  4719. width: 33%;
  4720. display: flex;
  4721. padding: 60px 35px;
  4722. align-items: center;
  4723. background-color: #fafafa;
  4724. gap: 30px;
  4725. border-radius: 30px;
  4726. .ico {
  4727. min-width: 120px;
  4728. width: 120px;
  4729. height: 120px;
  4730. background-color: #fff;
  4731. border-radius: 50%;
  4732. background-image: url(/img/owner/ico--contact1.svg);
  4733. background-repeat: no-repeat;
  4734. background-position: center;
  4735. background-size: 55px 55px;
  4736. }
  4737. &:nth-child(2) {
  4738. .ico {
  4739. background-image: url(/img/owner/ico--contact2.svg);
  4740. }
  4741. }
  4742. &:nth-child(3) {
  4743. .ico {
  4744. background-image: url(/img/owner/ico--contact4.svg);
  4745. }
  4746. }
  4747. .info--wrap {
  4748. display: flex;
  4749. flex-direction: column;
  4750. gap: 20px;
  4751. .quick--more {
  4752. border-radius: 10px;
  4753. border: 1px solid rgba(34, 41, 43, 0.50);
  4754. display: inline-flex;
  4755. padding: 20px 25px;
  4756. justify-content: center;
  4757. align-items: center;
  4758. gap: 10px;
  4759. color: #22292B;
  4760. text-align: center;
  4761. font-size: 14px;
  4762. font-style: normal;
  4763. font-weight: 500;
  4764. line-height: 100%;
  4765. /* 14px */
  4766. letter-spacing: -0.28px;
  4767. text-transform: uppercase;
  4768. }
  4769. .mailto--type {
  4770. font-size: 16px;
  4771. color: #222;
  4772. }
  4773. >h3 {
  4774. color: #111;
  4775. font-size: 17px;
  4776. font-weight: 400;
  4777. line-height: 1;
  4778. }
  4779. >span {
  4780. font-size: 28px;
  4781. font-weight: 700;
  4782. color: #111;
  4783. line-height: 1;
  4784. }
  4785. >p {
  4786. color: #444;
  4787. font-size: 17px;
  4788. font-weight: 400;
  4789. }
  4790. }
  4791. }
  4792. }
  4793. .text--tab--layout {
  4794. position: sticky;
  4795. top: 0px;
  4796. z-index: 20;
  4797. ul {
  4798. display: flex;
  4799. align-items: center;
  4800. overflow-x: auto;
  4801. justify-content: flex-start;
  4802. gap: 15px;
  4803. li {
  4804. cursor: pointer;
  4805. &.actv {
  4806. a {
  4807. background-color: #000;
  4808. border-color: #000;
  4809. color: #fff;
  4810. }
  4811. }
  4812. a {
  4813. border-radius: 100px;
  4814. border: 1px solid #E8E8E8;
  4815. background: #FFF;
  4816. display: flex;
  4817. padding: 22px 30px;
  4818. align-items: center;
  4819. justify-content: center;
  4820. color: #444;
  4821. white-space: nowrap;
  4822. font-size: 16px;
  4823. font-style: normal;
  4824. font-weight: 400;
  4825. line-height: 100%;
  4826. /* 16px */
  4827. letter-spacing: -0.32px;
  4828. text-transform: uppercase;
  4829. }
  4830. }
  4831. }
  4832. }
  4833. .owner--inner--content {
  4834. .thumb {
  4835. img {
  4836. width: 100%;
  4837. object-fit: contain;
  4838. }
  4839. }
  4840. .desc--wrapper {
  4841. >h2 {
  4842. color: #111;
  4843. font-size: 30px;
  4844. font-style: normal;
  4845. font-weight: 500;
  4846. letter-spacing: -0.6px;
  4847. text-transform: uppercase;
  4848. }
  4849. >h3 {
  4850. color: #111;
  4851. font-size: 19px;
  4852. font-weight: 500;
  4853. letter-spacing: -0.38px;
  4854. }
  4855. .captions {
  4856. padding-top: 40px;
  4857. color: #333;
  4858. font-size: 18px;
  4859. font-style: normal;
  4860. font-weight: 300;
  4861. line-height: 1.7;
  4862. /* 18px */
  4863. letter-spacing: -0.36px;
  4864. text-transform: uppercase;
  4865. &.fz--17 {
  4866. font-size: 17px;
  4867. }
  4868. >h3 {
  4869. color: #111;
  4870. font-size: 18px;
  4871. font-style: normal;
  4872. font-weight: 400;
  4873. letter-spacing: -0.36px;
  4874. text-transform: uppercase;
  4875. }
  4876. >ul {
  4877. padding-top: 60px;
  4878. li {
  4879. position: relative;
  4880. color: #111;
  4881. font-size: 17px;
  4882. font-style: normal;
  4883. font-weight: 400;
  4884. //line-height: 100%; /* 17px */
  4885. line-height: 1.4;
  4886. letter-spacing: -0.34px;
  4887. text-transform: uppercase;
  4888. padding-left: 20px;
  4889. margin-bottom: 15px;
  4890. &:before {
  4891. content: '';
  4892. display: block;
  4893. width: 3px;
  4894. height: 3px;
  4895. background: #111;
  4896. position: absolute;
  4897. left: 10px;
  4898. top: 9px;
  4899. }
  4900. }
  4901. }
  4902. .add--text {
  4903. color: #333;
  4904. font-size: 18px;
  4905. font-style: normal;
  4906. font-weight: 300;
  4907. letter-spacing: -0.36px;
  4908. text-transform: uppercase;
  4909. padding-top: 60px;
  4910. }
  4911. }
  4912. }
  4913. }
  4914. .owner--part--wrap {
  4915. display: flex;
  4916. flex-direction: column;
  4917. margin-top: 150px;
  4918. gap: 50px;
  4919. .owner--part {
  4920. padding: 120px 100px;
  4921. background-color: #252525;
  4922. display: flex;
  4923. align-items: center;
  4924. gap: 100px;
  4925. .ico {
  4926. width: 200px;
  4927. background-size: 70px 70px;
  4928. min-width: 200px;
  4929. border-radius: 100px;
  4930. background-color: #fff;
  4931. height: 200px;
  4932. background-image: url(/img/owner/ico--parts1.svg);
  4933. }
  4934. &:nth-of-type(2) {
  4935. .ico {
  4936. background-image: url(/img/owner/ico--parts2.svg);
  4937. }
  4938. }
  4939. .part--content {
  4940. >h3 {
  4941. margin-bottom: 40px;
  4942. color: #fff;
  4943. font-size: 30px;
  4944. font-weight: 500;
  4945. letter-spacing: -0.6px;
  4946. }
  4947. >p {
  4948. color: #fff;
  4949. font-size: 17px;
  4950. font-weight: 300;
  4951. letter-spacing: -0.34px;
  4952. line-height: 1.7;
  4953. }
  4954. }
  4955. }
  4956. }
  4957. }
  4958. .nav--dis--wrap {
  4959. &.active {
  4960. .dis--cont {
  4961. max-height: 1000px;
  4962. }
  4963. .dis--btn {
  4964. .ico {
  4965. transform: rotate(0deg);
  4966. }
  4967. }
  4968. }
  4969. .dis--btn {
  4970. border-top: 1px solid #D3D3D3;
  4971. border-bottom: 1px solid #D3D3D3;
  4972. text-align: center;
  4973. display: flex;
  4974. align-items: center;
  4975. justify-content: center;
  4976. gap: 15px;
  4977. color: #076fed;
  4978. font-size: 16px;
  4979. cursor: pointer;
  4980. font-weight: 500;
  4981. text-transform: uppercase;
  4982. padding: 30px;
  4983. line-height: 1;
  4984. .ico {
  4985. width: 20px;
  4986. height: 20px;
  4987. transition: all 0.3s;
  4988. transform: rotate(180deg);
  4989. background-image: url(/img/owner/ico--arrow--blue.svg);
  4990. }
  4991. }
  4992. .dis--cont {
  4993. background-color: #f9f9f9;
  4994. color: #111;
  4995. max-height: 0;
  4996. overflow: hidden;
  4997. transition: max-height 0.3s;
  4998. font-size: 16px;
  4999. font-weight: 300;
  5000. p {
  5001. padding: 60px 0;
  5002. }
  5003. }
  5004. }
  5005. .consumable--parts--wrap {
  5006. .prm--service {
  5007. >h2 {
  5008. color: #111;
  5009. text-align: center;
  5010. font-size: 30px;
  5011. font-style: normal;
  5012. margin-bottom: 40px;
  5013. font-weight: 500;
  5014. //line-height: 100%; /* 30px */
  5015. letter-spacing: -0.6px;
  5016. text-transform: capitalize;
  5017. }
  5018. .sub--title {
  5019. color: #333;
  5020. text-align: center;
  5021. font-size: 18px;
  5022. font-style: normal;
  5023. font-weight: 300;
  5024. line-height: 1.7;
  5025. text-transform: uppercase;
  5026. }
  5027. .sub--list {
  5028. gap: 15px;
  5029. flex-direction: column;
  5030. align-items: center;
  5031. max-width: 1024px;
  5032. margin: 0 auto 70px;
  5033. >li {
  5034. width: 100%;
  5035. text-align: left;
  5036. color: #111;
  5037. align-items: start;
  5038. font-size: 17px;
  5039. font-weight: 300;
  5040. letter-spacing: -0.34px;
  5041. position: relative;
  5042. padding-left: 15px;
  5043. &::before {
  5044. position: absolute;
  5045. top: 10px;
  5046. left: 0;
  5047. background-color: #111;
  5048. content: '';
  5049. width: 3px;
  5050. height: 3px;
  5051. display: inline-block;
  5052. }
  5053. }
  5054. }
  5055. >ul {
  5056. display: flex;
  5057. align-items: flex-start;
  5058. justify-content: center;
  5059. padding-top: 70px;
  5060. >li {
  5061. width: calc(100% / 3);
  5062. display: flex;
  5063. align-items: center;
  5064. justify-content: center;
  5065. flex-direction: column;
  5066. .thumb {
  5067. width: 150px;
  5068. height: 150px;
  5069. display: flex;
  5070. align-items: center;
  5071. justify-content: center;
  5072. border-radius: 1000px;
  5073. background: #F6F6F6;
  5074. }
  5075. .captions {
  5076. color: #000;
  5077. text-align: center;
  5078. font-size: 17px;
  5079. font-style: normal;
  5080. font-weight: 300;
  5081. line-height: 1.7;
  5082. padding-top: 35px;
  5083. text-transform: uppercase;
  5084. }
  5085. }
  5086. }
  5087. }
  5088. .dbl--contents {
  5089. >ul {
  5090. display: flex;
  5091. align-items: flex-start;
  5092. justify-content: center;
  5093. gap: 50px;
  5094. li {
  5095. width: calc(50% - 25px);
  5096. .thumb {
  5097. overflow: hidden;
  5098. border-radius: 30px;
  5099. }
  5100. .desc--wrap {
  5101. h2 {
  5102. text-align: left;
  5103. color: #000;
  5104. font-size: 20px;
  5105. font-style: normal;
  5106. font-weight: 500;
  5107. //line-height: 100%; /* 20px */
  5108. text-transform: uppercase;
  5109. }
  5110. >ul {
  5111. width: 100%;
  5112. padding-top: 30px;
  5113. li {
  5114. position: relative;
  5115. text-align: left;
  5116. padding-left: 20px;
  5117. width: 100%;
  5118. margin-bottom: 10px;
  5119. color: #222;
  5120. font-size: 17px;
  5121. font-style: normal;
  5122. font-weight: 300;
  5123. line-height: 1.7;
  5124. /* 17px */
  5125. text-transform: uppercase;
  5126. &:before {
  5127. content: '';
  5128. display: block;
  5129. width: 3px;
  5130. height: 3px;
  5131. background-color: #000;
  5132. position: absolute;
  5133. left: 10px;
  5134. top: 12px;
  5135. }
  5136. }
  5137. }
  5138. }
  5139. }
  5140. }
  5141. }
  5142. .essential--maintenace--wrap {
  5143. background: #FAFAFA;
  5144. .inner--wrap {
  5145. .title--visual {
  5146. >h2 {
  5147. color: #111;
  5148. text-align: center;
  5149. font-size: 30px;
  5150. font-style: normal;
  5151. font-weight: 500;
  5152. //line-height: 100%; /* 30px */
  5153. letter-spacing: -0.6px;
  5154. text-transform: capitalize;
  5155. }
  5156. >.captions {
  5157. color: #333;
  5158. text-align: center;
  5159. font-size: 18px;
  5160. font-style: normal;
  5161. font-weight: 300;
  5162. line-height: 1.7;
  5163. text-transform: uppercase;
  5164. }
  5165. }
  5166. }
  5167. .columb--thume--3 {
  5168. >ul {
  5169. display: flex;
  5170. align-items: flex-start;
  5171. justify-content: center;
  5172. gap: 50px;
  5173. >li {
  5174. width: calc((100% - 100px) / 3);
  5175. text-align: center;
  5176. .thumb {
  5177. overflow: hidden;
  5178. border-radius: 30px;
  5179. }
  5180. .captions {
  5181. padding-top: 30px;
  5182. color: #000;
  5183. text-align: center;
  5184. font-size: 18px;
  5185. font-style: normal;
  5186. font-weight: 500;
  5187. //line-height: 100%; /* 18px */
  5188. text-transform: uppercase;
  5189. }
  5190. }
  5191. }
  5192. }
  5193. .column--3 {
  5194. >ul {
  5195. display: flex;
  5196. align-items: flex-start;
  5197. justify-content: center;
  5198. >li {
  5199. width: calc(100% / 3);
  5200. display: flex;
  5201. align-items: center;
  5202. justify-content: center;
  5203. flex-direction: column;
  5204. .thumb {
  5205. width: 150px;
  5206. height: 150px;
  5207. display: flex;
  5208. align-items: center;
  5209. justify-content: center;
  5210. border-radius: 1000px;
  5211. background: #F3F3F3;
  5212. }
  5213. .caption {
  5214. padding-top: 35px;
  5215. color: #000;
  5216. text-align: center;
  5217. font-size: 17px;
  5218. font-style: normal;
  5219. font-weight: 300;
  5220. //line-height: 100%; /* 17px */
  5221. }
  5222. }
  5223. }
  5224. }
  5225. }
  5226. .used--essential--wrap {
  5227. width: 100%;
  5228. margin: 0 auto;
  5229. max-width: 1440px;
  5230. padding-bottom: 150px;
  5231. .title--visual {
  5232. >h2 {
  5233. color: #111;
  5234. text-align: center;
  5235. font-size: 30px;
  5236. font-style: normal;
  5237. font-weight: 500;
  5238. //line-height: 100%; /* 30px */
  5239. letter-spacing: -0.6px;
  5240. text-transform: capitalize;
  5241. }
  5242. .captions {
  5243. color: #333;
  5244. text-align: center;
  5245. font-size: 18px;
  5246. font-style: normal;
  5247. font-weight: 300;
  5248. line-height: 1.7;
  5249. /* 18px */
  5250. text-transform: uppercase;
  5251. padding-top: 40px;
  5252. }
  5253. }
  5254. .column--3 {
  5255. padding-top: 70px;
  5256. >ul {
  5257. display: flex;
  5258. align-items: flex-start;
  5259. justify-content: center;
  5260. >li {
  5261. display: flex;
  5262. align-items: center;
  5263. justify-content: center;
  5264. flex-direction: column;
  5265. text-align: center;
  5266. width: calc(100% / 3);
  5267. .thumb {
  5268. width: 150px;
  5269. height: 150px;
  5270. border-radius: 1000px;
  5271. background: #F6F6F6;
  5272. display: flex;
  5273. align-items: center;
  5274. justify-content: center;
  5275. }
  5276. .caption {
  5277. padding-top: 35px;
  5278. color: #000;
  5279. text-align: center;
  5280. font-size: 17px;
  5281. font-style: normal;
  5282. font-weight: 300;
  5283. line-height: 1.7;
  5284. /* 17px */
  5285. text-transform: uppercase;
  5286. }
  5287. }
  5288. }
  5289. }
  5290. }
  5291. .column--4 {
  5292. >h2 {
  5293. color: #111;
  5294. text-align: center;
  5295. font-size: 30px;
  5296. font-style: normal;
  5297. font-weight: 700;
  5298. //line-height: 100%; /* 30px */
  5299. text-transform: uppercase;
  5300. }
  5301. >ul {
  5302. padding-top: 70px;
  5303. display: flex;
  5304. gap: 20px;
  5305. li {
  5306. width: calc((100% - 60px) / 3);
  5307. border-radius: 30px;
  5308. border: 1px solid #E0E0E0;
  5309. background: #FFF;
  5310. padding: 45px;
  5311. .thumb {
  5312. width: 56px;
  5313. height: 56px;
  5314. }
  5315. >h2 {
  5316. padding-top: 50px;
  5317. color: #000;
  5318. font-size: 20px;
  5319. font-style: normal;
  5320. font-weight: 500;
  5321. line-height: 1.7;
  5322. /* 20px */
  5323. letter-spacing: -0.4px;
  5324. text-transform: uppercase;
  5325. margin-bottom: 30px;
  5326. }
  5327. >div {
  5328. color: #000;
  5329. font-size: 16px;
  5330. font-style: normal;
  5331. font-weight: 300;
  5332. line-height: 1.7;
  5333. /* 16px */
  5334. letter-spacing: -0.32px;
  5335. text-transform: uppercase;
  5336. }
  5337. }
  5338. }
  5339. }
  5340. }
  5341. .service--card--wrap {
  5342. display: flex;
  5343. gap: 100px;
  5344. align-items: center;
  5345. .img--wrap {
  5346. width: 50%;
  5347. }
  5348. .desc--wrap {
  5349. width: 50%;
  5350. >h3 {
  5351. margin-bottom: 25px;
  5352. color: #000;
  5353. font-size: 30px;
  5354. font-weight: 500;
  5355. }
  5356. >p {
  5357. color: #000;
  5358. font-size: 18px;
  5359. font-weight: 400;
  5360. letter-spacing: -0.36px;
  5361. margin-bottom: 25px;
  5362. }
  5363. >ul {
  5364. display: flex;
  5365. flex-direction: column;
  5366. gap: 25px;
  5367. >li {
  5368. color: #222;
  5369. font-size: 17px;
  5370. font-weight: 300;
  5371. position: relative;
  5372. padding-left: 13px;
  5373. &::before {
  5374. top: 10px;
  5375. left: 0;
  5376. position: absolute;
  5377. content: '';
  5378. width: 3px;
  5379. height: 3px;
  5380. background-color: #595959;
  5381. display: inline-block;
  5382. }
  5383. }
  5384. }
  5385. }
  5386. }
  5387. .dbl--info--cont {
  5388. >ul {
  5389. display: flex;
  5390. gap: 50px;
  5391. >li {
  5392. background: #FAFAFA;
  5393. border-radius: 30px;
  5394. width: 100%;
  5395. max-width: calc((100% - 25px) / 2);
  5396. padding: 50px 70px;
  5397. display: flex;
  5398. align-items: center;
  5399. gap: 50px;
  5400. .thumb {
  5401. width: 100px;
  5402. height: 100px;
  5403. min-width: 100px;
  5404. border-radius: 100px;
  5405. background: #0AF;
  5406. display: inline-flex;
  5407. align-items: center;
  5408. justify-content: center;
  5409. }
  5410. .desc {
  5411. >h2 {
  5412. color: #111;
  5413. font-size: 20px;
  5414. font-style: normal;
  5415. font-weight: 700;
  5416. //line-height: 100%; /* 20px */
  5417. letter-spacing: -0.4px;
  5418. text-transform: uppercase;
  5419. margin-bottom: 24px;
  5420. }
  5421. .phone {
  5422. color: #00095B;
  5423. font-size: 20px;
  5424. font-style: normal;
  5425. font-weight: 700;
  5426. //line-height: 100%; /* 20px */
  5427. letter-spacing: -0.4px;
  5428. text-transform: uppercase;
  5429. }
  5430. }
  5431. }
  5432. }
  5433. }
  5434. .tfs--drop--menus {
  5435. >ul {
  5436. >li {
  5437. .title {
  5438. margin-top: -1px;
  5439. width: 100%;
  5440. display: flex;
  5441. align-items: center;
  5442. justify-content: flex-start;
  5443. font-weight: 700;
  5444. border-top: 1px solid #DBDBDB;
  5445. border-bottom: 1px solid #DBDBDB;
  5446. background: #F8F8F8;
  5447. padding: 32px 25px;
  5448. position: relative;
  5449. cursor: pointer;
  5450. &:after {
  5451. content: '';
  5452. display: block;
  5453. width: 24px;
  5454. height: 24px;
  5455. background: url(/img/ico--chv--down.svg) no-repeat center;
  5456. position: absolute;
  5457. top: 50%;
  5458. transform: translateY(-50%) rotate(180deg);
  5459. right: 25px;
  5460. }
  5461. }
  5462. &.open {
  5463. .title {
  5464. &:after {
  5465. transform: translateY(-50%) rotate(0deg);
  5466. }
  5467. }
  5468. .drop--contents {
  5469. display: block;
  5470. }
  5471. }
  5472. .drop--contents {
  5473. padding: 50px 25px;
  5474. display: none;
  5475. &.type2 {
  5476. padding: 50px;
  5477. }
  5478. h2 {
  5479. color: #111;
  5480. font-size: 18px;
  5481. font-style: normal;
  5482. font-weight: 500;
  5483. line-height: 100%;
  5484. /* 18px */
  5485. letter-spacing: -0.36px;
  5486. text-transform: uppercase;
  5487. margin-bottom: 20px;
  5488. position: relative;
  5489. padding-left: 20px;
  5490. &::before {
  5491. content: '';
  5492. display: block;
  5493. width: 3px;
  5494. height: 3px;
  5495. background-color: #111;
  5496. position: absolute;
  5497. top: 7px;
  5498. left: 10px;
  5499. }
  5500. }
  5501. h3 {
  5502. color: #111;
  5503. font-size: 18px;
  5504. font-style: normal;
  5505. font-weight: 500;
  5506. //line-height: 100%; /* 18px */
  5507. letter-spacing: -0.36px;
  5508. text-transform: uppercase;
  5509. margin-bottom: 20px;
  5510. }
  5511. ul {
  5512. >li {
  5513. color: #333;
  5514. font-size: 17px;
  5515. font-style: normal;
  5516. font-weight: 300;
  5517. //line-height: 100%; /* 17px */
  5518. letter-spacing: -0.34px;
  5519. text-transform: lowercase;
  5520. margin-bottom: 20px;
  5521. position: relative;
  5522. padding-left: 20px;
  5523. &:before {
  5524. content: '';
  5525. display: block;
  5526. width: 3px;
  5527. height: 3px;
  5528. background-color: #333;
  5529. position: absolute;
  5530. top: 10px;
  5531. left: 10px;
  5532. }
  5533. &:last-child {
  5534. margin-bottom: 0px;
  5535. }
  5536. }
  5537. }
  5538. div {
  5539. color: #333;
  5540. font-size: 17px;
  5541. font-style: normal;
  5542. font-weight: 300;
  5543. line-height: 1.7;
  5544. /* 17px */
  5545. letter-spacing: -0.34px;
  5546. text-transform: lowercase;
  5547. margin-bottom: 55px;
  5548. padding-left: 20px;
  5549. &.solo {
  5550. margin-bottom: 0px;
  5551. padding-left: 0px;
  5552. }
  5553. }
  5554. p {
  5555. color: #333;
  5556. font-size: 17px;
  5557. font-style: normal;
  5558. font-weight: 300;
  5559. line-height: 1.7;
  5560. letter-spacing: -0.34px;
  5561. text-transform: lowercase;
  5562. position: relative;
  5563. padding-left: 25px;
  5564. &:before {
  5565. content: '*';
  5566. display: block;
  5567. position: absolute;
  5568. left: 10px;
  5569. top: 2px;
  5570. }
  5571. }
  5572. .drop--part--wrap {
  5573. padding: 0;
  5574. margin-bottom: 0;
  5575. align-items: center;
  5576. display: flex;
  5577. gap: 55px;
  5578. .img--wrap {
  5579. width: 258px;
  5580. min-width: 258px;
  5581. padding: 0;
  5582. margin: 0;
  5583. }
  5584. .desc--wrap {
  5585. padding: 0;
  5586. margin: 0;
  5587. ul {
  5588. li {
  5589. color: #111;
  5590. line-height: 1.7;
  5591. &::before {
  5592. top: 12px;
  5593. }
  5594. }
  5595. }
  5596. }
  5597. }
  5598. }
  5599. }
  5600. }
  5601. }
  5602. /* 버튼 리스트 */
  5603. .location--btn {
  5604. color: #111;
  5605. font-size: 15px;
  5606. font-style: normal;
  5607. font-weight: 500;
  5608. line-height: 100%;
  5609. /* 15px */
  5610. letter-spacing: -0.3px;
  5611. text-transform: uppercase;
  5612. border-radius: 10px;
  5613. border: 1px solid rgba(0, 0, 0, 0.50);
  5614. display: inline-flex;
  5615. align-items: center;
  5616. border-radius: 10px;
  5617. justify-content: center;
  5618. padding: 13px 18px;
  5619. gap: 7px;
  5620. }
  5621. .sticky--banner {
  5622. position: sticky;
  5623. top: 0px;
  5624. z-index: 1;
  5625. }
  5626. .outer--wrapper {
  5627. position: relative;
  5628. z-index: 2;
  5629. background-color: #fff;
  5630. padding-top: 100px;
  5631. @media (max-width: 768px) {
  5632. padding-top: 50px;
  5633. }
  5634. }
  5635. .about--wrap {
  5636. .visual--banner--02 {
  5637. .thumb--wrap {
  5638. width: 100%;
  5639. display: flex;
  5640. align-items: flex-start;
  5641. gap: 50px;
  5642. row-gap: 120px;
  5643. flex-wrap: wrap;
  5644. @media (max-width: 768px) {
  5645. row-gap: 50px;
  5646. }
  5647. .thumb--item {
  5648. width: calc(50% - 25px);
  5649. @media (max-width: 768px) {
  5650. width: 100%;
  5651. }
  5652. .desc {
  5653. .t--title {
  5654. color: #000;
  5655. font-size: 20px;
  5656. font-style: normal;
  5657. font-weight: 500;
  5658. line-height: 100%;
  5659. /* 20px */
  5660. text-transform: uppercase;
  5661. padding-top: 30px;
  5662. }
  5663. .captions {
  5664. margin-top: 30px;
  5665. color: #222;
  5666. font-size: 17px;
  5667. font-style: normal;
  5668. font-weight: 300;
  5669. line-height: 1.7;
  5670. text-transform: uppercase;
  5671. }
  5672. }
  5673. .thumb {
  5674. border-radius: 30px;
  5675. overflow: hidden;
  5676. width: 100%;
  5677. img {
  5678. width: 100%;
  5679. height: 100%;
  5680. object-fit: cover;
  5681. }
  5682. }
  5683. }
  5684. }
  5685. }
  5686. .our--vision {
  5687. background: #FAFAFA;
  5688. padding-bottom: 150px;
  5689. @media (max-width:768px) {
  5690. padding-bottom: 50px;
  5691. }
  5692. .vision--wrap {
  5693. padding-top: 70px;
  5694. >ul {
  5695. max-width: 1440px;
  5696. display: flex;
  5697. margin: 0 auto;
  5698. gap: 50px;
  5699. row-gap: 50px;
  5700. li {
  5701. width: calc((100% - 150px) / 4);
  5702. @media(max-width:1440px) {
  5703. width: calc((100% - 50px) / 2);
  5704. }
  5705. text-align: center;
  5706. display: flex;
  5707. flex-direction: column;
  5708. justify-content: flex-start;
  5709. align-items: center;
  5710. .thumb {
  5711. border-radius: 1000px;
  5712. background: #F3F3F3;
  5713. width: 150px;
  5714. height: 150px;
  5715. display: flex;
  5716. align-items: center;
  5717. justify-content: center;
  5718. }
  5719. .desc {
  5720. padding-top: 40px;
  5721. h2 {
  5722. color: #000;
  5723. text-align: center;
  5724. font-size: 19px;
  5725. font-style: normal;
  5726. font-weight: 500;
  5727. line-height: 100%;
  5728. /* 19px */
  5729. text-transform: uppercase;
  5730. }
  5731. .captions {
  5732. color: #333;
  5733. text-align: center;
  5734. font-size: 16px;
  5735. font-style: normal;
  5736. font-weight: 300;
  5737. line-height: 1.7;
  5738. padding-top: 30px;
  5739. }
  5740. }
  5741. }
  5742. }
  5743. }
  5744. }
  5745. .strong--business {
  5746. text-align: center;
  5747. padding-bottom: 150px;
  5748. @media(max-width:768px) {
  5749. padding-bottom: 50px;
  5750. }
  5751. .invest--more--btn {
  5752. color: #FFF;
  5753. font-size: 16px;
  5754. font-style: normal;
  5755. font-weight: 500;
  5756. line-height: 100%;
  5757. /* 16px */
  5758. text-transform: capitalize;
  5759. display: inline-flex;
  5760. padding: 23px 40px;
  5761. justify-content: center;
  5762. align-items: center;
  5763. gap: 10px;
  5764. border-radius: 100px;
  5765. background: #0AF;
  5766. margin-top: 70px;
  5767. @media(max-width:768px) {
  5768. margin-top: 35px;
  5769. }
  5770. }
  5771. }
  5772. }
  5773. .grid--list--items {
  5774. display: flex;
  5775. flex-wrap: wrap;
  5776. gap: 60px;
  5777. .grid--items {
  5778. width: calc((100% - 120px) / 3);
  5779. border: 1px solid #E5E5E5;
  5780. background: #FFF;
  5781. display: flex;
  5782. padding: 70px 50px;
  5783. flex-direction: column;
  5784. align-items: center;
  5785. gap: 40px;
  5786. align-self: stretch;
  5787. .thumb {
  5788. border-radius: 1000px;
  5789. background: #F3F3F3;
  5790. width: 110px;
  5791. height: 110px;
  5792. border-radius: 110px;
  5793. display: flex;
  5794. align-items: center;
  5795. justify-content: center;
  5796. }
  5797. .desc {
  5798. >h2 {
  5799. color: #000;
  5800. text-align: center;
  5801. font-size: 22px;
  5802. font-style: normal;
  5803. font-weight: 700;
  5804. line-height: 100%;
  5805. /* 22px */
  5806. letter-spacing: -0.44px;
  5807. text-transform: capitalize;
  5808. }
  5809. >div {
  5810. color: #444;
  5811. text-align: center;
  5812. font-size: 16px;
  5813. font-style: normal;
  5814. font-weight: 400;
  5815. line-height: 1.7;
  5816. letter-spacing: -0.32px;
  5817. text-transform: capitalize;
  5818. margin-top: 25px;
  5819. }
  5820. }
  5821. }
  5822. }
  5823. .grid--banner--wrapper {
  5824. &.type--2 {
  5825. padding: 95px 60px;
  5826. .grid--items {
  5827. padding: 0px;
  5828. }
  5829. }
  5830. .grid--items {
  5831. display: flex;
  5832. align-items: center;
  5833. justify-content: center;
  5834. gap: 80px;
  5835. padding-top: 80px;
  5836. padding-bottom: 110px;
  5837. width: 100%;
  5838. @media(max-width:1024px) {
  5839. flex-direction: column;
  5840. .grid--desc {
  5841. max-width: 100% !important;
  5842. }
  5843. .grid--banner {
  5844. max-width: 100% !important;
  5845. min-width: 100% !important;
  5846. img {
  5847. width: 100%;
  5848. }
  5849. }
  5850. }
  5851. @media(max-width:1440px) {
  5852. padding-left: 0px;
  5853. padding-right: 0px;
  5854. }
  5855. &.dark {
  5856. background: #FAFAFA;
  5857. }
  5858. &.revers {
  5859. flex-direction: row-reverse;
  5860. @media(max-width:1024px) {
  5861. flex-direction: column;
  5862. }
  5863. }
  5864. @media(max-width:768px) {
  5865. gap: 40px;
  5866. }
  5867. .grid--banner {
  5868. max-width: 650px;
  5869. min-width: 650px;
  5870. }
  5871. .grid--desc {
  5872. max-width: 710px;
  5873. h2 {
  5874. color: #000;
  5875. font-size: 30px;
  5876. font-style: normal;
  5877. font-weight: 500;
  5878. line-height: 100%;
  5879. /* 30px */
  5880. text-transform: uppercase;
  5881. margin-bottom: 35px;
  5882. }
  5883. .captions {
  5884. color: #000;
  5885. font-size: 18px;
  5886. font-style: normal;
  5887. font-weight: 300;
  5888. line-height: 1.7;
  5889. white-space: normal;
  5890. text-transform: uppercase;
  5891. >ul {
  5892. >li {
  5893. color: #333;
  5894. font-size: 18px;
  5895. font-style: normal;
  5896. font-weight: 700;
  5897. //line-height: 100%; /* 18px */
  5898. text-transform: uppercase;
  5899. position: relative;
  5900. padding-left: 10px;
  5901. margin-bottom: 15px;
  5902. &.not--sq {
  5903. li {
  5904. color: #444;
  5905. font-size: 17px;
  5906. font-style: normal;
  5907. font-weight: 400;
  5908. //line-height: 100%; /* 17px */
  5909. text-transform: uppercase;
  5910. }
  5911. &::before {
  5912. display: none;
  5913. }
  5914. }
  5915. &:before {
  5916. content: '';
  5917. display: inline-flex;
  5918. width: 3px;
  5919. height: 3px;
  5920. background: #595959;
  5921. position: absolute;
  5922. left: 0px;
  5923. top: 10px;
  5924. }
  5925. }
  5926. }
  5927. }
  5928. .list--content {
  5929. >ul {
  5930. >li {
  5931. color: #444;
  5932. font-size: 18px;
  5933. font-style: normal;
  5934. font-weight: 400;
  5935. line-height: 1.5;
  5936. text-transform: lowercase;
  5937. margin-bottom: 10px;
  5938. position: relative;
  5939. display: flex;
  5940. align-items: center;
  5941. justify-content: flex-start;
  5942. padding-left: 10px;
  5943. &:before {
  5944. content: '';
  5945. display: inline-flex;
  5946. width: 3px;
  5947. height: 3px;
  5948. background: #595959;
  5949. position: absolute;
  5950. left: 0px;
  5951. top: 12px;
  5952. }
  5953. &:last-child {
  5954. margin-bottom: 0px;
  5955. }
  5956. }
  5957. }
  5958. }
  5959. }
  5960. }
  5961. }
  5962. .g-layout {
  5963. &.active {
  5964. position: relative;
  5965. z-index: 1100;
  5966. }
  5967. }
  5968. .owner--service {
  5969. display: flex;
  5970. align-items: center;
  5971. justify-content: center;
  5972. gap: 65px;
  5973. padding: 60px;
  5974. background: #FAFAFA;
  5975. .thumb {}
  5976. ;
  5977. .desc {
  5978. max-width: 580px;
  5979. h2 {
  5980. color: #111;
  5981. font-size: 30px;
  5982. font-style: normal;
  5983. font-weight: 700;
  5984. line-height: 100%;
  5985. /* 30px */
  5986. letter-spacing: -0.6px;
  5987. text-transform: uppercase;
  5988. }
  5989. >div {
  5990. color: #444;
  5991. font-size: 17px;
  5992. font-style: normal;
  5993. font-weight: 400;
  5994. line-height: 1.7;
  5995. letter-spacing: -0.34px;
  5996. margin-top: 20px;
  5997. }
  5998. }
  5999. }
  6000. .owner--list--content {
  6001. .title {
  6002. display: flex;
  6003. align-items: center;
  6004. justify-content: center;
  6005. h2 {
  6006. color: #222;
  6007. text-align: center;
  6008. font-size: 35px;
  6009. font-style: normal;
  6010. font-weight: 700;
  6011. //line-height: 100%; /* 35px */
  6012. letter-spacing: -0.7px;
  6013. text-transform: uppercase;
  6014. }
  6015. }
  6016. .list--content {
  6017. display: flex;
  6018. align-items: flex-start;
  6019. justify-content: space-between;
  6020. padding-top: 70px;
  6021. gap: 80px;
  6022. >ul {
  6023. width: calc((100% - 160px) / 3);
  6024. @media(max-width:1024px) {
  6025. width: 100%;
  6026. }
  6027. >li {
  6028. position: relative;
  6029. display: flex;
  6030. align-items: center;
  6031. justify-content: flex-start;
  6032. gap: 10px;
  6033. margin-bottom: 15px;
  6034. &:last-child {
  6035. margin-bottom: 0px;
  6036. }
  6037. &:before {
  6038. content: '';
  6039. width: 3px;
  6040. height: 3px;
  6041. display: inline-flex;
  6042. background: #595959;
  6043. }
  6044. }
  6045. }
  6046. }
  6047. }
  6048. .outer--desc {
  6049. padding-top: 70px;
  6050. >ul {
  6051. >li {
  6052. position: relative;
  6053. color: #444;
  6054. font-size: 18px;
  6055. font-style: normal;
  6056. font-weight: 400;
  6057. //line-height: 100%; /* 18px */
  6058. text-transform: lowercase;
  6059. padding-left: 10px;
  6060. margin-bottom: 40px;
  6061. &:last-child {
  6062. margin-bottom: 0px;
  6063. }
  6064. &:before {
  6065. content: '';
  6066. display: inline-flex;
  6067. width: 3px;
  6068. height: 3px;
  6069. background: #595959;
  6070. position: absolute;
  6071. top: 8px;
  6072. left: 0px;
  6073. }
  6074. }
  6075. }
  6076. }
  6077. .column--caption3 {
  6078. max-width: 1440px;
  6079. margin: 0 auto;
  6080. display: flex;
  6081. align-items: flex-start;
  6082. justify-content: space-between;
  6083. >ul {
  6084. width: calc((100% - 160px) / 3);
  6085. >li {
  6086. position: relative;
  6087. padding-left: 12px;
  6088. margin-bottom: 20px;
  6089. &:last-child {
  6090. margin-bottom: 0px;
  6091. }
  6092. &.not--sq {
  6093. padding-left: 10px;
  6094. &::before {
  6095. display: none;
  6096. }
  6097. >ul {
  6098. li {
  6099. padding-left: 12px;
  6100. color: #444;
  6101. font-size: 17px;
  6102. font-style: normal;
  6103. font-weight: 400;
  6104. line-height: 1.7;
  6105. text-transform: uppercase;
  6106. position: relative;
  6107. &:before {
  6108. content: '-';
  6109. position: absolute;
  6110. top: -1px;
  6111. left: 0px;
  6112. }
  6113. }
  6114. }
  6115. }
  6116. &:before {
  6117. content: '';
  6118. display: block;
  6119. width: 3px;
  6120. height: 3px;
  6121. background: #595959;
  6122. position: absolute;
  6123. top: 9px;
  6124. left: 0px;
  6125. }
  6126. }
  6127. }
  6128. }
  6129. .inner--dbl--content {
  6130. padding-top: 50px;
  6131. >ul {
  6132. display: flex;
  6133. align-items: flex-start;
  6134. justify-content: center;
  6135. gap: 80px;
  6136. li {
  6137. .thumb {
  6138. border-radius: 20px;
  6139. border-radius: 20px;
  6140. border: 1px solid #D9D9D9;
  6141. background: #FFF;
  6142. overflow: hidden;
  6143. }
  6144. a {
  6145. margin-top: 30px;
  6146. display: inline-flex;
  6147. align-items: center;
  6148. justify-content: center;
  6149. height: 40px;
  6150. padding: 15px 20px;
  6151. justify-content: center;
  6152. align-items: center;
  6153. gap: 5px;
  6154. border-radius: 100px;
  6155. background: #111;
  6156. color: #FFF;
  6157. font-size: 14px;
  6158. font-style: normal;
  6159. font-weight: 700;
  6160. line-height: 100%;
  6161. /* 14px */
  6162. text-transform: capitalize;
  6163. }
  6164. }
  6165. }
  6166. }
  6167. // 전체 메뉴 (사이트맵)
  6168. .all--menu--wrapper {
  6169. position: fixed;
  6170. top: 0;
  6171. left: 0;
  6172. width: 100%;
  6173. background: #fff;
  6174. z-index: 1002;
  6175. transform: translateY(-100%);
  6176. transition: transform 0.4s ease;
  6177. overflow-y: auto;
  6178. &.active {
  6179. transform: translateY(0);
  6180. }
  6181. .close--btn {
  6182. position: absolute;
  6183. top: 25px;
  6184. right: 0px;
  6185. width: 40px;
  6186. height: 40px;
  6187. background: none;
  6188. border: none;
  6189. cursor: pointer;
  6190. z-index: 10;
  6191. svg {
  6192. width: 100%;
  6193. height: 100%;
  6194. }
  6195. }
  6196. .all--menu--inner {
  6197. max-width: 1440px;
  6198. margin: 0 auto;
  6199. position: relative;
  6200. padding: 35px 0 100px;
  6201. .main--menu--list {
  6202. display: flex;
  6203. gap: 60px;
  6204. li {
  6205. width: 20%;
  6206. h3 {
  6207. font-size: 16px;
  6208. font-weight: 700;
  6209. margin-bottom: 50px;
  6210. line-height: 1;
  6211. color: #00095B;
  6212. text-transform: uppercase;
  6213. }
  6214. }
  6215. }
  6216. .sitemap--list {
  6217. display: flex;
  6218. gap: 60px;
  6219. max-height: 60vh;
  6220. overflow-y: auto;
  6221. >ul {
  6222. width: 20%;
  6223. display: flex;
  6224. flex-direction: column;
  6225. gap: 20px;
  6226. li {
  6227. width: 100%;
  6228. display: flex;
  6229. &:first-child {
  6230. a {
  6231. padding-top: 0;
  6232. &::before {
  6233. top: 10px;
  6234. }
  6235. }
  6236. }
  6237. a {
  6238. padding-top: 15px;
  6239. color: #000;
  6240. font-size: 16px;
  6241. padding-left: 20px;
  6242. width: 100%;
  6243. font-weight: 500;
  6244. position: relative;
  6245. &::before {
  6246. position: absolute;
  6247. content: '';
  6248. display: inline-block;
  6249. width: 5px;
  6250. height: 5px;
  6251. background-color: #333;
  6252. top: 25px;
  6253. left: 0;
  6254. }
  6255. &.sub--type {
  6256. color: #444;
  6257. font-size: 15px;
  6258. padding: 0 20px;
  6259. font-weight: 400;
  6260. &::before {
  6261. display: none;
  6262. }
  6263. }
  6264. }
  6265. }
  6266. }
  6267. }
  6268. }
  6269. }
  6270. // 햄버거 버튼 active 상태 (X 모양)
  6271. .hmb--btn {
  6272. position: relative;
  6273. z-index: 1002;
  6274. svg line {
  6275. transition: all 0.3s ease;
  6276. }
  6277. &.active {
  6278. svg {
  6279. line:nth-child(1) {
  6280. transform: translateY(11px) rotate(45deg);
  6281. transform-origin: 20px 8px;
  6282. }
  6283. line:nth-child(2) {
  6284. opacity: 0;
  6285. }
  6286. line:nth-child(3) {
  6287. transform: translateY(-11px) rotate(-45deg);
  6288. transform-origin: 20px 30px;
  6289. }
  6290. }
  6291. }
  6292. }
  6293. // 모바일 메뉴
  6294. .mobile--menu--wrapper {
  6295. display: none;
  6296. position: fixed;
  6297. top: 0;
  6298. right: 0;
  6299. width: 100%;
  6300. height: 100vh;
  6301. background: #fff;
  6302. z-index: 999;
  6303. transform: translateX(100%);
  6304. transition: transform 0.4s ease;
  6305. overflow-y: auto;
  6306. &.active {
  6307. transform: translateX(0);
  6308. }
  6309. .mobile--menu--inner {
  6310. padding: 72px 20px 60px;
  6311. .mobile--menu--list {
  6312. >li {
  6313. &.active {
  6314. .menu--title {
  6315. span {
  6316. color: #076FED;
  6317. }
  6318. .arrow {
  6319. background-image: url(/img/ico--minus.svg);
  6320. }
  6321. }
  6322. .mobile--sub--menu {
  6323. max-height: 1000px;
  6324. padding: 25px 0;
  6325. border-bottom: 1px solid #b2b2b2;
  6326. }
  6327. }
  6328. .menu--title {
  6329. border-bottom: 1px solid #b2b2b2;
  6330. display: flex;
  6331. justify-content: space-between;
  6332. align-items: center;
  6333. padding: 30px 0;
  6334. cursor: pointer;
  6335. span {
  6336. font-size: 15px;
  6337. font-weight: 700;
  6338. color: #000;
  6339. text-transform: uppercase;
  6340. }
  6341. .arrow {
  6342. width: 22px;
  6343. height: 22px;
  6344. transition: all 0.3s;
  6345. background-image: url(/img/ico--plus.svg);
  6346. }
  6347. }
  6348. .mobile--sub--menu {
  6349. max-height: 0;
  6350. overflow: hidden;
  6351. transition: max-height 0.3s ease, padding 0.3s ease;
  6352. padding: 0;
  6353. display: flex;
  6354. flex-direction: column;
  6355. gap: 15px;
  6356. &.car--menu {
  6357. text-align: center;
  6358. flex-direction: row;
  6359. flex-wrap: wrap;
  6360. gap: 15px;
  6361. li {
  6362. width: calc((100% - 30px) / 3);
  6363. a {
  6364. display: flex;
  6365. flex-direction: column;
  6366. gap: 15px;
  6367. font-size: 14px;
  6368. color: #000;
  6369. font-weight: 400;
  6370. padding: 0;
  6371. }
  6372. }
  6373. }
  6374. li {
  6375. display: flex;
  6376. width: 100%;
  6377. &:first-child {
  6378. h4 {
  6379. margin-top: 0;
  6380. }
  6381. }
  6382. h4 {
  6383. padding-left: 20px;
  6384. position: relative;
  6385. font-size: 16px;
  6386. font-weight: 500;
  6387. margin-bottom: 5px;
  6388. margin-top: 20px;
  6389. >a {
  6390. color: #000;
  6391. font-size: 16px;
  6392. font-weight: 500;
  6393. }
  6394. &::before {
  6395. content: '';
  6396. position: absolute;
  6397. width: 5px;
  6398. top: 8px;
  6399. left: 0;
  6400. height: 5px;
  6401. background-color: #333;
  6402. }
  6403. }
  6404. a {
  6405. font-size: 15px;
  6406. width: 100%;
  6407. padding-left: 20px;
  6408. color: #444;
  6409. font-weight: 400;
  6410. &:hover {}
  6411. }
  6412. }
  6413. }
  6414. }
  6415. }
  6416. }
  6417. }
  6418. .text--justify--left {
  6419. text-align: left !important;
  6420. }
  6421. .text--center {
  6422. text-align: center !important;
  6423. }
  6424. .service--center--ford {
  6425. td {
  6426. text-align: left !important;
  6427. padding-left: 20px !important;
  6428. &.text--center,
  6429. &:last-child {
  6430. text-align: center !important;
  6431. &.text--justify--left {
  6432. text-align: left !important;
  6433. }
  6434. }
  6435. }
  6436. a {
  6437. display: inline-flex;
  6438. align-items: center;
  6439. justify-content: center;
  6440. border-radius: 50px;
  6441. background: #076FED;
  6442. color: #FFF;
  6443. height: 30px;
  6444. font-size: 13px;
  6445. font-style: normal;
  6446. font-weight: 500;
  6447. letter-spacing: -0.26px;
  6448. text-transform: uppercase;
  6449. padding: 0 16px;
  6450. gap: 9px;
  6451. &:before {
  6452. content: "";
  6453. width: 15px;
  6454. min-width: 15px;
  6455. height: 14px;
  6456. display: inline-flex;
  6457. background: url(/img/ico--res--service.svg);
  6458. background-size: contain;
  6459. position: relative;
  6460. top: -1px;
  6461. }
  6462. }
  6463. }
  6464. .admin--form--table{
  6465. width: 100%;
  6466. color: #666b75;
  6467. font-weight: 400;
  6468. font-size: 12px;
  6469. p{
  6470. color: #666b75;
  6471. font-weight: 400;
  6472. font-size: 12px;
  6473. }
  6474. tr{
  6475. border-top: 1px solid #F0F2F6;
  6476. &:last-child{
  6477. border-bottom: 1px solid #F0F2F6;
  6478. }
  6479. }
  6480. th{
  6481. padding: 20px 16px;
  6482. text-align: left;
  6483. color: #1a2b4a;
  6484. font-weight: 700;
  6485. font-size: 13px;
  6486. background-color: #F8f9fb;
  6487. .admin--required{
  6488. color: var(--admin-red);
  6489. }
  6490. }
  6491. td{
  6492. padding: 12px 16px;
  6493. .input--wrap{
  6494. display: flex;
  6495. align-items: center;
  6496. gap: 12px;
  6497. input, select{
  6498. width: 320px;
  6499. &[type=radio]{
  6500. width: auto;
  6501. }
  6502. &.w--full{
  6503. width: 100%;
  6504. }
  6505. &.w--120{
  6506. width: 120px;
  6507. }
  6508. &.w--160{
  6509. width: 160px;
  6510. }
  6511. &.w--200{
  6512. width: 200px;
  6513. }
  6514. &.w--240{
  6515. width: 240px;
  6516. }
  6517. &.w--300{
  6518. width: 300px;
  6519. }
  6520. }
  6521. input[type=radio]{
  6522. appearance: none;
  6523. width: 18px;
  6524. height: 18px;
  6525. border: 1.5px solid #c8d5e6;
  6526. border-radius: 50%;
  6527. &:checked{
  6528. border: 5px solid #3C80F2;
  6529. }
  6530. }
  6531. }
  6532. }
  6533. }
  6534. .admin--form-section-title{
  6535. font-size: 15px;
  6536. font-weight: 700;
  6537. color: #1a2b4a;
  6538. margin: 28px 0 12px;
  6539. &:first-child{
  6540. margin-top: 0;
  6541. }
  6542. }
  6543. .admin--info--box,
  6544. .admin--inf--box{
  6545. background-color: #fff8de;
  6546. border-radius: 6px;
  6547. margin-top: 32px;
  6548. padding: 20px;
  6549. h3{
  6550. color: #e8b547;
  6551. font-size: 14px;
  6552. font-weight: 600;
  6553. letter-spacing: 0.55px;
  6554. margin-bottom: 10px;
  6555. }
  6556. ul{
  6557. li{
  6558. position: relative;
  6559. color: #1a2b4a;
  6560. font-size: 13px;
  6561. font-weight: 400;
  6562. padding-left: 14px;
  6563. &::before{
  6564. content: '';
  6565. position: absolute;
  6566. width: 4px;
  6567. height: 4px;
  6568. border-radius: 50%;
  6569. background-color: #1a2b4a;
  6570. left: 4px;
  6571. top: 8px;
  6572. }
  6573. }
  6574. }
  6575. &.bg--white{
  6576. background-color: #fff;
  6577. border: 1px solid var(--admin-border-color);
  6578. h3{
  6579. color: #1a2b4a;
  6580. margin-bottom: 15px;
  6581. padding-bottom: 13px;
  6582. border-bottom: 1px solid var(--admin-border-color);
  6583. }
  6584. }
  6585. .item--info--box{
  6586. display: flex;
  6587. gap: 24px;
  6588. justify-content: space-between;
  6589. .item--info{
  6590. display: flex;
  6591. flex-direction: column;
  6592. width: 33.3333%;
  6593. .item--badge{
  6594. display: inline-block;
  6595. padding: 4px 12px;
  6596. border-radius: 12px;
  6597. font-size: 12px;
  6598. font-weight: 700;
  6599. white-space: nowrap;
  6600. width: fit-content;
  6601. line-height: 1;
  6602. background-color: #E8F0FE;
  6603. border-radius: 12px;
  6604. color: #3c80f2;
  6605. }
  6606. p{
  6607. margin: 8px 0;
  6608. color: #666b75;
  6609. font-size: 12px;
  6610. font-weight: 400;
  6611. }
  6612. span{
  6613. color: #3c80f2;
  6614. font-weight: 600;
  6615. font-size: 12px;
  6616. font-weight: 600;
  6617. }
  6618. &:nth-child(2){
  6619. .item--badge{
  6620. color: #e85d3f;
  6621. background-color: #FFF8DE;
  6622. }
  6623. span{
  6624. color: #e85d3f;
  6625. }
  6626. }
  6627. &:nth-child(3){
  6628. .item--badge{
  6629. color: #2DB672;
  6630. background-color: #E8F7ED;
  6631. }
  6632. span{
  6633. color: #2DB672;
  6634. }
  6635. }
  6636. }
  6637. }
  6638. }
  6639. .admin--inf--box{
  6640. margin-top: 16px;
  6641. background-color: #F8F9FB;
  6642. h3{
  6643. color: #666B75;
  6644. }
  6645. }
  6646. .item--thumb {
  6647. width: 36px;
  6648. height: 36px;
  6649. border-radius: 6px;
  6650. overflow: hidden;
  6651. border: 1px solid #e8eaef;
  6652. margin: 0 auto;
  6653. }
  6654. .item--thumb img {
  6655. width: 100%;
  6656. height: 100%;
  6657. object-fit: cover;
  6658. display: block;
  6659. }
  6660. // 선상 & 낚시터 사진 추가
  6661. .onboard--photo-grid {
  6662. display: flex;
  6663. flex-wrap: wrap;
  6664. gap: 12px;
  6665. }
  6666. .onboard--photo-item {
  6667. position: relative;
  6668. width: 120px;
  6669. height: 120px;
  6670. border-radius: 8px;
  6671. overflow: hidden;
  6672. border: 1px solid #e8eaef;
  6673. }
  6674. .onboard--photo-item img {
  6675. width: 100%;
  6676. height: 100%;
  6677. object-fit: cover;
  6678. display: block;
  6679. }
  6680. .onboard--photo-remove {
  6681. position: absolute;
  6682. top: 4px;
  6683. right: 4px;
  6684. width: 22px;
  6685. height: 22px;
  6686. border: none;
  6687. border-radius: 50%;
  6688. background: rgba(0, 0, 0, 0.6);
  6689. cursor: pointer;
  6690. &::before{
  6691. content: '×';
  6692. top: -1px;
  6693. right: 6.5px;
  6694. position: absolute;
  6695. font-size: 15px;
  6696. color: #fff;
  6697. }
  6698. }
  6699. .onboard--photo-remove:hover {
  6700. background: rgba(0, 0, 0, 0.85);
  6701. }
  6702. .onboard--photo-badge {
  6703. position: absolute;
  6704. bottom: 4px;
  6705. left: 4px;
  6706. padding: 2px 8px;
  6707. border-radius: 4px;
  6708. background: var(--admin-red);
  6709. color: #fff;
  6710. font-size: 11px;
  6711. font-weight: 600;
  6712. }
  6713. // ============================================
  6714. // Toast (어드민 공통 하단 중앙 알림)
  6715. // ============================================
  6716. .admin--toast {
  6717. position: fixed;
  6718. bottom: 40px;
  6719. left: 50%;
  6720. transform: translateX(-50%);
  6721. z-index: 10000;
  6722. display: flex;
  6723. align-items: center;
  6724. gap: 12px;
  6725. min-width: 280px;
  6726. max-width: 480px;
  6727. padding: 14px 18px;
  6728. border-radius: 10px;
  6729. background: #ecfdf5;
  6730. color: #166534;
  6731. border: 1px solid #86efac;
  6732. box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
  6733. font-size: 14px;
  6734. font-weight: 500;
  6735. line-height: 1.4;
  6736. &.is-error {
  6737. background: #fef2f2;
  6738. color: #991b1b;
  6739. border-color: #fca5a5;
  6740. }
  6741. .admin--toast-icon {
  6742. display: inline-flex;
  6743. align-items: center;
  6744. justify-content: center;
  6745. width: 22px;
  6746. height: 22px;
  6747. border-radius: 50%;
  6748. background: currentColor;
  6749. color: #fff;
  6750. font-size: 13px;
  6751. font-weight: 700;
  6752. flex-shrink: 0;
  6753. &::before { content: '✓'; }
  6754. }
  6755. &.is-error .admin--toast-icon::before { content: '!'; }
  6756. .admin--toast-msg {
  6757. flex: 1;
  6758. color: inherit;
  6759. }
  6760. .admin--toast-close {
  6761. background: none;
  6762. border: none;
  6763. font-size: 20px;
  6764. line-height: 1;
  6765. cursor: pointer;
  6766. color: inherit;
  6767. opacity: 0.5;
  6768. padding: 0;
  6769. width: 22px;
  6770. height: 22px;
  6771. display: flex;
  6772. align-items: center;
  6773. justify-content: center;
  6774. transition: opacity 0.15s ease;
  6775. &:hover { opacity: 1; }
  6776. }
  6777. }
  6778. .admin--toast-enter-active,
  6779. .admin--toast-leave-active {
  6780. transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
  6781. }
  6782. .admin--toast-enter-from,
  6783. .admin--toast-leave-to {
  6784. transform: translate(-50%, 140%);
  6785. opacity: 0;
  6786. }
  6787. .admin--toast-enter-to,
  6788. .admin--toast-leave-from {
  6789. transform: translate(-50%, 0);
  6790. opacity: 1;
  6791. }
  6792. .admin--place--btn--wrap{
  6793. display: flex;
  6794. justify-content: space-between;
  6795. align-items: center;
  6796. margin-top: 24px;
  6797. .admin--pagination{
  6798. margin-top: 0;
  6799. }
  6800. .admin--btn {
  6801. padding: 12px;
  6802. border: none;
  6803. border-radius: 4px;
  6804. font-size: 13px;
  6805. font-weight: 600;
  6806. cursor: pointer;
  6807. transition: all 0.3s ease;
  6808. min-width: 100px;
  6809. color: #666b75;
  6810. border: 1px solid #e8eaef;
  6811. &:disabled {
  6812. opacity: 0.5;
  6813. cursor: not-allowed;
  6814. }
  6815. }
  6816. }